diff --git a/.gitattributes b/.gitattributes index cdd0562d6c470d890df4cc03902ff9442b7292ab..40007713616f36dfc18a42d205ac1859a711e226 100644 --- a/.gitattributes +++ b/.gitattributes @@ -592,3 +592,28 @@ runs/random30-fulle-lm/checkpoint-6912/tokenizer.json filter=lfs diff=lfs merge= runs/random30-fulle-lm/checkpoint-72/tokenizer.json filter=lfs diff=lfs merge=lfs -text runs/random30-fulle-lm/checkpoint-7200/tokenizer.json filter=lfs diff=lfs merge=lfs -text runs/random30-fulle-lm/checkpoint-864/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-1152/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-1440/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-1728/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-2016/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-2304/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-2592/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-288/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-2880/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-3168/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-3456/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-3744/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-4032/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-4320/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-4608/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-4896/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-5184/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-5472/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-576/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-5760/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-6048/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-6336/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-6624/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-6912/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-72/tokenizer.json filter=lfs diff=lfs merge=lfs -text +runs/mask15-l2r50-fulle-lm/checkpoint-864/tokenizer.json filter=lfs diff=lfs merge=lfs -text diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1152/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1152/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1152/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1152/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e72d5f1d65f6e4fea0fe22d565b6449ffdd59b1f --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b0e3e288fce7011c16710f8f343385a19cc653c8d4d05162cda3693a67d259e +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1152/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..240f967b15d6ca10f55ee251888807960bacf019 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f03a813510ffaf4437c78feafab8d24cda50b52abf384785bc37d347d743261d +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1152/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..5e6f64b6803be72898b731eb755c5eb1959da0f7 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b589a5c822740a79de4ffd247576f1bc115455441197a4a7d2bf7fbc2437ba2 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1152/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..5daf5b159fe13a68212797a4b826870936712160 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df1473f0291d2e7bd3c33e759b5ca397d6b06f221e973dc7f78f947357d90e22 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1152/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..630fbc73d70608487940c0c34e65caee42415237 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a67914066d1aebda73626cb9d7d4cbc46ee7df332e5ae85a86cc87be8e519c8 +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1152/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1152/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1152/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..f8200f266025f4f6896f2cd242e38422b67ded45 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/trainer_state.json @@ -0,0 +1,8218 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 16.0, + "eval_steps": 500, + "global_step": 1152, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + }, + { + "epoch": 8.0, + "eval_loss": 5.100707530975342, + "eval_runtime": 44.2493, + "eval_samples_per_second": 55.187, + "eval_steps_per_second": 3.458, + "step": 576 + }, + { + "epoch": 8.013979903888162, + "grad_norm": 0.3658510148525238, + "learning_rate": 0.0006, + "loss": 4.759055137634277, + "step": 577 + }, + { + "epoch": 8.027959807776321, + "grad_norm": 0.41794446110725403, + "learning_rate": 0.0006, + "loss": 4.737661838531494, + "step": 578 + }, + { + "epoch": 8.041939711664483, + "grad_norm": 0.43284085392951965, + "learning_rate": 0.0006, + "loss": 4.775538444519043, + "step": 579 + }, + { + "epoch": 8.055919615552643, + "grad_norm": 0.4716675281524658, + "learning_rate": 0.0006, + "loss": 4.762231826782227, + "step": 580 + }, + { + "epoch": 8.069899519440805, + "grad_norm": 0.3849579393863678, + "learning_rate": 0.0006, + "loss": 4.753598690032959, + "step": 581 + }, + { + "epoch": 8.083879423328964, + "grad_norm": 0.3721151053905487, + "learning_rate": 0.0006, + "loss": 4.728978157043457, + "step": 582 + }, + { + "epoch": 8.097859327217126, + "grad_norm": 0.37009572982788086, + "learning_rate": 0.0006, + "loss": 4.759153366088867, + "step": 583 + }, + { + "epoch": 8.111839231105286, + "grad_norm": 0.37051302194595337, + "learning_rate": 0.0006, + "loss": 4.744197368621826, + "step": 584 + }, + { + "epoch": 8.125819134993447, + "grad_norm": 0.331238329410553, + "learning_rate": 0.0006, + "loss": 4.7338385581970215, + "step": 585 + }, + { + "epoch": 8.139799038881607, + "grad_norm": 0.3737713694572449, + "learning_rate": 0.0006, + "loss": 4.719110488891602, + "step": 586 + }, + { + "epoch": 8.153778942769769, + "grad_norm": 0.3713214695453644, + "learning_rate": 0.0006, + "loss": 4.734012126922607, + "step": 587 + }, + { + "epoch": 8.167758846657929, + "grad_norm": 0.4060780107975006, + "learning_rate": 0.0006, + "loss": 4.746830940246582, + "step": 588 + }, + { + "epoch": 8.18173875054609, + "grad_norm": 0.39814314246177673, + "learning_rate": 0.0006, + "loss": 4.722851753234863, + "step": 589 + }, + { + "epoch": 8.19571865443425, + "grad_norm": 0.3175652325153351, + "learning_rate": 0.0006, + "loss": 4.745110034942627, + "step": 590 + }, + { + "epoch": 8.209698558322412, + "grad_norm": 0.37214916944503784, + "learning_rate": 0.0006, + "loss": 4.7362775802612305, + "step": 591 + }, + { + "epoch": 8.223678462210572, + "grad_norm": 0.3873472809791565, + "learning_rate": 0.0006, + "loss": 4.738964557647705, + "step": 592 + }, + { + "epoch": 8.237658366098733, + "grad_norm": 0.3299207091331482, + "learning_rate": 0.0006, + "loss": 4.713451385498047, + "step": 593 + }, + { + "epoch": 8.251638269986893, + "grad_norm": 0.32445064187049866, + "learning_rate": 0.0006, + "loss": 4.725602149963379, + "step": 594 + }, + { + "epoch": 8.265618173875055, + "grad_norm": 0.32903164625167847, + "learning_rate": 0.0006, + "loss": 4.732064247131348, + "step": 595 + }, + { + "epoch": 8.279598077763215, + "grad_norm": 0.3166804313659668, + "learning_rate": 0.0006, + "loss": 4.678950786590576, + "step": 596 + }, + { + "epoch": 8.293577981651376, + "grad_norm": 0.2750290334224701, + "learning_rate": 0.0006, + "loss": 4.719513416290283, + "step": 597 + }, + { + "epoch": 8.307557885539538, + "grad_norm": 0.291029691696167, + "learning_rate": 0.0006, + "loss": 4.715405464172363, + "step": 598 + }, + { + "epoch": 8.321537789427698, + "grad_norm": 0.34105145931243896, + "learning_rate": 0.0006, + "loss": 4.722611427307129, + "step": 599 + }, + { + "epoch": 8.33551769331586, + "grad_norm": 0.3078882694244385, + "learning_rate": 0.0006, + "loss": 4.668856620788574, + "step": 600 + }, + { + "epoch": 8.349497597204019, + "grad_norm": 0.3218833804130554, + "learning_rate": 0.0006, + "loss": 4.719579696655273, + "step": 601 + }, + { + "epoch": 8.36347750109218, + "grad_norm": 0.35716721415519714, + "learning_rate": 0.0006, + "loss": 4.690774440765381, + "step": 602 + }, + { + "epoch": 8.37745740498034, + "grad_norm": 0.3045452833175659, + "learning_rate": 0.0006, + "loss": 4.696503639221191, + "step": 603 + }, + { + "epoch": 8.391437308868502, + "grad_norm": 0.3127244710922241, + "learning_rate": 0.0006, + "loss": 4.701899528503418, + "step": 604 + }, + { + "epoch": 8.405417212756662, + "grad_norm": 0.34988710284233093, + "learning_rate": 0.0006, + "loss": 4.677641868591309, + "step": 605 + }, + { + "epoch": 8.419397116644824, + "grad_norm": 0.34035569429397583, + "learning_rate": 0.0006, + "loss": 4.707778453826904, + "step": 606 + }, + { + "epoch": 8.433377020532983, + "grad_norm": 0.3341112732887268, + "learning_rate": 0.0006, + "loss": 4.724853038787842, + "step": 607 + }, + { + "epoch": 8.447356924421145, + "grad_norm": 0.41744324564933777, + "learning_rate": 0.0006, + "loss": 4.680908203125, + "step": 608 + }, + { + "epoch": 8.461336828309305, + "grad_norm": 0.40402331948280334, + "learning_rate": 0.0006, + "loss": 4.726455211639404, + "step": 609 + }, + { + "epoch": 8.475316732197467, + "grad_norm": 0.4727570414543152, + "learning_rate": 0.0006, + "loss": 4.6793084144592285, + "step": 610 + }, + { + "epoch": 8.489296636085626, + "grad_norm": 0.43002694845199585, + "learning_rate": 0.0006, + "loss": 4.663918972015381, + "step": 611 + }, + { + "epoch": 8.503276539973788, + "grad_norm": 0.36124858260154724, + "learning_rate": 0.0006, + "loss": 4.657375335693359, + "step": 612 + }, + { + "epoch": 8.517256443861948, + "grad_norm": 0.37644803524017334, + "learning_rate": 0.0006, + "loss": 4.676977157592773, + "step": 613 + }, + { + "epoch": 8.53123634775011, + "grad_norm": 0.32347747683525085, + "learning_rate": 0.0006, + "loss": 4.708547115325928, + "step": 614 + }, + { + "epoch": 8.54521625163827, + "grad_norm": 0.3071717619895935, + "learning_rate": 0.0006, + "loss": 4.650189399719238, + "step": 615 + }, + { + "epoch": 8.55919615552643, + "grad_norm": 0.30222490429878235, + "learning_rate": 0.0006, + "loss": 4.647942543029785, + "step": 616 + }, + { + "epoch": 8.57317605941459, + "grad_norm": 0.31545212864875793, + "learning_rate": 0.0006, + "loss": 4.660242080688477, + "step": 617 + }, + { + "epoch": 8.587155963302752, + "grad_norm": 0.31644752621650696, + "learning_rate": 0.0006, + "loss": 4.666710376739502, + "step": 618 + }, + { + "epoch": 8.601135867190912, + "grad_norm": 0.26057198643684387, + "learning_rate": 0.0006, + "loss": 4.668096542358398, + "step": 619 + }, + { + "epoch": 8.615115771079074, + "grad_norm": 0.25473910570144653, + "learning_rate": 0.0006, + "loss": 4.641562461853027, + "step": 620 + }, + { + "epoch": 8.629095674967235, + "grad_norm": 0.2456732839345932, + "learning_rate": 0.0006, + "loss": 4.6545281410217285, + "step": 621 + }, + { + "epoch": 8.643075578855395, + "grad_norm": 0.25180476903915405, + "learning_rate": 0.0006, + "loss": 4.6506524085998535, + "step": 622 + }, + { + "epoch": 8.657055482743557, + "grad_norm": 0.21761579811573029, + "learning_rate": 0.0006, + "loss": 4.638909339904785, + "step": 623 + }, + { + "epoch": 8.671035386631717, + "grad_norm": 0.23590542376041412, + "learning_rate": 0.0006, + "loss": 4.6572747230529785, + "step": 624 + }, + { + "epoch": 8.685015290519878, + "grad_norm": 0.23870624601840973, + "learning_rate": 0.0006, + "loss": 4.643742084503174, + "step": 625 + }, + { + "epoch": 8.698995194408038, + "grad_norm": 0.2191203385591507, + "learning_rate": 0.0006, + "loss": 4.632617950439453, + "step": 626 + }, + { + "epoch": 8.7129750982962, + "grad_norm": 0.22107063233852386, + "learning_rate": 0.0006, + "loss": 4.625616073608398, + "step": 627 + }, + { + "epoch": 8.72695500218436, + "grad_norm": 0.20833902060985565, + "learning_rate": 0.0006, + "loss": 4.609896659851074, + "step": 628 + }, + { + "epoch": 8.740934906072521, + "grad_norm": 0.254967600107193, + "learning_rate": 0.0006, + "loss": 4.651735782623291, + "step": 629 + }, + { + "epoch": 8.754914809960681, + "grad_norm": 0.31587523221969604, + "learning_rate": 0.0006, + "loss": 4.6404032707214355, + "step": 630 + }, + { + "epoch": 8.768894713848843, + "grad_norm": 0.28598251938819885, + "learning_rate": 0.0006, + "loss": 4.602679252624512, + "step": 631 + }, + { + "epoch": 8.782874617737003, + "grad_norm": 0.23216590285301208, + "learning_rate": 0.0006, + "loss": 4.610319137573242, + "step": 632 + }, + { + "epoch": 8.796854521625164, + "grad_norm": 0.29212239384651184, + "learning_rate": 0.0006, + "loss": 4.600744247436523, + "step": 633 + }, + { + "epoch": 8.810834425513324, + "grad_norm": 0.3375801146030426, + "learning_rate": 0.0006, + "loss": 4.627819061279297, + "step": 634 + }, + { + "epoch": 8.824814329401486, + "grad_norm": 0.4207753837108612, + "learning_rate": 0.0006, + "loss": 4.634505271911621, + "step": 635 + }, + { + "epoch": 8.838794233289645, + "grad_norm": 0.4640173614025116, + "learning_rate": 0.0006, + "loss": 4.636714935302734, + "step": 636 + }, + { + "epoch": 8.852774137177807, + "grad_norm": 0.5255663990974426, + "learning_rate": 0.0006, + "loss": 4.659462928771973, + "step": 637 + }, + { + "epoch": 8.866754041065967, + "grad_norm": 0.5108268857002258, + "learning_rate": 0.0006, + "loss": 4.633192539215088, + "step": 638 + }, + { + "epoch": 8.880733944954128, + "grad_norm": 0.3821936845779419, + "learning_rate": 0.0006, + "loss": 4.621200084686279, + "step": 639 + }, + { + "epoch": 8.89471384884229, + "grad_norm": 0.3918485939502716, + "learning_rate": 0.0006, + "loss": 4.632599830627441, + "step": 640 + }, + { + "epoch": 8.90869375273045, + "grad_norm": 0.3416556119918823, + "learning_rate": 0.0006, + "loss": 4.620438098907471, + "step": 641 + }, + { + "epoch": 8.922673656618612, + "grad_norm": 0.3191553056240082, + "learning_rate": 0.0006, + "loss": 4.617823600769043, + "step": 642 + }, + { + "epoch": 8.936653560506771, + "grad_norm": 0.3368529677391052, + "learning_rate": 0.0006, + "loss": 4.617222785949707, + "step": 643 + }, + { + "epoch": 8.950633464394933, + "grad_norm": 0.3255428969860077, + "learning_rate": 0.0006, + "loss": 4.633878707885742, + "step": 644 + }, + { + "epoch": 8.964613368283093, + "grad_norm": 0.31394779682159424, + "learning_rate": 0.0006, + "loss": 4.642603874206543, + "step": 645 + }, + { + "epoch": 8.978593272171254, + "grad_norm": 0.29999351501464844, + "learning_rate": 0.0006, + "loss": 4.5925211906433105, + "step": 646 + }, + { + "epoch": 8.992573176059414, + "grad_norm": 0.309154748916626, + "learning_rate": 0.0006, + "loss": 4.61745023727417, + "step": 647 + }, + { + "epoch": 9.0, + "grad_norm": 0.2660452425479889, + "learning_rate": 0.0006, + "loss": 4.575107097625732, + "step": 648 + }, + { + "epoch": 9.0, + "eval_loss": 4.8804192543029785, + "eval_runtime": 45.0015, + "eval_samples_per_second": 54.265, + "eval_steps_per_second": 3.4, + "step": 648 + }, + { + "epoch": 9.013979903888162, + "grad_norm": 0.24159297347068787, + "learning_rate": 0.0006, + "loss": 4.571323871612549, + "step": 649 + }, + { + "epoch": 9.027959807776321, + "grad_norm": 0.2835831046104431, + "learning_rate": 0.0006, + "loss": 4.614255905151367, + "step": 650 + }, + { + "epoch": 9.041939711664483, + "grad_norm": 0.2646859288215637, + "learning_rate": 0.0006, + "loss": 4.578947067260742, + "step": 651 + }, + { + "epoch": 9.055919615552643, + "grad_norm": 0.28868553042411804, + "learning_rate": 0.0006, + "loss": 4.575977325439453, + "step": 652 + }, + { + "epoch": 9.069899519440805, + "grad_norm": 0.2899586856365204, + "learning_rate": 0.0006, + "loss": 4.541798114776611, + "step": 653 + }, + { + "epoch": 9.083879423328964, + "grad_norm": 0.32786068320274353, + "learning_rate": 0.0006, + "loss": 4.575140953063965, + "step": 654 + }, + { + "epoch": 9.097859327217126, + "grad_norm": 0.35675594210624695, + "learning_rate": 0.0006, + "loss": 4.58184814453125, + "step": 655 + }, + { + "epoch": 9.111839231105286, + "grad_norm": 0.3380381166934967, + "learning_rate": 0.0006, + "loss": 4.546271324157715, + "step": 656 + }, + { + "epoch": 9.125819134993447, + "grad_norm": 0.3035511374473572, + "learning_rate": 0.0006, + "loss": 4.591629981994629, + "step": 657 + }, + { + "epoch": 9.139799038881607, + "grad_norm": 0.2733091711997986, + "learning_rate": 0.0006, + "loss": 4.559020042419434, + "step": 658 + }, + { + "epoch": 9.153778942769769, + "grad_norm": 0.2870676815509796, + "learning_rate": 0.0006, + "loss": 4.552787780761719, + "step": 659 + }, + { + "epoch": 9.167758846657929, + "grad_norm": 0.37471064925193787, + "learning_rate": 0.0006, + "loss": 4.572757244110107, + "step": 660 + }, + { + "epoch": 9.18173875054609, + "grad_norm": 0.37889063358306885, + "learning_rate": 0.0006, + "loss": 4.573302268981934, + "step": 661 + }, + { + "epoch": 9.19571865443425, + "grad_norm": 0.29983851313591003, + "learning_rate": 0.0006, + "loss": 4.571202754974365, + "step": 662 + }, + { + "epoch": 9.209698558322412, + "grad_norm": 0.27595147490501404, + "learning_rate": 0.0006, + "loss": 4.529508590698242, + "step": 663 + }, + { + "epoch": 9.223678462210572, + "grad_norm": 0.22693437337875366, + "learning_rate": 0.0006, + "loss": 4.572267532348633, + "step": 664 + }, + { + "epoch": 9.237658366098733, + "grad_norm": 0.27147138118743896, + "learning_rate": 0.0006, + "loss": 4.529747009277344, + "step": 665 + }, + { + "epoch": 9.251638269986893, + "grad_norm": 0.24952703714370728, + "learning_rate": 0.0006, + "loss": 4.553647994995117, + "step": 666 + }, + { + "epoch": 9.265618173875055, + "grad_norm": 0.3086707592010498, + "learning_rate": 0.0006, + "loss": 4.494636058807373, + "step": 667 + }, + { + "epoch": 9.279598077763215, + "grad_norm": 0.3265218138694763, + "learning_rate": 0.0006, + "loss": 4.522481918334961, + "step": 668 + }, + { + "epoch": 9.293577981651376, + "grad_norm": 0.2744608223438263, + "learning_rate": 0.0006, + "loss": 4.544595241546631, + "step": 669 + }, + { + "epoch": 9.307557885539538, + "grad_norm": 0.26698485016822815, + "learning_rate": 0.0006, + "loss": 4.506407260894775, + "step": 670 + }, + { + "epoch": 9.321537789427698, + "grad_norm": 0.2775942087173462, + "learning_rate": 0.0006, + "loss": 4.534619331359863, + "step": 671 + }, + { + "epoch": 9.33551769331586, + "grad_norm": 0.2421862781047821, + "learning_rate": 0.0006, + "loss": 4.523318290710449, + "step": 672 + }, + { + "epoch": 9.349497597204019, + "grad_norm": 0.2756497263908386, + "learning_rate": 0.0006, + "loss": 4.517561912536621, + "step": 673 + }, + { + "epoch": 9.36347750109218, + "grad_norm": 0.28845369815826416, + "learning_rate": 0.0006, + "loss": 4.530844688415527, + "step": 674 + }, + { + "epoch": 9.37745740498034, + "grad_norm": 0.32285866141319275, + "learning_rate": 0.0006, + "loss": 4.55369758605957, + "step": 675 + }, + { + "epoch": 9.391437308868502, + "grad_norm": 0.3726065754890442, + "learning_rate": 0.0006, + "loss": 4.524348258972168, + "step": 676 + }, + { + "epoch": 9.405417212756662, + "grad_norm": 0.39524078369140625, + "learning_rate": 0.0006, + "loss": 4.535778045654297, + "step": 677 + }, + { + "epoch": 9.419397116644824, + "grad_norm": 0.3859797716140747, + "learning_rate": 0.0006, + "loss": 4.538474082946777, + "step": 678 + }, + { + "epoch": 9.433377020532983, + "grad_norm": 0.36151406168937683, + "learning_rate": 0.0006, + "loss": 4.54434061050415, + "step": 679 + }, + { + "epoch": 9.447356924421145, + "grad_norm": 0.40345999598503113, + "learning_rate": 0.0006, + "loss": 4.532961845397949, + "step": 680 + }, + { + "epoch": 9.461336828309305, + "grad_norm": 0.38864144682884216, + "learning_rate": 0.0006, + "loss": 4.567630767822266, + "step": 681 + }, + { + "epoch": 9.475316732197467, + "grad_norm": 0.3816355764865875, + "learning_rate": 0.0006, + "loss": 4.535771369934082, + "step": 682 + }, + { + "epoch": 9.489296636085626, + "grad_norm": 0.38756558299064636, + "learning_rate": 0.0006, + "loss": 4.4971089363098145, + "step": 683 + }, + { + "epoch": 9.503276539973788, + "grad_norm": 0.4572933614253998, + "learning_rate": 0.0006, + "loss": 4.534860134124756, + "step": 684 + }, + { + "epoch": 9.517256443861948, + "grad_norm": 0.42368650436401367, + "learning_rate": 0.0006, + "loss": 4.542638301849365, + "step": 685 + }, + { + "epoch": 9.53123634775011, + "grad_norm": 0.36939486861228943, + "learning_rate": 0.0006, + "loss": 4.571430206298828, + "step": 686 + }, + { + "epoch": 9.54521625163827, + "grad_norm": 0.3900398313999176, + "learning_rate": 0.0006, + "loss": 4.544435501098633, + "step": 687 + }, + { + "epoch": 9.55919615552643, + "grad_norm": 0.37829288840293884, + "learning_rate": 0.0006, + "loss": 4.564268112182617, + "step": 688 + }, + { + "epoch": 9.57317605941459, + "grad_norm": 0.3553886115550995, + "learning_rate": 0.0006, + "loss": 4.5373430252075195, + "step": 689 + }, + { + "epoch": 9.587155963302752, + "grad_norm": 0.3613419532775879, + "learning_rate": 0.0006, + "loss": 4.559074401855469, + "step": 690 + }, + { + "epoch": 9.601135867190912, + "grad_norm": 0.32644546031951904, + "learning_rate": 0.0006, + "loss": 4.533667087554932, + "step": 691 + }, + { + "epoch": 9.615115771079074, + "grad_norm": 0.3264399468898773, + "learning_rate": 0.0006, + "loss": 4.508299350738525, + "step": 692 + }, + { + "epoch": 9.629095674967235, + "grad_norm": 0.3534526526927948, + "learning_rate": 0.0006, + "loss": 4.542442798614502, + "step": 693 + }, + { + "epoch": 9.643075578855395, + "grad_norm": 0.3333452343940735, + "learning_rate": 0.0006, + "loss": 4.497692584991455, + "step": 694 + }, + { + "epoch": 9.657055482743557, + "grad_norm": 0.3214292526245117, + "learning_rate": 0.0006, + "loss": 4.512363433837891, + "step": 695 + }, + { + "epoch": 9.671035386631717, + "grad_norm": 0.2805672585964203, + "learning_rate": 0.0006, + "loss": 4.496874809265137, + "step": 696 + }, + { + "epoch": 9.685015290519878, + "grad_norm": 0.2618725895881653, + "learning_rate": 0.0006, + "loss": 4.51375675201416, + "step": 697 + }, + { + "epoch": 9.698995194408038, + "grad_norm": 0.2556597888469696, + "learning_rate": 0.0006, + "loss": 4.512338638305664, + "step": 698 + }, + { + "epoch": 9.7129750982962, + "grad_norm": 0.23784305155277252, + "learning_rate": 0.0006, + "loss": 4.486503601074219, + "step": 699 + }, + { + "epoch": 9.72695500218436, + "grad_norm": 0.2240338921546936, + "learning_rate": 0.0006, + "loss": 4.486850261688232, + "step": 700 + }, + { + "epoch": 9.740934906072521, + "grad_norm": 0.24686725437641144, + "learning_rate": 0.0006, + "loss": 4.501359462738037, + "step": 701 + }, + { + "epoch": 9.754914809960681, + "grad_norm": 0.20819595456123352, + "learning_rate": 0.0006, + "loss": 4.495186805725098, + "step": 702 + }, + { + "epoch": 9.768894713848843, + "grad_norm": 0.21858957409858704, + "learning_rate": 0.0006, + "loss": 4.475093364715576, + "step": 703 + }, + { + "epoch": 9.782874617737003, + "grad_norm": 0.22676466405391693, + "learning_rate": 0.0006, + "loss": 4.4702534675598145, + "step": 704 + }, + { + "epoch": 9.796854521625164, + "grad_norm": 0.18317611515522003, + "learning_rate": 0.0006, + "loss": 4.471231937408447, + "step": 705 + }, + { + "epoch": 9.810834425513324, + "grad_norm": 0.20979148149490356, + "learning_rate": 0.0006, + "loss": 4.454103946685791, + "step": 706 + }, + { + "epoch": 9.824814329401486, + "grad_norm": 0.2146051526069641, + "learning_rate": 0.0006, + "loss": 4.505178928375244, + "step": 707 + }, + { + "epoch": 9.838794233289645, + "grad_norm": 0.2344852089881897, + "learning_rate": 0.0006, + "loss": 4.437984943389893, + "step": 708 + }, + { + "epoch": 9.852774137177807, + "grad_norm": 0.26532089710235596, + "learning_rate": 0.0006, + "loss": 4.477126121520996, + "step": 709 + }, + { + "epoch": 9.866754041065967, + "grad_norm": 0.2737913131713867, + "learning_rate": 0.0006, + "loss": 4.498421669006348, + "step": 710 + }, + { + "epoch": 9.880733944954128, + "grad_norm": 0.26651278138160706, + "learning_rate": 0.0006, + "loss": 4.480839729309082, + "step": 711 + }, + { + "epoch": 9.89471384884229, + "grad_norm": 0.26576584577560425, + "learning_rate": 0.0006, + "loss": 4.490936279296875, + "step": 712 + }, + { + "epoch": 9.90869375273045, + "grad_norm": 0.22483965754508972, + "learning_rate": 0.0006, + "loss": 4.477953910827637, + "step": 713 + }, + { + "epoch": 9.922673656618612, + "grad_norm": 0.23576045036315918, + "learning_rate": 0.0006, + "loss": 4.4731292724609375, + "step": 714 + }, + { + "epoch": 9.936653560506771, + "grad_norm": 0.2731139361858368, + "learning_rate": 0.0006, + "loss": 4.441622734069824, + "step": 715 + }, + { + "epoch": 9.950633464394933, + "grad_norm": 0.2677643597126007, + "learning_rate": 0.0006, + "loss": 4.49604606628418, + "step": 716 + }, + { + "epoch": 9.964613368283093, + "grad_norm": 0.21940895915031433, + "learning_rate": 0.0006, + "loss": 4.485573768615723, + "step": 717 + }, + { + "epoch": 9.978593272171254, + "grad_norm": 0.2060987651348114, + "learning_rate": 0.0006, + "loss": 4.482657432556152, + "step": 718 + }, + { + "epoch": 9.992573176059414, + "grad_norm": 0.22163978219032288, + "learning_rate": 0.0006, + "loss": 4.478459358215332, + "step": 719 + }, + { + "epoch": 10.0, + "grad_norm": 0.2505086064338684, + "learning_rate": 0.0006, + "loss": 4.4393510818481445, + "step": 720 + }, + { + "epoch": 10.0, + "eval_loss": 4.695676803588867, + "eval_runtime": 49.0751, + "eval_samples_per_second": 49.76, + "eval_steps_per_second": 3.118, + "step": 720 + }, + { + "epoch": 10.013979903888162, + "grad_norm": 0.23820190131664276, + "learning_rate": 0.0006, + "loss": 4.437685489654541, + "step": 721 + }, + { + "epoch": 10.027959807776321, + "grad_norm": 0.2220371812582016, + "learning_rate": 0.0006, + "loss": 4.449873924255371, + "step": 722 + }, + { + "epoch": 10.041939711664483, + "grad_norm": 0.20369848608970642, + "learning_rate": 0.0006, + "loss": 4.448882579803467, + "step": 723 + }, + { + "epoch": 10.055919615552643, + "grad_norm": 0.2360001504421234, + "learning_rate": 0.0006, + "loss": 4.399251937866211, + "step": 724 + }, + { + "epoch": 10.069899519440805, + "grad_norm": 0.23537491261959076, + "learning_rate": 0.0006, + "loss": 4.442960739135742, + "step": 725 + }, + { + "epoch": 10.083879423328964, + "grad_norm": 0.24433870613574982, + "learning_rate": 0.0006, + "loss": 4.44808292388916, + "step": 726 + }, + { + "epoch": 10.097859327217126, + "grad_norm": 0.3406696021556854, + "learning_rate": 0.0006, + "loss": 4.443426132202148, + "step": 727 + }, + { + "epoch": 10.111839231105286, + "grad_norm": 0.4102286100387573, + "learning_rate": 0.0006, + "loss": 4.424919605255127, + "step": 728 + }, + { + "epoch": 10.125819134993447, + "grad_norm": 0.36462604999542236, + "learning_rate": 0.0006, + "loss": 4.45366907119751, + "step": 729 + }, + { + "epoch": 10.139799038881607, + "grad_norm": 0.4374827444553375, + "learning_rate": 0.0006, + "loss": 4.415630340576172, + "step": 730 + }, + { + "epoch": 10.153778942769769, + "grad_norm": 0.45248138904571533, + "learning_rate": 0.0006, + "loss": 4.448849678039551, + "step": 731 + }, + { + "epoch": 10.167758846657929, + "grad_norm": 0.3806457221508026, + "learning_rate": 0.0006, + "loss": 4.443390846252441, + "step": 732 + }, + { + "epoch": 10.18173875054609, + "grad_norm": 0.3491523861885071, + "learning_rate": 0.0006, + "loss": 4.4648637771606445, + "step": 733 + }, + { + "epoch": 10.19571865443425, + "grad_norm": 0.3327210247516632, + "learning_rate": 0.0006, + "loss": 4.460919380187988, + "step": 734 + }, + { + "epoch": 10.209698558322412, + "grad_norm": 0.29772236943244934, + "learning_rate": 0.0006, + "loss": 4.45159912109375, + "step": 735 + }, + { + "epoch": 10.223678462210572, + "grad_norm": 0.33083397150039673, + "learning_rate": 0.0006, + "loss": 4.463382720947266, + "step": 736 + }, + { + "epoch": 10.237658366098733, + "grad_norm": 0.3930598795413971, + "learning_rate": 0.0006, + "loss": 4.434510231018066, + "step": 737 + }, + { + "epoch": 10.251638269986893, + "grad_norm": 0.4342896044254303, + "learning_rate": 0.0006, + "loss": 4.451700210571289, + "step": 738 + }, + { + "epoch": 10.265618173875055, + "grad_norm": 0.4544043242931366, + "learning_rate": 0.0006, + "loss": 4.437224388122559, + "step": 739 + }, + { + "epoch": 10.279598077763215, + "grad_norm": 0.4487038254737854, + "learning_rate": 0.0006, + "loss": 4.46157693862915, + "step": 740 + }, + { + "epoch": 10.293577981651376, + "grad_norm": 0.4420500695705414, + "learning_rate": 0.0006, + "loss": 4.399561405181885, + "step": 741 + }, + { + "epoch": 10.307557885539538, + "grad_norm": 0.4167289435863495, + "learning_rate": 0.0006, + "loss": 4.41792106628418, + "step": 742 + }, + { + "epoch": 10.321537789427698, + "grad_norm": 0.3186971843242645, + "learning_rate": 0.0006, + "loss": 4.435683250427246, + "step": 743 + }, + { + "epoch": 10.33551769331586, + "grad_norm": 0.3077184855937958, + "learning_rate": 0.0006, + "loss": 4.481947898864746, + "step": 744 + }, + { + "epoch": 10.349497597204019, + "grad_norm": 0.26811280846595764, + "learning_rate": 0.0006, + "loss": 4.4339447021484375, + "step": 745 + }, + { + "epoch": 10.36347750109218, + "grad_norm": 0.28448057174682617, + "learning_rate": 0.0006, + "loss": 4.441644668579102, + "step": 746 + }, + { + "epoch": 10.37745740498034, + "grad_norm": 0.30731502175331116, + "learning_rate": 0.0006, + "loss": 4.428773880004883, + "step": 747 + }, + { + "epoch": 10.391437308868502, + "grad_norm": 0.28036001324653625, + "learning_rate": 0.0006, + "loss": 4.4433135986328125, + "step": 748 + }, + { + "epoch": 10.405417212756662, + "grad_norm": 0.2882847189903259, + "learning_rate": 0.0006, + "loss": 4.433401107788086, + "step": 749 + }, + { + "epoch": 10.419397116644824, + "grad_norm": 0.23622776567935944, + "learning_rate": 0.0006, + "loss": 4.444611549377441, + "step": 750 + }, + { + "epoch": 10.433377020532983, + "grad_norm": 0.2306167632341385, + "learning_rate": 0.0006, + "loss": 4.397875785827637, + "step": 751 + }, + { + "epoch": 10.447356924421145, + "grad_norm": 0.22725090384483337, + "learning_rate": 0.0006, + "loss": 4.429759502410889, + "step": 752 + }, + { + "epoch": 10.461336828309305, + "grad_norm": 0.250709593296051, + "learning_rate": 0.0006, + "loss": 4.415618896484375, + "step": 753 + }, + { + "epoch": 10.475316732197467, + "grad_norm": 0.22341276705265045, + "learning_rate": 0.0006, + "loss": 4.389362335205078, + "step": 754 + }, + { + "epoch": 10.489296636085626, + "grad_norm": 0.22595296800136566, + "learning_rate": 0.0006, + "loss": 4.383584022521973, + "step": 755 + }, + { + "epoch": 10.503276539973788, + "grad_norm": 0.24277575314044952, + "learning_rate": 0.0006, + "loss": 4.403777599334717, + "step": 756 + }, + { + "epoch": 10.517256443861948, + "grad_norm": 0.2670708894729614, + "learning_rate": 0.0006, + "loss": 4.398499011993408, + "step": 757 + }, + { + "epoch": 10.53123634775011, + "grad_norm": 0.2640696167945862, + "learning_rate": 0.0006, + "loss": 4.426726818084717, + "step": 758 + }, + { + "epoch": 10.54521625163827, + "grad_norm": 0.2248653769493103, + "learning_rate": 0.0006, + "loss": 4.400103569030762, + "step": 759 + }, + { + "epoch": 10.55919615552643, + "grad_norm": 0.21466240286827087, + "learning_rate": 0.0006, + "loss": 4.404158592224121, + "step": 760 + }, + { + "epoch": 10.57317605941459, + "grad_norm": 0.236923947930336, + "learning_rate": 0.0006, + "loss": 4.37059211730957, + "step": 761 + }, + { + "epoch": 10.587155963302752, + "grad_norm": 0.2515387535095215, + "learning_rate": 0.0006, + "loss": 4.415055274963379, + "step": 762 + }, + { + "epoch": 10.601135867190912, + "grad_norm": 0.23461885750293732, + "learning_rate": 0.0006, + "loss": 4.375036239624023, + "step": 763 + }, + { + "epoch": 10.615115771079074, + "grad_norm": 0.20975761115550995, + "learning_rate": 0.0006, + "loss": 4.3903398513793945, + "step": 764 + }, + { + "epoch": 10.629095674967235, + "grad_norm": 0.19859997928142548, + "learning_rate": 0.0006, + "loss": 4.379380226135254, + "step": 765 + }, + { + "epoch": 10.643075578855395, + "grad_norm": 0.22310325503349304, + "learning_rate": 0.0006, + "loss": 4.382110595703125, + "step": 766 + }, + { + "epoch": 10.657055482743557, + "grad_norm": 0.23940646648406982, + "learning_rate": 0.0006, + "loss": 4.393403053283691, + "step": 767 + }, + { + "epoch": 10.671035386631717, + "grad_norm": 0.2230468988418579, + "learning_rate": 0.0006, + "loss": 4.391970634460449, + "step": 768 + }, + { + "epoch": 10.685015290519878, + "grad_norm": 0.18139775097370148, + "learning_rate": 0.0006, + "loss": 4.399993896484375, + "step": 769 + }, + { + "epoch": 10.698995194408038, + "grad_norm": 0.19936902821063995, + "learning_rate": 0.0006, + "loss": 4.373854160308838, + "step": 770 + }, + { + "epoch": 10.7129750982962, + "grad_norm": 0.22132465243339539, + "learning_rate": 0.0006, + "loss": 4.377530097961426, + "step": 771 + }, + { + "epoch": 10.72695500218436, + "grad_norm": 0.24254944920539856, + "learning_rate": 0.0006, + "loss": 4.398683547973633, + "step": 772 + }, + { + "epoch": 10.740934906072521, + "grad_norm": 0.2666397988796234, + "learning_rate": 0.0006, + "loss": 4.3879899978637695, + "step": 773 + }, + { + "epoch": 10.754914809960681, + "grad_norm": 0.24728631973266602, + "learning_rate": 0.0006, + "loss": 4.356976509094238, + "step": 774 + }, + { + "epoch": 10.768894713848843, + "grad_norm": 0.2612453103065491, + "learning_rate": 0.0006, + "loss": 4.391525745391846, + "step": 775 + }, + { + "epoch": 10.782874617737003, + "grad_norm": 0.24060510098934174, + "learning_rate": 0.0006, + "loss": 4.376985549926758, + "step": 776 + }, + { + "epoch": 10.796854521625164, + "grad_norm": 0.22708238661289215, + "learning_rate": 0.0006, + "loss": 4.368545055389404, + "step": 777 + }, + { + "epoch": 10.810834425513324, + "grad_norm": 0.26931291818618774, + "learning_rate": 0.0006, + "loss": 4.369227409362793, + "step": 778 + }, + { + "epoch": 10.824814329401486, + "grad_norm": 0.265288770198822, + "learning_rate": 0.0006, + "loss": 4.378131866455078, + "step": 779 + }, + { + "epoch": 10.838794233289645, + "grad_norm": 0.3015305697917938, + "learning_rate": 0.0006, + "loss": 4.376267910003662, + "step": 780 + }, + { + "epoch": 10.852774137177807, + "grad_norm": 0.3345746099948883, + "learning_rate": 0.0006, + "loss": 4.3751420974731445, + "step": 781 + }, + { + "epoch": 10.866754041065967, + "grad_norm": 0.32446005940437317, + "learning_rate": 0.0006, + "loss": 4.370899200439453, + "step": 782 + }, + { + "epoch": 10.880733944954128, + "grad_norm": 0.27070069313049316, + "learning_rate": 0.0006, + "loss": 4.391958236694336, + "step": 783 + }, + { + "epoch": 10.89471384884229, + "grad_norm": 0.25584667921066284, + "learning_rate": 0.0006, + "loss": 4.407493591308594, + "step": 784 + }, + { + "epoch": 10.90869375273045, + "grad_norm": 0.2710244655609131, + "learning_rate": 0.0006, + "loss": 4.374400615692139, + "step": 785 + }, + { + "epoch": 10.922673656618612, + "grad_norm": 0.32413622736930847, + "learning_rate": 0.0006, + "loss": 4.379607200622559, + "step": 786 + }, + { + "epoch": 10.936653560506771, + "grad_norm": 0.3253782391548157, + "learning_rate": 0.0006, + "loss": 4.376441955566406, + "step": 787 + }, + { + "epoch": 10.950633464394933, + "grad_norm": 0.30534613132476807, + "learning_rate": 0.0006, + "loss": 4.382739067077637, + "step": 788 + }, + { + "epoch": 10.964613368283093, + "grad_norm": 0.35726621747016907, + "learning_rate": 0.0006, + "loss": 4.3765869140625, + "step": 789 + }, + { + "epoch": 10.978593272171254, + "grad_norm": 0.32763028144836426, + "learning_rate": 0.0006, + "loss": 4.391537189483643, + "step": 790 + }, + { + "epoch": 10.992573176059414, + "grad_norm": 0.31811195611953735, + "learning_rate": 0.0006, + "loss": 4.371829032897949, + "step": 791 + }, + { + "epoch": 11.0, + "grad_norm": 0.37317267060279846, + "learning_rate": 0.0006, + "loss": 4.381916522979736, + "step": 792 + }, + { + "epoch": 11.0, + "eval_loss": 4.588687896728516, + "eval_runtime": 44.8041, + "eval_samples_per_second": 54.504, + "eval_steps_per_second": 3.415, + "step": 792 + }, + { + "epoch": 11.013979903888162, + "grad_norm": 0.37882938981056213, + "learning_rate": 0.0006, + "loss": 4.3463640213012695, + "step": 793 + }, + { + "epoch": 11.027959807776321, + "grad_norm": 0.34719496965408325, + "learning_rate": 0.0006, + "loss": 4.329861640930176, + "step": 794 + }, + { + "epoch": 11.041939711664483, + "grad_norm": 0.36161214113235474, + "learning_rate": 0.0006, + "loss": 4.3287835121154785, + "step": 795 + }, + { + "epoch": 11.055919615552643, + "grad_norm": 0.3743649125099182, + "learning_rate": 0.0006, + "loss": 4.334251403808594, + "step": 796 + }, + { + "epoch": 11.069899519440805, + "grad_norm": 0.32266443967819214, + "learning_rate": 0.0006, + "loss": 4.364782810211182, + "step": 797 + }, + { + "epoch": 11.083879423328964, + "grad_norm": 0.27460047602653503, + "learning_rate": 0.0006, + "loss": 4.348380088806152, + "step": 798 + }, + { + "epoch": 11.097859327217126, + "grad_norm": 0.30498892068862915, + "learning_rate": 0.0006, + "loss": 4.347856521606445, + "step": 799 + }, + { + "epoch": 11.111839231105286, + "grad_norm": 0.29740771651268005, + "learning_rate": 0.0006, + "loss": 4.343471050262451, + "step": 800 + }, + { + "epoch": 11.125819134993447, + "grad_norm": 0.3004681169986725, + "learning_rate": 0.0006, + "loss": 4.337590217590332, + "step": 801 + }, + { + "epoch": 11.139799038881607, + "grad_norm": 0.3000192642211914, + "learning_rate": 0.0006, + "loss": 4.349949836730957, + "step": 802 + }, + { + "epoch": 11.153778942769769, + "grad_norm": 0.27461889386177063, + "learning_rate": 0.0006, + "loss": 4.338934898376465, + "step": 803 + }, + { + "epoch": 11.167758846657929, + "grad_norm": 0.2856169641017914, + "learning_rate": 0.0006, + "loss": 4.320754051208496, + "step": 804 + }, + { + "epoch": 11.18173875054609, + "grad_norm": 0.29822713136672974, + "learning_rate": 0.0006, + "loss": 4.357949733734131, + "step": 805 + }, + { + "epoch": 11.19571865443425, + "grad_norm": 0.34061339497566223, + "learning_rate": 0.0006, + "loss": 4.327282905578613, + "step": 806 + }, + { + "epoch": 11.209698558322412, + "grad_norm": 0.3379063010215759, + "learning_rate": 0.0006, + "loss": 4.355471611022949, + "step": 807 + }, + { + "epoch": 11.223678462210572, + "grad_norm": 0.2859216630458832, + "learning_rate": 0.0006, + "loss": 4.352344989776611, + "step": 808 + }, + { + "epoch": 11.237658366098733, + "grad_norm": 0.29522669315338135, + "learning_rate": 0.0006, + "loss": 4.349186897277832, + "step": 809 + }, + { + "epoch": 11.251638269986893, + "grad_norm": 0.273798406124115, + "learning_rate": 0.0006, + "loss": 4.342379570007324, + "step": 810 + }, + { + "epoch": 11.265618173875055, + "grad_norm": 0.25298982858657837, + "learning_rate": 0.0006, + "loss": 4.358835220336914, + "step": 811 + }, + { + "epoch": 11.279598077763215, + "grad_norm": 0.2170463651418686, + "learning_rate": 0.0006, + "loss": 4.3422017097473145, + "step": 812 + }, + { + "epoch": 11.293577981651376, + "grad_norm": 0.24855731427669525, + "learning_rate": 0.0006, + "loss": 4.322849750518799, + "step": 813 + }, + { + "epoch": 11.307557885539538, + "grad_norm": 0.22564345598220825, + "learning_rate": 0.0006, + "loss": 4.316864967346191, + "step": 814 + }, + { + "epoch": 11.321537789427698, + "grad_norm": 0.21532197296619415, + "learning_rate": 0.0006, + "loss": 4.326743125915527, + "step": 815 + }, + { + "epoch": 11.33551769331586, + "grad_norm": 0.20514146983623505, + "learning_rate": 0.0006, + "loss": 4.326531887054443, + "step": 816 + }, + { + "epoch": 11.349497597204019, + "grad_norm": 0.19035090506076813, + "learning_rate": 0.0006, + "loss": 4.318154335021973, + "step": 817 + }, + { + "epoch": 11.36347750109218, + "grad_norm": 0.17889662086963654, + "learning_rate": 0.0006, + "loss": 4.35410213470459, + "step": 818 + }, + { + "epoch": 11.37745740498034, + "grad_norm": 0.20564863085746765, + "learning_rate": 0.0006, + "loss": 4.350226879119873, + "step": 819 + }, + { + "epoch": 11.391437308868502, + "grad_norm": 0.2412603348493576, + "learning_rate": 0.0006, + "loss": 4.325137138366699, + "step": 820 + }, + { + "epoch": 11.405417212756662, + "grad_norm": 0.2603496015071869, + "learning_rate": 0.0006, + "loss": 4.335752487182617, + "step": 821 + }, + { + "epoch": 11.419397116644824, + "grad_norm": 0.2968119978904724, + "learning_rate": 0.0006, + "loss": 4.3317670822143555, + "step": 822 + }, + { + "epoch": 11.433377020532983, + "grad_norm": 0.3280937969684601, + "learning_rate": 0.0006, + "loss": 4.322279453277588, + "step": 823 + }, + { + "epoch": 11.447356924421145, + "grad_norm": 0.3598847985267639, + "learning_rate": 0.0006, + "loss": 4.312255859375, + "step": 824 + }, + { + "epoch": 11.461336828309305, + "grad_norm": 0.3996485471725464, + "learning_rate": 0.0006, + "loss": 4.327103614807129, + "step": 825 + }, + { + "epoch": 11.475316732197467, + "grad_norm": 0.4352041780948639, + "learning_rate": 0.0006, + "loss": 4.368639945983887, + "step": 826 + }, + { + "epoch": 11.489296636085626, + "grad_norm": 0.4451918601989746, + "learning_rate": 0.0006, + "loss": 4.335113048553467, + "step": 827 + }, + { + "epoch": 11.503276539973788, + "grad_norm": 0.4403933584690094, + "learning_rate": 0.0006, + "loss": 4.369889259338379, + "step": 828 + }, + { + "epoch": 11.517256443861948, + "grad_norm": 0.34862443804740906, + "learning_rate": 0.0006, + "loss": 4.316292762756348, + "step": 829 + }, + { + "epoch": 11.53123634775011, + "grad_norm": 0.3240634500980377, + "learning_rate": 0.0006, + "loss": 4.328078746795654, + "step": 830 + }, + { + "epoch": 11.54521625163827, + "grad_norm": 0.2445751428604126, + "learning_rate": 0.0006, + "loss": 4.291940689086914, + "step": 831 + }, + { + "epoch": 11.55919615552643, + "grad_norm": 0.24376554787158966, + "learning_rate": 0.0006, + "loss": 4.339217662811279, + "step": 832 + }, + { + "epoch": 11.57317605941459, + "grad_norm": 0.22419725358486176, + "learning_rate": 0.0006, + "loss": 4.2887468338012695, + "step": 833 + }, + { + "epoch": 11.587155963302752, + "grad_norm": 0.22318261861801147, + "learning_rate": 0.0006, + "loss": 4.298492908477783, + "step": 834 + }, + { + "epoch": 11.601135867190912, + "grad_norm": 0.2357342392206192, + "learning_rate": 0.0006, + "loss": 4.328692436218262, + "step": 835 + }, + { + "epoch": 11.615115771079074, + "grad_norm": 0.25450602173805237, + "learning_rate": 0.0006, + "loss": 4.360058784484863, + "step": 836 + }, + { + "epoch": 11.629095674967235, + "grad_norm": 0.24540965259075165, + "learning_rate": 0.0006, + "loss": 4.311890602111816, + "step": 837 + }, + { + "epoch": 11.643075578855395, + "grad_norm": 0.2535638213157654, + "learning_rate": 0.0006, + "loss": 4.327730178833008, + "step": 838 + }, + { + "epoch": 11.657055482743557, + "grad_norm": 0.23063556849956512, + "learning_rate": 0.0006, + "loss": 4.303299903869629, + "step": 839 + }, + { + "epoch": 11.671035386631717, + "grad_norm": 0.21813632547855377, + "learning_rate": 0.0006, + "loss": 4.315352439880371, + "step": 840 + }, + { + "epoch": 11.685015290519878, + "grad_norm": 0.2170359194278717, + "learning_rate": 0.0006, + "loss": 4.278632164001465, + "step": 841 + }, + { + "epoch": 11.698995194408038, + "grad_norm": 0.21059377491474152, + "learning_rate": 0.0006, + "loss": 4.306049346923828, + "step": 842 + }, + { + "epoch": 11.7129750982962, + "grad_norm": 0.19872888922691345, + "learning_rate": 0.0006, + "loss": 4.3091535568237305, + "step": 843 + }, + { + "epoch": 11.72695500218436, + "grad_norm": 0.20059862732887268, + "learning_rate": 0.0006, + "loss": 4.2884063720703125, + "step": 844 + }, + { + "epoch": 11.740934906072521, + "grad_norm": 0.19952483475208282, + "learning_rate": 0.0006, + "loss": 4.293610572814941, + "step": 845 + }, + { + "epoch": 11.754914809960681, + "grad_norm": 0.19794537127017975, + "learning_rate": 0.0006, + "loss": 4.288822174072266, + "step": 846 + }, + { + "epoch": 11.768894713848843, + "grad_norm": 0.213914692401886, + "learning_rate": 0.0006, + "loss": 4.320849418640137, + "step": 847 + }, + { + "epoch": 11.782874617737003, + "grad_norm": 0.18500955402851105, + "learning_rate": 0.0006, + "loss": 4.29300594329834, + "step": 848 + }, + { + "epoch": 11.796854521625164, + "grad_norm": 0.19446656107902527, + "learning_rate": 0.0006, + "loss": 4.3079352378845215, + "step": 849 + }, + { + "epoch": 11.810834425513324, + "grad_norm": 0.22191768884658813, + "learning_rate": 0.0006, + "loss": 4.295967102050781, + "step": 850 + }, + { + "epoch": 11.824814329401486, + "grad_norm": 0.20748084783554077, + "learning_rate": 0.0006, + "loss": 4.332365989685059, + "step": 851 + }, + { + "epoch": 11.838794233289645, + "grad_norm": 0.20993955433368683, + "learning_rate": 0.0006, + "loss": 4.294618129730225, + "step": 852 + }, + { + "epoch": 11.852774137177807, + "grad_norm": 0.23506952822208405, + "learning_rate": 0.0006, + "loss": 4.313426971435547, + "step": 853 + }, + { + "epoch": 11.866754041065967, + "grad_norm": 0.2379443347454071, + "learning_rate": 0.0006, + "loss": 4.297664642333984, + "step": 854 + }, + { + "epoch": 11.880733944954128, + "grad_norm": 0.2127852737903595, + "learning_rate": 0.0006, + "loss": 4.2807698249816895, + "step": 855 + }, + { + "epoch": 11.89471384884229, + "grad_norm": 0.2125532180070877, + "learning_rate": 0.0006, + "loss": 4.310990333557129, + "step": 856 + }, + { + "epoch": 11.90869375273045, + "grad_norm": 0.1996062994003296, + "learning_rate": 0.0006, + "loss": 4.253237724304199, + "step": 857 + }, + { + "epoch": 11.922673656618612, + "grad_norm": 0.20747603476047516, + "learning_rate": 0.0006, + "loss": 4.294193267822266, + "step": 858 + }, + { + "epoch": 11.936653560506771, + "grad_norm": 0.24082425236701965, + "learning_rate": 0.0006, + "loss": 4.269967079162598, + "step": 859 + }, + { + "epoch": 11.950633464394933, + "grad_norm": 0.28993573784828186, + "learning_rate": 0.0006, + "loss": 4.294550895690918, + "step": 860 + }, + { + "epoch": 11.964613368283093, + "grad_norm": 0.29576948285102844, + "learning_rate": 0.0006, + "loss": 4.3188252449035645, + "step": 861 + }, + { + "epoch": 11.978593272171254, + "grad_norm": 0.2754935026168823, + "learning_rate": 0.0006, + "loss": 4.312817573547363, + "step": 862 + }, + { + "epoch": 11.992573176059414, + "grad_norm": 0.3062523305416107, + "learning_rate": 0.0006, + "loss": 4.288214683532715, + "step": 863 + }, + { + "epoch": 12.0, + "grad_norm": 0.3367644250392914, + "learning_rate": 0.0006, + "loss": 4.314888954162598, + "step": 864 + }, + { + "epoch": 12.0, + "eval_loss": 4.516861438751221, + "eval_runtime": 44.2584, + "eval_samples_per_second": 55.176, + "eval_steps_per_second": 3.457, + "step": 864 + }, + { + "epoch": 12.013979903888162, + "grad_norm": 0.2976512014865875, + "learning_rate": 0.0006, + "loss": 4.278797149658203, + "step": 865 + }, + { + "epoch": 12.027959807776321, + "grad_norm": 0.32217127084732056, + "learning_rate": 0.0006, + "loss": 4.2823615074157715, + "step": 866 + }, + { + "epoch": 12.041939711664483, + "grad_norm": 0.31538400053977966, + "learning_rate": 0.0006, + "loss": 4.252805709838867, + "step": 867 + }, + { + "epoch": 12.055919615552643, + "grad_norm": 0.3501375913619995, + "learning_rate": 0.0006, + "loss": 4.276501655578613, + "step": 868 + }, + { + "epoch": 12.069899519440805, + "grad_norm": 0.3452056646347046, + "learning_rate": 0.0006, + "loss": 4.275739669799805, + "step": 869 + }, + { + "epoch": 12.083879423328964, + "grad_norm": 0.36963316798210144, + "learning_rate": 0.0006, + "loss": 4.3215227127075195, + "step": 870 + }, + { + "epoch": 12.097859327217126, + "grad_norm": 0.41605016589164734, + "learning_rate": 0.0006, + "loss": 4.28739595413208, + "step": 871 + }, + { + "epoch": 12.111839231105286, + "grad_norm": 0.37700653076171875, + "learning_rate": 0.0006, + "loss": 4.291154861450195, + "step": 872 + }, + { + "epoch": 12.125819134993447, + "grad_norm": 0.3194253444671631, + "learning_rate": 0.0006, + "loss": 4.259326934814453, + "step": 873 + }, + { + "epoch": 12.139799038881607, + "grad_norm": 0.31770631670951843, + "learning_rate": 0.0006, + "loss": 4.270082473754883, + "step": 874 + }, + { + "epoch": 12.153778942769769, + "grad_norm": 0.3748120069503784, + "learning_rate": 0.0006, + "loss": 4.2727274894714355, + "step": 875 + }, + { + "epoch": 12.167758846657929, + "grad_norm": 0.3821348547935486, + "learning_rate": 0.0006, + "loss": 4.2848286628723145, + "step": 876 + }, + { + "epoch": 12.18173875054609, + "grad_norm": 0.31894201040267944, + "learning_rate": 0.0006, + "loss": 4.289551258087158, + "step": 877 + }, + { + "epoch": 12.19571865443425, + "grad_norm": 0.2695826292037964, + "learning_rate": 0.0006, + "loss": 4.2797346115112305, + "step": 878 + }, + { + "epoch": 12.209698558322412, + "grad_norm": 0.23966269195079803, + "learning_rate": 0.0006, + "loss": 4.24021577835083, + "step": 879 + }, + { + "epoch": 12.223678462210572, + "grad_norm": 0.24342599511146545, + "learning_rate": 0.0006, + "loss": 4.277721881866455, + "step": 880 + }, + { + "epoch": 12.237658366098733, + "grad_norm": 0.2522958815097809, + "learning_rate": 0.0006, + "loss": 4.263946533203125, + "step": 881 + }, + { + "epoch": 12.251638269986893, + "grad_norm": 0.2708299458026886, + "learning_rate": 0.0006, + "loss": 4.274540901184082, + "step": 882 + }, + { + "epoch": 12.265618173875055, + "grad_norm": 0.2978788912296295, + "learning_rate": 0.0006, + "loss": 4.2674970626831055, + "step": 883 + }, + { + "epoch": 12.279598077763215, + "grad_norm": 0.2898774743080139, + "learning_rate": 0.0006, + "loss": 4.235060691833496, + "step": 884 + }, + { + "epoch": 12.293577981651376, + "grad_norm": 0.27941837906837463, + "learning_rate": 0.0006, + "loss": 4.284140586853027, + "step": 885 + }, + { + "epoch": 12.307557885539538, + "grad_norm": 0.25050559639930725, + "learning_rate": 0.0006, + "loss": 4.270134925842285, + "step": 886 + }, + { + "epoch": 12.321537789427698, + "grad_norm": 0.21867156028747559, + "learning_rate": 0.0006, + "loss": 4.241571426391602, + "step": 887 + }, + { + "epoch": 12.33551769331586, + "grad_norm": 0.24735847115516663, + "learning_rate": 0.0006, + "loss": 4.253087997436523, + "step": 888 + }, + { + "epoch": 12.349497597204019, + "grad_norm": 0.23069104552268982, + "learning_rate": 0.0006, + "loss": 4.258606910705566, + "step": 889 + }, + { + "epoch": 12.36347750109218, + "grad_norm": 0.2594369947910309, + "learning_rate": 0.0006, + "loss": 4.307351112365723, + "step": 890 + }, + { + "epoch": 12.37745740498034, + "grad_norm": 0.25349098443984985, + "learning_rate": 0.0006, + "loss": 4.264268398284912, + "step": 891 + }, + { + "epoch": 12.391437308868502, + "grad_norm": 0.2550840675830841, + "learning_rate": 0.0006, + "loss": 4.247092247009277, + "step": 892 + }, + { + "epoch": 12.405417212756662, + "grad_norm": 0.2107602059841156, + "learning_rate": 0.0006, + "loss": 4.240527153015137, + "step": 893 + }, + { + "epoch": 12.419397116644824, + "grad_norm": 0.2025548368692398, + "learning_rate": 0.0006, + "loss": 4.244686126708984, + "step": 894 + }, + { + "epoch": 12.433377020532983, + "grad_norm": 0.22061701118946075, + "learning_rate": 0.0006, + "loss": 4.233231544494629, + "step": 895 + }, + { + "epoch": 12.447356924421145, + "grad_norm": 0.19503085315227509, + "learning_rate": 0.0006, + "loss": 4.23851203918457, + "step": 896 + }, + { + "epoch": 12.461336828309305, + "grad_norm": 0.19313643872737885, + "learning_rate": 0.0006, + "loss": 4.190886497497559, + "step": 897 + }, + { + "epoch": 12.475316732197467, + "grad_norm": 0.21094176173210144, + "learning_rate": 0.0006, + "loss": 4.277888298034668, + "step": 898 + }, + { + "epoch": 12.489296636085626, + "grad_norm": 0.1980651170015335, + "learning_rate": 0.0006, + "loss": 4.251066207885742, + "step": 899 + }, + { + "epoch": 12.503276539973788, + "grad_norm": 0.179737389087677, + "learning_rate": 0.0006, + "loss": 4.194703102111816, + "step": 900 + }, + { + "epoch": 12.517256443861948, + "grad_norm": 0.19069281220436096, + "learning_rate": 0.0006, + "loss": 4.242412567138672, + "step": 901 + }, + { + "epoch": 12.53123634775011, + "grad_norm": 0.191154345870018, + "learning_rate": 0.0006, + "loss": 4.2432780265808105, + "step": 902 + }, + { + "epoch": 12.54521625163827, + "grad_norm": 0.19760103523731232, + "learning_rate": 0.0006, + "loss": 4.23294734954834, + "step": 903 + }, + { + "epoch": 12.55919615552643, + "grad_norm": 0.19982324540615082, + "learning_rate": 0.0006, + "loss": 4.249764442443848, + "step": 904 + }, + { + "epoch": 12.57317605941459, + "grad_norm": 0.1986108422279358, + "learning_rate": 0.0006, + "loss": 4.213435649871826, + "step": 905 + }, + { + "epoch": 12.587155963302752, + "grad_norm": 0.19727319478988647, + "learning_rate": 0.0006, + "loss": 4.247962951660156, + "step": 906 + }, + { + "epoch": 12.601135867190912, + "grad_norm": 0.23404482007026672, + "learning_rate": 0.0006, + "loss": 4.237396240234375, + "step": 907 + }, + { + "epoch": 12.615115771079074, + "grad_norm": 0.21136441826820374, + "learning_rate": 0.0006, + "loss": 4.236040115356445, + "step": 908 + }, + { + "epoch": 12.629095674967235, + "grad_norm": 0.2209048718214035, + "learning_rate": 0.0006, + "loss": 4.234212875366211, + "step": 909 + }, + { + "epoch": 12.643075578855395, + "grad_norm": 0.22120307385921478, + "learning_rate": 0.0006, + "loss": 4.2711076736450195, + "step": 910 + }, + { + "epoch": 12.657055482743557, + "grad_norm": 0.22733066976070404, + "learning_rate": 0.0006, + "loss": 4.231651306152344, + "step": 911 + }, + { + "epoch": 12.671035386631717, + "grad_norm": 0.2435602843761444, + "learning_rate": 0.0006, + "loss": 4.249372482299805, + "step": 912 + }, + { + "epoch": 12.685015290519878, + "grad_norm": 0.28881654143333435, + "learning_rate": 0.0006, + "loss": 4.2626051902771, + "step": 913 + }, + { + "epoch": 12.698995194408038, + "grad_norm": 0.3211199641227722, + "learning_rate": 0.0006, + "loss": 4.254220485687256, + "step": 914 + }, + { + "epoch": 12.7129750982962, + "grad_norm": 0.3118100166320801, + "learning_rate": 0.0006, + "loss": 4.233747959136963, + "step": 915 + }, + { + "epoch": 12.72695500218436, + "grad_norm": 0.33411866426467896, + "learning_rate": 0.0006, + "loss": 4.270386219024658, + "step": 916 + }, + { + "epoch": 12.740934906072521, + "grad_norm": 0.2968253195285797, + "learning_rate": 0.0006, + "loss": 4.242254257202148, + "step": 917 + }, + { + "epoch": 12.754914809960681, + "grad_norm": 0.2959132194519043, + "learning_rate": 0.0006, + "loss": 4.232100486755371, + "step": 918 + }, + { + "epoch": 12.768894713848843, + "grad_norm": 0.2729283273220062, + "learning_rate": 0.0006, + "loss": 4.233869552612305, + "step": 919 + }, + { + "epoch": 12.782874617737003, + "grad_norm": 0.2669033408164978, + "learning_rate": 0.0006, + "loss": 4.261008262634277, + "step": 920 + }, + { + "epoch": 12.796854521625164, + "grad_norm": 0.2738507091999054, + "learning_rate": 0.0006, + "loss": 4.2286763191223145, + "step": 921 + }, + { + "epoch": 12.810834425513324, + "grad_norm": 0.29105183482170105, + "learning_rate": 0.0006, + "loss": 4.281410217285156, + "step": 922 + }, + { + "epoch": 12.824814329401486, + "grad_norm": 0.31330201029777527, + "learning_rate": 0.0006, + "loss": 4.264181613922119, + "step": 923 + }, + { + "epoch": 12.838794233289645, + "grad_norm": 0.31324025988578796, + "learning_rate": 0.0006, + "loss": 4.250385284423828, + "step": 924 + }, + { + "epoch": 12.852774137177807, + "grad_norm": 0.2727925181388855, + "learning_rate": 0.0006, + "loss": 4.24821138381958, + "step": 925 + }, + { + "epoch": 12.866754041065967, + "grad_norm": 0.27350082993507385, + "learning_rate": 0.0006, + "loss": 4.230215072631836, + "step": 926 + }, + { + "epoch": 12.880733944954128, + "grad_norm": 0.2269950658082962, + "learning_rate": 0.0006, + "loss": 4.210305213928223, + "step": 927 + }, + { + "epoch": 12.89471384884229, + "grad_norm": 0.24667619168758392, + "learning_rate": 0.0006, + "loss": 4.239969253540039, + "step": 928 + }, + { + "epoch": 12.90869375273045, + "grad_norm": 0.22510501742362976, + "learning_rate": 0.0006, + "loss": 4.192750930786133, + "step": 929 + }, + { + "epoch": 12.922673656618612, + "grad_norm": 0.22887611389160156, + "learning_rate": 0.0006, + "loss": 4.264463424682617, + "step": 930 + }, + { + "epoch": 12.936653560506771, + "grad_norm": 0.22195978462696075, + "learning_rate": 0.0006, + "loss": 4.205256938934326, + "step": 931 + }, + { + "epoch": 12.950633464394933, + "grad_norm": 0.23184578120708466, + "learning_rate": 0.0006, + "loss": 4.214578628540039, + "step": 932 + }, + { + "epoch": 12.964613368283093, + "grad_norm": 0.2186676561832428, + "learning_rate": 0.0006, + "loss": 4.227711200714111, + "step": 933 + }, + { + "epoch": 12.978593272171254, + "grad_norm": 0.2160426527261734, + "learning_rate": 0.0006, + "loss": 4.221796989440918, + "step": 934 + }, + { + "epoch": 12.992573176059414, + "grad_norm": 0.21562792360782623, + "learning_rate": 0.0006, + "loss": 4.21957540512085, + "step": 935 + }, + { + "epoch": 13.0, + "grad_norm": 0.22538058459758759, + "learning_rate": 0.0006, + "loss": 4.2353973388671875, + "step": 936 + }, + { + "epoch": 13.0, + "eval_loss": 4.426600933074951, + "eval_runtime": 44.8138, + "eval_samples_per_second": 54.492, + "eval_steps_per_second": 3.414, + "step": 936 + }, + { + "epoch": 13.013979903888162, + "grad_norm": 0.24888049066066742, + "learning_rate": 0.0006, + "loss": 4.18648624420166, + "step": 937 + }, + { + "epoch": 13.027959807776321, + "grad_norm": 0.28330180048942566, + "learning_rate": 0.0006, + "loss": 4.188892364501953, + "step": 938 + }, + { + "epoch": 13.041939711664483, + "grad_norm": 0.31152188777923584, + "learning_rate": 0.0006, + "loss": 4.2053399085998535, + "step": 939 + }, + { + "epoch": 13.055919615552643, + "grad_norm": 0.2842433452606201, + "learning_rate": 0.0006, + "loss": 4.191902160644531, + "step": 940 + }, + { + "epoch": 13.069899519440805, + "grad_norm": 0.23664532601833344, + "learning_rate": 0.0006, + "loss": 4.1831865310668945, + "step": 941 + }, + { + "epoch": 13.083879423328964, + "grad_norm": 0.24204140901565552, + "learning_rate": 0.0006, + "loss": 4.202641487121582, + "step": 942 + }, + { + "epoch": 13.097859327217126, + "grad_norm": 0.235311359167099, + "learning_rate": 0.0006, + "loss": 4.174511909484863, + "step": 943 + }, + { + "epoch": 13.111839231105286, + "grad_norm": 0.27127715945243835, + "learning_rate": 0.0006, + "loss": 4.201844215393066, + "step": 944 + }, + { + "epoch": 13.125819134993447, + "grad_norm": 0.2722373604774475, + "learning_rate": 0.0006, + "loss": 4.157383918762207, + "step": 945 + }, + { + "epoch": 13.139799038881607, + "grad_norm": 0.25446659326553345, + "learning_rate": 0.0006, + "loss": 4.221236228942871, + "step": 946 + }, + { + "epoch": 13.153778942769769, + "grad_norm": 0.273017019033432, + "learning_rate": 0.0006, + "loss": 4.195512771606445, + "step": 947 + }, + { + "epoch": 13.167758846657929, + "grad_norm": 0.24766312539577484, + "learning_rate": 0.0006, + "loss": 4.220959663391113, + "step": 948 + }, + { + "epoch": 13.18173875054609, + "grad_norm": 0.24636317789554596, + "learning_rate": 0.0006, + "loss": 4.214302062988281, + "step": 949 + }, + { + "epoch": 13.19571865443425, + "grad_norm": 0.3177756667137146, + "learning_rate": 0.0006, + "loss": 4.213500022888184, + "step": 950 + }, + { + "epoch": 13.209698558322412, + "grad_norm": 0.44579195976257324, + "learning_rate": 0.0006, + "loss": 4.227644920349121, + "step": 951 + }, + { + "epoch": 13.223678462210572, + "grad_norm": 0.4217414855957031, + "learning_rate": 0.0006, + "loss": 4.180937767028809, + "step": 952 + }, + { + "epoch": 13.237658366098733, + "grad_norm": 0.30148059129714966, + "learning_rate": 0.0006, + "loss": 4.207760810852051, + "step": 953 + }, + { + "epoch": 13.251638269986893, + "grad_norm": 0.3192492127418518, + "learning_rate": 0.0006, + "loss": 4.197999000549316, + "step": 954 + }, + { + "epoch": 13.265618173875055, + "grad_norm": 0.37334588170051575, + "learning_rate": 0.0006, + "loss": 4.208001136779785, + "step": 955 + }, + { + "epoch": 13.279598077763215, + "grad_norm": 0.4059637784957886, + "learning_rate": 0.0006, + "loss": 4.211322784423828, + "step": 956 + }, + { + "epoch": 13.293577981651376, + "grad_norm": 0.3389599323272705, + "learning_rate": 0.0006, + "loss": 4.204404354095459, + "step": 957 + }, + { + "epoch": 13.307557885539538, + "grad_norm": 0.2675766050815582, + "learning_rate": 0.0006, + "loss": 4.245941162109375, + "step": 958 + }, + { + "epoch": 13.321537789427698, + "grad_norm": 0.2730264365673065, + "learning_rate": 0.0006, + "loss": 4.2221221923828125, + "step": 959 + }, + { + "epoch": 13.33551769331586, + "grad_norm": 0.26458224654197693, + "learning_rate": 0.0006, + "loss": 4.205596923828125, + "step": 960 + }, + { + "epoch": 13.349497597204019, + "grad_norm": 0.2872551381587982, + "learning_rate": 0.0006, + "loss": 4.196977615356445, + "step": 961 + }, + { + "epoch": 13.36347750109218, + "grad_norm": 0.2954796850681305, + "learning_rate": 0.0006, + "loss": 4.202796936035156, + "step": 962 + }, + { + "epoch": 13.37745740498034, + "grad_norm": 0.2619425654411316, + "learning_rate": 0.0006, + "loss": 4.196845054626465, + "step": 963 + }, + { + "epoch": 13.391437308868502, + "grad_norm": 0.30088478326797485, + "learning_rate": 0.0006, + "loss": 4.219697952270508, + "step": 964 + }, + { + "epoch": 13.405417212756662, + "grad_norm": 0.30388689041137695, + "learning_rate": 0.0006, + "loss": 4.187566757202148, + "step": 965 + }, + { + "epoch": 13.419397116644824, + "grad_norm": 0.27918127179145813, + "learning_rate": 0.0006, + "loss": 4.223600387573242, + "step": 966 + }, + { + "epoch": 13.433377020532983, + "grad_norm": 0.27634528279304504, + "learning_rate": 0.0006, + "loss": 4.165332317352295, + "step": 967 + }, + { + "epoch": 13.447356924421145, + "grad_norm": 0.28830021619796753, + "learning_rate": 0.0006, + "loss": 4.204029560089111, + "step": 968 + }, + { + "epoch": 13.461336828309305, + "grad_norm": 0.29220864176750183, + "learning_rate": 0.0006, + "loss": 4.218057155609131, + "step": 969 + }, + { + "epoch": 13.475316732197467, + "grad_norm": 0.3089624345302582, + "learning_rate": 0.0006, + "loss": 4.200654983520508, + "step": 970 + }, + { + "epoch": 13.489296636085626, + "grad_norm": 0.36479851603507996, + "learning_rate": 0.0006, + "loss": 4.182811737060547, + "step": 971 + }, + { + "epoch": 13.503276539973788, + "grad_norm": 0.37561097741127014, + "learning_rate": 0.0006, + "loss": 4.190266132354736, + "step": 972 + }, + { + "epoch": 13.517256443861948, + "grad_norm": 0.3263583183288574, + "learning_rate": 0.0006, + "loss": 4.214815616607666, + "step": 973 + }, + { + "epoch": 13.53123634775011, + "grad_norm": 0.21552999317646027, + "learning_rate": 0.0006, + "loss": 4.171380043029785, + "step": 974 + }, + { + "epoch": 13.54521625163827, + "grad_norm": 0.247328519821167, + "learning_rate": 0.0006, + "loss": 4.175377368927002, + "step": 975 + }, + { + "epoch": 13.55919615552643, + "grad_norm": 0.23740540444850922, + "learning_rate": 0.0006, + "loss": 4.212357997894287, + "step": 976 + }, + { + "epoch": 13.57317605941459, + "grad_norm": 0.21533876657485962, + "learning_rate": 0.0006, + "loss": 4.203285217285156, + "step": 977 + }, + { + "epoch": 13.587155963302752, + "grad_norm": 0.21462024748325348, + "learning_rate": 0.0006, + "loss": 4.178012371063232, + "step": 978 + }, + { + "epoch": 13.601135867190912, + "grad_norm": 0.2279169261455536, + "learning_rate": 0.0006, + "loss": 4.193912982940674, + "step": 979 + }, + { + "epoch": 13.615115771079074, + "grad_norm": 0.2202417552471161, + "learning_rate": 0.0006, + "loss": 4.167629718780518, + "step": 980 + }, + { + "epoch": 13.629095674967235, + "grad_norm": 0.20586472749710083, + "learning_rate": 0.0006, + "loss": 4.159290313720703, + "step": 981 + }, + { + "epoch": 13.643075578855395, + "grad_norm": 0.20200690627098083, + "learning_rate": 0.0006, + "loss": 4.210315227508545, + "step": 982 + }, + { + "epoch": 13.657055482743557, + "grad_norm": 0.21710257232189178, + "learning_rate": 0.0006, + "loss": 4.21730375289917, + "step": 983 + }, + { + "epoch": 13.671035386631717, + "grad_norm": 0.22058045864105225, + "learning_rate": 0.0006, + "loss": 4.1996073722839355, + "step": 984 + }, + { + "epoch": 13.685015290519878, + "grad_norm": 0.21549592912197113, + "learning_rate": 0.0006, + "loss": 4.209203720092773, + "step": 985 + }, + { + "epoch": 13.698995194408038, + "grad_norm": 0.22274717688560486, + "learning_rate": 0.0006, + "loss": 4.220660209655762, + "step": 986 + }, + { + "epoch": 13.7129750982962, + "grad_norm": 0.22791637480258942, + "learning_rate": 0.0006, + "loss": 4.158679962158203, + "step": 987 + }, + { + "epoch": 13.72695500218436, + "grad_norm": 0.216218963265419, + "learning_rate": 0.0006, + "loss": 4.188124656677246, + "step": 988 + }, + { + "epoch": 13.740934906072521, + "grad_norm": 0.19149383902549744, + "learning_rate": 0.0006, + "loss": 4.181729316711426, + "step": 989 + }, + { + "epoch": 13.754914809960681, + "grad_norm": 0.18964019417762756, + "learning_rate": 0.0006, + "loss": 4.184767246246338, + "step": 990 + }, + { + "epoch": 13.768894713848843, + "grad_norm": 0.1778000295162201, + "learning_rate": 0.0006, + "loss": 4.1802263259887695, + "step": 991 + }, + { + "epoch": 13.782874617737003, + "grad_norm": 0.18277616798877716, + "learning_rate": 0.0006, + "loss": 4.1657867431640625, + "step": 992 + }, + { + "epoch": 13.796854521625164, + "grad_norm": 0.18610034883022308, + "learning_rate": 0.0006, + "loss": 4.156744956970215, + "step": 993 + }, + { + "epoch": 13.810834425513324, + "grad_norm": 0.19332963228225708, + "learning_rate": 0.0006, + "loss": 4.143558502197266, + "step": 994 + }, + { + "epoch": 13.824814329401486, + "grad_norm": 0.19758112728595734, + "learning_rate": 0.0006, + "loss": 4.195793151855469, + "step": 995 + }, + { + "epoch": 13.838794233289645, + "grad_norm": 0.1933647245168686, + "learning_rate": 0.0006, + "loss": 4.169734954833984, + "step": 996 + }, + { + "epoch": 13.852774137177807, + "grad_norm": 0.2362028956413269, + "learning_rate": 0.0006, + "loss": 4.175025939941406, + "step": 997 + }, + { + "epoch": 13.866754041065967, + "grad_norm": 0.2465490996837616, + "learning_rate": 0.0006, + "loss": 4.173909664154053, + "step": 998 + }, + { + "epoch": 13.880733944954128, + "grad_norm": 0.23449952900409698, + "learning_rate": 0.0006, + "loss": 4.173429489135742, + "step": 999 + }, + { + "epoch": 13.89471384884229, + "grad_norm": 0.2282160222530365, + "learning_rate": 0.0006, + "loss": 4.158538341522217, + "step": 1000 + }, + { + "epoch": 13.90869375273045, + "grad_norm": 0.21066738665103912, + "learning_rate": 0.0006, + "loss": 4.171584129333496, + "step": 1001 + }, + { + "epoch": 13.922673656618612, + "grad_norm": 0.18787573277950287, + "learning_rate": 0.0006, + "loss": 4.1837544441223145, + "step": 1002 + }, + { + "epoch": 13.936653560506771, + "grad_norm": 0.2001059353351593, + "learning_rate": 0.0006, + "loss": 4.160369873046875, + "step": 1003 + }, + { + "epoch": 13.950633464394933, + "grad_norm": 0.21644988656044006, + "learning_rate": 0.0006, + "loss": 4.221372604370117, + "step": 1004 + }, + { + "epoch": 13.964613368283093, + "grad_norm": 0.22083887457847595, + "learning_rate": 0.0006, + "loss": 4.149261474609375, + "step": 1005 + }, + { + "epoch": 13.978593272171254, + "grad_norm": 0.2201409637928009, + "learning_rate": 0.0006, + "loss": 4.192010879516602, + "step": 1006 + }, + { + "epoch": 13.992573176059414, + "grad_norm": 0.18888601660728455, + "learning_rate": 0.0006, + "loss": 4.17539119720459, + "step": 1007 + }, + { + "epoch": 14.0, + "grad_norm": 0.2073872834444046, + "learning_rate": 0.0006, + "loss": 4.145265579223633, + "step": 1008 + }, + { + "epoch": 14.0, + "eval_loss": 4.36876106262207, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 1008 + }, + { + "epoch": 14.013979903888162, + "grad_norm": 0.20773135125637054, + "learning_rate": 0.0006, + "loss": 4.132615089416504, + "step": 1009 + }, + { + "epoch": 14.027959807776321, + "grad_norm": 0.22409620881080627, + "learning_rate": 0.0006, + "loss": 4.172839164733887, + "step": 1010 + }, + { + "epoch": 14.041939711664483, + "grad_norm": 0.24046066403388977, + "learning_rate": 0.0006, + "loss": 4.126678943634033, + "step": 1011 + }, + { + "epoch": 14.055919615552643, + "grad_norm": 0.29185160994529724, + "learning_rate": 0.0006, + "loss": 4.177952766418457, + "step": 1012 + }, + { + "epoch": 14.069899519440805, + "grad_norm": 0.2984033226966858, + "learning_rate": 0.0006, + "loss": 4.155030250549316, + "step": 1013 + }, + { + "epoch": 14.083879423328964, + "grad_norm": 0.30262473225593567, + "learning_rate": 0.0006, + "loss": 4.145394325256348, + "step": 1014 + }, + { + "epoch": 14.097859327217126, + "grad_norm": 0.3278133273124695, + "learning_rate": 0.0006, + "loss": 4.172739028930664, + "step": 1015 + }, + { + "epoch": 14.111839231105286, + "grad_norm": 0.3285452425479889, + "learning_rate": 0.0006, + "loss": 4.153196334838867, + "step": 1016 + }, + { + "epoch": 14.125819134993447, + "grad_norm": 0.33912697434425354, + "learning_rate": 0.0006, + "loss": 4.098162651062012, + "step": 1017 + }, + { + "epoch": 14.139799038881607, + "grad_norm": 0.32080814242362976, + "learning_rate": 0.0006, + "loss": 4.157135009765625, + "step": 1018 + }, + { + "epoch": 14.153778942769769, + "grad_norm": 0.31288477778434753, + "learning_rate": 0.0006, + "loss": 4.142683029174805, + "step": 1019 + }, + { + "epoch": 14.167758846657929, + "grad_norm": 0.350289523601532, + "learning_rate": 0.0006, + "loss": 4.134700775146484, + "step": 1020 + }, + { + "epoch": 14.18173875054609, + "grad_norm": 0.34274575114250183, + "learning_rate": 0.0006, + "loss": 4.1578569412231445, + "step": 1021 + }, + { + "epoch": 14.19571865443425, + "grad_norm": 0.2843035161495209, + "learning_rate": 0.0006, + "loss": 4.13760232925415, + "step": 1022 + }, + { + "epoch": 14.209698558322412, + "grad_norm": 0.28235161304473877, + "learning_rate": 0.0006, + "loss": 4.1492462158203125, + "step": 1023 + }, + { + "epoch": 14.223678462210572, + "grad_norm": 0.24407248198986053, + "learning_rate": 0.0006, + "loss": 4.144372463226318, + "step": 1024 + }, + { + "epoch": 14.237658366098733, + "grad_norm": 0.2489742934703827, + "learning_rate": 0.0006, + "loss": 4.137950897216797, + "step": 1025 + }, + { + "epoch": 14.251638269986893, + "grad_norm": 0.26035651564598083, + "learning_rate": 0.0006, + "loss": 4.144070625305176, + "step": 1026 + }, + { + "epoch": 14.265618173875055, + "grad_norm": 0.2726516127586365, + "learning_rate": 0.0006, + "loss": 4.145204067230225, + "step": 1027 + }, + { + "epoch": 14.279598077763215, + "grad_norm": 0.2723483443260193, + "learning_rate": 0.0006, + "loss": 4.118407249450684, + "step": 1028 + }, + { + "epoch": 14.293577981651376, + "grad_norm": 0.27476269006729126, + "learning_rate": 0.0006, + "loss": 4.111325263977051, + "step": 1029 + }, + { + "epoch": 14.307557885539538, + "grad_norm": 0.26202502846717834, + "learning_rate": 0.0006, + "loss": 4.122248649597168, + "step": 1030 + }, + { + "epoch": 14.321537789427698, + "grad_norm": 0.2472032904624939, + "learning_rate": 0.0006, + "loss": 4.157790184020996, + "step": 1031 + }, + { + "epoch": 14.33551769331586, + "grad_norm": 0.2518343925476074, + "learning_rate": 0.0006, + "loss": 4.109132766723633, + "step": 1032 + }, + { + "epoch": 14.349497597204019, + "grad_norm": 0.2652401924133301, + "learning_rate": 0.0006, + "loss": 4.144079685211182, + "step": 1033 + }, + { + "epoch": 14.36347750109218, + "grad_norm": 0.2356770783662796, + "learning_rate": 0.0006, + "loss": 4.128426551818848, + "step": 1034 + }, + { + "epoch": 14.37745740498034, + "grad_norm": 0.2164214551448822, + "learning_rate": 0.0006, + "loss": 4.1644392013549805, + "step": 1035 + }, + { + "epoch": 14.391437308868502, + "grad_norm": 0.22383111715316772, + "learning_rate": 0.0006, + "loss": 4.165862083435059, + "step": 1036 + }, + { + "epoch": 14.405417212756662, + "grad_norm": 0.23152419924736023, + "learning_rate": 0.0006, + "loss": 4.140036582946777, + "step": 1037 + }, + { + "epoch": 14.419397116644824, + "grad_norm": 0.2387741357088089, + "learning_rate": 0.0006, + "loss": 4.130461692810059, + "step": 1038 + }, + { + "epoch": 14.433377020532983, + "grad_norm": 0.24018129706382751, + "learning_rate": 0.0006, + "loss": 4.148482322692871, + "step": 1039 + }, + { + "epoch": 14.447356924421145, + "grad_norm": 0.25487351417541504, + "learning_rate": 0.0006, + "loss": 4.158121109008789, + "step": 1040 + }, + { + "epoch": 14.461336828309305, + "grad_norm": 0.28220096230506897, + "learning_rate": 0.0006, + "loss": 4.160198211669922, + "step": 1041 + }, + { + "epoch": 14.475316732197467, + "grad_norm": 0.2574434280395508, + "learning_rate": 0.0006, + "loss": 4.168512344360352, + "step": 1042 + }, + { + "epoch": 14.489296636085626, + "grad_norm": 0.22569820284843445, + "learning_rate": 0.0006, + "loss": 4.1595001220703125, + "step": 1043 + }, + { + "epoch": 14.503276539973788, + "grad_norm": 0.2473423182964325, + "learning_rate": 0.0006, + "loss": 4.084580898284912, + "step": 1044 + }, + { + "epoch": 14.517256443861948, + "grad_norm": 0.24281060695648193, + "learning_rate": 0.0006, + "loss": 4.139714241027832, + "step": 1045 + }, + { + "epoch": 14.53123634775011, + "grad_norm": 0.24691344797611237, + "learning_rate": 0.0006, + "loss": 4.115398406982422, + "step": 1046 + }, + { + "epoch": 14.54521625163827, + "grad_norm": 0.2583645284175873, + "learning_rate": 0.0006, + "loss": 4.142148494720459, + "step": 1047 + }, + { + "epoch": 14.55919615552643, + "grad_norm": 0.23258574306964874, + "learning_rate": 0.0006, + "loss": 4.16251277923584, + "step": 1048 + }, + { + "epoch": 14.57317605941459, + "grad_norm": 0.22103039920330048, + "learning_rate": 0.0006, + "loss": 4.1308441162109375, + "step": 1049 + }, + { + "epoch": 14.587155963302752, + "grad_norm": 0.23713579773902893, + "learning_rate": 0.0006, + "loss": 4.1565985679626465, + "step": 1050 + }, + { + "epoch": 14.601135867190912, + "grad_norm": 0.24406634271144867, + "learning_rate": 0.0006, + "loss": 4.14628267288208, + "step": 1051 + }, + { + "epoch": 14.615115771079074, + "grad_norm": 0.26821228861808777, + "learning_rate": 0.0006, + "loss": 4.138063430786133, + "step": 1052 + }, + { + "epoch": 14.629095674967235, + "grad_norm": 0.25483864545822144, + "learning_rate": 0.0006, + "loss": 4.1311163902282715, + "step": 1053 + }, + { + "epoch": 14.643075578855395, + "grad_norm": 0.23937982320785522, + "learning_rate": 0.0006, + "loss": 4.150882244110107, + "step": 1054 + }, + { + "epoch": 14.657055482743557, + "grad_norm": 0.21896475553512573, + "learning_rate": 0.0006, + "loss": 4.114015102386475, + "step": 1055 + }, + { + "epoch": 14.671035386631717, + "grad_norm": 0.20821231603622437, + "learning_rate": 0.0006, + "loss": 4.139034271240234, + "step": 1056 + }, + { + "epoch": 14.685015290519878, + "grad_norm": 0.1978551596403122, + "learning_rate": 0.0006, + "loss": 4.1810503005981445, + "step": 1057 + }, + { + "epoch": 14.698995194408038, + "grad_norm": 0.1945771872997284, + "learning_rate": 0.0006, + "loss": 4.120734214782715, + "step": 1058 + }, + { + "epoch": 14.7129750982962, + "grad_norm": 0.19518673419952393, + "learning_rate": 0.0006, + "loss": 4.14264440536499, + "step": 1059 + }, + { + "epoch": 14.72695500218436, + "grad_norm": 0.202596515417099, + "learning_rate": 0.0006, + "loss": 4.151649475097656, + "step": 1060 + }, + { + "epoch": 14.740934906072521, + "grad_norm": 0.1904762089252472, + "learning_rate": 0.0006, + "loss": 4.127899169921875, + "step": 1061 + }, + { + "epoch": 14.754914809960681, + "grad_norm": 0.20685508847236633, + "learning_rate": 0.0006, + "loss": 4.093445777893066, + "step": 1062 + }, + { + "epoch": 14.768894713848843, + "grad_norm": 0.22678329050540924, + "learning_rate": 0.0006, + "loss": 4.132084369659424, + "step": 1063 + }, + { + "epoch": 14.782874617737003, + "grad_norm": 0.24631841480731964, + "learning_rate": 0.0006, + "loss": 4.154788970947266, + "step": 1064 + }, + { + "epoch": 14.796854521625164, + "grad_norm": 0.24445782601833344, + "learning_rate": 0.0006, + "loss": 4.144735336303711, + "step": 1065 + }, + { + "epoch": 14.810834425513324, + "grad_norm": 0.22330640256404877, + "learning_rate": 0.0006, + "loss": 4.159893989562988, + "step": 1066 + }, + { + "epoch": 14.824814329401486, + "grad_norm": 0.22422967851161957, + "learning_rate": 0.0006, + "loss": 4.104874610900879, + "step": 1067 + }, + { + "epoch": 14.838794233289645, + "grad_norm": 0.24583931267261505, + "learning_rate": 0.0006, + "loss": 4.139403820037842, + "step": 1068 + }, + { + "epoch": 14.852774137177807, + "grad_norm": 0.2917379140853882, + "learning_rate": 0.0006, + "loss": 4.168988227844238, + "step": 1069 + }, + { + "epoch": 14.866754041065967, + "grad_norm": 0.3171777129173279, + "learning_rate": 0.0006, + "loss": 4.131263732910156, + "step": 1070 + }, + { + "epoch": 14.880733944954128, + "grad_norm": 0.3039591312408447, + "learning_rate": 0.0006, + "loss": 4.149853706359863, + "step": 1071 + }, + { + "epoch": 14.89471384884229, + "grad_norm": 0.2690650522708893, + "learning_rate": 0.0006, + "loss": 4.154787540435791, + "step": 1072 + }, + { + "epoch": 14.90869375273045, + "grad_norm": 0.28683212399482727, + "learning_rate": 0.0006, + "loss": 4.12751579284668, + "step": 1073 + }, + { + "epoch": 14.922673656618612, + "grad_norm": 0.30022913217544556, + "learning_rate": 0.0006, + "loss": 4.141940116882324, + "step": 1074 + }, + { + "epoch": 14.936653560506771, + "grad_norm": 0.3312259316444397, + "learning_rate": 0.0006, + "loss": 4.141905784606934, + "step": 1075 + }, + { + "epoch": 14.950633464394933, + "grad_norm": 0.31159237027168274, + "learning_rate": 0.0006, + "loss": 4.160192966461182, + "step": 1076 + }, + { + "epoch": 14.964613368283093, + "grad_norm": 0.30093592405319214, + "learning_rate": 0.0006, + "loss": 4.1085076332092285, + "step": 1077 + }, + { + "epoch": 14.978593272171254, + "grad_norm": 0.2728535830974579, + "learning_rate": 0.0006, + "loss": 4.156959056854248, + "step": 1078 + }, + { + "epoch": 14.992573176059414, + "grad_norm": 0.24766813218593597, + "learning_rate": 0.0006, + "loss": 4.113999843597412, + "step": 1079 + }, + { + "epoch": 15.0, + "grad_norm": 0.2538154721260071, + "learning_rate": 0.0006, + "loss": 4.147134780883789, + "step": 1080 + }, + { + "epoch": 15.0, + "eval_loss": 4.323154926300049, + "eval_runtime": 44.8813, + "eval_samples_per_second": 54.41, + "eval_steps_per_second": 3.409, + "step": 1080 + }, + { + "epoch": 15.013979903888162, + "grad_norm": 0.22535280883312225, + "learning_rate": 0.0006, + "loss": 4.112179756164551, + "step": 1081 + }, + { + "epoch": 15.027959807776321, + "grad_norm": 0.24340929090976715, + "learning_rate": 0.0006, + "loss": 4.080923080444336, + "step": 1082 + }, + { + "epoch": 15.041939711664483, + "grad_norm": 0.23159465193748474, + "learning_rate": 0.0006, + "loss": 4.097067356109619, + "step": 1083 + }, + { + "epoch": 15.055919615552643, + "grad_norm": 0.22674769163131714, + "learning_rate": 0.0006, + "loss": 4.118601322174072, + "step": 1084 + }, + { + "epoch": 15.069899519440805, + "grad_norm": 0.2524292469024658, + "learning_rate": 0.0006, + "loss": 4.101109504699707, + "step": 1085 + }, + { + "epoch": 15.083879423328964, + "grad_norm": 0.2505405843257904, + "learning_rate": 0.0006, + "loss": 4.121405601501465, + "step": 1086 + }, + { + "epoch": 15.097859327217126, + "grad_norm": 0.2557983696460724, + "learning_rate": 0.0006, + "loss": 4.1063947677612305, + "step": 1087 + }, + { + "epoch": 15.111839231105286, + "grad_norm": 0.24452129006385803, + "learning_rate": 0.0006, + "loss": 4.086133003234863, + "step": 1088 + }, + { + "epoch": 15.125819134993447, + "grad_norm": 0.25821781158447266, + "learning_rate": 0.0006, + "loss": 4.076262950897217, + "step": 1089 + }, + { + "epoch": 15.139799038881607, + "grad_norm": 0.23650537431240082, + "learning_rate": 0.0006, + "loss": 4.101842880249023, + "step": 1090 + }, + { + "epoch": 15.153778942769769, + "grad_norm": 0.2206192910671234, + "learning_rate": 0.0006, + "loss": 4.11027193069458, + "step": 1091 + }, + { + "epoch": 15.167758846657929, + "grad_norm": 0.21843163669109344, + "learning_rate": 0.0006, + "loss": 4.098437309265137, + "step": 1092 + }, + { + "epoch": 15.18173875054609, + "grad_norm": 0.2528176009654999, + "learning_rate": 0.0006, + "loss": 4.108713150024414, + "step": 1093 + }, + { + "epoch": 15.19571865443425, + "grad_norm": 0.26697206497192383, + "learning_rate": 0.0006, + "loss": 4.113210201263428, + "step": 1094 + }, + { + "epoch": 15.209698558322412, + "grad_norm": 0.26480963826179504, + "learning_rate": 0.0006, + "loss": 4.1103620529174805, + "step": 1095 + }, + { + "epoch": 15.223678462210572, + "grad_norm": 0.24887347221374512, + "learning_rate": 0.0006, + "loss": 4.103529930114746, + "step": 1096 + }, + { + "epoch": 15.237658366098733, + "grad_norm": 0.2344668060541153, + "learning_rate": 0.0006, + "loss": 4.129784107208252, + "step": 1097 + }, + { + "epoch": 15.251638269986893, + "grad_norm": 0.22639742493629456, + "learning_rate": 0.0006, + "loss": 4.113495349884033, + "step": 1098 + }, + { + "epoch": 15.265618173875055, + "grad_norm": 0.22466333210468292, + "learning_rate": 0.0006, + "loss": 4.102309703826904, + "step": 1099 + }, + { + "epoch": 15.279598077763215, + "grad_norm": 0.25135037302970886, + "learning_rate": 0.0006, + "loss": 4.117668628692627, + "step": 1100 + }, + { + "epoch": 15.293577981651376, + "grad_norm": 0.2347089946269989, + "learning_rate": 0.0006, + "loss": 4.086637496948242, + "step": 1101 + }, + { + "epoch": 15.307557885539538, + "grad_norm": 0.2347242832183838, + "learning_rate": 0.0006, + "loss": 4.098714828491211, + "step": 1102 + }, + { + "epoch": 15.321537789427698, + "grad_norm": 0.23990283906459808, + "learning_rate": 0.0006, + "loss": 4.079837799072266, + "step": 1103 + }, + { + "epoch": 15.33551769331586, + "grad_norm": 0.22366675734519958, + "learning_rate": 0.0006, + "loss": 4.108136177062988, + "step": 1104 + }, + { + "epoch": 15.349497597204019, + "grad_norm": 0.21823780238628387, + "learning_rate": 0.0006, + "loss": 4.10054349899292, + "step": 1105 + }, + { + "epoch": 15.36347750109218, + "grad_norm": 0.23059198260307312, + "learning_rate": 0.0006, + "loss": 4.108620643615723, + "step": 1106 + }, + { + "epoch": 15.37745740498034, + "grad_norm": 0.2313755601644516, + "learning_rate": 0.0006, + "loss": 4.088565826416016, + "step": 1107 + }, + { + "epoch": 15.391437308868502, + "grad_norm": 0.2546829283237457, + "learning_rate": 0.0006, + "loss": 4.104948043823242, + "step": 1108 + }, + { + "epoch": 15.405417212756662, + "grad_norm": 0.23666726052761078, + "learning_rate": 0.0006, + "loss": 4.111965179443359, + "step": 1109 + }, + { + "epoch": 15.419397116644824, + "grad_norm": 0.21971021592617035, + "learning_rate": 0.0006, + "loss": 4.097846984863281, + "step": 1110 + }, + { + "epoch": 15.433377020532983, + "grad_norm": 0.20951911807060242, + "learning_rate": 0.0006, + "loss": 4.110099792480469, + "step": 1111 + }, + { + "epoch": 15.447356924421145, + "grad_norm": 0.19590918719768524, + "learning_rate": 0.0006, + "loss": 4.101154327392578, + "step": 1112 + }, + { + "epoch": 15.461336828309305, + "grad_norm": 0.21048946678638458, + "learning_rate": 0.0006, + "loss": 4.0986127853393555, + "step": 1113 + }, + { + "epoch": 15.475316732197467, + "grad_norm": 0.21423374116420746, + "learning_rate": 0.0006, + "loss": 4.082328796386719, + "step": 1114 + }, + { + "epoch": 15.489296636085626, + "grad_norm": 0.227146714925766, + "learning_rate": 0.0006, + "loss": 4.105281829833984, + "step": 1115 + }, + { + "epoch": 15.503276539973788, + "grad_norm": 0.2079153060913086, + "learning_rate": 0.0006, + "loss": 4.100836753845215, + "step": 1116 + }, + { + "epoch": 15.517256443861948, + "grad_norm": 0.21084675192832947, + "learning_rate": 0.0006, + "loss": 4.0934343338012695, + "step": 1117 + }, + { + "epoch": 15.53123634775011, + "grad_norm": 0.23863616585731506, + "learning_rate": 0.0006, + "loss": 4.101540565490723, + "step": 1118 + }, + { + "epoch": 15.54521625163827, + "grad_norm": 0.2518490254878998, + "learning_rate": 0.0006, + "loss": 4.12303352355957, + "step": 1119 + }, + { + "epoch": 15.55919615552643, + "grad_norm": 0.24282905459403992, + "learning_rate": 0.0006, + "loss": 4.080670356750488, + "step": 1120 + }, + { + "epoch": 15.57317605941459, + "grad_norm": 0.24171605706214905, + "learning_rate": 0.0006, + "loss": 4.117938041687012, + "step": 1121 + }, + { + "epoch": 15.587155963302752, + "grad_norm": 0.28453412652015686, + "learning_rate": 0.0006, + "loss": 4.080114364624023, + "step": 1122 + }, + { + "epoch": 15.601135867190912, + "grad_norm": 0.30322617292404175, + "learning_rate": 0.0006, + "loss": 4.079695701599121, + "step": 1123 + }, + { + "epoch": 15.615115771079074, + "grad_norm": 0.2657633125782013, + "learning_rate": 0.0006, + "loss": 4.0916290283203125, + "step": 1124 + }, + { + "epoch": 15.629095674967235, + "grad_norm": 0.2467080056667328, + "learning_rate": 0.0006, + "loss": 4.095594882965088, + "step": 1125 + }, + { + "epoch": 15.643075578855395, + "grad_norm": 0.21767394244670868, + "learning_rate": 0.0006, + "loss": 4.079174041748047, + "step": 1126 + }, + { + "epoch": 15.657055482743557, + "grad_norm": 0.2088327705860138, + "learning_rate": 0.0006, + "loss": 4.060707092285156, + "step": 1127 + }, + { + "epoch": 15.671035386631717, + "grad_norm": 0.1921205073595047, + "learning_rate": 0.0006, + "loss": 4.073911666870117, + "step": 1128 + }, + { + "epoch": 15.685015290519878, + "grad_norm": 0.209339901804924, + "learning_rate": 0.0006, + "loss": 4.089954376220703, + "step": 1129 + }, + { + "epoch": 15.698995194408038, + "grad_norm": 0.23513881862163544, + "learning_rate": 0.0006, + "loss": 4.084906578063965, + "step": 1130 + }, + { + "epoch": 15.7129750982962, + "grad_norm": 0.26140275597572327, + "learning_rate": 0.0006, + "loss": 4.086570739746094, + "step": 1131 + }, + { + "epoch": 15.72695500218436, + "grad_norm": 0.290431946516037, + "learning_rate": 0.0006, + "loss": 4.071229457855225, + "step": 1132 + }, + { + "epoch": 15.740934906072521, + "grad_norm": 0.3061376214027405, + "learning_rate": 0.0006, + "loss": 4.103148460388184, + "step": 1133 + }, + { + "epoch": 15.754914809960681, + "grad_norm": 0.26312482357025146, + "learning_rate": 0.0006, + "loss": 4.088448524475098, + "step": 1134 + }, + { + "epoch": 15.768894713848843, + "grad_norm": 0.22474883496761322, + "learning_rate": 0.0006, + "loss": 4.091766834259033, + "step": 1135 + }, + { + "epoch": 15.782874617737003, + "grad_norm": 0.2341146171092987, + "learning_rate": 0.0006, + "loss": 4.1222758293151855, + "step": 1136 + }, + { + "epoch": 15.796854521625164, + "grad_norm": 0.23556149005889893, + "learning_rate": 0.0006, + "loss": 4.094954013824463, + "step": 1137 + }, + { + "epoch": 15.810834425513324, + "grad_norm": 0.263315349817276, + "learning_rate": 0.0006, + "loss": 4.1065473556518555, + "step": 1138 + }, + { + "epoch": 15.824814329401486, + "grad_norm": 0.2700869143009186, + "learning_rate": 0.0006, + "loss": 4.0890045166015625, + "step": 1139 + }, + { + "epoch": 15.838794233289645, + "grad_norm": 0.28697484731674194, + "learning_rate": 0.0006, + "loss": 4.092496395111084, + "step": 1140 + }, + { + "epoch": 15.852774137177807, + "grad_norm": 0.2824092507362366, + "learning_rate": 0.0006, + "loss": 4.079615592956543, + "step": 1141 + }, + { + "epoch": 15.866754041065967, + "grad_norm": 0.24547280371189117, + "learning_rate": 0.0006, + "loss": 4.089683532714844, + "step": 1142 + }, + { + "epoch": 15.880733944954128, + "grad_norm": 0.23653888702392578, + "learning_rate": 0.0006, + "loss": 4.067309379577637, + "step": 1143 + }, + { + "epoch": 15.89471384884229, + "grad_norm": 0.23784421384334564, + "learning_rate": 0.0006, + "loss": 4.09156608581543, + "step": 1144 + }, + { + "epoch": 15.90869375273045, + "grad_norm": 0.22753281891345978, + "learning_rate": 0.0006, + "loss": 4.095428466796875, + "step": 1145 + }, + { + "epoch": 15.922673656618612, + "grad_norm": 0.2464212030172348, + "learning_rate": 0.0006, + "loss": 4.1036376953125, + "step": 1146 + }, + { + "epoch": 15.936653560506771, + "grad_norm": 0.25531601905822754, + "learning_rate": 0.0006, + "loss": 4.073996543884277, + "step": 1147 + }, + { + "epoch": 15.950633464394933, + "grad_norm": 0.24145905673503876, + "learning_rate": 0.0006, + "loss": 4.094479560852051, + "step": 1148 + }, + { + "epoch": 15.964613368283093, + "grad_norm": 0.24274317920207977, + "learning_rate": 0.0006, + "loss": 4.101981163024902, + "step": 1149 + }, + { + "epoch": 15.978593272171254, + "grad_norm": 0.2350679188966751, + "learning_rate": 0.0006, + "loss": 4.057965278625488, + "step": 1150 + }, + { + "epoch": 15.992573176059414, + "grad_norm": 0.24072253704071045, + "learning_rate": 0.0006, + "loss": 4.020050048828125, + "step": 1151 + }, + { + "epoch": 16.0, + "grad_norm": 0.253978967666626, + "learning_rate": 0.0006, + "loss": 4.061928749084473, + "step": 1152 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 4.9092366701061734e+17, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1152/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1440/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1440/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1440/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1440/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..23a713dd4cd21c2dcda51828af6553d0661cd21f --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:212bf43c9404433a738f73f0f2451209b812f5bd6bc391ccc2a9709ff7050b96 +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1440/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..382ef881391cb2f399f0826d51e3a9f26317d2a3 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e3b71b6ae1dbd4bf7fb071a9175c4e60fb7bea9ea449d6d4d5ca5be2aa9eb01 +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1440/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..891355b44b7f58f9f28b17ace60286400f86c9a0 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59896f67c2f6db37039605e7d0332009cc053c099b9f3c3ffcfb76bdcae0c117 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1440/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..0e86a75e1b20ce8070d22628e450af5c67c9a71f --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a6bfee160669cd93c9a9d87b93a6a594a232c257c47afd4600d8c9a66605a1b +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1440/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..0d34fe10b069b50b5fecbd4a0affbd8f653b7b9b --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a84bbc84bb0dd489a2d72fd441cc0b8482e9e06d7cde3ac44b50a389883ce86 +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1440/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1440/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1440/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..cffb1089bd54bca9641e5c3fa661689c68d672e3 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/trainer_state.json @@ -0,0 +1,10266 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 20.0, + "eval_steps": 500, + "global_step": 1440, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + }, + { + "epoch": 8.0, + "eval_loss": 5.100707530975342, + "eval_runtime": 44.2493, + "eval_samples_per_second": 55.187, + "eval_steps_per_second": 3.458, + "step": 576 + }, + { + "epoch": 8.013979903888162, + "grad_norm": 0.3658510148525238, + "learning_rate": 0.0006, + "loss": 4.759055137634277, + "step": 577 + }, + { + "epoch": 8.027959807776321, + "grad_norm": 0.41794446110725403, + "learning_rate": 0.0006, + "loss": 4.737661838531494, + "step": 578 + }, + { + "epoch": 8.041939711664483, + "grad_norm": 0.43284085392951965, + "learning_rate": 0.0006, + "loss": 4.775538444519043, + "step": 579 + }, + { + "epoch": 8.055919615552643, + "grad_norm": 0.4716675281524658, + "learning_rate": 0.0006, + "loss": 4.762231826782227, + "step": 580 + }, + { + "epoch": 8.069899519440805, + "grad_norm": 0.3849579393863678, + "learning_rate": 0.0006, + "loss": 4.753598690032959, + "step": 581 + }, + { + "epoch": 8.083879423328964, + "grad_norm": 0.3721151053905487, + "learning_rate": 0.0006, + "loss": 4.728978157043457, + "step": 582 + }, + { + "epoch": 8.097859327217126, + "grad_norm": 0.37009572982788086, + "learning_rate": 0.0006, + "loss": 4.759153366088867, + "step": 583 + }, + { + "epoch": 8.111839231105286, + "grad_norm": 0.37051302194595337, + "learning_rate": 0.0006, + "loss": 4.744197368621826, + "step": 584 + }, + { + "epoch": 8.125819134993447, + "grad_norm": 0.331238329410553, + "learning_rate": 0.0006, + "loss": 4.7338385581970215, + "step": 585 + }, + { + "epoch": 8.139799038881607, + "grad_norm": 0.3737713694572449, + "learning_rate": 0.0006, + "loss": 4.719110488891602, + "step": 586 + }, + { + "epoch": 8.153778942769769, + "grad_norm": 0.3713214695453644, + "learning_rate": 0.0006, + "loss": 4.734012126922607, + "step": 587 + }, + { + "epoch": 8.167758846657929, + "grad_norm": 0.4060780107975006, + "learning_rate": 0.0006, + "loss": 4.746830940246582, + "step": 588 + }, + { + "epoch": 8.18173875054609, + "grad_norm": 0.39814314246177673, + "learning_rate": 0.0006, + "loss": 4.722851753234863, + "step": 589 + }, + { + "epoch": 8.19571865443425, + "grad_norm": 0.3175652325153351, + "learning_rate": 0.0006, + "loss": 4.745110034942627, + "step": 590 + }, + { + "epoch": 8.209698558322412, + "grad_norm": 0.37214916944503784, + "learning_rate": 0.0006, + "loss": 4.7362775802612305, + "step": 591 + }, + { + "epoch": 8.223678462210572, + "grad_norm": 0.3873472809791565, + "learning_rate": 0.0006, + "loss": 4.738964557647705, + "step": 592 + }, + { + "epoch": 8.237658366098733, + "grad_norm": 0.3299207091331482, + "learning_rate": 0.0006, + "loss": 4.713451385498047, + "step": 593 + }, + { + "epoch": 8.251638269986893, + "grad_norm": 0.32445064187049866, + "learning_rate": 0.0006, + "loss": 4.725602149963379, + "step": 594 + }, + { + "epoch": 8.265618173875055, + "grad_norm": 0.32903164625167847, + "learning_rate": 0.0006, + "loss": 4.732064247131348, + "step": 595 + }, + { + "epoch": 8.279598077763215, + "grad_norm": 0.3166804313659668, + "learning_rate": 0.0006, + "loss": 4.678950786590576, + "step": 596 + }, + { + "epoch": 8.293577981651376, + "grad_norm": 0.2750290334224701, + "learning_rate": 0.0006, + "loss": 4.719513416290283, + "step": 597 + }, + { + "epoch": 8.307557885539538, + "grad_norm": 0.291029691696167, + "learning_rate": 0.0006, + "loss": 4.715405464172363, + "step": 598 + }, + { + "epoch": 8.321537789427698, + "grad_norm": 0.34105145931243896, + "learning_rate": 0.0006, + "loss": 4.722611427307129, + "step": 599 + }, + { + "epoch": 8.33551769331586, + "grad_norm": 0.3078882694244385, + "learning_rate": 0.0006, + "loss": 4.668856620788574, + "step": 600 + }, + { + "epoch": 8.349497597204019, + "grad_norm": 0.3218833804130554, + "learning_rate": 0.0006, + "loss": 4.719579696655273, + "step": 601 + }, + { + "epoch": 8.36347750109218, + "grad_norm": 0.35716721415519714, + "learning_rate": 0.0006, + "loss": 4.690774440765381, + "step": 602 + }, + { + "epoch": 8.37745740498034, + "grad_norm": 0.3045452833175659, + "learning_rate": 0.0006, + "loss": 4.696503639221191, + "step": 603 + }, + { + "epoch": 8.391437308868502, + "grad_norm": 0.3127244710922241, + "learning_rate": 0.0006, + "loss": 4.701899528503418, + "step": 604 + }, + { + "epoch": 8.405417212756662, + "grad_norm": 0.34988710284233093, + "learning_rate": 0.0006, + "loss": 4.677641868591309, + "step": 605 + }, + { + "epoch": 8.419397116644824, + "grad_norm": 0.34035569429397583, + "learning_rate": 0.0006, + "loss": 4.707778453826904, + "step": 606 + }, + { + "epoch": 8.433377020532983, + "grad_norm": 0.3341112732887268, + "learning_rate": 0.0006, + "loss": 4.724853038787842, + "step": 607 + }, + { + "epoch": 8.447356924421145, + "grad_norm": 0.41744324564933777, + "learning_rate": 0.0006, + "loss": 4.680908203125, + "step": 608 + }, + { + "epoch": 8.461336828309305, + "grad_norm": 0.40402331948280334, + "learning_rate": 0.0006, + "loss": 4.726455211639404, + "step": 609 + }, + { + "epoch": 8.475316732197467, + "grad_norm": 0.4727570414543152, + "learning_rate": 0.0006, + "loss": 4.6793084144592285, + "step": 610 + }, + { + "epoch": 8.489296636085626, + "grad_norm": 0.43002694845199585, + "learning_rate": 0.0006, + "loss": 4.663918972015381, + "step": 611 + }, + { + "epoch": 8.503276539973788, + "grad_norm": 0.36124858260154724, + "learning_rate": 0.0006, + "loss": 4.657375335693359, + "step": 612 + }, + { + "epoch": 8.517256443861948, + "grad_norm": 0.37644803524017334, + "learning_rate": 0.0006, + "loss": 4.676977157592773, + "step": 613 + }, + { + "epoch": 8.53123634775011, + "grad_norm": 0.32347747683525085, + "learning_rate": 0.0006, + "loss": 4.708547115325928, + "step": 614 + }, + { + "epoch": 8.54521625163827, + "grad_norm": 0.3071717619895935, + "learning_rate": 0.0006, + "loss": 4.650189399719238, + "step": 615 + }, + { + "epoch": 8.55919615552643, + "grad_norm": 0.30222490429878235, + "learning_rate": 0.0006, + "loss": 4.647942543029785, + "step": 616 + }, + { + "epoch": 8.57317605941459, + "grad_norm": 0.31545212864875793, + "learning_rate": 0.0006, + "loss": 4.660242080688477, + "step": 617 + }, + { + "epoch": 8.587155963302752, + "grad_norm": 0.31644752621650696, + "learning_rate": 0.0006, + "loss": 4.666710376739502, + "step": 618 + }, + { + "epoch": 8.601135867190912, + "grad_norm": 0.26057198643684387, + "learning_rate": 0.0006, + "loss": 4.668096542358398, + "step": 619 + }, + { + "epoch": 8.615115771079074, + "grad_norm": 0.25473910570144653, + "learning_rate": 0.0006, + "loss": 4.641562461853027, + "step": 620 + }, + { + "epoch": 8.629095674967235, + "grad_norm": 0.2456732839345932, + "learning_rate": 0.0006, + "loss": 4.6545281410217285, + "step": 621 + }, + { + "epoch": 8.643075578855395, + "grad_norm": 0.25180476903915405, + "learning_rate": 0.0006, + "loss": 4.6506524085998535, + "step": 622 + }, + { + "epoch": 8.657055482743557, + "grad_norm": 0.21761579811573029, + "learning_rate": 0.0006, + "loss": 4.638909339904785, + "step": 623 + }, + { + "epoch": 8.671035386631717, + "grad_norm": 0.23590542376041412, + "learning_rate": 0.0006, + "loss": 4.6572747230529785, + "step": 624 + }, + { + "epoch": 8.685015290519878, + "grad_norm": 0.23870624601840973, + "learning_rate": 0.0006, + "loss": 4.643742084503174, + "step": 625 + }, + { + "epoch": 8.698995194408038, + "grad_norm": 0.2191203385591507, + "learning_rate": 0.0006, + "loss": 4.632617950439453, + "step": 626 + }, + { + "epoch": 8.7129750982962, + "grad_norm": 0.22107063233852386, + "learning_rate": 0.0006, + "loss": 4.625616073608398, + "step": 627 + }, + { + "epoch": 8.72695500218436, + "grad_norm": 0.20833902060985565, + "learning_rate": 0.0006, + "loss": 4.609896659851074, + "step": 628 + }, + { + "epoch": 8.740934906072521, + "grad_norm": 0.254967600107193, + "learning_rate": 0.0006, + "loss": 4.651735782623291, + "step": 629 + }, + { + "epoch": 8.754914809960681, + "grad_norm": 0.31587523221969604, + "learning_rate": 0.0006, + "loss": 4.6404032707214355, + "step": 630 + }, + { + "epoch": 8.768894713848843, + "grad_norm": 0.28598251938819885, + "learning_rate": 0.0006, + "loss": 4.602679252624512, + "step": 631 + }, + { + "epoch": 8.782874617737003, + "grad_norm": 0.23216590285301208, + "learning_rate": 0.0006, + "loss": 4.610319137573242, + "step": 632 + }, + { + "epoch": 8.796854521625164, + "grad_norm": 0.29212239384651184, + "learning_rate": 0.0006, + "loss": 4.600744247436523, + "step": 633 + }, + { + "epoch": 8.810834425513324, + "grad_norm": 0.3375801146030426, + "learning_rate": 0.0006, + "loss": 4.627819061279297, + "step": 634 + }, + { + "epoch": 8.824814329401486, + "grad_norm": 0.4207753837108612, + "learning_rate": 0.0006, + "loss": 4.634505271911621, + "step": 635 + }, + { + "epoch": 8.838794233289645, + "grad_norm": 0.4640173614025116, + "learning_rate": 0.0006, + "loss": 4.636714935302734, + "step": 636 + }, + { + "epoch": 8.852774137177807, + "grad_norm": 0.5255663990974426, + "learning_rate": 0.0006, + "loss": 4.659462928771973, + "step": 637 + }, + { + "epoch": 8.866754041065967, + "grad_norm": 0.5108268857002258, + "learning_rate": 0.0006, + "loss": 4.633192539215088, + "step": 638 + }, + { + "epoch": 8.880733944954128, + "grad_norm": 0.3821936845779419, + "learning_rate": 0.0006, + "loss": 4.621200084686279, + "step": 639 + }, + { + "epoch": 8.89471384884229, + "grad_norm": 0.3918485939502716, + "learning_rate": 0.0006, + "loss": 4.632599830627441, + "step": 640 + }, + { + "epoch": 8.90869375273045, + "grad_norm": 0.3416556119918823, + "learning_rate": 0.0006, + "loss": 4.620438098907471, + "step": 641 + }, + { + "epoch": 8.922673656618612, + "grad_norm": 0.3191553056240082, + "learning_rate": 0.0006, + "loss": 4.617823600769043, + "step": 642 + }, + { + "epoch": 8.936653560506771, + "grad_norm": 0.3368529677391052, + "learning_rate": 0.0006, + "loss": 4.617222785949707, + "step": 643 + }, + { + "epoch": 8.950633464394933, + "grad_norm": 0.3255428969860077, + "learning_rate": 0.0006, + "loss": 4.633878707885742, + "step": 644 + }, + { + "epoch": 8.964613368283093, + "grad_norm": 0.31394779682159424, + "learning_rate": 0.0006, + "loss": 4.642603874206543, + "step": 645 + }, + { + "epoch": 8.978593272171254, + "grad_norm": 0.29999351501464844, + "learning_rate": 0.0006, + "loss": 4.5925211906433105, + "step": 646 + }, + { + "epoch": 8.992573176059414, + "grad_norm": 0.309154748916626, + "learning_rate": 0.0006, + "loss": 4.61745023727417, + "step": 647 + }, + { + "epoch": 9.0, + "grad_norm": 0.2660452425479889, + "learning_rate": 0.0006, + "loss": 4.575107097625732, + "step": 648 + }, + { + "epoch": 9.0, + "eval_loss": 4.8804192543029785, + "eval_runtime": 45.0015, + "eval_samples_per_second": 54.265, + "eval_steps_per_second": 3.4, + "step": 648 + }, + { + "epoch": 9.013979903888162, + "grad_norm": 0.24159297347068787, + "learning_rate": 0.0006, + "loss": 4.571323871612549, + "step": 649 + }, + { + "epoch": 9.027959807776321, + "grad_norm": 0.2835831046104431, + "learning_rate": 0.0006, + "loss": 4.614255905151367, + "step": 650 + }, + { + "epoch": 9.041939711664483, + "grad_norm": 0.2646859288215637, + "learning_rate": 0.0006, + "loss": 4.578947067260742, + "step": 651 + }, + { + "epoch": 9.055919615552643, + "grad_norm": 0.28868553042411804, + "learning_rate": 0.0006, + "loss": 4.575977325439453, + "step": 652 + }, + { + "epoch": 9.069899519440805, + "grad_norm": 0.2899586856365204, + "learning_rate": 0.0006, + "loss": 4.541798114776611, + "step": 653 + }, + { + "epoch": 9.083879423328964, + "grad_norm": 0.32786068320274353, + "learning_rate": 0.0006, + "loss": 4.575140953063965, + "step": 654 + }, + { + "epoch": 9.097859327217126, + "grad_norm": 0.35675594210624695, + "learning_rate": 0.0006, + "loss": 4.58184814453125, + "step": 655 + }, + { + "epoch": 9.111839231105286, + "grad_norm": 0.3380381166934967, + "learning_rate": 0.0006, + "loss": 4.546271324157715, + "step": 656 + }, + { + "epoch": 9.125819134993447, + "grad_norm": 0.3035511374473572, + "learning_rate": 0.0006, + "loss": 4.591629981994629, + "step": 657 + }, + { + "epoch": 9.139799038881607, + "grad_norm": 0.2733091711997986, + "learning_rate": 0.0006, + "loss": 4.559020042419434, + "step": 658 + }, + { + "epoch": 9.153778942769769, + "grad_norm": 0.2870676815509796, + "learning_rate": 0.0006, + "loss": 4.552787780761719, + "step": 659 + }, + { + "epoch": 9.167758846657929, + "grad_norm": 0.37471064925193787, + "learning_rate": 0.0006, + "loss": 4.572757244110107, + "step": 660 + }, + { + "epoch": 9.18173875054609, + "grad_norm": 0.37889063358306885, + "learning_rate": 0.0006, + "loss": 4.573302268981934, + "step": 661 + }, + { + "epoch": 9.19571865443425, + "grad_norm": 0.29983851313591003, + "learning_rate": 0.0006, + "loss": 4.571202754974365, + "step": 662 + }, + { + "epoch": 9.209698558322412, + "grad_norm": 0.27595147490501404, + "learning_rate": 0.0006, + "loss": 4.529508590698242, + "step": 663 + }, + { + "epoch": 9.223678462210572, + "grad_norm": 0.22693437337875366, + "learning_rate": 0.0006, + "loss": 4.572267532348633, + "step": 664 + }, + { + "epoch": 9.237658366098733, + "grad_norm": 0.27147138118743896, + "learning_rate": 0.0006, + "loss": 4.529747009277344, + "step": 665 + }, + { + "epoch": 9.251638269986893, + "grad_norm": 0.24952703714370728, + "learning_rate": 0.0006, + "loss": 4.553647994995117, + "step": 666 + }, + { + "epoch": 9.265618173875055, + "grad_norm": 0.3086707592010498, + "learning_rate": 0.0006, + "loss": 4.494636058807373, + "step": 667 + }, + { + "epoch": 9.279598077763215, + "grad_norm": 0.3265218138694763, + "learning_rate": 0.0006, + "loss": 4.522481918334961, + "step": 668 + }, + { + "epoch": 9.293577981651376, + "grad_norm": 0.2744608223438263, + "learning_rate": 0.0006, + "loss": 4.544595241546631, + "step": 669 + }, + { + "epoch": 9.307557885539538, + "grad_norm": 0.26698485016822815, + "learning_rate": 0.0006, + "loss": 4.506407260894775, + "step": 670 + }, + { + "epoch": 9.321537789427698, + "grad_norm": 0.2775942087173462, + "learning_rate": 0.0006, + "loss": 4.534619331359863, + "step": 671 + }, + { + "epoch": 9.33551769331586, + "grad_norm": 0.2421862781047821, + "learning_rate": 0.0006, + "loss": 4.523318290710449, + "step": 672 + }, + { + "epoch": 9.349497597204019, + "grad_norm": 0.2756497263908386, + "learning_rate": 0.0006, + "loss": 4.517561912536621, + "step": 673 + }, + { + "epoch": 9.36347750109218, + "grad_norm": 0.28845369815826416, + "learning_rate": 0.0006, + "loss": 4.530844688415527, + "step": 674 + }, + { + "epoch": 9.37745740498034, + "grad_norm": 0.32285866141319275, + "learning_rate": 0.0006, + "loss": 4.55369758605957, + "step": 675 + }, + { + "epoch": 9.391437308868502, + "grad_norm": 0.3726065754890442, + "learning_rate": 0.0006, + "loss": 4.524348258972168, + "step": 676 + }, + { + "epoch": 9.405417212756662, + "grad_norm": 0.39524078369140625, + "learning_rate": 0.0006, + "loss": 4.535778045654297, + "step": 677 + }, + { + "epoch": 9.419397116644824, + "grad_norm": 0.3859797716140747, + "learning_rate": 0.0006, + "loss": 4.538474082946777, + "step": 678 + }, + { + "epoch": 9.433377020532983, + "grad_norm": 0.36151406168937683, + "learning_rate": 0.0006, + "loss": 4.54434061050415, + "step": 679 + }, + { + "epoch": 9.447356924421145, + "grad_norm": 0.40345999598503113, + "learning_rate": 0.0006, + "loss": 4.532961845397949, + "step": 680 + }, + { + "epoch": 9.461336828309305, + "grad_norm": 0.38864144682884216, + "learning_rate": 0.0006, + "loss": 4.567630767822266, + "step": 681 + }, + { + "epoch": 9.475316732197467, + "grad_norm": 0.3816355764865875, + "learning_rate": 0.0006, + "loss": 4.535771369934082, + "step": 682 + }, + { + "epoch": 9.489296636085626, + "grad_norm": 0.38756558299064636, + "learning_rate": 0.0006, + "loss": 4.4971089363098145, + "step": 683 + }, + { + "epoch": 9.503276539973788, + "grad_norm": 0.4572933614253998, + "learning_rate": 0.0006, + "loss": 4.534860134124756, + "step": 684 + }, + { + "epoch": 9.517256443861948, + "grad_norm": 0.42368650436401367, + "learning_rate": 0.0006, + "loss": 4.542638301849365, + "step": 685 + }, + { + "epoch": 9.53123634775011, + "grad_norm": 0.36939486861228943, + "learning_rate": 0.0006, + "loss": 4.571430206298828, + "step": 686 + }, + { + "epoch": 9.54521625163827, + "grad_norm": 0.3900398313999176, + "learning_rate": 0.0006, + "loss": 4.544435501098633, + "step": 687 + }, + { + "epoch": 9.55919615552643, + "grad_norm": 0.37829288840293884, + "learning_rate": 0.0006, + "loss": 4.564268112182617, + "step": 688 + }, + { + "epoch": 9.57317605941459, + "grad_norm": 0.3553886115550995, + "learning_rate": 0.0006, + "loss": 4.5373430252075195, + "step": 689 + }, + { + "epoch": 9.587155963302752, + "grad_norm": 0.3613419532775879, + "learning_rate": 0.0006, + "loss": 4.559074401855469, + "step": 690 + }, + { + "epoch": 9.601135867190912, + "grad_norm": 0.32644546031951904, + "learning_rate": 0.0006, + "loss": 4.533667087554932, + "step": 691 + }, + { + "epoch": 9.615115771079074, + "grad_norm": 0.3264399468898773, + "learning_rate": 0.0006, + "loss": 4.508299350738525, + "step": 692 + }, + { + "epoch": 9.629095674967235, + "grad_norm": 0.3534526526927948, + "learning_rate": 0.0006, + "loss": 4.542442798614502, + "step": 693 + }, + { + "epoch": 9.643075578855395, + "grad_norm": 0.3333452343940735, + "learning_rate": 0.0006, + "loss": 4.497692584991455, + "step": 694 + }, + { + "epoch": 9.657055482743557, + "grad_norm": 0.3214292526245117, + "learning_rate": 0.0006, + "loss": 4.512363433837891, + "step": 695 + }, + { + "epoch": 9.671035386631717, + "grad_norm": 0.2805672585964203, + "learning_rate": 0.0006, + "loss": 4.496874809265137, + "step": 696 + }, + { + "epoch": 9.685015290519878, + "grad_norm": 0.2618725895881653, + "learning_rate": 0.0006, + "loss": 4.51375675201416, + "step": 697 + }, + { + "epoch": 9.698995194408038, + "grad_norm": 0.2556597888469696, + "learning_rate": 0.0006, + "loss": 4.512338638305664, + "step": 698 + }, + { + "epoch": 9.7129750982962, + "grad_norm": 0.23784305155277252, + "learning_rate": 0.0006, + "loss": 4.486503601074219, + "step": 699 + }, + { + "epoch": 9.72695500218436, + "grad_norm": 0.2240338921546936, + "learning_rate": 0.0006, + "loss": 4.486850261688232, + "step": 700 + }, + { + "epoch": 9.740934906072521, + "grad_norm": 0.24686725437641144, + "learning_rate": 0.0006, + "loss": 4.501359462738037, + "step": 701 + }, + { + "epoch": 9.754914809960681, + "grad_norm": 0.20819595456123352, + "learning_rate": 0.0006, + "loss": 4.495186805725098, + "step": 702 + }, + { + "epoch": 9.768894713848843, + "grad_norm": 0.21858957409858704, + "learning_rate": 0.0006, + "loss": 4.475093364715576, + "step": 703 + }, + { + "epoch": 9.782874617737003, + "grad_norm": 0.22676466405391693, + "learning_rate": 0.0006, + "loss": 4.4702534675598145, + "step": 704 + }, + { + "epoch": 9.796854521625164, + "grad_norm": 0.18317611515522003, + "learning_rate": 0.0006, + "loss": 4.471231937408447, + "step": 705 + }, + { + "epoch": 9.810834425513324, + "grad_norm": 0.20979148149490356, + "learning_rate": 0.0006, + "loss": 4.454103946685791, + "step": 706 + }, + { + "epoch": 9.824814329401486, + "grad_norm": 0.2146051526069641, + "learning_rate": 0.0006, + "loss": 4.505178928375244, + "step": 707 + }, + { + "epoch": 9.838794233289645, + "grad_norm": 0.2344852089881897, + "learning_rate": 0.0006, + "loss": 4.437984943389893, + "step": 708 + }, + { + "epoch": 9.852774137177807, + "grad_norm": 0.26532089710235596, + "learning_rate": 0.0006, + "loss": 4.477126121520996, + "step": 709 + }, + { + "epoch": 9.866754041065967, + "grad_norm": 0.2737913131713867, + "learning_rate": 0.0006, + "loss": 4.498421669006348, + "step": 710 + }, + { + "epoch": 9.880733944954128, + "grad_norm": 0.26651278138160706, + "learning_rate": 0.0006, + "loss": 4.480839729309082, + "step": 711 + }, + { + "epoch": 9.89471384884229, + "grad_norm": 0.26576584577560425, + "learning_rate": 0.0006, + "loss": 4.490936279296875, + "step": 712 + }, + { + "epoch": 9.90869375273045, + "grad_norm": 0.22483965754508972, + "learning_rate": 0.0006, + "loss": 4.477953910827637, + "step": 713 + }, + { + "epoch": 9.922673656618612, + "grad_norm": 0.23576045036315918, + "learning_rate": 0.0006, + "loss": 4.4731292724609375, + "step": 714 + }, + { + "epoch": 9.936653560506771, + "grad_norm": 0.2731139361858368, + "learning_rate": 0.0006, + "loss": 4.441622734069824, + "step": 715 + }, + { + "epoch": 9.950633464394933, + "grad_norm": 0.2677643597126007, + "learning_rate": 0.0006, + "loss": 4.49604606628418, + "step": 716 + }, + { + "epoch": 9.964613368283093, + "grad_norm": 0.21940895915031433, + "learning_rate": 0.0006, + "loss": 4.485573768615723, + "step": 717 + }, + { + "epoch": 9.978593272171254, + "grad_norm": 0.2060987651348114, + "learning_rate": 0.0006, + "loss": 4.482657432556152, + "step": 718 + }, + { + "epoch": 9.992573176059414, + "grad_norm": 0.22163978219032288, + "learning_rate": 0.0006, + "loss": 4.478459358215332, + "step": 719 + }, + { + "epoch": 10.0, + "grad_norm": 0.2505086064338684, + "learning_rate": 0.0006, + "loss": 4.4393510818481445, + "step": 720 + }, + { + "epoch": 10.0, + "eval_loss": 4.695676803588867, + "eval_runtime": 49.0751, + "eval_samples_per_second": 49.76, + "eval_steps_per_second": 3.118, + "step": 720 + }, + { + "epoch": 10.013979903888162, + "grad_norm": 0.23820190131664276, + "learning_rate": 0.0006, + "loss": 4.437685489654541, + "step": 721 + }, + { + "epoch": 10.027959807776321, + "grad_norm": 0.2220371812582016, + "learning_rate": 0.0006, + "loss": 4.449873924255371, + "step": 722 + }, + { + "epoch": 10.041939711664483, + "grad_norm": 0.20369848608970642, + "learning_rate": 0.0006, + "loss": 4.448882579803467, + "step": 723 + }, + { + "epoch": 10.055919615552643, + "grad_norm": 0.2360001504421234, + "learning_rate": 0.0006, + "loss": 4.399251937866211, + "step": 724 + }, + { + "epoch": 10.069899519440805, + "grad_norm": 0.23537491261959076, + "learning_rate": 0.0006, + "loss": 4.442960739135742, + "step": 725 + }, + { + "epoch": 10.083879423328964, + "grad_norm": 0.24433870613574982, + "learning_rate": 0.0006, + "loss": 4.44808292388916, + "step": 726 + }, + { + "epoch": 10.097859327217126, + "grad_norm": 0.3406696021556854, + "learning_rate": 0.0006, + "loss": 4.443426132202148, + "step": 727 + }, + { + "epoch": 10.111839231105286, + "grad_norm": 0.4102286100387573, + "learning_rate": 0.0006, + "loss": 4.424919605255127, + "step": 728 + }, + { + "epoch": 10.125819134993447, + "grad_norm": 0.36462604999542236, + "learning_rate": 0.0006, + "loss": 4.45366907119751, + "step": 729 + }, + { + "epoch": 10.139799038881607, + "grad_norm": 0.4374827444553375, + "learning_rate": 0.0006, + "loss": 4.415630340576172, + "step": 730 + }, + { + "epoch": 10.153778942769769, + "grad_norm": 0.45248138904571533, + "learning_rate": 0.0006, + "loss": 4.448849678039551, + "step": 731 + }, + { + "epoch": 10.167758846657929, + "grad_norm": 0.3806457221508026, + "learning_rate": 0.0006, + "loss": 4.443390846252441, + "step": 732 + }, + { + "epoch": 10.18173875054609, + "grad_norm": 0.3491523861885071, + "learning_rate": 0.0006, + "loss": 4.4648637771606445, + "step": 733 + }, + { + "epoch": 10.19571865443425, + "grad_norm": 0.3327210247516632, + "learning_rate": 0.0006, + "loss": 4.460919380187988, + "step": 734 + }, + { + "epoch": 10.209698558322412, + "grad_norm": 0.29772236943244934, + "learning_rate": 0.0006, + "loss": 4.45159912109375, + "step": 735 + }, + { + "epoch": 10.223678462210572, + "grad_norm": 0.33083397150039673, + "learning_rate": 0.0006, + "loss": 4.463382720947266, + "step": 736 + }, + { + "epoch": 10.237658366098733, + "grad_norm": 0.3930598795413971, + "learning_rate": 0.0006, + "loss": 4.434510231018066, + "step": 737 + }, + { + "epoch": 10.251638269986893, + "grad_norm": 0.4342896044254303, + "learning_rate": 0.0006, + "loss": 4.451700210571289, + "step": 738 + }, + { + "epoch": 10.265618173875055, + "grad_norm": 0.4544043242931366, + "learning_rate": 0.0006, + "loss": 4.437224388122559, + "step": 739 + }, + { + "epoch": 10.279598077763215, + "grad_norm": 0.4487038254737854, + "learning_rate": 0.0006, + "loss": 4.46157693862915, + "step": 740 + }, + { + "epoch": 10.293577981651376, + "grad_norm": 0.4420500695705414, + "learning_rate": 0.0006, + "loss": 4.399561405181885, + "step": 741 + }, + { + "epoch": 10.307557885539538, + "grad_norm": 0.4167289435863495, + "learning_rate": 0.0006, + "loss": 4.41792106628418, + "step": 742 + }, + { + "epoch": 10.321537789427698, + "grad_norm": 0.3186971843242645, + "learning_rate": 0.0006, + "loss": 4.435683250427246, + "step": 743 + }, + { + "epoch": 10.33551769331586, + "grad_norm": 0.3077184855937958, + "learning_rate": 0.0006, + "loss": 4.481947898864746, + "step": 744 + }, + { + "epoch": 10.349497597204019, + "grad_norm": 0.26811280846595764, + "learning_rate": 0.0006, + "loss": 4.4339447021484375, + "step": 745 + }, + { + "epoch": 10.36347750109218, + "grad_norm": 0.28448057174682617, + "learning_rate": 0.0006, + "loss": 4.441644668579102, + "step": 746 + }, + { + "epoch": 10.37745740498034, + "grad_norm": 0.30731502175331116, + "learning_rate": 0.0006, + "loss": 4.428773880004883, + "step": 747 + }, + { + "epoch": 10.391437308868502, + "grad_norm": 0.28036001324653625, + "learning_rate": 0.0006, + "loss": 4.4433135986328125, + "step": 748 + }, + { + "epoch": 10.405417212756662, + "grad_norm": 0.2882847189903259, + "learning_rate": 0.0006, + "loss": 4.433401107788086, + "step": 749 + }, + { + "epoch": 10.419397116644824, + "grad_norm": 0.23622776567935944, + "learning_rate": 0.0006, + "loss": 4.444611549377441, + "step": 750 + }, + { + "epoch": 10.433377020532983, + "grad_norm": 0.2306167632341385, + "learning_rate": 0.0006, + "loss": 4.397875785827637, + "step": 751 + }, + { + "epoch": 10.447356924421145, + "grad_norm": 0.22725090384483337, + "learning_rate": 0.0006, + "loss": 4.429759502410889, + "step": 752 + }, + { + "epoch": 10.461336828309305, + "grad_norm": 0.250709593296051, + "learning_rate": 0.0006, + "loss": 4.415618896484375, + "step": 753 + }, + { + "epoch": 10.475316732197467, + "grad_norm": 0.22341276705265045, + "learning_rate": 0.0006, + "loss": 4.389362335205078, + "step": 754 + }, + { + "epoch": 10.489296636085626, + "grad_norm": 0.22595296800136566, + "learning_rate": 0.0006, + "loss": 4.383584022521973, + "step": 755 + }, + { + "epoch": 10.503276539973788, + "grad_norm": 0.24277575314044952, + "learning_rate": 0.0006, + "loss": 4.403777599334717, + "step": 756 + }, + { + "epoch": 10.517256443861948, + "grad_norm": 0.2670708894729614, + "learning_rate": 0.0006, + "loss": 4.398499011993408, + "step": 757 + }, + { + "epoch": 10.53123634775011, + "grad_norm": 0.2640696167945862, + "learning_rate": 0.0006, + "loss": 4.426726818084717, + "step": 758 + }, + { + "epoch": 10.54521625163827, + "grad_norm": 0.2248653769493103, + "learning_rate": 0.0006, + "loss": 4.400103569030762, + "step": 759 + }, + { + "epoch": 10.55919615552643, + "grad_norm": 0.21466240286827087, + "learning_rate": 0.0006, + "loss": 4.404158592224121, + "step": 760 + }, + { + "epoch": 10.57317605941459, + "grad_norm": 0.236923947930336, + "learning_rate": 0.0006, + "loss": 4.37059211730957, + "step": 761 + }, + { + "epoch": 10.587155963302752, + "grad_norm": 0.2515387535095215, + "learning_rate": 0.0006, + "loss": 4.415055274963379, + "step": 762 + }, + { + "epoch": 10.601135867190912, + "grad_norm": 0.23461885750293732, + "learning_rate": 0.0006, + "loss": 4.375036239624023, + "step": 763 + }, + { + "epoch": 10.615115771079074, + "grad_norm": 0.20975761115550995, + "learning_rate": 0.0006, + "loss": 4.3903398513793945, + "step": 764 + }, + { + "epoch": 10.629095674967235, + "grad_norm": 0.19859997928142548, + "learning_rate": 0.0006, + "loss": 4.379380226135254, + "step": 765 + }, + { + "epoch": 10.643075578855395, + "grad_norm": 0.22310325503349304, + "learning_rate": 0.0006, + "loss": 4.382110595703125, + "step": 766 + }, + { + "epoch": 10.657055482743557, + "grad_norm": 0.23940646648406982, + "learning_rate": 0.0006, + "loss": 4.393403053283691, + "step": 767 + }, + { + "epoch": 10.671035386631717, + "grad_norm": 0.2230468988418579, + "learning_rate": 0.0006, + "loss": 4.391970634460449, + "step": 768 + }, + { + "epoch": 10.685015290519878, + "grad_norm": 0.18139775097370148, + "learning_rate": 0.0006, + "loss": 4.399993896484375, + "step": 769 + }, + { + "epoch": 10.698995194408038, + "grad_norm": 0.19936902821063995, + "learning_rate": 0.0006, + "loss": 4.373854160308838, + "step": 770 + }, + { + "epoch": 10.7129750982962, + "grad_norm": 0.22132465243339539, + "learning_rate": 0.0006, + "loss": 4.377530097961426, + "step": 771 + }, + { + "epoch": 10.72695500218436, + "grad_norm": 0.24254944920539856, + "learning_rate": 0.0006, + "loss": 4.398683547973633, + "step": 772 + }, + { + "epoch": 10.740934906072521, + "grad_norm": 0.2666397988796234, + "learning_rate": 0.0006, + "loss": 4.3879899978637695, + "step": 773 + }, + { + "epoch": 10.754914809960681, + "grad_norm": 0.24728631973266602, + "learning_rate": 0.0006, + "loss": 4.356976509094238, + "step": 774 + }, + { + "epoch": 10.768894713848843, + "grad_norm": 0.2612453103065491, + "learning_rate": 0.0006, + "loss": 4.391525745391846, + "step": 775 + }, + { + "epoch": 10.782874617737003, + "grad_norm": 0.24060510098934174, + "learning_rate": 0.0006, + "loss": 4.376985549926758, + "step": 776 + }, + { + "epoch": 10.796854521625164, + "grad_norm": 0.22708238661289215, + "learning_rate": 0.0006, + "loss": 4.368545055389404, + "step": 777 + }, + { + "epoch": 10.810834425513324, + "grad_norm": 0.26931291818618774, + "learning_rate": 0.0006, + "loss": 4.369227409362793, + "step": 778 + }, + { + "epoch": 10.824814329401486, + "grad_norm": 0.265288770198822, + "learning_rate": 0.0006, + "loss": 4.378131866455078, + "step": 779 + }, + { + "epoch": 10.838794233289645, + "grad_norm": 0.3015305697917938, + "learning_rate": 0.0006, + "loss": 4.376267910003662, + "step": 780 + }, + { + "epoch": 10.852774137177807, + "grad_norm": 0.3345746099948883, + "learning_rate": 0.0006, + "loss": 4.3751420974731445, + "step": 781 + }, + { + "epoch": 10.866754041065967, + "grad_norm": 0.32446005940437317, + "learning_rate": 0.0006, + "loss": 4.370899200439453, + "step": 782 + }, + { + "epoch": 10.880733944954128, + "grad_norm": 0.27070069313049316, + "learning_rate": 0.0006, + "loss": 4.391958236694336, + "step": 783 + }, + { + "epoch": 10.89471384884229, + "grad_norm": 0.25584667921066284, + "learning_rate": 0.0006, + "loss": 4.407493591308594, + "step": 784 + }, + { + "epoch": 10.90869375273045, + "grad_norm": 0.2710244655609131, + "learning_rate": 0.0006, + "loss": 4.374400615692139, + "step": 785 + }, + { + "epoch": 10.922673656618612, + "grad_norm": 0.32413622736930847, + "learning_rate": 0.0006, + "loss": 4.379607200622559, + "step": 786 + }, + { + "epoch": 10.936653560506771, + "grad_norm": 0.3253782391548157, + "learning_rate": 0.0006, + "loss": 4.376441955566406, + "step": 787 + }, + { + "epoch": 10.950633464394933, + "grad_norm": 0.30534613132476807, + "learning_rate": 0.0006, + "loss": 4.382739067077637, + "step": 788 + }, + { + "epoch": 10.964613368283093, + "grad_norm": 0.35726621747016907, + "learning_rate": 0.0006, + "loss": 4.3765869140625, + "step": 789 + }, + { + "epoch": 10.978593272171254, + "grad_norm": 0.32763028144836426, + "learning_rate": 0.0006, + "loss": 4.391537189483643, + "step": 790 + }, + { + "epoch": 10.992573176059414, + "grad_norm": 0.31811195611953735, + "learning_rate": 0.0006, + "loss": 4.371829032897949, + "step": 791 + }, + { + "epoch": 11.0, + "grad_norm": 0.37317267060279846, + "learning_rate": 0.0006, + "loss": 4.381916522979736, + "step": 792 + }, + { + "epoch": 11.0, + "eval_loss": 4.588687896728516, + "eval_runtime": 44.8041, + "eval_samples_per_second": 54.504, + "eval_steps_per_second": 3.415, + "step": 792 + }, + { + "epoch": 11.013979903888162, + "grad_norm": 0.37882938981056213, + "learning_rate": 0.0006, + "loss": 4.3463640213012695, + "step": 793 + }, + { + "epoch": 11.027959807776321, + "grad_norm": 0.34719496965408325, + "learning_rate": 0.0006, + "loss": 4.329861640930176, + "step": 794 + }, + { + "epoch": 11.041939711664483, + "grad_norm": 0.36161214113235474, + "learning_rate": 0.0006, + "loss": 4.3287835121154785, + "step": 795 + }, + { + "epoch": 11.055919615552643, + "grad_norm": 0.3743649125099182, + "learning_rate": 0.0006, + "loss": 4.334251403808594, + "step": 796 + }, + { + "epoch": 11.069899519440805, + "grad_norm": 0.32266443967819214, + "learning_rate": 0.0006, + "loss": 4.364782810211182, + "step": 797 + }, + { + "epoch": 11.083879423328964, + "grad_norm": 0.27460047602653503, + "learning_rate": 0.0006, + "loss": 4.348380088806152, + "step": 798 + }, + { + "epoch": 11.097859327217126, + "grad_norm": 0.30498892068862915, + "learning_rate": 0.0006, + "loss": 4.347856521606445, + "step": 799 + }, + { + "epoch": 11.111839231105286, + "grad_norm": 0.29740771651268005, + "learning_rate": 0.0006, + "loss": 4.343471050262451, + "step": 800 + }, + { + "epoch": 11.125819134993447, + "grad_norm": 0.3004681169986725, + "learning_rate": 0.0006, + "loss": 4.337590217590332, + "step": 801 + }, + { + "epoch": 11.139799038881607, + "grad_norm": 0.3000192642211914, + "learning_rate": 0.0006, + "loss": 4.349949836730957, + "step": 802 + }, + { + "epoch": 11.153778942769769, + "grad_norm": 0.27461889386177063, + "learning_rate": 0.0006, + "loss": 4.338934898376465, + "step": 803 + }, + { + "epoch": 11.167758846657929, + "grad_norm": 0.2856169641017914, + "learning_rate": 0.0006, + "loss": 4.320754051208496, + "step": 804 + }, + { + "epoch": 11.18173875054609, + "grad_norm": 0.29822713136672974, + "learning_rate": 0.0006, + "loss": 4.357949733734131, + "step": 805 + }, + { + "epoch": 11.19571865443425, + "grad_norm": 0.34061339497566223, + "learning_rate": 0.0006, + "loss": 4.327282905578613, + "step": 806 + }, + { + "epoch": 11.209698558322412, + "grad_norm": 0.3379063010215759, + "learning_rate": 0.0006, + "loss": 4.355471611022949, + "step": 807 + }, + { + "epoch": 11.223678462210572, + "grad_norm": 0.2859216630458832, + "learning_rate": 0.0006, + "loss": 4.352344989776611, + "step": 808 + }, + { + "epoch": 11.237658366098733, + "grad_norm": 0.29522669315338135, + "learning_rate": 0.0006, + "loss": 4.349186897277832, + "step": 809 + }, + { + "epoch": 11.251638269986893, + "grad_norm": 0.273798406124115, + "learning_rate": 0.0006, + "loss": 4.342379570007324, + "step": 810 + }, + { + "epoch": 11.265618173875055, + "grad_norm": 0.25298982858657837, + "learning_rate": 0.0006, + "loss": 4.358835220336914, + "step": 811 + }, + { + "epoch": 11.279598077763215, + "grad_norm": 0.2170463651418686, + "learning_rate": 0.0006, + "loss": 4.3422017097473145, + "step": 812 + }, + { + "epoch": 11.293577981651376, + "grad_norm": 0.24855731427669525, + "learning_rate": 0.0006, + "loss": 4.322849750518799, + "step": 813 + }, + { + "epoch": 11.307557885539538, + "grad_norm": 0.22564345598220825, + "learning_rate": 0.0006, + "loss": 4.316864967346191, + "step": 814 + }, + { + "epoch": 11.321537789427698, + "grad_norm": 0.21532197296619415, + "learning_rate": 0.0006, + "loss": 4.326743125915527, + "step": 815 + }, + { + "epoch": 11.33551769331586, + "grad_norm": 0.20514146983623505, + "learning_rate": 0.0006, + "loss": 4.326531887054443, + "step": 816 + }, + { + "epoch": 11.349497597204019, + "grad_norm": 0.19035090506076813, + "learning_rate": 0.0006, + "loss": 4.318154335021973, + "step": 817 + }, + { + "epoch": 11.36347750109218, + "grad_norm": 0.17889662086963654, + "learning_rate": 0.0006, + "loss": 4.35410213470459, + "step": 818 + }, + { + "epoch": 11.37745740498034, + "grad_norm": 0.20564863085746765, + "learning_rate": 0.0006, + "loss": 4.350226879119873, + "step": 819 + }, + { + "epoch": 11.391437308868502, + "grad_norm": 0.2412603348493576, + "learning_rate": 0.0006, + "loss": 4.325137138366699, + "step": 820 + }, + { + "epoch": 11.405417212756662, + "grad_norm": 0.2603496015071869, + "learning_rate": 0.0006, + "loss": 4.335752487182617, + "step": 821 + }, + { + "epoch": 11.419397116644824, + "grad_norm": 0.2968119978904724, + "learning_rate": 0.0006, + "loss": 4.3317670822143555, + "step": 822 + }, + { + "epoch": 11.433377020532983, + "grad_norm": 0.3280937969684601, + "learning_rate": 0.0006, + "loss": 4.322279453277588, + "step": 823 + }, + { + "epoch": 11.447356924421145, + "grad_norm": 0.3598847985267639, + "learning_rate": 0.0006, + "loss": 4.312255859375, + "step": 824 + }, + { + "epoch": 11.461336828309305, + "grad_norm": 0.3996485471725464, + "learning_rate": 0.0006, + "loss": 4.327103614807129, + "step": 825 + }, + { + "epoch": 11.475316732197467, + "grad_norm": 0.4352041780948639, + "learning_rate": 0.0006, + "loss": 4.368639945983887, + "step": 826 + }, + { + "epoch": 11.489296636085626, + "grad_norm": 0.4451918601989746, + "learning_rate": 0.0006, + "loss": 4.335113048553467, + "step": 827 + }, + { + "epoch": 11.503276539973788, + "grad_norm": 0.4403933584690094, + "learning_rate": 0.0006, + "loss": 4.369889259338379, + "step": 828 + }, + { + "epoch": 11.517256443861948, + "grad_norm": 0.34862443804740906, + "learning_rate": 0.0006, + "loss": 4.316292762756348, + "step": 829 + }, + { + "epoch": 11.53123634775011, + "grad_norm": 0.3240634500980377, + "learning_rate": 0.0006, + "loss": 4.328078746795654, + "step": 830 + }, + { + "epoch": 11.54521625163827, + "grad_norm": 0.2445751428604126, + "learning_rate": 0.0006, + "loss": 4.291940689086914, + "step": 831 + }, + { + "epoch": 11.55919615552643, + "grad_norm": 0.24376554787158966, + "learning_rate": 0.0006, + "loss": 4.339217662811279, + "step": 832 + }, + { + "epoch": 11.57317605941459, + "grad_norm": 0.22419725358486176, + "learning_rate": 0.0006, + "loss": 4.2887468338012695, + "step": 833 + }, + { + "epoch": 11.587155963302752, + "grad_norm": 0.22318261861801147, + "learning_rate": 0.0006, + "loss": 4.298492908477783, + "step": 834 + }, + { + "epoch": 11.601135867190912, + "grad_norm": 0.2357342392206192, + "learning_rate": 0.0006, + "loss": 4.328692436218262, + "step": 835 + }, + { + "epoch": 11.615115771079074, + "grad_norm": 0.25450602173805237, + "learning_rate": 0.0006, + "loss": 4.360058784484863, + "step": 836 + }, + { + "epoch": 11.629095674967235, + "grad_norm": 0.24540965259075165, + "learning_rate": 0.0006, + "loss": 4.311890602111816, + "step": 837 + }, + { + "epoch": 11.643075578855395, + "grad_norm": 0.2535638213157654, + "learning_rate": 0.0006, + "loss": 4.327730178833008, + "step": 838 + }, + { + "epoch": 11.657055482743557, + "grad_norm": 0.23063556849956512, + "learning_rate": 0.0006, + "loss": 4.303299903869629, + "step": 839 + }, + { + "epoch": 11.671035386631717, + "grad_norm": 0.21813632547855377, + "learning_rate": 0.0006, + "loss": 4.315352439880371, + "step": 840 + }, + { + "epoch": 11.685015290519878, + "grad_norm": 0.2170359194278717, + "learning_rate": 0.0006, + "loss": 4.278632164001465, + "step": 841 + }, + { + "epoch": 11.698995194408038, + "grad_norm": 0.21059377491474152, + "learning_rate": 0.0006, + "loss": 4.306049346923828, + "step": 842 + }, + { + "epoch": 11.7129750982962, + "grad_norm": 0.19872888922691345, + "learning_rate": 0.0006, + "loss": 4.3091535568237305, + "step": 843 + }, + { + "epoch": 11.72695500218436, + "grad_norm": 0.20059862732887268, + "learning_rate": 0.0006, + "loss": 4.2884063720703125, + "step": 844 + }, + { + "epoch": 11.740934906072521, + "grad_norm": 0.19952483475208282, + "learning_rate": 0.0006, + "loss": 4.293610572814941, + "step": 845 + }, + { + "epoch": 11.754914809960681, + "grad_norm": 0.19794537127017975, + "learning_rate": 0.0006, + "loss": 4.288822174072266, + "step": 846 + }, + { + "epoch": 11.768894713848843, + "grad_norm": 0.213914692401886, + "learning_rate": 0.0006, + "loss": 4.320849418640137, + "step": 847 + }, + { + "epoch": 11.782874617737003, + "grad_norm": 0.18500955402851105, + "learning_rate": 0.0006, + "loss": 4.29300594329834, + "step": 848 + }, + { + "epoch": 11.796854521625164, + "grad_norm": 0.19446656107902527, + "learning_rate": 0.0006, + "loss": 4.3079352378845215, + "step": 849 + }, + { + "epoch": 11.810834425513324, + "grad_norm": 0.22191768884658813, + "learning_rate": 0.0006, + "loss": 4.295967102050781, + "step": 850 + }, + { + "epoch": 11.824814329401486, + "grad_norm": 0.20748084783554077, + "learning_rate": 0.0006, + "loss": 4.332365989685059, + "step": 851 + }, + { + "epoch": 11.838794233289645, + "grad_norm": 0.20993955433368683, + "learning_rate": 0.0006, + "loss": 4.294618129730225, + "step": 852 + }, + { + "epoch": 11.852774137177807, + "grad_norm": 0.23506952822208405, + "learning_rate": 0.0006, + "loss": 4.313426971435547, + "step": 853 + }, + { + "epoch": 11.866754041065967, + "grad_norm": 0.2379443347454071, + "learning_rate": 0.0006, + "loss": 4.297664642333984, + "step": 854 + }, + { + "epoch": 11.880733944954128, + "grad_norm": 0.2127852737903595, + "learning_rate": 0.0006, + "loss": 4.2807698249816895, + "step": 855 + }, + { + "epoch": 11.89471384884229, + "grad_norm": 0.2125532180070877, + "learning_rate": 0.0006, + "loss": 4.310990333557129, + "step": 856 + }, + { + "epoch": 11.90869375273045, + "grad_norm": 0.1996062994003296, + "learning_rate": 0.0006, + "loss": 4.253237724304199, + "step": 857 + }, + { + "epoch": 11.922673656618612, + "grad_norm": 0.20747603476047516, + "learning_rate": 0.0006, + "loss": 4.294193267822266, + "step": 858 + }, + { + "epoch": 11.936653560506771, + "grad_norm": 0.24082425236701965, + "learning_rate": 0.0006, + "loss": 4.269967079162598, + "step": 859 + }, + { + "epoch": 11.950633464394933, + "grad_norm": 0.28993573784828186, + "learning_rate": 0.0006, + "loss": 4.294550895690918, + "step": 860 + }, + { + "epoch": 11.964613368283093, + "grad_norm": 0.29576948285102844, + "learning_rate": 0.0006, + "loss": 4.3188252449035645, + "step": 861 + }, + { + "epoch": 11.978593272171254, + "grad_norm": 0.2754935026168823, + "learning_rate": 0.0006, + "loss": 4.312817573547363, + "step": 862 + }, + { + "epoch": 11.992573176059414, + "grad_norm": 0.3062523305416107, + "learning_rate": 0.0006, + "loss": 4.288214683532715, + "step": 863 + }, + { + "epoch": 12.0, + "grad_norm": 0.3367644250392914, + "learning_rate": 0.0006, + "loss": 4.314888954162598, + "step": 864 + }, + { + "epoch": 12.0, + "eval_loss": 4.516861438751221, + "eval_runtime": 44.2584, + "eval_samples_per_second": 55.176, + "eval_steps_per_second": 3.457, + "step": 864 + }, + { + "epoch": 12.013979903888162, + "grad_norm": 0.2976512014865875, + "learning_rate": 0.0006, + "loss": 4.278797149658203, + "step": 865 + }, + { + "epoch": 12.027959807776321, + "grad_norm": 0.32217127084732056, + "learning_rate": 0.0006, + "loss": 4.2823615074157715, + "step": 866 + }, + { + "epoch": 12.041939711664483, + "grad_norm": 0.31538400053977966, + "learning_rate": 0.0006, + "loss": 4.252805709838867, + "step": 867 + }, + { + "epoch": 12.055919615552643, + "grad_norm": 0.3501375913619995, + "learning_rate": 0.0006, + "loss": 4.276501655578613, + "step": 868 + }, + { + "epoch": 12.069899519440805, + "grad_norm": 0.3452056646347046, + "learning_rate": 0.0006, + "loss": 4.275739669799805, + "step": 869 + }, + { + "epoch": 12.083879423328964, + "grad_norm": 0.36963316798210144, + "learning_rate": 0.0006, + "loss": 4.3215227127075195, + "step": 870 + }, + { + "epoch": 12.097859327217126, + "grad_norm": 0.41605016589164734, + "learning_rate": 0.0006, + "loss": 4.28739595413208, + "step": 871 + }, + { + "epoch": 12.111839231105286, + "grad_norm": 0.37700653076171875, + "learning_rate": 0.0006, + "loss": 4.291154861450195, + "step": 872 + }, + { + "epoch": 12.125819134993447, + "grad_norm": 0.3194253444671631, + "learning_rate": 0.0006, + "loss": 4.259326934814453, + "step": 873 + }, + { + "epoch": 12.139799038881607, + "grad_norm": 0.31770631670951843, + "learning_rate": 0.0006, + "loss": 4.270082473754883, + "step": 874 + }, + { + "epoch": 12.153778942769769, + "grad_norm": 0.3748120069503784, + "learning_rate": 0.0006, + "loss": 4.2727274894714355, + "step": 875 + }, + { + "epoch": 12.167758846657929, + "grad_norm": 0.3821348547935486, + "learning_rate": 0.0006, + "loss": 4.2848286628723145, + "step": 876 + }, + { + "epoch": 12.18173875054609, + "grad_norm": 0.31894201040267944, + "learning_rate": 0.0006, + "loss": 4.289551258087158, + "step": 877 + }, + { + "epoch": 12.19571865443425, + "grad_norm": 0.2695826292037964, + "learning_rate": 0.0006, + "loss": 4.2797346115112305, + "step": 878 + }, + { + "epoch": 12.209698558322412, + "grad_norm": 0.23966269195079803, + "learning_rate": 0.0006, + "loss": 4.24021577835083, + "step": 879 + }, + { + "epoch": 12.223678462210572, + "grad_norm": 0.24342599511146545, + "learning_rate": 0.0006, + "loss": 4.277721881866455, + "step": 880 + }, + { + "epoch": 12.237658366098733, + "grad_norm": 0.2522958815097809, + "learning_rate": 0.0006, + "loss": 4.263946533203125, + "step": 881 + }, + { + "epoch": 12.251638269986893, + "grad_norm": 0.2708299458026886, + "learning_rate": 0.0006, + "loss": 4.274540901184082, + "step": 882 + }, + { + "epoch": 12.265618173875055, + "grad_norm": 0.2978788912296295, + "learning_rate": 0.0006, + "loss": 4.2674970626831055, + "step": 883 + }, + { + "epoch": 12.279598077763215, + "grad_norm": 0.2898774743080139, + "learning_rate": 0.0006, + "loss": 4.235060691833496, + "step": 884 + }, + { + "epoch": 12.293577981651376, + "grad_norm": 0.27941837906837463, + "learning_rate": 0.0006, + "loss": 4.284140586853027, + "step": 885 + }, + { + "epoch": 12.307557885539538, + "grad_norm": 0.25050559639930725, + "learning_rate": 0.0006, + "loss": 4.270134925842285, + "step": 886 + }, + { + "epoch": 12.321537789427698, + "grad_norm": 0.21867156028747559, + "learning_rate": 0.0006, + "loss": 4.241571426391602, + "step": 887 + }, + { + "epoch": 12.33551769331586, + "grad_norm": 0.24735847115516663, + "learning_rate": 0.0006, + "loss": 4.253087997436523, + "step": 888 + }, + { + "epoch": 12.349497597204019, + "grad_norm": 0.23069104552268982, + "learning_rate": 0.0006, + "loss": 4.258606910705566, + "step": 889 + }, + { + "epoch": 12.36347750109218, + "grad_norm": 0.2594369947910309, + "learning_rate": 0.0006, + "loss": 4.307351112365723, + "step": 890 + }, + { + "epoch": 12.37745740498034, + "grad_norm": 0.25349098443984985, + "learning_rate": 0.0006, + "loss": 4.264268398284912, + "step": 891 + }, + { + "epoch": 12.391437308868502, + "grad_norm": 0.2550840675830841, + "learning_rate": 0.0006, + "loss": 4.247092247009277, + "step": 892 + }, + { + "epoch": 12.405417212756662, + "grad_norm": 0.2107602059841156, + "learning_rate": 0.0006, + "loss": 4.240527153015137, + "step": 893 + }, + { + "epoch": 12.419397116644824, + "grad_norm": 0.2025548368692398, + "learning_rate": 0.0006, + "loss": 4.244686126708984, + "step": 894 + }, + { + "epoch": 12.433377020532983, + "grad_norm": 0.22061701118946075, + "learning_rate": 0.0006, + "loss": 4.233231544494629, + "step": 895 + }, + { + "epoch": 12.447356924421145, + "grad_norm": 0.19503085315227509, + "learning_rate": 0.0006, + "loss": 4.23851203918457, + "step": 896 + }, + { + "epoch": 12.461336828309305, + "grad_norm": 0.19313643872737885, + "learning_rate": 0.0006, + "loss": 4.190886497497559, + "step": 897 + }, + { + "epoch": 12.475316732197467, + "grad_norm": 0.21094176173210144, + "learning_rate": 0.0006, + "loss": 4.277888298034668, + "step": 898 + }, + { + "epoch": 12.489296636085626, + "grad_norm": 0.1980651170015335, + "learning_rate": 0.0006, + "loss": 4.251066207885742, + "step": 899 + }, + { + "epoch": 12.503276539973788, + "grad_norm": 0.179737389087677, + "learning_rate": 0.0006, + "loss": 4.194703102111816, + "step": 900 + }, + { + "epoch": 12.517256443861948, + "grad_norm": 0.19069281220436096, + "learning_rate": 0.0006, + "loss": 4.242412567138672, + "step": 901 + }, + { + "epoch": 12.53123634775011, + "grad_norm": 0.191154345870018, + "learning_rate": 0.0006, + "loss": 4.2432780265808105, + "step": 902 + }, + { + "epoch": 12.54521625163827, + "grad_norm": 0.19760103523731232, + "learning_rate": 0.0006, + "loss": 4.23294734954834, + "step": 903 + }, + { + "epoch": 12.55919615552643, + "grad_norm": 0.19982324540615082, + "learning_rate": 0.0006, + "loss": 4.249764442443848, + "step": 904 + }, + { + "epoch": 12.57317605941459, + "grad_norm": 0.1986108422279358, + "learning_rate": 0.0006, + "loss": 4.213435649871826, + "step": 905 + }, + { + "epoch": 12.587155963302752, + "grad_norm": 0.19727319478988647, + "learning_rate": 0.0006, + "loss": 4.247962951660156, + "step": 906 + }, + { + "epoch": 12.601135867190912, + "grad_norm": 0.23404482007026672, + "learning_rate": 0.0006, + "loss": 4.237396240234375, + "step": 907 + }, + { + "epoch": 12.615115771079074, + "grad_norm": 0.21136441826820374, + "learning_rate": 0.0006, + "loss": 4.236040115356445, + "step": 908 + }, + { + "epoch": 12.629095674967235, + "grad_norm": 0.2209048718214035, + "learning_rate": 0.0006, + "loss": 4.234212875366211, + "step": 909 + }, + { + "epoch": 12.643075578855395, + "grad_norm": 0.22120307385921478, + "learning_rate": 0.0006, + "loss": 4.2711076736450195, + "step": 910 + }, + { + "epoch": 12.657055482743557, + "grad_norm": 0.22733066976070404, + "learning_rate": 0.0006, + "loss": 4.231651306152344, + "step": 911 + }, + { + "epoch": 12.671035386631717, + "grad_norm": 0.2435602843761444, + "learning_rate": 0.0006, + "loss": 4.249372482299805, + "step": 912 + }, + { + "epoch": 12.685015290519878, + "grad_norm": 0.28881654143333435, + "learning_rate": 0.0006, + "loss": 4.2626051902771, + "step": 913 + }, + { + "epoch": 12.698995194408038, + "grad_norm": 0.3211199641227722, + "learning_rate": 0.0006, + "loss": 4.254220485687256, + "step": 914 + }, + { + "epoch": 12.7129750982962, + "grad_norm": 0.3118100166320801, + "learning_rate": 0.0006, + "loss": 4.233747959136963, + "step": 915 + }, + { + "epoch": 12.72695500218436, + "grad_norm": 0.33411866426467896, + "learning_rate": 0.0006, + "loss": 4.270386219024658, + "step": 916 + }, + { + "epoch": 12.740934906072521, + "grad_norm": 0.2968253195285797, + "learning_rate": 0.0006, + "loss": 4.242254257202148, + "step": 917 + }, + { + "epoch": 12.754914809960681, + "grad_norm": 0.2959132194519043, + "learning_rate": 0.0006, + "loss": 4.232100486755371, + "step": 918 + }, + { + "epoch": 12.768894713848843, + "grad_norm": 0.2729283273220062, + "learning_rate": 0.0006, + "loss": 4.233869552612305, + "step": 919 + }, + { + "epoch": 12.782874617737003, + "grad_norm": 0.2669033408164978, + "learning_rate": 0.0006, + "loss": 4.261008262634277, + "step": 920 + }, + { + "epoch": 12.796854521625164, + "grad_norm": 0.2738507091999054, + "learning_rate": 0.0006, + "loss": 4.2286763191223145, + "step": 921 + }, + { + "epoch": 12.810834425513324, + "grad_norm": 0.29105183482170105, + "learning_rate": 0.0006, + "loss": 4.281410217285156, + "step": 922 + }, + { + "epoch": 12.824814329401486, + "grad_norm": 0.31330201029777527, + "learning_rate": 0.0006, + "loss": 4.264181613922119, + "step": 923 + }, + { + "epoch": 12.838794233289645, + "grad_norm": 0.31324025988578796, + "learning_rate": 0.0006, + "loss": 4.250385284423828, + "step": 924 + }, + { + "epoch": 12.852774137177807, + "grad_norm": 0.2727925181388855, + "learning_rate": 0.0006, + "loss": 4.24821138381958, + "step": 925 + }, + { + "epoch": 12.866754041065967, + "grad_norm": 0.27350082993507385, + "learning_rate": 0.0006, + "loss": 4.230215072631836, + "step": 926 + }, + { + "epoch": 12.880733944954128, + "grad_norm": 0.2269950658082962, + "learning_rate": 0.0006, + "loss": 4.210305213928223, + "step": 927 + }, + { + "epoch": 12.89471384884229, + "grad_norm": 0.24667619168758392, + "learning_rate": 0.0006, + "loss": 4.239969253540039, + "step": 928 + }, + { + "epoch": 12.90869375273045, + "grad_norm": 0.22510501742362976, + "learning_rate": 0.0006, + "loss": 4.192750930786133, + "step": 929 + }, + { + "epoch": 12.922673656618612, + "grad_norm": 0.22887611389160156, + "learning_rate": 0.0006, + "loss": 4.264463424682617, + "step": 930 + }, + { + "epoch": 12.936653560506771, + "grad_norm": 0.22195978462696075, + "learning_rate": 0.0006, + "loss": 4.205256938934326, + "step": 931 + }, + { + "epoch": 12.950633464394933, + "grad_norm": 0.23184578120708466, + "learning_rate": 0.0006, + "loss": 4.214578628540039, + "step": 932 + }, + { + "epoch": 12.964613368283093, + "grad_norm": 0.2186676561832428, + "learning_rate": 0.0006, + "loss": 4.227711200714111, + "step": 933 + }, + { + "epoch": 12.978593272171254, + "grad_norm": 0.2160426527261734, + "learning_rate": 0.0006, + "loss": 4.221796989440918, + "step": 934 + }, + { + "epoch": 12.992573176059414, + "grad_norm": 0.21562792360782623, + "learning_rate": 0.0006, + "loss": 4.21957540512085, + "step": 935 + }, + { + "epoch": 13.0, + "grad_norm": 0.22538058459758759, + "learning_rate": 0.0006, + "loss": 4.2353973388671875, + "step": 936 + }, + { + "epoch": 13.0, + "eval_loss": 4.426600933074951, + "eval_runtime": 44.8138, + "eval_samples_per_second": 54.492, + "eval_steps_per_second": 3.414, + "step": 936 + }, + { + "epoch": 13.013979903888162, + "grad_norm": 0.24888049066066742, + "learning_rate": 0.0006, + "loss": 4.18648624420166, + "step": 937 + }, + { + "epoch": 13.027959807776321, + "grad_norm": 0.28330180048942566, + "learning_rate": 0.0006, + "loss": 4.188892364501953, + "step": 938 + }, + { + "epoch": 13.041939711664483, + "grad_norm": 0.31152188777923584, + "learning_rate": 0.0006, + "loss": 4.2053399085998535, + "step": 939 + }, + { + "epoch": 13.055919615552643, + "grad_norm": 0.2842433452606201, + "learning_rate": 0.0006, + "loss": 4.191902160644531, + "step": 940 + }, + { + "epoch": 13.069899519440805, + "grad_norm": 0.23664532601833344, + "learning_rate": 0.0006, + "loss": 4.1831865310668945, + "step": 941 + }, + { + "epoch": 13.083879423328964, + "grad_norm": 0.24204140901565552, + "learning_rate": 0.0006, + "loss": 4.202641487121582, + "step": 942 + }, + { + "epoch": 13.097859327217126, + "grad_norm": 0.235311359167099, + "learning_rate": 0.0006, + "loss": 4.174511909484863, + "step": 943 + }, + { + "epoch": 13.111839231105286, + "grad_norm": 0.27127715945243835, + "learning_rate": 0.0006, + "loss": 4.201844215393066, + "step": 944 + }, + { + "epoch": 13.125819134993447, + "grad_norm": 0.2722373604774475, + "learning_rate": 0.0006, + "loss": 4.157383918762207, + "step": 945 + }, + { + "epoch": 13.139799038881607, + "grad_norm": 0.25446659326553345, + "learning_rate": 0.0006, + "loss": 4.221236228942871, + "step": 946 + }, + { + "epoch": 13.153778942769769, + "grad_norm": 0.273017019033432, + "learning_rate": 0.0006, + "loss": 4.195512771606445, + "step": 947 + }, + { + "epoch": 13.167758846657929, + "grad_norm": 0.24766312539577484, + "learning_rate": 0.0006, + "loss": 4.220959663391113, + "step": 948 + }, + { + "epoch": 13.18173875054609, + "grad_norm": 0.24636317789554596, + "learning_rate": 0.0006, + "loss": 4.214302062988281, + "step": 949 + }, + { + "epoch": 13.19571865443425, + "grad_norm": 0.3177756667137146, + "learning_rate": 0.0006, + "loss": 4.213500022888184, + "step": 950 + }, + { + "epoch": 13.209698558322412, + "grad_norm": 0.44579195976257324, + "learning_rate": 0.0006, + "loss": 4.227644920349121, + "step": 951 + }, + { + "epoch": 13.223678462210572, + "grad_norm": 0.4217414855957031, + "learning_rate": 0.0006, + "loss": 4.180937767028809, + "step": 952 + }, + { + "epoch": 13.237658366098733, + "grad_norm": 0.30148059129714966, + "learning_rate": 0.0006, + "loss": 4.207760810852051, + "step": 953 + }, + { + "epoch": 13.251638269986893, + "grad_norm": 0.3192492127418518, + "learning_rate": 0.0006, + "loss": 4.197999000549316, + "step": 954 + }, + { + "epoch": 13.265618173875055, + "grad_norm": 0.37334588170051575, + "learning_rate": 0.0006, + "loss": 4.208001136779785, + "step": 955 + }, + { + "epoch": 13.279598077763215, + "grad_norm": 0.4059637784957886, + "learning_rate": 0.0006, + "loss": 4.211322784423828, + "step": 956 + }, + { + "epoch": 13.293577981651376, + "grad_norm": 0.3389599323272705, + "learning_rate": 0.0006, + "loss": 4.204404354095459, + "step": 957 + }, + { + "epoch": 13.307557885539538, + "grad_norm": 0.2675766050815582, + "learning_rate": 0.0006, + "loss": 4.245941162109375, + "step": 958 + }, + { + "epoch": 13.321537789427698, + "grad_norm": 0.2730264365673065, + "learning_rate": 0.0006, + "loss": 4.2221221923828125, + "step": 959 + }, + { + "epoch": 13.33551769331586, + "grad_norm": 0.26458224654197693, + "learning_rate": 0.0006, + "loss": 4.205596923828125, + "step": 960 + }, + { + "epoch": 13.349497597204019, + "grad_norm": 0.2872551381587982, + "learning_rate": 0.0006, + "loss": 4.196977615356445, + "step": 961 + }, + { + "epoch": 13.36347750109218, + "grad_norm": 0.2954796850681305, + "learning_rate": 0.0006, + "loss": 4.202796936035156, + "step": 962 + }, + { + "epoch": 13.37745740498034, + "grad_norm": 0.2619425654411316, + "learning_rate": 0.0006, + "loss": 4.196845054626465, + "step": 963 + }, + { + "epoch": 13.391437308868502, + "grad_norm": 0.30088478326797485, + "learning_rate": 0.0006, + "loss": 4.219697952270508, + "step": 964 + }, + { + "epoch": 13.405417212756662, + "grad_norm": 0.30388689041137695, + "learning_rate": 0.0006, + "loss": 4.187566757202148, + "step": 965 + }, + { + "epoch": 13.419397116644824, + "grad_norm": 0.27918127179145813, + "learning_rate": 0.0006, + "loss": 4.223600387573242, + "step": 966 + }, + { + "epoch": 13.433377020532983, + "grad_norm": 0.27634528279304504, + "learning_rate": 0.0006, + "loss": 4.165332317352295, + "step": 967 + }, + { + "epoch": 13.447356924421145, + "grad_norm": 0.28830021619796753, + "learning_rate": 0.0006, + "loss": 4.204029560089111, + "step": 968 + }, + { + "epoch": 13.461336828309305, + "grad_norm": 0.29220864176750183, + "learning_rate": 0.0006, + "loss": 4.218057155609131, + "step": 969 + }, + { + "epoch": 13.475316732197467, + "grad_norm": 0.3089624345302582, + "learning_rate": 0.0006, + "loss": 4.200654983520508, + "step": 970 + }, + { + "epoch": 13.489296636085626, + "grad_norm": 0.36479851603507996, + "learning_rate": 0.0006, + "loss": 4.182811737060547, + "step": 971 + }, + { + "epoch": 13.503276539973788, + "grad_norm": 0.37561097741127014, + "learning_rate": 0.0006, + "loss": 4.190266132354736, + "step": 972 + }, + { + "epoch": 13.517256443861948, + "grad_norm": 0.3263583183288574, + "learning_rate": 0.0006, + "loss": 4.214815616607666, + "step": 973 + }, + { + "epoch": 13.53123634775011, + "grad_norm": 0.21552999317646027, + "learning_rate": 0.0006, + "loss": 4.171380043029785, + "step": 974 + }, + { + "epoch": 13.54521625163827, + "grad_norm": 0.247328519821167, + "learning_rate": 0.0006, + "loss": 4.175377368927002, + "step": 975 + }, + { + "epoch": 13.55919615552643, + "grad_norm": 0.23740540444850922, + "learning_rate": 0.0006, + "loss": 4.212357997894287, + "step": 976 + }, + { + "epoch": 13.57317605941459, + "grad_norm": 0.21533876657485962, + "learning_rate": 0.0006, + "loss": 4.203285217285156, + "step": 977 + }, + { + "epoch": 13.587155963302752, + "grad_norm": 0.21462024748325348, + "learning_rate": 0.0006, + "loss": 4.178012371063232, + "step": 978 + }, + { + "epoch": 13.601135867190912, + "grad_norm": 0.2279169261455536, + "learning_rate": 0.0006, + "loss": 4.193912982940674, + "step": 979 + }, + { + "epoch": 13.615115771079074, + "grad_norm": 0.2202417552471161, + "learning_rate": 0.0006, + "loss": 4.167629718780518, + "step": 980 + }, + { + "epoch": 13.629095674967235, + "grad_norm": 0.20586472749710083, + "learning_rate": 0.0006, + "loss": 4.159290313720703, + "step": 981 + }, + { + "epoch": 13.643075578855395, + "grad_norm": 0.20200690627098083, + "learning_rate": 0.0006, + "loss": 4.210315227508545, + "step": 982 + }, + { + "epoch": 13.657055482743557, + "grad_norm": 0.21710257232189178, + "learning_rate": 0.0006, + "loss": 4.21730375289917, + "step": 983 + }, + { + "epoch": 13.671035386631717, + "grad_norm": 0.22058045864105225, + "learning_rate": 0.0006, + "loss": 4.1996073722839355, + "step": 984 + }, + { + "epoch": 13.685015290519878, + "grad_norm": 0.21549592912197113, + "learning_rate": 0.0006, + "loss": 4.209203720092773, + "step": 985 + }, + { + "epoch": 13.698995194408038, + "grad_norm": 0.22274717688560486, + "learning_rate": 0.0006, + "loss": 4.220660209655762, + "step": 986 + }, + { + "epoch": 13.7129750982962, + "grad_norm": 0.22791637480258942, + "learning_rate": 0.0006, + "loss": 4.158679962158203, + "step": 987 + }, + { + "epoch": 13.72695500218436, + "grad_norm": 0.216218963265419, + "learning_rate": 0.0006, + "loss": 4.188124656677246, + "step": 988 + }, + { + "epoch": 13.740934906072521, + "grad_norm": 0.19149383902549744, + "learning_rate": 0.0006, + "loss": 4.181729316711426, + "step": 989 + }, + { + "epoch": 13.754914809960681, + "grad_norm": 0.18964019417762756, + "learning_rate": 0.0006, + "loss": 4.184767246246338, + "step": 990 + }, + { + "epoch": 13.768894713848843, + "grad_norm": 0.1778000295162201, + "learning_rate": 0.0006, + "loss": 4.1802263259887695, + "step": 991 + }, + { + "epoch": 13.782874617737003, + "grad_norm": 0.18277616798877716, + "learning_rate": 0.0006, + "loss": 4.1657867431640625, + "step": 992 + }, + { + "epoch": 13.796854521625164, + "grad_norm": 0.18610034883022308, + "learning_rate": 0.0006, + "loss": 4.156744956970215, + "step": 993 + }, + { + "epoch": 13.810834425513324, + "grad_norm": 0.19332963228225708, + "learning_rate": 0.0006, + "loss": 4.143558502197266, + "step": 994 + }, + { + "epoch": 13.824814329401486, + "grad_norm": 0.19758112728595734, + "learning_rate": 0.0006, + "loss": 4.195793151855469, + "step": 995 + }, + { + "epoch": 13.838794233289645, + "grad_norm": 0.1933647245168686, + "learning_rate": 0.0006, + "loss": 4.169734954833984, + "step": 996 + }, + { + "epoch": 13.852774137177807, + "grad_norm": 0.2362028956413269, + "learning_rate": 0.0006, + "loss": 4.175025939941406, + "step": 997 + }, + { + "epoch": 13.866754041065967, + "grad_norm": 0.2465490996837616, + "learning_rate": 0.0006, + "loss": 4.173909664154053, + "step": 998 + }, + { + "epoch": 13.880733944954128, + "grad_norm": 0.23449952900409698, + "learning_rate": 0.0006, + "loss": 4.173429489135742, + "step": 999 + }, + { + "epoch": 13.89471384884229, + "grad_norm": 0.2282160222530365, + "learning_rate": 0.0006, + "loss": 4.158538341522217, + "step": 1000 + }, + { + "epoch": 13.90869375273045, + "grad_norm": 0.21066738665103912, + "learning_rate": 0.0006, + "loss": 4.171584129333496, + "step": 1001 + }, + { + "epoch": 13.922673656618612, + "grad_norm": 0.18787573277950287, + "learning_rate": 0.0006, + "loss": 4.1837544441223145, + "step": 1002 + }, + { + "epoch": 13.936653560506771, + "grad_norm": 0.2001059353351593, + "learning_rate": 0.0006, + "loss": 4.160369873046875, + "step": 1003 + }, + { + "epoch": 13.950633464394933, + "grad_norm": 0.21644988656044006, + "learning_rate": 0.0006, + "loss": 4.221372604370117, + "step": 1004 + }, + { + "epoch": 13.964613368283093, + "grad_norm": 0.22083887457847595, + "learning_rate": 0.0006, + "loss": 4.149261474609375, + "step": 1005 + }, + { + "epoch": 13.978593272171254, + "grad_norm": 0.2201409637928009, + "learning_rate": 0.0006, + "loss": 4.192010879516602, + "step": 1006 + }, + { + "epoch": 13.992573176059414, + "grad_norm": 0.18888601660728455, + "learning_rate": 0.0006, + "loss": 4.17539119720459, + "step": 1007 + }, + { + "epoch": 14.0, + "grad_norm": 0.2073872834444046, + "learning_rate": 0.0006, + "loss": 4.145265579223633, + "step": 1008 + }, + { + "epoch": 14.0, + "eval_loss": 4.36876106262207, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 1008 + }, + { + "epoch": 14.013979903888162, + "grad_norm": 0.20773135125637054, + "learning_rate": 0.0006, + "loss": 4.132615089416504, + "step": 1009 + }, + { + "epoch": 14.027959807776321, + "grad_norm": 0.22409620881080627, + "learning_rate": 0.0006, + "loss": 4.172839164733887, + "step": 1010 + }, + { + "epoch": 14.041939711664483, + "grad_norm": 0.24046066403388977, + "learning_rate": 0.0006, + "loss": 4.126678943634033, + "step": 1011 + }, + { + "epoch": 14.055919615552643, + "grad_norm": 0.29185160994529724, + "learning_rate": 0.0006, + "loss": 4.177952766418457, + "step": 1012 + }, + { + "epoch": 14.069899519440805, + "grad_norm": 0.2984033226966858, + "learning_rate": 0.0006, + "loss": 4.155030250549316, + "step": 1013 + }, + { + "epoch": 14.083879423328964, + "grad_norm": 0.30262473225593567, + "learning_rate": 0.0006, + "loss": 4.145394325256348, + "step": 1014 + }, + { + "epoch": 14.097859327217126, + "grad_norm": 0.3278133273124695, + "learning_rate": 0.0006, + "loss": 4.172739028930664, + "step": 1015 + }, + { + "epoch": 14.111839231105286, + "grad_norm": 0.3285452425479889, + "learning_rate": 0.0006, + "loss": 4.153196334838867, + "step": 1016 + }, + { + "epoch": 14.125819134993447, + "grad_norm": 0.33912697434425354, + "learning_rate": 0.0006, + "loss": 4.098162651062012, + "step": 1017 + }, + { + "epoch": 14.139799038881607, + "grad_norm": 0.32080814242362976, + "learning_rate": 0.0006, + "loss": 4.157135009765625, + "step": 1018 + }, + { + "epoch": 14.153778942769769, + "grad_norm": 0.31288477778434753, + "learning_rate": 0.0006, + "loss": 4.142683029174805, + "step": 1019 + }, + { + "epoch": 14.167758846657929, + "grad_norm": 0.350289523601532, + "learning_rate": 0.0006, + "loss": 4.134700775146484, + "step": 1020 + }, + { + "epoch": 14.18173875054609, + "grad_norm": 0.34274575114250183, + "learning_rate": 0.0006, + "loss": 4.1578569412231445, + "step": 1021 + }, + { + "epoch": 14.19571865443425, + "grad_norm": 0.2843035161495209, + "learning_rate": 0.0006, + "loss": 4.13760232925415, + "step": 1022 + }, + { + "epoch": 14.209698558322412, + "grad_norm": 0.28235161304473877, + "learning_rate": 0.0006, + "loss": 4.1492462158203125, + "step": 1023 + }, + { + "epoch": 14.223678462210572, + "grad_norm": 0.24407248198986053, + "learning_rate": 0.0006, + "loss": 4.144372463226318, + "step": 1024 + }, + { + "epoch": 14.237658366098733, + "grad_norm": 0.2489742934703827, + "learning_rate": 0.0006, + "loss": 4.137950897216797, + "step": 1025 + }, + { + "epoch": 14.251638269986893, + "grad_norm": 0.26035651564598083, + "learning_rate": 0.0006, + "loss": 4.144070625305176, + "step": 1026 + }, + { + "epoch": 14.265618173875055, + "grad_norm": 0.2726516127586365, + "learning_rate": 0.0006, + "loss": 4.145204067230225, + "step": 1027 + }, + { + "epoch": 14.279598077763215, + "grad_norm": 0.2723483443260193, + "learning_rate": 0.0006, + "loss": 4.118407249450684, + "step": 1028 + }, + { + "epoch": 14.293577981651376, + "grad_norm": 0.27476269006729126, + "learning_rate": 0.0006, + "loss": 4.111325263977051, + "step": 1029 + }, + { + "epoch": 14.307557885539538, + "grad_norm": 0.26202502846717834, + "learning_rate": 0.0006, + "loss": 4.122248649597168, + "step": 1030 + }, + { + "epoch": 14.321537789427698, + "grad_norm": 0.2472032904624939, + "learning_rate": 0.0006, + "loss": 4.157790184020996, + "step": 1031 + }, + { + "epoch": 14.33551769331586, + "grad_norm": 0.2518343925476074, + "learning_rate": 0.0006, + "loss": 4.109132766723633, + "step": 1032 + }, + { + "epoch": 14.349497597204019, + "grad_norm": 0.2652401924133301, + "learning_rate": 0.0006, + "loss": 4.144079685211182, + "step": 1033 + }, + { + "epoch": 14.36347750109218, + "grad_norm": 0.2356770783662796, + "learning_rate": 0.0006, + "loss": 4.128426551818848, + "step": 1034 + }, + { + "epoch": 14.37745740498034, + "grad_norm": 0.2164214551448822, + "learning_rate": 0.0006, + "loss": 4.1644392013549805, + "step": 1035 + }, + { + "epoch": 14.391437308868502, + "grad_norm": 0.22383111715316772, + "learning_rate": 0.0006, + "loss": 4.165862083435059, + "step": 1036 + }, + { + "epoch": 14.405417212756662, + "grad_norm": 0.23152419924736023, + "learning_rate": 0.0006, + "loss": 4.140036582946777, + "step": 1037 + }, + { + "epoch": 14.419397116644824, + "grad_norm": 0.2387741357088089, + "learning_rate": 0.0006, + "loss": 4.130461692810059, + "step": 1038 + }, + { + "epoch": 14.433377020532983, + "grad_norm": 0.24018129706382751, + "learning_rate": 0.0006, + "loss": 4.148482322692871, + "step": 1039 + }, + { + "epoch": 14.447356924421145, + "grad_norm": 0.25487351417541504, + "learning_rate": 0.0006, + "loss": 4.158121109008789, + "step": 1040 + }, + { + "epoch": 14.461336828309305, + "grad_norm": 0.28220096230506897, + "learning_rate": 0.0006, + "loss": 4.160198211669922, + "step": 1041 + }, + { + "epoch": 14.475316732197467, + "grad_norm": 0.2574434280395508, + "learning_rate": 0.0006, + "loss": 4.168512344360352, + "step": 1042 + }, + { + "epoch": 14.489296636085626, + "grad_norm": 0.22569820284843445, + "learning_rate": 0.0006, + "loss": 4.1595001220703125, + "step": 1043 + }, + { + "epoch": 14.503276539973788, + "grad_norm": 0.2473423182964325, + "learning_rate": 0.0006, + "loss": 4.084580898284912, + "step": 1044 + }, + { + "epoch": 14.517256443861948, + "grad_norm": 0.24281060695648193, + "learning_rate": 0.0006, + "loss": 4.139714241027832, + "step": 1045 + }, + { + "epoch": 14.53123634775011, + "grad_norm": 0.24691344797611237, + "learning_rate": 0.0006, + "loss": 4.115398406982422, + "step": 1046 + }, + { + "epoch": 14.54521625163827, + "grad_norm": 0.2583645284175873, + "learning_rate": 0.0006, + "loss": 4.142148494720459, + "step": 1047 + }, + { + "epoch": 14.55919615552643, + "grad_norm": 0.23258574306964874, + "learning_rate": 0.0006, + "loss": 4.16251277923584, + "step": 1048 + }, + { + "epoch": 14.57317605941459, + "grad_norm": 0.22103039920330048, + "learning_rate": 0.0006, + "loss": 4.1308441162109375, + "step": 1049 + }, + { + "epoch": 14.587155963302752, + "grad_norm": 0.23713579773902893, + "learning_rate": 0.0006, + "loss": 4.1565985679626465, + "step": 1050 + }, + { + "epoch": 14.601135867190912, + "grad_norm": 0.24406634271144867, + "learning_rate": 0.0006, + "loss": 4.14628267288208, + "step": 1051 + }, + { + "epoch": 14.615115771079074, + "grad_norm": 0.26821228861808777, + "learning_rate": 0.0006, + "loss": 4.138063430786133, + "step": 1052 + }, + { + "epoch": 14.629095674967235, + "grad_norm": 0.25483864545822144, + "learning_rate": 0.0006, + "loss": 4.1311163902282715, + "step": 1053 + }, + { + "epoch": 14.643075578855395, + "grad_norm": 0.23937982320785522, + "learning_rate": 0.0006, + "loss": 4.150882244110107, + "step": 1054 + }, + { + "epoch": 14.657055482743557, + "grad_norm": 0.21896475553512573, + "learning_rate": 0.0006, + "loss": 4.114015102386475, + "step": 1055 + }, + { + "epoch": 14.671035386631717, + "grad_norm": 0.20821231603622437, + "learning_rate": 0.0006, + "loss": 4.139034271240234, + "step": 1056 + }, + { + "epoch": 14.685015290519878, + "grad_norm": 0.1978551596403122, + "learning_rate": 0.0006, + "loss": 4.1810503005981445, + "step": 1057 + }, + { + "epoch": 14.698995194408038, + "grad_norm": 0.1945771872997284, + "learning_rate": 0.0006, + "loss": 4.120734214782715, + "step": 1058 + }, + { + "epoch": 14.7129750982962, + "grad_norm": 0.19518673419952393, + "learning_rate": 0.0006, + "loss": 4.14264440536499, + "step": 1059 + }, + { + "epoch": 14.72695500218436, + "grad_norm": 0.202596515417099, + "learning_rate": 0.0006, + "loss": 4.151649475097656, + "step": 1060 + }, + { + "epoch": 14.740934906072521, + "grad_norm": 0.1904762089252472, + "learning_rate": 0.0006, + "loss": 4.127899169921875, + "step": 1061 + }, + { + "epoch": 14.754914809960681, + "grad_norm": 0.20685508847236633, + "learning_rate": 0.0006, + "loss": 4.093445777893066, + "step": 1062 + }, + { + "epoch": 14.768894713848843, + "grad_norm": 0.22678329050540924, + "learning_rate": 0.0006, + "loss": 4.132084369659424, + "step": 1063 + }, + { + "epoch": 14.782874617737003, + "grad_norm": 0.24631841480731964, + "learning_rate": 0.0006, + "loss": 4.154788970947266, + "step": 1064 + }, + { + "epoch": 14.796854521625164, + "grad_norm": 0.24445782601833344, + "learning_rate": 0.0006, + "loss": 4.144735336303711, + "step": 1065 + }, + { + "epoch": 14.810834425513324, + "grad_norm": 0.22330640256404877, + "learning_rate": 0.0006, + "loss": 4.159893989562988, + "step": 1066 + }, + { + "epoch": 14.824814329401486, + "grad_norm": 0.22422967851161957, + "learning_rate": 0.0006, + "loss": 4.104874610900879, + "step": 1067 + }, + { + "epoch": 14.838794233289645, + "grad_norm": 0.24583931267261505, + "learning_rate": 0.0006, + "loss": 4.139403820037842, + "step": 1068 + }, + { + "epoch": 14.852774137177807, + "grad_norm": 0.2917379140853882, + "learning_rate": 0.0006, + "loss": 4.168988227844238, + "step": 1069 + }, + { + "epoch": 14.866754041065967, + "grad_norm": 0.3171777129173279, + "learning_rate": 0.0006, + "loss": 4.131263732910156, + "step": 1070 + }, + { + "epoch": 14.880733944954128, + "grad_norm": 0.3039591312408447, + "learning_rate": 0.0006, + "loss": 4.149853706359863, + "step": 1071 + }, + { + "epoch": 14.89471384884229, + "grad_norm": 0.2690650522708893, + "learning_rate": 0.0006, + "loss": 4.154787540435791, + "step": 1072 + }, + { + "epoch": 14.90869375273045, + "grad_norm": 0.28683212399482727, + "learning_rate": 0.0006, + "loss": 4.12751579284668, + "step": 1073 + }, + { + "epoch": 14.922673656618612, + "grad_norm": 0.30022913217544556, + "learning_rate": 0.0006, + "loss": 4.141940116882324, + "step": 1074 + }, + { + "epoch": 14.936653560506771, + "grad_norm": 0.3312259316444397, + "learning_rate": 0.0006, + "loss": 4.141905784606934, + "step": 1075 + }, + { + "epoch": 14.950633464394933, + "grad_norm": 0.31159237027168274, + "learning_rate": 0.0006, + "loss": 4.160192966461182, + "step": 1076 + }, + { + "epoch": 14.964613368283093, + "grad_norm": 0.30093592405319214, + "learning_rate": 0.0006, + "loss": 4.1085076332092285, + "step": 1077 + }, + { + "epoch": 14.978593272171254, + "grad_norm": 0.2728535830974579, + "learning_rate": 0.0006, + "loss": 4.156959056854248, + "step": 1078 + }, + { + "epoch": 14.992573176059414, + "grad_norm": 0.24766813218593597, + "learning_rate": 0.0006, + "loss": 4.113999843597412, + "step": 1079 + }, + { + "epoch": 15.0, + "grad_norm": 0.2538154721260071, + "learning_rate": 0.0006, + "loss": 4.147134780883789, + "step": 1080 + }, + { + "epoch": 15.0, + "eval_loss": 4.323154926300049, + "eval_runtime": 44.8813, + "eval_samples_per_second": 54.41, + "eval_steps_per_second": 3.409, + "step": 1080 + }, + { + "epoch": 15.013979903888162, + "grad_norm": 0.22535280883312225, + "learning_rate": 0.0006, + "loss": 4.112179756164551, + "step": 1081 + }, + { + "epoch": 15.027959807776321, + "grad_norm": 0.24340929090976715, + "learning_rate": 0.0006, + "loss": 4.080923080444336, + "step": 1082 + }, + { + "epoch": 15.041939711664483, + "grad_norm": 0.23159465193748474, + "learning_rate": 0.0006, + "loss": 4.097067356109619, + "step": 1083 + }, + { + "epoch": 15.055919615552643, + "grad_norm": 0.22674769163131714, + "learning_rate": 0.0006, + "loss": 4.118601322174072, + "step": 1084 + }, + { + "epoch": 15.069899519440805, + "grad_norm": 0.2524292469024658, + "learning_rate": 0.0006, + "loss": 4.101109504699707, + "step": 1085 + }, + { + "epoch": 15.083879423328964, + "grad_norm": 0.2505405843257904, + "learning_rate": 0.0006, + "loss": 4.121405601501465, + "step": 1086 + }, + { + "epoch": 15.097859327217126, + "grad_norm": 0.2557983696460724, + "learning_rate": 0.0006, + "loss": 4.1063947677612305, + "step": 1087 + }, + { + "epoch": 15.111839231105286, + "grad_norm": 0.24452129006385803, + "learning_rate": 0.0006, + "loss": 4.086133003234863, + "step": 1088 + }, + { + "epoch": 15.125819134993447, + "grad_norm": 0.25821781158447266, + "learning_rate": 0.0006, + "loss": 4.076262950897217, + "step": 1089 + }, + { + "epoch": 15.139799038881607, + "grad_norm": 0.23650537431240082, + "learning_rate": 0.0006, + "loss": 4.101842880249023, + "step": 1090 + }, + { + "epoch": 15.153778942769769, + "grad_norm": 0.2206192910671234, + "learning_rate": 0.0006, + "loss": 4.11027193069458, + "step": 1091 + }, + { + "epoch": 15.167758846657929, + "grad_norm": 0.21843163669109344, + "learning_rate": 0.0006, + "loss": 4.098437309265137, + "step": 1092 + }, + { + "epoch": 15.18173875054609, + "grad_norm": 0.2528176009654999, + "learning_rate": 0.0006, + "loss": 4.108713150024414, + "step": 1093 + }, + { + "epoch": 15.19571865443425, + "grad_norm": 0.26697206497192383, + "learning_rate": 0.0006, + "loss": 4.113210201263428, + "step": 1094 + }, + { + "epoch": 15.209698558322412, + "grad_norm": 0.26480963826179504, + "learning_rate": 0.0006, + "loss": 4.1103620529174805, + "step": 1095 + }, + { + "epoch": 15.223678462210572, + "grad_norm": 0.24887347221374512, + "learning_rate": 0.0006, + "loss": 4.103529930114746, + "step": 1096 + }, + { + "epoch": 15.237658366098733, + "grad_norm": 0.2344668060541153, + "learning_rate": 0.0006, + "loss": 4.129784107208252, + "step": 1097 + }, + { + "epoch": 15.251638269986893, + "grad_norm": 0.22639742493629456, + "learning_rate": 0.0006, + "loss": 4.113495349884033, + "step": 1098 + }, + { + "epoch": 15.265618173875055, + "grad_norm": 0.22466333210468292, + "learning_rate": 0.0006, + "loss": 4.102309703826904, + "step": 1099 + }, + { + "epoch": 15.279598077763215, + "grad_norm": 0.25135037302970886, + "learning_rate": 0.0006, + "loss": 4.117668628692627, + "step": 1100 + }, + { + "epoch": 15.293577981651376, + "grad_norm": 0.2347089946269989, + "learning_rate": 0.0006, + "loss": 4.086637496948242, + "step": 1101 + }, + { + "epoch": 15.307557885539538, + "grad_norm": 0.2347242832183838, + "learning_rate": 0.0006, + "loss": 4.098714828491211, + "step": 1102 + }, + { + "epoch": 15.321537789427698, + "grad_norm": 0.23990283906459808, + "learning_rate": 0.0006, + "loss": 4.079837799072266, + "step": 1103 + }, + { + "epoch": 15.33551769331586, + "grad_norm": 0.22366675734519958, + "learning_rate": 0.0006, + "loss": 4.108136177062988, + "step": 1104 + }, + { + "epoch": 15.349497597204019, + "grad_norm": 0.21823780238628387, + "learning_rate": 0.0006, + "loss": 4.10054349899292, + "step": 1105 + }, + { + "epoch": 15.36347750109218, + "grad_norm": 0.23059198260307312, + "learning_rate": 0.0006, + "loss": 4.108620643615723, + "step": 1106 + }, + { + "epoch": 15.37745740498034, + "grad_norm": 0.2313755601644516, + "learning_rate": 0.0006, + "loss": 4.088565826416016, + "step": 1107 + }, + { + "epoch": 15.391437308868502, + "grad_norm": 0.2546829283237457, + "learning_rate": 0.0006, + "loss": 4.104948043823242, + "step": 1108 + }, + { + "epoch": 15.405417212756662, + "grad_norm": 0.23666726052761078, + "learning_rate": 0.0006, + "loss": 4.111965179443359, + "step": 1109 + }, + { + "epoch": 15.419397116644824, + "grad_norm": 0.21971021592617035, + "learning_rate": 0.0006, + "loss": 4.097846984863281, + "step": 1110 + }, + { + "epoch": 15.433377020532983, + "grad_norm": 0.20951911807060242, + "learning_rate": 0.0006, + "loss": 4.110099792480469, + "step": 1111 + }, + { + "epoch": 15.447356924421145, + "grad_norm": 0.19590918719768524, + "learning_rate": 0.0006, + "loss": 4.101154327392578, + "step": 1112 + }, + { + "epoch": 15.461336828309305, + "grad_norm": 0.21048946678638458, + "learning_rate": 0.0006, + "loss": 4.0986127853393555, + "step": 1113 + }, + { + "epoch": 15.475316732197467, + "grad_norm": 0.21423374116420746, + "learning_rate": 0.0006, + "loss": 4.082328796386719, + "step": 1114 + }, + { + "epoch": 15.489296636085626, + "grad_norm": 0.227146714925766, + "learning_rate": 0.0006, + "loss": 4.105281829833984, + "step": 1115 + }, + { + "epoch": 15.503276539973788, + "grad_norm": 0.2079153060913086, + "learning_rate": 0.0006, + "loss": 4.100836753845215, + "step": 1116 + }, + { + "epoch": 15.517256443861948, + "grad_norm": 0.21084675192832947, + "learning_rate": 0.0006, + "loss": 4.0934343338012695, + "step": 1117 + }, + { + "epoch": 15.53123634775011, + "grad_norm": 0.23863616585731506, + "learning_rate": 0.0006, + "loss": 4.101540565490723, + "step": 1118 + }, + { + "epoch": 15.54521625163827, + "grad_norm": 0.2518490254878998, + "learning_rate": 0.0006, + "loss": 4.12303352355957, + "step": 1119 + }, + { + "epoch": 15.55919615552643, + "grad_norm": 0.24282905459403992, + "learning_rate": 0.0006, + "loss": 4.080670356750488, + "step": 1120 + }, + { + "epoch": 15.57317605941459, + "grad_norm": 0.24171605706214905, + "learning_rate": 0.0006, + "loss": 4.117938041687012, + "step": 1121 + }, + { + "epoch": 15.587155963302752, + "grad_norm": 0.28453412652015686, + "learning_rate": 0.0006, + "loss": 4.080114364624023, + "step": 1122 + }, + { + "epoch": 15.601135867190912, + "grad_norm": 0.30322617292404175, + "learning_rate": 0.0006, + "loss": 4.079695701599121, + "step": 1123 + }, + { + "epoch": 15.615115771079074, + "grad_norm": 0.2657633125782013, + "learning_rate": 0.0006, + "loss": 4.0916290283203125, + "step": 1124 + }, + { + "epoch": 15.629095674967235, + "grad_norm": 0.2467080056667328, + "learning_rate": 0.0006, + "loss": 4.095594882965088, + "step": 1125 + }, + { + "epoch": 15.643075578855395, + "grad_norm": 0.21767394244670868, + "learning_rate": 0.0006, + "loss": 4.079174041748047, + "step": 1126 + }, + { + "epoch": 15.657055482743557, + "grad_norm": 0.2088327705860138, + "learning_rate": 0.0006, + "loss": 4.060707092285156, + "step": 1127 + }, + { + "epoch": 15.671035386631717, + "grad_norm": 0.1921205073595047, + "learning_rate": 0.0006, + "loss": 4.073911666870117, + "step": 1128 + }, + { + "epoch": 15.685015290519878, + "grad_norm": 0.209339901804924, + "learning_rate": 0.0006, + "loss": 4.089954376220703, + "step": 1129 + }, + { + "epoch": 15.698995194408038, + "grad_norm": 0.23513881862163544, + "learning_rate": 0.0006, + "loss": 4.084906578063965, + "step": 1130 + }, + { + "epoch": 15.7129750982962, + "grad_norm": 0.26140275597572327, + "learning_rate": 0.0006, + "loss": 4.086570739746094, + "step": 1131 + }, + { + "epoch": 15.72695500218436, + "grad_norm": 0.290431946516037, + "learning_rate": 0.0006, + "loss": 4.071229457855225, + "step": 1132 + }, + { + "epoch": 15.740934906072521, + "grad_norm": 0.3061376214027405, + "learning_rate": 0.0006, + "loss": 4.103148460388184, + "step": 1133 + }, + { + "epoch": 15.754914809960681, + "grad_norm": 0.26312482357025146, + "learning_rate": 0.0006, + "loss": 4.088448524475098, + "step": 1134 + }, + { + "epoch": 15.768894713848843, + "grad_norm": 0.22474883496761322, + "learning_rate": 0.0006, + "loss": 4.091766834259033, + "step": 1135 + }, + { + "epoch": 15.782874617737003, + "grad_norm": 0.2341146171092987, + "learning_rate": 0.0006, + "loss": 4.1222758293151855, + "step": 1136 + }, + { + "epoch": 15.796854521625164, + "grad_norm": 0.23556149005889893, + "learning_rate": 0.0006, + "loss": 4.094954013824463, + "step": 1137 + }, + { + "epoch": 15.810834425513324, + "grad_norm": 0.263315349817276, + "learning_rate": 0.0006, + "loss": 4.1065473556518555, + "step": 1138 + }, + { + "epoch": 15.824814329401486, + "grad_norm": 0.2700869143009186, + "learning_rate": 0.0006, + "loss": 4.0890045166015625, + "step": 1139 + }, + { + "epoch": 15.838794233289645, + "grad_norm": 0.28697484731674194, + "learning_rate": 0.0006, + "loss": 4.092496395111084, + "step": 1140 + }, + { + "epoch": 15.852774137177807, + "grad_norm": 0.2824092507362366, + "learning_rate": 0.0006, + "loss": 4.079615592956543, + "step": 1141 + }, + { + "epoch": 15.866754041065967, + "grad_norm": 0.24547280371189117, + "learning_rate": 0.0006, + "loss": 4.089683532714844, + "step": 1142 + }, + { + "epoch": 15.880733944954128, + "grad_norm": 0.23653888702392578, + "learning_rate": 0.0006, + "loss": 4.067309379577637, + "step": 1143 + }, + { + "epoch": 15.89471384884229, + "grad_norm": 0.23784421384334564, + "learning_rate": 0.0006, + "loss": 4.09156608581543, + "step": 1144 + }, + { + "epoch": 15.90869375273045, + "grad_norm": 0.22753281891345978, + "learning_rate": 0.0006, + "loss": 4.095428466796875, + "step": 1145 + }, + { + "epoch": 15.922673656618612, + "grad_norm": 0.2464212030172348, + "learning_rate": 0.0006, + "loss": 4.1036376953125, + "step": 1146 + }, + { + "epoch": 15.936653560506771, + "grad_norm": 0.25531601905822754, + "learning_rate": 0.0006, + "loss": 4.073996543884277, + "step": 1147 + }, + { + "epoch": 15.950633464394933, + "grad_norm": 0.24145905673503876, + "learning_rate": 0.0006, + "loss": 4.094479560852051, + "step": 1148 + }, + { + "epoch": 15.964613368283093, + "grad_norm": 0.24274317920207977, + "learning_rate": 0.0006, + "loss": 4.101981163024902, + "step": 1149 + }, + { + "epoch": 15.978593272171254, + "grad_norm": 0.2350679188966751, + "learning_rate": 0.0006, + "loss": 4.057965278625488, + "step": 1150 + }, + { + "epoch": 15.992573176059414, + "grad_norm": 0.24072253704071045, + "learning_rate": 0.0006, + "loss": 4.020050048828125, + "step": 1151 + }, + { + "epoch": 16.0, + "grad_norm": 0.253978967666626, + "learning_rate": 0.0006, + "loss": 4.061928749084473, + "step": 1152 + }, + { + "epoch": 16.0, + "eval_loss": 4.270665645599365, + "eval_runtime": 44.5063, + "eval_samples_per_second": 54.869, + "eval_steps_per_second": 3.438, + "step": 1152 + }, + { + "epoch": 16.01397990388816, + "grad_norm": 0.3265204131603241, + "learning_rate": 0.0006, + "loss": 4.059116363525391, + "step": 1153 + }, + { + "epoch": 16.027959807776323, + "grad_norm": 0.34139737486839294, + "learning_rate": 0.0006, + "loss": 4.062219619750977, + "step": 1154 + }, + { + "epoch": 16.041939711664483, + "grad_norm": 0.2849949598312378, + "learning_rate": 0.0006, + "loss": 4.032323837280273, + "step": 1155 + }, + { + "epoch": 16.055919615552643, + "grad_norm": 0.25031402707099915, + "learning_rate": 0.0006, + "loss": 4.075527191162109, + "step": 1156 + }, + { + "epoch": 16.069899519440803, + "grad_norm": 0.25207436084747314, + "learning_rate": 0.0006, + "loss": 4.0883097648620605, + "step": 1157 + }, + { + "epoch": 16.083879423328966, + "grad_norm": 0.28677356243133545, + "learning_rate": 0.0006, + "loss": 4.040797233581543, + "step": 1158 + }, + { + "epoch": 16.097859327217126, + "grad_norm": 0.30778825283050537, + "learning_rate": 0.0006, + "loss": 4.051504135131836, + "step": 1159 + }, + { + "epoch": 16.111839231105286, + "grad_norm": 0.3136911988258362, + "learning_rate": 0.0006, + "loss": 4.045449256896973, + "step": 1160 + }, + { + "epoch": 16.125819134993446, + "grad_norm": 0.34384530782699585, + "learning_rate": 0.0006, + "loss": 4.069897651672363, + "step": 1161 + }, + { + "epoch": 16.13979903888161, + "grad_norm": 0.3074268400669098, + "learning_rate": 0.0006, + "loss": 4.0621137619018555, + "step": 1162 + }, + { + "epoch": 16.15377894276977, + "grad_norm": 0.33090949058532715, + "learning_rate": 0.0006, + "loss": 4.084089279174805, + "step": 1163 + }, + { + "epoch": 16.16775884665793, + "grad_norm": 0.26358580589294434, + "learning_rate": 0.0006, + "loss": 4.066563606262207, + "step": 1164 + }, + { + "epoch": 16.18173875054609, + "grad_norm": 0.25586041808128357, + "learning_rate": 0.0006, + "loss": 4.08109188079834, + "step": 1165 + }, + { + "epoch": 16.195718654434252, + "grad_norm": 0.2966184616088867, + "learning_rate": 0.0006, + "loss": 4.039186477661133, + "step": 1166 + }, + { + "epoch": 16.209698558322412, + "grad_norm": 0.3064924478530884, + "learning_rate": 0.0006, + "loss": 4.08139705657959, + "step": 1167 + }, + { + "epoch": 16.22367846221057, + "grad_norm": 0.28671345114707947, + "learning_rate": 0.0006, + "loss": 4.04637336730957, + "step": 1168 + }, + { + "epoch": 16.23765836609873, + "grad_norm": 0.26209691166877747, + "learning_rate": 0.0006, + "loss": 4.052768707275391, + "step": 1169 + }, + { + "epoch": 16.251638269986895, + "grad_norm": 0.2758907079696655, + "learning_rate": 0.0006, + "loss": 4.064321517944336, + "step": 1170 + }, + { + "epoch": 16.265618173875055, + "grad_norm": 0.25961801409721375, + "learning_rate": 0.0006, + "loss": 4.057299613952637, + "step": 1171 + }, + { + "epoch": 16.279598077763215, + "grad_norm": 0.2513751685619354, + "learning_rate": 0.0006, + "loss": 4.064148902893066, + "step": 1172 + }, + { + "epoch": 16.293577981651374, + "grad_norm": 0.23920276761054993, + "learning_rate": 0.0006, + "loss": 4.101890563964844, + "step": 1173 + }, + { + "epoch": 16.307557885539538, + "grad_norm": 0.22746537625789642, + "learning_rate": 0.0006, + "loss": 4.086627006530762, + "step": 1174 + }, + { + "epoch": 16.321537789427698, + "grad_norm": 0.22633525729179382, + "learning_rate": 0.0006, + "loss": 4.04669189453125, + "step": 1175 + }, + { + "epoch": 16.335517693315857, + "grad_norm": 0.2654891610145569, + "learning_rate": 0.0006, + "loss": 4.086793422698975, + "step": 1176 + }, + { + "epoch": 16.34949759720402, + "grad_norm": 0.2872653007507324, + "learning_rate": 0.0006, + "loss": 4.077983856201172, + "step": 1177 + }, + { + "epoch": 16.36347750109218, + "grad_norm": 0.25726038217544556, + "learning_rate": 0.0006, + "loss": 4.066011428833008, + "step": 1178 + }, + { + "epoch": 16.37745740498034, + "grad_norm": 0.2592027485370636, + "learning_rate": 0.0006, + "loss": 4.0482988357543945, + "step": 1179 + }, + { + "epoch": 16.3914373088685, + "grad_norm": 0.2768886685371399, + "learning_rate": 0.0006, + "loss": 4.065151214599609, + "step": 1180 + }, + { + "epoch": 16.405417212756664, + "grad_norm": 0.2956002652645111, + "learning_rate": 0.0006, + "loss": 4.037791728973389, + "step": 1181 + }, + { + "epoch": 16.419397116644824, + "grad_norm": 0.3092120885848999, + "learning_rate": 0.0006, + "loss": 4.062164306640625, + "step": 1182 + }, + { + "epoch": 16.433377020532983, + "grad_norm": 0.29516810178756714, + "learning_rate": 0.0006, + "loss": 4.025505065917969, + "step": 1183 + }, + { + "epoch": 16.447356924421143, + "grad_norm": 0.2640177607536316, + "learning_rate": 0.0006, + "loss": 4.060182571411133, + "step": 1184 + }, + { + "epoch": 16.461336828309307, + "grad_norm": 0.2444908320903778, + "learning_rate": 0.0006, + "loss": 4.046144962310791, + "step": 1185 + }, + { + "epoch": 16.475316732197467, + "grad_norm": 0.23190705478191376, + "learning_rate": 0.0006, + "loss": 4.075569152832031, + "step": 1186 + }, + { + "epoch": 16.489296636085626, + "grad_norm": 0.2383626103401184, + "learning_rate": 0.0006, + "loss": 4.088897705078125, + "step": 1187 + }, + { + "epoch": 16.503276539973786, + "grad_norm": 0.20688803493976593, + "learning_rate": 0.0006, + "loss": 4.064517974853516, + "step": 1188 + }, + { + "epoch": 16.51725644386195, + "grad_norm": 0.22610054910182953, + "learning_rate": 0.0006, + "loss": 4.04502010345459, + "step": 1189 + }, + { + "epoch": 16.53123634775011, + "grad_norm": 0.2014893889427185, + "learning_rate": 0.0006, + "loss": 4.058279514312744, + "step": 1190 + }, + { + "epoch": 16.54521625163827, + "grad_norm": 0.21459777653217316, + "learning_rate": 0.0006, + "loss": 4.066389083862305, + "step": 1191 + }, + { + "epoch": 16.55919615552643, + "grad_norm": 0.22909940779209137, + "learning_rate": 0.0006, + "loss": 4.0557966232299805, + "step": 1192 + }, + { + "epoch": 16.573176059414592, + "grad_norm": 0.20039083063602448, + "learning_rate": 0.0006, + "loss": 4.092845916748047, + "step": 1193 + }, + { + "epoch": 16.587155963302752, + "grad_norm": 0.22651726007461548, + "learning_rate": 0.0006, + "loss": 4.034615516662598, + "step": 1194 + }, + { + "epoch": 16.601135867190912, + "grad_norm": 0.21901755034923553, + "learning_rate": 0.0006, + "loss": 4.035619735717773, + "step": 1195 + }, + { + "epoch": 16.615115771079076, + "grad_norm": 0.22930841147899628, + "learning_rate": 0.0006, + "loss": 4.080800533294678, + "step": 1196 + }, + { + "epoch": 16.629095674967235, + "grad_norm": 0.212818443775177, + "learning_rate": 0.0006, + "loss": 4.030189514160156, + "step": 1197 + }, + { + "epoch": 16.643075578855395, + "grad_norm": 0.2370826154947281, + "learning_rate": 0.0006, + "loss": 4.062643527984619, + "step": 1198 + }, + { + "epoch": 16.657055482743555, + "grad_norm": 0.24786995351314545, + "learning_rate": 0.0006, + "loss": 4.031761169433594, + "step": 1199 + }, + { + "epoch": 16.67103538663172, + "grad_norm": 0.2305847704410553, + "learning_rate": 0.0006, + "loss": 4.083752155303955, + "step": 1200 + }, + { + "epoch": 16.68501529051988, + "grad_norm": 0.23336584866046906, + "learning_rate": 0.0006, + "loss": 4.079145431518555, + "step": 1201 + }, + { + "epoch": 16.698995194408038, + "grad_norm": 0.23976293206214905, + "learning_rate": 0.0006, + "loss": 4.020473957061768, + "step": 1202 + }, + { + "epoch": 16.712975098296198, + "grad_norm": 0.222761869430542, + "learning_rate": 0.0006, + "loss": 4.065582752227783, + "step": 1203 + }, + { + "epoch": 16.72695500218436, + "grad_norm": 0.23725618422031403, + "learning_rate": 0.0006, + "loss": 4.0263776779174805, + "step": 1204 + }, + { + "epoch": 16.74093490607252, + "grad_norm": 0.23873984813690186, + "learning_rate": 0.0006, + "loss": 4.053092956542969, + "step": 1205 + }, + { + "epoch": 16.75491480996068, + "grad_norm": 0.21043002605438232, + "learning_rate": 0.0006, + "loss": 4.063965797424316, + "step": 1206 + }, + { + "epoch": 16.76889471384884, + "grad_norm": 0.19863522052764893, + "learning_rate": 0.0006, + "loss": 4.061187267303467, + "step": 1207 + }, + { + "epoch": 16.782874617737004, + "grad_norm": 0.1953752487897873, + "learning_rate": 0.0006, + "loss": 4.046016693115234, + "step": 1208 + }, + { + "epoch": 16.796854521625164, + "grad_norm": 0.2130361795425415, + "learning_rate": 0.0006, + "loss": 4.066933631896973, + "step": 1209 + }, + { + "epoch": 16.810834425513324, + "grad_norm": 0.19598130881786346, + "learning_rate": 0.0006, + "loss": 4.071558952331543, + "step": 1210 + }, + { + "epoch": 16.824814329401484, + "grad_norm": 0.20331116020679474, + "learning_rate": 0.0006, + "loss": 4.088632106781006, + "step": 1211 + }, + { + "epoch": 16.838794233289647, + "grad_norm": 0.20423150062561035, + "learning_rate": 0.0006, + "loss": 4.032224655151367, + "step": 1212 + }, + { + "epoch": 16.852774137177807, + "grad_norm": 0.2401197850704193, + "learning_rate": 0.0006, + "loss": 4.037393569946289, + "step": 1213 + }, + { + "epoch": 16.866754041065967, + "grad_norm": 0.26102620363235474, + "learning_rate": 0.0006, + "loss": 4.04738712310791, + "step": 1214 + }, + { + "epoch": 16.88073394495413, + "grad_norm": 0.2438521534204483, + "learning_rate": 0.0006, + "loss": 4.015673637390137, + "step": 1215 + }, + { + "epoch": 16.89471384884229, + "grad_norm": 0.20742061734199524, + "learning_rate": 0.0006, + "loss": 4.049060821533203, + "step": 1216 + }, + { + "epoch": 16.90869375273045, + "grad_norm": 0.22028608620166779, + "learning_rate": 0.0006, + "loss": 4.088971138000488, + "step": 1217 + }, + { + "epoch": 16.92267365661861, + "grad_norm": 0.21746744215488434, + "learning_rate": 0.0006, + "loss": 4.021710395812988, + "step": 1218 + }, + { + "epoch": 16.936653560506773, + "grad_norm": 0.2226102203130722, + "learning_rate": 0.0006, + "loss": 4.050119400024414, + "step": 1219 + }, + { + "epoch": 16.950633464394933, + "grad_norm": 0.23903657495975494, + "learning_rate": 0.0006, + "loss": 4.0570526123046875, + "step": 1220 + }, + { + "epoch": 16.964613368283093, + "grad_norm": 0.2556349039077759, + "learning_rate": 0.0006, + "loss": 4.0448808670043945, + "step": 1221 + }, + { + "epoch": 16.978593272171253, + "grad_norm": 0.28445592522621155, + "learning_rate": 0.0006, + "loss": 4.052034378051758, + "step": 1222 + }, + { + "epoch": 16.992573176059416, + "grad_norm": 0.273973673582077, + "learning_rate": 0.0006, + "loss": 4.02907657623291, + "step": 1223 + }, + { + "epoch": 17.0, + "grad_norm": 0.26125091314315796, + "learning_rate": 0.0006, + "loss": 4.10643196105957, + "step": 1224 + }, + { + "epoch": 17.0, + "eval_loss": 4.2585954666137695, + "eval_runtime": 44.8583, + "eval_samples_per_second": 54.438, + "eval_steps_per_second": 3.411, + "step": 1224 + }, + { + "epoch": 17.01397990388816, + "grad_norm": 0.2786196768283844, + "learning_rate": 0.0006, + "loss": 4.044719219207764, + "step": 1225 + }, + { + "epoch": 17.027959807776323, + "grad_norm": 0.2969571650028229, + "learning_rate": 0.0006, + "loss": 4.022037506103516, + "step": 1226 + }, + { + "epoch": 17.041939711664483, + "grad_norm": 0.32196253538131714, + "learning_rate": 0.0006, + "loss": 4.03636360168457, + "step": 1227 + }, + { + "epoch": 17.055919615552643, + "grad_norm": 0.28617000579833984, + "learning_rate": 0.0006, + "loss": 4.012125492095947, + "step": 1228 + }, + { + "epoch": 17.069899519440803, + "grad_norm": 0.26539644598960876, + "learning_rate": 0.0006, + "loss": 4.020190715789795, + "step": 1229 + }, + { + "epoch": 17.083879423328966, + "grad_norm": 0.24315394461154938, + "learning_rate": 0.0006, + "loss": 4.0553812980651855, + "step": 1230 + }, + { + "epoch": 17.097859327217126, + "grad_norm": 0.23798158764839172, + "learning_rate": 0.0006, + "loss": 4.004805088043213, + "step": 1231 + }, + { + "epoch": 17.111839231105286, + "grad_norm": 0.25723618268966675, + "learning_rate": 0.0006, + "loss": 4.00108003616333, + "step": 1232 + }, + { + "epoch": 17.125819134993446, + "grad_norm": 0.2669757604598999, + "learning_rate": 0.0006, + "loss": 4.00828742980957, + "step": 1233 + }, + { + "epoch": 17.13979903888161, + "grad_norm": 0.26421651244163513, + "learning_rate": 0.0006, + "loss": 3.995478391647339, + "step": 1234 + }, + { + "epoch": 17.15377894276977, + "grad_norm": 0.24745801091194153, + "learning_rate": 0.0006, + "loss": 4.0171027183532715, + "step": 1235 + }, + { + "epoch": 17.16775884665793, + "grad_norm": 0.27028775215148926, + "learning_rate": 0.0006, + "loss": 4.017108917236328, + "step": 1236 + }, + { + "epoch": 17.18173875054609, + "grad_norm": 0.27247968316078186, + "learning_rate": 0.0006, + "loss": 4.032601356506348, + "step": 1237 + }, + { + "epoch": 17.195718654434252, + "grad_norm": 0.24620869755744934, + "learning_rate": 0.0006, + "loss": 4.022171974182129, + "step": 1238 + }, + { + "epoch": 17.209698558322412, + "grad_norm": 0.23407386243343353, + "learning_rate": 0.0006, + "loss": 3.9946959018707275, + "step": 1239 + }, + { + "epoch": 17.22367846221057, + "grad_norm": 0.22559069097042084, + "learning_rate": 0.0006, + "loss": 4.013072490692139, + "step": 1240 + }, + { + "epoch": 17.23765836609873, + "grad_norm": 0.226687952876091, + "learning_rate": 0.0006, + "loss": 4.023543834686279, + "step": 1241 + }, + { + "epoch": 17.251638269986895, + "grad_norm": 0.24436360597610474, + "learning_rate": 0.0006, + "loss": 4.044206619262695, + "step": 1242 + }, + { + "epoch": 17.265618173875055, + "grad_norm": 0.25527626276016235, + "learning_rate": 0.0006, + "loss": 4.016424179077148, + "step": 1243 + }, + { + "epoch": 17.279598077763215, + "grad_norm": 0.26126864552497864, + "learning_rate": 0.0006, + "loss": 4.024394512176514, + "step": 1244 + }, + { + "epoch": 17.293577981651374, + "grad_norm": 0.25746744871139526, + "learning_rate": 0.0006, + "loss": 4.046844482421875, + "step": 1245 + }, + { + "epoch": 17.307557885539538, + "grad_norm": 0.26579564809799194, + "learning_rate": 0.0006, + "loss": 4.021010398864746, + "step": 1246 + }, + { + "epoch": 17.321537789427698, + "grad_norm": 0.2713971734046936, + "learning_rate": 0.0006, + "loss": 4.022331237792969, + "step": 1247 + }, + { + "epoch": 17.335517693315857, + "grad_norm": 0.24217180907726288, + "learning_rate": 0.0006, + "loss": 4.006353855133057, + "step": 1248 + }, + { + "epoch": 17.34949759720402, + "grad_norm": 0.26899752020835876, + "learning_rate": 0.0006, + "loss": 4.068023681640625, + "step": 1249 + }, + { + "epoch": 17.36347750109218, + "grad_norm": 0.26745253801345825, + "learning_rate": 0.0006, + "loss": 4.031207084655762, + "step": 1250 + }, + { + "epoch": 17.37745740498034, + "grad_norm": 0.21533764898777008, + "learning_rate": 0.0006, + "loss": 4.042410850524902, + "step": 1251 + }, + { + "epoch": 17.3914373088685, + "grad_norm": 0.21958027780056, + "learning_rate": 0.0006, + "loss": 4.02597713470459, + "step": 1252 + }, + { + "epoch": 17.405417212756664, + "grad_norm": 0.263068825006485, + "learning_rate": 0.0006, + "loss": 4.0035905838012695, + "step": 1253 + }, + { + "epoch": 17.419397116644824, + "grad_norm": 0.24044716358184814, + "learning_rate": 0.0006, + "loss": 4.005317687988281, + "step": 1254 + }, + { + "epoch": 17.433377020532983, + "grad_norm": 0.19142559170722961, + "learning_rate": 0.0006, + "loss": 3.9976844787597656, + "step": 1255 + }, + { + "epoch": 17.447356924421143, + "grad_norm": 0.18650250136852264, + "learning_rate": 0.0006, + "loss": 4.031353950500488, + "step": 1256 + }, + { + "epoch": 17.461336828309307, + "grad_norm": 0.1984022557735443, + "learning_rate": 0.0006, + "loss": 4.002097129821777, + "step": 1257 + }, + { + "epoch": 17.475316732197467, + "grad_norm": 0.20087844133377075, + "learning_rate": 0.0006, + "loss": 4.031151294708252, + "step": 1258 + }, + { + "epoch": 17.489296636085626, + "grad_norm": 0.20881228148937225, + "learning_rate": 0.0006, + "loss": 4.034793853759766, + "step": 1259 + }, + { + "epoch": 17.503276539973786, + "grad_norm": 0.23958556354045868, + "learning_rate": 0.0006, + "loss": 4.025238990783691, + "step": 1260 + }, + { + "epoch": 17.51725644386195, + "grad_norm": 0.23927845060825348, + "learning_rate": 0.0006, + "loss": 3.999828338623047, + "step": 1261 + }, + { + "epoch": 17.53123634775011, + "grad_norm": 0.20342715084552765, + "learning_rate": 0.0006, + "loss": 4.054262161254883, + "step": 1262 + }, + { + "epoch": 17.54521625163827, + "grad_norm": 0.21370555460453033, + "learning_rate": 0.0006, + "loss": 4.011582374572754, + "step": 1263 + }, + { + "epoch": 17.55919615552643, + "grad_norm": 0.23681946098804474, + "learning_rate": 0.0006, + "loss": 4.029694080352783, + "step": 1264 + }, + { + "epoch": 17.573176059414592, + "grad_norm": 0.24190311133861542, + "learning_rate": 0.0006, + "loss": 4.018783092498779, + "step": 1265 + }, + { + "epoch": 17.587155963302752, + "grad_norm": 0.23215509951114655, + "learning_rate": 0.0006, + "loss": 4.009703159332275, + "step": 1266 + }, + { + "epoch": 17.601135867190912, + "grad_norm": 0.21122977137565613, + "learning_rate": 0.0006, + "loss": 4.0345659255981445, + "step": 1267 + }, + { + "epoch": 17.615115771079076, + "grad_norm": 0.2075948715209961, + "learning_rate": 0.0006, + "loss": 4.070703506469727, + "step": 1268 + }, + { + "epoch": 17.629095674967235, + "grad_norm": 0.21667909622192383, + "learning_rate": 0.0006, + "loss": 4.020771503448486, + "step": 1269 + }, + { + "epoch": 17.643075578855395, + "grad_norm": 0.20960724353790283, + "learning_rate": 0.0006, + "loss": 4.026404857635498, + "step": 1270 + }, + { + "epoch": 17.657055482743555, + "grad_norm": 0.22575686872005463, + "learning_rate": 0.0006, + "loss": 4.01981258392334, + "step": 1271 + }, + { + "epoch": 17.67103538663172, + "grad_norm": 0.2565988302230835, + "learning_rate": 0.0006, + "loss": 4.015827178955078, + "step": 1272 + }, + { + "epoch": 17.68501529051988, + "grad_norm": 0.24831551313400269, + "learning_rate": 0.0006, + "loss": 4.012457847595215, + "step": 1273 + }, + { + "epoch": 17.698995194408038, + "grad_norm": 0.22595494985580444, + "learning_rate": 0.0006, + "loss": 4.031386375427246, + "step": 1274 + }, + { + "epoch": 17.712975098296198, + "grad_norm": 0.20687322318553925, + "learning_rate": 0.0006, + "loss": 4.014216423034668, + "step": 1275 + }, + { + "epoch": 17.72695500218436, + "grad_norm": 0.21916012465953827, + "learning_rate": 0.0006, + "loss": 4.037643909454346, + "step": 1276 + }, + { + "epoch": 17.74093490607252, + "grad_norm": 0.2243107706308365, + "learning_rate": 0.0006, + "loss": 4.033044815063477, + "step": 1277 + }, + { + "epoch": 17.75491480996068, + "grad_norm": 0.2402164787054062, + "learning_rate": 0.0006, + "loss": 4.026636123657227, + "step": 1278 + }, + { + "epoch": 17.76889471384884, + "grad_norm": 0.27957046031951904, + "learning_rate": 0.0006, + "loss": 4.0270867347717285, + "step": 1279 + }, + { + "epoch": 17.782874617737004, + "grad_norm": 0.27447596192359924, + "learning_rate": 0.0006, + "loss": 4.0120134353637695, + "step": 1280 + }, + { + "epoch": 17.796854521625164, + "grad_norm": 0.26926323771476746, + "learning_rate": 0.0006, + "loss": 4.027970314025879, + "step": 1281 + }, + { + "epoch": 17.810834425513324, + "grad_norm": 0.2535291314125061, + "learning_rate": 0.0006, + "loss": 4.002565383911133, + "step": 1282 + }, + { + "epoch": 17.824814329401484, + "grad_norm": 0.22639447450637817, + "learning_rate": 0.0006, + "loss": 4.032750606536865, + "step": 1283 + }, + { + "epoch": 17.838794233289647, + "grad_norm": 0.23384462296962738, + "learning_rate": 0.0006, + "loss": 4.03568172454834, + "step": 1284 + }, + { + "epoch": 17.852774137177807, + "grad_norm": 0.22971470654010773, + "learning_rate": 0.0006, + "loss": 4.031299591064453, + "step": 1285 + }, + { + "epoch": 17.866754041065967, + "grad_norm": 0.24540141224861145, + "learning_rate": 0.0006, + "loss": 4.0142669677734375, + "step": 1286 + }, + { + "epoch": 17.88073394495413, + "grad_norm": 0.2304888367652893, + "learning_rate": 0.0006, + "loss": 3.9964895248413086, + "step": 1287 + }, + { + "epoch": 17.89471384884229, + "grad_norm": 0.22082284092903137, + "learning_rate": 0.0006, + "loss": 4.024693489074707, + "step": 1288 + }, + { + "epoch": 17.90869375273045, + "grad_norm": 0.23677092790603638, + "learning_rate": 0.0006, + "loss": 4.002082347869873, + "step": 1289 + }, + { + "epoch": 17.92267365661861, + "grad_norm": 0.23122332990169525, + "learning_rate": 0.0006, + "loss": 4.025351524353027, + "step": 1290 + }, + { + "epoch": 17.936653560506773, + "grad_norm": 0.2548119127750397, + "learning_rate": 0.0006, + "loss": 3.9955825805664062, + "step": 1291 + }, + { + "epoch": 17.950633464394933, + "grad_norm": 0.26950931549072266, + "learning_rate": 0.0006, + "loss": 4.026151180267334, + "step": 1292 + }, + { + "epoch": 17.964613368283093, + "grad_norm": 0.3023233711719513, + "learning_rate": 0.0006, + "loss": 4.006035804748535, + "step": 1293 + }, + { + "epoch": 17.978593272171253, + "grad_norm": 0.3190958499908447, + "learning_rate": 0.0006, + "loss": 4.023565292358398, + "step": 1294 + }, + { + "epoch": 17.992573176059416, + "grad_norm": 0.28878068923950195, + "learning_rate": 0.0006, + "loss": 4.020973205566406, + "step": 1295 + }, + { + "epoch": 18.0, + "grad_norm": 0.27312418818473816, + "learning_rate": 0.0006, + "loss": 3.99906587600708, + "step": 1296 + }, + { + "epoch": 18.0, + "eval_loss": 4.224447250366211, + "eval_runtime": 52.5728, + "eval_samples_per_second": 46.45, + "eval_steps_per_second": 2.91, + "step": 1296 + }, + { + "epoch": 18.01397990388816, + "grad_norm": 0.2567712664604187, + "learning_rate": 0.0006, + "loss": 3.9755055904388428, + "step": 1297 + }, + { + "epoch": 18.027959807776323, + "grad_norm": 0.25048133730888367, + "learning_rate": 0.0006, + "loss": 4.009254455566406, + "step": 1298 + }, + { + "epoch": 18.041939711664483, + "grad_norm": 0.2556909918785095, + "learning_rate": 0.0006, + "loss": 4.001235008239746, + "step": 1299 + }, + { + "epoch": 18.055919615552643, + "grad_norm": 0.2501400113105774, + "learning_rate": 0.0006, + "loss": 3.980726480484009, + "step": 1300 + }, + { + "epoch": 18.069899519440803, + "grad_norm": 0.23977792263031006, + "learning_rate": 0.0006, + "loss": 3.964195728302002, + "step": 1301 + }, + { + "epoch": 18.083879423328966, + "grad_norm": 0.25650718808174133, + "learning_rate": 0.0006, + "loss": 4.015914440155029, + "step": 1302 + }, + { + "epoch": 18.097859327217126, + "grad_norm": 0.234053835272789, + "learning_rate": 0.0006, + "loss": 4.0159149169921875, + "step": 1303 + }, + { + "epoch": 18.111839231105286, + "grad_norm": 0.21967713534832, + "learning_rate": 0.0006, + "loss": 4.0055694580078125, + "step": 1304 + }, + { + "epoch": 18.125819134993446, + "grad_norm": 0.21790878474712372, + "learning_rate": 0.0006, + "loss": 3.986253261566162, + "step": 1305 + }, + { + "epoch": 18.13979903888161, + "grad_norm": 0.22955302894115448, + "learning_rate": 0.0006, + "loss": 3.959421157836914, + "step": 1306 + }, + { + "epoch": 18.15377894276977, + "grad_norm": 0.2559174597263336, + "learning_rate": 0.0006, + "loss": 4.0069756507873535, + "step": 1307 + }, + { + "epoch": 18.16775884665793, + "grad_norm": 0.26132866740226746, + "learning_rate": 0.0006, + "loss": 3.9874095916748047, + "step": 1308 + }, + { + "epoch": 18.18173875054609, + "grad_norm": 0.23258940875530243, + "learning_rate": 0.0006, + "loss": 3.9762492179870605, + "step": 1309 + }, + { + "epoch": 18.195718654434252, + "grad_norm": 0.22347190976142883, + "learning_rate": 0.0006, + "loss": 3.9923410415649414, + "step": 1310 + }, + { + "epoch": 18.209698558322412, + "grad_norm": 0.23095804452896118, + "learning_rate": 0.0006, + "loss": 4.019245624542236, + "step": 1311 + }, + { + "epoch": 18.22367846221057, + "grad_norm": 0.24817052483558655, + "learning_rate": 0.0006, + "loss": 3.9697511196136475, + "step": 1312 + }, + { + "epoch": 18.23765836609873, + "grad_norm": 0.2566024959087372, + "learning_rate": 0.0006, + "loss": 3.978804111480713, + "step": 1313 + }, + { + "epoch": 18.251638269986895, + "grad_norm": 0.2527952790260315, + "learning_rate": 0.0006, + "loss": 3.972018241882324, + "step": 1314 + }, + { + "epoch": 18.265618173875055, + "grad_norm": 0.2508150637149811, + "learning_rate": 0.0006, + "loss": 3.9971275329589844, + "step": 1315 + }, + { + "epoch": 18.279598077763215, + "grad_norm": 0.23242022097110748, + "learning_rate": 0.0006, + "loss": 3.9712045192718506, + "step": 1316 + }, + { + "epoch": 18.293577981651374, + "grad_norm": 0.23474404215812683, + "learning_rate": 0.0006, + "loss": 3.9926767349243164, + "step": 1317 + }, + { + "epoch": 18.307557885539538, + "grad_norm": 0.2417769432067871, + "learning_rate": 0.0006, + "loss": 3.9920949935913086, + "step": 1318 + }, + { + "epoch": 18.321537789427698, + "grad_norm": 0.23839452862739563, + "learning_rate": 0.0006, + "loss": 4.016645431518555, + "step": 1319 + }, + { + "epoch": 18.335517693315857, + "grad_norm": 0.2512452304363251, + "learning_rate": 0.0006, + "loss": 3.97586727142334, + "step": 1320 + }, + { + "epoch": 18.34949759720402, + "grad_norm": 0.27503693103790283, + "learning_rate": 0.0006, + "loss": 4.000148773193359, + "step": 1321 + }, + { + "epoch": 18.36347750109218, + "grad_norm": 0.27830836176872253, + "learning_rate": 0.0006, + "loss": 3.9972195625305176, + "step": 1322 + }, + { + "epoch": 18.37745740498034, + "grad_norm": 0.2571812570095062, + "learning_rate": 0.0006, + "loss": 3.9900810718536377, + "step": 1323 + }, + { + "epoch": 18.3914373088685, + "grad_norm": 0.2310052365064621, + "learning_rate": 0.0006, + "loss": 4.003000259399414, + "step": 1324 + }, + { + "epoch": 18.405417212756664, + "grad_norm": 0.19615735113620758, + "learning_rate": 0.0006, + "loss": 3.9536571502685547, + "step": 1325 + }, + { + "epoch": 18.419397116644824, + "grad_norm": 0.21323896944522858, + "learning_rate": 0.0006, + "loss": 3.977508068084717, + "step": 1326 + }, + { + "epoch": 18.433377020532983, + "grad_norm": 0.21404202282428741, + "learning_rate": 0.0006, + "loss": 4.015361785888672, + "step": 1327 + }, + { + "epoch": 18.447356924421143, + "grad_norm": 0.1991959661245346, + "learning_rate": 0.0006, + "loss": 4.000286102294922, + "step": 1328 + }, + { + "epoch": 18.461336828309307, + "grad_norm": 0.2073599398136139, + "learning_rate": 0.0006, + "loss": 3.973065137863159, + "step": 1329 + }, + { + "epoch": 18.475316732197467, + "grad_norm": 0.2096073031425476, + "learning_rate": 0.0006, + "loss": 3.987032890319824, + "step": 1330 + }, + { + "epoch": 18.489296636085626, + "grad_norm": 0.2380610853433609, + "learning_rate": 0.0006, + "loss": 4.035274505615234, + "step": 1331 + }, + { + "epoch": 18.503276539973786, + "grad_norm": 0.23570716381072998, + "learning_rate": 0.0006, + "loss": 4.010516166687012, + "step": 1332 + }, + { + "epoch": 18.51725644386195, + "grad_norm": 0.24805466830730438, + "learning_rate": 0.0006, + "loss": 3.9750983715057373, + "step": 1333 + }, + { + "epoch": 18.53123634775011, + "grad_norm": 0.25173231959342957, + "learning_rate": 0.0006, + "loss": 3.9742345809936523, + "step": 1334 + }, + { + "epoch": 18.54521625163827, + "grad_norm": 0.24590367078781128, + "learning_rate": 0.0006, + "loss": 4.0037312507629395, + "step": 1335 + }, + { + "epoch": 18.55919615552643, + "grad_norm": 0.24379394948482513, + "learning_rate": 0.0006, + "loss": 3.993858814239502, + "step": 1336 + }, + { + "epoch": 18.573176059414592, + "grad_norm": 0.21708883345127106, + "learning_rate": 0.0006, + "loss": 3.965670585632324, + "step": 1337 + }, + { + "epoch": 18.587155963302752, + "grad_norm": 0.21024051308631897, + "learning_rate": 0.0006, + "loss": 3.987551689147949, + "step": 1338 + }, + { + "epoch": 18.601135867190912, + "grad_norm": 0.23376783728599548, + "learning_rate": 0.0006, + "loss": 4.002841472625732, + "step": 1339 + }, + { + "epoch": 18.615115771079076, + "grad_norm": 0.25350701808929443, + "learning_rate": 0.0006, + "loss": 3.9881370067596436, + "step": 1340 + }, + { + "epoch": 18.629095674967235, + "grad_norm": 0.2542140483856201, + "learning_rate": 0.0006, + "loss": 4.003695964813232, + "step": 1341 + }, + { + "epoch": 18.643075578855395, + "grad_norm": 0.22932685911655426, + "learning_rate": 0.0006, + "loss": 4.0146002769470215, + "step": 1342 + }, + { + "epoch": 18.657055482743555, + "grad_norm": 0.21099458634853363, + "learning_rate": 0.0006, + "loss": 3.970472812652588, + "step": 1343 + }, + { + "epoch": 18.67103538663172, + "grad_norm": 0.2234615832567215, + "learning_rate": 0.0006, + "loss": 3.9821488857269287, + "step": 1344 + }, + { + "epoch": 18.68501529051988, + "grad_norm": 0.230327770113945, + "learning_rate": 0.0006, + "loss": 3.996274948120117, + "step": 1345 + }, + { + "epoch": 18.698995194408038, + "grad_norm": 0.23596233129501343, + "learning_rate": 0.0006, + "loss": 3.9747462272644043, + "step": 1346 + }, + { + "epoch": 18.712975098296198, + "grad_norm": 0.24173159897327423, + "learning_rate": 0.0006, + "loss": 4.011804103851318, + "step": 1347 + }, + { + "epoch": 18.72695500218436, + "grad_norm": 0.24087604880332947, + "learning_rate": 0.0006, + "loss": 4.008726119995117, + "step": 1348 + }, + { + "epoch": 18.74093490607252, + "grad_norm": 0.2457292526960373, + "learning_rate": 0.0006, + "loss": 3.990793228149414, + "step": 1349 + }, + { + "epoch": 18.75491480996068, + "grad_norm": 0.22946089506149292, + "learning_rate": 0.0006, + "loss": 3.980494260787964, + "step": 1350 + }, + { + "epoch": 18.76889471384884, + "grad_norm": 0.22986692190170288, + "learning_rate": 0.0006, + "loss": 3.97006893157959, + "step": 1351 + }, + { + "epoch": 18.782874617737004, + "grad_norm": 0.23358555138111115, + "learning_rate": 0.0006, + "loss": 4.008172035217285, + "step": 1352 + }, + { + "epoch": 18.796854521625164, + "grad_norm": 0.20183615386486053, + "learning_rate": 0.0006, + "loss": 3.9720888137817383, + "step": 1353 + }, + { + "epoch": 18.810834425513324, + "grad_norm": 0.19975653290748596, + "learning_rate": 0.0006, + "loss": 3.9783310890197754, + "step": 1354 + }, + { + "epoch": 18.824814329401484, + "grad_norm": 0.18911021947860718, + "learning_rate": 0.0006, + "loss": 3.985982894897461, + "step": 1355 + }, + { + "epoch": 18.838794233289647, + "grad_norm": 0.15984168648719788, + "learning_rate": 0.0006, + "loss": 3.9740548133850098, + "step": 1356 + }, + { + "epoch": 18.852774137177807, + "grad_norm": 0.1755436211824417, + "learning_rate": 0.0006, + "loss": 4.013090133666992, + "step": 1357 + }, + { + "epoch": 18.866754041065967, + "grad_norm": 0.1798417866230011, + "learning_rate": 0.0006, + "loss": 3.997880697250366, + "step": 1358 + }, + { + "epoch": 18.88073394495413, + "grad_norm": 0.20206265151500702, + "learning_rate": 0.0006, + "loss": 3.9892373085021973, + "step": 1359 + }, + { + "epoch": 18.89471384884229, + "grad_norm": 0.23685456812381744, + "learning_rate": 0.0006, + "loss": 3.9909186363220215, + "step": 1360 + }, + { + "epoch": 18.90869375273045, + "grad_norm": 0.26053836941719055, + "learning_rate": 0.0006, + "loss": 4.00327205657959, + "step": 1361 + }, + { + "epoch": 18.92267365661861, + "grad_norm": 0.26215845346450806, + "learning_rate": 0.0006, + "loss": 3.9714717864990234, + "step": 1362 + }, + { + "epoch": 18.936653560506773, + "grad_norm": 0.2433871030807495, + "learning_rate": 0.0006, + "loss": 3.949416160583496, + "step": 1363 + }, + { + "epoch": 18.950633464394933, + "grad_norm": 0.23331883549690247, + "learning_rate": 0.0006, + "loss": 3.980501413345337, + "step": 1364 + }, + { + "epoch": 18.964613368283093, + "grad_norm": 0.2346954047679901, + "learning_rate": 0.0006, + "loss": 3.9974493980407715, + "step": 1365 + }, + { + "epoch": 18.978593272171253, + "grad_norm": 0.25101345777511597, + "learning_rate": 0.0006, + "loss": 3.9800148010253906, + "step": 1366 + }, + { + "epoch": 18.992573176059416, + "grad_norm": 0.26811933517456055, + "learning_rate": 0.0006, + "loss": 4.0065741539001465, + "step": 1367 + }, + { + "epoch": 19.0, + "grad_norm": 0.2731736898422241, + "learning_rate": 0.0006, + "loss": 4.014575481414795, + "step": 1368 + }, + { + "epoch": 19.0, + "eval_loss": 4.200716972351074, + "eval_runtime": 44.6962, + "eval_samples_per_second": 54.636, + "eval_steps_per_second": 3.423, + "step": 1368 + }, + { + "epoch": 19.01397990388816, + "grad_norm": 0.2517746686935425, + "learning_rate": 0.0006, + "loss": 3.9486539363861084, + "step": 1369 + }, + { + "epoch": 19.027959807776323, + "grad_norm": 0.2482699453830719, + "learning_rate": 0.0006, + "loss": 3.95015287399292, + "step": 1370 + }, + { + "epoch": 19.041939711664483, + "grad_norm": 0.21693618595600128, + "learning_rate": 0.0006, + "loss": 3.970022201538086, + "step": 1371 + }, + { + "epoch": 19.055919615552643, + "grad_norm": 0.2035159319639206, + "learning_rate": 0.0006, + "loss": 3.941457748413086, + "step": 1372 + }, + { + "epoch": 19.069899519440803, + "grad_norm": 0.2201429009437561, + "learning_rate": 0.0006, + "loss": 3.946794033050537, + "step": 1373 + }, + { + "epoch": 19.083879423328966, + "grad_norm": 0.22910255193710327, + "learning_rate": 0.0006, + "loss": 3.94606876373291, + "step": 1374 + }, + { + "epoch": 19.097859327217126, + "grad_norm": 0.22378197312355042, + "learning_rate": 0.0006, + "loss": 3.957899570465088, + "step": 1375 + }, + { + "epoch": 19.111839231105286, + "grad_norm": 0.21728114783763885, + "learning_rate": 0.0006, + "loss": 3.9565982818603516, + "step": 1376 + }, + { + "epoch": 19.125819134993446, + "grad_norm": 0.21887634694576263, + "learning_rate": 0.0006, + "loss": 3.9649534225463867, + "step": 1377 + }, + { + "epoch": 19.13979903888161, + "grad_norm": 0.21892991662025452, + "learning_rate": 0.0006, + "loss": 3.971388101577759, + "step": 1378 + }, + { + "epoch": 19.15377894276977, + "grad_norm": 0.24582402408123016, + "learning_rate": 0.0006, + "loss": 3.9370944499969482, + "step": 1379 + }, + { + "epoch": 19.16775884665793, + "grad_norm": 0.27547118067741394, + "learning_rate": 0.0006, + "loss": 3.939406156539917, + "step": 1380 + }, + { + "epoch": 19.18173875054609, + "grad_norm": 0.3131563365459442, + "learning_rate": 0.0006, + "loss": 3.942620277404785, + "step": 1381 + }, + { + "epoch": 19.195718654434252, + "grad_norm": 0.3211703598499298, + "learning_rate": 0.0006, + "loss": 3.9388349056243896, + "step": 1382 + }, + { + "epoch": 19.209698558322412, + "grad_norm": 0.2791919410228729, + "learning_rate": 0.0006, + "loss": 3.9827399253845215, + "step": 1383 + }, + { + "epoch": 19.22367846221057, + "grad_norm": 0.2872016727924347, + "learning_rate": 0.0006, + "loss": 3.976715087890625, + "step": 1384 + }, + { + "epoch": 19.23765836609873, + "grad_norm": 0.2790389060974121, + "learning_rate": 0.0006, + "loss": 3.952850818634033, + "step": 1385 + }, + { + "epoch": 19.251638269986895, + "grad_norm": 0.31903740763664246, + "learning_rate": 0.0006, + "loss": 3.964506149291992, + "step": 1386 + }, + { + "epoch": 19.265618173875055, + "grad_norm": 0.31013646721839905, + "learning_rate": 0.0006, + "loss": 3.967219352722168, + "step": 1387 + }, + { + "epoch": 19.279598077763215, + "grad_norm": 0.2574339509010315, + "learning_rate": 0.0006, + "loss": 3.979168176651001, + "step": 1388 + }, + { + "epoch": 19.293577981651374, + "grad_norm": 0.24621108174324036, + "learning_rate": 0.0006, + "loss": 3.981734275817871, + "step": 1389 + }, + { + "epoch": 19.307557885539538, + "grad_norm": 0.25113818049430847, + "learning_rate": 0.0006, + "loss": 3.9787755012512207, + "step": 1390 + }, + { + "epoch": 19.321537789427698, + "grad_norm": 0.259971022605896, + "learning_rate": 0.0006, + "loss": 3.9648823738098145, + "step": 1391 + }, + { + "epoch": 19.335517693315857, + "grad_norm": 0.22580404579639435, + "learning_rate": 0.0006, + "loss": 3.9658002853393555, + "step": 1392 + }, + { + "epoch": 19.34949759720402, + "grad_norm": 0.2133680284023285, + "learning_rate": 0.0006, + "loss": 3.9615914821624756, + "step": 1393 + }, + { + "epoch": 19.36347750109218, + "grad_norm": 0.2387680858373642, + "learning_rate": 0.0006, + "loss": 3.993811845779419, + "step": 1394 + }, + { + "epoch": 19.37745740498034, + "grad_norm": 0.26086220145225525, + "learning_rate": 0.0006, + "loss": 3.932701826095581, + "step": 1395 + }, + { + "epoch": 19.3914373088685, + "grad_norm": 0.23255233466625214, + "learning_rate": 0.0006, + "loss": 3.8969321250915527, + "step": 1396 + }, + { + "epoch": 19.405417212756664, + "grad_norm": 0.22894541919231415, + "learning_rate": 0.0006, + "loss": 3.9569311141967773, + "step": 1397 + }, + { + "epoch": 19.419397116644824, + "grad_norm": 0.2254200130701065, + "learning_rate": 0.0006, + "loss": 3.953199863433838, + "step": 1398 + }, + { + "epoch": 19.433377020532983, + "grad_norm": 0.25802481174468994, + "learning_rate": 0.0006, + "loss": 3.9714815616607666, + "step": 1399 + }, + { + "epoch": 19.447356924421143, + "grad_norm": 0.24725162982940674, + "learning_rate": 0.0006, + "loss": 3.957339286804199, + "step": 1400 + }, + { + "epoch": 19.461336828309307, + "grad_norm": 0.2162018120288849, + "learning_rate": 0.0006, + "loss": 3.986801862716675, + "step": 1401 + }, + { + "epoch": 19.475316732197467, + "grad_norm": 0.21530906856060028, + "learning_rate": 0.0006, + "loss": 3.9766759872436523, + "step": 1402 + }, + { + "epoch": 19.489296636085626, + "grad_norm": 0.20260323584079742, + "learning_rate": 0.0006, + "loss": 3.9576425552368164, + "step": 1403 + }, + { + "epoch": 19.503276539973786, + "grad_norm": 0.188974529504776, + "learning_rate": 0.0006, + "loss": 3.9852395057678223, + "step": 1404 + }, + { + "epoch": 19.51725644386195, + "grad_norm": 0.19727374613285065, + "learning_rate": 0.0006, + "loss": 3.972484588623047, + "step": 1405 + }, + { + "epoch": 19.53123634775011, + "grad_norm": 0.23708008229732513, + "learning_rate": 0.0006, + "loss": 3.992471694946289, + "step": 1406 + }, + { + "epoch": 19.54521625163827, + "grad_norm": 0.23783449828624725, + "learning_rate": 0.0006, + "loss": 3.9788265228271484, + "step": 1407 + }, + { + "epoch": 19.55919615552643, + "grad_norm": 0.24744364619255066, + "learning_rate": 0.0006, + "loss": 3.9559011459350586, + "step": 1408 + }, + { + "epoch": 19.573176059414592, + "grad_norm": 0.24828094244003296, + "learning_rate": 0.0006, + "loss": 3.9663949012756348, + "step": 1409 + }, + { + "epoch": 19.587155963302752, + "grad_norm": 0.2681315541267395, + "learning_rate": 0.0006, + "loss": 3.9581191539764404, + "step": 1410 + }, + { + "epoch": 19.601135867190912, + "grad_norm": 0.2691532373428345, + "learning_rate": 0.0006, + "loss": 3.9832754135131836, + "step": 1411 + }, + { + "epoch": 19.615115771079076, + "grad_norm": 0.2900252640247345, + "learning_rate": 0.0006, + "loss": 3.984365940093994, + "step": 1412 + }, + { + "epoch": 19.629095674967235, + "grad_norm": 0.3194943070411682, + "learning_rate": 0.0006, + "loss": 3.9856505393981934, + "step": 1413 + }, + { + "epoch": 19.643075578855395, + "grad_norm": 0.3029029071331024, + "learning_rate": 0.0006, + "loss": 3.968992233276367, + "step": 1414 + }, + { + "epoch": 19.657055482743555, + "grad_norm": 0.2658176124095917, + "learning_rate": 0.0006, + "loss": 3.995187282562256, + "step": 1415 + }, + { + "epoch": 19.67103538663172, + "grad_norm": 0.26807504892349243, + "learning_rate": 0.0006, + "loss": 3.9756274223327637, + "step": 1416 + }, + { + "epoch": 19.68501529051988, + "grad_norm": 0.27718642354011536, + "learning_rate": 0.0006, + "loss": 3.9510018825531006, + "step": 1417 + }, + { + "epoch": 19.698995194408038, + "grad_norm": 0.26322051882743835, + "learning_rate": 0.0006, + "loss": 3.965155601501465, + "step": 1418 + }, + { + "epoch": 19.712975098296198, + "grad_norm": 0.2566570043563843, + "learning_rate": 0.0006, + "loss": 3.984218120574951, + "step": 1419 + }, + { + "epoch": 19.72695500218436, + "grad_norm": 0.2218743860721588, + "learning_rate": 0.0006, + "loss": 3.9338784217834473, + "step": 1420 + }, + { + "epoch": 19.74093490607252, + "grad_norm": 0.22894173860549927, + "learning_rate": 0.0006, + "loss": 3.9869046211242676, + "step": 1421 + }, + { + "epoch": 19.75491480996068, + "grad_norm": 0.26837027072906494, + "learning_rate": 0.0006, + "loss": 3.96799898147583, + "step": 1422 + }, + { + "epoch": 19.76889471384884, + "grad_norm": 0.2767876982688904, + "learning_rate": 0.0006, + "loss": 3.9431071281433105, + "step": 1423 + }, + { + "epoch": 19.782874617737004, + "grad_norm": 0.24402284622192383, + "learning_rate": 0.0006, + "loss": 3.9631881713867188, + "step": 1424 + }, + { + "epoch": 19.796854521625164, + "grad_norm": 0.23500724136829376, + "learning_rate": 0.0006, + "loss": 3.9943337440490723, + "step": 1425 + }, + { + "epoch": 19.810834425513324, + "grad_norm": 0.22509142756462097, + "learning_rate": 0.0006, + "loss": 3.961226224899292, + "step": 1426 + }, + { + "epoch": 19.824814329401484, + "grad_norm": 0.23524795472621918, + "learning_rate": 0.0006, + "loss": 3.9552102088928223, + "step": 1427 + }, + { + "epoch": 19.838794233289647, + "grad_norm": 0.22307050228118896, + "learning_rate": 0.0006, + "loss": 3.9623494148254395, + "step": 1428 + }, + { + "epoch": 19.852774137177807, + "grad_norm": 0.21144486963748932, + "learning_rate": 0.0006, + "loss": 3.9620237350463867, + "step": 1429 + }, + { + "epoch": 19.866754041065967, + "grad_norm": 0.20249812304973602, + "learning_rate": 0.0006, + "loss": 3.953911066055298, + "step": 1430 + }, + { + "epoch": 19.88073394495413, + "grad_norm": 0.2350354939699173, + "learning_rate": 0.0006, + "loss": 3.9616730213165283, + "step": 1431 + }, + { + "epoch": 19.89471384884229, + "grad_norm": 0.2566683292388916, + "learning_rate": 0.0006, + "loss": 3.9372501373291016, + "step": 1432 + }, + { + "epoch": 19.90869375273045, + "grad_norm": 0.2520846128463745, + "learning_rate": 0.0006, + "loss": 3.9814648628234863, + "step": 1433 + }, + { + "epoch": 19.92267365661861, + "grad_norm": 0.23989640176296234, + "learning_rate": 0.0006, + "loss": 3.9692864418029785, + "step": 1434 + }, + { + "epoch": 19.936653560506773, + "grad_norm": 0.20650425553321838, + "learning_rate": 0.0006, + "loss": 3.960256814956665, + "step": 1435 + }, + { + "epoch": 19.950633464394933, + "grad_norm": 0.20478376746177673, + "learning_rate": 0.0006, + "loss": 3.9585227966308594, + "step": 1436 + }, + { + "epoch": 19.964613368283093, + "grad_norm": 0.234436497092247, + "learning_rate": 0.0006, + "loss": 3.945631742477417, + "step": 1437 + }, + { + "epoch": 19.978593272171253, + "grad_norm": 0.19969749450683594, + "learning_rate": 0.0006, + "loss": 3.9646050930023193, + "step": 1438 + }, + { + "epoch": 19.992573176059416, + "grad_norm": 0.20638690888881683, + "learning_rate": 0.0006, + "loss": 3.9461846351623535, + "step": 1439 + }, + { + "epoch": 20.0, + "grad_norm": 0.2120274156332016, + "learning_rate": 0.0006, + "loss": 3.965153217315674, + "step": 1440 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 6.136545837632717e+17, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1440/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1728/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1728/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1728/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1728/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f6a95732274bdcb60ebe56e1005f6736a233f114 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ba1a705eb84c1134e89be1956a9e9c72185f0b2ec1d92d60e1291b505de029c +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1728/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..d9d867b28a8cf9a66da26a104e718dd418f3cd24 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cab1e82fae61862e205ff8ad70de6131637cdfb80f883eb77c7e68118820d01d +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1728/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..f48bc5d63456a65045b4c96cbb8bfe8130565a7a --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc03a0f89ba480ef3e0cbd78c2cc20c03cc572f3c197ddc3a53ec02f1efa3c54 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1728/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..0e2c559add41d8ff582dc2c72f9dcbdfeeccfa22 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85389c904bb70623ac38d271e5b75510f6721cf5d170dabaaae0f767c83fcab7 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1728/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..baba916c0cec91178026a4cf9d1f610779561fa9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6a6171dda32af3a9caef592bd2cfcdef1224bfed4ddda14026d355f2f43e8f1 +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1728/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1728/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1728/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..2de474ea24937da4be419c27bad96e88958634a4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/trainer_state.json @@ -0,0 +1,12314 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 24.0, + "eval_steps": 500, + "global_step": 1728, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + }, + { + "epoch": 8.0, + "eval_loss": 5.100707530975342, + "eval_runtime": 44.2493, + "eval_samples_per_second": 55.187, + "eval_steps_per_second": 3.458, + "step": 576 + }, + { + "epoch": 8.013979903888162, + "grad_norm": 0.3658510148525238, + "learning_rate": 0.0006, + "loss": 4.759055137634277, + "step": 577 + }, + { + "epoch": 8.027959807776321, + "grad_norm": 0.41794446110725403, + "learning_rate": 0.0006, + "loss": 4.737661838531494, + "step": 578 + }, + { + "epoch": 8.041939711664483, + "grad_norm": 0.43284085392951965, + "learning_rate": 0.0006, + "loss": 4.775538444519043, + "step": 579 + }, + { + "epoch": 8.055919615552643, + "grad_norm": 0.4716675281524658, + "learning_rate": 0.0006, + "loss": 4.762231826782227, + "step": 580 + }, + { + "epoch": 8.069899519440805, + "grad_norm": 0.3849579393863678, + "learning_rate": 0.0006, + "loss": 4.753598690032959, + "step": 581 + }, + { + "epoch": 8.083879423328964, + "grad_norm": 0.3721151053905487, + "learning_rate": 0.0006, + "loss": 4.728978157043457, + "step": 582 + }, + { + "epoch": 8.097859327217126, + "grad_norm": 0.37009572982788086, + "learning_rate": 0.0006, + "loss": 4.759153366088867, + "step": 583 + }, + { + "epoch": 8.111839231105286, + "grad_norm": 0.37051302194595337, + "learning_rate": 0.0006, + "loss": 4.744197368621826, + "step": 584 + }, + { + "epoch": 8.125819134993447, + "grad_norm": 0.331238329410553, + "learning_rate": 0.0006, + "loss": 4.7338385581970215, + "step": 585 + }, + { + "epoch": 8.139799038881607, + "grad_norm": 0.3737713694572449, + "learning_rate": 0.0006, + "loss": 4.719110488891602, + "step": 586 + }, + { + "epoch": 8.153778942769769, + "grad_norm": 0.3713214695453644, + "learning_rate": 0.0006, + "loss": 4.734012126922607, + "step": 587 + }, + { + "epoch": 8.167758846657929, + "grad_norm": 0.4060780107975006, + "learning_rate": 0.0006, + "loss": 4.746830940246582, + "step": 588 + }, + { + "epoch": 8.18173875054609, + "grad_norm": 0.39814314246177673, + "learning_rate": 0.0006, + "loss": 4.722851753234863, + "step": 589 + }, + { + "epoch": 8.19571865443425, + "grad_norm": 0.3175652325153351, + "learning_rate": 0.0006, + "loss": 4.745110034942627, + "step": 590 + }, + { + "epoch": 8.209698558322412, + "grad_norm": 0.37214916944503784, + "learning_rate": 0.0006, + "loss": 4.7362775802612305, + "step": 591 + }, + { + "epoch": 8.223678462210572, + "grad_norm": 0.3873472809791565, + "learning_rate": 0.0006, + "loss": 4.738964557647705, + "step": 592 + }, + { + "epoch": 8.237658366098733, + "grad_norm": 0.3299207091331482, + "learning_rate": 0.0006, + "loss": 4.713451385498047, + "step": 593 + }, + { + "epoch": 8.251638269986893, + "grad_norm": 0.32445064187049866, + "learning_rate": 0.0006, + "loss": 4.725602149963379, + "step": 594 + }, + { + "epoch": 8.265618173875055, + "grad_norm": 0.32903164625167847, + "learning_rate": 0.0006, + "loss": 4.732064247131348, + "step": 595 + }, + { + "epoch": 8.279598077763215, + "grad_norm": 0.3166804313659668, + "learning_rate": 0.0006, + "loss": 4.678950786590576, + "step": 596 + }, + { + "epoch": 8.293577981651376, + "grad_norm": 0.2750290334224701, + "learning_rate": 0.0006, + "loss": 4.719513416290283, + "step": 597 + }, + { + "epoch": 8.307557885539538, + "grad_norm": 0.291029691696167, + "learning_rate": 0.0006, + "loss": 4.715405464172363, + "step": 598 + }, + { + "epoch": 8.321537789427698, + "grad_norm": 0.34105145931243896, + "learning_rate": 0.0006, + "loss": 4.722611427307129, + "step": 599 + }, + { + "epoch": 8.33551769331586, + "grad_norm": 0.3078882694244385, + "learning_rate": 0.0006, + "loss": 4.668856620788574, + "step": 600 + }, + { + "epoch": 8.349497597204019, + "grad_norm": 0.3218833804130554, + "learning_rate": 0.0006, + "loss": 4.719579696655273, + "step": 601 + }, + { + "epoch": 8.36347750109218, + "grad_norm": 0.35716721415519714, + "learning_rate": 0.0006, + "loss": 4.690774440765381, + "step": 602 + }, + { + "epoch": 8.37745740498034, + "grad_norm": 0.3045452833175659, + "learning_rate": 0.0006, + "loss": 4.696503639221191, + "step": 603 + }, + { + "epoch": 8.391437308868502, + "grad_norm": 0.3127244710922241, + "learning_rate": 0.0006, + "loss": 4.701899528503418, + "step": 604 + }, + { + "epoch": 8.405417212756662, + "grad_norm": 0.34988710284233093, + "learning_rate": 0.0006, + "loss": 4.677641868591309, + "step": 605 + }, + { + "epoch": 8.419397116644824, + "grad_norm": 0.34035569429397583, + "learning_rate": 0.0006, + "loss": 4.707778453826904, + "step": 606 + }, + { + "epoch": 8.433377020532983, + "grad_norm": 0.3341112732887268, + "learning_rate": 0.0006, + "loss": 4.724853038787842, + "step": 607 + }, + { + "epoch": 8.447356924421145, + "grad_norm": 0.41744324564933777, + "learning_rate": 0.0006, + "loss": 4.680908203125, + "step": 608 + }, + { + "epoch": 8.461336828309305, + "grad_norm": 0.40402331948280334, + "learning_rate": 0.0006, + "loss": 4.726455211639404, + "step": 609 + }, + { + "epoch": 8.475316732197467, + "grad_norm": 0.4727570414543152, + "learning_rate": 0.0006, + "loss": 4.6793084144592285, + "step": 610 + }, + { + "epoch": 8.489296636085626, + "grad_norm": 0.43002694845199585, + "learning_rate": 0.0006, + "loss": 4.663918972015381, + "step": 611 + }, + { + "epoch": 8.503276539973788, + "grad_norm": 0.36124858260154724, + "learning_rate": 0.0006, + "loss": 4.657375335693359, + "step": 612 + }, + { + "epoch": 8.517256443861948, + "grad_norm": 0.37644803524017334, + "learning_rate": 0.0006, + "loss": 4.676977157592773, + "step": 613 + }, + { + "epoch": 8.53123634775011, + "grad_norm": 0.32347747683525085, + "learning_rate": 0.0006, + "loss": 4.708547115325928, + "step": 614 + }, + { + "epoch": 8.54521625163827, + "grad_norm": 0.3071717619895935, + "learning_rate": 0.0006, + "loss": 4.650189399719238, + "step": 615 + }, + { + "epoch": 8.55919615552643, + "grad_norm": 0.30222490429878235, + "learning_rate": 0.0006, + "loss": 4.647942543029785, + "step": 616 + }, + { + "epoch": 8.57317605941459, + "grad_norm": 0.31545212864875793, + "learning_rate": 0.0006, + "loss": 4.660242080688477, + "step": 617 + }, + { + "epoch": 8.587155963302752, + "grad_norm": 0.31644752621650696, + "learning_rate": 0.0006, + "loss": 4.666710376739502, + "step": 618 + }, + { + "epoch": 8.601135867190912, + "grad_norm": 0.26057198643684387, + "learning_rate": 0.0006, + "loss": 4.668096542358398, + "step": 619 + }, + { + "epoch": 8.615115771079074, + "grad_norm": 0.25473910570144653, + "learning_rate": 0.0006, + "loss": 4.641562461853027, + "step": 620 + }, + { + "epoch": 8.629095674967235, + "grad_norm": 0.2456732839345932, + "learning_rate": 0.0006, + "loss": 4.6545281410217285, + "step": 621 + }, + { + "epoch": 8.643075578855395, + "grad_norm": 0.25180476903915405, + "learning_rate": 0.0006, + "loss": 4.6506524085998535, + "step": 622 + }, + { + "epoch": 8.657055482743557, + "grad_norm": 0.21761579811573029, + "learning_rate": 0.0006, + "loss": 4.638909339904785, + "step": 623 + }, + { + "epoch": 8.671035386631717, + "grad_norm": 0.23590542376041412, + "learning_rate": 0.0006, + "loss": 4.6572747230529785, + "step": 624 + }, + { + "epoch": 8.685015290519878, + "grad_norm": 0.23870624601840973, + "learning_rate": 0.0006, + "loss": 4.643742084503174, + "step": 625 + }, + { + "epoch": 8.698995194408038, + "grad_norm": 0.2191203385591507, + "learning_rate": 0.0006, + "loss": 4.632617950439453, + "step": 626 + }, + { + "epoch": 8.7129750982962, + "grad_norm": 0.22107063233852386, + "learning_rate": 0.0006, + "loss": 4.625616073608398, + "step": 627 + }, + { + "epoch": 8.72695500218436, + "grad_norm": 0.20833902060985565, + "learning_rate": 0.0006, + "loss": 4.609896659851074, + "step": 628 + }, + { + "epoch": 8.740934906072521, + "grad_norm": 0.254967600107193, + "learning_rate": 0.0006, + "loss": 4.651735782623291, + "step": 629 + }, + { + "epoch": 8.754914809960681, + "grad_norm": 0.31587523221969604, + "learning_rate": 0.0006, + "loss": 4.6404032707214355, + "step": 630 + }, + { + "epoch": 8.768894713848843, + "grad_norm": 0.28598251938819885, + "learning_rate": 0.0006, + "loss": 4.602679252624512, + "step": 631 + }, + { + "epoch": 8.782874617737003, + "grad_norm": 0.23216590285301208, + "learning_rate": 0.0006, + "loss": 4.610319137573242, + "step": 632 + }, + { + "epoch": 8.796854521625164, + "grad_norm": 0.29212239384651184, + "learning_rate": 0.0006, + "loss": 4.600744247436523, + "step": 633 + }, + { + "epoch": 8.810834425513324, + "grad_norm": 0.3375801146030426, + "learning_rate": 0.0006, + "loss": 4.627819061279297, + "step": 634 + }, + { + "epoch": 8.824814329401486, + "grad_norm": 0.4207753837108612, + "learning_rate": 0.0006, + "loss": 4.634505271911621, + "step": 635 + }, + { + "epoch": 8.838794233289645, + "grad_norm": 0.4640173614025116, + "learning_rate": 0.0006, + "loss": 4.636714935302734, + "step": 636 + }, + { + "epoch": 8.852774137177807, + "grad_norm": 0.5255663990974426, + "learning_rate": 0.0006, + "loss": 4.659462928771973, + "step": 637 + }, + { + "epoch": 8.866754041065967, + "grad_norm": 0.5108268857002258, + "learning_rate": 0.0006, + "loss": 4.633192539215088, + "step": 638 + }, + { + "epoch": 8.880733944954128, + "grad_norm": 0.3821936845779419, + "learning_rate": 0.0006, + "loss": 4.621200084686279, + "step": 639 + }, + { + "epoch": 8.89471384884229, + "grad_norm": 0.3918485939502716, + "learning_rate": 0.0006, + "loss": 4.632599830627441, + "step": 640 + }, + { + "epoch": 8.90869375273045, + "grad_norm": 0.3416556119918823, + "learning_rate": 0.0006, + "loss": 4.620438098907471, + "step": 641 + }, + { + "epoch": 8.922673656618612, + "grad_norm": 0.3191553056240082, + "learning_rate": 0.0006, + "loss": 4.617823600769043, + "step": 642 + }, + { + "epoch": 8.936653560506771, + "grad_norm": 0.3368529677391052, + "learning_rate": 0.0006, + "loss": 4.617222785949707, + "step": 643 + }, + { + "epoch": 8.950633464394933, + "grad_norm": 0.3255428969860077, + "learning_rate": 0.0006, + "loss": 4.633878707885742, + "step": 644 + }, + { + "epoch": 8.964613368283093, + "grad_norm": 0.31394779682159424, + "learning_rate": 0.0006, + "loss": 4.642603874206543, + "step": 645 + }, + { + "epoch": 8.978593272171254, + "grad_norm": 0.29999351501464844, + "learning_rate": 0.0006, + "loss": 4.5925211906433105, + "step": 646 + }, + { + "epoch": 8.992573176059414, + "grad_norm": 0.309154748916626, + "learning_rate": 0.0006, + "loss": 4.61745023727417, + "step": 647 + }, + { + "epoch": 9.0, + "grad_norm": 0.2660452425479889, + "learning_rate": 0.0006, + "loss": 4.575107097625732, + "step": 648 + }, + { + "epoch": 9.0, + "eval_loss": 4.8804192543029785, + "eval_runtime": 45.0015, + "eval_samples_per_second": 54.265, + "eval_steps_per_second": 3.4, + "step": 648 + }, + { + "epoch": 9.013979903888162, + "grad_norm": 0.24159297347068787, + "learning_rate": 0.0006, + "loss": 4.571323871612549, + "step": 649 + }, + { + "epoch": 9.027959807776321, + "grad_norm": 0.2835831046104431, + "learning_rate": 0.0006, + "loss": 4.614255905151367, + "step": 650 + }, + { + "epoch": 9.041939711664483, + "grad_norm": 0.2646859288215637, + "learning_rate": 0.0006, + "loss": 4.578947067260742, + "step": 651 + }, + { + "epoch": 9.055919615552643, + "grad_norm": 0.28868553042411804, + "learning_rate": 0.0006, + "loss": 4.575977325439453, + "step": 652 + }, + { + "epoch": 9.069899519440805, + "grad_norm": 0.2899586856365204, + "learning_rate": 0.0006, + "loss": 4.541798114776611, + "step": 653 + }, + { + "epoch": 9.083879423328964, + "grad_norm": 0.32786068320274353, + "learning_rate": 0.0006, + "loss": 4.575140953063965, + "step": 654 + }, + { + "epoch": 9.097859327217126, + "grad_norm": 0.35675594210624695, + "learning_rate": 0.0006, + "loss": 4.58184814453125, + "step": 655 + }, + { + "epoch": 9.111839231105286, + "grad_norm": 0.3380381166934967, + "learning_rate": 0.0006, + "loss": 4.546271324157715, + "step": 656 + }, + { + "epoch": 9.125819134993447, + "grad_norm": 0.3035511374473572, + "learning_rate": 0.0006, + "loss": 4.591629981994629, + "step": 657 + }, + { + "epoch": 9.139799038881607, + "grad_norm": 0.2733091711997986, + "learning_rate": 0.0006, + "loss": 4.559020042419434, + "step": 658 + }, + { + "epoch": 9.153778942769769, + "grad_norm": 0.2870676815509796, + "learning_rate": 0.0006, + "loss": 4.552787780761719, + "step": 659 + }, + { + "epoch": 9.167758846657929, + "grad_norm": 0.37471064925193787, + "learning_rate": 0.0006, + "loss": 4.572757244110107, + "step": 660 + }, + { + "epoch": 9.18173875054609, + "grad_norm": 0.37889063358306885, + "learning_rate": 0.0006, + "loss": 4.573302268981934, + "step": 661 + }, + { + "epoch": 9.19571865443425, + "grad_norm": 0.29983851313591003, + "learning_rate": 0.0006, + "loss": 4.571202754974365, + "step": 662 + }, + { + "epoch": 9.209698558322412, + "grad_norm": 0.27595147490501404, + "learning_rate": 0.0006, + "loss": 4.529508590698242, + "step": 663 + }, + { + "epoch": 9.223678462210572, + "grad_norm": 0.22693437337875366, + "learning_rate": 0.0006, + "loss": 4.572267532348633, + "step": 664 + }, + { + "epoch": 9.237658366098733, + "grad_norm": 0.27147138118743896, + "learning_rate": 0.0006, + "loss": 4.529747009277344, + "step": 665 + }, + { + "epoch": 9.251638269986893, + "grad_norm": 0.24952703714370728, + "learning_rate": 0.0006, + "loss": 4.553647994995117, + "step": 666 + }, + { + "epoch": 9.265618173875055, + "grad_norm": 0.3086707592010498, + "learning_rate": 0.0006, + "loss": 4.494636058807373, + "step": 667 + }, + { + "epoch": 9.279598077763215, + "grad_norm": 0.3265218138694763, + "learning_rate": 0.0006, + "loss": 4.522481918334961, + "step": 668 + }, + { + "epoch": 9.293577981651376, + "grad_norm": 0.2744608223438263, + "learning_rate": 0.0006, + "loss": 4.544595241546631, + "step": 669 + }, + { + "epoch": 9.307557885539538, + "grad_norm": 0.26698485016822815, + "learning_rate": 0.0006, + "loss": 4.506407260894775, + "step": 670 + }, + { + "epoch": 9.321537789427698, + "grad_norm": 0.2775942087173462, + "learning_rate": 0.0006, + "loss": 4.534619331359863, + "step": 671 + }, + { + "epoch": 9.33551769331586, + "grad_norm": 0.2421862781047821, + "learning_rate": 0.0006, + "loss": 4.523318290710449, + "step": 672 + }, + { + "epoch": 9.349497597204019, + "grad_norm": 0.2756497263908386, + "learning_rate": 0.0006, + "loss": 4.517561912536621, + "step": 673 + }, + { + "epoch": 9.36347750109218, + "grad_norm": 0.28845369815826416, + "learning_rate": 0.0006, + "loss": 4.530844688415527, + "step": 674 + }, + { + "epoch": 9.37745740498034, + "grad_norm": 0.32285866141319275, + "learning_rate": 0.0006, + "loss": 4.55369758605957, + "step": 675 + }, + { + "epoch": 9.391437308868502, + "grad_norm": 0.3726065754890442, + "learning_rate": 0.0006, + "loss": 4.524348258972168, + "step": 676 + }, + { + "epoch": 9.405417212756662, + "grad_norm": 0.39524078369140625, + "learning_rate": 0.0006, + "loss": 4.535778045654297, + "step": 677 + }, + { + "epoch": 9.419397116644824, + "grad_norm": 0.3859797716140747, + "learning_rate": 0.0006, + "loss": 4.538474082946777, + "step": 678 + }, + { + "epoch": 9.433377020532983, + "grad_norm": 0.36151406168937683, + "learning_rate": 0.0006, + "loss": 4.54434061050415, + "step": 679 + }, + { + "epoch": 9.447356924421145, + "grad_norm": 0.40345999598503113, + "learning_rate": 0.0006, + "loss": 4.532961845397949, + "step": 680 + }, + { + "epoch": 9.461336828309305, + "grad_norm": 0.38864144682884216, + "learning_rate": 0.0006, + "loss": 4.567630767822266, + "step": 681 + }, + { + "epoch": 9.475316732197467, + "grad_norm": 0.3816355764865875, + "learning_rate": 0.0006, + "loss": 4.535771369934082, + "step": 682 + }, + { + "epoch": 9.489296636085626, + "grad_norm": 0.38756558299064636, + "learning_rate": 0.0006, + "loss": 4.4971089363098145, + "step": 683 + }, + { + "epoch": 9.503276539973788, + "grad_norm": 0.4572933614253998, + "learning_rate": 0.0006, + "loss": 4.534860134124756, + "step": 684 + }, + { + "epoch": 9.517256443861948, + "grad_norm": 0.42368650436401367, + "learning_rate": 0.0006, + "loss": 4.542638301849365, + "step": 685 + }, + { + "epoch": 9.53123634775011, + "grad_norm": 0.36939486861228943, + "learning_rate": 0.0006, + "loss": 4.571430206298828, + "step": 686 + }, + { + "epoch": 9.54521625163827, + "grad_norm": 0.3900398313999176, + "learning_rate": 0.0006, + "loss": 4.544435501098633, + "step": 687 + }, + { + "epoch": 9.55919615552643, + "grad_norm": 0.37829288840293884, + "learning_rate": 0.0006, + "loss": 4.564268112182617, + "step": 688 + }, + { + "epoch": 9.57317605941459, + "grad_norm": 0.3553886115550995, + "learning_rate": 0.0006, + "loss": 4.5373430252075195, + "step": 689 + }, + { + "epoch": 9.587155963302752, + "grad_norm": 0.3613419532775879, + "learning_rate": 0.0006, + "loss": 4.559074401855469, + "step": 690 + }, + { + "epoch": 9.601135867190912, + "grad_norm": 0.32644546031951904, + "learning_rate": 0.0006, + "loss": 4.533667087554932, + "step": 691 + }, + { + "epoch": 9.615115771079074, + "grad_norm": 0.3264399468898773, + "learning_rate": 0.0006, + "loss": 4.508299350738525, + "step": 692 + }, + { + "epoch": 9.629095674967235, + "grad_norm": 0.3534526526927948, + "learning_rate": 0.0006, + "loss": 4.542442798614502, + "step": 693 + }, + { + "epoch": 9.643075578855395, + "grad_norm": 0.3333452343940735, + "learning_rate": 0.0006, + "loss": 4.497692584991455, + "step": 694 + }, + { + "epoch": 9.657055482743557, + "grad_norm": 0.3214292526245117, + "learning_rate": 0.0006, + "loss": 4.512363433837891, + "step": 695 + }, + { + "epoch": 9.671035386631717, + "grad_norm": 0.2805672585964203, + "learning_rate": 0.0006, + "loss": 4.496874809265137, + "step": 696 + }, + { + "epoch": 9.685015290519878, + "grad_norm": 0.2618725895881653, + "learning_rate": 0.0006, + "loss": 4.51375675201416, + "step": 697 + }, + { + "epoch": 9.698995194408038, + "grad_norm": 0.2556597888469696, + "learning_rate": 0.0006, + "loss": 4.512338638305664, + "step": 698 + }, + { + "epoch": 9.7129750982962, + "grad_norm": 0.23784305155277252, + "learning_rate": 0.0006, + "loss": 4.486503601074219, + "step": 699 + }, + { + "epoch": 9.72695500218436, + "grad_norm": 0.2240338921546936, + "learning_rate": 0.0006, + "loss": 4.486850261688232, + "step": 700 + }, + { + "epoch": 9.740934906072521, + "grad_norm": 0.24686725437641144, + "learning_rate": 0.0006, + "loss": 4.501359462738037, + "step": 701 + }, + { + "epoch": 9.754914809960681, + "grad_norm": 0.20819595456123352, + "learning_rate": 0.0006, + "loss": 4.495186805725098, + "step": 702 + }, + { + "epoch": 9.768894713848843, + "grad_norm": 0.21858957409858704, + "learning_rate": 0.0006, + "loss": 4.475093364715576, + "step": 703 + }, + { + "epoch": 9.782874617737003, + "grad_norm": 0.22676466405391693, + "learning_rate": 0.0006, + "loss": 4.4702534675598145, + "step": 704 + }, + { + "epoch": 9.796854521625164, + "grad_norm": 0.18317611515522003, + "learning_rate": 0.0006, + "loss": 4.471231937408447, + "step": 705 + }, + { + "epoch": 9.810834425513324, + "grad_norm": 0.20979148149490356, + "learning_rate": 0.0006, + "loss": 4.454103946685791, + "step": 706 + }, + { + "epoch": 9.824814329401486, + "grad_norm": 0.2146051526069641, + "learning_rate": 0.0006, + "loss": 4.505178928375244, + "step": 707 + }, + { + "epoch": 9.838794233289645, + "grad_norm": 0.2344852089881897, + "learning_rate": 0.0006, + "loss": 4.437984943389893, + "step": 708 + }, + { + "epoch": 9.852774137177807, + "grad_norm": 0.26532089710235596, + "learning_rate": 0.0006, + "loss": 4.477126121520996, + "step": 709 + }, + { + "epoch": 9.866754041065967, + "grad_norm": 0.2737913131713867, + "learning_rate": 0.0006, + "loss": 4.498421669006348, + "step": 710 + }, + { + "epoch": 9.880733944954128, + "grad_norm": 0.26651278138160706, + "learning_rate": 0.0006, + "loss": 4.480839729309082, + "step": 711 + }, + { + "epoch": 9.89471384884229, + "grad_norm": 0.26576584577560425, + "learning_rate": 0.0006, + "loss": 4.490936279296875, + "step": 712 + }, + { + "epoch": 9.90869375273045, + "grad_norm": 0.22483965754508972, + "learning_rate": 0.0006, + "loss": 4.477953910827637, + "step": 713 + }, + { + "epoch": 9.922673656618612, + "grad_norm": 0.23576045036315918, + "learning_rate": 0.0006, + "loss": 4.4731292724609375, + "step": 714 + }, + { + "epoch": 9.936653560506771, + "grad_norm": 0.2731139361858368, + "learning_rate": 0.0006, + "loss": 4.441622734069824, + "step": 715 + }, + { + "epoch": 9.950633464394933, + "grad_norm": 0.2677643597126007, + "learning_rate": 0.0006, + "loss": 4.49604606628418, + "step": 716 + }, + { + "epoch": 9.964613368283093, + "grad_norm": 0.21940895915031433, + "learning_rate": 0.0006, + "loss": 4.485573768615723, + "step": 717 + }, + { + "epoch": 9.978593272171254, + "grad_norm": 0.2060987651348114, + "learning_rate": 0.0006, + "loss": 4.482657432556152, + "step": 718 + }, + { + "epoch": 9.992573176059414, + "grad_norm": 0.22163978219032288, + "learning_rate": 0.0006, + "loss": 4.478459358215332, + "step": 719 + }, + { + "epoch": 10.0, + "grad_norm": 0.2505086064338684, + "learning_rate": 0.0006, + "loss": 4.4393510818481445, + "step": 720 + }, + { + "epoch": 10.0, + "eval_loss": 4.695676803588867, + "eval_runtime": 49.0751, + "eval_samples_per_second": 49.76, + "eval_steps_per_second": 3.118, + "step": 720 + }, + { + "epoch": 10.013979903888162, + "grad_norm": 0.23820190131664276, + "learning_rate": 0.0006, + "loss": 4.437685489654541, + "step": 721 + }, + { + "epoch": 10.027959807776321, + "grad_norm": 0.2220371812582016, + "learning_rate": 0.0006, + "loss": 4.449873924255371, + "step": 722 + }, + { + "epoch": 10.041939711664483, + "grad_norm": 0.20369848608970642, + "learning_rate": 0.0006, + "loss": 4.448882579803467, + "step": 723 + }, + { + "epoch": 10.055919615552643, + "grad_norm": 0.2360001504421234, + "learning_rate": 0.0006, + "loss": 4.399251937866211, + "step": 724 + }, + { + "epoch": 10.069899519440805, + "grad_norm": 0.23537491261959076, + "learning_rate": 0.0006, + "loss": 4.442960739135742, + "step": 725 + }, + { + "epoch": 10.083879423328964, + "grad_norm": 0.24433870613574982, + "learning_rate": 0.0006, + "loss": 4.44808292388916, + "step": 726 + }, + { + "epoch": 10.097859327217126, + "grad_norm": 0.3406696021556854, + "learning_rate": 0.0006, + "loss": 4.443426132202148, + "step": 727 + }, + { + "epoch": 10.111839231105286, + "grad_norm": 0.4102286100387573, + "learning_rate": 0.0006, + "loss": 4.424919605255127, + "step": 728 + }, + { + "epoch": 10.125819134993447, + "grad_norm": 0.36462604999542236, + "learning_rate": 0.0006, + "loss": 4.45366907119751, + "step": 729 + }, + { + "epoch": 10.139799038881607, + "grad_norm": 0.4374827444553375, + "learning_rate": 0.0006, + "loss": 4.415630340576172, + "step": 730 + }, + { + "epoch": 10.153778942769769, + "grad_norm": 0.45248138904571533, + "learning_rate": 0.0006, + "loss": 4.448849678039551, + "step": 731 + }, + { + "epoch": 10.167758846657929, + "grad_norm": 0.3806457221508026, + "learning_rate": 0.0006, + "loss": 4.443390846252441, + "step": 732 + }, + { + "epoch": 10.18173875054609, + "grad_norm": 0.3491523861885071, + "learning_rate": 0.0006, + "loss": 4.4648637771606445, + "step": 733 + }, + { + "epoch": 10.19571865443425, + "grad_norm": 0.3327210247516632, + "learning_rate": 0.0006, + "loss": 4.460919380187988, + "step": 734 + }, + { + "epoch": 10.209698558322412, + "grad_norm": 0.29772236943244934, + "learning_rate": 0.0006, + "loss": 4.45159912109375, + "step": 735 + }, + { + "epoch": 10.223678462210572, + "grad_norm": 0.33083397150039673, + "learning_rate": 0.0006, + "loss": 4.463382720947266, + "step": 736 + }, + { + "epoch": 10.237658366098733, + "grad_norm": 0.3930598795413971, + "learning_rate": 0.0006, + "loss": 4.434510231018066, + "step": 737 + }, + { + "epoch": 10.251638269986893, + "grad_norm": 0.4342896044254303, + "learning_rate": 0.0006, + "loss": 4.451700210571289, + "step": 738 + }, + { + "epoch": 10.265618173875055, + "grad_norm": 0.4544043242931366, + "learning_rate": 0.0006, + "loss": 4.437224388122559, + "step": 739 + }, + { + "epoch": 10.279598077763215, + "grad_norm": 0.4487038254737854, + "learning_rate": 0.0006, + "loss": 4.46157693862915, + "step": 740 + }, + { + "epoch": 10.293577981651376, + "grad_norm": 0.4420500695705414, + "learning_rate": 0.0006, + "loss": 4.399561405181885, + "step": 741 + }, + { + "epoch": 10.307557885539538, + "grad_norm": 0.4167289435863495, + "learning_rate": 0.0006, + "loss": 4.41792106628418, + "step": 742 + }, + { + "epoch": 10.321537789427698, + "grad_norm": 0.3186971843242645, + "learning_rate": 0.0006, + "loss": 4.435683250427246, + "step": 743 + }, + { + "epoch": 10.33551769331586, + "grad_norm": 0.3077184855937958, + "learning_rate": 0.0006, + "loss": 4.481947898864746, + "step": 744 + }, + { + "epoch": 10.349497597204019, + "grad_norm": 0.26811280846595764, + "learning_rate": 0.0006, + "loss": 4.4339447021484375, + "step": 745 + }, + { + "epoch": 10.36347750109218, + "grad_norm": 0.28448057174682617, + "learning_rate": 0.0006, + "loss": 4.441644668579102, + "step": 746 + }, + { + "epoch": 10.37745740498034, + "grad_norm": 0.30731502175331116, + "learning_rate": 0.0006, + "loss": 4.428773880004883, + "step": 747 + }, + { + "epoch": 10.391437308868502, + "grad_norm": 0.28036001324653625, + "learning_rate": 0.0006, + "loss": 4.4433135986328125, + "step": 748 + }, + { + "epoch": 10.405417212756662, + "grad_norm": 0.2882847189903259, + "learning_rate": 0.0006, + "loss": 4.433401107788086, + "step": 749 + }, + { + "epoch": 10.419397116644824, + "grad_norm": 0.23622776567935944, + "learning_rate": 0.0006, + "loss": 4.444611549377441, + "step": 750 + }, + { + "epoch": 10.433377020532983, + "grad_norm": 0.2306167632341385, + "learning_rate": 0.0006, + "loss": 4.397875785827637, + "step": 751 + }, + { + "epoch": 10.447356924421145, + "grad_norm": 0.22725090384483337, + "learning_rate": 0.0006, + "loss": 4.429759502410889, + "step": 752 + }, + { + "epoch": 10.461336828309305, + "grad_norm": 0.250709593296051, + "learning_rate": 0.0006, + "loss": 4.415618896484375, + "step": 753 + }, + { + "epoch": 10.475316732197467, + "grad_norm": 0.22341276705265045, + "learning_rate": 0.0006, + "loss": 4.389362335205078, + "step": 754 + }, + { + "epoch": 10.489296636085626, + "grad_norm": 0.22595296800136566, + "learning_rate": 0.0006, + "loss": 4.383584022521973, + "step": 755 + }, + { + "epoch": 10.503276539973788, + "grad_norm": 0.24277575314044952, + "learning_rate": 0.0006, + "loss": 4.403777599334717, + "step": 756 + }, + { + "epoch": 10.517256443861948, + "grad_norm": 0.2670708894729614, + "learning_rate": 0.0006, + "loss": 4.398499011993408, + "step": 757 + }, + { + "epoch": 10.53123634775011, + "grad_norm": 0.2640696167945862, + "learning_rate": 0.0006, + "loss": 4.426726818084717, + "step": 758 + }, + { + "epoch": 10.54521625163827, + "grad_norm": 0.2248653769493103, + "learning_rate": 0.0006, + "loss": 4.400103569030762, + "step": 759 + }, + { + "epoch": 10.55919615552643, + "grad_norm": 0.21466240286827087, + "learning_rate": 0.0006, + "loss": 4.404158592224121, + "step": 760 + }, + { + "epoch": 10.57317605941459, + "grad_norm": 0.236923947930336, + "learning_rate": 0.0006, + "loss": 4.37059211730957, + "step": 761 + }, + { + "epoch": 10.587155963302752, + "grad_norm": 0.2515387535095215, + "learning_rate": 0.0006, + "loss": 4.415055274963379, + "step": 762 + }, + { + "epoch": 10.601135867190912, + "grad_norm": 0.23461885750293732, + "learning_rate": 0.0006, + "loss": 4.375036239624023, + "step": 763 + }, + { + "epoch": 10.615115771079074, + "grad_norm": 0.20975761115550995, + "learning_rate": 0.0006, + "loss": 4.3903398513793945, + "step": 764 + }, + { + "epoch": 10.629095674967235, + "grad_norm": 0.19859997928142548, + "learning_rate": 0.0006, + "loss": 4.379380226135254, + "step": 765 + }, + { + "epoch": 10.643075578855395, + "grad_norm": 0.22310325503349304, + "learning_rate": 0.0006, + "loss": 4.382110595703125, + "step": 766 + }, + { + "epoch": 10.657055482743557, + "grad_norm": 0.23940646648406982, + "learning_rate": 0.0006, + "loss": 4.393403053283691, + "step": 767 + }, + { + "epoch": 10.671035386631717, + "grad_norm": 0.2230468988418579, + "learning_rate": 0.0006, + "loss": 4.391970634460449, + "step": 768 + }, + { + "epoch": 10.685015290519878, + "grad_norm": 0.18139775097370148, + "learning_rate": 0.0006, + "loss": 4.399993896484375, + "step": 769 + }, + { + "epoch": 10.698995194408038, + "grad_norm": 0.19936902821063995, + "learning_rate": 0.0006, + "loss": 4.373854160308838, + "step": 770 + }, + { + "epoch": 10.7129750982962, + "grad_norm": 0.22132465243339539, + "learning_rate": 0.0006, + "loss": 4.377530097961426, + "step": 771 + }, + { + "epoch": 10.72695500218436, + "grad_norm": 0.24254944920539856, + "learning_rate": 0.0006, + "loss": 4.398683547973633, + "step": 772 + }, + { + "epoch": 10.740934906072521, + "grad_norm": 0.2666397988796234, + "learning_rate": 0.0006, + "loss": 4.3879899978637695, + "step": 773 + }, + { + "epoch": 10.754914809960681, + "grad_norm": 0.24728631973266602, + "learning_rate": 0.0006, + "loss": 4.356976509094238, + "step": 774 + }, + { + "epoch": 10.768894713848843, + "grad_norm": 0.2612453103065491, + "learning_rate": 0.0006, + "loss": 4.391525745391846, + "step": 775 + }, + { + "epoch": 10.782874617737003, + "grad_norm": 0.24060510098934174, + "learning_rate": 0.0006, + "loss": 4.376985549926758, + "step": 776 + }, + { + "epoch": 10.796854521625164, + "grad_norm": 0.22708238661289215, + "learning_rate": 0.0006, + "loss": 4.368545055389404, + "step": 777 + }, + { + "epoch": 10.810834425513324, + "grad_norm": 0.26931291818618774, + "learning_rate": 0.0006, + "loss": 4.369227409362793, + "step": 778 + }, + { + "epoch": 10.824814329401486, + "grad_norm": 0.265288770198822, + "learning_rate": 0.0006, + "loss": 4.378131866455078, + "step": 779 + }, + { + "epoch": 10.838794233289645, + "grad_norm": 0.3015305697917938, + "learning_rate": 0.0006, + "loss": 4.376267910003662, + "step": 780 + }, + { + "epoch": 10.852774137177807, + "grad_norm": 0.3345746099948883, + "learning_rate": 0.0006, + "loss": 4.3751420974731445, + "step": 781 + }, + { + "epoch": 10.866754041065967, + "grad_norm": 0.32446005940437317, + "learning_rate": 0.0006, + "loss": 4.370899200439453, + "step": 782 + }, + { + "epoch": 10.880733944954128, + "grad_norm": 0.27070069313049316, + "learning_rate": 0.0006, + "loss": 4.391958236694336, + "step": 783 + }, + { + "epoch": 10.89471384884229, + "grad_norm": 0.25584667921066284, + "learning_rate": 0.0006, + "loss": 4.407493591308594, + "step": 784 + }, + { + "epoch": 10.90869375273045, + "grad_norm": 0.2710244655609131, + "learning_rate": 0.0006, + "loss": 4.374400615692139, + "step": 785 + }, + { + "epoch": 10.922673656618612, + "grad_norm": 0.32413622736930847, + "learning_rate": 0.0006, + "loss": 4.379607200622559, + "step": 786 + }, + { + "epoch": 10.936653560506771, + "grad_norm": 0.3253782391548157, + "learning_rate": 0.0006, + "loss": 4.376441955566406, + "step": 787 + }, + { + "epoch": 10.950633464394933, + "grad_norm": 0.30534613132476807, + "learning_rate": 0.0006, + "loss": 4.382739067077637, + "step": 788 + }, + { + "epoch": 10.964613368283093, + "grad_norm": 0.35726621747016907, + "learning_rate": 0.0006, + "loss": 4.3765869140625, + "step": 789 + }, + { + "epoch": 10.978593272171254, + "grad_norm": 0.32763028144836426, + "learning_rate": 0.0006, + "loss": 4.391537189483643, + "step": 790 + }, + { + "epoch": 10.992573176059414, + "grad_norm": 0.31811195611953735, + "learning_rate": 0.0006, + "loss": 4.371829032897949, + "step": 791 + }, + { + "epoch": 11.0, + "grad_norm": 0.37317267060279846, + "learning_rate": 0.0006, + "loss": 4.381916522979736, + "step": 792 + }, + { + "epoch": 11.0, + "eval_loss": 4.588687896728516, + "eval_runtime": 44.8041, + "eval_samples_per_second": 54.504, + "eval_steps_per_second": 3.415, + "step": 792 + }, + { + "epoch": 11.013979903888162, + "grad_norm": 0.37882938981056213, + "learning_rate": 0.0006, + "loss": 4.3463640213012695, + "step": 793 + }, + { + "epoch": 11.027959807776321, + "grad_norm": 0.34719496965408325, + "learning_rate": 0.0006, + "loss": 4.329861640930176, + "step": 794 + }, + { + "epoch": 11.041939711664483, + "grad_norm": 0.36161214113235474, + "learning_rate": 0.0006, + "loss": 4.3287835121154785, + "step": 795 + }, + { + "epoch": 11.055919615552643, + "grad_norm": 0.3743649125099182, + "learning_rate": 0.0006, + "loss": 4.334251403808594, + "step": 796 + }, + { + "epoch": 11.069899519440805, + "grad_norm": 0.32266443967819214, + "learning_rate": 0.0006, + "loss": 4.364782810211182, + "step": 797 + }, + { + "epoch": 11.083879423328964, + "grad_norm": 0.27460047602653503, + "learning_rate": 0.0006, + "loss": 4.348380088806152, + "step": 798 + }, + { + "epoch": 11.097859327217126, + "grad_norm": 0.30498892068862915, + "learning_rate": 0.0006, + "loss": 4.347856521606445, + "step": 799 + }, + { + "epoch": 11.111839231105286, + "grad_norm": 0.29740771651268005, + "learning_rate": 0.0006, + "loss": 4.343471050262451, + "step": 800 + }, + { + "epoch": 11.125819134993447, + "grad_norm": 0.3004681169986725, + "learning_rate": 0.0006, + "loss": 4.337590217590332, + "step": 801 + }, + { + "epoch": 11.139799038881607, + "grad_norm": 0.3000192642211914, + "learning_rate": 0.0006, + "loss": 4.349949836730957, + "step": 802 + }, + { + "epoch": 11.153778942769769, + "grad_norm": 0.27461889386177063, + "learning_rate": 0.0006, + "loss": 4.338934898376465, + "step": 803 + }, + { + "epoch": 11.167758846657929, + "grad_norm": 0.2856169641017914, + "learning_rate": 0.0006, + "loss": 4.320754051208496, + "step": 804 + }, + { + "epoch": 11.18173875054609, + "grad_norm": 0.29822713136672974, + "learning_rate": 0.0006, + "loss": 4.357949733734131, + "step": 805 + }, + { + "epoch": 11.19571865443425, + "grad_norm": 0.34061339497566223, + "learning_rate": 0.0006, + "loss": 4.327282905578613, + "step": 806 + }, + { + "epoch": 11.209698558322412, + "grad_norm": 0.3379063010215759, + "learning_rate": 0.0006, + "loss": 4.355471611022949, + "step": 807 + }, + { + "epoch": 11.223678462210572, + "grad_norm": 0.2859216630458832, + "learning_rate": 0.0006, + "loss": 4.352344989776611, + "step": 808 + }, + { + "epoch": 11.237658366098733, + "grad_norm": 0.29522669315338135, + "learning_rate": 0.0006, + "loss": 4.349186897277832, + "step": 809 + }, + { + "epoch": 11.251638269986893, + "grad_norm": 0.273798406124115, + "learning_rate": 0.0006, + "loss": 4.342379570007324, + "step": 810 + }, + { + "epoch": 11.265618173875055, + "grad_norm": 0.25298982858657837, + "learning_rate": 0.0006, + "loss": 4.358835220336914, + "step": 811 + }, + { + "epoch": 11.279598077763215, + "grad_norm": 0.2170463651418686, + "learning_rate": 0.0006, + "loss": 4.3422017097473145, + "step": 812 + }, + { + "epoch": 11.293577981651376, + "grad_norm": 0.24855731427669525, + "learning_rate": 0.0006, + "loss": 4.322849750518799, + "step": 813 + }, + { + "epoch": 11.307557885539538, + "grad_norm": 0.22564345598220825, + "learning_rate": 0.0006, + "loss": 4.316864967346191, + "step": 814 + }, + { + "epoch": 11.321537789427698, + "grad_norm": 0.21532197296619415, + "learning_rate": 0.0006, + "loss": 4.326743125915527, + "step": 815 + }, + { + "epoch": 11.33551769331586, + "grad_norm": 0.20514146983623505, + "learning_rate": 0.0006, + "loss": 4.326531887054443, + "step": 816 + }, + { + "epoch": 11.349497597204019, + "grad_norm": 0.19035090506076813, + "learning_rate": 0.0006, + "loss": 4.318154335021973, + "step": 817 + }, + { + "epoch": 11.36347750109218, + "grad_norm": 0.17889662086963654, + "learning_rate": 0.0006, + "loss": 4.35410213470459, + "step": 818 + }, + { + "epoch": 11.37745740498034, + "grad_norm": 0.20564863085746765, + "learning_rate": 0.0006, + "loss": 4.350226879119873, + "step": 819 + }, + { + "epoch": 11.391437308868502, + "grad_norm": 0.2412603348493576, + "learning_rate": 0.0006, + "loss": 4.325137138366699, + "step": 820 + }, + { + "epoch": 11.405417212756662, + "grad_norm": 0.2603496015071869, + "learning_rate": 0.0006, + "loss": 4.335752487182617, + "step": 821 + }, + { + "epoch": 11.419397116644824, + "grad_norm": 0.2968119978904724, + "learning_rate": 0.0006, + "loss": 4.3317670822143555, + "step": 822 + }, + { + "epoch": 11.433377020532983, + "grad_norm": 0.3280937969684601, + "learning_rate": 0.0006, + "loss": 4.322279453277588, + "step": 823 + }, + { + "epoch": 11.447356924421145, + "grad_norm": 0.3598847985267639, + "learning_rate": 0.0006, + "loss": 4.312255859375, + "step": 824 + }, + { + "epoch": 11.461336828309305, + "grad_norm": 0.3996485471725464, + "learning_rate": 0.0006, + "loss": 4.327103614807129, + "step": 825 + }, + { + "epoch": 11.475316732197467, + "grad_norm": 0.4352041780948639, + "learning_rate": 0.0006, + "loss": 4.368639945983887, + "step": 826 + }, + { + "epoch": 11.489296636085626, + "grad_norm": 0.4451918601989746, + "learning_rate": 0.0006, + "loss": 4.335113048553467, + "step": 827 + }, + { + "epoch": 11.503276539973788, + "grad_norm": 0.4403933584690094, + "learning_rate": 0.0006, + "loss": 4.369889259338379, + "step": 828 + }, + { + "epoch": 11.517256443861948, + "grad_norm": 0.34862443804740906, + "learning_rate": 0.0006, + "loss": 4.316292762756348, + "step": 829 + }, + { + "epoch": 11.53123634775011, + "grad_norm": 0.3240634500980377, + "learning_rate": 0.0006, + "loss": 4.328078746795654, + "step": 830 + }, + { + "epoch": 11.54521625163827, + "grad_norm": 0.2445751428604126, + "learning_rate": 0.0006, + "loss": 4.291940689086914, + "step": 831 + }, + { + "epoch": 11.55919615552643, + "grad_norm": 0.24376554787158966, + "learning_rate": 0.0006, + "loss": 4.339217662811279, + "step": 832 + }, + { + "epoch": 11.57317605941459, + "grad_norm": 0.22419725358486176, + "learning_rate": 0.0006, + "loss": 4.2887468338012695, + "step": 833 + }, + { + "epoch": 11.587155963302752, + "grad_norm": 0.22318261861801147, + "learning_rate": 0.0006, + "loss": 4.298492908477783, + "step": 834 + }, + { + "epoch": 11.601135867190912, + "grad_norm": 0.2357342392206192, + "learning_rate": 0.0006, + "loss": 4.328692436218262, + "step": 835 + }, + { + "epoch": 11.615115771079074, + "grad_norm": 0.25450602173805237, + "learning_rate": 0.0006, + "loss": 4.360058784484863, + "step": 836 + }, + { + "epoch": 11.629095674967235, + "grad_norm": 0.24540965259075165, + "learning_rate": 0.0006, + "loss": 4.311890602111816, + "step": 837 + }, + { + "epoch": 11.643075578855395, + "grad_norm": 0.2535638213157654, + "learning_rate": 0.0006, + "loss": 4.327730178833008, + "step": 838 + }, + { + "epoch": 11.657055482743557, + "grad_norm": 0.23063556849956512, + "learning_rate": 0.0006, + "loss": 4.303299903869629, + "step": 839 + }, + { + "epoch": 11.671035386631717, + "grad_norm": 0.21813632547855377, + "learning_rate": 0.0006, + "loss": 4.315352439880371, + "step": 840 + }, + { + "epoch": 11.685015290519878, + "grad_norm": 0.2170359194278717, + "learning_rate": 0.0006, + "loss": 4.278632164001465, + "step": 841 + }, + { + "epoch": 11.698995194408038, + "grad_norm": 0.21059377491474152, + "learning_rate": 0.0006, + "loss": 4.306049346923828, + "step": 842 + }, + { + "epoch": 11.7129750982962, + "grad_norm": 0.19872888922691345, + "learning_rate": 0.0006, + "loss": 4.3091535568237305, + "step": 843 + }, + { + "epoch": 11.72695500218436, + "grad_norm": 0.20059862732887268, + "learning_rate": 0.0006, + "loss": 4.2884063720703125, + "step": 844 + }, + { + "epoch": 11.740934906072521, + "grad_norm": 0.19952483475208282, + "learning_rate": 0.0006, + "loss": 4.293610572814941, + "step": 845 + }, + { + "epoch": 11.754914809960681, + "grad_norm": 0.19794537127017975, + "learning_rate": 0.0006, + "loss": 4.288822174072266, + "step": 846 + }, + { + "epoch": 11.768894713848843, + "grad_norm": 0.213914692401886, + "learning_rate": 0.0006, + "loss": 4.320849418640137, + "step": 847 + }, + { + "epoch": 11.782874617737003, + "grad_norm": 0.18500955402851105, + "learning_rate": 0.0006, + "loss": 4.29300594329834, + "step": 848 + }, + { + "epoch": 11.796854521625164, + "grad_norm": 0.19446656107902527, + "learning_rate": 0.0006, + "loss": 4.3079352378845215, + "step": 849 + }, + { + "epoch": 11.810834425513324, + "grad_norm": 0.22191768884658813, + "learning_rate": 0.0006, + "loss": 4.295967102050781, + "step": 850 + }, + { + "epoch": 11.824814329401486, + "grad_norm": 0.20748084783554077, + "learning_rate": 0.0006, + "loss": 4.332365989685059, + "step": 851 + }, + { + "epoch": 11.838794233289645, + "grad_norm": 0.20993955433368683, + "learning_rate": 0.0006, + "loss": 4.294618129730225, + "step": 852 + }, + { + "epoch": 11.852774137177807, + "grad_norm": 0.23506952822208405, + "learning_rate": 0.0006, + "loss": 4.313426971435547, + "step": 853 + }, + { + "epoch": 11.866754041065967, + "grad_norm": 0.2379443347454071, + "learning_rate": 0.0006, + "loss": 4.297664642333984, + "step": 854 + }, + { + "epoch": 11.880733944954128, + "grad_norm": 0.2127852737903595, + "learning_rate": 0.0006, + "loss": 4.2807698249816895, + "step": 855 + }, + { + "epoch": 11.89471384884229, + "grad_norm": 0.2125532180070877, + "learning_rate": 0.0006, + "loss": 4.310990333557129, + "step": 856 + }, + { + "epoch": 11.90869375273045, + "grad_norm": 0.1996062994003296, + "learning_rate": 0.0006, + "loss": 4.253237724304199, + "step": 857 + }, + { + "epoch": 11.922673656618612, + "grad_norm": 0.20747603476047516, + "learning_rate": 0.0006, + "loss": 4.294193267822266, + "step": 858 + }, + { + "epoch": 11.936653560506771, + "grad_norm": 0.24082425236701965, + "learning_rate": 0.0006, + "loss": 4.269967079162598, + "step": 859 + }, + { + "epoch": 11.950633464394933, + "grad_norm": 0.28993573784828186, + "learning_rate": 0.0006, + "loss": 4.294550895690918, + "step": 860 + }, + { + "epoch": 11.964613368283093, + "grad_norm": 0.29576948285102844, + "learning_rate": 0.0006, + "loss": 4.3188252449035645, + "step": 861 + }, + { + "epoch": 11.978593272171254, + "grad_norm": 0.2754935026168823, + "learning_rate": 0.0006, + "loss": 4.312817573547363, + "step": 862 + }, + { + "epoch": 11.992573176059414, + "grad_norm": 0.3062523305416107, + "learning_rate": 0.0006, + "loss": 4.288214683532715, + "step": 863 + }, + { + "epoch": 12.0, + "grad_norm": 0.3367644250392914, + "learning_rate": 0.0006, + "loss": 4.314888954162598, + "step": 864 + }, + { + "epoch": 12.0, + "eval_loss": 4.516861438751221, + "eval_runtime": 44.2584, + "eval_samples_per_second": 55.176, + "eval_steps_per_second": 3.457, + "step": 864 + }, + { + "epoch": 12.013979903888162, + "grad_norm": 0.2976512014865875, + "learning_rate": 0.0006, + "loss": 4.278797149658203, + "step": 865 + }, + { + "epoch": 12.027959807776321, + "grad_norm": 0.32217127084732056, + "learning_rate": 0.0006, + "loss": 4.2823615074157715, + "step": 866 + }, + { + "epoch": 12.041939711664483, + "grad_norm": 0.31538400053977966, + "learning_rate": 0.0006, + "loss": 4.252805709838867, + "step": 867 + }, + { + "epoch": 12.055919615552643, + "grad_norm": 0.3501375913619995, + "learning_rate": 0.0006, + "loss": 4.276501655578613, + "step": 868 + }, + { + "epoch": 12.069899519440805, + "grad_norm": 0.3452056646347046, + "learning_rate": 0.0006, + "loss": 4.275739669799805, + "step": 869 + }, + { + "epoch": 12.083879423328964, + "grad_norm": 0.36963316798210144, + "learning_rate": 0.0006, + "loss": 4.3215227127075195, + "step": 870 + }, + { + "epoch": 12.097859327217126, + "grad_norm": 0.41605016589164734, + "learning_rate": 0.0006, + "loss": 4.28739595413208, + "step": 871 + }, + { + "epoch": 12.111839231105286, + "grad_norm": 0.37700653076171875, + "learning_rate": 0.0006, + "loss": 4.291154861450195, + "step": 872 + }, + { + "epoch": 12.125819134993447, + "grad_norm": 0.3194253444671631, + "learning_rate": 0.0006, + "loss": 4.259326934814453, + "step": 873 + }, + { + "epoch": 12.139799038881607, + "grad_norm": 0.31770631670951843, + "learning_rate": 0.0006, + "loss": 4.270082473754883, + "step": 874 + }, + { + "epoch": 12.153778942769769, + "grad_norm": 0.3748120069503784, + "learning_rate": 0.0006, + "loss": 4.2727274894714355, + "step": 875 + }, + { + "epoch": 12.167758846657929, + "grad_norm": 0.3821348547935486, + "learning_rate": 0.0006, + "loss": 4.2848286628723145, + "step": 876 + }, + { + "epoch": 12.18173875054609, + "grad_norm": 0.31894201040267944, + "learning_rate": 0.0006, + "loss": 4.289551258087158, + "step": 877 + }, + { + "epoch": 12.19571865443425, + "grad_norm": 0.2695826292037964, + "learning_rate": 0.0006, + "loss": 4.2797346115112305, + "step": 878 + }, + { + "epoch": 12.209698558322412, + "grad_norm": 0.23966269195079803, + "learning_rate": 0.0006, + "loss": 4.24021577835083, + "step": 879 + }, + { + "epoch": 12.223678462210572, + "grad_norm": 0.24342599511146545, + "learning_rate": 0.0006, + "loss": 4.277721881866455, + "step": 880 + }, + { + "epoch": 12.237658366098733, + "grad_norm": 0.2522958815097809, + "learning_rate": 0.0006, + "loss": 4.263946533203125, + "step": 881 + }, + { + "epoch": 12.251638269986893, + "grad_norm": 0.2708299458026886, + "learning_rate": 0.0006, + "loss": 4.274540901184082, + "step": 882 + }, + { + "epoch": 12.265618173875055, + "grad_norm": 0.2978788912296295, + "learning_rate": 0.0006, + "loss": 4.2674970626831055, + "step": 883 + }, + { + "epoch": 12.279598077763215, + "grad_norm": 0.2898774743080139, + "learning_rate": 0.0006, + "loss": 4.235060691833496, + "step": 884 + }, + { + "epoch": 12.293577981651376, + "grad_norm": 0.27941837906837463, + "learning_rate": 0.0006, + "loss": 4.284140586853027, + "step": 885 + }, + { + "epoch": 12.307557885539538, + "grad_norm": 0.25050559639930725, + "learning_rate": 0.0006, + "loss": 4.270134925842285, + "step": 886 + }, + { + "epoch": 12.321537789427698, + "grad_norm": 0.21867156028747559, + "learning_rate": 0.0006, + "loss": 4.241571426391602, + "step": 887 + }, + { + "epoch": 12.33551769331586, + "grad_norm": 0.24735847115516663, + "learning_rate": 0.0006, + "loss": 4.253087997436523, + "step": 888 + }, + { + "epoch": 12.349497597204019, + "grad_norm": 0.23069104552268982, + "learning_rate": 0.0006, + "loss": 4.258606910705566, + "step": 889 + }, + { + "epoch": 12.36347750109218, + "grad_norm": 0.2594369947910309, + "learning_rate": 0.0006, + "loss": 4.307351112365723, + "step": 890 + }, + { + "epoch": 12.37745740498034, + "grad_norm": 0.25349098443984985, + "learning_rate": 0.0006, + "loss": 4.264268398284912, + "step": 891 + }, + { + "epoch": 12.391437308868502, + "grad_norm": 0.2550840675830841, + "learning_rate": 0.0006, + "loss": 4.247092247009277, + "step": 892 + }, + { + "epoch": 12.405417212756662, + "grad_norm": 0.2107602059841156, + "learning_rate": 0.0006, + "loss": 4.240527153015137, + "step": 893 + }, + { + "epoch": 12.419397116644824, + "grad_norm": 0.2025548368692398, + "learning_rate": 0.0006, + "loss": 4.244686126708984, + "step": 894 + }, + { + "epoch": 12.433377020532983, + "grad_norm": 0.22061701118946075, + "learning_rate": 0.0006, + "loss": 4.233231544494629, + "step": 895 + }, + { + "epoch": 12.447356924421145, + "grad_norm": 0.19503085315227509, + "learning_rate": 0.0006, + "loss": 4.23851203918457, + "step": 896 + }, + { + "epoch": 12.461336828309305, + "grad_norm": 0.19313643872737885, + "learning_rate": 0.0006, + "loss": 4.190886497497559, + "step": 897 + }, + { + "epoch": 12.475316732197467, + "grad_norm": 0.21094176173210144, + "learning_rate": 0.0006, + "loss": 4.277888298034668, + "step": 898 + }, + { + "epoch": 12.489296636085626, + "grad_norm": 0.1980651170015335, + "learning_rate": 0.0006, + "loss": 4.251066207885742, + "step": 899 + }, + { + "epoch": 12.503276539973788, + "grad_norm": 0.179737389087677, + "learning_rate": 0.0006, + "loss": 4.194703102111816, + "step": 900 + }, + { + "epoch": 12.517256443861948, + "grad_norm": 0.19069281220436096, + "learning_rate": 0.0006, + "loss": 4.242412567138672, + "step": 901 + }, + { + "epoch": 12.53123634775011, + "grad_norm": 0.191154345870018, + "learning_rate": 0.0006, + "loss": 4.2432780265808105, + "step": 902 + }, + { + "epoch": 12.54521625163827, + "grad_norm": 0.19760103523731232, + "learning_rate": 0.0006, + "loss": 4.23294734954834, + "step": 903 + }, + { + "epoch": 12.55919615552643, + "grad_norm": 0.19982324540615082, + "learning_rate": 0.0006, + "loss": 4.249764442443848, + "step": 904 + }, + { + "epoch": 12.57317605941459, + "grad_norm": 0.1986108422279358, + "learning_rate": 0.0006, + "loss": 4.213435649871826, + "step": 905 + }, + { + "epoch": 12.587155963302752, + "grad_norm": 0.19727319478988647, + "learning_rate": 0.0006, + "loss": 4.247962951660156, + "step": 906 + }, + { + "epoch": 12.601135867190912, + "grad_norm": 0.23404482007026672, + "learning_rate": 0.0006, + "loss": 4.237396240234375, + "step": 907 + }, + { + "epoch": 12.615115771079074, + "grad_norm": 0.21136441826820374, + "learning_rate": 0.0006, + "loss": 4.236040115356445, + "step": 908 + }, + { + "epoch": 12.629095674967235, + "grad_norm": 0.2209048718214035, + "learning_rate": 0.0006, + "loss": 4.234212875366211, + "step": 909 + }, + { + "epoch": 12.643075578855395, + "grad_norm": 0.22120307385921478, + "learning_rate": 0.0006, + "loss": 4.2711076736450195, + "step": 910 + }, + { + "epoch": 12.657055482743557, + "grad_norm": 0.22733066976070404, + "learning_rate": 0.0006, + "loss": 4.231651306152344, + "step": 911 + }, + { + "epoch": 12.671035386631717, + "grad_norm": 0.2435602843761444, + "learning_rate": 0.0006, + "loss": 4.249372482299805, + "step": 912 + }, + { + "epoch": 12.685015290519878, + "grad_norm": 0.28881654143333435, + "learning_rate": 0.0006, + "loss": 4.2626051902771, + "step": 913 + }, + { + "epoch": 12.698995194408038, + "grad_norm": 0.3211199641227722, + "learning_rate": 0.0006, + "loss": 4.254220485687256, + "step": 914 + }, + { + "epoch": 12.7129750982962, + "grad_norm": 0.3118100166320801, + "learning_rate": 0.0006, + "loss": 4.233747959136963, + "step": 915 + }, + { + "epoch": 12.72695500218436, + "grad_norm": 0.33411866426467896, + "learning_rate": 0.0006, + "loss": 4.270386219024658, + "step": 916 + }, + { + "epoch": 12.740934906072521, + "grad_norm": 0.2968253195285797, + "learning_rate": 0.0006, + "loss": 4.242254257202148, + "step": 917 + }, + { + "epoch": 12.754914809960681, + "grad_norm": 0.2959132194519043, + "learning_rate": 0.0006, + "loss": 4.232100486755371, + "step": 918 + }, + { + "epoch": 12.768894713848843, + "grad_norm": 0.2729283273220062, + "learning_rate": 0.0006, + "loss": 4.233869552612305, + "step": 919 + }, + { + "epoch": 12.782874617737003, + "grad_norm": 0.2669033408164978, + "learning_rate": 0.0006, + "loss": 4.261008262634277, + "step": 920 + }, + { + "epoch": 12.796854521625164, + "grad_norm": 0.2738507091999054, + "learning_rate": 0.0006, + "loss": 4.2286763191223145, + "step": 921 + }, + { + "epoch": 12.810834425513324, + "grad_norm": 0.29105183482170105, + "learning_rate": 0.0006, + "loss": 4.281410217285156, + "step": 922 + }, + { + "epoch": 12.824814329401486, + "grad_norm": 0.31330201029777527, + "learning_rate": 0.0006, + "loss": 4.264181613922119, + "step": 923 + }, + { + "epoch": 12.838794233289645, + "grad_norm": 0.31324025988578796, + "learning_rate": 0.0006, + "loss": 4.250385284423828, + "step": 924 + }, + { + "epoch": 12.852774137177807, + "grad_norm": 0.2727925181388855, + "learning_rate": 0.0006, + "loss": 4.24821138381958, + "step": 925 + }, + { + "epoch": 12.866754041065967, + "grad_norm": 0.27350082993507385, + "learning_rate": 0.0006, + "loss": 4.230215072631836, + "step": 926 + }, + { + "epoch": 12.880733944954128, + "grad_norm": 0.2269950658082962, + "learning_rate": 0.0006, + "loss": 4.210305213928223, + "step": 927 + }, + { + "epoch": 12.89471384884229, + "grad_norm": 0.24667619168758392, + "learning_rate": 0.0006, + "loss": 4.239969253540039, + "step": 928 + }, + { + "epoch": 12.90869375273045, + "grad_norm": 0.22510501742362976, + "learning_rate": 0.0006, + "loss": 4.192750930786133, + "step": 929 + }, + { + "epoch": 12.922673656618612, + "grad_norm": 0.22887611389160156, + "learning_rate": 0.0006, + "loss": 4.264463424682617, + "step": 930 + }, + { + "epoch": 12.936653560506771, + "grad_norm": 0.22195978462696075, + "learning_rate": 0.0006, + "loss": 4.205256938934326, + "step": 931 + }, + { + "epoch": 12.950633464394933, + "grad_norm": 0.23184578120708466, + "learning_rate": 0.0006, + "loss": 4.214578628540039, + "step": 932 + }, + { + "epoch": 12.964613368283093, + "grad_norm": 0.2186676561832428, + "learning_rate": 0.0006, + "loss": 4.227711200714111, + "step": 933 + }, + { + "epoch": 12.978593272171254, + "grad_norm": 0.2160426527261734, + "learning_rate": 0.0006, + "loss": 4.221796989440918, + "step": 934 + }, + { + "epoch": 12.992573176059414, + "grad_norm": 0.21562792360782623, + "learning_rate": 0.0006, + "loss": 4.21957540512085, + "step": 935 + }, + { + "epoch": 13.0, + "grad_norm": 0.22538058459758759, + "learning_rate": 0.0006, + "loss": 4.2353973388671875, + "step": 936 + }, + { + "epoch": 13.0, + "eval_loss": 4.426600933074951, + "eval_runtime": 44.8138, + "eval_samples_per_second": 54.492, + "eval_steps_per_second": 3.414, + "step": 936 + }, + { + "epoch": 13.013979903888162, + "grad_norm": 0.24888049066066742, + "learning_rate": 0.0006, + "loss": 4.18648624420166, + "step": 937 + }, + { + "epoch": 13.027959807776321, + "grad_norm": 0.28330180048942566, + "learning_rate": 0.0006, + "loss": 4.188892364501953, + "step": 938 + }, + { + "epoch": 13.041939711664483, + "grad_norm": 0.31152188777923584, + "learning_rate": 0.0006, + "loss": 4.2053399085998535, + "step": 939 + }, + { + "epoch": 13.055919615552643, + "grad_norm": 0.2842433452606201, + "learning_rate": 0.0006, + "loss": 4.191902160644531, + "step": 940 + }, + { + "epoch": 13.069899519440805, + "grad_norm": 0.23664532601833344, + "learning_rate": 0.0006, + "loss": 4.1831865310668945, + "step": 941 + }, + { + "epoch": 13.083879423328964, + "grad_norm": 0.24204140901565552, + "learning_rate": 0.0006, + "loss": 4.202641487121582, + "step": 942 + }, + { + "epoch": 13.097859327217126, + "grad_norm": 0.235311359167099, + "learning_rate": 0.0006, + "loss": 4.174511909484863, + "step": 943 + }, + { + "epoch": 13.111839231105286, + "grad_norm": 0.27127715945243835, + "learning_rate": 0.0006, + "loss": 4.201844215393066, + "step": 944 + }, + { + "epoch": 13.125819134993447, + "grad_norm": 0.2722373604774475, + "learning_rate": 0.0006, + "loss": 4.157383918762207, + "step": 945 + }, + { + "epoch": 13.139799038881607, + "grad_norm": 0.25446659326553345, + "learning_rate": 0.0006, + "loss": 4.221236228942871, + "step": 946 + }, + { + "epoch": 13.153778942769769, + "grad_norm": 0.273017019033432, + "learning_rate": 0.0006, + "loss": 4.195512771606445, + "step": 947 + }, + { + "epoch": 13.167758846657929, + "grad_norm": 0.24766312539577484, + "learning_rate": 0.0006, + "loss": 4.220959663391113, + "step": 948 + }, + { + "epoch": 13.18173875054609, + "grad_norm": 0.24636317789554596, + "learning_rate": 0.0006, + "loss": 4.214302062988281, + "step": 949 + }, + { + "epoch": 13.19571865443425, + "grad_norm": 0.3177756667137146, + "learning_rate": 0.0006, + "loss": 4.213500022888184, + "step": 950 + }, + { + "epoch": 13.209698558322412, + "grad_norm": 0.44579195976257324, + "learning_rate": 0.0006, + "loss": 4.227644920349121, + "step": 951 + }, + { + "epoch": 13.223678462210572, + "grad_norm": 0.4217414855957031, + "learning_rate": 0.0006, + "loss": 4.180937767028809, + "step": 952 + }, + { + "epoch": 13.237658366098733, + "grad_norm": 0.30148059129714966, + "learning_rate": 0.0006, + "loss": 4.207760810852051, + "step": 953 + }, + { + "epoch": 13.251638269986893, + "grad_norm": 0.3192492127418518, + "learning_rate": 0.0006, + "loss": 4.197999000549316, + "step": 954 + }, + { + "epoch": 13.265618173875055, + "grad_norm": 0.37334588170051575, + "learning_rate": 0.0006, + "loss": 4.208001136779785, + "step": 955 + }, + { + "epoch": 13.279598077763215, + "grad_norm": 0.4059637784957886, + "learning_rate": 0.0006, + "loss": 4.211322784423828, + "step": 956 + }, + { + "epoch": 13.293577981651376, + "grad_norm": 0.3389599323272705, + "learning_rate": 0.0006, + "loss": 4.204404354095459, + "step": 957 + }, + { + "epoch": 13.307557885539538, + "grad_norm": 0.2675766050815582, + "learning_rate": 0.0006, + "loss": 4.245941162109375, + "step": 958 + }, + { + "epoch": 13.321537789427698, + "grad_norm": 0.2730264365673065, + "learning_rate": 0.0006, + "loss": 4.2221221923828125, + "step": 959 + }, + { + "epoch": 13.33551769331586, + "grad_norm": 0.26458224654197693, + "learning_rate": 0.0006, + "loss": 4.205596923828125, + "step": 960 + }, + { + "epoch": 13.349497597204019, + "grad_norm": 0.2872551381587982, + "learning_rate": 0.0006, + "loss": 4.196977615356445, + "step": 961 + }, + { + "epoch": 13.36347750109218, + "grad_norm": 0.2954796850681305, + "learning_rate": 0.0006, + "loss": 4.202796936035156, + "step": 962 + }, + { + "epoch": 13.37745740498034, + "grad_norm": 0.2619425654411316, + "learning_rate": 0.0006, + "loss": 4.196845054626465, + "step": 963 + }, + { + "epoch": 13.391437308868502, + "grad_norm": 0.30088478326797485, + "learning_rate": 0.0006, + "loss": 4.219697952270508, + "step": 964 + }, + { + "epoch": 13.405417212756662, + "grad_norm": 0.30388689041137695, + "learning_rate": 0.0006, + "loss": 4.187566757202148, + "step": 965 + }, + { + "epoch": 13.419397116644824, + "grad_norm": 0.27918127179145813, + "learning_rate": 0.0006, + "loss": 4.223600387573242, + "step": 966 + }, + { + "epoch": 13.433377020532983, + "grad_norm": 0.27634528279304504, + "learning_rate": 0.0006, + "loss": 4.165332317352295, + "step": 967 + }, + { + "epoch": 13.447356924421145, + "grad_norm": 0.28830021619796753, + "learning_rate": 0.0006, + "loss": 4.204029560089111, + "step": 968 + }, + { + "epoch": 13.461336828309305, + "grad_norm": 0.29220864176750183, + "learning_rate": 0.0006, + "loss": 4.218057155609131, + "step": 969 + }, + { + "epoch": 13.475316732197467, + "grad_norm": 0.3089624345302582, + "learning_rate": 0.0006, + "loss": 4.200654983520508, + "step": 970 + }, + { + "epoch": 13.489296636085626, + "grad_norm": 0.36479851603507996, + "learning_rate": 0.0006, + "loss": 4.182811737060547, + "step": 971 + }, + { + "epoch": 13.503276539973788, + "grad_norm": 0.37561097741127014, + "learning_rate": 0.0006, + "loss": 4.190266132354736, + "step": 972 + }, + { + "epoch": 13.517256443861948, + "grad_norm": 0.3263583183288574, + "learning_rate": 0.0006, + "loss": 4.214815616607666, + "step": 973 + }, + { + "epoch": 13.53123634775011, + "grad_norm": 0.21552999317646027, + "learning_rate": 0.0006, + "loss": 4.171380043029785, + "step": 974 + }, + { + "epoch": 13.54521625163827, + "grad_norm": 0.247328519821167, + "learning_rate": 0.0006, + "loss": 4.175377368927002, + "step": 975 + }, + { + "epoch": 13.55919615552643, + "grad_norm": 0.23740540444850922, + "learning_rate": 0.0006, + "loss": 4.212357997894287, + "step": 976 + }, + { + "epoch": 13.57317605941459, + "grad_norm": 0.21533876657485962, + "learning_rate": 0.0006, + "loss": 4.203285217285156, + "step": 977 + }, + { + "epoch": 13.587155963302752, + "grad_norm": 0.21462024748325348, + "learning_rate": 0.0006, + "loss": 4.178012371063232, + "step": 978 + }, + { + "epoch": 13.601135867190912, + "grad_norm": 0.2279169261455536, + "learning_rate": 0.0006, + "loss": 4.193912982940674, + "step": 979 + }, + { + "epoch": 13.615115771079074, + "grad_norm": 0.2202417552471161, + "learning_rate": 0.0006, + "loss": 4.167629718780518, + "step": 980 + }, + { + "epoch": 13.629095674967235, + "grad_norm": 0.20586472749710083, + "learning_rate": 0.0006, + "loss": 4.159290313720703, + "step": 981 + }, + { + "epoch": 13.643075578855395, + "grad_norm": 0.20200690627098083, + "learning_rate": 0.0006, + "loss": 4.210315227508545, + "step": 982 + }, + { + "epoch": 13.657055482743557, + "grad_norm": 0.21710257232189178, + "learning_rate": 0.0006, + "loss": 4.21730375289917, + "step": 983 + }, + { + "epoch": 13.671035386631717, + "grad_norm": 0.22058045864105225, + "learning_rate": 0.0006, + "loss": 4.1996073722839355, + "step": 984 + }, + { + "epoch": 13.685015290519878, + "grad_norm": 0.21549592912197113, + "learning_rate": 0.0006, + "loss": 4.209203720092773, + "step": 985 + }, + { + "epoch": 13.698995194408038, + "grad_norm": 0.22274717688560486, + "learning_rate": 0.0006, + "loss": 4.220660209655762, + "step": 986 + }, + { + "epoch": 13.7129750982962, + "grad_norm": 0.22791637480258942, + "learning_rate": 0.0006, + "loss": 4.158679962158203, + "step": 987 + }, + { + "epoch": 13.72695500218436, + "grad_norm": 0.216218963265419, + "learning_rate": 0.0006, + "loss": 4.188124656677246, + "step": 988 + }, + { + "epoch": 13.740934906072521, + "grad_norm": 0.19149383902549744, + "learning_rate": 0.0006, + "loss": 4.181729316711426, + "step": 989 + }, + { + "epoch": 13.754914809960681, + "grad_norm": 0.18964019417762756, + "learning_rate": 0.0006, + "loss": 4.184767246246338, + "step": 990 + }, + { + "epoch": 13.768894713848843, + "grad_norm": 0.1778000295162201, + "learning_rate": 0.0006, + "loss": 4.1802263259887695, + "step": 991 + }, + { + "epoch": 13.782874617737003, + "grad_norm": 0.18277616798877716, + "learning_rate": 0.0006, + "loss": 4.1657867431640625, + "step": 992 + }, + { + "epoch": 13.796854521625164, + "grad_norm": 0.18610034883022308, + "learning_rate": 0.0006, + "loss": 4.156744956970215, + "step": 993 + }, + { + "epoch": 13.810834425513324, + "grad_norm": 0.19332963228225708, + "learning_rate": 0.0006, + "loss": 4.143558502197266, + "step": 994 + }, + { + "epoch": 13.824814329401486, + "grad_norm": 0.19758112728595734, + "learning_rate": 0.0006, + "loss": 4.195793151855469, + "step": 995 + }, + { + "epoch": 13.838794233289645, + "grad_norm": 0.1933647245168686, + "learning_rate": 0.0006, + "loss": 4.169734954833984, + "step": 996 + }, + { + "epoch": 13.852774137177807, + "grad_norm": 0.2362028956413269, + "learning_rate": 0.0006, + "loss": 4.175025939941406, + "step": 997 + }, + { + "epoch": 13.866754041065967, + "grad_norm": 0.2465490996837616, + "learning_rate": 0.0006, + "loss": 4.173909664154053, + "step": 998 + }, + { + "epoch": 13.880733944954128, + "grad_norm": 0.23449952900409698, + "learning_rate": 0.0006, + "loss": 4.173429489135742, + "step": 999 + }, + { + "epoch": 13.89471384884229, + "grad_norm": 0.2282160222530365, + "learning_rate": 0.0006, + "loss": 4.158538341522217, + "step": 1000 + }, + { + "epoch": 13.90869375273045, + "grad_norm": 0.21066738665103912, + "learning_rate": 0.0006, + "loss": 4.171584129333496, + "step": 1001 + }, + { + "epoch": 13.922673656618612, + "grad_norm": 0.18787573277950287, + "learning_rate": 0.0006, + "loss": 4.1837544441223145, + "step": 1002 + }, + { + "epoch": 13.936653560506771, + "grad_norm": 0.2001059353351593, + "learning_rate": 0.0006, + "loss": 4.160369873046875, + "step": 1003 + }, + { + "epoch": 13.950633464394933, + "grad_norm": 0.21644988656044006, + "learning_rate": 0.0006, + "loss": 4.221372604370117, + "step": 1004 + }, + { + "epoch": 13.964613368283093, + "grad_norm": 0.22083887457847595, + "learning_rate": 0.0006, + "loss": 4.149261474609375, + "step": 1005 + }, + { + "epoch": 13.978593272171254, + "grad_norm": 0.2201409637928009, + "learning_rate": 0.0006, + "loss": 4.192010879516602, + "step": 1006 + }, + { + "epoch": 13.992573176059414, + "grad_norm": 0.18888601660728455, + "learning_rate": 0.0006, + "loss": 4.17539119720459, + "step": 1007 + }, + { + "epoch": 14.0, + "grad_norm": 0.2073872834444046, + "learning_rate": 0.0006, + "loss": 4.145265579223633, + "step": 1008 + }, + { + "epoch": 14.0, + "eval_loss": 4.36876106262207, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 1008 + }, + { + "epoch": 14.013979903888162, + "grad_norm": 0.20773135125637054, + "learning_rate": 0.0006, + "loss": 4.132615089416504, + "step": 1009 + }, + { + "epoch": 14.027959807776321, + "grad_norm": 0.22409620881080627, + "learning_rate": 0.0006, + "loss": 4.172839164733887, + "step": 1010 + }, + { + "epoch": 14.041939711664483, + "grad_norm": 0.24046066403388977, + "learning_rate": 0.0006, + "loss": 4.126678943634033, + "step": 1011 + }, + { + "epoch": 14.055919615552643, + "grad_norm": 0.29185160994529724, + "learning_rate": 0.0006, + "loss": 4.177952766418457, + "step": 1012 + }, + { + "epoch": 14.069899519440805, + "grad_norm": 0.2984033226966858, + "learning_rate": 0.0006, + "loss": 4.155030250549316, + "step": 1013 + }, + { + "epoch": 14.083879423328964, + "grad_norm": 0.30262473225593567, + "learning_rate": 0.0006, + "loss": 4.145394325256348, + "step": 1014 + }, + { + "epoch": 14.097859327217126, + "grad_norm": 0.3278133273124695, + "learning_rate": 0.0006, + "loss": 4.172739028930664, + "step": 1015 + }, + { + "epoch": 14.111839231105286, + "grad_norm": 0.3285452425479889, + "learning_rate": 0.0006, + "loss": 4.153196334838867, + "step": 1016 + }, + { + "epoch": 14.125819134993447, + "grad_norm": 0.33912697434425354, + "learning_rate": 0.0006, + "loss": 4.098162651062012, + "step": 1017 + }, + { + "epoch": 14.139799038881607, + "grad_norm": 0.32080814242362976, + "learning_rate": 0.0006, + "loss": 4.157135009765625, + "step": 1018 + }, + { + "epoch": 14.153778942769769, + "grad_norm": 0.31288477778434753, + "learning_rate": 0.0006, + "loss": 4.142683029174805, + "step": 1019 + }, + { + "epoch": 14.167758846657929, + "grad_norm": 0.350289523601532, + "learning_rate": 0.0006, + "loss": 4.134700775146484, + "step": 1020 + }, + { + "epoch": 14.18173875054609, + "grad_norm": 0.34274575114250183, + "learning_rate": 0.0006, + "loss": 4.1578569412231445, + "step": 1021 + }, + { + "epoch": 14.19571865443425, + "grad_norm": 0.2843035161495209, + "learning_rate": 0.0006, + "loss": 4.13760232925415, + "step": 1022 + }, + { + "epoch": 14.209698558322412, + "grad_norm": 0.28235161304473877, + "learning_rate": 0.0006, + "loss": 4.1492462158203125, + "step": 1023 + }, + { + "epoch": 14.223678462210572, + "grad_norm": 0.24407248198986053, + "learning_rate": 0.0006, + "loss": 4.144372463226318, + "step": 1024 + }, + { + "epoch": 14.237658366098733, + "grad_norm": 0.2489742934703827, + "learning_rate": 0.0006, + "loss": 4.137950897216797, + "step": 1025 + }, + { + "epoch": 14.251638269986893, + "grad_norm": 0.26035651564598083, + "learning_rate": 0.0006, + "loss": 4.144070625305176, + "step": 1026 + }, + { + "epoch": 14.265618173875055, + "grad_norm": 0.2726516127586365, + "learning_rate": 0.0006, + "loss": 4.145204067230225, + "step": 1027 + }, + { + "epoch": 14.279598077763215, + "grad_norm": 0.2723483443260193, + "learning_rate": 0.0006, + "loss": 4.118407249450684, + "step": 1028 + }, + { + "epoch": 14.293577981651376, + "grad_norm": 0.27476269006729126, + "learning_rate": 0.0006, + "loss": 4.111325263977051, + "step": 1029 + }, + { + "epoch": 14.307557885539538, + "grad_norm": 0.26202502846717834, + "learning_rate": 0.0006, + "loss": 4.122248649597168, + "step": 1030 + }, + { + "epoch": 14.321537789427698, + "grad_norm": 0.2472032904624939, + "learning_rate": 0.0006, + "loss": 4.157790184020996, + "step": 1031 + }, + { + "epoch": 14.33551769331586, + "grad_norm": 0.2518343925476074, + "learning_rate": 0.0006, + "loss": 4.109132766723633, + "step": 1032 + }, + { + "epoch": 14.349497597204019, + "grad_norm": 0.2652401924133301, + "learning_rate": 0.0006, + "loss": 4.144079685211182, + "step": 1033 + }, + { + "epoch": 14.36347750109218, + "grad_norm": 0.2356770783662796, + "learning_rate": 0.0006, + "loss": 4.128426551818848, + "step": 1034 + }, + { + "epoch": 14.37745740498034, + "grad_norm": 0.2164214551448822, + "learning_rate": 0.0006, + "loss": 4.1644392013549805, + "step": 1035 + }, + { + "epoch": 14.391437308868502, + "grad_norm": 0.22383111715316772, + "learning_rate": 0.0006, + "loss": 4.165862083435059, + "step": 1036 + }, + { + "epoch": 14.405417212756662, + "grad_norm": 0.23152419924736023, + "learning_rate": 0.0006, + "loss": 4.140036582946777, + "step": 1037 + }, + { + "epoch": 14.419397116644824, + "grad_norm": 0.2387741357088089, + "learning_rate": 0.0006, + "loss": 4.130461692810059, + "step": 1038 + }, + { + "epoch": 14.433377020532983, + "grad_norm": 0.24018129706382751, + "learning_rate": 0.0006, + "loss": 4.148482322692871, + "step": 1039 + }, + { + "epoch": 14.447356924421145, + "grad_norm": 0.25487351417541504, + "learning_rate": 0.0006, + "loss": 4.158121109008789, + "step": 1040 + }, + { + "epoch": 14.461336828309305, + "grad_norm": 0.28220096230506897, + "learning_rate": 0.0006, + "loss": 4.160198211669922, + "step": 1041 + }, + { + "epoch": 14.475316732197467, + "grad_norm": 0.2574434280395508, + "learning_rate": 0.0006, + "loss": 4.168512344360352, + "step": 1042 + }, + { + "epoch": 14.489296636085626, + "grad_norm": 0.22569820284843445, + "learning_rate": 0.0006, + "loss": 4.1595001220703125, + "step": 1043 + }, + { + "epoch": 14.503276539973788, + "grad_norm": 0.2473423182964325, + "learning_rate": 0.0006, + "loss": 4.084580898284912, + "step": 1044 + }, + { + "epoch": 14.517256443861948, + "grad_norm": 0.24281060695648193, + "learning_rate": 0.0006, + "loss": 4.139714241027832, + "step": 1045 + }, + { + "epoch": 14.53123634775011, + "grad_norm": 0.24691344797611237, + "learning_rate": 0.0006, + "loss": 4.115398406982422, + "step": 1046 + }, + { + "epoch": 14.54521625163827, + "grad_norm": 0.2583645284175873, + "learning_rate": 0.0006, + "loss": 4.142148494720459, + "step": 1047 + }, + { + "epoch": 14.55919615552643, + "grad_norm": 0.23258574306964874, + "learning_rate": 0.0006, + "loss": 4.16251277923584, + "step": 1048 + }, + { + "epoch": 14.57317605941459, + "grad_norm": 0.22103039920330048, + "learning_rate": 0.0006, + "loss": 4.1308441162109375, + "step": 1049 + }, + { + "epoch": 14.587155963302752, + "grad_norm": 0.23713579773902893, + "learning_rate": 0.0006, + "loss": 4.1565985679626465, + "step": 1050 + }, + { + "epoch": 14.601135867190912, + "grad_norm": 0.24406634271144867, + "learning_rate": 0.0006, + "loss": 4.14628267288208, + "step": 1051 + }, + { + "epoch": 14.615115771079074, + "grad_norm": 0.26821228861808777, + "learning_rate": 0.0006, + "loss": 4.138063430786133, + "step": 1052 + }, + { + "epoch": 14.629095674967235, + "grad_norm": 0.25483864545822144, + "learning_rate": 0.0006, + "loss": 4.1311163902282715, + "step": 1053 + }, + { + "epoch": 14.643075578855395, + "grad_norm": 0.23937982320785522, + "learning_rate": 0.0006, + "loss": 4.150882244110107, + "step": 1054 + }, + { + "epoch": 14.657055482743557, + "grad_norm": 0.21896475553512573, + "learning_rate": 0.0006, + "loss": 4.114015102386475, + "step": 1055 + }, + { + "epoch": 14.671035386631717, + "grad_norm": 0.20821231603622437, + "learning_rate": 0.0006, + "loss": 4.139034271240234, + "step": 1056 + }, + { + "epoch": 14.685015290519878, + "grad_norm": 0.1978551596403122, + "learning_rate": 0.0006, + "loss": 4.1810503005981445, + "step": 1057 + }, + { + "epoch": 14.698995194408038, + "grad_norm": 0.1945771872997284, + "learning_rate": 0.0006, + "loss": 4.120734214782715, + "step": 1058 + }, + { + "epoch": 14.7129750982962, + "grad_norm": 0.19518673419952393, + "learning_rate": 0.0006, + "loss": 4.14264440536499, + "step": 1059 + }, + { + "epoch": 14.72695500218436, + "grad_norm": 0.202596515417099, + "learning_rate": 0.0006, + "loss": 4.151649475097656, + "step": 1060 + }, + { + "epoch": 14.740934906072521, + "grad_norm": 0.1904762089252472, + "learning_rate": 0.0006, + "loss": 4.127899169921875, + "step": 1061 + }, + { + "epoch": 14.754914809960681, + "grad_norm": 0.20685508847236633, + "learning_rate": 0.0006, + "loss": 4.093445777893066, + "step": 1062 + }, + { + "epoch": 14.768894713848843, + "grad_norm": 0.22678329050540924, + "learning_rate": 0.0006, + "loss": 4.132084369659424, + "step": 1063 + }, + { + "epoch": 14.782874617737003, + "grad_norm": 0.24631841480731964, + "learning_rate": 0.0006, + "loss": 4.154788970947266, + "step": 1064 + }, + { + "epoch": 14.796854521625164, + "grad_norm": 0.24445782601833344, + "learning_rate": 0.0006, + "loss": 4.144735336303711, + "step": 1065 + }, + { + "epoch": 14.810834425513324, + "grad_norm": 0.22330640256404877, + "learning_rate": 0.0006, + "loss": 4.159893989562988, + "step": 1066 + }, + { + "epoch": 14.824814329401486, + "grad_norm": 0.22422967851161957, + "learning_rate": 0.0006, + "loss": 4.104874610900879, + "step": 1067 + }, + { + "epoch": 14.838794233289645, + "grad_norm": 0.24583931267261505, + "learning_rate": 0.0006, + "loss": 4.139403820037842, + "step": 1068 + }, + { + "epoch": 14.852774137177807, + "grad_norm": 0.2917379140853882, + "learning_rate": 0.0006, + "loss": 4.168988227844238, + "step": 1069 + }, + { + "epoch": 14.866754041065967, + "grad_norm": 0.3171777129173279, + "learning_rate": 0.0006, + "loss": 4.131263732910156, + "step": 1070 + }, + { + "epoch": 14.880733944954128, + "grad_norm": 0.3039591312408447, + "learning_rate": 0.0006, + "loss": 4.149853706359863, + "step": 1071 + }, + { + "epoch": 14.89471384884229, + "grad_norm": 0.2690650522708893, + "learning_rate": 0.0006, + "loss": 4.154787540435791, + "step": 1072 + }, + { + "epoch": 14.90869375273045, + "grad_norm": 0.28683212399482727, + "learning_rate": 0.0006, + "loss": 4.12751579284668, + "step": 1073 + }, + { + "epoch": 14.922673656618612, + "grad_norm": 0.30022913217544556, + "learning_rate": 0.0006, + "loss": 4.141940116882324, + "step": 1074 + }, + { + "epoch": 14.936653560506771, + "grad_norm": 0.3312259316444397, + "learning_rate": 0.0006, + "loss": 4.141905784606934, + "step": 1075 + }, + { + "epoch": 14.950633464394933, + "grad_norm": 0.31159237027168274, + "learning_rate": 0.0006, + "loss": 4.160192966461182, + "step": 1076 + }, + { + "epoch": 14.964613368283093, + "grad_norm": 0.30093592405319214, + "learning_rate": 0.0006, + "loss": 4.1085076332092285, + "step": 1077 + }, + { + "epoch": 14.978593272171254, + "grad_norm": 0.2728535830974579, + "learning_rate": 0.0006, + "loss": 4.156959056854248, + "step": 1078 + }, + { + "epoch": 14.992573176059414, + "grad_norm": 0.24766813218593597, + "learning_rate": 0.0006, + "loss": 4.113999843597412, + "step": 1079 + }, + { + "epoch": 15.0, + "grad_norm": 0.2538154721260071, + "learning_rate": 0.0006, + "loss": 4.147134780883789, + "step": 1080 + }, + { + "epoch": 15.0, + "eval_loss": 4.323154926300049, + "eval_runtime": 44.8813, + "eval_samples_per_second": 54.41, + "eval_steps_per_second": 3.409, + "step": 1080 + }, + { + "epoch": 15.013979903888162, + "grad_norm": 0.22535280883312225, + "learning_rate": 0.0006, + "loss": 4.112179756164551, + "step": 1081 + }, + { + "epoch": 15.027959807776321, + "grad_norm": 0.24340929090976715, + "learning_rate": 0.0006, + "loss": 4.080923080444336, + "step": 1082 + }, + { + "epoch": 15.041939711664483, + "grad_norm": 0.23159465193748474, + "learning_rate": 0.0006, + "loss": 4.097067356109619, + "step": 1083 + }, + { + "epoch": 15.055919615552643, + "grad_norm": 0.22674769163131714, + "learning_rate": 0.0006, + "loss": 4.118601322174072, + "step": 1084 + }, + { + "epoch": 15.069899519440805, + "grad_norm": 0.2524292469024658, + "learning_rate": 0.0006, + "loss": 4.101109504699707, + "step": 1085 + }, + { + "epoch": 15.083879423328964, + "grad_norm": 0.2505405843257904, + "learning_rate": 0.0006, + "loss": 4.121405601501465, + "step": 1086 + }, + { + "epoch": 15.097859327217126, + "grad_norm": 0.2557983696460724, + "learning_rate": 0.0006, + "loss": 4.1063947677612305, + "step": 1087 + }, + { + "epoch": 15.111839231105286, + "grad_norm": 0.24452129006385803, + "learning_rate": 0.0006, + "loss": 4.086133003234863, + "step": 1088 + }, + { + "epoch": 15.125819134993447, + "grad_norm": 0.25821781158447266, + "learning_rate": 0.0006, + "loss": 4.076262950897217, + "step": 1089 + }, + { + "epoch": 15.139799038881607, + "grad_norm": 0.23650537431240082, + "learning_rate": 0.0006, + "loss": 4.101842880249023, + "step": 1090 + }, + { + "epoch": 15.153778942769769, + "grad_norm": 0.2206192910671234, + "learning_rate": 0.0006, + "loss": 4.11027193069458, + "step": 1091 + }, + { + "epoch": 15.167758846657929, + "grad_norm": 0.21843163669109344, + "learning_rate": 0.0006, + "loss": 4.098437309265137, + "step": 1092 + }, + { + "epoch": 15.18173875054609, + "grad_norm": 0.2528176009654999, + "learning_rate": 0.0006, + "loss": 4.108713150024414, + "step": 1093 + }, + { + "epoch": 15.19571865443425, + "grad_norm": 0.26697206497192383, + "learning_rate": 0.0006, + "loss": 4.113210201263428, + "step": 1094 + }, + { + "epoch": 15.209698558322412, + "grad_norm": 0.26480963826179504, + "learning_rate": 0.0006, + "loss": 4.1103620529174805, + "step": 1095 + }, + { + "epoch": 15.223678462210572, + "grad_norm": 0.24887347221374512, + "learning_rate": 0.0006, + "loss": 4.103529930114746, + "step": 1096 + }, + { + "epoch": 15.237658366098733, + "grad_norm": 0.2344668060541153, + "learning_rate": 0.0006, + "loss": 4.129784107208252, + "step": 1097 + }, + { + "epoch": 15.251638269986893, + "grad_norm": 0.22639742493629456, + "learning_rate": 0.0006, + "loss": 4.113495349884033, + "step": 1098 + }, + { + "epoch": 15.265618173875055, + "grad_norm": 0.22466333210468292, + "learning_rate": 0.0006, + "loss": 4.102309703826904, + "step": 1099 + }, + { + "epoch": 15.279598077763215, + "grad_norm": 0.25135037302970886, + "learning_rate": 0.0006, + "loss": 4.117668628692627, + "step": 1100 + }, + { + "epoch": 15.293577981651376, + "grad_norm": 0.2347089946269989, + "learning_rate": 0.0006, + "loss": 4.086637496948242, + "step": 1101 + }, + { + "epoch": 15.307557885539538, + "grad_norm": 0.2347242832183838, + "learning_rate": 0.0006, + "loss": 4.098714828491211, + "step": 1102 + }, + { + "epoch": 15.321537789427698, + "grad_norm": 0.23990283906459808, + "learning_rate": 0.0006, + "loss": 4.079837799072266, + "step": 1103 + }, + { + "epoch": 15.33551769331586, + "grad_norm": 0.22366675734519958, + "learning_rate": 0.0006, + "loss": 4.108136177062988, + "step": 1104 + }, + { + "epoch": 15.349497597204019, + "grad_norm": 0.21823780238628387, + "learning_rate": 0.0006, + "loss": 4.10054349899292, + "step": 1105 + }, + { + "epoch": 15.36347750109218, + "grad_norm": 0.23059198260307312, + "learning_rate": 0.0006, + "loss": 4.108620643615723, + "step": 1106 + }, + { + "epoch": 15.37745740498034, + "grad_norm": 0.2313755601644516, + "learning_rate": 0.0006, + "loss": 4.088565826416016, + "step": 1107 + }, + { + "epoch": 15.391437308868502, + "grad_norm": 0.2546829283237457, + "learning_rate": 0.0006, + "loss": 4.104948043823242, + "step": 1108 + }, + { + "epoch": 15.405417212756662, + "grad_norm": 0.23666726052761078, + "learning_rate": 0.0006, + "loss": 4.111965179443359, + "step": 1109 + }, + { + "epoch": 15.419397116644824, + "grad_norm": 0.21971021592617035, + "learning_rate": 0.0006, + "loss": 4.097846984863281, + "step": 1110 + }, + { + "epoch": 15.433377020532983, + "grad_norm": 0.20951911807060242, + "learning_rate": 0.0006, + "loss": 4.110099792480469, + "step": 1111 + }, + { + "epoch": 15.447356924421145, + "grad_norm": 0.19590918719768524, + "learning_rate": 0.0006, + "loss": 4.101154327392578, + "step": 1112 + }, + { + "epoch": 15.461336828309305, + "grad_norm": 0.21048946678638458, + "learning_rate": 0.0006, + "loss": 4.0986127853393555, + "step": 1113 + }, + { + "epoch": 15.475316732197467, + "grad_norm": 0.21423374116420746, + "learning_rate": 0.0006, + "loss": 4.082328796386719, + "step": 1114 + }, + { + "epoch": 15.489296636085626, + "grad_norm": 0.227146714925766, + "learning_rate": 0.0006, + "loss": 4.105281829833984, + "step": 1115 + }, + { + "epoch": 15.503276539973788, + "grad_norm": 0.2079153060913086, + "learning_rate": 0.0006, + "loss": 4.100836753845215, + "step": 1116 + }, + { + "epoch": 15.517256443861948, + "grad_norm": 0.21084675192832947, + "learning_rate": 0.0006, + "loss": 4.0934343338012695, + "step": 1117 + }, + { + "epoch": 15.53123634775011, + "grad_norm": 0.23863616585731506, + "learning_rate": 0.0006, + "loss": 4.101540565490723, + "step": 1118 + }, + { + "epoch": 15.54521625163827, + "grad_norm": 0.2518490254878998, + "learning_rate": 0.0006, + "loss": 4.12303352355957, + "step": 1119 + }, + { + "epoch": 15.55919615552643, + "grad_norm": 0.24282905459403992, + "learning_rate": 0.0006, + "loss": 4.080670356750488, + "step": 1120 + }, + { + "epoch": 15.57317605941459, + "grad_norm": 0.24171605706214905, + "learning_rate": 0.0006, + "loss": 4.117938041687012, + "step": 1121 + }, + { + "epoch": 15.587155963302752, + "grad_norm": 0.28453412652015686, + "learning_rate": 0.0006, + "loss": 4.080114364624023, + "step": 1122 + }, + { + "epoch": 15.601135867190912, + "grad_norm": 0.30322617292404175, + "learning_rate": 0.0006, + "loss": 4.079695701599121, + "step": 1123 + }, + { + "epoch": 15.615115771079074, + "grad_norm": 0.2657633125782013, + "learning_rate": 0.0006, + "loss": 4.0916290283203125, + "step": 1124 + }, + { + "epoch": 15.629095674967235, + "grad_norm": 0.2467080056667328, + "learning_rate": 0.0006, + "loss": 4.095594882965088, + "step": 1125 + }, + { + "epoch": 15.643075578855395, + "grad_norm": 0.21767394244670868, + "learning_rate": 0.0006, + "loss": 4.079174041748047, + "step": 1126 + }, + { + "epoch": 15.657055482743557, + "grad_norm": 0.2088327705860138, + "learning_rate": 0.0006, + "loss": 4.060707092285156, + "step": 1127 + }, + { + "epoch": 15.671035386631717, + "grad_norm": 0.1921205073595047, + "learning_rate": 0.0006, + "loss": 4.073911666870117, + "step": 1128 + }, + { + "epoch": 15.685015290519878, + "grad_norm": 0.209339901804924, + "learning_rate": 0.0006, + "loss": 4.089954376220703, + "step": 1129 + }, + { + "epoch": 15.698995194408038, + "grad_norm": 0.23513881862163544, + "learning_rate": 0.0006, + "loss": 4.084906578063965, + "step": 1130 + }, + { + "epoch": 15.7129750982962, + "grad_norm": 0.26140275597572327, + "learning_rate": 0.0006, + "loss": 4.086570739746094, + "step": 1131 + }, + { + "epoch": 15.72695500218436, + "grad_norm": 0.290431946516037, + "learning_rate": 0.0006, + "loss": 4.071229457855225, + "step": 1132 + }, + { + "epoch": 15.740934906072521, + "grad_norm": 0.3061376214027405, + "learning_rate": 0.0006, + "loss": 4.103148460388184, + "step": 1133 + }, + { + "epoch": 15.754914809960681, + "grad_norm": 0.26312482357025146, + "learning_rate": 0.0006, + "loss": 4.088448524475098, + "step": 1134 + }, + { + "epoch": 15.768894713848843, + "grad_norm": 0.22474883496761322, + "learning_rate": 0.0006, + "loss": 4.091766834259033, + "step": 1135 + }, + { + "epoch": 15.782874617737003, + "grad_norm": 0.2341146171092987, + "learning_rate": 0.0006, + "loss": 4.1222758293151855, + "step": 1136 + }, + { + "epoch": 15.796854521625164, + "grad_norm": 0.23556149005889893, + "learning_rate": 0.0006, + "loss": 4.094954013824463, + "step": 1137 + }, + { + "epoch": 15.810834425513324, + "grad_norm": 0.263315349817276, + "learning_rate": 0.0006, + "loss": 4.1065473556518555, + "step": 1138 + }, + { + "epoch": 15.824814329401486, + "grad_norm": 0.2700869143009186, + "learning_rate": 0.0006, + "loss": 4.0890045166015625, + "step": 1139 + }, + { + "epoch": 15.838794233289645, + "grad_norm": 0.28697484731674194, + "learning_rate": 0.0006, + "loss": 4.092496395111084, + "step": 1140 + }, + { + "epoch": 15.852774137177807, + "grad_norm": 0.2824092507362366, + "learning_rate": 0.0006, + "loss": 4.079615592956543, + "step": 1141 + }, + { + "epoch": 15.866754041065967, + "grad_norm": 0.24547280371189117, + "learning_rate": 0.0006, + "loss": 4.089683532714844, + "step": 1142 + }, + { + "epoch": 15.880733944954128, + "grad_norm": 0.23653888702392578, + "learning_rate": 0.0006, + "loss": 4.067309379577637, + "step": 1143 + }, + { + "epoch": 15.89471384884229, + "grad_norm": 0.23784421384334564, + "learning_rate": 0.0006, + "loss": 4.09156608581543, + "step": 1144 + }, + { + "epoch": 15.90869375273045, + "grad_norm": 0.22753281891345978, + "learning_rate": 0.0006, + "loss": 4.095428466796875, + "step": 1145 + }, + { + "epoch": 15.922673656618612, + "grad_norm": 0.2464212030172348, + "learning_rate": 0.0006, + "loss": 4.1036376953125, + "step": 1146 + }, + { + "epoch": 15.936653560506771, + "grad_norm": 0.25531601905822754, + "learning_rate": 0.0006, + "loss": 4.073996543884277, + "step": 1147 + }, + { + "epoch": 15.950633464394933, + "grad_norm": 0.24145905673503876, + "learning_rate": 0.0006, + "loss": 4.094479560852051, + "step": 1148 + }, + { + "epoch": 15.964613368283093, + "grad_norm": 0.24274317920207977, + "learning_rate": 0.0006, + "loss": 4.101981163024902, + "step": 1149 + }, + { + "epoch": 15.978593272171254, + "grad_norm": 0.2350679188966751, + "learning_rate": 0.0006, + "loss": 4.057965278625488, + "step": 1150 + }, + { + "epoch": 15.992573176059414, + "grad_norm": 0.24072253704071045, + "learning_rate": 0.0006, + "loss": 4.020050048828125, + "step": 1151 + }, + { + "epoch": 16.0, + "grad_norm": 0.253978967666626, + "learning_rate": 0.0006, + "loss": 4.061928749084473, + "step": 1152 + }, + { + "epoch": 16.0, + "eval_loss": 4.270665645599365, + "eval_runtime": 44.5063, + "eval_samples_per_second": 54.869, + "eval_steps_per_second": 3.438, + "step": 1152 + }, + { + "epoch": 16.01397990388816, + "grad_norm": 0.3265204131603241, + "learning_rate": 0.0006, + "loss": 4.059116363525391, + "step": 1153 + }, + { + "epoch": 16.027959807776323, + "grad_norm": 0.34139737486839294, + "learning_rate": 0.0006, + "loss": 4.062219619750977, + "step": 1154 + }, + { + "epoch": 16.041939711664483, + "grad_norm": 0.2849949598312378, + "learning_rate": 0.0006, + "loss": 4.032323837280273, + "step": 1155 + }, + { + "epoch": 16.055919615552643, + "grad_norm": 0.25031402707099915, + "learning_rate": 0.0006, + "loss": 4.075527191162109, + "step": 1156 + }, + { + "epoch": 16.069899519440803, + "grad_norm": 0.25207436084747314, + "learning_rate": 0.0006, + "loss": 4.0883097648620605, + "step": 1157 + }, + { + "epoch": 16.083879423328966, + "grad_norm": 0.28677356243133545, + "learning_rate": 0.0006, + "loss": 4.040797233581543, + "step": 1158 + }, + { + "epoch": 16.097859327217126, + "grad_norm": 0.30778825283050537, + "learning_rate": 0.0006, + "loss": 4.051504135131836, + "step": 1159 + }, + { + "epoch": 16.111839231105286, + "grad_norm": 0.3136911988258362, + "learning_rate": 0.0006, + "loss": 4.045449256896973, + "step": 1160 + }, + { + "epoch": 16.125819134993446, + "grad_norm": 0.34384530782699585, + "learning_rate": 0.0006, + "loss": 4.069897651672363, + "step": 1161 + }, + { + "epoch": 16.13979903888161, + "grad_norm": 0.3074268400669098, + "learning_rate": 0.0006, + "loss": 4.0621137619018555, + "step": 1162 + }, + { + "epoch": 16.15377894276977, + "grad_norm": 0.33090949058532715, + "learning_rate": 0.0006, + "loss": 4.084089279174805, + "step": 1163 + }, + { + "epoch": 16.16775884665793, + "grad_norm": 0.26358580589294434, + "learning_rate": 0.0006, + "loss": 4.066563606262207, + "step": 1164 + }, + { + "epoch": 16.18173875054609, + "grad_norm": 0.25586041808128357, + "learning_rate": 0.0006, + "loss": 4.08109188079834, + "step": 1165 + }, + { + "epoch": 16.195718654434252, + "grad_norm": 0.2966184616088867, + "learning_rate": 0.0006, + "loss": 4.039186477661133, + "step": 1166 + }, + { + "epoch": 16.209698558322412, + "grad_norm": 0.3064924478530884, + "learning_rate": 0.0006, + "loss": 4.08139705657959, + "step": 1167 + }, + { + "epoch": 16.22367846221057, + "grad_norm": 0.28671345114707947, + "learning_rate": 0.0006, + "loss": 4.04637336730957, + "step": 1168 + }, + { + "epoch": 16.23765836609873, + "grad_norm": 0.26209691166877747, + "learning_rate": 0.0006, + "loss": 4.052768707275391, + "step": 1169 + }, + { + "epoch": 16.251638269986895, + "grad_norm": 0.2758907079696655, + "learning_rate": 0.0006, + "loss": 4.064321517944336, + "step": 1170 + }, + { + "epoch": 16.265618173875055, + "grad_norm": 0.25961801409721375, + "learning_rate": 0.0006, + "loss": 4.057299613952637, + "step": 1171 + }, + { + "epoch": 16.279598077763215, + "grad_norm": 0.2513751685619354, + "learning_rate": 0.0006, + "loss": 4.064148902893066, + "step": 1172 + }, + { + "epoch": 16.293577981651374, + "grad_norm": 0.23920276761054993, + "learning_rate": 0.0006, + "loss": 4.101890563964844, + "step": 1173 + }, + { + "epoch": 16.307557885539538, + "grad_norm": 0.22746537625789642, + "learning_rate": 0.0006, + "loss": 4.086627006530762, + "step": 1174 + }, + { + "epoch": 16.321537789427698, + "grad_norm": 0.22633525729179382, + "learning_rate": 0.0006, + "loss": 4.04669189453125, + "step": 1175 + }, + { + "epoch": 16.335517693315857, + "grad_norm": 0.2654891610145569, + "learning_rate": 0.0006, + "loss": 4.086793422698975, + "step": 1176 + }, + { + "epoch": 16.34949759720402, + "grad_norm": 0.2872653007507324, + "learning_rate": 0.0006, + "loss": 4.077983856201172, + "step": 1177 + }, + { + "epoch": 16.36347750109218, + "grad_norm": 0.25726038217544556, + "learning_rate": 0.0006, + "loss": 4.066011428833008, + "step": 1178 + }, + { + "epoch": 16.37745740498034, + "grad_norm": 0.2592027485370636, + "learning_rate": 0.0006, + "loss": 4.0482988357543945, + "step": 1179 + }, + { + "epoch": 16.3914373088685, + "grad_norm": 0.2768886685371399, + "learning_rate": 0.0006, + "loss": 4.065151214599609, + "step": 1180 + }, + { + "epoch": 16.405417212756664, + "grad_norm": 0.2956002652645111, + "learning_rate": 0.0006, + "loss": 4.037791728973389, + "step": 1181 + }, + { + "epoch": 16.419397116644824, + "grad_norm": 0.3092120885848999, + "learning_rate": 0.0006, + "loss": 4.062164306640625, + "step": 1182 + }, + { + "epoch": 16.433377020532983, + "grad_norm": 0.29516810178756714, + "learning_rate": 0.0006, + "loss": 4.025505065917969, + "step": 1183 + }, + { + "epoch": 16.447356924421143, + "grad_norm": 0.2640177607536316, + "learning_rate": 0.0006, + "loss": 4.060182571411133, + "step": 1184 + }, + { + "epoch": 16.461336828309307, + "grad_norm": 0.2444908320903778, + "learning_rate": 0.0006, + "loss": 4.046144962310791, + "step": 1185 + }, + { + "epoch": 16.475316732197467, + "grad_norm": 0.23190705478191376, + "learning_rate": 0.0006, + "loss": 4.075569152832031, + "step": 1186 + }, + { + "epoch": 16.489296636085626, + "grad_norm": 0.2383626103401184, + "learning_rate": 0.0006, + "loss": 4.088897705078125, + "step": 1187 + }, + { + "epoch": 16.503276539973786, + "grad_norm": 0.20688803493976593, + "learning_rate": 0.0006, + "loss": 4.064517974853516, + "step": 1188 + }, + { + "epoch": 16.51725644386195, + "grad_norm": 0.22610054910182953, + "learning_rate": 0.0006, + "loss": 4.04502010345459, + "step": 1189 + }, + { + "epoch": 16.53123634775011, + "grad_norm": 0.2014893889427185, + "learning_rate": 0.0006, + "loss": 4.058279514312744, + "step": 1190 + }, + { + "epoch": 16.54521625163827, + "grad_norm": 0.21459777653217316, + "learning_rate": 0.0006, + "loss": 4.066389083862305, + "step": 1191 + }, + { + "epoch": 16.55919615552643, + "grad_norm": 0.22909940779209137, + "learning_rate": 0.0006, + "loss": 4.0557966232299805, + "step": 1192 + }, + { + "epoch": 16.573176059414592, + "grad_norm": 0.20039083063602448, + "learning_rate": 0.0006, + "loss": 4.092845916748047, + "step": 1193 + }, + { + "epoch": 16.587155963302752, + "grad_norm": 0.22651726007461548, + "learning_rate": 0.0006, + "loss": 4.034615516662598, + "step": 1194 + }, + { + "epoch": 16.601135867190912, + "grad_norm": 0.21901755034923553, + "learning_rate": 0.0006, + "loss": 4.035619735717773, + "step": 1195 + }, + { + "epoch": 16.615115771079076, + "grad_norm": 0.22930841147899628, + "learning_rate": 0.0006, + "loss": 4.080800533294678, + "step": 1196 + }, + { + "epoch": 16.629095674967235, + "grad_norm": 0.212818443775177, + "learning_rate": 0.0006, + "loss": 4.030189514160156, + "step": 1197 + }, + { + "epoch": 16.643075578855395, + "grad_norm": 0.2370826154947281, + "learning_rate": 0.0006, + "loss": 4.062643527984619, + "step": 1198 + }, + { + "epoch": 16.657055482743555, + "grad_norm": 0.24786995351314545, + "learning_rate": 0.0006, + "loss": 4.031761169433594, + "step": 1199 + }, + { + "epoch": 16.67103538663172, + "grad_norm": 0.2305847704410553, + "learning_rate": 0.0006, + "loss": 4.083752155303955, + "step": 1200 + }, + { + "epoch": 16.68501529051988, + "grad_norm": 0.23336584866046906, + "learning_rate": 0.0006, + "loss": 4.079145431518555, + "step": 1201 + }, + { + "epoch": 16.698995194408038, + "grad_norm": 0.23976293206214905, + "learning_rate": 0.0006, + "loss": 4.020473957061768, + "step": 1202 + }, + { + "epoch": 16.712975098296198, + "grad_norm": 0.222761869430542, + "learning_rate": 0.0006, + "loss": 4.065582752227783, + "step": 1203 + }, + { + "epoch": 16.72695500218436, + "grad_norm": 0.23725618422031403, + "learning_rate": 0.0006, + "loss": 4.0263776779174805, + "step": 1204 + }, + { + "epoch": 16.74093490607252, + "grad_norm": 0.23873984813690186, + "learning_rate": 0.0006, + "loss": 4.053092956542969, + "step": 1205 + }, + { + "epoch": 16.75491480996068, + "grad_norm": 0.21043002605438232, + "learning_rate": 0.0006, + "loss": 4.063965797424316, + "step": 1206 + }, + { + "epoch": 16.76889471384884, + "grad_norm": 0.19863522052764893, + "learning_rate": 0.0006, + "loss": 4.061187267303467, + "step": 1207 + }, + { + "epoch": 16.782874617737004, + "grad_norm": 0.1953752487897873, + "learning_rate": 0.0006, + "loss": 4.046016693115234, + "step": 1208 + }, + { + "epoch": 16.796854521625164, + "grad_norm": 0.2130361795425415, + "learning_rate": 0.0006, + "loss": 4.066933631896973, + "step": 1209 + }, + { + "epoch": 16.810834425513324, + "grad_norm": 0.19598130881786346, + "learning_rate": 0.0006, + "loss": 4.071558952331543, + "step": 1210 + }, + { + "epoch": 16.824814329401484, + "grad_norm": 0.20331116020679474, + "learning_rate": 0.0006, + "loss": 4.088632106781006, + "step": 1211 + }, + { + "epoch": 16.838794233289647, + "grad_norm": 0.20423150062561035, + "learning_rate": 0.0006, + "loss": 4.032224655151367, + "step": 1212 + }, + { + "epoch": 16.852774137177807, + "grad_norm": 0.2401197850704193, + "learning_rate": 0.0006, + "loss": 4.037393569946289, + "step": 1213 + }, + { + "epoch": 16.866754041065967, + "grad_norm": 0.26102620363235474, + "learning_rate": 0.0006, + "loss": 4.04738712310791, + "step": 1214 + }, + { + "epoch": 16.88073394495413, + "grad_norm": 0.2438521534204483, + "learning_rate": 0.0006, + "loss": 4.015673637390137, + "step": 1215 + }, + { + "epoch": 16.89471384884229, + "grad_norm": 0.20742061734199524, + "learning_rate": 0.0006, + "loss": 4.049060821533203, + "step": 1216 + }, + { + "epoch": 16.90869375273045, + "grad_norm": 0.22028608620166779, + "learning_rate": 0.0006, + "loss": 4.088971138000488, + "step": 1217 + }, + { + "epoch": 16.92267365661861, + "grad_norm": 0.21746744215488434, + "learning_rate": 0.0006, + "loss": 4.021710395812988, + "step": 1218 + }, + { + "epoch": 16.936653560506773, + "grad_norm": 0.2226102203130722, + "learning_rate": 0.0006, + "loss": 4.050119400024414, + "step": 1219 + }, + { + "epoch": 16.950633464394933, + "grad_norm": 0.23903657495975494, + "learning_rate": 0.0006, + "loss": 4.0570526123046875, + "step": 1220 + }, + { + "epoch": 16.964613368283093, + "grad_norm": 0.2556349039077759, + "learning_rate": 0.0006, + "loss": 4.0448808670043945, + "step": 1221 + }, + { + "epoch": 16.978593272171253, + "grad_norm": 0.28445592522621155, + "learning_rate": 0.0006, + "loss": 4.052034378051758, + "step": 1222 + }, + { + "epoch": 16.992573176059416, + "grad_norm": 0.273973673582077, + "learning_rate": 0.0006, + "loss": 4.02907657623291, + "step": 1223 + }, + { + "epoch": 17.0, + "grad_norm": 0.26125091314315796, + "learning_rate": 0.0006, + "loss": 4.10643196105957, + "step": 1224 + }, + { + "epoch": 17.0, + "eval_loss": 4.2585954666137695, + "eval_runtime": 44.8583, + "eval_samples_per_second": 54.438, + "eval_steps_per_second": 3.411, + "step": 1224 + }, + { + "epoch": 17.01397990388816, + "grad_norm": 0.2786196768283844, + "learning_rate": 0.0006, + "loss": 4.044719219207764, + "step": 1225 + }, + { + "epoch": 17.027959807776323, + "grad_norm": 0.2969571650028229, + "learning_rate": 0.0006, + "loss": 4.022037506103516, + "step": 1226 + }, + { + "epoch": 17.041939711664483, + "grad_norm": 0.32196253538131714, + "learning_rate": 0.0006, + "loss": 4.03636360168457, + "step": 1227 + }, + { + "epoch": 17.055919615552643, + "grad_norm": 0.28617000579833984, + "learning_rate": 0.0006, + "loss": 4.012125492095947, + "step": 1228 + }, + { + "epoch": 17.069899519440803, + "grad_norm": 0.26539644598960876, + "learning_rate": 0.0006, + "loss": 4.020190715789795, + "step": 1229 + }, + { + "epoch": 17.083879423328966, + "grad_norm": 0.24315394461154938, + "learning_rate": 0.0006, + "loss": 4.0553812980651855, + "step": 1230 + }, + { + "epoch": 17.097859327217126, + "grad_norm": 0.23798158764839172, + "learning_rate": 0.0006, + "loss": 4.004805088043213, + "step": 1231 + }, + { + "epoch": 17.111839231105286, + "grad_norm": 0.25723618268966675, + "learning_rate": 0.0006, + "loss": 4.00108003616333, + "step": 1232 + }, + { + "epoch": 17.125819134993446, + "grad_norm": 0.2669757604598999, + "learning_rate": 0.0006, + "loss": 4.00828742980957, + "step": 1233 + }, + { + "epoch": 17.13979903888161, + "grad_norm": 0.26421651244163513, + "learning_rate": 0.0006, + "loss": 3.995478391647339, + "step": 1234 + }, + { + "epoch": 17.15377894276977, + "grad_norm": 0.24745801091194153, + "learning_rate": 0.0006, + "loss": 4.0171027183532715, + "step": 1235 + }, + { + "epoch": 17.16775884665793, + "grad_norm": 0.27028775215148926, + "learning_rate": 0.0006, + "loss": 4.017108917236328, + "step": 1236 + }, + { + "epoch": 17.18173875054609, + "grad_norm": 0.27247968316078186, + "learning_rate": 0.0006, + "loss": 4.032601356506348, + "step": 1237 + }, + { + "epoch": 17.195718654434252, + "grad_norm": 0.24620869755744934, + "learning_rate": 0.0006, + "loss": 4.022171974182129, + "step": 1238 + }, + { + "epoch": 17.209698558322412, + "grad_norm": 0.23407386243343353, + "learning_rate": 0.0006, + "loss": 3.9946959018707275, + "step": 1239 + }, + { + "epoch": 17.22367846221057, + "grad_norm": 0.22559069097042084, + "learning_rate": 0.0006, + "loss": 4.013072490692139, + "step": 1240 + }, + { + "epoch": 17.23765836609873, + "grad_norm": 0.226687952876091, + "learning_rate": 0.0006, + "loss": 4.023543834686279, + "step": 1241 + }, + { + "epoch": 17.251638269986895, + "grad_norm": 0.24436360597610474, + "learning_rate": 0.0006, + "loss": 4.044206619262695, + "step": 1242 + }, + { + "epoch": 17.265618173875055, + "grad_norm": 0.25527626276016235, + "learning_rate": 0.0006, + "loss": 4.016424179077148, + "step": 1243 + }, + { + "epoch": 17.279598077763215, + "grad_norm": 0.26126864552497864, + "learning_rate": 0.0006, + "loss": 4.024394512176514, + "step": 1244 + }, + { + "epoch": 17.293577981651374, + "grad_norm": 0.25746744871139526, + "learning_rate": 0.0006, + "loss": 4.046844482421875, + "step": 1245 + }, + { + "epoch": 17.307557885539538, + "grad_norm": 0.26579564809799194, + "learning_rate": 0.0006, + "loss": 4.021010398864746, + "step": 1246 + }, + { + "epoch": 17.321537789427698, + "grad_norm": 0.2713971734046936, + "learning_rate": 0.0006, + "loss": 4.022331237792969, + "step": 1247 + }, + { + "epoch": 17.335517693315857, + "grad_norm": 0.24217180907726288, + "learning_rate": 0.0006, + "loss": 4.006353855133057, + "step": 1248 + }, + { + "epoch": 17.34949759720402, + "grad_norm": 0.26899752020835876, + "learning_rate": 0.0006, + "loss": 4.068023681640625, + "step": 1249 + }, + { + "epoch": 17.36347750109218, + "grad_norm": 0.26745253801345825, + "learning_rate": 0.0006, + "loss": 4.031207084655762, + "step": 1250 + }, + { + "epoch": 17.37745740498034, + "grad_norm": 0.21533764898777008, + "learning_rate": 0.0006, + "loss": 4.042410850524902, + "step": 1251 + }, + { + "epoch": 17.3914373088685, + "grad_norm": 0.21958027780056, + "learning_rate": 0.0006, + "loss": 4.02597713470459, + "step": 1252 + }, + { + "epoch": 17.405417212756664, + "grad_norm": 0.263068825006485, + "learning_rate": 0.0006, + "loss": 4.0035905838012695, + "step": 1253 + }, + { + "epoch": 17.419397116644824, + "grad_norm": 0.24044716358184814, + "learning_rate": 0.0006, + "loss": 4.005317687988281, + "step": 1254 + }, + { + "epoch": 17.433377020532983, + "grad_norm": 0.19142559170722961, + "learning_rate": 0.0006, + "loss": 3.9976844787597656, + "step": 1255 + }, + { + "epoch": 17.447356924421143, + "grad_norm": 0.18650250136852264, + "learning_rate": 0.0006, + "loss": 4.031353950500488, + "step": 1256 + }, + { + "epoch": 17.461336828309307, + "grad_norm": 0.1984022557735443, + "learning_rate": 0.0006, + "loss": 4.002097129821777, + "step": 1257 + }, + { + "epoch": 17.475316732197467, + "grad_norm": 0.20087844133377075, + "learning_rate": 0.0006, + "loss": 4.031151294708252, + "step": 1258 + }, + { + "epoch": 17.489296636085626, + "grad_norm": 0.20881228148937225, + "learning_rate": 0.0006, + "loss": 4.034793853759766, + "step": 1259 + }, + { + "epoch": 17.503276539973786, + "grad_norm": 0.23958556354045868, + "learning_rate": 0.0006, + "loss": 4.025238990783691, + "step": 1260 + }, + { + "epoch": 17.51725644386195, + "grad_norm": 0.23927845060825348, + "learning_rate": 0.0006, + "loss": 3.999828338623047, + "step": 1261 + }, + { + "epoch": 17.53123634775011, + "grad_norm": 0.20342715084552765, + "learning_rate": 0.0006, + "loss": 4.054262161254883, + "step": 1262 + }, + { + "epoch": 17.54521625163827, + "grad_norm": 0.21370555460453033, + "learning_rate": 0.0006, + "loss": 4.011582374572754, + "step": 1263 + }, + { + "epoch": 17.55919615552643, + "grad_norm": 0.23681946098804474, + "learning_rate": 0.0006, + "loss": 4.029694080352783, + "step": 1264 + }, + { + "epoch": 17.573176059414592, + "grad_norm": 0.24190311133861542, + "learning_rate": 0.0006, + "loss": 4.018783092498779, + "step": 1265 + }, + { + "epoch": 17.587155963302752, + "grad_norm": 0.23215509951114655, + "learning_rate": 0.0006, + "loss": 4.009703159332275, + "step": 1266 + }, + { + "epoch": 17.601135867190912, + "grad_norm": 0.21122977137565613, + "learning_rate": 0.0006, + "loss": 4.0345659255981445, + "step": 1267 + }, + { + "epoch": 17.615115771079076, + "grad_norm": 0.2075948715209961, + "learning_rate": 0.0006, + "loss": 4.070703506469727, + "step": 1268 + }, + { + "epoch": 17.629095674967235, + "grad_norm": 0.21667909622192383, + "learning_rate": 0.0006, + "loss": 4.020771503448486, + "step": 1269 + }, + { + "epoch": 17.643075578855395, + "grad_norm": 0.20960724353790283, + "learning_rate": 0.0006, + "loss": 4.026404857635498, + "step": 1270 + }, + { + "epoch": 17.657055482743555, + "grad_norm": 0.22575686872005463, + "learning_rate": 0.0006, + "loss": 4.01981258392334, + "step": 1271 + }, + { + "epoch": 17.67103538663172, + "grad_norm": 0.2565988302230835, + "learning_rate": 0.0006, + "loss": 4.015827178955078, + "step": 1272 + }, + { + "epoch": 17.68501529051988, + "grad_norm": 0.24831551313400269, + "learning_rate": 0.0006, + "loss": 4.012457847595215, + "step": 1273 + }, + { + "epoch": 17.698995194408038, + "grad_norm": 0.22595494985580444, + "learning_rate": 0.0006, + "loss": 4.031386375427246, + "step": 1274 + }, + { + "epoch": 17.712975098296198, + "grad_norm": 0.20687322318553925, + "learning_rate": 0.0006, + "loss": 4.014216423034668, + "step": 1275 + }, + { + "epoch": 17.72695500218436, + "grad_norm": 0.21916012465953827, + "learning_rate": 0.0006, + "loss": 4.037643909454346, + "step": 1276 + }, + { + "epoch": 17.74093490607252, + "grad_norm": 0.2243107706308365, + "learning_rate": 0.0006, + "loss": 4.033044815063477, + "step": 1277 + }, + { + "epoch": 17.75491480996068, + "grad_norm": 0.2402164787054062, + "learning_rate": 0.0006, + "loss": 4.026636123657227, + "step": 1278 + }, + { + "epoch": 17.76889471384884, + "grad_norm": 0.27957046031951904, + "learning_rate": 0.0006, + "loss": 4.0270867347717285, + "step": 1279 + }, + { + "epoch": 17.782874617737004, + "grad_norm": 0.27447596192359924, + "learning_rate": 0.0006, + "loss": 4.0120134353637695, + "step": 1280 + }, + { + "epoch": 17.796854521625164, + "grad_norm": 0.26926323771476746, + "learning_rate": 0.0006, + "loss": 4.027970314025879, + "step": 1281 + }, + { + "epoch": 17.810834425513324, + "grad_norm": 0.2535291314125061, + "learning_rate": 0.0006, + "loss": 4.002565383911133, + "step": 1282 + }, + { + "epoch": 17.824814329401484, + "grad_norm": 0.22639447450637817, + "learning_rate": 0.0006, + "loss": 4.032750606536865, + "step": 1283 + }, + { + "epoch": 17.838794233289647, + "grad_norm": 0.23384462296962738, + "learning_rate": 0.0006, + "loss": 4.03568172454834, + "step": 1284 + }, + { + "epoch": 17.852774137177807, + "grad_norm": 0.22971470654010773, + "learning_rate": 0.0006, + "loss": 4.031299591064453, + "step": 1285 + }, + { + "epoch": 17.866754041065967, + "grad_norm": 0.24540141224861145, + "learning_rate": 0.0006, + "loss": 4.0142669677734375, + "step": 1286 + }, + { + "epoch": 17.88073394495413, + "grad_norm": 0.2304888367652893, + "learning_rate": 0.0006, + "loss": 3.9964895248413086, + "step": 1287 + }, + { + "epoch": 17.89471384884229, + "grad_norm": 0.22082284092903137, + "learning_rate": 0.0006, + "loss": 4.024693489074707, + "step": 1288 + }, + { + "epoch": 17.90869375273045, + "grad_norm": 0.23677092790603638, + "learning_rate": 0.0006, + "loss": 4.002082347869873, + "step": 1289 + }, + { + "epoch": 17.92267365661861, + "grad_norm": 0.23122332990169525, + "learning_rate": 0.0006, + "loss": 4.025351524353027, + "step": 1290 + }, + { + "epoch": 17.936653560506773, + "grad_norm": 0.2548119127750397, + "learning_rate": 0.0006, + "loss": 3.9955825805664062, + "step": 1291 + }, + { + "epoch": 17.950633464394933, + "grad_norm": 0.26950931549072266, + "learning_rate": 0.0006, + "loss": 4.026151180267334, + "step": 1292 + }, + { + "epoch": 17.964613368283093, + "grad_norm": 0.3023233711719513, + "learning_rate": 0.0006, + "loss": 4.006035804748535, + "step": 1293 + }, + { + "epoch": 17.978593272171253, + "grad_norm": 0.3190958499908447, + "learning_rate": 0.0006, + "loss": 4.023565292358398, + "step": 1294 + }, + { + "epoch": 17.992573176059416, + "grad_norm": 0.28878068923950195, + "learning_rate": 0.0006, + "loss": 4.020973205566406, + "step": 1295 + }, + { + "epoch": 18.0, + "grad_norm": 0.27312418818473816, + "learning_rate": 0.0006, + "loss": 3.99906587600708, + "step": 1296 + }, + { + "epoch": 18.0, + "eval_loss": 4.224447250366211, + "eval_runtime": 52.5728, + "eval_samples_per_second": 46.45, + "eval_steps_per_second": 2.91, + "step": 1296 + }, + { + "epoch": 18.01397990388816, + "grad_norm": 0.2567712664604187, + "learning_rate": 0.0006, + "loss": 3.9755055904388428, + "step": 1297 + }, + { + "epoch": 18.027959807776323, + "grad_norm": 0.25048133730888367, + "learning_rate": 0.0006, + "loss": 4.009254455566406, + "step": 1298 + }, + { + "epoch": 18.041939711664483, + "grad_norm": 0.2556909918785095, + "learning_rate": 0.0006, + "loss": 4.001235008239746, + "step": 1299 + }, + { + "epoch": 18.055919615552643, + "grad_norm": 0.2501400113105774, + "learning_rate": 0.0006, + "loss": 3.980726480484009, + "step": 1300 + }, + { + "epoch": 18.069899519440803, + "grad_norm": 0.23977792263031006, + "learning_rate": 0.0006, + "loss": 3.964195728302002, + "step": 1301 + }, + { + "epoch": 18.083879423328966, + "grad_norm": 0.25650718808174133, + "learning_rate": 0.0006, + "loss": 4.015914440155029, + "step": 1302 + }, + { + "epoch": 18.097859327217126, + "grad_norm": 0.234053835272789, + "learning_rate": 0.0006, + "loss": 4.0159149169921875, + "step": 1303 + }, + { + "epoch": 18.111839231105286, + "grad_norm": 0.21967713534832, + "learning_rate": 0.0006, + "loss": 4.0055694580078125, + "step": 1304 + }, + { + "epoch": 18.125819134993446, + "grad_norm": 0.21790878474712372, + "learning_rate": 0.0006, + "loss": 3.986253261566162, + "step": 1305 + }, + { + "epoch": 18.13979903888161, + "grad_norm": 0.22955302894115448, + "learning_rate": 0.0006, + "loss": 3.959421157836914, + "step": 1306 + }, + { + "epoch": 18.15377894276977, + "grad_norm": 0.2559174597263336, + "learning_rate": 0.0006, + "loss": 4.0069756507873535, + "step": 1307 + }, + { + "epoch": 18.16775884665793, + "grad_norm": 0.26132866740226746, + "learning_rate": 0.0006, + "loss": 3.9874095916748047, + "step": 1308 + }, + { + "epoch": 18.18173875054609, + "grad_norm": 0.23258940875530243, + "learning_rate": 0.0006, + "loss": 3.9762492179870605, + "step": 1309 + }, + { + "epoch": 18.195718654434252, + "grad_norm": 0.22347190976142883, + "learning_rate": 0.0006, + "loss": 3.9923410415649414, + "step": 1310 + }, + { + "epoch": 18.209698558322412, + "grad_norm": 0.23095804452896118, + "learning_rate": 0.0006, + "loss": 4.019245624542236, + "step": 1311 + }, + { + "epoch": 18.22367846221057, + "grad_norm": 0.24817052483558655, + "learning_rate": 0.0006, + "loss": 3.9697511196136475, + "step": 1312 + }, + { + "epoch": 18.23765836609873, + "grad_norm": 0.2566024959087372, + "learning_rate": 0.0006, + "loss": 3.978804111480713, + "step": 1313 + }, + { + "epoch": 18.251638269986895, + "grad_norm": 0.2527952790260315, + "learning_rate": 0.0006, + "loss": 3.972018241882324, + "step": 1314 + }, + { + "epoch": 18.265618173875055, + "grad_norm": 0.2508150637149811, + "learning_rate": 0.0006, + "loss": 3.9971275329589844, + "step": 1315 + }, + { + "epoch": 18.279598077763215, + "grad_norm": 0.23242022097110748, + "learning_rate": 0.0006, + "loss": 3.9712045192718506, + "step": 1316 + }, + { + "epoch": 18.293577981651374, + "grad_norm": 0.23474404215812683, + "learning_rate": 0.0006, + "loss": 3.9926767349243164, + "step": 1317 + }, + { + "epoch": 18.307557885539538, + "grad_norm": 0.2417769432067871, + "learning_rate": 0.0006, + "loss": 3.9920949935913086, + "step": 1318 + }, + { + "epoch": 18.321537789427698, + "grad_norm": 0.23839452862739563, + "learning_rate": 0.0006, + "loss": 4.016645431518555, + "step": 1319 + }, + { + "epoch": 18.335517693315857, + "grad_norm": 0.2512452304363251, + "learning_rate": 0.0006, + "loss": 3.97586727142334, + "step": 1320 + }, + { + "epoch": 18.34949759720402, + "grad_norm": 0.27503693103790283, + "learning_rate": 0.0006, + "loss": 4.000148773193359, + "step": 1321 + }, + { + "epoch": 18.36347750109218, + "grad_norm": 0.27830836176872253, + "learning_rate": 0.0006, + "loss": 3.9972195625305176, + "step": 1322 + }, + { + "epoch": 18.37745740498034, + "grad_norm": 0.2571812570095062, + "learning_rate": 0.0006, + "loss": 3.9900810718536377, + "step": 1323 + }, + { + "epoch": 18.3914373088685, + "grad_norm": 0.2310052365064621, + "learning_rate": 0.0006, + "loss": 4.003000259399414, + "step": 1324 + }, + { + "epoch": 18.405417212756664, + "grad_norm": 0.19615735113620758, + "learning_rate": 0.0006, + "loss": 3.9536571502685547, + "step": 1325 + }, + { + "epoch": 18.419397116644824, + "grad_norm": 0.21323896944522858, + "learning_rate": 0.0006, + "loss": 3.977508068084717, + "step": 1326 + }, + { + "epoch": 18.433377020532983, + "grad_norm": 0.21404202282428741, + "learning_rate": 0.0006, + "loss": 4.015361785888672, + "step": 1327 + }, + { + "epoch": 18.447356924421143, + "grad_norm": 0.1991959661245346, + "learning_rate": 0.0006, + "loss": 4.000286102294922, + "step": 1328 + }, + { + "epoch": 18.461336828309307, + "grad_norm": 0.2073599398136139, + "learning_rate": 0.0006, + "loss": 3.973065137863159, + "step": 1329 + }, + { + "epoch": 18.475316732197467, + "grad_norm": 0.2096073031425476, + "learning_rate": 0.0006, + "loss": 3.987032890319824, + "step": 1330 + }, + { + "epoch": 18.489296636085626, + "grad_norm": 0.2380610853433609, + "learning_rate": 0.0006, + "loss": 4.035274505615234, + "step": 1331 + }, + { + "epoch": 18.503276539973786, + "grad_norm": 0.23570716381072998, + "learning_rate": 0.0006, + "loss": 4.010516166687012, + "step": 1332 + }, + { + "epoch": 18.51725644386195, + "grad_norm": 0.24805466830730438, + "learning_rate": 0.0006, + "loss": 3.9750983715057373, + "step": 1333 + }, + { + "epoch": 18.53123634775011, + "grad_norm": 0.25173231959342957, + "learning_rate": 0.0006, + "loss": 3.9742345809936523, + "step": 1334 + }, + { + "epoch": 18.54521625163827, + "grad_norm": 0.24590367078781128, + "learning_rate": 0.0006, + "loss": 4.0037312507629395, + "step": 1335 + }, + { + "epoch": 18.55919615552643, + "grad_norm": 0.24379394948482513, + "learning_rate": 0.0006, + "loss": 3.993858814239502, + "step": 1336 + }, + { + "epoch": 18.573176059414592, + "grad_norm": 0.21708883345127106, + "learning_rate": 0.0006, + "loss": 3.965670585632324, + "step": 1337 + }, + { + "epoch": 18.587155963302752, + "grad_norm": 0.21024051308631897, + "learning_rate": 0.0006, + "loss": 3.987551689147949, + "step": 1338 + }, + { + "epoch": 18.601135867190912, + "grad_norm": 0.23376783728599548, + "learning_rate": 0.0006, + "loss": 4.002841472625732, + "step": 1339 + }, + { + "epoch": 18.615115771079076, + "grad_norm": 0.25350701808929443, + "learning_rate": 0.0006, + "loss": 3.9881370067596436, + "step": 1340 + }, + { + "epoch": 18.629095674967235, + "grad_norm": 0.2542140483856201, + "learning_rate": 0.0006, + "loss": 4.003695964813232, + "step": 1341 + }, + { + "epoch": 18.643075578855395, + "grad_norm": 0.22932685911655426, + "learning_rate": 0.0006, + "loss": 4.0146002769470215, + "step": 1342 + }, + { + "epoch": 18.657055482743555, + "grad_norm": 0.21099458634853363, + "learning_rate": 0.0006, + "loss": 3.970472812652588, + "step": 1343 + }, + { + "epoch": 18.67103538663172, + "grad_norm": 0.2234615832567215, + "learning_rate": 0.0006, + "loss": 3.9821488857269287, + "step": 1344 + }, + { + "epoch": 18.68501529051988, + "grad_norm": 0.230327770113945, + "learning_rate": 0.0006, + "loss": 3.996274948120117, + "step": 1345 + }, + { + "epoch": 18.698995194408038, + "grad_norm": 0.23596233129501343, + "learning_rate": 0.0006, + "loss": 3.9747462272644043, + "step": 1346 + }, + { + "epoch": 18.712975098296198, + "grad_norm": 0.24173159897327423, + "learning_rate": 0.0006, + "loss": 4.011804103851318, + "step": 1347 + }, + { + "epoch": 18.72695500218436, + "grad_norm": 0.24087604880332947, + "learning_rate": 0.0006, + "loss": 4.008726119995117, + "step": 1348 + }, + { + "epoch": 18.74093490607252, + "grad_norm": 0.2457292526960373, + "learning_rate": 0.0006, + "loss": 3.990793228149414, + "step": 1349 + }, + { + "epoch": 18.75491480996068, + "grad_norm": 0.22946089506149292, + "learning_rate": 0.0006, + "loss": 3.980494260787964, + "step": 1350 + }, + { + "epoch": 18.76889471384884, + "grad_norm": 0.22986692190170288, + "learning_rate": 0.0006, + "loss": 3.97006893157959, + "step": 1351 + }, + { + "epoch": 18.782874617737004, + "grad_norm": 0.23358555138111115, + "learning_rate": 0.0006, + "loss": 4.008172035217285, + "step": 1352 + }, + { + "epoch": 18.796854521625164, + "grad_norm": 0.20183615386486053, + "learning_rate": 0.0006, + "loss": 3.9720888137817383, + "step": 1353 + }, + { + "epoch": 18.810834425513324, + "grad_norm": 0.19975653290748596, + "learning_rate": 0.0006, + "loss": 3.9783310890197754, + "step": 1354 + }, + { + "epoch": 18.824814329401484, + "grad_norm": 0.18911021947860718, + "learning_rate": 0.0006, + "loss": 3.985982894897461, + "step": 1355 + }, + { + "epoch": 18.838794233289647, + "grad_norm": 0.15984168648719788, + "learning_rate": 0.0006, + "loss": 3.9740548133850098, + "step": 1356 + }, + { + "epoch": 18.852774137177807, + "grad_norm": 0.1755436211824417, + "learning_rate": 0.0006, + "loss": 4.013090133666992, + "step": 1357 + }, + { + "epoch": 18.866754041065967, + "grad_norm": 0.1798417866230011, + "learning_rate": 0.0006, + "loss": 3.997880697250366, + "step": 1358 + }, + { + "epoch": 18.88073394495413, + "grad_norm": 0.20206265151500702, + "learning_rate": 0.0006, + "loss": 3.9892373085021973, + "step": 1359 + }, + { + "epoch": 18.89471384884229, + "grad_norm": 0.23685456812381744, + "learning_rate": 0.0006, + "loss": 3.9909186363220215, + "step": 1360 + }, + { + "epoch": 18.90869375273045, + "grad_norm": 0.26053836941719055, + "learning_rate": 0.0006, + "loss": 4.00327205657959, + "step": 1361 + }, + { + "epoch": 18.92267365661861, + "grad_norm": 0.26215845346450806, + "learning_rate": 0.0006, + "loss": 3.9714717864990234, + "step": 1362 + }, + { + "epoch": 18.936653560506773, + "grad_norm": 0.2433871030807495, + "learning_rate": 0.0006, + "loss": 3.949416160583496, + "step": 1363 + }, + { + "epoch": 18.950633464394933, + "grad_norm": 0.23331883549690247, + "learning_rate": 0.0006, + "loss": 3.980501413345337, + "step": 1364 + }, + { + "epoch": 18.964613368283093, + "grad_norm": 0.2346954047679901, + "learning_rate": 0.0006, + "loss": 3.9974493980407715, + "step": 1365 + }, + { + "epoch": 18.978593272171253, + "grad_norm": 0.25101345777511597, + "learning_rate": 0.0006, + "loss": 3.9800148010253906, + "step": 1366 + }, + { + "epoch": 18.992573176059416, + "grad_norm": 0.26811933517456055, + "learning_rate": 0.0006, + "loss": 4.0065741539001465, + "step": 1367 + }, + { + "epoch": 19.0, + "grad_norm": 0.2731736898422241, + "learning_rate": 0.0006, + "loss": 4.014575481414795, + "step": 1368 + }, + { + "epoch": 19.0, + "eval_loss": 4.200716972351074, + "eval_runtime": 44.6962, + "eval_samples_per_second": 54.636, + "eval_steps_per_second": 3.423, + "step": 1368 + }, + { + "epoch": 19.01397990388816, + "grad_norm": 0.2517746686935425, + "learning_rate": 0.0006, + "loss": 3.9486539363861084, + "step": 1369 + }, + { + "epoch": 19.027959807776323, + "grad_norm": 0.2482699453830719, + "learning_rate": 0.0006, + "loss": 3.95015287399292, + "step": 1370 + }, + { + "epoch": 19.041939711664483, + "grad_norm": 0.21693618595600128, + "learning_rate": 0.0006, + "loss": 3.970022201538086, + "step": 1371 + }, + { + "epoch": 19.055919615552643, + "grad_norm": 0.2035159319639206, + "learning_rate": 0.0006, + "loss": 3.941457748413086, + "step": 1372 + }, + { + "epoch": 19.069899519440803, + "grad_norm": 0.2201429009437561, + "learning_rate": 0.0006, + "loss": 3.946794033050537, + "step": 1373 + }, + { + "epoch": 19.083879423328966, + "grad_norm": 0.22910255193710327, + "learning_rate": 0.0006, + "loss": 3.94606876373291, + "step": 1374 + }, + { + "epoch": 19.097859327217126, + "grad_norm": 0.22378197312355042, + "learning_rate": 0.0006, + "loss": 3.957899570465088, + "step": 1375 + }, + { + "epoch": 19.111839231105286, + "grad_norm": 0.21728114783763885, + "learning_rate": 0.0006, + "loss": 3.9565982818603516, + "step": 1376 + }, + { + "epoch": 19.125819134993446, + "grad_norm": 0.21887634694576263, + "learning_rate": 0.0006, + "loss": 3.9649534225463867, + "step": 1377 + }, + { + "epoch": 19.13979903888161, + "grad_norm": 0.21892991662025452, + "learning_rate": 0.0006, + "loss": 3.971388101577759, + "step": 1378 + }, + { + "epoch": 19.15377894276977, + "grad_norm": 0.24582402408123016, + "learning_rate": 0.0006, + "loss": 3.9370944499969482, + "step": 1379 + }, + { + "epoch": 19.16775884665793, + "grad_norm": 0.27547118067741394, + "learning_rate": 0.0006, + "loss": 3.939406156539917, + "step": 1380 + }, + { + "epoch": 19.18173875054609, + "grad_norm": 0.3131563365459442, + "learning_rate": 0.0006, + "loss": 3.942620277404785, + "step": 1381 + }, + { + "epoch": 19.195718654434252, + "grad_norm": 0.3211703598499298, + "learning_rate": 0.0006, + "loss": 3.9388349056243896, + "step": 1382 + }, + { + "epoch": 19.209698558322412, + "grad_norm": 0.2791919410228729, + "learning_rate": 0.0006, + "loss": 3.9827399253845215, + "step": 1383 + }, + { + "epoch": 19.22367846221057, + "grad_norm": 0.2872016727924347, + "learning_rate": 0.0006, + "loss": 3.976715087890625, + "step": 1384 + }, + { + "epoch": 19.23765836609873, + "grad_norm": 0.2790389060974121, + "learning_rate": 0.0006, + "loss": 3.952850818634033, + "step": 1385 + }, + { + "epoch": 19.251638269986895, + "grad_norm": 0.31903740763664246, + "learning_rate": 0.0006, + "loss": 3.964506149291992, + "step": 1386 + }, + { + "epoch": 19.265618173875055, + "grad_norm": 0.31013646721839905, + "learning_rate": 0.0006, + "loss": 3.967219352722168, + "step": 1387 + }, + { + "epoch": 19.279598077763215, + "grad_norm": 0.2574339509010315, + "learning_rate": 0.0006, + "loss": 3.979168176651001, + "step": 1388 + }, + { + "epoch": 19.293577981651374, + "grad_norm": 0.24621108174324036, + "learning_rate": 0.0006, + "loss": 3.981734275817871, + "step": 1389 + }, + { + "epoch": 19.307557885539538, + "grad_norm": 0.25113818049430847, + "learning_rate": 0.0006, + "loss": 3.9787755012512207, + "step": 1390 + }, + { + "epoch": 19.321537789427698, + "grad_norm": 0.259971022605896, + "learning_rate": 0.0006, + "loss": 3.9648823738098145, + "step": 1391 + }, + { + "epoch": 19.335517693315857, + "grad_norm": 0.22580404579639435, + "learning_rate": 0.0006, + "loss": 3.9658002853393555, + "step": 1392 + }, + { + "epoch": 19.34949759720402, + "grad_norm": 0.2133680284023285, + "learning_rate": 0.0006, + "loss": 3.9615914821624756, + "step": 1393 + }, + { + "epoch": 19.36347750109218, + "grad_norm": 0.2387680858373642, + "learning_rate": 0.0006, + "loss": 3.993811845779419, + "step": 1394 + }, + { + "epoch": 19.37745740498034, + "grad_norm": 0.26086220145225525, + "learning_rate": 0.0006, + "loss": 3.932701826095581, + "step": 1395 + }, + { + "epoch": 19.3914373088685, + "grad_norm": 0.23255233466625214, + "learning_rate": 0.0006, + "loss": 3.8969321250915527, + "step": 1396 + }, + { + "epoch": 19.405417212756664, + "grad_norm": 0.22894541919231415, + "learning_rate": 0.0006, + "loss": 3.9569311141967773, + "step": 1397 + }, + { + "epoch": 19.419397116644824, + "grad_norm": 0.2254200130701065, + "learning_rate": 0.0006, + "loss": 3.953199863433838, + "step": 1398 + }, + { + "epoch": 19.433377020532983, + "grad_norm": 0.25802481174468994, + "learning_rate": 0.0006, + "loss": 3.9714815616607666, + "step": 1399 + }, + { + "epoch": 19.447356924421143, + "grad_norm": 0.24725162982940674, + "learning_rate": 0.0006, + "loss": 3.957339286804199, + "step": 1400 + }, + { + "epoch": 19.461336828309307, + "grad_norm": 0.2162018120288849, + "learning_rate": 0.0006, + "loss": 3.986801862716675, + "step": 1401 + }, + { + "epoch": 19.475316732197467, + "grad_norm": 0.21530906856060028, + "learning_rate": 0.0006, + "loss": 3.9766759872436523, + "step": 1402 + }, + { + "epoch": 19.489296636085626, + "grad_norm": 0.20260323584079742, + "learning_rate": 0.0006, + "loss": 3.9576425552368164, + "step": 1403 + }, + { + "epoch": 19.503276539973786, + "grad_norm": 0.188974529504776, + "learning_rate": 0.0006, + "loss": 3.9852395057678223, + "step": 1404 + }, + { + "epoch": 19.51725644386195, + "grad_norm": 0.19727374613285065, + "learning_rate": 0.0006, + "loss": 3.972484588623047, + "step": 1405 + }, + { + "epoch": 19.53123634775011, + "grad_norm": 0.23708008229732513, + "learning_rate": 0.0006, + "loss": 3.992471694946289, + "step": 1406 + }, + { + "epoch": 19.54521625163827, + "grad_norm": 0.23783449828624725, + "learning_rate": 0.0006, + "loss": 3.9788265228271484, + "step": 1407 + }, + { + "epoch": 19.55919615552643, + "grad_norm": 0.24744364619255066, + "learning_rate": 0.0006, + "loss": 3.9559011459350586, + "step": 1408 + }, + { + "epoch": 19.573176059414592, + "grad_norm": 0.24828094244003296, + "learning_rate": 0.0006, + "loss": 3.9663949012756348, + "step": 1409 + }, + { + "epoch": 19.587155963302752, + "grad_norm": 0.2681315541267395, + "learning_rate": 0.0006, + "loss": 3.9581191539764404, + "step": 1410 + }, + { + "epoch": 19.601135867190912, + "grad_norm": 0.2691532373428345, + "learning_rate": 0.0006, + "loss": 3.9832754135131836, + "step": 1411 + }, + { + "epoch": 19.615115771079076, + "grad_norm": 0.2900252640247345, + "learning_rate": 0.0006, + "loss": 3.984365940093994, + "step": 1412 + }, + { + "epoch": 19.629095674967235, + "grad_norm": 0.3194943070411682, + "learning_rate": 0.0006, + "loss": 3.9856505393981934, + "step": 1413 + }, + { + "epoch": 19.643075578855395, + "grad_norm": 0.3029029071331024, + "learning_rate": 0.0006, + "loss": 3.968992233276367, + "step": 1414 + }, + { + "epoch": 19.657055482743555, + "grad_norm": 0.2658176124095917, + "learning_rate": 0.0006, + "loss": 3.995187282562256, + "step": 1415 + }, + { + "epoch": 19.67103538663172, + "grad_norm": 0.26807504892349243, + "learning_rate": 0.0006, + "loss": 3.9756274223327637, + "step": 1416 + }, + { + "epoch": 19.68501529051988, + "grad_norm": 0.27718642354011536, + "learning_rate": 0.0006, + "loss": 3.9510018825531006, + "step": 1417 + }, + { + "epoch": 19.698995194408038, + "grad_norm": 0.26322051882743835, + "learning_rate": 0.0006, + "loss": 3.965155601501465, + "step": 1418 + }, + { + "epoch": 19.712975098296198, + "grad_norm": 0.2566570043563843, + "learning_rate": 0.0006, + "loss": 3.984218120574951, + "step": 1419 + }, + { + "epoch": 19.72695500218436, + "grad_norm": 0.2218743860721588, + "learning_rate": 0.0006, + "loss": 3.9338784217834473, + "step": 1420 + }, + { + "epoch": 19.74093490607252, + "grad_norm": 0.22894173860549927, + "learning_rate": 0.0006, + "loss": 3.9869046211242676, + "step": 1421 + }, + { + "epoch": 19.75491480996068, + "grad_norm": 0.26837027072906494, + "learning_rate": 0.0006, + "loss": 3.96799898147583, + "step": 1422 + }, + { + "epoch": 19.76889471384884, + "grad_norm": 0.2767876982688904, + "learning_rate": 0.0006, + "loss": 3.9431071281433105, + "step": 1423 + }, + { + "epoch": 19.782874617737004, + "grad_norm": 0.24402284622192383, + "learning_rate": 0.0006, + "loss": 3.9631881713867188, + "step": 1424 + }, + { + "epoch": 19.796854521625164, + "grad_norm": 0.23500724136829376, + "learning_rate": 0.0006, + "loss": 3.9943337440490723, + "step": 1425 + }, + { + "epoch": 19.810834425513324, + "grad_norm": 0.22509142756462097, + "learning_rate": 0.0006, + "loss": 3.961226224899292, + "step": 1426 + }, + { + "epoch": 19.824814329401484, + "grad_norm": 0.23524795472621918, + "learning_rate": 0.0006, + "loss": 3.9552102088928223, + "step": 1427 + }, + { + "epoch": 19.838794233289647, + "grad_norm": 0.22307050228118896, + "learning_rate": 0.0006, + "loss": 3.9623494148254395, + "step": 1428 + }, + { + "epoch": 19.852774137177807, + "grad_norm": 0.21144486963748932, + "learning_rate": 0.0006, + "loss": 3.9620237350463867, + "step": 1429 + }, + { + "epoch": 19.866754041065967, + "grad_norm": 0.20249812304973602, + "learning_rate": 0.0006, + "loss": 3.953911066055298, + "step": 1430 + }, + { + "epoch": 19.88073394495413, + "grad_norm": 0.2350354939699173, + "learning_rate": 0.0006, + "loss": 3.9616730213165283, + "step": 1431 + }, + { + "epoch": 19.89471384884229, + "grad_norm": 0.2566683292388916, + "learning_rate": 0.0006, + "loss": 3.9372501373291016, + "step": 1432 + }, + { + "epoch": 19.90869375273045, + "grad_norm": 0.2520846128463745, + "learning_rate": 0.0006, + "loss": 3.9814648628234863, + "step": 1433 + }, + { + "epoch": 19.92267365661861, + "grad_norm": 0.23989640176296234, + "learning_rate": 0.0006, + "loss": 3.9692864418029785, + "step": 1434 + }, + { + "epoch": 19.936653560506773, + "grad_norm": 0.20650425553321838, + "learning_rate": 0.0006, + "loss": 3.960256814956665, + "step": 1435 + }, + { + "epoch": 19.950633464394933, + "grad_norm": 0.20478376746177673, + "learning_rate": 0.0006, + "loss": 3.9585227966308594, + "step": 1436 + }, + { + "epoch": 19.964613368283093, + "grad_norm": 0.234436497092247, + "learning_rate": 0.0006, + "loss": 3.945631742477417, + "step": 1437 + }, + { + "epoch": 19.978593272171253, + "grad_norm": 0.19969749450683594, + "learning_rate": 0.0006, + "loss": 3.9646050930023193, + "step": 1438 + }, + { + "epoch": 19.992573176059416, + "grad_norm": 0.20638690888881683, + "learning_rate": 0.0006, + "loss": 3.9461846351623535, + "step": 1439 + }, + { + "epoch": 20.0, + "grad_norm": 0.2120274156332016, + "learning_rate": 0.0006, + "loss": 3.965153217315674, + "step": 1440 + }, + { + "epoch": 20.0, + "eval_loss": 4.168524742126465, + "eval_runtime": 44.2796, + "eval_samples_per_second": 55.15, + "eval_steps_per_second": 3.455, + "step": 1440 + }, + { + "epoch": 20.01397990388816, + "grad_norm": 0.19704894721508026, + "learning_rate": 0.0006, + "loss": 3.937016248703003, + "step": 1441 + }, + { + "epoch": 20.027959807776323, + "grad_norm": 0.18682368099689484, + "learning_rate": 0.0006, + "loss": 3.895922899246216, + "step": 1442 + }, + { + "epoch": 20.041939711664483, + "grad_norm": 0.18982571363449097, + "learning_rate": 0.0006, + "loss": 3.929841995239258, + "step": 1443 + }, + { + "epoch": 20.055919615552643, + "grad_norm": 0.20811910927295685, + "learning_rate": 0.0006, + "loss": 3.9498324394226074, + "step": 1444 + }, + { + "epoch": 20.069899519440803, + "grad_norm": 0.2149062603712082, + "learning_rate": 0.0006, + "loss": 3.929853916168213, + "step": 1445 + }, + { + "epoch": 20.083879423328966, + "grad_norm": 0.20016685128211975, + "learning_rate": 0.0006, + "loss": 3.9374136924743652, + "step": 1446 + }, + { + "epoch": 20.097859327217126, + "grad_norm": 0.19969616830348969, + "learning_rate": 0.0006, + "loss": 3.932447910308838, + "step": 1447 + }, + { + "epoch": 20.111839231105286, + "grad_norm": 0.2163356989622116, + "learning_rate": 0.0006, + "loss": 3.9325437545776367, + "step": 1448 + }, + { + "epoch": 20.125819134993446, + "grad_norm": 0.22026969492435455, + "learning_rate": 0.0006, + "loss": 3.9118852615356445, + "step": 1449 + }, + { + "epoch": 20.13979903888161, + "grad_norm": 0.23337116837501526, + "learning_rate": 0.0006, + "loss": 3.9416019916534424, + "step": 1450 + }, + { + "epoch": 20.15377894276977, + "grad_norm": 0.23971447348594666, + "learning_rate": 0.0006, + "loss": 3.9416871070861816, + "step": 1451 + }, + { + "epoch": 20.16775884665793, + "grad_norm": 0.25973960757255554, + "learning_rate": 0.0006, + "loss": 3.93826961517334, + "step": 1452 + }, + { + "epoch": 20.18173875054609, + "grad_norm": 0.2303445190191269, + "learning_rate": 0.0006, + "loss": 3.909383535385132, + "step": 1453 + }, + { + "epoch": 20.195718654434252, + "grad_norm": 0.21090206503868103, + "learning_rate": 0.0006, + "loss": 3.935939311981201, + "step": 1454 + }, + { + "epoch": 20.209698558322412, + "grad_norm": 0.2278691977262497, + "learning_rate": 0.0006, + "loss": 3.9623684883117676, + "step": 1455 + }, + { + "epoch": 20.22367846221057, + "grad_norm": 0.22291512787342072, + "learning_rate": 0.0006, + "loss": 3.9386210441589355, + "step": 1456 + }, + { + "epoch": 20.23765836609873, + "grad_norm": 0.2385793924331665, + "learning_rate": 0.0006, + "loss": 3.927365303039551, + "step": 1457 + }, + { + "epoch": 20.251638269986895, + "grad_norm": 0.23949867486953735, + "learning_rate": 0.0006, + "loss": 3.956698179244995, + "step": 1458 + }, + { + "epoch": 20.265618173875055, + "grad_norm": 0.2232269048690796, + "learning_rate": 0.0006, + "loss": 3.9465065002441406, + "step": 1459 + }, + { + "epoch": 20.279598077763215, + "grad_norm": 0.22286680340766907, + "learning_rate": 0.0006, + "loss": 3.9102284908294678, + "step": 1460 + }, + { + "epoch": 20.293577981651374, + "grad_norm": 0.24039050936698914, + "learning_rate": 0.0006, + "loss": 3.928055763244629, + "step": 1461 + }, + { + "epoch": 20.307557885539538, + "grad_norm": 0.2532738447189331, + "learning_rate": 0.0006, + "loss": 3.931753635406494, + "step": 1462 + }, + { + "epoch": 20.321537789427698, + "grad_norm": 0.2206273376941681, + "learning_rate": 0.0006, + "loss": 3.936119556427002, + "step": 1463 + }, + { + "epoch": 20.335517693315857, + "grad_norm": 0.20918945968151093, + "learning_rate": 0.0006, + "loss": 3.9228529930114746, + "step": 1464 + }, + { + "epoch": 20.34949759720402, + "grad_norm": 0.2324502319097519, + "learning_rate": 0.0006, + "loss": 3.9370768070220947, + "step": 1465 + }, + { + "epoch": 20.36347750109218, + "grad_norm": 0.26811033487319946, + "learning_rate": 0.0006, + "loss": 3.968515396118164, + "step": 1466 + }, + { + "epoch": 20.37745740498034, + "grad_norm": 0.2896045744419098, + "learning_rate": 0.0006, + "loss": 3.945124626159668, + "step": 1467 + }, + { + "epoch": 20.3914373088685, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 3.9399516582489014, + "step": 1468 + }, + { + "epoch": 20.405417212756664, + "grad_norm": 0.3076821565628052, + "learning_rate": 0.0006, + "loss": 3.9545583724975586, + "step": 1469 + }, + { + "epoch": 20.419397116644824, + "grad_norm": 0.3019449710845947, + "learning_rate": 0.0006, + "loss": 3.9502270221710205, + "step": 1470 + }, + { + "epoch": 20.433377020532983, + "grad_norm": 0.31832560896873474, + "learning_rate": 0.0006, + "loss": 3.940439224243164, + "step": 1471 + }, + { + "epoch": 20.447356924421143, + "grad_norm": 0.30303657054901123, + "learning_rate": 0.0006, + "loss": 3.9451770782470703, + "step": 1472 + }, + { + "epoch": 20.461336828309307, + "grad_norm": 0.28122979402542114, + "learning_rate": 0.0006, + "loss": 3.934508800506592, + "step": 1473 + }, + { + "epoch": 20.475316732197467, + "grad_norm": 0.27013441920280457, + "learning_rate": 0.0006, + "loss": 3.924323081970215, + "step": 1474 + }, + { + "epoch": 20.489296636085626, + "grad_norm": 0.29052063822746277, + "learning_rate": 0.0006, + "loss": 3.970916748046875, + "step": 1475 + }, + { + "epoch": 20.503276539973786, + "grad_norm": 0.2871626913547516, + "learning_rate": 0.0006, + "loss": 3.945425033569336, + "step": 1476 + }, + { + "epoch": 20.51725644386195, + "grad_norm": 0.2396184206008911, + "learning_rate": 0.0006, + "loss": 3.964290142059326, + "step": 1477 + }, + { + "epoch": 20.53123634775011, + "grad_norm": 0.21942107379436493, + "learning_rate": 0.0006, + "loss": 3.910101890563965, + "step": 1478 + }, + { + "epoch": 20.54521625163827, + "grad_norm": 0.22193685173988342, + "learning_rate": 0.0006, + "loss": 3.914005756378174, + "step": 1479 + }, + { + "epoch": 20.55919615552643, + "grad_norm": 0.20207515358924866, + "learning_rate": 0.0006, + "loss": 3.9575581550598145, + "step": 1480 + }, + { + "epoch": 20.573176059414592, + "grad_norm": 0.17855247855186462, + "learning_rate": 0.0006, + "loss": 3.941490411758423, + "step": 1481 + }, + { + "epoch": 20.587155963302752, + "grad_norm": 0.21268485486507416, + "learning_rate": 0.0006, + "loss": 3.94045352935791, + "step": 1482 + }, + { + "epoch": 20.601135867190912, + "grad_norm": 0.24890053272247314, + "learning_rate": 0.0006, + "loss": 3.932961940765381, + "step": 1483 + }, + { + "epoch": 20.615115771079076, + "grad_norm": 0.23771314322948456, + "learning_rate": 0.0006, + "loss": 3.9067630767822266, + "step": 1484 + }, + { + "epoch": 20.629095674967235, + "grad_norm": 0.20990237593650818, + "learning_rate": 0.0006, + "loss": 3.9476752281188965, + "step": 1485 + }, + { + "epoch": 20.643075578855395, + "grad_norm": 0.20058798789978027, + "learning_rate": 0.0006, + "loss": 3.9350547790527344, + "step": 1486 + }, + { + "epoch": 20.657055482743555, + "grad_norm": 0.1953001767396927, + "learning_rate": 0.0006, + "loss": 3.9437222480773926, + "step": 1487 + }, + { + "epoch": 20.67103538663172, + "grad_norm": 0.18748535215854645, + "learning_rate": 0.0006, + "loss": 3.9336047172546387, + "step": 1488 + }, + { + "epoch": 20.68501529051988, + "grad_norm": 0.18874801695346832, + "learning_rate": 0.0006, + "loss": 3.9042580127716064, + "step": 1489 + }, + { + "epoch": 20.698995194408038, + "grad_norm": 0.1844169795513153, + "learning_rate": 0.0006, + "loss": 3.9302420616149902, + "step": 1490 + }, + { + "epoch": 20.712975098296198, + "grad_norm": 0.18519413471221924, + "learning_rate": 0.0006, + "loss": 3.9527437686920166, + "step": 1491 + }, + { + "epoch": 20.72695500218436, + "grad_norm": 0.20084598660469055, + "learning_rate": 0.0006, + "loss": 3.9161760807037354, + "step": 1492 + }, + { + "epoch": 20.74093490607252, + "grad_norm": 0.2015734612941742, + "learning_rate": 0.0006, + "loss": 3.9466545581817627, + "step": 1493 + }, + { + "epoch": 20.75491480996068, + "grad_norm": 0.2210122048854828, + "learning_rate": 0.0006, + "loss": 3.8994693756103516, + "step": 1494 + }, + { + "epoch": 20.76889471384884, + "grad_norm": 0.23019762337207794, + "learning_rate": 0.0006, + "loss": 3.93685245513916, + "step": 1495 + }, + { + "epoch": 20.782874617737004, + "grad_norm": 0.21246281266212463, + "learning_rate": 0.0006, + "loss": 3.9499399662017822, + "step": 1496 + }, + { + "epoch": 20.796854521625164, + "grad_norm": 0.21142810583114624, + "learning_rate": 0.0006, + "loss": 3.9317150115966797, + "step": 1497 + }, + { + "epoch": 20.810834425513324, + "grad_norm": 0.20230524241924286, + "learning_rate": 0.0006, + "loss": 3.9389750957489014, + "step": 1498 + }, + { + "epoch": 20.824814329401484, + "grad_norm": 0.21096977591514587, + "learning_rate": 0.0006, + "loss": 3.9325194358825684, + "step": 1499 + }, + { + "epoch": 20.838794233289647, + "grad_norm": 0.2309989333152771, + "learning_rate": 0.0006, + "loss": 3.943641185760498, + "step": 1500 + }, + { + "epoch": 20.852774137177807, + "grad_norm": 0.2016306221485138, + "learning_rate": 0.0006, + "loss": 3.986043930053711, + "step": 1501 + }, + { + "epoch": 20.866754041065967, + "grad_norm": 0.2107970118522644, + "learning_rate": 0.0006, + "loss": 3.9219160079956055, + "step": 1502 + }, + { + "epoch": 20.88073394495413, + "grad_norm": 0.21580125391483307, + "learning_rate": 0.0006, + "loss": 3.942014694213867, + "step": 1503 + }, + { + "epoch": 20.89471384884229, + "grad_norm": 0.21348726749420166, + "learning_rate": 0.0006, + "loss": 3.9389920234680176, + "step": 1504 + }, + { + "epoch": 20.90869375273045, + "grad_norm": 0.23094943165779114, + "learning_rate": 0.0006, + "loss": 3.952993392944336, + "step": 1505 + }, + { + "epoch": 20.92267365661861, + "grad_norm": 0.22431740164756775, + "learning_rate": 0.0006, + "loss": 3.897671937942505, + "step": 1506 + }, + { + "epoch": 20.936653560506773, + "grad_norm": 0.20056353509426117, + "learning_rate": 0.0006, + "loss": 3.9100005626678467, + "step": 1507 + }, + { + "epoch": 20.950633464394933, + "grad_norm": 0.20604434609413147, + "learning_rate": 0.0006, + "loss": 3.9486045837402344, + "step": 1508 + }, + { + "epoch": 20.964613368283093, + "grad_norm": 0.22979380190372467, + "learning_rate": 0.0006, + "loss": 3.977163553237915, + "step": 1509 + }, + { + "epoch": 20.978593272171253, + "grad_norm": 0.2421523779630661, + "learning_rate": 0.0006, + "loss": 3.9216256141662598, + "step": 1510 + }, + { + "epoch": 20.992573176059416, + "grad_norm": 0.25776705145835876, + "learning_rate": 0.0006, + "loss": 3.9221739768981934, + "step": 1511 + }, + { + "epoch": 21.0, + "grad_norm": 0.2750694751739502, + "learning_rate": 0.0006, + "loss": 3.938098907470703, + "step": 1512 + }, + { + "epoch": 21.0, + "eval_loss": 4.159763336181641, + "eval_runtime": 44.8663, + "eval_samples_per_second": 54.428, + "eval_steps_per_second": 3.41, + "step": 1512 + }, + { + "epoch": 21.01397990388816, + "grad_norm": 0.24513043463230133, + "learning_rate": 0.0006, + "loss": 3.8939385414123535, + "step": 1513 + }, + { + "epoch": 21.027959807776323, + "grad_norm": 0.22209352254867554, + "learning_rate": 0.0006, + "loss": 3.9044857025146484, + "step": 1514 + }, + { + "epoch": 21.041939711664483, + "grad_norm": 0.22437648475170135, + "learning_rate": 0.0006, + "loss": 3.9325196743011475, + "step": 1515 + }, + { + "epoch": 21.055919615552643, + "grad_norm": 0.21168062090873718, + "learning_rate": 0.0006, + "loss": 3.882176637649536, + "step": 1516 + }, + { + "epoch": 21.069899519440803, + "grad_norm": 0.22334499657154083, + "learning_rate": 0.0006, + "loss": 3.8978934288024902, + "step": 1517 + }, + { + "epoch": 21.083879423328966, + "grad_norm": 0.21038010716438293, + "learning_rate": 0.0006, + "loss": 3.8807029724121094, + "step": 1518 + }, + { + "epoch": 21.097859327217126, + "grad_norm": 0.2243613600730896, + "learning_rate": 0.0006, + "loss": 3.924865961074829, + "step": 1519 + }, + { + "epoch": 21.111839231105286, + "grad_norm": 0.2535616159439087, + "learning_rate": 0.0006, + "loss": 3.9288227558135986, + "step": 1520 + }, + { + "epoch": 21.125819134993446, + "grad_norm": 0.2782756984233856, + "learning_rate": 0.0006, + "loss": 3.908233642578125, + "step": 1521 + }, + { + "epoch": 21.13979903888161, + "grad_norm": 0.2586214542388916, + "learning_rate": 0.0006, + "loss": 3.9151182174682617, + "step": 1522 + }, + { + "epoch": 21.15377894276977, + "grad_norm": 0.22465091943740845, + "learning_rate": 0.0006, + "loss": 3.9209084510803223, + "step": 1523 + }, + { + "epoch": 21.16775884665793, + "grad_norm": 0.2588018774986267, + "learning_rate": 0.0006, + "loss": 3.9295971393585205, + "step": 1524 + }, + { + "epoch": 21.18173875054609, + "grad_norm": 0.2637675702571869, + "learning_rate": 0.0006, + "loss": 3.9353199005126953, + "step": 1525 + }, + { + "epoch": 21.195718654434252, + "grad_norm": 0.2806383967399597, + "learning_rate": 0.0006, + "loss": 3.922337770462036, + "step": 1526 + }, + { + "epoch": 21.209698558322412, + "grad_norm": 0.27103501558303833, + "learning_rate": 0.0006, + "loss": 3.8811073303222656, + "step": 1527 + }, + { + "epoch": 21.22367846221057, + "grad_norm": 0.27203720808029175, + "learning_rate": 0.0006, + "loss": 3.9036178588867188, + "step": 1528 + }, + { + "epoch": 21.23765836609873, + "grad_norm": 0.2783355712890625, + "learning_rate": 0.0006, + "loss": 3.885456085205078, + "step": 1529 + }, + { + "epoch": 21.251638269986895, + "grad_norm": 0.2884930968284607, + "learning_rate": 0.0006, + "loss": 3.8936941623687744, + "step": 1530 + }, + { + "epoch": 21.265618173875055, + "grad_norm": 0.2829558849334717, + "learning_rate": 0.0006, + "loss": 3.927624225616455, + "step": 1531 + }, + { + "epoch": 21.279598077763215, + "grad_norm": 0.2809497117996216, + "learning_rate": 0.0006, + "loss": 3.8896753787994385, + "step": 1532 + }, + { + "epoch": 21.293577981651374, + "grad_norm": 0.27037671208381653, + "learning_rate": 0.0006, + "loss": 3.91316294670105, + "step": 1533 + }, + { + "epoch": 21.307557885539538, + "grad_norm": 0.310051292181015, + "learning_rate": 0.0006, + "loss": 3.9137332439422607, + "step": 1534 + }, + { + "epoch": 21.321537789427698, + "grad_norm": 0.30489876866340637, + "learning_rate": 0.0006, + "loss": 3.9088284969329834, + "step": 1535 + }, + { + "epoch": 21.335517693315857, + "grad_norm": 0.2607756555080414, + "learning_rate": 0.0006, + "loss": 3.9097847938537598, + "step": 1536 + }, + { + "epoch": 21.34949759720402, + "grad_norm": 0.2460775375366211, + "learning_rate": 0.0006, + "loss": 3.941211700439453, + "step": 1537 + }, + { + "epoch": 21.36347750109218, + "grad_norm": 0.24271734058856964, + "learning_rate": 0.0006, + "loss": 3.9140594005584717, + "step": 1538 + }, + { + "epoch": 21.37745740498034, + "grad_norm": 0.20012645423412323, + "learning_rate": 0.0006, + "loss": 3.888446807861328, + "step": 1539 + }, + { + "epoch": 21.3914373088685, + "grad_norm": 0.2196308672428131, + "learning_rate": 0.0006, + "loss": 3.9153785705566406, + "step": 1540 + }, + { + "epoch": 21.405417212756664, + "grad_norm": 0.22184589505195618, + "learning_rate": 0.0006, + "loss": 3.91996431350708, + "step": 1541 + }, + { + "epoch": 21.419397116644824, + "grad_norm": 0.22947315871715546, + "learning_rate": 0.0006, + "loss": 3.9268412590026855, + "step": 1542 + }, + { + "epoch": 21.433377020532983, + "grad_norm": 0.22275054454803467, + "learning_rate": 0.0006, + "loss": 3.909275531768799, + "step": 1543 + }, + { + "epoch": 21.447356924421143, + "grad_norm": 0.23103971779346466, + "learning_rate": 0.0006, + "loss": 3.925635814666748, + "step": 1544 + }, + { + "epoch": 21.461336828309307, + "grad_norm": 0.23379720747470856, + "learning_rate": 0.0006, + "loss": 3.926647186279297, + "step": 1545 + }, + { + "epoch": 21.475316732197467, + "grad_norm": 0.2244282215833664, + "learning_rate": 0.0006, + "loss": 3.9428000450134277, + "step": 1546 + }, + { + "epoch": 21.489296636085626, + "grad_norm": 0.22773298621177673, + "learning_rate": 0.0006, + "loss": 3.9378256797790527, + "step": 1547 + }, + { + "epoch": 21.503276539973786, + "grad_norm": 0.1918657273054123, + "learning_rate": 0.0006, + "loss": 3.904022216796875, + "step": 1548 + }, + { + "epoch": 21.51725644386195, + "grad_norm": 0.18415570259094238, + "learning_rate": 0.0006, + "loss": 3.9105122089385986, + "step": 1549 + }, + { + "epoch": 21.53123634775011, + "grad_norm": 0.22141380608081818, + "learning_rate": 0.0006, + "loss": 3.9153857231140137, + "step": 1550 + }, + { + "epoch": 21.54521625163827, + "grad_norm": 0.22533352673053741, + "learning_rate": 0.0006, + "loss": 3.9148974418640137, + "step": 1551 + }, + { + "epoch": 21.55919615552643, + "grad_norm": 0.2124762088060379, + "learning_rate": 0.0006, + "loss": 3.926311731338501, + "step": 1552 + }, + { + "epoch": 21.573176059414592, + "grad_norm": 0.239680215716362, + "learning_rate": 0.0006, + "loss": 3.9260334968566895, + "step": 1553 + }, + { + "epoch": 21.587155963302752, + "grad_norm": 0.24158740043640137, + "learning_rate": 0.0006, + "loss": 3.933223247528076, + "step": 1554 + }, + { + "epoch": 21.601135867190912, + "grad_norm": 0.2216576784849167, + "learning_rate": 0.0006, + "loss": 3.9065442085266113, + "step": 1555 + }, + { + "epoch": 21.615115771079076, + "grad_norm": 0.20099912583827972, + "learning_rate": 0.0006, + "loss": 3.923278570175171, + "step": 1556 + }, + { + "epoch": 21.629095674967235, + "grad_norm": 0.2337288111448288, + "learning_rate": 0.0006, + "loss": 3.92032527923584, + "step": 1557 + }, + { + "epoch": 21.643075578855395, + "grad_norm": 0.23574814200401306, + "learning_rate": 0.0006, + "loss": 3.896244525909424, + "step": 1558 + }, + { + "epoch": 21.657055482743555, + "grad_norm": 0.21338573098182678, + "learning_rate": 0.0006, + "loss": 3.930345058441162, + "step": 1559 + }, + { + "epoch": 21.67103538663172, + "grad_norm": 0.2375067174434662, + "learning_rate": 0.0006, + "loss": 3.864104986190796, + "step": 1560 + }, + { + "epoch": 21.68501529051988, + "grad_norm": 0.22490349411964417, + "learning_rate": 0.0006, + "loss": 3.883296012878418, + "step": 1561 + }, + { + "epoch": 21.698995194408038, + "grad_norm": 0.23021313548088074, + "learning_rate": 0.0006, + "loss": 3.915200710296631, + "step": 1562 + }, + { + "epoch": 21.712975098296198, + "grad_norm": 0.22590875625610352, + "learning_rate": 0.0006, + "loss": 3.903597354888916, + "step": 1563 + }, + { + "epoch": 21.72695500218436, + "grad_norm": 0.19066260755062103, + "learning_rate": 0.0006, + "loss": 3.9162631034851074, + "step": 1564 + }, + { + "epoch": 21.74093490607252, + "grad_norm": 0.18134327232837677, + "learning_rate": 0.0006, + "loss": 3.9167914390563965, + "step": 1565 + }, + { + "epoch": 21.75491480996068, + "grad_norm": 0.1782190054655075, + "learning_rate": 0.0006, + "loss": 3.900925636291504, + "step": 1566 + }, + { + "epoch": 21.76889471384884, + "grad_norm": 0.19034099578857422, + "learning_rate": 0.0006, + "loss": 3.896559238433838, + "step": 1567 + }, + { + "epoch": 21.782874617737004, + "grad_norm": 0.21509577333927155, + "learning_rate": 0.0006, + "loss": 3.891681671142578, + "step": 1568 + }, + { + "epoch": 21.796854521625164, + "grad_norm": 0.2370351105928421, + "learning_rate": 0.0006, + "loss": 3.886570453643799, + "step": 1569 + }, + { + "epoch": 21.810834425513324, + "grad_norm": 0.25546324253082275, + "learning_rate": 0.0006, + "loss": 3.9247193336486816, + "step": 1570 + }, + { + "epoch": 21.824814329401484, + "grad_norm": 0.2513384222984314, + "learning_rate": 0.0006, + "loss": 3.9120583534240723, + "step": 1571 + }, + { + "epoch": 21.838794233289647, + "grad_norm": 0.24691323935985565, + "learning_rate": 0.0006, + "loss": 3.9144935607910156, + "step": 1572 + }, + { + "epoch": 21.852774137177807, + "grad_norm": 0.2573968172073364, + "learning_rate": 0.0006, + "loss": 3.9517531394958496, + "step": 1573 + }, + { + "epoch": 21.866754041065967, + "grad_norm": 0.25461453199386597, + "learning_rate": 0.0006, + "loss": 3.93508243560791, + "step": 1574 + }, + { + "epoch": 21.88073394495413, + "grad_norm": 0.23756568133831024, + "learning_rate": 0.0006, + "loss": 3.8885269165039062, + "step": 1575 + }, + { + "epoch": 21.89471384884229, + "grad_norm": 0.2193172425031662, + "learning_rate": 0.0006, + "loss": 3.9103426933288574, + "step": 1576 + }, + { + "epoch": 21.90869375273045, + "grad_norm": 0.2350149303674698, + "learning_rate": 0.0006, + "loss": 3.9399590492248535, + "step": 1577 + }, + { + "epoch": 21.92267365661861, + "grad_norm": 0.23759333789348602, + "learning_rate": 0.0006, + "loss": 3.9433584213256836, + "step": 1578 + }, + { + "epoch": 21.936653560506773, + "grad_norm": 0.21108432114124298, + "learning_rate": 0.0006, + "loss": 3.9241819381713867, + "step": 1579 + }, + { + "epoch": 21.950633464394933, + "grad_norm": 0.22088949382305145, + "learning_rate": 0.0006, + "loss": 3.9231910705566406, + "step": 1580 + }, + { + "epoch": 21.964613368283093, + "grad_norm": 0.22125045955181122, + "learning_rate": 0.0006, + "loss": 3.896329164505005, + "step": 1581 + }, + { + "epoch": 21.978593272171253, + "grad_norm": 0.20745202898979187, + "learning_rate": 0.0006, + "loss": 3.8920536041259766, + "step": 1582 + }, + { + "epoch": 21.992573176059416, + "grad_norm": 0.2409721463918686, + "learning_rate": 0.0006, + "loss": 3.9061317443847656, + "step": 1583 + }, + { + "epoch": 22.0, + "grad_norm": 0.2669669985771179, + "learning_rate": 0.0006, + "loss": 3.922062397003174, + "step": 1584 + }, + { + "epoch": 22.0, + "eval_loss": 4.140966415405273, + "eval_runtime": 46.7132, + "eval_samples_per_second": 52.276, + "eval_steps_per_second": 3.275, + "step": 1584 + }, + { + "epoch": 22.01397990388816, + "grad_norm": 0.26155969500541687, + "learning_rate": 0.0006, + "loss": 3.888944625854492, + "step": 1585 + }, + { + "epoch": 22.027959807776323, + "grad_norm": 0.2579149007797241, + "learning_rate": 0.0006, + "loss": 3.8924355506896973, + "step": 1586 + }, + { + "epoch": 22.041939711664483, + "grad_norm": 0.2429896742105484, + "learning_rate": 0.0006, + "loss": 3.8714070320129395, + "step": 1587 + }, + { + "epoch": 22.055919615552643, + "grad_norm": 0.23497673869132996, + "learning_rate": 0.0006, + "loss": 3.905089855194092, + "step": 1588 + }, + { + "epoch": 22.069899519440803, + "grad_norm": 0.24074940383434296, + "learning_rate": 0.0006, + "loss": 3.886845111846924, + "step": 1589 + }, + { + "epoch": 22.083879423328966, + "grad_norm": 0.2226274162530899, + "learning_rate": 0.0006, + "loss": 3.8554329872131348, + "step": 1590 + }, + { + "epoch": 22.097859327217126, + "grad_norm": 0.22924423217773438, + "learning_rate": 0.0006, + "loss": 3.8914356231689453, + "step": 1591 + }, + { + "epoch": 22.111839231105286, + "grad_norm": 0.2459387183189392, + "learning_rate": 0.0006, + "loss": 3.902522087097168, + "step": 1592 + }, + { + "epoch": 22.125819134993446, + "grad_norm": 0.2704590857028961, + "learning_rate": 0.0006, + "loss": 3.896497964859009, + "step": 1593 + }, + { + "epoch": 22.13979903888161, + "grad_norm": 0.2848219871520996, + "learning_rate": 0.0006, + "loss": 3.88423228263855, + "step": 1594 + }, + { + "epoch": 22.15377894276977, + "grad_norm": 0.22996552288532257, + "learning_rate": 0.0006, + "loss": 3.9034953117370605, + "step": 1595 + }, + { + "epoch": 22.16775884665793, + "grad_norm": 0.2117270529270172, + "learning_rate": 0.0006, + "loss": 3.888279914855957, + "step": 1596 + }, + { + "epoch": 22.18173875054609, + "grad_norm": 0.19724160432815552, + "learning_rate": 0.0006, + "loss": 3.860525131225586, + "step": 1597 + }, + { + "epoch": 22.195718654434252, + "grad_norm": 0.2012624740600586, + "learning_rate": 0.0006, + "loss": 3.8930106163024902, + "step": 1598 + }, + { + "epoch": 22.209698558322412, + "grad_norm": 0.20243871212005615, + "learning_rate": 0.0006, + "loss": 3.8727619647979736, + "step": 1599 + }, + { + "epoch": 22.22367846221057, + "grad_norm": 0.21737465262413025, + "learning_rate": 0.0006, + "loss": 3.887969493865967, + "step": 1600 + }, + { + "epoch": 22.23765836609873, + "grad_norm": 0.23969845473766327, + "learning_rate": 0.0006, + "loss": 3.8629722595214844, + "step": 1601 + }, + { + "epoch": 22.251638269986895, + "grad_norm": 0.22874902188777924, + "learning_rate": 0.0006, + "loss": 3.9135584831237793, + "step": 1602 + }, + { + "epoch": 22.265618173875055, + "grad_norm": 0.209506556391716, + "learning_rate": 0.0006, + "loss": 3.8734190464019775, + "step": 1603 + }, + { + "epoch": 22.279598077763215, + "grad_norm": 0.22235789895057678, + "learning_rate": 0.0006, + "loss": 3.884854793548584, + "step": 1604 + }, + { + "epoch": 22.293577981651374, + "grad_norm": 0.21975041925907135, + "learning_rate": 0.0006, + "loss": 3.8860888481140137, + "step": 1605 + }, + { + "epoch": 22.307557885539538, + "grad_norm": 0.21474459767341614, + "learning_rate": 0.0006, + "loss": 3.9052200317382812, + "step": 1606 + }, + { + "epoch": 22.321537789427698, + "grad_norm": 0.2103329747915268, + "learning_rate": 0.0006, + "loss": 3.8516340255737305, + "step": 1607 + }, + { + "epoch": 22.335517693315857, + "grad_norm": 0.1981191635131836, + "learning_rate": 0.0006, + "loss": 3.9017434120178223, + "step": 1608 + }, + { + "epoch": 22.34949759720402, + "grad_norm": 0.20679591596126556, + "learning_rate": 0.0006, + "loss": 3.889885425567627, + "step": 1609 + }, + { + "epoch": 22.36347750109218, + "grad_norm": 0.20809867978096008, + "learning_rate": 0.0006, + "loss": 3.881868362426758, + "step": 1610 + }, + { + "epoch": 22.37745740498034, + "grad_norm": 0.21394680440425873, + "learning_rate": 0.0006, + "loss": 3.89980411529541, + "step": 1611 + }, + { + "epoch": 22.3914373088685, + "grad_norm": 0.2334284782409668, + "learning_rate": 0.0006, + "loss": 3.8672266006469727, + "step": 1612 + }, + { + "epoch": 22.405417212756664, + "grad_norm": 0.26521918177604675, + "learning_rate": 0.0006, + "loss": 3.8918118476867676, + "step": 1613 + }, + { + "epoch": 22.419397116644824, + "grad_norm": 0.2652994394302368, + "learning_rate": 0.0006, + "loss": 3.8683271408081055, + "step": 1614 + }, + { + "epoch": 22.433377020532983, + "grad_norm": 0.2568066716194153, + "learning_rate": 0.0006, + "loss": 3.892523765563965, + "step": 1615 + }, + { + "epoch": 22.447356924421143, + "grad_norm": 0.260052353143692, + "learning_rate": 0.0006, + "loss": 3.897305488586426, + "step": 1616 + }, + { + "epoch": 22.461336828309307, + "grad_norm": 0.2744271457195282, + "learning_rate": 0.0006, + "loss": 3.8962221145629883, + "step": 1617 + }, + { + "epoch": 22.475316732197467, + "grad_norm": 0.23755787312984467, + "learning_rate": 0.0006, + "loss": 3.888184070587158, + "step": 1618 + }, + { + "epoch": 22.489296636085626, + "grad_norm": 0.2515312135219574, + "learning_rate": 0.0006, + "loss": 3.8946003913879395, + "step": 1619 + }, + { + "epoch": 22.503276539973786, + "grad_norm": 0.24835044145584106, + "learning_rate": 0.0006, + "loss": 3.8711423873901367, + "step": 1620 + }, + { + "epoch": 22.51725644386195, + "grad_norm": 0.22615326941013336, + "learning_rate": 0.0006, + "loss": 3.8878846168518066, + "step": 1621 + }, + { + "epoch": 22.53123634775011, + "grad_norm": 0.20482423901557922, + "learning_rate": 0.0006, + "loss": 3.8782598972320557, + "step": 1622 + }, + { + "epoch": 22.54521625163827, + "grad_norm": 0.20436473190784454, + "learning_rate": 0.0006, + "loss": 3.9075279235839844, + "step": 1623 + }, + { + "epoch": 22.55919615552643, + "grad_norm": 0.2066277265548706, + "learning_rate": 0.0006, + "loss": 3.89908766746521, + "step": 1624 + }, + { + "epoch": 22.573176059414592, + "grad_norm": 0.20735307037830353, + "learning_rate": 0.0006, + "loss": 3.865204334259033, + "step": 1625 + }, + { + "epoch": 22.587155963302752, + "grad_norm": 0.20955748856067657, + "learning_rate": 0.0006, + "loss": 3.8835532665252686, + "step": 1626 + }, + { + "epoch": 22.601135867190912, + "grad_norm": 0.21354222297668457, + "learning_rate": 0.0006, + "loss": 3.9012551307678223, + "step": 1627 + }, + { + "epoch": 22.615115771079076, + "grad_norm": 0.2075091004371643, + "learning_rate": 0.0006, + "loss": 3.8733482360839844, + "step": 1628 + }, + { + "epoch": 22.629095674967235, + "grad_norm": 0.20207874476909637, + "learning_rate": 0.0006, + "loss": 3.9193859100341797, + "step": 1629 + }, + { + "epoch": 22.643075578855395, + "grad_norm": 0.21863923966884613, + "learning_rate": 0.0006, + "loss": 3.883518695831299, + "step": 1630 + }, + { + "epoch": 22.657055482743555, + "grad_norm": 0.22117522358894348, + "learning_rate": 0.0006, + "loss": 3.9163284301757812, + "step": 1631 + }, + { + "epoch": 22.67103538663172, + "grad_norm": 0.2078622728586197, + "learning_rate": 0.0006, + "loss": 3.868274688720703, + "step": 1632 + }, + { + "epoch": 22.68501529051988, + "grad_norm": 0.22745893895626068, + "learning_rate": 0.0006, + "loss": 3.9171340465545654, + "step": 1633 + }, + { + "epoch": 22.698995194408038, + "grad_norm": 0.2312736064195633, + "learning_rate": 0.0006, + "loss": 3.9487013816833496, + "step": 1634 + }, + { + "epoch": 22.712975098296198, + "grad_norm": 0.20491497218608856, + "learning_rate": 0.0006, + "loss": 3.91833758354187, + "step": 1635 + }, + { + "epoch": 22.72695500218436, + "grad_norm": 0.1899084597826004, + "learning_rate": 0.0006, + "loss": 3.876225709915161, + "step": 1636 + }, + { + "epoch": 22.74093490607252, + "grad_norm": 0.18581682443618774, + "learning_rate": 0.0006, + "loss": 3.8667988777160645, + "step": 1637 + }, + { + "epoch": 22.75491480996068, + "grad_norm": 0.19855599105358124, + "learning_rate": 0.0006, + "loss": 3.900789260864258, + "step": 1638 + }, + { + "epoch": 22.76889471384884, + "grad_norm": 0.19951458275318146, + "learning_rate": 0.0006, + "loss": 3.8850367069244385, + "step": 1639 + }, + { + "epoch": 22.782874617737004, + "grad_norm": 0.22802744805812836, + "learning_rate": 0.0006, + "loss": 3.9181363582611084, + "step": 1640 + }, + { + "epoch": 22.796854521625164, + "grad_norm": 0.24279919266700745, + "learning_rate": 0.0006, + "loss": 3.8843770027160645, + "step": 1641 + }, + { + "epoch": 22.810834425513324, + "grad_norm": 0.23554913699626923, + "learning_rate": 0.0006, + "loss": 3.8802413940429688, + "step": 1642 + }, + { + "epoch": 22.824814329401484, + "grad_norm": 0.22343270480632782, + "learning_rate": 0.0006, + "loss": 3.8524107933044434, + "step": 1643 + }, + { + "epoch": 22.838794233289647, + "grad_norm": 0.2185724526643753, + "learning_rate": 0.0006, + "loss": 3.9117047786712646, + "step": 1644 + }, + { + "epoch": 22.852774137177807, + "grad_norm": 0.2114841341972351, + "learning_rate": 0.0006, + "loss": 3.90325927734375, + "step": 1645 + }, + { + "epoch": 22.866754041065967, + "grad_norm": 0.21072550117969513, + "learning_rate": 0.0006, + "loss": 3.8988137245178223, + "step": 1646 + }, + { + "epoch": 22.88073394495413, + "grad_norm": 0.2250078171491623, + "learning_rate": 0.0006, + "loss": 3.9201531410217285, + "step": 1647 + }, + { + "epoch": 22.89471384884229, + "grad_norm": 0.20928071439266205, + "learning_rate": 0.0006, + "loss": 3.91666316986084, + "step": 1648 + }, + { + "epoch": 22.90869375273045, + "grad_norm": 0.24096311628818512, + "learning_rate": 0.0006, + "loss": 3.8797364234924316, + "step": 1649 + }, + { + "epoch": 22.92267365661861, + "grad_norm": 0.2591194212436676, + "learning_rate": 0.0006, + "loss": 3.883273124694824, + "step": 1650 + }, + { + "epoch": 22.936653560506773, + "grad_norm": 0.27342668175697327, + "learning_rate": 0.0006, + "loss": 3.8645026683807373, + "step": 1651 + }, + { + "epoch": 22.950633464394933, + "grad_norm": 0.2448573112487793, + "learning_rate": 0.0006, + "loss": 3.9093551635742188, + "step": 1652 + }, + { + "epoch": 22.964613368283093, + "grad_norm": 0.19899503886699677, + "learning_rate": 0.0006, + "loss": 3.9001057147979736, + "step": 1653 + }, + { + "epoch": 22.978593272171253, + "grad_norm": 0.2023746520280838, + "learning_rate": 0.0006, + "loss": 3.886474370956421, + "step": 1654 + }, + { + "epoch": 22.992573176059416, + "grad_norm": 0.19894269108772278, + "learning_rate": 0.0006, + "loss": 3.9004204273223877, + "step": 1655 + }, + { + "epoch": 23.0, + "grad_norm": 0.2401709407567978, + "learning_rate": 0.0006, + "loss": 3.8665566444396973, + "step": 1656 + }, + { + "epoch": 23.0, + "eval_loss": 4.112459659576416, + "eval_runtime": 44.8325, + "eval_samples_per_second": 54.469, + "eval_steps_per_second": 3.413, + "step": 1656 + }, + { + "epoch": 23.01397990388816, + "grad_norm": 0.22662921249866486, + "learning_rate": 0.0006, + "loss": 3.853271961212158, + "step": 1657 + }, + { + "epoch": 23.027959807776323, + "grad_norm": 0.24406856298446655, + "learning_rate": 0.0006, + "loss": 3.8691890239715576, + "step": 1658 + }, + { + "epoch": 23.041939711664483, + "grad_norm": 0.2266651839017868, + "learning_rate": 0.0006, + "loss": 3.838599681854248, + "step": 1659 + }, + { + "epoch": 23.055919615552643, + "grad_norm": 0.22303511202335358, + "learning_rate": 0.0006, + "loss": 3.8678267002105713, + "step": 1660 + }, + { + "epoch": 23.069899519440803, + "grad_norm": 0.2272164225578308, + "learning_rate": 0.0006, + "loss": 3.9045681953430176, + "step": 1661 + }, + { + "epoch": 23.083879423328966, + "grad_norm": 0.25004875659942627, + "learning_rate": 0.0006, + "loss": 3.856503963470459, + "step": 1662 + }, + { + "epoch": 23.097859327217126, + "grad_norm": 0.26016247272491455, + "learning_rate": 0.0006, + "loss": 3.878587007522583, + "step": 1663 + }, + { + "epoch": 23.111839231105286, + "grad_norm": 0.28539901971817017, + "learning_rate": 0.0006, + "loss": 3.864248514175415, + "step": 1664 + }, + { + "epoch": 23.125819134993446, + "grad_norm": 0.27504822611808777, + "learning_rate": 0.0006, + "loss": 3.821448802947998, + "step": 1665 + }, + { + "epoch": 23.13979903888161, + "grad_norm": 0.238910973072052, + "learning_rate": 0.0006, + "loss": 3.8635847568511963, + "step": 1666 + }, + { + "epoch": 23.15377894276977, + "grad_norm": 0.24179652333259583, + "learning_rate": 0.0006, + "loss": 3.8339638710021973, + "step": 1667 + }, + { + "epoch": 23.16775884665793, + "grad_norm": 0.2199544757604599, + "learning_rate": 0.0006, + "loss": 3.868396759033203, + "step": 1668 + }, + { + "epoch": 23.18173875054609, + "grad_norm": 0.1965002566576004, + "learning_rate": 0.0006, + "loss": 3.8761439323425293, + "step": 1669 + }, + { + "epoch": 23.195718654434252, + "grad_norm": 0.20426614582538605, + "learning_rate": 0.0006, + "loss": 3.822899580001831, + "step": 1670 + }, + { + "epoch": 23.209698558322412, + "grad_norm": 0.2197263389825821, + "learning_rate": 0.0006, + "loss": 3.887728452682495, + "step": 1671 + }, + { + "epoch": 23.22367846221057, + "grad_norm": 0.22844573855400085, + "learning_rate": 0.0006, + "loss": 3.8550517559051514, + "step": 1672 + }, + { + "epoch": 23.23765836609873, + "grad_norm": 0.2347746044397354, + "learning_rate": 0.0006, + "loss": 3.903310537338257, + "step": 1673 + }, + { + "epoch": 23.251638269986895, + "grad_norm": 0.24167625606060028, + "learning_rate": 0.0006, + "loss": 3.8397774696350098, + "step": 1674 + }, + { + "epoch": 23.265618173875055, + "grad_norm": 0.2691650688648224, + "learning_rate": 0.0006, + "loss": 3.853254795074463, + "step": 1675 + }, + { + "epoch": 23.279598077763215, + "grad_norm": 0.29421621561050415, + "learning_rate": 0.0006, + "loss": 3.86065411567688, + "step": 1676 + }, + { + "epoch": 23.293577981651374, + "grad_norm": 0.31074345111846924, + "learning_rate": 0.0006, + "loss": 3.8716742992401123, + "step": 1677 + }, + { + "epoch": 23.307557885539538, + "grad_norm": 0.3044569194316864, + "learning_rate": 0.0006, + "loss": 3.8738951683044434, + "step": 1678 + }, + { + "epoch": 23.321537789427698, + "grad_norm": 0.30496764183044434, + "learning_rate": 0.0006, + "loss": 3.884446620941162, + "step": 1679 + }, + { + "epoch": 23.335517693315857, + "grad_norm": 0.31122756004333496, + "learning_rate": 0.0006, + "loss": 3.878495693206787, + "step": 1680 + }, + { + "epoch": 23.34949759720402, + "grad_norm": 0.32268181443214417, + "learning_rate": 0.0006, + "loss": 3.8793649673461914, + "step": 1681 + }, + { + "epoch": 23.36347750109218, + "grad_norm": 0.3297140598297119, + "learning_rate": 0.0006, + "loss": 3.87484073638916, + "step": 1682 + }, + { + "epoch": 23.37745740498034, + "grad_norm": 0.26007479429244995, + "learning_rate": 0.0006, + "loss": 3.8510947227478027, + "step": 1683 + }, + { + "epoch": 23.3914373088685, + "grad_norm": 0.2627335786819458, + "learning_rate": 0.0006, + "loss": 3.8783209323883057, + "step": 1684 + }, + { + "epoch": 23.405417212756664, + "grad_norm": 0.256452739238739, + "learning_rate": 0.0006, + "loss": 3.8594281673431396, + "step": 1685 + }, + { + "epoch": 23.419397116644824, + "grad_norm": 0.23892226815223694, + "learning_rate": 0.0006, + "loss": 3.898951292037964, + "step": 1686 + }, + { + "epoch": 23.433377020532983, + "grad_norm": 0.21625587344169617, + "learning_rate": 0.0006, + "loss": 3.8679966926574707, + "step": 1687 + }, + { + "epoch": 23.447356924421143, + "grad_norm": 0.21924619376659393, + "learning_rate": 0.0006, + "loss": 3.8774075508117676, + "step": 1688 + }, + { + "epoch": 23.461336828309307, + "grad_norm": 0.21500127017498016, + "learning_rate": 0.0006, + "loss": 3.870619297027588, + "step": 1689 + }, + { + "epoch": 23.475316732197467, + "grad_norm": 0.22580556571483612, + "learning_rate": 0.0006, + "loss": 3.887722969055176, + "step": 1690 + }, + { + "epoch": 23.489296636085626, + "grad_norm": 0.2500104308128357, + "learning_rate": 0.0006, + "loss": 3.88789963722229, + "step": 1691 + }, + { + "epoch": 23.503276539973786, + "grad_norm": 0.22462762892246246, + "learning_rate": 0.0006, + "loss": 3.863997459411621, + "step": 1692 + }, + { + "epoch": 23.51725644386195, + "grad_norm": 0.21427781879901886, + "learning_rate": 0.0006, + "loss": 3.8827033042907715, + "step": 1693 + }, + { + "epoch": 23.53123634775011, + "grad_norm": 0.22278577089309692, + "learning_rate": 0.0006, + "loss": 3.8659563064575195, + "step": 1694 + }, + { + "epoch": 23.54521625163827, + "grad_norm": 0.22801144421100616, + "learning_rate": 0.0006, + "loss": 3.9031362533569336, + "step": 1695 + }, + { + "epoch": 23.55919615552643, + "grad_norm": 0.25071898102760315, + "learning_rate": 0.0006, + "loss": 3.887746810913086, + "step": 1696 + }, + { + "epoch": 23.573176059414592, + "grad_norm": 0.2564085125923157, + "learning_rate": 0.0006, + "loss": 3.8918356895446777, + "step": 1697 + }, + { + "epoch": 23.587155963302752, + "grad_norm": 0.24603120982646942, + "learning_rate": 0.0006, + "loss": 3.850416421890259, + "step": 1698 + }, + { + "epoch": 23.601135867190912, + "grad_norm": 0.20539002120494843, + "learning_rate": 0.0006, + "loss": 3.862060070037842, + "step": 1699 + }, + { + "epoch": 23.615115771079076, + "grad_norm": 0.2022249400615692, + "learning_rate": 0.0006, + "loss": 3.899008274078369, + "step": 1700 + }, + { + "epoch": 23.629095674967235, + "grad_norm": 0.2435392290353775, + "learning_rate": 0.0006, + "loss": 3.844388961791992, + "step": 1701 + }, + { + "epoch": 23.643075578855395, + "grad_norm": 0.21146756410598755, + "learning_rate": 0.0006, + "loss": 3.8972439765930176, + "step": 1702 + }, + { + "epoch": 23.657055482743555, + "grad_norm": 0.2025400996208191, + "learning_rate": 0.0006, + "loss": 3.865253448486328, + "step": 1703 + }, + { + "epoch": 23.67103538663172, + "grad_norm": 0.21129970252513885, + "learning_rate": 0.0006, + "loss": 3.8768205642700195, + "step": 1704 + }, + { + "epoch": 23.68501529051988, + "grad_norm": 0.22982284426689148, + "learning_rate": 0.0006, + "loss": 3.8792667388916016, + "step": 1705 + }, + { + "epoch": 23.698995194408038, + "grad_norm": 0.23013733327388763, + "learning_rate": 0.0006, + "loss": 3.880897045135498, + "step": 1706 + }, + { + "epoch": 23.712975098296198, + "grad_norm": 0.2277672290802002, + "learning_rate": 0.0006, + "loss": 3.8738410472869873, + "step": 1707 + }, + { + "epoch": 23.72695500218436, + "grad_norm": 0.2343369573354721, + "learning_rate": 0.0006, + "loss": 3.8587026596069336, + "step": 1708 + }, + { + "epoch": 23.74093490607252, + "grad_norm": 0.23159530758857727, + "learning_rate": 0.0006, + "loss": 3.856306552886963, + "step": 1709 + }, + { + "epoch": 23.75491480996068, + "grad_norm": 0.19541035592556, + "learning_rate": 0.0006, + "loss": 3.8294754028320312, + "step": 1710 + }, + { + "epoch": 23.76889471384884, + "grad_norm": 0.22999322414398193, + "learning_rate": 0.0006, + "loss": 3.882676124572754, + "step": 1711 + }, + { + "epoch": 23.782874617737004, + "grad_norm": 0.23442843556404114, + "learning_rate": 0.0006, + "loss": 3.8887529373168945, + "step": 1712 + }, + { + "epoch": 23.796854521625164, + "grad_norm": 0.22914239764213562, + "learning_rate": 0.0006, + "loss": 3.867673635482788, + "step": 1713 + }, + { + "epoch": 23.810834425513324, + "grad_norm": 0.20683827996253967, + "learning_rate": 0.0006, + "loss": 3.8999581336975098, + "step": 1714 + }, + { + "epoch": 23.824814329401484, + "grad_norm": 0.19281277060508728, + "learning_rate": 0.0006, + "loss": 3.8997726440429688, + "step": 1715 + }, + { + "epoch": 23.838794233289647, + "grad_norm": 0.20058563351631165, + "learning_rate": 0.0006, + "loss": 3.8583860397338867, + "step": 1716 + }, + { + "epoch": 23.852774137177807, + "grad_norm": 0.19856606423854828, + "learning_rate": 0.0006, + "loss": 3.88948392868042, + "step": 1717 + }, + { + "epoch": 23.866754041065967, + "grad_norm": 0.2099323868751526, + "learning_rate": 0.0006, + "loss": 3.878458261489868, + "step": 1718 + }, + { + "epoch": 23.88073394495413, + "grad_norm": 0.22945016622543335, + "learning_rate": 0.0006, + "loss": 3.84116268157959, + "step": 1719 + }, + { + "epoch": 23.89471384884229, + "grad_norm": 0.22646087408065796, + "learning_rate": 0.0006, + "loss": 3.9006617069244385, + "step": 1720 + }, + { + "epoch": 23.90869375273045, + "grad_norm": 0.20282860100269318, + "learning_rate": 0.0006, + "loss": 3.8781144618988037, + "step": 1721 + }, + { + "epoch": 23.92267365661861, + "grad_norm": 0.1918555349111557, + "learning_rate": 0.0006, + "loss": 3.8560891151428223, + "step": 1722 + }, + { + "epoch": 23.936653560506773, + "grad_norm": 0.19286513328552246, + "learning_rate": 0.0006, + "loss": 3.873220920562744, + "step": 1723 + }, + { + "epoch": 23.950633464394933, + "grad_norm": 0.21071338653564453, + "learning_rate": 0.0006, + "loss": 3.9147067070007324, + "step": 1724 + }, + { + "epoch": 23.964613368283093, + "grad_norm": 0.20956715941429138, + "learning_rate": 0.0006, + "loss": 3.8762729167938232, + "step": 1725 + }, + { + "epoch": 23.978593272171253, + "grad_norm": 0.23053105175495148, + "learning_rate": 0.0006, + "loss": 3.873781681060791, + "step": 1726 + }, + { + "epoch": 23.992573176059416, + "grad_norm": 0.2719029486179352, + "learning_rate": 0.0006, + "loss": 3.862342357635498, + "step": 1727 + }, + { + "epoch": 24.0, + "grad_norm": 0.2933610677719116, + "learning_rate": 0.0006, + "loss": 3.8657689094543457, + "step": 1728 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 7.36385500515926e+17, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1728/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2016/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2016/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2016/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2016/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..9eb5c4b2d08a53023b5eb773c0beba83b1761be5 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc50b218559b24a3c8fad9a5d22791a35a2a42a3eb7d9579e8ee2783c8209386 +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2016/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..73036aa63418f0f19c808b0dc5d986ff06b3b070 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49d11e19c31c2bb4751ac2d3bad3c97a354956215fb03507f971be5b4a931e05 +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2016/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..1c092c86849b46c08bab835428e42aaf4295f869 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d79b52209a469389778445ac55fa0337cbb6351a94fc956e71e0ac637f4a3f35 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2016/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..6bb1eae2ae6a3c5b296359720220f8be85eaadb8 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b7a5ebc7102c39f6b74a03c9021194cb2a1cfff32ee59ea3da1c2b1de3a489a +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2016/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..b92e75de04edb55fd4d6a1778589870a5bc904d0 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71f52a3ae3412b2053eb61b18dd446a6b3125f82036fb38a407b55123d55fdf7 +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2016/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2016/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2016/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..99154db083cad353c0bd359367440163d7db0129 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/trainer_state.json @@ -0,0 +1,14362 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 28.0, + "eval_steps": 500, + "global_step": 2016, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + }, + { + "epoch": 8.0, + "eval_loss": 5.100707530975342, + "eval_runtime": 44.2493, + "eval_samples_per_second": 55.187, + "eval_steps_per_second": 3.458, + "step": 576 + }, + { + "epoch": 8.013979903888162, + "grad_norm": 0.3658510148525238, + "learning_rate": 0.0006, + "loss": 4.759055137634277, + "step": 577 + }, + { + "epoch": 8.027959807776321, + "grad_norm": 0.41794446110725403, + "learning_rate": 0.0006, + "loss": 4.737661838531494, + "step": 578 + }, + { + "epoch": 8.041939711664483, + "grad_norm": 0.43284085392951965, + "learning_rate": 0.0006, + "loss": 4.775538444519043, + "step": 579 + }, + { + "epoch": 8.055919615552643, + "grad_norm": 0.4716675281524658, + "learning_rate": 0.0006, + "loss": 4.762231826782227, + "step": 580 + }, + { + "epoch": 8.069899519440805, + "grad_norm": 0.3849579393863678, + "learning_rate": 0.0006, + "loss": 4.753598690032959, + "step": 581 + }, + { + "epoch": 8.083879423328964, + "grad_norm": 0.3721151053905487, + "learning_rate": 0.0006, + "loss": 4.728978157043457, + "step": 582 + }, + { + "epoch": 8.097859327217126, + "grad_norm": 0.37009572982788086, + "learning_rate": 0.0006, + "loss": 4.759153366088867, + "step": 583 + }, + { + "epoch": 8.111839231105286, + "grad_norm": 0.37051302194595337, + "learning_rate": 0.0006, + "loss": 4.744197368621826, + "step": 584 + }, + { + "epoch": 8.125819134993447, + "grad_norm": 0.331238329410553, + "learning_rate": 0.0006, + "loss": 4.7338385581970215, + "step": 585 + }, + { + "epoch": 8.139799038881607, + "grad_norm": 0.3737713694572449, + "learning_rate": 0.0006, + "loss": 4.719110488891602, + "step": 586 + }, + { + "epoch": 8.153778942769769, + "grad_norm": 0.3713214695453644, + "learning_rate": 0.0006, + "loss": 4.734012126922607, + "step": 587 + }, + { + "epoch": 8.167758846657929, + "grad_norm": 0.4060780107975006, + "learning_rate": 0.0006, + "loss": 4.746830940246582, + "step": 588 + }, + { + "epoch": 8.18173875054609, + "grad_norm": 0.39814314246177673, + "learning_rate": 0.0006, + "loss": 4.722851753234863, + "step": 589 + }, + { + "epoch": 8.19571865443425, + "grad_norm": 0.3175652325153351, + "learning_rate": 0.0006, + "loss": 4.745110034942627, + "step": 590 + }, + { + "epoch": 8.209698558322412, + "grad_norm": 0.37214916944503784, + "learning_rate": 0.0006, + "loss": 4.7362775802612305, + "step": 591 + }, + { + "epoch": 8.223678462210572, + "grad_norm": 0.3873472809791565, + "learning_rate": 0.0006, + "loss": 4.738964557647705, + "step": 592 + }, + { + "epoch": 8.237658366098733, + "grad_norm": 0.3299207091331482, + "learning_rate": 0.0006, + "loss": 4.713451385498047, + "step": 593 + }, + { + "epoch": 8.251638269986893, + "grad_norm": 0.32445064187049866, + "learning_rate": 0.0006, + "loss": 4.725602149963379, + "step": 594 + }, + { + "epoch": 8.265618173875055, + "grad_norm": 0.32903164625167847, + "learning_rate": 0.0006, + "loss": 4.732064247131348, + "step": 595 + }, + { + "epoch": 8.279598077763215, + "grad_norm": 0.3166804313659668, + "learning_rate": 0.0006, + "loss": 4.678950786590576, + "step": 596 + }, + { + "epoch": 8.293577981651376, + "grad_norm": 0.2750290334224701, + "learning_rate": 0.0006, + "loss": 4.719513416290283, + "step": 597 + }, + { + "epoch": 8.307557885539538, + "grad_norm": 0.291029691696167, + "learning_rate": 0.0006, + "loss": 4.715405464172363, + "step": 598 + }, + { + "epoch": 8.321537789427698, + "grad_norm": 0.34105145931243896, + "learning_rate": 0.0006, + "loss": 4.722611427307129, + "step": 599 + }, + { + "epoch": 8.33551769331586, + "grad_norm": 0.3078882694244385, + "learning_rate": 0.0006, + "loss": 4.668856620788574, + "step": 600 + }, + { + "epoch": 8.349497597204019, + "grad_norm": 0.3218833804130554, + "learning_rate": 0.0006, + "loss": 4.719579696655273, + "step": 601 + }, + { + "epoch": 8.36347750109218, + "grad_norm": 0.35716721415519714, + "learning_rate": 0.0006, + "loss": 4.690774440765381, + "step": 602 + }, + { + "epoch": 8.37745740498034, + "grad_norm": 0.3045452833175659, + "learning_rate": 0.0006, + "loss": 4.696503639221191, + "step": 603 + }, + { + "epoch": 8.391437308868502, + "grad_norm": 0.3127244710922241, + "learning_rate": 0.0006, + "loss": 4.701899528503418, + "step": 604 + }, + { + "epoch": 8.405417212756662, + "grad_norm": 0.34988710284233093, + "learning_rate": 0.0006, + "loss": 4.677641868591309, + "step": 605 + }, + { + "epoch": 8.419397116644824, + "grad_norm": 0.34035569429397583, + "learning_rate": 0.0006, + "loss": 4.707778453826904, + "step": 606 + }, + { + "epoch": 8.433377020532983, + "grad_norm": 0.3341112732887268, + "learning_rate": 0.0006, + "loss": 4.724853038787842, + "step": 607 + }, + { + "epoch": 8.447356924421145, + "grad_norm": 0.41744324564933777, + "learning_rate": 0.0006, + "loss": 4.680908203125, + "step": 608 + }, + { + "epoch": 8.461336828309305, + "grad_norm": 0.40402331948280334, + "learning_rate": 0.0006, + "loss": 4.726455211639404, + "step": 609 + }, + { + "epoch": 8.475316732197467, + "grad_norm": 0.4727570414543152, + "learning_rate": 0.0006, + "loss": 4.6793084144592285, + "step": 610 + }, + { + "epoch": 8.489296636085626, + "grad_norm": 0.43002694845199585, + "learning_rate": 0.0006, + "loss": 4.663918972015381, + "step": 611 + }, + { + "epoch": 8.503276539973788, + "grad_norm": 0.36124858260154724, + "learning_rate": 0.0006, + "loss": 4.657375335693359, + "step": 612 + }, + { + "epoch": 8.517256443861948, + "grad_norm": 0.37644803524017334, + "learning_rate": 0.0006, + "loss": 4.676977157592773, + "step": 613 + }, + { + "epoch": 8.53123634775011, + "grad_norm": 0.32347747683525085, + "learning_rate": 0.0006, + "loss": 4.708547115325928, + "step": 614 + }, + { + "epoch": 8.54521625163827, + "grad_norm": 0.3071717619895935, + "learning_rate": 0.0006, + "loss": 4.650189399719238, + "step": 615 + }, + { + "epoch": 8.55919615552643, + "grad_norm": 0.30222490429878235, + "learning_rate": 0.0006, + "loss": 4.647942543029785, + "step": 616 + }, + { + "epoch": 8.57317605941459, + "grad_norm": 0.31545212864875793, + "learning_rate": 0.0006, + "loss": 4.660242080688477, + "step": 617 + }, + { + "epoch": 8.587155963302752, + "grad_norm": 0.31644752621650696, + "learning_rate": 0.0006, + "loss": 4.666710376739502, + "step": 618 + }, + { + "epoch": 8.601135867190912, + "grad_norm": 0.26057198643684387, + "learning_rate": 0.0006, + "loss": 4.668096542358398, + "step": 619 + }, + { + "epoch": 8.615115771079074, + "grad_norm": 0.25473910570144653, + "learning_rate": 0.0006, + "loss": 4.641562461853027, + "step": 620 + }, + { + "epoch": 8.629095674967235, + "grad_norm": 0.2456732839345932, + "learning_rate": 0.0006, + "loss": 4.6545281410217285, + "step": 621 + }, + { + "epoch": 8.643075578855395, + "grad_norm": 0.25180476903915405, + "learning_rate": 0.0006, + "loss": 4.6506524085998535, + "step": 622 + }, + { + "epoch": 8.657055482743557, + "grad_norm": 0.21761579811573029, + "learning_rate": 0.0006, + "loss": 4.638909339904785, + "step": 623 + }, + { + "epoch": 8.671035386631717, + "grad_norm": 0.23590542376041412, + "learning_rate": 0.0006, + "loss": 4.6572747230529785, + "step": 624 + }, + { + "epoch": 8.685015290519878, + "grad_norm": 0.23870624601840973, + "learning_rate": 0.0006, + "loss": 4.643742084503174, + "step": 625 + }, + { + "epoch": 8.698995194408038, + "grad_norm": 0.2191203385591507, + "learning_rate": 0.0006, + "loss": 4.632617950439453, + "step": 626 + }, + { + "epoch": 8.7129750982962, + "grad_norm": 0.22107063233852386, + "learning_rate": 0.0006, + "loss": 4.625616073608398, + "step": 627 + }, + { + "epoch": 8.72695500218436, + "grad_norm": 0.20833902060985565, + "learning_rate": 0.0006, + "loss": 4.609896659851074, + "step": 628 + }, + { + "epoch": 8.740934906072521, + "grad_norm": 0.254967600107193, + "learning_rate": 0.0006, + "loss": 4.651735782623291, + "step": 629 + }, + { + "epoch": 8.754914809960681, + "grad_norm": 0.31587523221969604, + "learning_rate": 0.0006, + "loss": 4.6404032707214355, + "step": 630 + }, + { + "epoch": 8.768894713848843, + "grad_norm": 0.28598251938819885, + "learning_rate": 0.0006, + "loss": 4.602679252624512, + "step": 631 + }, + { + "epoch": 8.782874617737003, + "grad_norm": 0.23216590285301208, + "learning_rate": 0.0006, + "loss": 4.610319137573242, + "step": 632 + }, + { + "epoch": 8.796854521625164, + "grad_norm": 0.29212239384651184, + "learning_rate": 0.0006, + "loss": 4.600744247436523, + "step": 633 + }, + { + "epoch": 8.810834425513324, + "grad_norm": 0.3375801146030426, + "learning_rate": 0.0006, + "loss": 4.627819061279297, + "step": 634 + }, + { + "epoch": 8.824814329401486, + "grad_norm": 0.4207753837108612, + "learning_rate": 0.0006, + "loss": 4.634505271911621, + "step": 635 + }, + { + "epoch": 8.838794233289645, + "grad_norm": 0.4640173614025116, + "learning_rate": 0.0006, + "loss": 4.636714935302734, + "step": 636 + }, + { + "epoch": 8.852774137177807, + "grad_norm": 0.5255663990974426, + "learning_rate": 0.0006, + "loss": 4.659462928771973, + "step": 637 + }, + { + "epoch": 8.866754041065967, + "grad_norm": 0.5108268857002258, + "learning_rate": 0.0006, + "loss": 4.633192539215088, + "step": 638 + }, + { + "epoch": 8.880733944954128, + "grad_norm": 0.3821936845779419, + "learning_rate": 0.0006, + "loss": 4.621200084686279, + "step": 639 + }, + { + "epoch": 8.89471384884229, + "grad_norm": 0.3918485939502716, + "learning_rate": 0.0006, + "loss": 4.632599830627441, + "step": 640 + }, + { + "epoch": 8.90869375273045, + "grad_norm": 0.3416556119918823, + "learning_rate": 0.0006, + "loss": 4.620438098907471, + "step": 641 + }, + { + "epoch": 8.922673656618612, + "grad_norm": 0.3191553056240082, + "learning_rate": 0.0006, + "loss": 4.617823600769043, + "step": 642 + }, + { + "epoch": 8.936653560506771, + "grad_norm": 0.3368529677391052, + "learning_rate": 0.0006, + "loss": 4.617222785949707, + "step": 643 + }, + { + "epoch": 8.950633464394933, + "grad_norm": 0.3255428969860077, + "learning_rate": 0.0006, + "loss": 4.633878707885742, + "step": 644 + }, + { + "epoch": 8.964613368283093, + "grad_norm": 0.31394779682159424, + "learning_rate": 0.0006, + "loss": 4.642603874206543, + "step": 645 + }, + { + "epoch": 8.978593272171254, + "grad_norm": 0.29999351501464844, + "learning_rate": 0.0006, + "loss": 4.5925211906433105, + "step": 646 + }, + { + "epoch": 8.992573176059414, + "grad_norm": 0.309154748916626, + "learning_rate": 0.0006, + "loss": 4.61745023727417, + "step": 647 + }, + { + "epoch": 9.0, + "grad_norm": 0.2660452425479889, + "learning_rate": 0.0006, + "loss": 4.575107097625732, + "step": 648 + }, + { + "epoch": 9.0, + "eval_loss": 4.8804192543029785, + "eval_runtime": 45.0015, + "eval_samples_per_second": 54.265, + "eval_steps_per_second": 3.4, + "step": 648 + }, + { + "epoch": 9.013979903888162, + "grad_norm": 0.24159297347068787, + "learning_rate": 0.0006, + "loss": 4.571323871612549, + "step": 649 + }, + { + "epoch": 9.027959807776321, + "grad_norm": 0.2835831046104431, + "learning_rate": 0.0006, + "loss": 4.614255905151367, + "step": 650 + }, + { + "epoch": 9.041939711664483, + "grad_norm": 0.2646859288215637, + "learning_rate": 0.0006, + "loss": 4.578947067260742, + "step": 651 + }, + { + "epoch": 9.055919615552643, + "grad_norm": 0.28868553042411804, + "learning_rate": 0.0006, + "loss": 4.575977325439453, + "step": 652 + }, + { + "epoch": 9.069899519440805, + "grad_norm": 0.2899586856365204, + "learning_rate": 0.0006, + "loss": 4.541798114776611, + "step": 653 + }, + { + "epoch": 9.083879423328964, + "grad_norm": 0.32786068320274353, + "learning_rate": 0.0006, + "loss": 4.575140953063965, + "step": 654 + }, + { + "epoch": 9.097859327217126, + "grad_norm": 0.35675594210624695, + "learning_rate": 0.0006, + "loss": 4.58184814453125, + "step": 655 + }, + { + "epoch": 9.111839231105286, + "grad_norm": 0.3380381166934967, + "learning_rate": 0.0006, + "loss": 4.546271324157715, + "step": 656 + }, + { + "epoch": 9.125819134993447, + "grad_norm": 0.3035511374473572, + "learning_rate": 0.0006, + "loss": 4.591629981994629, + "step": 657 + }, + { + "epoch": 9.139799038881607, + "grad_norm": 0.2733091711997986, + "learning_rate": 0.0006, + "loss": 4.559020042419434, + "step": 658 + }, + { + "epoch": 9.153778942769769, + "grad_norm": 0.2870676815509796, + "learning_rate": 0.0006, + "loss": 4.552787780761719, + "step": 659 + }, + { + "epoch": 9.167758846657929, + "grad_norm": 0.37471064925193787, + "learning_rate": 0.0006, + "loss": 4.572757244110107, + "step": 660 + }, + { + "epoch": 9.18173875054609, + "grad_norm": 0.37889063358306885, + "learning_rate": 0.0006, + "loss": 4.573302268981934, + "step": 661 + }, + { + "epoch": 9.19571865443425, + "grad_norm": 0.29983851313591003, + "learning_rate": 0.0006, + "loss": 4.571202754974365, + "step": 662 + }, + { + "epoch": 9.209698558322412, + "grad_norm": 0.27595147490501404, + "learning_rate": 0.0006, + "loss": 4.529508590698242, + "step": 663 + }, + { + "epoch": 9.223678462210572, + "grad_norm": 0.22693437337875366, + "learning_rate": 0.0006, + "loss": 4.572267532348633, + "step": 664 + }, + { + "epoch": 9.237658366098733, + "grad_norm": 0.27147138118743896, + "learning_rate": 0.0006, + "loss": 4.529747009277344, + "step": 665 + }, + { + "epoch": 9.251638269986893, + "grad_norm": 0.24952703714370728, + "learning_rate": 0.0006, + "loss": 4.553647994995117, + "step": 666 + }, + { + "epoch": 9.265618173875055, + "grad_norm": 0.3086707592010498, + "learning_rate": 0.0006, + "loss": 4.494636058807373, + "step": 667 + }, + { + "epoch": 9.279598077763215, + "grad_norm": 0.3265218138694763, + "learning_rate": 0.0006, + "loss": 4.522481918334961, + "step": 668 + }, + { + "epoch": 9.293577981651376, + "grad_norm": 0.2744608223438263, + "learning_rate": 0.0006, + "loss": 4.544595241546631, + "step": 669 + }, + { + "epoch": 9.307557885539538, + "grad_norm": 0.26698485016822815, + "learning_rate": 0.0006, + "loss": 4.506407260894775, + "step": 670 + }, + { + "epoch": 9.321537789427698, + "grad_norm": 0.2775942087173462, + "learning_rate": 0.0006, + "loss": 4.534619331359863, + "step": 671 + }, + { + "epoch": 9.33551769331586, + "grad_norm": 0.2421862781047821, + "learning_rate": 0.0006, + "loss": 4.523318290710449, + "step": 672 + }, + { + "epoch": 9.349497597204019, + "grad_norm": 0.2756497263908386, + "learning_rate": 0.0006, + "loss": 4.517561912536621, + "step": 673 + }, + { + "epoch": 9.36347750109218, + "grad_norm": 0.28845369815826416, + "learning_rate": 0.0006, + "loss": 4.530844688415527, + "step": 674 + }, + { + "epoch": 9.37745740498034, + "grad_norm": 0.32285866141319275, + "learning_rate": 0.0006, + "loss": 4.55369758605957, + "step": 675 + }, + { + "epoch": 9.391437308868502, + "grad_norm": 0.3726065754890442, + "learning_rate": 0.0006, + "loss": 4.524348258972168, + "step": 676 + }, + { + "epoch": 9.405417212756662, + "grad_norm": 0.39524078369140625, + "learning_rate": 0.0006, + "loss": 4.535778045654297, + "step": 677 + }, + { + "epoch": 9.419397116644824, + "grad_norm": 0.3859797716140747, + "learning_rate": 0.0006, + "loss": 4.538474082946777, + "step": 678 + }, + { + "epoch": 9.433377020532983, + "grad_norm": 0.36151406168937683, + "learning_rate": 0.0006, + "loss": 4.54434061050415, + "step": 679 + }, + { + "epoch": 9.447356924421145, + "grad_norm": 0.40345999598503113, + "learning_rate": 0.0006, + "loss": 4.532961845397949, + "step": 680 + }, + { + "epoch": 9.461336828309305, + "grad_norm": 0.38864144682884216, + "learning_rate": 0.0006, + "loss": 4.567630767822266, + "step": 681 + }, + { + "epoch": 9.475316732197467, + "grad_norm": 0.3816355764865875, + "learning_rate": 0.0006, + "loss": 4.535771369934082, + "step": 682 + }, + { + "epoch": 9.489296636085626, + "grad_norm": 0.38756558299064636, + "learning_rate": 0.0006, + "loss": 4.4971089363098145, + "step": 683 + }, + { + "epoch": 9.503276539973788, + "grad_norm": 0.4572933614253998, + "learning_rate": 0.0006, + "loss": 4.534860134124756, + "step": 684 + }, + { + "epoch": 9.517256443861948, + "grad_norm": 0.42368650436401367, + "learning_rate": 0.0006, + "loss": 4.542638301849365, + "step": 685 + }, + { + "epoch": 9.53123634775011, + "grad_norm": 0.36939486861228943, + "learning_rate": 0.0006, + "loss": 4.571430206298828, + "step": 686 + }, + { + "epoch": 9.54521625163827, + "grad_norm": 0.3900398313999176, + "learning_rate": 0.0006, + "loss": 4.544435501098633, + "step": 687 + }, + { + "epoch": 9.55919615552643, + "grad_norm": 0.37829288840293884, + "learning_rate": 0.0006, + "loss": 4.564268112182617, + "step": 688 + }, + { + "epoch": 9.57317605941459, + "grad_norm": 0.3553886115550995, + "learning_rate": 0.0006, + "loss": 4.5373430252075195, + "step": 689 + }, + { + "epoch": 9.587155963302752, + "grad_norm": 0.3613419532775879, + "learning_rate": 0.0006, + "loss": 4.559074401855469, + "step": 690 + }, + { + "epoch": 9.601135867190912, + "grad_norm": 0.32644546031951904, + "learning_rate": 0.0006, + "loss": 4.533667087554932, + "step": 691 + }, + { + "epoch": 9.615115771079074, + "grad_norm": 0.3264399468898773, + "learning_rate": 0.0006, + "loss": 4.508299350738525, + "step": 692 + }, + { + "epoch": 9.629095674967235, + "grad_norm": 0.3534526526927948, + "learning_rate": 0.0006, + "loss": 4.542442798614502, + "step": 693 + }, + { + "epoch": 9.643075578855395, + "grad_norm": 0.3333452343940735, + "learning_rate": 0.0006, + "loss": 4.497692584991455, + "step": 694 + }, + { + "epoch": 9.657055482743557, + "grad_norm": 0.3214292526245117, + "learning_rate": 0.0006, + "loss": 4.512363433837891, + "step": 695 + }, + { + "epoch": 9.671035386631717, + "grad_norm": 0.2805672585964203, + "learning_rate": 0.0006, + "loss": 4.496874809265137, + "step": 696 + }, + { + "epoch": 9.685015290519878, + "grad_norm": 0.2618725895881653, + "learning_rate": 0.0006, + "loss": 4.51375675201416, + "step": 697 + }, + { + "epoch": 9.698995194408038, + "grad_norm": 0.2556597888469696, + "learning_rate": 0.0006, + "loss": 4.512338638305664, + "step": 698 + }, + { + "epoch": 9.7129750982962, + "grad_norm": 0.23784305155277252, + "learning_rate": 0.0006, + "loss": 4.486503601074219, + "step": 699 + }, + { + "epoch": 9.72695500218436, + "grad_norm": 0.2240338921546936, + "learning_rate": 0.0006, + "loss": 4.486850261688232, + "step": 700 + }, + { + "epoch": 9.740934906072521, + "grad_norm": 0.24686725437641144, + "learning_rate": 0.0006, + "loss": 4.501359462738037, + "step": 701 + }, + { + "epoch": 9.754914809960681, + "grad_norm": 0.20819595456123352, + "learning_rate": 0.0006, + "loss": 4.495186805725098, + "step": 702 + }, + { + "epoch": 9.768894713848843, + "grad_norm": 0.21858957409858704, + "learning_rate": 0.0006, + "loss": 4.475093364715576, + "step": 703 + }, + { + "epoch": 9.782874617737003, + "grad_norm": 0.22676466405391693, + "learning_rate": 0.0006, + "loss": 4.4702534675598145, + "step": 704 + }, + { + "epoch": 9.796854521625164, + "grad_norm": 0.18317611515522003, + "learning_rate": 0.0006, + "loss": 4.471231937408447, + "step": 705 + }, + { + "epoch": 9.810834425513324, + "grad_norm": 0.20979148149490356, + "learning_rate": 0.0006, + "loss": 4.454103946685791, + "step": 706 + }, + { + "epoch": 9.824814329401486, + "grad_norm": 0.2146051526069641, + "learning_rate": 0.0006, + "loss": 4.505178928375244, + "step": 707 + }, + { + "epoch": 9.838794233289645, + "grad_norm": 0.2344852089881897, + "learning_rate": 0.0006, + "loss": 4.437984943389893, + "step": 708 + }, + { + "epoch": 9.852774137177807, + "grad_norm": 0.26532089710235596, + "learning_rate": 0.0006, + "loss": 4.477126121520996, + "step": 709 + }, + { + "epoch": 9.866754041065967, + "grad_norm": 0.2737913131713867, + "learning_rate": 0.0006, + "loss": 4.498421669006348, + "step": 710 + }, + { + "epoch": 9.880733944954128, + "grad_norm": 0.26651278138160706, + "learning_rate": 0.0006, + "loss": 4.480839729309082, + "step": 711 + }, + { + "epoch": 9.89471384884229, + "grad_norm": 0.26576584577560425, + "learning_rate": 0.0006, + "loss": 4.490936279296875, + "step": 712 + }, + { + "epoch": 9.90869375273045, + "grad_norm": 0.22483965754508972, + "learning_rate": 0.0006, + "loss": 4.477953910827637, + "step": 713 + }, + { + "epoch": 9.922673656618612, + "grad_norm": 0.23576045036315918, + "learning_rate": 0.0006, + "loss": 4.4731292724609375, + "step": 714 + }, + { + "epoch": 9.936653560506771, + "grad_norm": 0.2731139361858368, + "learning_rate": 0.0006, + "loss": 4.441622734069824, + "step": 715 + }, + { + "epoch": 9.950633464394933, + "grad_norm": 0.2677643597126007, + "learning_rate": 0.0006, + "loss": 4.49604606628418, + "step": 716 + }, + { + "epoch": 9.964613368283093, + "grad_norm": 0.21940895915031433, + "learning_rate": 0.0006, + "loss": 4.485573768615723, + "step": 717 + }, + { + "epoch": 9.978593272171254, + "grad_norm": 0.2060987651348114, + "learning_rate": 0.0006, + "loss": 4.482657432556152, + "step": 718 + }, + { + "epoch": 9.992573176059414, + "grad_norm": 0.22163978219032288, + "learning_rate": 0.0006, + "loss": 4.478459358215332, + "step": 719 + }, + { + "epoch": 10.0, + "grad_norm": 0.2505086064338684, + "learning_rate": 0.0006, + "loss": 4.4393510818481445, + "step": 720 + }, + { + "epoch": 10.0, + "eval_loss": 4.695676803588867, + "eval_runtime": 49.0751, + "eval_samples_per_second": 49.76, + "eval_steps_per_second": 3.118, + "step": 720 + }, + { + "epoch": 10.013979903888162, + "grad_norm": 0.23820190131664276, + "learning_rate": 0.0006, + "loss": 4.437685489654541, + "step": 721 + }, + { + "epoch": 10.027959807776321, + "grad_norm": 0.2220371812582016, + "learning_rate": 0.0006, + "loss": 4.449873924255371, + "step": 722 + }, + { + "epoch": 10.041939711664483, + "grad_norm": 0.20369848608970642, + "learning_rate": 0.0006, + "loss": 4.448882579803467, + "step": 723 + }, + { + "epoch": 10.055919615552643, + "grad_norm": 0.2360001504421234, + "learning_rate": 0.0006, + "loss": 4.399251937866211, + "step": 724 + }, + { + "epoch": 10.069899519440805, + "grad_norm": 0.23537491261959076, + "learning_rate": 0.0006, + "loss": 4.442960739135742, + "step": 725 + }, + { + "epoch": 10.083879423328964, + "grad_norm": 0.24433870613574982, + "learning_rate": 0.0006, + "loss": 4.44808292388916, + "step": 726 + }, + { + "epoch": 10.097859327217126, + "grad_norm": 0.3406696021556854, + "learning_rate": 0.0006, + "loss": 4.443426132202148, + "step": 727 + }, + { + "epoch": 10.111839231105286, + "grad_norm": 0.4102286100387573, + "learning_rate": 0.0006, + "loss": 4.424919605255127, + "step": 728 + }, + { + "epoch": 10.125819134993447, + "grad_norm": 0.36462604999542236, + "learning_rate": 0.0006, + "loss": 4.45366907119751, + "step": 729 + }, + { + "epoch": 10.139799038881607, + "grad_norm": 0.4374827444553375, + "learning_rate": 0.0006, + "loss": 4.415630340576172, + "step": 730 + }, + { + "epoch": 10.153778942769769, + "grad_norm": 0.45248138904571533, + "learning_rate": 0.0006, + "loss": 4.448849678039551, + "step": 731 + }, + { + "epoch": 10.167758846657929, + "grad_norm": 0.3806457221508026, + "learning_rate": 0.0006, + "loss": 4.443390846252441, + "step": 732 + }, + { + "epoch": 10.18173875054609, + "grad_norm": 0.3491523861885071, + "learning_rate": 0.0006, + "loss": 4.4648637771606445, + "step": 733 + }, + { + "epoch": 10.19571865443425, + "grad_norm": 0.3327210247516632, + "learning_rate": 0.0006, + "loss": 4.460919380187988, + "step": 734 + }, + { + "epoch": 10.209698558322412, + "grad_norm": 0.29772236943244934, + "learning_rate": 0.0006, + "loss": 4.45159912109375, + "step": 735 + }, + { + "epoch": 10.223678462210572, + "grad_norm": 0.33083397150039673, + "learning_rate": 0.0006, + "loss": 4.463382720947266, + "step": 736 + }, + { + "epoch": 10.237658366098733, + "grad_norm": 0.3930598795413971, + "learning_rate": 0.0006, + "loss": 4.434510231018066, + "step": 737 + }, + { + "epoch": 10.251638269986893, + "grad_norm": 0.4342896044254303, + "learning_rate": 0.0006, + "loss": 4.451700210571289, + "step": 738 + }, + { + "epoch": 10.265618173875055, + "grad_norm": 0.4544043242931366, + "learning_rate": 0.0006, + "loss": 4.437224388122559, + "step": 739 + }, + { + "epoch": 10.279598077763215, + "grad_norm": 0.4487038254737854, + "learning_rate": 0.0006, + "loss": 4.46157693862915, + "step": 740 + }, + { + "epoch": 10.293577981651376, + "grad_norm": 0.4420500695705414, + "learning_rate": 0.0006, + "loss": 4.399561405181885, + "step": 741 + }, + { + "epoch": 10.307557885539538, + "grad_norm": 0.4167289435863495, + "learning_rate": 0.0006, + "loss": 4.41792106628418, + "step": 742 + }, + { + "epoch": 10.321537789427698, + "grad_norm": 0.3186971843242645, + "learning_rate": 0.0006, + "loss": 4.435683250427246, + "step": 743 + }, + { + "epoch": 10.33551769331586, + "grad_norm": 0.3077184855937958, + "learning_rate": 0.0006, + "loss": 4.481947898864746, + "step": 744 + }, + { + "epoch": 10.349497597204019, + "grad_norm": 0.26811280846595764, + "learning_rate": 0.0006, + "loss": 4.4339447021484375, + "step": 745 + }, + { + "epoch": 10.36347750109218, + "grad_norm": 0.28448057174682617, + "learning_rate": 0.0006, + "loss": 4.441644668579102, + "step": 746 + }, + { + "epoch": 10.37745740498034, + "grad_norm": 0.30731502175331116, + "learning_rate": 0.0006, + "loss": 4.428773880004883, + "step": 747 + }, + { + "epoch": 10.391437308868502, + "grad_norm": 0.28036001324653625, + "learning_rate": 0.0006, + "loss": 4.4433135986328125, + "step": 748 + }, + { + "epoch": 10.405417212756662, + "grad_norm": 0.2882847189903259, + "learning_rate": 0.0006, + "loss": 4.433401107788086, + "step": 749 + }, + { + "epoch": 10.419397116644824, + "grad_norm": 0.23622776567935944, + "learning_rate": 0.0006, + "loss": 4.444611549377441, + "step": 750 + }, + { + "epoch": 10.433377020532983, + "grad_norm": 0.2306167632341385, + "learning_rate": 0.0006, + "loss": 4.397875785827637, + "step": 751 + }, + { + "epoch": 10.447356924421145, + "grad_norm": 0.22725090384483337, + "learning_rate": 0.0006, + "loss": 4.429759502410889, + "step": 752 + }, + { + "epoch": 10.461336828309305, + "grad_norm": 0.250709593296051, + "learning_rate": 0.0006, + "loss": 4.415618896484375, + "step": 753 + }, + { + "epoch": 10.475316732197467, + "grad_norm": 0.22341276705265045, + "learning_rate": 0.0006, + "loss": 4.389362335205078, + "step": 754 + }, + { + "epoch": 10.489296636085626, + "grad_norm": 0.22595296800136566, + "learning_rate": 0.0006, + "loss": 4.383584022521973, + "step": 755 + }, + { + "epoch": 10.503276539973788, + "grad_norm": 0.24277575314044952, + "learning_rate": 0.0006, + "loss": 4.403777599334717, + "step": 756 + }, + { + "epoch": 10.517256443861948, + "grad_norm": 0.2670708894729614, + "learning_rate": 0.0006, + "loss": 4.398499011993408, + "step": 757 + }, + { + "epoch": 10.53123634775011, + "grad_norm": 0.2640696167945862, + "learning_rate": 0.0006, + "loss": 4.426726818084717, + "step": 758 + }, + { + "epoch": 10.54521625163827, + "grad_norm": 0.2248653769493103, + "learning_rate": 0.0006, + "loss": 4.400103569030762, + "step": 759 + }, + { + "epoch": 10.55919615552643, + "grad_norm": 0.21466240286827087, + "learning_rate": 0.0006, + "loss": 4.404158592224121, + "step": 760 + }, + { + "epoch": 10.57317605941459, + "grad_norm": 0.236923947930336, + "learning_rate": 0.0006, + "loss": 4.37059211730957, + "step": 761 + }, + { + "epoch": 10.587155963302752, + "grad_norm": 0.2515387535095215, + "learning_rate": 0.0006, + "loss": 4.415055274963379, + "step": 762 + }, + { + "epoch": 10.601135867190912, + "grad_norm": 0.23461885750293732, + "learning_rate": 0.0006, + "loss": 4.375036239624023, + "step": 763 + }, + { + "epoch": 10.615115771079074, + "grad_norm": 0.20975761115550995, + "learning_rate": 0.0006, + "loss": 4.3903398513793945, + "step": 764 + }, + { + "epoch": 10.629095674967235, + "grad_norm": 0.19859997928142548, + "learning_rate": 0.0006, + "loss": 4.379380226135254, + "step": 765 + }, + { + "epoch": 10.643075578855395, + "grad_norm": 0.22310325503349304, + "learning_rate": 0.0006, + "loss": 4.382110595703125, + "step": 766 + }, + { + "epoch": 10.657055482743557, + "grad_norm": 0.23940646648406982, + "learning_rate": 0.0006, + "loss": 4.393403053283691, + "step": 767 + }, + { + "epoch": 10.671035386631717, + "grad_norm": 0.2230468988418579, + "learning_rate": 0.0006, + "loss": 4.391970634460449, + "step": 768 + }, + { + "epoch": 10.685015290519878, + "grad_norm": 0.18139775097370148, + "learning_rate": 0.0006, + "loss": 4.399993896484375, + "step": 769 + }, + { + "epoch": 10.698995194408038, + "grad_norm": 0.19936902821063995, + "learning_rate": 0.0006, + "loss": 4.373854160308838, + "step": 770 + }, + { + "epoch": 10.7129750982962, + "grad_norm": 0.22132465243339539, + "learning_rate": 0.0006, + "loss": 4.377530097961426, + "step": 771 + }, + { + "epoch": 10.72695500218436, + "grad_norm": 0.24254944920539856, + "learning_rate": 0.0006, + "loss": 4.398683547973633, + "step": 772 + }, + { + "epoch": 10.740934906072521, + "grad_norm": 0.2666397988796234, + "learning_rate": 0.0006, + "loss": 4.3879899978637695, + "step": 773 + }, + { + "epoch": 10.754914809960681, + "grad_norm": 0.24728631973266602, + "learning_rate": 0.0006, + "loss": 4.356976509094238, + "step": 774 + }, + { + "epoch": 10.768894713848843, + "grad_norm": 0.2612453103065491, + "learning_rate": 0.0006, + "loss": 4.391525745391846, + "step": 775 + }, + { + "epoch": 10.782874617737003, + "grad_norm": 0.24060510098934174, + "learning_rate": 0.0006, + "loss": 4.376985549926758, + "step": 776 + }, + { + "epoch": 10.796854521625164, + "grad_norm": 0.22708238661289215, + "learning_rate": 0.0006, + "loss": 4.368545055389404, + "step": 777 + }, + { + "epoch": 10.810834425513324, + "grad_norm": 0.26931291818618774, + "learning_rate": 0.0006, + "loss": 4.369227409362793, + "step": 778 + }, + { + "epoch": 10.824814329401486, + "grad_norm": 0.265288770198822, + "learning_rate": 0.0006, + "loss": 4.378131866455078, + "step": 779 + }, + { + "epoch": 10.838794233289645, + "grad_norm": 0.3015305697917938, + "learning_rate": 0.0006, + "loss": 4.376267910003662, + "step": 780 + }, + { + "epoch": 10.852774137177807, + "grad_norm": 0.3345746099948883, + "learning_rate": 0.0006, + "loss": 4.3751420974731445, + "step": 781 + }, + { + "epoch": 10.866754041065967, + "grad_norm": 0.32446005940437317, + "learning_rate": 0.0006, + "loss": 4.370899200439453, + "step": 782 + }, + { + "epoch": 10.880733944954128, + "grad_norm": 0.27070069313049316, + "learning_rate": 0.0006, + "loss": 4.391958236694336, + "step": 783 + }, + { + "epoch": 10.89471384884229, + "grad_norm": 0.25584667921066284, + "learning_rate": 0.0006, + "loss": 4.407493591308594, + "step": 784 + }, + { + "epoch": 10.90869375273045, + "grad_norm": 0.2710244655609131, + "learning_rate": 0.0006, + "loss": 4.374400615692139, + "step": 785 + }, + { + "epoch": 10.922673656618612, + "grad_norm": 0.32413622736930847, + "learning_rate": 0.0006, + "loss": 4.379607200622559, + "step": 786 + }, + { + "epoch": 10.936653560506771, + "grad_norm": 0.3253782391548157, + "learning_rate": 0.0006, + "loss": 4.376441955566406, + "step": 787 + }, + { + "epoch": 10.950633464394933, + "grad_norm": 0.30534613132476807, + "learning_rate": 0.0006, + "loss": 4.382739067077637, + "step": 788 + }, + { + "epoch": 10.964613368283093, + "grad_norm": 0.35726621747016907, + "learning_rate": 0.0006, + "loss": 4.3765869140625, + "step": 789 + }, + { + "epoch": 10.978593272171254, + "grad_norm": 0.32763028144836426, + "learning_rate": 0.0006, + "loss": 4.391537189483643, + "step": 790 + }, + { + "epoch": 10.992573176059414, + "grad_norm": 0.31811195611953735, + "learning_rate": 0.0006, + "loss": 4.371829032897949, + "step": 791 + }, + { + "epoch": 11.0, + "grad_norm": 0.37317267060279846, + "learning_rate": 0.0006, + "loss": 4.381916522979736, + "step": 792 + }, + { + "epoch": 11.0, + "eval_loss": 4.588687896728516, + "eval_runtime": 44.8041, + "eval_samples_per_second": 54.504, + "eval_steps_per_second": 3.415, + "step": 792 + }, + { + "epoch": 11.013979903888162, + "grad_norm": 0.37882938981056213, + "learning_rate": 0.0006, + "loss": 4.3463640213012695, + "step": 793 + }, + { + "epoch": 11.027959807776321, + "grad_norm": 0.34719496965408325, + "learning_rate": 0.0006, + "loss": 4.329861640930176, + "step": 794 + }, + { + "epoch": 11.041939711664483, + "grad_norm": 0.36161214113235474, + "learning_rate": 0.0006, + "loss": 4.3287835121154785, + "step": 795 + }, + { + "epoch": 11.055919615552643, + "grad_norm": 0.3743649125099182, + "learning_rate": 0.0006, + "loss": 4.334251403808594, + "step": 796 + }, + { + "epoch": 11.069899519440805, + "grad_norm": 0.32266443967819214, + "learning_rate": 0.0006, + "loss": 4.364782810211182, + "step": 797 + }, + { + "epoch": 11.083879423328964, + "grad_norm": 0.27460047602653503, + "learning_rate": 0.0006, + "loss": 4.348380088806152, + "step": 798 + }, + { + "epoch": 11.097859327217126, + "grad_norm": 0.30498892068862915, + "learning_rate": 0.0006, + "loss": 4.347856521606445, + "step": 799 + }, + { + "epoch": 11.111839231105286, + "grad_norm": 0.29740771651268005, + "learning_rate": 0.0006, + "loss": 4.343471050262451, + "step": 800 + }, + { + "epoch": 11.125819134993447, + "grad_norm": 0.3004681169986725, + "learning_rate": 0.0006, + "loss": 4.337590217590332, + "step": 801 + }, + { + "epoch": 11.139799038881607, + "grad_norm": 0.3000192642211914, + "learning_rate": 0.0006, + "loss": 4.349949836730957, + "step": 802 + }, + { + "epoch": 11.153778942769769, + "grad_norm": 0.27461889386177063, + "learning_rate": 0.0006, + "loss": 4.338934898376465, + "step": 803 + }, + { + "epoch": 11.167758846657929, + "grad_norm": 0.2856169641017914, + "learning_rate": 0.0006, + "loss": 4.320754051208496, + "step": 804 + }, + { + "epoch": 11.18173875054609, + "grad_norm": 0.29822713136672974, + "learning_rate": 0.0006, + "loss": 4.357949733734131, + "step": 805 + }, + { + "epoch": 11.19571865443425, + "grad_norm": 0.34061339497566223, + "learning_rate": 0.0006, + "loss": 4.327282905578613, + "step": 806 + }, + { + "epoch": 11.209698558322412, + "grad_norm": 0.3379063010215759, + "learning_rate": 0.0006, + "loss": 4.355471611022949, + "step": 807 + }, + { + "epoch": 11.223678462210572, + "grad_norm": 0.2859216630458832, + "learning_rate": 0.0006, + "loss": 4.352344989776611, + "step": 808 + }, + { + "epoch": 11.237658366098733, + "grad_norm": 0.29522669315338135, + "learning_rate": 0.0006, + "loss": 4.349186897277832, + "step": 809 + }, + { + "epoch": 11.251638269986893, + "grad_norm": 0.273798406124115, + "learning_rate": 0.0006, + "loss": 4.342379570007324, + "step": 810 + }, + { + "epoch": 11.265618173875055, + "grad_norm": 0.25298982858657837, + "learning_rate": 0.0006, + "loss": 4.358835220336914, + "step": 811 + }, + { + "epoch": 11.279598077763215, + "grad_norm": 0.2170463651418686, + "learning_rate": 0.0006, + "loss": 4.3422017097473145, + "step": 812 + }, + { + "epoch": 11.293577981651376, + "grad_norm": 0.24855731427669525, + "learning_rate": 0.0006, + "loss": 4.322849750518799, + "step": 813 + }, + { + "epoch": 11.307557885539538, + "grad_norm": 0.22564345598220825, + "learning_rate": 0.0006, + "loss": 4.316864967346191, + "step": 814 + }, + { + "epoch": 11.321537789427698, + "grad_norm": 0.21532197296619415, + "learning_rate": 0.0006, + "loss": 4.326743125915527, + "step": 815 + }, + { + "epoch": 11.33551769331586, + "grad_norm": 0.20514146983623505, + "learning_rate": 0.0006, + "loss": 4.326531887054443, + "step": 816 + }, + { + "epoch": 11.349497597204019, + "grad_norm": 0.19035090506076813, + "learning_rate": 0.0006, + "loss": 4.318154335021973, + "step": 817 + }, + { + "epoch": 11.36347750109218, + "grad_norm": 0.17889662086963654, + "learning_rate": 0.0006, + "loss": 4.35410213470459, + "step": 818 + }, + { + "epoch": 11.37745740498034, + "grad_norm": 0.20564863085746765, + "learning_rate": 0.0006, + "loss": 4.350226879119873, + "step": 819 + }, + { + "epoch": 11.391437308868502, + "grad_norm": 0.2412603348493576, + "learning_rate": 0.0006, + "loss": 4.325137138366699, + "step": 820 + }, + { + "epoch": 11.405417212756662, + "grad_norm": 0.2603496015071869, + "learning_rate": 0.0006, + "loss": 4.335752487182617, + "step": 821 + }, + { + "epoch": 11.419397116644824, + "grad_norm": 0.2968119978904724, + "learning_rate": 0.0006, + "loss": 4.3317670822143555, + "step": 822 + }, + { + "epoch": 11.433377020532983, + "grad_norm": 0.3280937969684601, + "learning_rate": 0.0006, + "loss": 4.322279453277588, + "step": 823 + }, + { + "epoch": 11.447356924421145, + "grad_norm": 0.3598847985267639, + "learning_rate": 0.0006, + "loss": 4.312255859375, + "step": 824 + }, + { + "epoch": 11.461336828309305, + "grad_norm": 0.3996485471725464, + "learning_rate": 0.0006, + "loss": 4.327103614807129, + "step": 825 + }, + { + "epoch": 11.475316732197467, + "grad_norm": 0.4352041780948639, + "learning_rate": 0.0006, + "loss": 4.368639945983887, + "step": 826 + }, + { + "epoch": 11.489296636085626, + "grad_norm": 0.4451918601989746, + "learning_rate": 0.0006, + "loss": 4.335113048553467, + "step": 827 + }, + { + "epoch": 11.503276539973788, + "grad_norm": 0.4403933584690094, + "learning_rate": 0.0006, + "loss": 4.369889259338379, + "step": 828 + }, + { + "epoch": 11.517256443861948, + "grad_norm": 0.34862443804740906, + "learning_rate": 0.0006, + "loss": 4.316292762756348, + "step": 829 + }, + { + "epoch": 11.53123634775011, + "grad_norm": 0.3240634500980377, + "learning_rate": 0.0006, + "loss": 4.328078746795654, + "step": 830 + }, + { + "epoch": 11.54521625163827, + "grad_norm": 0.2445751428604126, + "learning_rate": 0.0006, + "loss": 4.291940689086914, + "step": 831 + }, + { + "epoch": 11.55919615552643, + "grad_norm": 0.24376554787158966, + "learning_rate": 0.0006, + "loss": 4.339217662811279, + "step": 832 + }, + { + "epoch": 11.57317605941459, + "grad_norm": 0.22419725358486176, + "learning_rate": 0.0006, + "loss": 4.2887468338012695, + "step": 833 + }, + { + "epoch": 11.587155963302752, + "grad_norm": 0.22318261861801147, + "learning_rate": 0.0006, + "loss": 4.298492908477783, + "step": 834 + }, + { + "epoch": 11.601135867190912, + "grad_norm": 0.2357342392206192, + "learning_rate": 0.0006, + "loss": 4.328692436218262, + "step": 835 + }, + { + "epoch": 11.615115771079074, + "grad_norm": 0.25450602173805237, + "learning_rate": 0.0006, + "loss": 4.360058784484863, + "step": 836 + }, + { + "epoch": 11.629095674967235, + "grad_norm": 0.24540965259075165, + "learning_rate": 0.0006, + "loss": 4.311890602111816, + "step": 837 + }, + { + "epoch": 11.643075578855395, + "grad_norm": 0.2535638213157654, + "learning_rate": 0.0006, + "loss": 4.327730178833008, + "step": 838 + }, + { + "epoch": 11.657055482743557, + "grad_norm": 0.23063556849956512, + "learning_rate": 0.0006, + "loss": 4.303299903869629, + "step": 839 + }, + { + "epoch": 11.671035386631717, + "grad_norm": 0.21813632547855377, + "learning_rate": 0.0006, + "loss": 4.315352439880371, + "step": 840 + }, + { + "epoch": 11.685015290519878, + "grad_norm": 0.2170359194278717, + "learning_rate": 0.0006, + "loss": 4.278632164001465, + "step": 841 + }, + { + "epoch": 11.698995194408038, + "grad_norm": 0.21059377491474152, + "learning_rate": 0.0006, + "loss": 4.306049346923828, + "step": 842 + }, + { + "epoch": 11.7129750982962, + "grad_norm": 0.19872888922691345, + "learning_rate": 0.0006, + "loss": 4.3091535568237305, + "step": 843 + }, + { + "epoch": 11.72695500218436, + "grad_norm": 0.20059862732887268, + "learning_rate": 0.0006, + "loss": 4.2884063720703125, + "step": 844 + }, + { + "epoch": 11.740934906072521, + "grad_norm": 0.19952483475208282, + "learning_rate": 0.0006, + "loss": 4.293610572814941, + "step": 845 + }, + { + "epoch": 11.754914809960681, + "grad_norm": 0.19794537127017975, + "learning_rate": 0.0006, + "loss": 4.288822174072266, + "step": 846 + }, + { + "epoch": 11.768894713848843, + "grad_norm": 0.213914692401886, + "learning_rate": 0.0006, + "loss": 4.320849418640137, + "step": 847 + }, + { + "epoch": 11.782874617737003, + "grad_norm": 0.18500955402851105, + "learning_rate": 0.0006, + "loss": 4.29300594329834, + "step": 848 + }, + { + "epoch": 11.796854521625164, + "grad_norm": 0.19446656107902527, + "learning_rate": 0.0006, + "loss": 4.3079352378845215, + "step": 849 + }, + { + "epoch": 11.810834425513324, + "grad_norm": 0.22191768884658813, + "learning_rate": 0.0006, + "loss": 4.295967102050781, + "step": 850 + }, + { + "epoch": 11.824814329401486, + "grad_norm": 0.20748084783554077, + "learning_rate": 0.0006, + "loss": 4.332365989685059, + "step": 851 + }, + { + "epoch": 11.838794233289645, + "grad_norm": 0.20993955433368683, + "learning_rate": 0.0006, + "loss": 4.294618129730225, + "step": 852 + }, + { + "epoch": 11.852774137177807, + "grad_norm": 0.23506952822208405, + "learning_rate": 0.0006, + "loss": 4.313426971435547, + "step": 853 + }, + { + "epoch": 11.866754041065967, + "grad_norm": 0.2379443347454071, + "learning_rate": 0.0006, + "loss": 4.297664642333984, + "step": 854 + }, + { + "epoch": 11.880733944954128, + "grad_norm": 0.2127852737903595, + "learning_rate": 0.0006, + "loss": 4.2807698249816895, + "step": 855 + }, + { + "epoch": 11.89471384884229, + "grad_norm": 0.2125532180070877, + "learning_rate": 0.0006, + "loss": 4.310990333557129, + "step": 856 + }, + { + "epoch": 11.90869375273045, + "grad_norm": 0.1996062994003296, + "learning_rate": 0.0006, + "loss": 4.253237724304199, + "step": 857 + }, + { + "epoch": 11.922673656618612, + "grad_norm": 0.20747603476047516, + "learning_rate": 0.0006, + "loss": 4.294193267822266, + "step": 858 + }, + { + "epoch": 11.936653560506771, + "grad_norm": 0.24082425236701965, + "learning_rate": 0.0006, + "loss": 4.269967079162598, + "step": 859 + }, + { + "epoch": 11.950633464394933, + "grad_norm": 0.28993573784828186, + "learning_rate": 0.0006, + "loss": 4.294550895690918, + "step": 860 + }, + { + "epoch": 11.964613368283093, + "grad_norm": 0.29576948285102844, + "learning_rate": 0.0006, + "loss": 4.3188252449035645, + "step": 861 + }, + { + "epoch": 11.978593272171254, + "grad_norm": 0.2754935026168823, + "learning_rate": 0.0006, + "loss": 4.312817573547363, + "step": 862 + }, + { + "epoch": 11.992573176059414, + "grad_norm": 0.3062523305416107, + "learning_rate": 0.0006, + "loss": 4.288214683532715, + "step": 863 + }, + { + "epoch": 12.0, + "grad_norm": 0.3367644250392914, + "learning_rate": 0.0006, + "loss": 4.314888954162598, + "step": 864 + }, + { + "epoch": 12.0, + "eval_loss": 4.516861438751221, + "eval_runtime": 44.2584, + "eval_samples_per_second": 55.176, + "eval_steps_per_second": 3.457, + "step": 864 + }, + { + "epoch": 12.013979903888162, + "grad_norm": 0.2976512014865875, + "learning_rate": 0.0006, + "loss": 4.278797149658203, + "step": 865 + }, + { + "epoch": 12.027959807776321, + "grad_norm": 0.32217127084732056, + "learning_rate": 0.0006, + "loss": 4.2823615074157715, + "step": 866 + }, + { + "epoch": 12.041939711664483, + "grad_norm": 0.31538400053977966, + "learning_rate": 0.0006, + "loss": 4.252805709838867, + "step": 867 + }, + { + "epoch": 12.055919615552643, + "grad_norm": 0.3501375913619995, + "learning_rate": 0.0006, + "loss": 4.276501655578613, + "step": 868 + }, + { + "epoch": 12.069899519440805, + "grad_norm": 0.3452056646347046, + "learning_rate": 0.0006, + "loss": 4.275739669799805, + "step": 869 + }, + { + "epoch": 12.083879423328964, + "grad_norm": 0.36963316798210144, + "learning_rate": 0.0006, + "loss": 4.3215227127075195, + "step": 870 + }, + { + "epoch": 12.097859327217126, + "grad_norm": 0.41605016589164734, + "learning_rate": 0.0006, + "loss": 4.28739595413208, + "step": 871 + }, + { + "epoch": 12.111839231105286, + "grad_norm": 0.37700653076171875, + "learning_rate": 0.0006, + "loss": 4.291154861450195, + "step": 872 + }, + { + "epoch": 12.125819134993447, + "grad_norm": 0.3194253444671631, + "learning_rate": 0.0006, + "loss": 4.259326934814453, + "step": 873 + }, + { + "epoch": 12.139799038881607, + "grad_norm": 0.31770631670951843, + "learning_rate": 0.0006, + "loss": 4.270082473754883, + "step": 874 + }, + { + "epoch": 12.153778942769769, + "grad_norm": 0.3748120069503784, + "learning_rate": 0.0006, + "loss": 4.2727274894714355, + "step": 875 + }, + { + "epoch": 12.167758846657929, + "grad_norm": 0.3821348547935486, + "learning_rate": 0.0006, + "loss": 4.2848286628723145, + "step": 876 + }, + { + "epoch": 12.18173875054609, + "grad_norm": 0.31894201040267944, + "learning_rate": 0.0006, + "loss": 4.289551258087158, + "step": 877 + }, + { + "epoch": 12.19571865443425, + "grad_norm": 0.2695826292037964, + "learning_rate": 0.0006, + "loss": 4.2797346115112305, + "step": 878 + }, + { + "epoch": 12.209698558322412, + "grad_norm": 0.23966269195079803, + "learning_rate": 0.0006, + "loss": 4.24021577835083, + "step": 879 + }, + { + "epoch": 12.223678462210572, + "grad_norm": 0.24342599511146545, + "learning_rate": 0.0006, + "loss": 4.277721881866455, + "step": 880 + }, + { + "epoch": 12.237658366098733, + "grad_norm": 0.2522958815097809, + "learning_rate": 0.0006, + "loss": 4.263946533203125, + "step": 881 + }, + { + "epoch": 12.251638269986893, + "grad_norm": 0.2708299458026886, + "learning_rate": 0.0006, + "loss": 4.274540901184082, + "step": 882 + }, + { + "epoch": 12.265618173875055, + "grad_norm": 0.2978788912296295, + "learning_rate": 0.0006, + "loss": 4.2674970626831055, + "step": 883 + }, + { + "epoch": 12.279598077763215, + "grad_norm": 0.2898774743080139, + "learning_rate": 0.0006, + "loss": 4.235060691833496, + "step": 884 + }, + { + "epoch": 12.293577981651376, + "grad_norm": 0.27941837906837463, + "learning_rate": 0.0006, + "loss": 4.284140586853027, + "step": 885 + }, + { + "epoch": 12.307557885539538, + "grad_norm": 0.25050559639930725, + "learning_rate": 0.0006, + "loss": 4.270134925842285, + "step": 886 + }, + { + "epoch": 12.321537789427698, + "grad_norm": 0.21867156028747559, + "learning_rate": 0.0006, + "loss": 4.241571426391602, + "step": 887 + }, + { + "epoch": 12.33551769331586, + "grad_norm": 0.24735847115516663, + "learning_rate": 0.0006, + "loss": 4.253087997436523, + "step": 888 + }, + { + "epoch": 12.349497597204019, + "grad_norm": 0.23069104552268982, + "learning_rate": 0.0006, + "loss": 4.258606910705566, + "step": 889 + }, + { + "epoch": 12.36347750109218, + "grad_norm": 0.2594369947910309, + "learning_rate": 0.0006, + "loss": 4.307351112365723, + "step": 890 + }, + { + "epoch": 12.37745740498034, + "grad_norm": 0.25349098443984985, + "learning_rate": 0.0006, + "loss": 4.264268398284912, + "step": 891 + }, + { + "epoch": 12.391437308868502, + "grad_norm": 0.2550840675830841, + "learning_rate": 0.0006, + "loss": 4.247092247009277, + "step": 892 + }, + { + "epoch": 12.405417212756662, + "grad_norm": 0.2107602059841156, + "learning_rate": 0.0006, + "loss": 4.240527153015137, + "step": 893 + }, + { + "epoch": 12.419397116644824, + "grad_norm": 0.2025548368692398, + "learning_rate": 0.0006, + "loss": 4.244686126708984, + "step": 894 + }, + { + "epoch": 12.433377020532983, + "grad_norm": 0.22061701118946075, + "learning_rate": 0.0006, + "loss": 4.233231544494629, + "step": 895 + }, + { + "epoch": 12.447356924421145, + "grad_norm": 0.19503085315227509, + "learning_rate": 0.0006, + "loss": 4.23851203918457, + "step": 896 + }, + { + "epoch": 12.461336828309305, + "grad_norm": 0.19313643872737885, + "learning_rate": 0.0006, + "loss": 4.190886497497559, + "step": 897 + }, + { + "epoch": 12.475316732197467, + "grad_norm": 0.21094176173210144, + "learning_rate": 0.0006, + "loss": 4.277888298034668, + "step": 898 + }, + { + "epoch": 12.489296636085626, + "grad_norm": 0.1980651170015335, + "learning_rate": 0.0006, + "loss": 4.251066207885742, + "step": 899 + }, + { + "epoch": 12.503276539973788, + "grad_norm": 0.179737389087677, + "learning_rate": 0.0006, + "loss": 4.194703102111816, + "step": 900 + }, + { + "epoch": 12.517256443861948, + "grad_norm": 0.19069281220436096, + "learning_rate": 0.0006, + "loss": 4.242412567138672, + "step": 901 + }, + { + "epoch": 12.53123634775011, + "grad_norm": 0.191154345870018, + "learning_rate": 0.0006, + "loss": 4.2432780265808105, + "step": 902 + }, + { + "epoch": 12.54521625163827, + "grad_norm": 0.19760103523731232, + "learning_rate": 0.0006, + "loss": 4.23294734954834, + "step": 903 + }, + { + "epoch": 12.55919615552643, + "grad_norm": 0.19982324540615082, + "learning_rate": 0.0006, + "loss": 4.249764442443848, + "step": 904 + }, + { + "epoch": 12.57317605941459, + "grad_norm": 0.1986108422279358, + "learning_rate": 0.0006, + "loss": 4.213435649871826, + "step": 905 + }, + { + "epoch": 12.587155963302752, + "grad_norm": 0.19727319478988647, + "learning_rate": 0.0006, + "loss": 4.247962951660156, + "step": 906 + }, + { + "epoch": 12.601135867190912, + "grad_norm": 0.23404482007026672, + "learning_rate": 0.0006, + "loss": 4.237396240234375, + "step": 907 + }, + { + "epoch": 12.615115771079074, + "grad_norm": 0.21136441826820374, + "learning_rate": 0.0006, + "loss": 4.236040115356445, + "step": 908 + }, + { + "epoch": 12.629095674967235, + "grad_norm": 0.2209048718214035, + "learning_rate": 0.0006, + "loss": 4.234212875366211, + "step": 909 + }, + { + "epoch": 12.643075578855395, + "grad_norm": 0.22120307385921478, + "learning_rate": 0.0006, + "loss": 4.2711076736450195, + "step": 910 + }, + { + "epoch": 12.657055482743557, + "grad_norm": 0.22733066976070404, + "learning_rate": 0.0006, + "loss": 4.231651306152344, + "step": 911 + }, + { + "epoch": 12.671035386631717, + "grad_norm": 0.2435602843761444, + "learning_rate": 0.0006, + "loss": 4.249372482299805, + "step": 912 + }, + { + "epoch": 12.685015290519878, + "grad_norm": 0.28881654143333435, + "learning_rate": 0.0006, + "loss": 4.2626051902771, + "step": 913 + }, + { + "epoch": 12.698995194408038, + "grad_norm": 0.3211199641227722, + "learning_rate": 0.0006, + "loss": 4.254220485687256, + "step": 914 + }, + { + "epoch": 12.7129750982962, + "grad_norm": 0.3118100166320801, + "learning_rate": 0.0006, + "loss": 4.233747959136963, + "step": 915 + }, + { + "epoch": 12.72695500218436, + "grad_norm": 0.33411866426467896, + "learning_rate": 0.0006, + "loss": 4.270386219024658, + "step": 916 + }, + { + "epoch": 12.740934906072521, + "grad_norm": 0.2968253195285797, + "learning_rate": 0.0006, + "loss": 4.242254257202148, + "step": 917 + }, + { + "epoch": 12.754914809960681, + "grad_norm": 0.2959132194519043, + "learning_rate": 0.0006, + "loss": 4.232100486755371, + "step": 918 + }, + { + "epoch": 12.768894713848843, + "grad_norm": 0.2729283273220062, + "learning_rate": 0.0006, + "loss": 4.233869552612305, + "step": 919 + }, + { + "epoch": 12.782874617737003, + "grad_norm": 0.2669033408164978, + "learning_rate": 0.0006, + "loss": 4.261008262634277, + "step": 920 + }, + { + "epoch": 12.796854521625164, + "grad_norm": 0.2738507091999054, + "learning_rate": 0.0006, + "loss": 4.2286763191223145, + "step": 921 + }, + { + "epoch": 12.810834425513324, + "grad_norm": 0.29105183482170105, + "learning_rate": 0.0006, + "loss": 4.281410217285156, + "step": 922 + }, + { + "epoch": 12.824814329401486, + "grad_norm": 0.31330201029777527, + "learning_rate": 0.0006, + "loss": 4.264181613922119, + "step": 923 + }, + { + "epoch": 12.838794233289645, + "grad_norm": 0.31324025988578796, + "learning_rate": 0.0006, + "loss": 4.250385284423828, + "step": 924 + }, + { + "epoch": 12.852774137177807, + "grad_norm": 0.2727925181388855, + "learning_rate": 0.0006, + "loss": 4.24821138381958, + "step": 925 + }, + { + "epoch": 12.866754041065967, + "grad_norm": 0.27350082993507385, + "learning_rate": 0.0006, + "loss": 4.230215072631836, + "step": 926 + }, + { + "epoch": 12.880733944954128, + "grad_norm": 0.2269950658082962, + "learning_rate": 0.0006, + "loss": 4.210305213928223, + "step": 927 + }, + { + "epoch": 12.89471384884229, + "grad_norm": 0.24667619168758392, + "learning_rate": 0.0006, + "loss": 4.239969253540039, + "step": 928 + }, + { + "epoch": 12.90869375273045, + "grad_norm": 0.22510501742362976, + "learning_rate": 0.0006, + "loss": 4.192750930786133, + "step": 929 + }, + { + "epoch": 12.922673656618612, + "grad_norm": 0.22887611389160156, + "learning_rate": 0.0006, + "loss": 4.264463424682617, + "step": 930 + }, + { + "epoch": 12.936653560506771, + "grad_norm": 0.22195978462696075, + "learning_rate": 0.0006, + "loss": 4.205256938934326, + "step": 931 + }, + { + "epoch": 12.950633464394933, + "grad_norm": 0.23184578120708466, + "learning_rate": 0.0006, + "loss": 4.214578628540039, + "step": 932 + }, + { + "epoch": 12.964613368283093, + "grad_norm": 0.2186676561832428, + "learning_rate": 0.0006, + "loss": 4.227711200714111, + "step": 933 + }, + { + "epoch": 12.978593272171254, + "grad_norm": 0.2160426527261734, + "learning_rate": 0.0006, + "loss": 4.221796989440918, + "step": 934 + }, + { + "epoch": 12.992573176059414, + "grad_norm": 0.21562792360782623, + "learning_rate": 0.0006, + "loss": 4.21957540512085, + "step": 935 + }, + { + "epoch": 13.0, + "grad_norm": 0.22538058459758759, + "learning_rate": 0.0006, + "loss": 4.2353973388671875, + "step": 936 + }, + { + "epoch": 13.0, + "eval_loss": 4.426600933074951, + "eval_runtime": 44.8138, + "eval_samples_per_second": 54.492, + "eval_steps_per_second": 3.414, + "step": 936 + }, + { + "epoch": 13.013979903888162, + "grad_norm": 0.24888049066066742, + "learning_rate": 0.0006, + "loss": 4.18648624420166, + "step": 937 + }, + { + "epoch": 13.027959807776321, + "grad_norm": 0.28330180048942566, + "learning_rate": 0.0006, + "loss": 4.188892364501953, + "step": 938 + }, + { + "epoch": 13.041939711664483, + "grad_norm": 0.31152188777923584, + "learning_rate": 0.0006, + "loss": 4.2053399085998535, + "step": 939 + }, + { + "epoch": 13.055919615552643, + "grad_norm": 0.2842433452606201, + "learning_rate": 0.0006, + "loss": 4.191902160644531, + "step": 940 + }, + { + "epoch": 13.069899519440805, + "grad_norm": 0.23664532601833344, + "learning_rate": 0.0006, + "loss": 4.1831865310668945, + "step": 941 + }, + { + "epoch": 13.083879423328964, + "grad_norm": 0.24204140901565552, + "learning_rate": 0.0006, + "loss": 4.202641487121582, + "step": 942 + }, + { + "epoch": 13.097859327217126, + "grad_norm": 0.235311359167099, + "learning_rate": 0.0006, + "loss": 4.174511909484863, + "step": 943 + }, + { + "epoch": 13.111839231105286, + "grad_norm": 0.27127715945243835, + "learning_rate": 0.0006, + "loss": 4.201844215393066, + "step": 944 + }, + { + "epoch": 13.125819134993447, + "grad_norm": 0.2722373604774475, + "learning_rate": 0.0006, + "loss": 4.157383918762207, + "step": 945 + }, + { + "epoch": 13.139799038881607, + "grad_norm": 0.25446659326553345, + "learning_rate": 0.0006, + "loss": 4.221236228942871, + "step": 946 + }, + { + "epoch": 13.153778942769769, + "grad_norm": 0.273017019033432, + "learning_rate": 0.0006, + "loss": 4.195512771606445, + "step": 947 + }, + { + "epoch": 13.167758846657929, + "grad_norm": 0.24766312539577484, + "learning_rate": 0.0006, + "loss": 4.220959663391113, + "step": 948 + }, + { + "epoch": 13.18173875054609, + "grad_norm": 0.24636317789554596, + "learning_rate": 0.0006, + "loss": 4.214302062988281, + "step": 949 + }, + { + "epoch": 13.19571865443425, + "grad_norm": 0.3177756667137146, + "learning_rate": 0.0006, + "loss": 4.213500022888184, + "step": 950 + }, + { + "epoch": 13.209698558322412, + "grad_norm": 0.44579195976257324, + "learning_rate": 0.0006, + "loss": 4.227644920349121, + "step": 951 + }, + { + "epoch": 13.223678462210572, + "grad_norm": 0.4217414855957031, + "learning_rate": 0.0006, + "loss": 4.180937767028809, + "step": 952 + }, + { + "epoch": 13.237658366098733, + "grad_norm": 0.30148059129714966, + "learning_rate": 0.0006, + "loss": 4.207760810852051, + "step": 953 + }, + { + "epoch": 13.251638269986893, + "grad_norm": 0.3192492127418518, + "learning_rate": 0.0006, + "loss": 4.197999000549316, + "step": 954 + }, + { + "epoch": 13.265618173875055, + "grad_norm": 0.37334588170051575, + "learning_rate": 0.0006, + "loss": 4.208001136779785, + "step": 955 + }, + { + "epoch": 13.279598077763215, + "grad_norm": 0.4059637784957886, + "learning_rate": 0.0006, + "loss": 4.211322784423828, + "step": 956 + }, + { + "epoch": 13.293577981651376, + "grad_norm": 0.3389599323272705, + "learning_rate": 0.0006, + "loss": 4.204404354095459, + "step": 957 + }, + { + "epoch": 13.307557885539538, + "grad_norm": 0.2675766050815582, + "learning_rate": 0.0006, + "loss": 4.245941162109375, + "step": 958 + }, + { + "epoch": 13.321537789427698, + "grad_norm": 0.2730264365673065, + "learning_rate": 0.0006, + "loss": 4.2221221923828125, + "step": 959 + }, + { + "epoch": 13.33551769331586, + "grad_norm": 0.26458224654197693, + "learning_rate": 0.0006, + "loss": 4.205596923828125, + "step": 960 + }, + { + "epoch": 13.349497597204019, + "grad_norm": 0.2872551381587982, + "learning_rate": 0.0006, + "loss": 4.196977615356445, + "step": 961 + }, + { + "epoch": 13.36347750109218, + "grad_norm": 0.2954796850681305, + "learning_rate": 0.0006, + "loss": 4.202796936035156, + "step": 962 + }, + { + "epoch": 13.37745740498034, + "grad_norm": 0.2619425654411316, + "learning_rate": 0.0006, + "loss": 4.196845054626465, + "step": 963 + }, + { + "epoch": 13.391437308868502, + "grad_norm": 0.30088478326797485, + "learning_rate": 0.0006, + "loss": 4.219697952270508, + "step": 964 + }, + { + "epoch": 13.405417212756662, + "grad_norm": 0.30388689041137695, + "learning_rate": 0.0006, + "loss": 4.187566757202148, + "step": 965 + }, + { + "epoch": 13.419397116644824, + "grad_norm": 0.27918127179145813, + "learning_rate": 0.0006, + "loss": 4.223600387573242, + "step": 966 + }, + { + "epoch": 13.433377020532983, + "grad_norm": 0.27634528279304504, + "learning_rate": 0.0006, + "loss": 4.165332317352295, + "step": 967 + }, + { + "epoch": 13.447356924421145, + "grad_norm": 0.28830021619796753, + "learning_rate": 0.0006, + "loss": 4.204029560089111, + "step": 968 + }, + { + "epoch": 13.461336828309305, + "grad_norm": 0.29220864176750183, + "learning_rate": 0.0006, + "loss": 4.218057155609131, + "step": 969 + }, + { + "epoch": 13.475316732197467, + "grad_norm": 0.3089624345302582, + "learning_rate": 0.0006, + "loss": 4.200654983520508, + "step": 970 + }, + { + "epoch": 13.489296636085626, + "grad_norm": 0.36479851603507996, + "learning_rate": 0.0006, + "loss": 4.182811737060547, + "step": 971 + }, + { + "epoch": 13.503276539973788, + "grad_norm": 0.37561097741127014, + "learning_rate": 0.0006, + "loss": 4.190266132354736, + "step": 972 + }, + { + "epoch": 13.517256443861948, + "grad_norm": 0.3263583183288574, + "learning_rate": 0.0006, + "loss": 4.214815616607666, + "step": 973 + }, + { + "epoch": 13.53123634775011, + "grad_norm": 0.21552999317646027, + "learning_rate": 0.0006, + "loss": 4.171380043029785, + "step": 974 + }, + { + "epoch": 13.54521625163827, + "grad_norm": 0.247328519821167, + "learning_rate": 0.0006, + "loss": 4.175377368927002, + "step": 975 + }, + { + "epoch": 13.55919615552643, + "grad_norm": 0.23740540444850922, + "learning_rate": 0.0006, + "loss": 4.212357997894287, + "step": 976 + }, + { + "epoch": 13.57317605941459, + "grad_norm": 0.21533876657485962, + "learning_rate": 0.0006, + "loss": 4.203285217285156, + "step": 977 + }, + { + "epoch": 13.587155963302752, + "grad_norm": 0.21462024748325348, + "learning_rate": 0.0006, + "loss": 4.178012371063232, + "step": 978 + }, + { + "epoch": 13.601135867190912, + "grad_norm": 0.2279169261455536, + "learning_rate": 0.0006, + "loss": 4.193912982940674, + "step": 979 + }, + { + "epoch": 13.615115771079074, + "grad_norm": 0.2202417552471161, + "learning_rate": 0.0006, + "loss": 4.167629718780518, + "step": 980 + }, + { + "epoch": 13.629095674967235, + "grad_norm": 0.20586472749710083, + "learning_rate": 0.0006, + "loss": 4.159290313720703, + "step": 981 + }, + { + "epoch": 13.643075578855395, + "grad_norm": 0.20200690627098083, + "learning_rate": 0.0006, + "loss": 4.210315227508545, + "step": 982 + }, + { + "epoch": 13.657055482743557, + "grad_norm": 0.21710257232189178, + "learning_rate": 0.0006, + "loss": 4.21730375289917, + "step": 983 + }, + { + "epoch": 13.671035386631717, + "grad_norm": 0.22058045864105225, + "learning_rate": 0.0006, + "loss": 4.1996073722839355, + "step": 984 + }, + { + "epoch": 13.685015290519878, + "grad_norm": 0.21549592912197113, + "learning_rate": 0.0006, + "loss": 4.209203720092773, + "step": 985 + }, + { + "epoch": 13.698995194408038, + "grad_norm": 0.22274717688560486, + "learning_rate": 0.0006, + "loss": 4.220660209655762, + "step": 986 + }, + { + "epoch": 13.7129750982962, + "grad_norm": 0.22791637480258942, + "learning_rate": 0.0006, + "loss": 4.158679962158203, + "step": 987 + }, + { + "epoch": 13.72695500218436, + "grad_norm": 0.216218963265419, + "learning_rate": 0.0006, + "loss": 4.188124656677246, + "step": 988 + }, + { + "epoch": 13.740934906072521, + "grad_norm": 0.19149383902549744, + "learning_rate": 0.0006, + "loss": 4.181729316711426, + "step": 989 + }, + { + "epoch": 13.754914809960681, + "grad_norm": 0.18964019417762756, + "learning_rate": 0.0006, + "loss": 4.184767246246338, + "step": 990 + }, + { + "epoch": 13.768894713848843, + "grad_norm": 0.1778000295162201, + "learning_rate": 0.0006, + "loss": 4.1802263259887695, + "step": 991 + }, + { + "epoch": 13.782874617737003, + "grad_norm": 0.18277616798877716, + "learning_rate": 0.0006, + "loss": 4.1657867431640625, + "step": 992 + }, + { + "epoch": 13.796854521625164, + "grad_norm": 0.18610034883022308, + "learning_rate": 0.0006, + "loss": 4.156744956970215, + "step": 993 + }, + { + "epoch": 13.810834425513324, + "grad_norm": 0.19332963228225708, + "learning_rate": 0.0006, + "loss": 4.143558502197266, + "step": 994 + }, + { + "epoch": 13.824814329401486, + "grad_norm": 0.19758112728595734, + "learning_rate": 0.0006, + "loss": 4.195793151855469, + "step": 995 + }, + { + "epoch": 13.838794233289645, + "grad_norm": 0.1933647245168686, + "learning_rate": 0.0006, + "loss": 4.169734954833984, + "step": 996 + }, + { + "epoch": 13.852774137177807, + "grad_norm": 0.2362028956413269, + "learning_rate": 0.0006, + "loss": 4.175025939941406, + "step": 997 + }, + { + "epoch": 13.866754041065967, + "grad_norm": 0.2465490996837616, + "learning_rate": 0.0006, + "loss": 4.173909664154053, + "step": 998 + }, + { + "epoch": 13.880733944954128, + "grad_norm": 0.23449952900409698, + "learning_rate": 0.0006, + "loss": 4.173429489135742, + "step": 999 + }, + { + "epoch": 13.89471384884229, + "grad_norm": 0.2282160222530365, + "learning_rate": 0.0006, + "loss": 4.158538341522217, + "step": 1000 + }, + { + "epoch": 13.90869375273045, + "grad_norm": 0.21066738665103912, + "learning_rate": 0.0006, + "loss": 4.171584129333496, + "step": 1001 + }, + { + "epoch": 13.922673656618612, + "grad_norm": 0.18787573277950287, + "learning_rate": 0.0006, + "loss": 4.1837544441223145, + "step": 1002 + }, + { + "epoch": 13.936653560506771, + "grad_norm": 0.2001059353351593, + "learning_rate": 0.0006, + "loss": 4.160369873046875, + "step": 1003 + }, + { + "epoch": 13.950633464394933, + "grad_norm": 0.21644988656044006, + "learning_rate": 0.0006, + "loss": 4.221372604370117, + "step": 1004 + }, + { + "epoch": 13.964613368283093, + "grad_norm": 0.22083887457847595, + "learning_rate": 0.0006, + "loss": 4.149261474609375, + "step": 1005 + }, + { + "epoch": 13.978593272171254, + "grad_norm": 0.2201409637928009, + "learning_rate": 0.0006, + "loss": 4.192010879516602, + "step": 1006 + }, + { + "epoch": 13.992573176059414, + "grad_norm": 0.18888601660728455, + "learning_rate": 0.0006, + "loss": 4.17539119720459, + "step": 1007 + }, + { + "epoch": 14.0, + "grad_norm": 0.2073872834444046, + "learning_rate": 0.0006, + "loss": 4.145265579223633, + "step": 1008 + }, + { + "epoch": 14.0, + "eval_loss": 4.36876106262207, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 1008 + }, + { + "epoch": 14.013979903888162, + "grad_norm": 0.20773135125637054, + "learning_rate": 0.0006, + "loss": 4.132615089416504, + "step": 1009 + }, + { + "epoch": 14.027959807776321, + "grad_norm": 0.22409620881080627, + "learning_rate": 0.0006, + "loss": 4.172839164733887, + "step": 1010 + }, + { + "epoch": 14.041939711664483, + "grad_norm": 0.24046066403388977, + "learning_rate": 0.0006, + "loss": 4.126678943634033, + "step": 1011 + }, + { + "epoch": 14.055919615552643, + "grad_norm": 0.29185160994529724, + "learning_rate": 0.0006, + "loss": 4.177952766418457, + "step": 1012 + }, + { + "epoch": 14.069899519440805, + "grad_norm": 0.2984033226966858, + "learning_rate": 0.0006, + "loss": 4.155030250549316, + "step": 1013 + }, + { + "epoch": 14.083879423328964, + "grad_norm": 0.30262473225593567, + "learning_rate": 0.0006, + "loss": 4.145394325256348, + "step": 1014 + }, + { + "epoch": 14.097859327217126, + "grad_norm": 0.3278133273124695, + "learning_rate": 0.0006, + "loss": 4.172739028930664, + "step": 1015 + }, + { + "epoch": 14.111839231105286, + "grad_norm": 0.3285452425479889, + "learning_rate": 0.0006, + "loss": 4.153196334838867, + "step": 1016 + }, + { + "epoch": 14.125819134993447, + "grad_norm": 0.33912697434425354, + "learning_rate": 0.0006, + "loss": 4.098162651062012, + "step": 1017 + }, + { + "epoch": 14.139799038881607, + "grad_norm": 0.32080814242362976, + "learning_rate": 0.0006, + "loss": 4.157135009765625, + "step": 1018 + }, + { + "epoch": 14.153778942769769, + "grad_norm": 0.31288477778434753, + "learning_rate": 0.0006, + "loss": 4.142683029174805, + "step": 1019 + }, + { + "epoch": 14.167758846657929, + "grad_norm": 0.350289523601532, + "learning_rate": 0.0006, + "loss": 4.134700775146484, + "step": 1020 + }, + { + "epoch": 14.18173875054609, + "grad_norm": 0.34274575114250183, + "learning_rate": 0.0006, + "loss": 4.1578569412231445, + "step": 1021 + }, + { + "epoch": 14.19571865443425, + "grad_norm": 0.2843035161495209, + "learning_rate": 0.0006, + "loss": 4.13760232925415, + "step": 1022 + }, + { + "epoch": 14.209698558322412, + "grad_norm": 0.28235161304473877, + "learning_rate": 0.0006, + "loss": 4.1492462158203125, + "step": 1023 + }, + { + "epoch": 14.223678462210572, + "grad_norm": 0.24407248198986053, + "learning_rate": 0.0006, + "loss": 4.144372463226318, + "step": 1024 + }, + { + "epoch": 14.237658366098733, + "grad_norm": 0.2489742934703827, + "learning_rate": 0.0006, + "loss": 4.137950897216797, + "step": 1025 + }, + { + "epoch": 14.251638269986893, + "grad_norm": 0.26035651564598083, + "learning_rate": 0.0006, + "loss": 4.144070625305176, + "step": 1026 + }, + { + "epoch": 14.265618173875055, + "grad_norm": 0.2726516127586365, + "learning_rate": 0.0006, + "loss": 4.145204067230225, + "step": 1027 + }, + { + "epoch": 14.279598077763215, + "grad_norm": 0.2723483443260193, + "learning_rate": 0.0006, + "loss": 4.118407249450684, + "step": 1028 + }, + { + "epoch": 14.293577981651376, + "grad_norm": 0.27476269006729126, + "learning_rate": 0.0006, + "loss": 4.111325263977051, + "step": 1029 + }, + { + "epoch": 14.307557885539538, + "grad_norm": 0.26202502846717834, + "learning_rate": 0.0006, + "loss": 4.122248649597168, + "step": 1030 + }, + { + "epoch": 14.321537789427698, + "grad_norm": 0.2472032904624939, + "learning_rate": 0.0006, + "loss": 4.157790184020996, + "step": 1031 + }, + { + "epoch": 14.33551769331586, + "grad_norm": 0.2518343925476074, + "learning_rate": 0.0006, + "loss": 4.109132766723633, + "step": 1032 + }, + { + "epoch": 14.349497597204019, + "grad_norm": 0.2652401924133301, + "learning_rate": 0.0006, + "loss": 4.144079685211182, + "step": 1033 + }, + { + "epoch": 14.36347750109218, + "grad_norm": 0.2356770783662796, + "learning_rate": 0.0006, + "loss": 4.128426551818848, + "step": 1034 + }, + { + "epoch": 14.37745740498034, + "grad_norm": 0.2164214551448822, + "learning_rate": 0.0006, + "loss": 4.1644392013549805, + "step": 1035 + }, + { + "epoch": 14.391437308868502, + "grad_norm": 0.22383111715316772, + "learning_rate": 0.0006, + "loss": 4.165862083435059, + "step": 1036 + }, + { + "epoch": 14.405417212756662, + "grad_norm": 0.23152419924736023, + "learning_rate": 0.0006, + "loss": 4.140036582946777, + "step": 1037 + }, + { + "epoch": 14.419397116644824, + "grad_norm": 0.2387741357088089, + "learning_rate": 0.0006, + "loss": 4.130461692810059, + "step": 1038 + }, + { + "epoch": 14.433377020532983, + "grad_norm": 0.24018129706382751, + "learning_rate": 0.0006, + "loss": 4.148482322692871, + "step": 1039 + }, + { + "epoch": 14.447356924421145, + "grad_norm": 0.25487351417541504, + "learning_rate": 0.0006, + "loss": 4.158121109008789, + "step": 1040 + }, + { + "epoch": 14.461336828309305, + "grad_norm": 0.28220096230506897, + "learning_rate": 0.0006, + "loss": 4.160198211669922, + "step": 1041 + }, + { + "epoch": 14.475316732197467, + "grad_norm": 0.2574434280395508, + "learning_rate": 0.0006, + "loss": 4.168512344360352, + "step": 1042 + }, + { + "epoch": 14.489296636085626, + "grad_norm": 0.22569820284843445, + "learning_rate": 0.0006, + "loss": 4.1595001220703125, + "step": 1043 + }, + { + "epoch": 14.503276539973788, + "grad_norm": 0.2473423182964325, + "learning_rate": 0.0006, + "loss": 4.084580898284912, + "step": 1044 + }, + { + "epoch": 14.517256443861948, + "grad_norm": 0.24281060695648193, + "learning_rate": 0.0006, + "loss": 4.139714241027832, + "step": 1045 + }, + { + "epoch": 14.53123634775011, + "grad_norm": 0.24691344797611237, + "learning_rate": 0.0006, + "loss": 4.115398406982422, + "step": 1046 + }, + { + "epoch": 14.54521625163827, + "grad_norm": 0.2583645284175873, + "learning_rate": 0.0006, + "loss": 4.142148494720459, + "step": 1047 + }, + { + "epoch": 14.55919615552643, + "grad_norm": 0.23258574306964874, + "learning_rate": 0.0006, + "loss": 4.16251277923584, + "step": 1048 + }, + { + "epoch": 14.57317605941459, + "grad_norm": 0.22103039920330048, + "learning_rate": 0.0006, + "loss": 4.1308441162109375, + "step": 1049 + }, + { + "epoch": 14.587155963302752, + "grad_norm": 0.23713579773902893, + "learning_rate": 0.0006, + "loss": 4.1565985679626465, + "step": 1050 + }, + { + "epoch": 14.601135867190912, + "grad_norm": 0.24406634271144867, + "learning_rate": 0.0006, + "loss": 4.14628267288208, + "step": 1051 + }, + { + "epoch": 14.615115771079074, + "grad_norm": 0.26821228861808777, + "learning_rate": 0.0006, + "loss": 4.138063430786133, + "step": 1052 + }, + { + "epoch": 14.629095674967235, + "grad_norm": 0.25483864545822144, + "learning_rate": 0.0006, + "loss": 4.1311163902282715, + "step": 1053 + }, + { + "epoch": 14.643075578855395, + "grad_norm": 0.23937982320785522, + "learning_rate": 0.0006, + "loss": 4.150882244110107, + "step": 1054 + }, + { + "epoch": 14.657055482743557, + "grad_norm": 0.21896475553512573, + "learning_rate": 0.0006, + "loss": 4.114015102386475, + "step": 1055 + }, + { + "epoch": 14.671035386631717, + "grad_norm": 0.20821231603622437, + "learning_rate": 0.0006, + "loss": 4.139034271240234, + "step": 1056 + }, + { + "epoch": 14.685015290519878, + "grad_norm": 0.1978551596403122, + "learning_rate": 0.0006, + "loss": 4.1810503005981445, + "step": 1057 + }, + { + "epoch": 14.698995194408038, + "grad_norm": 0.1945771872997284, + "learning_rate": 0.0006, + "loss": 4.120734214782715, + "step": 1058 + }, + { + "epoch": 14.7129750982962, + "grad_norm": 0.19518673419952393, + "learning_rate": 0.0006, + "loss": 4.14264440536499, + "step": 1059 + }, + { + "epoch": 14.72695500218436, + "grad_norm": 0.202596515417099, + "learning_rate": 0.0006, + "loss": 4.151649475097656, + "step": 1060 + }, + { + "epoch": 14.740934906072521, + "grad_norm": 0.1904762089252472, + "learning_rate": 0.0006, + "loss": 4.127899169921875, + "step": 1061 + }, + { + "epoch": 14.754914809960681, + "grad_norm": 0.20685508847236633, + "learning_rate": 0.0006, + "loss": 4.093445777893066, + "step": 1062 + }, + { + "epoch": 14.768894713848843, + "grad_norm": 0.22678329050540924, + "learning_rate": 0.0006, + "loss": 4.132084369659424, + "step": 1063 + }, + { + "epoch": 14.782874617737003, + "grad_norm": 0.24631841480731964, + "learning_rate": 0.0006, + "loss": 4.154788970947266, + "step": 1064 + }, + { + "epoch": 14.796854521625164, + "grad_norm": 0.24445782601833344, + "learning_rate": 0.0006, + "loss": 4.144735336303711, + "step": 1065 + }, + { + "epoch": 14.810834425513324, + "grad_norm": 0.22330640256404877, + "learning_rate": 0.0006, + "loss": 4.159893989562988, + "step": 1066 + }, + { + "epoch": 14.824814329401486, + "grad_norm": 0.22422967851161957, + "learning_rate": 0.0006, + "loss": 4.104874610900879, + "step": 1067 + }, + { + "epoch": 14.838794233289645, + "grad_norm": 0.24583931267261505, + "learning_rate": 0.0006, + "loss": 4.139403820037842, + "step": 1068 + }, + { + "epoch": 14.852774137177807, + "grad_norm": 0.2917379140853882, + "learning_rate": 0.0006, + "loss": 4.168988227844238, + "step": 1069 + }, + { + "epoch": 14.866754041065967, + "grad_norm": 0.3171777129173279, + "learning_rate": 0.0006, + "loss": 4.131263732910156, + "step": 1070 + }, + { + "epoch": 14.880733944954128, + "grad_norm": 0.3039591312408447, + "learning_rate": 0.0006, + "loss": 4.149853706359863, + "step": 1071 + }, + { + "epoch": 14.89471384884229, + "grad_norm": 0.2690650522708893, + "learning_rate": 0.0006, + "loss": 4.154787540435791, + "step": 1072 + }, + { + "epoch": 14.90869375273045, + "grad_norm": 0.28683212399482727, + "learning_rate": 0.0006, + "loss": 4.12751579284668, + "step": 1073 + }, + { + "epoch": 14.922673656618612, + "grad_norm": 0.30022913217544556, + "learning_rate": 0.0006, + "loss": 4.141940116882324, + "step": 1074 + }, + { + "epoch": 14.936653560506771, + "grad_norm": 0.3312259316444397, + "learning_rate": 0.0006, + "loss": 4.141905784606934, + "step": 1075 + }, + { + "epoch": 14.950633464394933, + "grad_norm": 0.31159237027168274, + "learning_rate": 0.0006, + "loss": 4.160192966461182, + "step": 1076 + }, + { + "epoch": 14.964613368283093, + "grad_norm": 0.30093592405319214, + "learning_rate": 0.0006, + "loss": 4.1085076332092285, + "step": 1077 + }, + { + "epoch": 14.978593272171254, + "grad_norm": 0.2728535830974579, + "learning_rate": 0.0006, + "loss": 4.156959056854248, + "step": 1078 + }, + { + "epoch": 14.992573176059414, + "grad_norm": 0.24766813218593597, + "learning_rate": 0.0006, + "loss": 4.113999843597412, + "step": 1079 + }, + { + "epoch": 15.0, + "grad_norm": 0.2538154721260071, + "learning_rate": 0.0006, + "loss": 4.147134780883789, + "step": 1080 + }, + { + "epoch": 15.0, + "eval_loss": 4.323154926300049, + "eval_runtime": 44.8813, + "eval_samples_per_second": 54.41, + "eval_steps_per_second": 3.409, + "step": 1080 + }, + { + "epoch": 15.013979903888162, + "grad_norm": 0.22535280883312225, + "learning_rate": 0.0006, + "loss": 4.112179756164551, + "step": 1081 + }, + { + "epoch": 15.027959807776321, + "grad_norm": 0.24340929090976715, + "learning_rate": 0.0006, + "loss": 4.080923080444336, + "step": 1082 + }, + { + "epoch": 15.041939711664483, + "grad_norm": 0.23159465193748474, + "learning_rate": 0.0006, + "loss": 4.097067356109619, + "step": 1083 + }, + { + "epoch": 15.055919615552643, + "grad_norm": 0.22674769163131714, + "learning_rate": 0.0006, + "loss": 4.118601322174072, + "step": 1084 + }, + { + "epoch": 15.069899519440805, + "grad_norm": 0.2524292469024658, + "learning_rate": 0.0006, + "loss": 4.101109504699707, + "step": 1085 + }, + { + "epoch": 15.083879423328964, + "grad_norm": 0.2505405843257904, + "learning_rate": 0.0006, + "loss": 4.121405601501465, + "step": 1086 + }, + { + "epoch": 15.097859327217126, + "grad_norm": 0.2557983696460724, + "learning_rate": 0.0006, + "loss": 4.1063947677612305, + "step": 1087 + }, + { + "epoch": 15.111839231105286, + "grad_norm": 0.24452129006385803, + "learning_rate": 0.0006, + "loss": 4.086133003234863, + "step": 1088 + }, + { + "epoch": 15.125819134993447, + "grad_norm": 0.25821781158447266, + "learning_rate": 0.0006, + "loss": 4.076262950897217, + "step": 1089 + }, + { + "epoch": 15.139799038881607, + "grad_norm": 0.23650537431240082, + "learning_rate": 0.0006, + "loss": 4.101842880249023, + "step": 1090 + }, + { + "epoch": 15.153778942769769, + "grad_norm": 0.2206192910671234, + "learning_rate": 0.0006, + "loss": 4.11027193069458, + "step": 1091 + }, + { + "epoch": 15.167758846657929, + "grad_norm": 0.21843163669109344, + "learning_rate": 0.0006, + "loss": 4.098437309265137, + "step": 1092 + }, + { + "epoch": 15.18173875054609, + "grad_norm": 0.2528176009654999, + "learning_rate": 0.0006, + "loss": 4.108713150024414, + "step": 1093 + }, + { + "epoch": 15.19571865443425, + "grad_norm": 0.26697206497192383, + "learning_rate": 0.0006, + "loss": 4.113210201263428, + "step": 1094 + }, + { + "epoch": 15.209698558322412, + "grad_norm": 0.26480963826179504, + "learning_rate": 0.0006, + "loss": 4.1103620529174805, + "step": 1095 + }, + { + "epoch": 15.223678462210572, + "grad_norm": 0.24887347221374512, + "learning_rate": 0.0006, + "loss": 4.103529930114746, + "step": 1096 + }, + { + "epoch": 15.237658366098733, + "grad_norm": 0.2344668060541153, + "learning_rate": 0.0006, + "loss": 4.129784107208252, + "step": 1097 + }, + { + "epoch": 15.251638269986893, + "grad_norm": 0.22639742493629456, + "learning_rate": 0.0006, + "loss": 4.113495349884033, + "step": 1098 + }, + { + "epoch": 15.265618173875055, + "grad_norm": 0.22466333210468292, + "learning_rate": 0.0006, + "loss": 4.102309703826904, + "step": 1099 + }, + { + "epoch": 15.279598077763215, + "grad_norm": 0.25135037302970886, + "learning_rate": 0.0006, + "loss": 4.117668628692627, + "step": 1100 + }, + { + "epoch": 15.293577981651376, + "grad_norm": 0.2347089946269989, + "learning_rate": 0.0006, + "loss": 4.086637496948242, + "step": 1101 + }, + { + "epoch": 15.307557885539538, + "grad_norm": 0.2347242832183838, + "learning_rate": 0.0006, + "loss": 4.098714828491211, + "step": 1102 + }, + { + "epoch": 15.321537789427698, + "grad_norm": 0.23990283906459808, + "learning_rate": 0.0006, + "loss": 4.079837799072266, + "step": 1103 + }, + { + "epoch": 15.33551769331586, + "grad_norm": 0.22366675734519958, + "learning_rate": 0.0006, + "loss": 4.108136177062988, + "step": 1104 + }, + { + "epoch": 15.349497597204019, + "grad_norm": 0.21823780238628387, + "learning_rate": 0.0006, + "loss": 4.10054349899292, + "step": 1105 + }, + { + "epoch": 15.36347750109218, + "grad_norm": 0.23059198260307312, + "learning_rate": 0.0006, + "loss": 4.108620643615723, + "step": 1106 + }, + { + "epoch": 15.37745740498034, + "grad_norm": 0.2313755601644516, + "learning_rate": 0.0006, + "loss": 4.088565826416016, + "step": 1107 + }, + { + "epoch": 15.391437308868502, + "grad_norm": 0.2546829283237457, + "learning_rate": 0.0006, + "loss": 4.104948043823242, + "step": 1108 + }, + { + "epoch": 15.405417212756662, + "grad_norm": 0.23666726052761078, + "learning_rate": 0.0006, + "loss": 4.111965179443359, + "step": 1109 + }, + { + "epoch": 15.419397116644824, + "grad_norm": 0.21971021592617035, + "learning_rate": 0.0006, + "loss": 4.097846984863281, + "step": 1110 + }, + { + "epoch": 15.433377020532983, + "grad_norm": 0.20951911807060242, + "learning_rate": 0.0006, + "loss": 4.110099792480469, + "step": 1111 + }, + { + "epoch": 15.447356924421145, + "grad_norm": 0.19590918719768524, + "learning_rate": 0.0006, + "loss": 4.101154327392578, + "step": 1112 + }, + { + "epoch": 15.461336828309305, + "grad_norm": 0.21048946678638458, + "learning_rate": 0.0006, + "loss": 4.0986127853393555, + "step": 1113 + }, + { + "epoch": 15.475316732197467, + "grad_norm": 0.21423374116420746, + "learning_rate": 0.0006, + "loss": 4.082328796386719, + "step": 1114 + }, + { + "epoch": 15.489296636085626, + "grad_norm": 0.227146714925766, + "learning_rate": 0.0006, + "loss": 4.105281829833984, + "step": 1115 + }, + { + "epoch": 15.503276539973788, + "grad_norm": 0.2079153060913086, + "learning_rate": 0.0006, + "loss": 4.100836753845215, + "step": 1116 + }, + { + "epoch": 15.517256443861948, + "grad_norm": 0.21084675192832947, + "learning_rate": 0.0006, + "loss": 4.0934343338012695, + "step": 1117 + }, + { + "epoch": 15.53123634775011, + "grad_norm": 0.23863616585731506, + "learning_rate": 0.0006, + "loss": 4.101540565490723, + "step": 1118 + }, + { + "epoch": 15.54521625163827, + "grad_norm": 0.2518490254878998, + "learning_rate": 0.0006, + "loss": 4.12303352355957, + "step": 1119 + }, + { + "epoch": 15.55919615552643, + "grad_norm": 0.24282905459403992, + "learning_rate": 0.0006, + "loss": 4.080670356750488, + "step": 1120 + }, + { + "epoch": 15.57317605941459, + "grad_norm": 0.24171605706214905, + "learning_rate": 0.0006, + "loss": 4.117938041687012, + "step": 1121 + }, + { + "epoch": 15.587155963302752, + "grad_norm": 0.28453412652015686, + "learning_rate": 0.0006, + "loss": 4.080114364624023, + "step": 1122 + }, + { + "epoch": 15.601135867190912, + "grad_norm": 0.30322617292404175, + "learning_rate": 0.0006, + "loss": 4.079695701599121, + "step": 1123 + }, + { + "epoch": 15.615115771079074, + "grad_norm": 0.2657633125782013, + "learning_rate": 0.0006, + "loss": 4.0916290283203125, + "step": 1124 + }, + { + "epoch": 15.629095674967235, + "grad_norm": 0.2467080056667328, + "learning_rate": 0.0006, + "loss": 4.095594882965088, + "step": 1125 + }, + { + "epoch": 15.643075578855395, + "grad_norm": 0.21767394244670868, + "learning_rate": 0.0006, + "loss": 4.079174041748047, + "step": 1126 + }, + { + "epoch": 15.657055482743557, + "grad_norm": 0.2088327705860138, + "learning_rate": 0.0006, + "loss": 4.060707092285156, + "step": 1127 + }, + { + "epoch": 15.671035386631717, + "grad_norm": 0.1921205073595047, + "learning_rate": 0.0006, + "loss": 4.073911666870117, + "step": 1128 + }, + { + "epoch": 15.685015290519878, + "grad_norm": 0.209339901804924, + "learning_rate": 0.0006, + "loss": 4.089954376220703, + "step": 1129 + }, + { + "epoch": 15.698995194408038, + "grad_norm": 0.23513881862163544, + "learning_rate": 0.0006, + "loss": 4.084906578063965, + "step": 1130 + }, + { + "epoch": 15.7129750982962, + "grad_norm": 0.26140275597572327, + "learning_rate": 0.0006, + "loss": 4.086570739746094, + "step": 1131 + }, + { + "epoch": 15.72695500218436, + "grad_norm": 0.290431946516037, + "learning_rate": 0.0006, + "loss": 4.071229457855225, + "step": 1132 + }, + { + "epoch": 15.740934906072521, + "grad_norm": 0.3061376214027405, + "learning_rate": 0.0006, + "loss": 4.103148460388184, + "step": 1133 + }, + { + "epoch": 15.754914809960681, + "grad_norm": 0.26312482357025146, + "learning_rate": 0.0006, + "loss": 4.088448524475098, + "step": 1134 + }, + { + "epoch": 15.768894713848843, + "grad_norm": 0.22474883496761322, + "learning_rate": 0.0006, + "loss": 4.091766834259033, + "step": 1135 + }, + { + "epoch": 15.782874617737003, + "grad_norm": 0.2341146171092987, + "learning_rate": 0.0006, + "loss": 4.1222758293151855, + "step": 1136 + }, + { + "epoch": 15.796854521625164, + "grad_norm": 0.23556149005889893, + "learning_rate": 0.0006, + "loss": 4.094954013824463, + "step": 1137 + }, + { + "epoch": 15.810834425513324, + "grad_norm": 0.263315349817276, + "learning_rate": 0.0006, + "loss": 4.1065473556518555, + "step": 1138 + }, + { + "epoch": 15.824814329401486, + "grad_norm": 0.2700869143009186, + "learning_rate": 0.0006, + "loss": 4.0890045166015625, + "step": 1139 + }, + { + "epoch": 15.838794233289645, + "grad_norm": 0.28697484731674194, + "learning_rate": 0.0006, + "loss": 4.092496395111084, + "step": 1140 + }, + { + "epoch": 15.852774137177807, + "grad_norm": 0.2824092507362366, + "learning_rate": 0.0006, + "loss": 4.079615592956543, + "step": 1141 + }, + { + "epoch": 15.866754041065967, + "grad_norm": 0.24547280371189117, + "learning_rate": 0.0006, + "loss": 4.089683532714844, + "step": 1142 + }, + { + "epoch": 15.880733944954128, + "grad_norm": 0.23653888702392578, + "learning_rate": 0.0006, + "loss": 4.067309379577637, + "step": 1143 + }, + { + "epoch": 15.89471384884229, + "grad_norm": 0.23784421384334564, + "learning_rate": 0.0006, + "loss": 4.09156608581543, + "step": 1144 + }, + { + "epoch": 15.90869375273045, + "grad_norm": 0.22753281891345978, + "learning_rate": 0.0006, + "loss": 4.095428466796875, + "step": 1145 + }, + { + "epoch": 15.922673656618612, + "grad_norm": 0.2464212030172348, + "learning_rate": 0.0006, + "loss": 4.1036376953125, + "step": 1146 + }, + { + "epoch": 15.936653560506771, + "grad_norm": 0.25531601905822754, + "learning_rate": 0.0006, + "loss": 4.073996543884277, + "step": 1147 + }, + { + "epoch": 15.950633464394933, + "grad_norm": 0.24145905673503876, + "learning_rate": 0.0006, + "loss": 4.094479560852051, + "step": 1148 + }, + { + "epoch": 15.964613368283093, + "grad_norm": 0.24274317920207977, + "learning_rate": 0.0006, + "loss": 4.101981163024902, + "step": 1149 + }, + { + "epoch": 15.978593272171254, + "grad_norm": 0.2350679188966751, + "learning_rate": 0.0006, + "loss": 4.057965278625488, + "step": 1150 + }, + { + "epoch": 15.992573176059414, + "grad_norm": 0.24072253704071045, + "learning_rate": 0.0006, + "loss": 4.020050048828125, + "step": 1151 + }, + { + "epoch": 16.0, + "grad_norm": 0.253978967666626, + "learning_rate": 0.0006, + "loss": 4.061928749084473, + "step": 1152 + }, + { + "epoch": 16.0, + "eval_loss": 4.270665645599365, + "eval_runtime": 44.5063, + "eval_samples_per_second": 54.869, + "eval_steps_per_second": 3.438, + "step": 1152 + }, + { + "epoch": 16.01397990388816, + "grad_norm": 0.3265204131603241, + "learning_rate": 0.0006, + "loss": 4.059116363525391, + "step": 1153 + }, + { + "epoch": 16.027959807776323, + "grad_norm": 0.34139737486839294, + "learning_rate": 0.0006, + "loss": 4.062219619750977, + "step": 1154 + }, + { + "epoch": 16.041939711664483, + "grad_norm": 0.2849949598312378, + "learning_rate": 0.0006, + "loss": 4.032323837280273, + "step": 1155 + }, + { + "epoch": 16.055919615552643, + "grad_norm": 0.25031402707099915, + "learning_rate": 0.0006, + "loss": 4.075527191162109, + "step": 1156 + }, + { + "epoch": 16.069899519440803, + "grad_norm": 0.25207436084747314, + "learning_rate": 0.0006, + "loss": 4.0883097648620605, + "step": 1157 + }, + { + "epoch": 16.083879423328966, + "grad_norm": 0.28677356243133545, + "learning_rate": 0.0006, + "loss": 4.040797233581543, + "step": 1158 + }, + { + "epoch": 16.097859327217126, + "grad_norm": 0.30778825283050537, + "learning_rate": 0.0006, + "loss": 4.051504135131836, + "step": 1159 + }, + { + "epoch": 16.111839231105286, + "grad_norm": 0.3136911988258362, + "learning_rate": 0.0006, + "loss": 4.045449256896973, + "step": 1160 + }, + { + "epoch": 16.125819134993446, + "grad_norm": 0.34384530782699585, + "learning_rate": 0.0006, + "loss": 4.069897651672363, + "step": 1161 + }, + { + "epoch": 16.13979903888161, + "grad_norm": 0.3074268400669098, + "learning_rate": 0.0006, + "loss": 4.0621137619018555, + "step": 1162 + }, + { + "epoch": 16.15377894276977, + "grad_norm": 0.33090949058532715, + "learning_rate": 0.0006, + "loss": 4.084089279174805, + "step": 1163 + }, + { + "epoch": 16.16775884665793, + "grad_norm": 0.26358580589294434, + "learning_rate": 0.0006, + "loss": 4.066563606262207, + "step": 1164 + }, + { + "epoch": 16.18173875054609, + "grad_norm": 0.25586041808128357, + "learning_rate": 0.0006, + "loss": 4.08109188079834, + "step": 1165 + }, + { + "epoch": 16.195718654434252, + "grad_norm": 0.2966184616088867, + "learning_rate": 0.0006, + "loss": 4.039186477661133, + "step": 1166 + }, + { + "epoch": 16.209698558322412, + "grad_norm": 0.3064924478530884, + "learning_rate": 0.0006, + "loss": 4.08139705657959, + "step": 1167 + }, + { + "epoch": 16.22367846221057, + "grad_norm": 0.28671345114707947, + "learning_rate": 0.0006, + "loss": 4.04637336730957, + "step": 1168 + }, + { + "epoch": 16.23765836609873, + "grad_norm": 0.26209691166877747, + "learning_rate": 0.0006, + "loss": 4.052768707275391, + "step": 1169 + }, + { + "epoch": 16.251638269986895, + "grad_norm": 0.2758907079696655, + "learning_rate": 0.0006, + "loss": 4.064321517944336, + "step": 1170 + }, + { + "epoch": 16.265618173875055, + "grad_norm": 0.25961801409721375, + "learning_rate": 0.0006, + "loss": 4.057299613952637, + "step": 1171 + }, + { + "epoch": 16.279598077763215, + "grad_norm": 0.2513751685619354, + "learning_rate": 0.0006, + "loss": 4.064148902893066, + "step": 1172 + }, + { + "epoch": 16.293577981651374, + "grad_norm": 0.23920276761054993, + "learning_rate": 0.0006, + "loss": 4.101890563964844, + "step": 1173 + }, + { + "epoch": 16.307557885539538, + "grad_norm": 0.22746537625789642, + "learning_rate": 0.0006, + "loss": 4.086627006530762, + "step": 1174 + }, + { + "epoch": 16.321537789427698, + "grad_norm": 0.22633525729179382, + "learning_rate": 0.0006, + "loss": 4.04669189453125, + "step": 1175 + }, + { + "epoch": 16.335517693315857, + "grad_norm": 0.2654891610145569, + "learning_rate": 0.0006, + "loss": 4.086793422698975, + "step": 1176 + }, + { + "epoch": 16.34949759720402, + "grad_norm": 0.2872653007507324, + "learning_rate": 0.0006, + "loss": 4.077983856201172, + "step": 1177 + }, + { + "epoch": 16.36347750109218, + "grad_norm": 0.25726038217544556, + "learning_rate": 0.0006, + "loss": 4.066011428833008, + "step": 1178 + }, + { + "epoch": 16.37745740498034, + "grad_norm": 0.2592027485370636, + "learning_rate": 0.0006, + "loss": 4.0482988357543945, + "step": 1179 + }, + { + "epoch": 16.3914373088685, + "grad_norm": 0.2768886685371399, + "learning_rate": 0.0006, + "loss": 4.065151214599609, + "step": 1180 + }, + { + "epoch": 16.405417212756664, + "grad_norm": 0.2956002652645111, + "learning_rate": 0.0006, + "loss": 4.037791728973389, + "step": 1181 + }, + { + "epoch": 16.419397116644824, + "grad_norm": 0.3092120885848999, + "learning_rate": 0.0006, + "loss": 4.062164306640625, + "step": 1182 + }, + { + "epoch": 16.433377020532983, + "grad_norm": 0.29516810178756714, + "learning_rate": 0.0006, + "loss": 4.025505065917969, + "step": 1183 + }, + { + "epoch": 16.447356924421143, + "grad_norm": 0.2640177607536316, + "learning_rate": 0.0006, + "loss": 4.060182571411133, + "step": 1184 + }, + { + "epoch": 16.461336828309307, + "grad_norm": 0.2444908320903778, + "learning_rate": 0.0006, + "loss": 4.046144962310791, + "step": 1185 + }, + { + "epoch": 16.475316732197467, + "grad_norm": 0.23190705478191376, + "learning_rate": 0.0006, + "loss": 4.075569152832031, + "step": 1186 + }, + { + "epoch": 16.489296636085626, + "grad_norm": 0.2383626103401184, + "learning_rate": 0.0006, + "loss": 4.088897705078125, + "step": 1187 + }, + { + "epoch": 16.503276539973786, + "grad_norm": 0.20688803493976593, + "learning_rate": 0.0006, + "loss": 4.064517974853516, + "step": 1188 + }, + { + "epoch": 16.51725644386195, + "grad_norm": 0.22610054910182953, + "learning_rate": 0.0006, + "loss": 4.04502010345459, + "step": 1189 + }, + { + "epoch": 16.53123634775011, + "grad_norm": 0.2014893889427185, + "learning_rate": 0.0006, + "loss": 4.058279514312744, + "step": 1190 + }, + { + "epoch": 16.54521625163827, + "grad_norm": 0.21459777653217316, + "learning_rate": 0.0006, + "loss": 4.066389083862305, + "step": 1191 + }, + { + "epoch": 16.55919615552643, + "grad_norm": 0.22909940779209137, + "learning_rate": 0.0006, + "loss": 4.0557966232299805, + "step": 1192 + }, + { + "epoch": 16.573176059414592, + "grad_norm": 0.20039083063602448, + "learning_rate": 0.0006, + "loss": 4.092845916748047, + "step": 1193 + }, + { + "epoch": 16.587155963302752, + "grad_norm": 0.22651726007461548, + "learning_rate": 0.0006, + "loss": 4.034615516662598, + "step": 1194 + }, + { + "epoch": 16.601135867190912, + "grad_norm": 0.21901755034923553, + "learning_rate": 0.0006, + "loss": 4.035619735717773, + "step": 1195 + }, + { + "epoch": 16.615115771079076, + "grad_norm": 0.22930841147899628, + "learning_rate": 0.0006, + "loss": 4.080800533294678, + "step": 1196 + }, + { + "epoch": 16.629095674967235, + "grad_norm": 0.212818443775177, + "learning_rate": 0.0006, + "loss": 4.030189514160156, + "step": 1197 + }, + { + "epoch": 16.643075578855395, + "grad_norm": 0.2370826154947281, + "learning_rate": 0.0006, + "loss": 4.062643527984619, + "step": 1198 + }, + { + "epoch": 16.657055482743555, + "grad_norm": 0.24786995351314545, + "learning_rate": 0.0006, + "loss": 4.031761169433594, + "step": 1199 + }, + { + "epoch": 16.67103538663172, + "grad_norm": 0.2305847704410553, + "learning_rate": 0.0006, + "loss": 4.083752155303955, + "step": 1200 + }, + { + "epoch": 16.68501529051988, + "grad_norm": 0.23336584866046906, + "learning_rate": 0.0006, + "loss": 4.079145431518555, + "step": 1201 + }, + { + "epoch": 16.698995194408038, + "grad_norm": 0.23976293206214905, + "learning_rate": 0.0006, + "loss": 4.020473957061768, + "step": 1202 + }, + { + "epoch": 16.712975098296198, + "grad_norm": 0.222761869430542, + "learning_rate": 0.0006, + "loss": 4.065582752227783, + "step": 1203 + }, + { + "epoch": 16.72695500218436, + "grad_norm": 0.23725618422031403, + "learning_rate": 0.0006, + "loss": 4.0263776779174805, + "step": 1204 + }, + { + "epoch": 16.74093490607252, + "grad_norm": 0.23873984813690186, + "learning_rate": 0.0006, + "loss": 4.053092956542969, + "step": 1205 + }, + { + "epoch": 16.75491480996068, + "grad_norm": 0.21043002605438232, + "learning_rate": 0.0006, + "loss": 4.063965797424316, + "step": 1206 + }, + { + "epoch": 16.76889471384884, + "grad_norm": 0.19863522052764893, + "learning_rate": 0.0006, + "loss": 4.061187267303467, + "step": 1207 + }, + { + "epoch": 16.782874617737004, + "grad_norm": 0.1953752487897873, + "learning_rate": 0.0006, + "loss": 4.046016693115234, + "step": 1208 + }, + { + "epoch": 16.796854521625164, + "grad_norm": 0.2130361795425415, + "learning_rate": 0.0006, + "loss": 4.066933631896973, + "step": 1209 + }, + { + "epoch": 16.810834425513324, + "grad_norm": 0.19598130881786346, + "learning_rate": 0.0006, + "loss": 4.071558952331543, + "step": 1210 + }, + { + "epoch": 16.824814329401484, + "grad_norm": 0.20331116020679474, + "learning_rate": 0.0006, + "loss": 4.088632106781006, + "step": 1211 + }, + { + "epoch": 16.838794233289647, + "grad_norm": 0.20423150062561035, + "learning_rate": 0.0006, + "loss": 4.032224655151367, + "step": 1212 + }, + { + "epoch": 16.852774137177807, + "grad_norm": 0.2401197850704193, + "learning_rate": 0.0006, + "loss": 4.037393569946289, + "step": 1213 + }, + { + "epoch": 16.866754041065967, + "grad_norm": 0.26102620363235474, + "learning_rate": 0.0006, + "loss": 4.04738712310791, + "step": 1214 + }, + { + "epoch": 16.88073394495413, + "grad_norm": 0.2438521534204483, + "learning_rate": 0.0006, + "loss": 4.015673637390137, + "step": 1215 + }, + { + "epoch": 16.89471384884229, + "grad_norm": 0.20742061734199524, + "learning_rate": 0.0006, + "loss": 4.049060821533203, + "step": 1216 + }, + { + "epoch": 16.90869375273045, + "grad_norm": 0.22028608620166779, + "learning_rate": 0.0006, + "loss": 4.088971138000488, + "step": 1217 + }, + { + "epoch": 16.92267365661861, + "grad_norm": 0.21746744215488434, + "learning_rate": 0.0006, + "loss": 4.021710395812988, + "step": 1218 + }, + { + "epoch": 16.936653560506773, + "grad_norm": 0.2226102203130722, + "learning_rate": 0.0006, + "loss": 4.050119400024414, + "step": 1219 + }, + { + "epoch": 16.950633464394933, + "grad_norm": 0.23903657495975494, + "learning_rate": 0.0006, + "loss": 4.0570526123046875, + "step": 1220 + }, + { + "epoch": 16.964613368283093, + "grad_norm": 0.2556349039077759, + "learning_rate": 0.0006, + "loss": 4.0448808670043945, + "step": 1221 + }, + { + "epoch": 16.978593272171253, + "grad_norm": 0.28445592522621155, + "learning_rate": 0.0006, + "loss": 4.052034378051758, + "step": 1222 + }, + { + "epoch": 16.992573176059416, + "grad_norm": 0.273973673582077, + "learning_rate": 0.0006, + "loss": 4.02907657623291, + "step": 1223 + }, + { + "epoch": 17.0, + "grad_norm": 0.26125091314315796, + "learning_rate": 0.0006, + "loss": 4.10643196105957, + "step": 1224 + }, + { + "epoch": 17.0, + "eval_loss": 4.2585954666137695, + "eval_runtime": 44.8583, + "eval_samples_per_second": 54.438, + "eval_steps_per_second": 3.411, + "step": 1224 + }, + { + "epoch": 17.01397990388816, + "grad_norm": 0.2786196768283844, + "learning_rate": 0.0006, + "loss": 4.044719219207764, + "step": 1225 + }, + { + "epoch": 17.027959807776323, + "grad_norm": 0.2969571650028229, + "learning_rate": 0.0006, + "loss": 4.022037506103516, + "step": 1226 + }, + { + "epoch": 17.041939711664483, + "grad_norm": 0.32196253538131714, + "learning_rate": 0.0006, + "loss": 4.03636360168457, + "step": 1227 + }, + { + "epoch": 17.055919615552643, + "grad_norm": 0.28617000579833984, + "learning_rate": 0.0006, + "loss": 4.012125492095947, + "step": 1228 + }, + { + "epoch": 17.069899519440803, + "grad_norm": 0.26539644598960876, + "learning_rate": 0.0006, + "loss": 4.020190715789795, + "step": 1229 + }, + { + "epoch": 17.083879423328966, + "grad_norm": 0.24315394461154938, + "learning_rate": 0.0006, + "loss": 4.0553812980651855, + "step": 1230 + }, + { + "epoch": 17.097859327217126, + "grad_norm": 0.23798158764839172, + "learning_rate": 0.0006, + "loss": 4.004805088043213, + "step": 1231 + }, + { + "epoch": 17.111839231105286, + "grad_norm": 0.25723618268966675, + "learning_rate": 0.0006, + "loss": 4.00108003616333, + "step": 1232 + }, + { + "epoch": 17.125819134993446, + "grad_norm": 0.2669757604598999, + "learning_rate": 0.0006, + "loss": 4.00828742980957, + "step": 1233 + }, + { + "epoch": 17.13979903888161, + "grad_norm": 0.26421651244163513, + "learning_rate": 0.0006, + "loss": 3.995478391647339, + "step": 1234 + }, + { + "epoch": 17.15377894276977, + "grad_norm": 0.24745801091194153, + "learning_rate": 0.0006, + "loss": 4.0171027183532715, + "step": 1235 + }, + { + "epoch": 17.16775884665793, + "grad_norm": 0.27028775215148926, + "learning_rate": 0.0006, + "loss": 4.017108917236328, + "step": 1236 + }, + { + "epoch": 17.18173875054609, + "grad_norm": 0.27247968316078186, + "learning_rate": 0.0006, + "loss": 4.032601356506348, + "step": 1237 + }, + { + "epoch": 17.195718654434252, + "grad_norm": 0.24620869755744934, + "learning_rate": 0.0006, + "loss": 4.022171974182129, + "step": 1238 + }, + { + "epoch": 17.209698558322412, + "grad_norm": 0.23407386243343353, + "learning_rate": 0.0006, + "loss": 3.9946959018707275, + "step": 1239 + }, + { + "epoch": 17.22367846221057, + "grad_norm": 0.22559069097042084, + "learning_rate": 0.0006, + "loss": 4.013072490692139, + "step": 1240 + }, + { + "epoch": 17.23765836609873, + "grad_norm": 0.226687952876091, + "learning_rate": 0.0006, + "loss": 4.023543834686279, + "step": 1241 + }, + { + "epoch": 17.251638269986895, + "grad_norm": 0.24436360597610474, + "learning_rate": 0.0006, + "loss": 4.044206619262695, + "step": 1242 + }, + { + "epoch": 17.265618173875055, + "grad_norm": 0.25527626276016235, + "learning_rate": 0.0006, + "loss": 4.016424179077148, + "step": 1243 + }, + { + "epoch": 17.279598077763215, + "grad_norm": 0.26126864552497864, + "learning_rate": 0.0006, + "loss": 4.024394512176514, + "step": 1244 + }, + { + "epoch": 17.293577981651374, + "grad_norm": 0.25746744871139526, + "learning_rate": 0.0006, + "loss": 4.046844482421875, + "step": 1245 + }, + { + "epoch": 17.307557885539538, + "grad_norm": 0.26579564809799194, + "learning_rate": 0.0006, + "loss": 4.021010398864746, + "step": 1246 + }, + { + "epoch": 17.321537789427698, + "grad_norm": 0.2713971734046936, + "learning_rate": 0.0006, + "loss": 4.022331237792969, + "step": 1247 + }, + { + "epoch": 17.335517693315857, + "grad_norm": 0.24217180907726288, + "learning_rate": 0.0006, + "loss": 4.006353855133057, + "step": 1248 + }, + { + "epoch": 17.34949759720402, + "grad_norm": 0.26899752020835876, + "learning_rate": 0.0006, + "loss": 4.068023681640625, + "step": 1249 + }, + { + "epoch": 17.36347750109218, + "grad_norm": 0.26745253801345825, + "learning_rate": 0.0006, + "loss": 4.031207084655762, + "step": 1250 + }, + { + "epoch": 17.37745740498034, + "grad_norm": 0.21533764898777008, + "learning_rate": 0.0006, + "loss": 4.042410850524902, + "step": 1251 + }, + { + "epoch": 17.3914373088685, + "grad_norm": 0.21958027780056, + "learning_rate": 0.0006, + "loss": 4.02597713470459, + "step": 1252 + }, + { + "epoch": 17.405417212756664, + "grad_norm": 0.263068825006485, + "learning_rate": 0.0006, + "loss": 4.0035905838012695, + "step": 1253 + }, + { + "epoch": 17.419397116644824, + "grad_norm": 0.24044716358184814, + "learning_rate": 0.0006, + "loss": 4.005317687988281, + "step": 1254 + }, + { + "epoch": 17.433377020532983, + "grad_norm": 0.19142559170722961, + "learning_rate": 0.0006, + "loss": 3.9976844787597656, + "step": 1255 + }, + { + "epoch": 17.447356924421143, + "grad_norm": 0.18650250136852264, + "learning_rate": 0.0006, + "loss": 4.031353950500488, + "step": 1256 + }, + { + "epoch": 17.461336828309307, + "grad_norm": 0.1984022557735443, + "learning_rate": 0.0006, + "loss": 4.002097129821777, + "step": 1257 + }, + { + "epoch": 17.475316732197467, + "grad_norm": 0.20087844133377075, + "learning_rate": 0.0006, + "loss": 4.031151294708252, + "step": 1258 + }, + { + "epoch": 17.489296636085626, + "grad_norm": 0.20881228148937225, + "learning_rate": 0.0006, + "loss": 4.034793853759766, + "step": 1259 + }, + { + "epoch": 17.503276539973786, + "grad_norm": 0.23958556354045868, + "learning_rate": 0.0006, + "loss": 4.025238990783691, + "step": 1260 + }, + { + "epoch": 17.51725644386195, + "grad_norm": 0.23927845060825348, + "learning_rate": 0.0006, + "loss": 3.999828338623047, + "step": 1261 + }, + { + "epoch": 17.53123634775011, + "grad_norm": 0.20342715084552765, + "learning_rate": 0.0006, + "loss": 4.054262161254883, + "step": 1262 + }, + { + "epoch": 17.54521625163827, + "grad_norm": 0.21370555460453033, + "learning_rate": 0.0006, + "loss": 4.011582374572754, + "step": 1263 + }, + { + "epoch": 17.55919615552643, + "grad_norm": 0.23681946098804474, + "learning_rate": 0.0006, + "loss": 4.029694080352783, + "step": 1264 + }, + { + "epoch": 17.573176059414592, + "grad_norm": 0.24190311133861542, + "learning_rate": 0.0006, + "loss": 4.018783092498779, + "step": 1265 + }, + { + "epoch": 17.587155963302752, + "grad_norm": 0.23215509951114655, + "learning_rate": 0.0006, + "loss": 4.009703159332275, + "step": 1266 + }, + { + "epoch": 17.601135867190912, + "grad_norm": 0.21122977137565613, + "learning_rate": 0.0006, + "loss": 4.0345659255981445, + "step": 1267 + }, + { + "epoch": 17.615115771079076, + "grad_norm": 0.2075948715209961, + "learning_rate": 0.0006, + "loss": 4.070703506469727, + "step": 1268 + }, + { + "epoch": 17.629095674967235, + "grad_norm": 0.21667909622192383, + "learning_rate": 0.0006, + "loss": 4.020771503448486, + "step": 1269 + }, + { + "epoch": 17.643075578855395, + "grad_norm": 0.20960724353790283, + "learning_rate": 0.0006, + "loss": 4.026404857635498, + "step": 1270 + }, + { + "epoch": 17.657055482743555, + "grad_norm": 0.22575686872005463, + "learning_rate": 0.0006, + "loss": 4.01981258392334, + "step": 1271 + }, + { + "epoch": 17.67103538663172, + "grad_norm": 0.2565988302230835, + "learning_rate": 0.0006, + "loss": 4.015827178955078, + "step": 1272 + }, + { + "epoch": 17.68501529051988, + "grad_norm": 0.24831551313400269, + "learning_rate": 0.0006, + "loss": 4.012457847595215, + "step": 1273 + }, + { + "epoch": 17.698995194408038, + "grad_norm": 0.22595494985580444, + "learning_rate": 0.0006, + "loss": 4.031386375427246, + "step": 1274 + }, + { + "epoch": 17.712975098296198, + "grad_norm": 0.20687322318553925, + "learning_rate": 0.0006, + "loss": 4.014216423034668, + "step": 1275 + }, + { + "epoch": 17.72695500218436, + "grad_norm": 0.21916012465953827, + "learning_rate": 0.0006, + "loss": 4.037643909454346, + "step": 1276 + }, + { + "epoch": 17.74093490607252, + "grad_norm": 0.2243107706308365, + "learning_rate": 0.0006, + "loss": 4.033044815063477, + "step": 1277 + }, + { + "epoch": 17.75491480996068, + "grad_norm": 0.2402164787054062, + "learning_rate": 0.0006, + "loss": 4.026636123657227, + "step": 1278 + }, + { + "epoch": 17.76889471384884, + "grad_norm": 0.27957046031951904, + "learning_rate": 0.0006, + "loss": 4.0270867347717285, + "step": 1279 + }, + { + "epoch": 17.782874617737004, + "grad_norm": 0.27447596192359924, + "learning_rate": 0.0006, + "loss": 4.0120134353637695, + "step": 1280 + }, + { + "epoch": 17.796854521625164, + "grad_norm": 0.26926323771476746, + "learning_rate": 0.0006, + "loss": 4.027970314025879, + "step": 1281 + }, + { + "epoch": 17.810834425513324, + "grad_norm": 0.2535291314125061, + "learning_rate": 0.0006, + "loss": 4.002565383911133, + "step": 1282 + }, + { + "epoch": 17.824814329401484, + "grad_norm": 0.22639447450637817, + "learning_rate": 0.0006, + "loss": 4.032750606536865, + "step": 1283 + }, + { + "epoch": 17.838794233289647, + "grad_norm": 0.23384462296962738, + "learning_rate": 0.0006, + "loss": 4.03568172454834, + "step": 1284 + }, + { + "epoch": 17.852774137177807, + "grad_norm": 0.22971470654010773, + "learning_rate": 0.0006, + "loss": 4.031299591064453, + "step": 1285 + }, + { + "epoch": 17.866754041065967, + "grad_norm": 0.24540141224861145, + "learning_rate": 0.0006, + "loss": 4.0142669677734375, + "step": 1286 + }, + { + "epoch": 17.88073394495413, + "grad_norm": 0.2304888367652893, + "learning_rate": 0.0006, + "loss": 3.9964895248413086, + "step": 1287 + }, + { + "epoch": 17.89471384884229, + "grad_norm": 0.22082284092903137, + "learning_rate": 0.0006, + "loss": 4.024693489074707, + "step": 1288 + }, + { + "epoch": 17.90869375273045, + "grad_norm": 0.23677092790603638, + "learning_rate": 0.0006, + "loss": 4.002082347869873, + "step": 1289 + }, + { + "epoch": 17.92267365661861, + "grad_norm": 0.23122332990169525, + "learning_rate": 0.0006, + "loss": 4.025351524353027, + "step": 1290 + }, + { + "epoch": 17.936653560506773, + "grad_norm": 0.2548119127750397, + "learning_rate": 0.0006, + "loss": 3.9955825805664062, + "step": 1291 + }, + { + "epoch": 17.950633464394933, + "grad_norm": 0.26950931549072266, + "learning_rate": 0.0006, + "loss": 4.026151180267334, + "step": 1292 + }, + { + "epoch": 17.964613368283093, + "grad_norm": 0.3023233711719513, + "learning_rate": 0.0006, + "loss": 4.006035804748535, + "step": 1293 + }, + { + "epoch": 17.978593272171253, + "grad_norm": 0.3190958499908447, + "learning_rate": 0.0006, + "loss": 4.023565292358398, + "step": 1294 + }, + { + "epoch": 17.992573176059416, + "grad_norm": 0.28878068923950195, + "learning_rate": 0.0006, + "loss": 4.020973205566406, + "step": 1295 + }, + { + "epoch": 18.0, + "grad_norm": 0.27312418818473816, + "learning_rate": 0.0006, + "loss": 3.99906587600708, + "step": 1296 + }, + { + "epoch": 18.0, + "eval_loss": 4.224447250366211, + "eval_runtime": 52.5728, + "eval_samples_per_second": 46.45, + "eval_steps_per_second": 2.91, + "step": 1296 + }, + { + "epoch": 18.01397990388816, + "grad_norm": 0.2567712664604187, + "learning_rate": 0.0006, + "loss": 3.9755055904388428, + "step": 1297 + }, + { + "epoch": 18.027959807776323, + "grad_norm": 0.25048133730888367, + "learning_rate": 0.0006, + "loss": 4.009254455566406, + "step": 1298 + }, + { + "epoch": 18.041939711664483, + "grad_norm": 0.2556909918785095, + "learning_rate": 0.0006, + "loss": 4.001235008239746, + "step": 1299 + }, + { + "epoch": 18.055919615552643, + "grad_norm": 0.2501400113105774, + "learning_rate": 0.0006, + "loss": 3.980726480484009, + "step": 1300 + }, + { + "epoch": 18.069899519440803, + "grad_norm": 0.23977792263031006, + "learning_rate": 0.0006, + "loss": 3.964195728302002, + "step": 1301 + }, + { + "epoch": 18.083879423328966, + "grad_norm": 0.25650718808174133, + "learning_rate": 0.0006, + "loss": 4.015914440155029, + "step": 1302 + }, + { + "epoch": 18.097859327217126, + "grad_norm": 0.234053835272789, + "learning_rate": 0.0006, + "loss": 4.0159149169921875, + "step": 1303 + }, + { + "epoch": 18.111839231105286, + "grad_norm": 0.21967713534832, + "learning_rate": 0.0006, + "loss": 4.0055694580078125, + "step": 1304 + }, + { + "epoch": 18.125819134993446, + "grad_norm": 0.21790878474712372, + "learning_rate": 0.0006, + "loss": 3.986253261566162, + "step": 1305 + }, + { + "epoch": 18.13979903888161, + "grad_norm": 0.22955302894115448, + "learning_rate": 0.0006, + "loss": 3.959421157836914, + "step": 1306 + }, + { + "epoch": 18.15377894276977, + "grad_norm": 0.2559174597263336, + "learning_rate": 0.0006, + "loss": 4.0069756507873535, + "step": 1307 + }, + { + "epoch": 18.16775884665793, + "grad_norm": 0.26132866740226746, + "learning_rate": 0.0006, + "loss": 3.9874095916748047, + "step": 1308 + }, + { + "epoch": 18.18173875054609, + "grad_norm": 0.23258940875530243, + "learning_rate": 0.0006, + "loss": 3.9762492179870605, + "step": 1309 + }, + { + "epoch": 18.195718654434252, + "grad_norm": 0.22347190976142883, + "learning_rate": 0.0006, + "loss": 3.9923410415649414, + "step": 1310 + }, + { + "epoch": 18.209698558322412, + "grad_norm": 0.23095804452896118, + "learning_rate": 0.0006, + "loss": 4.019245624542236, + "step": 1311 + }, + { + "epoch": 18.22367846221057, + "grad_norm": 0.24817052483558655, + "learning_rate": 0.0006, + "loss": 3.9697511196136475, + "step": 1312 + }, + { + "epoch": 18.23765836609873, + "grad_norm": 0.2566024959087372, + "learning_rate": 0.0006, + "loss": 3.978804111480713, + "step": 1313 + }, + { + "epoch": 18.251638269986895, + "grad_norm": 0.2527952790260315, + "learning_rate": 0.0006, + "loss": 3.972018241882324, + "step": 1314 + }, + { + "epoch": 18.265618173875055, + "grad_norm": 0.2508150637149811, + "learning_rate": 0.0006, + "loss": 3.9971275329589844, + "step": 1315 + }, + { + "epoch": 18.279598077763215, + "grad_norm": 0.23242022097110748, + "learning_rate": 0.0006, + "loss": 3.9712045192718506, + "step": 1316 + }, + { + "epoch": 18.293577981651374, + "grad_norm": 0.23474404215812683, + "learning_rate": 0.0006, + "loss": 3.9926767349243164, + "step": 1317 + }, + { + "epoch": 18.307557885539538, + "grad_norm": 0.2417769432067871, + "learning_rate": 0.0006, + "loss": 3.9920949935913086, + "step": 1318 + }, + { + "epoch": 18.321537789427698, + "grad_norm": 0.23839452862739563, + "learning_rate": 0.0006, + "loss": 4.016645431518555, + "step": 1319 + }, + { + "epoch": 18.335517693315857, + "grad_norm": 0.2512452304363251, + "learning_rate": 0.0006, + "loss": 3.97586727142334, + "step": 1320 + }, + { + "epoch": 18.34949759720402, + "grad_norm": 0.27503693103790283, + "learning_rate": 0.0006, + "loss": 4.000148773193359, + "step": 1321 + }, + { + "epoch": 18.36347750109218, + "grad_norm": 0.27830836176872253, + "learning_rate": 0.0006, + "loss": 3.9972195625305176, + "step": 1322 + }, + { + "epoch": 18.37745740498034, + "grad_norm": 0.2571812570095062, + "learning_rate": 0.0006, + "loss": 3.9900810718536377, + "step": 1323 + }, + { + "epoch": 18.3914373088685, + "grad_norm": 0.2310052365064621, + "learning_rate": 0.0006, + "loss": 4.003000259399414, + "step": 1324 + }, + { + "epoch": 18.405417212756664, + "grad_norm": 0.19615735113620758, + "learning_rate": 0.0006, + "loss": 3.9536571502685547, + "step": 1325 + }, + { + "epoch": 18.419397116644824, + "grad_norm": 0.21323896944522858, + "learning_rate": 0.0006, + "loss": 3.977508068084717, + "step": 1326 + }, + { + "epoch": 18.433377020532983, + "grad_norm": 0.21404202282428741, + "learning_rate": 0.0006, + "loss": 4.015361785888672, + "step": 1327 + }, + { + "epoch": 18.447356924421143, + "grad_norm": 0.1991959661245346, + "learning_rate": 0.0006, + "loss": 4.000286102294922, + "step": 1328 + }, + { + "epoch": 18.461336828309307, + "grad_norm": 0.2073599398136139, + "learning_rate": 0.0006, + "loss": 3.973065137863159, + "step": 1329 + }, + { + "epoch": 18.475316732197467, + "grad_norm": 0.2096073031425476, + "learning_rate": 0.0006, + "loss": 3.987032890319824, + "step": 1330 + }, + { + "epoch": 18.489296636085626, + "grad_norm": 0.2380610853433609, + "learning_rate": 0.0006, + "loss": 4.035274505615234, + "step": 1331 + }, + { + "epoch": 18.503276539973786, + "grad_norm": 0.23570716381072998, + "learning_rate": 0.0006, + "loss": 4.010516166687012, + "step": 1332 + }, + { + "epoch": 18.51725644386195, + "grad_norm": 0.24805466830730438, + "learning_rate": 0.0006, + "loss": 3.9750983715057373, + "step": 1333 + }, + { + "epoch": 18.53123634775011, + "grad_norm": 0.25173231959342957, + "learning_rate": 0.0006, + "loss": 3.9742345809936523, + "step": 1334 + }, + { + "epoch": 18.54521625163827, + "grad_norm": 0.24590367078781128, + "learning_rate": 0.0006, + "loss": 4.0037312507629395, + "step": 1335 + }, + { + "epoch": 18.55919615552643, + "grad_norm": 0.24379394948482513, + "learning_rate": 0.0006, + "loss": 3.993858814239502, + "step": 1336 + }, + { + "epoch": 18.573176059414592, + "grad_norm": 0.21708883345127106, + "learning_rate": 0.0006, + "loss": 3.965670585632324, + "step": 1337 + }, + { + "epoch": 18.587155963302752, + "grad_norm": 0.21024051308631897, + "learning_rate": 0.0006, + "loss": 3.987551689147949, + "step": 1338 + }, + { + "epoch": 18.601135867190912, + "grad_norm": 0.23376783728599548, + "learning_rate": 0.0006, + "loss": 4.002841472625732, + "step": 1339 + }, + { + "epoch": 18.615115771079076, + "grad_norm": 0.25350701808929443, + "learning_rate": 0.0006, + "loss": 3.9881370067596436, + "step": 1340 + }, + { + "epoch": 18.629095674967235, + "grad_norm": 0.2542140483856201, + "learning_rate": 0.0006, + "loss": 4.003695964813232, + "step": 1341 + }, + { + "epoch": 18.643075578855395, + "grad_norm": 0.22932685911655426, + "learning_rate": 0.0006, + "loss": 4.0146002769470215, + "step": 1342 + }, + { + "epoch": 18.657055482743555, + "grad_norm": 0.21099458634853363, + "learning_rate": 0.0006, + "loss": 3.970472812652588, + "step": 1343 + }, + { + "epoch": 18.67103538663172, + "grad_norm": 0.2234615832567215, + "learning_rate": 0.0006, + "loss": 3.9821488857269287, + "step": 1344 + }, + { + "epoch": 18.68501529051988, + "grad_norm": 0.230327770113945, + "learning_rate": 0.0006, + "loss": 3.996274948120117, + "step": 1345 + }, + { + "epoch": 18.698995194408038, + "grad_norm": 0.23596233129501343, + "learning_rate": 0.0006, + "loss": 3.9747462272644043, + "step": 1346 + }, + { + "epoch": 18.712975098296198, + "grad_norm": 0.24173159897327423, + "learning_rate": 0.0006, + "loss": 4.011804103851318, + "step": 1347 + }, + { + "epoch": 18.72695500218436, + "grad_norm": 0.24087604880332947, + "learning_rate": 0.0006, + "loss": 4.008726119995117, + "step": 1348 + }, + { + "epoch": 18.74093490607252, + "grad_norm": 0.2457292526960373, + "learning_rate": 0.0006, + "loss": 3.990793228149414, + "step": 1349 + }, + { + "epoch": 18.75491480996068, + "grad_norm": 0.22946089506149292, + "learning_rate": 0.0006, + "loss": 3.980494260787964, + "step": 1350 + }, + { + "epoch": 18.76889471384884, + "grad_norm": 0.22986692190170288, + "learning_rate": 0.0006, + "loss": 3.97006893157959, + "step": 1351 + }, + { + "epoch": 18.782874617737004, + "grad_norm": 0.23358555138111115, + "learning_rate": 0.0006, + "loss": 4.008172035217285, + "step": 1352 + }, + { + "epoch": 18.796854521625164, + "grad_norm": 0.20183615386486053, + "learning_rate": 0.0006, + "loss": 3.9720888137817383, + "step": 1353 + }, + { + "epoch": 18.810834425513324, + "grad_norm": 0.19975653290748596, + "learning_rate": 0.0006, + "loss": 3.9783310890197754, + "step": 1354 + }, + { + "epoch": 18.824814329401484, + "grad_norm": 0.18911021947860718, + "learning_rate": 0.0006, + "loss": 3.985982894897461, + "step": 1355 + }, + { + "epoch": 18.838794233289647, + "grad_norm": 0.15984168648719788, + "learning_rate": 0.0006, + "loss": 3.9740548133850098, + "step": 1356 + }, + { + "epoch": 18.852774137177807, + "grad_norm": 0.1755436211824417, + "learning_rate": 0.0006, + "loss": 4.013090133666992, + "step": 1357 + }, + { + "epoch": 18.866754041065967, + "grad_norm": 0.1798417866230011, + "learning_rate": 0.0006, + "loss": 3.997880697250366, + "step": 1358 + }, + { + "epoch": 18.88073394495413, + "grad_norm": 0.20206265151500702, + "learning_rate": 0.0006, + "loss": 3.9892373085021973, + "step": 1359 + }, + { + "epoch": 18.89471384884229, + "grad_norm": 0.23685456812381744, + "learning_rate": 0.0006, + "loss": 3.9909186363220215, + "step": 1360 + }, + { + "epoch": 18.90869375273045, + "grad_norm": 0.26053836941719055, + "learning_rate": 0.0006, + "loss": 4.00327205657959, + "step": 1361 + }, + { + "epoch": 18.92267365661861, + "grad_norm": 0.26215845346450806, + "learning_rate": 0.0006, + "loss": 3.9714717864990234, + "step": 1362 + }, + { + "epoch": 18.936653560506773, + "grad_norm": 0.2433871030807495, + "learning_rate": 0.0006, + "loss": 3.949416160583496, + "step": 1363 + }, + { + "epoch": 18.950633464394933, + "grad_norm": 0.23331883549690247, + "learning_rate": 0.0006, + "loss": 3.980501413345337, + "step": 1364 + }, + { + "epoch": 18.964613368283093, + "grad_norm": 0.2346954047679901, + "learning_rate": 0.0006, + "loss": 3.9974493980407715, + "step": 1365 + }, + { + "epoch": 18.978593272171253, + "grad_norm": 0.25101345777511597, + "learning_rate": 0.0006, + "loss": 3.9800148010253906, + "step": 1366 + }, + { + "epoch": 18.992573176059416, + "grad_norm": 0.26811933517456055, + "learning_rate": 0.0006, + "loss": 4.0065741539001465, + "step": 1367 + }, + { + "epoch": 19.0, + "grad_norm": 0.2731736898422241, + "learning_rate": 0.0006, + "loss": 4.014575481414795, + "step": 1368 + }, + { + "epoch": 19.0, + "eval_loss": 4.200716972351074, + "eval_runtime": 44.6962, + "eval_samples_per_second": 54.636, + "eval_steps_per_second": 3.423, + "step": 1368 + }, + { + "epoch": 19.01397990388816, + "grad_norm": 0.2517746686935425, + "learning_rate": 0.0006, + "loss": 3.9486539363861084, + "step": 1369 + }, + { + "epoch": 19.027959807776323, + "grad_norm": 0.2482699453830719, + "learning_rate": 0.0006, + "loss": 3.95015287399292, + "step": 1370 + }, + { + "epoch": 19.041939711664483, + "grad_norm": 0.21693618595600128, + "learning_rate": 0.0006, + "loss": 3.970022201538086, + "step": 1371 + }, + { + "epoch": 19.055919615552643, + "grad_norm": 0.2035159319639206, + "learning_rate": 0.0006, + "loss": 3.941457748413086, + "step": 1372 + }, + { + "epoch": 19.069899519440803, + "grad_norm": 0.2201429009437561, + "learning_rate": 0.0006, + "loss": 3.946794033050537, + "step": 1373 + }, + { + "epoch": 19.083879423328966, + "grad_norm": 0.22910255193710327, + "learning_rate": 0.0006, + "loss": 3.94606876373291, + "step": 1374 + }, + { + "epoch": 19.097859327217126, + "grad_norm": 0.22378197312355042, + "learning_rate": 0.0006, + "loss": 3.957899570465088, + "step": 1375 + }, + { + "epoch": 19.111839231105286, + "grad_norm": 0.21728114783763885, + "learning_rate": 0.0006, + "loss": 3.9565982818603516, + "step": 1376 + }, + { + "epoch": 19.125819134993446, + "grad_norm": 0.21887634694576263, + "learning_rate": 0.0006, + "loss": 3.9649534225463867, + "step": 1377 + }, + { + "epoch": 19.13979903888161, + "grad_norm": 0.21892991662025452, + "learning_rate": 0.0006, + "loss": 3.971388101577759, + "step": 1378 + }, + { + "epoch": 19.15377894276977, + "grad_norm": 0.24582402408123016, + "learning_rate": 0.0006, + "loss": 3.9370944499969482, + "step": 1379 + }, + { + "epoch": 19.16775884665793, + "grad_norm": 0.27547118067741394, + "learning_rate": 0.0006, + "loss": 3.939406156539917, + "step": 1380 + }, + { + "epoch": 19.18173875054609, + "grad_norm": 0.3131563365459442, + "learning_rate": 0.0006, + "loss": 3.942620277404785, + "step": 1381 + }, + { + "epoch": 19.195718654434252, + "grad_norm": 0.3211703598499298, + "learning_rate": 0.0006, + "loss": 3.9388349056243896, + "step": 1382 + }, + { + "epoch": 19.209698558322412, + "grad_norm": 0.2791919410228729, + "learning_rate": 0.0006, + "loss": 3.9827399253845215, + "step": 1383 + }, + { + "epoch": 19.22367846221057, + "grad_norm": 0.2872016727924347, + "learning_rate": 0.0006, + "loss": 3.976715087890625, + "step": 1384 + }, + { + "epoch": 19.23765836609873, + "grad_norm": 0.2790389060974121, + "learning_rate": 0.0006, + "loss": 3.952850818634033, + "step": 1385 + }, + { + "epoch": 19.251638269986895, + "grad_norm": 0.31903740763664246, + "learning_rate": 0.0006, + "loss": 3.964506149291992, + "step": 1386 + }, + { + "epoch": 19.265618173875055, + "grad_norm": 0.31013646721839905, + "learning_rate": 0.0006, + "loss": 3.967219352722168, + "step": 1387 + }, + { + "epoch": 19.279598077763215, + "grad_norm": 0.2574339509010315, + "learning_rate": 0.0006, + "loss": 3.979168176651001, + "step": 1388 + }, + { + "epoch": 19.293577981651374, + "grad_norm": 0.24621108174324036, + "learning_rate": 0.0006, + "loss": 3.981734275817871, + "step": 1389 + }, + { + "epoch": 19.307557885539538, + "grad_norm": 0.25113818049430847, + "learning_rate": 0.0006, + "loss": 3.9787755012512207, + "step": 1390 + }, + { + "epoch": 19.321537789427698, + "grad_norm": 0.259971022605896, + "learning_rate": 0.0006, + "loss": 3.9648823738098145, + "step": 1391 + }, + { + "epoch": 19.335517693315857, + "grad_norm": 0.22580404579639435, + "learning_rate": 0.0006, + "loss": 3.9658002853393555, + "step": 1392 + }, + { + "epoch": 19.34949759720402, + "grad_norm": 0.2133680284023285, + "learning_rate": 0.0006, + "loss": 3.9615914821624756, + "step": 1393 + }, + { + "epoch": 19.36347750109218, + "grad_norm": 0.2387680858373642, + "learning_rate": 0.0006, + "loss": 3.993811845779419, + "step": 1394 + }, + { + "epoch": 19.37745740498034, + "grad_norm": 0.26086220145225525, + "learning_rate": 0.0006, + "loss": 3.932701826095581, + "step": 1395 + }, + { + "epoch": 19.3914373088685, + "grad_norm": 0.23255233466625214, + "learning_rate": 0.0006, + "loss": 3.8969321250915527, + "step": 1396 + }, + { + "epoch": 19.405417212756664, + "grad_norm": 0.22894541919231415, + "learning_rate": 0.0006, + "loss": 3.9569311141967773, + "step": 1397 + }, + { + "epoch": 19.419397116644824, + "grad_norm": 0.2254200130701065, + "learning_rate": 0.0006, + "loss": 3.953199863433838, + "step": 1398 + }, + { + "epoch": 19.433377020532983, + "grad_norm": 0.25802481174468994, + "learning_rate": 0.0006, + "loss": 3.9714815616607666, + "step": 1399 + }, + { + "epoch": 19.447356924421143, + "grad_norm": 0.24725162982940674, + "learning_rate": 0.0006, + "loss": 3.957339286804199, + "step": 1400 + }, + { + "epoch": 19.461336828309307, + "grad_norm": 0.2162018120288849, + "learning_rate": 0.0006, + "loss": 3.986801862716675, + "step": 1401 + }, + { + "epoch": 19.475316732197467, + "grad_norm": 0.21530906856060028, + "learning_rate": 0.0006, + "loss": 3.9766759872436523, + "step": 1402 + }, + { + "epoch": 19.489296636085626, + "grad_norm": 0.20260323584079742, + "learning_rate": 0.0006, + "loss": 3.9576425552368164, + "step": 1403 + }, + { + "epoch": 19.503276539973786, + "grad_norm": 0.188974529504776, + "learning_rate": 0.0006, + "loss": 3.9852395057678223, + "step": 1404 + }, + { + "epoch": 19.51725644386195, + "grad_norm": 0.19727374613285065, + "learning_rate": 0.0006, + "loss": 3.972484588623047, + "step": 1405 + }, + { + "epoch": 19.53123634775011, + "grad_norm": 0.23708008229732513, + "learning_rate": 0.0006, + "loss": 3.992471694946289, + "step": 1406 + }, + { + "epoch": 19.54521625163827, + "grad_norm": 0.23783449828624725, + "learning_rate": 0.0006, + "loss": 3.9788265228271484, + "step": 1407 + }, + { + "epoch": 19.55919615552643, + "grad_norm": 0.24744364619255066, + "learning_rate": 0.0006, + "loss": 3.9559011459350586, + "step": 1408 + }, + { + "epoch": 19.573176059414592, + "grad_norm": 0.24828094244003296, + "learning_rate": 0.0006, + "loss": 3.9663949012756348, + "step": 1409 + }, + { + "epoch": 19.587155963302752, + "grad_norm": 0.2681315541267395, + "learning_rate": 0.0006, + "loss": 3.9581191539764404, + "step": 1410 + }, + { + "epoch": 19.601135867190912, + "grad_norm": 0.2691532373428345, + "learning_rate": 0.0006, + "loss": 3.9832754135131836, + "step": 1411 + }, + { + "epoch": 19.615115771079076, + "grad_norm": 0.2900252640247345, + "learning_rate": 0.0006, + "loss": 3.984365940093994, + "step": 1412 + }, + { + "epoch": 19.629095674967235, + "grad_norm": 0.3194943070411682, + "learning_rate": 0.0006, + "loss": 3.9856505393981934, + "step": 1413 + }, + { + "epoch": 19.643075578855395, + "grad_norm": 0.3029029071331024, + "learning_rate": 0.0006, + "loss": 3.968992233276367, + "step": 1414 + }, + { + "epoch": 19.657055482743555, + "grad_norm": 0.2658176124095917, + "learning_rate": 0.0006, + "loss": 3.995187282562256, + "step": 1415 + }, + { + "epoch": 19.67103538663172, + "grad_norm": 0.26807504892349243, + "learning_rate": 0.0006, + "loss": 3.9756274223327637, + "step": 1416 + }, + { + "epoch": 19.68501529051988, + "grad_norm": 0.27718642354011536, + "learning_rate": 0.0006, + "loss": 3.9510018825531006, + "step": 1417 + }, + { + "epoch": 19.698995194408038, + "grad_norm": 0.26322051882743835, + "learning_rate": 0.0006, + "loss": 3.965155601501465, + "step": 1418 + }, + { + "epoch": 19.712975098296198, + "grad_norm": 0.2566570043563843, + "learning_rate": 0.0006, + "loss": 3.984218120574951, + "step": 1419 + }, + { + "epoch": 19.72695500218436, + "grad_norm": 0.2218743860721588, + "learning_rate": 0.0006, + "loss": 3.9338784217834473, + "step": 1420 + }, + { + "epoch": 19.74093490607252, + "grad_norm": 0.22894173860549927, + "learning_rate": 0.0006, + "loss": 3.9869046211242676, + "step": 1421 + }, + { + "epoch": 19.75491480996068, + "grad_norm": 0.26837027072906494, + "learning_rate": 0.0006, + "loss": 3.96799898147583, + "step": 1422 + }, + { + "epoch": 19.76889471384884, + "grad_norm": 0.2767876982688904, + "learning_rate": 0.0006, + "loss": 3.9431071281433105, + "step": 1423 + }, + { + "epoch": 19.782874617737004, + "grad_norm": 0.24402284622192383, + "learning_rate": 0.0006, + "loss": 3.9631881713867188, + "step": 1424 + }, + { + "epoch": 19.796854521625164, + "grad_norm": 0.23500724136829376, + "learning_rate": 0.0006, + "loss": 3.9943337440490723, + "step": 1425 + }, + { + "epoch": 19.810834425513324, + "grad_norm": 0.22509142756462097, + "learning_rate": 0.0006, + "loss": 3.961226224899292, + "step": 1426 + }, + { + "epoch": 19.824814329401484, + "grad_norm": 0.23524795472621918, + "learning_rate": 0.0006, + "loss": 3.9552102088928223, + "step": 1427 + }, + { + "epoch": 19.838794233289647, + "grad_norm": 0.22307050228118896, + "learning_rate": 0.0006, + "loss": 3.9623494148254395, + "step": 1428 + }, + { + "epoch": 19.852774137177807, + "grad_norm": 0.21144486963748932, + "learning_rate": 0.0006, + "loss": 3.9620237350463867, + "step": 1429 + }, + { + "epoch": 19.866754041065967, + "grad_norm": 0.20249812304973602, + "learning_rate": 0.0006, + "loss": 3.953911066055298, + "step": 1430 + }, + { + "epoch": 19.88073394495413, + "grad_norm": 0.2350354939699173, + "learning_rate": 0.0006, + "loss": 3.9616730213165283, + "step": 1431 + }, + { + "epoch": 19.89471384884229, + "grad_norm": 0.2566683292388916, + "learning_rate": 0.0006, + "loss": 3.9372501373291016, + "step": 1432 + }, + { + "epoch": 19.90869375273045, + "grad_norm": 0.2520846128463745, + "learning_rate": 0.0006, + "loss": 3.9814648628234863, + "step": 1433 + }, + { + "epoch": 19.92267365661861, + "grad_norm": 0.23989640176296234, + "learning_rate": 0.0006, + "loss": 3.9692864418029785, + "step": 1434 + }, + { + "epoch": 19.936653560506773, + "grad_norm": 0.20650425553321838, + "learning_rate": 0.0006, + "loss": 3.960256814956665, + "step": 1435 + }, + { + "epoch": 19.950633464394933, + "grad_norm": 0.20478376746177673, + "learning_rate": 0.0006, + "loss": 3.9585227966308594, + "step": 1436 + }, + { + "epoch": 19.964613368283093, + "grad_norm": 0.234436497092247, + "learning_rate": 0.0006, + "loss": 3.945631742477417, + "step": 1437 + }, + { + "epoch": 19.978593272171253, + "grad_norm": 0.19969749450683594, + "learning_rate": 0.0006, + "loss": 3.9646050930023193, + "step": 1438 + }, + { + "epoch": 19.992573176059416, + "grad_norm": 0.20638690888881683, + "learning_rate": 0.0006, + "loss": 3.9461846351623535, + "step": 1439 + }, + { + "epoch": 20.0, + "grad_norm": 0.2120274156332016, + "learning_rate": 0.0006, + "loss": 3.965153217315674, + "step": 1440 + }, + { + "epoch": 20.0, + "eval_loss": 4.168524742126465, + "eval_runtime": 44.2796, + "eval_samples_per_second": 55.15, + "eval_steps_per_second": 3.455, + "step": 1440 + }, + { + "epoch": 20.01397990388816, + "grad_norm": 0.19704894721508026, + "learning_rate": 0.0006, + "loss": 3.937016248703003, + "step": 1441 + }, + { + "epoch": 20.027959807776323, + "grad_norm": 0.18682368099689484, + "learning_rate": 0.0006, + "loss": 3.895922899246216, + "step": 1442 + }, + { + "epoch": 20.041939711664483, + "grad_norm": 0.18982571363449097, + "learning_rate": 0.0006, + "loss": 3.929841995239258, + "step": 1443 + }, + { + "epoch": 20.055919615552643, + "grad_norm": 0.20811910927295685, + "learning_rate": 0.0006, + "loss": 3.9498324394226074, + "step": 1444 + }, + { + "epoch": 20.069899519440803, + "grad_norm": 0.2149062603712082, + "learning_rate": 0.0006, + "loss": 3.929853916168213, + "step": 1445 + }, + { + "epoch": 20.083879423328966, + "grad_norm": 0.20016685128211975, + "learning_rate": 0.0006, + "loss": 3.9374136924743652, + "step": 1446 + }, + { + "epoch": 20.097859327217126, + "grad_norm": 0.19969616830348969, + "learning_rate": 0.0006, + "loss": 3.932447910308838, + "step": 1447 + }, + { + "epoch": 20.111839231105286, + "grad_norm": 0.2163356989622116, + "learning_rate": 0.0006, + "loss": 3.9325437545776367, + "step": 1448 + }, + { + "epoch": 20.125819134993446, + "grad_norm": 0.22026969492435455, + "learning_rate": 0.0006, + "loss": 3.9118852615356445, + "step": 1449 + }, + { + "epoch": 20.13979903888161, + "grad_norm": 0.23337116837501526, + "learning_rate": 0.0006, + "loss": 3.9416019916534424, + "step": 1450 + }, + { + "epoch": 20.15377894276977, + "grad_norm": 0.23971447348594666, + "learning_rate": 0.0006, + "loss": 3.9416871070861816, + "step": 1451 + }, + { + "epoch": 20.16775884665793, + "grad_norm": 0.25973960757255554, + "learning_rate": 0.0006, + "loss": 3.93826961517334, + "step": 1452 + }, + { + "epoch": 20.18173875054609, + "grad_norm": 0.2303445190191269, + "learning_rate": 0.0006, + "loss": 3.909383535385132, + "step": 1453 + }, + { + "epoch": 20.195718654434252, + "grad_norm": 0.21090206503868103, + "learning_rate": 0.0006, + "loss": 3.935939311981201, + "step": 1454 + }, + { + "epoch": 20.209698558322412, + "grad_norm": 0.2278691977262497, + "learning_rate": 0.0006, + "loss": 3.9623684883117676, + "step": 1455 + }, + { + "epoch": 20.22367846221057, + "grad_norm": 0.22291512787342072, + "learning_rate": 0.0006, + "loss": 3.9386210441589355, + "step": 1456 + }, + { + "epoch": 20.23765836609873, + "grad_norm": 0.2385793924331665, + "learning_rate": 0.0006, + "loss": 3.927365303039551, + "step": 1457 + }, + { + "epoch": 20.251638269986895, + "grad_norm": 0.23949867486953735, + "learning_rate": 0.0006, + "loss": 3.956698179244995, + "step": 1458 + }, + { + "epoch": 20.265618173875055, + "grad_norm": 0.2232269048690796, + "learning_rate": 0.0006, + "loss": 3.9465065002441406, + "step": 1459 + }, + { + "epoch": 20.279598077763215, + "grad_norm": 0.22286680340766907, + "learning_rate": 0.0006, + "loss": 3.9102284908294678, + "step": 1460 + }, + { + "epoch": 20.293577981651374, + "grad_norm": 0.24039050936698914, + "learning_rate": 0.0006, + "loss": 3.928055763244629, + "step": 1461 + }, + { + "epoch": 20.307557885539538, + "grad_norm": 0.2532738447189331, + "learning_rate": 0.0006, + "loss": 3.931753635406494, + "step": 1462 + }, + { + "epoch": 20.321537789427698, + "grad_norm": 0.2206273376941681, + "learning_rate": 0.0006, + "loss": 3.936119556427002, + "step": 1463 + }, + { + "epoch": 20.335517693315857, + "grad_norm": 0.20918945968151093, + "learning_rate": 0.0006, + "loss": 3.9228529930114746, + "step": 1464 + }, + { + "epoch": 20.34949759720402, + "grad_norm": 0.2324502319097519, + "learning_rate": 0.0006, + "loss": 3.9370768070220947, + "step": 1465 + }, + { + "epoch": 20.36347750109218, + "grad_norm": 0.26811033487319946, + "learning_rate": 0.0006, + "loss": 3.968515396118164, + "step": 1466 + }, + { + "epoch": 20.37745740498034, + "grad_norm": 0.2896045744419098, + "learning_rate": 0.0006, + "loss": 3.945124626159668, + "step": 1467 + }, + { + "epoch": 20.3914373088685, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 3.9399516582489014, + "step": 1468 + }, + { + "epoch": 20.405417212756664, + "grad_norm": 0.3076821565628052, + "learning_rate": 0.0006, + "loss": 3.9545583724975586, + "step": 1469 + }, + { + "epoch": 20.419397116644824, + "grad_norm": 0.3019449710845947, + "learning_rate": 0.0006, + "loss": 3.9502270221710205, + "step": 1470 + }, + { + "epoch": 20.433377020532983, + "grad_norm": 0.31832560896873474, + "learning_rate": 0.0006, + "loss": 3.940439224243164, + "step": 1471 + }, + { + "epoch": 20.447356924421143, + "grad_norm": 0.30303657054901123, + "learning_rate": 0.0006, + "loss": 3.9451770782470703, + "step": 1472 + }, + { + "epoch": 20.461336828309307, + "grad_norm": 0.28122979402542114, + "learning_rate": 0.0006, + "loss": 3.934508800506592, + "step": 1473 + }, + { + "epoch": 20.475316732197467, + "grad_norm": 0.27013441920280457, + "learning_rate": 0.0006, + "loss": 3.924323081970215, + "step": 1474 + }, + { + "epoch": 20.489296636085626, + "grad_norm": 0.29052063822746277, + "learning_rate": 0.0006, + "loss": 3.970916748046875, + "step": 1475 + }, + { + "epoch": 20.503276539973786, + "grad_norm": 0.2871626913547516, + "learning_rate": 0.0006, + "loss": 3.945425033569336, + "step": 1476 + }, + { + "epoch": 20.51725644386195, + "grad_norm": 0.2396184206008911, + "learning_rate": 0.0006, + "loss": 3.964290142059326, + "step": 1477 + }, + { + "epoch": 20.53123634775011, + "grad_norm": 0.21942107379436493, + "learning_rate": 0.0006, + "loss": 3.910101890563965, + "step": 1478 + }, + { + "epoch": 20.54521625163827, + "grad_norm": 0.22193685173988342, + "learning_rate": 0.0006, + "loss": 3.914005756378174, + "step": 1479 + }, + { + "epoch": 20.55919615552643, + "grad_norm": 0.20207515358924866, + "learning_rate": 0.0006, + "loss": 3.9575581550598145, + "step": 1480 + }, + { + "epoch": 20.573176059414592, + "grad_norm": 0.17855247855186462, + "learning_rate": 0.0006, + "loss": 3.941490411758423, + "step": 1481 + }, + { + "epoch": 20.587155963302752, + "grad_norm": 0.21268485486507416, + "learning_rate": 0.0006, + "loss": 3.94045352935791, + "step": 1482 + }, + { + "epoch": 20.601135867190912, + "grad_norm": 0.24890053272247314, + "learning_rate": 0.0006, + "loss": 3.932961940765381, + "step": 1483 + }, + { + "epoch": 20.615115771079076, + "grad_norm": 0.23771314322948456, + "learning_rate": 0.0006, + "loss": 3.9067630767822266, + "step": 1484 + }, + { + "epoch": 20.629095674967235, + "grad_norm": 0.20990237593650818, + "learning_rate": 0.0006, + "loss": 3.9476752281188965, + "step": 1485 + }, + { + "epoch": 20.643075578855395, + "grad_norm": 0.20058798789978027, + "learning_rate": 0.0006, + "loss": 3.9350547790527344, + "step": 1486 + }, + { + "epoch": 20.657055482743555, + "grad_norm": 0.1953001767396927, + "learning_rate": 0.0006, + "loss": 3.9437222480773926, + "step": 1487 + }, + { + "epoch": 20.67103538663172, + "grad_norm": 0.18748535215854645, + "learning_rate": 0.0006, + "loss": 3.9336047172546387, + "step": 1488 + }, + { + "epoch": 20.68501529051988, + "grad_norm": 0.18874801695346832, + "learning_rate": 0.0006, + "loss": 3.9042580127716064, + "step": 1489 + }, + { + "epoch": 20.698995194408038, + "grad_norm": 0.1844169795513153, + "learning_rate": 0.0006, + "loss": 3.9302420616149902, + "step": 1490 + }, + { + "epoch": 20.712975098296198, + "grad_norm": 0.18519413471221924, + "learning_rate": 0.0006, + "loss": 3.9527437686920166, + "step": 1491 + }, + { + "epoch": 20.72695500218436, + "grad_norm": 0.20084598660469055, + "learning_rate": 0.0006, + "loss": 3.9161760807037354, + "step": 1492 + }, + { + "epoch": 20.74093490607252, + "grad_norm": 0.2015734612941742, + "learning_rate": 0.0006, + "loss": 3.9466545581817627, + "step": 1493 + }, + { + "epoch": 20.75491480996068, + "grad_norm": 0.2210122048854828, + "learning_rate": 0.0006, + "loss": 3.8994693756103516, + "step": 1494 + }, + { + "epoch": 20.76889471384884, + "grad_norm": 0.23019762337207794, + "learning_rate": 0.0006, + "loss": 3.93685245513916, + "step": 1495 + }, + { + "epoch": 20.782874617737004, + "grad_norm": 0.21246281266212463, + "learning_rate": 0.0006, + "loss": 3.9499399662017822, + "step": 1496 + }, + { + "epoch": 20.796854521625164, + "grad_norm": 0.21142810583114624, + "learning_rate": 0.0006, + "loss": 3.9317150115966797, + "step": 1497 + }, + { + "epoch": 20.810834425513324, + "grad_norm": 0.20230524241924286, + "learning_rate": 0.0006, + "loss": 3.9389750957489014, + "step": 1498 + }, + { + "epoch": 20.824814329401484, + "grad_norm": 0.21096977591514587, + "learning_rate": 0.0006, + "loss": 3.9325194358825684, + "step": 1499 + }, + { + "epoch": 20.838794233289647, + "grad_norm": 0.2309989333152771, + "learning_rate": 0.0006, + "loss": 3.943641185760498, + "step": 1500 + }, + { + "epoch": 20.852774137177807, + "grad_norm": 0.2016306221485138, + "learning_rate": 0.0006, + "loss": 3.986043930053711, + "step": 1501 + }, + { + "epoch": 20.866754041065967, + "grad_norm": 0.2107970118522644, + "learning_rate": 0.0006, + "loss": 3.9219160079956055, + "step": 1502 + }, + { + "epoch": 20.88073394495413, + "grad_norm": 0.21580125391483307, + "learning_rate": 0.0006, + "loss": 3.942014694213867, + "step": 1503 + }, + { + "epoch": 20.89471384884229, + "grad_norm": 0.21348726749420166, + "learning_rate": 0.0006, + "loss": 3.9389920234680176, + "step": 1504 + }, + { + "epoch": 20.90869375273045, + "grad_norm": 0.23094943165779114, + "learning_rate": 0.0006, + "loss": 3.952993392944336, + "step": 1505 + }, + { + "epoch": 20.92267365661861, + "grad_norm": 0.22431740164756775, + "learning_rate": 0.0006, + "loss": 3.897671937942505, + "step": 1506 + }, + { + "epoch": 20.936653560506773, + "grad_norm": 0.20056353509426117, + "learning_rate": 0.0006, + "loss": 3.9100005626678467, + "step": 1507 + }, + { + "epoch": 20.950633464394933, + "grad_norm": 0.20604434609413147, + "learning_rate": 0.0006, + "loss": 3.9486045837402344, + "step": 1508 + }, + { + "epoch": 20.964613368283093, + "grad_norm": 0.22979380190372467, + "learning_rate": 0.0006, + "loss": 3.977163553237915, + "step": 1509 + }, + { + "epoch": 20.978593272171253, + "grad_norm": 0.2421523779630661, + "learning_rate": 0.0006, + "loss": 3.9216256141662598, + "step": 1510 + }, + { + "epoch": 20.992573176059416, + "grad_norm": 0.25776705145835876, + "learning_rate": 0.0006, + "loss": 3.9221739768981934, + "step": 1511 + }, + { + "epoch": 21.0, + "grad_norm": 0.2750694751739502, + "learning_rate": 0.0006, + "loss": 3.938098907470703, + "step": 1512 + }, + { + "epoch": 21.0, + "eval_loss": 4.159763336181641, + "eval_runtime": 44.8663, + "eval_samples_per_second": 54.428, + "eval_steps_per_second": 3.41, + "step": 1512 + }, + { + "epoch": 21.01397990388816, + "grad_norm": 0.24513043463230133, + "learning_rate": 0.0006, + "loss": 3.8939385414123535, + "step": 1513 + }, + { + "epoch": 21.027959807776323, + "grad_norm": 0.22209352254867554, + "learning_rate": 0.0006, + "loss": 3.9044857025146484, + "step": 1514 + }, + { + "epoch": 21.041939711664483, + "grad_norm": 0.22437648475170135, + "learning_rate": 0.0006, + "loss": 3.9325196743011475, + "step": 1515 + }, + { + "epoch": 21.055919615552643, + "grad_norm": 0.21168062090873718, + "learning_rate": 0.0006, + "loss": 3.882176637649536, + "step": 1516 + }, + { + "epoch": 21.069899519440803, + "grad_norm": 0.22334499657154083, + "learning_rate": 0.0006, + "loss": 3.8978934288024902, + "step": 1517 + }, + { + "epoch": 21.083879423328966, + "grad_norm": 0.21038010716438293, + "learning_rate": 0.0006, + "loss": 3.8807029724121094, + "step": 1518 + }, + { + "epoch": 21.097859327217126, + "grad_norm": 0.2243613600730896, + "learning_rate": 0.0006, + "loss": 3.924865961074829, + "step": 1519 + }, + { + "epoch": 21.111839231105286, + "grad_norm": 0.2535616159439087, + "learning_rate": 0.0006, + "loss": 3.9288227558135986, + "step": 1520 + }, + { + "epoch": 21.125819134993446, + "grad_norm": 0.2782756984233856, + "learning_rate": 0.0006, + "loss": 3.908233642578125, + "step": 1521 + }, + { + "epoch": 21.13979903888161, + "grad_norm": 0.2586214542388916, + "learning_rate": 0.0006, + "loss": 3.9151182174682617, + "step": 1522 + }, + { + "epoch": 21.15377894276977, + "grad_norm": 0.22465091943740845, + "learning_rate": 0.0006, + "loss": 3.9209084510803223, + "step": 1523 + }, + { + "epoch": 21.16775884665793, + "grad_norm": 0.2588018774986267, + "learning_rate": 0.0006, + "loss": 3.9295971393585205, + "step": 1524 + }, + { + "epoch": 21.18173875054609, + "grad_norm": 0.2637675702571869, + "learning_rate": 0.0006, + "loss": 3.9353199005126953, + "step": 1525 + }, + { + "epoch": 21.195718654434252, + "grad_norm": 0.2806383967399597, + "learning_rate": 0.0006, + "loss": 3.922337770462036, + "step": 1526 + }, + { + "epoch": 21.209698558322412, + "grad_norm": 0.27103501558303833, + "learning_rate": 0.0006, + "loss": 3.8811073303222656, + "step": 1527 + }, + { + "epoch": 21.22367846221057, + "grad_norm": 0.27203720808029175, + "learning_rate": 0.0006, + "loss": 3.9036178588867188, + "step": 1528 + }, + { + "epoch": 21.23765836609873, + "grad_norm": 0.2783355712890625, + "learning_rate": 0.0006, + "loss": 3.885456085205078, + "step": 1529 + }, + { + "epoch": 21.251638269986895, + "grad_norm": 0.2884930968284607, + "learning_rate": 0.0006, + "loss": 3.8936941623687744, + "step": 1530 + }, + { + "epoch": 21.265618173875055, + "grad_norm": 0.2829558849334717, + "learning_rate": 0.0006, + "loss": 3.927624225616455, + "step": 1531 + }, + { + "epoch": 21.279598077763215, + "grad_norm": 0.2809497117996216, + "learning_rate": 0.0006, + "loss": 3.8896753787994385, + "step": 1532 + }, + { + "epoch": 21.293577981651374, + "grad_norm": 0.27037671208381653, + "learning_rate": 0.0006, + "loss": 3.91316294670105, + "step": 1533 + }, + { + "epoch": 21.307557885539538, + "grad_norm": 0.310051292181015, + "learning_rate": 0.0006, + "loss": 3.9137332439422607, + "step": 1534 + }, + { + "epoch": 21.321537789427698, + "grad_norm": 0.30489876866340637, + "learning_rate": 0.0006, + "loss": 3.9088284969329834, + "step": 1535 + }, + { + "epoch": 21.335517693315857, + "grad_norm": 0.2607756555080414, + "learning_rate": 0.0006, + "loss": 3.9097847938537598, + "step": 1536 + }, + { + "epoch": 21.34949759720402, + "grad_norm": 0.2460775375366211, + "learning_rate": 0.0006, + "loss": 3.941211700439453, + "step": 1537 + }, + { + "epoch": 21.36347750109218, + "grad_norm": 0.24271734058856964, + "learning_rate": 0.0006, + "loss": 3.9140594005584717, + "step": 1538 + }, + { + "epoch": 21.37745740498034, + "grad_norm": 0.20012645423412323, + "learning_rate": 0.0006, + "loss": 3.888446807861328, + "step": 1539 + }, + { + "epoch": 21.3914373088685, + "grad_norm": 0.2196308672428131, + "learning_rate": 0.0006, + "loss": 3.9153785705566406, + "step": 1540 + }, + { + "epoch": 21.405417212756664, + "grad_norm": 0.22184589505195618, + "learning_rate": 0.0006, + "loss": 3.91996431350708, + "step": 1541 + }, + { + "epoch": 21.419397116644824, + "grad_norm": 0.22947315871715546, + "learning_rate": 0.0006, + "loss": 3.9268412590026855, + "step": 1542 + }, + { + "epoch": 21.433377020532983, + "grad_norm": 0.22275054454803467, + "learning_rate": 0.0006, + "loss": 3.909275531768799, + "step": 1543 + }, + { + "epoch": 21.447356924421143, + "grad_norm": 0.23103971779346466, + "learning_rate": 0.0006, + "loss": 3.925635814666748, + "step": 1544 + }, + { + "epoch": 21.461336828309307, + "grad_norm": 0.23379720747470856, + "learning_rate": 0.0006, + "loss": 3.926647186279297, + "step": 1545 + }, + { + "epoch": 21.475316732197467, + "grad_norm": 0.2244282215833664, + "learning_rate": 0.0006, + "loss": 3.9428000450134277, + "step": 1546 + }, + { + "epoch": 21.489296636085626, + "grad_norm": 0.22773298621177673, + "learning_rate": 0.0006, + "loss": 3.9378256797790527, + "step": 1547 + }, + { + "epoch": 21.503276539973786, + "grad_norm": 0.1918657273054123, + "learning_rate": 0.0006, + "loss": 3.904022216796875, + "step": 1548 + }, + { + "epoch": 21.51725644386195, + "grad_norm": 0.18415570259094238, + "learning_rate": 0.0006, + "loss": 3.9105122089385986, + "step": 1549 + }, + { + "epoch": 21.53123634775011, + "grad_norm": 0.22141380608081818, + "learning_rate": 0.0006, + "loss": 3.9153857231140137, + "step": 1550 + }, + { + "epoch": 21.54521625163827, + "grad_norm": 0.22533352673053741, + "learning_rate": 0.0006, + "loss": 3.9148974418640137, + "step": 1551 + }, + { + "epoch": 21.55919615552643, + "grad_norm": 0.2124762088060379, + "learning_rate": 0.0006, + "loss": 3.926311731338501, + "step": 1552 + }, + { + "epoch": 21.573176059414592, + "grad_norm": 0.239680215716362, + "learning_rate": 0.0006, + "loss": 3.9260334968566895, + "step": 1553 + }, + { + "epoch": 21.587155963302752, + "grad_norm": 0.24158740043640137, + "learning_rate": 0.0006, + "loss": 3.933223247528076, + "step": 1554 + }, + { + "epoch": 21.601135867190912, + "grad_norm": 0.2216576784849167, + "learning_rate": 0.0006, + "loss": 3.9065442085266113, + "step": 1555 + }, + { + "epoch": 21.615115771079076, + "grad_norm": 0.20099912583827972, + "learning_rate": 0.0006, + "loss": 3.923278570175171, + "step": 1556 + }, + { + "epoch": 21.629095674967235, + "grad_norm": 0.2337288111448288, + "learning_rate": 0.0006, + "loss": 3.92032527923584, + "step": 1557 + }, + { + "epoch": 21.643075578855395, + "grad_norm": 0.23574814200401306, + "learning_rate": 0.0006, + "loss": 3.896244525909424, + "step": 1558 + }, + { + "epoch": 21.657055482743555, + "grad_norm": 0.21338573098182678, + "learning_rate": 0.0006, + "loss": 3.930345058441162, + "step": 1559 + }, + { + "epoch": 21.67103538663172, + "grad_norm": 0.2375067174434662, + "learning_rate": 0.0006, + "loss": 3.864104986190796, + "step": 1560 + }, + { + "epoch": 21.68501529051988, + "grad_norm": 0.22490349411964417, + "learning_rate": 0.0006, + "loss": 3.883296012878418, + "step": 1561 + }, + { + "epoch": 21.698995194408038, + "grad_norm": 0.23021313548088074, + "learning_rate": 0.0006, + "loss": 3.915200710296631, + "step": 1562 + }, + { + "epoch": 21.712975098296198, + "grad_norm": 0.22590875625610352, + "learning_rate": 0.0006, + "loss": 3.903597354888916, + "step": 1563 + }, + { + "epoch": 21.72695500218436, + "grad_norm": 0.19066260755062103, + "learning_rate": 0.0006, + "loss": 3.9162631034851074, + "step": 1564 + }, + { + "epoch": 21.74093490607252, + "grad_norm": 0.18134327232837677, + "learning_rate": 0.0006, + "loss": 3.9167914390563965, + "step": 1565 + }, + { + "epoch": 21.75491480996068, + "grad_norm": 0.1782190054655075, + "learning_rate": 0.0006, + "loss": 3.900925636291504, + "step": 1566 + }, + { + "epoch": 21.76889471384884, + "grad_norm": 0.19034099578857422, + "learning_rate": 0.0006, + "loss": 3.896559238433838, + "step": 1567 + }, + { + "epoch": 21.782874617737004, + "grad_norm": 0.21509577333927155, + "learning_rate": 0.0006, + "loss": 3.891681671142578, + "step": 1568 + }, + { + "epoch": 21.796854521625164, + "grad_norm": 0.2370351105928421, + "learning_rate": 0.0006, + "loss": 3.886570453643799, + "step": 1569 + }, + { + "epoch": 21.810834425513324, + "grad_norm": 0.25546324253082275, + "learning_rate": 0.0006, + "loss": 3.9247193336486816, + "step": 1570 + }, + { + "epoch": 21.824814329401484, + "grad_norm": 0.2513384222984314, + "learning_rate": 0.0006, + "loss": 3.9120583534240723, + "step": 1571 + }, + { + "epoch": 21.838794233289647, + "grad_norm": 0.24691323935985565, + "learning_rate": 0.0006, + "loss": 3.9144935607910156, + "step": 1572 + }, + { + "epoch": 21.852774137177807, + "grad_norm": 0.2573968172073364, + "learning_rate": 0.0006, + "loss": 3.9517531394958496, + "step": 1573 + }, + { + "epoch": 21.866754041065967, + "grad_norm": 0.25461453199386597, + "learning_rate": 0.0006, + "loss": 3.93508243560791, + "step": 1574 + }, + { + "epoch": 21.88073394495413, + "grad_norm": 0.23756568133831024, + "learning_rate": 0.0006, + "loss": 3.8885269165039062, + "step": 1575 + }, + { + "epoch": 21.89471384884229, + "grad_norm": 0.2193172425031662, + "learning_rate": 0.0006, + "loss": 3.9103426933288574, + "step": 1576 + }, + { + "epoch": 21.90869375273045, + "grad_norm": 0.2350149303674698, + "learning_rate": 0.0006, + "loss": 3.9399590492248535, + "step": 1577 + }, + { + "epoch": 21.92267365661861, + "grad_norm": 0.23759333789348602, + "learning_rate": 0.0006, + "loss": 3.9433584213256836, + "step": 1578 + }, + { + "epoch": 21.936653560506773, + "grad_norm": 0.21108432114124298, + "learning_rate": 0.0006, + "loss": 3.9241819381713867, + "step": 1579 + }, + { + "epoch": 21.950633464394933, + "grad_norm": 0.22088949382305145, + "learning_rate": 0.0006, + "loss": 3.9231910705566406, + "step": 1580 + }, + { + "epoch": 21.964613368283093, + "grad_norm": 0.22125045955181122, + "learning_rate": 0.0006, + "loss": 3.896329164505005, + "step": 1581 + }, + { + "epoch": 21.978593272171253, + "grad_norm": 0.20745202898979187, + "learning_rate": 0.0006, + "loss": 3.8920536041259766, + "step": 1582 + }, + { + "epoch": 21.992573176059416, + "grad_norm": 0.2409721463918686, + "learning_rate": 0.0006, + "loss": 3.9061317443847656, + "step": 1583 + }, + { + "epoch": 22.0, + "grad_norm": 0.2669669985771179, + "learning_rate": 0.0006, + "loss": 3.922062397003174, + "step": 1584 + }, + { + "epoch": 22.0, + "eval_loss": 4.140966415405273, + "eval_runtime": 46.7132, + "eval_samples_per_second": 52.276, + "eval_steps_per_second": 3.275, + "step": 1584 + }, + { + "epoch": 22.01397990388816, + "grad_norm": 0.26155969500541687, + "learning_rate": 0.0006, + "loss": 3.888944625854492, + "step": 1585 + }, + { + "epoch": 22.027959807776323, + "grad_norm": 0.2579149007797241, + "learning_rate": 0.0006, + "loss": 3.8924355506896973, + "step": 1586 + }, + { + "epoch": 22.041939711664483, + "grad_norm": 0.2429896742105484, + "learning_rate": 0.0006, + "loss": 3.8714070320129395, + "step": 1587 + }, + { + "epoch": 22.055919615552643, + "grad_norm": 0.23497673869132996, + "learning_rate": 0.0006, + "loss": 3.905089855194092, + "step": 1588 + }, + { + "epoch": 22.069899519440803, + "grad_norm": 0.24074940383434296, + "learning_rate": 0.0006, + "loss": 3.886845111846924, + "step": 1589 + }, + { + "epoch": 22.083879423328966, + "grad_norm": 0.2226274162530899, + "learning_rate": 0.0006, + "loss": 3.8554329872131348, + "step": 1590 + }, + { + "epoch": 22.097859327217126, + "grad_norm": 0.22924423217773438, + "learning_rate": 0.0006, + "loss": 3.8914356231689453, + "step": 1591 + }, + { + "epoch": 22.111839231105286, + "grad_norm": 0.2459387183189392, + "learning_rate": 0.0006, + "loss": 3.902522087097168, + "step": 1592 + }, + { + "epoch": 22.125819134993446, + "grad_norm": 0.2704590857028961, + "learning_rate": 0.0006, + "loss": 3.896497964859009, + "step": 1593 + }, + { + "epoch": 22.13979903888161, + "grad_norm": 0.2848219871520996, + "learning_rate": 0.0006, + "loss": 3.88423228263855, + "step": 1594 + }, + { + "epoch": 22.15377894276977, + "grad_norm": 0.22996552288532257, + "learning_rate": 0.0006, + "loss": 3.9034953117370605, + "step": 1595 + }, + { + "epoch": 22.16775884665793, + "grad_norm": 0.2117270529270172, + "learning_rate": 0.0006, + "loss": 3.888279914855957, + "step": 1596 + }, + { + "epoch": 22.18173875054609, + "grad_norm": 0.19724160432815552, + "learning_rate": 0.0006, + "loss": 3.860525131225586, + "step": 1597 + }, + { + "epoch": 22.195718654434252, + "grad_norm": 0.2012624740600586, + "learning_rate": 0.0006, + "loss": 3.8930106163024902, + "step": 1598 + }, + { + "epoch": 22.209698558322412, + "grad_norm": 0.20243871212005615, + "learning_rate": 0.0006, + "loss": 3.8727619647979736, + "step": 1599 + }, + { + "epoch": 22.22367846221057, + "grad_norm": 0.21737465262413025, + "learning_rate": 0.0006, + "loss": 3.887969493865967, + "step": 1600 + }, + { + "epoch": 22.23765836609873, + "grad_norm": 0.23969845473766327, + "learning_rate": 0.0006, + "loss": 3.8629722595214844, + "step": 1601 + }, + { + "epoch": 22.251638269986895, + "grad_norm": 0.22874902188777924, + "learning_rate": 0.0006, + "loss": 3.9135584831237793, + "step": 1602 + }, + { + "epoch": 22.265618173875055, + "grad_norm": 0.209506556391716, + "learning_rate": 0.0006, + "loss": 3.8734190464019775, + "step": 1603 + }, + { + "epoch": 22.279598077763215, + "grad_norm": 0.22235789895057678, + "learning_rate": 0.0006, + "loss": 3.884854793548584, + "step": 1604 + }, + { + "epoch": 22.293577981651374, + "grad_norm": 0.21975041925907135, + "learning_rate": 0.0006, + "loss": 3.8860888481140137, + "step": 1605 + }, + { + "epoch": 22.307557885539538, + "grad_norm": 0.21474459767341614, + "learning_rate": 0.0006, + "loss": 3.9052200317382812, + "step": 1606 + }, + { + "epoch": 22.321537789427698, + "grad_norm": 0.2103329747915268, + "learning_rate": 0.0006, + "loss": 3.8516340255737305, + "step": 1607 + }, + { + "epoch": 22.335517693315857, + "grad_norm": 0.1981191635131836, + "learning_rate": 0.0006, + "loss": 3.9017434120178223, + "step": 1608 + }, + { + "epoch": 22.34949759720402, + "grad_norm": 0.20679591596126556, + "learning_rate": 0.0006, + "loss": 3.889885425567627, + "step": 1609 + }, + { + "epoch": 22.36347750109218, + "grad_norm": 0.20809867978096008, + "learning_rate": 0.0006, + "loss": 3.881868362426758, + "step": 1610 + }, + { + "epoch": 22.37745740498034, + "grad_norm": 0.21394680440425873, + "learning_rate": 0.0006, + "loss": 3.89980411529541, + "step": 1611 + }, + { + "epoch": 22.3914373088685, + "grad_norm": 0.2334284782409668, + "learning_rate": 0.0006, + "loss": 3.8672266006469727, + "step": 1612 + }, + { + "epoch": 22.405417212756664, + "grad_norm": 0.26521918177604675, + "learning_rate": 0.0006, + "loss": 3.8918118476867676, + "step": 1613 + }, + { + "epoch": 22.419397116644824, + "grad_norm": 0.2652994394302368, + "learning_rate": 0.0006, + "loss": 3.8683271408081055, + "step": 1614 + }, + { + "epoch": 22.433377020532983, + "grad_norm": 0.2568066716194153, + "learning_rate": 0.0006, + "loss": 3.892523765563965, + "step": 1615 + }, + { + "epoch": 22.447356924421143, + "grad_norm": 0.260052353143692, + "learning_rate": 0.0006, + "loss": 3.897305488586426, + "step": 1616 + }, + { + "epoch": 22.461336828309307, + "grad_norm": 0.2744271457195282, + "learning_rate": 0.0006, + "loss": 3.8962221145629883, + "step": 1617 + }, + { + "epoch": 22.475316732197467, + "grad_norm": 0.23755787312984467, + "learning_rate": 0.0006, + "loss": 3.888184070587158, + "step": 1618 + }, + { + "epoch": 22.489296636085626, + "grad_norm": 0.2515312135219574, + "learning_rate": 0.0006, + "loss": 3.8946003913879395, + "step": 1619 + }, + { + "epoch": 22.503276539973786, + "grad_norm": 0.24835044145584106, + "learning_rate": 0.0006, + "loss": 3.8711423873901367, + "step": 1620 + }, + { + "epoch": 22.51725644386195, + "grad_norm": 0.22615326941013336, + "learning_rate": 0.0006, + "loss": 3.8878846168518066, + "step": 1621 + }, + { + "epoch": 22.53123634775011, + "grad_norm": 0.20482423901557922, + "learning_rate": 0.0006, + "loss": 3.8782598972320557, + "step": 1622 + }, + { + "epoch": 22.54521625163827, + "grad_norm": 0.20436473190784454, + "learning_rate": 0.0006, + "loss": 3.9075279235839844, + "step": 1623 + }, + { + "epoch": 22.55919615552643, + "grad_norm": 0.2066277265548706, + "learning_rate": 0.0006, + "loss": 3.89908766746521, + "step": 1624 + }, + { + "epoch": 22.573176059414592, + "grad_norm": 0.20735307037830353, + "learning_rate": 0.0006, + "loss": 3.865204334259033, + "step": 1625 + }, + { + "epoch": 22.587155963302752, + "grad_norm": 0.20955748856067657, + "learning_rate": 0.0006, + "loss": 3.8835532665252686, + "step": 1626 + }, + { + "epoch": 22.601135867190912, + "grad_norm": 0.21354222297668457, + "learning_rate": 0.0006, + "loss": 3.9012551307678223, + "step": 1627 + }, + { + "epoch": 22.615115771079076, + "grad_norm": 0.2075091004371643, + "learning_rate": 0.0006, + "loss": 3.8733482360839844, + "step": 1628 + }, + { + "epoch": 22.629095674967235, + "grad_norm": 0.20207874476909637, + "learning_rate": 0.0006, + "loss": 3.9193859100341797, + "step": 1629 + }, + { + "epoch": 22.643075578855395, + "grad_norm": 0.21863923966884613, + "learning_rate": 0.0006, + "loss": 3.883518695831299, + "step": 1630 + }, + { + "epoch": 22.657055482743555, + "grad_norm": 0.22117522358894348, + "learning_rate": 0.0006, + "loss": 3.9163284301757812, + "step": 1631 + }, + { + "epoch": 22.67103538663172, + "grad_norm": 0.2078622728586197, + "learning_rate": 0.0006, + "loss": 3.868274688720703, + "step": 1632 + }, + { + "epoch": 22.68501529051988, + "grad_norm": 0.22745893895626068, + "learning_rate": 0.0006, + "loss": 3.9171340465545654, + "step": 1633 + }, + { + "epoch": 22.698995194408038, + "grad_norm": 0.2312736064195633, + "learning_rate": 0.0006, + "loss": 3.9487013816833496, + "step": 1634 + }, + { + "epoch": 22.712975098296198, + "grad_norm": 0.20491497218608856, + "learning_rate": 0.0006, + "loss": 3.91833758354187, + "step": 1635 + }, + { + "epoch": 22.72695500218436, + "grad_norm": 0.1899084597826004, + "learning_rate": 0.0006, + "loss": 3.876225709915161, + "step": 1636 + }, + { + "epoch": 22.74093490607252, + "grad_norm": 0.18581682443618774, + "learning_rate": 0.0006, + "loss": 3.8667988777160645, + "step": 1637 + }, + { + "epoch": 22.75491480996068, + "grad_norm": 0.19855599105358124, + "learning_rate": 0.0006, + "loss": 3.900789260864258, + "step": 1638 + }, + { + "epoch": 22.76889471384884, + "grad_norm": 0.19951458275318146, + "learning_rate": 0.0006, + "loss": 3.8850367069244385, + "step": 1639 + }, + { + "epoch": 22.782874617737004, + "grad_norm": 0.22802744805812836, + "learning_rate": 0.0006, + "loss": 3.9181363582611084, + "step": 1640 + }, + { + "epoch": 22.796854521625164, + "grad_norm": 0.24279919266700745, + "learning_rate": 0.0006, + "loss": 3.8843770027160645, + "step": 1641 + }, + { + "epoch": 22.810834425513324, + "grad_norm": 0.23554913699626923, + "learning_rate": 0.0006, + "loss": 3.8802413940429688, + "step": 1642 + }, + { + "epoch": 22.824814329401484, + "grad_norm": 0.22343270480632782, + "learning_rate": 0.0006, + "loss": 3.8524107933044434, + "step": 1643 + }, + { + "epoch": 22.838794233289647, + "grad_norm": 0.2185724526643753, + "learning_rate": 0.0006, + "loss": 3.9117047786712646, + "step": 1644 + }, + { + "epoch": 22.852774137177807, + "grad_norm": 0.2114841341972351, + "learning_rate": 0.0006, + "loss": 3.90325927734375, + "step": 1645 + }, + { + "epoch": 22.866754041065967, + "grad_norm": 0.21072550117969513, + "learning_rate": 0.0006, + "loss": 3.8988137245178223, + "step": 1646 + }, + { + "epoch": 22.88073394495413, + "grad_norm": 0.2250078171491623, + "learning_rate": 0.0006, + "loss": 3.9201531410217285, + "step": 1647 + }, + { + "epoch": 22.89471384884229, + "grad_norm": 0.20928071439266205, + "learning_rate": 0.0006, + "loss": 3.91666316986084, + "step": 1648 + }, + { + "epoch": 22.90869375273045, + "grad_norm": 0.24096311628818512, + "learning_rate": 0.0006, + "loss": 3.8797364234924316, + "step": 1649 + }, + { + "epoch": 22.92267365661861, + "grad_norm": 0.2591194212436676, + "learning_rate": 0.0006, + "loss": 3.883273124694824, + "step": 1650 + }, + { + "epoch": 22.936653560506773, + "grad_norm": 0.27342668175697327, + "learning_rate": 0.0006, + "loss": 3.8645026683807373, + "step": 1651 + }, + { + "epoch": 22.950633464394933, + "grad_norm": 0.2448573112487793, + "learning_rate": 0.0006, + "loss": 3.9093551635742188, + "step": 1652 + }, + { + "epoch": 22.964613368283093, + "grad_norm": 0.19899503886699677, + "learning_rate": 0.0006, + "loss": 3.9001057147979736, + "step": 1653 + }, + { + "epoch": 22.978593272171253, + "grad_norm": 0.2023746520280838, + "learning_rate": 0.0006, + "loss": 3.886474370956421, + "step": 1654 + }, + { + "epoch": 22.992573176059416, + "grad_norm": 0.19894269108772278, + "learning_rate": 0.0006, + "loss": 3.9004204273223877, + "step": 1655 + }, + { + "epoch": 23.0, + "grad_norm": 0.2401709407567978, + "learning_rate": 0.0006, + "loss": 3.8665566444396973, + "step": 1656 + }, + { + "epoch": 23.0, + "eval_loss": 4.112459659576416, + "eval_runtime": 44.8325, + "eval_samples_per_second": 54.469, + "eval_steps_per_second": 3.413, + "step": 1656 + }, + { + "epoch": 23.01397990388816, + "grad_norm": 0.22662921249866486, + "learning_rate": 0.0006, + "loss": 3.853271961212158, + "step": 1657 + }, + { + "epoch": 23.027959807776323, + "grad_norm": 0.24406856298446655, + "learning_rate": 0.0006, + "loss": 3.8691890239715576, + "step": 1658 + }, + { + "epoch": 23.041939711664483, + "grad_norm": 0.2266651839017868, + "learning_rate": 0.0006, + "loss": 3.838599681854248, + "step": 1659 + }, + { + "epoch": 23.055919615552643, + "grad_norm": 0.22303511202335358, + "learning_rate": 0.0006, + "loss": 3.8678267002105713, + "step": 1660 + }, + { + "epoch": 23.069899519440803, + "grad_norm": 0.2272164225578308, + "learning_rate": 0.0006, + "loss": 3.9045681953430176, + "step": 1661 + }, + { + "epoch": 23.083879423328966, + "grad_norm": 0.25004875659942627, + "learning_rate": 0.0006, + "loss": 3.856503963470459, + "step": 1662 + }, + { + "epoch": 23.097859327217126, + "grad_norm": 0.26016247272491455, + "learning_rate": 0.0006, + "loss": 3.878587007522583, + "step": 1663 + }, + { + "epoch": 23.111839231105286, + "grad_norm": 0.28539901971817017, + "learning_rate": 0.0006, + "loss": 3.864248514175415, + "step": 1664 + }, + { + "epoch": 23.125819134993446, + "grad_norm": 0.27504822611808777, + "learning_rate": 0.0006, + "loss": 3.821448802947998, + "step": 1665 + }, + { + "epoch": 23.13979903888161, + "grad_norm": 0.238910973072052, + "learning_rate": 0.0006, + "loss": 3.8635847568511963, + "step": 1666 + }, + { + "epoch": 23.15377894276977, + "grad_norm": 0.24179652333259583, + "learning_rate": 0.0006, + "loss": 3.8339638710021973, + "step": 1667 + }, + { + "epoch": 23.16775884665793, + "grad_norm": 0.2199544757604599, + "learning_rate": 0.0006, + "loss": 3.868396759033203, + "step": 1668 + }, + { + "epoch": 23.18173875054609, + "grad_norm": 0.1965002566576004, + "learning_rate": 0.0006, + "loss": 3.8761439323425293, + "step": 1669 + }, + { + "epoch": 23.195718654434252, + "grad_norm": 0.20426614582538605, + "learning_rate": 0.0006, + "loss": 3.822899580001831, + "step": 1670 + }, + { + "epoch": 23.209698558322412, + "grad_norm": 0.2197263389825821, + "learning_rate": 0.0006, + "loss": 3.887728452682495, + "step": 1671 + }, + { + "epoch": 23.22367846221057, + "grad_norm": 0.22844573855400085, + "learning_rate": 0.0006, + "loss": 3.8550517559051514, + "step": 1672 + }, + { + "epoch": 23.23765836609873, + "grad_norm": 0.2347746044397354, + "learning_rate": 0.0006, + "loss": 3.903310537338257, + "step": 1673 + }, + { + "epoch": 23.251638269986895, + "grad_norm": 0.24167625606060028, + "learning_rate": 0.0006, + "loss": 3.8397774696350098, + "step": 1674 + }, + { + "epoch": 23.265618173875055, + "grad_norm": 0.2691650688648224, + "learning_rate": 0.0006, + "loss": 3.853254795074463, + "step": 1675 + }, + { + "epoch": 23.279598077763215, + "grad_norm": 0.29421621561050415, + "learning_rate": 0.0006, + "loss": 3.86065411567688, + "step": 1676 + }, + { + "epoch": 23.293577981651374, + "grad_norm": 0.31074345111846924, + "learning_rate": 0.0006, + "loss": 3.8716742992401123, + "step": 1677 + }, + { + "epoch": 23.307557885539538, + "grad_norm": 0.3044569194316864, + "learning_rate": 0.0006, + "loss": 3.8738951683044434, + "step": 1678 + }, + { + "epoch": 23.321537789427698, + "grad_norm": 0.30496764183044434, + "learning_rate": 0.0006, + "loss": 3.884446620941162, + "step": 1679 + }, + { + "epoch": 23.335517693315857, + "grad_norm": 0.31122756004333496, + "learning_rate": 0.0006, + "loss": 3.878495693206787, + "step": 1680 + }, + { + "epoch": 23.34949759720402, + "grad_norm": 0.32268181443214417, + "learning_rate": 0.0006, + "loss": 3.8793649673461914, + "step": 1681 + }, + { + "epoch": 23.36347750109218, + "grad_norm": 0.3297140598297119, + "learning_rate": 0.0006, + "loss": 3.87484073638916, + "step": 1682 + }, + { + "epoch": 23.37745740498034, + "grad_norm": 0.26007479429244995, + "learning_rate": 0.0006, + "loss": 3.8510947227478027, + "step": 1683 + }, + { + "epoch": 23.3914373088685, + "grad_norm": 0.2627335786819458, + "learning_rate": 0.0006, + "loss": 3.8783209323883057, + "step": 1684 + }, + { + "epoch": 23.405417212756664, + "grad_norm": 0.256452739238739, + "learning_rate": 0.0006, + "loss": 3.8594281673431396, + "step": 1685 + }, + { + "epoch": 23.419397116644824, + "grad_norm": 0.23892226815223694, + "learning_rate": 0.0006, + "loss": 3.898951292037964, + "step": 1686 + }, + { + "epoch": 23.433377020532983, + "grad_norm": 0.21625587344169617, + "learning_rate": 0.0006, + "loss": 3.8679966926574707, + "step": 1687 + }, + { + "epoch": 23.447356924421143, + "grad_norm": 0.21924619376659393, + "learning_rate": 0.0006, + "loss": 3.8774075508117676, + "step": 1688 + }, + { + "epoch": 23.461336828309307, + "grad_norm": 0.21500127017498016, + "learning_rate": 0.0006, + "loss": 3.870619297027588, + "step": 1689 + }, + { + "epoch": 23.475316732197467, + "grad_norm": 0.22580556571483612, + "learning_rate": 0.0006, + "loss": 3.887722969055176, + "step": 1690 + }, + { + "epoch": 23.489296636085626, + "grad_norm": 0.2500104308128357, + "learning_rate": 0.0006, + "loss": 3.88789963722229, + "step": 1691 + }, + { + "epoch": 23.503276539973786, + "grad_norm": 0.22462762892246246, + "learning_rate": 0.0006, + "loss": 3.863997459411621, + "step": 1692 + }, + { + "epoch": 23.51725644386195, + "grad_norm": 0.21427781879901886, + "learning_rate": 0.0006, + "loss": 3.8827033042907715, + "step": 1693 + }, + { + "epoch": 23.53123634775011, + "grad_norm": 0.22278577089309692, + "learning_rate": 0.0006, + "loss": 3.8659563064575195, + "step": 1694 + }, + { + "epoch": 23.54521625163827, + "grad_norm": 0.22801144421100616, + "learning_rate": 0.0006, + "loss": 3.9031362533569336, + "step": 1695 + }, + { + "epoch": 23.55919615552643, + "grad_norm": 0.25071898102760315, + "learning_rate": 0.0006, + "loss": 3.887746810913086, + "step": 1696 + }, + { + "epoch": 23.573176059414592, + "grad_norm": 0.2564085125923157, + "learning_rate": 0.0006, + "loss": 3.8918356895446777, + "step": 1697 + }, + { + "epoch": 23.587155963302752, + "grad_norm": 0.24603120982646942, + "learning_rate": 0.0006, + "loss": 3.850416421890259, + "step": 1698 + }, + { + "epoch": 23.601135867190912, + "grad_norm": 0.20539002120494843, + "learning_rate": 0.0006, + "loss": 3.862060070037842, + "step": 1699 + }, + { + "epoch": 23.615115771079076, + "grad_norm": 0.2022249400615692, + "learning_rate": 0.0006, + "loss": 3.899008274078369, + "step": 1700 + }, + { + "epoch": 23.629095674967235, + "grad_norm": 0.2435392290353775, + "learning_rate": 0.0006, + "loss": 3.844388961791992, + "step": 1701 + }, + { + "epoch": 23.643075578855395, + "grad_norm": 0.21146756410598755, + "learning_rate": 0.0006, + "loss": 3.8972439765930176, + "step": 1702 + }, + { + "epoch": 23.657055482743555, + "grad_norm": 0.2025400996208191, + "learning_rate": 0.0006, + "loss": 3.865253448486328, + "step": 1703 + }, + { + "epoch": 23.67103538663172, + "grad_norm": 0.21129970252513885, + "learning_rate": 0.0006, + "loss": 3.8768205642700195, + "step": 1704 + }, + { + "epoch": 23.68501529051988, + "grad_norm": 0.22982284426689148, + "learning_rate": 0.0006, + "loss": 3.8792667388916016, + "step": 1705 + }, + { + "epoch": 23.698995194408038, + "grad_norm": 0.23013733327388763, + "learning_rate": 0.0006, + "loss": 3.880897045135498, + "step": 1706 + }, + { + "epoch": 23.712975098296198, + "grad_norm": 0.2277672290802002, + "learning_rate": 0.0006, + "loss": 3.8738410472869873, + "step": 1707 + }, + { + "epoch": 23.72695500218436, + "grad_norm": 0.2343369573354721, + "learning_rate": 0.0006, + "loss": 3.8587026596069336, + "step": 1708 + }, + { + "epoch": 23.74093490607252, + "grad_norm": 0.23159530758857727, + "learning_rate": 0.0006, + "loss": 3.856306552886963, + "step": 1709 + }, + { + "epoch": 23.75491480996068, + "grad_norm": 0.19541035592556, + "learning_rate": 0.0006, + "loss": 3.8294754028320312, + "step": 1710 + }, + { + "epoch": 23.76889471384884, + "grad_norm": 0.22999322414398193, + "learning_rate": 0.0006, + "loss": 3.882676124572754, + "step": 1711 + }, + { + "epoch": 23.782874617737004, + "grad_norm": 0.23442843556404114, + "learning_rate": 0.0006, + "loss": 3.8887529373168945, + "step": 1712 + }, + { + "epoch": 23.796854521625164, + "grad_norm": 0.22914239764213562, + "learning_rate": 0.0006, + "loss": 3.867673635482788, + "step": 1713 + }, + { + "epoch": 23.810834425513324, + "grad_norm": 0.20683827996253967, + "learning_rate": 0.0006, + "loss": 3.8999581336975098, + "step": 1714 + }, + { + "epoch": 23.824814329401484, + "grad_norm": 0.19281277060508728, + "learning_rate": 0.0006, + "loss": 3.8997726440429688, + "step": 1715 + }, + { + "epoch": 23.838794233289647, + "grad_norm": 0.20058563351631165, + "learning_rate": 0.0006, + "loss": 3.8583860397338867, + "step": 1716 + }, + { + "epoch": 23.852774137177807, + "grad_norm": 0.19856606423854828, + "learning_rate": 0.0006, + "loss": 3.88948392868042, + "step": 1717 + }, + { + "epoch": 23.866754041065967, + "grad_norm": 0.2099323868751526, + "learning_rate": 0.0006, + "loss": 3.878458261489868, + "step": 1718 + }, + { + "epoch": 23.88073394495413, + "grad_norm": 0.22945016622543335, + "learning_rate": 0.0006, + "loss": 3.84116268157959, + "step": 1719 + }, + { + "epoch": 23.89471384884229, + "grad_norm": 0.22646087408065796, + "learning_rate": 0.0006, + "loss": 3.9006617069244385, + "step": 1720 + }, + { + "epoch": 23.90869375273045, + "grad_norm": 0.20282860100269318, + "learning_rate": 0.0006, + "loss": 3.8781144618988037, + "step": 1721 + }, + { + "epoch": 23.92267365661861, + "grad_norm": 0.1918555349111557, + "learning_rate": 0.0006, + "loss": 3.8560891151428223, + "step": 1722 + }, + { + "epoch": 23.936653560506773, + "grad_norm": 0.19286513328552246, + "learning_rate": 0.0006, + "loss": 3.873220920562744, + "step": 1723 + }, + { + "epoch": 23.950633464394933, + "grad_norm": 0.21071338653564453, + "learning_rate": 0.0006, + "loss": 3.9147067070007324, + "step": 1724 + }, + { + "epoch": 23.964613368283093, + "grad_norm": 0.20956715941429138, + "learning_rate": 0.0006, + "loss": 3.8762729167938232, + "step": 1725 + }, + { + "epoch": 23.978593272171253, + "grad_norm": 0.23053105175495148, + "learning_rate": 0.0006, + "loss": 3.873781681060791, + "step": 1726 + }, + { + "epoch": 23.992573176059416, + "grad_norm": 0.2719029486179352, + "learning_rate": 0.0006, + "loss": 3.862342357635498, + "step": 1727 + }, + { + "epoch": 24.0, + "grad_norm": 0.2933610677719116, + "learning_rate": 0.0006, + "loss": 3.8657689094543457, + "step": 1728 + }, + { + "epoch": 24.0, + "eval_loss": 4.0959153175354, + "eval_runtime": 44.3631, + "eval_samples_per_second": 55.046, + "eval_steps_per_second": 3.449, + "step": 1728 + }, + { + "epoch": 24.01397990388816, + "grad_norm": 0.24905365705490112, + "learning_rate": 0.0006, + "loss": 3.838136911392212, + "step": 1729 + }, + { + "epoch": 24.027959807776323, + "grad_norm": 0.25948020815849304, + "learning_rate": 0.0006, + "loss": 3.8581268787384033, + "step": 1730 + }, + { + "epoch": 24.041939711664483, + "grad_norm": 0.24965140223503113, + "learning_rate": 0.0006, + "loss": 3.8628978729248047, + "step": 1731 + }, + { + "epoch": 24.055919615552643, + "grad_norm": 0.23428823053836823, + "learning_rate": 0.0006, + "loss": 3.8188819885253906, + "step": 1732 + }, + { + "epoch": 24.069899519440803, + "grad_norm": 0.22191211581230164, + "learning_rate": 0.0006, + "loss": 3.8616039752960205, + "step": 1733 + }, + { + "epoch": 24.083879423328966, + "grad_norm": 0.20257535576820374, + "learning_rate": 0.0006, + "loss": 3.8632802963256836, + "step": 1734 + }, + { + "epoch": 24.097859327217126, + "grad_norm": 0.20385196805000305, + "learning_rate": 0.0006, + "loss": 3.885817050933838, + "step": 1735 + }, + { + "epoch": 24.111839231105286, + "grad_norm": 0.19921693205833435, + "learning_rate": 0.0006, + "loss": 3.838515043258667, + "step": 1736 + }, + { + "epoch": 24.125819134993446, + "grad_norm": 0.20221556723117828, + "learning_rate": 0.0006, + "loss": 3.8585309982299805, + "step": 1737 + }, + { + "epoch": 24.13979903888161, + "grad_norm": 0.20124691724777222, + "learning_rate": 0.0006, + "loss": 3.81656551361084, + "step": 1738 + }, + { + "epoch": 24.15377894276977, + "grad_norm": 0.1810830533504486, + "learning_rate": 0.0006, + "loss": 3.841783046722412, + "step": 1739 + }, + { + "epoch": 24.16775884665793, + "grad_norm": 0.18414196372032166, + "learning_rate": 0.0006, + "loss": 3.8614797592163086, + "step": 1740 + }, + { + "epoch": 24.18173875054609, + "grad_norm": 0.18930725753307343, + "learning_rate": 0.0006, + "loss": 3.8382534980773926, + "step": 1741 + }, + { + "epoch": 24.195718654434252, + "grad_norm": 0.19658128917217255, + "learning_rate": 0.0006, + "loss": 3.881742477416992, + "step": 1742 + }, + { + "epoch": 24.209698558322412, + "grad_norm": 0.20175589621067047, + "learning_rate": 0.0006, + "loss": 3.8760581016540527, + "step": 1743 + }, + { + "epoch": 24.22367846221057, + "grad_norm": 0.19416265189647675, + "learning_rate": 0.0006, + "loss": 3.8373687267303467, + "step": 1744 + }, + { + "epoch": 24.23765836609873, + "grad_norm": 0.20206521451473236, + "learning_rate": 0.0006, + "loss": 3.8322830200195312, + "step": 1745 + }, + { + "epoch": 24.251638269986895, + "grad_norm": 0.21797429025173187, + "learning_rate": 0.0006, + "loss": 3.849905490875244, + "step": 1746 + }, + { + "epoch": 24.265618173875055, + "grad_norm": 0.21295784413814545, + "learning_rate": 0.0006, + "loss": 3.847714900970459, + "step": 1747 + }, + { + "epoch": 24.279598077763215, + "grad_norm": 0.22023876011371613, + "learning_rate": 0.0006, + "loss": 3.8221592903137207, + "step": 1748 + }, + { + "epoch": 24.293577981651374, + "grad_norm": 0.2125576138496399, + "learning_rate": 0.0006, + "loss": 3.8070976734161377, + "step": 1749 + }, + { + "epoch": 24.307557885539538, + "grad_norm": 0.18673811852931976, + "learning_rate": 0.0006, + "loss": 3.866878032684326, + "step": 1750 + }, + { + "epoch": 24.321537789427698, + "grad_norm": 0.1972627341747284, + "learning_rate": 0.0006, + "loss": 3.846404552459717, + "step": 1751 + }, + { + "epoch": 24.335517693315857, + "grad_norm": 0.21846632659435272, + "learning_rate": 0.0006, + "loss": 3.8528640270233154, + "step": 1752 + }, + { + "epoch": 24.34949759720402, + "grad_norm": 0.22234080731868744, + "learning_rate": 0.0006, + "loss": 3.8268141746520996, + "step": 1753 + }, + { + "epoch": 24.36347750109218, + "grad_norm": 0.23002761602401733, + "learning_rate": 0.0006, + "loss": 3.832444667816162, + "step": 1754 + }, + { + "epoch": 24.37745740498034, + "grad_norm": 0.22526559233665466, + "learning_rate": 0.0006, + "loss": 3.864406108856201, + "step": 1755 + }, + { + "epoch": 24.3914373088685, + "grad_norm": 0.2290039211511612, + "learning_rate": 0.0006, + "loss": 3.8449103832244873, + "step": 1756 + }, + { + "epoch": 24.405417212756664, + "grad_norm": 0.23145617544651031, + "learning_rate": 0.0006, + "loss": 3.8183751106262207, + "step": 1757 + }, + { + "epoch": 24.419397116644824, + "grad_norm": 0.24287554621696472, + "learning_rate": 0.0006, + "loss": 3.809481382369995, + "step": 1758 + }, + { + "epoch": 24.433377020532983, + "grad_norm": 0.2672404646873474, + "learning_rate": 0.0006, + "loss": 3.877800464630127, + "step": 1759 + }, + { + "epoch": 24.447356924421143, + "grad_norm": 0.26292186975479126, + "learning_rate": 0.0006, + "loss": 3.8329367637634277, + "step": 1760 + }, + { + "epoch": 24.461336828309307, + "grad_norm": 0.26235947012901306, + "learning_rate": 0.0006, + "loss": 3.8414158821105957, + "step": 1761 + }, + { + "epoch": 24.475316732197467, + "grad_norm": 0.2638382613658905, + "learning_rate": 0.0006, + "loss": 3.849188804626465, + "step": 1762 + }, + { + "epoch": 24.489296636085626, + "grad_norm": 0.2564602196216583, + "learning_rate": 0.0006, + "loss": 3.865501880645752, + "step": 1763 + }, + { + "epoch": 24.503276539973786, + "grad_norm": 0.21352271735668182, + "learning_rate": 0.0006, + "loss": 3.87910795211792, + "step": 1764 + }, + { + "epoch": 24.51725644386195, + "grad_norm": 0.2470584511756897, + "learning_rate": 0.0006, + "loss": 3.858750343322754, + "step": 1765 + }, + { + "epoch": 24.53123634775011, + "grad_norm": 0.24907536804676056, + "learning_rate": 0.0006, + "loss": 3.8532559871673584, + "step": 1766 + }, + { + "epoch": 24.54521625163827, + "grad_norm": 0.2426205575466156, + "learning_rate": 0.0006, + "loss": 3.8659827709198, + "step": 1767 + }, + { + "epoch": 24.55919615552643, + "grad_norm": 0.23481151461601257, + "learning_rate": 0.0006, + "loss": 3.863948345184326, + "step": 1768 + }, + { + "epoch": 24.573176059414592, + "grad_norm": 0.22717779874801636, + "learning_rate": 0.0006, + "loss": 3.848527193069458, + "step": 1769 + }, + { + "epoch": 24.587155963302752, + "grad_norm": 0.2267129123210907, + "learning_rate": 0.0006, + "loss": 3.8600735664367676, + "step": 1770 + }, + { + "epoch": 24.601135867190912, + "grad_norm": 0.24967710673809052, + "learning_rate": 0.0006, + "loss": 3.84291934967041, + "step": 1771 + }, + { + "epoch": 24.615115771079076, + "grad_norm": 0.25308957695961, + "learning_rate": 0.0006, + "loss": 3.846181631088257, + "step": 1772 + }, + { + "epoch": 24.629095674967235, + "grad_norm": 0.2689298391342163, + "learning_rate": 0.0006, + "loss": 3.8572893142700195, + "step": 1773 + }, + { + "epoch": 24.643075578855395, + "grad_norm": 0.26458555459976196, + "learning_rate": 0.0006, + "loss": 3.8583621978759766, + "step": 1774 + }, + { + "epoch": 24.657055482743555, + "grad_norm": 0.24416811764240265, + "learning_rate": 0.0006, + "loss": 3.8648223876953125, + "step": 1775 + }, + { + "epoch": 24.67103538663172, + "grad_norm": 0.22218526899814606, + "learning_rate": 0.0006, + "loss": 3.839395523071289, + "step": 1776 + }, + { + "epoch": 24.68501529051988, + "grad_norm": 0.2147492915391922, + "learning_rate": 0.0006, + "loss": 3.875734567642212, + "step": 1777 + }, + { + "epoch": 24.698995194408038, + "grad_norm": 0.2346794754266739, + "learning_rate": 0.0006, + "loss": 3.854768991470337, + "step": 1778 + }, + { + "epoch": 24.712975098296198, + "grad_norm": 0.21406520903110504, + "learning_rate": 0.0006, + "loss": 3.8269104957580566, + "step": 1779 + }, + { + "epoch": 24.72695500218436, + "grad_norm": 0.20716224610805511, + "learning_rate": 0.0006, + "loss": 3.8245768547058105, + "step": 1780 + }, + { + "epoch": 24.74093490607252, + "grad_norm": 0.21445901691913605, + "learning_rate": 0.0006, + "loss": 3.8877978324890137, + "step": 1781 + }, + { + "epoch": 24.75491480996068, + "grad_norm": 0.21964985132217407, + "learning_rate": 0.0006, + "loss": 3.8602452278137207, + "step": 1782 + }, + { + "epoch": 24.76889471384884, + "grad_norm": 0.209807351231575, + "learning_rate": 0.0006, + "loss": 3.853428602218628, + "step": 1783 + }, + { + "epoch": 24.782874617737004, + "grad_norm": 0.19564911723136902, + "learning_rate": 0.0006, + "loss": 3.832275867462158, + "step": 1784 + }, + { + "epoch": 24.796854521625164, + "grad_norm": 0.21394333243370056, + "learning_rate": 0.0006, + "loss": 3.8543171882629395, + "step": 1785 + }, + { + "epoch": 24.810834425513324, + "grad_norm": 0.23156948387622833, + "learning_rate": 0.0006, + "loss": 3.8539412021636963, + "step": 1786 + }, + { + "epoch": 24.824814329401484, + "grad_norm": 0.2378678321838379, + "learning_rate": 0.0006, + "loss": 3.8409833908081055, + "step": 1787 + }, + { + "epoch": 24.838794233289647, + "grad_norm": 0.23816189169883728, + "learning_rate": 0.0006, + "loss": 3.855379581451416, + "step": 1788 + }, + { + "epoch": 24.852774137177807, + "grad_norm": 0.23109886050224304, + "learning_rate": 0.0006, + "loss": 3.8689517974853516, + "step": 1789 + }, + { + "epoch": 24.866754041065967, + "grad_norm": 0.2042883038520813, + "learning_rate": 0.0006, + "loss": 3.8730404376983643, + "step": 1790 + }, + { + "epoch": 24.88073394495413, + "grad_norm": 0.2039479911327362, + "learning_rate": 0.0006, + "loss": 3.8474984169006348, + "step": 1791 + }, + { + "epoch": 24.89471384884229, + "grad_norm": 0.213027223944664, + "learning_rate": 0.0006, + "loss": 3.8539695739746094, + "step": 1792 + }, + { + "epoch": 24.90869375273045, + "grad_norm": 0.2280654013156891, + "learning_rate": 0.0006, + "loss": 3.8633079528808594, + "step": 1793 + }, + { + "epoch": 24.92267365661861, + "grad_norm": 0.20864921808242798, + "learning_rate": 0.0006, + "loss": 3.8110368251800537, + "step": 1794 + }, + { + "epoch": 24.936653560506773, + "grad_norm": 0.23002111911773682, + "learning_rate": 0.0006, + "loss": 3.8334741592407227, + "step": 1795 + }, + { + "epoch": 24.950633464394933, + "grad_norm": 0.232331782579422, + "learning_rate": 0.0006, + "loss": 3.871887683868408, + "step": 1796 + }, + { + "epoch": 24.964613368283093, + "grad_norm": 0.24141235649585724, + "learning_rate": 0.0006, + "loss": 3.8614959716796875, + "step": 1797 + }, + { + "epoch": 24.978593272171253, + "grad_norm": 0.2545177638530731, + "learning_rate": 0.0006, + "loss": 3.8563568592071533, + "step": 1798 + }, + { + "epoch": 24.992573176059416, + "grad_norm": 0.25186386704444885, + "learning_rate": 0.0006, + "loss": 3.882166862487793, + "step": 1799 + }, + { + "epoch": 25.0, + "grad_norm": 0.260195791721344, + "learning_rate": 0.0006, + "loss": 3.884554862976074, + "step": 1800 + }, + { + "epoch": 25.0, + "eval_loss": 4.08809757232666, + "eval_runtime": 44.7947, + "eval_samples_per_second": 54.515, + "eval_steps_per_second": 3.416, + "step": 1800 + }, + { + "epoch": 25.01397990388816, + "grad_norm": 0.25396403670310974, + "learning_rate": 0.0006, + "loss": 3.8217287063598633, + "step": 1801 + }, + { + "epoch": 25.027959807776323, + "grad_norm": 0.2773195207118988, + "learning_rate": 0.0006, + "loss": 3.809542417526245, + "step": 1802 + }, + { + "epoch": 25.041939711664483, + "grad_norm": 0.3073263168334961, + "learning_rate": 0.0006, + "loss": 3.825706958770752, + "step": 1803 + }, + { + "epoch": 25.055919615552643, + "grad_norm": 0.30885398387908936, + "learning_rate": 0.0006, + "loss": 3.8081188201904297, + "step": 1804 + }, + { + "epoch": 25.069899519440803, + "grad_norm": 0.27356019616127014, + "learning_rate": 0.0006, + "loss": 3.8538241386413574, + "step": 1805 + }, + { + "epoch": 25.083879423328966, + "grad_norm": 0.22830164432525635, + "learning_rate": 0.0006, + "loss": 3.8246965408325195, + "step": 1806 + }, + { + "epoch": 25.097859327217126, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.8552842140197754, + "step": 1807 + }, + { + "epoch": 25.111839231105286, + "grad_norm": 0.21718722581863403, + "learning_rate": 0.0006, + "loss": 3.8489418029785156, + "step": 1808 + }, + { + "epoch": 25.125819134993446, + "grad_norm": 0.2480861395597458, + "learning_rate": 0.0006, + "loss": 3.821455955505371, + "step": 1809 + }, + { + "epoch": 25.13979903888161, + "grad_norm": 0.2796635627746582, + "learning_rate": 0.0006, + "loss": 3.8202435970306396, + "step": 1810 + }, + { + "epoch": 25.15377894276977, + "grad_norm": 0.2829958200454712, + "learning_rate": 0.0006, + "loss": 3.8293306827545166, + "step": 1811 + }, + { + "epoch": 25.16775884665793, + "grad_norm": 0.2510125935077667, + "learning_rate": 0.0006, + "loss": 3.8342957496643066, + "step": 1812 + }, + { + "epoch": 25.18173875054609, + "grad_norm": 0.22923722863197327, + "learning_rate": 0.0006, + "loss": 3.8448352813720703, + "step": 1813 + }, + { + "epoch": 25.195718654434252, + "grad_norm": 0.21439228951931, + "learning_rate": 0.0006, + "loss": 3.8343517780303955, + "step": 1814 + }, + { + "epoch": 25.209698558322412, + "grad_norm": 0.1965373307466507, + "learning_rate": 0.0006, + "loss": 3.8163528442382812, + "step": 1815 + }, + { + "epoch": 25.22367846221057, + "grad_norm": 0.20121058821678162, + "learning_rate": 0.0006, + "loss": 3.8007280826568604, + "step": 1816 + }, + { + "epoch": 25.23765836609873, + "grad_norm": 0.21383272111415863, + "learning_rate": 0.0006, + "loss": 3.8200385570526123, + "step": 1817 + }, + { + "epoch": 25.251638269986895, + "grad_norm": 0.2066601663827896, + "learning_rate": 0.0006, + "loss": 3.8333921432495117, + "step": 1818 + }, + { + "epoch": 25.265618173875055, + "grad_norm": 0.2104874551296234, + "learning_rate": 0.0006, + "loss": 3.838012218475342, + "step": 1819 + }, + { + "epoch": 25.279598077763215, + "grad_norm": 0.19733119010925293, + "learning_rate": 0.0006, + "loss": 3.835139274597168, + "step": 1820 + }, + { + "epoch": 25.293577981651374, + "grad_norm": 0.2119498997926712, + "learning_rate": 0.0006, + "loss": 3.8099722862243652, + "step": 1821 + }, + { + "epoch": 25.307557885539538, + "grad_norm": 0.21863529086112976, + "learning_rate": 0.0006, + "loss": 3.7801573276519775, + "step": 1822 + }, + { + "epoch": 25.321537789427698, + "grad_norm": 0.2113322764635086, + "learning_rate": 0.0006, + "loss": 3.809903621673584, + "step": 1823 + }, + { + "epoch": 25.335517693315857, + "grad_norm": 0.21594023704528809, + "learning_rate": 0.0006, + "loss": 3.8485071659088135, + "step": 1824 + }, + { + "epoch": 25.34949759720402, + "grad_norm": 0.21475964784622192, + "learning_rate": 0.0006, + "loss": 3.7894768714904785, + "step": 1825 + }, + { + "epoch": 25.36347750109218, + "grad_norm": 0.21174900233745575, + "learning_rate": 0.0006, + "loss": 3.821711540222168, + "step": 1826 + }, + { + "epoch": 25.37745740498034, + "grad_norm": 0.2065584659576416, + "learning_rate": 0.0006, + "loss": 3.8439841270446777, + "step": 1827 + }, + { + "epoch": 25.3914373088685, + "grad_norm": 0.19157007336616516, + "learning_rate": 0.0006, + "loss": 3.864245891571045, + "step": 1828 + }, + { + "epoch": 25.405417212756664, + "grad_norm": 0.19983816146850586, + "learning_rate": 0.0006, + "loss": 3.8317415714263916, + "step": 1829 + }, + { + "epoch": 25.419397116644824, + "grad_norm": 0.20506152510643005, + "learning_rate": 0.0006, + "loss": 3.8009896278381348, + "step": 1830 + }, + { + "epoch": 25.433377020532983, + "grad_norm": 0.19056960940361023, + "learning_rate": 0.0006, + "loss": 3.8383498191833496, + "step": 1831 + }, + { + "epoch": 25.447356924421143, + "grad_norm": 0.19262190163135529, + "learning_rate": 0.0006, + "loss": 3.838902235031128, + "step": 1832 + }, + { + "epoch": 25.461336828309307, + "grad_norm": 0.19859355688095093, + "learning_rate": 0.0006, + "loss": 3.82452392578125, + "step": 1833 + }, + { + "epoch": 25.475316732197467, + "grad_norm": 0.2144225388765335, + "learning_rate": 0.0006, + "loss": 3.8110032081604004, + "step": 1834 + }, + { + "epoch": 25.489296636085626, + "grad_norm": 0.20566298067569733, + "learning_rate": 0.0006, + "loss": 3.8662471771240234, + "step": 1835 + }, + { + "epoch": 25.503276539973786, + "grad_norm": 0.2071852684020996, + "learning_rate": 0.0006, + "loss": 3.821134090423584, + "step": 1836 + }, + { + "epoch": 25.51725644386195, + "grad_norm": 0.2095036506652832, + "learning_rate": 0.0006, + "loss": 3.824092388153076, + "step": 1837 + }, + { + "epoch": 25.53123634775011, + "grad_norm": 0.20136208832263947, + "learning_rate": 0.0006, + "loss": 3.8669862747192383, + "step": 1838 + }, + { + "epoch": 25.54521625163827, + "grad_norm": 0.1983811855316162, + "learning_rate": 0.0006, + "loss": 3.8120107650756836, + "step": 1839 + }, + { + "epoch": 25.55919615552643, + "grad_norm": 0.22859714925289154, + "learning_rate": 0.0006, + "loss": 3.8519299030303955, + "step": 1840 + }, + { + "epoch": 25.573176059414592, + "grad_norm": 0.23672667145729065, + "learning_rate": 0.0006, + "loss": 3.8245458602905273, + "step": 1841 + }, + { + "epoch": 25.587155963302752, + "grad_norm": 0.22698380053043365, + "learning_rate": 0.0006, + "loss": 3.8406805992126465, + "step": 1842 + }, + { + "epoch": 25.601135867190912, + "grad_norm": 0.25684037804603577, + "learning_rate": 0.0006, + "loss": 3.8584351539611816, + "step": 1843 + }, + { + "epoch": 25.615115771079076, + "grad_norm": 0.28180673718452454, + "learning_rate": 0.0006, + "loss": 3.8085098266601562, + "step": 1844 + }, + { + "epoch": 25.629095674967235, + "grad_norm": 0.2814631462097168, + "learning_rate": 0.0006, + "loss": 3.845083236694336, + "step": 1845 + }, + { + "epoch": 25.643075578855395, + "grad_norm": 0.23630981147289276, + "learning_rate": 0.0006, + "loss": 3.847749710083008, + "step": 1846 + }, + { + "epoch": 25.657055482743555, + "grad_norm": 0.22463662922382355, + "learning_rate": 0.0006, + "loss": 3.8172082901000977, + "step": 1847 + }, + { + "epoch": 25.67103538663172, + "grad_norm": 0.26551681756973267, + "learning_rate": 0.0006, + "loss": 3.8205654621124268, + "step": 1848 + }, + { + "epoch": 25.68501529051988, + "grad_norm": 0.27824243903160095, + "learning_rate": 0.0006, + "loss": 3.846076011657715, + "step": 1849 + }, + { + "epoch": 25.698995194408038, + "grad_norm": 0.266998291015625, + "learning_rate": 0.0006, + "loss": 3.8543574810028076, + "step": 1850 + }, + { + "epoch": 25.712975098296198, + "grad_norm": 0.22980351746082306, + "learning_rate": 0.0006, + "loss": 3.855511426925659, + "step": 1851 + }, + { + "epoch": 25.72695500218436, + "grad_norm": 0.23482872545719147, + "learning_rate": 0.0006, + "loss": 3.8687663078308105, + "step": 1852 + }, + { + "epoch": 25.74093490607252, + "grad_norm": 0.21119585633277893, + "learning_rate": 0.0006, + "loss": 3.8147101402282715, + "step": 1853 + }, + { + "epoch": 25.75491480996068, + "grad_norm": 0.21200446784496307, + "learning_rate": 0.0006, + "loss": 3.858473777770996, + "step": 1854 + }, + { + "epoch": 25.76889471384884, + "grad_norm": 0.20497842133045197, + "learning_rate": 0.0006, + "loss": 3.8545501232147217, + "step": 1855 + }, + { + "epoch": 25.782874617737004, + "grad_norm": 0.19328081607818604, + "learning_rate": 0.0006, + "loss": 3.7941341400146484, + "step": 1856 + }, + { + "epoch": 25.796854521625164, + "grad_norm": 0.2191578894853592, + "learning_rate": 0.0006, + "loss": 3.8408665657043457, + "step": 1857 + }, + { + "epoch": 25.810834425513324, + "grad_norm": 0.2548826038837433, + "learning_rate": 0.0006, + "loss": 3.854130744934082, + "step": 1858 + }, + { + "epoch": 25.824814329401484, + "grad_norm": 0.2290351390838623, + "learning_rate": 0.0006, + "loss": 3.8680176734924316, + "step": 1859 + }, + { + "epoch": 25.838794233289647, + "grad_norm": 0.20760944485664368, + "learning_rate": 0.0006, + "loss": 3.83731746673584, + "step": 1860 + }, + { + "epoch": 25.852774137177807, + "grad_norm": 0.19587582349777222, + "learning_rate": 0.0006, + "loss": 3.8173444271087646, + "step": 1861 + }, + { + "epoch": 25.866754041065967, + "grad_norm": 0.20762693881988525, + "learning_rate": 0.0006, + "loss": 3.8479790687561035, + "step": 1862 + }, + { + "epoch": 25.88073394495413, + "grad_norm": 0.20633186399936676, + "learning_rate": 0.0006, + "loss": 3.852285385131836, + "step": 1863 + }, + { + "epoch": 25.89471384884229, + "grad_norm": 0.21484960615634918, + "learning_rate": 0.0006, + "loss": 3.832592725753784, + "step": 1864 + }, + { + "epoch": 25.90869375273045, + "grad_norm": 0.19569595158100128, + "learning_rate": 0.0006, + "loss": 3.838071584701538, + "step": 1865 + }, + { + "epoch": 25.92267365661861, + "grad_norm": 0.19532904028892517, + "learning_rate": 0.0006, + "loss": 3.854252815246582, + "step": 1866 + }, + { + "epoch": 25.936653560506773, + "grad_norm": 0.1909649819135666, + "learning_rate": 0.0006, + "loss": 3.8444578647613525, + "step": 1867 + }, + { + "epoch": 25.950633464394933, + "grad_norm": 0.17476283013820648, + "learning_rate": 0.0006, + "loss": 3.836519241333008, + "step": 1868 + }, + { + "epoch": 25.964613368283093, + "grad_norm": 0.1895206719636917, + "learning_rate": 0.0006, + "loss": 3.8282582759857178, + "step": 1869 + }, + { + "epoch": 25.978593272171253, + "grad_norm": 0.20038437843322754, + "learning_rate": 0.0006, + "loss": 3.80542254447937, + "step": 1870 + }, + { + "epoch": 25.992573176059416, + "grad_norm": 0.20728608965873718, + "learning_rate": 0.0006, + "loss": 3.8584811687469482, + "step": 1871 + }, + { + "epoch": 26.0, + "grad_norm": 0.22110891342163086, + "learning_rate": 0.0006, + "loss": 3.8020238876342773, + "step": 1872 + }, + { + "epoch": 26.0, + "eval_loss": 4.072164058685303, + "eval_runtime": 44.9089, + "eval_samples_per_second": 54.377, + "eval_steps_per_second": 3.407, + "step": 1872 + }, + { + "epoch": 26.01397990388816, + "grad_norm": 0.2222519814968109, + "learning_rate": 0.0006, + "loss": 3.8309168815612793, + "step": 1873 + }, + { + "epoch": 26.027959807776323, + "grad_norm": 0.2637656033039093, + "learning_rate": 0.0006, + "loss": 3.8025143146514893, + "step": 1874 + }, + { + "epoch": 26.041939711664483, + "grad_norm": 0.2665974795818329, + "learning_rate": 0.0006, + "loss": 3.8244004249572754, + "step": 1875 + }, + { + "epoch": 26.055919615552643, + "grad_norm": 0.22475720942020416, + "learning_rate": 0.0006, + "loss": 3.80039119720459, + "step": 1876 + }, + { + "epoch": 26.069899519440803, + "grad_norm": 0.22994336485862732, + "learning_rate": 0.0006, + "loss": 3.7700726985931396, + "step": 1877 + }, + { + "epoch": 26.083879423328966, + "grad_norm": 0.24214622378349304, + "learning_rate": 0.0006, + "loss": 3.818725109100342, + "step": 1878 + }, + { + "epoch": 26.097859327217126, + "grad_norm": 0.22701293230056763, + "learning_rate": 0.0006, + "loss": 3.833803176879883, + "step": 1879 + }, + { + "epoch": 26.111839231105286, + "grad_norm": 0.21452295780181885, + "learning_rate": 0.0006, + "loss": 3.8391427993774414, + "step": 1880 + }, + { + "epoch": 26.125819134993446, + "grad_norm": 0.20179636776447296, + "learning_rate": 0.0006, + "loss": 3.802957057952881, + "step": 1881 + }, + { + "epoch": 26.13979903888161, + "grad_norm": 0.2087477445602417, + "learning_rate": 0.0006, + "loss": 3.8339905738830566, + "step": 1882 + }, + { + "epoch": 26.15377894276977, + "grad_norm": 0.23583556711673737, + "learning_rate": 0.0006, + "loss": 3.802438259124756, + "step": 1883 + }, + { + "epoch": 26.16775884665793, + "grad_norm": 0.2504311501979828, + "learning_rate": 0.0006, + "loss": 3.80244517326355, + "step": 1884 + }, + { + "epoch": 26.18173875054609, + "grad_norm": 0.24903984367847443, + "learning_rate": 0.0006, + "loss": 3.788865566253662, + "step": 1885 + }, + { + "epoch": 26.195718654434252, + "grad_norm": 0.2707931101322174, + "learning_rate": 0.0006, + "loss": 3.800051212310791, + "step": 1886 + }, + { + "epoch": 26.209698558322412, + "grad_norm": 0.24902892112731934, + "learning_rate": 0.0006, + "loss": 3.8068337440490723, + "step": 1887 + }, + { + "epoch": 26.22367846221057, + "grad_norm": 0.22655536234378815, + "learning_rate": 0.0006, + "loss": 3.779439926147461, + "step": 1888 + }, + { + "epoch": 26.23765836609873, + "grad_norm": 0.24797996878623962, + "learning_rate": 0.0006, + "loss": 3.822831153869629, + "step": 1889 + }, + { + "epoch": 26.251638269986895, + "grad_norm": 0.2821420431137085, + "learning_rate": 0.0006, + "loss": 3.807954788208008, + "step": 1890 + }, + { + "epoch": 26.265618173875055, + "grad_norm": 0.30392691493034363, + "learning_rate": 0.0006, + "loss": 3.776951789855957, + "step": 1891 + }, + { + "epoch": 26.279598077763215, + "grad_norm": 0.32641273736953735, + "learning_rate": 0.0006, + "loss": 3.8216311931610107, + "step": 1892 + }, + { + "epoch": 26.293577981651374, + "grad_norm": 0.32674387097358704, + "learning_rate": 0.0006, + "loss": 3.815596580505371, + "step": 1893 + }, + { + "epoch": 26.307557885539538, + "grad_norm": 0.29137250781059265, + "learning_rate": 0.0006, + "loss": 3.8170812129974365, + "step": 1894 + }, + { + "epoch": 26.321537789427698, + "grad_norm": 0.24291734397411346, + "learning_rate": 0.0006, + "loss": 3.810352087020874, + "step": 1895 + }, + { + "epoch": 26.335517693315857, + "grad_norm": 0.24023209512233734, + "learning_rate": 0.0006, + "loss": 3.8075947761535645, + "step": 1896 + }, + { + "epoch": 26.34949759720402, + "grad_norm": 0.24334804713726044, + "learning_rate": 0.0006, + "loss": 3.831556797027588, + "step": 1897 + }, + { + "epoch": 26.36347750109218, + "grad_norm": 0.2109663337469101, + "learning_rate": 0.0006, + "loss": 3.838347911834717, + "step": 1898 + }, + { + "epoch": 26.37745740498034, + "grad_norm": 0.19668002426624298, + "learning_rate": 0.0006, + "loss": 3.774737596511841, + "step": 1899 + }, + { + "epoch": 26.3914373088685, + "grad_norm": 0.21329134702682495, + "learning_rate": 0.0006, + "loss": 3.8237252235412598, + "step": 1900 + }, + { + "epoch": 26.405417212756664, + "grad_norm": 0.20381781458854675, + "learning_rate": 0.0006, + "loss": 3.802569627761841, + "step": 1901 + }, + { + "epoch": 26.419397116644824, + "grad_norm": 0.19083160161972046, + "learning_rate": 0.0006, + "loss": 3.8301358222961426, + "step": 1902 + }, + { + "epoch": 26.433377020532983, + "grad_norm": 0.20012904703617096, + "learning_rate": 0.0006, + "loss": 3.7966408729553223, + "step": 1903 + }, + { + "epoch": 26.447356924421143, + "grad_norm": 0.19483457505702972, + "learning_rate": 0.0006, + "loss": 3.8431968688964844, + "step": 1904 + }, + { + "epoch": 26.461336828309307, + "grad_norm": 0.19946353137493134, + "learning_rate": 0.0006, + "loss": 3.8023815155029297, + "step": 1905 + }, + { + "epoch": 26.475316732197467, + "grad_norm": 0.1984100341796875, + "learning_rate": 0.0006, + "loss": 3.8283071517944336, + "step": 1906 + }, + { + "epoch": 26.489296636085626, + "grad_norm": 0.2148299664258957, + "learning_rate": 0.0006, + "loss": 3.8377504348754883, + "step": 1907 + }, + { + "epoch": 26.503276539973786, + "grad_norm": 0.22139184176921844, + "learning_rate": 0.0006, + "loss": 3.823051691055298, + "step": 1908 + }, + { + "epoch": 26.51725644386195, + "grad_norm": 0.18289034068584442, + "learning_rate": 0.0006, + "loss": 3.8027071952819824, + "step": 1909 + }, + { + "epoch": 26.53123634775011, + "grad_norm": 0.1816026121377945, + "learning_rate": 0.0006, + "loss": 3.823786735534668, + "step": 1910 + }, + { + "epoch": 26.54521625163827, + "grad_norm": 0.19074322283267975, + "learning_rate": 0.0006, + "loss": 3.813331127166748, + "step": 1911 + }, + { + "epoch": 26.55919615552643, + "grad_norm": 0.20301467180252075, + "learning_rate": 0.0006, + "loss": 3.8218350410461426, + "step": 1912 + }, + { + "epoch": 26.573176059414592, + "grad_norm": 0.25266432762145996, + "learning_rate": 0.0006, + "loss": 3.8455142974853516, + "step": 1913 + }, + { + "epoch": 26.587155963302752, + "grad_norm": 0.25804755091667175, + "learning_rate": 0.0006, + "loss": 3.799227476119995, + "step": 1914 + }, + { + "epoch": 26.601135867190912, + "grad_norm": 0.2555372416973114, + "learning_rate": 0.0006, + "loss": 3.8125686645507812, + "step": 1915 + }, + { + "epoch": 26.615115771079076, + "grad_norm": 0.2266194075345993, + "learning_rate": 0.0006, + "loss": 3.858363628387451, + "step": 1916 + }, + { + "epoch": 26.629095674967235, + "grad_norm": 0.1933048665523529, + "learning_rate": 0.0006, + "loss": 3.8078083992004395, + "step": 1917 + }, + { + "epoch": 26.643075578855395, + "grad_norm": 0.19936731457710266, + "learning_rate": 0.0006, + "loss": 3.81748628616333, + "step": 1918 + }, + { + "epoch": 26.657055482743555, + "grad_norm": 0.22041693329811096, + "learning_rate": 0.0006, + "loss": 3.833272933959961, + "step": 1919 + }, + { + "epoch": 26.67103538663172, + "grad_norm": 0.20679150521755219, + "learning_rate": 0.0006, + "loss": 3.8127288818359375, + "step": 1920 + }, + { + "epoch": 26.68501529051988, + "grad_norm": 0.21545100212097168, + "learning_rate": 0.0006, + "loss": 3.816051483154297, + "step": 1921 + }, + { + "epoch": 26.698995194408038, + "grad_norm": 0.23554518818855286, + "learning_rate": 0.0006, + "loss": 3.8180980682373047, + "step": 1922 + }, + { + "epoch": 26.712975098296198, + "grad_norm": 0.21942466497421265, + "learning_rate": 0.0006, + "loss": 3.803107976913452, + "step": 1923 + }, + { + "epoch": 26.72695500218436, + "grad_norm": 0.22335010766983032, + "learning_rate": 0.0006, + "loss": 3.847890853881836, + "step": 1924 + }, + { + "epoch": 26.74093490607252, + "grad_norm": 0.24731314182281494, + "learning_rate": 0.0006, + "loss": 3.7945008277893066, + "step": 1925 + }, + { + "epoch": 26.75491480996068, + "grad_norm": 0.2804568111896515, + "learning_rate": 0.0006, + "loss": 3.8400068283081055, + "step": 1926 + }, + { + "epoch": 26.76889471384884, + "grad_norm": 0.28787222504615784, + "learning_rate": 0.0006, + "loss": 3.839771270751953, + "step": 1927 + }, + { + "epoch": 26.782874617737004, + "grad_norm": 0.2949632406234741, + "learning_rate": 0.0006, + "loss": 3.8225326538085938, + "step": 1928 + }, + { + "epoch": 26.796854521625164, + "grad_norm": 0.31546032428741455, + "learning_rate": 0.0006, + "loss": 3.8182597160339355, + "step": 1929 + }, + { + "epoch": 26.810834425513324, + "grad_norm": 0.2956962585449219, + "learning_rate": 0.0006, + "loss": 3.8315680027008057, + "step": 1930 + }, + { + "epoch": 26.824814329401484, + "grad_norm": 0.26943835616111755, + "learning_rate": 0.0006, + "loss": 3.787720203399658, + "step": 1931 + }, + { + "epoch": 26.838794233289647, + "grad_norm": 0.24272359907627106, + "learning_rate": 0.0006, + "loss": 3.7973692417144775, + "step": 1932 + }, + { + "epoch": 26.852774137177807, + "grad_norm": 0.20553994178771973, + "learning_rate": 0.0006, + "loss": 3.8241593837738037, + "step": 1933 + }, + { + "epoch": 26.866754041065967, + "grad_norm": 0.21927912533283234, + "learning_rate": 0.0006, + "loss": 3.8608899116516113, + "step": 1934 + }, + { + "epoch": 26.88073394495413, + "grad_norm": 0.22878016531467438, + "learning_rate": 0.0006, + "loss": 3.8341972827911377, + "step": 1935 + }, + { + "epoch": 26.89471384884229, + "grad_norm": 0.2085554301738739, + "learning_rate": 0.0006, + "loss": 3.8261351585388184, + "step": 1936 + }, + { + "epoch": 26.90869375273045, + "grad_norm": 0.21259072422981262, + "learning_rate": 0.0006, + "loss": 3.862056255340576, + "step": 1937 + }, + { + "epoch": 26.92267365661861, + "grad_norm": 0.21354122459888458, + "learning_rate": 0.0006, + "loss": 3.80879545211792, + "step": 1938 + }, + { + "epoch": 26.936653560506773, + "grad_norm": 0.2350253462791443, + "learning_rate": 0.0006, + "loss": 3.817826271057129, + "step": 1939 + }, + { + "epoch": 26.950633464394933, + "grad_norm": 0.23833836615085602, + "learning_rate": 0.0006, + "loss": 3.8220884799957275, + "step": 1940 + }, + { + "epoch": 26.964613368283093, + "grad_norm": 0.2368069440126419, + "learning_rate": 0.0006, + "loss": 3.843264579772949, + "step": 1941 + }, + { + "epoch": 26.978593272171253, + "grad_norm": 0.22663559019565582, + "learning_rate": 0.0006, + "loss": 3.81339430809021, + "step": 1942 + }, + { + "epoch": 26.992573176059416, + "grad_norm": 0.2151402235031128, + "learning_rate": 0.0006, + "loss": 3.8262834548950195, + "step": 1943 + }, + { + "epoch": 27.0, + "grad_norm": 0.24320295453071594, + "learning_rate": 0.0006, + "loss": 3.858567237854004, + "step": 1944 + }, + { + "epoch": 27.0, + "eval_loss": 4.0613322257995605, + "eval_runtime": 44.766, + "eval_samples_per_second": 54.55, + "eval_steps_per_second": 3.418, + "step": 1944 + }, + { + "epoch": 27.01397990388816, + "grad_norm": 0.21188032627105713, + "learning_rate": 0.0006, + "loss": 3.7631278038024902, + "step": 1945 + }, + { + "epoch": 27.027959807776323, + "grad_norm": 0.22298137843608856, + "learning_rate": 0.0006, + "loss": 3.784029245376587, + "step": 1946 + }, + { + "epoch": 27.041939711664483, + "grad_norm": 0.26530158519744873, + "learning_rate": 0.0006, + "loss": 3.795860767364502, + "step": 1947 + }, + { + "epoch": 27.055919615552643, + "grad_norm": 0.24476729333400726, + "learning_rate": 0.0006, + "loss": 3.77512264251709, + "step": 1948 + }, + { + "epoch": 27.069899519440803, + "grad_norm": 0.1934421956539154, + "learning_rate": 0.0006, + "loss": 3.7797446250915527, + "step": 1949 + }, + { + "epoch": 27.083879423328966, + "grad_norm": 0.19777092337608337, + "learning_rate": 0.0006, + "loss": 3.798935890197754, + "step": 1950 + }, + { + "epoch": 27.097859327217126, + "grad_norm": 0.2071693390607834, + "learning_rate": 0.0006, + "loss": 3.763094425201416, + "step": 1951 + }, + { + "epoch": 27.111839231105286, + "grad_norm": 0.18394742906093597, + "learning_rate": 0.0006, + "loss": 3.7892322540283203, + "step": 1952 + }, + { + "epoch": 27.125819134993446, + "grad_norm": 0.17878273129463196, + "learning_rate": 0.0006, + "loss": 3.787968158721924, + "step": 1953 + }, + { + "epoch": 27.13979903888161, + "grad_norm": 0.18792171776294708, + "learning_rate": 0.0006, + "loss": 3.7719640731811523, + "step": 1954 + }, + { + "epoch": 27.15377894276977, + "grad_norm": 0.18718759715557098, + "learning_rate": 0.0006, + "loss": 3.791835308074951, + "step": 1955 + }, + { + "epoch": 27.16775884665793, + "grad_norm": 0.18716055154800415, + "learning_rate": 0.0006, + "loss": 3.7490220069885254, + "step": 1956 + }, + { + "epoch": 27.18173875054609, + "grad_norm": 0.18429182469844818, + "learning_rate": 0.0006, + "loss": 3.8020081520080566, + "step": 1957 + }, + { + "epoch": 27.195718654434252, + "grad_norm": 0.18571704626083374, + "learning_rate": 0.0006, + "loss": 3.8152215480804443, + "step": 1958 + }, + { + "epoch": 27.209698558322412, + "grad_norm": 0.1788843423128128, + "learning_rate": 0.0006, + "loss": 3.8173317909240723, + "step": 1959 + }, + { + "epoch": 27.22367846221057, + "grad_norm": 0.20459426939487457, + "learning_rate": 0.0006, + "loss": 3.7760040760040283, + "step": 1960 + }, + { + "epoch": 27.23765836609873, + "grad_norm": 0.22360935807228088, + "learning_rate": 0.0006, + "loss": 3.8140203952789307, + "step": 1961 + }, + { + "epoch": 27.251638269986895, + "grad_norm": 0.2062767595052719, + "learning_rate": 0.0006, + "loss": 3.792001247406006, + "step": 1962 + }, + { + "epoch": 27.265618173875055, + "grad_norm": 0.20628073811531067, + "learning_rate": 0.0006, + "loss": 3.7873167991638184, + "step": 1963 + }, + { + "epoch": 27.279598077763215, + "grad_norm": 0.19888348877429962, + "learning_rate": 0.0006, + "loss": 3.7903614044189453, + "step": 1964 + }, + { + "epoch": 27.293577981651374, + "grad_norm": 0.22033332288265228, + "learning_rate": 0.0006, + "loss": 3.802497148513794, + "step": 1965 + }, + { + "epoch": 27.307557885539538, + "grad_norm": 0.23476941883563995, + "learning_rate": 0.0006, + "loss": 3.794090986251831, + "step": 1966 + }, + { + "epoch": 27.321537789427698, + "grad_norm": 0.19639968872070312, + "learning_rate": 0.0006, + "loss": 3.831794023513794, + "step": 1967 + }, + { + "epoch": 27.335517693315857, + "grad_norm": 0.18169641494750977, + "learning_rate": 0.0006, + "loss": 3.7687768936157227, + "step": 1968 + }, + { + "epoch": 27.34949759720402, + "grad_norm": 0.17781762778759003, + "learning_rate": 0.0006, + "loss": 3.7868471145629883, + "step": 1969 + }, + { + "epoch": 27.36347750109218, + "grad_norm": 0.18990416824817657, + "learning_rate": 0.0006, + "loss": 3.8340392112731934, + "step": 1970 + }, + { + "epoch": 27.37745740498034, + "grad_norm": 0.2031438797712326, + "learning_rate": 0.0006, + "loss": 3.804513454437256, + "step": 1971 + }, + { + "epoch": 27.3914373088685, + "grad_norm": 0.21233421564102173, + "learning_rate": 0.0006, + "loss": 3.7908449172973633, + "step": 1972 + }, + { + "epoch": 27.405417212756664, + "grad_norm": 0.22480927407741547, + "learning_rate": 0.0006, + "loss": 3.7894086837768555, + "step": 1973 + }, + { + "epoch": 27.419397116644824, + "grad_norm": 0.22713422775268555, + "learning_rate": 0.0006, + "loss": 3.826005458831787, + "step": 1974 + }, + { + "epoch": 27.433377020532983, + "grad_norm": 0.21637366712093353, + "learning_rate": 0.0006, + "loss": 3.8232319355010986, + "step": 1975 + }, + { + "epoch": 27.447356924421143, + "grad_norm": 0.24092449247837067, + "learning_rate": 0.0006, + "loss": 3.813279628753662, + "step": 1976 + }, + { + "epoch": 27.461336828309307, + "grad_norm": 0.21143047511577606, + "learning_rate": 0.0006, + "loss": 3.811586856842041, + "step": 1977 + }, + { + "epoch": 27.475316732197467, + "grad_norm": 0.21049432456493378, + "learning_rate": 0.0006, + "loss": 3.8227009773254395, + "step": 1978 + }, + { + "epoch": 27.489296636085626, + "grad_norm": 0.21853850781917572, + "learning_rate": 0.0006, + "loss": 3.7992515563964844, + "step": 1979 + }, + { + "epoch": 27.503276539973786, + "grad_norm": 0.22405001521110535, + "learning_rate": 0.0006, + "loss": 3.8311715126037598, + "step": 1980 + }, + { + "epoch": 27.51725644386195, + "grad_norm": 0.24085809290409088, + "learning_rate": 0.0006, + "loss": 3.801962375640869, + "step": 1981 + }, + { + "epoch": 27.53123634775011, + "grad_norm": 0.2612341642379761, + "learning_rate": 0.0006, + "loss": 3.7867887020111084, + "step": 1982 + }, + { + "epoch": 27.54521625163827, + "grad_norm": 0.25136062502861023, + "learning_rate": 0.0006, + "loss": 3.8302273750305176, + "step": 1983 + }, + { + "epoch": 27.55919615552643, + "grad_norm": 0.2485426515340805, + "learning_rate": 0.0006, + "loss": 3.770616054534912, + "step": 1984 + }, + { + "epoch": 27.573176059414592, + "grad_norm": 0.28883907198905945, + "learning_rate": 0.0006, + "loss": 3.8152146339416504, + "step": 1985 + }, + { + "epoch": 27.587155963302752, + "grad_norm": 0.28177911043167114, + "learning_rate": 0.0006, + "loss": 3.7966861724853516, + "step": 1986 + }, + { + "epoch": 27.601135867190912, + "grad_norm": 0.2573191523551941, + "learning_rate": 0.0006, + "loss": 3.820788621902466, + "step": 1987 + }, + { + "epoch": 27.615115771079076, + "grad_norm": 0.22225657105445862, + "learning_rate": 0.0006, + "loss": 3.778477191925049, + "step": 1988 + }, + { + "epoch": 27.629095674967235, + "grad_norm": 0.20118530094623566, + "learning_rate": 0.0006, + "loss": 3.8416988849639893, + "step": 1989 + }, + { + "epoch": 27.643075578855395, + "grad_norm": 0.21168658137321472, + "learning_rate": 0.0006, + "loss": 3.798020839691162, + "step": 1990 + }, + { + "epoch": 27.657055482743555, + "grad_norm": 0.2460680454969406, + "learning_rate": 0.0006, + "loss": 3.805917263031006, + "step": 1991 + }, + { + "epoch": 27.67103538663172, + "grad_norm": 0.2700909674167633, + "learning_rate": 0.0006, + "loss": 3.8042726516723633, + "step": 1992 + }, + { + "epoch": 27.68501529051988, + "grad_norm": 0.25814294815063477, + "learning_rate": 0.0006, + "loss": 3.799159049987793, + "step": 1993 + }, + { + "epoch": 27.698995194408038, + "grad_norm": 0.2231985628604889, + "learning_rate": 0.0006, + "loss": 3.778750419616699, + "step": 1994 + }, + { + "epoch": 27.712975098296198, + "grad_norm": 0.20807890594005585, + "learning_rate": 0.0006, + "loss": 3.787919044494629, + "step": 1995 + }, + { + "epoch": 27.72695500218436, + "grad_norm": 0.19537150859832764, + "learning_rate": 0.0006, + "loss": 3.7917299270629883, + "step": 1996 + }, + { + "epoch": 27.74093490607252, + "grad_norm": 0.21057647466659546, + "learning_rate": 0.0006, + "loss": 3.8096866607666016, + "step": 1997 + }, + { + "epoch": 27.75491480996068, + "grad_norm": 0.18983247876167297, + "learning_rate": 0.0006, + "loss": 3.7881717681884766, + "step": 1998 + }, + { + "epoch": 27.76889471384884, + "grad_norm": 0.18701069056987762, + "learning_rate": 0.0006, + "loss": 3.810790538787842, + "step": 1999 + }, + { + "epoch": 27.782874617737004, + "grad_norm": 0.1920134723186493, + "learning_rate": 0.0006, + "loss": 3.8161087036132812, + "step": 2000 + }, + { + "epoch": 27.796854521625164, + "grad_norm": 0.20413947105407715, + "learning_rate": 0.0006, + "loss": 3.790499687194824, + "step": 2001 + }, + { + "epoch": 27.810834425513324, + "grad_norm": 0.1920027732849121, + "learning_rate": 0.0006, + "loss": 3.8194262981414795, + "step": 2002 + }, + { + "epoch": 27.824814329401484, + "grad_norm": 0.18630221486091614, + "learning_rate": 0.0006, + "loss": 3.8267152309417725, + "step": 2003 + }, + { + "epoch": 27.838794233289647, + "grad_norm": 0.1787925660610199, + "learning_rate": 0.0006, + "loss": 3.8147521018981934, + "step": 2004 + }, + { + "epoch": 27.852774137177807, + "grad_norm": 0.19187216460704803, + "learning_rate": 0.0006, + "loss": 3.7751095294952393, + "step": 2005 + }, + { + "epoch": 27.866754041065967, + "grad_norm": 0.18825744092464447, + "learning_rate": 0.0006, + "loss": 3.807401657104492, + "step": 2006 + }, + { + "epoch": 27.88073394495413, + "grad_norm": 0.1879836469888687, + "learning_rate": 0.0006, + "loss": 3.8302509784698486, + "step": 2007 + }, + { + "epoch": 27.89471384884229, + "grad_norm": 0.19136391580104828, + "learning_rate": 0.0006, + "loss": 3.7886242866516113, + "step": 2008 + }, + { + "epoch": 27.90869375273045, + "grad_norm": 0.18774119019508362, + "learning_rate": 0.0006, + "loss": 3.8202977180480957, + "step": 2009 + }, + { + "epoch": 27.92267365661861, + "grad_norm": 0.17794452607631683, + "learning_rate": 0.0006, + "loss": 3.813382387161255, + "step": 2010 + }, + { + "epoch": 27.936653560506773, + "grad_norm": 0.1876268833875656, + "learning_rate": 0.0006, + "loss": 3.810610294342041, + "step": 2011 + }, + { + "epoch": 27.950633464394933, + "grad_norm": 0.19262051582336426, + "learning_rate": 0.0006, + "loss": 3.8113245964050293, + "step": 2012 + }, + { + "epoch": 27.964613368283093, + "grad_norm": 0.19371771812438965, + "learning_rate": 0.0006, + "loss": 3.804790496826172, + "step": 2013 + }, + { + "epoch": 27.978593272171253, + "grad_norm": 0.1922861784696579, + "learning_rate": 0.0006, + "loss": 3.8278889656066895, + "step": 2014 + }, + { + "epoch": 27.992573176059416, + "grad_norm": 0.19748565554618835, + "learning_rate": 0.0006, + "loss": 3.8127200603485107, + "step": 2015 + }, + { + "epoch": 28.0, + "grad_norm": 0.25027501583099365, + "learning_rate": 0.0006, + "loss": 3.7899413108825684, + "step": 2016 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 8.591164172685804e+17, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2016/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2304/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2304/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2304/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2304/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d02f2a52853532f89613ec79b3cf8c05004c9602 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c23c4c52d3104ddb6622deb1f04353ddc78878caa1b7029c6a7e0d4a71c789c +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2304/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..ccb8a44a77f45b30291d8fb8c694900426ccb10e --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d26496d73220af52886371faa29727946aecb9f1575129deccead239e5fbb9c +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2304/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..1878ba097e121861e71979cee3992611efa24cc7 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14626ff8bbcf15137891e280dcec4d3545171a665fc646b631f3c59dda631ef3 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2304/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..60bb88b33bed0a559f43d085d51575968a962f71 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be5e620584566ec5739c21fe353faa81ee50164742bcc7b9870ea40de44592aa +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2304/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..f90b8c27b6972bbb4a1ca0bc0dffdc47237e677d --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b057fe862d340f767a25cc1e8c8a0bb24146431f818f82ef2cc9b3d15cf7bfad +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2304/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2304/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2304/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..dbd19234b800a5bfe798600247e7e484d0b0d707 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/trainer_state.json @@ -0,0 +1,16410 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 32.0, + "eval_steps": 500, + "global_step": 2304, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + }, + { + "epoch": 8.0, + "eval_loss": 5.100707530975342, + "eval_runtime": 44.2493, + "eval_samples_per_second": 55.187, + "eval_steps_per_second": 3.458, + "step": 576 + }, + { + "epoch": 8.013979903888162, + "grad_norm": 0.3658510148525238, + "learning_rate": 0.0006, + "loss": 4.759055137634277, + "step": 577 + }, + { + "epoch": 8.027959807776321, + "grad_norm": 0.41794446110725403, + "learning_rate": 0.0006, + "loss": 4.737661838531494, + "step": 578 + }, + { + "epoch": 8.041939711664483, + "grad_norm": 0.43284085392951965, + "learning_rate": 0.0006, + "loss": 4.775538444519043, + "step": 579 + }, + { + "epoch": 8.055919615552643, + "grad_norm": 0.4716675281524658, + "learning_rate": 0.0006, + "loss": 4.762231826782227, + "step": 580 + }, + { + "epoch": 8.069899519440805, + "grad_norm": 0.3849579393863678, + "learning_rate": 0.0006, + "loss": 4.753598690032959, + "step": 581 + }, + { + "epoch": 8.083879423328964, + "grad_norm": 0.3721151053905487, + "learning_rate": 0.0006, + "loss": 4.728978157043457, + "step": 582 + }, + { + "epoch": 8.097859327217126, + "grad_norm": 0.37009572982788086, + "learning_rate": 0.0006, + "loss": 4.759153366088867, + "step": 583 + }, + { + "epoch": 8.111839231105286, + "grad_norm": 0.37051302194595337, + "learning_rate": 0.0006, + "loss": 4.744197368621826, + "step": 584 + }, + { + "epoch": 8.125819134993447, + "grad_norm": 0.331238329410553, + "learning_rate": 0.0006, + "loss": 4.7338385581970215, + "step": 585 + }, + { + "epoch": 8.139799038881607, + "grad_norm": 0.3737713694572449, + "learning_rate": 0.0006, + "loss": 4.719110488891602, + "step": 586 + }, + { + "epoch": 8.153778942769769, + "grad_norm": 0.3713214695453644, + "learning_rate": 0.0006, + "loss": 4.734012126922607, + "step": 587 + }, + { + "epoch": 8.167758846657929, + "grad_norm": 0.4060780107975006, + "learning_rate": 0.0006, + "loss": 4.746830940246582, + "step": 588 + }, + { + "epoch": 8.18173875054609, + "grad_norm": 0.39814314246177673, + "learning_rate": 0.0006, + "loss": 4.722851753234863, + "step": 589 + }, + { + "epoch": 8.19571865443425, + "grad_norm": 0.3175652325153351, + "learning_rate": 0.0006, + "loss": 4.745110034942627, + "step": 590 + }, + { + "epoch": 8.209698558322412, + "grad_norm": 0.37214916944503784, + "learning_rate": 0.0006, + "loss": 4.7362775802612305, + "step": 591 + }, + { + "epoch": 8.223678462210572, + "grad_norm": 0.3873472809791565, + "learning_rate": 0.0006, + "loss": 4.738964557647705, + "step": 592 + }, + { + "epoch": 8.237658366098733, + "grad_norm": 0.3299207091331482, + "learning_rate": 0.0006, + "loss": 4.713451385498047, + "step": 593 + }, + { + "epoch": 8.251638269986893, + "grad_norm": 0.32445064187049866, + "learning_rate": 0.0006, + "loss": 4.725602149963379, + "step": 594 + }, + { + "epoch": 8.265618173875055, + "grad_norm": 0.32903164625167847, + "learning_rate": 0.0006, + "loss": 4.732064247131348, + "step": 595 + }, + { + "epoch": 8.279598077763215, + "grad_norm": 0.3166804313659668, + "learning_rate": 0.0006, + "loss": 4.678950786590576, + "step": 596 + }, + { + "epoch": 8.293577981651376, + "grad_norm": 0.2750290334224701, + "learning_rate": 0.0006, + "loss": 4.719513416290283, + "step": 597 + }, + { + "epoch": 8.307557885539538, + "grad_norm": 0.291029691696167, + "learning_rate": 0.0006, + "loss": 4.715405464172363, + "step": 598 + }, + { + "epoch": 8.321537789427698, + "grad_norm": 0.34105145931243896, + "learning_rate": 0.0006, + "loss": 4.722611427307129, + "step": 599 + }, + { + "epoch": 8.33551769331586, + "grad_norm": 0.3078882694244385, + "learning_rate": 0.0006, + "loss": 4.668856620788574, + "step": 600 + }, + { + "epoch": 8.349497597204019, + "grad_norm": 0.3218833804130554, + "learning_rate": 0.0006, + "loss": 4.719579696655273, + "step": 601 + }, + { + "epoch": 8.36347750109218, + "grad_norm": 0.35716721415519714, + "learning_rate": 0.0006, + "loss": 4.690774440765381, + "step": 602 + }, + { + "epoch": 8.37745740498034, + "grad_norm": 0.3045452833175659, + "learning_rate": 0.0006, + "loss": 4.696503639221191, + "step": 603 + }, + { + "epoch": 8.391437308868502, + "grad_norm": 0.3127244710922241, + "learning_rate": 0.0006, + "loss": 4.701899528503418, + "step": 604 + }, + { + "epoch": 8.405417212756662, + "grad_norm": 0.34988710284233093, + "learning_rate": 0.0006, + "loss": 4.677641868591309, + "step": 605 + }, + { + "epoch": 8.419397116644824, + "grad_norm": 0.34035569429397583, + "learning_rate": 0.0006, + "loss": 4.707778453826904, + "step": 606 + }, + { + "epoch": 8.433377020532983, + "grad_norm": 0.3341112732887268, + "learning_rate": 0.0006, + "loss": 4.724853038787842, + "step": 607 + }, + { + "epoch": 8.447356924421145, + "grad_norm": 0.41744324564933777, + "learning_rate": 0.0006, + "loss": 4.680908203125, + "step": 608 + }, + { + "epoch": 8.461336828309305, + "grad_norm": 0.40402331948280334, + "learning_rate": 0.0006, + "loss": 4.726455211639404, + "step": 609 + }, + { + "epoch": 8.475316732197467, + "grad_norm": 0.4727570414543152, + "learning_rate": 0.0006, + "loss": 4.6793084144592285, + "step": 610 + }, + { + "epoch": 8.489296636085626, + "grad_norm": 0.43002694845199585, + "learning_rate": 0.0006, + "loss": 4.663918972015381, + "step": 611 + }, + { + "epoch": 8.503276539973788, + "grad_norm": 0.36124858260154724, + "learning_rate": 0.0006, + "loss": 4.657375335693359, + "step": 612 + }, + { + "epoch": 8.517256443861948, + "grad_norm": 0.37644803524017334, + "learning_rate": 0.0006, + "loss": 4.676977157592773, + "step": 613 + }, + { + "epoch": 8.53123634775011, + "grad_norm": 0.32347747683525085, + "learning_rate": 0.0006, + "loss": 4.708547115325928, + "step": 614 + }, + { + "epoch": 8.54521625163827, + "grad_norm": 0.3071717619895935, + "learning_rate": 0.0006, + "loss": 4.650189399719238, + "step": 615 + }, + { + "epoch": 8.55919615552643, + "grad_norm": 0.30222490429878235, + "learning_rate": 0.0006, + "loss": 4.647942543029785, + "step": 616 + }, + { + "epoch": 8.57317605941459, + "grad_norm": 0.31545212864875793, + "learning_rate": 0.0006, + "loss": 4.660242080688477, + "step": 617 + }, + { + "epoch": 8.587155963302752, + "grad_norm": 0.31644752621650696, + "learning_rate": 0.0006, + "loss": 4.666710376739502, + "step": 618 + }, + { + "epoch": 8.601135867190912, + "grad_norm": 0.26057198643684387, + "learning_rate": 0.0006, + "loss": 4.668096542358398, + "step": 619 + }, + { + "epoch": 8.615115771079074, + "grad_norm": 0.25473910570144653, + "learning_rate": 0.0006, + "loss": 4.641562461853027, + "step": 620 + }, + { + "epoch": 8.629095674967235, + "grad_norm": 0.2456732839345932, + "learning_rate": 0.0006, + "loss": 4.6545281410217285, + "step": 621 + }, + { + "epoch": 8.643075578855395, + "grad_norm": 0.25180476903915405, + "learning_rate": 0.0006, + "loss": 4.6506524085998535, + "step": 622 + }, + { + "epoch": 8.657055482743557, + "grad_norm": 0.21761579811573029, + "learning_rate": 0.0006, + "loss": 4.638909339904785, + "step": 623 + }, + { + "epoch": 8.671035386631717, + "grad_norm": 0.23590542376041412, + "learning_rate": 0.0006, + "loss": 4.6572747230529785, + "step": 624 + }, + { + "epoch": 8.685015290519878, + "grad_norm": 0.23870624601840973, + "learning_rate": 0.0006, + "loss": 4.643742084503174, + "step": 625 + }, + { + "epoch": 8.698995194408038, + "grad_norm": 0.2191203385591507, + "learning_rate": 0.0006, + "loss": 4.632617950439453, + "step": 626 + }, + { + "epoch": 8.7129750982962, + "grad_norm": 0.22107063233852386, + "learning_rate": 0.0006, + "loss": 4.625616073608398, + "step": 627 + }, + { + "epoch": 8.72695500218436, + "grad_norm": 0.20833902060985565, + "learning_rate": 0.0006, + "loss": 4.609896659851074, + "step": 628 + }, + { + "epoch": 8.740934906072521, + "grad_norm": 0.254967600107193, + "learning_rate": 0.0006, + "loss": 4.651735782623291, + "step": 629 + }, + { + "epoch": 8.754914809960681, + "grad_norm": 0.31587523221969604, + "learning_rate": 0.0006, + "loss": 4.6404032707214355, + "step": 630 + }, + { + "epoch": 8.768894713848843, + "grad_norm": 0.28598251938819885, + "learning_rate": 0.0006, + "loss": 4.602679252624512, + "step": 631 + }, + { + "epoch": 8.782874617737003, + "grad_norm": 0.23216590285301208, + "learning_rate": 0.0006, + "loss": 4.610319137573242, + "step": 632 + }, + { + "epoch": 8.796854521625164, + "grad_norm": 0.29212239384651184, + "learning_rate": 0.0006, + "loss": 4.600744247436523, + "step": 633 + }, + { + "epoch": 8.810834425513324, + "grad_norm": 0.3375801146030426, + "learning_rate": 0.0006, + "loss": 4.627819061279297, + "step": 634 + }, + { + "epoch": 8.824814329401486, + "grad_norm": 0.4207753837108612, + "learning_rate": 0.0006, + "loss": 4.634505271911621, + "step": 635 + }, + { + "epoch": 8.838794233289645, + "grad_norm": 0.4640173614025116, + "learning_rate": 0.0006, + "loss": 4.636714935302734, + "step": 636 + }, + { + "epoch": 8.852774137177807, + "grad_norm": 0.5255663990974426, + "learning_rate": 0.0006, + "loss": 4.659462928771973, + "step": 637 + }, + { + "epoch": 8.866754041065967, + "grad_norm": 0.5108268857002258, + "learning_rate": 0.0006, + "loss": 4.633192539215088, + "step": 638 + }, + { + "epoch": 8.880733944954128, + "grad_norm": 0.3821936845779419, + "learning_rate": 0.0006, + "loss": 4.621200084686279, + "step": 639 + }, + { + "epoch": 8.89471384884229, + "grad_norm": 0.3918485939502716, + "learning_rate": 0.0006, + "loss": 4.632599830627441, + "step": 640 + }, + { + "epoch": 8.90869375273045, + "grad_norm": 0.3416556119918823, + "learning_rate": 0.0006, + "loss": 4.620438098907471, + "step": 641 + }, + { + "epoch": 8.922673656618612, + "grad_norm": 0.3191553056240082, + "learning_rate": 0.0006, + "loss": 4.617823600769043, + "step": 642 + }, + { + "epoch": 8.936653560506771, + "grad_norm": 0.3368529677391052, + "learning_rate": 0.0006, + "loss": 4.617222785949707, + "step": 643 + }, + { + "epoch": 8.950633464394933, + "grad_norm": 0.3255428969860077, + "learning_rate": 0.0006, + "loss": 4.633878707885742, + "step": 644 + }, + { + "epoch": 8.964613368283093, + "grad_norm": 0.31394779682159424, + "learning_rate": 0.0006, + "loss": 4.642603874206543, + "step": 645 + }, + { + "epoch": 8.978593272171254, + "grad_norm": 0.29999351501464844, + "learning_rate": 0.0006, + "loss": 4.5925211906433105, + "step": 646 + }, + { + "epoch": 8.992573176059414, + "grad_norm": 0.309154748916626, + "learning_rate": 0.0006, + "loss": 4.61745023727417, + "step": 647 + }, + { + "epoch": 9.0, + "grad_norm": 0.2660452425479889, + "learning_rate": 0.0006, + "loss": 4.575107097625732, + "step": 648 + }, + { + "epoch": 9.0, + "eval_loss": 4.8804192543029785, + "eval_runtime": 45.0015, + "eval_samples_per_second": 54.265, + "eval_steps_per_second": 3.4, + "step": 648 + }, + { + "epoch": 9.013979903888162, + "grad_norm": 0.24159297347068787, + "learning_rate": 0.0006, + "loss": 4.571323871612549, + "step": 649 + }, + { + "epoch": 9.027959807776321, + "grad_norm": 0.2835831046104431, + "learning_rate": 0.0006, + "loss": 4.614255905151367, + "step": 650 + }, + { + "epoch": 9.041939711664483, + "grad_norm": 0.2646859288215637, + "learning_rate": 0.0006, + "loss": 4.578947067260742, + "step": 651 + }, + { + "epoch": 9.055919615552643, + "grad_norm": 0.28868553042411804, + "learning_rate": 0.0006, + "loss": 4.575977325439453, + "step": 652 + }, + { + "epoch": 9.069899519440805, + "grad_norm": 0.2899586856365204, + "learning_rate": 0.0006, + "loss": 4.541798114776611, + "step": 653 + }, + { + "epoch": 9.083879423328964, + "grad_norm": 0.32786068320274353, + "learning_rate": 0.0006, + "loss": 4.575140953063965, + "step": 654 + }, + { + "epoch": 9.097859327217126, + "grad_norm": 0.35675594210624695, + "learning_rate": 0.0006, + "loss": 4.58184814453125, + "step": 655 + }, + { + "epoch": 9.111839231105286, + "grad_norm": 0.3380381166934967, + "learning_rate": 0.0006, + "loss": 4.546271324157715, + "step": 656 + }, + { + "epoch": 9.125819134993447, + "grad_norm": 0.3035511374473572, + "learning_rate": 0.0006, + "loss": 4.591629981994629, + "step": 657 + }, + { + "epoch": 9.139799038881607, + "grad_norm": 0.2733091711997986, + "learning_rate": 0.0006, + "loss": 4.559020042419434, + "step": 658 + }, + { + "epoch": 9.153778942769769, + "grad_norm": 0.2870676815509796, + "learning_rate": 0.0006, + "loss": 4.552787780761719, + "step": 659 + }, + { + "epoch": 9.167758846657929, + "grad_norm": 0.37471064925193787, + "learning_rate": 0.0006, + "loss": 4.572757244110107, + "step": 660 + }, + { + "epoch": 9.18173875054609, + "grad_norm": 0.37889063358306885, + "learning_rate": 0.0006, + "loss": 4.573302268981934, + "step": 661 + }, + { + "epoch": 9.19571865443425, + "grad_norm": 0.29983851313591003, + "learning_rate": 0.0006, + "loss": 4.571202754974365, + "step": 662 + }, + { + "epoch": 9.209698558322412, + "grad_norm": 0.27595147490501404, + "learning_rate": 0.0006, + "loss": 4.529508590698242, + "step": 663 + }, + { + "epoch": 9.223678462210572, + "grad_norm": 0.22693437337875366, + "learning_rate": 0.0006, + "loss": 4.572267532348633, + "step": 664 + }, + { + "epoch": 9.237658366098733, + "grad_norm": 0.27147138118743896, + "learning_rate": 0.0006, + "loss": 4.529747009277344, + "step": 665 + }, + { + "epoch": 9.251638269986893, + "grad_norm": 0.24952703714370728, + "learning_rate": 0.0006, + "loss": 4.553647994995117, + "step": 666 + }, + { + "epoch": 9.265618173875055, + "grad_norm": 0.3086707592010498, + "learning_rate": 0.0006, + "loss": 4.494636058807373, + "step": 667 + }, + { + "epoch": 9.279598077763215, + "grad_norm": 0.3265218138694763, + "learning_rate": 0.0006, + "loss": 4.522481918334961, + "step": 668 + }, + { + "epoch": 9.293577981651376, + "grad_norm": 0.2744608223438263, + "learning_rate": 0.0006, + "loss": 4.544595241546631, + "step": 669 + }, + { + "epoch": 9.307557885539538, + "grad_norm": 0.26698485016822815, + "learning_rate": 0.0006, + "loss": 4.506407260894775, + "step": 670 + }, + { + "epoch": 9.321537789427698, + "grad_norm": 0.2775942087173462, + "learning_rate": 0.0006, + "loss": 4.534619331359863, + "step": 671 + }, + { + "epoch": 9.33551769331586, + "grad_norm": 0.2421862781047821, + "learning_rate": 0.0006, + "loss": 4.523318290710449, + "step": 672 + }, + { + "epoch": 9.349497597204019, + "grad_norm": 0.2756497263908386, + "learning_rate": 0.0006, + "loss": 4.517561912536621, + "step": 673 + }, + { + "epoch": 9.36347750109218, + "grad_norm": 0.28845369815826416, + "learning_rate": 0.0006, + "loss": 4.530844688415527, + "step": 674 + }, + { + "epoch": 9.37745740498034, + "grad_norm": 0.32285866141319275, + "learning_rate": 0.0006, + "loss": 4.55369758605957, + "step": 675 + }, + { + "epoch": 9.391437308868502, + "grad_norm": 0.3726065754890442, + "learning_rate": 0.0006, + "loss": 4.524348258972168, + "step": 676 + }, + { + "epoch": 9.405417212756662, + "grad_norm": 0.39524078369140625, + "learning_rate": 0.0006, + "loss": 4.535778045654297, + "step": 677 + }, + { + "epoch": 9.419397116644824, + "grad_norm": 0.3859797716140747, + "learning_rate": 0.0006, + "loss": 4.538474082946777, + "step": 678 + }, + { + "epoch": 9.433377020532983, + "grad_norm": 0.36151406168937683, + "learning_rate": 0.0006, + "loss": 4.54434061050415, + "step": 679 + }, + { + "epoch": 9.447356924421145, + "grad_norm": 0.40345999598503113, + "learning_rate": 0.0006, + "loss": 4.532961845397949, + "step": 680 + }, + { + "epoch": 9.461336828309305, + "grad_norm": 0.38864144682884216, + "learning_rate": 0.0006, + "loss": 4.567630767822266, + "step": 681 + }, + { + "epoch": 9.475316732197467, + "grad_norm": 0.3816355764865875, + "learning_rate": 0.0006, + "loss": 4.535771369934082, + "step": 682 + }, + { + "epoch": 9.489296636085626, + "grad_norm": 0.38756558299064636, + "learning_rate": 0.0006, + "loss": 4.4971089363098145, + "step": 683 + }, + { + "epoch": 9.503276539973788, + "grad_norm": 0.4572933614253998, + "learning_rate": 0.0006, + "loss": 4.534860134124756, + "step": 684 + }, + { + "epoch": 9.517256443861948, + "grad_norm": 0.42368650436401367, + "learning_rate": 0.0006, + "loss": 4.542638301849365, + "step": 685 + }, + { + "epoch": 9.53123634775011, + "grad_norm": 0.36939486861228943, + "learning_rate": 0.0006, + "loss": 4.571430206298828, + "step": 686 + }, + { + "epoch": 9.54521625163827, + "grad_norm": 0.3900398313999176, + "learning_rate": 0.0006, + "loss": 4.544435501098633, + "step": 687 + }, + { + "epoch": 9.55919615552643, + "grad_norm": 0.37829288840293884, + "learning_rate": 0.0006, + "loss": 4.564268112182617, + "step": 688 + }, + { + "epoch": 9.57317605941459, + "grad_norm": 0.3553886115550995, + "learning_rate": 0.0006, + "loss": 4.5373430252075195, + "step": 689 + }, + { + "epoch": 9.587155963302752, + "grad_norm": 0.3613419532775879, + "learning_rate": 0.0006, + "loss": 4.559074401855469, + "step": 690 + }, + { + "epoch": 9.601135867190912, + "grad_norm": 0.32644546031951904, + "learning_rate": 0.0006, + "loss": 4.533667087554932, + "step": 691 + }, + { + "epoch": 9.615115771079074, + "grad_norm": 0.3264399468898773, + "learning_rate": 0.0006, + "loss": 4.508299350738525, + "step": 692 + }, + { + "epoch": 9.629095674967235, + "grad_norm": 0.3534526526927948, + "learning_rate": 0.0006, + "loss": 4.542442798614502, + "step": 693 + }, + { + "epoch": 9.643075578855395, + "grad_norm": 0.3333452343940735, + "learning_rate": 0.0006, + "loss": 4.497692584991455, + "step": 694 + }, + { + "epoch": 9.657055482743557, + "grad_norm": 0.3214292526245117, + "learning_rate": 0.0006, + "loss": 4.512363433837891, + "step": 695 + }, + { + "epoch": 9.671035386631717, + "grad_norm": 0.2805672585964203, + "learning_rate": 0.0006, + "loss": 4.496874809265137, + "step": 696 + }, + { + "epoch": 9.685015290519878, + "grad_norm": 0.2618725895881653, + "learning_rate": 0.0006, + "loss": 4.51375675201416, + "step": 697 + }, + { + "epoch": 9.698995194408038, + "grad_norm": 0.2556597888469696, + "learning_rate": 0.0006, + "loss": 4.512338638305664, + "step": 698 + }, + { + "epoch": 9.7129750982962, + "grad_norm": 0.23784305155277252, + "learning_rate": 0.0006, + "loss": 4.486503601074219, + "step": 699 + }, + { + "epoch": 9.72695500218436, + "grad_norm": 0.2240338921546936, + "learning_rate": 0.0006, + "loss": 4.486850261688232, + "step": 700 + }, + { + "epoch": 9.740934906072521, + "grad_norm": 0.24686725437641144, + "learning_rate": 0.0006, + "loss": 4.501359462738037, + "step": 701 + }, + { + "epoch": 9.754914809960681, + "grad_norm": 0.20819595456123352, + "learning_rate": 0.0006, + "loss": 4.495186805725098, + "step": 702 + }, + { + "epoch": 9.768894713848843, + "grad_norm": 0.21858957409858704, + "learning_rate": 0.0006, + "loss": 4.475093364715576, + "step": 703 + }, + { + "epoch": 9.782874617737003, + "grad_norm": 0.22676466405391693, + "learning_rate": 0.0006, + "loss": 4.4702534675598145, + "step": 704 + }, + { + "epoch": 9.796854521625164, + "grad_norm": 0.18317611515522003, + "learning_rate": 0.0006, + "loss": 4.471231937408447, + "step": 705 + }, + { + "epoch": 9.810834425513324, + "grad_norm": 0.20979148149490356, + "learning_rate": 0.0006, + "loss": 4.454103946685791, + "step": 706 + }, + { + "epoch": 9.824814329401486, + "grad_norm": 0.2146051526069641, + "learning_rate": 0.0006, + "loss": 4.505178928375244, + "step": 707 + }, + { + "epoch": 9.838794233289645, + "grad_norm": 0.2344852089881897, + "learning_rate": 0.0006, + "loss": 4.437984943389893, + "step": 708 + }, + { + "epoch": 9.852774137177807, + "grad_norm": 0.26532089710235596, + "learning_rate": 0.0006, + "loss": 4.477126121520996, + "step": 709 + }, + { + "epoch": 9.866754041065967, + "grad_norm": 0.2737913131713867, + "learning_rate": 0.0006, + "loss": 4.498421669006348, + "step": 710 + }, + { + "epoch": 9.880733944954128, + "grad_norm": 0.26651278138160706, + "learning_rate": 0.0006, + "loss": 4.480839729309082, + "step": 711 + }, + { + "epoch": 9.89471384884229, + "grad_norm": 0.26576584577560425, + "learning_rate": 0.0006, + "loss": 4.490936279296875, + "step": 712 + }, + { + "epoch": 9.90869375273045, + "grad_norm": 0.22483965754508972, + "learning_rate": 0.0006, + "loss": 4.477953910827637, + "step": 713 + }, + { + "epoch": 9.922673656618612, + "grad_norm": 0.23576045036315918, + "learning_rate": 0.0006, + "loss": 4.4731292724609375, + "step": 714 + }, + { + "epoch": 9.936653560506771, + "grad_norm": 0.2731139361858368, + "learning_rate": 0.0006, + "loss": 4.441622734069824, + "step": 715 + }, + { + "epoch": 9.950633464394933, + "grad_norm": 0.2677643597126007, + "learning_rate": 0.0006, + "loss": 4.49604606628418, + "step": 716 + }, + { + "epoch": 9.964613368283093, + "grad_norm": 0.21940895915031433, + "learning_rate": 0.0006, + "loss": 4.485573768615723, + "step": 717 + }, + { + "epoch": 9.978593272171254, + "grad_norm": 0.2060987651348114, + "learning_rate": 0.0006, + "loss": 4.482657432556152, + "step": 718 + }, + { + "epoch": 9.992573176059414, + "grad_norm": 0.22163978219032288, + "learning_rate": 0.0006, + "loss": 4.478459358215332, + "step": 719 + }, + { + "epoch": 10.0, + "grad_norm": 0.2505086064338684, + "learning_rate": 0.0006, + "loss": 4.4393510818481445, + "step": 720 + }, + { + "epoch": 10.0, + "eval_loss": 4.695676803588867, + "eval_runtime": 49.0751, + "eval_samples_per_second": 49.76, + "eval_steps_per_second": 3.118, + "step": 720 + }, + { + "epoch": 10.013979903888162, + "grad_norm": 0.23820190131664276, + "learning_rate": 0.0006, + "loss": 4.437685489654541, + "step": 721 + }, + { + "epoch": 10.027959807776321, + "grad_norm": 0.2220371812582016, + "learning_rate": 0.0006, + "loss": 4.449873924255371, + "step": 722 + }, + { + "epoch": 10.041939711664483, + "grad_norm": 0.20369848608970642, + "learning_rate": 0.0006, + "loss": 4.448882579803467, + "step": 723 + }, + { + "epoch": 10.055919615552643, + "grad_norm": 0.2360001504421234, + "learning_rate": 0.0006, + "loss": 4.399251937866211, + "step": 724 + }, + { + "epoch": 10.069899519440805, + "grad_norm": 0.23537491261959076, + "learning_rate": 0.0006, + "loss": 4.442960739135742, + "step": 725 + }, + { + "epoch": 10.083879423328964, + "grad_norm": 0.24433870613574982, + "learning_rate": 0.0006, + "loss": 4.44808292388916, + "step": 726 + }, + { + "epoch": 10.097859327217126, + "grad_norm": 0.3406696021556854, + "learning_rate": 0.0006, + "loss": 4.443426132202148, + "step": 727 + }, + { + "epoch": 10.111839231105286, + "grad_norm": 0.4102286100387573, + "learning_rate": 0.0006, + "loss": 4.424919605255127, + "step": 728 + }, + { + "epoch": 10.125819134993447, + "grad_norm": 0.36462604999542236, + "learning_rate": 0.0006, + "loss": 4.45366907119751, + "step": 729 + }, + { + "epoch": 10.139799038881607, + "grad_norm": 0.4374827444553375, + "learning_rate": 0.0006, + "loss": 4.415630340576172, + "step": 730 + }, + { + "epoch": 10.153778942769769, + "grad_norm": 0.45248138904571533, + "learning_rate": 0.0006, + "loss": 4.448849678039551, + "step": 731 + }, + { + "epoch": 10.167758846657929, + "grad_norm": 0.3806457221508026, + "learning_rate": 0.0006, + "loss": 4.443390846252441, + "step": 732 + }, + { + "epoch": 10.18173875054609, + "grad_norm": 0.3491523861885071, + "learning_rate": 0.0006, + "loss": 4.4648637771606445, + "step": 733 + }, + { + "epoch": 10.19571865443425, + "grad_norm": 0.3327210247516632, + "learning_rate": 0.0006, + "loss": 4.460919380187988, + "step": 734 + }, + { + "epoch": 10.209698558322412, + "grad_norm": 0.29772236943244934, + "learning_rate": 0.0006, + "loss": 4.45159912109375, + "step": 735 + }, + { + "epoch": 10.223678462210572, + "grad_norm": 0.33083397150039673, + "learning_rate": 0.0006, + "loss": 4.463382720947266, + "step": 736 + }, + { + "epoch": 10.237658366098733, + "grad_norm": 0.3930598795413971, + "learning_rate": 0.0006, + "loss": 4.434510231018066, + "step": 737 + }, + { + "epoch": 10.251638269986893, + "grad_norm": 0.4342896044254303, + "learning_rate": 0.0006, + "loss": 4.451700210571289, + "step": 738 + }, + { + "epoch": 10.265618173875055, + "grad_norm": 0.4544043242931366, + "learning_rate": 0.0006, + "loss": 4.437224388122559, + "step": 739 + }, + { + "epoch": 10.279598077763215, + "grad_norm": 0.4487038254737854, + "learning_rate": 0.0006, + "loss": 4.46157693862915, + "step": 740 + }, + { + "epoch": 10.293577981651376, + "grad_norm": 0.4420500695705414, + "learning_rate": 0.0006, + "loss": 4.399561405181885, + "step": 741 + }, + { + "epoch": 10.307557885539538, + "grad_norm": 0.4167289435863495, + "learning_rate": 0.0006, + "loss": 4.41792106628418, + "step": 742 + }, + { + "epoch": 10.321537789427698, + "grad_norm": 0.3186971843242645, + "learning_rate": 0.0006, + "loss": 4.435683250427246, + "step": 743 + }, + { + "epoch": 10.33551769331586, + "grad_norm": 0.3077184855937958, + "learning_rate": 0.0006, + "loss": 4.481947898864746, + "step": 744 + }, + { + "epoch": 10.349497597204019, + "grad_norm": 0.26811280846595764, + "learning_rate": 0.0006, + "loss": 4.4339447021484375, + "step": 745 + }, + { + "epoch": 10.36347750109218, + "grad_norm": 0.28448057174682617, + "learning_rate": 0.0006, + "loss": 4.441644668579102, + "step": 746 + }, + { + "epoch": 10.37745740498034, + "grad_norm": 0.30731502175331116, + "learning_rate": 0.0006, + "loss": 4.428773880004883, + "step": 747 + }, + { + "epoch": 10.391437308868502, + "grad_norm": 0.28036001324653625, + "learning_rate": 0.0006, + "loss": 4.4433135986328125, + "step": 748 + }, + { + "epoch": 10.405417212756662, + "grad_norm": 0.2882847189903259, + "learning_rate": 0.0006, + "loss": 4.433401107788086, + "step": 749 + }, + { + "epoch": 10.419397116644824, + "grad_norm": 0.23622776567935944, + "learning_rate": 0.0006, + "loss": 4.444611549377441, + "step": 750 + }, + { + "epoch": 10.433377020532983, + "grad_norm": 0.2306167632341385, + "learning_rate": 0.0006, + "loss": 4.397875785827637, + "step": 751 + }, + { + "epoch": 10.447356924421145, + "grad_norm": 0.22725090384483337, + "learning_rate": 0.0006, + "loss": 4.429759502410889, + "step": 752 + }, + { + "epoch": 10.461336828309305, + "grad_norm": 0.250709593296051, + "learning_rate": 0.0006, + "loss": 4.415618896484375, + "step": 753 + }, + { + "epoch": 10.475316732197467, + "grad_norm": 0.22341276705265045, + "learning_rate": 0.0006, + "loss": 4.389362335205078, + "step": 754 + }, + { + "epoch": 10.489296636085626, + "grad_norm": 0.22595296800136566, + "learning_rate": 0.0006, + "loss": 4.383584022521973, + "step": 755 + }, + { + "epoch": 10.503276539973788, + "grad_norm": 0.24277575314044952, + "learning_rate": 0.0006, + "loss": 4.403777599334717, + "step": 756 + }, + { + "epoch": 10.517256443861948, + "grad_norm": 0.2670708894729614, + "learning_rate": 0.0006, + "loss": 4.398499011993408, + "step": 757 + }, + { + "epoch": 10.53123634775011, + "grad_norm": 0.2640696167945862, + "learning_rate": 0.0006, + "loss": 4.426726818084717, + "step": 758 + }, + { + "epoch": 10.54521625163827, + "grad_norm": 0.2248653769493103, + "learning_rate": 0.0006, + "loss": 4.400103569030762, + "step": 759 + }, + { + "epoch": 10.55919615552643, + "grad_norm": 0.21466240286827087, + "learning_rate": 0.0006, + "loss": 4.404158592224121, + "step": 760 + }, + { + "epoch": 10.57317605941459, + "grad_norm": 0.236923947930336, + "learning_rate": 0.0006, + "loss": 4.37059211730957, + "step": 761 + }, + { + "epoch": 10.587155963302752, + "grad_norm": 0.2515387535095215, + "learning_rate": 0.0006, + "loss": 4.415055274963379, + "step": 762 + }, + { + "epoch": 10.601135867190912, + "grad_norm": 0.23461885750293732, + "learning_rate": 0.0006, + "loss": 4.375036239624023, + "step": 763 + }, + { + "epoch": 10.615115771079074, + "grad_norm": 0.20975761115550995, + "learning_rate": 0.0006, + "loss": 4.3903398513793945, + "step": 764 + }, + { + "epoch": 10.629095674967235, + "grad_norm": 0.19859997928142548, + "learning_rate": 0.0006, + "loss": 4.379380226135254, + "step": 765 + }, + { + "epoch": 10.643075578855395, + "grad_norm": 0.22310325503349304, + "learning_rate": 0.0006, + "loss": 4.382110595703125, + "step": 766 + }, + { + "epoch": 10.657055482743557, + "grad_norm": 0.23940646648406982, + "learning_rate": 0.0006, + "loss": 4.393403053283691, + "step": 767 + }, + { + "epoch": 10.671035386631717, + "grad_norm": 0.2230468988418579, + "learning_rate": 0.0006, + "loss": 4.391970634460449, + "step": 768 + }, + { + "epoch": 10.685015290519878, + "grad_norm": 0.18139775097370148, + "learning_rate": 0.0006, + "loss": 4.399993896484375, + "step": 769 + }, + { + "epoch": 10.698995194408038, + "grad_norm": 0.19936902821063995, + "learning_rate": 0.0006, + "loss": 4.373854160308838, + "step": 770 + }, + { + "epoch": 10.7129750982962, + "grad_norm": 0.22132465243339539, + "learning_rate": 0.0006, + "loss": 4.377530097961426, + "step": 771 + }, + { + "epoch": 10.72695500218436, + "grad_norm": 0.24254944920539856, + "learning_rate": 0.0006, + "loss": 4.398683547973633, + "step": 772 + }, + { + "epoch": 10.740934906072521, + "grad_norm": 0.2666397988796234, + "learning_rate": 0.0006, + "loss": 4.3879899978637695, + "step": 773 + }, + { + "epoch": 10.754914809960681, + "grad_norm": 0.24728631973266602, + "learning_rate": 0.0006, + "loss": 4.356976509094238, + "step": 774 + }, + { + "epoch": 10.768894713848843, + "grad_norm": 0.2612453103065491, + "learning_rate": 0.0006, + "loss": 4.391525745391846, + "step": 775 + }, + { + "epoch": 10.782874617737003, + "grad_norm": 0.24060510098934174, + "learning_rate": 0.0006, + "loss": 4.376985549926758, + "step": 776 + }, + { + "epoch": 10.796854521625164, + "grad_norm": 0.22708238661289215, + "learning_rate": 0.0006, + "loss": 4.368545055389404, + "step": 777 + }, + { + "epoch": 10.810834425513324, + "grad_norm": 0.26931291818618774, + "learning_rate": 0.0006, + "loss": 4.369227409362793, + "step": 778 + }, + { + "epoch": 10.824814329401486, + "grad_norm": 0.265288770198822, + "learning_rate": 0.0006, + "loss": 4.378131866455078, + "step": 779 + }, + { + "epoch": 10.838794233289645, + "grad_norm": 0.3015305697917938, + "learning_rate": 0.0006, + "loss": 4.376267910003662, + "step": 780 + }, + { + "epoch": 10.852774137177807, + "grad_norm": 0.3345746099948883, + "learning_rate": 0.0006, + "loss": 4.3751420974731445, + "step": 781 + }, + { + "epoch": 10.866754041065967, + "grad_norm": 0.32446005940437317, + "learning_rate": 0.0006, + "loss": 4.370899200439453, + "step": 782 + }, + { + "epoch": 10.880733944954128, + "grad_norm": 0.27070069313049316, + "learning_rate": 0.0006, + "loss": 4.391958236694336, + "step": 783 + }, + { + "epoch": 10.89471384884229, + "grad_norm": 0.25584667921066284, + "learning_rate": 0.0006, + "loss": 4.407493591308594, + "step": 784 + }, + { + "epoch": 10.90869375273045, + "grad_norm": 0.2710244655609131, + "learning_rate": 0.0006, + "loss": 4.374400615692139, + "step": 785 + }, + { + "epoch": 10.922673656618612, + "grad_norm": 0.32413622736930847, + "learning_rate": 0.0006, + "loss": 4.379607200622559, + "step": 786 + }, + { + "epoch": 10.936653560506771, + "grad_norm": 0.3253782391548157, + "learning_rate": 0.0006, + "loss": 4.376441955566406, + "step": 787 + }, + { + "epoch": 10.950633464394933, + "grad_norm": 0.30534613132476807, + "learning_rate": 0.0006, + "loss": 4.382739067077637, + "step": 788 + }, + { + "epoch": 10.964613368283093, + "grad_norm": 0.35726621747016907, + "learning_rate": 0.0006, + "loss": 4.3765869140625, + "step": 789 + }, + { + "epoch": 10.978593272171254, + "grad_norm": 0.32763028144836426, + "learning_rate": 0.0006, + "loss": 4.391537189483643, + "step": 790 + }, + { + "epoch": 10.992573176059414, + "grad_norm": 0.31811195611953735, + "learning_rate": 0.0006, + "loss": 4.371829032897949, + "step": 791 + }, + { + "epoch": 11.0, + "grad_norm": 0.37317267060279846, + "learning_rate": 0.0006, + "loss": 4.381916522979736, + "step": 792 + }, + { + "epoch": 11.0, + "eval_loss": 4.588687896728516, + "eval_runtime": 44.8041, + "eval_samples_per_second": 54.504, + "eval_steps_per_second": 3.415, + "step": 792 + }, + { + "epoch": 11.013979903888162, + "grad_norm": 0.37882938981056213, + "learning_rate": 0.0006, + "loss": 4.3463640213012695, + "step": 793 + }, + { + "epoch": 11.027959807776321, + "grad_norm": 0.34719496965408325, + "learning_rate": 0.0006, + "loss": 4.329861640930176, + "step": 794 + }, + { + "epoch": 11.041939711664483, + "grad_norm": 0.36161214113235474, + "learning_rate": 0.0006, + "loss": 4.3287835121154785, + "step": 795 + }, + { + "epoch": 11.055919615552643, + "grad_norm": 0.3743649125099182, + "learning_rate": 0.0006, + "loss": 4.334251403808594, + "step": 796 + }, + { + "epoch": 11.069899519440805, + "grad_norm": 0.32266443967819214, + "learning_rate": 0.0006, + "loss": 4.364782810211182, + "step": 797 + }, + { + "epoch": 11.083879423328964, + "grad_norm": 0.27460047602653503, + "learning_rate": 0.0006, + "loss": 4.348380088806152, + "step": 798 + }, + { + "epoch": 11.097859327217126, + "grad_norm": 0.30498892068862915, + "learning_rate": 0.0006, + "loss": 4.347856521606445, + "step": 799 + }, + { + "epoch": 11.111839231105286, + "grad_norm": 0.29740771651268005, + "learning_rate": 0.0006, + "loss": 4.343471050262451, + "step": 800 + }, + { + "epoch": 11.125819134993447, + "grad_norm": 0.3004681169986725, + "learning_rate": 0.0006, + "loss": 4.337590217590332, + "step": 801 + }, + { + "epoch": 11.139799038881607, + "grad_norm": 0.3000192642211914, + "learning_rate": 0.0006, + "loss": 4.349949836730957, + "step": 802 + }, + { + "epoch": 11.153778942769769, + "grad_norm": 0.27461889386177063, + "learning_rate": 0.0006, + "loss": 4.338934898376465, + "step": 803 + }, + { + "epoch": 11.167758846657929, + "grad_norm": 0.2856169641017914, + "learning_rate": 0.0006, + "loss": 4.320754051208496, + "step": 804 + }, + { + "epoch": 11.18173875054609, + "grad_norm": 0.29822713136672974, + "learning_rate": 0.0006, + "loss": 4.357949733734131, + "step": 805 + }, + { + "epoch": 11.19571865443425, + "grad_norm": 0.34061339497566223, + "learning_rate": 0.0006, + "loss": 4.327282905578613, + "step": 806 + }, + { + "epoch": 11.209698558322412, + "grad_norm": 0.3379063010215759, + "learning_rate": 0.0006, + "loss": 4.355471611022949, + "step": 807 + }, + { + "epoch": 11.223678462210572, + "grad_norm": 0.2859216630458832, + "learning_rate": 0.0006, + "loss": 4.352344989776611, + "step": 808 + }, + { + "epoch": 11.237658366098733, + "grad_norm": 0.29522669315338135, + "learning_rate": 0.0006, + "loss": 4.349186897277832, + "step": 809 + }, + { + "epoch": 11.251638269986893, + "grad_norm": 0.273798406124115, + "learning_rate": 0.0006, + "loss": 4.342379570007324, + "step": 810 + }, + { + "epoch": 11.265618173875055, + "grad_norm": 0.25298982858657837, + "learning_rate": 0.0006, + "loss": 4.358835220336914, + "step": 811 + }, + { + "epoch": 11.279598077763215, + "grad_norm": 0.2170463651418686, + "learning_rate": 0.0006, + "loss": 4.3422017097473145, + "step": 812 + }, + { + "epoch": 11.293577981651376, + "grad_norm": 0.24855731427669525, + "learning_rate": 0.0006, + "loss": 4.322849750518799, + "step": 813 + }, + { + "epoch": 11.307557885539538, + "grad_norm": 0.22564345598220825, + "learning_rate": 0.0006, + "loss": 4.316864967346191, + "step": 814 + }, + { + "epoch": 11.321537789427698, + "grad_norm": 0.21532197296619415, + "learning_rate": 0.0006, + "loss": 4.326743125915527, + "step": 815 + }, + { + "epoch": 11.33551769331586, + "grad_norm": 0.20514146983623505, + "learning_rate": 0.0006, + "loss": 4.326531887054443, + "step": 816 + }, + { + "epoch": 11.349497597204019, + "grad_norm": 0.19035090506076813, + "learning_rate": 0.0006, + "loss": 4.318154335021973, + "step": 817 + }, + { + "epoch": 11.36347750109218, + "grad_norm": 0.17889662086963654, + "learning_rate": 0.0006, + "loss": 4.35410213470459, + "step": 818 + }, + { + "epoch": 11.37745740498034, + "grad_norm": 0.20564863085746765, + "learning_rate": 0.0006, + "loss": 4.350226879119873, + "step": 819 + }, + { + "epoch": 11.391437308868502, + "grad_norm": 0.2412603348493576, + "learning_rate": 0.0006, + "loss": 4.325137138366699, + "step": 820 + }, + { + "epoch": 11.405417212756662, + "grad_norm": 0.2603496015071869, + "learning_rate": 0.0006, + "loss": 4.335752487182617, + "step": 821 + }, + { + "epoch": 11.419397116644824, + "grad_norm": 0.2968119978904724, + "learning_rate": 0.0006, + "loss": 4.3317670822143555, + "step": 822 + }, + { + "epoch": 11.433377020532983, + "grad_norm": 0.3280937969684601, + "learning_rate": 0.0006, + "loss": 4.322279453277588, + "step": 823 + }, + { + "epoch": 11.447356924421145, + "grad_norm": 0.3598847985267639, + "learning_rate": 0.0006, + "loss": 4.312255859375, + "step": 824 + }, + { + "epoch": 11.461336828309305, + "grad_norm": 0.3996485471725464, + "learning_rate": 0.0006, + "loss": 4.327103614807129, + "step": 825 + }, + { + "epoch": 11.475316732197467, + "grad_norm": 0.4352041780948639, + "learning_rate": 0.0006, + "loss": 4.368639945983887, + "step": 826 + }, + { + "epoch": 11.489296636085626, + "grad_norm": 0.4451918601989746, + "learning_rate": 0.0006, + "loss": 4.335113048553467, + "step": 827 + }, + { + "epoch": 11.503276539973788, + "grad_norm": 0.4403933584690094, + "learning_rate": 0.0006, + "loss": 4.369889259338379, + "step": 828 + }, + { + "epoch": 11.517256443861948, + "grad_norm": 0.34862443804740906, + "learning_rate": 0.0006, + "loss": 4.316292762756348, + "step": 829 + }, + { + "epoch": 11.53123634775011, + "grad_norm": 0.3240634500980377, + "learning_rate": 0.0006, + "loss": 4.328078746795654, + "step": 830 + }, + { + "epoch": 11.54521625163827, + "grad_norm": 0.2445751428604126, + "learning_rate": 0.0006, + "loss": 4.291940689086914, + "step": 831 + }, + { + "epoch": 11.55919615552643, + "grad_norm": 0.24376554787158966, + "learning_rate": 0.0006, + "loss": 4.339217662811279, + "step": 832 + }, + { + "epoch": 11.57317605941459, + "grad_norm": 0.22419725358486176, + "learning_rate": 0.0006, + "loss": 4.2887468338012695, + "step": 833 + }, + { + "epoch": 11.587155963302752, + "grad_norm": 0.22318261861801147, + "learning_rate": 0.0006, + "loss": 4.298492908477783, + "step": 834 + }, + { + "epoch": 11.601135867190912, + "grad_norm": 0.2357342392206192, + "learning_rate": 0.0006, + "loss": 4.328692436218262, + "step": 835 + }, + { + "epoch": 11.615115771079074, + "grad_norm": 0.25450602173805237, + "learning_rate": 0.0006, + "loss": 4.360058784484863, + "step": 836 + }, + { + "epoch": 11.629095674967235, + "grad_norm": 0.24540965259075165, + "learning_rate": 0.0006, + "loss": 4.311890602111816, + "step": 837 + }, + { + "epoch": 11.643075578855395, + "grad_norm": 0.2535638213157654, + "learning_rate": 0.0006, + "loss": 4.327730178833008, + "step": 838 + }, + { + "epoch": 11.657055482743557, + "grad_norm": 0.23063556849956512, + "learning_rate": 0.0006, + "loss": 4.303299903869629, + "step": 839 + }, + { + "epoch": 11.671035386631717, + "grad_norm": 0.21813632547855377, + "learning_rate": 0.0006, + "loss": 4.315352439880371, + "step": 840 + }, + { + "epoch": 11.685015290519878, + "grad_norm": 0.2170359194278717, + "learning_rate": 0.0006, + "loss": 4.278632164001465, + "step": 841 + }, + { + "epoch": 11.698995194408038, + "grad_norm": 0.21059377491474152, + "learning_rate": 0.0006, + "loss": 4.306049346923828, + "step": 842 + }, + { + "epoch": 11.7129750982962, + "grad_norm": 0.19872888922691345, + "learning_rate": 0.0006, + "loss": 4.3091535568237305, + "step": 843 + }, + { + "epoch": 11.72695500218436, + "grad_norm": 0.20059862732887268, + "learning_rate": 0.0006, + "loss": 4.2884063720703125, + "step": 844 + }, + { + "epoch": 11.740934906072521, + "grad_norm": 0.19952483475208282, + "learning_rate": 0.0006, + "loss": 4.293610572814941, + "step": 845 + }, + { + "epoch": 11.754914809960681, + "grad_norm": 0.19794537127017975, + "learning_rate": 0.0006, + "loss": 4.288822174072266, + "step": 846 + }, + { + "epoch": 11.768894713848843, + "grad_norm": 0.213914692401886, + "learning_rate": 0.0006, + "loss": 4.320849418640137, + "step": 847 + }, + { + "epoch": 11.782874617737003, + "grad_norm": 0.18500955402851105, + "learning_rate": 0.0006, + "loss": 4.29300594329834, + "step": 848 + }, + { + "epoch": 11.796854521625164, + "grad_norm": 0.19446656107902527, + "learning_rate": 0.0006, + "loss": 4.3079352378845215, + "step": 849 + }, + { + "epoch": 11.810834425513324, + "grad_norm": 0.22191768884658813, + "learning_rate": 0.0006, + "loss": 4.295967102050781, + "step": 850 + }, + { + "epoch": 11.824814329401486, + "grad_norm": 0.20748084783554077, + "learning_rate": 0.0006, + "loss": 4.332365989685059, + "step": 851 + }, + { + "epoch": 11.838794233289645, + "grad_norm": 0.20993955433368683, + "learning_rate": 0.0006, + "loss": 4.294618129730225, + "step": 852 + }, + { + "epoch": 11.852774137177807, + "grad_norm": 0.23506952822208405, + "learning_rate": 0.0006, + "loss": 4.313426971435547, + "step": 853 + }, + { + "epoch": 11.866754041065967, + "grad_norm": 0.2379443347454071, + "learning_rate": 0.0006, + "loss": 4.297664642333984, + "step": 854 + }, + { + "epoch": 11.880733944954128, + "grad_norm": 0.2127852737903595, + "learning_rate": 0.0006, + "loss": 4.2807698249816895, + "step": 855 + }, + { + "epoch": 11.89471384884229, + "grad_norm": 0.2125532180070877, + "learning_rate": 0.0006, + "loss": 4.310990333557129, + "step": 856 + }, + { + "epoch": 11.90869375273045, + "grad_norm": 0.1996062994003296, + "learning_rate": 0.0006, + "loss": 4.253237724304199, + "step": 857 + }, + { + "epoch": 11.922673656618612, + "grad_norm": 0.20747603476047516, + "learning_rate": 0.0006, + "loss": 4.294193267822266, + "step": 858 + }, + { + "epoch": 11.936653560506771, + "grad_norm": 0.24082425236701965, + "learning_rate": 0.0006, + "loss": 4.269967079162598, + "step": 859 + }, + { + "epoch": 11.950633464394933, + "grad_norm": 0.28993573784828186, + "learning_rate": 0.0006, + "loss": 4.294550895690918, + "step": 860 + }, + { + "epoch": 11.964613368283093, + "grad_norm": 0.29576948285102844, + "learning_rate": 0.0006, + "loss": 4.3188252449035645, + "step": 861 + }, + { + "epoch": 11.978593272171254, + "grad_norm": 0.2754935026168823, + "learning_rate": 0.0006, + "loss": 4.312817573547363, + "step": 862 + }, + { + "epoch": 11.992573176059414, + "grad_norm": 0.3062523305416107, + "learning_rate": 0.0006, + "loss": 4.288214683532715, + "step": 863 + }, + { + "epoch": 12.0, + "grad_norm": 0.3367644250392914, + "learning_rate": 0.0006, + "loss": 4.314888954162598, + "step": 864 + }, + { + "epoch": 12.0, + "eval_loss": 4.516861438751221, + "eval_runtime": 44.2584, + "eval_samples_per_second": 55.176, + "eval_steps_per_second": 3.457, + "step": 864 + }, + { + "epoch": 12.013979903888162, + "grad_norm": 0.2976512014865875, + "learning_rate": 0.0006, + "loss": 4.278797149658203, + "step": 865 + }, + { + "epoch": 12.027959807776321, + "grad_norm": 0.32217127084732056, + "learning_rate": 0.0006, + "loss": 4.2823615074157715, + "step": 866 + }, + { + "epoch": 12.041939711664483, + "grad_norm": 0.31538400053977966, + "learning_rate": 0.0006, + "loss": 4.252805709838867, + "step": 867 + }, + { + "epoch": 12.055919615552643, + "grad_norm": 0.3501375913619995, + "learning_rate": 0.0006, + "loss": 4.276501655578613, + "step": 868 + }, + { + "epoch": 12.069899519440805, + "grad_norm": 0.3452056646347046, + "learning_rate": 0.0006, + "loss": 4.275739669799805, + "step": 869 + }, + { + "epoch": 12.083879423328964, + "grad_norm": 0.36963316798210144, + "learning_rate": 0.0006, + "loss": 4.3215227127075195, + "step": 870 + }, + { + "epoch": 12.097859327217126, + "grad_norm": 0.41605016589164734, + "learning_rate": 0.0006, + "loss": 4.28739595413208, + "step": 871 + }, + { + "epoch": 12.111839231105286, + "grad_norm": 0.37700653076171875, + "learning_rate": 0.0006, + "loss": 4.291154861450195, + "step": 872 + }, + { + "epoch": 12.125819134993447, + "grad_norm": 0.3194253444671631, + "learning_rate": 0.0006, + "loss": 4.259326934814453, + "step": 873 + }, + { + "epoch": 12.139799038881607, + "grad_norm": 0.31770631670951843, + "learning_rate": 0.0006, + "loss": 4.270082473754883, + "step": 874 + }, + { + "epoch": 12.153778942769769, + "grad_norm": 0.3748120069503784, + "learning_rate": 0.0006, + "loss": 4.2727274894714355, + "step": 875 + }, + { + "epoch": 12.167758846657929, + "grad_norm": 0.3821348547935486, + "learning_rate": 0.0006, + "loss": 4.2848286628723145, + "step": 876 + }, + { + "epoch": 12.18173875054609, + "grad_norm": 0.31894201040267944, + "learning_rate": 0.0006, + "loss": 4.289551258087158, + "step": 877 + }, + { + "epoch": 12.19571865443425, + "grad_norm": 0.2695826292037964, + "learning_rate": 0.0006, + "loss": 4.2797346115112305, + "step": 878 + }, + { + "epoch": 12.209698558322412, + "grad_norm": 0.23966269195079803, + "learning_rate": 0.0006, + "loss": 4.24021577835083, + "step": 879 + }, + { + "epoch": 12.223678462210572, + "grad_norm": 0.24342599511146545, + "learning_rate": 0.0006, + "loss": 4.277721881866455, + "step": 880 + }, + { + "epoch": 12.237658366098733, + "grad_norm": 0.2522958815097809, + "learning_rate": 0.0006, + "loss": 4.263946533203125, + "step": 881 + }, + { + "epoch": 12.251638269986893, + "grad_norm": 0.2708299458026886, + "learning_rate": 0.0006, + "loss": 4.274540901184082, + "step": 882 + }, + { + "epoch": 12.265618173875055, + "grad_norm": 0.2978788912296295, + "learning_rate": 0.0006, + "loss": 4.2674970626831055, + "step": 883 + }, + { + "epoch": 12.279598077763215, + "grad_norm": 0.2898774743080139, + "learning_rate": 0.0006, + "loss": 4.235060691833496, + "step": 884 + }, + { + "epoch": 12.293577981651376, + "grad_norm": 0.27941837906837463, + "learning_rate": 0.0006, + "loss": 4.284140586853027, + "step": 885 + }, + { + "epoch": 12.307557885539538, + "grad_norm": 0.25050559639930725, + "learning_rate": 0.0006, + "loss": 4.270134925842285, + "step": 886 + }, + { + "epoch": 12.321537789427698, + "grad_norm": 0.21867156028747559, + "learning_rate": 0.0006, + "loss": 4.241571426391602, + "step": 887 + }, + { + "epoch": 12.33551769331586, + "grad_norm": 0.24735847115516663, + "learning_rate": 0.0006, + "loss": 4.253087997436523, + "step": 888 + }, + { + "epoch": 12.349497597204019, + "grad_norm": 0.23069104552268982, + "learning_rate": 0.0006, + "loss": 4.258606910705566, + "step": 889 + }, + { + "epoch": 12.36347750109218, + "grad_norm": 0.2594369947910309, + "learning_rate": 0.0006, + "loss": 4.307351112365723, + "step": 890 + }, + { + "epoch": 12.37745740498034, + "grad_norm": 0.25349098443984985, + "learning_rate": 0.0006, + "loss": 4.264268398284912, + "step": 891 + }, + { + "epoch": 12.391437308868502, + "grad_norm": 0.2550840675830841, + "learning_rate": 0.0006, + "loss": 4.247092247009277, + "step": 892 + }, + { + "epoch": 12.405417212756662, + "grad_norm": 0.2107602059841156, + "learning_rate": 0.0006, + "loss": 4.240527153015137, + "step": 893 + }, + { + "epoch": 12.419397116644824, + "grad_norm": 0.2025548368692398, + "learning_rate": 0.0006, + "loss": 4.244686126708984, + "step": 894 + }, + { + "epoch": 12.433377020532983, + "grad_norm": 0.22061701118946075, + "learning_rate": 0.0006, + "loss": 4.233231544494629, + "step": 895 + }, + { + "epoch": 12.447356924421145, + "grad_norm": 0.19503085315227509, + "learning_rate": 0.0006, + "loss": 4.23851203918457, + "step": 896 + }, + { + "epoch": 12.461336828309305, + "grad_norm": 0.19313643872737885, + "learning_rate": 0.0006, + "loss": 4.190886497497559, + "step": 897 + }, + { + "epoch": 12.475316732197467, + "grad_norm": 0.21094176173210144, + "learning_rate": 0.0006, + "loss": 4.277888298034668, + "step": 898 + }, + { + "epoch": 12.489296636085626, + "grad_norm": 0.1980651170015335, + "learning_rate": 0.0006, + "loss": 4.251066207885742, + "step": 899 + }, + { + "epoch": 12.503276539973788, + "grad_norm": 0.179737389087677, + "learning_rate": 0.0006, + "loss": 4.194703102111816, + "step": 900 + }, + { + "epoch": 12.517256443861948, + "grad_norm": 0.19069281220436096, + "learning_rate": 0.0006, + "loss": 4.242412567138672, + "step": 901 + }, + { + "epoch": 12.53123634775011, + "grad_norm": 0.191154345870018, + "learning_rate": 0.0006, + "loss": 4.2432780265808105, + "step": 902 + }, + { + "epoch": 12.54521625163827, + "grad_norm": 0.19760103523731232, + "learning_rate": 0.0006, + "loss": 4.23294734954834, + "step": 903 + }, + { + "epoch": 12.55919615552643, + "grad_norm": 0.19982324540615082, + "learning_rate": 0.0006, + "loss": 4.249764442443848, + "step": 904 + }, + { + "epoch": 12.57317605941459, + "grad_norm": 0.1986108422279358, + "learning_rate": 0.0006, + "loss": 4.213435649871826, + "step": 905 + }, + { + "epoch": 12.587155963302752, + "grad_norm": 0.19727319478988647, + "learning_rate": 0.0006, + "loss": 4.247962951660156, + "step": 906 + }, + { + "epoch": 12.601135867190912, + "grad_norm": 0.23404482007026672, + "learning_rate": 0.0006, + "loss": 4.237396240234375, + "step": 907 + }, + { + "epoch": 12.615115771079074, + "grad_norm": 0.21136441826820374, + "learning_rate": 0.0006, + "loss": 4.236040115356445, + "step": 908 + }, + { + "epoch": 12.629095674967235, + "grad_norm": 0.2209048718214035, + "learning_rate": 0.0006, + "loss": 4.234212875366211, + "step": 909 + }, + { + "epoch": 12.643075578855395, + "grad_norm": 0.22120307385921478, + "learning_rate": 0.0006, + "loss": 4.2711076736450195, + "step": 910 + }, + { + "epoch": 12.657055482743557, + "grad_norm": 0.22733066976070404, + "learning_rate": 0.0006, + "loss": 4.231651306152344, + "step": 911 + }, + { + "epoch": 12.671035386631717, + "grad_norm": 0.2435602843761444, + "learning_rate": 0.0006, + "loss": 4.249372482299805, + "step": 912 + }, + { + "epoch": 12.685015290519878, + "grad_norm": 0.28881654143333435, + "learning_rate": 0.0006, + "loss": 4.2626051902771, + "step": 913 + }, + { + "epoch": 12.698995194408038, + "grad_norm": 0.3211199641227722, + "learning_rate": 0.0006, + "loss": 4.254220485687256, + "step": 914 + }, + { + "epoch": 12.7129750982962, + "grad_norm": 0.3118100166320801, + "learning_rate": 0.0006, + "loss": 4.233747959136963, + "step": 915 + }, + { + "epoch": 12.72695500218436, + "grad_norm": 0.33411866426467896, + "learning_rate": 0.0006, + "loss": 4.270386219024658, + "step": 916 + }, + { + "epoch": 12.740934906072521, + "grad_norm": 0.2968253195285797, + "learning_rate": 0.0006, + "loss": 4.242254257202148, + "step": 917 + }, + { + "epoch": 12.754914809960681, + "grad_norm": 0.2959132194519043, + "learning_rate": 0.0006, + "loss": 4.232100486755371, + "step": 918 + }, + { + "epoch": 12.768894713848843, + "grad_norm": 0.2729283273220062, + "learning_rate": 0.0006, + "loss": 4.233869552612305, + "step": 919 + }, + { + "epoch": 12.782874617737003, + "grad_norm": 0.2669033408164978, + "learning_rate": 0.0006, + "loss": 4.261008262634277, + "step": 920 + }, + { + "epoch": 12.796854521625164, + "grad_norm": 0.2738507091999054, + "learning_rate": 0.0006, + "loss": 4.2286763191223145, + "step": 921 + }, + { + "epoch": 12.810834425513324, + "grad_norm": 0.29105183482170105, + "learning_rate": 0.0006, + "loss": 4.281410217285156, + "step": 922 + }, + { + "epoch": 12.824814329401486, + "grad_norm": 0.31330201029777527, + "learning_rate": 0.0006, + "loss": 4.264181613922119, + "step": 923 + }, + { + "epoch": 12.838794233289645, + "grad_norm": 0.31324025988578796, + "learning_rate": 0.0006, + "loss": 4.250385284423828, + "step": 924 + }, + { + "epoch": 12.852774137177807, + "grad_norm": 0.2727925181388855, + "learning_rate": 0.0006, + "loss": 4.24821138381958, + "step": 925 + }, + { + "epoch": 12.866754041065967, + "grad_norm": 0.27350082993507385, + "learning_rate": 0.0006, + "loss": 4.230215072631836, + "step": 926 + }, + { + "epoch": 12.880733944954128, + "grad_norm": 0.2269950658082962, + "learning_rate": 0.0006, + "loss": 4.210305213928223, + "step": 927 + }, + { + "epoch": 12.89471384884229, + "grad_norm": 0.24667619168758392, + "learning_rate": 0.0006, + "loss": 4.239969253540039, + "step": 928 + }, + { + "epoch": 12.90869375273045, + "grad_norm": 0.22510501742362976, + "learning_rate": 0.0006, + "loss": 4.192750930786133, + "step": 929 + }, + { + "epoch": 12.922673656618612, + "grad_norm": 0.22887611389160156, + "learning_rate": 0.0006, + "loss": 4.264463424682617, + "step": 930 + }, + { + "epoch": 12.936653560506771, + "grad_norm": 0.22195978462696075, + "learning_rate": 0.0006, + "loss": 4.205256938934326, + "step": 931 + }, + { + "epoch": 12.950633464394933, + "grad_norm": 0.23184578120708466, + "learning_rate": 0.0006, + "loss": 4.214578628540039, + "step": 932 + }, + { + "epoch": 12.964613368283093, + "grad_norm": 0.2186676561832428, + "learning_rate": 0.0006, + "loss": 4.227711200714111, + "step": 933 + }, + { + "epoch": 12.978593272171254, + "grad_norm": 0.2160426527261734, + "learning_rate": 0.0006, + "loss": 4.221796989440918, + "step": 934 + }, + { + "epoch": 12.992573176059414, + "grad_norm": 0.21562792360782623, + "learning_rate": 0.0006, + "loss": 4.21957540512085, + "step": 935 + }, + { + "epoch": 13.0, + "grad_norm": 0.22538058459758759, + "learning_rate": 0.0006, + "loss": 4.2353973388671875, + "step": 936 + }, + { + "epoch": 13.0, + "eval_loss": 4.426600933074951, + "eval_runtime": 44.8138, + "eval_samples_per_second": 54.492, + "eval_steps_per_second": 3.414, + "step": 936 + }, + { + "epoch": 13.013979903888162, + "grad_norm": 0.24888049066066742, + "learning_rate": 0.0006, + "loss": 4.18648624420166, + "step": 937 + }, + { + "epoch": 13.027959807776321, + "grad_norm": 0.28330180048942566, + "learning_rate": 0.0006, + "loss": 4.188892364501953, + "step": 938 + }, + { + "epoch": 13.041939711664483, + "grad_norm": 0.31152188777923584, + "learning_rate": 0.0006, + "loss": 4.2053399085998535, + "step": 939 + }, + { + "epoch": 13.055919615552643, + "grad_norm": 0.2842433452606201, + "learning_rate": 0.0006, + "loss": 4.191902160644531, + "step": 940 + }, + { + "epoch": 13.069899519440805, + "grad_norm": 0.23664532601833344, + "learning_rate": 0.0006, + "loss": 4.1831865310668945, + "step": 941 + }, + { + "epoch": 13.083879423328964, + "grad_norm": 0.24204140901565552, + "learning_rate": 0.0006, + "loss": 4.202641487121582, + "step": 942 + }, + { + "epoch": 13.097859327217126, + "grad_norm": 0.235311359167099, + "learning_rate": 0.0006, + "loss": 4.174511909484863, + "step": 943 + }, + { + "epoch": 13.111839231105286, + "grad_norm": 0.27127715945243835, + "learning_rate": 0.0006, + "loss": 4.201844215393066, + "step": 944 + }, + { + "epoch": 13.125819134993447, + "grad_norm": 0.2722373604774475, + "learning_rate": 0.0006, + "loss": 4.157383918762207, + "step": 945 + }, + { + "epoch": 13.139799038881607, + "grad_norm": 0.25446659326553345, + "learning_rate": 0.0006, + "loss": 4.221236228942871, + "step": 946 + }, + { + "epoch": 13.153778942769769, + "grad_norm": 0.273017019033432, + "learning_rate": 0.0006, + "loss": 4.195512771606445, + "step": 947 + }, + { + "epoch": 13.167758846657929, + "grad_norm": 0.24766312539577484, + "learning_rate": 0.0006, + "loss": 4.220959663391113, + "step": 948 + }, + { + "epoch": 13.18173875054609, + "grad_norm": 0.24636317789554596, + "learning_rate": 0.0006, + "loss": 4.214302062988281, + "step": 949 + }, + { + "epoch": 13.19571865443425, + "grad_norm": 0.3177756667137146, + "learning_rate": 0.0006, + "loss": 4.213500022888184, + "step": 950 + }, + { + "epoch": 13.209698558322412, + "grad_norm": 0.44579195976257324, + "learning_rate": 0.0006, + "loss": 4.227644920349121, + "step": 951 + }, + { + "epoch": 13.223678462210572, + "grad_norm": 0.4217414855957031, + "learning_rate": 0.0006, + "loss": 4.180937767028809, + "step": 952 + }, + { + "epoch": 13.237658366098733, + "grad_norm": 0.30148059129714966, + "learning_rate": 0.0006, + "loss": 4.207760810852051, + "step": 953 + }, + { + "epoch": 13.251638269986893, + "grad_norm": 0.3192492127418518, + "learning_rate": 0.0006, + "loss": 4.197999000549316, + "step": 954 + }, + { + "epoch": 13.265618173875055, + "grad_norm": 0.37334588170051575, + "learning_rate": 0.0006, + "loss": 4.208001136779785, + "step": 955 + }, + { + "epoch": 13.279598077763215, + "grad_norm": 0.4059637784957886, + "learning_rate": 0.0006, + "loss": 4.211322784423828, + "step": 956 + }, + { + "epoch": 13.293577981651376, + "grad_norm": 0.3389599323272705, + "learning_rate": 0.0006, + "loss": 4.204404354095459, + "step": 957 + }, + { + "epoch": 13.307557885539538, + "grad_norm": 0.2675766050815582, + "learning_rate": 0.0006, + "loss": 4.245941162109375, + "step": 958 + }, + { + "epoch": 13.321537789427698, + "grad_norm": 0.2730264365673065, + "learning_rate": 0.0006, + "loss": 4.2221221923828125, + "step": 959 + }, + { + "epoch": 13.33551769331586, + "grad_norm": 0.26458224654197693, + "learning_rate": 0.0006, + "loss": 4.205596923828125, + "step": 960 + }, + { + "epoch": 13.349497597204019, + "grad_norm": 0.2872551381587982, + "learning_rate": 0.0006, + "loss": 4.196977615356445, + "step": 961 + }, + { + "epoch": 13.36347750109218, + "grad_norm": 0.2954796850681305, + "learning_rate": 0.0006, + "loss": 4.202796936035156, + "step": 962 + }, + { + "epoch": 13.37745740498034, + "grad_norm": 0.2619425654411316, + "learning_rate": 0.0006, + "loss": 4.196845054626465, + "step": 963 + }, + { + "epoch": 13.391437308868502, + "grad_norm": 0.30088478326797485, + "learning_rate": 0.0006, + "loss": 4.219697952270508, + "step": 964 + }, + { + "epoch": 13.405417212756662, + "grad_norm": 0.30388689041137695, + "learning_rate": 0.0006, + "loss": 4.187566757202148, + "step": 965 + }, + { + "epoch": 13.419397116644824, + "grad_norm": 0.27918127179145813, + "learning_rate": 0.0006, + "loss": 4.223600387573242, + "step": 966 + }, + { + "epoch": 13.433377020532983, + "grad_norm": 0.27634528279304504, + "learning_rate": 0.0006, + "loss": 4.165332317352295, + "step": 967 + }, + { + "epoch": 13.447356924421145, + "grad_norm": 0.28830021619796753, + "learning_rate": 0.0006, + "loss": 4.204029560089111, + "step": 968 + }, + { + "epoch": 13.461336828309305, + "grad_norm": 0.29220864176750183, + "learning_rate": 0.0006, + "loss": 4.218057155609131, + "step": 969 + }, + { + "epoch": 13.475316732197467, + "grad_norm": 0.3089624345302582, + "learning_rate": 0.0006, + "loss": 4.200654983520508, + "step": 970 + }, + { + "epoch": 13.489296636085626, + "grad_norm": 0.36479851603507996, + "learning_rate": 0.0006, + "loss": 4.182811737060547, + "step": 971 + }, + { + "epoch": 13.503276539973788, + "grad_norm": 0.37561097741127014, + "learning_rate": 0.0006, + "loss": 4.190266132354736, + "step": 972 + }, + { + "epoch": 13.517256443861948, + "grad_norm": 0.3263583183288574, + "learning_rate": 0.0006, + "loss": 4.214815616607666, + "step": 973 + }, + { + "epoch": 13.53123634775011, + "grad_norm": 0.21552999317646027, + "learning_rate": 0.0006, + "loss": 4.171380043029785, + "step": 974 + }, + { + "epoch": 13.54521625163827, + "grad_norm": 0.247328519821167, + "learning_rate": 0.0006, + "loss": 4.175377368927002, + "step": 975 + }, + { + "epoch": 13.55919615552643, + "grad_norm": 0.23740540444850922, + "learning_rate": 0.0006, + "loss": 4.212357997894287, + "step": 976 + }, + { + "epoch": 13.57317605941459, + "grad_norm": 0.21533876657485962, + "learning_rate": 0.0006, + "loss": 4.203285217285156, + "step": 977 + }, + { + "epoch": 13.587155963302752, + "grad_norm": 0.21462024748325348, + "learning_rate": 0.0006, + "loss": 4.178012371063232, + "step": 978 + }, + { + "epoch": 13.601135867190912, + "grad_norm": 0.2279169261455536, + "learning_rate": 0.0006, + "loss": 4.193912982940674, + "step": 979 + }, + { + "epoch": 13.615115771079074, + "grad_norm": 0.2202417552471161, + "learning_rate": 0.0006, + "loss": 4.167629718780518, + "step": 980 + }, + { + "epoch": 13.629095674967235, + "grad_norm": 0.20586472749710083, + "learning_rate": 0.0006, + "loss": 4.159290313720703, + "step": 981 + }, + { + "epoch": 13.643075578855395, + "grad_norm": 0.20200690627098083, + "learning_rate": 0.0006, + "loss": 4.210315227508545, + "step": 982 + }, + { + "epoch": 13.657055482743557, + "grad_norm": 0.21710257232189178, + "learning_rate": 0.0006, + "loss": 4.21730375289917, + "step": 983 + }, + { + "epoch": 13.671035386631717, + "grad_norm": 0.22058045864105225, + "learning_rate": 0.0006, + "loss": 4.1996073722839355, + "step": 984 + }, + { + "epoch": 13.685015290519878, + "grad_norm": 0.21549592912197113, + "learning_rate": 0.0006, + "loss": 4.209203720092773, + "step": 985 + }, + { + "epoch": 13.698995194408038, + "grad_norm": 0.22274717688560486, + "learning_rate": 0.0006, + "loss": 4.220660209655762, + "step": 986 + }, + { + "epoch": 13.7129750982962, + "grad_norm": 0.22791637480258942, + "learning_rate": 0.0006, + "loss": 4.158679962158203, + "step": 987 + }, + { + "epoch": 13.72695500218436, + "grad_norm": 0.216218963265419, + "learning_rate": 0.0006, + "loss": 4.188124656677246, + "step": 988 + }, + { + "epoch": 13.740934906072521, + "grad_norm": 0.19149383902549744, + "learning_rate": 0.0006, + "loss": 4.181729316711426, + "step": 989 + }, + { + "epoch": 13.754914809960681, + "grad_norm": 0.18964019417762756, + "learning_rate": 0.0006, + "loss": 4.184767246246338, + "step": 990 + }, + { + "epoch": 13.768894713848843, + "grad_norm": 0.1778000295162201, + "learning_rate": 0.0006, + "loss": 4.1802263259887695, + "step": 991 + }, + { + "epoch": 13.782874617737003, + "grad_norm": 0.18277616798877716, + "learning_rate": 0.0006, + "loss": 4.1657867431640625, + "step": 992 + }, + { + "epoch": 13.796854521625164, + "grad_norm": 0.18610034883022308, + "learning_rate": 0.0006, + "loss": 4.156744956970215, + "step": 993 + }, + { + "epoch": 13.810834425513324, + "grad_norm": 0.19332963228225708, + "learning_rate": 0.0006, + "loss": 4.143558502197266, + "step": 994 + }, + { + "epoch": 13.824814329401486, + "grad_norm": 0.19758112728595734, + "learning_rate": 0.0006, + "loss": 4.195793151855469, + "step": 995 + }, + { + "epoch": 13.838794233289645, + "grad_norm": 0.1933647245168686, + "learning_rate": 0.0006, + "loss": 4.169734954833984, + "step": 996 + }, + { + "epoch": 13.852774137177807, + "grad_norm": 0.2362028956413269, + "learning_rate": 0.0006, + "loss": 4.175025939941406, + "step": 997 + }, + { + "epoch": 13.866754041065967, + "grad_norm": 0.2465490996837616, + "learning_rate": 0.0006, + "loss": 4.173909664154053, + "step": 998 + }, + { + "epoch": 13.880733944954128, + "grad_norm": 0.23449952900409698, + "learning_rate": 0.0006, + "loss": 4.173429489135742, + "step": 999 + }, + { + "epoch": 13.89471384884229, + "grad_norm": 0.2282160222530365, + "learning_rate": 0.0006, + "loss": 4.158538341522217, + "step": 1000 + }, + { + "epoch": 13.90869375273045, + "grad_norm": 0.21066738665103912, + "learning_rate": 0.0006, + "loss": 4.171584129333496, + "step": 1001 + }, + { + "epoch": 13.922673656618612, + "grad_norm": 0.18787573277950287, + "learning_rate": 0.0006, + "loss": 4.1837544441223145, + "step": 1002 + }, + { + "epoch": 13.936653560506771, + "grad_norm": 0.2001059353351593, + "learning_rate": 0.0006, + "loss": 4.160369873046875, + "step": 1003 + }, + { + "epoch": 13.950633464394933, + "grad_norm": 0.21644988656044006, + "learning_rate": 0.0006, + "loss": 4.221372604370117, + "step": 1004 + }, + { + "epoch": 13.964613368283093, + "grad_norm": 0.22083887457847595, + "learning_rate": 0.0006, + "loss": 4.149261474609375, + "step": 1005 + }, + { + "epoch": 13.978593272171254, + "grad_norm": 0.2201409637928009, + "learning_rate": 0.0006, + "loss": 4.192010879516602, + "step": 1006 + }, + { + "epoch": 13.992573176059414, + "grad_norm": 0.18888601660728455, + "learning_rate": 0.0006, + "loss": 4.17539119720459, + "step": 1007 + }, + { + "epoch": 14.0, + "grad_norm": 0.2073872834444046, + "learning_rate": 0.0006, + "loss": 4.145265579223633, + "step": 1008 + }, + { + "epoch": 14.0, + "eval_loss": 4.36876106262207, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 1008 + }, + { + "epoch": 14.013979903888162, + "grad_norm": 0.20773135125637054, + "learning_rate": 0.0006, + "loss": 4.132615089416504, + "step": 1009 + }, + { + "epoch": 14.027959807776321, + "grad_norm": 0.22409620881080627, + "learning_rate": 0.0006, + "loss": 4.172839164733887, + "step": 1010 + }, + { + "epoch": 14.041939711664483, + "grad_norm": 0.24046066403388977, + "learning_rate": 0.0006, + "loss": 4.126678943634033, + "step": 1011 + }, + { + "epoch": 14.055919615552643, + "grad_norm": 0.29185160994529724, + "learning_rate": 0.0006, + "loss": 4.177952766418457, + "step": 1012 + }, + { + "epoch": 14.069899519440805, + "grad_norm": 0.2984033226966858, + "learning_rate": 0.0006, + "loss": 4.155030250549316, + "step": 1013 + }, + { + "epoch": 14.083879423328964, + "grad_norm": 0.30262473225593567, + "learning_rate": 0.0006, + "loss": 4.145394325256348, + "step": 1014 + }, + { + "epoch": 14.097859327217126, + "grad_norm": 0.3278133273124695, + "learning_rate": 0.0006, + "loss": 4.172739028930664, + "step": 1015 + }, + { + "epoch": 14.111839231105286, + "grad_norm": 0.3285452425479889, + "learning_rate": 0.0006, + "loss": 4.153196334838867, + "step": 1016 + }, + { + "epoch": 14.125819134993447, + "grad_norm": 0.33912697434425354, + "learning_rate": 0.0006, + "loss": 4.098162651062012, + "step": 1017 + }, + { + "epoch": 14.139799038881607, + "grad_norm": 0.32080814242362976, + "learning_rate": 0.0006, + "loss": 4.157135009765625, + "step": 1018 + }, + { + "epoch": 14.153778942769769, + "grad_norm": 0.31288477778434753, + "learning_rate": 0.0006, + "loss": 4.142683029174805, + "step": 1019 + }, + { + "epoch": 14.167758846657929, + "grad_norm": 0.350289523601532, + "learning_rate": 0.0006, + "loss": 4.134700775146484, + "step": 1020 + }, + { + "epoch": 14.18173875054609, + "grad_norm": 0.34274575114250183, + "learning_rate": 0.0006, + "loss": 4.1578569412231445, + "step": 1021 + }, + { + "epoch": 14.19571865443425, + "grad_norm": 0.2843035161495209, + "learning_rate": 0.0006, + "loss": 4.13760232925415, + "step": 1022 + }, + { + "epoch": 14.209698558322412, + "grad_norm": 0.28235161304473877, + "learning_rate": 0.0006, + "loss": 4.1492462158203125, + "step": 1023 + }, + { + "epoch": 14.223678462210572, + "grad_norm": 0.24407248198986053, + "learning_rate": 0.0006, + "loss": 4.144372463226318, + "step": 1024 + }, + { + "epoch": 14.237658366098733, + "grad_norm": 0.2489742934703827, + "learning_rate": 0.0006, + "loss": 4.137950897216797, + "step": 1025 + }, + { + "epoch": 14.251638269986893, + "grad_norm": 0.26035651564598083, + "learning_rate": 0.0006, + "loss": 4.144070625305176, + "step": 1026 + }, + { + "epoch": 14.265618173875055, + "grad_norm": 0.2726516127586365, + "learning_rate": 0.0006, + "loss": 4.145204067230225, + "step": 1027 + }, + { + "epoch": 14.279598077763215, + "grad_norm": 0.2723483443260193, + "learning_rate": 0.0006, + "loss": 4.118407249450684, + "step": 1028 + }, + { + "epoch": 14.293577981651376, + "grad_norm": 0.27476269006729126, + "learning_rate": 0.0006, + "loss": 4.111325263977051, + "step": 1029 + }, + { + "epoch": 14.307557885539538, + "grad_norm": 0.26202502846717834, + "learning_rate": 0.0006, + "loss": 4.122248649597168, + "step": 1030 + }, + { + "epoch": 14.321537789427698, + "grad_norm": 0.2472032904624939, + "learning_rate": 0.0006, + "loss": 4.157790184020996, + "step": 1031 + }, + { + "epoch": 14.33551769331586, + "grad_norm": 0.2518343925476074, + "learning_rate": 0.0006, + "loss": 4.109132766723633, + "step": 1032 + }, + { + "epoch": 14.349497597204019, + "grad_norm": 0.2652401924133301, + "learning_rate": 0.0006, + "loss": 4.144079685211182, + "step": 1033 + }, + { + "epoch": 14.36347750109218, + "grad_norm": 0.2356770783662796, + "learning_rate": 0.0006, + "loss": 4.128426551818848, + "step": 1034 + }, + { + "epoch": 14.37745740498034, + "grad_norm": 0.2164214551448822, + "learning_rate": 0.0006, + "loss": 4.1644392013549805, + "step": 1035 + }, + { + "epoch": 14.391437308868502, + "grad_norm": 0.22383111715316772, + "learning_rate": 0.0006, + "loss": 4.165862083435059, + "step": 1036 + }, + { + "epoch": 14.405417212756662, + "grad_norm": 0.23152419924736023, + "learning_rate": 0.0006, + "loss": 4.140036582946777, + "step": 1037 + }, + { + "epoch": 14.419397116644824, + "grad_norm": 0.2387741357088089, + "learning_rate": 0.0006, + "loss": 4.130461692810059, + "step": 1038 + }, + { + "epoch": 14.433377020532983, + "grad_norm": 0.24018129706382751, + "learning_rate": 0.0006, + "loss": 4.148482322692871, + "step": 1039 + }, + { + "epoch": 14.447356924421145, + "grad_norm": 0.25487351417541504, + "learning_rate": 0.0006, + "loss": 4.158121109008789, + "step": 1040 + }, + { + "epoch": 14.461336828309305, + "grad_norm": 0.28220096230506897, + "learning_rate": 0.0006, + "loss": 4.160198211669922, + "step": 1041 + }, + { + "epoch": 14.475316732197467, + "grad_norm": 0.2574434280395508, + "learning_rate": 0.0006, + "loss": 4.168512344360352, + "step": 1042 + }, + { + "epoch": 14.489296636085626, + "grad_norm": 0.22569820284843445, + "learning_rate": 0.0006, + "loss": 4.1595001220703125, + "step": 1043 + }, + { + "epoch": 14.503276539973788, + "grad_norm": 0.2473423182964325, + "learning_rate": 0.0006, + "loss": 4.084580898284912, + "step": 1044 + }, + { + "epoch": 14.517256443861948, + "grad_norm": 0.24281060695648193, + "learning_rate": 0.0006, + "loss": 4.139714241027832, + "step": 1045 + }, + { + "epoch": 14.53123634775011, + "grad_norm": 0.24691344797611237, + "learning_rate": 0.0006, + "loss": 4.115398406982422, + "step": 1046 + }, + { + "epoch": 14.54521625163827, + "grad_norm": 0.2583645284175873, + "learning_rate": 0.0006, + "loss": 4.142148494720459, + "step": 1047 + }, + { + "epoch": 14.55919615552643, + "grad_norm": 0.23258574306964874, + "learning_rate": 0.0006, + "loss": 4.16251277923584, + "step": 1048 + }, + { + "epoch": 14.57317605941459, + "grad_norm": 0.22103039920330048, + "learning_rate": 0.0006, + "loss": 4.1308441162109375, + "step": 1049 + }, + { + "epoch": 14.587155963302752, + "grad_norm": 0.23713579773902893, + "learning_rate": 0.0006, + "loss": 4.1565985679626465, + "step": 1050 + }, + { + "epoch": 14.601135867190912, + "grad_norm": 0.24406634271144867, + "learning_rate": 0.0006, + "loss": 4.14628267288208, + "step": 1051 + }, + { + "epoch": 14.615115771079074, + "grad_norm": 0.26821228861808777, + "learning_rate": 0.0006, + "loss": 4.138063430786133, + "step": 1052 + }, + { + "epoch": 14.629095674967235, + "grad_norm": 0.25483864545822144, + "learning_rate": 0.0006, + "loss": 4.1311163902282715, + "step": 1053 + }, + { + "epoch": 14.643075578855395, + "grad_norm": 0.23937982320785522, + "learning_rate": 0.0006, + "loss": 4.150882244110107, + "step": 1054 + }, + { + "epoch": 14.657055482743557, + "grad_norm": 0.21896475553512573, + "learning_rate": 0.0006, + "loss": 4.114015102386475, + "step": 1055 + }, + { + "epoch": 14.671035386631717, + "grad_norm": 0.20821231603622437, + "learning_rate": 0.0006, + "loss": 4.139034271240234, + "step": 1056 + }, + { + "epoch": 14.685015290519878, + "grad_norm": 0.1978551596403122, + "learning_rate": 0.0006, + "loss": 4.1810503005981445, + "step": 1057 + }, + { + "epoch": 14.698995194408038, + "grad_norm": 0.1945771872997284, + "learning_rate": 0.0006, + "loss": 4.120734214782715, + "step": 1058 + }, + { + "epoch": 14.7129750982962, + "grad_norm": 0.19518673419952393, + "learning_rate": 0.0006, + "loss": 4.14264440536499, + "step": 1059 + }, + { + "epoch": 14.72695500218436, + "grad_norm": 0.202596515417099, + "learning_rate": 0.0006, + "loss": 4.151649475097656, + "step": 1060 + }, + { + "epoch": 14.740934906072521, + "grad_norm": 0.1904762089252472, + "learning_rate": 0.0006, + "loss": 4.127899169921875, + "step": 1061 + }, + { + "epoch": 14.754914809960681, + "grad_norm": 0.20685508847236633, + "learning_rate": 0.0006, + "loss": 4.093445777893066, + "step": 1062 + }, + { + "epoch": 14.768894713848843, + "grad_norm": 0.22678329050540924, + "learning_rate": 0.0006, + "loss": 4.132084369659424, + "step": 1063 + }, + { + "epoch": 14.782874617737003, + "grad_norm": 0.24631841480731964, + "learning_rate": 0.0006, + "loss": 4.154788970947266, + "step": 1064 + }, + { + "epoch": 14.796854521625164, + "grad_norm": 0.24445782601833344, + "learning_rate": 0.0006, + "loss": 4.144735336303711, + "step": 1065 + }, + { + "epoch": 14.810834425513324, + "grad_norm": 0.22330640256404877, + "learning_rate": 0.0006, + "loss": 4.159893989562988, + "step": 1066 + }, + { + "epoch": 14.824814329401486, + "grad_norm": 0.22422967851161957, + "learning_rate": 0.0006, + "loss": 4.104874610900879, + "step": 1067 + }, + { + "epoch": 14.838794233289645, + "grad_norm": 0.24583931267261505, + "learning_rate": 0.0006, + "loss": 4.139403820037842, + "step": 1068 + }, + { + "epoch": 14.852774137177807, + "grad_norm": 0.2917379140853882, + "learning_rate": 0.0006, + "loss": 4.168988227844238, + "step": 1069 + }, + { + "epoch": 14.866754041065967, + "grad_norm": 0.3171777129173279, + "learning_rate": 0.0006, + "loss": 4.131263732910156, + "step": 1070 + }, + { + "epoch": 14.880733944954128, + "grad_norm": 0.3039591312408447, + "learning_rate": 0.0006, + "loss": 4.149853706359863, + "step": 1071 + }, + { + "epoch": 14.89471384884229, + "grad_norm": 0.2690650522708893, + "learning_rate": 0.0006, + "loss": 4.154787540435791, + "step": 1072 + }, + { + "epoch": 14.90869375273045, + "grad_norm": 0.28683212399482727, + "learning_rate": 0.0006, + "loss": 4.12751579284668, + "step": 1073 + }, + { + "epoch": 14.922673656618612, + "grad_norm": 0.30022913217544556, + "learning_rate": 0.0006, + "loss": 4.141940116882324, + "step": 1074 + }, + { + "epoch": 14.936653560506771, + "grad_norm": 0.3312259316444397, + "learning_rate": 0.0006, + "loss": 4.141905784606934, + "step": 1075 + }, + { + "epoch": 14.950633464394933, + "grad_norm": 0.31159237027168274, + "learning_rate": 0.0006, + "loss": 4.160192966461182, + "step": 1076 + }, + { + "epoch": 14.964613368283093, + "grad_norm": 0.30093592405319214, + "learning_rate": 0.0006, + "loss": 4.1085076332092285, + "step": 1077 + }, + { + "epoch": 14.978593272171254, + "grad_norm": 0.2728535830974579, + "learning_rate": 0.0006, + "loss": 4.156959056854248, + "step": 1078 + }, + { + "epoch": 14.992573176059414, + "grad_norm": 0.24766813218593597, + "learning_rate": 0.0006, + "loss": 4.113999843597412, + "step": 1079 + }, + { + "epoch": 15.0, + "grad_norm": 0.2538154721260071, + "learning_rate": 0.0006, + "loss": 4.147134780883789, + "step": 1080 + }, + { + "epoch": 15.0, + "eval_loss": 4.323154926300049, + "eval_runtime": 44.8813, + "eval_samples_per_second": 54.41, + "eval_steps_per_second": 3.409, + "step": 1080 + }, + { + "epoch": 15.013979903888162, + "grad_norm": 0.22535280883312225, + "learning_rate": 0.0006, + "loss": 4.112179756164551, + "step": 1081 + }, + { + "epoch": 15.027959807776321, + "grad_norm": 0.24340929090976715, + "learning_rate": 0.0006, + "loss": 4.080923080444336, + "step": 1082 + }, + { + "epoch": 15.041939711664483, + "grad_norm": 0.23159465193748474, + "learning_rate": 0.0006, + "loss": 4.097067356109619, + "step": 1083 + }, + { + "epoch": 15.055919615552643, + "grad_norm": 0.22674769163131714, + "learning_rate": 0.0006, + "loss": 4.118601322174072, + "step": 1084 + }, + { + "epoch": 15.069899519440805, + "grad_norm": 0.2524292469024658, + "learning_rate": 0.0006, + "loss": 4.101109504699707, + "step": 1085 + }, + { + "epoch": 15.083879423328964, + "grad_norm": 0.2505405843257904, + "learning_rate": 0.0006, + "loss": 4.121405601501465, + "step": 1086 + }, + { + "epoch": 15.097859327217126, + "grad_norm": 0.2557983696460724, + "learning_rate": 0.0006, + "loss": 4.1063947677612305, + "step": 1087 + }, + { + "epoch": 15.111839231105286, + "grad_norm": 0.24452129006385803, + "learning_rate": 0.0006, + "loss": 4.086133003234863, + "step": 1088 + }, + { + "epoch": 15.125819134993447, + "grad_norm": 0.25821781158447266, + "learning_rate": 0.0006, + "loss": 4.076262950897217, + "step": 1089 + }, + { + "epoch": 15.139799038881607, + "grad_norm": 0.23650537431240082, + "learning_rate": 0.0006, + "loss": 4.101842880249023, + "step": 1090 + }, + { + "epoch": 15.153778942769769, + "grad_norm": 0.2206192910671234, + "learning_rate": 0.0006, + "loss": 4.11027193069458, + "step": 1091 + }, + { + "epoch": 15.167758846657929, + "grad_norm": 0.21843163669109344, + "learning_rate": 0.0006, + "loss": 4.098437309265137, + "step": 1092 + }, + { + "epoch": 15.18173875054609, + "grad_norm": 0.2528176009654999, + "learning_rate": 0.0006, + "loss": 4.108713150024414, + "step": 1093 + }, + { + "epoch": 15.19571865443425, + "grad_norm": 0.26697206497192383, + "learning_rate": 0.0006, + "loss": 4.113210201263428, + "step": 1094 + }, + { + "epoch": 15.209698558322412, + "grad_norm": 0.26480963826179504, + "learning_rate": 0.0006, + "loss": 4.1103620529174805, + "step": 1095 + }, + { + "epoch": 15.223678462210572, + "grad_norm": 0.24887347221374512, + "learning_rate": 0.0006, + "loss": 4.103529930114746, + "step": 1096 + }, + { + "epoch": 15.237658366098733, + "grad_norm": 0.2344668060541153, + "learning_rate": 0.0006, + "loss": 4.129784107208252, + "step": 1097 + }, + { + "epoch": 15.251638269986893, + "grad_norm": 0.22639742493629456, + "learning_rate": 0.0006, + "loss": 4.113495349884033, + "step": 1098 + }, + { + "epoch": 15.265618173875055, + "grad_norm": 0.22466333210468292, + "learning_rate": 0.0006, + "loss": 4.102309703826904, + "step": 1099 + }, + { + "epoch": 15.279598077763215, + "grad_norm": 0.25135037302970886, + "learning_rate": 0.0006, + "loss": 4.117668628692627, + "step": 1100 + }, + { + "epoch": 15.293577981651376, + "grad_norm": 0.2347089946269989, + "learning_rate": 0.0006, + "loss": 4.086637496948242, + "step": 1101 + }, + { + "epoch": 15.307557885539538, + "grad_norm": 0.2347242832183838, + "learning_rate": 0.0006, + "loss": 4.098714828491211, + "step": 1102 + }, + { + "epoch": 15.321537789427698, + "grad_norm": 0.23990283906459808, + "learning_rate": 0.0006, + "loss": 4.079837799072266, + "step": 1103 + }, + { + "epoch": 15.33551769331586, + "grad_norm": 0.22366675734519958, + "learning_rate": 0.0006, + "loss": 4.108136177062988, + "step": 1104 + }, + { + "epoch": 15.349497597204019, + "grad_norm": 0.21823780238628387, + "learning_rate": 0.0006, + "loss": 4.10054349899292, + "step": 1105 + }, + { + "epoch": 15.36347750109218, + "grad_norm": 0.23059198260307312, + "learning_rate": 0.0006, + "loss": 4.108620643615723, + "step": 1106 + }, + { + "epoch": 15.37745740498034, + "grad_norm": 0.2313755601644516, + "learning_rate": 0.0006, + "loss": 4.088565826416016, + "step": 1107 + }, + { + "epoch": 15.391437308868502, + "grad_norm": 0.2546829283237457, + "learning_rate": 0.0006, + "loss": 4.104948043823242, + "step": 1108 + }, + { + "epoch": 15.405417212756662, + "grad_norm": 0.23666726052761078, + "learning_rate": 0.0006, + "loss": 4.111965179443359, + "step": 1109 + }, + { + "epoch": 15.419397116644824, + "grad_norm": 0.21971021592617035, + "learning_rate": 0.0006, + "loss": 4.097846984863281, + "step": 1110 + }, + { + "epoch": 15.433377020532983, + "grad_norm": 0.20951911807060242, + "learning_rate": 0.0006, + "loss": 4.110099792480469, + "step": 1111 + }, + { + "epoch": 15.447356924421145, + "grad_norm": 0.19590918719768524, + "learning_rate": 0.0006, + "loss": 4.101154327392578, + "step": 1112 + }, + { + "epoch": 15.461336828309305, + "grad_norm": 0.21048946678638458, + "learning_rate": 0.0006, + "loss": 4.0986127853393555, + "step": 1113 + }, + { + "epoch": 15.475316732197467, + "grad_norm": 0.21423374116420746, + "learning_rate": 0.0006, + "loss": 4.082328796386719, + "step": 1114 + }, + { + "epoch": 15.489296636085626, + "grad_norm": 0.227146714925766, + "learning_rate": 0.0006, + "loss": 4.105281829833984, + "step": 1115 + }, + { + "epoch": 15.503276539973788, + "grad_norm": 0.2079153060913086, + "learning_rate": 0.0006, + "loss": 4.100836753845215, + "step": 1116 + }, + { + "epoch": 15.517256443861948, + "grad_norm": 0.21084675192832947, + "learning_rate": 0.0006, + "loss": 4.0934343338012695, + "step": 1117 + }, + { + "epoch": 15.53123634775011, + "grad_norm": 0.23863616585731506, + "learning_rate": 0.0006, + "loss": 4.101540565490723, + "step": 1118 + }, + { + "epoch": 15.54521625163827, + "grad_norm": 0.2518490254878998, + "learning_rate": 0.0006, + "loss": 4.12303352355957, + "step": 1119 + }, + { + "epoch": 15.55919615552643, + "grad_norm": 0.24282905459403992, + "learning_rate": 0.0006, + "loss": 4.080670356750488, + "step": 1120 + }, + { + "epoch": 15.57317605941459, + "grad_norm": 0.24171605706214905, + "learning_rate": 0.0006, + "loss": 4.117938041687012, + "step": 1121 + }, + { + "epoch": 15.587155963302752, + "grad_norm": 0.28453412652015686, + "learning_rate": 0.0006, + "loss": 4.080114364624023, + "step": 1122 + }, + { + "epoch": 15.601135867190912, + "grad_norm": 0.30322617292404175, + "learning_rate": 0.0006, + "loss": 4.079695701599121, + "step": 1123 + }, + { + "epoch": 15.615115771079074, + "grad_norm": 0.2657633125782013, + "learning_rate": 0.0006, + "loss": 4.0916290283203125, + "step": 1124 + }, + { + "epoch": 15.629095674967235, + "grad_norm": 0.2467080056667328, + "learning_rate": 0.0006, + "loss": 4.095594882965088, + "step": 1125 + }, + { + "epoch": 15.643075578855395, + "grad_norm": 0.21767394244670868, + "learning_rate": 0.0006, + "loss": 4.079174041748047, + "step": 1126 + }, + { + "epoch": 15.657055482743557, + "grad_norm": 0.2088327705860138, + "learning_rate": 0.0006, + "loss": 4.060707092285156, + "step": 1127 + }, + { + "epoch": 15.671035386631717, + "grad_norm": 0.1921205073595047, + "learning_rate": 0.0006, + "loss": 4.073911666870117, + "step": 1128 + }, + { + "epoch": 15.685015290519878, + "grad_norm": 0.209339901804924, + "learning_rate": 0.0006, + "loss": 4.089954376220703, + "step": 1129 + }, + { + "epoch": 15.698995194408038, + "grad_norm": 0.23513881862163544, + "learning_rate": 0.0006, + "loss": 4.084906578063965, + "step": 1130 + }, + { + "epoch": 15.7129750982962, + "grad_norm": 0.26140275597572327, + "learning_rate": 0.0006, + "loss": 4.086570739746094, + "step": 1131 + }, + { + "epoch": 15.72695500218436, + "grad_norm": 0.290431946516037, + "learning_rate": 0.0006, + "loss": 4.071229457855225, + "step": 1132 + }, + { + "epoch": 15.740934906072521, + "grad_norm": 0.3061376214027405, + "learning_rate": 0.0006, + "loss": 4.103148460388184, + "step": 1133 + }, + { + "epoch": 15.754914809960681, + "grad_norm": 0.26312482357025146, + "learning_rate": 0.0006, + "loss": 4.088448524475098, + "step": 1134 + }, + { + "epoch": 15.768894713848843, + "grad_norm": 0.22474883496761322, + "learning_rate": 0.0006, + "loss": 4.091766834259033, + "step": 1135 + }, + { + "epoch": 15.782874617737003, + "grad_norm": 0.2341146171092987, + "learning_rate": 0.0006, + "loss": 4.1222758293151855, + "step": 1136 + }, + { + "epoch": 15.796854521625164, + "grad_norm": 0.23556149005889893, + "learning_rate": 0.0006, + "loss": 4.094954013824463, + "step": 1137 + }, + { + "epoch": 15.810834425513324, + "grad_norm": 0.263315349817276, + "learning_rate": 0.0006, + "loss": 4.1065473556518555, + "step": 1138 + }, + { + "epoch": 15.824814329401486, + "grad_norm": 0.2700869143009186, + "learning_rate": 0.0006, + "loss": 4.0890045166015625, + "step": 1139 + }, + { + "epoch": 15.838794233289645, + "grad_norm": 0.28697484731674194, + "learning_rate": 0.0006, + "loss": 4.092496395111084, + "step": 1140 + }, + { + "epoch": 15.852774137177807, + "grad_norm": 0.2824092507362366, + "learning_rate": 0.0006, + "loss": 4.079615592956543, + "step": 1141 + }, + { + "epoch": 15.866754041065967, + "grad_norm": 0.24547280371189117, + "learning_rate": 0.0006, + "loss": 4.089683532714844, + "step": 1142 + }, + { + "epoch": 15.880733944954128, + "grad_norm": 0.23653888702392578, + "learning_rate": 0.0006, + "loss": 4.067309379577637, + "step": 1143 + }, + { + "epoch": 15.89471384884229, + "grad_norm": 0.23784421384334564, + "learning_rate": 0.0006, + "loss": 4.09156608581543, + "step": 1144 + }, + { + "epoch": 15.90869375273045, + "grad_norm": 0.22753281891345978, + "learning_rate": 0.0006, + "loss": 4.095428466796875, + "step": 1145 + }, + { + "epoch": 15.922673656618612, + "grad_norm": 0.2464212030172348, + "learning_rate": 0.0006, + "loss": 4.1036376953125, + "step": 1146 + }, + { + "epoch": 15.936653560506771, + "grad_norm": 0.25531601905822754, + "learning_rate": 0.0006, + "loss": 4.073996543884277, + "step": 1147 + }, + { + "epoch": 15.950633464394933, + "grad_norm": 0.24145905673503876, + "learning_rate": 0.0006, + "loss": 4.094479560852051, + "step": 1148 + }, + { + "epoch": 15.964613368283093, + "grad_norm": 0.24274317920207977, + "learning_rate": 0.0006, + "loss": 4.101981163024902, + "step": 1149 + }, + { + "epoch": 15.978593272171254, + "grad_norm": 0.2350679188966751, + "learning_rate": 0.0006, + "loss": 4.057965278625488, + "step": 1150 + }, + { + "epoch": 15.992573176059414, + "grad_norm": 0.24072253704071045, + "learning_rate": 0.0006, + "loss": 4.020050048828125, + "step": 1151 + }, + { + "epoch": 16.0, + "grad_norm": 0.253978967666626, + "learning_rate": 0.0006, + "loss": 4.061928749084473, + "step": 1152 + }, + { + "epoch": 16.0, + "eval_loss": 4.270665645599365, + "eval_runtime": 44.5063, + "eval_samples_per_second": 54.869, + "eval_steps_per_second": 3.438, + "step": 1152 + }, + { + "epoch": 16.01397990388816, + "grad_norm": 0.3265204131603241, + "learning_rate": 0.0006, + "loss": 4.059116363525391, + "step": 1153 + }, + { + "epoch": 16.027959807776323, + "grad_norm": 0.34139737486839294, + "learning_rate": 0.0006, + "loss": 4.062219619750977, + "step": 1154 + }, + { + "epoch": 16.041939711664483, + "grad_norm": 0.2849949598312378, + "learning_rate": 0.0006, + "loss": 4.032323837280273, + "step": 1155 + }, + { + "epoch": 16.055919615552643, + "grad_norm": 0.25031402707099915, + "learning_rate": 0.0006, + "loss": 4.075527191162109, + "step": 1156 + }, + { + "epoch": 16.069899519440803, + "grad_norm": 0.25207436084747314, + "learning_rate": 0.0006, + "loss": 4.0883097648620605, + "step": 1157 + }, + { + "epoch": 16.083879423328966, + "grad_norm": 0.28677356243133545, + "learning_rate": 0.0006, + "loss": 4.040797233581543, + "step": 1158 + }, + { + "epoch": 16.097859327217126, + "grad_norm": 0.30778825283050537, + "learning_rate": 0.0006, + "loss": 4.051504135131836, + "step": 1159 + }, + { + "epoch": 16.111839231105286, + "grad_norm": 0.3136911988258362, + "learning_rate": 0.0006, + "loss": 4.045449256896973, + "step": 1160 + }, + { + "epoch": 16.125819134993446, + "grad_norm": 0.34384530782699585, + "learning_rate": 0.0006, + "loss": 4.069897651672363, + "step": 1161 + }, + { + "epoch": 16.13979903888161, + "grad_norm": 0.3074268400669098, + "learning_rate": 0.0006, + "loss": 4.0621137619018555, + "step": 1162 + }, + { + "epoch": 16.15377894276977, + "grad_norm": 0.33090949058532715, + "learning_rate": 0.0006, + "loss": 4.084089279174805, + "step": 1163 + }, + { + "epoch": 16.16775884665793, + "grad_norm": 0.26358580589294434, + "learning_rate": 0.0006, + "loss": 4.066563606262207, + "step": 1164 + }, + { + "epoch": 16.18173875054609, + "grad_norm": 0.25586041808128357, + "learning_rate": 0.0006, + "loss": 4.08109188079834, + "step": 1165 + }, + { + "epoch": 16.195718654434252, + "grad_norm": 0.2966184616088867, + "learning_rate": 0.0006, + "loss": 4.039186477661133, + "step": 1166 + }, + { + "epoch": 16.209698558322412, + "grad_norm": 0.3064924478530884, + "learning_rate": 0.0006, + "loss": 4.08139705657959, + "step": 1167 + }, + { + "epoch": 16.22367846221057, + "grad_norm": 0.28671345114707947, + "learning_rate": 0.0006, + "loss": 4.04637336730957, + "step": 1168 + }, + { + "epoch": 16.23765836609873, + "grad_norm": 0.26209691166877747, + "learning_rate": 0.0006, + "loss": 4.052768707275391, + "step": 1169 + }, + { + "epoch": 16.251638269986895, + "grad_norm": 0.2758907079696655, + "learning_rate": 0.0006, + "loss": 4.064321517944336, + "step": 1170 + }, + { + "epoch": 16.265618173875055, + "grad_norm": 0.25961801409721375, + "learning_rate": 0.0006, + "loss": 4.057299613952637, + "step": 1171 + }, + { + "epoch": 16.279598077763215, + "grad_norm": 0.2513751685619354, + "learning_rate": 0.0006, + "loss": 4.064148902893066, + "step": 1172 + }, + { + "epoch": 16.293577981651374, + "grad_norm": 0.23920276761054993, + "learning_rate": 0.0006, + "loss": 4.101890563964844, + "step": 1173 + }, + { + "epoch": 16.307557885539538, + "grad_norm": 0.22746537625789642, + "learning_rate": 0.0006, + "loss": 4.086627006530762, + "step": 1174 + }, + { + "epoch": 16.321537789427698, + "grad_norm": 0.22633525729179382, + "learning_rate": 0.0006, + "loss": 4.04669189453125, + "step": 1175 + }, + { + "epoch": 16.335517693315857, + "grad_norm": 0.2654891610145569, + "learning_rate": 0.0006, + "loss": 4.086793422698975, + "step": 1176 + }, + { + "epoch": 16.34949759720402, + "grad_norm": 0.2872653007507324, + "learning_rate": 0.0006, + "loss": 4.077983856201172, + "step": 1177 + }, + { + "epoch": 16.36347750109218, + "grad_norm": 0.25726038217544556, + "learning_rate": 0.0006, + "loss": 4.066011428833008, + "step": 1178 + }, + { + "epoch": 16.37745740498034, + "grad_norm": 0.2592027485370636, + "learning_rate": 0.0006, + "loss": 4.0482988357543945, + "step": 1179 + }, + { + "epoch": 16.3914373088685, + "grad_norm": 0.2768886685371399, + "learning_rate": 0.0006, + "loss": 4.065151214599609, + "step": 1180 + }, + { + "epoch": 16.405417212756664, + "grad_norm": 0.2956002652645111, + "learning_rate": 0.0006, + "loss": 4.037791728973389, + "step": 1181 + }, + { + "epoch": 16.419397116644824, + "grad_norm": 0.3092120885848999, + "learning_rate": 0.0006, + "loss": 4.062164306640625, + "step": 1182 + }, + { + "epoch": 16.433377020532983, + "grad_norm": 0.29516810178756714, + "learning_rate": 0.0006, + "loss": 4.025505065917969, + "step": 1183 + }, + { + "epoch": 16.447356924421143, + "grad_norm": 0.2640177607536316, + "learning_rate": 0.0006, + "loss": 4.060182571411133, + "step": 1184 + }, + { + "epoch": 16.461336828309307, + "grad_norm": 0.2444908320903778, + "learning_rate": 0.0006, + "loss": 4.046144962310791, + "step": 1185 + }, + { + "epoch": 16.475316732197467, + "grad_norm": 0.23190705478191376, + "learning_rate": 0.0006, + "loss": 4.075569152832031, + "step": 1186 + }, + { + "epoch": 16.489296636085626, + "grad_norm": 0.2383626103401184, + "learning_rate": 0.0006, + "loss": 4.088897705078125, + "step": 1187 + }, + { + "epoch": 16.503276539973786, + "grad_norm": 0.20688803493976593, + "learning_rate": 0.0006, + "loss": 4.064517974853516, + "step": 1188 + }, + { + "epoch": 16.51725644386195, + "grad_norm": 0.22610054910182953, + "learning_rate": 0.0006, + "loss": 4.04502010345459, + "step": 1189 + }, + { + "epoch": 16.53123634775011, + "grad_norm": 0.2014893889427185, + "learning_rate": 0.0006, + "loss": 4.058279514312744, + "step": 1190 + }, + { + "epoch": 16.54521625163827, + "grad_norm": 0.21459777653217316, + "learning_rate": 0.0006, + "loss": 4.066389083862305, + "step": 1191 + }, + { + "epoch": 16.55919615552643, + "grad_norm": 0.22909940779209137, + "learning_rate": 0.0006, + "loss": 4.0557966232299805, + "step": 1192 + }, + { + "epoch": 16.573176059414592, + "grad_norm": 0.20039083063602448, + "learning_rate": 0.0006, + "loss": 4.092845916748047, + "step": 1193 + }, + { + "epoch": 16.587155963302752, + "grad_norm": 0.22651726007461548, + "learning_rate": 0.0006, + "loss": 4.034615516662598, + "step": 1194 + }, + { + "epoch": 16.601135867190912, + "grad_norm": 0.21901755034923553, + "learning_rate": 0.0006, + "loss": 4.035619735717773, + "step": 1195 + }, + { + "epoch": 16.615115771079076, + "grad_norm": 0.22930841147899628, + "learning_rate": 0.0006, + "loss": 4.080800533294678, + "step": 1196 + }, + { + "epoch": 16.629095674967235, + "grad_norm": 0.212818443775177, + "learning_rate": 0.0006, + "loss": 4.030189514160156, + "step": 1197 + }, + { + "epoch": 16.643075578855395, + "grad_norm": 0.2370826154947281, + "learning_rate": 0.0006, + "loss": 4.062643527984619, + "step": 1198 + }, + { + "epoch": 16.657055482743555, + "grad_norm": 0.24786995351314545, + "learning_rate": 0.0006, + "loss": 4.031761169433594, + "step": 1199 + }, + { + "epoch": 16.67103538663172, + "grad_norm": 0.2305847704410553, + "learning_rate": 0.0006, + "loss": 4.083752155303955, + "step": 1200 + }, + { + "epoch": 16.68501529051988, + "grad_norm": 0.23336584866046906, + "learning_rate": 0.0006, + "loss": 4.079145431518555, + "step": 1201 + }, + { + "epoch": 16.698995194408038, + "grad_norm": 0.23976293206214905, + "learning_rate": 0.0006, + "loss": 4.020473957061768, + "step": 1202 + }, + { + "epoch": 16.712975098296198, + "grad_norm": 0.222761869430542, + "learning_rate": 0.0006, + "loss": 4.065582752227783, + "step": 1203 + }, + { + "epoch": 16.72695500218436, + "grad_norm": 0.23725618422031403, + "learning_rate": 0.0006, + "loss": 4.0263776779174805, + "step": 1204 + }, + { + "epoch": 16.74093490607252, + "grad_norm": 0.23873984813690186, + "learning_rate": 0.0006, + "loss": 4.053092956542969, + "step": 1205 + }, + { + "epoch": 16.75491480996068, + "grad_norm": 0.21043002605438232, + "learning_rate": 0.0006, + "loss": 4.063965797424316, + "step": 1206 + }, + { + "epoch": 16.76889471384884, + "grad_norm": 0.19863522052764893, + "learning_rate": 0.0006, + "loss": 4.061187267303467, + "step": 1207 + }, + { + "epoch": 16.782874617737004, + "grad_norm": 0.1953752487897873, + "learning_rate": 0.0006, + "loss": 4.046016693115234, + "step": 1208 + }, + { + "epoch": 16.796854521625164, + "grad_norm": 0.2130361795425415, + "learning_rate": 0.0006, + "loss": 4.066933631896973, + "step": 1209 + }, + { + "epoch": 16.810834425513324, + "grad_norm": 0.19598130881786346, + "learning_rate": 0.0006, + "loss": 4.071558952331543, + "step": 1210 + }, + { + "epoch": 16.824814329401484, + "grad_norm": 0.20331116020679474, + "learning_rate": 0.0006, + "loss": 4.088632106781006, + "step": 1211 + }, + { + "epoch": 16.838794233289647, + "grad_norm": 0.20423150062561035, + "learning_rate": 0.0006, + "loss": 4.032224655151367, + "step": 1212 + }, + { + "epoch": 16.852774137177807, + "grad_norm": 0.2401197850704193, + "learning_rate": 0.0006, + "loss": 4.037393569946289, + "step": 1213 + }, + { + "epoch": 16.866754041065967, + "grad_norm": 0.26102620363235474, + "learning_rate": 0.0006, + "loss": 4.04738712310791, + "step": 1214 + }, + { + "epoch": 16.88073394495413, + "grad_norm": 0.2438521534204483, + "learning_rate": 0.0006, + "loss": 4.015673637390137, + "step": 1215 + }, + { + "epoch": 16.89471384884229, + "grad_norm": 0.20742061734199524, + "learning_rate": 0.0006, + "loss": 4.049060821533203, + "step": 1216 + }, + { + "epoch": 16.90869375273045, + "grad_norm": 0.22028608620166779, + "learning_rate": 0.0006, + "loss": 4.088971138000488, + "step": 1217 + }, + { + "epoch": 16.92267365661861, + "grad_norm": 0.21746744215488434, + "learning_rate": 0.0006, + "loss": 4.021710395812988, + "step": 1218 + }, + { + "epoch": 16.936653560506773, + "grad_norm": 0.2226102203130722, + "learning_rate": 0.0006, + "loss": 4.050119400024414, + "step": 1219 + }, + { + "epoch": 16.950633464394933, + "grad_norm": 0.23903657495975494, + "learning_rate": 0.0006, + "loss": 4.0570526123046875, + "step": 1220 + }, + { + "epoch": 16.964613368283093, + "grad_norm": 0.2556349039077759, + "learning_rate": 0.0006, + "loss": 4.0448808670043945, + "step": 1221 + }, + { + "epoch": 16.978593272171253, + "grad_norm": 0.28445592522621155, + "learning_rate": 0.0006, + "loss": 4.052034378051758, + "step": 1222 + }, + { + "epoch": 16.992573176059416, + "grad_norm": 0.273973673582077, + "learning_rate": 0.0006, + "loss": 4.02907657623291, + "step": 1223 + }, + { + "epoch": 17.0, + "grad_norm": 0.26125091314315796, + "learning_rate": 0.0006, + "loss": 4.10643196105957, + "step": 1224 + }, + { + "epoch": 17.0, + "eval_loss": 4.2585954666137695, + "eval_runtime": 44.8583, + "eval_samples_per_second": 54.438, + "eval_steps_per_second": 3.411, + "step": 1224 + }, + { + "epoch": 17.01397990388816, + "grad_norm": 0.2786196768283844, + "learning_rate": 0.0006, + "loss": 4.044719219207764, + "step": 1225 + }, + { + "epoch": 17.027959807776323, + "grad_norm": 0.2969571650028229, + "learning_rate": 0.0006, + "loss": 4.022037506103516, + "step": 1226 + }, + { + "epoch": 17.041939711664483, + "grad_norm": 0.32196253538131714, + "learning_rate": 0.0006, + "loss": 4.03636360168457, + "step": 1227 + }, + { + "epoch": 17.055919615552643, + "grad_norm": 0.28617000579833984, + "learning_rate": 0.0006, + "loss": 4.012125492095947, + "step": 1228 + }, + { + "epoch": 17.069899519440803, + "grad_norm": 0.26539644598960876, + "learning_rate": 0.0006, + "loss": 4.020190715789795, + "step": 1229 + }, + { + "epoch": 17.083879423328966, + "grad_norm": 0.24315394461154938, + "learning_rate": 0.0006, + "loss": 4.0553812980651855, + "step": 1230 + }, + { + "epoch": 17.097859327217126, + "grad_norm": 0.23798158764839172, + "learning_rate": 0.0006, + "loss": 4.004805088043213, + "step": 1231 + }, + { + "epoch": 17.111839231105286, + "grad_norm": 0.25723618268966675, + "learning_rate": 0.0006, + "loss": 4.00108003616333, + "step": 1232 + }, + { + "epoch": 17.125819134993446, + "grad_norm": 0.2669757604598999, + "learning_rate": 0.0006, + "loss": 4.00828742980957, + "step": 1233 + }, + { + "epoch": 17.13979903888161, + "grad_norm": 0.26421651244163513, + "learning_rate": 0.0006, + "loss": 3.995478391647339, + "step": 1234 + }, + { + "epoch": 17.15377894276977, + "grad_norm": 0.24745801091194153, + "learning_rate": 0.0006, + "loss": 4.0171027183532715, + "step": 1235 + }, + { + "epoch": 17.16775884665793, + "grad_norm": 0.27028775215148926, + "learning_rate": 0.0006, + "loss": 4.017108917236328, + "step": 1236 + }, + { + "epoch": 17.18173875054609, + "grad_norm": 0.27247968316078186, + "learning_rate": 0.0006, + "loss": 4.032601356506348, + "step": 1237 + }, + { + "epoch": 17.195718654434252, + "grad_norm": 0.24620869755744934, + "learning_rate": 0.0006, + "loss": 4.022171974182129, + "step": 1238 + }, + { + "epoch": 17.209698558322412, + "grad_norm": 0.23407386243343353, + "learning_rate": 0.0006, + "loss": 3.9946959018707275, + "step": 1239 + }, + { + "epoch": 17.22367846221057, + "grad_norm": 0.22559069097042084, + "learning_rate": 0.0006, + "loss": 4.013072490692139, + "step": 1240 + }, + { + "epoch": 17.23765836609873, + "grad_norm": 0.226687952876091, + "learning_rate": 0.0006, + "loss": 4.023543834686279, + "step": 1241 + }, + { + "epoch": 17.251638269986895, + "grad_norm": 0.24436360597610474, + "learning_rate": 0.0006, + "loss": 4.044206619262695, + "step": 1242 + }, + { + "epoch": 17.265618173875055, + "grad_norm": 0.25527626276016235, + "learning_rate": 0.0006, + "loss": 4.016424179077148, + "step": 1243 + }, + { + "epoch": 17.279598077763215, + "grad_norm": 0.26126864552497864, + "learning_rate": 0.0006, + "loss": 4.024394512176514, + "step": 1244 + }, + { + "epoch": 17.293577981651374, + "grad_norm": 0.25746744871139526, + "learning_rate": 0.0006, + "loss": 4.046844482421875, + "step": 1245 + }, + { + "epoch": 17.307557885539538, + "grad_norm": 0.26579564809799194, + "learning_rate": 0.0006, + "loss": 4.021010398864746, + "step": 1246 + }, + { + "epoch": 17.321537789427698, + "grad_norm": 0.2713971734046936, + "learning_rate": 0.0006, + "loss": 4.022331237792969, + "step": 1247 + }, + { + "epoch": 17.335517693315857, + "grad_norm": 0.24217180907726288, + "learning_rate": 0.0006, + "loss": 4.006353855133057, + "step": 1248 + }, + { + "epoch": 17.34949759720402, + "grad_norm": 0.26899752020835876, + "learning_rate": 0.0006, + "loss": 4.068023681640625, + "step": 1249 + }, + { + "epoch": 17.36347750109218, + "grad_norm": 0.26745253801345825, + "learning_rate": 0.0006, + "loss": 4.031207084655762, + "step": 1250 + }, + { + "epoch": 17.37745740498034, + "grad_norm": 0.21533764898777008, + "learning_rate": 0.0006, + "loss": 4.042410850524902, + "step": 1251 + }, + { + "epoch": 17.3914373088685, + "grad_norm": 0.21958027780056, + "learning_rate": 0.0006, + "loss": 4.02597713470459, + "step": 1252 + }, + { + "epoch": 17.405417212756664, + "grad_norm": 0.263068825006485, + "learning_rate": 0.0006, + "loss": 4.0035905838012695, + "step": 1253 + }, + { + "epoch": 17.419397116644824, + "grad_norm": 0.24044716358184814, + "learning_rate": 0.0006, + "loss": 4.005317687988281, + "step": 1254 + }, + { + "epoch": 17.433377020532983, + "grad_norm": 0.19142559170722961, + "learning_rate": 0.0006, + "loss": 3.9976844787597656, + "step": 1255 + }, + { + "epoch": 17.447356924421143, + "grad_norm": 0.18650250136852264, + "learning_rate": 0.0006, + "loss": 4.031353950500488, + "step": 1256 + }, + { + "epoch": 17.461336828309307, + "grad_norm": 0.1984022557735443, + "learning_rate": 0.0006, + "loss": 4.002097129821777, + "step": 1257 + }, + { + "epoch": 17.475316732197467, + "grad_norm": 0.20087844133377075, + "learning_rate": 0.0006, + "loss": 4.031151294708252, + "step": 1258 + }, + { + "epoch": 17.489296636085626, + "grad_norm": 0.20881228148937225, + "learning_rate": 0.0006, + "loss": 4.034793853759766, + "step": 1259 + }, + { + "epoch": 17.503276539973786, + "grad_norm": 0.23958556354045868, + "learning_rate": 0.0006, + "loss": 4.025238990783691, + "step": 1260 + }, + { + "epoch": 17.51725644386195, + "grad_norm": 0.23927845060825348, + "learning_rate": 0.0006, + "loss": 3.999828338623047, + "step": 1261 + }, + { + "epoch": 17.53123634775011, + "grad_norm": 0.20342715084552765, + "learning_rate": 0.0006, + "loss": 4.054262161254883, + "step": 1262 + }, + { + "epoch": 17.54521625163827, + "grad_norm": 0.21370555460453033, + "learning_rate": 0.0006, + "loss": 4.011582374572754, + "step": 1263 + }, + { + "epoch": 17.55919615552643, + "grad_norm": 0.23681946098804474, + "learning_rate": 0.0006, + "loss": 4.029694080352783, + "step": 1264 + }, + { + "epoch": 17.573176059414592, + "grad_norm": 0.24190311133861542, + "learning_rate": 0.0006, + "loss": 4.018783092498779, + "step": 1265 + }, + { + "epoch": 17.587155963302752, + "grad_norm": 0.23215509951114655, + "learning_rate": 0.0006, + "loss": 4.009703159332275, + "step": 1266 + }, + { + "epoch": 17.601135867190912, + "grad_norm": 0.21122977137565613, + "learning_rate": 0.0006, + "loss": 4.0345659255981445, + "step": 1267 + }, + { + "epoch": 17.615115771079076, + "grad_norm": 0.2075948715209961, + "learning_rate": 0.0006, + "loss": 4.070703506469727, + "step": 1268 + }, + { + "epoch": 17.629095674967235, + "grad_norm": 0.21667909622192383, + "learning_rate": 0.0006, + "loss": 4.020771503448486, + "step": 1269 + }, + { + "epoch": 17.643075578855395, + "grad_norm": 0.20960724353790283, + "learning_rate": 0.0006, + "loss": 4.026404857635498, + "step": 1270 + }, + { + "epoch": 17.657055482743555, + "grad_norm": 0.22575686872005463, + "learning_rate": 0.0006, + "loss": 4.01981258392334, + "step": 1271 + }, + { + "epoch": 17.67103538663172, + "grad_norm": 0.2565988302230835, + "learning_rate": 0.0006, + "loss": 4.015827178955078, + "step": 1272 + }, + { + "epoch": 17.68501529051988, + "grad_norm": 0.24831551313400269, + "learning_rate": 0.0006, + "loss": 4.012457847595215, + "step": 1273 + }, + { + "epoch": 17.698995194408038, + "grad_norm": 0.22595494985580444, + "learning_rate": 0.0006, + "loss": 4.031386375427246, + "step": 1274 + }, + { + "epoch": 17.712975098296198, + "grad_norm": 0.20687322318553925, + "learning_rate": 0.0006, + "loss": 4.014216423034668, + "step": 1275 + }, + { + "epoch": 17.72695500218436, + "grad_norm": 0.21916012465953827, + "learning_rate": 0.0006, + "loss": 4.037643909454346, + "step": 1276 + }, + { + "epoch": 17.74093490607252, + "grad_norm": 0.2243107706308365, + "learning_rate": 0.0006, + "loss": 4.033044815063477, + "step": 1277 + }, + { + "epoch": 17.75491480996068, + "grad_norm": 0.2402164787054062, + "learning_rate": 0.0006, + "loss": 4.026636123657227, + "step": 1278 + }, + { + "epoch": 17.76889471384884, + "grad_norm": 0.27957046031951904, + "learning_rate": 0.0006, + "loss": 4.0270867347717285, + "step": 1279 + }, + { + "epoch": 17.782874617737004, + "grad_norm": 0.27447596192359924, + "learning_rate": 0.0006, + "loss": 4.0120134353637695, + "step": 1280 + }, + { + "epoch": 17.796854521625164, + "grad_norm": 0.26926323771476746, + "learning_rate": 0.0006, + "loss": 4.027970314025879, + "step": 1281 + }, + { + "epoch": 17.810834425513324, + "grad_norm": 0.2535291314125061, + "learning_rate": 0.0006, + "loss": 4.002565383911133, + "step": 1282 + }, + { + "epoch": 17.824814329401484, + "grad_norm": 0.22639447450637817, + "learning_rate": 0.0006, + "loss": 4.032750606536865, + "step": 1283 + }, + { + "epoch": 17.838794233289647, + "grad_norm": 0.23384462296962738, + "learning_rate": 0.0006, + "loss": 4.03568172454834, + "step": 1284 + }, + { + "epoch": 17.852774137177807, + "grad_norm": 0.22971470654010773, + "learning_rate": 0.0006, + "loss": 4.031299591064453, + "step": 1285 + }, + { + "epoch": 17.866754041065967, + "grad_norm": 0.24540141224861145, + "learning_rate": 0.0006, + "loss": 4.0142669677734375, + "step": 1286 + }, + { + "epoch": 17.88073394495413, + "grad_norm": 0.2304888367652893, + "learning_rate": 0.0006, + "loss": 3.9964895248413086, + "step": 1287 + }, + { + "epoch": 17.89471384884229, + "grad_norm": 0.22082284092903137, + "learning_rate": 0.0006, + "loss": 4.024693489074707, + "step": 1288 + }, + { + "epoch": 17.90869375273045, + "grad_norm": 0.23677092790603638, + "learning_rate": 0.0006, + "loss": 4.002082347869873, + "step": 1289 + }, + { + "epoch": 17.92267365661861, + "grad_norm": 0.23122332990169525, + "learning_rate": 0.0006, + "loss": 4.025351524353027, + "step": 1290 + }, + { + "epoch": 17.936653560506773, + "grad_norm": 0.2548119127750397, + "learning_rate": 0.0006, + "loss": 3.9955825805664062, + "step": 1291 + }, + { + "epoch": 17.950633464394933, + "grad_norm": 0.26950931549072266, + "learning_rate": 0.0006, + "loss": 4.026151180267334, + "step": 1292 + }, + { + "epoch": 17.964613368283093, + "grad_norm": 0.3023233711719513, + "learning_rate": 0.0006, + "loss": 4.006035804748535, + "step": 1293 + }, + { + "epoch": 17.978593272171253, + "grad_norm": 0.3190958499908447, + "learning_rate": 0.0006, + "loss": 4.023565292358398, + "step": 1294 + }, + { + "epoch": 17.992573176059416, + "grad_norm": 0.28878068923950195, + "learning_rate": 0.0006, + "loss": 4.020973205566406, + "step": 1295 + }, + { + "epoch": 18.0, + "grad_norm": 0.27312418818473816, + "learning_rate": 0.0006, + "loss": 3.99906587600708, + "step": 1296 + }, + { + "epoch": 18.0, + "eval_loss": 4.224447250366211, + "eval_runtime": 52.5728, + "eval_samples_per_second": 46.45, + "eval_steps_per_second": 2.91, + "step": 1296 + }, + { + "epoch": 18.01397990388816, + "grad_norm": 0.2567712664604187, + "learning_rate": 0.0006, + "loss": 3.9755055904388428, + "step": 1297 + }, + { + "epoch": 18.027959807776323, + "grad_norm": 0.25048133730888367, + "learning_rate": 0.0006, + "loss": 4.009254455566406, + "step": 1298 + }, + { + "epoch": 18.041939711664483, + "grad_norm": 0.2556909918785095, + "learning_rate": 0.0006, + "loss": 4.001235008239746, + "step": 1299 + }, + { + "epoch": 18.055919615552643, + "grad_norm": 0.2501400113105774, + "learning_rate": 0.0006, + "loss": 3.980726480484009, + "step": 1300 + }, + { + "epoch": 18.069899519440803, + "grad_norm": 0.23977792263031006, + "learning_rate": 0.0006, + "loss": 3.964195728302002, + "step": 1301 + }, + { + "epoch": 18.083879423328966, + "grad_norm": 0.25650718808174133, + "learning_rate": 0.0006, + "loss": 4.015914440155029, + "step": 1302 + }, + { + "epoch": 18.097859327217126, + "grad_norm": 0.234053835272789, + "learning_rate": 0.0006, + "loss": 4.0159149169921875, + "step": 1303 + }, + { + "epoch": 18.111839231105286, + "grad_norm": 0.21967713534832, + "learning_rate": 0.0006, + "loss": 4.0055694580078125, + "step": 1304 + }, + { + "epoch": 18.125819134993446, + "grad_norm": 0.21790878474712372, + "learning_rate": 0.0006, + "loss": 3.986253261566162, + "step": 1305 + }, + { + "epoch": 18.13979903888161, + "grad_norm": 0.22955302894115448, + "learning_rate": 0.0006, + "loss": 3.959421157836914, + "step": 1306 + }, + { + "epoch": 18.15377894276977, + "grad_norm": 0.2559174597263336, + "learning_rate": 0.0006, + "loss": 4.0069756507873535, + "step": 1307 + }, + { + "epoch": 18.16775884665793, + "grad_norm": 0.26132866740226746, + "learning_rate": 0.0006, + "loss": 3.9874095916748047, + "step": 1308 + }, + { + "epoch": 18.18173875054609, + "grad_norm": 0.23258940875530243, + "learning_rate": 0.0006, + "loss": 3.9762492179870605, + "step": 1309 + }, + { + "epoch": 18.195718654434252, + "grad_norm": 0.22347190976142883, + "learning_rate": 0.0006, + "loss": 3.9923410415649414, + "step": 1310 + }, + { + "epoch": 18.209698558322412, + "grad_norm": 0.23095804452896118, + "learning_rate": 0.0006, + "loss": 4.019245624542236, + "step": 1311 + }, + { + "epoch": 18.22367846221057, + "grad_norm": 0.24817052483558655, + "learning_rate": 0.0006, + "loss": 3.9697511196136475, + "step": 1312 + }, + { + "epoch": 18.23765836609873, + "grad_norm": 0.2566024959087372, + "learning_rate": 0.0006, + "loss": 3.978804111480713, + "step": 1313 + }, + { + "epoch": 18.251638269986895, + "grad_norm": 0.2527952790260315, + "learning_rate": 0.0006, + "loss": 3.972018241882324, + "step": 1314 + }, + { + "epoch": 18.265618173875055, + "grad_norm": 0.2508150637149811, + "learning_rate": 0.0006, + "loss": 3.9971275329589844, + "step": 1315 + }, + { + "epoch": 18.279598077763215, + "grad_norm": 0.23242022097110748, + "learning_rate": 0.0006, + "loss": 3.9712045192718506, + "step": 1316 + }, + { + "epoch": 18.293577981651374, + "grad_norm": 0.23474404215812683, + "learning_rate": 0.0006, + "loss": 3.9926767349243164, + "step": 1317 + }, + { + "epoch": 18.307557885539538, + "grad_norm": 0.2417769432067871, + "learning_rate": 0.0006, + "loss": 3.9920949935913086, + "step": 1318 + }, + { + "epoch": 18.321537789427698, + "grad_norm": 0.23839452862739563, + "learning_rate": 0.0006, + "loss": 4.016645431518555, + "step": 1319 + }, + { + "epoch": 18.335517693315857, + "grad_norm": 0.2512452304363251, + "learning_rate": 0.0006, + "loss": 3.97586727142334, + "step": 1320 + }, + { + "epoch": 18.34949759720402, + "grad_norm": 0.27503693103790283, + "learning_rate": 0.0006, + "loss": 4.000148773193359, + "step": 1321 + }, + { + "epoch": 18.36347750109218, + "grad_norm": 0.27830836176872253, + "learning_rate": 0.0006, + "loss": 3.9972195625305176, + "step": 1322 + }, + { + "epoch": 18.37745740498034, + "grad_norm": 0.2571812570095062, + "learning_rate": 0.0006, + "loss": 3.9900810718536377, + "step": 1323 + }, + { + "epoch": 18.3914373088685, + "grad_norm": 0.2310052365064621, + "learning_rate": 0.0006, + "loss": 4.003000259399414, + "step": 1324 + }, + { + "epoch": 18.405417212756664, + "grad_norm": 0.19615735113620758, + "learning_rate": 0.0006, + "loss": 3.9536571502685547, + "step": 1325 + }, + { + "epoch": 18.419397116644824, + "grad_norm": 0.21323896944522858, + "learning_rate": 0.0006, + "loss": 3.977508068084717, + "step": 1326 + }, + { + "epoch": 18.433377020532983, + "grad_norm": 0.21404202282428741, + "learning_rate": 0.0006, + "loss": 4.015361785888672, + "step": 1327 + }, + { + "epoch": 18.447356924421143, + "grad_norm": 0.1991959661245346, + "learning_rate": 0.0006, + "loss": 4.000286102294922, + "step": 1328 + }, + { + "epoch": 18.461336828309307, + "grad_norm": 0.2073599398136139, + "learning_rate": 0.0006, + "loss": 3.973065137863159, + "step": 1329 + }, + { + "epoch": 18.475316732197467, + "grad_norm": 0.2096073031425476, + "learning_rate": 0.0006, + "loss": 3.987032890319824, + "step": 1330 + }, + { + "epoch": 18.489296636085626, + "grad_norm": 0.2380610853433609, + "learning_rate": 0.0006, + "loss": 4.035274505615234, + "step": 1331 + }, + { + "epoch": 18.503276539973786, + "grad_norm": 0.23570716381072998, + "learning_rate": 0.0006, + "loss": 4.010516166687012, + "step": 1332 + }, + { + "epoch": 18.51725644386195, + "grad_norm": 0.24805466830730438, + "learning_rate": 0.0006, + "loss": 3.9750983715057373, + "step": 1333 + }, + { + "epoch": 18.53123634775011, + "grad_norm": 0.25173231959342957, + "learning_rate": 0.0006, + "loss": 3.9742345809936523, + "step": 1334 + }, + { + "epoch": 18.54521625163827, + "grad_norm": 0.24590367078781128, + "learning_rate": 0.0006, + "loss": 4.0037312507629395, + "step": 1335 + }, + { + "epoch": 18.55919615552643, + "grad_norm": 0.24379394948482513, + "learning_rate": 0.0006, + "loss": 3.993858814239502, + "step": 1336 + }, + { + "epoch": 18.573176059414592, + "grad_norm": 0.21708883345127106, + "learning_rate": 0.0006, + "loss": 3.965670585632324, + "step": 1337 + }, + { + "epoch": 18.587155963302752, + "grad_norm": 0.21024051308631897, + "learning_rate": 0.0006, + "loss": 3.987551689147949, + "step": 1338 + }, + { + "epoch": 18.601135867190912, + "grad_norm": 0.23376783728599548, + "learning_rate": 0.0006, + "loss": 4.002841472625732, + "step": 1339 + }, + { + "epoch": 18.615115771079076, + "grad_norm": 0.25350701808929443, + "learning_rate": 0.0006, + "loss": 3.9881370067596436, + "step": 1340 + }, + { + "epoch": 18.629095674967235, + "grad_norm": 0.2542140483856201, + "learning_rate": 0.0006, + "loss": 4.003695964813232, + "step": 1341 + }, + { + "epoch": 18.643075578855395, + "grad_norm": 0.22932685911655426, + "learning_rate": 0.0006, + "loss": 4.0146002769470215, + "step": 1342 + }, + { + "epoch": 18.657055482743555, + "grad_norm": 0.21099458634853363, + "learning_rate": 0.0006, + "loss": 3.970472812652588, + "step": 1343 + }, + { + "epoch": 18.67103538663172, + "grad_norm": 0.2234615832567215, + "learning_rate": 0.0006, + "loss": 3.9821488857269287, + "step": 1344 + }, + { + "epoch": 18.68501529051988, + "grad_norm": 0.230327770113945, + "learning_rate": 0.0006, + "loss": 3.996274948120117, + "step": 1345 + }, + { + "epoch": 18.698995194408038, + "grad_norm": 0.23596233129501343, + "learning_rate": 0.0006, + "loss": 3.9747462272644043, + "step": 1346 + }, + { + "epoch": 18.712975098296198, + "grad_norm": 0.24173159897327423, + "learning_rate": 0.0006, + "loss": 4.011804103851318, + "step": 1347 + }, + { + "epoch": 18.72695500218436, + "grad_norm": 0.24087604880332947, + "learning_rate": 0.0006, + "loss": 4.008726119995117, + "step": 1348 + }, + { + "epoch": 18.74093490607252, + "grad_norm": 0.2457292526960373, + "learning_rate": 0.0006, + "loss": 3.990793228149414, + "step": 1349 + }, + { + "epoch": 18.75491480996068, + "grad_norm": 0.22946089506149292, + "learning_rate": 0.0006, + "loss": 3.980494260787964, + "step": 1350 + }, + { + "epoch": 18.76889471384884, + "grad_norm": 0.22986692190170288, + "learning_rate": 0.0006, + "loss": 3.97006893157959, + "step": 1351 + }, + { + "epoch": 18.782874617737004, + "grad_norm": 0.23358555138111115, + "learning_rate": 0.0006, + "loss": 4.008172035217285, + "step": 1352 + }, + { + "epoch": 18.796854521625164, + "grad_norm": 0.20183615386486053, + "learning_rate": 0.0006, + "loss": 3.9720888137817383, + "step": 1353 + }, + { + "epoch": 18.810834425513324, + "grad_norm": 0.19975653290748596, + "learning_rate": 0.0006, + "loss": 3.9783310890197754, + "step": 1354 + }, + { + "epoch": 18.824814329401484, + "grad_norm": 0.18911021947860718, + "learning_rate": 0.0006, + "loss": 3.985982894897461, + "step": 1355 + }, + { + "epoch": 18.838794233289647, + "grad_norm": 0.15984168648719788, + "learning_rate": 0.0006, + "loss": 3.9740548133850098, + "step": 1356 + }, + { + "epoch": 18.852774137177807, + "grad_norm": 0.1755436211824417, + "learning_rate": 0.0006, + "loss": 4.013090133666992, + "step": 1357 + }, + { + "epoch": 18.866754041065967, + "grad_norm": 0.1798417866230011, + "learning_rate": 0.0006, + "loss": 3.997880697250366, + "step": 1358 + }, + { + "epoch": 18.88073394495413, + "grad_norm": 0.20206265151500702, + "learning_rate": 0.0006, + "loss": 3.9892373085021973, + "step": 1359 + }, + { + "epoch": 18.89471384884229, + "grad_norm": 0.23685456812381744, + "learning_rate": 0.0006, + "loss": 3.9909186363220215, + "step": 1360 + }, + { + "epoch": 18.90869375273045, + "grad_norm": 0.26053836941719055, + "learning_rate": 0.0006, + "loss": 4.00327205657959, + "step": 1361 + }, + { + "epoch": 18.92267365661861, + "grad_norm": 0.26215845346450806, + "learning_rate": 0.0006, + "loss": 3.9714717864990234, + "step": 1362 + }, + { + "epoch": 18.936653560506773, + "grad_norm": 0.2433871030807495, + "learning_rate": 0.0006, + "loss": 3.949416160583496, + "step": 1363 + }, + { + "epoch": 18.950633464394933, + "grad_norm": 0.23331883549690247, + "learning_rate": 0.0006, + "loss": 3.980501413345337, + "step": 1364 + }, + { + "epoch": 18.964613368283093, + "grad_norm": 0.2346954047679901, + "learning_rate": 0.0006, + "loss": 3.9974493980407715, + "step": 1365 + }, + { + "epoch": 18.978593272171253, + "grad_norm": 0.25101345777511597, + "learning_rate": 0.0006, + "loss": 3.9800148010253906, + "step": 1366 + }, + { + "epoch": 18.992573176059416, + "grad_norm": 0.26811933517456055, + "learning_rate": 0.0006, + "loss": 4.0065741539001465, + "step": 1367 + }, + { + "epoch": 19.0, + "grad_norm": 0.2731736898422241, + "learning_rate": 0.0006, + "loss": 4.014575481414795, + "step": 1368 + }, + { + "epoch": 19.0, + "eval_loss": 4.200716972351074, + "eval_runtime": 44.6962, + "eval_samples_per_second": 54.636, + "eval_steps_per_second": 3.423, + "step": 1368 + }, + { + "epoch": 19.01397990388816, + "grad_norm": 0.2517746686935425, + "learning_rate": 0.0006, + "loss": 3.9486539363861084, + "step": 1369 + }, + { + "epoch": 19.027959807776323, + "grad_norm": 0.2482699453830719, + "learning_rate": 0.0006, + "loss": 3.95015287399292, + "step": 1370 + }, + { + "epoch": 19.041939711664483, + "grad_norm": 0.21693618595600128, + "learning_rate": 0.0006, + "loss": 3.970022201538086, + "step": 1371 + }, + { + "epoch": 19.055919615552643, + "grad_norm": 0.2035159319639206, + "learning_rate": 0.0006, + "loss": 3.941457748413086, + "step": 1372 + }, + { + "epoch": 19.069899519440803, + "grad_norm": 0.2201429009437561, + "learning_rate": 0.0006, + "loss": 3.946794033050537, + "step": 1373 + }, + { + "epoch": 19.083879423328966, + "grad_norm": 0.22910255193710327, + "learning_rate": 0.0006, + "loss": 3.94606876373291, + "step": 1374 + }, + { + "epoch": 19.097859327217126, + "grad_norm": 0.22378197312355042, + "learning_rate": 0.0006, + "loss": 3.957899570465088, + "step": 1375 + }, + { + "epoch": 19.111839231105286, + "grad_norm": 0.21728114783763885, + "learning_rate": 0.0006, + "loss": 3.9565982818603516, + "step": 1376 + }, + { + "epoch": 19.125819134993446, + "grad_norm": 0.21887634694576263, + "learning_rate": 0.0006, + "loss": 3.9649534225463867, + "step": 1377 + }, + { + "epoch": 19.13979903888161, + "grad_norm": 0.21892991662025452, + "learning_rate": 0.0006, + "loss": 3.971388101577759, + "step": 1378 + }, + { + "epoch": 19.15377894276977, + "grad_norm": 0.24582402408123016, + "learning_rate": 0.0006, + "loss": 3.9370944499969482, + "step": 1379 + }, + { + "epoch": 19.16775884665793, + "grad_norm": 0.27547118067741394, + "learning_rate": 0.0006, + "loss": 3.939406156539917, + "step": 1380 + }, + { + "epoch": 19.18173875054609, + "grad_norm": 0.3131563365459442, + "learning_rate": 0.0006, + "loss": 3.942620277404785, + "step": 1381 + }, + { + "epoch": 19.195718654434252, + "grad_norm": 0.3211703598499298, + "learning_rate": 0.0006, + "loss": 3.9388349056243896, + "step": 1382 + }, + { + "epoch": 19.209698558322412, + "grad_norm": 0.2791919410228729, + "learning_rate": 0.0006, + "loss": 3.9827399253845215, + "step": 1383 + }, + { + "epoch": 19.22367846221057, + "grad_norm": 0.2872016727924347, + "learning_rate": 0.0006, + "loss": 3.976715087890625, + "step": 1384 + }, + { + "epoch": 19.23765836609873, + "grad_norm": 0.2790389060974121, + "learning_rate": 0.0006, + "loss": 3.952850818634033, + "step": 1385 + }, + { + "epoch": 19.251638269986895, + "grad_norm": 0.31903740763664246, + "learning_rate": 0.0006, + "loss": 3.964506149291992, + "step": 1386 + }, + { + "epoch": 19.265618173875055, + "grad_norm": 0.31013646721839905, + "learning_rate": 0.0006, + "loss": 3.967219352722168, + "step": 1387 + }, + { + "epoch": 19.279598077763215, + "grad_norm": 0.2574339509010315, + "learning_rate": 0.0006, + "loss": 3.979168176651001, + "step": 1388 + }, + { + "epoch": 19.293577981651374, + "grad_norm": 0.24621108174324036, + "learning_rate": 0.0006, + "loss": 3.981734275817871, + "step": 1389 + }, + { + "epoch": 19.307557885539538, + "grad_norm": 0.25113818049430847, + "learning_rate": 0.0006, + "loss": 3.9787755012512207, + "step": 1390 + }, + { + "epoch": 19.321537789427698, + "grad_norm": 0.259971022605896, + "learning_rate": 0.0006, + "loss": 3.9648823738098145, + "step": 1391 + }, + { + "epoch": 19.335517693315857, + "grad_norm": 0.22580404579639435, + "learning_rate": 0.0006, + "loss": 3.9658002853393555, + "step": 1392 + }, + { + "epoch": 19.34949759720402, + "grad_norm": 0.2133680284023285, + "learning_rate": 0.0006, + "loss": 3.9615914821624756, + "step": 1393 + }, + { + "epoch": 19.36347750109218, + "grad_norm": 0.2387680858373642, + "learning_rate": 0.0006, + "loss": 3.993811845779419, + "step": 1394 + }, + { + "epoch": 19.37745740498034, + "grad_norm": 0.26086220145225525, + "learning_rate": 0.0006, + "loss": 3.932701826095581, + "step": 1395 + }, + { + "epoch": 19.3914373088685, + "grad_norm": 0.23255233466625214, + "learning_rate": 0.0006, + "loss": 3.8969321250915527, + "step": 1396 + }, + { + "epoch": 19.405417212756664, + "grad_norm": 0.22894541919231415, + "learning_rate": 0.0006, + "loss": 3.9569311141967773, + "step": 1397 + }, + { + "epoch": 19.419397116644824, + "grad_norm": 0.2254200130701065, + "learning_rate": 0.0006, + "loss": 3.953199863433838, + "step": 1398 + }, + { + "epoch": 19.433377020532983, + "grad_norm": 0.25802481174468994, + "learning_rate": 0.0006, + "loss": 3.9714815616607666, + "step": 1399 + }, + { + "epoch": 19.447356924421143, + "grad_norm": 0.24725162982940674, + "learning_rate": 0.0006, + "loss": 3.957339286804199, + "step": 1400 + }, + { + "epoch": 19.461336828309307, + "grad_norm": 0.2162018120288849, + "learning_rate": 0.0006, + "loss": 3.986801862716675, + "step": 1401 + }, + { + "epoch": 19.475316732197467, + "grad_norm": 0.21530906856060028, + "learning_rate": 0.0006, + "loss": 3.9766759872436523, + "step": 1402 + }, + { + "epoch": 19.489296636085626, + "grad_norm": 0.20260323584079742, + "learning_rate": 0.0006, + "loss": 3.9576425552368164, + "step": 1403 + }, + { + "epoch": 19.503276539973786, + "grad_norm": 0.188974529504776, + "learning_rate": 0.0006, + "loss": 3.9852395057678223, + "step": 1404 + }, + { + "epoch": 19.51725644386195, + "grad_norm": 0.19727374613285065, + "learning_rate": 0.0006, + "loss": 3.972484588623047, + "step": 1405 + }, + { + "epoch": 19.53123634775011, + "grad_norm": 0.23708008229732513, + "learning_rate": 0.0006, + "loss": 3.992471694946289, + "step": 1406 + }, + { + "epoch": 19.54521625163827, + "grad_norm": 0.23783449828624725, + "learning_rate": 0.0006, + "loss": 3.9788265228271484, + "step": 1407 + }, + { + "epoch": 19.55919615552643, + "grad_norm": 0.24744364619255066, + "learning_rate": 0.0006, + "loss": 3.9559011459350586, + "step": 1408 + }, + { + "epoch": 19.573176059414592, + "grad_norm": 0.24828094244003296, + "learning_rate": 0.0006, + "loss": 3.9663949012756348, + "step": 1409 + }, + { + "epoch": 19.587155963302752, + "grad_norm": 0.2681315541267395, + "learning_rate": 0.0006, + "loss": 3.9581191539764404, + "step": 1410 + }, + { + "epoch": 19.601135867190912, + "grad_norm": 0.2691532373428345, + "learning_rate": 0.0006, + "loss": 3.9832754135131836, + "step": 1411 + }, + { + "epoch": 19.615115771079076, + "grad_norm": 0.2900252640247345, + "learning_rate": 0.0006, + "loss": 3.984365940093994, + "step": 1412 + }, + { + "epoch": 19.629095674967235, + "grad_norm": 0.3194943070411682, + "learning_rate": 0.0006, + "loss": 3.9856505393981934, + "step": 1413 + }, + { + "epoch": 19.643075578855395, + "grad_norm": 0.3029029071331024, + "learning_rate": 0.0006, + "loss": 3.968992233276367, + "step": 1414 + }, + { + "epoch": 19.657055482743555, + "grad_norm": 0.2658176124095917, + "learning_rate": 0.0006, + "loss": 3.995187282562256, + "step": 1415 + }, + { + "epoch": 19.67103538663172, + "grad_norm": 0.26807504892349243, + "learning_rate": 0.0006, + "loss": 3.9756274223327637, + "step": 1416 + }, + { + "epoch": 19.68501529051988, + "grad_norm": 0.27718642354011536, + "learning_rate": 0.0006, + "loss": 3.9510018825531006, + "step": 1417 + }, + { + "epoch": 19.698995194408038, + "grad_norm": 0.26322051882743835, + "learning_rate": 0.0006, + "loss": 3.965155601501465, + "step": 1418 + }, + { + "epoch": 19.712975098296198, + "grad_norm": 0.2566570043563843, + "learning_rate": 0.0006, + "loss": 3.984218120574951, + "step": 1419 + }, + { + "epoch": 19.72695500218436, + "grad_norm": 0.2218743860721588, + "learning_rate": 0.0006, + "loss": 3.9338784217834473, + "step": 1420 + }, + { + "epoch": 19.74093490607252, + "grad_norm": 0.22894173860549927, + "learning_rate": 0.0006, + "loss": 3.9869046211242676, + "step": 1421 + }, + { + "epoch": 19.75491480996068, + "grad_norm": 0.26837027072906494, + "learning_rate": 0.0006, + "loss": 3.96799898147583, + "step": 1422 + }, + { + "epoch": 19.76889471384884, + "grad_norm": 0.2767876982688904, + "learning_rate": 0.0006, + "loss": 3.9431071281433105, + "step": 1423 + }, + { + "epoch": 19.782874617737004, + "grad_norm": 0.24402284622192383, + "learning_rate": 0.0006, + "loss": 3.9631881713867188, + "step": 1424 + }, + { + "epoch": 19.796854521625164, + "grad_norm": 0.23500724136829376, + "learning_rate": 0.0006, + "loss": 3.9943337440490723, + "step": 1425 + }, + { + "epoch": 19.810834425513324, + "grad_norm": 0.22509142756462097, + "learning_rate": 0.0006, + "loss": 3.961226224899292, + "step": 1426 + }, + { + "epoch": 19.824814329401484, + "grad_norm": 0.23524795472621918, + "learning_rate": 0.0006, + "loss": 3.9552102088928223, + "step": 1427 + }, + { + "epoch": 19.838794233289647, + "grad_norm": 0.22307050228118896, + "learning_rate": 0.0006, + "loss": 3.9623494148254395, + "step": 1428 + }, + { + "epoch": 19.852774137177807, + "grad_norm": 0.21144486963748932, + "learning_rate": 0.0006, + "loss": 3.9620237350463867, + "step": 1429 + }, + { + "epoch": 19.866754041065967, + "grad_norm": 0.20249812304973602, + "learning_rate": 0.0006, + "loss": 3.953911066055298, + "step": 1430 + }, + { + "epoch": 19.88073394495413, + "grad_norm": 0.2350354939699173, + "learning_rate": 0.0006, + "loss": 3.9616730213165283, + "step": 1431 + }, + { + "epoch": 19.89471384884229, + "grad_norm": 0.2566683292388916, + "learning_rate": 0.0006, + "loss": 3.9372501373291016, + "step": 1432 + }, + { + "epoch": 19.90869375273045, + "grad_norm": 0.2520846128463745, + "learning_rate": 0.0006, + "loss": 3.9814648628234863, + "step": 1433 + }, + { + "epoch": 19.92267365661861, + "grad_norm": 0.23989640176296234, + "learning_rate": 0.0006, + "loss": 3.9692864418029785, + "step": 1434 + }, + { + "epoch": 19.936653560506773, + "grad_norm": 0.20650425553321838, + "learning_rate": 0.0006, + "loss": 3.960256814956665, + "step": 1435 + }, + { + "epoch": 19.950633464394933, + "grad_norm": 0.20478376746177673, + "learning_rate": 0.0006, + "loss": 3.9585227966308594, + "step": 1436 + }, + { + "epoch": 19.964613368283093, + "grad_norm": 0.234436497092247, + "learning_rate": 0.0006, + "loss": 3.945631742477417, + "step": 1437 + }, + { + "epoch": 19.978593272171253, + "grad_norm": 0.19969749450683594, + "learning_rate": 0.0006, + "loss": 3.9646050930023193, + "step": 1438 + }, + { + "epoch": 19.992573176059416, + "grad_norm": 0.20638690888881683, + "learning_rate": 0.0006, + "loss": 3.9461846351623535, + "step": 1439 + }, + { + "epoch": 20.0, + "grad_norm": 0.2120274156332016, + "learning_rate": 0.0006, + "loss": 3.965153217315674, + "step": 1440 + }, + { + "epoch": 20.0, + "eval_loss": 4.168524742126465, + "eval_runtime": 44.2796, + "eval_samples_per_second": 55.15, + "eval_steps_per_second": 3.455, + "step": 1440 + }, + { + "epoch": 20.01397990388816, + "grad_norm": 0.19704894721508026, + "learning_rate": 0.0006, + "loss": 3.937016248703003, + "step": 1441 + }, + { + "epoch": 20.027959807776323, + "grad_norm": 0.18682368099689484, + "learning_rate": 0.0006, + "loss": 3.895922899246216, + "step": 1442 + }, + { + "epoch": 20.041939711664483, + "grad_norm": 0.18982571363449097, + "learning_rate": 0.0006, + "loss": 3.929841995239258, + "step": 1443 + }, + { + "epoch": 20.055919615552643, + "grad_norm": 0.20811910927295685, + "learning_rate": 0.0006, + "loss": 3.9498324394226074, + "step": 1444 + }, + { + "epoch": 20.069899519440803, + "grad_norm": 0.2149062603712082, + "learning_rate": 0.0006, + "loss": 3.929853916168213, + "step": 1445 + }, + { + "epoch": 20.083879423328966, + "grad_norm": 0.20016685128211975, + "learning_rate": 0.0006, + "loss": 3.9374136924743652, + "step": 1446 + }, + { + "epoch": 20.097859327217126, + "grad_norm": 0.19969616830348969, + "learning_rate": 0.0006, + "loss": 3.932447910308838, + "step": 1447 + }, + { + "epoch": 20.111839231105286, + "grad_norm": 0.2163356989622116, + "learning_rate": 0.0006, + "loss": 3.9325437545776367, + "step": 1448 + }, + { + "epoch": 20.125819134993446, + "grad_norm": 0.22026969492435455, + "learning_rate": 0.0006, + "loss": 3.9118852615356445, + "step": 1449 + }, + { + "epoch": 20.13979903888161, + "grad_norm": 0.23337116837501526, + "learning_rate": 0.0006, + "loss": 3.9416019916534424, + "step": 1450 + }, + { + "epoch": 20.15377894276977, + "grad_norm": 0.23971447348594666, + "learning_rate": 0.0006, + "loss": 3.9416871070861816, + "step": 1451 + }, + { + "epoch": 20.16775884665793, + "grad_norm": 0.25973960757255554, + "learning_rate": 0.0006, + "loss": 3.93826961517334, + "step": 1452 + }, + { + "epoch": 20.18173875054609, + "grad_norm": 0.2303445190191269, + "learning_rate": 0.0006, + "loss": 3.909383535385132, + "step": 1453 + }, + { + "epoch": 20.195718654434252, + "grad_norm": 0.21090206503868103, + "learning_rate": 0.0006, + "loss": 3.935939311981201, + "step": 1454 + }, + { + "epoch": 20.209698558322412, + "grad_norm": 0.2278691977262497, + "learning_rate": 0.0006, + "loss": 3.9623684883117676, + "step": 1455 + }, + { + "epoch": 20.22367846221057, + "grad_norm": 0.22291512787342072, + "learning_rate": 0.0006, + "loss": 3.9386210441589355, + "step": 1456 + }, + { + "epoch": 20.23765836609873, + "grad_norm": 0.2385793924331665, + "learning_rate": 0.0006, + "loss": 3.927365303039551, + "step": 1457 + }, + { + "epoch": 20.251638269986895, + "grad_norm": 0.23949867486953735, + "learning_rate": 0.0006, + "loss": 3.956698179244995, + "step": 1458 + }, + { + "epoch": 20.265618173875055, + "grad_norm": 0.2232269048690796, + "learning_rate": 0.0006, + "loss": 3.9465065002441406, + "step": 1459 + }, + { + "epoch": 20.279598077763215, + "grad_norm": 0.22286680340766907, + "learning_rate": 0.0006, + "loss": 3.9102284908294678, + "step": 1460 + }, + { + "epoch": 20.293577981651374, + "grad_norm": 0.24039050936698914, + "learning_rate": 0.0006, + "loss": 3.928055763244629, + "step": 1461 + }, + { + "epoch": 20.307557885539538, + "grad_norm": 0.2532738447189331, + "learning_rate": 0.0006, + "loss": 3.931753635406494, + "step": 1462 + }, + { + "epoch": 20.321537789427698, + "grad_norm": 0.2206273376941681, + "learning_rate": 0.0006, + "loss": 3.936119556427002, + "step": 1463 + }, + { + "epoch": 20.335517693315857, + "grad_norm": 0.20918945968151093, + "learning_rate": 0.0006, + "loss": 3.9228529930114746, + "step": 1464 + }, + { + "epoch": 20.34949759720402, + "grad_norm": 0.2324502319097519, + "learning_rate": 0.0006, + "loss": 3.9370768070220947, + "step": 1465 + }, + { + "epoch": 20.36347750109218, + "grad_norm": 0.26811033487319946, + "learning_rate": 0.0006, + "loss": 3.968515396118164, + "step": 1466 + }, + { + "epoch": 20.37745740498034, + "grad_norm": 0.2896045744419098, + "learning_rate": 0.0006, + "loss": 3.945124626159668, + "step": 1467 + }, + { + "epoch": 20.3914373088685, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 3.9399516582489014, + "step": 1468 + }, + { + "epoch": 20.405417212756664, + "grad_norm": 0.3076821565628052, + "learning_rate": 0.0006, + "loss": 3.9545583724975586, + "step": 1469 + }, + { + "epoch": 20.419397116644824, + "grad_norm": 0.3019449710845947, + "learning_rate": 0.0006, + "loss": 3.9502270221710205, + "step": 1470 + }, + { + "epoch": 20.433377020532983, + "grad_norm": 0.31832560896873474, + "learning_rate": 0.0006, + "loss": 3.940439224243164, + "step": 1471 + }, + { + "epoch": 20.447356924421143, + "grad_norm": 0.30303657054901123, + "learning_rate": 0.0006, + "loss": 3.9451770782470703, + "step": 1472 + }, + { + "epoch": 20.461336828309307, + "grad_norm": 0.28122979402542114, + "learning_rate": 0.0006, + "loss": 3.934508800506592, + "step": 1473 + }, + { + "epoch": 20.475316732197467, + "grad_norm": 0.27013441920280457, + "learning_rate": 0.0006, + "loss": 3.924323081970215, + "step": 1474 + }, + { + "epoch": 20.489296636085626, + "grad_norm": 0.29052063822746277, + "learning_rate": 0.0006, + "loss": 3.970916748046875, + "step": 1475 + }, + { + "epoch": 20.503276539973786, + "grad_norm": 0.2871626913547516, + "learning_rate": 0.0006, + "loss": 3.945425033569336, + "step": 1476 + }, + { + "epoch": 20.51725644386195, + "grad_norm": 0.2396184206008911, + "learning_rate": 0.0006, + "loss": 3.964290142059326, + "step": 1477 + }, + { + "epoch": 20.53123634775011, + "grad_norm": 0.21942107379436493, + "learning_rate": 0.0006, + "loss": 3.910101890563965, + "step": 1478 + }, + { + "epoch": 20.54521625163827, + "grad_norm": 0.22193685173988342, + "learning_rate": 0.0006, + "loss": 3.914005756378174, + "step": 1479 + }, + { + "epoch": 20.55919615552643, + "grad_norm": 0.20207515358924866, + "learning_rate": 0.0006, + "loss": 3.9575581550598145, + "step": 1480 + }, + { + "epoch": 20.573176059414592, + "grad_norm": 0.17855247855186462, + "learning_rate": 0.0006, + "loss": 3.941490411758423, + "step": 1481 + }, + { + "epoch": 20.587155963302752, + "grad_norm": 0.21268485486507416, + "learning_rate": 0.0006, + "loss": 3.94045352935791, + "step": 1482 + }, + { + "epoch": 20.601135867190912, + "grad_norm": 0.24890053272247314, + "learning_rate": 0.0006, + "loss": 3.932961940765381, + "step": 1483 + }, + { + "epoch": 20.615115771079076, + "grad_norm": 0.23771314322948456, + "learning_rate": 0.0006, + "loss": 3.9067630767822266, + "step": 1484 + }, + { + "epoch": 20.629095674967235, + "grad_norm": 0.20990237593650818, + "learning_rate": 0.0006, + "loss": 3.9476752281188965, + "step": 1485 + }, + { + "epoch": 20.643075578855395, + "grad_norm": 0.20058798789978027, + "learning_rate": 0.0006, + "loss": 3.9350547790527344, + "step": 1486 + }, + { + "epoch": 20.657055482743555, + "grad_norm": 0.1953001767396927, + "learning_rate": 0.0006, + "loss": 3.9437222480773926, + "step": 1487 + }, + { + "epoch": 20.67103538663172, + "grad_norm": 0.18748535215854645, + "learning_rate": 0.0006, + "loss": 3.9336047172546387, + "step": 1488 + }, + { + "epoch": 20.68501529051988, + "grad_norm": 0.18874801695346832, + "learning_rate": 0.0006, + "loss": 3.9042580127716064, + "step": 1489 + }, + { + "epoch": 20.698995194408038, + "grad_norm": 0.1844169795513153, + "learning_rate": 0.0006, + "loss": 3.9302420616149902, + "step": 1490 + }, + { + "epoch": 20.712975098296198, + "grad_norm": 0.18519413471221924, + "learning_rate": 0.0006, + "loss": 3.9527437686920166, + "step": 1491 + }, + { + "epoch": 20.72695500218436, + "grad_norm": 0.20084598660469055, + "learning_rate": 0.0006, + "loss": 3.9161760807037354, + "step": 1492 + }, + { + "epoch": 20.74093490607252, + "grad_norm": 0.2015734612941742, + "learning_rate": 0.0006, + "loss": 3.9466545581817627, + "step": 1493 + }, + { + "epoch": 20.75491480996068, + "grad_norm": 0.2210122048854828, + "learning_rate": 0.0006, + "loss": 3.8994693756103516, + "step": 1494 + }, + { + "epoch": 20.76889471384884, + "grad_norm": 0.23019762337207794, + "learning_rate": 0.0006, + "loss": 3.93685245513916, + "step": 1495 + }, + { + "epoch": 20.782874617737004, + "grad_norm": 0.21246281266212463, + "learning_rate": 0.0006, + "loss": 3.9499399662017822, + "step": 1496 + }, + { + "epoch": 20.796854521625164, + "grad_norm": 0.21142810583114624, + "learning_rate": 0.0006, + "loss": 3.9317150115966797, + "step": 1497 + }, + { + "epoch": 20.810834425513324, + "grad_norm": 0.20230524241924286, + "learning_rate": 0.0006, + "loss": 3.9389750957489014, + "step": 1498 + }, + { + "epoch": 20.824814329401484, + "grad_norm": 0.21096977591514587, + "learning_rate": 0.0006, + "loss": 3.9325194358825684, + "step": 1499 + }, + { + "epoch": 20.838794233289647, + "grad_norm": 0.2309989333152771, + "learning_rate": 0.0006, + "loss": 3.943641185760498, + "step": 1500 + }, + { + "epoch": 20.852774137177807, + "grad_norm": 0.2016306221485138, + "learning_rate": 0.0006, + "loss": 3.986043930053711, + "step": 1501 + }, + { + "epoch": 20.866754041065967, + "grad_norm": 0.2107970118522644, + "learning_rate": 0.0006, + "loss": 3.9219160079956055, + "step": 1502 + }, + { + "epoch": 20.88073394495413, + "grad_norm": 0.21580125391483307, + "learning_rate": 0.0006, + "loss": 3.942014694213867, + "step": 1503 + }, + { + "epoch": 20.89471384884229, + "grad_norm": 0.21348726749420166, + "learning_rate": 0.0006, + "loss": 3.9389920234680176, + "step": 1504 + }, + { + "epoch": 20.90869375273045, + "grad_norm": 0.23094943165779114, + "learning_rate": 0.0006, + "loss": 3.952993392944336, + "step": 1505 + }, + { + "epoch": 20.92267365661861, + "grad_norm": 0.22431740164756775, + "learning_rate": 0.0006, + "loss": 3.897671937942505, + "step": 1506 + }, + { + "epoch": 20.936653560506773, + "grad_norm": 0.20056353509426117, + "learning_rate": 0.0006, + "loss": 3.9100005626678467, + "step": 1507 + }, + { + "epoch": 20.950633464394933, + "grad_norm": 0.20604434609413147, + "learning_rate": 0.0006, + "loss": 3.9486045837402344, + "step": 1508 + }, + { + "epoch": 20.964613368283093, + "grad_norm": 0.22979380190372467, + "learning_rate": 0.0006, + "loss": 3.977163553237915, + "step": 1509 + }, + { + "epoch": 20.978593272171253, + "grad_norm": 0.2421523779630661, + "learning_rate": 0.0006, + "loss": 3.9216256141662598, + "step": 1510 + }, + { + "epoch": 20.992573176059416, + "grad_norm": 0.25776705145835876, + "learning_rate": 0.0006, + "loss": 3.9221739768981934, + "step": 1511 + }, + { + "epoch": 21.0, + "grad_norm": 0.2750694751739502, + "learning_rate": 0.0006, + "loss": 3.938098907470703, + "step": 1512 + }, + { + "epoch": 21.0, + "eval_loss": 4.159763336181641, + "eval_runtime": 44.8663, + "eval_samples_per_second": 54.428, + "eval_steps_per_second": 3.41, + "step": 1512 + }, + { + "epoch": 21.01397990388816, + "grad_norm": 0.24513043463230133, + "learning_rate": 0.0006, + "loss": 3.8939385414123535, + "step": 1513 + }, + { + "epoch": 21.027959807776323, + "grad_norm": 0.22209352254867554, + "learning_rate": 0.0006, + "loss": 3.9044857025146484, + "step": 1514 + }, + { + "epoch": 21.041939711664483, + "grad_norm": 0.22437648475170135, + "learning_rate": 0.0006, + "loss": 3.9325196743011475, + "step": 1515 + }, + { + "epoch": 21.055919615552643, + "grad_norm": 0.21168062090873718, + "learning_rate": 0.0006, + "loss": 3.882176637649536, + "step": 1516 + }, + { + "epoch": 21.069899519440803, + "grad_norm": 0.22334499657154083, + "learning_rate": 0.0006, + "loss": 3.8978934288024902, + "step": 1517 + }, + { + "epoch": 21.083879423328966, + "grad_norm": 0.21038010716438293, + "learning_rate": 0.0006, + "loss": 3.8807029724121094, + "step": 1518 + }, + { + "epoch": 21.097859327217126, + "grad_norm": 0.2243613600730896, + "learning_rate": 0.0006, + "loss": 3.924865961074829, + "step": 1519 + }, + { + "epoch": 21.111839231105286, + "grad_norm": 0.2535616159439087, + "learning_rate": 0.0006, + "loss": 3.9288227558135986, + "step": 1520 + }, + { + "epoch": 21.125819134993446, + "grad_norm": 0.2782756984233856, + "learning_rate": 0.0006, + "loss": 3.908233642578125, + "step": 1521 + }, + { + "epoch": 21.13979903888161, + "grad_norm": 0.2586214542388916, + "learning_rate": 0.0006, + "loss": 3.9151182174682617, + "step": 1522 + }, + { + "epoch": 21.15377894276977, + "grad_norm": 0.22465091943740845, + "learning_rate": 0.0006, + "loss": 3.9209084510803223, + "step": 1523 + }, + { + "epoch": 21.16775884665793, + "grad_norm": 0.2588018774986267, + "learning_rate": 0.0006, + "loss": 3.9295971393585205, + "step": 1524 + }, + { + "epoch": 21.18173875054609, + "grad_norm": 0.2637675702571869, + "learning_rate": 0.0006, + "loss": 3.9353199005126953, + "step": 1525 + }, + { + "epoch": 21.195718654434252, + "grad_norm": 0.2806383967399597, + "learning_rate": 0.0006, + "loss": 3.922337770462036, + "step": 1526 + }, + { + "epoch": 21.209698558322412, + "grad_norm": 0.27103501558303833, + "learning_rate": 0.0006, + "loss": 3.8811073303222656, + "step": 1527 + }, + { + "epoch": 21.22367846221057, + "grad_norm": 0.27203720808029175, + "learning_rate": 0.0006, + "loss": 3.9036178588867188, + "step": 1528 + }, + { + "epoch": 21.23765836609873, + "grad_norm": 0.2783355712890625, + "learning_rate": 0.0006, + "loss": 3.885456085205078, + "step": 1529 + }, + { + "epoch": 21.251638269986895, + "grad_norm": 0.2884930968284607, + "learning_rate": 0.0006, + "loss": 3.8936941623687744, + "step": 1530 + }, + { + "epoch": 21.265618173875055, + "grad_norm": 0.2829558849334717, + "learning_rate": 0.0006, + "loss": 3.927624225616455, + "step": 1531 + }, + { + "epoch": 21.279598077763215, + "grad_norm": 0.2809497117996216, + "learning_rate": 0.0006, + "loss": 3.8896753787994385, + "step": 1532 + }, + { + "epoch": 21.293577981651374, + "grad_norm": 0.27037671208381653, + "learning_rate": 0.0006, + "loss": 3.91316294670105, + "step": 1533 + }, + { + "epoch": 21.307557885539538, + "grad_norm": 0.310051292181015, + "learning_rate": 0.0006, + "loss": 3.9137332439422607, + "step": 1534 + }, + { + "epoch": 21.321537789427698, + "grad_norm": 0.30489876866340637, + "learning_rate": 0.0006, + "loss": 3.9088284969329834, + "step": 1535 + }, + { + "epoch": 21.335517693315857, + "grad_norm": 0.2607756555080414, + "learning_rate": 0.0006, + "loss": 3.9097847938537598, + "step": 1536 + }, + { + "epoch": 21.34949759720402, + "grad_norm": 0.2460775375366211, + "learning_rate": 0.0006, + "loss": 3.941211700439453, + "step": 1537 + }, + { + "epoch": 21.36347750109218, + "grad_norm": 0.24271734058856964, + "learning_rate": 0.0006, + "loss": 3.9140594005584717, + "step": 1538 + }, + { + "epoch": 21.37745740498034, + "grad_norm": 0.20012645423412323, + "learning_rate": 0.0006, + "loss": 3.888446807861328, + "step": 1539 + }, + { + "epoch": 21.3914373088685, + "grad_norm": 0.2196308672428131, + "learning_rate": 0.0006, + "loss": 3.9153785705566406, + "step": 1540 + }, + { + "epoch": 21.405417212756664, + "grad_norm": 0.22184589505195618, + "learning_rate": 0.0006, + "loss": 3.91996431350708, + "step": 1541 + }, + { + "epoch": 21.419397116644824, + "grad_norm": 0.22947315871715546, + "learning_rate": 0.0006, + "loss": 3.9268412590026855, + "step": 1542 + }, + { + "epoch": 21.433377020532983, + "grad_norm": 0.22275054454803467, + "learning_rate": 0.0006, + "loss": 3.909275531768799, + "step": 1543 + }, + { + "epoch": 21.447356924421143, + "grad_norm": 0.23103971779346466, + "learning_rate": 0.0006, + "loss": 3.925635814666748, + "step": 1544 + }, + { + "epoch": 21.461336828309307, + "grad_norm": 0.23379720747470856, + "learning_rate": 0.0006, + "loss": 3.926647186279297, + "step": 1545 + }, + { + "epoch": 21.475316732197467, + "grad_norm": 0.2244282215833664, + "learning_rate": 0.0006, + "loss": 3.9428000450134277, + "step": 1546 + }, + { + "epoch": 21.489296636085626, + "grad_norm": 0.22773298621177673, + "learning_rate": 0.0006, + "loss": 3.9378256797790527, + "step": 1547 + }, + { + "epoch": 21.503276539973786, + "grad_norm": 0.1918657273054123, + "learning_rate": 0.0006, + "loss": 3.904022216796875, + "step": 1548 + }, + { + "epoch": 21.51725644386195, + "grad_norm": 0.18415570259094238, + "learning_rate": 0.0006, + "loss": 3.9105122089385986, + "step": 1549 + }, + { + "epoch": 21.53123634775011, + "grad_norm": 0.22141380608081818, + "learning_rate": 0.0006, + "loss": 3.9153857231140137, + "step": 1550 + }, + { + "epoch": 21.54521625163827, + "grad_norm": 0.22533352673053741, + "learning_rate": 0.0006, + "loss": 3.9148974418640137, + "step": 1551 + }, + { + "epoch": 21.55919615552643, + "grad_norm": 0.2124762088060379, + "learning_rate": 0.0006, + "loss": 3.926311731338501, + "step": 1552 + }, + { + "epoch": 21.573176059414592, + "grad_norm": 0.239680215716362, + "learning_rate": 0.0006, + "loss": 3.9260334968566895, + "step": 1553 + }, + { + "epoch": 21.587155963302752, + "grad_norm": 0.24158740043640137, + "learning_rate": 0.0006, + "loss": 3.933223247528076, + "step": 1554 + }, + { + "epoch": 21.601135867190912, + "grad_norm": 0.2216576784849167, + "learning_rate": 0.0006, + "loss": 3.9065442085266113, + "step": 1555 + }, + { + "epoch": 21.615115771079076, + "grad_norm": 0.20099912583827972, + "learning_rate": 0.0006, + "loss": 3.923278570175171, + "step": 1556 + }, + { + "epoch": 21.629095674967235, + "grad_norm": 0.2337288111448288, + "learning_rate": 0.0006, + "loss": 3.92032527923584, + "step": 1557 + }, + { + "epoch": 21.643075578855395, + "grad_norm": 0.23574814200401306, + "learning_rate": 0.0006, + "loss": 3.896244525909424, + "step": 1558 + }, + { + "epoch": 21.657055482743555, + "grad_norm": 0.21338573098182678, + "learning_rate": 0.0006, + "loss": 3.930345058441162, + "step": 1559 + }, + { + "epoch": 21.67103538663172, + "grad_norm": 0.2375067174434662, + "learning_rate": 0.0006, + "loss": 3.864104986190796, + "step": 1560 + }, + { + "epoch": 21.68501529051988, + "grad_norm": 0.22490349411964417, + "learning_rate": 0.0006, + "loss": 3.883296012878418, + "step": 1561 + }, + { + "epoch": 21.698995194408038, + "grad_norm": 0.23021313548088074, + "learning_rate": 0.0006, + "loss": 3.915200710296631, + "step": 1562 + }, + { + "epoch": 21.712975098296198, + "grad_norm": 0.22590875625610352, + "learning_rate": 0.0006, + "loss": 3.903597354888916, + "step": 1563 + }, + { + "epoch": 21.72695500218436, + "grad_norm": 0.19066260755062103, + "learning_rate": 0.0006, + "loss": 3.9162631034851074, + "step": 1564 + }, + { + "epoch": 21.74093490607252, + "grad_norm": 0.18134327232837677, + "learning_rate": 0.0006, + "loss": 3.9167914390563965, + "step": 1565 + }, + { + "epoch": 21.75491480996068, + "grad_norm": 0.1782190054655075, + "learning_rate": 0.0006, + "loss": 3.900925636291504, + "step": 1566 + }, + { + "epoch": 21.76889471384884, + "grad_norm": 0.19034099578857422, + "learning_rate": 0.0006, + "loss": 3.896559238433838, + "step": 1567 + }, + { + "epoch": 21.782874617737004, + "grad_norm": 0.21509577333927155, + "learning_rate": 0.0006, + "loss": 3.891681671142578, + "step": 1568 + }, + { + "epoch": 21.796854521625164, + "grad_norm": 0.2370351105928421, + "learning_rate": 0.0006, + "loss": 3.886570453643799, + "step": 1569 + }, + { + "epoch": 21.810834425513324, + "grad_norm": 0.25546324253082275, + "learning_rate": 0.0006, + "loss": 3.9247193336486816, + "step": 1570 + }, + { + "epoch": 21.824814329401484, + "grad_norm": 0.2513384222984314, + "learning_rate": 0.0006, + "loss": 3.9120583534240723, + "step": 1571 + }, + { + "epoch": 21.838794233289647, + "grad_norm": 0.24691323935985565, + "learning_rate": 0.0006, + "loss": 3.9144935607910156, + "step": 1572 + }, + { + "epoch": 21.852774137177807, + "grad_norm": 0.2573968172073364, + "learning_rate": 0.0006, + "loss": 3.9517531394958496, + "step": 1573 + }, + { + "epoch": 21.866754041065967, + "grad_norm": 0.25461453199386597, + "learning_rate": 0.0006, + "loss": 3.93508243560791, + "step": 1574 + }, + { + "epoch": 21.88073394495413, + "grad_norm": 0.23756568133831024, + "learning_rate": 0.0006, + "loss": 3.8885269165039062, + "step": 1575 + }, + { + "epoch": 21.89471384884229, + "grad_norm": 0.2193172425031662, + "learning_rate": 0.0006, + "loss": 3.9103426933288574, + "step": 1576 + }, + { + "epoch": 21.90869375273045, + "grad_norm": 0.2350149303674698, + "learning_rate": 0.0006, + "loss": 3.9399590492248535, + "step": 1577 + }, + { + "epoch": 21.92267365661861, + "grad_norm": 0.23759333789348602, + "learning_rate": 0.0006, + "loss": 3.9433584213256836, + "step": 1578 + }, + { + "epoch": 21.936653560506773, + "grad_norm": 0.21108432114124298, + "learning_rate": 0.0006, + "loss": 3.9241819381713867, + "step": 1579 + }, + { + "epoch": 21.950633464394933, + "grad_norm": 0.22088949382305145, + "learning_rate": 0.0006, + "loss": 3.9231910705566406, + "step": 1580 + }, + { + "epoch": 21.964613368283093, + "grad_norm": 0.22125045955181122, + "learning_rate": 0.0006, + "loss": 3.896329164505005, + "step": 1581 + }, + { + "epoch": 21.978593272171253, + "grad_norm": 0.20745202898979187, + "learning_rate": 0.0006, + "loss": 3.8920536041259766, + "step": 1582 + }, + { + "epoch": 21.992573176059416, + "grad_norm": 0.2409721463918686, + "learning_rate": 0.0006, + "loss": 3.9061317443847656, + "step": 1583 + }, + { + "epoch": 22.0, + "grad_norm": 0.2669669985771179, + "learning_rate": 0.0006, + "loss": 3.922062397003174, + "step": 1584 + }, + { + "epoch": 22.0, + "eval_loss": 4.140966415405273, + "eval_runtime": 46.7132, + "eval_samples_per_second": 52.276, + "eval_steps_per_second": 3.275, + "step": 1584 + }, + { + "epoch": 22.01397990388816, + "grad_norm": 0.26155969500541687, + "learning_rate": 0.0006, + "loss": 3.888944625854492, + "step": 1585 + }, + { + "epoch": 22.027959807776323, + "grad_norm": 0.2579149007797241, + "learning_rate": 0.0006, + "loss": 3.8924355506896973, + "step": 1586 + }, + { + "epoch": 22.041939711664483, + "grad_norm": 0.2429896742105484, + "learning_rate": 0.0006, + "loss": 3.8714070320129395, + "step": 1587 + }, + { + "epoch": 22.055919615552643, + "grad_norm": 0.23497673869132996, + "learning_rate": 0.0006, + "loss": 3.905089855194092, + "step": 1588 + }, + { + "epoch": 22.069899519440803, + "grad_norm": 0.24074940383434296, + "learning_rate": 0.0006, + "loss": 3.886845111846924, + "step": 1589 + }, + { + "epoch": 22.083879423328966, + "grad_norm": 0.2226274162530899, + "learning_rate": 0.0006, + "loss": 3.8554329872131348, + "step": 1590 + }, + { + "epoch": 22.097859327217126, + "grad_norm": 0.22924423217773438, + "learning_rate": 0.0006, + "loss": 3.8914356231689453, + "step": 1591 + }, + { + "epoch": 22.111839231105286, + "grad_norm": 0.2459387183189392, + "learning_rate": 0.0006, + "loss": 3.902522087097168, + "step": 1592 + }, + { + "epoch": 22.125819134993446, + "grad_norm": 0.2704590857028961, + "learning_rate": 0.0006, + "loss": 3.896497964859009, + "step": 1593 + }, + { + "epoch": 22.13979903888161, + "grad_norm": 0.2848219871520996, + "learning_rate": 0.0006, + "loss": 3.88423228263855, + "step": 1594 + }, + { + "epoch": 22.15377894276977, + "grad_norm": 0.22996552288532257, + "learning_rate": 0.0006, + "loss": 3.9034953117370605, + "step": 1595 + }, + { + "epoch": 22.16775884665793, + "grad_norm": 0.2117270529270172, + "learning_rate": 0.0006, + "loss": 3.888279914855957, + "step": 1596 + }, + { + "epoch": 22.18173875054609, + "grad_norm": 0.19724160432815552, + "learning_rate": 0.0006, + "loss": 3.860525131225586, + "step": 1597 + }, + { + "epoch": 22.195718654434252, + "grad_norm": 0.2012624740600586, + "learning_rate": 0.0006, + "loss": 3.8930106163024902, + "step": 1598 + }, + { + "epoch": 22.209698558322412, + "grad_norm": 0.20243871212005615, + "learning_rate": 0.0006, + "loss": 3.8727619647979736, + "step": 1599 + }, + { + "epoch": 22.22367846221057, + "grad_norm": 0.21737465262413025, + "learning_rate": 0.0006, + "loss": 3.887969493865967, + "step": 1600 + }, + { + "epoch": 22.23765836609873, + "grad_norm": 0.23969845473766327, + "learning_rate": 0.0006, + "loss": 3.8629722595214844, + "step": 1601 + }, + { + "epoch": 22.251638269986895, + "grad_norm": 0.22874902188777924, + "learning_rate": 0.0006, + "loss": 3.9135584831237793, + "step": 1602 + }, + { + "epoch": 22.265618173875055, + "grad_norm": 0.209506556391716, + "learning_rate": 0.0006, + "loss": 3.8734190464019775, + "step": 1603 + }, + { + "epoch": 22.279598077763215, + "grad_norm": 0.22235789895057678, + "learning_rate": 0.0006, + "loss": 3.884854793548584, + "step": 1604 + }, + { + "epoch": 22.293577981651374, + "grad_norm": 0.21975041925907135, + "learning_rate": 0.0006, + "loss": 3.8860888481140137, + "step": 1605 + }, + { + "epoch": 22.307557885539538, + "grad_norm": 0.21474459767341614, + "learning_rate": 0.0006, + "loss": 3.9052200317382812, + "step": 1606 + }, + { + "epoch": 22.321537789427698, + "grad_norm": 0.2103329747915268, + "learning_rate": 0.0006, + "loss": 3.8516340255737305, + "step": 1607 + }, + { + "epoch": 22.335517693315857, + "grad_norm": 0.1981191635131836, + "learning_rate": 0.0006, + "loss": 3.9017434120178223, + "step": 1608 + }, + { + "epoch": 22.34949759720402, + "grad_norm": 0.20679591596126556, + "learning_rate": 0.0006, + "loss": 3.889885425567627, + "step": 1609 + }, + { + "epoch": 22.36347750109218, + "grad_norm": 0.20809867978096008, + "learning_rate": 0.0006, + "loss": 3.881868362426758, + "step": 1610 + }, + { + "epoch": 22.37745740498034, + "grad_norm": 0.21394680440425873, + "learning_rate": 0.0006, + "loss": 3.89980411529541, + "step": 1611 + }, + { + "epoch": 22.3914373088685, + "grad_norm": 0.2334284782409668, + "learning_rate": 0.0006, + "loss": 3.8672266006469727, + "step": 1612 + }, + { + "epoch": 22.405417212756664, + "grad_norm": 0.26521918177604675, + "learning_rate": 0.0006, + "loss": 3.8918118476867676, + "step": 1613 + }, + { + "epoch": 22.419397116644824, + "grad_norm": 0.2652994394302368, + "learning_rate": 0.0006, + "loss": 3.8683271408081055, + "step": 1614 + }, + { + "epoch": 22.433377020532983, + "grad_norm": 0.2568066716194153, + "learning_rate": 0.0006, + "loss": 3.892523765563965, + "step": 1615 + }, + { + "epoch": 22.447356924421143, + "grad_norm": 0.260052353143692, + "learning_rate": 0.0006, + "loss": 3.897305488586426, + "step": 1616 + }, + { + "epoch": 22.461336828309307, + "grad_norm": 0.2744271457195282, + "learning_rate": 0.0006, + "loss": 3.8962221145629883, + "step": 1617 + }, + { + "epoch": 22.475316732197467, + "grad_norm": 0.23755787312984467, + "learning_rate": 0.0006, + "loss": 3.888184070587158, + "step": 1618 + }, + { + "epoch": 22.489296636085626, + "grad_norm": 0.2515312135219574, + "learning_rate": 0.0006, + "loss": 3.8946003913879395, + "step": 1619 + }, + { + "epoch": 22.503276539973786, + "grad_norm": 0.24835044145584106, + "learning_rate": 0.0006, + "loss": 3.8711423873901367, + "step": 1620 + }, + { + "epoch": 22.51725644386195, + "grad_norm": 0.22615326941013336, + "learning_rate": 0.0006, + "loss": 3.8878846168518066, + "step": 1621 + }, + { + "epoch": 22.53123634775011, + "grad_norm": 0.20482423901557922, + "learning_rate": 0.0006, + "loss": 3.8782598972320557, + "step": 1622 + }, + { + "epoch": 22.54521625163827, + "grad_norm": 0.20436473190784454, + "learning_rate": 0.0006, + "loss": 3.9075279235839844, + "step": 1623 + }, + { + "epoch": 22.55919615552643, + "grad_norm": 0.2066277265548706, + "learning_rate": 0.0006, + "loss": 3.89908766746521, + "step": 1624 + }, + { + "epoch": 22.573176059414592, + "grad_norm": 0.20735307037830353, + "learning_rate": 0.0006, + "loss": 3.865204334259033, + "step": 1625 + }, + { + "epoch": 22.587155963302752, + "grad_norm": 0.20955748856067657, + "learning_rate": 0.0006, + "loss": 3.8835532665252686, + "step": 1626 + }, + { + "epoch": 22.601135867190912, + "grad_norm": 0.21354222297668457, + "learning_rate": 0.0006, + "loss": 3.9012551307678223, + "step": 1627 + }, + { + "epoch": 22.615115771079076, + "grad_norm": 0.2075091004371643, + "learning_rate": 0.0006, + "loss": 3.8733482360839844, + "step": 1628 + }, + { + "epoch": 22.629095674967235, + "grad_norm": 0.20207874476909637, + "learning_rate": 0.0006, + "loss": 3.9193859100341797, + "step": 1629 + }, + { + "epoch": 22.643075578855395, + "grad_norm": 0.21863923966884613, + "learning_rate": 0.0006, + "loss": 3.883518695831299, + "step": 1630 + }, + { + "epoch": 22.657055482743555, + "grad_norm": 0.22117522358894348, + "learning_rate": 0.0006, + "loss": 3.9163284301757812, + "step": 1631 + }, + { + "epoch": 22.67103538663172, + "grad_norm": 0.2078622728586197, + "learning_rate": 0.0006, + "loss": 3.868274688720703, + "step": 1632 + }, + { + "epoch": 22.68501529051988, + "grad_norm": 0.22745893895626068, + "learning_rate": 0.0006, + "loss": 3.9171340465545654, + "step": 1633 + }, + { + "epoch": 22.698995194408038, + "grad_norm": 0.2312736064195633, + "learning_rate": 0.0006, + "loss": 3.9487013816833496, + "step": 1634 + }, + { + "epoch": 22.712975098296198, + "grad_norm": 0.20491497218608856, + "learning_rate": 0.0006, + "loss": 3.91833758354187, + "step": 1635 + }, + { + "epoch": 22.72695500218436, + "grad_norm": 0.1899084597826004, + "learning_rate": 0.0006, + "loss": 3.876225709915161, + "step": 1636 + }, + { + "epoch": 22.74093490607252, + "grad_norm": 0.18581682443618774, + "learning_rate": 0.0006, + "loss": 3.8667988777160645, + "step": 1637 + }, + { + "epoch": 22.75491480996068, + "grad_norm": 0.19855599105358124, + "learning_rate": 0.0006, + "loss": 3.900789260864258, + "step": 1638 + }, + { + "epoch": 22.76889471384884, + "grad_norm": 0.19951458275318146, + "learning_rate": 0.0006, + "loss": 3.8850367069244385, + "step": 1639 + }, + { + "epoch": 22.782874617737004, + "grad_norm": 0.22802744805812836, + "learning_rate": 0.0006, + "loss": 3.9181363582611084, + "step": 1640 + }, + { + "epoch": 22.796854521625164, + "grad_norm": 0.24279919266700745, + "learning_rate": 0.0006, + "loss": 3.8843770027160645, + "step": 1641 + }, + { + "epoch": 22.810834425513324, + "grad_norm": 0.23554913699626923, + "learning_rate": 0.0006, + "loss": 3.8802413940429688, + "step": 1642 + }, + { + "epoch": 22.824814329401484, + "grad_norm": 0.22343270480632782, + "learning_rate": 0.0006, + "loss": 3.8524107933044434, + "step": 1643 + }, + { + "epoch": 22.838794233289647, + "grad_norm": 0.2185724526643753, + "learning_rate": 0.0006, + "loss": 3.9117047786712646, + "step": 1644 + }, + { + "epoch": 22.852774137177807, + "grad_norm": 0.2114841341972351, + "learning_rate": 0.0006, + "loss": 3.90325927734375, + "step": 1645 + }, + { + "epoch": 22.866754041065967, + "grad_norm": 0.21072550117969513, + "learning_rate": 0.0006, + "loss": 3.8988137245178223, + "step": 1646 + }, + { + "epoch": 22.88073394495413, + "grad_norm": 0.2250078171491623, + "learning_rate": 0.0006, + "loss": 3.9201531410217285, + "step": 1647 + }, + { + "epoch": 22.89471384884229, + "grad_norm": 0.20928071439266205, + "learning_rate": 0.0006, + "loss": 3.91666316986084, + "step": 1648 + }, + { + "epoch": 22.90869375273045, + "grad_norm": 0.24096311628818512, + "learning_rate": 0.0006, + "loss": 3.8797364234924316, + "step": 1649 + }, + { + "epoch": 22.92267365661861, + "grad_norm": 0.2591194212436676, + "learning_rate": 0.0006, + "loss": 3.883273124694824, + "step": 1650 + }, + { + "epoch": 22.936653560506773, + "grad_norm": 0.27342668175697327, + "learning_rate": 0.0006, + "loss": 3.8645026683807373, + "step": 1651 + }, + { + "epoch": 22.950633464394933, + "grad_norm": 0.2448573112487793, + "learning_rate": 0.0006, + "loss": 3.9093551635742188, + "step": 1652 + }, + { + "epoch": 22.964613368283093, + "grad_norm": 0.19899503886699677, + "learning_rate": 0.0006, + "loss": 3.9001057147979736, + "step": 1653 + }, + { + "epoch": 22.978593272171253, + "grad_norm": 0.2023746520280838, + "learning_rate": 0.0006, + "loss": 3.886474370956421, + "step": 1654 + }, + { + "epoch": 22.992573176059416, + "grad_norm": 0.19894269108772278, + "learning_rate": 0.0006, + "loss": 3.9004204273223877, + "step": 1655 + }, + { + "epoch": 23.0, + "grad_norm": 0.2401709407567978, + "learning_rate": 0.0006, + "loss": 3.8665566444396973, + "step": 1656 + }, + { + "epoch": 23.0, + "eval_loss": 4.112459659576416, + "eval_runtime": 44.8325, + "eval_samples_per_second": 54.469, + "eval_steps_per_second": 3.413, + "step": 1656 + }, + { + "epoch": 23.01397990388816, + "grad_norm": 0.22662921249866486, + "learning_rate": 0.0006, + "loss": 3.853271961212158, + "step": 1657 + }, + { + "epoch": 23.027959807776323, + "grad_norm": 0.24406856298446655, + "learning_rate": 0.0006, + "loss": 3.8691890239715576, + "step": 1658 + }, + { + "epoch": 23.041939711664483, + "grad_norm": 0.2266651839017868, + "learning_rate": 0.0006, + "loss": 3.838599681854248, + "step": 1659 + }, + { + "epoch": 23.055919615552643, + "grad_norm": 0.22303511202335358, + "learning_rate": 0.0006, + "loss": 3.8678267002105713, + "step": 1660 + }, + { + "epoch": 23.069899519440803, + "grad_norm": 0.2272164225578308, + "learning_rate": 0.0006, + "loss": 3.9045681953430176, + "step": 1661 + }, + { + "epoch": 23.083879423328966, + "grad_norm": 0.25004875659942627, + "learning_rate": 0.0006, + "loss": 3.856503963470459, + "step": 1662 + }, + { + "epoch": 23.097859327217126, + "grad_norm": 0.26016247272491455, + "learning_rate": 0.0006, + "loss": 3.878587007522583, + "step": 1663 + }, + { + "epoch": 23.111839231105286, + "grad_norm": 0.28539901971817017, + "learning_rate": 0.0006, + "loss": 3.864248514175415, + "step": 1664 + }, + { + "epoch": 23.125819134993446, + "grad_norm": 0.27504822611808777, + "learning_rate": 0.0006, + "loss": 3.821448802947998, + "step": 1665 + }, + { + "epoch": 23.13979903888161, + "grad_norm": 0.238910973072052, + "learning_rate": 0.0006, + "loss": 3.8635847568511963, + "step": 1666 + }, + { + "epoch": 23.15377894276977, + "grad_norm": 0.24179652333259583, + "learning_rate": 0.0006, + "loss": 3.8339638710021973, + "step": 1667 + }, + { + "epoch": 23.16775884665793, + "grad_norm": 0.2199544757604599, + "learning_rate": 0.0006, + "loss": 3.868396759033203, + "step": 1668 + }, + { + "epoch": 23.18173875054609, + "grad_norm": 0.1965002566576004, + "learning_rate": 0.0006, + "loss": 3.8761439323425293, + "step": 1669 + }, + { + "epoch": 23.195718654434252, + "grad_norm": 0.20426614582538605, + "learning_rate": 0.0006, + "loss": 3.822899580001831, + "step": 1670 + }, + { + "epoch": 23.209698558322412, + "grad_norm": 0.2197263389825821, + "learning_rate": 0.0006, + "loss": 3.887728452682495, + "step": 1671 + }, + { + "epoch": 23.22367846221057, + "grad_norm": 0.22844573855400085, + "learning_rate": 0.0006, + "loss": 3.8550517559051514, + "step": 1672 + }, + { + "epoch": 23.23765836609873, + "grad_norm": 0.2347746044397354, + "learning_rate": 0.0006, + "loss": 3.903310537338257, + "step": 1673 + }, + { + "epoch": 23.251638269986895, + "grad_norm": 0.24167625606060028, + "learning_rate": 0.0006, + "loss": 3.8397774696350098, + "step": 1674 + }, + { + "epoch": 23.265618173875055, + "grad_norm": 0.2691650688648224, + "learning_rate": 0.0006, + "loss": 3.853254795074463, + "step": 1675 + }, + { + "epoch": 23.279598077763215, + "grad_norm": 0.29421621561050415, + "learning_rate": 0.0006, + "loss": 3.86065411567688, + "step": 1676 + }, + { + "epoch": 23.293577981651374, + "grad_norm": 0.31074345111846924, + "learning_rate": 0.0006, + "loss": 3.8716742992401123, + "step": 1677 + }, + { + "epoch": 23.307557885539538, + "grad_norm": 0.3044569194316864, + "learning_rate": 0.0006, + "loss": 3.8738951683044434, + "step": 1678 + }, + { + "epoch": 23.321537789427698, + "grad_norm": 0.30496764183044434, + "learning_rate": 0.0006, + "loss": 3.884446620941162, + "step": 1679 + }, + { + "epoch": 23.335517693315857, + "grad_norm": 0.31122756004333496, + "learning_rate": 0.0006, + "loss": 3.878495693206787, + "step": 1680 + }, + { + "epoch": 23.34949759720402, + "grad_norm": 0.32268181443214417, + "learning_rate": 0.0006, + "loss": 3.8793649673461914, + "step": 1681 + }, + { + "epoch": 23.36347750109218, + "grad_norm": 0.3297140598297119, + "learning_rate": 0.0006, + "loss": 3.87484073638916, + "step": 1682 + }, + { + "epoch": 23.37745740498034, + "grad_norm": 0.26007479429244995, + "learning_rate": 0.0006, + "loss": 3.8510947227478027, + "step": 1683 + }, + { + "epoch": 23.3914373088685, + "grad_norm": 0.2627335786819458, + "learning_rate": 0.0006, + "loss": 3.8783209323883057, + "step": 1684 + }, + { + "epoch": 23.405417212756664, + "grad_norm": 0.256452739238739, + "learning_rate": 0.0006, + "loss": 3.8594281673431396, + "step": 1685 + }, + { + "epoch": 23.419397116644824, + "grad_norm": 0.23892226815223694, + "learning_rate": 0.0006, + "loss": 3.898951292037964, + "step": 1686 + }, + { + "epoch": 23.433377020532983, + "grad_norm": 0.21625587344169617, + "learning_rate": 0.0006, + "loss": 3.8679966926574707, + "step": 1687 + }, + { + "epoch": 23.447356924421143, + "grad_norm": 0.21924619376659393, + "learning_rate": 0.0006, + "loss": 3.8774075508117676, + "step": 1688 + }, + { + "epoch": 23.461336828309307, + "grad_norm": 0.21500127017498016, + "learning_rate": 0.0006, + "loss": 3.870619297027588, + "step": 1689 + }, + { + "epoch": 23.475316732197467, + "grad_norm": 0.22580556571483612, + "learning_rate": 0.0006, + "loss": 3.887722969055176, + "step": 1690 + }, + { + "epoch": 23.489296636085626, + "grad_norm": 0.2500104308128357, + "learning_rate": 0.0006, + "loss": 3.88789963722229, + "step": 1691 + }, + { + "epoch": 23.503276539973786, + "grad_norm": 0.22462762892246246, + "learning_rate": 0.0006, + "loss": 3.863997459411621, + "step": 1692 + }, + { + "epoch": 23.51725644386195, + "grad_norm": 0.21427781879901886, + "learning_rate": 0.0006, + "loss": 3.8827033042907715, + "step": 1693 + }, + { + "epoch": 23.53123634775011, + "grad_norm": 0.22278577089309692, + "learning_rate": 0.0006, + "loss": 3.8659563064575195, + "step": 1694 + }, + { + "epoch": 23.54521625163827, + "grad_norm": 0.22801144421100616, + "learning_rate": 0.0006, + "loss": 3.9031362533569336, + "step": 1695 + }, + { + "epoch": 23.55919615552643, + "grad_norm": 0.25071898102760315, + "learning_rate": 0.0006, + "loss": 3.887746810913086, + "step": 1696 + }, + { + "epoch": 23.573176059414592, + "grad_norm": 0.2564085125923157, + "learning_rate": 0.0006, + "loss": 3.8918356895446777, + "step": 1697 + }, + { + "epoch": 23.587155963302752, + "grad_norm": 0.24603120982646942, + "learning_rate": 0.0006, + "loss": 3.850416421890259, + "step": 1698 + }, + { + "epoch": 23.601135867190912, + "grad_norm": 0.20539002120494843, + "learning_rate": 0.0006, + "loss": 3.862060070037842, + "step": 1699 + }, + { + "epoch": 23.615115771079076, + "grad_norm": 0.2022249400615692, + "learning_rate": 0.0006, + "loss": 3.899008274078369, + "step": 1700 + }, + { + "epoch": 23.629095674967235, + "grad_norm": 0.2435392290353775, + "learning_rate": 0.0006, + "loss": 3.844388961791992, + "step": 1701 + }, + { + "epoch": 23.643075578855395, + "grad_norm": 0.21146756410598755, + "learning_rate": 0.0006, + "loss": 3.8972439765930176, + "step": 1702 + }, + { + "epoch": 23.657055482743555, + "grad_norm": 0.2025400996208191, + "learning_rate": 0.0006, + "loss": 3.865253448486328, + "step": 1703 + }, + { + "epoch": 23.67103538663172, + "grad_norm": 0.21129970252513885, + "learning_rate": 0.0006, + "loss": 3.8768205642700195, + "step": 1704 + }, + { + "epoch": 23.68501529051988, + "grad_norm": 0.22982284426689148, + "learning_rate": 0.0006, + "loss": 3.8792667388916016, + "step": 1705 + }, + { + "epoch": 23.698995194408038, + "grad_norm": 0.23013733327388763, + "learning_rate": 0.0006, + "loss": 3.880897045135498, + "step": 1706 + }, + { + "epoch": 23.712975098296198, + "grad_norm": 0.2277672290802002, + "learning_rate": 0.0006, + "loss": 3.8738410472869873, + "step": 1707 + }, + { + "epoch": 23.72695500218436, + "grad_norm": 0.2343369573354721, + "learning_rate": 0.0006, + "loss": 3.8587026596069336, + "step": 1708 + }, + { + "epoch": 23.74093490607252, + "grad_norm": 0.23159530758857727, + "learning_rate": 0.0006, + "loss": 3.856306552886963, + "step": 1709 + }, + { + "epoch": 23.75491480996068, + "grad_norm": 0.19541035592556, + "learning_rate": 0.0006, + "loss": 3.8294754028320312, + "step": 1710 + }, + { + "epoch": 23.76889471384884, + "grad_norm": 0.22999322414398193, + "learning_rate": 0.0006, + "loss": 3.882676124572754, + "step": 1711 + }, + { + "epoch": 23.782874617737004, + "grad_norm": 0.23442843556404114, + "learning_rate": 0.0006, + "loss": 3.8887529373168945, + "step": 1712 + }, + { + "epoch": 23.796854521625164, + "grad_norm": 0.22914239764213562, + "learning_rate": 0.0006, + "loss": 3.867673635482788, + "step": 1713 + }, + { + "epoch": 23.810834425513324, + "grad_norm": 0.20683827996253967, + "learning_rate": 0.0006, + "loss": 3.8999581336975098, + "step": 1714 + }, + { + "epoch": 23.824814329401484, + "grad_norm": 0.19281277060508728, + "learning_rate": 0.0006, + "loss": 3.8997726440429688, + "step": 1715 + }, + { + "epoch": 23.838794233289647, + "grad_norm": 0.20058563351631165, + "learning_rate": 0.0006, + "loss": 3.8583860397338867, + "step": 1716 + }, + { + "epoch": 23.852774137177807, + "grad_norm": 0.19856606423854828, + "learning_rate": 0.0006, + "loss": 3.88948392868042, + "step": 1717 + }, + { + "epoch": 23.866754041065967, + "grad_norm": 0.2099323868751526, + "learning_rate": 0.0006, + "loss": 3.878458261489868, + "step": 1718 + }, + { + "epoch": 23.88073394495413, + "grad_norm": 0.22945016622543335, + "learning_rate": 0.0006, + "loss": 3.84116268157959, + "step": 1719 + }, + { + "epoch": 23.89471384884229, + "grad_norm": 0.22646087408065796, + "learning_rate": 0.0006, + "loss": 3.9006617069244385, + "step": 1720 + }, + { + "epoch": 23.90869375273045, + "grad_norm": 0.20282860100269318, + "learning_rate": 0.0006, + "loss": 3.8781144618988037, + "step": 1721 + }, + { + "epoch": 23.92267365661861, + "grad_norm": 0.1918555349111557, + "learning_rate": 0.0006, + "loss": 3.8560891151428223, + "step": 1722 + }, + { + "epoch": 23.936653560506773, + "grad_norm": 0.19286513328552246, + "learning_rate": 0.0006, + "loss": 3.873220920562744, + "step": 1723 + }, + { + "epoch": 23.950633464394933, + "grad_norm": 0.21071338653564453, + "learning_rate": 0.0006, + "loss": 3.9147067070007324, + "step": 1724 + }, + { + "epoch": 23.964613368283093, + "grad_norm": 0.20956715941429138, + "learning_rate": 0.0006, + "loss": 3.8762729167938232, + "step": 1725 + }, + { + "epoch": 23.978593272171253, + "grad_norm": 0.23053105175495148, + "learning_rate": 0.0006, + "loss": 3.873781681060791, + "step": 1726 + }, + { + "epoch": 23.992573176059416, + "grad_norm": 0.2719029486179352, + "learning_rate": 0.0006, + "loss": 3.862342357635498, + "step": 1727 + }, + { + "epoch": 24.0, + "grad_norm": 0.2933610677719116, + "learning_rate": 0.0006, + "loss": 3.8657689094543457, + "step": 1728 + }, + { + "epoch": 24.0, + "eval_loss": 4.0959153175354, + "eval_runtime": 44.3631, + "eval_samples_per_second": 55.046, + "eval_steps_per_second": 3.449, + "step": 1728 + }, + { + "epoch": 24.01397990388816, + "grad_norm": 0.24905365705490112, + "learning_rate": 0.0006, + "loss": 3.838136911392212, + "step": 1729 + }, + { + "epoch": 24.027959807776323, + "grad_norm": 0.25948020815849304, + "learning_rate": 0.0006, + "loss": 3.8581268787384033, + "step": 1730 + }, + { + "epoch": 24.041939711664483, + "grad_norm": 0.24965140223503113, + "learning_rate": 0.0006, + "loss": 3.8628978729248047, + "step": 1731 + }, + { + "epoch": 24.055919615552643, + "grad_norm": 0.23428823053836823, + "learning_rate": 0.0006, + "loss": 3.8188819885253906, + "step": 1732 + }, + { + "epoch": 24.069899519440803, + "grad_norm": 0.22191211581230164, + "learning_rate": 0.0006, + "loss": 3.8616039752960205, + "step": 1733 + }, + { + "epoch": 24.083879423328966, + "grad_norm": 0.20257535576820374, + "learning_rate": 0.0006, + "loss": 3.8632802963256836, + "step": 1734 + }, + { + "epoch": 24.097859327217126, + "grad_norm": 0.20385196805000305, + "learning_rate": 0.0006, + "loss": 3.885817050933838, + "step": 1735 + }, + { + "epoch": 24.111839231105286, + "grad_norm": 0.19921693205833435, + "learning_rate": 0.0006, + "loss": 3.838515043258667, + "step": 1736 + }, + { + "epoch": 24.125819134993446, + "grad_norm": 0.20221556723117828, + "learning_rate": 0.0006, + "loss": 3.8585309982299805, + "step": 1737 + }, + { + "epoch": 24.13979903888161, + "grad_norm": 0.20124691724777222, + "learning_rate": 0.0006, + "loss": 3.81656551361084, + "step": 1738 + }, + { + "epoch": 24.15377894276977, + "grad_norm": 0.1810830533504486, + "learning_rate": 0.0006, + "loss": 3.841783046722412, + "step": 1739 + }, + { + "epoch": 24.16775884665793, + "grad_norm": 0.18414196372032166, + "learning_rate": 0.0006, + "loss": 3.8614797592163086, + "step": 1740 + }, + { + "epoch": 24.18173875054609, + "grad_norm": 0.18930725753307343, + "learning_rate": 0.0006, + "loss": 3.8382534980773926, + "step": 1741 + }, + { + "epoch": 24.195718654434252, + "grad_norm": 0.19658128917217255, + "learning_rate": 0.0006, + "loss": 3.881742477416992, + "step": 1742 + }, + { + "epoch": 24.209698558322412, + "grad_norm": 0.20175589621067047, + "learning_rate": 0.0006, + "loss": 3.8760581016540527, + "step": 1743 + }, + { + "epoch": 24.22367846221057, + "grad_norm": 0.19416265189647675, + "learning_rate": 0.0006, + "loss": 3.8373687267303467, + "step": 1744 + }, + { + "epoch": 24.23765836609873, + "grad_norm": 0.20206521451473236, + "learning_rate": 0.0006, + "loss": 3.8322830200195312, + "step": 1745 + }, + { + "epoch": 24.251638269986895, + "grad_norm": 0.21797429025173187, + "learning_rate": 0.0006, + "loss": 3.849905490875244, + "step": 1746 + }, + { + "epoch": 24.265618173875055, + "grad_norm": 0.21295784413814545, + "learning_rate": 0.0006, + "loss": 3.847714900970459, + "step": 1747 + }, + { + "epoch": 24.279598077763215, + "grad_norm": 0.22023876011371613, + "learning_rate": 0.0006, + "loss": 3.8221592903137207, + "step": 1748 + }, + { + "epoch": 24.293577981651374, + "grad_norm": 0.2125576138496399, + "learning_rate": 0.0006, + "loss": 3.8070976734161377, + "step": 1749 + }, + { + "epoch": 24.307557885539538, + "grad_norm": 0.18673811852931976, + "learning_rate": 0.0006, + "loss": 3.866878032684326, + "step": 1750 + }, + { + "epoch": 24.321537789427698, + "grad_norm": 0.1972627341747284, + "learning_rate": 0.0006, + "loss": 3.846404552459717, + "step": 1751 + }, + { + "epoch": 24.335517693315857, + "grad_norm": 0.21846632659435272, + "learning_rate": 0.0006, + "loss": 3.8528640270233154, + "step": 1752 + }, + { + "epoch": 24.34949759720402, + "grad_norm": 0.22234080731868744, + "learning_rate": 0.0006, + "loss": 3.8268141746520996, + "step": 1753 + }, + { + "epoch": 24.36347750109218, + "grad_norm": 0.23002761602401733, + "learning_rate": 0.0006, + "loss": 3.832444667816162, + "step": 1754 + }, + { + "epoch": 24.37745740498034, + "grad_norm": 0.22526559233665466, + "learning_rate": 0.0006, + "loss": 3.864406108856201, + "step": 1755 + }, + { + "epoch": 24.3914373088685, + "grad_norm": 0.2290039211511612, + "learning_rate": 0.0006, + "loss": 3.8449103832244873, + "step": 1756 + }, + { + "epoch": 24.405417212756664, + "grad_norm": 0.23145617544651031, + "learning_rate": 0.0006, + "loss": 3.8183751106262207, + "step": 1757 + }, + { + "epoch": 24.419397116644824, + "grad_norm": 0.24287554621696472, + "learning_rate": 0.0006, + "loss": 3.809481382369995, + "step": 1758 + }, + { + "epoch": 24.433377020532983, + "grad_norm": 0.2672404646873474, + "learning_rate": 0.0006, + "loss": 3.877800464630127, + "step": 1759 + }, + { + "epoch": 24.447356924421143, + "grad_norm": 0.26292186975479126, + "learning_rate": 0.0006, + "loss": 3.8329367637634277, + "step": 1760 + }, + { + "epoch": 24.461336828309307, + "grad_norm": 0.26235947012901306, + "learning_rate": 0.0006, + "loss": 3.8414158821105957, + "step": 1761 + }, + { + "epoch": 24.475316732197467, + "grad_norm": 0.2638382613658905, + "learning_rate": 0.0006, + "loss": 3.849188804626465, + "step": 1762 + }, + { + "epoch": 24.489296636085626, + "grad_norm": 0.2564602196216583, + "learning_rate": 0.0006, + "loss": 3.865501880645752, + "step": 1763 + }, + { + "epoch": 24.503276539973786, + "grad_norm": 0.21352271735668182, + "learning_rate": 0.0006, + "loss": 3.87910795211792, + "step": 1764 + }, + { + "epoch": 24.51725644386195, + "grad_norm": 0.2470584511756897, + "learning_rate": 0.0006, + "loss": 3.858750343322754, + "step": 1765 + }, + { + "epoch": 24.53123634775011, + "grad_norm": 0.24907536804676056, + "learning_rate": 0.0006, + "loss": 3.8532559871673584, + "step": 1766 + }, + { + "epoch": 24.54521625163827, + "grad_norm": 0.2426205575466156, + "learning_rate": 0.0006, + "loss": 3.8659827709198, + "step": 1767 + }, + { + "epoch": 24.55919615552643, + "grad_norm": 0.23481151461601257, + "learning_rate": 0.0006, + "loss": 3.863948345184326, + "step": 1768 + }, + { + "epoch": 24.573176059414592, + "grad_norm": 0.22717779874801636, + "learning_rate": 0.0006, + "loss": 3.848527193069458, + "step": 1769 + }, + { + "epoch": 24.587155963302752, + "grad_norm": 0.2267129123210907, + "learning_rate": 0.0006, + "loss": 3.8600735664367676, + "step": 1770 + }, + { + "epoch": 24.601135867190912, + "grad_norm": 0.24967710673809052, + "learning_rate": 0.0006, + "loss": 3.84291934967041, + "step": 1771 + }, + { + "epoch": 24.615115771079076, + "grad_norm": 0.25308957695961, + "learning_rate": 0.0006, + "loss": 3.846181631088257, + "step": 1772 + }, + { + "epoch": 24.629095674967235, + "grad_norm": 0.2689298391342163, + "learning_rate": 0.0006, + "loss": 3.8572893142700195, + "step": 1773 + }, + { + "epoch": 24.643075578855395, + "grad_norm": 0.26458555459976196, + "learning_rate": 0.0006, + "loss": 3.8583621978759766, + "step": 1774 + }, + { + "epoch": 24.657055482743555, + "grad_norm": 0.24416811764240265, + "learning_rate": 0.0006, + "loss": 3.8648223876953125, + "step": 1775 + }, + { + "epoch": 24.67103538663172, + "grad_norm": 0.22218526899814606, + "learning_rate": 0.0006, + "loss": 3.839395523071289, + "step": 1776 + }, + { + "epoch": 24.68501529051988, + "grad_norm": 0.2147492915391922, + "learning_rate": 0.0006, + "loss": 3.875734567642212, + "step": 1777 + }, + { + "epoch": 24.698995194408038, + "grad_norm": 0.2346794754266739, + "learning_rate": 0.0006, + "loss": 3.854768991470337, + "step": 1778 + }, + { + "epoch": 24.712975098296198, + "grad_norm": 0.21406520903110504, + "learning_rate": 0.0006, + "loss": 3.8269104957580566, + "step": 1779 + }, + { + "epoch": 24.72695500218436, + "grad_norm": 0.20716224610805511, + "learning_rate": 0.0006, + "loss": 3.8245768547058105, + "step": 1780 + }, + { + "epoch": 24.74093490607252, + "grad_norm": 0.21445901691913605, + "learning_rate": 0.0006, + "loss": 3.8877978324890137, + "step": 1781 + }, + { + "epoch": 24.75491480996068, + "grad_norm": 0.21964985132217407, + "learning_rate": 0.0006, + "loss": 3.8602452278137207, + "step": 1782 + }, + { + "epoch": 24.76889471384884, + "grad_norm": 0.209807351231575, + "learning_rate": 0.0006, + "loss": 3.853428602218628, + "step": 1783 + }, + { + "epoch": 24.782874617737004, + "grad_norm": 0.19564911723136902, + "learning_rate": 0.0006, + "loss": 3.832275867462158, + "step": 1784 + }, + { + "epoch": 24.796854521625164, + "grad_norm": 0.21394333243370056, + "learning_rate": 0.0006, + "loss": 3.8543171882629395, + "step": 1785 + }, + { + "epoch": 24.810834425513324, + "grad_norm": 0.23156948387622833, + "learning_rate": 0.0006, + "loss": 3.8539412021636963, + "step": 1786 + }, + { + "epoch": 24.824814329401484, + "grad_norm": 0.2378678321838379, + "learning_rate": 0.0006, + "loss": 3.8409833908081055, + "step": 1787 + }, + { + "epoch": 24.838794233289647, + "grad_norm": 0.23816189169883728, + "learning_rate": 0.0006, + "loss": 3.855379581451416, + "step": 1788 + }, + { + "epoch": 24.852774137177807, + "grad_norm": 0.23109886050224304, + "learning_rate": 0.0006, + "loss": 3.8689517974853516, + "step": 1789 + }, + { + "epoch": 24.866754041065967, + "grad_norm": 0.2042883038520813, + "learning_rate": 0.0006, + "loss": 3.8730404376983643, + "step": 1790 + }, + { + "epoch": 24.88073394495413, + "grad_norm": 0.2039479911327362, + "learning_rate": 0.0006, + "loss": 3.8474984169006348, + "step": 1791 + }, + { + "epoch": 24.89471384884229, + "grad_norm": 0.213027223944664, + "learning_rate": 0.0006, + "loss": 3.8539695739746094, + "step": 1792 + }, + { + "epoch": 24.90869375273045, + "grad_norm": 0.2280654013156891, + "learning_rate": 0.0006, + "loss": 3.8633079528808594, + "step": 1793 + }, + { + "epoch": 24.92267365661861, + "grad_norm": 0.20864921808242798, + "learning_rate": 0.0006, + "loss": 3.8110368251800537, + "step": 1794 + }, + { + "epoch": 24.936653560506773, + "grad_norm": 0.23002111911773682, + "learning_rate": 0.0006, + "loss": 3.8334741592407227, + "step": 1795 + }, + { + "epoch": 24.950633464394933, + "grad_norm": 0.232331782579422, + "learning_rate": 0.0006, + "loss": 3.871887683868408, + "step": 1796 + }, + { + "epoch": 24.964613368283093, + "grad_norm": 0.24141235649585724, + "learning_rate": 0.0006, + "loss": 3.8614959716796875, + "step": 1797 + }, + { + "epoch": 24.978593272171253, + "grad_norm": 0.2545177638530731, + "learning_rate": 0.0006, + "loss": 3.8563568592071533, + "step": 1798 + }, + { + "epoch": 24.992573176059416, + "grad_norm": 0.25186386704444885, + "learning_rate": 0.0006, + "loss": 3.882166862487793, + "step": 1799 + }, + { + "epoch": 25.0, + "grad_norm": 0.260195791721344, + "learning_rate": 0.0006, + "loss": 3.884554862976074, + "step": 1800 + }, + { + "epoch": 25.0, + "eval_loss": 4.08809757232666, + "eval_runtime": 44.7947, + "eval_samples_per_second": 54.515, + "eval_steps_per_second": 3.416, + "step": 1800 + }, + { + "epoch": 25.01397990388816, + "grad_norm": 0.25396403670310974, + "learning_rate": 0.0006, + "loss": 3.8217287063598633, + "step": 1801 + }, + { + "epoch": 25.027959807776323, + "grad_norm": 0.2773195207118988, + "learning_rate": 0.0006, + "loss": 3.809542417526245, + "step": 1802 + }, + { + "epoch": 25.041939711664483, + "grad_norm": 0.3073263168334961, + "learning_rate": 0.0006, + "loss": 3.825706958770752, + "step": 1803 + }, + { + "epoch": 25.055919615552643, + "grad_norm": 0.30885398387908936, + "learning_rate": 0.0006, + "loss": 3.8081188201904297, + "step": 1804 + }, + { + "epoch": 25.069899519440803, + "grad_norm": 0.27356019616127014, + "learning_rate": 0.0006, + "loss": 3.8538241386413574, + "step": 1805 + }, + { + "epoch": 25.083879423328966, + "grad_norm": 0.22830164432525635, + "learning_rate": 0.0006, + "loss": 3.8246965408325195, + "step": 1806 + }, + { + "epoch": 25.097859327217126, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.8552842140197754, + "step": 1807 + }, + { + "epoch": 25.111839231105286, + "grad_norm": 0.21718722581863403, + "learning_rate": 0.0006, + "loss": 3.8489418029785156, + "step": 1808 + }, + { + "epoch": 25.125819134993446, + "grad_norm": 0.2480861395597458, + "learning_rate": 0.0006, + "loss": 3.821455955505371, + "step": 1809 + }, + { + "epoch": 25.13979903888161, + "grad_norm": 0.2796635627746582, + "learning_rate": 0.0006, + "loss": 3.8202435970306396, + "step": 1810 + }, + { + "epoch": 25.15377894276977, + "grad_norm": 0.2829958200454712, + "learning_rate": 0.0006, + "loss": 3.8293306827545166, + "step": 1811 + }, + { + "epoch": 25.16775884665793, + "grad_norm": 0.2510125935077667, + "learning_rate": 0.0006, + "loss": 3.8342957496643066, + "step": 1812 + }, + { + "epoch": 25.18173875054609, + "grad_norm": 0.22923722863197327, + "learning_rate": 0.0006, + "loss": 3.8448352813720703, + "step": 1813 + }, + { + "epoch": 25.195718654434252, + "grad_norm": 0.21439228951931, + "learning_rate": 0.0006, + "loss": 3.8343517780303955, + "step": 1814 + }, + { + "epoch": 25.209698558322412, + "grad_norm": 0.1965373307466507, + "learning_rate": 0.0006, + "loss": 3.8163528442382812, + "step": 1815 + }, + { + "epoch": 25.22367846221057, + "grad_norm": 0.20121058821678162, + "learning_rate": 0.0006, + "loss": 3.8007280826568604, + "step": 1816 + }, + { + "epoch": 25.23765836609873, + "grad_norm": 0.21383272111415863, + "learning_rate": 0.0006, + "loss": 3.8200385570526123, + "step": 1817 + }, + { + "epoch": 25.251638269986895, + "grad_norm": 0.2066601663827896, + "learning_rate": 0.0006, + "loss": 3.8333921432495117, + "step": 1818 + }, + { + "epoch": 25.265618173875055, + "grad_norm": 0.2104874551296234, + "learning_rate": 0.0006, + "loss": 3.838012218475342, + "step": 1819 + }, + { + "epoch": 25.279598077763215, + "grad_norm": 0.19733119010925293, + "learning_rate": 0.0006, + "loss": 3.835139274597168, + "step": 1820 + }, + { + "epoch": 25.293577981651374, + "grad_norm": 0.2119498997926712, + "learning_rate": 0.0006, + "loss": 3.8099722862243652, + "step": 1821 + }, + { + "epoch": 25.307557885539538, + "grad_norm": 0.21863529086112976, + "learning_rate": 0.0006, + "loss": 3.7801573276519775, + "step": 1822 + }, + { + "epoch": 25.321537789427698, + "grad_norm": 0.2113322764635086, + "learning_rate": 0.0006, + "loss": 3.809903621673584, + "step": 1823 + }, + { + "epoch": 25.335517693315857, + "grad_norm": 0.21594023704528809, + "learning_rate": 0.0006, + "loss": 3.8485071659088135, + "step": 1824 + }, + { + "epoch": 25.34949759720402, + "grad_norm": 0.21475964784622192, + "learning_rate": 0.0006, + "loss": 3.7894768714904785, + "step": 1825 + }, + { + "epoch": 25.36347750109218, + "grad_norm": 0.21174900233745575, + "learning_rate": 0.0006, + "loss": 3.821711540222168, + "step": 1826 + }, + { + "epoch": 25.37745740498034, + "grad_norm": 0.2065584659576416, + "learning_rate": 0.0006, + "loss": 3.8439841270446777, + "step": 1827 + }, + { + "epoch": 25.3914373088685, + "grad_norm": 0.19157007336616516, + "learning_rate": 0.0006, + "loss": 3.864245891571045, + "step": 1828 + }, + { + "epoch": 25.405417212756664, + "grad_norm": 0.19983816146850586, + "learning_rate": 0.0006, + "loss": 3.8317415714263916, + "step": 1829 + }, + { + "epoch": 25.419397116644824, + "grad_norm": 0.20506152510643005, + "learning_rate": 0.0006, + "loss": 3.8009896278381348, + "step": 1830 + }, + { + "epoch": 25.433377020532983, + "grad_norm": 0.19056960940361023, + "learning_rate": 0.0006, + "loss": 3.8383498191833496, + "step": 1831 + }, + { + "epoch": 25.447356924421143, + "grad_norm": 0.19262190163135529, + "learning_rate": 0.0006, + "loss": 3.838902235031128, + "step": 1832 + }, + { + "epoch": 25.461336828309307, + "grad_norm": 0.19859355688095093, + "learning_rate": 0.0006, + "loss": 3.82452392578125, + "step": 1833 + }, + { + "epoch": 25.475316732197467, + "grad_norm": 0.2144225388765335, + "learning_rate": 0.0006, + "loss": 3.8110032081604004, + "step": 1834 + }, + { + "epoch": 25.489296636085626, + "grad_norm": 0.20566298067569733, + "learning_rate": 0.0006, + "loss": 3.8662471771240234, + "step": 1835 + }, + { + "epoch": 25.503276539973786, + "grad_norm": 0.2071852684020996, + "learning_rate": 0.0006, + "loss": 3.821134090423584, + "step": 1836 + }, + { + "epoch": 25.51725644386195, + "grad_norm": 0.2095036506652832, + "learning_rate": 0.0006, + "loss": 3.824092388153076, + "step": 1837 + }, + { + "epoch": 25.53123634775011, + "grad_norm": 0.20136208832263947, + "learning_rate": 0.0006, + "loss": 3.8669862747192383, + "step": 1838 + }, + { + "epoch": 25.54521625163827, + "grad_norm": 0.1983811855316162, + "learning_rate": 0.0006, + "loss": 3.8120107650756836, + "step": 1839 + }, + { + "epoch": 25.55919615552643, + "grad_norm": 0.22859714925289154, + "learning_rate": 0.0006, + "loss": 3.8519299030303955, + "step": 1840 + }, + { + "epoch": 25.573176059414592, + "grad_norm": 0.23672667145729065, + "learning_rate": 0.0006, + "loss": 3.8245458602905273, + "step": 1841 + }, + { + "epoch": 25.587155963302752, + "grad_norm": 0.22698380053043365, + "learning_rate": 0.0006, + "loss": 3.8406805992126465, + "step": 1842 + }, + { + "epoch": 25.601135867190912, + "grad_norm": 0.25684037804603577, + "learning_rate": 0.0006, + "loss": 3.8584351539611816, + "step": 1843 + }, + { + "epoch": 25.615115771079076, + "grad_norm": 0.28180673718452454, + "learning_rate": 0.0006, + "loss": 3.8085098266601562, + "step": 1844 + }, + { + "epoch": 25.629095674967235, + "grad_norm": 0.2814631462097168, + "learning_rate": 0.0006, + "loss": 3.845083236694336, + "step": 1845 + }, + { + "epoch": 25.643075578855395, + "grad_norm": 0.23630981147289276, + "learning_rate": 0.0006, + "loss": 3.847749710083008, + "step": 1846 + }, + { + "epoch": 25.657055482743555, + "grad_norm": 0.22463662922382355, + "learning_rate": 0.0006, + "loss": 3.8172082901000977, + "step": 1847 + }, + { + "epoch": 25.67103538663172, + "grad_norm": 0.26551681756973267, + "learning_rate": 0.0006, + "loss": 3.8205654621124268, + "step": 1848 + }, + { + "epoch": 25.68501529051988, + "grad_norm": 0.27824243903160095, + "learning_rate": 0.0006, + "loss": 3.846076011657715, + "step": 1849 + }, + { + "epoch": 25.698995194408038, + "grad_norm": 0.266998291015625, + "learning_rate": 0.0006, + "loss": 3.8543574810028076, + "step": 1850 + }, + { + "epoch": 25.712975098296198, + "grad_norm": 0.22980351746082306, + "learning_rate": 0.0006, + "loss": 3.855511426925659, + "step": 1851 + }, + { + "epoch": 25.72695500218436, + "grad_norm": 0.23482872545719147, + "learning_rate": 0.0006, + "loss": 3.8687663078308105, + "step": 1852 + }, + { + "epoch": 25.74093490607252, + "grad_norm": 0.21119585633277893, + "learning_rate": 0.0006, + "loss": 3.8147101402282715, + "step": 1853 + }, + { + "epoch": 25.75491480996068, + "grad_norm": 0.21200446784496307, + "learning_rate": 0.0006, + "loss": 3.858473777770996, + "step": 1854 + }, + { + "epoch": 25.76889471384884, + "grad_norm": 0.20497842133045197, + "learning_rate": 0.0006, + "loss": 3.8545501232147217, + "step": 1855 + }, + { + "epoch": 25.782874617737004, + "grad_norm": 0.19328081607818604, + "learning_rate": 0.0006, + "loss": 3.7941341400146484, + "step": 1856 + }, + { + "epoch": 25.796854521625164, + "grad_norm": 0.2191578894853592, + "learning_rate": 0.0006, + "loss": 3.8408665657043457, + "step": 1857 + }, + { + "epoch": 25.810834425513324, + "grad_norm": 0.2548826038837433, + "learning_rate": 0.0006, + "loss": 3.854130744934082, + "step": 1858 + }, + { + "epoch": 25.824814329401484, + "grad_norm": 0.2290351390838623, + "learning_rate": 0.0006, + "loss": 3.8680176734924316, + "step": 1859 + }, + { + "epoch": 25.838794233289647, + "grad_norm": 0.20760944485664368, + "learning_rate": 0.0006, + "loss": 3.83731746673584, + "step": 1860 + }, + { + "epoch": 25.852774137177807, + "grad_norm": 0.19587582349777222, + "learning_rate": 0.0006, + "loss": 3.8173444271087646, + "step": 1861 + }, + { + "epoch": 25.866754041065967, + "grad_norm": 0.20762693881988525, + "learning_rate": 0.0006, + "loss": 3.8479790687561035, + "step": 1862 + }, + { + "epoch": 25.88073394495413, + "grad_norm": 0.20633186399936676, + "learning_rate": 0.0006, + "loss": 3.852285385131836, + "step": 1863 + }, + { + "epoch": 25.89471384884229, + "grad_norm": 0.21484960615634918, + "learning_rate": 0.0006, + "loss": 3.832592725753784, + "step": 1864 + }, + { + "epoch": 25.90869375273045, + "grad_norm": 0.19569595158100128, + "learning_rate": 0.0006, + "loss": 3.838071584701538, + "step": 1865 + }, + { + "epoch": 25.92267365661861, + "grad_norm": 0.19532904028892517, + "learning_rate": 0.0006, + "loss": 3.854252815246582, + "step": 1866 + }, + { + "epoch": 25.936653560506773, + "grad_norm": 0.1909649819135666, + "learning_rate": 0.0006, + "loss": 3.8444578647613525, + "step": 1867 + }, + { + "epoch": 25.950633464394933, + "grad_norm": 0.17476283013820648, + "learning_rate": 0.0006, + "loss": 3.836519241333008, + "step": 1868 + }, + { + "epoch": 25.964613368283093, + "grad_norm": 0.1895206719636917, + "learning_rate": 0.0006, + "loss": 3.8282582759857178, + "step": 1869 + }, + { + "epoch": 25.978593272171253, + "grad_norm": 0.20038437843322754, + "learning_rate": 0.0006, + "loss": 3.80542254447937, + "step": 1870 + }, + { + "epoch": 25.992573176059416, + "grad_norm": 0.20728608965873718, + "learning_rate": 0.0006, + "loss": 3.8584811687469482, + "step": 1871 + }, + { + "epoch": 26.0, + "grad_norm": 0.22110891342163086, + "learning_rate": 0.0006, + "loss": 3.8020238876342773, + "step": 1872 + }, + { + "epoch": 26.0, + "eval_loss": 4.072164058685303, + "eval_runtime": 44.9089, + "eval_samples_per_second": 54.377, + "eval_steps_per_second": 3.407, + "step": 1872 + }, + { + "epoch": 26.01397990388816, + "grad_norm": 0.2222519814968109, + "learning_rate": 0.0006, + "loss": 3.8309168815612793, + "step": 1873 + }, + { + "epoch": 26.027959807776323, + "grad_norm": 0.2637656033039093, + "learning_rate": 0.0006, + "loss": 3.8025143146514893, + "step": 1874 + }, + { + "epoch": 26.041939711664483, + "grad_norm": 0.2665974795818329, + "learning_rate": 0.0006, + "loss": 3.8244004249572754, + "step": 1875 + }, + { + "epoch": 26.055919615552643, + "grad_norm": 0.22475720942020416, + "learning_rate": 0.0006, + "loss": 3.80039119720459, + "step": 1876 + }, + { + "epoch": 26.069899519440803, + "grad_norm": 0.22994336485862732, + "learning_rate": 0.0006, + "loss": 3.7700726985931396, + "step": 1877 + }, + { + "epoch": 26.083879423328966, + "grad_norm": 0.24214622378349304, + "learning_rate": 0.0006, + "loss": 3.818725109100342, + "step": 1878 + }, + { + "epoch": 26.097859327217126, + "grad_norm": 0.22701293230056763, + "learning_rate": 0.0006, + "loss": 3.833803176879883, + "step": 1879 + }, + { + "epoch": 26.111839231105286, + "grad_norm": 0.21452295780181885, + "learning_rate": 0.0006, + "loss": 3.8391427993774414, + "step": 1880 + }, + { + "epoch": 26.125819134993446, + "grad_norm": 0.20179636776447296, + "learning_rate": 0.0006, + "loss": 3.802957057952881, + "step": 1881 + }, + { + "epoch": 26.13979903888161, + "grad_norm": 0.2087477445602417, + "learning_rate": 0.0006, + "loss": 3.8339905738830566, + "step": 1882 + }, + { + "epoch": 26.15377894276977, + "grad_norm": 0.23583556711673737, + "learning_rate": 0.0006, + "loss": 3.802438259124756, + "step": 1883 + }, + { + "epoch": 26.16775884665793, + "grad_norm": 0.2504311501979828, + "learning_rate": 0.0006, + "loss": 3.80244517326355, + "step": 1884 + }, + { + "epoch": 26.18173875054609, + "grad_norm": 0.24903984367847443, + "learning_rate": 0.0006, + "loss": 3.788865566253662, + "step": 1885 + }, + { + "epoch": 26.195718654434252, + "grad_norm": 0.2707931101322174, + "learning_rate": 0.0006, + "loss": 3.800051212310791, + "step": 1886 + }, + { + "epoch": 26.209698558322412, + "grad_norm": 0.24902892112731934, + "learning_rate": 0.0006, + "loss": 3.8068337440490723, + "step": 1887 + }, + { + "epoch": 26.22367846221057, + "grad_norm": 0.22655536234378815, + "learning_rate": 0.0006, + "loss": 3.779439926147461, + "step": 1888 + }, + { + "epoch": 26.23765836609873, + "grad_norm": 0.24797996878623962, + "learning_rate": 0.0006, + "loss": 3.822831153869629, + "step": 1889 + }, + { + "epoch": 26.251638269986895, + "grad_norm": 0.2821420431137085, + "learning_rate": 0.0006, + "loss": 3.807954788208008, + "step": 1890 + }, + { + "epoch": 26.265618173875055, + "grad_norm": 0.30392691493034363, + "learning_rate": 0.0006, + "loss": 3.776951789855957, + "step": 1891 + }, + { + "epoch": 26.279598077763215, + "grad_norm": 0.32641273736953735, + "learning_rate": 0.0006, + "loss": 3.8216311931610107, + "step": 1892 + }, + { + "epoch": 26.293577981651374, + "grad_norm": 0.32674387097358704, + "learning_rate": 0.0006, + "loss": 3.815596580505371, + "step": 1893 + }, + { + "epoch": 26.307557885539538, + "grad_norm": 0.29137250781059265, + "learning_rate": 0.0006, + "loss": 3.8170812129974365, + "step": 1894 + }, + { + "epoch": 26.321537789427698, + "grad_norm": 0.24291734397411346, + "learning_rate": 0.0006, + "loss": 3.810352087020874, + "step": 1895 + }, + { + "epoch": 26.335517693315857, + "grad_norm": 0.24023209512233734, + "learning_rate": 0.0006, + "loss": 3.8075947761535645, + "step": 1896 + }, + { + "epoch": 26.34949759720402, + "grad_norm": 0.24334804713726044, + "learning_rate": 0.0006, + "loss": 3.831556797027588, + "step": 1897 + }, + { + "epoch": 26.36347750109218, + "grad_norm": 0.2109663337469101, + "learning_rate": 0.0006, + "loss": 3.838347911834717, + "step": 1898 + }, + { + "epoch": 26.37745740498034, + "grad_norm": 0.19668002426624298, + "learning_rate": 0.0006, + "loss": 3.774737596511841, + "step": 1899 + }, + { + "epoch": 26.3914373088685, + "grad_norm": 0.21329134702682495, + "learning_rate": 0.0006, + "loss": 3.8237252235412598, + "step": 1900 + }, + { + "epoch": 26.405417212756664, + "grad_norm": 0.20381781458854675, + "learning_rate": 0.0006, + "loss": 3.802569627761841, + "step": 1901 + }, + { + "epoch": 26.419397116644824, + "grad_norm": 0.19083160161972046, + "learning_rate": 0.0006, + "loss": 3.8301358222961426, + "step": 1902 + }, + { + "epoch": 26.433377020532983, + "grad_norm": 0.20012904703617096, + "learning_rate": 0.0006, + "loss": 3.7966408729553223, + "step": 1903 + }, + { + "epoch": 26.447356924421143, + "grad_norm": 0.19483457505702972, + "learning_rate": 0.0006, + "loss": 3.8431968688964844, + "step": 1904 + }, + { + "epoch": 26.461336828309307, + "grad_norm": 0.19946353137493134, + "learning_rate": 0.0006, + "loss": 3.8023815155029297, + "step": 1905 + }, + { + "epoch": 26.475316732197467, + "grad_norm": 0.1984100341796875, + "learning_rate": 0.0006, + "loss": 3.8283071517944336, + "step": 1906 + }, + { + "epoch": 26.489296636085626, + "grad_norm": 0.2148299664258957, + "learning_rate": 0.0006, + "loss": 3.8377504348754883, + "step": 1907 + }, + { + "epoch": 26.503276539973786, + "grad_norm": 0.22139184176921844, + "learning_rate": 0.0006, + "loss": 3.823051691055298, + "step": 1908 + }, + { + "epoch": 26.51725644386195, + "grad_norm": 0.18289034068584442, + "learning_rate": 0.0006, + "loss": 3.8027071952819824, + "step": 1909 + }, + { + "epoch": 26.53123634775011, + "grad_norm": 0.1816026121377945, + "learning_rate": 0.0006, + "loss": 3.823786735534668, + "step": 1910 + }, + { + "epoch": 26.54521625163827, + "grad_norm": 0.19074322283267975, + "learning_rate": 0.0006, + "loss": 3.813331127166748, + "step": 1911 + }, + { + "epoch": 26.55919615552643, + "grad_norm": 0.20301467180252075, + "learning_rate": 0.0006, + "loss": 3.8218350410461426, + "step": 1912 + }, + { + "epoch": 26.573176059414592, + "grad_norm": 0.25266432762145996, + "learning_rate": 0.0006, + "loss": 3.8455142974853516, + "step": 1913 + }, + { + "epoch": 26.587155963302752, + "grad_norm": 0.25804755091667175, + "learning_rate": 0.0006, + "loss": 3.799227476119995, + "step": 1914 + }, + { + "epoch": 26.601135867190912, + "grad_norm": 0.2555372416973114, + "learning_rate": 0.0006, + "loss": 3.8125686645507812, + "step": 1915 + }, + { + "epoch": 26.615115771079076, + "grad_norm": 0.2266194075345993, + "learning_rate": 0.0006, + "loss": 3.858363628387451, + "step": 1916 + }, + { + "epoch": 26.629095674967235, + "grad_norm": 0.1933048665523529, + "learning_rate": 0.0006, + "loss": 3.8078083992004395, + "step": 1917 + }, + { + "epoch": 26.643075578855395, + "grad_norm": 0.19936731457710266, + "learning_rate": 0.0006, + "loss": 3.81748628616333, + "step": 1918 + }, + { + "epoch": 26.657055482743555, + "grad_norm": 0.22041693329811096, + "learning_rate": 0.0006, + "loss": 3.833272933959961, + "step": 1919 + }, + { + "epoch": 26.67103538663172, + "grad_norm": 0.20679150521755219, + "learning_rate": 0.0006, + "loss": 3.8127288818359375, + "step": 1920 + }, + { + "epoch": 26.68501529051988, + "grad_norm": 0.21545100212097168, + "learning_rate": 0.0006, + "loss": 3.816051483154297, + "step": 1921 + }, + { + "epoch": 26.698995194408038, + "grad_norm": 0.23554518818855286, + "learning_rate": 0.0006, + "loss": 3.8180980682373047, + "step": 1922 + }, + { + "epoch": 26.712975098296198, + "grad_norm": 0.21942466497421265, + "learning_rate": 0.0006, + "loss": 3.803107976913452, + "step": 1923 + }, + { + "epoch": 26.72695500218436, + "grad_norm": 0.22335010766983032, + "learning_rate": 0.0006, + "loss": 3.847890853881836, + "step": 1924 + }, + { + "epoch": 26.74093490607252, + "grad_norm": 0.24731314182281494, + "learning_rate": 0.0006, + "loss": 3.7945008277893066, + "step": 1925 + }, + { + "epoch": 26.75491480996068, + "grad_norm": 0.2804568111896515, + "learning_rate": 0.0006, + "loss": 3.8400068283081055, + "step": 1926 + }, + { + "epoch": 26.76889471384884, + "grad_norm": 0.28787222504615784, + "learning_rate": 0.0006, + "loss": 3.839771270751953, + "step": 1927 + }, + { + "epoch": 26.782874617737004, + "grad_norm": 0.2949632406234741, + "learning_rate": 0.0006, + "loss": 3.8225326538085938, + "step": 1928 + }, + { + "epoch": 26.796854521625164, + "grad_norm": 0.31546032428741455, + "learning_rate": 0.0006, + "loss": 3.8182597160339355, + "step": 1929 + }, + { + "epoch": 26.810834425513324, + "grad_norm": 0.2956962585449219, + "learning_rate": 0.0006, + "loss": 3.8315680027008057, + "step": 1930 + }, + { + "epoch": 26.824814329401484, + "grad_norm": 0.26943835616111755, + "learning_rate": 0.0006, + "loss": 3.787720203399658, + "step": 1931 + }, + { + "epoch": 26.838794233289647, + "grad_norm": 0.24272359907627106, + "learning_rate": 0.0006, + "loss": 3.7973692417144775, + "step": 1932 + }, + { + "epoch": 26.852774137177807, + "grad_norm": 0.20553994178771973, + "learning_rate": 0.0006, + "loss": 3.8241593837738037, + "step": 1933 + }, + { + "epoch": 26.866754041065967, + "grad_norm": 0.21927912533283234, + "learning_rate": 0.0006, + "loss": 3.8608899116516113, + "step": 1934 + }, + { + "epoch": 26.88073394495413, + "grad_norm": 0.22878016531467438, + "learning_rate": 0.0006, + "loss": 3.8341972827911377, + "step": 1935 + }, + { + "epoch": 26.89471384884229, + "grad_norm": 0.2085554301738739, + "learning_rate": 0.0006, + "loss": 3.8261351585388184, + "step": 1936 + }, + { + "epoch": 26.90869375273045, + "grad_norm": 0.21259072422981262, + "learning_rate": 0.0006, + "loss": 3.862056255340576, + "step": 1937 + }, + { + "epoch": 26.92267365661861, + "grad_norm": 0.21354122459888458, + "learning_rate": 0.0006, + "loss": 3.80879545211792, + "step": 1938 + }, + { + "epoch": 26.936653560506773, + "grad_norm": 0.2350253462791443, + "learning_rate": 0.0006, + "loss": 3.817826271057129, + "step": 1939 + }, + { + "epoch": 26.950633464394933, + "grad_norm": 0.23833836615085602, + "learning_rate": 0.0006, + "loss": 3.8220884799957275, + "step": 1940 + }, + { + "epoch": 26.964613368283093, + "grad_norm": 0.2368069440126419, + "learning_rate": 0.0006, + "loss": 3.843264579772949, + "step": 1941 + }, + { + "epoch": 26.978593272171253, + "grad_norm": 0.22663559019565582, + "learning_rate": 0.0006, + "loss": 3.81339430809021, + "step": 1942 + }, + { + "epoch": 26.992573176059416, + "grad_norm": 0.2151402235031128, + "learning_rate": 0.0006, + "loss": 3.8262834548950195, + "step": 1943 + }, + { + "epoch": 27.0, + "grad_norm": 0.24320295453071594, + "learning_rate": 0.0006, + "loss": 3.858567237854004, + "step": 1944 + }, + { + "epoch": 27.0, + "eval_loss": 4.0613322257995605, + "eval_runtime": 44.766, + "eval_samples_per_second": 54.55, + "eval_steps_per_second": 3.418, + "step": 1944 + }, + { + "epoch": 27.01397990388816, + "grad_norm": 0.21188032627105713, + "learning_rate": 0.0006, + "loss": 3.7631278038024902, + "step": 1945 + }, + { + "epoch": 27.027959807776323, + "grad_norm": 0.22298137843608856, + "learning_rate": 0.0006, + "loss": 3.784029245376587, + "step": 1946 + }, + { + "epoch": 27.041939711664483, + "grad_norm": 0.26530158519744873, + "learning_rate": 0.0006, + "loss": 3.795860767364502, + "step": 1947 + }, + { + "epoch": 27.055919615552643, + "grad_norm": 0.24476729333400726, + "learning_rate": 0.0006, + "loss": 3.77512264251709, + "step": 1948 + }, + { + "epoch": 27.069899519440803, + "grad_norm": 0.1934421956539154, + "learning_rate": 0.0006, + "loss": 3.7797446250915527, + "step": 1949 + }, + { + "epoch": 27.083879423328966, + "grad_norm": 0.19777092337608337, + "learning_rate": 0.0006, + "loss": 3.798935890197754, + "step": 1950 + }, + { + "epoch": 27.097859327217126, + "grad_norm": 0.2071693390607834, + "learning_rate": 0.0006, + "loss": 3.763094425201416, + "step": 1951 + }, + { + "epoch": 27.111839231105286, + "grad_norm": 0.18394742906093597, + "learning_rate": 0.0006, + "loss": 3.7892322540283203, + "step": 1952 + }, + { + "epoch": 27.125819134993446, + "grad_norm": 0.17878273129463196, + "learning_rate": 0.0006, + "loss": 3.787968158721924, + "step": 1953 + }, + { + "epoch": 27.13979903888161, + "grad_norm": 0.18792171776294708, + "learning_rate": 0.0006, + "loss": 3.7719640731811523, + "step": 1954 + }, + { + "epoch": 27.15377894276977, + "grad_norm": 0.18718759715557098, + "learning_rate": 0.0006, + "loss": 3.791835308074951, + "step": 1955 + }, + { + "epoch": 27.16775884665793, + "grad_norm": 0.18716055154800415, + "learning_rate": 0.0006, + "loss": 3.7490220069885254, + "step": 1956 + }, + { + "epoch": 27.18173875054609, + "grad_norm": 0.18429182469844818, + "learning_rate": 0.0006, + "loss": 3.8020081520080566, + "step": 1957 + }, + { + "epoch": 27.195718654434252, + "grad_norm": 0.18571704626083374, + "learning_rate": 0.0006, + "loss": 3.8152215480804443, + "step": 1958 + }, + { + "epoch": 27.209698558322412, + "grad_norm": 0.1788843423128128, + "learning_rate": 0.0006, + "loss": 3.8173317909240723, + "step": 1959 + }, + { + "epoch": 27.22367846221057, + "grad_norm": 0.20459426939487457, + "learning_rate": 0.0006, + "loss": 3.7760040760040283, + "step": 1960 + }, + { + "epoch": 27.23765836609873, + "grad_norm": 0.22360935807228088, + "learning_rate": 0.0006, + "loss": 3.8140203952789307, + "step": 1961 + }, + { + "epoch": 27.251638269986895, + "grad_norm": 0.2062767595052719, + "learning_rate": 0.0006, + "loss": 3.792001247406006, + "step": 1962 + }, + { + "epoch": 27.265618173875055, + "grad_norm": 0.20628073811531067, + "learning_rate": 0.0006, + "loss": 3.7873167991638184, + "step": 1963 + }, + { + "epoch": 27.279598077763215, + "grad_norm": 0.19888348877429962, + "learning_rate": 0.0006, + "loss": 3.7903614044189453, + "step": 1964 + }, + { + "epoch": 27.293577981651374, + "grad_norm": 0.22033332288265228, + "learning_rate": 0.0006, + "loss": 3.802497148513794, + "step": 1965 + }, + { + "epoch": 27.307557885539538, + "grad_norm": 0.23476941883563995, + "learning_rate": 0.0006, + "loss": 3.794090986251831, + "step": 1966 + }, + { + "epoch": 27.321537789427698, + "grad_norm": 0.19639968872070312, + "learning_rate": 0.0006, + "loss": 3.831794023513794, + "step": 1967 + }, + { + "epoch": 27.335517693315857, + "grad_norm": 0.18169641494750977, + "learning_rate": 0.0006, + "loss": 3.7687768936157227, + "step": 1968 + }, + { + "epoch": 27.34949759720402, + "grad_norm": 0.17781762778759003, + "learning_rate": 0.0006, + "loss": 3.7868471145629883, + "step": 1969 + }, + { + "epoch": 27.36347750109218, + "grad_norm": 0.18990416824817657, + "learning_rate": 0.0006, + "loss": 3.8340392112731934, + "step": 1970 + }, + { + "epoch": 27.37745740498034, + "grad_norm": 0.2031438797712326, + "learning_rate": 0.0006, + "loss": 3.804513454437256, + "step": 1971 + }, + { + "epoch": 27.3914373088685, + "grad_norm": 0.21233421564102173, + "learning_rate": 0.0006, + "loss": 3.7908449172973633, + "step": 1972 + }, + { + "epoch": 27.405417212756664, + "grad_norm": 0.22480927407741547, + "learning_rate": 0.0006, + "loss": 3.7894086837768555, + "step": 1973 + }, + { + "epoch": 27.419397116644824, + "grad_norm": 0.22713422775268555, + "learning_rate": 0.0006, + "loss": 3.826005458831787, + "step": 1974 + }, + { + "epoch": 27.433377020532983, + "grad_norm": 0.21637366712093353, + "learning_rate": 0.0006, + "loss": 3.8232319355010986, + "step": 1975 + }, + { + "epoch": 27.447356924421143, + "grad_norm": 0.24092449247837067, + "learning_rate": 0.0006, + "loss": 3.813279628753662, + "step": 1976 + }, + { + "epoch": 27.461336828309307, + "grad_norm": 0.21143047511577606, + "learning_rate": 0.0006, + "loss": 3.811586856842041, + "step": 1977 + }, + { + "epoch": 27.475316732197467, + "grad_norm": 0.21049432456493378, + "learning_rate": 0.0006, + "loss": 3.8227009773254395, + "step": 1978 + }, + { + "epoch": 27.489296636085626, + "grad_norm": 0.21853850781917572, + "learning_rate": 0.0006, + "loss": 3.7992515563964844, + "step": 1979 + }, + { + "epoch": 27.503276539973786, + "grad_norm": 0.22405001521110535, + "learning_rate": 0.0006, + "loss": 3.8311715126037598, + "step": 1980 + }, + { + "epoch": 27.51725644386195, + "grad_norm": 0.24085809290409088, + "learning_rate": 0.0006, + "loss": 3.801962375640869, + "step": 1981 + }, + { + "epoch": 27.53123634775011, + "grad_norm": 0.2612341642379761, + "learning_rate": 0.0006, + "loss": 3.7867887020111084, + "step": 1982 + }, + { + "epoch": 27.54521625163827, + "grad_norm": 0.25136062502861023, + "learning_rate": 0.0006, + "loss": 3.8302273750305176, + "step": 1983 + }, + { + "epoch": 27.55919615552643, + "grad_norm": 0.2485426515340805, + "learning_rate": 0.0006, + "loss": 3.770616054534912, + "step": 1984 + }, + { + "epoch": 27.573176059414592, + "grad_norm": 0.28883907198905945, + "learning_rate": 0.0006, + "loss": 3.8152146339416504, + "step": 1985 + }, + { + "epoch": 27.587155963302752, + "grad_norm": 0.28177911043167114, + "learning_rate": 0.0006, + "loss": 3.7966861724853516, + "step": 1986 + }, + { + "epoch": 27.601135867190912, + "grad_norm": 0.2573191523551941, + "learning_rate": 0.0006, + "loss": 3.820788621902466, + "step": 1987 + }, + { + "epoch": 27.615115771079076, + "grad_norm": 0.22225657105445862, + "learning_rate": 0.0006, + "loss": 3.778477191925049, + "step": 1988 + }, + { + "epoch": 27.629095674967235, + "grad_norm": 0.20118530094623566, + "learning_rate": 0.0006, + "loss": 3.8416988849639893, + "step": 1989 + }, + { + "epoch": 27.643075578855395, + "grad_norm": 0.21168658137321472, + "learning_rate": 0.0006, + "loss": 3.798020839691162, + "step": 1990 + }, + { + "epoch": 27.657055482743555, + "grad_norm": 0.2460680454969406, + "learning_rate": 0.0006, + "loss": 3.805917263031006, + "step": 1991 + }, + { + "epoch": 27.67103538663172, + "grad_norm": 0.2700909674167633, + "learning_rate": 0.0006, + "loss": 3.8042726516723633, + "step": 1992 + }, + { + "epoch": 27.68501529051988, + "grad_norm": 0.25814294815063477, + "learning_rate": 0.0006, + "loss": 3.799159049987793, + "step": 1993 + }, + { + "epoch": 27.698995194408038, + "grad_norm": 0.2231985628604889, + "learning_rate": 0.0006, + "loss": 3.778750419616699, + "step": 1994 + }, + { + "epoch": 27.712975098296198, + "grad_norm": 0.20807890594005585, + "learning_rate": 0.0006, + "loss": 3.787919044494629, + "step": 1995 + }, + { + "epoch": 27.72695500218436, + "grad_norm": 0.19537150859832764, + "learning_rate": 0.0006, + "loss": 3.7917299270629883, + "step": 1996 + }, + { + "epoch": 27.74093490607252, + "grad_norm": 0.21057647466659546, + "learning_rate": 0.0006, + "loss": 3.8096866607666016, + "step": 1997 + }, + { + "epoch": 27.75491480996068, + "grad_norm": 0.18983247876167297, + "learning_rate": 0.0006, + "loss": 3.7881717681884766, + "step": 1998 + }, + { + "epoch": 27.76889471384884, + "grad_norm": 0.18701069056987762, + "learning_rate": 0.0006, + "loss": 3.810790538787842, + "step": 1999 + }, + { + "epoch": 27.782874617737004, + "grad_norm": 0.1920134723186493, + "learning_rate": 0.0006, + "loss": 3.8161087036132812, + "step": 2000 + }, + { + "epoch": 27.796854521625164, + "grad_norm": 0.20413947105407715, + "learning_rate": 0.0006, + "loss": 3.790499687194824, + "step": 2001 + }, + { + "epoch": 27.810834425513324, + "grad_norm": 0.1920027732849121, + "learning_rate": 0.0006, + "loss": 3.8194262981414795, + "step": 2002 + }, + { + "epoch": 27.824814329401484, + "grad_norm": 0.18630221486091614, + "learning_rate": 0.0006, + "loss": 3.8267152309417725, + "step": 2003 + }, + { + "epoch": 27.838794233289647, + "grad_norm": 0.1787925660610199, + "learning_rate": 0.0006, + "loss": 3.8147521018981934, + "step": 2004 + }, + { + "epoch": 27.852774137177807, + "grad_norm": 0.19187216460704803, + "learning_rate": 0.0006, + "loss": 3.7751095294952393, + "step": 2005 + }, + { + "epoch": 27.866754041065967, + "grad_norm": 0.18825744092464447, + "learning_rate": 0.0006, + "loss": 3.807401657104492, + "step": 2006 + }, + { + "epoch": 27.88073394495413, + "grad_norm": 0.1879836469888687, + "learning_rate": 0.0006, + "loss": 3.8302509784698486, + "step": 2007 + }, + { + "epoch": 27.89471384884229, + "grad_norm": 0.19136391580104828, + "learning_rate": 0.0006, + "loss": 3.7886242866516113, + "step": 2008 + }, + { + "epoch": 27.90869375273045, + "grad_norm": 0.18774119019508362, + "learning_rate": 0.0006, + "loss": 3.8202977180480957, + "step": 2009 + }, + { + "epoch": 27.92267365661861, + "grad_norm": 0.17794452607631683, + "learning_rate": 0.0006, + "loss": 3.813382387161255, + "step": 2010 + }, + { + "epoch": 27.936653560506773, + "grad_norm": 0.1876268833875656, + "learning_rate": 0.0006, + "loss": 3.810610294342041, + "step": 2011 + }, + { + "epoch": 27.950633464394933, + "grad_norm": 0.19262051582336426, + "learning_rate": 0.0006, + "loss": 3.8113245964050293, + "step": 2012 + }, + { + "epoch": 27.964613368283093, + "grad_norm": 0.19371771812438965, + "learning_rate": 0.0006, + "loss": 3.804790496826172, + "step": 2013 + }, + { + "epoch": 27.978593272171253, + "grad_norm": 0.1922861784696579, + "learning_rate": 0.0006, + "loss": 3.8278889656066895, + "step": 2014 + }, + { + "epoch": 27.992573176059416, + "grad_norm": 0.19748565554618835, + "learning_rate": 0.0006, + "loss": 3.8127200603485107, + "step": 2015 + }, + { + "epoch": 28.0, + "grad_norm": 0.25027501583099365, + "learning_rate": 0.0006, + "loss": 3.7899413108825684, + "step": 2016 + }, + { + "epoch": 28.0, + "eval_loss": 4.047704219818115, + "eval_runtime": 44.293, + "eval_samples_per_second": 55.133, + "eval_steps_per_second": 3.454, + "step": 2016 + }, + { + "epoch": 28.01397990388816, + "grad_norm": 0.25172367691993713, + "learning_rate": 0.0006, + "loss": 3.75449538230896, + "step": 2017 + }, + { + "epoch": 28.027959807776323, + "grad_norm": 0.23494598269462585, + "learning_rate": 0.0006, + "loss": 3.7609024047851562, + "step": 2018 + }, + { + "epoch": 28.041939711664483, + "grad_norm": 0.22459708154201508, + "learning_rate": 0.0006, + "loss": 3.7843551635742188, + "step": 2019 + }, + { + "epoch": 28.055919615552643, + "grad_norm": 0.2038632035255432, + "learning_rate": 0.0006, + "loss": 3.7818198204040527, + "step": 2020 + }, + { + "epoch": 28.069899519440803, + "grad_norm": 0.22050008177757263, + "learning_rate": 0.0006, + "loss": 3.787442684173584, + "step": 2021 + }, + { + "epoch": 28.083879423328966, + "grad_norm": 0.24645832180976868, + "learning_rate": 0.0006, + "loss": 3.768704414367676, + "step": 2022 + }, + { + "epoch": 28.097859327217126, + "grad_norm": 0.2440163493156433, + "learning_rate": 0.0006, + "loss": 3.7783756256103516, + "step": 2023 + }, + { + "epoch": 28.111839231105286, + "grad_norm": 0.2482181042432785, + "learning_rate": 0.0006, + "loss": 3.786881923675537, + "step": 2024 + }, + { + "epoch": 28.125819134993446, + "grad_norm": 0.23494760692119598, + "learning_rate": 0.0006, + "loss": 3.790039300918579, + "step": 2025 + }, + { + "epoch": 28.13979903888161, + "grad_norm": 0.2172182947397232, + "learning_rate": 0.0006, + "loss": 3.818756580352783, + "step": 2026 + }, + { + "epoch": 28.15377894276977, + "grad_norm": 0.2103179395198822, + "learning_rate": 0.0006, + "loss": 3.7768917083740234, + "step": 2027 + }, + { + "epoch": 28.16775884665793, + "grad_norm": 0.22322365641593933, + "learning_rate": 0.0006, + "loss": 3.8223648071289062, + "step": 2028 + }, + { + "epoch": 28.18173875054609, + "grad_norm": 0.24199382960796356, + "learning_rate": 0.0006, + "loss": 3.781357765197754, + "step": 2029 + }, + { + "epoch": 28.195718654434252, + "grad_norm": 0.2500663101673126, + "learning_rate": 0.0006, + "loss": 3.8061184883117676, + "step": 2030 + }, + { + "epoch": 28.209698558322412, + "grad_norm": 0.2439824491739273, + "learning_rate": 0.0006, + "loss": 3.7886464595794678, + "step": 2031 + }, + { + "epoch": 28.22367846221057, + "grad_norm": 0.24563106894493103, + "learning_rate": 0.0006, + "loss": 3.7901692390441895, + "step": 2032 + }, + { + "epoch": 28.23765836609873, + "grad_norm": 0.2287624627351761, + "learning_rate": 0.0006, + "loss": 3.789931058883667, + "step": 2033 + }, + { + "epoch": 28.251638269986895, + "grad_norm": 0.2231188714504242, + "learning_rate": 0.0006, + "loss": 3.7879133224487305, + "step": 2034 + }, + { + "epoch": 28.265618173875055, + "grad_norm": 0.23090387880802155, + "learning_rate": 0.0006, + "loss": 3.7826130390167236, + "step": 2035 + }, + { + "epoch": 28.279598077763215, + "grad_norm": 0.216018944978714, + "learning_rate": 0.0006, + "loss": 3.7764949798583984, + "step": 2036 + }, + { + "epoch": 28.293577981651374, + "grad_norm": 0.22649185359477997, + "learning_rate": 0.0006, + "loss": 3.7911291122436523, + "step": 2037 + }, + { + "epoch": 28.307557885539538, + "grad_norm": 0.2350836843252182, + "learning_rate": 0.0006, + "loss": 3.7668724060058594, + "step": 2038 + }, + { + "epoch": 28.321537789427698, + "grad_norm": 0.23206329345703125, + "learning_rate": 0.0006, + "loss": 3.782243251800537, + "step": 2039 + }, + { + "epoch": 28.335517693315857, + "grad_norm": 0.21896308660507202, + "learning_rate": 0.0006, + "loss": 3.7605721950531006, + "step": 2040 + }, + { + "epoch": 28.34949759720402, + "grad_norm": 0.20381200313568115, + "learning_rate": 0.0006, + "loss": 3.743945598602295, + "step": 2041 + }, + { + "epoch": 28.36347750109218, + "grad_norm": 0.19196000695228577, + "learning_rate": 0.0006, + "loss": 3.808107852935791, + "step": 2042 + }, + { + "epoch": 28.37745740498034, + "grad_norm": 0.19517889618873596, + "learning_rate": 0.0006, + "loss": 3.7906723022460938, + "step": 2043 + }, + { + "epoch": 28.3914373088685, + "grad_norm": 0.20455795526504517, + "learning_rate": 0.0006, + "loss": 3.7421011924743652, + "step": 2044 + }, + { + "epoch": 28.405417212756664, + "grad_norm": 0.1867467314004898, + "learning_rate": 0.0006, + "loss": 3.775509834289551, + "step": 2045 + }, + { + "epoch": 28.419397116644824, + "grad_norm": 0.2029324471950531, + "learning_rate": 0.0006, + "loss": 3.771353244781494, + "step": 2046 + }, + { + "epoch": 28.433377020532983, + "grad_norm": 0.19967497885227203, + "learning_rate": 0.0006, + "loss": 3.7821149826049805, + "step": 2047 + }, + { + "epoch": 28.447356924421143, + "grad_norm": 0.19440607726573944, + "learning_rate": 0.0006, + "loss": 3.8114213943481445, + "step": 2048 + }, + { + "epoch": 28.461336828309307, + "grad_norm": 0.19679802656173706, + "learning_rate": 0.0006, + "loss": 3.7699532508850098, + "step": 2049 + }, + { + "epoch": 28.475316732197467, + "grad_norm": 0.1939811110496521, + "learning_rate": 0.0006, + "loss": 3.7673027515411377, + "step": 2050 + }, + { + "epoch": 28.489296636085626, + "grad_norm": 0.18712401390075684, + "learning_rate": 0.0006, + "loss": 3.816699266433716, + "step": 2051 + }, + { + "epoch": 28.503276539973786, + "grad_norm": 0.202956885099411, + "learning_rate": 0.0006, + "loss": 3.7746071815490723, + "step": 2052 + }, + { + "epoch": 28.51725644386195, + "grad_norm": 0.19098156690597534, + "learning_rate": 0.0006, + "loss": 3.8065481185913086, + "step": 2053 + }, + { + "epoch": 28.53123634775011, + "grad_norm": 0.21144428849220276, + "learning_rate": 0.0006, + "loss": 3.7890982627868652, + "step": 2054 + }, + { + "epoch": 28.54521625163827, + "grad_norm": 0.21882614493370056, + "learning_rate": 0.0006, + "loss": 3.8168821334838867, + "step": 2055 + }, + { + "epoch": 28.55919615552643, + "grad_norm": 0.22200101613998413, + "learning_rate": 0.0006, + "loss": 3.804454803466797, + "step": 2056 + }, + { + "epoch": 28.573176059414592, + "grad_norm": 0.22404780983924866, + "learning_rate": 0.0006, + "loss": 3.808764934539795, + "step": 2057 + }, + { + "epoch": 28.587155963302752, + "grad_norm": 0.22770099341869354, + "learning_rate": 0.0006, + "loss": 3.74835467338562, + "step": 2058 + }, + { + "epoch": 28.601135867190912, + "grad_norm": 0.23214420676231384, + "learning_rate": 0.0006, + "loss": 3.7480111122131348, + "step": 2059 + }, + { + "epoch": 28.615115771079076, + "grad_norm": 0.21786348521709442, + "learning_rate": 0.0006, + "loss": 3.8095176219940186, + "step": 2060 + }, + { + "epoch": 28.629095674967235, + "grad_norm": 0.21004106104373932, + "learning_rate": 0.0006, + "loss": 3.792745590209961, + "step": 2061 + }, + { + "epoch": 28.643075578855395, + "grad_norm": 0.21076138317584991, + "learning_rate": 0.0006, + "loss": 3.7878952026367188, + "step": 2062 + }, + { + "epoch": 28.657055482743555, + "grad_norm": 0.2184346616268158, + "learning_rate": 0.0006, + "loss": 3.757188320159912, + "step": 2063 + }, + { + "epoch": 28.67103538663172, + "grad_norm": 0.22100569307804108, + "learning_rate": 0.0006, + "loss": 3.8131773471832275, + "step": 2064 + }, + { + "epoch": 28.68501529051988, + "grad_norm": 0.23257511854171753, + "learning_rate": 0.0006, + "loss": 3.793826103210449, + "step": 2065 + }, + { + "epoch": 28.698995194408038, + "grad_norm": 0.22312869131565094, + "learning_rate": 0.0006, + "loss": 3.782083749771118, + "step": 2066 + }, + { + "epoch": 28.712975098296198, + "grad_norm": 0.2318405956029892, + "learning_rate": 0.0006, + "loss": 3.7814879417419434, + "step": 2067 + }, + { + "epoch": 28.72695500218436, + "grad_norm": 0.23719379305839539, + "learning_rate": 0.0006, + "loss": 3.8320484161376953, + "step": 2068 + }, + { + "epoch": 28.74093490607252, + "grad_norm": 0.23100806772708893, + "learning_rate": 0.0006, + "loss": 3.7921783924102783, + "step": 2069 + }, + { + "epoch": 28.75491480996068, + "grad_norm": 0.21540866792201996, + "learning_rate": 0.0006, + "loss": 3.8325204849243164, + "step": 2070 + }, + { + "epoch": 28.76889471384884, + "grad_norm": 0.2698654532432556, + "learning_rate": 0.0006, + "loss": 3.7965879440307617, + "step": 2071 + }, + { + "epoch": 28.782874617737004, + "grad_norm": 0.3101225793361664, + "learning_rate": 0.0006, + "loss": 3.78842830657959, + "step": 2072 + }, + { + "epoch": 28.796854521625164, + "grad_norm": 0.2607600688934326, + "learning_rate": 0.0006, + "loss": 3.770064115524292, + "step": 2073 + }, + { + "epoch": 28.810834425513324, + "grad_norm": 0.20558302104473114, + "learning_rate": 0.0006, + "loss": 3.7448501586914062, + "step": 2074 + }, + { + "epoch": 28.824814329401484, + "grad_norm": 0.20030120015144348, + "learning_rate": 0.0006, + "loss": 3.7689406871795654, + "step": 2075 + }, + { + "epoch": 28.838794233289647, + "grad_norm": 0.21781118214130402, + "learning_rate": 0.0006, + "loss": 3.7682244777679443, + "step": 2076 + }, + { + "epoch": 28.852774137177807, + "grad_norm": 0.23543044924736023, + "learning_rate": 0.0006, + "loss": 3.8094193935394287, + "step": 2077 + }, + { + "epoch": 28.866754041065967, + "grad_norm": 0.21634669601917267, + "learning_rate": 0.0006, + "loss": 3.792099952697754, + "step": 2078 + }, + { + "epoch": 28.88073394495413, + "grad_norm": 0.2251661866903305, + "learning_rate": 0.0006, + "loss": 3.7849509716033936, + "step": 2079 + }, + { + "epoch": 28.89471384884229, + "grad_norm": 0.23872914910316467, + "learning_rate": 0.0006, + "loss": 3.8391621112823486, + "step": 2080 + }, + { + "epoch": 28.90869375273045, + "grad_norm": 0.22259248793125153, + "learning_rate": 0.0006, + "loss": 3.8272876739501953, + "step": 2081 + }, + { + "epoch": 28.92267365661861, + "grad_norm": 0.22052262723445892, + "learning_rate": 0.0006, + "loss": 3.7986836433410645, + "step": 2082 + }, + { + "epoch": 28.936653560506773, + "grad_norm": 0.24487647414207458, + "learning_rate": 0.0006, + "loss": 3.798004150390625, + "step": 2083 + }, + { + "epoch": 28.950633464394933, + "grad_norm": 0.22992238402366638, + "learning_rate": 0.0006, + "loss": 3.788522720336914, + "step": 2084 + }, + { + "epoch": 28.964613368283093, + "grad_norm": 0.22521597146987915, + "learning_rate": 0.0006, + "loss": 3.767259120941162, + "step": 2085 + }, + { + "epoch": 28.978593272171253, + "grad_norm": 0.2201499044895172, + "learning_rate": 0.0006, + "loss": 3.7850542068481445, + "step": 2086 + }, + { + "epoch": 28.992573176059416, + "grad_norm": 0.22226814925670624, + "learning_rate": 0.0006, + "loss": 3.8013534545898438, + "step": 2087 + }, + { + "epoch": 29.0, + "grad_norm": 0.27624809741973877, + "learning_rate": 0.0006, + "loss": 3.762004852294922, + "step": 2088 + }, + { + "epoch": 29.0, + "eval_loss": 4.034304618835449, + "eval_runtime": 44.6573, + "eval_samples_per_second": 54.683, + "eval_steps_per_second": 3.426, + "step": 2088 + }, + { + "epoch": 29.01397990388816, + "grad_norm": 0.2550967037677765, + "learning_rate": 0.0006, + "loss": 3.7724227905273438, + "step": 2089 + }, + { + "epoch": 29.027959807776323, + "grad_norm": 0.26730602979660034, + "learning_rate": 0.0006, + "loss": 3.7728946208953857, + "step": 2090 + }, + { + "epoch": 29.041939711664483, + "grad_norm": 0.2394205927848816, + "learning_rate": 0.0006, + "loss": 3.7737584114074707, + "step": 2091 + }, + { + "epoch": 29.055919615552643, + "grad_norm": 0.22488200664520264, + "learning_rate": 0.0006, + "loss": 3.761014938354492, + "step": 2092 + }, + { + "epoch": 29.069899519440803, + "grad_norm": 0.2389903962612152, + "learning_rate": 0.0006, + "loss": 3.766557216644287, + "step": 2093 + }, + { + "epoch": 29.083879423328966, + "grad_norm": 0.234152153134346, + "learning_rate": 0.0006, + "loss": 3.7447147369384766, + "step": 2094 + }, + { + "epoch": 29.097859327217126, + "grad_norm": 0.23123252391815186, + "learning_rate": 0.0006, + "loss": 3.77197527885437, + "step": 2095 + }, + { + "epoch": 29.111839231105286, + "grad_norm": 0.23263143002986908, + "learning_rate": 0.0006, + "loss": 3.7390198707580566, + "step": 2096 + }, + { + "epoch": 29.125819134993446, + "grad_norm": 0.23235775530338287, + "learning_rate": 0.0006, + "loss": 3.7675256729125977, + "step": 2097 + }, + { + "epoch": 29.13979903888161, + "grad_norm": 0.2208816260099411, + "learning_rate": 0.0006, + "loss": 3.7588067054748535, + "step": 2098 + }, + { + "epoch": 29.15377894276977, + "grad_norm": 0.21216371655464172, + "learning_rate": 0.0006, + "loss": 3.7370502948760986, + "step": 2099 + }, + { + "epoch": 29.16775884665793, + "grad_norm": 0.2210543155670166, + "learning_rate": 0.0006, + "loss": 3.767308473587036, + "step": 2100 + }, + { + "epoch": 29.18173875054609, + "grad_norm": 0.21628431975841522, + "learning_rate": 0.0006, + "loss": 3.7298972606658936, + "step": 2101 + }, + { + "epoch": 29.195718654434252, + "grad_norm": 0.21493588387966156, + "learning_rate": 0.0006, + "loss": 3.7806448936462402, + "step": 2102 + }, + { + "epoch": 29.209698558322412, + "grad_norm": 0.25978055596351624, + "learning_rate": 0.0006, + "loss": 3.7716293334960938, + "step": 2103 + }, + { + "epoch": 29.22367846221057, + "grad_norm": 0.2744791507720947, + "learning_rate": 0.0006, + "loss": 3.76897931098938, + "step": 2104 + }, + { + "epoch": 29.23765836609873, + "grad_norm": 0.22959400713443756, + "learning_rate": 0.0006, + "loss": 3.7545714378356934, + "step": 2105 + }, + { + "epoch": 29.251638269986895, + "grad_norm": 0.20369231700897217, + "learning_rate": 0.0006, + "loss": 3.7944722175598145, + "step": 2106 + }, + { + "epoch": 29.265618173875055, + "grad_norm": 0.21663758158683777, + "learning_rate": 0.0006, + "loss": 3.7564756870269775, + "step": 2107 + }, + { + "epoch": 29.279598077763215, + "grad_norm": 0.21862861514091492, + "learning_rate": 0.0006, + "loss": 3.7722725868225098, + "step": 2108 + }, + { + "epoch": 29.293577981651374, + "grad_norm": 0.2044878453016281, + "learning_rate": 0.0006, + "loss": 3.7471303939819336, + "step": 2109 + }, + { + "epoch": 29.307557885539538, + "grad_norm": 0.23015929758548737, + "learning_rate": 0.0006, + "loss": 3.7584962844848633, + "step": 2110 + }, + { + "epoch": 29.321537789427698, + "grad_norm": 0.22548329830169678, + "learning_rate": 0.0006, + "loss": 3.795933723449707, + "step": 2111 + }, + { + "epoch": 29.335517693315857, + "grad_norm": 0.2000468522310257, + "learning_rate": 0.0006, + "loss": 3.766310691833496, + "step": 2112 + }, + { + "epoch": 29.34949759720402, + "grad_norm": 0.19711551070213318, + "learning_rate": 0.0006, + "loss": 3.7296276092529297, + "step": 2113 + }, + { + "epoch": 29.36347750109218, + "grad_norm": 0.18838997185230255, + "learning_rate": 0.0006, + "loss": 3.7685282230377197, + "step": 2114 + }, + { + "epoch": 29.37745740498034, + "grad_norm": 0.1897876113653183, + "learning_rate": 0.0006, + "loss": 3.7280936241149902, + "step": 2115 + }, + { + "epoch": 29.3914373088685, + "grad_norm": 0.21697933971881866, + "learning_rate": 0.0006, + "loss": 3.7991929054260254, + "step": 2116 + }, + { + "epoch": 29.405417212756664, + "grad_norm": 0.23445849120616913, + "learning_rate": 0.0006, + "loss": 3.7857418060302734, + "step": 2117 + }, + { + "epoch": 29.419397116644824, + "grad_norm": 0.24155527353286743, + "learning_rate": 0.0006, + "loss": 3.7897872924804688, + "step": 2118 + }, + { + "epoch": 29.433377020532983, + "grad_norm": 0.2610265016555786, + "learning_rate": 0.0006, + "loss": 3.7867324352264404, + "step": 2119 + }, + { + "epoch": 29.447356924421143, + "grad_norm": 0.2809581160545349, + "learning_rate": 0.0006, + "loss": 3.783799648284912, + "step": 2120 + }, + { + "epoch": 29.461336828309307, + "grad_norm": 0.2621572017669678, + "learning_rate": 0.0006, + "loss": 3.7778549194335938, + "step": 2121 + }, + { + "epoch": 29.475316732197467, + "grad_norm": 0.26002970337867737, + "learning_rate": 0.0006, + "loss": 3.787945508956909, + "step": 2122 + }, + { + "epoch": 29.489296636085626, + "grad_norm": 0.24866686761379242, + "learning_rate": 0.0006, + "loss": 3.7406349182128906, + "step": 2123 + }, + { + "epoch": 29.503276539973786, + "grad_norm": 0.25588324666023254, + "learning_rate": 0.0006, + "loss": 3.785625457763672, + "step": 2124 + }, + { + "epoch": 29.51725644386195, + "grad_norm": 0.24724243581295013, + "learning_rate": 0.0006, + "loss": 3.7581701278686523, + "step": 2125 + }, + { + "epoch": 29.53123634775011, + "grad_norm": 0.23544734716415405, + "learning_rate": 0.0006, + "loss": 3.8163957595825195, + "step": 2126 + }, + { + "epoch": 29.54521625163827, + "grad_norm": 0.2108801156282425, + "learning_rate": 0.0006, + "loss": 3.7881739139556885, + "step": 2127 + }, + { + "epoch": 29.55919615552643, + "grad_norm": 0.20459668338298798, + "learning_rate": 0.0006, + "loss": 3.7641284465789795, + "step": 2128 + }, + { + "epoch": 29.573176059414592, + "grad_norm": 0.24020728468894958, + "learning_rate": 0.0006, + "loss": 3.7748730182647705, + "step": 2129 + }, + { + "epoch": 29.587155963302752, + "grad_norm": 0.256273478269577, + "learning_rate": 0.0006, + "loss": 3.8076486587524414, + "step": 2130 + }, + { + "epoch": 29.601135867190912, + "grad_norm": 0.23295973241329193, + "learning_rate": 0.0006, + "loss": 3.7687063217163086, + "step": 2131 + }, + { + "epoch": 29.615115771079076, + "grad_norm": 0.21554847061634064, + "learning_rate": 0.0006, + "loss": 3.781867027282715, + "step": 2132 + }, + { + "epoch": 29.629095674967235, + "grad_norm": 0.20645774900913239, + "learning_rate": 0.0006, + "loss": 3.7813425064086914, + "step": 2133 + }, + { + "epoch": 29.643075578855395, + "grad_norm": 0.2018265724182129, + "learning_rate": 0.0006, + "loss": 3.772895574569702, + "step": 2134 + }, + { + "epoch": 29.657055482743555, + "grad_norm": 0.20170100033283234, + "learning_rate": 0.0006, + "loss": 3.7819175720214844, + "step": 2135 + }, + { + "epoch": 29.67103538663172, + "grad_norm": 0.22640688717365265, + "learning_rate": 0.0006, + "loss": 3.7999017238616943, + "step": 2136 + }, + { + "epoch": 29.68501529051988, + "grad_norm": 0.23747675120830536, + "learning_rate": 0.0006, + "loss": 3.804999828338623, + "step": 2137 + }, + { + "epoch": 29.698995194408038, + "grad_norm": 0.20005857944488525, + "learning_rate": 0.0006, + "loss": 3.7815160751342773, + "step": 2138 + }, + { + "epoch": 29.712975098296198, + "grad_norm": 0.17901667952537537, + "learning_rate": 0.0006, + "loss": 3.7898688316345215, + "step": 2139 + }, + { + "epoch": 29.72695500218436, + "grad_norm": 0.1890905797481537, + "learning_rate": 0.0006, + "loss": 3.8001184463500977, + "step": 2140 + }, + { + "epoch": 29.74093490607252, + "grad_norm": 0.19565847516059875, + "learning_rate": 0.0006, + "loss": 3.7522482872009277, + "step": 2141 + }, + { + "epoch": 29.75491480996068, + "grad_norm": 0.19429196417331696, + "learning_rate": 0.0006, + "loss": 3.768972158432007, + "step": 2142 + }, + { + "epoch": 29.76889471384884, + "grad_norm": 0.23846636712551117, + "learning_rate": 0.0006, + "loss": 3.765216112136841, + "step": 2143 + }, + { + "epoch": 29.782874617737004, + "grad_norm": 0.23820780217647552, + "learning_rate": 0.0006, + "loss": 3.8027703762054443, + "step": 2144 + }, + { + "epoch": 29.796854521625164, + "grad_norm": 0.21104726195335388, + "learning_rate": 0.0006, + "loss": 3.7682833671569824, + "step": 2145 + }, + { + "epoch": 29.810834425513324, + "grad_norm": 0.1911051720380783, + "learning_rate": 0.0006, + "loss": 3.781782627105713, + "step": 2146 + }, + { + "epoch": 29.824814329401484, + "grad_norm": 0.18881288170814514, + "learning_rate": 0.0006, + "loss": 3.7703428268432617, + "step": 2147 + }, + { + "epoch": 29.838794233289647, + "grad_norm": 0.18292994797229767, + "learning_rate": 0.0006, + "loss": 3.769176721572876, + "step": 2148 + }, + { + "epoch": 29.852774137177807, + "grad_norm": 0.1777714639902115, + "learning_rate": 0.0006, + "loss": 3.7488298416137695, + "step": 2149 + }, + { + "epoch": 29.866754041065967, + "grad_norm": 0.2037898749113083, + "learning_rate": 0.0006, + "loss": 3.804396390914917, + "step": 2150 + }, + { + "epoch": 29.88073394495413, + "grad_norm": 0.2121828943490982, + "learning_rate": 0.0006, + "loss": 3.75870943069458, + "step": 2151 + }, + { + "epoch": 29.89471384884229, + "grad_norm": 0.23231184482574463, + "learning_rate": 0.0006, + "loss": 3.80178165435791, + "step": 2152 + }, + { + "epoch": 29.90869375273045, + "grad_norm": 0.24045611917972565, + "learning_rate": 0.0006, + "loss": 3.7690834999084473, + "step": 2153 + }, + { + "epoch": 29.92267365661861, + "grad_norm": 0.19830496609210968, + "learning_rate": 0.0006, + "loss": 3.764401912689209, + "step": 2154 + }, + { + "epoch": 29.936653560506773, + "grad_norm": 0.17704227566719055, + "learning_rate": 0.0006, + "loss": 3.7634594440460205, + "step": 2155 + }, + { + "epoch": 29.950633464394933, + "grad_norm": 0.17783164978027344, + "learning_rate": 0.0006, + "loss": 3.7856998443603516, + "step": 2156 + }, + { + "epoch": 29.964613368283093, + "grad_norm": 0.19684971868991852, + "learning_rate": 0.0006, + "loss": 3.805774211883545, + "step": 2157 + }, + { + "epoch": 29.978593272171253, + "grad_norm": 0.21662312746047974, + "learning_rate": 0.0006, + "loss": 3.757896661758423, + "step": 2158 + }, + { + "epoch": 29.992573176059416, + "grad_norm": 0.22000661492347717, + "learning_rate": 0.0006, + "loss": 3.7747678756713867, + "step": 2159 + }, + { + "epoch": 30.0, + "grad_norm": 0.21501901745796204, + "learning_rate": 0.0006, + "loss": 3.785585880279541, + "step": 2160 + }, + { + "epoch": 30.0, + "eval_loss": 4.034003734588623, + "eval_runtime": 44.9097, + "eval_samples_per_second": 54.376, + "eval_steps_per_second": 3.407, + "step": 2160 + }, + { + "epoch": 30.01397990388816, + "grad_norm": 0.19710904359817505, + "learning_rate": 0.0006, + "loss": 3.756235122680664, + "step": 2161 + }, + { + "epoch": 30.027959807776323, + "grad_norm": 0.19829736649990082, + "learning_rate": 0.0006, + "loss": 3.734067916870117, + "step": 2162 + }, + { + "epoch": 30.041939711664483, + "grad_norm": 0.21622520685195923, + "learning_rate": 0.0006, + "loss": 3.7329437732696533, + "step": 2163 + }, + { + "epoch": 30.055919615552643, + "grad_norm": 0.22544652223587036, + "learning_rate": 0.0006, + "loss": 3.748716354370117, + "step": 2164 + }, + { + "epoch": 30.069899519440803, + "grad_norm": 0.21098364889621735, + "learning_rate": 0.0006, + "loss": 3.779047727584839, + "step": 2165 + }, + { + "epoch": 30.083879423328966, + "grad_norm": 0.21309930086135864, + "learning_rate": 0.0006, + "loss": 3.7690274715423584, + "step": 2166 + }, + { + "epoch": 30.097859327217126, + "grad_norm": 0.23025690019130707, + "learning_rate": 0.0006, + "loss": 3.7500953674316406, + "step": 2167 + }, + { + "epoch": 30.111839231105286, + "grad_norm": 0.25107935070991516, + "learning_rate": 0.0006, + "loss": 3.745492458343506, + "step": 2168 + }, + { + "epoch": 30.125819134993446, + "grad_norm": 0.29873573780059814, + "learning_rate": 0.0006, + "loss": 3.759793758392334, + "step": 2169 + }, + { + "epoch": 30.13979903888161, + "grad_norm": 0.2810286283493042, + "learning_rate": 0.0006, + "loss": 3.772998809814453, + "step": 2170 + }, + { + "epoch": 30.15377894276977, + "grad_norm": 0.2102176398038864, + "learning_rate": 0.0006, + "loss": 3.740170955657959, + "step": 2171 + }, + { + "epoch": 30.16775884665793, + "grad_norm": 0.24143251776695251, + "learning_rate": 0.0006, + "loss": 3.7317001819610596, + "step": 2172 + }, + { + "epoch": 30.18173875054609, + "grad_norm": 0.2643064558506012, + "learning_rate": 0.0006, + "loss": 3.773263692855835, + "step": 2173 + }, + { + "epoch": 30.195718654434252, + "grad_norm": 0.27571243047714233, + "learning_rate": 0.0006, + "loss": 3.7619900703430176, + "step": 2174 + }, + { + "epoch": 30.209698558322412, + "grad_norm": 0.25359588861465454, + "learning_rate": 0.0006, + "loss": 3.7608513832092285, + "step": 2175 + }, + { + "epoch": 30.22367846221057, + "grad_norm": 0.2500684857368469, + "learning_rate": 0.0006, + "loss": 3.75856614112854, + "step": 2176 + }, + { + "epoch": 30.23765836609873, + "grad_norm": 0.23100309073925018, + "learning_rate": 0.0006, + "loss": 3.749786853790283, + "step": 2177 + }, + { + "epoch": 30.251638269986895, + "grad_norm": 0.24384984374046326, + "learning_rate": 0.0006, + "loss": 3.762244701385498, + "step": 2178 + }, + { + "epoch": 30.265618173875055, + "grad_norm": 0.24593998491764069, + "learning_rate": 0.0006, + "loss": 3.754594326019287, + "step": 2179 + }, + { + "epoch": 30.279598077763215, + "grad_norm": 0.2529342770576477, + "learning_rate": 0.0006, + "loss": 3.7641053199768066, + "step": 2180 + }, + { + "epoch": 30.293577981651374, + "grad_norm": 0.25954094529151917, + "learning_rate": 0.0006, + "loss": 3.810336112976074, + "step": 2181 + }, + { + "epoch": 30.307557885539538, + "grad_norm": 0.2249951958656311, + "learning_rate": 0.0006, + "loss": 3.7542617321014404, + "step": 2182 + }, + { + "epoch": 30.321537789427698, + "grad_norm": 0.19795064628124237, + "learning_rate": 0.0006, + "loss": 3.7734434604644775, + "step": 2183 + }, + { + "epoch": 30.335517693315857, + "grad_norm": 0.20744608342647552, + "learning_rate": 0.0006, + "loss": 3.7816128730773926, + "step": 2184 + }, + { + "epoch": 30.34949759720402, + "grad_norm": 0.19988055527210236, + "learning_rate": 0.0006, + "loss": 3.7631936073303223, + "step": 2185 + }, + { + "epoch": 30.36347750109218, + "grad_norm": 0.22226445376873016, + "learning_rate": 0.0006, + "loss": 3.762910842895508, + "step": 2186 + }, + { + "epoch": 30.37745740498034, + "grad_norm": 0.21986067295074463, + "learning_rate": 0.0006, + "loss": 3.733893394470215, + "step": 2187 + }, + { + "epoch": 30.3914373088685, + "grad_norm": 0.2170228660106659, + "learning_rate": 0.0006, + "loss": 3.726433515548706, + "step": 2188 + }, + { + "epoch": 30.405417212756664, + "grad_norm": 0.2179550975561142, + "learning_rate": 0.0006, + "loss": 3.792311668395996, + "step": 2189 + }, + { + "epoch": 30.419397116644824, + "grad_norm": 0.208037331700325, + "learning_rate": 0.0006, + "loss": 3.774639129638672, + "step": 2190 + }, + { + "epoch": 30.433377020532983, + "grad_norm": 0.20745441317558289, + "learning_rate": 0.0006, + "loss": 3.776130199432373, + "step": 2191 + }, + { + "epoch": 30.447356924421143, + "grad_norm": 0.1988024264574051, + "learning_rate": 0.0006, + "loss": 3.7453784942626953, + "step": 2192 + }, + { + "epoch": 30.461336828309307, + "grad_norm": 0.194968581199646, + "learning_rate": 0.0006, + "loss": 3.764653205871582, + "step": 2193 + }, + { + "epoch": 30.475316732197467, + "grad_norm": 0.20658300817012787, + "learning_rate": 0.0006, + "loss": 3.796513080596924, + "step": 2194 + }, + { + "epoch": 30.489296636085626, + "grad_norm": 0.2123410701751709, + "learning_rate": 0.0006, + "loss": 3.7630836963653564, + "step": 2195 + }, + { + "epoch": 30.503276539973786, + "grad_norm": 0.20894059538841248, + "learning_rate": 0.0006, + "loss": 3.7265470027923584, + "step": 2196 + }, + { + "epoch": 30.51725644386195, + "grad_norm": 0.2016828954219818, + "learning_rate": 0.0006, + "loss": 3.8083386421203613, + "step": 2197 + }, + { + "epoch": 30.53123634775011, + "grad_norm": 0.19584205746650696, + "learning_rate": 0.0006, + "loss": 3.7492105960845947, + "step": 2198 + }, + { + "epoch": 30.54521625163827, + "grad_norm": 0.18635272979736328, + "learning_rate": 0.0006, + "loss": 3.711009979248047, + "step": 2199 + }, + { + "epoch": 30.55919615552643, + "grad_norm": 0.1920594871044159, + "learning_rate": 0.0006, + "loss": 3.760801315307617, + "step": 2200 + }, + { + "epoch": 30.573176059414592, + "grad_norm": 0.1978331208229065, + "learning_rate": 0.0006, + "loss": 3.780529022216797, + "step": 2201 + }, + { + "epoch": 30.587155963302752, + "grad_norm": 0.20076943933963776, + "learning_rate": 0.0006, + "loss": 3.7767038345336914, + "step": 2202 + }, + { + "epoch": 30.601135867190912, + "grad_norm": 0.2067444622516632, + "learning_rate": 0.0006, + "loss": 3.7607920169830322, + "step": 2203 + }, + { + "epoch": 30.615115771079076, + "grad_norm": 0.2081940472126007, + "learning_rate": 0.0006, + "loss": 3.741936206817627, + "step": 2204 + }, + { + "epoch": 30.629095674967235, + "grad_norm": 0.21212869882583618, + "learning_rate": 0.0006, + "loss": 3.7597827911376953, + "step": 2205 + }, + { + "epoch": 30.643075578855395, + "grad_norm": 0.21539026498794556, + "learning_rate": 0.0006, + "loss": 3.764646053314209, + "step": 2206 + }, + { + "epoch": 30.657055482743555, + "grad_norm": 0.19788387417793274, + "learning_rate": 0.0006, + "loss": 3.7535128593444824, + "step": 2207 + }, + { + "epoch": 30.67103538663172, + "grad_norm": 0.20757688581943512, + "learning_rate": 0.0006, + "loss": 3.7414169311523438, + "step": 2208 + }, + { + "epoch": 30.68501529051988, + "grad_norm": 0.199361652135849, + "learning_rate": 0.0006, + "loss": 3.7578506469726562, + "step": 2209 + }, + { + "epoch": 30.698995194408038, + "grad_norm": 0.1909894198179245, + "learning_rate": 0.0006, + "loss": 3.736250400543213, + "step": 2210 + }, + { + "epoch": 30.712975098296198, + "grad_norm": 0.19766664505004883, + "learning_rate": 0.0006, + "loss": 3.7435379028320312, + "step": 2211 + }, + { + "epoch": 30.72695500218436, + "grad_norm": 0.21857766807079315, + "learning_rate": 0.0006, + "loss": 3.7478690147399902, + "step": 2212 + }, + { + "epoch": 30.74093490607252, + "grad_norm": 0.22385898232460022, + "learning_rate": 0.0006, + "loss": 3.7522530555725098, + "step": 2213 + }, + { + "epoch": 30.75491480996068, + "grad_norm": 0.2329241931438446, + "learning_rate": 0.0006, + "loss": 3.7568247318267822, + "step": 2214 + }, + { + "epoch": 30.76889471384884, + "grad_norm": 0.2218400090932846, + "learning_rate": 0.0006, + "loss": 3.7662744522094727, + "step": 2215 + }, + { + "epoch": 30.782874617737004, + "grad_norm": 0.21350212395191193, + "learning_rate": 0.0006, + "loss": 3.7683777809143066, + "step": 2216 + }, + { + "epoch": 30.796854521625164, + "grad_norm": 0.22357074916362762, + "learning_rate": 0.0006, + "loss": 3.763437032699585, + "step": 2217 + }, + { + "epoch": 30.810834425513324, + "grad_norm": 0.22268560528755188, + "learning_rate": 0.0006, + "loss": 3.772836685180664, + "step": 2218 + }, + { + "epoch": 30.824814329401484, + "grad_norm": 0.2434026449918747, + "learning_rate": 0.0006, + "loss": 3.752986431121826, + "step": 2219 + }, + { + "epoch": 30.838794233289647, + "grad_norm": 0.2298414409160614, + "learning_rate": 0.0006, + "loss": 3.7837061882019043, + "step": 2220 + }, + { + "epoch": 30.852774137177807, + "grad_norm": 0.227672278881073, + "learning_rate": 0.0006, + "loss": 3.746065378189087, + "step": 2221 + }, + { + "epoch": 30.866754041065967, + "grad_norm": 0.2562827169895172, + "learning_rate": 0.0006, + "loss": 3.7741947174072266, + "step": 2222 + }, + { + "epoch": 30.88073394495413, + "grad_norm": 0.23657815158367157, + "learning_rate": 0.0006, + "loss": 3.746457099914551, + "step": 2223 + }, + { + "epoch": 30.89471384884229, + "grad_norm": 0.2158907800912857, + "learning_rate": 0.0006, + "loss": 3.7821710109710693, + "step": 2224 + }, + { + "epoch": 30.90869375273045, + "grad_norm": 0.22501254081726074, + "learning_rate": 0.0006, + "loss": 3.7528274059295654, + "step": 2225 + }, + { + "epoch": 30.92267365661861, + "grad_norm": 0.20252224802970886, + "learning_rate": 0.0006, + "loss": 3.749418258666992, + "step": 2226 + }, + { + "epoch": 30.936653560506773, + "grad_norm": 0.2067883312702179, + "learning_rate": 0.0006, + "loss": 3.7560606002807617, + "step": 2227 + }, + { + "epoch": 30.950633464394933, + "grad_norm": 0.23104053735733032, + "learning_rate": 0.0006, + "loss": 3.7883846759796143, + "step": 2228 + }, + { + "epoch": 30.964613368283093, + "grad_norm": 0.21476604044437408, + "learning_rate": 0.0006, + "loss": 3.7976977825164795, + "step": 2229 + }, + { + "epoch": 30.978593272171253, + "grad_norm": 0.2130427062511444, + "learning_rate": 0.0006, + "loss": 3.7429304122924805, + "step": 2230 + }, + { + "epoch": 30.992573176059416, + "grad_norm": 0.2047216147184372, + "learning_rate": 0.0006, + "loss": 3.7669787406921387, + "step": 2231 + }, + { + "epoch": 31.0, + "grad_norm": 0.22254081070423126, + "learning_rate": 0.0006, + "loss": 3.7794251441955566, + "step": 2232 + }, + { + "epoch": 31.0, + "eval_loss": 4.039162635803223, + "eval_runtime": 44.9069, + "eval_samples_per_second": 54.379, + "eval_steps_per_second": 3.407, + "step": 2232 + }, + { + "epoch": 31.01397990388816, + "grad_norm": 0.2278132289648056, + "learning_rate": 0.0006, + "loss": 3.7363929748535156, + "step": 2233 + }, + { + "epoch": 31.027959807776323, + "grad_norm": 0.2377072274684906, + "learning_rate": 0.0006, + "loss": 3.72847318649292, + "step": 2234 + }, + { + "epoch": 31.041939711664483, + "grad_norm": 0.23790542781352997, + "learning_rate": 0.0006, + "loss": 3.767193078994751, + "step": 2235 + }, + { + "epoch": 31.055919615552643, + "grad_norm": 0.2587272524833679, + "learning_rate": 0.0006, + "loss": 3.7564640045166016, + "step": 2236 + }, + { + "epoch": 31.069899519440803, + "grad_norm": 0.27550312876701355, + "learning_rate": 0.0006, + "loss": 3.727578639984131, + "step": 2237 + }, + { + "epoch": 31.083879423328966, + "grad_norm": 0.2488662451505661, + "learning_rate": 0.0006, + "loss": 3.7420730590820312, + "step": 2238 + }, + { + "epoch": 31.097859327217126, + "grad_norm": 0.22699029743671417, + "learning_rate": 0.0006, + "loss": 3.7323155403137207, + "step": 2239 + }, + { + "epoch": 31.111839231105286, + "grad_norm": 0.23360148072242737, + "learning_rate": 0.0006, + "loss": 3.719024181365967, + "step": 2240 + }, + { + "epoch": 31.125819134993446, + "grad_norm": 0.24322988092899323, + "learning_rate": 0.0006, + "loss": 3.74485445022583, + "step": 2241 + }, + { + "epoch": 31.13979903888161, + "grad_norm": 0.2474174052476883, + "learning_rate": 0.0006, + "loss": 3.746826171875, + "step": 2242 + }, + { + "epoch": 31.15377894276977, + "grad_norm": 0.2417406439781189, + "learning_rate": 0.0006, + "loss": 3.7285032272338867, + "step": 2243 + }, + { + "epoch": 31.16775884665793, + "grad_norm": 0.2390318512916565, + "learning_rate": 0.0006, + "loss": 3.7464442253112793, + "step": 2244 + }, + { + "epoch": 31.18173875054609, + "grad_norm": 0.21819323301315308, + "learning_rate": 0.0006, + "loss": 3.735110282897949, + "step": 2245 + }, + { + "epoch": 31.195718654434252, + "grad_norm": 0.21953554451465607, + "learning_rate": 0.0006, + "loss": 3.7270030975341797, + "step": 2246 + }, + { + "epoch": 31.209698558322412, + "grad_norm": 0.1930384635925293, + "learning_rate": 0.0006, + "loss": 3.7519941329956055, + "step": 2247 + }, + { + "epoch": 31.22367846221057, + "grad_norm": 0.19799190759658813, + "learning_rate": 0.0006, + "loss": 3.7428221702575684, + "step": 2248 + }, + { + "epoch": 31.23765836609873, + "grad_norm": 0.20948201417922974, + "learning_rate": 0.0006, + "loss": 3.733120918273926, + "step": 2249 + }, + { + "epoch": 31.251638269986895, + "grad_norm": 0.23768769204616547, + "learning_rate": 0.0006, + "loss": 3.7059035301208496, + "step": 2250 + }, + { + "epoch": 31.265618173875055, + "grad_norm": 0.2808842957019806, + "learning_rate": 0.0006, + "loss": 3.7245287895202637, + "step": 2251 + }, + { + "epoch": 31.279598077763215, + "grad_norm": 0.27633124589920044, + "learning_rate": 0.0006, + "loss": 3.7436366081237793, + "step": 2252 + }, + { + "epoch": 31.293577981651374, + "grad_norm": 0.24137185513973236, + "learning_rate": 0.0006, + "loss": 3.7651219367980957, + "step": 2253 + }, + { + "epoch": 31.307557885539538, + "grad_norm": 0.22056810557842255, + "learning_rate": 0.0006, + "loss": 3.7417521476745605, + "step": 2254 + }, + { + "epoch": 31.321537789427698, + "grad_norm": 0.20137323439121246, + "learning_rate": 0.0006, + "loss": 3.750187397003174, + "step": 2255 + }, + { + "epoch": 31.335517693315857, + "grad_norm": 0.2142433375120163, + "learning_rate": 0.0006, + "loss": 3.7292675971984863, + "step": 2256 + }, + { + "epoch": 31.34949759720402, + "grad_norm": 0.21193967759609222, + "learning_rate": 0.0006, + "loss": 3.7459473609924316, + "step": 2257 + }, + { + "epoch": 31.36347750109218, + "grad_norm": 0.21418534219264984, + "learning_rate": 0.0006, + "loss": 3.754359722137451, + "step": 2258 + }, + { + "epoch": 31.37745740498034, + "grad_norm": 0.23507359623908997, + "learning_rate": 0.0006, + "loss": 3.763413906097412, + "step": 2259 + }, + { + "epoch": 31.3914373088685, + "grad_norm": 0.20393887162208557, + "learning_rate": 0.0006, + "loss": 3.73878812789917, + "step": 2260 + }, + { + "epoch": 31.405417212756664, + "grad_norm": 0.21752159297466278, + "learning_rate": 0.0006, + "loss": 3.750549793243408, + "step": 2261 + }, + { + "epoch": 31.419397116644824, + "grad_norm": 0.22629529237747192, + "learning_rate": 0.0006, + "loss": 3.7791430950164795, + "step": 2262 + }, + { + "epoch": 31.433377020532983, + "grad_norm": 0.2114613950252533, + "learning_rate": 0.0006, + "loss": 3.7709264755249023, + "step": 2263 + }, + { + "epoch": 31.447356924421143, + "grad_norm": 0.23241667449474335, + "learning_rate": 0.0006, + "loss": 3.745750665664673, + "step": 2264 + }, + { + "epoch": 31.461336828309307, + "grad_norm": 0.2434246987104416, + "learning_rate": 0.0006, + "loss": 3.769727945327759, + "step": 2265 + }, + { + "epoch": 31.475316732197467, + "grad_norm": 0.247820645570755, + "learning_rate": 0.0006, + "loss": 3.7528204917907715, + "step": 2266 + }, + { + "epoch": 31.489296636085626, + "grad_norm": 0.21287164092063904, + "learning_rate": 0.0006, + "loss": 3.728661060333252, + "step": 2267 + }, + { + "epoch": 31.503276539973786, + "grad_norm": 0.20983846485614777, + "learning_rate": 0.0006, + "loss": 3.7524428367614746, + "step": 2268 + }, + { + "epoch": 31.51725644386195, + "grad_norm": 0.23799288272857666, + "learning_rate": 0.0006, + "loss": 3.7276647090911865, + "step": 2269 + }, + { + "epoch": 31.53123634775011, + "grad_norm": 0.247065007686615, + "learning_rate": 0.0006, + "loss": 3.7506704330444336, + "step": 2270 + }, + { + "epoch": 31.54521625163827, + "grad_norm": 0.20670939981937408, + "learning_rate": 0.0006, + "loss": 3.71852445602417, + "step": 2271 + }, + { + "epoch": 31.55919615552643, + "grad_norm": 0.19463716447353363, + "learning_rate": 0.0006, + "loss": 3.732757568359375, + "step": 2272 + }, + { + "epoch": 31.573176059414592, + "grad_norm": 0.20368841290473938, + "learning_rate": 0.0006, + "loss": 3.746676445007324, + "step": 2273 + }, + { + "epoch": 31.587155963302752, + "grad_norm": 0.19691342115402222, + "learning_rate": 0.0006, + "loss": 3.7535760402679443, + "step": 2274 + }, + { + "epoch": 31.601135867190912, + "grad_norm": 0.2026553899049759, + "learning_rate": 0.0006, + "loss": 3.7406957149505615, + "step": 2275 + }, + { + "epoch": 31.615115771079076, + "grad_norm": 0.21494299173355103, + "learning_rate": 0.0006, + "loss": 3.735888957977295, + "step": 2276 + }, + { + "epoch": 31.629095674967235, + "grad_norm": 0.21644766628742218, + "learning_rate": 0.0006, + "loss": 3.723767042160034, + "step": 2277 + }, + { + "epoch": 31.643075578855395, + "grad_norm": 0.20087581872940063, + "learning_rate": 0.0006, + "loss": 3.7622008323669434, + "step": 2278 + }, + { + "epoch": 31.657055482743555, + "grad_norm": 0.1949695646762848, + "learning_rate": 0.0006, + "loss": 3.7726354598999023, + "step": 2279 + }, + { + "epoch": 31.67103538663172, + "grad_norm": 0.19120797514915466, + "learning_rate": 0.0006, + "loss": 3.7454679012298584, + "step": 2280 + }, + { + "epoch": 31.68501529051988, + "grad_norm": 0.19480115175247192, + "learning_rate": 0.0006, + "loss": 3.743934392929077, + "step": 2281 + }, + { + "epoch": 31.698995194408038, + "grad_norm": 0.1891610324382782, + "learning_rate": 0.0006, + "loss": 3.7724897861480713, + "step": 2282 + }, + { + "epoch": 31.712975098296198, + "grad_norm": 0.18533185124397278, + "learning_rate": 0.0006, + "loss": 3.7556838989257812, + "step": 2283 + }, + { + "epoch": 31.72695500218436, + "grad_norm": 0.20079447329044342, + "learning_rate": 0.0006, + "loss": 3.76758074760437, + "step": 2284 + }, + { + "epoch": 31.74093490607252, + "grad_norm": 0.2103433609008789, + "learning_rate": 0.0006, + "loss": 3.769477367401123, + "step": 2285 + }, + { + "epoch": 31.75491480996068, + "grad_norm": 0.21428923308849335, + "learning_rate": 0.0006, + "loss": 3.7317447662353516, + "step": 2286 + }, + { + "epoch": 31.76889471384884, + "grad_norm": 0.20154133439064026, + "learning_rate": 0.0006, + "loss": 3.749814987182617, + "step": 2287 + }, + { + "epoch": 31.782874617737004, + "grad_norm": 0.18998542428016663, + "learning_rate": 0.0006, + "loss": 3.7655510902404785, + "step": 2288 + }, + { + "epoch": 31.796854521625164, + "grad_norm": 0.2068665474653244, + "learning_rate": 0.0006, + "loss": 3.7375988960266113, + "step": 2289 + }, + { + "epoch": 31.810834425513324, + "grad_norm": 0.22979815304279327, + "learning_rate": 0.0006, + "loss": 3.728095531463623, + "step": 2290 + }, + { + "epoch": 31.824814329401484, + "grad_norm": 0.2378212958574295, + "learning_rate": 0.0006, + "loss": 3.73091459274292, + "step": 2291 + }, + { + "epoch": 31.838794233289647, + "grad_norm": 0.2353672832250595, + "learning_rate": 0.0006, + "loss": 3.7491769790649414, + "step": 2292 + }, + { + "epoch": 31.852774137177807, + "grad_norm": 0.22341586649417877, + "learning_rate": 0.0006, + "loss": 3.777111530303955, + "step": 2293 + }, + { + "epoch": 31.866754041065967, + "grad_norm": 0.20436930656433105, + "learning_rate": 0.0006, + "loss": 3.740997552871704, + "step": 2294 + }, + { + "epoch": 31.88073394495413, + "grad_norm": 0.20836040377616882, + "learning_rate": 0.0006, + "loss": 3.755582571029663, + "step": 2295 + }, + { + "epoch": 31.89471384884229, + "grad_norm": 0.2045193612575531, + "learning_rate": 0.0006, + "loss": 3.7583560943603516, + "step": 2296 + }, + { + "epoch": 31.90869375273045, + "grad_norm": 0.2025591880083084, + "learning_rate": 0.0006, + "loss": 3.773345470428467, + "step": 2297 + }, + { + "epoch": 31.92267365661861, + "grad_norm": 0.20309099555015564, + "learning_rate": 0.0006, + "loss": 3.7392163276672363, + "step": 2298 + }, + { + "epoch": 31.936653560506773, + "grad_norm": 0.2129351645708084, + "learning_rate": 0.0006, + "loss": 3.7801311016082764, + "step": 2299 + }, + { + "epoch": 31.950633464394933, + "grad_norm": 0.19950738549232483, + "learning_rate": 0.0006, + "loss": 3.779261589050293, + "step": 2300 + }, + { + "epoch": 31.964613368283093, + "grad_norm": 0.22837352752685547, + "learning_rate": 0.0006, + "loss": 3.782731294631958, + "step": 2301 + }, + { + "epoch": 31.978593272171253, + "grad_norm": 0.2576889097690582, + "learning_rate": 0.0006, + "loss": 3.7778096199035645, + "step": 2302 + }, + { + "epoch": 31.992573176059416, + "grad_norm": 0.2770138382911682, + "learning_rate": 0.0006, + "loss": 3.735755443572998, + "step": 2303 + }, + { + "epoch": 32.0, + "grad_norm": 0.2632865309715271, + "learning_rate": 0.0006, + "loss": 3.7562808990478516, + "step": 2304 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 9.818473340212347e+17, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2304/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2592/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2592/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2592/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2592/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..c33ff30d9038119f458a444b991bffe54d2b1a97 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2af1d95435001aa57ca034359c3f94fb59db36ecbb85cbd7881d46cbb9e7f1a3 +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2592/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..4946823a97508ba2174745fec85bc986e0f972dc --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4997308ca5a11ab5a9306df9f1092b0139d56c5c24adf79fe2d53b054af0db0 +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2592/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..e32bfc938249030a08966a5751ed32a1a59a0d40 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f568073f02244a0d9f426b9bfe279e3df5a867fc0ab352cf8df092a26471d7b9 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2592/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..0fb0dde21fb54758005f21fe437bc9cfc51e5666 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0821063941a685e79e274b674a2f0078f2574a9ba257ac7791501653bac5f213 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2592/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..f5637f631cc7ed2167f366c33ad859c0b7d97027 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eee245b547fe91bdb4d6b4cbe52724d52118d751812b2781fcb358a63c34082 +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2592/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2592/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2592/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..48c1d1c6737e7676724adb4bb81b209b6ff759c1 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/trainer_state.json @@ -0,0 +1,18458 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 36.0, + "eval_steps": 500, + "global_step": 2592, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + }, + { + "epoch": 8.0, + "eval_loss": 5.100707530975342, + "eval_runtime": 44.2493, + "eval_samples_per_second": 55.187, + "eval_steps_per_second": 3.458, + "step": 576 + }, + { + "epoch": 8.013979903888162, + "grad_norm": 0.3658510148525238, + "learning_rate": 0.0006, + "loss": 4.759055137634277, + "step": 577 + }, + { + "epoch": 8.027959807776321, + "grad_norm": 0.41794446110725403, + "learning_rate": 0.0006, + "loss": 4.737661838531494, + "step": 578 + }, + { + "epoch": 8.041939711664483, + "grad_norm": 0.43284085392951965, + "learning_rate": 0.0006, + "loss": 4.775538444519043, + "step": 579 + }, + { + "epoch": 8.055919615552643, + "grad_norm": 0.4716675281524658, + "learning_rate": 0.0006, + "loss": 4.762231826782227, + "step": 580 + }, + { + "epoch": 8.069899519440805, + "grad_norm": 0.3849579393863678, + "learning_rate": 0.0006, + "loss": 4.753598690032959, + "step": 581 + }, + { + "epoch": 8.083879423328964, + "grad_norm": 0.3721151053905487, + "learning_rate": 0.0006, + "loss": 4.728978157043457, + "step": 582 + }, + { + "epoch": 8.097859327217126, + "grad_norm": 0.37009572982788086, + "learning_rate": 0.0006, + "loss": 4.759153366088867, + "step": 583 + }, + { + "epoch": 8.111839231105286, + "grad_norm": 0.37051302194595337, + "learning_rate": 0.0006, + "loss": 4.744197368621826, + "step": 584 + }, + { + "epoch": 8.125819134993447, + "grad_norm": 0.331238329410553, + "learning_rate": 0.0006, + "loss": 4.7338385581970215, + "step": 585 + }, + { + "epoch": 8.139799038881607, + "grad_norm": 0.3737713694572449, + "learning_rate": 0.0006, + "loss": 4.719110488891602, + "step": 586 + }, + { + "epoch": 8.153778942769769, + "grad_norm": 0.3713214695453644, + "learning_rate": 0.0006, + "loss": 4.734012126922607, + "step": 587 + }, + { + "epoch": 8.167758846657929, + "grad_norm": 0.4060780107975006, + "learning_rate": 0.0006, + "loss": 4.746830940246582, + "step": 588 + }, + { + "epoch": 8.18173875054609, + "grad_norm": 0.39814314246177673, + "learning_rate": 0.0006, + "loss": 4.722851753234863, + "step": 589 + }, + { + "epoch": 8.19571865443425, + "grad_norm": 0.3175652325153351, + "learning_rate": 0.0006, + "loss": 4.745110034942627, + "step": 590 + }, + { + "epoch": 8.209698558322412, + "grad_norm": 0.37214916944503784, + "learning_rate": 0.0006, + "loss": 4.7362775802612305, + "step": 591 + }, + { + "epoch": 8.223678462210572, + "grad_norm": 0.3873472809791565, + "learning_rate": 0.0006, + "loss": 4.738964557647705, + "step": 592 + }, + { + "epoch": 8.237658366098733, + "grad_norm": 0.3299207091331482, + "learning_rate": 0.0006, + "loss": 4.713451385498047, + "step": 593 + }, + { + "epoch": 8.251638269986893, + "grad_norm": 0.32445064187049866, + "learning_rate": 0.0006, + "loss": 4.725602149963379, + "step": 594 + }, + { + "epoch": 8.265618173875055, + "grad_norm": 0.32903164625167847, + "learning_rate": 0.0006, + "loss": 4.732064247131348, + "step": 595 + }, + { + "epoch": 8.279598077763215, + "grad_norm": 0.3166804313659668, + "learning_rate": 0.0006, + "loss": 4.678950786590576, + "step": 596 + }, + { + "epoch": 8.293577981651376, + "grad_norm": 0.2750290334224701, + "learning_rate": 0.0006, + "loss": 4.719513416290283, + "step": 597 + }, + { + "epoch": 8.307557885539538, + "grad_norm": 0.291029691696167, + "learning_rate": 0.0006, + "loss": 4.715405464172363, + "step": 598 + }, + { + "epoch": 8.321537789427698, + "grad_norm": 0.34105145931243896, + "learning_rate": 0.0006, + "loss": 4.722611427307129, + "step": 599 + }, + { + "epoch": 8.33551769331586, + "grad_norm": 0.3078882694244385, + "learning_rate": 0.0006, + "loss": 4.668856620788574, + "step": 600 + }, + { + "epoch": 8.349497597204019, + "grad_norm": 0.3218833804130554, + "learning_rate": 0.0006, + "loss": 4.719579696655273, + "step": 601 + }, + { + "epoch": 8.36347750109218, + "grad_norm": 0.35716721415519714, + "learning_rate": 0.0006, + "loss": 4.690774440765381, + "step": 602 + }, + { + "epoch": 8.37745740498034, + "grad_norm": 0.3045452833175659, + "learning_rate": 0.0006, + "loss": 4.696503639221191, + "step": 603 + }, + { + "epoch": 8.391437308868502, + "grad_norm": 0.3127244710922241, + "learning_rate": 0.0006, + "loss": 4.701899528503418, + "step": 604 + }, + { + "epoch": 8.405417212756662, + "grad_norm": 0.34988710284233093, + "learning_rate": 0.0006, + "loss": 4.677641868591309, + "step": 605 + }, + { + "epoch": 8.419397116644824, + "grad_norm": 0.34035569429397583, + "learning_rate": 0.0006, + "loss": 4.707778453826904, + "step": 606 + }, + { + "epoch": 8.433377020532983, + "grad_norm": 0.3341112732887268, + "learning_rate": 0.0006, + "loss": 4.724853038787842, + "step": 607 + }, + { + "epoch": 8.447356924421145, + "grad_norm": 0.41744324564933777, + "learning_rate": 0.0006, + "loss": 4.680908203125, + "step": 608 + }, + { + "epoch": 8.461336828309305, + "grad_norm": 0.40402331948280334, + "learning_rate": 0.0006, + "loss": 4.726455211639404, + "step": 609 + }, + { + "epoch": 8.475316732197467, + "grad_norm": 0.4727570414543152, + "learning_rate": 0.0006, + "loss": 4.6793084144592285, + "step": 610 + }, + { + "epoch": 8.489296636085626, + "grad_norm": 0.43002694845199585, + "learning_rate": 0.0006, + "loss": 4.663918972015381, + "step": 611 + }, + { + "epoch": 8.503276539973788, + "grad_norm": 0.36124858260154724, + "learning_rate": 0.0006, + "loss": 4.657375335693359, + "step": 612 + }, + { + "epoch": 8.517256443861948, + "grad_norm": 0.37644803524017334, + "learning_rate": 0.0006, + "loss": 4.676977157592773, + "step": 613 + }, + { + "epoch": 8.53123634775011, + "grad_norm": 0.32347747683525085, + "learning_rate": 0.0006, + "loss": 4.708547115325928, + "step": 614 + }, + { + "epoch": 8.54521625163827, + "grad_norm": 0.3071717619895935, + "learning_rate": 0.0006, + "loss": 4.650189399719238, + "step": 615 + }, + { + "epoch": 8.55919615552643, + "grad_norm": 0.30222490429878235, + "learning_rate": 0.0006, + "loss": 4.647942543029785, + "step": 616 + }, + { + "epoch": 8.57317605941459, + "grad_norm": 0.31545212864875793, + "learning_rate": 0.0006, + "loss": 4.660242080688477, + "step": 617 + }, + { + "epoch": 8.587155963302752, + "grad_norm": 0.31644752621650696, + "learning_rate": 0.0006, + "loss": 4.666710376739502, + "step": 618 + }, + { + "epoch": 8.601135867190912, + "grad_norm": 0.26057198643684387, + "learning_rate": 0.0006, + "loss": 4.668096542358398, + "step": 619 + }, + { + "epoch": 8.615115771079074, + "grad_norm": 0.25473910570144653, + "learning_rate": 0.0006, + "loss": 4.641562461853027, + "step": 620 + }, + { + "epoch": 8.629095674967235, + "grad_norm": 0.2456732839345932, + "learning_rate": 0.0006, + "loss": 4.6545281410217285, + "step": 621 + }, + { + "epoch": 8.643075578855395, + "grad_norm": 0.25180476903915405, + "learning_rate": 0.0006, + "loss": 4.6506524085998535, + "step": 622 + }, + { + "epoch": 8.657055482743557, + "grad_norm": 0.21761579811573029, + "learning_rate": 0.0006, + "loss": 4.638909339904785, + "step": 623 + }, + { + "epoch": 8.671035386631717, + "grad_norm": 0.23590542376041412, + "learning_rate": 0.0006, + "loss": 4.6572747230529785, + "step": 624 + }, + { + "epoch": 8.685015290519878, + "grad_norm": 0.23870624601840973, + "learning_rate": 0.0006, + "loss": 4.643742084503174, + "step": 625 + }, + { + "epoch": 8.698995194408038, + "grad_norm": 0.2191203385591507, + "learning_rate": 0.0006, + "loss": 4.632617950439453, + "step": 626 + }, + { + "epoch": 8.7129750982962, + "grad_norm": 0.22107063233852386, + "learning_rate": 0.0006, + "loss": 4.625616073608398, + "step": 627 + }, + { + "epoch": 8.72695500218436, + "grad_norm": 0.20833902060985565, + "learning_rate": 0.0006, + "loss": 4.609896659851074, + "step": 628 + }, + { + "epoch": 8.740934906072521, + "grad_norm": 0.254967600107193, + "learning_rate": 0.0006, + "loss": 4.651735782623291, + "step": 629 + }, + { + "epoch": 8.754914809960681, + "grad_norm": 0.31587523221969604, + "learning_rate": 0.0006, + "loss": 4.6404032707214355, + "step": 630 + }, + { + "epoch": 8.768894713848843, + "grad_norm": 0.28598251938819885, + "learning_rate": 0.0006, + "loss": 4.602679252624512, + "step": 631 + }, + { + "epoch": 8.782874617737003, + "grad_norm": 0.23216590285301208, + "learning_rate": 0.0006, + "loss": 4.610319137573242, + "step": 632 + }, + { + "epoch": 8.796854521625164, + "grad_norm": 0.29212239384651184, + "learning_rate": 0.0006, + "loss": 4.600744247436523, + "step": 633 + }, + { + "epoch": 8.810834425513324, + "grad_norm": 0.3375801146030426, + "learning_rate": 0.0006, + "loss": 4.627819061279297, + "step": 634 + }, + { + "epoch": 8.824814329401486, + "grad_norm": 0.4207753837108612, + "learning_rate": 0.0006, + "loss": 4.634505271911621, + "step": 635 + }, + { + "epoch": 8.838794233289645, + "grad_norm": 0.4640173614025116, + "learning_rate": 0.0006, + "loss": 4.636714935302734, + "step": 636 + }, + { + "epoch": 8.852774137177807, + "grad_norm": 0.5255663990974426, + "learning_rate": 0.0006, + "loss": 4.659462928771973, + "step": 637 + }, + { + "epoch": 8.866754041065967, + "grad_norm": 0.5108268857002258, + "learning_rate": 0.0006, + "loss": 4.633192539215088, + "step": 638 + }, + { + "epoch": 8.880733944954128, + "grad_norm": 0.3821936845779419, + "learning_rate": 0.0006, + "loss": 4.621200084686279, + "step": 639 + }, + { + "epoch": 8.89471384884229, + "grad_norm": 0.3918485939502716, + "learning_rate": 0.0006, + "loss": 4.632599830627441, + "step": 640 + }, + { + "epoch": 8.90869375273045, + "grad_norm": 0.3416556119918823, + "learning_rate": 0.0006, + "loss": 4.620438098907471, + "step": 641 + }, + { + "epoch": 8.922673656618612, + "grad_norm": 0.3191553056240082, + "learning_rate": 0.0006, + "loss": 4.617823600769043, + "step": 642 + }, + { + "epoch": 8.936653560506771, + "grad_norm": 0.3368529677391052, + "learning_rate": 0.0006, + "loss": 4.617222785949707, + "step": 643 + }, + { + "epoch": 8.950633464394933, + "grad_norm": 0.3255428969860077, + "learning_rate": 0.0006, + "loss": 4.633878707885742, + "step": 644 + }, + { + "epoch": 8.964613368283093, + "grad_norm": 0.31394779682159424, + "learning_rate": 0.0006, + "loss": 4.642603874206543, + "step": 645 + }, + { + "epoch": 8.978593272171254, + "grad_norm": 0.29999351501464844, + "learning_rate": 0.0006, + "loss": 4.5925211906433105, + "step": 646 + }, + { + "epoch": 8.992573176059414, + "grad_norm": 0.309154748916626, + "learning_rate": 0.0006, + "loss": 4.61745023727417, + "step": 647 + }, + { + "epoch": 9.0, + "grad_norm": 0.2660452425479889, + "learning_rate": 0.0006, + "loss": 4.575107097625732, + "step": 648 + }, + { + "epoch": 9.0, + "eval_loss": 4.8804192543029785, + "eval_runtime": 45.0015, + "eval_samples_per_second": 54.265, + "eval_steps_per_second": 3.4, + "step": 648 + }, + { + "epoch": 9.013979903888162, + "grad_norm": 0.24159297347068787, + "learning_rate": 0.0006, + "loss": 4.571323871612549, + "step": 649 + }, + { + "epoch": 9.027959807776321, + "grad_norm": 0.2835831046104431, + "learning_rate": 0.0006, + "loss": 4.614255905151367, + "step": 650 + }, + { + "epoch": 9.041939711664483, + "grad_norm": 0.2646859288215637, + "learning_rate": 0.0006, + "loss": 4.578947067260742, + "step": 651 + }, + { + "epoch": 9.055919615552643, + "grad_norm": 0.28868553042411804, + "learning_rate": 0.0006, + "loss": 4.575977325439453, + "step": 652 + }, + { + "epoch": 9.069899519440805, + "grad_norm": 0.2899586856365204, + "learning_rate": 0.0006, + "loss": 4.541798114776611, + "step": 653 + }, + { + "epoch": 9.083879423328964, + "grad_norm": 0.32786068320274353, + "learning_rate": 0.0006, + "loss": 4.575140953063965, + "step": 654 + }, + { + "epoch": 9.097859327217126, + "grad_norm": 0.35675594210624695, + "learning_rate": 0.0006, + "loss": 4.58184814453125, + "step": 655 + }, + { + "epoch": 9.111839231105286, + "grad_norm": 0.3380381166934967, + "learning_rate": 0.0006, + "loss": 4.546271324157715, + "step": 656 + }, + { + "epoch": 9.125819134993447, + "grad_norm": 0.3035511374473572, + "learning_rate": 0.0006, + "loss": 4.591629981994629, + "step": 657 + }, + { + "epoch": 9.139799038881607, + "grad_norm": 0.2733091711997986, + "learning_rate": 0.0006, + "loss": 4.559020042419434, + "step": 658 + }, + { + "epoch": 9.153778942769769, + "grad_norm": 0.2870676815509796, + "learning_rate": 0.0006, + "loss": 4.552787780761719, + "step": 659 + }, + { + "epoch": 9.167758846657929, + "grad_norm": 0.37471064925193787, + "learning_rate": 0.0006, + "loss": 4.572757244110107, + "step": 660 + }, + { + "epoch": 9.18173875054609, + "grad_norm": 0.37889063358306885, + "learning_rate": 0.0006, + "loss": 4.573302268981934, + "step": 661 + }, + { + "epoch": 9.19571865443425, + "grad_norm": 0.29983851313591003, + "learning_rate": 0.0006, + "loss": 4.571202754974365, + "step": 662 + }, + { + "epoch": 9.209698558322412, + "grad_norm": 0.27595147490501404, + "learning_rate": 0.0006, + "loss": 4.529508590698242, + "step": 663 + }, + { + "epoch": 9.223678462210572, + "grad_norm": 0.22693437337875366, + "learning_rate": 0.0006, + "loss": 4.572267532348633, + "step": 664 + }, + { + "epoch": 9.237658366098733, + "grad_norm": 0.27147138118743896, + "learning_rate": 0.0006, + "loss": 4.529747009277344, + "step": 665 + }, + { + "epoch": 9.251638269986893, + "grad_norm": 0.24952703714370728, + "learning_rate": 0.0006, + "loss": 4.553647994995117, + "step": 666 + }, + { + "epoch": 9.265618173875055, + "grad_norm": 0.3086707592010498, + "learning_rate": 0.0006, + "loss": 4.494636058807373, + "step": 667 + }, + { + "epoch": 9.279598077763215, + "grad_norm": 0.3265218138694763, + "learning_rate": 0.0006, + "loss": 4.522481918334961, + "step": 668 + }, + { + "epoch": 9.293577981651376, + "grad_norm": 0.2744608223438263, + "learning_rate": 0.0006, + "loss": 4.544595241546631, + "step": 669 + }, + { + "epoch": 9.307557885539538, + "grad_norm": 0.26698485016822815, + "learning_rate": 0.0006, + "loss": 4.506407260894775, + "step": 670 + }, + { + "epoch": 9.321537789427698, + "grad_norm": 0.2775942087173462, + "learning_rate": 0.0006, + "loss": 4.534619331359863, + "step": 671 + }, + { + "epoch": 9.33551769331586, + "grad_norm": 0.2421862781047821, + "learning_rate": 0.0006, + "loss": 4.523318290710449, + "step": 672 + }, + { + "epoch": 9.349497597204019, + "grad_norm": 0.2756497263908386, + "learning_rate": 0.0006, + "loss": 4.517561912536621, + "step": 673 + }, + { + "epoch": 9.36347750109218, + "grad_norm": 0.28845369815826416, + "learning_rate": 0.0006, + "loss": 4.530844688415527, + "step": 674 + }, + { + "epoch": 9.37745740498034, + "grad_norm": 0.32285866141319275, + "learning_rate": 0.0006, + "loss": 4.55369758605957, + "step": 675 + }, + { + "epoch": 9.391437308868502, + "grad_norm": 0.3726065754890442, + "learning_rate": 0.0006, + "loss": 4.524348258972168, + "step": 676 + }, + { + "epoch": 9.405417212756662, + "grad_norm": 0.39524078369140625, + "learning_rate": 0.0006, + "loss": 4.535778045654297, + "step": 677 + }, + { + "epoch": 9.419397116644824, + "grad_norm": 0.3859797716140747, + "learning_rate": 0.0006, + "loss": 4.538474082946777, + "step": 678 + }, + { + "epoch": 9.433377020532983, + "grad_norm": 0.36151406168937683, + "learning_rate": 0.0006, + "loss": 4.54434061050415, + "step": 679 + }, + { + "epoch": 9.447356924421145, + "grad_norm": 0.40345999598503113, + "learning_rate": 0.0006, + "loss": 4.532961845397949, + "step": 680 + }, + { + "epoch": 9.461336828309305, + "grad_norm": 0.38864144682884216, + "learning_rate": 0.0006, + "loss": 4.567630767822266, + "step": 681 + }, + { + "epoch": 9.475316732197467, + "grad_norm": 0.3816355764865875, + "learning_rate": 0.0006, + "loss": 4.535771369934082, + "step": 682 + }, + { + "epoch": 9.489296636085626, + "grad_norm": 0.38756558299064636, + "learning_rate": 0.0006, + "loss": 4.4971089363098145, + "step": 683 + }, + { + "epoch": 9.503276539973788, + "grad_norm": 0.4572933614253998, + "learning_rate": 0.0006, + "loss": 4.534860134124756, + "step": 684 + }, + { + "epoch": 9.517256443861948, + "grad_norm": 0.42368650436401367, + "learning_rate": 0.0006, + "loss": 4.542638301849365, + "step": 685 + }, + { + "epoch": 9.53123634775011, + "grad_norm": 0.36939486861228943, + "learning_rate": 0.0006, + "loss": 4.571430206298828, + "step": 686 + }, + { + "epoch": 9.54521625163827, + "grad_norm": 0.3900398313999176, + "learning_rate": 0.0006, + "loss": 4.544435501098633, + "step": 687 + }, + { + "epoch": 9.55919615552643, + "grad_norm": 0.37829288840293884, + "learning_rate": 0.0006, + "loss": 4.564268112182617, + "step": 688 + }, + { + "epoch": 9.57317605941459, + "grad_norm": 0.3553886115550995, + "learning_rate": 0.0006, + "loss": 4.5373430252075195, + "step": 689 + }, + { + "epoch": 9.587155963302752, + "grad_norm": 0.3613419532775879, + "learning_rate": 0.0006, + "loss": 4.559074401855469, + "step": 690 + }, + { + "epoch": 9.601135867190912, + "grad_norm": 0.32644546031951904, + "learning_rate": 0.0006, + "loss": 4.533667087554932, + "step": 691 + }, + { + "epoch": 9.615115771079074, + "grad_norm": 0.3264399468898773, + "learning_rate": 0.0006, + "loss": 4.508299350738525, + "step": 692 + }, + { + "epoch": 9.629095674967235, + "grad_norm": 0.3534526526927948, + "learning_rate": 0.0006, + "loss": 4.542442798614502, + "step": 693 + }, + { + "epoch": 9.643075578855395, + "grad_norm": 0.3333452343940735, + "learning_rate": 0.0006, + "loss": 4.497692584991455, + "step": 694 + }, + { + "epoch": 9.657055482743557, + "grad_norm": 0.3214292526245117, + "learning_rate": 0.0006, + "loss": 4.512363433837891, + "step": 695 + }, + { + "epoch": 9.671035386631717, + "grad_norm": 0.2805672585964203, + "learning_rate": 0.0006, + "loss": 4.496874809265137, + "step": 696 + }, + { + "epoch": 9.685015290519878, + "grad_norm": 0.2618725895881653, + "learning_rate": 0.0006, + "loss": 4.51375675201416, + "step": 697 + }, + { + "epoch": 9.698995194408038, + "grad_norm": 0.2556597888469696, + "learning_rate": 0.0006, + "loss": 4.512338638305664, + "step": 698 + }, + { + "epoch": 9.7129750982962, + "grad_norm": 0.23784305155277252, + "learning_rate": 0.0006, + "loss": 4.486503601074219, + "step": 699 + }, + { + "epoch": 9.72695500218436, + "grad_norm": 0.2240338921546936, + "learning_rate": 0.0006, + "loss": 4.486850261688232, + "step": 700 + }, + { + "epoch": 9.740934906072521, + "grad_norm": 0.24686725437641144, + "learning_rate": 0.0006, + "loss": 4.501359462738037, + "step": 701 + }, + { + "epoch": 9.754914809960681, + "grad_norm": 0.20819595456123352, + "learning_rate": 0.0006, + "loss": 4.495186805725098, + "step": 702 + }, + { + "epoch": 9.768894713848843, + "grad_norm": 0.21858957409858704, + "learning_rate": 0.0006, + "loss": 4.475093364715576, + "step": 703 + }, + { + "epoch": 9.782874617737003, + "grad_norm": 0.22676466405391693, + "learning_rate": 0.0006, + "loss": 4.4702534675598145, + "step": 704 + }, + { + "epoch": 9.796854521625164, + "grad_norm": 0.18317611515522003, + "learning_rate": 0.0006, + "loss": 4.471231937408447, + "step": 705 + }, + { + "epoch": 9.810834425513324, + "grad_norm": 0.20979148149490356, + "learning_rate": 0.0006, + "loss": 4.454103946685791, + "step": 706 + }, + { + "epoch": 9.824814329401486, + "grad_norm": 0.2146051526069641, + "learning_rate": 0.0006, + "loss": 4.505178928375244, + "step": 707 + }, + { + "epoch": 9.838794233289645, + "grad_norm": 0.2344852089881897, + "learning_rate": 0.0006, + "loss": 4.437984943389893, + "step": 708 + }, + { + "epoch": 9.852774137177807, + "grad_norm": 0.26532089710235596, + "learning_rate": 0.0006, + "loss": 4.477126121520996, + "step": 709 + }, + { + "epoch": 9.866754041065967, + "grad_norm": 0.2737913131713867, + "learning_rate": 0.0006, + "loss": 4.498421669006348, + "step": 710 + }, + { + "epoch": 9.880733944954128, + "grad_norm": 0.26651278138160706, + "learning_rate": 0.0006, + "loss": 4.480839729309082, + "step": 711 + }, + { + "epoch": 9.89471384884229, + "grad_norm": 0.26576584577560425, + "learning_rate": 0.0006, + "loss": 4.490936279296875, + "step": 712 + }, + { + "epoch": 9.90869375273045, + "grad_norm": 0.22483965754508972, + "learning_rate": 0.0006, + "loss": 4.477953910827637, + "step": 713 + }, + { + "epoch": 9.922673656618612, + "grad_norm": 0.23576045036315918, + "learning_rate": 0.0006, + "loss": 4.4731292724609375, + "step": 714 + }, + { + "epoch": 9.936653560506771, + "grad_norm": 0.2731139361858368, + "learning_rate": 0.0006, + "loss": 4.441622734069824, + "step": 715 + }, + { + "epoch": 9.950633464394933, + "grad_norm": 0.2677643597126007, + "learning_rate": 0.0006, + "loss": 4.49604606628418, + "step": 716 + }, + { + "epoch": 9.964613368283093, + "grad_norm": 0.21940895915031433, + "learning_rate": 0.0006, + "loss": 4.485573768615723, + "step": 717 + }, + { + "epoch": 9.978593272171254, + "grad_norm": 0.2060987651348114, + "learning_rate": 0.0006, + "loss": 4.482657432556152, + "step": 718 + }, + { + "epoch": 9.992573176059414, + "grad_norm": 0.22163978219032288, + "learning_rate": 0.0006, + "loss": 4.478459358215332, + "step": 719 + }, + { + "epoch": 10.0, + "grad_norm": 0.2505086064338684, + "learning_rate": 0.0006, + "loss": 4.4393510818481445, + "step": 720 + }, + { + "epoch": 10.0, + "eval_loss": 4.695676803588867, + "eval_runtime": 49.0751, + "eval_samples_per_second": 49.76, + "eval_steps_per_second": 3.118, + "step": 720 + }, + { + "epoch": 10.013979903888162, + "grad_norm": 0.23820190131664276, + "learning_rate": 0.0006, + "loss": 4.437685489654541, + "step": 721 + }, + { + "epoch": 10.027959807776321, + "grad_norm": 0.2220371812582016, + "learning_rate": 0.0006, + "loss": 4.449873924255371, + "step": 722 + }, + { + "epoch": 10.041939711664483, + "grad_norm": 0.20369848608970642, + "learning_rate": 0.0006, + "loss": 4.448882579803467, + "step": 723 + }, + { + "epoch": 10.055919615552643, + "grad_norm": 0.2360001504421234, + "learning_rate": 0.0006, + "loss": 4.399251937866211, + "step": 724 + }, + { + "epoch": 10.069899519440805, + "grad_norm": 0.23537491261959076, + "learning_rate": 0.0006, + "loss": 4.442960739135742, + "step": 725 + }, + { + "epoch": 10.083879423328964, + "grad_norm": 0.24433870613574982, + "learning_rate": 0.0006, + "loss": 4.44808292388916, + "step": 726 + }, + { + "epoch": 10.097859327217126, + "grad_norm": 0.3406696021556854, + "learning_rate": 0.0006, + "loss": 4.443426132202148, + "step": 727 + }, + { + "epoch": 10.111839231105286, + "grad_norm": 0.4102286100387573, + "learning_rate": 0.0006, + "loss": 4.424919605255127, + "step": 728 + }, + { + "epoch": 10.125819134993447, + "grad_norm": 0.36462604999542236, + "learning_rate": 0.0006, + "loss": 4.45366907119751, + "step": 729 + }, + { + "epoch": 10.139799038881607, + "grad_norm": 0.4374827444553375, + "learning_rate": 0.0006, + "loss": 4.415630340576172, + "step": 730 + }, + { + "epoch": 10.153778942769769, + "grad_norm": 0.45248138904571533, + "learning_rate": 0.0006, + "loss": 4.448849678039551, + "step": 731 + }, + { + "epoch": 10.167758846657929, + "grad_norm": 0.3806457221508026, + "learning_rate": 0.0006, + "loss": 4.443390846252441, + "step": 732 + }, + { + "epoch": 10.18173875054609, + "grad_norm": 0.3491523861885071, + "learning_rate": 0.0006, + "loss": 4.4648637771606445, + "step": 733 + }, + { + "epoch": 10.19571865443425, + "grad_norm": 0.3327210247516632, + "learning_rate": 0.0006, + "loss": 4.460919380187988, + "step": 734 + }, + { + "epoch": 10.209698558322412, + "grad_norm": 0.29772236943244934, + "learning_rate": 0.0006, + "loss": 4.45159912109375, + "step": 735 + }, + { + "epoch": 10.223678462210572, + "grad_norm": 0.33083397150039673, + "learning_rate": 0.0006, + "loss": 4.463382720947266, + "step": 736 + }, + { + "epoch": 10.237658366098733, + "grad_norm": 0.3930598795413971, + "learning_rate": 0.0006, + "loss": 4.434510231018066, + "step": 737 + }, + { + "epoch": 10.251638269986893, + "grad_norm": 0.4342896044254303, + "learning_rate": 0.0006, + "loss": 4.451700210571289, + "step": 738 + }, + { + "epoch": 10.265618173875055, + "grad_norm": 0.4544043242931366, + "learning_rate": 0.0006, + "loss": 4.437224388122559, + "step": 739 + }, + { + "epoch": 10.279598077763215, + "grad_norm": 0.4487038254737854, + "learning_rate": 0.0006, + "loss": 4.46157693862915, + "step": 740 + }, + { + "epoch": 10.293577981651376, + "grad_norm": 0.4420500695705414, + "learning_rate": 0.0006, + "loss": 4.399561405181885, + "step": 741 + }, + { + "epoch": 10.307557885539538, + "grad_norm": 0.4167289435863495, + "learning_rate": 0.0006, + "loss": 4.41792106628418, + "step": 742 + }, + { + "epoch": 10.321537789427698, + "grad_norm": 0.3186971843242645, + "learning_rate": 0.0006, + "loss": 4.435683250427246, + "step": 743 + }, + { + "epoch": 10.33551769331586, + "grad_norm": 0.3077184855937958, + "learning_rate": 0.0006, + "loss": 4.481947898864746, + "step": 744 + }, + { + "epoch": 10.349497597204019, + "grad_norm": 0.26811280846595764, + "learning_rate": 0.0006, + "loss": 4.4339447021484375, + "step": 745 + }, + { + "epoch": 10.36347750109218, + "grad_norm": 0.28448057174682617, + "learning_rate": 0.0006, + "loss": 4.441644668579102, + "step": 746 + }, + { + "epoch": 10.37745740498034, + "grad_norm": 0.30731502175331116, + "learning_rate": 0.0006, + "loss": 4.428773880004883, + "step": 747 + }, + { + "epoch": 10.391437308868502, + "grad_norm": 0.28036001324653625, + "learning_rate": 0.0006, + "loss": 4.4433135986328125, + "step": 748 + }, + { + "epoch": 10.405417212756662, + "grad_norm": 0.2882847189903259, + "learning_rate": 0.0006, + "loss": 4.433401107788086, + "step": 749 + }, + { + "epoch": 10.419397116644824, + "grad_norm": 0.23622776567935944, + "learning_rate": 0.0006, + "loss": 4.444611549377441, + "step": 750 + }, + { + "epoch": 10.433377020532983, + "grad_norm": 0.2306167632341385, + "learning_rate": 0.0006, + "loss": 4.397875785827637, + "step": 751 + }, + { + "epoch": 10.447356924421145, + "grad_norm": 0.22725090384483337, + "learning_rate": 0.0006, + "loss": 4.429759502410889, + "step": 752 + }, + { + "epoch": 10.461336828309305, + "grad_norm": 0.250709593296051, + "learning_rate": 0.0006, + "loss": 4.415618896484375, + "step": 753 + }, + { + "epoch": 10.475316732197467, + "grad_norm": 0.22341276705265045, + "learning_rate": 0.0006, + "loss": 4.389362335205078, + "step": 754 + }, + { + "epoch": 10.489296636085626, + "grad_norm": 0.22595296800136566, + "learning_rate": 0.0006, + "loss": 4.383584022521973, + "step": 755 + }, + { + "epoch": 10.503276539973788, + "grad_norm": 0.24277575314044952, + "learning_rate": 0.0006, + "loss": 4.403777599334717, + "step": 756 + }, + { + "epoch": 10.517256443861948, + "grad_norm": 0.2670708894729614, + "learning_rate": 0.0006, + "loss": 4.398499011993408, + "step": 757 + }, + { + "epoch": 10.53123634775011, + "grad_norm": 0.2640696167945862, + "learning_rate": 0.0006, + "loss": 4.426726818084717, + "step": 758 + }, + { + "epoch": 10.54521625163827, + "grad_norm": 0.2248653769493103, + "learning_rate": 0.0006, + "loss": 4.400103569030762, + "step": 759 + }, + { + "epoch": 10.55919615552643, + "grad_norm": 0.21466240286827087, + "learning_rate": 0.0006, + "loss": 4.404158592224121, + "step": 760 + }, + { + "epoch": 10.57317605941459, + "grad_norm": 0.236923947930336, + "learning_rate": 0.0006, + "loss": 4.37059211730957, + "step": 761 + }, + { + "epoch": 10.587155963302752, + "grad_norm": 0.2515387535095215, + "learning_rate": 0.0006, + "loss": 4.415055274963379, + "step": 762 + }, + { + "epoch": 10.601135867190912, + "grad_norm": 0.23461885750293732, + "learning_rate": 0.0006, + "loss": 4.375036239624023, + "step": 763 + }, + { + "epoch": 10.615115771079074, + "grad_norm": 0.20975761115550995, + "learning_rate": 0.0006, + "loss": 4.3903398513793945, + "step": 764 + }, + { + "epoch": 10.629095674967235, + "grad_norm": 0.19859997928142548, + "learning_rate": 0.0006, + "loss": 4.379380226135254, + "step": 765 + }, + { + "epoch": 10.643075578855395, + "grad_norm": 0.22310325503349304, + "learning_rate": 0.0006, + "loss": 4.382110595703125, + "step": 766 + }, + { + "epoch": 10.657055482743557, + "grad_norm": 0.23940646648406982, + "learning_rate": 0.0006, + "loss": 4.393403053283691, + "step": 767 + }, + { + "epoch": 10.671035386631717, + "grad_norm": 0.2230468988418579, + "learning_rate": 0.0006, + "loss": 4.391970634460449, + "step": 768 + }, + { + "epoch": 10.685015290519878, + "grad_norm": 0.18139775097370148, + "learning_rate": 0.0006, + "loss": 4.399993896484375, + "step": 769 + }, + { + "epoch": 10.698995194408038, + "grad_norm": 0.19936902821063995, + "learning_rate": 0.0006, + "loss": 4.373854160308838, + "step": 770 + }, + { + "epoch": 10.7129750982962, + "grad_norm": 0.22132465243339539, + "learning_rate": 0.0006, + "loss": 4.377530097961426, + "step": 771 + }, + { + "epoch": 10.72695500218436, + "grad_norm": 0.24254944920539856, + "learning_rate": 0.0006, + "loss": 4.398683547973633, + "step": 772 + }, + { + "epoch": 10.740934906072521, + "grad_norm": 0.2666397988796234, + "learning_rate": 0.0006, + "loss": 4.3879899978637695, + "step": 773 + }, + { + "epoch": 10.754914809960681, + "grad_norm": 0.24728631973266602, + "learning_rate": 0.0006, + "loss": 4.356976509094238, + "step": 774 + }, + { + "epoch": 10.768894713848843, + "grad_norm": 0.2612453103065491, + "learning_rate": 0.0006, + "loss": 4.391525745391846, + "step": 775 + }, + { + "epoch": 10.782874617737003, + "grad_norm": 0.24060510098934174, + "learning_rate": 0.0006, + "loss": 4.376985549926758, + "step": 776 + }, + { + "epoch": 10.796854521625164, + "grad_norm": 0.22708238661289215, + "learning_rate": 0.0006, + "loss": 4.368545055389404, + "step": 777 + }, + { + "epoch": 10.810834425513324, + "grad_norm": 0.26931291818618774, + "learning_rate": 0.0006, + "loss": 4.369227409362793, + "step": 778 + }, + { + "epoch": 10.824814329401486, + "grad_norm": 0.265288770198822, + "learning_rate": 0.0006, + "loss": 4.378131866455078, + "step": 779 + }, + { + "epoch": 10.838794233289645, + "grad_norm": 0.3015305697917938, + "learning_rate": 0.0006, + "loss": 4.376267910003662, + "step": 780 + }, + { + "epoch": 10.852774137177807, + "grad_norm": 0.3345746099948883, + "learning_rate": 0.0006, + "loss": 4.3751420974731445, + "step": 781 + }, + { + "epoch": 10.866754041065967, + "grad_norm": 0.32446005940437317, + "learning_rate": 0.0006, + "loss": 4.370899200439453, + "step": 782 + }, + { + "epoch": 10.880733944954128, + "grad_norm": 0.27070069313049316, + "learning_rate": 0.0006, + "loss": 4.391958236694336, + "step": 783 + }, + { + "epoch": 10.89471384884229, + "grad_norm": 0.25584667921066284, + "learning_rate": 0.0006, + "loss": 4.407493591308594, + "step": 784 + }, + { + "epoch": 10.90869375273045, + "grad_norm": 0.2710244655609131, + "learning_rate": 0.0006, + "loss": 4.374400615692139, + "step": 785 + }, + { + "epoch": 10.922673656618612, + "grad_norm": 0.32413622736930847, + "learning_rate": 0.0006, + "loss": 4.379607200622559, + "step": 786 + }, + { + "epoch": 10.936653560506771, + "grad_norm": 0.3253782391548157, + "learning_rate": 0.0006, + "loss": 4.376441955566406, + "step": 787 + }, + { + "epoch": 10.950633464394933, + "grad_norm": 0.30534613132476807, + "learning_rate": 0.0006, + "loss": 4.382739067077637, + "step": 788 + }, + { + "epoch": 10.964613368283093, + "grad_norm": 0.35726621747016907, + "learning_rate": 0.0006, + "loss": 4.3765869140625, + "step": 789 + }, + { + "epoch": 10.978593272171254, + "grad_norm": 0.32763028144836426, + "learning_rate": 0.0006, + "loss": 4.391537189483643, + "step": 790 + }, + { + "epoch": 10.992573176059414, + "grad_norm": 0.31811195611953735, + "learning_rate": 0.0006, + "loss": 4.371829032897949, + "step": 791 + }, + { + "epoch": 11.0, + "grad_norm": 0.37317267060279846, + "learning_rate": 0.0006, + "loss": 4.381916522979736, + "step": 792 + }, + { + "epoch": 11.0, + "eval_loss": 4.588687896728516, + "eval_runtime": 44.8041, + "eval_samples_per_second": 54.504, + "eval_steps_per_second": 3.415, + "step": 792 + }, + { + "epoch": 11.013979903888162, + "grad_norm": 0.37882938981056213, + "learning_rate": 0.0006, + "loss": 4.3463640213012695, + "step": 793 + }, + { + "epoch": 11.027959807776321, + "grad_norm": 0.34719496965408325, + "learning_rate": 0.0006, + "loss": 4.329861640930176, + "step": 794 + }, + { + "epoch": 11.041939711664483, + "grad_norm": 0.36161214113235474, + "learning_rate": 0.0006, + "loss": 4.3287835121154785, + "step": 795 + }, + { + "epoch": 11.055919615552643, + "grad_norm": 0.3743649125099182, + "learning_rate": 0.0006, + "loss": 4.334251403808594, + "step": 796 + }, + { + "epoch": 11.069899519440805, + "grad_norm": 0.32266443967819214, + "learning_rate": 0.0006, + "loss": 4.364782810211182, + "step": 797 + }, + { + "epoch": 11.083879423328964, + "grad_norm": 0.27460047602653503, + "learning_rate": 0.0006, + "loss": 4.348380088806152, + "step": 798 + }, + { + "epoch": 11.097859327217126, + "grad_norm": 0.30498892068862915, + "learning_rate": 0.0006, + "loss": 4.347856521606445, + "step": 799 + }, + { + "epoch": 11.111839231105286, + "grad_norm": 0.29740771651268005, + "learning_rate": 0.0006, + "loss": 4.343471050262451, + "step": 800 + }, + { + "epoch": 11.125819134993447, + "grad_norm": 0.3004681169986725, + "learning_rate": 0.0006, + "loss": 4.337590217590332, + "step": 801 + }, + { + "epoch": 11.139799038881607, + "grad_norm": 0.3000192642211914, + "learning_rate": 0.0006, + "loss": 4.349949836730957, + "step": 802 + }, + { + "epoch": 11.153778942769769, + "grad_norm": 0.27461889386177063, + "learning_rate": 0.0006, + "loss": 4.338934898376465, + "step": 803 + }, + { + "epoch": 11.167758846657929, + "grad_norm": 0.2856169641017914, + "learning_rate": 0.0006, + "loss": 4.320754051208496, + "step": 804 + }, + { + "epoch": 11.18173875054609, + "grad_norm": 0.29822713136672974, + "learning_rate": 0.0006, + "loss": 4.357949733734131, + "step": 805 + }, + { + "epoch": 11.19571865443425, + "grad_norm": 0.34061339497566223, + "learning_rate": 0.0006, + "loss": 4.327282905578613, + "step": 806 + }, + { + "epoch": 11.209698558322412, + "grad_norm": 0.3379063010215759, + "learning_rate": 0.0006, + "loss": 4.355471611022949, + "step": 807 + }, + { + "epoch": 11.223678462210572, + "grad_norm": 0.2859216630458832, + "learning_rate": 0.0006, + "loss": 4.352344989776611, + "step": 808 + }, + { + "epoch": 11.237658366098733, + "grad_norm": 0.29522669315338135, + "learning_rate": 0.0006, + "loss": 4.349186897277832, + "step": 809 + }, + { + "epoch": 11.251638269986893, + "grad_norm": 0.273798406124115, + "learning_rate": 0.0006, + "loss": 4.342379570007324, + "step": 810 + }, + { + "epoch": 11.265618173875055, + "grad_norm": 0.25298982858657837, + "learning_rate": 0.0006, + "loss": 4.358835220336914, + "step": 811 + }, + { + "epoch": 11.279598077763215, + "grad_norm": 0.2170463651418686, + "learning_rate": 0.0006, + "loss": 4.3422017097473145, + "step": 812 + }, + { + "epoch": 11.293577981651376, + "grad_norm": 0.24855731427669525, + "learning_rate": 0.0006, + "loss": 4.322849750518799, + "step": 813 + }, + { + "epoch": 11.307557885539538, + "grad_norm": 0.22564345598220825, + "learning_rate": 0.0006, + "loss": 4.316864967346191, + "step": 814 + }, + { + "epoch": 11.321537789427698, + "grad_norm": 0.21532197296619415, + "learning_rate": 0.0006, + "loss": 4.326743125915527, + "step": 815 + }, + { + "epoch": 11.33551769331586, + "grad_norm": 0.20514146983623505, + "learning_rate": 0.0006, + "loss": 4.326531887054443, + "step": 816 + }, + { + "epoch": 11.349497597204019, + "grad_norm": 0.19035090506076813, + "learning_rate": 0.0006, + "loss": 4.318154335021973, + "step": 817 + }, + { + "epoch": 11.36347750109218, + "grad_norm": 0.17889662086963654, + "learning_rate": 0.0006, + "loss": 4.35410213470459, + "step": 818 + }, + { + "epoch": 11.37745740498034, + "grad_norm": 0.20564863085746765, + "learning_rate": 0.0006, + "loss": 4.350226879119873, + "step": 819 + }, + { + "epoch": 11.391437308868502, + "grad_norm": 0.2412603348493576, + "learning_rate": 0.0006, + "loss": 4.325137138366699, + "step": 820 + }, + { + "epoch": 11.405417212756662, + "grad_norm": 0.2603496015071869, + "learning_rate": 0.0006, + "loss": 4.335752487182617, + "step": 821 + }, + { + "epoch": 11.419397116644824, + "grad_norm": 0.2968119978904724, + "learning_rate": 0.0006, + "loss": 4.3317670822143555, + "step": 822 + }, + { + "epoch": 11.433377020532983, + "grad_norm": 0.3280937969684601, + "learning_rate": 0.0006, + "loss": 4.322279453277588, + "step": 823 + }, + { + "epoch": 11.447356924421145, + "grad_norm": 0.3598847985267639, + "learning_rate": 0.0006, + "loss": 4.312255859375, + "step": 824 + }, + { + "epoch": 11.461336828309305, + "grad_norm": 0.3996485471725464, + "learning_rate": 0.0006, + "loss": 4.327103614807129, + "step": 825 + }, + { + "epoch": 11.475316732197467, + "grad_norm": 0.4352041780948639, + "learning_rate": 0.0006, + "loss": 4.368639945983887, + "step": 826 + }, + { + "epoch": 11.489296636085626, + "grad_norm": 0.4451918601989746, + "learning_rate": 0.0006, + "loss": 4.335113048553467, + "step": 827 + }, + { + "epoch": 11.503276539973788, + "grad_norm": 0.4403933584690094, + "learning_rate": 0.0006, + "loss": 4.369889259338379, + "step": 828 + }, + { + "epoch": 11.517256443861948, + "grad_norm": 0.34862443804740906, + "learning_rate": 0.0006, + "loss": 4.316292762756348, + "step": 829 + }, + { + "epoch": 11.53123634775011, + "grad_norm": 0.3240634500980377, + "learning_rate": 0.0006, + "loss": 4.328078746795654, + "step": 830 + }, + { + "epoch": 11.54521625163827, + "grad_norm": 0.2445751428604126, + "learning_rate": 0.0006, + "loss": 4.291940689086914, + "step": 831 + }, + { + "epoch": 11.55919615552643, + "grad_norm": 0.24376554787158966, + "learning_rate": 0.0006, + "loss": 4.339217662811279, + "step": 832 + }, + { + "epoch": 11.57317605941459, + "grad_norm": 0.22419725358486176, + "learning_rate": 0.0006, + "loss": 4.2887468338012695, + "step": 833 + }, + { + "epoch": 11.587155963302752, + "grad_norm": 0.22318261861801147, + "learning_rate": 0.0006, + "loss": 4.298492908477783, + "step": 834 + }, + { + "epoch": 11.601135867190912, + "grad_norm": 0.2357342392206192, + "learning_rate": 0.0006, + "loss": 4.328692436218262, + "step": 835 + }, + { + "epoch": 11.615115771079074, + "grad_norm": 0.25450602173805237, + "learning_rate": 0.0006, + "loss": 4.360058784484863, + "step": 836 + }, + { + "epoch": 11.629095674967235, + "grad_norm": 0.24540965259075165, + "learning_rate": 0.0006, + "loss": 4.311890602111816, + "step": 837 + }, + { + "epoch": 11.643075578855395, + "grad_norm": 0.2535638213157654, + "learning_rate": 0.0006, + "loss": 4.327730178833008, + "step": 838 + }, + { + "epoch": 11.657055482743557, + "grad_norm": 0.23063556849956512, + "learning_rate": 0.0006, + "loss": 4.303299903869629, + "step": 839 + }, + { + "epoch": 11.671035386631717, + "grad_norm": 0.21813632547855377, + "learning_rate": 0.0006, + "loss": 4.315352439880371, + "step": 840 + }, + { + "epoch": 11.685015290519878, + "grad_norm": 0.2170359194278717, + "learning_rate": 0.0006, + "loss": 4.278632164001465, + "step": 841 + }, + { + "epoch": 11.698995194408038, + "grad_norm": 0.21059377491474152, + "learning_rate": 0.0006, + "loss": 4.306049346923828, + "step": 842 + }, + { + "epoch": 11.7129750982962, + "grad_norm": 0.19872888922691345, + "learning_rate": 0.0006, + "loss": 4.3091535568237305, + "step": 843 + }, + { + "epoch": 11.72695500218436, + "grad_norm": 0.20059862732887268, + "learning_rate": 0.0006, + "loss": 4.2884063720703125, + "step": 844 + }, + { + "epoch": 11.740934906072521, + "grad_norm": 0.19952483475208282, + "learning_rate": 0.0006, + "loss": 4.293610572814941, + "step": 845 + }, + { + "epoch": 11.754914809960681, + "grad_norm": 0.19794537127017975, + "learning_rate": 0.0006, + "loss": 4.288822174072266, + "step": 846 + }, + { + "epoch": 11.768894713848843, + "grad_norm": 0.213914692401886, + "learning_rate": 0.0006, + "loss": 4.320849418640137, + "step": 847 + }, + { + "epoch": 11.782874617737003, + "grad_norm": 0.18500955402851105, + "learning_rate": 0.0006, + "loss": 4.29300594329834, + "step": 848 + }, + { + "epoch": 11.796854521625164, + "grad_norm": 0.19446656107902527, + "learning_rate": 0.0006, + "loss": 4.3079352378845215, + "step": 849 + }, + { + "epoch": 11.810834425513324, + "grad_norm": 0.22191768884658813, + "learning_rate": 0.0006, + "loss": 4.295967102050781, + "step": 850 + }, + { + "epoch": 11.824814329401486, + "grad_norm": 0.20748084783554077, + "learning_rate": 0.0006, + "loss": 4.332365989685059, + "step": 851 + }, + { + "epoch": 11.838794233289645, + "grad_norm": 0.20993955433368683, + "learning_rate": 0.0006, + "loss": 4.294618129730225, + "step": 852 + }, + { + "epoch": 11.852774137177807, + "grad_norm": 0.23506952822208405, + "learning_rate": 0.0006, + "loss": 4.313426971435547, + "step": 853 + }, + { + "epoch": 11.866754041065967, + "grad_norm": 0.2379443347454071, + "learning_rate": 0.0006, + "loss": 4.297664642333984, + "step": 854 + }, + { + "epoch": 11.880733944954128, + "grad_norm": 0.2127852737903595, + "learning_rate": 0.0006, + "loss": 4.2807698249816895, + "step": 855 + }, + { + "epoch": 11.89471384884229, + "grad_norm": 0.2125532180070877, + "learning_rate": 0.0006, + "loss": 4.310990333557129, + "step": 856 + }, + { + "epoch": 11.90869375273045, + "grad_norm": 0.1996062994003296, + "learning_rate": 0.0006, + "loss": 4.253237724304199, + "step": 857 + }, + { + "epoch": 11.922673656618612, + "grad_norm": 0.20747603476047516, + "learning_rate": 0.0006, + "loss": 4.294193267822266, + "step": 858 + }, + { + "epoch": 11.936653560506771, + "grad_norm": 0.24082425236701965, + "learning_rate": 0.0006, + "loss": 4.269967079162598, + "step": 859 + }, + { + "epoch": 11.950633464394933, + "grad_norm": 0.28993573784828186, + "learning_rate": 0.0006, + "loss": 4.294550895690918, + "step": 860 + }, + { + "epoch": 11.964613368283093, + "grad_norm": 0.29576948285102844, + "learning_rate": 0.0006, + "loss": 4.3188252449035645, + "step": 861 + }, + { + "epoch": 11.978593272171254, + "grad_norm": 0.2754935026168823, + "learning_rate": 0.0006, + "loss": 4.312817573547363, + "step": 862 + }, + { + "epoch": 11.992573176059414, + "grad_norm": 0.3062523305416107, + "learning_rate": 0.0006, + "loss": 4.288214683532715, + "step": 863 + }, + { + "epoch": 12.0, + "grad_norm": 0.3367644250392914, + "learning_rate": 0.0006, + "loss": 4.314888954162598, + "step": 864 + }, + { + "epoch": 12.0, + "eval_loss": 4.516861438751221, + "eval_runtime": 44.2584, + "eval_samples_per_second": 55.176, + "eval_steps_per_second": 3.457, + "step": 864 + }, + { + "epoch": 12.013979903888162, + "grad_norm": 0.2976512014865875, + "learning_rate": 0.0006, + "loss": 4.278797149658203, + "step": 865 + }, + { + "epoch": 12.027959807776321, + "grad_norm": 0.32217127084732056, + "learning_rate": 0.0006, + "loss": 4.2823615074157715, + "step": 866 + }, + { + "epoch": 12.041939711664483, + "grad_norm": 0.31538400053977966, + "learning_rate": 0.0006, + "loss": 4.252805709838867, + "step": 867 + }, + { + "epoch": 12.055919615552643, + "grad_norm": 0.3501375913619995, + "learning_rate": 0.0006, + "loss": 4.276501655578613, + "step": 868 + }, + { + "epoch": 12.069899519440805, + "grad_norm": 0.3452056646347046, + "learning_rate": 0.0006, + "loss": 4.275739669799805, + "step": 869 + }, + { + "epoch": 12.083879423328964, + "grad_norm": 0.36963316798210144, + "learning_rate": 0.0006, + "loss": 4.3215227127075195, + "step": 870 + }, + { + "epoch": 12.097859327217126, + "grad_norm": 0.41605016589164734, + "learning_rate": 0.0006, + "loss": 4.28739595413208, + "step": 871 + }, + { + "epoch": 12.111839231105286, + "grad_norm": 0.37700653076171875, + "learning_rate": 0.0006, + "loss": 4.291154861450195, + "step": 872 + }, + { + "epoch": 12.125819134993447, + "grad_norm": 0.3194253444671631, + "learning_rate": 0.0006, + "loss": 4.259326934814453, + "step": 873 + }, + { + "epoch": 12.139799038881607, + "grad_norm": 0.31770631670951843, + "learning_rate": 0.0006, + "loss": 4.270082473754883, + "step": 874 + }, + { + "epoch": 12.153778942769769, + "grad_norm": 0.3748120069503784, + "learning_rate": 0.0006, + "loss": 4.2727274894714355, + "step": 875 + }, + { + "epoch": 12.167758846657929, + "grad_norm": 0.3821348547935486, + "learning_rate": 0.0006, + "loss": 4.2848286628723145, + "step": 876 + }, + { + "epoch": 12.18173875054609, + "grad_norm": 0.31894201040267944, + "learning_rate": 0.0006, + "loss": 4.289551258087158, + "step": 877 + }, + { + "epoch": 12.19571865443425, + "grad_norm": 0.2695826292037964, + "learning_rate": 0.0006, + "loss": 4.2797346115112305, + "step": 878 + }, + { + "epoch": 12.209698558322412, + "grad_norm": 0.23966269195079803, + "learning_rate": 0.0006, + "loss": 4.24021577835083, + "step": 879 + }, + { + "epoch": 12.223678462210572, + "grad_norm": 0.24342599511146545, + "learning_rate": 0.0006, + "loss": 4.277721881866455, + "step": 880 + }, + { + "epoch": 12.237658366098733, + "grad_norm": 0.2522958815097809, + "learning_rate": 0.0006, + "loss": 4.263946533203125, + "step": 881 + }, + { + "epoch": 12.251638269986893, + "grad_norm": 0.2708299458026886, + "learning_rate": 0.0006, + "loss": 4.274540901184082, + "step": 882 + }, + { + "epoch": 12.265618173875055, + "grad_norm": 0.2978788912296295, + "learning_rate": 0.0006, + "loss": 4.2674970626831055, + "step": 883 + }, + { + "epoch": 12.279598077763215, + "grad_norm": 0.2898774743080139, + "learning_rate": 0.0006, + "loss": 4.235060691833496, + "step": 884 + }, + { + "epoch": 12.293577981651376, + "grad_norm": 0.27941837906837463, + "learning_rate": 0.0006, + "loss": 4.284140586853027, + "step": 885 + }, + { + "epoch": 12.307557885539538, + "grad_norm": 0.25050559639930725, + "learning_rate": 0.0006, + "loss": 4.270134925842285, + "step": 886 + }, + { + "epoch": 12.321537789427698, + "grad_norm": 0.21867156028747559, + "learning_rate": 0.0006, + "loss": 4.241571426391602, + "step": 887 + }, + { + "epoch": 12.33551769331586, + "grad_norm": 0.24735847115516663, + "learning_rate": 0.0006, + "loss": 4.253087997436523, + "step": 888 + }, + { + "epoch": 12.349497597204019, + "grad_norm": 0.23069104552268982, + "learning_rate": 0.0006, + "loss": 4.258606910705566, + "step": 889 + }, + { + "epoch": 12.36347750109218, + "grad_norm": 0.2594369947910309, + "learning_rate": 0.0006, + "loss": 4.307351112365723, + "step": 890 + }, + { + "epoch": 12.37745740498034, + "grad_norm": 0.25349098443984985, + "learning_rate": 0.0006, + "loss": 4.264268398284912, + "step": 891 + }, + { + "epoch": 12.391437308868502, + "grad_norm": 0.2550840675830841, + "learning_rate": 0.0006, + "loss": 4.247092247009277, + "step": 892 + }, + { + "epoch": 12.405417212756662, + "grad_norm": 0.2107602059841156, + "learning_rate": 0.0006, + "loss": 4.240527153015137, + "step": 893 + }, + { + "epoch": 12.419397116644824, + "grad_norm": 0.2025548368692398, + "learning_rate": 0.0006, + "loss": 4.244686126708984, + "step": 894 + }, + { + "epoch": 12.433377020532983, + "grad_norm": 0.22061701118946075, + "learning_rate": 0.0006, + "loss": 4.233231544494629, + "step": 895 + }, + { + "epoch": 12.447356924421145, + "grad_norm": 0.19503085315227509, + "learning_rate": 0.0006, + "loss": 4.23851203918457, + "step": 896 + }, + { + "epoch": 12.461336828309305, + "grad_norm": 0.19313643872737885, + "learning_rate": 0.0006, + "loss": 4.190886497497559, + "step": 897 + }, + { + "epoch": 12.475316732197467, + "grad_norm": 0.21094176173210144, + "learning_rate": 0.0006, + "loss": 4.277888298034668, + "step": 898 + }, + { + "epoch": 12.489296636085626, + "grad_norm": 0.1980651170015335, + "learning_rate": 0.0006, + "loss": 4.251066207885742, + "step": 899 + }, + { + "epoch": 12.503276539973788, + "grad_norm": 0.179737389087677, + "learning_rate": 0.0006, + "loss": 4.194703102111816, + "step": 900 + }, + { + "epoch": 12.517256443861948, + "grad_norm": 0.19069281220436096, + "learning_rate": 0.0006, + "loss": 4.242412567138672, + "step": 901 + }, + { + "epoch": 12.53123634775011, + "grad_norm": 0.191154345870018, + "learning_rate": 0.0006, + "loss": 4.2432780265808105, + "step": 902 + }, + { + "epoch": 12.54521625163827, + "grad_norm": 0.19760103523731232, + "learning_rate": 0.0006, + "loss": 4.23294734954834, + "step": 903 + }, + { + "epoch": 12.55919615552643, + "grad_norm": 0.19982324540615082, + "learning_rate": 0.0006, + "loss": 4.249764442443848, + "step": 904 + }, + { + "epoch": 12.57317605941459, + "grad_norm": 0.1986108422279358, + "learning_rate": 0.0006, + "loss": 4.213435649871826, + "step": 905 + }, + { + "epoch": 12.587155963302752, + "grad_norm": 0.19727319478988647, + "learning_rate": 0.0006, + "loss": 4.247962951660156, + "step": 906 + }, + { + "epoch": 12.601135867190912, + "grad_norm": 0.23404482007026672, + "learning_rate": 0.0006, + "loss": 4.237396240234375, + "step": 907 + }, + { + "epoch": 12.615115771079074, + "grad_norm": 0.21136441826820374, + "learning_rate": 0.0006, + "loss": 4.236040115356445, + "step": 908 + }, + { + "epoch": 12.629095674967235, + "grad_norm": 0.2209048718214035, + "learning_rate": 0.0006, + "loss": 4.234212875366211, + "step": 909 + }, + { + "epoch": 12.643075578855395, + "grad_norm": 0.22120307385921478, + "learning_rate": 0.0006, + "loss": 4.2711076736450195, + "step": 910 + }, + { + "epoch": 12.657055482743557, + "grad_norm": 0.22733066976070404, + "learning_rate": 0.0006, + "loss": 4.231651306152344, + "step": 911 + }, + { + "epoch": 12.671035386631717, + "grad_norm": 0.2435602843761444, + "learning_rate": 0.0006, + "loss": 4.249372482299805, + "step": 912 + }, + { + "epoch": 12.685015290519878, + "grad_norm": 0.28881654143333435, + "learning_rate": 0.0006, + "loss": 4.2626051902771, + "step": 913 + }, + { + "epoch": 12.698995194408038, + "grad_norm": 0.3211199641227722, + "learning_rate": 0.0006, + "loss": 4.254220485687256, + "step": 914 + }, + { + "epoch": 12.7129750982962, + "grad_norm": 0.3118100166320801, + "learning_rate": 0.0006, + "loss": 4.233747959136963, + "step": 915 + }, + { + "epoch": 12.72695500218436, + "grad_norm": 0.33411866426467896, + "learning_rate": 0.0006, + "loss": 4.270386219024658, + "step": 916 + }, + { + "epoch": 12.740934906072521, + "grad_norm": 0.2968253195285797, + "learning_rate": 0.0006, + "loss": 4.242254257202148, + "step": 917 + }, + { + "epoch": 12.754914809960681, + "grad_norm": 0.2959132194519043, + "learning_rate": 0.0006, + "loss": 4.232100486755371, + "step": 918 + }, + { + "epoch": 12.768894713848843, + "grad_norm": 0.2729283273220062, + "learning_rate": 0.0006, + "loss": 4.233869552612305, + "step": 919 + }, + { + "epoch": 12.782874617737003, + "grad_norm": 0.2669033408164978, + "learning_rate": 0.0006, + "loss": 4.261008262634277, + "step": 920 + }, + { + "epoch": 12.796854521625164, + "grad_norm": 0.2738507091999054, + "learning_rate": 0.0006, + "loss": 4.2286763191223145, + "step": 921 + }, + { + "epoch": 12.810834425513324, + "grad_norm": 0.29105183482170105, + "learning_rate": 0.0006, + "loss": 4.281410217285156, + "step": 922 + }, + { + "epoch": 12.824814329401486, + "grad_norm": 0.31330201029777527, + "learning_rate": 0.0006, + "loss": 4.264181613922119, + "step": 923 + }, + { + "epoch": 12.838794233289645, + "grad_norm": 0.31324025988578796, + "learning_rate": 0.0006, + "loss": 4.250385284423828, + "step": 924 + }, + { + "epoch": 12.852774137177807, + "grad_norm": 0.2727925181388855, + "learning_rate": 0.0006, + "loss": 4.24821138381958, + "step": 925 + }, + { + "epoch": 12.866754041065967, + "grad_norm": 0.27350082993507385, + "learning_rate": 0.0006, + "loss": 4.230215072631836, + "step": 926 + }, + { + "epoch": 12.880733944954128, + "grad_norm": 0.2269950658082962, + "learning_rate": 0.0006, + "loss": 4.210305213928223, + "step": 927 + }, + { + "epoch": 12.89471384884229, + "grad_norm": 0.24667619168758392, + "learning_rate": 0.0006, + "loss": 4.239969253540039, + "step": 928 + }, + { + "epoch": 12.90869375273045, + "grad_norm": 0.22510501742362976, + "learning_rate": 0.0006, + "loss": 4.192750930786133, + "step": 929 + }, + { + "epoch": 12.922673656618612, + "grad_norm": 0.22887611389160156, + "learning_rate": 0.0006, + "loss": 4.264463424682617, + "step": 930 + }, + { + "epoch": 12.936653560506771, + "grad_norm": 0.22195978462696075, + "learning_rate": 0.0006, + "loss": 4.205256938934326, + "step": 931 + }, + { + "epoch": 12.950633464394933, + "grad_norm": 0.23184578120708466, + "learning_rate": 0.0006, + "loss": 4.214578628540039, + "step": 932 + }, + { + "epoch": 12.964613368283093, + "grad_norm": 0.2186676561832428, + "learning_rate": 0.0006, + "loss": 4.227711200714111, + "step": 933 + }, + { + "epoch": 12.978593272171254, + "grad_norm": 0.2160426527261734, + "learning_rate": 0.0006, + "loss": 4.221796989440918, + "step": 934 + }, + { + "epoch": 12.992573176059414, + "grad_norm": 0.21562792360782623, + "learning_rate": 0.0006, + "loss": 4.21957540512085, + "step": 935 + }, + { + "epoch": 13.0, + "grad_norm": 0.22538058459758759, + "learning_rate": 0.0006, + "loss": 4.2353973388671875, + "step": 936 + }, + { + "epoch": 13.0, + "eval_loss": 4.426600933074951, + "eval_runtime": 44.8138, + "eval_samples_per_second": 54.492, + "eval_steps_per_second": 3.414, + "step": 936 + }, + { + "epoch": 13.013979903888162, + "grad_norm": 0.24888049066066742, + "learning_rate": 0.0006, + "loss": 4.18648624420166, + "step": 937 + }, + { + "epoch": 13.027959807776321, + "grad_norm": 0.28330180048942566, + "learning_rate": 0.0006, + "loss": 4.188892364501953, + "step": 938 + }, + { + "epoch": 13.041939711664483, + "grad_norm": 0.31152188777923584, + "learning_rate": 0.0006, + "loss": 4.2053399085998535, + "step": 939 + }, + { + "epoch": 13.055919615552643, + "grad_norm": 0.2842433452606201, + "learning_rate": 0.0006, + "loss": 4.191902160644531, + "step": 940 + }, + { + "epoch": 13.069899519440805, + "grad_norm": 0.23664532601833344, + "learning_rate": 0.0006, + "loss": 4.1831865310668945, + "step": 941 + }, + { + "epoch": 13.083879423328964, + "grad_norm": 0.24204140901565552, + "learning_rate": 0.0006, + "loss": 4.202641487121582, + "step": 942 + }, + { + "epoch": 13.097859327217126, + "grad_norm": 0.235311359167099, + "learning_rate": 0.0006, + "loss": 4.174511909484863, + "step": 943 + }, + { + "epoch": 13.111839231105286, + "grad_norm": 0.27127715945243835, + "learning_rate": 0.0006, + "loss": 4.201844215393066, + "step": 944 + }, + { + "epoch": 13.125819134993447, + "grad_norm": 0.2722373604774475, + "learning_rate": 0.0006, + "loss": 4.157383918762207, + "step": 945 + }, + { + "epoch": 13.139799038881607, + "grad_norm": 0.25446659326553345, + "learning_rate": 0.0006, + "loss": 4.221236228942871, + "step": 946 + }, + { + "epoch": 13.153778942769769, + "grad_norm": 0.273017019033432, + "learning_rate": 0.0006, + "loss": 4.195512771606445, + "step": 947 + }, + { + "epoch": 13.167758846657929, + "grad_norm": 0.24766312539577484, + "learning_rate": 0.0006, + "loss": 4.220959663391113, + "step": 948 + }, + { + "epoch": 13.18173875054609, + "grad_norm": 0.24636317789554596, + "learning_rate": 0.0006, + "loss": 4.214302062988281, + "step": 949 + }, + { + "epoch": 13.19571865443425, + "grad_norm": 0.3177756667137146, + "learning_rate": 0.0006, + "loss": 4.213500022888184, + "step": 950 + }, + { + "epoch": 13.209698558322412, + "grad_norm": 0.44579195976257324, + "learning_rate": 0.0006, + "loss": 4.227644920349121, + "step": 951 + }, + { + "epoch": 13.223678462210572, + "grad_norm": 0.4217414855957031, + "learning_rate": 0.0006, + "loss": 4.180937767028809, + "step": 952 + }, + { + "epoch": 13.237658366098733, + "grad_norm": 0.30148059129714966, + "learning_rate": 0.0006, + "loss": 4.207760810852051, + "step": 953 + }, + { + "epoch": 13.251638269986893, + "grad_norm": 0.3192492127418518, + "learning_rate": 0.0006, + "loss": 4.197999000549316, + "step": 954 + }, + { + "epoch": 13.265618173875055, + "grad_norm": 0.37334588170051575, + "learning_rate": 0.0006, + "loss": 4.208001136779785, + "step": 955 + }, + { + "epoch": 13.279598077763215, + "grad_norm": 0.4059637784957886, + "learning_rate": 0.0006, + "loss": 4.211322784423828, + "step": 956 + }, + { + "epoch": 13.293577981651376, + "grad_norm": 0.3389599323272705, + "learning_rate": 0.0006, + "loss": 4.204404354095459, + "step": 957 + }, + { + "epoch": 13.307557885539538, + "grad_norm": 0.2675766050815582, + "learning_rate": 0.0006, + "loss": 4.245941162109375, + "step": 958 + }, + { + "epoch": 13.321537789427698, + "grad_norm": 0.2730264365673065, + "learning_rate": 0.0006, + "loss": 4.2221221923828125, + "step": 959 + }, + { + "epoch": 13.33551769331586, + "grad_norm": 0.26458224654197693, + "learning_rate": 0.0006, + "loss": 4.205596923828125, + "step": 960 + }, + { + "epoch": 13.349497597204019, + "grad_norm": 0.2872551381587982, + "learning_rate": 0.0006, + "loss": 4.196977615356445, + "step": 961 + }, + { + "epoch": 13.36347750109218, + "grad_norm": 0.2954796850681305, + "learning_rate": 0.0006, + "loss": 4.202796936035156, + "step": 962 + }, + { + "epoch": 13.37745740498034, + "grad_norm": 0.2619425654411316, + "learning_rate": 0.0006, + "loss": 4.196845054626465, + "step": 963 + }, + { + "epoch": 13.391437308868502, + "grad_norm": 0.30088478326797485, + "learning_rate": 0.0006, + "loss": 4.219697952270508, + "step": 964 + }, + { + "epoch": 13.405417212756662, + "grad_norm": 0.30388689041137695, + "learning_rate": 0.0006, + "loss": 4.187566757202148, + "step": 965 + }, + { + "epoch": 13.419397116644824, + "grad_norm": 0.27918127179145813, + "learning_rate": 0.0006, + "loss": 4.223600387573242, + "step": 966 + }, + { + "epoch": 13.433377020532983, + "grad_norm": 0.27634528279304504, + "learning_rate": 0.0006, + "loss": 4.165332317352295, + "step": 967 + }, + { + "epoch": 13.447356924421145, + "grad_norm": 0.28830021619796753, + "learning_rate": 0.0006, + "loss": 4.204029560089111, + "step": 968 + }, + { + "epoch": 13.461336828309305, + "grad_norm": 0.29220864176750183, + "learning_rate": 0.0006, + "loss": 4.218057155609131, + "step": 969 + }, + { + "epoch": 13.475316732197467, + "grad_norm": 0.3089624345302582, + "learning_rate": 0.0006, + "loss": 4.200654983520508, + "step": 970 + }, + { + "epoch": 13.489296636085626, + "grad_norm": 0.36479851603507996, + "learning_rate": 0.0006, + "loss": 4.182811737060547, + "step": 971 + }, + { + "epoch": 13.503276539973788, + "grad_norm": 0.37561097741127014, + "learning_rate": 0.0006, + "loss": 4.190266132354736, + "step": 972 + }, + { + "epoch": 13.517256443861948, + "grad_norm": 0.3263583183288574, + "learning_rate": 0.0006, + "loss": 4.214815616607666, + "step": 973 + }, + { + "epoch": 13.53123634775011, + "grad_norm": 0.21552999317646027, + "learning_rate": 0.0006, + "loss": 4.171380043029785, + "step": 974 + }, + { + "epoch": 13.54521625163827, + "grad_norm": 0.247328519821167, + "learning_rate": 0.0006, + "loss": 4.175377368927002, + "step": 975 + }, + { + "epoch": 13.55919615552643, + "grad_norm": 0.23740540444850922, + "learning_rate": 0.0006, + "loss": 4.212357997894287, + "step": 976 + }, + { + "epoch": 13.57317605941459, + "grad_norm": 0.21533876657485962, + "learning_rate": 0.0006, + "loss": 4.203285217285156, + "step": 977 + }, + { + "epoch": 13.587155963302752, + "grad_norm": 0.21462024748325348, + "learning_rate": 0.0006, + "loss": 4.178012371063232, + "step": 978 + }, + { + "epoch": 13.601135867190912, + "grad_norm": 0.2279169261455536, + "learning_rate": 0.0006, + "loss": 4.193912982940674, + "step": 979 + }, + { + "epoch": 13.615115771079074, + "grad_norm": 0.2202417552471161, + "learning_rate": 0.0006, + "loss": 4.167629718780518, + "step": 980 + }, + { + "epoch": 13.629095674967235, + "grad_norm": 0.20586472749710083, + "learning_rate": 0.0006, + "loss": 4.159290313720703, + "step": 981 + }, + { + "epoch": 13.643075578855395, + "grad_norm": 0.20200690627098083, + "learning_rate": 0.0006, + "loss": 4.210315227508545, + "step": 982 + }, + { + "epoch": 13.657055482743557, + "grad_norm": 0.21710257232189178, + "learning_rate": 0.0006, + "loss": 4.21730375289917, + "step": 983 + }, + { + "epoch": 13.671035386631717, + "grad_norm": 0.22058045864105225, + "learning_rate": 0.0006, + "loss": 4.1996073722839355, + "step": 984 + }, + { + "epoch": 13.685015290519878, + "grad_norm": 0.21549592912197113, + "learning_rate": 0.0006, + "loss": 4.209203720092773, + "step": 985 + }, + { + "epoch": 13.698995194408038, + "grad_norm": 0.22274717688560486, + "learning_rate": 0.0006, + "loss": 4.220660209655762, + "step": 986 + }, + { + "epoch": 13.7129750982962, + "grad_norm": 0.22791637480258942, + "learning_rate": 0.0006, + "loss": 4.158679962158203, + "step": 987 + }, + { + "epoch": 13.72695500218436, + "grad_norm": 0.216218963265419, + "learning_rate": 0.0006, + "loss": 4.188124656677246, + "step": 988 + }, + { + "epoch": 13.740934906072521, + "grad_norm": 0.19149383902549744, + "learning_rate": 0.0006, + "loss": 4.181729316711426, + "step": 989 + }, + { + "epoch": 13.754914809960681, + "grad_norm": 0.18964019417762756, + "learning_rate": 0.0006, + "loss": 4.184767246246338, + "step": 990 + }, + { + "epoch": 13.768894713848843, + "grad_norm": 0.1778000295162201, + "learning_rate": 0.0006, + "loss": 4.1802263259887695, + "step": 991 + }, + { + "epoch": 13.782874617737003, + "grad_norm": 0.18277616798877716, + "learning_rate": 0.0006, + "loss": 4.1657867431640625, + "step": 992 + }, + { + "epoch": 13.796854521625164, + "grad_norm": 0.18610034883022308, + "learning_rate": 0.0006, + "loss": 4.156744956970215, + "step": 993 + }, + { + "epoch": 13.810834425513324, + "grad_norm": 0.19332963228225708, + "learning_rate": 0.0006, + "loss": 4.143558502197266, + "step": 994 + }, + { + "epoch": 13.824814329401486, + "grad_norm": 0.19758112728595734, + "learning_rate": 0.0006, + "loss": 4.195793151855469, + "step": 995 + }, + { + "epoch": 13.838794233289645, + "grad_norm": 0.1933647245168686, + "learning_rate": 0.0006, + "loss": 4.169734954833984, + "step": 996 + }, + { + "epoch": 13.852774137177807, + "grad_norm": 0.2362028956413269, + "learning_rate": 0.0006, + "loss": 4.175025939941406, + "step": 997 + }, + { + "epoch": 13.866754041065967, + "grad_norm": 0.2465490996837616, + "learning_rate": 0.0006, + "loss": 4.173909664154053, + "step": 998 + }, + { + "epoch": 13.880733944954128, + "grad_norm": 0.23449952900409698, + "learning_rate": 0.0006, + "loss": 4.173429489135742, + "step": 999 + }, + { + "epoch": 13.89471384884229, + "grad_norm": 0.2282160222530365, + "learning_rate": 0.0006, + "loss": 4.158538341522217, + "step": 1000 + }, + { + "epoch": 13.90869375273045, + "grad_norm": 0.21066738665103912, + "learning_rate": 0.0006, + "loss": 4.171584129333496, + "step": 1001 + }, + { + "epoch": 13.922673656618612, + "grad_norm": 0.18787573277950287, + "learning_rate": 0.0006, + "loss": 4.1837544441223145, + "step": 1002 + }, + { + "epoch": 13.936653560506771, + "grad_norm": 0.2001059353351593, + "learning_rate": 0.0006, + "loss": 4.160369873046875, + "step": 1003 + }, + { + "epoch": 13.950633464394933, + "grad_norm": 0.21644988656044006, + "learning_rate": 0.0006, + "loss": 4.221372604370117, + "step": 1004 + }, + { + "epoch": 13.964613368283093, + "grad_norm": 0.22083887457847595, + "learning_rate": 0.0006, + "loss": 4.149261474609375, + "step": 1005 + }, + { + "epoch": 13.978593272171254, + "grad_norm": 0.2201409637928009, + "learning_rate": 0.0006, + "loss": 4.192010879516602, + "step": 1006 + }, + { + "epoch": 13.992573176059414, + "grad_norm": 0.18888601660728455, + "learning_rate": 0.0006, + "loss": 4.17539119720459, + "step": 1007 + }, + { + "epoch": 14.0, + "grad_norm": 0.2073872834444046, + "learning_rate": 0.0006, + "loss": 4.145265579223633, + "step": 1008 + }, + { + "epoch": 14.0, + "eval_loss": 4.36876106262207, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 1008 + }, + { + "epoch": 14.013979903888162, + "grad_norm": 0.20773135125637054, + "learning_rate": 0.0006, + "loss": 4.132615089416504, + "step": 1009 + }, + { + "epoch": 14.027959807776321, + "grad_norm": 0.22409620881080627, + "learning_rate": 0.0006, + "loss": 4.172839164733887, + "step": 1010 + }, + { + "epoch": 14.041939711664483, + "grad_norm": 0.24046066403388977, + "learning_rate": 0.0006, + "loss": 4.126678943634033, + "step": 1011 + }, + { + "epoch": 14.055919615552643, + "grad_norm": 0.29185160994529724, + "learning_rate": 0.0006, + "loss": 4.177952766418457, + "step": 1012 + }, + { + "epoch": 14.069899519440805, + "grad_norm": 0.2984033226966858, + "learning_rate": 0.0006, + "loss": 4.155030250549316, + "step": 1013 + }, + { + "epoch": 14.083879423328964, + "grad_norm": 0.30262473225593567, + "learning_rate": 0.0006, + "loss": 4.145394325256348, + "step": 1014 + }, + { + "epoch": 14.097859327217126, + "grad_norm": 0.3278133273124695, + "learning_rate": 0.0006, + "loss": 4.172739028930664, + "step": 1015 + }, + { + "epoch": 14.111839231105286, + "grad_norm": 0.3285452425479889, + "learning_rate": 0.0006, + "loss": 4.153196334838867, + "step": 1016 + }, + { + "epoch": 14.125819134993447, + "grad_norm": 0.33912697434425354, + "learning_rate": 0.0006, + "loss": 4.098162651062012, + "step": 1017 + }, + { + "epoch": 14.139799038881607, + "grad_norm": 0.32080814242362976, + "learning_rate": 0.0006, + "loss": 4.157135009765625, + "step": 1018 + }, + { + "epoch": 14.153778942769769, + "grad_norm": 0.31288477778434753, + "learning_rate": 0.0006, + "loss": 4.142683029174805, + "step": 1019 + }, + { + "epoch": 14.167758846657929, + "grad_norm": 0.350289523601532, + "learning_rate": 0.0006, + "loss": 4.134700775146484, + "step": 1020 + }, + { + "epoch": 14.18173875054609, + "grad_norm": 0.34274575114250183, + "learning_rate": 0.0006, + "loss": 4.1578569412231445, + "step": 1021 + }, + { + "epoch": 14.19571865443425, + "grad_norm": 0.2843035161495209, + "learning_rate": 0.0006, + "loss": 4.13760232925415, + "step": 1022 + }, + { + "epoch": 14.209698558322412, + "grad_norm": 0.28235161304473877, + "learning_rate": 0.0006, + "loss": 4.1492462158203125, + "step": 1023 + }, + { + "epoch": 14.223678462210572, + "grad_norm": 0.24407248198986053, + "learning_rate": 0.0006, + "loss": 4.144372463226318, + "step": 1024 + }, + { + "epoch": 14.237658366098733, + "grad_norm": 0.2489742934703827, + "learning_rate": 0.0006, + "loss": 4.137950897216797, + "step": 1025 + }, + { + "epoch": 14.251638269986893, + "grad_norm": 0.26035651564598083, + "learning_rate": 0.0006, + "loss": 4.144070625305176, + "step": 1026 + }, + { + "epoch": 14.265618173875055, + "grad_norm": 0.2726516127586365, + "learning_rate": 0.0006, + "loss": 4.145204067230225, + "step": 1027 + }, + { + "epoch": 14.279598077763215, + "grad_norm": 0.2723483443260193, + "learning_rate": 0.0006, + "loss": 4.118407249450684, + "step": 1028 + }, + { + "epoch": 14.293577981651376, + "grad_norm": 0.27476269006729126, + "learning_rate": 0.0006, + "loss": 4.111325263977051, + "step": 1029 + }, + { + "epoch": 14.307557885539538, + "grad_norm": 0.26202502846717834, + "learning_rate": 0.0006, + "loss": 4.122248649597168, + "step": 1030 + }, + { + "epoch": 14.321537789427698, + "grad_norm": 0.2472032904624939, + "learning_rate": 0.0006, + "loss": 4.157790184020996, + "step": 1031 + }, + { + "epoch": 14.33551769331586, + "grad_norm": 0.2518343925476074, + "learning_rate": 0.0006, + "loss": 4.109132766723633, + "step": 1032 + }, + { + "epoch": 14.349497597204019, + "grad_norm": 0.2652401924133301, + "learning_rate": 0.0006, + "loss": 4.144079685211182, + "step": 1033 + }, + { + "epoch": 14.36347750109218, + "grad_norm": 0.2356770783662796, + "learning_rate": 0.0006, + "loss": 4.128426551818848, + "step": 1034 + }, + { + "epoch": 14.37745740498034, + "grad_norm": 0.2164214551448822, + "learning_rate": 0.0006, + "loss": 4.1644392013549805, + "step": 1035 + }, + { + "epoch": 14.391437308868502, + "grad_norm": 0.22383111715316772, + "learning_rate": 0.0006, + "loss": 4.165862083435059, + "step": 1036 + }, + { + "epoch": 14.405417212756662, + "grad_norm": 0.23152419924736023, + "learning_rate": 0.0006, + "loss": 4.140036582946777, + "step": 1037 + }, + { + "epoch": 14.419397116644824, + "grad_norm": 0.2387741357088089, + "learning_rate": 0.0006, + "loss": 4.130461692810059, + "step": 1038 + }, + { + "epoch": 14.433377020532983, + "grad_norm": 0.24018129706382751, + "learning_rate": 0.0006, + "loss": 4.148482322692871, + "step": 1039 + }, + { + "epoch": 14.447356924421145, + "grad_norm": 0.25487351417541504, + "learning_rate": 0.0006, + "loss": 4.158121109008789, + "step": 1040 + }, + { + "epoch": 14.461336828309305, + "grad_norm": 0.28220096230506897, + "learning_rate": 0.0006, + "loss": 4.160198211669922, + "step": 1041 + }, + { + "epoch": 14.475316732197467, + "grad_norm": 0.2574434280395508, + "learning_rate": 0.0006, + "loss": 4.168512344360352, + "step": 1042 + }, + { + "epoch": 14.489296636085626, + "grad_norm": 0.22569820284843445, + "learning_rate": 0.0006, + "loss": 4.1595001220703125, + "step": 1043 + }, + { + "epoch": 14.503276539973788, + "grad_norm": 0.2473423182964325, + "learning_rate": 0.0006, + "loss": 4.084580898284912, + "step": 1044 + }, + { + "epoch": 14.517256443861948, + "grad_norm": 0.24281060695648193, + "learning_rate": 0.0006, + "loss": 4.139714241027832, + "step": 1045 + }, + { + "epoch": 14.53123634775011, + "grad_norm": 0.24691344797611237, + "learning_rate": 0.0006, + "loss": 4.115398406982422, + "step": 1046 + }, + { + "epoch": 14.54521625163827, + "grad_norm": 0.2583645284175873, + "learning_rate": 0.0006, + "loss": 4.142148494720459, + "step": 1047 + }, + { + "epoch": 14.55919615552643, + "grad_norm": 0.23258574306964874, + "learning_rate": 0.0006, + "loss": 4.16251277923584, + "step": 1048 + }, + { + "epoch": 14.57317605941459, + "grad_norm": 0.22103039920330048, + "learning_rate": 0.0006, + "loss": 4.1308441162109375, + "step": 1049 + }, + { + "epoch": 14.587155963302752, + "grad_norm": 0.23713579773902893, + "learning_rate": 0.0006, + "loss": 4.1565985679626465, + "step": 1050 + }, + { + "epoch": 14.601135867190912, + "grad_norm": 0.24406634271144867, + "learning_rate": 0.0006, + "loss": 4.14628267288208, + "step": 1051 + }, + { + "epoch": 14.615115771079074, + "grad_norm": 0.26821228861808777, + "learning_rate": 0.0006, + "loss": 4.138063430786133, + "step": 1052 + }, + { + "epoch": 14.629095674967235, + "grad_norm": 0.25483864545822144, + "learning_rate": 0.0006, + "loss": 4.1311163902282715, + "step": 1053 + }, + { + "epoch": 14.643075578855395, + "grad_norm": 0.23937982320785522, + "learning_rate": 0.0006, + "loss": 4.150882244110107, + "step": 1054 + }, + { + "epoch": 14.657055482743557, + "grad_norm": 0.21896475553512573, + "learning_rate": 0.0006, + "loss": 4.114015102386475, + "step": 1055 + }, + { + "epoch": 14.671035386631717, + "grad_norm": 0.20821231603622437, + "learning_rate": 0.0006, + "loss": 4.139034271240234, + "step": 1056 + }, + { + "epoch": 14.685015290519878, + "grad_norm": 0.1978551596403122, + "learning_rate": 0.0006, + "loss": 4.1810503005981445, + "step": 1057 + }, + { + "epoch": 14.698995194408038, + "grad_norm": 0.1945771872997284, + "learning_rate": 0.0006, + "loss": 4.120734214782715, + "step": 1058 + }, + { + "epoch": 14.7129750982962, + "grad_norm": 0.19518673419952393, + "learning_rate": 0.0006, + "loss": 4.14264440536499, + "step": 1059 + }, + { + "epoch": 14.72695500218436, + "grad_norm": 0.202596515417099, + "learning_rate": 0.0006, + "loss": 4.151649475097656, + "step": 1060 + }, + { + "epoch": 14.740934906072521, + "grad_norm": 0.1904762089252472, + "learning_rate": 0.0006, + "loss": 4.127899169921875, + "step": 1061 + }, + { + "epoch": 14.754914809960681, + "grad_norm": 0.20685508847236633, + "learning_rate": 0.0006, + "loss": 4.093445777893066, + "step": 1062 + }, + { + "epoch": 14.768894713848843, + "grad_norm": 0.22678329050540924, + "learning_rate": 0.0006, + "loss": 4.132084369659424, + "step": 1063 + }, + { + "epoch": 14.782874617737003, + "grad_norm": 0.24631841480731964, + "learning_rate": 0.0006, + "loss": 4.154788970947266, + "step": 1064 + }, + { + "epoch": 14.796854521625164, + "grad_norm": 0.24445782601833344, + "learning_rate": 0.0006, + "loss": 4.144735336303711, + "step": 1065 + }, + { + "epoch": 14.810834425513324, + "grad_norm": 0.22330640256404877, + "learning_rate": 0.0006, + "loss": 4.159893989562988, + "step": 1066 + }, + { + "epoch": 14.824814329401486, + "grad_norm": 0.22422967851161957, + "learning_rate": 0.0006, + "loss": 4.104874610900879, + "step": 1067 + }, + { + "epoch": 14.838794233289645, + "grad_norm": 0.24583931267261505, + "learning_rate": 0.0006, + "loss": 4.139403820037842, + "step": 1068 + }, + { + "epoch": 14.852774137177807, + "grad_norm": 0.2917379140853882, + "learning_rate": 0.0006, + "loss": 4.168988227844238, + "step": 1069 + }, + { + "epoch": 14.866754041065967, + "grad_norm": 0.3171777129173279, + "learning_rate": 0.0006, + "loss": 4.131263732910156, + "step": 1070 + }, + { + "epoch": 14.880733944954128, + "grad_norm": 0.3039591312408447, + "learning_rate": 0.0006, + "loss": 4.149853706359863, + "step": 1071 + }, + { + "epoch": 14.89471384884229, + "grad_norm": 0.2690650522708893, + "learning_rate": 0.0006, + "loss": 4.154787540435791, + "step": 1072 + }, + { + "epoch": 14.90869375273045, + "grad_norm": 0.28683212399482727, + "learning_rate": 0.0006, + "loss": 4.12751579284668, + "step": 1073 + }, + { + "epoch": 14.922673656618612, + "grad_norm": 0.30022913217544556, + "learning_rate": 0.0006, + "loss": 4.141940116882324, + "step": 1074 + }, + { + "epoch": 14.936653560506771, + "grad_norm": 0.3312259316444397, + "learning_rate": 0.0006, + "loss": 4.141905784606934, + "step": 1075 + }, + { + "epoch": 14.950633464394933, + "grad_norm": 0.31159237027168274, + "learning_rate": 0.0006, + "loss": 4.160192966461182, + "step": 1076 + }, + { + "epoch": 14.964613368283093, + "grad_norm": 0.30093592405319214, + "learning_rate": 0.0006, + "loss": 4.1085076332092285, + "step": 1077 + }, + { + "epoch": 14.978593272171254, + "grad_norm": 0.2728535830974579, + "learning_rate": 0.0006, + "loss": 4.156959056854248, + "step": 1078 + }, + { + "epoch": 14.992573176059414, + "grad_norm": 0.24766813218593597, + "learning_rate": 0.0006, + "loss": 4.113999843597412, + "step": 1079 + }, + { + "epoch": 15.0, + "grad_norm": 0.2538154721260071, + "learning_rate": 0.0006, + "loss": 4.147134780883789, + "step": 1080 + }, + { + "epoch": 15.0, + "eval_loss": 4.323154926300049, + "eval_runtime": 44.8813, + "eval_samples_per_second": 54.41, + "eval_steps_per_second": 3.409, + "step": 1080 + }, + { + "epoch": 15.013979903888162, + "grad_norm": 0.22535280883312225, + "learning_rate": 0.0006, + "loss": 4.112179756164551, + "step": 1081 + }, + { + "epoch": 15.027959807776321, + "grad_norm": 0.24340929090976715, + "learning_rate": 0.0006, + "loss": 4.080923080444336, + "step": 1082 + }, + { + "epoch": 15.041939711664483, + "grad_norm": 0.23159465193748474, + "learning_rate": 0.0006, + "loss": 4.097067356109619, + "step": 1083 + }, + { + "epoch": 15.055919615552643, + "grad_norm": 0.22674769163131714, + "learning_rate": 0.0006, + "loss": 4.118601322174072, + "step": 1084 + }, + { + "epoch": 15.069899519440805, + "grad_norm": 0.2524292469024658, + "learning_rate": 0.0006, + "loss": 4.101109504699707, + "step": 1085 + }, + { + "epoch": 15.083879423328964, + "grad_norm": 0.2505405843257904, + "learning_rate": 0.0006, + "loss": 4.121405601501465, + "step": 1086 + }, + { + "epoch": 15.097859327217126, + "grad_norm": 0.2557983696460724, + "learning_rate": 0.0006, + "loss": 4.1063947677612305, + "step": 1087 + }, + { + "epoch": 15.111839231105286, + "grad_norm": 0.24452129006385803, + "learning_rate": 0.0006, + "loss": 4.086133003234863, + "step": 1088 + }, + { + "epoch": 15.125819134993447, + "grad_norm": 0.25821781158447266, + "learning_rate": 0.0006, + "loss": 4.076262950897217, + "step": 1089 + }, + { + "epoch": 15.139799038881607, + "grad_norm": 0.23650537431240082, + "learning_rate": 0.0006, + "loss": 4.101842880249023, + "step": 1090 + }, + { + "epoch": 15.153778942769769, + "grad_norm": 0.2206192910671234, + "learning_rate": 0.0006, + "loss": 4.11027193069458, + "step": 1091 + }, + { + "epoch": 15.167758846657929, + "grad_norm": 0.21843163669109344, + "learning_rate": 0.0006, + "loss": 4.098437309265137, + "step": 1092 + }, + { + "epoch": 15.18173875054609, + "grad_norm": 0.2528176009654999, + "learning_rate": 0.0006, + "loss": 4.108713150024414, + "step": 1093 + }, + { + "epoch": 15.19571865443425, + "grad_norm": 0.26697206497192383, + "learning_rate": 0.0006, + "loss": 4.113210201263428, + "step": 1094 + }, + { + "epoch": 15.209698558322412, + "grad_norm": 0.26480963826179504, + "learning_rate": 0.0006, + "loss": 4.1103620529174805, + "step": 1095 + }, + { + "epoch": 15.223678462210572, + "grad_norm": 0.24887347221374512, + "learning_rate": 0.0006, + "loss": 4.103529930114746, + "step": 1096 + }, + { + "epoch": 15.237658366098733, + "grad_norm": 0.2344668060541153, + "learning_rate": 0.0006, + "loss": 4.129784107208252, + "step": 1097 + }, + { + "epoch": 15.251638269986893, + "grad_norm": 0.22639742493629456, + "learning_rate": 0.0006, + "loss": 4.113495349884033, + "step": 1098 + }, + { + "epoch": 15.265618173875055, + "grad_norm": 0.22466333210468292, + "learning_rate": 0.0006, + "loss": 4.102309703826904, + "step": 1099 + }, + { + "epoch": 15.279598077763215, + "grad_norm": 0.25135037302970886, + "learning_rate": 0.0006, + "loss": 4.117668628692627, + "step": 1100 + }, + { + "epoch": 15.293577981651376, + "grad_norm": 0.2347089946269989, + "learning_rate": 0.0006, + "loss": 4.086637496948242, + "step": 1101 + }, + { + "epoch": 15.307557885539538, + "grad_norm": 0.2347242832183838, + "learning_rate": 0.0006, + "loss": 4.098714828491211, + "step": 1102 + }, + { + "epoch": 15.321537789427698, + "grad_norm": 0.23990283906459808, + "learning_rate": 0.0006, + "loss": 4.079837799072266, + "step": 1103 + }, + { + "epoch": 15.33551769331586, + "grad_norm": 0.22366675734519958, + "learning_rate": 0.0006, + "loss": 4.108136177062988, + "step": 1104 + }, + { + "epoch": 15.349497597204019, + "grad_norm": 0.21823780238628387, + "learning_rate": 0.0006, + "loss": 4.10054349899292, + "step": 1105 + }, + { + "epoch": 15.36347750109218, + "grad_norm": 0.23059198260307312, + "learning_rate": 0.0006, + "loss": 4.108620643615723, + "step": 1106 + }, + { + "epoch": 15.37745740498034, + "grad_norm": 0.2313755601644516, + "learning_rate": 0.0006, + "loss": 4.088565826416016, + "step": 1107 + }, + { + "epoch": 15.391437308868502, + "grad_norm": 0.2546829283237457, + "learning_rate": 0.0006, + "loss": 4.104948043823242, + "step": 1108 + }, + { + "epoch": 15.405417212756662, + "grad_norm": 0.23666726052761078, + "learning_rate": 0.0006, + "loss": 4.111965179443359, + "step": 1109 + }, + { + "epoch": 15.419397116644824, + "grad_norm": 0.21971021592617035, + "learning_rate": 0.0006, + "loss": 4.097846984863281, + "step": 1110 + }, + { + "epoch": 15.433377020532983, + "grad_norm": 0.20951911807060242, + "learning_rate": 0.0006, + "loss": 4.110099792480469, + "step": 1111 + }, + { + "epoch": 15.447356924421145, + "grad_norm": 0.19590918719768524, + "learning_rate": 0.0006, + "loss": 4.101154327392578, + "step": 1112 + }, + { + "epoch": 15.461336828309305, + "grad_norm": 0.21048946678638458, + "learning_rate": 0.0006, + "loss": 4.0986127853393555, + "step": 1113 + }, + { + "epoch": 15.475316732197467, + "grad_norm": 0.21423374116420746, + "learning_rate": 0.0006, + "loss": 4.082328796386719, + "step": 1114 + }, + { + "epoch": 15.489296636085626, + "grad_norm": 0.227146714925766, + "learning_rate": 0.0006, + "loss": 4.105281829833984, + "step": 1115 + }, + { + "epoch": 15.503276539973788, + "grad_norm": 0.2079153060913086, + "learning_rate": 0.0006, + "loss": 4.100836753845215, + "step": 1116 + }, + { + "epoch": 15.517256443861948, + "grad_norm": 0.21084675192832947, + "learning_rate": 0.0006, + "loss": 4.0934343338012695, + "step": 1117 + }, + { + "epoch": 15.53123634775011, + "grad_norm": 0.23863616585731506, + "learning_rate": 0.0006, + "loss": 4.101540565490723, + "step": 1118 + }, + { + "epoch": 15.54521625163827, + "grad_norm": 0.2518490254878998, + "learning_rate": 0.0006, + "loss": 4.12303352355957, + "step": 1119 + }, + { + "epoch": 15.55919615552643, + "grad_norm": 0.24282905459403992, + "learning_rate": 0.0006, + "loss": 4.080670356750488, + "step": 1120 + }, + { + "epoch": 15.57317605941459, + "grad_norm": 0.24171605706214905, + "learning_rate": 0.0006, + "loss": 4.117938041687012, + "step": 1121 + }, + { + "epoch": 15.587155963302752, + "grad_norm": 0.28453412652015686, + "learning_rate": 0.0006, + "loss": 4.080114364624023, + "step": 1122 + }, + { + "epoch": 15.601135867190912, + "grad_norm": 0.30322617292404175, + "learning_rate": 0.0006, + "loss": 4.079695701599121, + "step": 1123 + }, + { + "epoch": 15.615115771079074, + "grad_norm": 0.2657633125782013, + "learning_rate": 0.0006, + "loss": 4.0916290283203125, + "step": 1124 + }, + { + "epoch": 15.629095674967235, + "grad_norm": 0.2467080056667328, + "learning_rate": 0.0006, + "loss": 4.095594882965088, + "step": 1125 + }, + { + "epoch": 15.643075578855395, + "grad_norm": 0.21767394244670868, + "learning_rate": 0.0006, + "loss": 4.079174041748047, + "step": 1126 + }, + { + "epoch": 15.657055482743557, + "grad_norm": 0.2088327705860138, + "learning_rate": 0.0006, + "loss": 4.060707092285156, + "step": 1127 + }, + { + "epoch": 15.671035386631717, + "grad_norm": 0.1921205073595047, + "learning_rate": 0.0006, + "loss": 4.073911666870117, + "step": 1128 + }, + { + "epoch": 15.685015290519878, + "grad_norm": 0.209339901804924, + "learning_rate": 0.0006, + "loss": 4.089954376220703, + "step": 1129 + }, + { + "epoch": 15.698995194408038, + "grad_norm": 0.23513881862163544, + "learning_rate": 0.0006, + "loss": 4.084906578063965, + "step": 1130 + }, + { + "epoch": 15.7129750982962, + "grad_norm": 0.26140275597572327, + "learning_rate": 0.0006, + "loss": 4.086570739746094, + "step": 1131 + }, + { + "epoch": 15.72695500218436, + "grad_norm": 0.290431946516037, + "learning_rate": 0.0006, + "loss": 4.071229457855225, + "step": 1132 + }, + { + "epoch": 15.740934906072521, + "grad_norm": 0.3061376214027405, + "learning_rate": 0.0006, + "loss": 4.103148460388184, + "step": 1133 + }, + { + "epoch": 15.754914809960681, + "grad_norm": 0.26312482357025146, + "learning_rate": 0.0006, + "loss": 4.088448524475098, + "step": 1134 + }, + { + "epoch": 15.768894713848843, + "grad_norm": 0.22474883496761322, + "learning_rate": 0.0006, + "loss": 4.091766834259033, + "step": 1135 + }, + { + "epoch": 15.782874617737003, + "grad_norm": 0.2341146171092987, + "learning_rate": 0.0006, + "loss": 4.1222758293151855, + "step": 1136 + }, + { + "epoch": 15.796854521625164, + "grad_norm": 0.23556149005889893, + "learning_rate": 0.0006, + "loss": 4.094954013824463, + "step": 1137 + }, + { + "epoch": 15.810834425513324, + "grad_norm": 0.263315349817276, + "learning_rate": 0.0006, + "loss": 4.1065473556518555, + "step": 1138 + }, + { + "epoch": 15.824814329401486, + "grad_norm": 0.2700869143009186, + "learning_rate": 0.0006, + "loss": 4.0890045166015625, + "step": 1139 + }, + { + "epoch": 15.838794233289645, + "grad_norm": 0.28697484731674194, + "learning_rate": 0.0006, + "loss": 4.092496395111084, + "step": 1140 + }, + { + "epoch": 15.852774137177807, + "grad_norm": 0.2824092507362366, + "learning_rate": 0.0006, + "loss": 4.079615592956543, + "step": 1141 + }, + { + "epoch": 15.866754041065967, + "grad_norm": 0.24547280371189117, + "learning_rate": 0.0006, + "loss": 4.089683532714844, + "step": 1142 + }, + { + "epoch": 15.880733944954128, + "grad_norm": 0.23653888702392578, + "learning_rate": 0.0006, + "loss": 4.067309379577637, + "step": 1143 + }, + { + "epoch": 15.89471384884229, + "grad_norm": 0.23784421384334564, + "learning_rate": 0.0006, + "loss": 4.09156608581543, + "step": 1144 + }, + { + "epoch": 15.90869375273045, + "grad_norm": 0.22753281891345978, + "learning_rate": 0.0006, + "loss": 4.095428466796875, + "step": 1145 + }, + { + "epoch": 15.922673656618612, + "grad_norm": 0.2464212030172348, + "learning_rate": 0.0006, + "loss": 4.1036376953125, + "step": 1146 + }, + { + "epoch": 15.936653560506771, + "grad_norm": 0.25531601905822754, + "learning_rate": 0.0006, + "loss": 4.073996543884277, + "step": 1147 + }, + { + "epoch": 15.950633464394933, + "grad_norm": 0.24145905673503876, + "learning_rate": 0.0006, + "loss": 4.094479560852051, + "step": 1148 + }, + { + "epoch": 15.964613368283093, + "grad_norm": 0.24274317920207977, + "learning_rate": 0.0006, + "loss": 4.101981163024902, + "step": 1149 + }, + { + "epoch": 15.978593272171254, + "grad_norm": 0.2350679188966751, + "learning_rate": 0.0006, + "loss": 4.057965278625488, + "step": 1150 + }, + { + "epoch": 15.992573176059414, + "grad_norm": 0.24072253704071045, + "learning_rate": 0.0006, + "loss": 4.020050048828125, + "step": 1151 + }, + { + "epoch": 16.0, + "grad_norm": 0.253978967666626, + "learning_rate": 0.0006, + "loss": 4.061928749084473, + "step": 1152 + }, + { + "epoch": 16.0, + "eval_loss": 4.270665645599365, + "eval_runtime": 44.5063, + "eval_samples_per_second": 54.869, + "eval_steps_per_second": 3.438, + "step": 1152 + }, + { + "epoch": 16.01397990388816, + "grad_norm": 0.3265204131603241, + "learning_rate": 0.0006, + "loss": 4.059116363525391, + "step": 1153 + }, + { + "epoch": 16.027959807776323, + "grad_norm": 0.34139737486839294, + "learning_rate": 0.0006, + "loss": 4.062219619750977, + "step": 1154 + }, + { + "epoch": 16.041939711664483, + "grad_norm": 0.2849949598312378, + "learning_rate": 0.0006, + "loss": 4.032323837280273, + "step": 1155 + }, + { + "epoch": 16.055919615552643, + "grad_norm": 0.25031402707099915, + "learning_rate": 0.0006, + "loss": 4.075527191162109, + "step": 1156 + }, + { + "epoch": 16.069899519440803, + "grad_norm": 0.25207436084747314, + "learning_rate": 0.0006, + "loss": 4.0883097648620605, + "step": 1157 + }, + { + "epoch": 16.083879423328966, + "grad_norm": 0.28677356243133545, + "learning_rate": 0.0006, + "loss": 4.040797233581543, + "step": 1158 + }, + { + "epoch": 16.097859327217126, + "grad_norm": 0.30778825283050537, + "learning_rate": 0.0006, + "loss": 4.051504135131836, + "step": 1159 + }, + { + "epoch": 16.111839231105286, + "grad_norm": 0.3136911988258362, + "learning_rate": 0.0006, + "loss": 4.045449256896973, + "step": 1160 + }, + { + "epoch": 16.125819134993446, + "grad_norm": 0.34384530782699585, + "learning_rate": 0.0006, + "loss": 4.069897651672363, + "step": 1161 + }, + { + "epoch": 16.13979903888161, + "grad_norm": 0.3074268400669098, + "learning_rate": 0.0006, + "loss": 4.0621137619018555, + "step": 1162 + }, + { + "epoch": 16.15377894276977, + "grad_norm": 0.33090949058532715, + "learning_rate": 0.0006, + "loss": 4.084089279174805, + "step": 1163 + }, + { + "epoch": 16.16775884665793, + "grad_norm": 0.26358580589294434, + "learning_rate": 0.0006, + "loss": 4.066563606262207, + "step": 1164 + }, + { + "epoch": 16.18173875054609, + "grad_norm": 0.25586041808128357, + "learning_rate": 0.0006, + "loss": 4.08109188079834, + "step": 1165 + }, + { + "epoch": 16.195718654434252, + "grad_norm": 0.2966184616088867, + "learning_rate": 0.0006, + "loss": 4.039186477661133, + "step": 1166 + }, + { + "epoch": 16.209698558322412, + "grad_norm": 0.3064924478530884, + "learning_rate": 0.0006, + "loss": 4.08139705657959, + "step": 1167 + }, + { + "epoch": 16.22367846221057, + "grad_norm": 0.28671345114707947, + "learning_rate": 0.0006, + "loss": 4.04637336730957, + "step": 1168 + }, + { + "epoch": 16.23765836609873, + "grad_norm": 0.26209691166877747, + "learning_rate": 0.0006, + "loss": 4.052768707275391, + "step": 1169 + }, + { + "epoch": 16.251638269986895, + "grad_norm": 0.2758907079696655, + "learning_rate": 0.0006, + "loss": 4.064321517944336, + "step": 1170 + }, + { + "epoch": 16.265618173875055, + "grad_norm": 0.25961801409721375, + "learning_rate": 0.0006, + "loss": 4.057299613952637, + "step": 1171 + }, + { + "epoch": 16.279598077763215, + "grad_norm": 0.2513751685619354, + "learning_rate": 0.0006, + "loss": 4.064148902893066, + "step": 1172 + }, + { + "epoch": 16.293577981651374, + "grad_norm": 0.23920276761054993, + "learning_rate": 0.0006, + "loss": 4.101890563964844, + "step": 1173 + }, + { + "epoch": 16.307557885539538, + "grad_norm": 0.22746537625789642, + "learning_rate": 0.0006, + "loss": 4.086627006530762, + "step": 1174 + }, + { + "epoch": 16.321537789427698, + "grad_norm": 0.22633525729179382, + "learning_rate": 0.0006, + "loss": 4.04669189453125, + "step": 1175 + }, + { + "epoch": 16.335517693315857, + "grad_norm": 0.2654891610145569, + "learning_rate": 0.0006, + "loss": 4.086793422698975, + "step": 1176 + }, + { + "epoch": 16.34949759720402, + "grad_norm": 0.2872653007507324, + "learning_rate": 0.0006, + "loss": 4.077983856201172, + "step": 1177 + }, + { + "epoch": 16.36347750109218, + "grad_norm": 0.25726038217544556, + "learning_rate": 0.0006, + "loss": 4.066011428833008, + "step": 1178 + }, + { + "epoch": 16.37745740498034, + "grad_norm": 0.2592027485370636, + "learning_rate": 0.0006, + "loss": 4.0482988357543945, + "step": 1179 + }, + { + "epoch": 16.3914373088685, + "grad_norm": 0.2768886685371399, + "learning_rate": 0.0006, + "loss": 4.065151214599609, + "step": 1180 + }, + { + "epoch": 16.405417212756664, + "grad_norm": 0.2956002652645111, + "learning_rate": 0.0006, + "loss": 4.037791728973389, + "step": 1181 + }, + { + "epoch": 16.419397116644824, + "grad_norm": 0.3092120885848999, + "learning_rate": 0.0006, + "loss": 4.062164306640625, + "step": 1182 + }, + { + "epoch": 16.433377020532983, + "grad_norm": 0.29516810178756714, + "learning_rate": 0.0006, + "loss": 4.025505065917969, + "step": 1183 + }, + { + "epoch": 16.447356924421143, + "grad_norm": 0.2640177607536316, + "learning_rate": 0.0006, + "loss": 4.060182571411133, + "step": 1184 + }, + { + "epoch": 16.461336828309307, + "grad_norm": 0.2444908320903778, + "learning_rate": 0.0006, + "loss": 4.046144962310791, + "step": 1185 + }, + { + "epoch": 16.475316732197467, + "grad_norm": 0.23190705478191376, + "learning_rate": 0.0006, + "loss": 4.075569152832031, + "step": 1186 + }, + { + "epoch": 16.489296636085626, + "grad_norm": 0.2383626103401184, + "learning_rate": 0.0006, + "loss": 4.088897705078125, + "step": 1187 + }, + { + "epoch": 16.503276539973786, + "grad_norm": 0.20688803493976593, + "learning_rate": 0.0006, + "loss": 4.064517974853516, + "step": 1188 + }, + { + "epoch": 16.51725644386195, + "grad_norm": 0.22610054910182953, + "learning_rate": 0.0006, + "loss": 4.04502010345459, + "step": 1189 + }, + { + "epoch": 16.53123634775011, + "grad_norm": 0.2014893889427185, + "learning_rate": 0.0006, + "loss": 4.058279514312744, + "step": 1190 + }, + { + "epoch": 16.54521625163827, + "grad_norm": 0.21459777653217316, + "learning_rate": 0.0006, + "loss": 4.066389083862305, + "step": 1191 + }, + { + "epoch": 16.55919615552643, + "grad_norm": 0.22909940779209137, + "learning_rate": 0.0006, + "loss": 4.0557966232299805, + "step": 1192 + }, + { + "epoch": 16.573176059414592, + "grad_norm": 0.20039083063602448, + "learning_rate": 0.0006, + "loss": 4.092845916748047, + "step": 1193 + }, + { + "epoch": 16.587155963302752, + "grad_norm": 0.22651726007461548, + "learning_rate": 0.0006, + "loss": 4.034615516662598, + "step": 1194 + }, + { + "epoch": 16.601135867190912, + "grad_norm": 0.21901755034923553, + "learning_rate": 0.0006, + "loss": 4.035619735717773, + "step": 1195 + }, + { + "epoch": 16.615115771079076, + "grad_norm": 0.22930841147899628, + "learning_rate": 0.0006, + "loss": 4.080800533294678, + "step": 1196 + }, + { + "epoch": 16.629095674967235, + "grad_norm": 0.212818443775177, + "learning_rate": 0.0006, + "loss": 4.030189514160156, + "step": 1197 + }, + { + "epoch": 16.643075578855395, + "grad_norm": 0.2370826154947281, + "learning_rate": 0.0006, + "loss": 4.062643527984619, + "step": 1198 + }, + { + "epoch": 16.657055482743555, + "grad_norm": 0.24786995351314545, + "learning_rate": 0.0006, + "loss": 4.031761169433594, + "step": 1199 + }, + { + "epoch": 16.67103538663172, + "grad_norm": 0.2305847704410553, + "learning_rate": 0.0006, + "loss": 4.083752155303955, + "step": 1200 + }, + { + "epoch": 16.68501529051988, + "grad_norm": 0.23336584866046906, + "learning_rate": 0.0006, + "loss": 4.079145431518555, + "step": 1201 + }, + { + "epoch": 16.698995194408038, + "grad_norm": 0.23976293206214905, + "learning_rate": 0.0006, + "loss": 4.020473957061768, + "step": 1202 + }, + { + "epoch": 16.712975098296198, + "grad_norm": 0.222761869430542, + "learning_rate": 0.0006, + "loss": 4.065582752227783, + "step": 1203 + }, + { + "epoch": 16.72695500218436, + "grad_norm": 0.23725618422031403, + "learning_rate": 0.0006, + "loss": 4.0263776779174805, + "step": 1204 + }, + { + "epoch": 16.74093490607252, + "grad_norm": 0.23873984813690186, + "learning_rate": 0.0006, + "loss": 4.053092956542969, + "step": 1205 + }, + { + "epoch": 16.75491480996068, + "grad_norm": 0.21043002605438232, + "learning_rate": 0.0006, + "loss": 4.063965797424316, + "step": 1206 + }, + { + "epoch": 16.76889471384884, + "grad_norm": 0.19863522052764893, + "learning_rate": 0.0006, + "loss": 4.061187267303467, + "step": 1207 + }, + { + "epoch": 16.782874617737004, + "grad_norm": 0.1953752487897873, + "learning_rate": 0.0006, + "loss": 4.046016693115234, + "step": 1208 + }, + { + "epoch": 16.796854521625164, + "grad_norm": 0.2130361795425415, + "learning_rate": 0.0006, + "loss": 4.066933631896973, + "step": 1209 + }, + { + "epoch": 16.810834425513324, + "grad_norm": 0.19598130881786346, + "learning_rate": 0.0006, + "loss": 4.071558952331543, + "step": 1210 + }, + { + "epoch": 16.824814329401484, + "grad_norm": 0.20331116020679474, + "learning_rate": 0.0006, + "loss": 4.088632106781006, + "step": 1211 + }, + { + "epoch": 16.838794233289647, + "grad_norm": 0.20423150062561035, + "learning_rate": 0.0006, + "loss": 4.032224655151367, + "step": 1212 + }, + { + "epoch": 16.852774137177807, + "grad_norm": 0.2401197850704193, + "learning_rate": 0.0006, + "loss": 4.037393569946289, + "step": 1213 + }, + { + "epoch": 16.866754041065967, + "grad_norm": 0.26102620363235474, + "learning_rate": 0.0006, + "loss": 4.04738712310791, + "step": 1214 + }, + { + "epoch": 16.88073394495413, + "grad_norm": 0.2438521534204483, + "learning_rate": 0.0006, + "loss": 4.015673637390137, + "step": 1215 + }, + { + "epoch": 16.89471384884229, + "grad_norm": 0.20742061734199524, + "learning_rate": 0.0006, + "loss": 4.049060821533203, + "step": 1216 + }, + { + "epoch": 16.90869375273045, + "grad_norm": 0.22028608620166779, + "learning_rate": 0.0006, + "loss": 4.088971138000488, + "step": 1217 + }, + { + "epoch": 16.92267365661861, + "grad_norm": 0.21746744215488434, + "learning_rate": 0.0006, + "loss": 4.021710395812988, + "step": 1218 + }, + { + "epoch": 16.936653560506773, + "grad_norm": 0.2226102203130722, + "learning_rate": 0.0006, + "loss": 4.050119400024414, + "step": 1219 + }, + { + "epoch": 16.950633464394933, + "grad_norm": 0.23903657495975494, + "learning_rate": 0.0006, + "loss": 4.0570526123046875, + "step": 1220 + }, + { + "epoch": 16.964613368283093, + "grad_norm": 0.2556349039077759, + "learning_rate": 0.0006, + "loss": 4.0448808670043945, + "step": 1221 + }, + { + "epoch": 16.978593272171253, + "grad_norm": 0.28445592522621155, + "learning_rate": 0.0006, + "loss": 4.052034378051758, + "step": 1222 + }, + { + "epoch": 16.992573176059416, + "grad_norm": 0.273973673582077, + "learning_rate": 0.0006, + "loss": 4.02907657623291, + "step": 1223 + }, + { + "epoch": 17.0, + "grad_norm": 0.26125091314315796, + "learning_rate": 0.0006, + "loss": 4.10643196105957, + "step": 1224 + }, + { + "epoch": 17.0, + "eval_loss": 4.2585954666137695, + "eval_runtime": 44.8583, + "eval_samples_per_second": 54.438, + "eval_steps_per_second": 3.411, + "step": 1224 + }, + { + "epoch": 17.01397990388816, + "grad_norm": 0.2786196768283844, + "learning_rate": 0.0006, + "loss": 4.044719219207764, + "step": 1225 + }, + { + "epoch": 17.027959807776323, + "grad_norm": 0.2969571650028229, + "learning_rate": 0.0006, + "loss": 4.022037506103516, + "step": 1226 + }, + { + "epoch": 17.041939711664483, + "grad_norm": 0.32196253538131714, + "learning_rate": 0.0006, + "loss": 4.03636360168457, + "step": 1227 + }, + { + "epoch": 17.055919615552643, + "grad_norm": 0.28617000579833984, + "learning_rate": 0.0006, + "loss": 4.012125492095947, + "step": 1228 + }, + { + "epoch": 17.069899519440803, + "grad_norm": 0.26539644598960876, + "learning_rate": 0.0006, + "loss": 4.020190715789795, + "step": 1229 + }, + { + "epoch": 17.083879423328966, + "grad_norm": 0.24315394461154938, + "learning_rate": 0.0006, + "loss": 4.0553812980651855, + "step": 1230 + }, + { + "epoch": 17.097859327217126, + "grad_norm": 0.23798158764839172, + "learning_rate": 0.0006, + "loss": 4.004805088043213, + "step": 1231 + }, + { + "epoch": 17.111839231105286, + "grad_norm": 0.25723618268966675, + "learning_rate": 0.0006, + "loss": 4.00108003616333, + "step": 1232 + }, + { + "epoch": 17.125819134993446, + "grad_norm": 0.2669757604598999, + "learning_rate": 0.0006, + "loss": 4.00828742980957, + "step": 1233 + }, + { + "epoch": 17.13979903888161, + "grad_norm": 0.26421651244163513, + "learning_rate": 0.0006, + "loss": 3.995478391647339, + "step": 1234 + }, + { + "epoch": 17.15377894276977, + "grad_norm": 0.24745801091194153, + "learning_rate": 0.0006, + "loss": 4.0171027183532715, + "step": 1235 + }, + { + "epoch": 17.16775884665793, + "grad_norm": 0.27028775215148926, + "learning_rate": 0.0006, + "loss": 4.017108917236328, + "step": 1236 + }, + { + "epoch": 17.18173875054609, + "grad_norm": 0.27247968316078186, + "learning_rate": 0.0006, + "loss": 4.032601356506348, + "step": 1237 + }, + { + "epoch": 17.195718654434252, + "grad_norm": 0.24620869755744934, + "learning_rate": 0.0006, + "loss": 4.022171974182129, + "step": 1238 + }, + { + "epoch": 17.209698558322412, + "grad_norm": 0.23407386243343353, + "learning_rate": 0.0006, + "loss": 3.9946959018707275, + "step": 1239 + }, + { + "epoch": 17.22367846221057, + "grad_norm": 0.22559069097042084, + "learning_rate": 0.0006, + "loss": 4.013072490692139, + "step": 1240 + }, + { + "epoch": 17.23765836609873, + "grad_norm": 0.226687952876091, + "learning_rate": 0.0006, + "loss": 4.023543834686279, + "step": 1241 + }, + { + "epoch": 17.251638269986895, + "grad_norm": 0.24436360597610474, + "learning_rate": 0.0006, + "loss": 4.044206619262695, + "step": 1242 + }, + { + "epoch": 17.265618173875055, + "grad_norm": 0.25527626276016235, + "learning_rate": 0.0006, + "loss": 4.016424179077148, + "step": 1243 + }, + { + "epoch": 17.279598077763215, + "grad_norm": 0.26126864552497864, + "learning_rate": 0.0006, + "loss": 4.024394512176514, + "step": 1244 + }, + { + "epoch": 17.293577981651374, + "grad_norm": 0.25746744871139526, + "learning_rate": 0.0006, + "loss": 4.046844482421875, + "step": 1245 + }, + { + "epoch": 17.307557885539538, + "grad_norm": 0.26579564809799194, + "learning_rate": 0.0006, + "loss": 4.021010398864746, + "step": 1246 + }, + { + "epoch": 17.321537789427698, + "grad_norm": 0.2713971734046936, + "learning_rate": 0.0006, + "loss": 4.022331237792969, + "step": 1247 + }, + { + "epoch": 17.335517693315857, + "grad_norm": 0.24217180907726288, + "learning_rate": 0.0006, + "loss": 4.006353855133057, + "step": 1248 + }, + { + "epoch": 17.34949759720402, + "grad_norm": 0.26899752020835876, + "learning_rate": 0.0006, + "loss": 4.068023681640625, + "step": 1249 + }, + { + "epoch": 17.36347750109218, + "grad_norm": 0.26745253801345825, + "learning_rate": 0.0006, + "loss": 4.031207084655762, + "step": 1250 + }, + { + "epoch": 17.37745740498034, + "grad_norm": 0.21533764898777008, + "learning_rate": 0.0006, + "loss": 4.042410850524902, + "step": 1251 + }, + { + "epoch": 17.3914373088685, + "grad_norm": 0.21958027780056, + "learning_rate": 0.0006, + "loss": 4.02597713470459, + "step": 1252 + }, + { + "epoch": 17.405417212756664, + "grad_norm": 0.263068825006485, + "learning_rate": 0.0006, + "loss": 4.0035905838012695, + "step": 1253 + }, + { + "epoch": 17.419397116644824, + "grad_norm": 0.24044716358184814, + "learning_rate": 0.0006, + "loss": 4.005317687988281, + "step": 1254 + }, + { + "epoch": 17.433377020532983, + "grad_norm": 0.19142559170722961, + "learning_rate": 0.0006, + "loss": 3.9976844787597656, + "step": 1255 + }, + { + "epoch": 17.447356924421143, + "grad_norm": 0.18650250136852264, + "learning_rate": 0.0006, + "loss": 4.031353950500488, + "step": 1256 + }, + { + "epoch": 17.461336828309307, + "grad_norm": 0.1984022557735443, + "learning_rate": 0.0006, + "loss": 4.002097129821777, + "step": 1257 + }, + { + "epoch": 17.475316732197467, + "grad_norm": 0.20087844133377075, + "learning_rate": 0.0006, + "loss": 4.031151294708252, + "step": 1258 + }, + { + "epoch": 17.489296636085626, + "grad_norm": 0.20881228148937225, + "learning_rate": 0.0006, + "loss": 4.034793853759766, + "step": 1259 + }, + { + "epoch": 17.503276539973786, + "grad_norm": 0.23958556354045868, + "learning_rate": 0.0006, + "loss": 4.025238990783691, + "step": 1260 + }, + { + "epoch": 17.51725644386195, + "grad_norm": 0.23927845060825348, + "learning_rate": 0.0006, + "loss": 3.999828338623047, + "step": 1261 + }, + { + "epoch": 17.53123634775011, + "grad_norm": 0.20342715084552765, + "learning_rate": 0.0006, + "loss": 4.054262161254883, + "step": 1262 + }, + { + "epoch": 17.54521625163827, + "grad_norm": 0.21370555460453033, + "learning_rate": 0.0006, + "loss": 4.011582374572754, + "step": 1263 + }, + { + "epoch": 17.55919615552643, + "grad_norm": 0.23681946098804474, + "learning_rate": 0.0006, + "loss": 4.029694080352783, + "step": 1264 + }, + { + "epoch": 17.573176059414592, + "grad_norm": 0.24190311133861542, + "learning_rate": 0.0006, + "loss": 4.018783092498779, + "step": 1265 + }, + { + "epoch": 17.587155963302752, + "grad_norm": 0.23215509951114655, + "learning_rate": 0.0006, + "loss": 4.009703159332275, + "step": 1266 + }, + { + "epoch": 17.601135867190912, + "grad_norm": 0.21122977137565613, + "learning_rate": 0.0006, + "loss": 4.0345659255981445, + "step": 1267 + }, + { + "epoch": 17.615115771079076, + "grad_norm": 0.2075948715209961, + "learning_rate": 0.0006, + "loss": 4.070703506469727, + "step": 1268 + }, + { + "epoch": 17.629095674967235, + "grad_norm": 0.21667909622192383, + "learning_rate": 0.0006, + "loss": 4.020771503448486, + "step": 1269 + }, + { + "epoch": 17.643075578855395, + "grad_norm": 0.20960724353790283, + "learning_rate": 0.0006, + "loss": 4.026404857635498, + "step": 1270 + }, + { + "epoch": 17.657055482743555, + "grad_norm": 0.22575686872005463, + "learning_rate": 0.0006, + "loss": 4.01981258392334, + "step": 1271 + }, + { + "epoch": 17.67103538663172, + "grad_norm": 0.2565988302230835, + "learning_rate": 0.0006, + "loss": 4.015827178955078, + "step": 1272 + }, + { + "epoch": 17.68501529051988, + "grad_norm": 0.24831551313400269, + "learning_rate": 0.0006, + "loss": 4.012457847595215, + "step": 1273 + }, + { + "epoch": 17.698995194408038, + "grad_norm": 0.22595494985580444, + "learning_rate": 0.0006, + "loss": 4.031386375427246, + "step": 1274 + }, + { + "epoch": 17.712975098296198, + "grad_norm": 0.20687322318553925, + "learning_rate": 0.0006, + "loss": 4.014216423034668, + "step": 1275 + }, + { + "epoch": 17.72695500218436, + "grad_norm": 0.21916012465953827, + "learning_rate": 0.0006, + "loss": 4.037643909454346, + "step": 1276 + }, + { + "epoch": 17.74093490607252, + "grad_norm": 0.2243107706308365, + "learning_rate": 0.0006, + "loss": 4.033044815063477, + "step": 1277 + }, + { + "epoch": 17.75491480996068, + "grad_norm": 0.2402164787054062, + "learning_rate": 0.0006, + "loss": 4.026636123657227, + "step": 1278 + }, + { + "epoch": 17.76889471384884, + "grad_norm": 0.27957046031951904, + "learning_rate": 0.0006, + "loss": 4.0270867347717285, + "step": 1279 + }, + { + "epoch": 17.782874617737004, + "grad_norm": 0.27447596192359924, + "learning_rate": 0.0006, + "loss": 4.0120134353637695, + "step": 1280 + }, + { + "epoch": 17.796854521625164, + "grad_norm": 0.26926323771476746, + "learning_rate": 0.0006, + "loss": 4.027970314025879, + "step": 1281 + }, + { + "epoch": 17.810834425513324, + "grad_norm": 0.2535291314125061, + "learning_rate": 0.0006, + "loss": 4.002565383911133, + "step": 1282 + }, + { + "epoch": 17.824814329401484, + "grad_norm": 0.22639447450637817, + "learning_rate": 0.0006, + "loss": 4.032750606536865, + "step": 1283 + }, + { + "epoch": 17.838794233289647, + "grad_norm": 0.23384462296962738, + "learning_rate": 0.0006, + "loss": 4.03568172454834, + "step": 1284 + }, + { + "epoch": 17.852774137177807, + "grad_norm": 0.22971470654010773, + "learning_rate": 0.0006, + "loss": 4.031299591064453, + "step": 1285 + }, + { + "epoch": 17.866754041065967, + "grad_norm": 0.24540141224861145, + "learning_rate": 0.0006, + "loss": 4.0142669677734375, + "step": 1286 + }, + { + "epoch": 17.88073394495413, + "grad_norm": 0.2304888367652893, + "learning_rate": 0.0006, + "loss": 3.9964895248413086, + "step": 1287 + }, + { + "epoch": 17.89471384884229, + "grad_norm": 0.22082284092903137, + "learning_rate": 0.0006, + "loss": 4.024693489074707, + "step": 1288 + }, + { + "epoch": 17.90869375273045, + "grad_norm": 0.23677092790603638, + "learning_rate": 0.0006, + "loss": 4.002082347869873, + "step": 1289 + }, + { + "epoch": 17.92267365661861, + "grad_norm": 0.23122332990169525, + "learning_rate": 0.0006, + "loss": 4.025351524353027, + "step": 1290 + }, + { + "epoch": 17.936653560506773, + "grad_norm": 0.2548119127750397, + "learning_rate": 0.0006, + "loss": 3.9955825805664062, + "step": 1291 + }, + { + "epoch": 17.950633464394933, + "grad_norm": 0.26950931549072266, + "learning_rate": 0.0006, + "loss": 4.026151180267334, + "step": 1292 + }, + { + "epoch": 17.964613368283093, + "grad_norm": 0.3023233711719513, + "learning_rate": 0.0006, + "loss": 4.006035804748535, + "step": 1293 + }, + { + "epoch": 17.978593272171253, + "grad_norm": 0.3190958499908447, + "learning_rate": 0.0006, + "loss": 4.023565292358398, + "step": 1294 + }, + { + "epoch": 17.992573176059416, + "grad_norm": 0.28878068923950195, + "learning_rate": 0.0006, + "loss": 4.020973205566406, + "step": 1295 + }, + { + "epoch": 18.0, + "grad_norm": 0.27312418818473816, + "learning_rate": 0.0006, + "loss": 3.99906587600708, + "step": 1296 + }, + { + "epoch": 18.0, + "eval_loss": 4.224447250366211, + "eval_runtime": 52.5728, + "eval_samples_per_second": 46.45, + "eval_steps_per_second": 2.91, + "step": 1296 + }, + { + "epoch": 18.01397990388816, + "grad_norm": 0.2567712664604187, + "learning_rate": 0.0006, + "loss": 3.9755055904388428, + "step": 1297 + }, + { + "epoch": 18.027959807776323, + "grad_norm": 0.25048133730888367, + "learning_rate": 0.0006, + "loss": 4.009254455566406, + "step": 1298 + }, + { + "epoch": 18.041939711664483, + "grad_norm": 0.2556909918785095, + "learning_rate": 0.0006, + "loss": 4.001235008239746, + "step": 1299 + }, + { + "epoch": 18.055919615552643, + "grad_norm": 0.2501400113105774, + "learning_rate": 0.0006, + "loss": 3.980726480484009, + "step": 1300 + }, + { + "epoch": 18.069899519440803, + "grad_norm": 0.23977792263031006, + "learning_rate": 0.0006, + "loss": 3.964195728302002, + "step": 1301 + }, + { + "epoch": 18.083879423328966, + "grad_norm": 0.25650718808174133, + "learning_rate": 0.0006, + "loss": 4.015914440155029, + "step": 1302 + }, + { + "epoch": 18.097859327217126, + "grad_norm": 0.234053835272789, + "learning_rate": 0.0006, + "loss": 4.0159149169921875, + "step": 1303 + }, + { + "epoch": 18.111839231105286, + "grad_norm": 0.21967713534832, + "learning_rate": 0.0006, + "loss": 4.0055694580078125, + "step": 1304 + }, + { + "epoch": 18.125819134993446, + "grad_norm": 0.21790878474712372, + "learning_rate": 0.0006, + "loss": 3.986253261566162, + "step": 1305 + }, + { + "epoch": 18.13979903888161, + "grad_norm": 0.22955302894115448, + "learning_rate": 0.0006, + "loss": 3.959421157836914, + "step": 1306 + }, + { + "epoch": 18.15377894276977, + "grad_norm": 0.2559174597263336, + "learning_rate": 0.0006, + "loss": 4.0069756507873535, + "step": 1307 + }, + { + "epoch": 18.16775884665793, + "grad_norm": 0.26132866740226746, + "learning_rate": 0.0006, + "loss": 3.9874095916748047, + "step": 1308 + }, + { + "epoch": 18.18173875054609, + "grad_norm": 0.23258940875530243, + "learning_rate": 0.0006, + "loss": 3.9762492179870605, + "step": 1309 + }, + { + "epoch": 18.195718654434252, + "grad_norm": 0.22347190976142883, + "learning_rate": 0.0006, + "loss": 3.9923410415649414, + "step": 1310 + }, + { + "epoch": 18.209698558322412, + "grad_norm": 0.23095804452896118, + "learning_rate": 0.0006, + "loss": 4.019245624542236, + "step": 1311 + }, + { + "epoch": 18.22367846221057, + "grad_norm": 0.24817052483558655, + "learning_rate": 0.0006, + "loss": 3.9697511196136475, + "step": 1312 + }, + { + "epoch": 18.23765836609873, + "grad_norm": 0.2566024959087372, + "learning_rate": 0.0006, + "loss": 3.978804111480713, + "step": 1313 + }, + { + "epoch": 18.251638269986895, + "grad_norm": 0.2527952790260315, + "learning_rate": 0.0006, + "loss": 3.972018241882324, + "step": 1314 + }, + { + "epoch": 18.265618173875055, + "grad_norm": 0.2508150637149811, + "learning_rate": 0.0006, + "loss": 3.9971275329589844, + "step": 1315 + }, + { + "epoch": 18.279598077763215, + "grad_norm": 0.23242022097110748, + "learning_rate": 0.0006, + "loss": 3.9712045192718506, + "step": 1316 + }, + { + "epoch": 18.293577981651374, + "grad_norm": 0.23474404215812683, + "learning_rate": 0.0006, + "loss": 3.9926767349243164, + "step": 1317 + }, + { + "epoch": 18.307557885539538, + "grad_norm": 0.2417769432067871, + "learning_rate": 0.0006, + "loss": 3.9920949935913086, + "step": 1318 + }, + { + "epoch": 18.321537789427698, + "grad_norm": 0.23839452862739563, + "learning_rate": 0.0006, + "loss": 4.016645431518555, + "step": 1319 + }, + { + "epoch": 18.335517693315857, + "grad_norm": 0.2512452304363251, + "learning_rate": 0.0006, + "loss": 3.97586727142334, + "step": 1320 + }, + { + "epoch": 18.34949759720402, + "grad_norm": 0.27503693103790283, + "learning_rate": 0.0006, + "loss": 4.000148773193359, + "step": 1321 + }, + { + "epoch": 18.36347750109218, + "grad_norm": 0.27830836176872253, + "learning_rate": 0.0006, + "loss": 3.9972195625305176, + "step": 1322 + }, + { + "epoch": 18.37745740498034, + "grad_norm": 0.2571812570095062, + "learning_rate": 0.0006, + "loss": 3.9900810718536377, + "step": 1323 + }, + { + "epoch": 18.3914373088685, + "grad_norm": 0.2310052365064621, + "learning_rate": 0.0006, + "loss": 4.003000259399414, + "step": 1324 + }, + { + "epoch": 18.405417212756664, + "grad_norm": 0.19615735113620758, + "learning_rate": 0.0006, + "loss": 3.9536571502685547, + "step": 1325 + }, + { + "epoch": 18.419397116644824, + "grad_norm": 0.21323896944522858, + "learning_rate": 0.0006, + "loss": 3.977508068084717, + "step": 1326 + }, + { + "epoch": 18.433377020532983, + "grad_norm": 0.21404202282428741, + "learning_rate": 0.0006, + "loss": 4.015361785888672, + "step": 1327 + }, + { + "epoch": 18.447356924421143, + "grad_norm": 0.1991959661245346, + "learning_rate": 0.0006, + "loss": 4.000286102294922, + "step": 1328 + }, + { + "epoch": 18.461336828309307, + "grad_norm": 0.2073599398136139, + "learning_rate": 0.0006, + "loss": 3.973065137863159, + "step": 1329 + }, + { + "epoch": 18.475316732197467, + "grad_norm": 0.2096073031425476, + "learning_rate": 0.0006, + "loss": 3.987032890319824, + "step": 1330 + }, + { + "epoch": 18.489296636085626, + "grad_norm": 0.2380610853433609, + "learning_rate": 0.0006, + "loss": 4.035274505615234, + "step": 1331 + }, + { + "epoch": 18.503276539973786, + "grad_norm": 0.23570716381072998, + "learning_rate": 0.0006, + "loss": 4.010516166687012, + "step": 1332 + }, + { + "epoch": 18.51725644386195, + "grad_norm": 0.24805466830730438, + "learning_rate": 0.0006, + "loss": 3.9750983715057373, + "step": 1333 + }, + { + "epoch": 18.53123634775011, + "grad_norm": 0.25173231959342957, + "learning_rate": 0.0006, + "loss": 3.9742345809936523, + "step": 1334 + }, + { + "epoch": 18.54521625163827, + "grad_norm": 0.24590367078781128, + "learning_rate": 0.0006, + "loss": 4.0037312507629395, + "step": 1335 + }, + { + "epoch": 18.55919615552643, + "grad_norm": 0.24379394948482513, + "learning_rate": 0.0006, + "loss": 3.993858814239502, + "step": 1336 + }, + { + "epoch": 18.573176059414592, + "grad_norm": 0.21708883345127106, + "learning_rate": 0.0006, + "loss": 3.965670585632324, + "step": 1337 + }, + { + "epoch": 18.587155963302752, + "grad_norm": 0.21024051308631897, + "learning_rate": 0.0006, + "loss": 3.987551689147949, + "step": 1338 + }, + { + "epoch": 18.601135867190912, + "grad_norm": 0.23376783728599548, + "learning_rate": 0.0006, + "loss": 4.002841472625732, + "step": 1339 + }, + { + "epoch": 18.615115771079076, + "grad_norm": 0.25350701808929443, + "learning_rate": 0.0006, + "loss": 3.9881370067596436, + "step": 1340 + }, + { + "epoch": 18.629095674967235, + "grad_norm": 0.2542140483856201, + "learning_rate": 0.0006, + "loss": 4.003695964813232, + "step": 1341 + }, + { + "epoch": 18.643075578855395, + "grad_norm": 0.22932685911655426, + "learning_rate": 0.0006, + "loss": 4.0146002769470215, + "step": 1342 + }, + { + "epoch": 18.657055482743555, + "grad_norm": 0.21099458634853363, + "learning_rate": 0.0006, + "loss": 3.970472812652588, + "step": 1343 + }, + { + "epoch": 18.67103538663172, + "grad_norm": 0.2234615832567215, + "learning_rate": 0.0006, + "loss": 3.9821488857269287, + "step": 1344 + }, + { + "epoch": 18.68501529051988, + "grad_norm": 0.230327770113945, + "learning_rate": 0.0006, + "loss": 3.996274948120117, + "step": 1345 + }, + { + "epoch": 18.698995194408038, + "grad_norm": 0.23596233129501343, + "learning_rate": 0.0006, + "loss": 3.9747462272644043, + "step": 1346 + }, + { + "epoch": 18.712975098296198, + "grad_norm": 0.24173159897327423, + "learning_rate": 0.0006, + "loss": 4.011804103851318, + "step": 1347 + }, + { + "epoch": 18.72695500218436, + "grad_norm": 0.24087604880332947, + "learning_rate": 0.0006, + "loss": 4.008726119995117, + "step": 1348 + }, + { + "epoch": 18.74093490607252, + "grad_norm": 0.2457292526960373, + "learning_rate": 0.0006, + "loss": 3.990793228149414, + "step": 1349 + }, + { + "epoch": 18.75491480996068, + "grad_norm": 0.22946089506149292, + "learning_rate": 0.0006, + "loss": 3.980494260787964, + "step": 1350 + }, + { + "epoch": 18.76889471384884, + "grad_norm": 0.22986692190170288, + "learning_rate": 0.0006, + "loss": 3.97006893157959, + "step": 1351 + }, + { + "epoch": 18.782874617737004, + "grad_norm": 0.23358555138111115, + "learning_rate": 0.0006, + "loss": 4.008172035217285, + "step": 1352 + }, + { + "epoch": 18.796854521625164, + "grad_norm": 0.20183615386486053, + "learning_rate": 0.0006, + "loss": 3.9720888137817383, + "step": 1353 + }, + { + "epoch": 18.810834425513324, + "grad_norm": 0.19975653290748596, + "learning_rate": 0.0006, + "loss": 3.9783310890197754, + "step": 1354 + }, + { + "epoch": 18.824814329401484, + "grad_norm": 0.18911021947860718, + "learning_rate": 0.0006, + "loss": 3.985982894897461, + "step": 1355 + }, + { + "epoch": 18.838794233289647, + "grad_norm": 0.15984168648719788, + "learning_rate": 0.0006, + "loss": 3.9740548133850098, + "step": 1356 + }, + { + "epoch": 18.852774137177807, + "grad_norm": 0.1755436211824417, + "learning_rate": 0.0006, + "loss": 4.013090133666992, + "step": 1357 + }, + { + "epoch": 18.866754041065967, + "grad_norm": 0.1798417866230011, + "learning_rate": 0.0006, + "loss": 3.997880697250366, + "step": 1358 + }, + { + "epoch": 18.88073394495413, + "grad_norm": 0.20206265151500702, + "learning_rate": 0.0006, + "loss": 3.9892373085021973, + "step": 1359 + }, + { + "epoch": 18.89471384884229, + "grad_norm": 0.23685456812381744, + "learning_rate": 0.0006, + "loss": 3.9909186363220215, + "step": 1360 + }, + { + "epoch": 18.90869375273045, + "grad_norm": 0.26053836941719055, + "learning_rate": 0.0006, + "loss": 4.00327205657959, + "step": 1361 + }, + { + "epoch": 18.92267365661861, + "grad_norm": 0.26215845346450806, + "learning_rate": 0.0006, + "loss": 3.9714717864990234, + "step": 1362 + }, + { + "epoch": 18.936653560506773, + "grad_norm": 0.2433871030807495, + "learning_rate": 0.0006, + "loss": 3.949416160583496, + "step": 1363 + }, + { + "epoch": 18.950633464394933, + "grad_norm": 0.23331883549690247, + "learning_rate": 0.0006, + "loss": 3.980501413345337, + "step": 1364 + }, + { + "epoch": 18.964613368283093, + "grad_norm": 0.2346954047679901, + "learning_rate": 0.0006, + "loss": 3.9974493980407715, + "step": 1365 + }, + { + "epoch": 18.978593272171253, + "grad_norm": 0.25101345777511597, + "learning_rate": 0.0006, + "loss": 3.9800148010253906, + "step": 1366 + }, + { + "epoch": 18.992573176059416, + "grad_norm": 0.26811933517456055, + "learning_rate": 0.0006, + "loss": 4.0065741539001465, + "step": 1367 + }, + { + "epoch": 19.0, + "grad_norm": 0.2731736898422241, + "learning_rate": 0.0006, + "loss": 4.014575481414795, + "step": 1368 + }, + { + "epoch": 19.0, + "eval_loss": 4.200716972351074, + "eval_runtime": 44.6962, + "eval_samples_per_second": 54.636, + "eval_steps_per_second": 3.423, + "step": 1368 + }, + { + "epoch": 19.01397990388816, + "grad_norm": 0.2517746686935425, + "learning_rate": 0.0006, + "loss": 3.9486539363861084, + "step": 1369 + }, + { + "epoch": 19.027959807776323, + "grad_norm": 0.2482699453830719, + "learning_rate": 0.0006, + "loss": 3.95015287399292, + "step": 1370 + }, + { + "epoch": 19.041939711664483, + "grad_norm": 0.21693618595600128, + "learning_rate": 0.0006, + "loss": 3.970022201538086, + "step": 1371 + }, + { + "epoch": 19.055919615552643, + "grad_norm": 0.2035159319639206, + "learning_rate": 0.0006, + "loss": 3.941457748413086, + "step": 1372 + }, + { + "epoch": 19.069899519440803, + "grad_norm": 0.2201429009437561, + "learning_rate": 0.0006, + "loss": 3.946794033050537, + "step": 1373 + }, + { + "epoch": 19.083879423328966, + "grad_norm": 0.22910255193710327, + "learning_rate": 0.0006, + "loss": 3.94606876373291, + "step": 1374 + }, + { + "epoch": 19.097859327217126, + "grad_norm": 0.22378197312355042, + "learning_rate": 0.0006, + "loss": 3.957899570465088, + "step": 1375 + }, + { + "epoch": 19.111839231105286, + "grad_norm": 0.21728114783763885, + "learning_rate": 0.0006, + "loss": 3.9565982818603516, + "step": 1376 + }, + { + "epoch": 19.125819134993446, + "grad_norm": 0.21887634694576263, + "learning_rate": 0.0006, + "loss": 3.9649534225463867, + "step": 1377 + }, + { + "epoch": 19.13979903888161, + "grad_norm": 0.21892991662025452, + "learning_rate": 0.0006, + "loss": 3.971388101577759, + "step": 1378 + }, + { + "epoch": 19.15377894276977, + "grad_norm": 0.24582402408123016, + "learning_rate": 0.0006, + "loss": 3.9370944499969482, + "step": 1379 + }, + { + "epoch": 19.16775884665793, + "grad_norm": 0.27547118067741394, + "learning_rate": 0.0006, + "loss": 3.939406156539917, + "step": 1380 + }, + { + "epoch": 19.18173875054609, + "grad_norm": 0.3131563365459442, + "learning_rate": 0.0006, + "loss": 3.942620277404785, + "step": 1381 + }, + { + "epoch": 19.195718654434252, + "grad_norm": 0.3211703598499298, + "learning_rate": 0.0006, + "loss": 3.9388349056243896, + "step": 1382 + }, + { + "epoch": 19.209698558322412, + "grad_norm": 0.2791919410228729, + "learning_rate": 0.0006, + "loss": 3.9827399253845215, + "step": 1383 + }, + { + "epoch": 19.22367846221057, + "grad_norm": 0.2872016727924347, + "learning_rate": 0.0006, + "loss": 3.976715087890625, + "step": 1384 + }, + { + "epoch": 19.23765836609873, + "grad_norm": 0.2790389060974121, + "learning_rate": 0.0006, + "loss": 3.952850818634033, + "step": 1385 + }, + { + "epoch": 19.251638269986895, + "grad_norm": 0.31903740763664246, + "learning_rate": 0.0006, + "loss": 3.964506149291992, + "step": 1386 + }, + { + "epoch": 19.265618173875055, + "grad_norm": 0.31013646721839905, + "learning_rate": 0.0006, + "loss": 3.967219352722168, + "step": 1387 + }, + { + "epoch": 19.279598077763215, + "grad_norm": 0.2574339509010315, + "learning_rate": 0.0006, + "loss": 3.979168176651001, + "step": 1388 + }, + { + "epoch": 19.293577981651374, + "grad_norm": 0.24621108174324036, + "learning_rate": 0.0006, + "loss": 3.981734275817871, + "step": 1389 + }, + { + "epoch": 19.307557885539538, + "grad_norm": 0.25113818049430847, + "learning_rate": 0.0006, + "loss": 3.9787755012512207, + "step": 1390 + }, + { + "epoch": 19.321537789427698, + "grad_norm": 0.259971022605896, + "learning_rate": 0.0006, + "loss": 3.9648823738098145, + "step": 1391 + }, + { + "epoch": 19.335517693315857, + "grad_norm": 0.22580404579639435, + "learning_rate": 0.0006, + "loss": 3.9658002853393555, + "step": 1392 + }, + { + "epoch": 19.34949759720402, + "grad_norm": 0.2133680284023285, + "learning_rate": 0.0006, + "loss": 3.9615914821624756, + "step": 1393 + }, + { + "epoch": 19.36347750109218, + "grad_norm": 0.2387680858373642, + "learning_rate": 0.0006, + "loss": 3.993811845779419, + "step": 1394 + }, + { + "epoch": 19.37745740498034, + "grad_norm": 0.26086220145225525, + "learning_rate": 0.0006, + "loss": 3.932701826095581, + "step": 1395 + }, + { + "epoch": 19.3914373088685, + "grad_norm": 0.23255233466625214, + "learning_rate": 0.0006, + "loss": 3.8969321250915527, + "step": 1396 + }, + { + "epoch": 19.405417212756664, + "grad_norm": 0.22894541919231415, + "learning_rate": 0.0006, + "loss": 3.9569311141967773, + "step": 1397 + }, + { + "epoch": 19.419397116644824, + "grad_norm": 0.2254200130701065, + "learning_rate": 0.0006, + "loss": 3.953199863433838, + "step": 1398 + }, + { + "epoch": 19.433377020532983, + "grad_norm": 0.25802481174468994, + "learning_rate": 0.0006, + "loss": 3.9714815616607666, + "step": 1399 + }, + { + "epoch": 19.447356924421143, + "grad_norm": 0.24725162982940674, + "learning_rate": 0.0006, + "loss": 3.957339286804199, + "step": 1400 + }, + { + "epoch": 19.461336828309307, + "grad_norm": 0.2162018120288849, + "learning_rate": 0.0006, + "loss": 3.986801862716675, + "step": 1401 + }, + { + "epoch": 19.475316732197467, + "grad_norm": 0.21530906856060028, + "learning_rate": 0.0006, + "loss": 3.9766759872436523, + "step": 1402 + }, + { + "epoch": 19.489296636085626, + "grad_norm": 0.20260323584079742, + "learning_rate": 0.0006, + "loss": 3.9576425552368164, + "step": 1403 + }, + { + "epoch": 19.503276539973786, + "grad_norm": 0.188974529504776, + "learning_rate": 0.0006, + "loss": 3.9852395057678223, + "step": 1404 + }, + { + "epoch": 19.51725644386195, + "grad_norm": 0.19727374613285065, + "learning_rate": 0.0006, + "loss": 3.972484588623047, + "step": 1405 + }, + { + "epoch": 19.53123634775011, + "grad_norm": 0.23708008229732513, + "learning_rate": 0.0006, + "loss": 3.992471694946289, + "step": 1406 + }, + { + "epoch": 19.54521625163827, + "grad_norm": 0.23783449828624725, + "learning_rate": 0.0006, + "loss": 3.9788265228271484, + "step": 1407 + }, + { + "epoch": 19.55919615552643, + "grad_norm": 0.24744364619255066, + "learning_rate": 0.0006, + "loss": 3.9559011459350586, + "step": 1408 + }, + { + "epoch": 19.573176059414592, + "grad_norm": 0.24828094244003296, + "learning_rate": 0.0006, + "loss": 3.9663949012756348, + "step": 1409 + }, + { + "epoch": 19.587155963302752, + "grad_norm": 0.2681315541267395, + "learning_rate": 0.0006, + "loss": 3.9581191539764404, + "step": 1410 + }, + { + "epoch": 19.601135867190912, + "grad_norm": 0.2691532373428345, + "learning_rate": 0.0006, + "loss": 3.9832754135131836, + "step": 1411 + }, + { + "epoch": 19.615115771079076, + "grad_norm": 0.2900252640247345, + "learning_rate": 0.0006, + "loss": 3.984365940093994, + "step": 1412 + }, + { + "epoch": 19.629095674967235, + "grad_norm": 0.3194943070411682, + "learning_rate": 0.0006, + "loss": 3.9856505393981934, + "step": 1413 + }, + { + "epoch": 19.643075578855395, + "grad_norm": 0.3029029071331024, + "learning_rate": 0.0006, + "loss": 3.968992233276367, + "step": 1414 + }, + { + "epoch": 19.657055482743555, + "grad_norm": 0.2658176124095917, + "learning_rate": 0.0006, + "loss": 3.995187282562256, + "step": 1415 + }, + { + "epoch": 19.67103538663172, + "grad_norm": 0.26807504892349243, + "learning_rate": 0.0006, + "loss": 3.9756274223327637, + "step": 1416 + }, + { + "epoch": 19.68501529051988, + "grad_norm": 0.27718642354011536, + "learning_rate": 0.0006, + "loss": 3.9510018825531006, + "step": 1417 + }, + { + "epoch": 19.698995194408038, + "grad_norm": 0.26322051882743835, + "learning_rate": 0.0006, + "loss": 3.965155601501465, + "step": 1418 + }, + { + "epoch": 19.712975098296198, + "grad_norm": 0.2566570043563843, + "learning_rate": 0.0006, + "loss": 3.984218120574951, + "step": 1419 + }, + { + "epoch": 19.72695500218436, + "grad_norm": 0.2218743860721588, + "learning_rate": 0.0006, + "loss": 3.9338784217834473, + "step": 1420 + }, + { + "epoch": 19.74093490607252, + "grad_norm": 0.22894173860549927, + "learning_rate": 0.0006, + "loss": 3.9869046211242676, + "step": 1421 + }, + { + "epoch": 19.75491480996068, + "grad_norm": 0.26837027072906494, + "learning_rate": 0.0006, + "loss": 3.96799898147583, + "step": 1422 + }, + { + "epoch": 19.76889471384884, + "grad_norm": 0.2767876982688904, + "learning_rate": 0.0006, + "loss": 3.9431071281433105, + "step": 1423 + }, + { + "epoch": 19.782874617737004, + "grad_norm": 0.24402284622192383, + "learning_rate": 0.0006, + "loss": 3.9631881713867188, + "step": 1424 + }, + { + "epoch": 19.796854521625164, + "grad_norm": 0.23500724136829376, + "learning_rate": 0.0006, + "loss": 3.9943337440490723, + "step": 1425 + }, + { + "epoch": 19.810834425513324, + "grad_norm": 0.22509142756462097, + "learning_rate": 0.0006, + "loss": 3.961226224899292, + "step": 1426 + }, + { + "epoch": 19.824814329401484, + "grad_norm": 0.23524795472621918, + "learning_rate": 0.0006, + "loss": 3.9552102088928223, + "step": 1427 + }, + { + "epoch": 19.838794233289647, + "grad_norm": 0.22307050228118896, + "learning_rate": 0.0006, + "loss": 3.9623494148254395, + "step": 1428 + }, + { + "epoch": 19.852774137177807, + "grad_norm": 0.21144486963748932, + "learning_rate": 0.0006, + "loss": 3.9620237350463867, + "step": 1429 + }, + { + "epoch": 19.866754041065967, + "grad_norm": 0.20249812304973602, + "learning_rate": 0.0006, + "loss": 3.953911066055298, + "step": 1430 + }, + { + "epoch": 19.88073394495413, + "grad_norm": 0.2350354939699173, + "learning_rate": 0.0006, + "loss": 3.9616730213165283, + "step": 1431 + }, + { + "epoch": 19.89471384884229, + "grad_norm": 0.2566683292388916, + "learning_rate": 0.0006, + "loss": 3.9372501373291016, + "step": 1432 + }, + { + "epoch": 19.90869375273045, + "grad_norm": 0.2520846128463745, + "learning_rate": 0.0006, + "loss": 3.9814648628234863, + "step": 1433 + }, + { + "epoch": 19.92267365661861, + "grad_norm": 0.23989640176296234, + "learning_rate": 0.0006, + "loss": 3.9692864418029785, + "step": 1434 + }, + { + "epoch": 19.936653560506773, + "grad_norm": 0.20650425553321838, + "learning_rate": 0.0006, + "loss": 3.960256814956665, + "step": 1435 + }, + { + "epoch": 19.950633464394933, + "grad_norm": 0.20478376746177673, + "learning_rate": 0.0006, + "loss": 3.9585227966308594, + "step": 1436 + }, + { + "epoch": 19.964613368283093, + "grad_norm": 0.234436497092247, + "learning_rate": 0.0006, + "loss": 3.945631742477417, + "step": 1437 + }, + { + "epoch": 19.978593272171253, + "grad_norm": 0.19969749450683594, + "learning_rate": 0.0006, + "loss": 3.9646050930023193, + "step": 1438 + }, + { + "epoch": 19.992573176059416, + "grad_norm": 0.20638690888881683, + "learning_rate": 0.0006, + "loss": 3.9461846351623535, + "step": 1439 + }, + { + "epoch": 20.0, + "grad_norm": 0.2120274156332016, + "learning_rate": 0.0006, + "loss": 3.965153217315674, + "step": 1440 + }, + { + "epoch": 20.0, + "eval_loss": 4.168524742126465, + "eval_runtime": 44.2796, + "eval_samples_per_second": 55.15, + "eval_steps_per_second": 3.455, + "step": 1440 + }, + { + "epoch": 20.01397990388816, + "grad_norm": 0.19704894721508026, + "learning_rate": 0.0006, + "loss": 3.937016248703003, + "step": 1441 + }, + { + "epoch": 20.027959807776323, + "grad_norm": 0.18682368099689484, + "learning_rate": 0.0006, + "loss": 3.895922899246216, + "step": 1442 + }, + { + "epoch": 20.041939711664483, + "grad_norm": 0.18982571363449097, + "learning_rate": 0.0006, + "loss": 3.929841995239258, + "step": 1443 + }, + { + "epoch": 20.055919615552643, + "grad_norm": 0.20811910927295685, + "learning_rate": 0.0006, + "loss": 3.9498324394226074, + "step": 1444 + }, + { + "epoch": 20.069899519440803, + "grad_norm": 0.2149062603712082, + "learning_rate": 0.0006, + "loss": 3.929853916168213, + "step": 1445 + }, + { + "epoch": 20.083879423328966, + "grad_norm": 0.20016685128211975, + "learning_rate": 0.0006, + "loss": 3.9374136924743652, + "step": 1446 + }, + { + "epoch": 20.097859327217126, + "grad_norm": 0.19969616830348969, + "learning_rate": 0.0006, + "loss": 3.932447910308838, + "step": 1447 + }, + { + "epoch": 20.111839231105286, + "grad_norm": 0.2163356989622116, + "learning_rate": 0.0006, + "loss": 3.9325437545776367, + "step": 1448 + }, + { + "epoch": 20.125819134993446, + "grad_norm": 0.22026969492435455, + "learning_rate": 0.0006, + "loss": 3.9118852615356445, + "step": 1449 + }, + { + "epoch": 20.13979903888161, + "grad_norm": 0.23337116837501526, + "learning_rate": 0.0006, + "loss": 3.9416019916534424, + "step": 1450 + }, + { + "epoch": 20.15377894276977, + "grad_norm": 0.23971447348594666, + "learning_rate": 0.0006, + "loss": 3.9416871070861816, + "step": 1451 + }, + { + "epoch": 20.16775884665793, + "grad_norm": 0.25973960757255554, + "learning_rate": 0.0006, + "loss": 3.93826961517334, + "step": 1452 + }, + { + "epoch": 20.18173875054609, + "grad_norm": 0.2303445190191269, + "learning_rate": 0.0006, + "loss": 3.909383535385132, + "step": 1453 + }, + { + "epoch": 20.195718654434252, + "grad_norm": 0.21090206503868103, + "learning_rate": 0.0006, + "loss": 3.935939311981201, + "step": 1454 + }, + { + "epoch": 20.209698558322412, + "grad_norm": 0.2278691977262497, + "learning_rate": 0.0006, + "loss": 3.9623684883117676, + "step": 1455 + }, + { + "epoch": 20.22367846221057, + "grad_norm": 0.22291512787342072, + "learning_rate": 0.0006, + "loss": 3.9386210441589355, + "step": 1456 + }, + { + "epoch": 20.23765836609873, + "grad_norm": 0.2385793924331665, + "learning_rate": 0.0006, + "loss": 3.927365303039551, + "step": 1457 + }, + { + "epoch": 20.251638269986895, + "grad_norm": 0.23949867486953735, + "learning_rate": 0.0006, + "loss": 3.956698179244995, + "step": 1458 + }, + { + "epoch": 20.265618173875055, + "grad_norm": 0.2232269048690796, + "learning_rate": 0.0006, + "loss": 3.9465065002441406, + "step": 1459 + }, + { + "epoch": 20.279598077763215, + "grad_norm": 0.22286680340766907, + "learning_rate": 0.0006, + "loss": 3.9102284908294678, + "step": 1460 + }, + { + "epoch": 20.293577981651374, + "grad_norm": 0.24039050936698914, + "learning_rate": 0.0006, + "loss": 3.928055763244629, + "step": 1461 + }, + { + "epoch": 20.307557885539538, + "grad_norm": 0.2532738447189331, + "learning_rate": 0.0006, + "loss": 3.931753635406494, + "step": 1462 + }, + { + "epoch": 20.321537789427698, + "grad_norm": 0.2206273376941681, + "learning_rate": 0.0006, + "loss": 3.936119556427002, + "step": 1463 + }, + { + "epoch": 20.335517693315857, + "grad_norm": 0.20918945968151093, + "learning_rate": 0.0006, + "loss": 3.9228529930114746, + "step": 1464 + }, + { + "epoch": 20.34949759720402, + "grad_norm": 0.2324502319097519, + "learning_rate": 0.0006, + "loss": 3.9370768070220947, + "step": 1465 + }, + { + "epoch": 20.36347750109218, + "grad_norm": 0.26811033487319946, + "learning_rate": 0.0006, + "loss": 3.968515396118164, + "step": 1466 + }, + { + "epoch": 20.37745740498034, + "grad_norm": 0.2896045744419098, + "learning_rate": 0.0006, + "loss": 3.945124626159668, + "step": 1467 + }, + { + "epoch": 20.3914373088685, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 3.9399516582489014, + "step": 1468 + }, + { + "epoch": 20.405417212756664, + "grad_norm": 0.3076821565628052, + "learning_rate": 0.0006, + "loss": 3.9545583724975586, + "step": 1469 + }, + { + "epoch": 20.419397116644824, + "grad_norm": 0.3019449710845947, + "learning_rate": 0.0006, + "loss": 3.9502270221710205, + "step": 1470 + }, + { + "epoch": 20.433377020532983, + "grad_norm": 0.31832560896873474, + "learning_rate": 0.0006, + "loss": 3.940439224243164, + "step": 1471 + }, + { + "epoch": 20.447356924421143, + "grad_norm": 0.30303657054901123, + "learning_rate": 0.0006, + "loss": 3.9451770782470703, + "step": 1472 + }, + { + "epoch": 20.461336828309307, + "grad_norm": 0.28122979402542114, + "learning_rate": 0.0006, + "loss": 3.934508800506592, + "step": 1473 + }, + { + "epoch": 20.475316732197467, + "grad_norm": 0.27013441920280457, + "learning_rate": 0.0006, + "loss": 3.924323081970215, + "step": 1474 + }, + { + "epoch": 20.489296636085626, + "grad_norm": 0.29052063822746277, + "learning_rate": 0.0006, + "loss": 3.970916748046875, + "step": 1475 + }, + { + "epoch": 20.503276539973786, + "grad_norm": 0.2871626913547516, + "learning_rate": 0.0006, + "loss": 3.945425033569336, + "step": 1476 + }, + { + "epoch": 20.51725644386195, + "grad_norm": 0.2396184206008911, + "learning_rate": 0.0006, + "loss": 3.964290142059326, + "step": 1477 + }, + { + "epoch": 20.53123634775011, + "grad_norm": 0.21942107379436493, + "learning_rate": 0.0006, + "loss": 3.910101890563965, + "step": 1478 + }, + { + "epoch": 20.54521625163827, + "grad_norm": 0.22193685173988342, + "learning_rate": 0.0006, + "loss": 3.914005756378174, + "step": 1479 + }, + { + "epoch": 20.55919615552643, + "grad_norm": 0.20207515358924866, + "learning_rate": 0.0006, + "loss": 3.9575581550598145, + "step": 1480 + }, + { + "epoch": 20.573176059414592, + "grad_norm": 0.17855247855186462, + "learning_rate": 0.0006, + "loss": 3.941490411758423, + "step": 1481 + }, + { + "epoch": 20.587155963302752, + "grad_norm": 0.21268485486507416, + "learning_rate": 0.0006, + "loss": 3.94045352935791, + "step": 1482 + }, + { + "epoch": 20.601135867190912, + "grad_norm": 0.24890053272247314, + "learning_rate": 0.0006, + "loss": 3.932961940765381, + "step": 1483 + }, + { + "epoch": 20.615115771079076, + "grad_norm": 0.23771314322948456, + "learning_rate": 0.0006, + "loss": 3.9067630767822266, + "step": 1484 + }, + { + "epoch": 20.629095674967235, + "grad_norm": 0.20990237593650818, + "learning_rate": 0.0006, + "loss": 3.9476752281188965, + "step": 1485 + }, + { + "epoch": 20.643075578855395, + "grad_norm": 0.20058798789978027, + "learning_rate": 0.0006, + "loss": 3.9350547790527344, + "step": 1486 + }, + { + "epoch": 20.657055482743555, + "grad_norm": 0.1953001767396927, + "learning_rate": 0.0006, + "loss": 3.9437222480773926, + "step": 1487 + }, + { + "epoch": 20.67103538663172, + "grad_norm": 0.18748535215854645, + "learning_rate": 0.0006, + "loss": 3.9336047172546387, + "step": 1488 + }, + { + "epoch": 20.68501529051988, + "grad_norm": 0.18874801695346832, + "learning_rate": 0.0006, + "loss": 3.9042580127716064, + "step": 1489 + }, + { + "epoch": 20.698995194408038, + "grad_norm": 0.1844169795513153, + "learning_rate": 0.0006, + "loss": 3.9302420616149902, + "step": 1490 + }, + { + "epoch": 20.712975098296198, + "grad_norm": 0.18519413471221924, + "learning_rate": 0.0006, + "loss": 3.9527437686920166, + "step": 1491 + }, + { + "epoch": 20.72695500218436, + "grad_norm": 0.20084598660469055, + "learning_rate": 0.0006, + "loss": 3.9161760807037354, + "step": 1492 + }, + { + "epoch": 20.74093490607252, + "grad_norm": 0.2015734612941742, + "learning_rate": 0.0006, + "loss": 3.9466545581817627, + "step": 1493 + }, + { + "epoch": 20.75491480996068, + "grad_norm": 0.2210122048854828, + "learning_rate": 0.0006, + "loss": 3.8994693756103516, + "step": 1494 + }, + { + "epoch": 20.76889471384884, + "grad_norm": 0.23019762337207794, + "learning_rate": 0.0006, + "loss": 3.93685245513916, + "step": 1495 + }, + { + "epoch": 20.782874617737004, + "grad_norm": 0.21246281266212463, + "learning_rate": 0.0006, + "loss": 3.9499399662017822, + "step": 1496 + }, + { + "epoch": 20.796854521625164, + "grad_norm": 0.21142810583114624, + "learning_rate": 0.0006, + "loss": 3.9317150115966797, + "step": 1497 + }, + { + "epoch": 20.810834425513324, + "grad_norm": 0.20230524241924286, + "learning_rate": 0.0006, + "loss": 3.9389750957489014, + "step": 1498 + }, + { + "epoch": 20.824814329401484, + "grad_norm": 0.21096977591514587, + "learning_rate": 0.0006, + "loss": 3.9325194358825684, + "step": 1499 + }, + { + "epoch": 20.838794233289647, + "grad_norm": 0.2309989333152771, + "learning_rate": 0.0006, + "loss": 3.943641185760498, + "step": 1500 + }, + { + "epoch": 20.852774137177807, + "grad_norm": 0.2016306221485138, + "learning_rate": 0.0006, + "loss": 3.986043930053711, + "step": 1501 + }, + { + "epoch": 20.866754041065967, + "grad_norm": 0.2107970118522644, + "learning_rate": 0.0006, + "loss": 3.9219160079956055, + "step": 1502 + }, + { + "epoch": 20.88073394495413, + "grad_norm": 0.21580125391483307, + "learning_rate": 0.0006, + "loss": 3.942014694213867, + "step": 1503 + }, + { + "epoch": 20.89471384884229, + "grad_norm": 0.21348726749420166, + "learning_rate": 0.0006, + "loss": 3.9389920234680176, + "step": 1504 + }, + { + "epoch": 20.90869375273045, + "grad_norm": 0.23094943165779114, + "learning_rate": 0.0006, + "loss": 3.952993392944336, + "step": 1505 + }, + { + "epoch": 20.92267365661861, + "grad_norm": 0.22431740164756775, + "learning_rate": 0.0006, + "loss": 3.897671937942505, + "step": 1506 + }, + { + "epoch": 20.936653560506773, + "grad_norm": 0.20056353509426117, + "learning_rate": 0.0006, + "loss": 3.9100005626678467, + "step": 1507 + }, + { + "epoch": 20.950633464394933, + "grad_norm": 0.20604434609413147, + "learning_rate": 0.0006, + "loss": 3.9486045837402344, + "step": 1508 + }, + { + "epoch": 20.964613368283093, + "grad_norm": 0.22979380190372467, + "learning_rate": 0.0006, + "loss": 3.977163553237915, + "step": 1509 + }, + { + "epoch": 20.978593272171253, + "grad_norm": 0.2421523779630661, + "learning_rate": 0.0006, + "loss": 3.9216256141662598, + "step": 1510 + }, + { + "epoch": 20.992573176059416, + "grad_norm": 0.25776705145835876, + "learning_rate": 0.0006, + "loss": 3.9221739768981934, + "step": 1511 + }, + { + "epoch": 21.0, + "grad_norm": 0.2750694751739502, + "learning_rate": 0.0006, + "loss": 3.938098907470703, + "step": 1512 + }, + { + "epoch": 21.0, + "eval_loss": 4.159763336181641, + "eval_runtime": 44.8663, + "eval_samples_per_second": 54.428, + "eval_steps_per_second": 3.41, + "step": 1512 + }, + { + "epoch": 21.01397990388816, + "grad_norm": 0.24513043463230133, + "learning_rate": 0.0006, + "loss": 3.8939385414123535, + "step": 1513 + }, + { + "epoch": 21.027959807776323, + "grad_norm": 0.22209352254867554, + "learning_rate": 0.0006, + "loss": 3.9044857025146484, + "step": 1514 + }, + { + "epoch": 21.041939711664483, + "grad_norm": 0.22437648475170135, + "learning_rate": 0.0006, + "loss": 3.9325196743011475, + "step": 1515 + }, + { + "epoch": 21.055919615552643, + "grad_norm": 0.21168062090873718, + "learning_rate": 0.0006, + "loss": 3.882176637649536, + "step": 1516 + }, + { + "epoch": 21.069899519440803, + "grad_norm": 0.22334499657154083, + "learning_rate": 0.0006, + "loss": 3.8978934288024902, + "step": 1517 + }, + { + "epoch": 21.083879423328966, + "grad_norm": 0.21038010716438293, + "learning_rate": 0.0006, + "loss": 3.8807029724121094, + "step": 1518 + }, + { + "epoch": 21.097859327217126, + "grad_norm": 0.2243613600730896, + "learning_rate": 0.0006, + "loss": 3.924865961074829, + "step": 1519 + }, + { + "epoch": 21.111839231105286, + "grad_norm": 0.2535616159439087, + "learning_rate": 0.0006, + "loss": 3.9288227558135986, + "step": 1520 + }, + { + "epoch": 21.125819134993446, + "grad_norm": 0.2782756984233856, + "learning_rate": 0.0006, + "loss": 3.908233642578125, + "step": 1521 + }, + { + "epoch": 21.13979903888161, + "grad_norm": 0.2586214542388916, + "learning_rate": 0.0006, + "loss": 3.9151182174682617, + "step": 1522 + }, + { + "epoch": 21.15377894276977, + "grad_norm": 0.22465091943740845, + "learning_rate": 0.0006, + "loss": 3.9209084510803223, + "step": 1523 + }, + { + "epoch": 21.16775884665793, + "grad_norm": 0.2588018774986267, + "learning_rate": 0.0006, + "loss": 3.9295971393585205, + "step": 1524 + }, + { + "epoch": 21.18173875054609, + "grad_norm": 0.2637675702571869, + "learning_rate": 0.0006, + "loss": 3.9353199005126953, + "step": 1525 + }, + { + "epoch": 21.195718654434252, + "grad_norm": 0.2806383967399597, + "learning_rate": 0.0006, + "loss": 3.922337770462036, + "step": 1526 + }, + { + "epoch": 21.209698558322412, + "grad_norm": 0.27103501558303833, + "learning_rate": 0.0006, + "loss": 3.8811073303222656, + "step": 1527 + }, + { + "epoch": 21.22367846221057, + "grad_norm": 0.27203720808029175, + "learning_rate": 0.0006, + "loss": 3.9036178588867188, + "step": 1528 + }, + { + "epoch": 21.23765836609873, + "grad_norm": 0.2783355712890625, + "learning_rate": 0.0006, + "loss": 3.885456085205078, + "step": 1529 + }, + { + "epoch": 21.251638269986895, + "grad_norm": 0.2884930968284607, + "learning_rate": 0.0006, + "loss": 3.8936941623687744, + "step": 1530 + }, + { + "epoch": 21.265618173875055, + "grad_norm": 0.2829558849334717, + "learning_rate": 0.0006, + "loss": 3.927624225616455, + "step": 1531 + }, + { + "epoch": 21.279598077763215, + "grad_norm": 0.2809497117996216, + "learning_rate": 0.0006, + "loss": 3.8896753787994385, + "step": 1532 + }, + { + "epoch": 21.293577981651374, + "grad_norm": 0.27037671208381653, + "learning_rate": 0.0006, + "loss": 3.91316294670105, + "step": 1533 + }, + { + "epoch": 21.307557885539538, + "grad_norm": 0.310051292181015, + "learning_rate": 0.0006, + "loss": 3.9137332439422607, + "step": 1534 + }, + { + "epoch": 21.321537789427698, + "grad_norm": 0.30489876866340637, + "learning_rate": 0.0006, + "loss": 3.9088284969329834, + "step": 1535 + }, + { + "epoch": 21.335517693315857, + "grad_norm": 0.2607756555080414, + "learning_rate": 0.0006, + "loss": 3.9097847938537598, + "step": 1536 + }, + { + "epoch": 21.34949759720402, + "grad_norm": 0.2460775375366211, + "learning_rate": 0.0006, + "loss": 3.941211700439453, + "step": 1537 + }, + { + "epoch": 21.36347750109218, + "grad_norm": 0.24271734058856964, + "learning_rate": 0.0006, + "loss": 3.9140594005584717, + "step": 1538 + }, + { + "epoch": 21.37745740498034, + "grad_norm": 0.20012645423412323, + "learning_rate": 0.0006, + "loss": 3.888446807861328, + "step": 1539 + }, + { + "epoch": 21.3914373088685, + "grad_norm": 0.2196308672428131, + "learning_rate": 0.0006, + "loss": 3.9153785705566406, + "step": 1540 + }, + { + "epoch": 21.405417212756664, + "grad_norm": 0.22184589505195618, + "learning_rate": 0.0006, + "loss": 3.91996431350708, + "step": 1541 + }, + { + "epoch": 21.419397116644824, + "grad_norm": 0.22947315871715546, + "learning_rate": 0.0006, + "loss": 3.9268412590026855, + "step": 1542 + }, + { + "epoch": 21.433377020532983, + "grad_norm": 0.22275054454803467, + "learning_rate": 0.0006, + "loss": 3.909275531768799, + "step": 1543 + }, + { + "epoch": 21.447356924421143, + "grad_norm": 0.23103971779346466, + "learning_rate": 0.0006, + "loss": 3.925635814666748, + "step": 1544 + }, + { + "epoch": 21.461336828309307, + "grad_norm": 0.23379720747470856, + "learning_rate": 0.0006, + "loss": 3.926647186279297, + "step": 1545 + }, + { + "epoch": 21.475316732197467, + "grad_norm": 0.2244282215833664, + "learning_rate": 0.0006, + "loss": 3.9428000450134277, + "step": 1546 + }, + { + "epoch": 21.489296636085626, + "grad_norm": 0.22773298621177673, + "learning_rate": 0.0006, + "loss": 3.9378256797790527, + "step": 1547 + }, + { + "epoch": 21.503276539973786, + "grad_norm": 0.1918657273054123, + "learning_rate": 0.0006, + "loss": 3.904022216796875, + "step": 1548 + }, + { + "epoch": 21.51725644386195, + "grad_norm": 0.18415570259094238, + "learning_rate": 0.0006, + "loss": 3.9105122089385986, + "step": 1549 + }, + { + "epoch": 21.53123634775011, + "grad_norm": 0.22141380608081818, + "learning_rate": 0.0006, + "loss": 3.9153857231140137, + "step": 1550 + }, + { + "epoch": 21.54521625163827, + "grad_norm": 0.22533352673053741, + "learning_rate": 0.0006, + "loss": 3.9148974418640137, + "step": 1551 + }, + { + "epoch": 21.55919615552643, + "grad_norm": 0.2124762088060379, + "learning_rate": 0.0006, + "loss": 3.926311731338501, + "step": 1552 + }, + { + "epoch": 21.573176059414592, + "grad_norm": 0.239680215716362, + "learning_rate": 0.0006, + "loss": 3.9260334968566895, + "step": 1553 + }, + { + "epoch": 21.587155963302752, + "grad_norm": 0.24158740043640137, + "learning_rate": 0.0006, + "loss": 3.933223247528076, + "step": 1554 + }, + { + "epoch": 21.601135867190912, + "grad_norm": 0.2216576784849167, + "learning_rate": 0.0006, + "loss": 3.9065442085266113, + "step": 1555 + }, + { + "epoch": 21.615115771079076, + "grad_norm": 0.20099912583827972, + "learning_rate": 0.0006, + "loss": 3.923278570175171, + "step": 1556 + }, + { + "epoch": 21.629095674967235, + "grad_norm": 0.2337288111448288, + "learning_rate": 0.0006, + "loss": 3.92032527923584, + "step": 1557 + }, + { + "epoch": 21.643075578855395, + "grad_norm": 0.23574814200401306, + "learning_rate": 0.0006, + "loss": 3.896244525909424, + "step": 1558 + }, + { + "epoch": 21.657055482743555, + "grad_norm": 0.21338573098182678, + "learning_rate": 0.0006, + "loss": 3.930345058441162, + "step": 1559 + }, + { + "epoch": 21.67103538663172, + "grad_norm": 0.2375067174434662, + "learning_rate": 0.0006, + "loss": 3.864104986190796, + "step": 1560 + }, + { + "epoch": 21.68501529051988, + "grad_norm": 0.22490349411964417, + "learning_rate": 0.0006, + "loss": 3.883296012878418, + "step": 1561 + }, + { + "epoch": 21.698995194408038, + "grad_norm": 0.23021313548088074, + "learning_rate": 0.0006, + "loss": 3.915200710296631, + "step": 1562 + }, + { + "epoch": 21.712975098296198, + "grad_norm": 0.22590875625610352, + "learning_rate": 0.0006, + "loss": 3.903597354888916, + "step": 1563 + }, + { + "epoch": 21.72695500218436, + "grad_norm": 0.19066260755062103, + "learning_rate": 0.0006, + "loss": 3.9162631034851074, + "step": 1564 + }, + { + "epoch": 21.74093490607252, + "grad_norm": 0.18134327232837677, + "learning_rate": 0.0006, + "loss": 3.9167914390563965, + "step": 1565 + }, + { + "epoch": 21.75491480996068, + "grad_norm": 0.1782190054655075, + "learning_rate": 0.0006, + "loss": 3.900925636291504, + "step": 1566 + }, + { + "epoch": 21.76889471384884, + "grad_norm": 0.19034099578857422, + "learning_rate": 0.0006, + "loss": 3.896559238433838, + "step": 1567 + }, + { + "epoch": 21.782874617737004, + "grad_norm": 0.21509577333927155, + "learning_rate": 0.0006, + "loss": 3.891681671142578, + "step": 1568 + }, + { + "epoch": 21.796854521625164, + "grad_norm": 0.2370351105928421, + "learning_rate": 0.0006, + "loss": 3.886570453643799, + "step": 1569 + }, + { + "epoch": 21.810834425513324, + "grad_norm": 0.25546324253082275, + "learning_rate": 0.0006, + "loss": 3.9247193336486816, + "step": 1570 + }, + { + "epoch": 21.824814329401484, + "grad_norm": 0.2513384222984314, + "learning_rate": 0.0006, + "loss": 3.9120583534240723, + "step": 1571 + }, + { + "epoch": 21.838794233289647, + "grad_norm": 0.24691323935985565, + "learning_rate": 0.0006, + "loss": 3.9144935607910156, + "step": 1572 + }, + { + "epoch": 21.852774137177807, + "grad_norm": 0.2573968172073364, + "learning_rate": 0.0006, + "loss": 3.9517531394958496, + "step": 1573 + }, + { + "epoch": 21.866754041065967, + "grad_norm": 0.25461453199386597, + "learning_rate": 0.0006, + "loss": 3.93508243560791, + "step": 1574 + }, + { + "epoch": 21.88073394495413, + "grad_norm": 0.23756568133831024, + "learning_rate": 0.0006, + "loss": 3.8885269165039062, + "step": 1575 + }, + { + "epoch": 21.89471384884229, + "grad_norm": 0.2193172425031662, + "learning_rate": 0.0006, + "loss": 3.9103426933288574, + "step": 1576 + }, + { + "epoch": 21.90869375273045, + "grad_norm": 0.2350149303674698, + "learning_rate": 0.0006, + "loss": 3.9399590492248535, + "step": 1577 + }, + { + "epoch": 21.92267365661861, + "grad_norm": 0.23759333789348602, + "learning_rate": 0.0006, + "loss": 3.9433584213256836, + "step": 1578 + }, + { + "epoch": 21.936653560506773, + "grad_norm": 0.21108432114124298, + "learning_rate": 0.0006, + "loss": 3.9241819381713867, + "step": 1579 + }, + { + "epoch": 21.950633464394933, + "grad_norm": 0.22088949382305145, + "learning_rate": 0.0006, + "loss": 3.9231910705566406, + "step": 1580 + }, + { + "epoch": 21.964613368283093, + "grad_norm": 0.22125045955181122, + "learning_rate": 0.0006, + "loss": 3.896329164505005, + "step": 1581 + }, + { + "epoch": 21.978593272171253, + "grad_norm": 0.20745202898979187, + "learning_rate": 0.0006, + "loss": 3.8920536041259766, + "step": 1582 + }, + { + "epoch": 21.992573176059416, + "grad_norm": 0.2409721463918686, + "learning_rate": 0.0006, + "loss": 3.9061317443847656, + "step": 1583 + }, + { + "epoch": 22.0, + "grad_norm": 0.2669669985771179, + "learning_rate": 0.0006, + "loss": 3.922062397003174, + "step": 1584 + }, + { + "epoch": 22.0, + "eval_loss": 4.140966415405273, + "eval_runtime": 46.7132, + "eval_samples_per_second": 52.276, + "eval_steps_per_second": 3.275, + "step": 1584 + }, + { + "epoch": 22.01397990388816, + "grad_norm": 0.26155969500541687, + "learning_rate": 0.0006, + "loss": 3.888944625854492, + "step": 1585 + }, + { + "epoch": 22.027959807776323, + "grad_norm": 0.2579149007797241, + "learning_rate": 0.0006, + "loss": 3.8924355506896973, + "step": 1586 + }, + { + "epoch": 22.041939711664483, + "grad_norm": 0.2429896742105484, + "learning_rate": 0.0006, + "loss": 3.8714070320129395, + "step": 1587 + }, + { + "epoch": 22.055919615552643, + "grad_norm": 0.23497673869132996, + "learning_rate": 0.0006, + "loss": 3.905089855194092, + "step": 1588 + }, + { + "epoch": 22.069899519440803, + "grad_norm": 0.24074940383434296, + "learning_rate": 0.0006, + "loss": 3.886845111846924, + "step": 1589 + }, + { + "epoch": 22.083879423328966, + "grad_norm": 0.2226274162530899, + "learning_rate": 0.0006, + "loss": 3.8554329872131348, + "step": 1590 + }, + { + "epoch": 22.097859327217126, + "grad_norm": 0.22924423217773438, + "learning_rate": 0.0006, + "loss": 3.8914356231689453, + "step": 1591 + }, + { + "epoch": 22.111839231105286, + "grad_norm": 0.2459387183189392, + "learning_rate": 0.0006, + "loss": 3.902522087097168, + "step": 1592 + }, + { + "epoch": 22.125819134993446, + "grad_norm": 0.2704590857028961, + "learning_rate": 0.0006, + "loss": 3.896497964859009, + "step": 1593 + }, + { + "epoch": 22.13979903888161, + "grad_norm": 0.2848219871520996, + "learning_rate": 0.0006, + "loss": 3.88423228263855, + "step": 1594 + }, + { + "epoch": 22.15377894276977, + "grad_norm": 0.22996552288532257, + "learning_rate": 0.0006, + "loss": 3.9034953117370605, + "step": 1595 + }, + { + "epoch": 22.16775884665793, + "grad_norm": 0.2117270529270172, + "learning_rate": 0.0006, + "loss": 3.888279914855957, + "step": 1596 + }, + { + "epoch": 22.18173875054609, + "grad_norm": 0.19724160432815552, + "learning_rate": 0.0006, + "loss": 3.860525131225586, + "step": 1597 + }, + { + "epoch": 22.195718654434252, + "grad_norm": 0.2012624740600586, + "learning_rate": 0.0006, + "loss": 3.8930106163024902, + "step": 1598 + }, + { + "epoch": 22.209698558322412, + "grad_norm": 0.20243871212005615, + "learning_rate": 0.0006, + "loss": 3.8727619647979736, + "step": 1599 + }, + { + "epoch": 22.22367846221057, + "grad_norm": 0.21737465262413025, + "learning_rate": 0.0006, + "loss": 3.887969493865967, + "step": 1600 + }, + { + "epoch": 22.23765836609873, + "grad_norm": 0.23969845473766327, + "learning_rate": 0.0006, + "loss": 3.8629722595214844, + "step": 1601 + }, + { + "epoch": 22.251638269986895, + "grad_norm": 0.22874902188777924, + "learning_rate": 0.0006, + "loss": 3.9135584831237793, + "step": 1602 + }, + { + "epoch": 22.265618173875055, + "grad_norm": 0.209506556391716, + "learning_rate": 0.0006, + "loss": 3.8734190464019775, + "step": 1603 + }, + { + "epoch": 22.279598077763215, + "grad_norm": 0.22235789895057678, + "learning_rate": 0.0006, + "loss": 3.884854793548584, + "step": 1604 + }, + { + "epoch": 22.293577981651374, + "grad_norm": 0.21975041925907135, + "learning_rate": 0.0006, + "loss": 3.8860888481140137, + "step": 1605 + }, + { + "epoch": 22.307557885539538, + "grad_norm": 0.21474459767341614, + "learning_rate": 0.0006, + "loss": 3.9052200317382812, + "step": 1606 + }, + { + "epoch": 22.321537789427698, + "grad_norm": 0.2103329747915268, + "learning_rate": 0.0006, + "loss": 3.8516340255737305, + "step": 1607 + }, + { + "epoch": 22.335517693315857, + "grad_norm": 0.1981191635131836, + "learning_rate": 0.0006, + "loss": 3.9017434120178223, + "step": 1608 + }, + { + "epoch": 22.34949759720402, + "grad_norm": 0.20679591596126556, + "learning_rate": 0.0006, + "loss": 3.889885425567627, + "step": 1609 + }, + { + "epoch": 22.36347750109218, + "grad_norm": 0.20809867978096008, + "learning_rate": 0.0006, + "loss": 3.881868362426758, + "step": 1610 + }, + { + "epoch": 22.37745740498034, + "grad_norm": 0.21394680440425873, + "learning_rate": 0.0006, + "loss": 3.89980411529541, + "step": 1611 + }, + { + "epoch": 22.3914373088685, + "grad_norm": 0.2334284782409668, + "learning_rate": 0.0006, + "loss": 3.8672266006469727, + "step": 1612 + }, + { + "epoch": 22.405417212756664, + "grad_norm": 0.26521918177604675, + "learning_rate": 0.0006, + "loss": 3.8918118476867676, + "step": 1613 + }, + { + "epoch": 22.419397116644824, + "grad_norm": 0.2652994394302368, + "learning_rate": 0.0006, + "loss": 3.8683271408081055, + "step": 1614 + }, + { + "epoch": 22.433377020532983, + "grad_norm": 0.2568066716194153, + "learning_rate": 0.0006, + "loss": 3.892523765563965, + "step": 1615 + }, + { + "epoch": 22.447356924421143, + "grad_norm": 0.260052353143692, + "learning_rate": 0.0006, + "loss": 3.897305488586426, + "step": 1616 + }, + { + "epoch": 22.461336828309307, + "grad_norm": 0.2744271457195282, + "learning_rate": 0.0006, + "loss": 3.8962221145629883, + "step": 1617 + }, + { + "epoch": 22.475316732197467, + "grad_norm": 0.23755787312984467, + "learning_rate": 0.0006, + "loss": 3.888184070587158, + "step": 1618 + }, + { + "epoch": 22.489296636085626, + "grad_norm": 0.2515312135219574, + "learning_rate": 0.0006, + "loss": 3.8946003913879395, + "step": 1619 + }, + { + "epoch": 22.503276539973786, + "grad_norm": 0.24835044145584106, + "learning_rate": 0.0006, + "loss": 3.8711423873901367, + "step": 1620 + }, + { + "epoch": 22.51725644386195, + "grad_norm": 0.22615326941013336, + "learning_rate": 0.0006, + "loss": 3.8878846168518066, + "step": 1621 + }, + { + "epoch": 22.53123634775011, + "grad_norm": 0.20482423901557922, + "learning_rate": 0.0006, + "loss": 3.8782598972320557, + "step": 1622 + }, + { + "epoch": 22.54521625163827, + "grad_norm": 0.20436473190784454, + "learning_rate": 0.0006, + "loss": 3.9075279235839844, + "step": 1623 + }, + { + "epoch": 22.55919615552643, + "grad_norm": 0.2066277265548706, + "learning_rate": 0.0006, + "loss": 3.89908766746521, + "step": 1624 + }, + { + "epoch": 22.573176059414592, + "grad_norm": 0.20735307037830353, + "learning_rate": 0.0006, + "loss": 3.865204334259033, + "step": 1625 + }, + { + "epoch": 22.587155963302752, + "grad_norm": 0.20955748856067657, + "learning_rate": 0.0006, + "loss": 3.8835532665252686, + "step": 1626 + }, + { + "epoch": 22.601135867190912, + "grad_norm": 0.21354222297668457, + "learning_rate": 0.0006, + "loss": 3.9012551307678223, + "step": 1627 + }, + { + "epoch": 22.615115771079076, + "grad_norm": 0.2075091004371643, + "learning_rate": 0.0006, + "loss": 3.8733482360839844, + "step": 1628 + }, + { + "epoch": 22.629095674967235, + "grad_norm": 0.20207874476909637, + "learning_rate": 0.0006, + "loss": 3.9193859100341797, + "step": 1629 + }, + { + "epoch": 22.643075578855395, + "grad_norm": 0.21863923966884613, + "learning_rate": 0.0006, + "loss": 3.883518695831299, + "step": 1630 + }, + { + "epoch": 22.657055482743555, + "grad_norm": 0.22117522358894348, + "learning_rate": 0.0006, + "loss": 3.9163284301757812, + "step": 1631 + }, + { + "epoch": 22.67103538663172, + "grad_norm": 0.2078622728586197, + "learning_rate": 0.0006, + "loss": 3.868274688720703, + "step": 1632 + }, + { + "epoch": 22.68501529051988, + "grad_norm": 0.22745893895626068, + "learning_rate": 0.0006, + "loss": 3.9171340465545654, + "step": 1633 + }, + { + "epoch": 22.698995194408038, + "grad_norm": 0.2312736064195633, + "learning_rate": 0.0006, + "loss": 3.9487013816833496, + "step": 1634 + }, + { + "epoch": 22.712975098296198, + "grad_norm": 0.20491497218608856, + "learning_rate": 0.0006, + "loss": 3.91833758354187, + "step": 1635 + }, + { + "epoch": 22.72695500218436, + "grad_norm": 0.1899084597826004, + "learning_rate": 0.0006, + "loss": 3.876225709915161, + "step": 1636 + }, + { + "epoch": 22.74093490607252, + "grad_norm": 0.18581682443618774, + "learning_rate": 0.0006, + "loss": 3.8667988777160645, + "step": 1637 + }, + { + "epoch": 22.75491480996068, + "grad_norm": 0.19855599105358124, + "learning_rate": 0.0006, + "loss": 3.900789260864258, + "step": 1638 + }, + { + "epoch": 22.76889471384884, + "grad_norm": 0.19951458275318146, + "learning_rate": 0.0006, + "loss": 3.8850367069244385, + "step": 1639 + }, + { + "epoch": 22.782874617737004, + "grad_norm": 0.22802744805812836, + "learning_rate": 0.0006, + "loss": 3.9181363582611084, + "step": 1640 + }, + { + "epoch": 22.796854521625164, + "grad_norm": 0.24279919266700745, + "learning_rate": 0.0006, + "loss": 3.8843770027160645, + "step": 1641 + }, + { + "epoch": 22.810834425513324, + "grad_norm": 0.23554913699626923, + "learning_rate": 0.0006, + "loss": 3.8802413940429688, + "step": 1642 + }, + { + "epoch": 22.824814329401484, + "grad_norm": 0.22343270480632782, + "learning_rate": 0.0006, + "loss": 3.8524107933044434, + "step": 1643 + }, + { + "epoch": 22.838794233289647, + "grad_norm": 0.2185724526643753, + "learning_rate": 0.0006, + "loss": 3.9117047786712646, + "step": 1644 + }, + { + "epoch": 22.852774137177807, + "grad_norm": 0.2114841341972351, + "learning_rate": 0.0006, + "loss": 3.90325927734375, + "step": 1645 + }, + { + "epoch": 22.866754041065967, + "grad_norm": 0.21072550117969513, + "learning_rate": 0.0006, + "loss": 3.8988137245178223, + "step": 1646 + }, + { + "epoch": 22.88073394495413, + "grad_norm": 0.2250078171491623, + "learning_rate": 0.0006, + "loss": 3.9201531410217285, + "step": 1647 + }, + { + "epoch": 22.89471384884229, + "grad_norm": 0.20928071439266205, + "learning_rate": 0.0006, + "loss": 3.91666316986084, + "step": 1648 + }, + { + "epoch": 22.90869375273045, + "grad_norm": 0.24096311628818512, + "learning_rate": 0.0006, + "loss": 3.8797364234924316, + "step": 1649 + }, + { + "epoch": 22.92267365661861, + "grad_norm": 0.2591194212436676, + "learning_rate": 0.0006, + "loss": 3.883273124694824, + "step": 1650 + }, + { + "epoch": 22.936653560506773, + "grad_norm": 0.27342668175697327, + "learning_rate": 0.0006, + "loss": 3.8645026683807373, + "step": 1651 + }, + { + "epoch": 22.950633464394933, + "grad_norm": 0.2448573112487793, + "learning_rate": 0.0006, + "loss": 3.9093551635742188, + "step": 1652 + }, + { + "epoch": 22.964613368283093, + "grad_norm": 0.19899503886699677, + "learning_rate": 0.0006, + "loss": 3.9001057147979736, + "step": 1653 + }, + { + "epoch": 22.978593272171253, + "grad_norm": 0.2023746520280838, + "learning_rate": 0.0006, + "loss": 3.886474370956421, + "step": 1654 + }, + { + "epoch": 22.992573176059416, + "grad_norm": 0.19894269108772278, + "learning_rate": 0.0006, + "loss": 3.9004204273223877, + "step": 1655 + }, + { + "epoch": 23.0, + "grad_norm": 0.2401709407567978, + "learning_rate": 0.0006, + "loss": 3.8665566444396973, + "step": 1656 + }, + { + "epoch": 23.0, + "eval_loss": 4.112459659576416, + "eval_runtime": 44.8325, + "eval_samples_per_second": 54.469, + "eval_steps_per_second": 3.413, + "step": 1656 + }, + { + "epoch": 23.01397990388816, + "grad_norm": 0.22662921249866486, + "learning_rate": 0.0006, + "loss": 3.853271961212158, + "step": 1657 + }, + { + "epoch": 23.027959807776323, + "grad_norm": 0.24406856298446655, + "learning_rate": 0.0006, + "loss": 3.8691890239715576, + "step": 1658 + }, + { + "epoch": 23.041939711664483, + "grad_norm": 0.2266651839017868, + "learning_rate": 0.0006, + "loss": 3.838599681854248, + "step": 1659 + }, + { + "epoch": 23.055919615552643, + "grad_norm": 0.22303511202335358, + "learning_rate": 0.0006, + "loss": 3.8678267002105713, + "step": 1660 + }, + { + "epoch": 23.069899519440803, + "grad_norm": 0.2272164225578308, + "learning_rate": 0.0006, + "loss": 3.9045681953430176, + "step": 1661 + }, + { + "epoch": 23.083879423328966, + "grad_norm": 0.25004875659942627, + "learning_rate": 0.0006, + "loss": 3.856503963470459, + "step": 1662 + }, + { + "epoch": 23.097859327217126, + "grad_norm": 0.26016247272491455, + "learning_rate": 0.0006, + "loss": 3.878587007522583, + "step": 1663 + }, + { + "epoch": 23.111839231105286, + "grad_norm": 0.28539901971817017, + "learning_rate": 0.0006, + "loss": 3.864248514175415, + "step": 1664 + }, + { + "epoch": 23.125819134993446, + "grad_norm": 0.27504822611808777, + "learning_rate": 0.0006, + "loss": 3.821448802947998, + "step": 1665 + }, + { + "epoch": 23.13979903888161, + "grad_norm": 0.238910973072052, + "learning_rate": 0.0006, + "loss": 3.8635847568511963, + "step": 1666 + }, + { + "epoch": 23.15377894276977, + "grad_norm": 0.24179652333259583, + "learning_rate": 0.0006, + "loss": 3.8339638710021973, + "step": 1667 + }, + { + "epoch": 23.16775884665793, + "grad_norm": 0.2199544757604599, + "learning_rate": 0.0006, + "loss": 3.868396759033203, + "step": 1668 + }, + { + "epoch": 23.18173875054609, + "grad_norm": 0.1965002566576004, + "learning_rate": 0.0006, + "loss": 3.8761439323425293, + "step": 1669 + }, + { + "epoch": 23.195718654434252, + "grad_norm": 0.20426614582538605, + "learning_rate": 0.0006, + "loss": 3.822899580001831, + "step": 1670 + }, + { + "epoch": 23.209698558322412, + "grad_norm": 0.2197263389825821, + "learning_rate": 0.0006, + "loss": 3.887728452682495, + "step": 1671 + }, + { + "epoch": 23.22367846221057, + "grad_norm": 0.22844573855400085, + "learning_rate": 0.0006, + "loss": 3.8550517559051514, + "step": 1672 + }, + { + "epoch": 23.23765836609873, + "grad_norm": 0.2347746044397354, + "learning_rate": 0.0006, + "loss": 3.903310537338257, + "step": 1673 + }, + { + "epoch": 23.251638269986895, + "grad_norm": 0.24167625606060028, + "learning_rate": 0.0006, + "loss": 3.8397774696350098, + "step": 1674 + }, + { + "epoch": 23.265618173875055, + "grad_norm": 0.2691650688648224, + "learning_rate": 0.0006, + "loss": 3.853254795074463, + "step": 1675 + }, + { + "epoch": 23.279598077763215, + "grad_norm": 0.29421621561050415, + "learning_rate": 0.0006, + "loss": 3.86065411567688, + "step": 1676 + }, + { + "epoch": 23.293577981651374, + "grad_norm": 0.31074345111846924, + "learning_rate": 0.0006, + "loss": 3.8716742992401123, + "step": 1677 + }, + { + "epoch": 23.307557885539538, + "grad_norm": 0.3044569194316864, + "learning_rate": 0.0006, + "loss": 3.8738951683044434, + "step": 1678 + }, + { + "epoch": 23.321537789427698, + "grad_norm": 0.30496764183044434, + "learning_rate": 0.0006, + "loss": 3.884446620941162, + "step": 1679 + }, + { + "epoch": 23.335517693315857, + "grad_norm": 0.31122756004333496, + "learning_rate": 0.0006, + "loss": 3.878495693206787, + "step": 1680 + }, + { + "epoch": 23.34949759720402, + "grad_norm": 0.32268181443214417, + "learning_rate": 0.0006, + "loss": 3.8793649673461914, + "step": 1681 + }, + { + "epoch": 23.36347750109218, + "grad_norm": 0.3297140598297119, + "learning_rate": 0.0006, + "loss": 3.87484073638916, + "step": 1682 + }, + { + "epoch": 23.37745740498034, + "grad_norm": 0.26007479429244995, + "learning_rate": 0.0006, + "loss": 3.8510947227478027, + "step": 1683 + }, + { + "epoch": 23.3914373088685, + "grad_norm": 0.2627335786819458, + "learning_rate": 0.0006, + "loss": 3.8783209323883057, + "step": 1684 + }, + { + "epoch": 23.405417212756664, + "grad_norm": 0.256452739238739, + "learning_rate": 0.0006, + "loss": 3.8594281673431396, + "step": 1685 + }, + { + "epoch": 23.419397116644824, + "grad_norm": 0.23892226815223694, + "learning_rate": 0.0006, + "loss": 3.898951292037964, + "step": 1686 + }, + { + "epoch": 23.433377020532983, + "grad_norm": 0.21625587344169617, + "learning_rate": 0.0006, + "loss": 3.8679966926574707, + "step": 1687 + }, + { + "epoch": 23.447356924421143, + "grad_norm": 0.21924619376659393, + "learning_rate": 0.0006, + "loss": 3.8774075508117676, + "step": 1688 + }, + { + "epoch": 23.461336828309307, + "grad_norm": 0.21500127017498016, + "learning_rate": 0.0006, + "loss": 3.870619297027588, + "step": 1689 + }, + { + "epoch": 23.475316732197467, + "grad_norm": 0.22580556571483612, + "learning_rate": 0.0006, + "loss": 3.887722969055176, + "step": 1690 + }, + { + "epoch": 23.489296636085626, + "grad_norm": 0.2500104308128357, + "learning_rate": 0.0006, + "loss": 3.88789963722229, + "step": 1691 + }, + { + "epoch": 23.503276539973786, + "grad_norm": 0.22462762892246246, + "learning_rate": 0.0006, + "loss": 3.863997459411621, + "step": 1692 + }, + { + "epoch": 23.51725644386195, + "grad_norm": 0.21427781879901886, + "learning_rate": 0.0006, + "loss": 3.8827033042907715, + "step": 1693 + }, + { + "epoch": 23.53123634775011, + "grad_norm": 0.22278577089309692, + "learning_rate": 0.0006, + "loss": 3.8659563064575195, + "step": 1694 + }, + { + "epoch": 23.54521625163827, + "grad_norm": 0.22801144421100616, + "learning_rate": 0.0006, + "loss": 3.9031362533569336, + "step": 1695 + }, + { + "epoch": 23.55919615552643, + "grad_norm": 0.25071898102760315, + "learning_rate": 0.0006, + "loss": 3.887746810913086, + "step": 1696 + }, + { + "epoch": 23.573176059414592, + "grad_norm": 0.2564085125923157, + "learning_rate": 0.0006, + "loss": 3.8918356895446777, + "step": 1697 + }, + { + "epoch": 23.587155963302752, + "grad_norm": 0.24603120982646942, + "learning_rate": 0.0006, + "loss": 3.850416421890259, + "step": 1698 + }, + { + "epoch": 23.601135867190912, + "grad_norm": 0.20539002120494843, + "learning_rate": 0.0006, + "loss": 3.862060070037842, + "step": 1699 + }, + { + "epoch": 23.615115771079076, + "grad_norm": 0.2022249400615692, + "learning_rate": 0.0006, + "loss": 3.899008274078369, + "step": 1700 + }, + { + "epoch": 23.629095674967235, + "grad_norm": 0.2435392290353775, + "learning_rate": 0.0006, + "loss": 3.844388961791992, + "step": 1701 + }, + { + "epoch": 23.643075578855395, + "grad_norm": 0.21146756410598755, + "learning_rate": 0.0006, + "loss": 3.8972439765930176, + "step": 1702 + }, + { + "epoch": 23.657055482743555, + "grad_norm": 0.2025400996208191, + "learning_rate": 0.0006, + "loss": 3.865253448486328, + "step": 1703 + }, + { + "epoch": 23.67103538663172, + "grad_norm": 0.21129970252513885, + "learning_rate": 0.0006, + "loss": 3.8768205642700195, + "step": 1704 + }, + { + "epoch": 23.68501529051988, + "grad_norm": 0.22982284426689148, + "learning_rate": 0.0006, + "loss": 3.8792667388916016, + "step": 1705 + }, + { + "epoch": 23.698995194408038, + "grad_norm": 0.23013733327388763, + "learning_rate": 0.0006, + "loss": 3.880897045135498, + "step": 1706 + }, + { + "epoch": 23.712975098296198, + "grad_norm": 0.2277672290802002, + "learning_rate": 0.0006, + "loss": 3.8738410472869873, + "step": 1707 + }, + { + "epoch": 23.72695500218436, + "grad_norm": 0.2343369573354721, + "learning_rate": 0.0006, + "loss": 3.8587026596069336, + "step": 1708 + }, + { + "epoch": 23.74093490607252, + "grad_norm": 0.23159530758857727, + "learning_rate": 0.0006, + "loss": 3.856306552886963, + "step": 1709 + }, + { + "epoch": 23.75491480996068, + "grad_norm": 0.19541035592556, + "learning_rate": 0.0006, + "loss": 3.8294754028320312, + "step": 1710 + }, + { + "epoch": 23.76889471384884, + "grad_norm": 0.22999322414398193, + "learning_rate": 0.0006, + "loss": 3.882676124572754, + "step": 1711 + }, + { + "epoch": 23.782874617737004, + "grad_norm": 0.23442843556404114, + "learning_rate": 0.0006, + "loss": 3.8887529373168945, + "step": 1712 + }, + { + "epoch": 23.796854521625164, + "grad_norm": 0.22914239764213562, + "learning_rate": 0.0006, + "loss": 3.867673635482788, + "step": 1713 + }, + { + "epoch": 23.810834425513324, + "grad_norm": 0.20683827996253967, + "learning_rate": 0.0006, + "loss": 3.8999581336975098, + "step": 1714 + }, + { + "epoch": 23.824814329401484, + "grad_norm": 0.19281277060508728, + "learning_rate": 0.0006, + "loss": 3.8997726440429688, + "step": 1715 + }, + { + "epoch": 23.838794233289647, + "grad_norm": 0.20058563351631165, + "learning_rate": 0.0006, + "loss": 3.8583860397338867, + "step": 1716 + }, + { + "epoch": 23.852774137177807, + "grad_norm": 0.19856606423854828, + "learning_rate": 0.0006, + "loss": 3.88948392868042, + "step": 1717 + }, + { + "epoch": 23.866754041065967, + "grad_norm": 0.2099323868751526, + "learning_rate": 0.0006, + "loss": 3.878458261489868, + "step": 1718 + }, + { + "epoch": 23.88073394495413, + "grad_norm": 0.22945016622543335, + "learning_rate": 0.0006, + "loss": 3.84116268157959, + "step": 1719 + }, + { + "epoch": 23.89471384884229, + "grad_norm": 0.22646087408065796, + "learning_rate": 0.0006, + "loss": 3.9006617069244385, + "step": 1720 + }, + { + "epoch": 23.90869375273045, + "grad_norm": 0.20282860100269318, + "learning_rate": 0.0006, + "loss": 3.8781144618988037, + "step": 1721 + }, + { + "epoch": 23.92267365661861, + "grad_norm": 0.1918555349111557, + "learning_rate": 0.0006, + "loss": 3.8560891151428223, + "step": 1722 + }, + { + "epoch": 23.936653560506773, + "grad_norm": 0.19286513328552246, + "learning_rate": 0.0006, + "loss": 3.873220920562744, + "step": 1723 + }, + { + "epoch": 23.950633464394933, + "grad_norm": 0.21071338653564453, + "learning_rate": 0.0006, + "loss": 3.9147067070007324, + "step": 1724 + }, + { + "epoch": 23.964613368283093, + "grad_norm": 0.20956715941429138, + "learning_rate": 0.0006, + "loss": 3.8762729167938232, + "step": 1725 + }, + { + "epoch": 23.978593272171253, + "grad_norm": 0.23053105175495148, + "learning_rate": 0.0006, + "loss": 3.873781681060791, + "step": 1726 + }, + { + "epoch": 23.992573176059416, + "grad_norm": 0.2719029486179352, + "learning_rate": 0.0006, + "loss": 3.862342357635498, + "step": 1727 + }, + { + "epoch": 24.0, + "grad_norm": 0.2933610677719116, + "learning_rate": 0.0006, + "loss": 3.8657689094543457, + "step": 1728 + }, + { + "epoch": 24.0, + "eval_loss": 4.0959153175354, + "eval_runtime": 44.3631, + "eval_samples_per_second": 55.046, + "eval_steps_per_second": 3.449, + "step": 1728 + }, + { + "epoch": 24.01397990388816, + "grad_norm": 0.24905365705490112, + "learning_rate": 0.0006, + "loss": 3.838136911392212, + "step": 1729 + }, + { + "epoch": 24.027959807776323, + "grad_norm": 0.25948020815849304, + "learning_rate": 0.0006, + "loss": 3.8581268787384033, + "step": 1730 + }, + { + "epoch": 24.041939711664483, + "grad_norm": 0.24965140223503113, + "learning_rate": 0.0006, + "loss": 3.8628978729248047, + "step": 1731 + }, + { + "epoch": 24.055919615552643, + "grad_norm": 0.23428823053836823, + "learning_rate": 0.0006, + "loss": 3.8188819885253906, + "step": 1732 + }, + { + "epoch": 24.069899519440803, + "grad_norm": 0.22191211581230164, + "learning_rate": 0.0006, + "loss": 3.8616039752960205, + "step": 1733 + }, + { + "epoch": 24.083879423328966, + "grad_norm": 0.20257535576820374, + "learning_rate": 0.0006, + "loss": 3.8632802963256836, + "step": 1734 + }, + { + "epoch": 24.097859327217126, + "grad_norm": 0.20385196805000305, + "learning_rate": 0.0006, + "loss": 3.885817050933838, + "step": 1735 + }, + { + "epoch": 24.111839231105286, + "grad_norm": 0.19921693205833435, + "learning_rate": 0.0006, + "loss": 3.838515043258667, + "step": 1736 + }, + { + "epoch": 24.125819134993446, + "grad_norm": 0.20221556723117828, + "learning_rate": 0.0006, + "loss": 3.8585309982299805, + "step": 1737 + }, + { + "epoch": 24.13979903888161, + "grad_norm": 0.20124691724777222, + "learning_rate": 0.0006, + "loss": 3.81656551361084, + "step": 1738 + }, + { + "epoch": 24.15377894276977, + "grad_norm": 0.1810830533504486, + "learning_rate": 0.0006, + "loss": 3.841783046722412, + "step": 1739 + }, + { + "epoch": 24.16775884665793, + "grad_norm": 0.18414196372032166, + "learning_rate": 0.0006, + "loss": 3.8614797592163086, + "step": 1740 + }, + { + "epoch": 24.18173875054609, + "grad_norm": 0.18930725753307343, + "learning_rate": 0.0006, + "loss": 3.8382534980773926, + "step": 1741 + }, + { + "epoch": 24.195718654434252, + "grad_norm": 0.19658128917217255, + "learning_rate": 0.0006, + "loss": 3.881742477416992, + "step": 1742 + }, + { + "epoch": 24.209698558322412, + "grad_norm": 0.20175589621067047, + "learning_rate": 0.0006, + "loss": 3.8760581016540527, + "step": 1743 + }, + { + "epoch": 24.22367846221057, + "grad_norm": 0.19416265189647675, + "learning_rate": 0.0006, + "loss": 3.8373687267303467, + "step": 1744 + }, + { + "epoch": 24.23765836609873, + "grad_norm": 0.20206521451473236, + "learning_rate": 0.0006, + "loss": 3.8322830200195312, + "step": 1745 + }, + { + "epoch": 24.251638269986895, + "grad_norm": 0.21797429025173187, + "learning_rate": 0.0006, + "loss": 3.849905490875244, + "step": 1746 + }, + { + "epoch": 24.265618173875055, + "grad_norm": 0.21295784413814545, + "learning_rate": 0.0006, + "loss": 3.847714900970459, + "step": 1747 + }, + { + "epoch": 24.279598077763215, + "grad_norm": 0.22023876011371613, + "learning_rate": 0.0006, + "loss": 3.8221592903137207, + "step": 1748 + }, + { + "epoch": 24.293577981651374, + "grad_norm": 0.2125576138496399, + "learning_rate": 0.0006, + "loss": 3.8070976734161377, + "step": 1749 + }, + { + "epoch": 24.307557885539538, + "grad_norm": 0.18673811852931976, + "learning_rate": 0.0006, + "loss": 3.866878032684326, + "step": 1750 + }, + { + "epoch": 24.321537789427698, + "grad_norm": 0.1972627341747284, + "learning_rate": 0.0006, + "loss": 3.846404552459717, + "step": 1751 + }, + { + "epoch": 24.335517693315857, + "grad_norm": 0.21846632659435272, + "learning_rate": 0.0006, + "loss": 3.8528640270233154, + "step": 1752 + }, + { + "epoch": 24.34949759720402, + "grad_norm": 0.22234080731868744, + "learning_rate": 0.0006, + "loss": 3.8268141746520996, + "step": 1753 + }, + { + "epoch": 24.36347750109218, + "grad_norm": 0.23002761602401733, + "learning_rate": 0.0006, + "loss": 3.832444667816162, + "step": 1754 + }, + { + "epoch": 24.37745740498034, + "grad_norm": 0.22526559233665466, + "learning_rate": 0.0006, + "loss": 3.864406108856201, + "step": 1755 + }, + { + "epoch": 24.3914373088685, + "grad_norm": 0.2290039211511612, + "learning_rate": 0.0006, + "loss": 3.8449103832244873, + "step": 1756 + }, + { + "epoch": 24.405417212756664, + "grad_norm": 0.23145617544651031, + "learning_rate": 0.0006, + "loss": 3.8183751106262207, + "step": 1757 + }, + { + "epoch": 24.419397116644824, + "grad_norm": 0.24287554621696472, + "learning_rate": 0.0006, + "loss": 3.809481382369995, + "step": 1758 + }, + { + "epoch": 24.433377020532983, + "grad_norm": 0.2672404646873474, + "learning_rate": 0.0006, + "loss": 3.877800464630127, + "step": 1759 + }, + { + "epoch": 24.447356924421143, + "grad_norm": 0.26292186975479126, + "learning_rate": 0.0006, + "loss": 3.8329367637634277, + "step": 1760 + }, + { + "epoch": 24.461336828309307, + "grad_norm": 0.26235947012901306, + "learning_rate": 0.0006, + "loss": 3.8414158821105957, + "step": 1761 + }, + { + "epoch": 24.475316732197467, + "grad_norm": 0.2638382613658905, + "learning_rate": 0.0006, + "loss": 3.849188804626465, + "step": 1762 + }, + { + "epoch": 24.489296636085626, + "grad_norm": 0.2564602196216583, + "learning_rate": 0.0006, + "loss": 3.865501880645752, + "step": 1763 + }, + { + "epoch": 24.503276539973786, + "grad_norm": 0.21352271735668182, + "learning_rate": 0.0006, + "loss": 3.87910795211792, + "step": 1764 + }, + { + "epoch": 24.51725644386195, + "grad_norm": 0.2470584511756897, + "learning_rate": 0.0006, + "loss": 3.858750343322754, + "step": 1765 + }, + { + "epoch": 24.53123634775011, + "grad_norm": 0.24907536804676056, + "learning_rate": 0.0006, + "loss": 3.8532559871673584, + "step": 1766 + }, + { + "epoch": 24.54521625163827, + "grad_norm": 0.2426205575466156, + "learning_rate": 0.0006, + "loss": 3.8659827709198, + "step": 1767 + }, + { + "epoch": 24.55919615552643, + "grad_norm": 0.23481151461601257, + "learning_rate": 0.0006, + "loss": 3.863948345184326, + "step": 1768 + }, + { + "epoch": 24.573176059414592, + "grad_norm": 0.22717779874801636, + "learning_rate": 0.0006, + "loss": 3.848527193069458, + "step": 1769 + }, + { + "epoch": 24.587155963302752, + "grad_norm": 0.2267129123210907, + "learning_rate": 0.0006, + "loss": 3.8600735664367676, + "step": 1770 + }, + { + "epoch": 24.601135867190912, + "grad_norm": 0.24967710673809052, + "learning_rate": 0.0006, + "loss": 3.84291934967041, + "step": 1771 + }, + { + "epoch": 24.615115771079076, + "grad_norm": 0.25308957695961, + "learning_rate": 0.0006, + "loss": 3.846181631088257, + "step": 1772 + }, + { + "epoch": 24.629095674967235, + "grad_norm": 0.2689298391342163, + "learning_rate": 0.0006, + "loss": 3.8572893142700195, + "step": 1773 + }, + { + "epoch": 24.643075578855395, + "grad_norm": 0.26458555459976196, + "learning_rate": 0.0006, + "loss": 3.8583621978759766, + "step": 1774 + }, + { + "epoch": 24.657055482743555, + "grad_norm": 0.24416811764240265, + "learning_rate": 0.0006, + "loss": 3.8648223876953125, + "step": 1775 + }, + { + "epoch": 24.67103538663172, + "grad_norm": 0.22218526899814606, + "learning_rate": 0.0006, + "loss": 3.839395523071289, + "step": 1776 + }, + { + "epoch": 24.68501529051988, + "grad_norm": 0.2147492915391922, + "learning_rate": 0.0006, + "loss": 3.875734567642212, + "step": 1777 + }, + { + "epoch": 24.698995194408038, + "grad_norm": 0.2346794754266739, + "learning_rate": 0.0006, + "loss": 3.854768991470337, + "step": 1778 + }, + { + "epoch": 24.712975098296198, + "grad_norm": 0.21406520903110504, + "learning_rate": 0.0006, + "loss": 3.8269104957580566, + "step": 1779 + }, + { + "epoch": 24.72695500218436, + "grad_norm": 0.20716224610805511, + "learning_rate": 0.0006, + "loss": 3.8245768547058105, + "step": 1780 + }, + { + "epoch": 24.74093490607252, + "grad_norm": 0.21445901691913605, + "learning_rate": 0.0006, + "loss": 3.8877978324890137, + "step": 1781 + }, + { + "epoch": 24.75491480996068, + "grad_norm": 0.21964985132217407, + "learning_rate": 0.0006, + "loss": 3.8602452278137207, + "step": 1782 + }, + { + "epoch": 24.76889471384884, + "grad_norm": 0.209807351231575, + "learning_rate": 0.0006, + "loss": 3.853428602218628, + "step": 1783 + }, + { + "epoch": 24.782874617737004, + "grad_norm": 0.19564911723136902, + "learning_rate": 0.0006, + "loss": 3.832275867462158, + "step": 1784 + }, + { + "epoch": 24.796854521625164, + "grad_norm": 0.21394333243370056, + "learning_rate": 0.0006, + "loss": 3.8543171882629395, + "step": 1785 + }, + { + "epoch": 24.810834425513324, + "grad_norm": 0.23156948387622833, + "learning_rate": 0.0006, + "loss": 3.8539412021636963, + "step": 1786 + }, + { + "epoch": 24.824814329401484, + "grad_norm": 0.2378678321838379, + "learning_rate": 0.0006, + "loss": 3.8409833908081055, + "step": 1787 + }, + { + "epoch": 24.838794233289647, + "grad_norm": 0.23816189169883728, + "learning_rate": 0.0006, + "loss": 3.855379581451416, + "step": 1788 + }, + { + "epoch": 24.852774137177807, + "grad_norm": 0.23109886050224304, + "learning_rate": 0.0006, + "loss": 3.8689517974853516, + "step": 1789 + }, + { + "epoch": 24.866754041065967, + "grad_norm": 0.2042883038520813, + "learning_rate": 0.0006, + "loss": 3.8730404376983643, + "step": 1790 + }, + { + "epoch": 24.88073394495413, + "grad_norm": 0.2039479911327362, + "learning_rate": 0.0006, + "loss": 3.8474984169006348, + "step": 1791 + }, + { + "epoch": 24.89471384884229, + "grad_norm": 0.213027223944664, + "learning_rate": 0.0006, + "loss": 3.8539695739746094, + "step": 1792 + }, + { + "epoch": 24.90869375273045, + "grad_norm": 0.2280654013156891, + "learning_rate": 0.0006, + "loss": 3.8633079528808594, + "step": 1793 + }, + { + "epoch": 24.92267365661861, + "grad_norm": 0.20864921808242798, + "learning_rate": 0.0006, + "loss": 3.8110368251800537, + "step": 1794 + }, + { + "epoch": 24.936653560506773, + "grad_norm": 0.23002111911773682, + "learning_rate": 0.0006, + "loss": 3.8334741592407227, + "step": 1795 + }, + { + "epoch": 24.950633464394933, + "grad_norm": 0.232331782579422, + "learning_rate": 0.0006, + "loss": 3.871887683868408, + "step": 1796 + }, + { + "epoch": 24.964613368283093, + "grad_norm": 0.24141235649585724, + "learning_rate": 0.0006, + "loss": 3.8614959716796875, + "step": 1797 + }, + { + "epoch": 24.978593272171253, + "grad_norm": 0.2545177638530731, + "learning_rate": 0.0006, + "loss": 3.8563568592071533, + "step": 1798 + }, + { + "epoch": 24.992573176059416, + "grad_norm": 0.25186386704444885, + "learning_rate": 0.0006, + "loss": 3.882166862487793, + "step": 1799 + }, + { + "epoch": 25.0, + "grad_norm": 0.260195791721344, + "learning_rate": 0.0006, + "loss": 3.884554862976074, + "step": 1800 + }, + { + "epoch": 25.0, + "eval_loss": 4.08809757232666, + "eval_runtime": 44.7947, + "eval_samples_per_second": 54.515, + "eval_steps_per_second": 3.416, + "step": 1800 + }, + { + "epoch": 25.01397990388816, + "grad_norm": 0.25396403670310974, + "learning_rate": 0.0006, + "loss": 3.8217287063598633, + "step": 1801 + }, + { + "epoch": 25.027959807776323, + "grad_norm": 0.2773195207118988, + "learning_rate": 0.0006, + "loss": 3.809542417526245, + "step": 1802 + }, + { + "epoch": 25.041939711664483, + "grad_norm": 0.3073263168334961, + "learning_rate": 0.0006, + "loss": 3.825706958770752, + "step": 1803 + }, + { + "epoch": 25.055919615552643, + "grad_norm": 0.30885398387908936, + "learning_rate": 0.0006, + "loss": 3.8081188201904297, + "step": 1804 + }, + { + "epoch": 25.069899519440803, + "grad_norm": 0.27356019616127014, + "learning_rate": 0.0006, + "loss": 3.8538241386413574, + "step": 1805 + }, + { + "epoch": 25.083879423328966, + "grad_norm": 0.22830164432525635, + "learning_rate": 0.0006, + "loss": 3.8246965408325195, + "step": 1806 + }, + { + "epoch": 25.097859327217126, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.8552842140197754, + "step": 1807 + }, + { + "epoch": 25.111839231105286, + "grad_norm": 0.21718722581863403, + "learning_rate": 0.0006, + "loss": 3.8489418029785156, + "step": 1808 + }, + { + "epoch": 25.125819134993446, + "grad_norm": 0.2480861395597458, + "learning_rate": 0.0006, + "loss": 3.821455955505371, + "step": 1809 + }, + { + "epoch": 25.13979903888161, + "grad_norm": 0.2796635627746582, + "learning_rate": 0.0006, + "loss": 3.8202435970306396, + "step": 1810 + }, + { + "epoch": 25.15377894276977, + "grad_norm": 0.2829958200454712, + "learning_rate": 0.0006, + "loss": 3.8293306827545166, + "step": 1811 + }, + { + "epoch": 25.16775884665793, + "grad_norm": 0.2510125935077667, + "learning_rate": 0.0006, + "loss": 3.8342957496643066, + "step": 1812 + }, + { + "epoch": 25.18173875054609, + "grad_norm": 0.22923722863197327, + "learning_rate": 0.0006, + "loss": 3.8448352813720703, + "step": 1813 + }, + { + "epoch": 25.195718654434252, + "grad_norm": 0.21439228951931, + "learning_rate": 0.0006, + "loss": 3.8343517780303955, + "step": 1814 + }, + { + "epoch": 25.209698558322412, + "grad_norm": 0.1965373307466507, + "learning_rate": 0.0006, + "loss": 3.8163528442382812, + "step": 1815 + }, + { + "epoch": 25.22367846221057, + "grad_norm": 0.20121058821678162, + "learning_rate": 0.0006, + "loss": 3.8007280826568604, + "step": 1816 + }, + { + "epoch": 25.23765836609873, + "grad_norm": 0.21383272111415863, + "learning_rate": 0.0006, + "loss": 3.8200385570526123, + "step": 1817 + }, + { + "epoch": 25.251638269986895, + "grad_norm": 0.2066601663827896, + "learning_rate": 0.0006, + "loss": 3.8333921432495117, + "step": 1818 + }, + { + "epoch": 25.265618173875055, + "grad_norm": 0.2104874551296234, + "learning_rate": 0.0006, + "loss": 3.838012218475342, + "step": 1819 + }, + { + "epoch": 25.279598077763215, + "grad_norm": 0.19733119010925293, + "learning_rate": 0.0006, + "loss": 3.835139274597168, + "step": 1820 + }, + { + "epoch": 25.293577981651374, + "grad_norm": 0.2119498997926712, + "learning_rate": 0.0006, + "loss": 3.8099722862243652, + "step": 1821 + }, + { + "epoch": 25.307557885539538, + "grad_norm": 0.21863529086112976, + "learning_rate": 0.0006, + "loss": 3.7801573276519775, + "step": 1822 + }, + { + "epoch": 25.321537789427698, + "grad_norm": 0.2113322764635086, + "learning_rate": 0.0006, + "loss": 3.809903621673584, + "step": 1823 + }, + { + "epoch": 25.335517693315857, + "grad_norm": 0.21594023704528809, + "learning_rate": 0.0006, + "loss": 3.8485071659088135, + "step": 1824 + }, + { + "epoch": 25.34949759720402, + "grad_norm": 0.21475964784622192, + "learning_rate": 0.0006, + "loss": 3.7894768714904785, + "step": 1825 + }, + { + "epoch": 25.36347750109218, + "grad_norm": 0.21174900233745575, + "learning_rate": 0.0006, + "loss": 3.821711540222168, + "step": 1826 + }, + { + "epoch": 25.37745740498034, + "grad_norm": 0.2065584659576416, + "learning_rate": 0.0006, + "loss": 3.8439841270446777, + "step": 1827 + }, + { + "epoch": 25.3914373088685, + "grad_norm": 0.19157007336616516, + "learning_rate": 0.0006, + "loss": 3.864245891571045, + "step": 1828 + }, + { + "epoch": 25.405417212756664, + "grad_norm": 0.19983816146850586, + "learning_rate": 0.0006, + "loss": 3.8317415714263916, + "step": 1829 + }, + { + "epoch": 25.419397116644824, + "grad_norm": 0.20506152510643005, + "learning_rate": 0.0006, + "loss": 3.8009896278381348, + "step": 1830 + }, + { + "epoch": 25.433377020532983, + "grad_norm": 0.19056960940361023, + "learning_rate": 0.0006, + "loss": 3.8383498191833496, + "step": 1831 + }, + { + "epoch": 25.447356924421143, + "grad_norm": 0.19262190163135529, + "learning_rate": 0.0006, + "loss": 3.838902235031128, + "step": 1832 + }, + { + "epoch": 25.461336828309307, + "grad_norm": 0.19859355688095093, + "learning_rate": 0.0006, + "loss": 3.82452392578125, + "step": 1833 + }, + { + "epoch": 25.475316732197467, + "grad_norm": 0.2144225388765335, + "learning_rate": 0.0006, + "loss": 3.8110032081604004, + "step": 1834 + }, + { + "epoch": 25.489296636085626, + "grad_norm": 0.20566298067569733, + "learning_rate": 0.0006, + "loss": 3.8662471771240234, + "step": 1835 + }, + { + "epoch": 25.503276539973786, + "grad_norm": 0.2071852684020996, + "learning_rate": 0.0006, + "loss": 3.821134090423584, + "step": 1836 + }, + { + "epoch": 25.51725644386195, + "grad_norm": 0.2095036506652832, + "learning_rate": 0.0006, + "loss": 3.824092388153076, + "step": 1837 + }, + { + "epoch": 25.53123634775011, + "grad_norm": 0.20136208832263947, + "learning_rate": 0.0006, + "loss": 3.8669862747192383, + "step": 1838 + }, + { + "epoch": 25.54521625163827, + "grad_norm": 0.1983811855316162, + "learning_rate": 0.0006, + "loss": 3.8120107650756836, + "step": 1839 + }, + { + "epoch": 25.55919615552643, + "grad_norm": 0.22859714925289154, + "learning_rate": 0.0006, + "loss": 3.8519299030303955, + "step": 1840 + }, + { + "epoch": 25.573176059414592, + "grad_norm": 0.23672667145729065, + "learning_rate": 0.0006, + "loss": 3.8245458602905273, + "step": 1841 + }, + { + "epoch": 25.587155963302752, + "grad_norm": 0.22698380053043365, + "learning_rate": 0.0006, + "loss": 3.8406805992126465, + "step": 1842 + }, + { + "epoch": 25.601135867190912, + "grad_norm": 0.25684037804603577, + "learning_rate": 0.0006, + "loss": 3.8584351539611816, + "step": 1843 + }, + { + "epoch": 25.615115771079076, + "grad_norm": 0.28180673718452454, + "learning_rate": 0.0006, + "loss": 3.8085098266601562, + "step": 1844 + }, + { + "epoch": 25.629095674967235, + "grad_norm": 0.2814631462097168, + "learning_rate": 0.0006, + "loss": 3.845083236694336, + "step": 1845 + }, + { + "epoch": 25.643075578855395, + "grad_norm": 0.23630981147289276, + "learning_rate": 0.0006, + "loss": 3.847749710083008, + "step": 1846 + }, + { + "epoch": 25.657055482743555, + "grad_norm": 0.22463662922382355, + "learning_rate": 0.0006, + "loss": 3.8172082901000977, + "step": 1847 + }, + { + "epoch": 25.67103538663172, + "grad_norm": 0.26551681756973267, + "learning_rate": 0.0006, + "loss": 3.8205654621124268, + "step": 1848 + }, + { + "epoch": 25.68501529051988, + "grad_norm": 0.27824243903160095, + "learning_rate": 0.0006, + "loss": 3.846076011657715, + "step": 1849 + }, + { + "epoch": 25.698995194408038, + "grad_norm": 0.266998291015625, + "learning_rate": 0.0006, + "loss": 3.8543574810028076, + "step": 1850 + }, + { + "epoch": 25.712975098296198, + "grad_norm": 0.22980351746082306, + "learning_rate": 0.0006, + "loss": 3.855511426925659, + "step": 1851 + }, + { + "epoch": 25.72695500218436, + "grad_norm": 0.23482872545719147, + "learning_rate": 0.0006, + "loss": 3.8687663078308105, + "step": 1852 + }, + { + "epoch": 25.74093490607252, + "grad_norm": 0.21119585633277893, + "learning_rate": 0.0006, + "loss": 3.8147101402282715, + "step": 1853 + }, + { + "epoch": 25.75491480996068, + "grad_norm": 0.21200446784496307, + "learning_rate": 0.0006, + "loss": 3.858473777770996, + "step": 1854 + }, + { + "epoch": 25.76889471384884, + "grad_norm": 0.20497842133045197, + "learning_rate": 0.0006, + "loss": 3.8545501232147217, + "step": 1855 + }, + { + "epoch": 25.782874617737004, + "grad_norm": 0.19328081607818604, + "learning_rate": 0.0006, + "loss": 3.7941341400146484, + "step": 1856 + }, + { + "epoch": 25.796854521625164, + "grad_norm": 0.2191578894853592, + "learning_rate": 0.0006, + "loss": 3.8408665657043457, + "step": 1857 + }, + { + "epoch": 25.810834425513324, + "grad_norm": 0.2548826038837433, + "learning_rate": 0.0006, + "loss": 3.854130744934082, + "step": 1858 + }, + { + "epoch": 25.824814329401484, + "grad_norm": 0.2290351390838623, + "learning_rate": 0.0006, + "loss": 3.8680176734924316, + "step": 1859 + }, + { + "epoch": 25.838794233289647, + "grad_norm": 0.20760944485664368, + "learning_rate": 0.0006, + "loss": 3.83731746673584, + "step": 1860 + }, + { + "epoch": 25.852774137177807, + "grad_norm": 0.19587582349777222, + "learning_rate": 0.0006, + "loss": 3.8173444271087646, + "step": 1861 + }, + { + "epoch": 25.866754041065967, + "grad_norm": 0.20762693881988525, + "learning_rate": 0.0006, + "loss": 3.8479790687561035, + "step": 1862 + }, + { + "epoch": 25.88073394495413, + "grad_norm": 0.20633186399936676, + "learning_rate": 0.0006, + "loss": 3.852285385131836, + "step": 1863 + }, + { + "epoch": 25.89471384884229, + "grad_norm": 0.21484960615634918, + "learning_rate": 0.0006, + "loss": 3.832592725753784, + "step": 1864 + }, + { + "epoch": 25.90869375273045, + "grad_norm": 0.19569595158100128, + "learning_rate": 0.0006, + "loss": 3.838071584701538, + "step": 1865 + }, + { + "epoch": 25.92267365661861, + "grad_norm": 0.19532904028892517, + "learning_rate": 0.0006, + "loss": 3.854252815246582, + "step": 1866 + }, + { + "epoch": 25.936653560506773, + "grad_norm": 0.1909649819135666, + "learning_rate": 0.0006, + "loss": 3.8444578647613525, + "step": 1867 + }, + { + "epoch": 25.950633464394933, + "grad_norm": 0.17476283013820648, + "learning_rate": 0.0006, + "loss": 3.836519241333008, + "step": 1868 + }, + { + "epoch": 25.964613368283093, + "grad_norm": 0.1895206719636917, + "learning_rate": 0.0006, + "loss": 3.8282582759857178, + "step": 1869 + }, + { + "epoch": 25.978593272171253, + "grad_norm": 0.20038437843322754, + "learning_rate": 0.0006, + "loss": 3.80542254447937, + "step": 1870 + }, + { + "epoch": 25.992573176059416, + "grad_norm": 0.20728608965873718, + "learning_rate": 0.0006, + "loss": 3.8584811687469482, + "step": 1871 + }, + { + "epoch": 26.0, + "grad_norm": 0.22110891342163086, + "learning_rate": 0.0006, + "loss": 3.8020238876342773, + "step": 1872 + }, + { + "epoch": 26.0, + "eval_loss": 4.072164058685303, + "eval_runtime": 44.9089, + "eval_samples_per_second": 54.377, + "eval_steps_per_second": 3.407, + "step": 1872 + }, + { + "epoch": 26.01397990388816, + "grad_norm": 0.2222519814968109, + "learning_rate": 0.0006, + "loss": 3.8309168815612793, + "step": 1873 + }, + { + "epoch": 26.027959807776323, + "grad_norm": 0.2637656033039093, + "learning_rate": 0.0006, + "loss": 3.8025143146514893, + "step": 1874 + }, + { + "epoch": 26.041939711664483, + "grad_norm": 0.2665974795818329, + "learning_rate": 0.0006, + "loss": 3.8244004249572754, + "step": 1875 + }, + { + "epoch": 26.055919615552643, + "grad_norm": 0.22475720942020416, + "learning_rate": 0.0006, + "loss": 3.80039119720459, + "step": 1876 + }, + { + "epoch": 26.069899519440803, + "grad_norm": 0.22994336485862732, + "learning_rate": 0.0006, + "loss": 3.7700726985931396, + "step": 1877 + }, + { + "epoch": 26.083879423328966, + "grad_norm": 0.24214622378349304, + "learning_rate": 0.0006, + "loss": 3.818725109100342, + "step": 1878 + }, + { + "epoch": 26.097859327217126, + "grad_norm": 0.22701293230056763, + "learning_rate": 0.0006, + "loss": 3.833803176879883, + "step": 1879 + }, + { + "epoch": 26.111839231105286, + "grad_norm": 0.21452295780181885, + "learning_rate": 0.0006, + "loss": 3.8391427993774414, + "step": 1880 + }, + { + "epoch": 26.125819134993446, + "grad_norm": 0.20179636776447296, + "learning_rate": 0.0006, + "loss": 3.802957057952881, + "step": 1881 + }, + { + "epoch": 26.13979903888161, + "grad_norm": 0.2087477445602417, + "learning_rate": 0.0006, + "loss": 3.8339905738830566, + "step": 1882 + }, + { + "epoch": 26.15377894276977, + "grad_norm": 0.23583556711673737, + "learning_rate": 0.0006, + "loss": 3.802438259124756, + "step": 1883 + }, + { + "epoch": 26.16775884665793, + "grad_norm": 0.2504311501979828, + "learning_rate": 0.0006, + "loss": 3.80244517326355, + "step": 1884 + }, + { + "epoch": 26.18173875054609, + "grad_norm": 0.24903984367847443, + "learning_rate": 0.0006, + "loss": 3.788865566253662, + "step": 1885 + }, + { + "epoch": 26.195718654434252, + "grad_norm": 0.2707931101322174, + "learning_rate": 0.0006, + "loss": 3.800051212310791, + "step": 1886 + }, + { + "epoch": 26.209698558322412, + "grad_norm": 0.24902892112731934, + "learning_rate": 0.0006, + "loss": 3.8068337440490723, + "step": 1887 + }, + { + "epoch": 26.22367846221057, + "grad_norm": 0.22655536234378815, + "learning_rate": 0.0006, + "loss": 3.779439926147461, + "step": 1888 + }, + { + "epoch": 26.23765836609873, + "grad_norm": 0.24797996878623962, + "learning_rate": 0.0006, + "loss": 3.822831153869629, + "step": 1889 + }, + { + "epoch": 26.251638269986895, + "grad_norm": 0.2821420431137085, + "learning_rate": 0.0006, + "loss": 3.807954788208008, + "step": 1890 + }, + { + "epoch": 26.265618173875055, + "grad_norm": 0.30392691493034363, + "learning_rate": 0.0006, + "loss": 3.776951789855957, + "step": 1891 + }, + { + "epoch": 26.279598077763215, + "grad_norm": 0.32641273736953735, + "learning_rate": 0.0006, + "loss": 3.8216311931610107, + "step": 1892 + }, + { + "epoch": 26.293577981651374, + "grad_norm": 0.32674387097358704, + "learning_rate": 0.0006, + "loss": 3.815596580505371, + "step": 1893 + }, + { + "epoch": 26.307557885539538, + "grad_norm": 0.29137250781059265, + "learning_rate": 0.0006, + "loss": 3.8170812129974365, + "step": 1894 + }, + { + "epoch": 26.321537789427698, + "grad_norm": 0.24291734397411346, + "learning_rate": 0.0006, + "loss": 3.810352087020874, + "step": 1895 + }, + { + "epoch": 26.335517693315857, + "grad_norm": 0.24023209512233734, + "learning_rate": 0.0006, + "loss": 3.8075947761535645, + "step": 1896 + }, + { + "epoch": 26.34949759720402, + "grad_norm": 0.24334804713726044, + "learning_rate": 0.0006, + "loss": 3.831556797027588, + "step": 1897 + }, + { + "epoch": 26.36347750109218, + "grad_norm": 0.2109663337469101, + "learning_rate": 0.0006, + "loss": 3.838347911834717, + "step": 1898 + }, + { + "epoch": 26.37745740498034, + "grad_norm": 0.19668002426624298, + "learning_rate": 0.0006, + "loss": 3.774737596511841, + "step": 1899 + }, + { + "epoch": 26.3914373088685, + "grad_norm": 0.21329134702682495, + "learning_rate": 0.0006, + "loss": 3.8237252235412598, + "step": 1900 + }, + { + "epoch": 26.405417212756664, + "grad_norm": 0.20381781458854675, + "learning_rate": 0.0006, + "loss": 3.802569627761841, + "step": 1901 + }, + { + "epoch": 26.419397116644824, + "grad_norm": 0.19083160161972046, + "learning_rate": 0.0006, + "loss": 3.8301358222961426, + "step": 1902 + }, + { + "epoch": 26.433377020532983, + "grad_norm": 0.20012904703617096, + "learning_rate": 0.0006, + "loss": 3.7966408729553223, + "step": 1903 + }, + { + "epoch": 26.447356924421143, + "grad_norm": 0.19483457505702972, + "learning_rate": 0.0006, + "loss": 3.8431968688964844, + "step": 1904 + }, + { + "epoch": 26.461336828309307, + "grad_norm": 0.19946353137493134, + "learning_rate": 0.0006, + "loss": 3.8023815155029297, + "step": 1905 + }, + { + "epoch": 26.475316732197467, + "grad_norm": 0.1984100341796875, + "learning_rate": 0.0006, + "loss": 3.8283071517944336, + "step": 1906 + }, + { + "epoch": 26.489296636085626, + "grad_norm": 0.2148299664258957, + "learning_rate": 0.0006, + "loss": 3.8377504348754883, + "step": 1907 + }, + { + "epoch": 26.503276539973786, + "grad_norm": 0.22139184176921844, + "learning_rate": 0.0006, + "loss": 3.823051691055298, + "step": 1908 + }, + { + "epoch": 26.51725644386195, + "grad_norm": 0.18289034068584442, + "learning_rate": 0.0006, + "loss": 3.8027071952819824, + "step": 1909 + }, + { + "epoch": 26.53123634775011, + "grad_norm": 0.1816026121377945, + "learning_rate": 0.0006, + "loss": 3.823786735534668, + "step": 1910 + }, + { + "epoch": 26.54521625163827, + "grad_norm": 0.19074322283267975, + "learning_rate": 0.0006, + "loss": 3.813331127166748, + "step": 1911 + }, + { + "epoch": 26.55919615552643, + "grad_norm": 0.20301467180252075, + "learning_rate": 0.0006, + "loss": 3.8218350410461426, + "step": 1912 + }, + { + "epoch": 26.573176059414592, + "grad_norm": 0.25266432762145996, + "learning_rate": 0.0006, + "loss": 3.8455142974853516, + "step": 1913 + }, + { + "epoch": 26.587155963302752, + "grad_norm": 0.25804755091667175, + "learning_rate": 0.0006, + "loss": 3.799227476119995, + "step": 1914 + }, + { + "epoch": 26.601135867190912, + "grad_norm": 0.2555372416973114, + "learning_rate": 0.0006, + "loss": 3.8125686645507812, + "step": 1915 + }, + { + "epoch": 26.615115771079076, + "grad_norm": 0.2266194075345993, + "learning_rate": 0.0006, + "loss": 3.858363628387451, + "step": 1916 + }, + { + "epoch": 26.629095674967235, + "grad_norm": 0.1933048665523529, + "learning_rate": 0.0006, + "loss": 3.8078083992004395, + "step": 1917 + }, + { + "epoch": 26.643075578855395, + "grad_norm": 0.19936731457710266, + "learning_rate": 0.0006, + "loss": 3.81748628616333, + "step": 1918 + }, + { + "epoch": 26.657055482743555, + "grad_norm": 0.22041693329811096, + "learning_rate": 0.0006, + "loss": 3.833272933959961, + "step": 1919 + }, + { + "epoch": 26.67103538663172, + "grad_norm": 0.20679150521755219, + "learning_rate": 0.0006, + "loss": 3.8127288818359375, + "step": 1920 + }, + { + "epoch": 26.68501529051988, + "grad_norm": 0.21545100212097168, + "learning_rate": 0.0006, + "loss": 3.816051483154297, + "step": 1921 + }, + { + "epoch": 26.698995194408038, + "grad_norm": 0.23554518818855286, + "learning_rate": 0.0006, + "loss": 3.8180980682373047, + "step": 1922 + }, + { + "epoch": 26.712975098296198, + "grad_norm": 0.21942466497421265, + "learning_rate": 0.0006, + "loss": 3.803107976913452, + "step": 1923 + }, + { + "epoch": 26.72695500218436, + "grad_norm": 0.22335010766983032, + "learning_rate": 0.0006, + "loss": 3.847890853881836, + "step": 1924 + }, + { + "epoch": 26.74093490607252, + "grad_norm": 0.24731314182281494, + "learning_rate": 0.0006, + "loss": 3.7945008277893066, + "step": 1925 + }, + { + "epoch": 26.75491480996068, + "grad_norm": 0.2804568111896515, + "learning_rate": 0.0006, + "loss": 3.8400068283081055, + "step": 1926 + }, + { + "epoch": 26.76889471384884, + "grad_norm": 0.28787222504615784, + "learning_rate": 0.0006, + "loss": 3.839771270751953, + "step": 1927 + }, + { + "epoch": 26.782874617737004, + "grad_norm": 0.2949632406234741, + "learning_rate": 0.0006, + "loss": 3.8225326538085938, + "step": 1928 + }, + { + "epoch": 26.796854521625164, + "grad_norm": 0.31546032428741455, + "learning_rate": 0.0006, + "loss": 3.8182597160339355, + "step": 1929 + }, + { + "epoch": 26.810834425513324, + "grad_norm": 0.2956962585449219, + "learning_rate": 0.0006, + "loss": 3.8315680027008057, + "step": 1930 + }, + { + "epoch": 26.824814329401484, + "grad_norm": 0.26943835616111755, + "learning_rate": 0.0006, + "loss": 3.787720203399658, + "step": 1931 + }, + { + "epoch": 26.838794233289647, + "grad_norm": 0.24272359907627106, + "learning_rate": 0.0006, + "loss": 3.7973692417144775, + "step": 1932 + }, + { + "epoch": 26.852774137177807, + "grad_norm": 0.20553994178771973, + "learning_rate": 0.0006, + "loss": 3.8241593837738037, + "step": 1933 + }, + { + "epoch": 26.866754041065967, + "grad_norm": 0.21927912533283234, + "learning_rate": 0.0006, + "loss": 3.8608899116516113, + "step": 1934 + }, + { + "epoch": 26.88073394495413, + "grad_norm": 0.22878016531467438, + "learning_rate": 0.0006, + "loss": 3.8341972827911377, + "step": 1935 + }, + { + "epoch": 26.89471384884229, + "grad_norm": 0.2085554301738739, + "learning_rate": 0.0006, + "loss": 3.8261351585388184, + "step": 1936 + }, + { + "epoch": 26.90869375273045, + "grad_norm": 0.21259072422981262, + "learning_rate": 0.0006, + "loss": 3.862056255340576, + "step": 1937 + }, + { + "epoch": 26.92267365661861, + "grad_norm": 0.21354122459888458, + "learning_rate": 0.0006, + "loss": 3.80879545211792, + "step": 1938 + }, + { + "epoch": 26.936653560506773, + "grad_norm": 0.2350253462791443, + "learning_rate": 0.0006, + "loss": 3.817826271057129, + "step": 1939 + }, + { + "epoch": 26.950633464394933, + "grad_norm": 0.23833836615085602, + "learning_rate": 0.0006, + "loss": 3.8220884799957275, + "step": 1940 + }, + { + "epoch": 26.964613368283093, + "grad_norm": 0.2368069440126419, + "learning_rate": 0.0006, + "loss": 3.843264579772949, + "step": 1941 + }, + { + "epoch": 26.978593272171253, + "grad_norm": 0.22663559019565582, + "learning_rate": 0.0006, + "loss": 3.81339430809021, + "step": 1942 + }, + { + "epoch": 26.992573176059416, + "grad_norm": 0.2151402235031128, + "learning_rate": 0.0006, + "loss": 3.8262834548950195, + "step": 1943 + }, + { + "epoch": 27.0, + "grad_norm": 0.24320295453071594, + "learning_rate": 0.0006, + "loss": 3.858567237854004, + "step": 1944 + }, + { + "epoch": 27.0, + "eval_loss": 4.0613322257995605, + "eval_runtime": 44.766, + "eval_samples_per_second": 54.55, + "eval_steps_per_second": 3.418, + "step": 1944 + }, + { + "epoch": 27.01397990388816, + "grad_norm": 0.21188032627105713, + "learning_rate": 0.0006, + "loss": 3.7631278038024902, + "step": 1945 + }, + { + "epoch": 27.027959807776323, + "grad_norm": 0.22298137843608856, + "learning_rate": 0.0006, + "loss": 3.784029245376587, + "step": 1946 + }, + { + "epoch": 27.041939711664483, + "grad_norm": 0.26530158519744873, + "learning_rate": 0.0006, + "loss": 3.795860767364502, + "step": 1947 + }, + { + "epoch": 27.055919615552643, + "grad_norm": 0.24476729333400726, + "learning_rate": 0.0006, + "loss": 3.77512264251709, + "step": 1948 + }, + { + "epoch": 27.069899519440803, + "grad_norm": 0.1934421956539154, + "learning_rate": 0.0006, + "loss": 3.7797446250915527, + "step": 1949 + }, + { + "epoch": 27.083879423328966, + "grad_norm": 0.19777092337608337, + "learning_rate": 0.0006, + "loss": 3.798935890197754, + "step": 1950 + }, + { + "epoch": 27.097859327217126, + "grad_norm": 0.2071693390607834, + "learning_rate": 0.0006, + "loss": 3.763094425201416, + "step": 1951 + }, + { + "epoch": 27.111839231105286, + "grad_norm": 0.18394742906093597, + "learning_rate": 0.0006, + "loss": 3.7892322540283203, + "step": 1952 + }, + { + "epoch": 27.125819134993446, + "grad_norm": 0.17878273129463196, + "learning_rate": 0.0006, + "loss": 3.787968158721924, + "step": 1953 + }, + { + "epoch": 27.13979903888161, + "grad_norm": 0.18792171776294708, + "learning_rate": 0.0006, + "loss": 3.7719640731811523, + "step": 1954 + }, + { + "epoch": 27.15377894276977, + "grad_norm": 0.18718759715557098, + "learning_rate": 0.0006, + "loss": 3.791835308074951, + "step": 1955 + }, + { + "epoch": 27.16775884665793, + "grad_norm": 0.18716055154800415, + "learning_rate": 0.0006, + "loss": 3.7490220069885254, + "step": 1956 + }, + { + "epoch": 27.18173875054609, + "grad_norm": 0.18429182469844818, + "learning_rate": 0.0006, + "loss": 3.8020081520080566, + "step": 1957 + }, + { + "epoch": 27.195718654434252, + "grad_norm": 0.18571704626083374, + "learning_rate": 0.0006, + "loss": 3.8152215480804443, + "step": 1958 + }, + { + "epoch": 27.209698558322412, + "grad_norm": 0.1788843423128128, + "learning_rate": 0.0006, + "loss": 3.8173317909240723, + "step": 1959 + }, + { + "epoch": 27.22367846221057, + "grad_norm": 0.20459426939487457, + "learning_rate": 0.0006, + "loss": 3.7760040760040283, + "step": 1960 + }, + { + "epoch": 27.23765836609873, + "grad_norm": 0.22360935807228088, + "learning_rate": 0.0006, + "loss": 3.8140203952789307, + "step": 1961 + }, + { + "epoch": 27.251638269986895, + "grad_norm": 0.2062767595052719, + "learning_rate": 0.0006, + "loss": 3.792001247406006, + "step": 1962 + }, + { + "epoch": 27.265618173875055, + "grad_norm": 0.20628073811531067, + "learning_rate": 0.0006, + "loss": 3.7873167991638184, + "step": 1963 + }, + { + "epoch": 27.279598077763215, + "grad_norm": 0.19888348877429962, + "learning_rate": 0.0006, + "loss": 3.7903614044189453, + "step": 1964 + }, + { + "epoch": 27.293577981651374, + "grad_norm": 0.22033332288265228, + "learning_rate": 0.0006, + "loss": 3.802497148513794, + "step": 1965 + }, + { + "epoch": 27.307557885539538, + "grad_norm": 0.23476941883563995, + "learning_rate": 0.0006, + "loss": 3.794090986251831, + "step": 1966 + }, + { + "epoch": 27.321537789427698, + "grad_norm": 0.19639968872070312, + "learning_rate": 0.0006, + "loss": 3.831794023513794, + "step": 1967 + }, + { + "epoch": 27.335517693315857, + "grad_norm": 0.18169641494750977, + "learning_rate": 0.0006, + "loss": 3.7687768936157227, + "step": 1968 + }, + { + "epoch": 27.34949759720402, + "grad_norm": 0.17781762778759003, + "learning_rate": 0.0006, + "loss": 3.7868471145629883, + "step": 1969 + }, + { + "epoch": 27.36347750109218, + "grad_norm": 0.18990416824817657, + "learning_rate": 0.0006, + "loss": 3.8340392112731934, + "step": 1970 + }, + { + "epoch": 27.37745740498034, + "grad_norm": 0.2031438797712326, + "learning_rate": 0.0006, + "loss": 3.804513454437256, + "step": 1971 + }, + { + "epoch": 27.3914373088685, + "grad_norm": 0.21233421564102173, + "learning_rate": 0.0006, + "loss": 3.7908449172973633, + "step": 1972 + }, + { + "epoch": 27.405417212756664, + "grad_norm": 0.22480927407741547, + "learning_rate": 0.0006, + "loss": 3.7894086837768555, + "step": 1973 + }, + { + "epoch": 27.419397116644824, + "grad_norm": 0.22713422775268555, + "learning_rate": 0.0006, + "loss": 3.826005458831787, + "step": 1974 + }, + { + "epoch": 27.433377020532983, + "grad_norm": 0.21637366712093353, + "learning_rate": 0.0006, + "loss": 3.8232319355010986, + "step": 1975 + }, + { + "epoch": 27.447356924421143, + "grad_norm": 0.24092449247837067, + "learning_rate": 0.0006, + "loss": 3.813279628753662, + "step": 1976 + }, + { + "epoch": 27.461336828309307, + "grad_norm": 0.21143047511577606, + "learning_rate": 0.0006, + "loss": 3.811586856842041, + "step": 1977 + }, + { + "epoch": 27.475316732197467, + "grad_norm": 0.21049432456493378, + "learning_rate": 0.0006, + "loss": 3.8227009773254395, + "step": 1978 + }, + { + "epoch": 27.489296636085626, + "grad_norm": 0.21853850781917572, + "learning_rate": 0.0006, + "loss": 3.7992515563964844, + "step": 1979 + }, + { + "epoch": 27.503276539973786, + "grad_norm": 0.22405001521110535, + "learning_rate": 0.0006, + "loss": 3.8311715126037598, + "step": 1980 + }, + { + "epoch": 27.51725644386195, + "grad_norm": 0.24085809290409088, + "learning_rate": 0.0006, + "loss": 3.801962375640869, + "step": 1981 + }, + { + "epoch": 27.53123634775011, + "grad_norm": 0.2612341642379761, + "learning_rate": 0.0006, + "loss": 3.7867887020111084, + "step": 1982 + }, + { + "epoch": 27.54521625163827, + "grad_norm": 0.25136062502861023, + "learning_rate": 0.0006, + "loss": 3.8302273750305176, + "step": 1983 + }, + { + "epoch": 27.55919615552643, + "grad_norm": 0.2485426515340805, + "learning_rate": 0.0006, + "loss": 3.770616054534912, + "step": 1984 + }, + { + "epoch": 27.573176059414592, + "grad_norm": 0.28883907198905945, + "learning_rate": 0.0006, + "loss": 3.8152146339416504, + "step": 1985 + }, + { + "epoch": 27.587155963302752, + "grad_norm": 0.28177911043167114, + "learning_rate": 0.0006, + "loss": 3.7966861724853516, + "step": 1986 + }, + { + "epoch": 27.601135867190912, + "grad_norm": 0.2573191523551941, + "learning_rate": 0.0006, + "loss": 3.820788621902466, + "step": 1987 + }, + { + "epoch": 27.615115771079076, + "grad_norm": 0.22225657105445862, + "learning_rate": 0.0006, + "loss": 3.778477191925049, + "step": 1988 + }, + { + "epoch": 27.629095674967235, + "grad_norm": 0.20118530094623566, + "learning_rate": 0.0006, + "loss": 3.8416988849639893, + "step": 1989 + }, + { + "epoch": 27.643075578855395, + "grad_norm": 0.21168658137321472, + "learning_rate": 0.0006, + "loss": 3.798020839691162, + "step": 1990 + }, + { + "epoch": 27.657055482743555, + "grad_norm": 0.2460680454969406, + "learning_rate": 0.0006, + "loss": 3.805917263031006, + "step": 1991 + }, + { + "epoch": 27.67103538663172, + "grad_norm": 0.2700909674167633, + "learning_rate": 0.0006, + "loss": 3.8042726516723633, + "step": 1992 + }, + { + "epoch": 27.68501529051988, + "grad_norm": 0.25814294815063477, + "learning_rate": 0.0006, + "loss": 3.799159049987793, + "step": 1993 + }, + { + "epoch": 27.698995194408038, + "grad_norm": 0.2231985628604889, + "learning_rate": 0.0006, + "loss": 3.778750419616699, + "step": 1994 + }, + { + "epoch": 27.712975098296198, + "grad_norm": 0.20807890594005585, + "learning_rate": 0.0006, + "loss": 3.787919044494629, + "step": 1995 + }, + { + "epoch": 27.72695500218436, + "grad_norm": 0.19537150859832764, + "learning_rate": 0.0006, + "loss": 3.7917299270629883, + "step": 1996 + }, + { + "epoch": 27.74093490607252, + "grad_norm": 0.21057647466659546, + "learning_rate": 0.0006, + "loss": 3.8096866607666016, + "step": 1997 + }, + { + "epoch": 27.75491480996068, + "grad_norm": 0.18983247876167297, + "learning_rate": 0.0006, + "loss": 3.7881717681884766, + "step": 1998 + }, + { + "epoch": 27.76889471384884, + "grad_norm": 0.18701069056987762, + "learning_rate": 0.0006, + "loss": 3.810790538787842, + "step": 1999 + }, + { + "epoch": 27.782874617737004, + "grad_norm": 0.1920134723186493, + "learning_rate": 0.0006, + "loss": 3.8161087036132812, + "step": 2000 + }, + { + "epoch": 27.796854521625164, + "grad_norm": 0.20413947105407715, + "learning_rate": 0.0006, + "loss": 3.790499687194824, + "step": 2001 + }, + { + "epoch": 27.810834425513324, + "grad_norm": 0.1920027732849121, + "learning_rate": 0.0006, + "loss": 3.8194262981414795, + "step": 2002 + }, + { + "epoch": 27.824814329401484, + "grad_norm": 0.18630221486091614, + "learning_rate": 0.0006, + "loss": 3.8267152309417725, + "step": 2003 + }, + { + "epoch": 27.838794233289647, + "grad_norm": 0.1787925660610199, + "learning_rate": 0.0006, + "loss": 3.8147521018981934, + "step": 2004 + }, + { + "epoch": 27.852774137177807, + "grad_norm": 0.19187216460704803, + "learning_rate": 0.0006, + "loss": 3.7751095294952393, + "step": 2005 + }, + { + "epoch": 27.866754041065967, + "grad_norm": 0.18825744092464447, + "learning_rate": 0.0006, + "loss": 3.807401657104492, + "step": 2006 + }, + { + "epoch": 27.88073394495413, + "grad_norm": 0.1879836469888687, + "learning_rate": 0.0006, + "loss": 3.8302509784698486, + "step": 2007 + }, + { + "epoch": 27.89471384884229, + "grad_norm": 0.19136391580104828, + "learning_rate": 0.0006, + "loss": 3.7886242866516113, + "step": 2008 + }, + { + "epoch": 27.90869375273045, + "grad_norm": 0.18774119019508362, + "learning_rate": 0.0006, + "loss": 3.8202977180480957, + "step": 2009 + }, + { + "epoch": 27.92267365661861, + "grad_norm": 0.17794452607631683, + "learning_rate": 0.0006, + "loss": 3.813382387161255, + "step": 2010 + }, + { + "epoch": 27.936653560506773, + "grad_norm": 0.1876268833875656, + "learning_rate": 0.0006, + "loss": 3.810610294342041, + "step": 2011 + }, + { + "epoch": 27.950633464394933, + "grad_norm": 0.19262051582336426, + "learning_rate": 0.0006, + "loss": 3.8113245964050293, + "step": 2012 + }, + { + "epoch": 27.964613368283093, + "grad_norm": 0.19371771812438965, + "learning_rate": 0.0006, + "loss": 3.804790496826172, + "step": 2013 + }, + { + "epoch": 27.978593272171253, + "grad_norm": 0.1922861784696579, + "learning_rate": 0.0006, + "loss": 3.8278889656066895, + "step": 2014 + }, + { + "epoch": 27.992573176059416, + "grad_norm": 0.19748565554618835, + "learning_rate": 0.0006, + "loss": 3.8127200603485107, + "step": 2015 + }, + { + "epoch": 28.0, + "grad_norm": 0.25027501583099365, + "learning_rate": 0.0006, + "loss": 3.7899413108825684, + "step": 2016 + }, + { + "epoch": 28.0, + "eval_loss": 4.047704219818115, + "eval_runtime": 44.293, + "eval_samples_per_second": 55.133, + "eval_steps_per_second": 3.454, + "step": 2016 + }, + { + "epoch": 28.01397990388816, + "grad_norm": 0.25172367691993713, + "learning_rate": 0.0006, + "loss": 3.75449538230896, + "step": 2017 + }, + { + "epoch": 28.027959807776323, + "grad_norm": 0.23494598269462585, + "learning_rate": 0.0006, + "loss": 3.7609024047851562, + "step": 2018 + }, + { + "epoch": 28.041939711664483, + "grad_norm": 0.22459708154201508, + "learning_rate": 0.0006, + "loss": 3.7843551635742188, + "step": 2019 + }, + { + "epoch": 28.055919615552643, + "grad_norm": 0.2038632035255432, + "learning_rate": 0.0006, + "loss": 3.7818198204040527, + "step": 2020 + }, + { + "epoch": 28.069899519440803, + "grad_norm": 0.22050008177757263, + "learning_rate": 0.0006, + "loss": 3.787442684173584, + "step": 2021 + }, + { + "epoch": 28.083879423328966, + "grad_norm": 0.24645832180976868, + "learning_rate": 0.0006, + "loss": 3.768704414367676, + "step": 2022 + }, + { + "epoch": 28.097859327217126, + "grad_norm": 0.2440163493156433, + "learning_rate": 0.0006, + "loss": 3.7783756256103516, + "step": 2023 + }, + { + "epoch": 28.111839231105286, + "grad_norm": 0.2482181042432785, + "learning_rate": 0.0006, + "loss": 3.786881923675537, + "step": 2024 + }, + { + "epoch": 28.125819134993446, + "grad_norm": 0.23494760692119598, + "learning_rate": 0.0006, + "loss": 3.790039300918579, + "step": 2025 + }, + { + "epoch": 28.13979903888161, + "grad_norm": 0.2172182947397232, + "learning_rate": 0.0006, + "loss": 3.818756580352783, + "step": 2026 + }, + { + "epoch": 28.15377894276977, + "grad_norm": 0.2103179395198822, + "learning_rate": 0.0006, + "loss": 3.7768917083740234, + "step": 2027 + }, + { + "epoch": 28.16775884665793, + "grad_norm": 0.22322365641593933, + "learning_rate": 0.0006, + "loss": 3.8223648071289062, + "step": 2028 + }, + { + "epoch": 28.18173875054609, + "grad_norm": 0.24199382960796356, + "learning_rate": 0.0006, + "loss": 3.781357765197754, + "step": 2029 + }, + { + "epoch": 28.195718654434252, + "grad_norm": 0.2500663101673126, + "learning_rate": 0.0006, + "loss": 3.8061184883117676, + "step": 2030 + }, + { + "epoch": 28.209698558322412, + "grad_norm": 0.2439824491739273, + "learning_rate": 0.0006, + "loss": 3.7886464595794678, + "step": 2031 + }, + { + "epoch": 28.22367846221057, + "grad_norm": 0.24563106894493103, + "learning_rate": 0.0006, + "loss": 3.7901692390441895, + "step": 2032 + }, + { + "epoch": 28.23765836609873, + "grad_norm": 0.2287624627351761, + "learning_rate": 0.0006, + "loss": 3.789931058883667, + "step": 2033 + }, + { + "epoch": 28.251638269986895, + "grad_norm": 0.2231188714504242, + "learning_rate": 0.0006, + "loss": 3.7879133224487305, + "step": 2034 + }, + { + "epoch": 28.265618173875055, + "grad_norm": 0.23090387880802155, + "learning_rate": 0.0006, + "loss": 3.7826130390167236, + "step": 2035 + }, + { + "epoch": 28.279598077763215, + "grad_norm": 0.216018944978714, + "learning_rate": 0.0006, + "loss": 3.7764949798583984, + "step": 2036 + }, + { + "epoch": 28.293577981651374, + "grad_norm": 0.22649185359477997, + "learning_rate": 0.0006, + "loss": 3.7911291122436523, + "step": 2037 + }, + { + "epoch": 28.307557885539538, + "grad_norm": 0.2350836843252182, + "learning_rate": 0.0006, + "loss": 3.7668724060058594, + "step": 2038 + }, + { + "epoch": 28.321537789427698, + "grad_norm": 0.23206329345703125, + "learning_rate": 0.0006, + "loss": 3.782243251800537, + "step": 2039 + }, + { + "epoch": 28.335517693315857, + "grad_norm": 0.21896308660507202, + "learning_rate": 0.0006, + "loss": 3.7605721950531006, + "step": 2040 + }, + { + "epoch": 28.34949759720402, + "grad_norm": 0.20381200313568115, + "learning_rate": 0.0006, + "loss": 3.743945598602295, + "step": 2041 + }, + { + "epoch": 28.36347750109218, + "grad_norm": 0.19196000695228577, + "learning_rate": 0.0006, + "loss": 3.808107852935791, + "step": 2042 + }, + { + "epoch": 28.37745740498034, + "grad_norm": 0.19517889618873596, + "learning_rate": 0.0006, + "loss": 3.7906723022460938, + "step": 2043 + }, + { + "epoch": 28.3914373088685, + "grad_norm": 0.20455795526504517, + "learning_rate": 0.0006, + "loss": 3.7421011924743652, + "step": 2044 + }, + { + "epoch": 28.405417212756664, + "grad_norm": 0.1867467314004898, + "learning_rate": 0.0006, + "loss": 3.775509834289551, + "step": 2045 + }, + { + "epoch": 28.419397116644824, + "grad_norm": 0.2029324471950531, + "learning_rate": 0.0006, + "loss": 3.771353244781494, + "step": 2046 + }, + { + "epoch": 28.433377020532983, + "grad_norm": 0.19967497885227203, + "learning_rate": 0.0006, + "loss": 3.7821149826049805, + "step": 2047 + }, + { + "epoch": 28.447356924421143, + "grad_norm": 0.19440607726573944, + "learning_rate": 0.0006, + "loss": 3.8114213943481445, + "step": 2048 + }, + { + "epoch": 28.461336828309307, + "grad_norm": 0.19679802656173706, + "learning_rate": 0.0006, + "loss": 3.7699532508850098, + "step": 2049 + }, + { + "epoch": 28.475316732197467, + "grad_norm": 0.1939811110496521, + "learning_rate": 0.0006, + "loss": 3.7673027515411377, + "step": 2050 + }, + { + "epoch": 28.489296636085626, + "grad_norm": 0.18712401390075684, + "learning_rate": 0.0006, + "loss": 3.816699266433716, + "step": 2051 + }, + { + "epoch": 28.503276539973786, + "grad_norm": 0.202956885099411, + "learning_rate": 0.0006, + "loss": 3.7746071815490723, + "step": 2052 + }, + { + "epoch": 28.51725644386195, + "grad_norm": 0.19098156690597534, + "learning_rate": 0.0006, + "loss": 3.8065481185913086, + "step": 2053 + }, + { + "epoch": 28.53123634775011, + "grad_norm": 0.21144428849220276, + "learning_rate": 0.0006, + "loss": 3.7890982627868652, + "step": 2054 + }, + { + "epoch": 28.54521625163827, + "grad_norm": 0.21882614493370056, + "learning_rate": 0.0006, + "loss": 3.8168821334838867, + "step": 2055 + }, + { + "epoch": 28.55919615552643, + "grad_norm": 0.22200101613998413, + "learning_rate": 0.0006, + "loss": 3.804454803466797, + "step": 2056 + }, + { + "epoch": 28.573176059414592, + "grad_norm": 0.22404780983924866, + "learning_rate": 0.0006, + "loss": 3.808764934539795, + "step": 2057 + }, + { + "epoch": 28.587155963302752, + "grad_norm": 0.22770099341869354, + "learning_rate": 0.0006, + "loss": 3.74835467338562, + "step": 2058 + }, + { + "epoch": 28.601135867190912, + "grad_norm": 0.23214420676231384, + "learning_rate": 0.0006, + "loss": 3.7480111122131348, + "step": 2059 + }, + { + "epoch": 28.615115771079076, + "grad_norm": 0.21786348521709442, + "learning_rate": 0.0006, + "loss": 3.8095176219940186, + "step": 2060 + }, + { + "epoch": 28.629095674967235, + "grad_norm": 0.21004106104373932, + "learning_rate": 0.0006, + "loss": 3.792745590209961, + "step": 2061 + }, + { + "epoch": 28.643075578855395, + "grad_norm": 0.21076138317584991, + "learning_rate": 0.0006, + "loss": 3.7878952026367188, + "step": 2062 + }, + { + "epoch": 28.657055482743555, + "grad_norm": 0.2184346616268158, + "learning_rate": 0.0006, + "loss": 3.757188320159912, + "step": 2063 + }, + { + "epoch": 28.67103538663172, + "grad_norm": 0.22100569307804108, + "learning_rate": 0.0006, + "loss": 3.8131773471832275, + "step": 2064 + }, + { + "epoch": 28.68501529051988, + "grad_norm": 0.23257511854171753, + "learning_rate": 0.0006, + "loss": 3.793826103210449, + "step": 2065 + }, + { + "epoch": 28.698995194408038, + "grad_norm": 0.22312869131565094, + "learning_rate": 0.0006, + "loss": 3.782083749771118, + "step": 2066 + }, + { + "epoch": 28.712975098296198, + "grad_norm": 0.2318405956029892, + "learning_rate": 0.0006, + "loss": 3.7814879417419434, + "step": 2067 + }, + { + "epoch": 28.72695500218436, + "grad_norm": 0.23719379305839539, + "learning_rate": 0.0006, + "loss": 3.8320484161376953, + "step": 2068 + }, + { + "epoch": 28.74093490607252, + "grad_norm": 0.23100806772708893, + "learning_rate": 0.0006, + "loss": 3.7921783924102783, + "step": 2069 + }, + { + "epoch": 28.75491480996068, + "grad_norm": 0.21540866792201996, + "learning_rate": 0.0006, + "loss": 3.8325204849243164, + "step": 2070 + }, + { + "epoch": 28.76889471384884, + "grad_norm": 0.2698654532432556, + "learning_rate": 0.0006, + "loss": 3.7965879440307617, + "step": 2071 + }, + { + "epoch": 28.782874617737004, + "grad_norm": 0.3101225793361664, + "learning_rate": 0.0006, + "loss": 3.78842830657959, + "step": 2072 + }, + { + "epoch": 28.796854521625164, + "grad_norm": 0.2607600688934326, + "learning_rate": 0.0006, + "loss": 3.770064115524292, + "step": 2073 + }, + { + "epoch": 28.810834425513324, + "grad_norm": 0.20558302104473114, + "learning_rate": 0.0006, + "loss": 3.7448501586914062, + "step": 2074 + }, + { + "epoch": 28.824814329401484, + "grad_norm": 0.20030120015144348, + "learning_rate": 0.0006, + "loss": 3.7689406871795654, + "step": 2075 + }, + { + "epoch": 28.838794233289647, + "grad_norm": 0.21781118214130402, + "learning_rate": 0.0006, + "loss": 3.7682244777679443, + "step": 2076 + }, + { + "epoch": 28.852774137177807, + "grad_norm": 0.23543044924736023, + "learning_rate": 0.0006, + "loss": 3.8094193935394287, + "step": 2077 + }, + { + "epoch": 28.866754041065967, + "grad_norm": 0.21634669601917267, + "learning_rate": 0.0006, + "loss": 3.792099952697754, + "step": 2078 + }, + { + "epoch": 28.88073394495413, + "grad_norm": 0.2251661866903305, + "learning_rate": 0.0006, + "loss": 3.7849509716033936, + "step": 2079 + }, + { + "epoch": 28.89471384884229, + "grad_norm": 0.23872914910316467, + "learning_rate": 0.0006, + "loss": 3.8391621112823486, + "step": 2080 + }, + { + "epoch": 28.90869375273045, + "grad_norm": 0.22259248793125153, + "learning_rate": 0.0006, + "loss": 3.8272876739501953, + "step": 2081 + }, + { + "epoch": 28.92267365661861, + "grad_norm": 0.22052262723445892, + "learning_rate": 0.0006, + "loss": 3.7986836433410645, + "step": 2082 + }, + { + "epoch": 28.936653560506773, + "grad_norm": 0.24487647414207458, + "learning_rate": 0.0006, + "loss": 3.798004150390625, + "step": 2083 + }, + { + "epoch": 28.950633464394933, + "grad_norm": 0.22992238402366638, + "learning_rate": 0.0006, + "loss": 3.788522720336914, + "step": 2084 + }, + { + "epoch": 28.964613368283093, + "grad_norm": 0.22521597146987915, + "learning_rate": 0.0006, + "loss": 3.767259120941162, + "step": 2085 + }, + { + "epoch": 28.978593272171253, + "grad_norm": 0.2201499044895172, + "learning_rate": 0.0006, + "loss": 3.7850542068481445, + "step": 2086 + }, + { + "epoch": 28.992573176059416, + "grad_norm": 0.22226814925670624, + "learning_rate": 0.0006, + "loss": 3.8013534545898438, + "step": 2087 + }, + { + "epoch": 29.0, + "grad_norm": 0.27624809741973877, + "learning_rate": 0.0006, + "loss": 3.762004852294922, + "step": 2088 + }, + { + "epoch": 29.0, + "eval_loss": 4.034304618835449, + "eval_runtime": 44.6573, + "eval_samples_per_second": 54.683, + "eval_steps_per_second": 3.426, + "step": 2088 + }, + { + "epoch": 29.01397990388816, + "grad_norm": 0.2550967037677765, + "learning_rate": 0.0006, + "loss": 3.7724227905273438, + "step": 2089 + }, + { + "epoch": 29.027959807776323, + "grad_norm": 0.26730602979660034, + "learning_rate": 0.0006, + "loss": 3.7728946208953857, + "step": 2090 + }, + { + "epoch": 29.041939711664483, + "grad_norm": 0.2394205927848816, + "learning_rate": 0.0006, + "loss": 3.7737584114074707, + "step": 2091 + }, + { + "epoch": 29.055919615552643, + "grad_norm": 0.22488200664520264, + "learning_rate": 0.0006, + "loss": 3.761014938354492, + "step": 2092 + }, + { + "epoch": 29.069899519440803, + "grad_norm": 0.2389903962612152, + "learning_rate": 0.0006, + "loss": 3.766557216644287, + "step": 2093 + }, + { + "epoch": 29.083879423328966, + "grad_norm": 0.234152153134346, + "learning_rate": 0.0006, + "loss": 3.7447147369384766, + "step": 2094 + }, + { + "epoch": 29.097859327217126, + "grad_norm": 0.23123252391815186, + "learning_rate": 0.0006, + "loss": 3.77197527885437, + "step": 2095 + }, + { + "epoch": 29.111839231105286, + "grad_norm": 0.23263143002986908, + "learning_rate": 0.0006, + "loss": 3.7390198707580566, + "step": 2096 + }, + { + "epoch": 29.125819134993446, + "grad_norm": 0.23235775530338287, + "learning_rate": 0.0006, + "loss": 3.7675256729125977, + "step": 2097 + }, + { + "epoch": 29.13979903888161, + "grad_norm": 0.2208816260099411, + "learning_rate": 0.0006, + "loss": 3.7588067054748535, + "step": 2098 + }, + { + "epoch": 29.15377894276977, + "grad_norm": 0.21216371655464172, + "learning_rate": 0.0006, + "loss": 3.7370502948760986, + "step": 2099 + }, + { + "epoch": 29.16775884665793, + "grad_norm": 0.2210543155670166, + "learning_rate": 0.0006, + "loss": 3.767308473587036, + "step": 2100 + }, + { + "epoch": 29.18173875054609, + "grad_norm": 0.21628431975841522, + "learning_rate": 0.0006, + "loss": 3.7298972606658936, + "step": 2101 + }, + { + "epoch": 29.195718654434252, + "grad_norm": 0.21493588387966156, + "learning_rate": 0.0006, + "loss": 3.7806448936462402, + "step": 2102 + }, + { + "epoch": 29.209698558322412, + "grad_norm": 0.25978055596351624, + "learning_rate": 0.0006, + "loss": 3.7716293334960938, + "step": 2103 + }, + { + "epoch": 29.22367846221057, + "grad_norm": 0.2744791507720947, + "learning_rate": 0.0006, + "loss": 3.76897931098938, + "step": 2104 + }, + { + "epoch": 29.23765836609873, + "grad_norm": 0.22959400713443756, + "learning_rate": 0.0006, + "loss": 3.7545714378356934, + "step": 2105 + }, + { + "epoch": 29.251638269986895, + "grad_norm": 0.20369231700897217, + "learning_rate": 0.0006, + "loss": 3.7944722175598145, + "step": 2106 + }, + { + "epoch": 29.265618173875055, + "grad_norm": 0.21663758158683777, + "learning_rate": 0.0006, + "loss": 3.7564756870269775, + "step": 2107 + }, + { + "epoch": 29.279598077763215, + "grad_norm": 0.21862861514091492, + "learning_rate": 0.0006, + "loss": 3.7722725868225098, + "step": 2108 + }, + { + "epoch": 29.293577981651374, + "grad_norm": 0.2044878453016281, + "learning_rate": 0.0006, + "loss": 3.7471303939819336, + "step": 2109 + }, + { + "epoch": 29.307557885539538, + "grad_norm": 0.23015929758548737, + "learning_rate": 0.0006, + "loss": 3.7584962844848633, + "step": 2110 + }, + { + "epoch": 29.321537789427698, + "grad_norm": 0.22548329830169678, + "learning_rate": 0.0006, + "loss": 3.795933723449707, + "step": 2111 + }, + { + "epoch": 29.335517693315857, + "grad_norm": 0.2000468522310257, + "learning_rate": 0.0006, + "loss": 3.766310691833496, + "step": 2112 + }, + { + "epoch": 29.34949759720402, + "grad_norm": 0.19711551070213318, + "learning_rate": 0.0006, + "loss": 3.7296276092529297, + "step": 2113 + }, + { + "epoch": 29.36347750109218, + "grad_norm": 0.18838997185230255, + "learning_rate": 0.0006, + "loss": 3.7685282230377197, + "step": 2114 + }, + { + "epoch": 29.37745740498034, + "grad_norm": 0.1897876113653183, + "learning_rate": 0.0006, + "loss": 3.7280936241149902, + "step": 2115 + }, + { + "epoch": 29.3914373088685, + "grad_norm": 0.21697933971881866, + "learning_rate": 0.0006, + "loss": 3.7991929054260254, + "step": 2116 + }, + { + "epoch": 29.405417212756664, + "grad_norm": 0.23445849120616913, + "learning_rate": 0.0006, + "loss": 3.7857418060302734, + "step": 2117 + }, + { + "epoch": 29.419397116644824, + "grad_norm": 0.24155527353286743, + "learning_rate": 0.0006, + "loss": 3.7897872924804688, + "step": 2118 + }, + { + "epoch": 29.433377020532983, + "grad_norm": 0.2610265016555786, + "learning_rate": 0.0006, + "loss": 3.7867324352264404, + "step": 2119 + }, + { + "epoch": 29.447356924421143, + "grad_norm": 0.2809581160545349, + "learning_rate": 0.0006, + "loss": 3.783799648284912, + "step": 2120 + }, + { + "epoch": 29.461336828309307, + "grad_norm": 0.2621572017669678, + "learning_rate": 0.0006, + "loss": 3.7778549194335938, + "step": 2121 + }, + { + "epoch": 29.475316732197467, + "grad_norm": 0.26002970337867737, + "learning_rate": 0.0006, + "loss": 3.787945508956909, + "step": 2122 + }, + { + "epoch": 29.489296636085626, + "grad_norm": 0.24866686761379242, + "learning_rate": 0.0006, + "loss": 3.7406349182128906, + "step": 2123 + }, + { + "epoch": 29.503276539973786, + "grad_norm": 0.25588324666023254, + "learning_rate": 0.0006, + "loss": 3.785625457763672, + "step": 2124 + }, + { + "epoch": 29.51725644386195, + "grad_norm": 0.24724243581295013, + "learning_rate": 0.0006, + "loss": 3.7581701278686523, + "step": 2125 + }, + { + "epoch": 29.53123634775011, + "grad_norm": 0.23544734716415405, + "learning_rate": 0.0006, + "loss": 3.8163957595825195, + "step": 2126 + }, + { + "epoch": 29.54521625163827, + "grad_norm": 0.2108801156282425, + "learning_rate": 0.0006, + "loss": 3.7881739139556885, + "step": 2127 + }, + { + "epoch": 29.55919615552643, + "grad_norm": 0.20459668338298798, + "learning_rate": 0.0006, + "loss": 3.7641284465789795, + "step": 2128 + }, + { + "epoch": 29.573176059414592, + "grad_norm": 0.24020728468894958, + "learning_rate": 0.0006, + "loss": 3.7748730182647705, + "step": 2129 + }, + { + "epoch": 29.587155963302752, + "grad_norm": 0.256273478269577, + "learning_rate": 0.0006, + "loss": 3.8076486587524414, + "step": 2130 + }, + { + "epoch": 29.601135867190912, + "grad_norm": 0.23295973241329193, + "learning_rate": 0.0006, + "loss": 3.7687063217163086, + "step": 2131 + }, + { + "epoch": 29.615115771079076, + "grad_norm": 0.21554847061634064, + "learning_rate": 0.0006, + "loss": 3.781867027282715, + "step": 2132 + }, + { + "epoch": 29.629095674967235, + "grad_norm": 0.20645774900913239, + "learning_rate": 0.0006, + "loss": 3.7813425064086914, + "step": 2133 + }, + { + "epoch": 29.643075578855395, + "grad_norm": 0.2018265724182129, + "learning_rate": 0.0006, + "loss": 3.772895574569702, + "step": 2134 + }, + { + "epoch": 29.657055482743555, + "grad_norm": 0.20170100033283234, + "learning_rate": 0.0006, + "loss": 3.7819175720214844, + "step": 2135 + }, + { + "epoch": 29.67103538663172, + "grad_norm": 0.22640688717365265, + "learning_rate": 0.0006, + "loss": 3.7999017238616943, + "step": 2136 + }, + { + "epoch": 29.68501529051988, + "grad_norm": 0.23747675120830536, + "learning_rate": 0.0006, + "loss": 3.804999828338623, + "step": 2137 + }, + { + "epoch": 29.698995194408038, + "grad_norm": 0.20005857944488525, + "learning_rate": 0.0006, + "loss": 3.7815160751342773, + "step": 2138 + }, + { + "epoch": 29.712975098296198, + "grad_norm": 0.17901667952537537, + "learning_rate": 0.0006, + "loss": 3.7898688316345215, + "step": 2139 + }, + { + "epoch": 29.72695500218436, + "grad_norm": 0.1890905797481537, + "learning_rate": 0.0006, + "loss": 3.8001184463500977, + "step": 2140 + }, + { + "epoch": 29.74093490607252, + "grad_norm": 0.19565847516059875, + "learning_rate": 0.0006, + "loss": 3.7522482872009277, + "step": 2141 + }, + { + "epoch": 29.75491480996068, + "grad_norm": 0.19429196417331696, + "learning_rate": 0.0006, + "loss": 3.768972158432007, + "step": 2142 + }, + { + "epoch": 29.76889471384884, + "grad_norm": 0.23846636712551117, + "learning_rate": 0.0006, + "loss": 3.765216112136841, + "step": 2143 + }, + { + "epoch": 29.782874617737004, + "grad_norm": 0.23820780217647552, + "learning_rate": 0.0006, + "loss": 3.8027703762054443, + "step": 2144 + }, + { + "epoch": 29.796854521625164, + "grad_norm": 0.21104726195335388, + "learning_rate": 0.0006, + "loss": 3.7682833671569824, + "step": 2145 + }, + { + "epoch": 29.810834425513324, + "grad_norm": 0.1911051720380783, + "learning_rate": 0.0006, + "loss": 3.781782627105713, + "step": 2146 + }, + { + "epoch": 29.824814329401484, + "grad_norm": 0.18881288170814514, + "learning_rate": 0.0006, + "loss": 3.7703428268432617, + "step": 2147 + }, + { + "epoch": 29.838794233289647, + "grad_norm": 0.18292994797229767, + "learning_rate": 0.0006, + "loss": 3.769176721572876, + "step": 2148 + }, + { + "epoch": 29.852774137177807, + "grad_norm": 0.1777714639902115, + "learning_rate": 0.0006, + "loss": 3.7488298416137695, + "step": 2149 + }, + { + "epoch": 29.866754041065967, + "grad_norm": 0.2037898749113083, + "learning_rate": 0.0006, + "loss": 3.804396390914917, + "step": 2150 + }, + { + "epoch": 29.88073394495413, + "grad_norm": 0.2121828943490982, + "learning_rate": 0.0006, + "loss": 3.75870943069458, + "step": 2151 + }, + { + "epoch": 29.89471384884229, + "grad_norm": 0.23231184482574463, + "learning_rate": 0.0006, + "loss": 3.80178165435791, + "step": 2152 + }, + { + "epoch": 29.90869375273045, + "grad_norm": 0.24045611917972565, + "learning_rate": 0.0006, + "loss": 3.7690834999084473, + "step": 2153 + }, + { + "epoch": 29.92267365661861, + "grad_norm": 0.19830496609210968, + "learning_rate": 0.0006, + "loss": 3.764401912689209, + "step": 2154 + }, + { + "epoch": 29.936653560506773, + "grad_norm": 0.17704227566719055, + "learning_rate": 0.0006, + "loss": 3.7634594440460205, + "step": 2155 + }, + { + "epoch": 29.950633464394933, + "grad_norm": 0.17783164978027344, + "learning_rate": 0.0006, + "loss": 3.7856998443603516, + "step": 2156 + }, + { + "epoch": 29.964613368283093, + "grad_norm": 0.19684971868991852, + "learning_rate": 0.0006, + "loss": 3.805774211883545, + "step": 2157 + }, + { + "epoch": 29.978593272171253, + "grad_norm": 0.21662312746047974, + "learning_rate": 0.0006, + "loss": 3.757896661758423, + "step": 2158 + }, + { + "epoch": 29.992573176059416, + "grad_norm": 0.22000661492347717, + "learning_rate": 0.0006, + "loss": 3.7747678756713867, + "step": 2159 + }, + { + "epoch": 30.0, + "grad_norm": 0.21501901745796204, + "learning_rate": 0.0006, + "loss": 3.785585880279541, + "step": 2160 + }, + { + "epoch": 30.0, + "eval_loss": 4.034003734588623, + "eval_runtime": 44.9097, + "eval_samples_per_second": 54.376, + "eval_steps_per_second": 3.407, + "step": 2160 + }, + { + "epoch": 30.01397990388816, + "grad_norm": 0.19710904359817505, + "learning_rate": 0.0006, + "loss": 3.756235122680664, + "step": 2161 + }, + { + "epoch": 30.027959807776323, + "grad_norm": 0.19829736649990082, + "learning_rate": 0.0006, + "loss": 3.734067916870117, + "step": 2162 + }, + { + "epoch": 30.041939711664483, + "grad_norm": 0.21622520685195923, + "learning_rate": 0.0006, + "loss": 3.7329437732696533, + "step": 2163 + }, + { + "epoch": 30.055919615552643, + "grad_norm": 0.22544652223587036, + "learning_rate": 0.0006, + "loss": 3.748716354370117, + "step": 2164 + }, + { + "epoch": 30.069899519440803, + "grad_norm": 0.21098364889621735, + "learning_rate": 0.0006, + "loss": 3.779047727584839, + "step": 2165 + }, + { + "epoch": 30.083879423328966, + "grad_norm": 0.21309930086135864, + "learning_rate": 0.0006, + "loss": 3.7690274715423584, + "step": 2166 + }, + { + "epoch": 30.097859327217126, + "grad_norm": 0.23025690019130707, + "learning_rate": 0.0006, + "loss": 3.7500953674316406, + "step": 2167 + }, + { + "epoch": 30.111839231105286, + "grad_norm": 0.25107935070991516, + "learning_rate": 0.0006, + "loss": 3.745492458343506, + "step": 2168 + }, + { + "epoch": 30.125819134993446, + "grad_norm": 0.29873573780059814, + "learning_rate": 0.0006, + "loss": 3.759793758392334, + "step": 2169 + }, + { + "epoch": 30.13979903888161, + "grad_norm": 0.2810286283493042, + "learning_rate": 0.0006, + "loss": 3.772998809814453, + "step": 2170 + }, + { + "epoch": 30.15377894276977, + "grad_norm": 0.2102176398038864, + "learning_rate": 0.0006, + "loss": 3.740170955657959, + "step": 2171 + }, + { + "epoch": 30.16775884665793, + "grad_norm": 0.24143251776695251, + "learning_rate": 0.0006, + "loss": 3.7317001819610596, + "step": 2172 + }, + { + "epoch": 30.18173875054609, + "grad_norm": 0.2643064558506012, + "learning_rate": 0.0006, + "loss": 3.773263692855835, + "step": 2173 + }, + { + "epoch": 30.195718654434252, + "grad_norm": 0.27571243047714233, + "learning_rate": 0.0006, + "loss": 3.7619900703430176, + "step": 2174 + }, + { + "epoch": 30.209698558322412, + "grad_norm": 0.25359588861465454, + "learning_rate": 0.0006, + "loss": 3.7608513832092285, + "step": 2175 + }, + { + "epoch": 30.22367846221057, + "grad_norm": 0.2500684857368469, + "learning_rate": 0.0006, + "loss": 3.75856614112854, + "step": 2176 + }, + { + "epoch": 30.23765836609873, + "grad_norm": 0.23100309073925018, + "learning_rate": 0.0006, + "loss": 3.749786853790283, + "step": 2177 + }, + { + "epoch": 30.251638269986895, + "grad_norm": 0.24384984374046326, + "learning_rate": 0.0006, + "loss": 3.762244701385498, + "step": 2178 + }, + { + "epoch": 30.265618173875055, + "grad_norm": 0.24593998491764069, + "learning_rate": 0.0006, + "loss": 3.754594326019287, + "step": 2179 + }, + { + "epoch": 30.279598077763215, + "grad_norm": 0.2529342770576477, + "learning_rate": 0.0006, + "loss": 3.7641053199768066, + "step": 2180 + }, + { + "epoch": 30.293577981651374, + "grad_norm": 0.25954094529151917, + "learning_rate": 0.0006, + "loss": 3.810336112976074, + "step": 2181 + }, + { + "epoch": 30.307557885539538, + "grad_norm": 0.2249951958656311, + "learning_rate": 0.0006, + "loss": 3.7542617321014404, + "step": 2182 + }, + { + "epoch": 30.321537789427698, + "grad_norm": 0.19795064628124237, + "learning_rate": 0.0006, + "loss": 3.7734434604644775, + "step": 2183 + }, + { + "epoch": 30.335517693315857, + "grad_norm": 0.20744608342647552, + "learning_rate": 0.0006, + "loss": 3.7816128730773926, + "step": 2184 + }, + { + "epoch": 30.34949759720402, + "grad_norm": 0.19988055527210236, + "learning_rate": 0.0006, + "loss": 3.7631936073303223, + "step": 2185 + }, + { + "epoch": 30.36347750109218, + "grad_norm": 0.22226445376873016, + "learning_rate": 0.0006, + "loss": 3.762910842895508, + "step": 2186 + }, + { + "epoch": 30.37745740498034, + "grad_norm": 0.21986067295074463, + "learning_rate": 0.0006, + "loss": 3.733893394470215, + "step": 2187 + }, + { + "epoch": 30.3914373088685, + "grad_norm": 0.2170228660106659, + "learning_rate": 0.0006, + "loss": 3.726433515548706, + "step": 2188 + }, + { + "epoch": 30.405417212756664, + "grad_norm": 0.2179550975561142, + "learning_rate": 0.0006, + "loss": 3.792311668395996, + "step": 2189 + }, + { + "epoch": 30.419397116644824, + "grad_norm": 0.208037331700325, + "learning_rate": 0.0006, + "loss": 3.774639129638672, + "step": 2190 + }, + { + "epoch": 30.433377020532983, + "grad_norm": 0.20745441317558289, + "learning_rate": 0.0006, + "loss": 3.776130199432373, + "step": 2191 + }, + { + "epoch": 30.447356924421143, + "grad_norm": 0.1988024264574051, + "learning_rate": 0.0006, + "loss": 3.7453784942626953, + "step": 2192 + }, + { + "epoch": 30.461336828309307, + "grad_norm": 0.194968581199646, + "learning_rate": 0.0006, + "loss": 3.764653205871582, + "step": 2193 + }, + { + "epoch": 30.475316732197467, + "grad_norm": 0.20658300817012787, + "learning_rate": 0.0006, + "loss": 3.796513080596924, + "step": 2194 + }, + { + "epoch": 30.489296636085626, + "grad_norm": 0.2123410701751709, + "learning_rate": 0.0006, + "loss": 3.7630836963653564, + "step": 2195 + }, + { + "epoch": 30.503276539973786, + "grad_norm": 0.20894059538841248, + "learning_rate": 0.0006, + "loss": 3.7265470027923584, + "step": 2196 + }, + { + "epoch": 30.51725644386195, + "grad_norm": 0.2016828954219818, + "learning_rate": 0.0006, + "loss": 3.8083386421203613, + "step": 2197 + }, + { + "epoch": 30.53123634775011, + "grad_norm": 0.19584205746650696, + "learning_rate": 0.0006, + "loss": 3.7492105960845947, + "step": 2198 + }, + { + "epoch": 30.54521625163827, + "grad_norm": 0.18635272979736328, + "learning_rate": 0.0006, + "loss": 3.711009979248047, + "step": 2199 + }, + { + "epoch": 30.55919615552643, + "grad_norm": 0.1920594871044159, + "learning_rate": 0.0006, + "loss": 3.760801315307617, + "step": 2200 + }, + { + "epoch": 30.573176059414592, + "grad_norm": 0.1978331208229065, + "learning_rate": 0.0006, + "loss": 3.780529022216797, + "step": 2201 + }, + { + "epoch": 30.587155963302752, + "grad_norm": 0.20076943933963776, + "learning_rate": 0.0006, + "loss": 3.7767038345336914, + "step": 2202 + }, + { + "epoch": 30.601135867190912, + "grad_norm": 0.2067444622516632, + "learning_rate": 0.0006, + "loss": 3.7607920169830322, + "step": 2203 + }, + { + "epoch": 30.615115771079076, + "grad_norm": 0.2081940472126007, + "learning_rate": 0.0006, + "loss": 3.741936206817627, + "step": 2204 + }, + { + "epoch": 30.629095674967235, + "grad_norm": 0.21212869882583618, + "learning_rate": 0.0006, + "loss": 3.7597827911376953, + "step": 2205 + }, + { + "epoch": 30.643075578855395, + "grad_norm": 0.21539026498794556, + "learning_rate": 0.0006, + "loss": 3.764646053314209, + "step": 2206 + }, + { + "epoch": 30.657055482743555, + "grad_norm": 0.19788387417793274, + "learning_rate": 0.0006, + "loss": 3.7535128593444824, + "step": 2207 + }, + { + "epoch": 30.67103538663172, + "grad_norm": 0.20757688581943512, + "learning_rate": 0.0006, + "loss": 3.7414169311523438, + "step": 2208 + }, + { + "epoch": 30.68501529051988, + "grad_norm": 0.199361652135849, + "learning_rate": 0.0006, + "loss": 3.7578506469726562, + "step": 2209 + }, + { + "epoch": 30.698995194408038, + "grad_norm": 0.1909894198179245, + "learning_rate": 0.0006, + "loss": 3.736250400543213, + "step": 2210 + }, + { + "epoch": 30.712975098296198, + "grad_norm": 0.19766664505004883, + "learning_rate": 0.0006, + "loss": 3.7435379028320312, + "step": 2211 + }, + { + "epoch": 30.72695500218436, + "grad_norm": 0.21857766807079315, + "learning_rate": 0.0006, + "loss": 3.7478690147399902, + "step": 2212 + }, + { + "epoch": 30.74093490607252, + "grad_norm": 0.22385898232460022, + "learning_rate": 0.0006, + "loss": 3.7522530555725098, + "step": 2213 + }, + { + "epoch": 30.75491480996068, + "grad_norm": 0.2329241931438446, + "learning_rate": 0.0006, + "loss": 3.7568247318267822, + "step": 2214 + }, + { + "epoch": 30.76889471384884, + "grad_norm": 0.2218400090932846, + "learning_rate": 0.0006, + "loss": 3.7662744522094727, + "step": 2215 + }, + { + "epoch": 30.782874617737004, + "grad_norm": 0.21350212395191193, + "learning_rate": 0.0006, + "loss": 3.7683777809143066, + "step": 2216 + }, + { + "epoch": 30.796854521625164, + "grad_norm": 0.22357074916362762, + "learning_rate": 0.0006, + "loss": 3.763437032699585, + "step": 2217 + }, + { + "epoch": 30.810834425513324, + "grad_norm": 0.22268560528755188, + "learning_rate": 0.0006, + "loss": 3.772836685180664, + "step": 2218 + }, + { + "epoch": 30.824814329401484, + "grad_norm": 0.2434026449918747, + "learning_rate": 0.0006, + "loss": 3.752986431121826, + "step": 2219 + }, + { + "epoch": 30.838794233289647, + "grad_norm": 0.2298414409160614, + "learning_rate": 0.0006, + "loss": 3.7837061882019043, + "step": 2220 + }, + { + "epoch": 30.852774137177807, + "grad_norm": 0.227672278881073, + "learning_rate": 0.0006, + "loss": 3.746065378189087, + "step": 2221 + }, + { + "epoch": 30.866754041065967, + "grad_norm": 0.2562827169895172, + "learning_rate": 0.0006, + "loss": 3.7741947174072266, + "step": 2222 + }, + { + "epoch": 30.88073394495413, + "grad_norm": 0.23657815158367157, + "learning_rate": 0.0006, + "loss": 3.746457099914551, + "step": 2223 + }, + { + "epoch": 30.89471384884229, + "grad_norm": 0.2158907800912857, + "learning_rate": 0.0006, + "loss": 3.7821710109710693, + "step": 2224 + }, + { + "epoch": 30.90869375273045, + "grad_norm": 0.22501254081726074, + "learning_rate": 0.0006, + "loss": 3.7528274059295654, + "step": 2225 + }, + { + "epoch": 30.92267365661861, + "grad_norm": 0.20252224802970886, + "learning_rate": 0.0006, + "loss": 3.749418258666992, + "step": 2226 + }, + { + "epoch": 30.936653560506773, + "grad_norm": 0.2067883312702179, + "learning_rate": 0.0006, + "loss": 3.7560606002807617, + "step": 2227 + }, + { + "epoch": 30.950633464394933, + "grad_norm": 0.23104053735733032, + "learning_rate": 0.0006, + "loss": 3.7883846759796143, + "step": 2228 + }, + { + "epoch": 30.964613368283093, + "grad_norm": 0.21476604044437408, + "learning_rate": 0.0006, + "loss": 3.7976977825164795, + "step": 2229 + }, + { + "epoch": 30.978593272171253, + "grad_norm": 0.2130427062511444, + "learning_rate": 0.0006, + "loss": 3.7429304122924805, + "step": 2230 + }, + { + "epoch": 30.992573176059416, + "grad_norm": 0.2047216147184372, + "learning_rate": 0.0006, + "loss": 3.7669787406921387, + "step": 2231 + }, + { + "epoch": 31.0, + "grad_norm": 0.22254081070423126, + "learning_rate": 0.0006, + "loss": 3.7794251441955566, + "step": 2232 + }, + { + "epoch": 31.0, + "eval_loss": 4.039162635803223, + "eval_runtime": 44.9069, + "eval_samples_per_second": 54.379, + "eval_steps_per_second": 3.407, + "step": 2232 + }, + { + "epoch": 31.01397990388816, + "grad_norm": 0.2278132289648056, + "learning_rate": 0.0006, + "loss": 3.7363929748535156, + "step": 2233 + }, + { + "epoch": 31.027959807776323, + "grad_norm": 0.2377072274684906, + "learning_rate": 0.0006, + "loss": 3.72847318649292, + "step": 2234 + }, + { + "epoch": 31.041939711664483, + "grad_norm": 0.23790542781352997, + "learning_rate": 0.0006, + "loss": 3.767193078994751, + "step": 2235 + }, + { + "epoch": 31.055919615552643, + "grad_norm": 0.2587272524833679, + "learning_rate": 0.0006, + "loss": 3.7564640045166016, + "step": 2236 + }, + { + "epoch": 31.069899519440803, + "grad_norm": 0.27550312876701355, + "learning_rate": 0.0006, + "loss": 3.727578639984131, + "step": 2237 + }, + { + "epoch": 31.083879423328966, + "grad_norm": 0.2488662451505661, + "learning_rate": 0.0006, + "loss": 3.7420730590820312, + "step": 2238 + }, + { + "epoch": 31.097859327217126, + "grad_norm": 0.22699029743671417, + "learning_rate": 0.0006, + "loss": 3.7323155403137207, + "step": 2239 + }, + { + "epoch": 31.111839231105286, + "grad_norm": 0.23360148072242737, + "learning_rate": 0.0006, + "loss": 3.719024181365967, + "step": 2240 + }, + { + "epoch": 31.125819134993446, + "grad_norm": 0.24322988092899323, + "learning_rate": 0.0006, + "loss": 3.74485445022583, + "step": 2241 + }, + { + "epoch": 31.13979903888161, + "grad_norm": 0.2474174052476883, + "learning_rate": 0.0006, + "loss": 3.746826171875, + "step": 2242 + }, + { + "epoch": 31.15377894276977, + "grad_norm": 0.2417406439781189, + "learning_rate": 0.0006, + "loss": 3.7285032272338867, + "step": 2243 + }, + { + "epoch": 31.16775884665793, + "grad_norm": 0.2390318512916565, + "learning_rate": 0.0006, + "loss": 3.7464442253112793, + "step": 2244 + }, + { + "epoch": 31.18173875054609, + "grad_norm": 0.21819323301315308, + "learning_rate": 0.0006, + "loss": 3.735110282897949, + "step": 2245 + }, + { + "epoch": 31.195718654434252, + "grad_norm": 0.21953554451465607, + "learning_rate": 0.0006, + "loss": 3.7270030975341797, + "step": 2246 + }, + { + "epoch": 31.209698558322412, + "grad_norm": 0.1930384635925293, + "learning_rate": 0.0006, + "loss": 3.7519941329956055, + "step": 2247 + }, + { + "epoch": 31.22367846221057, + "grad_norm": 0.19799190759658813, + "learning_rate": 0.0006, + "loss": 3.7428221702575684, + "step": 2248 + }, + { + "epoch": 31.23765836609873, + "grad_norm": 0.20948201417922974, + "learning_rate": 0.0006, + "loss": 3.733120918273926, + "step": 2249 + }, + { + "epoch": 31.251638269986895, + "grad_norm": 0.23768769204616547, + "learning_rate": 0.0006, + "loss": 3.7059035301208496, + "step": 2250 + }, + { + "epoch": 31.265618173875055, + "grad_norm": 0.2808842957019806, + "learning_rate": 0.0006, + "loss": 3.7245287895202637, + "step": 2251 + }, + { + "epoch": 31.279598077763215, + "grad_norm": 0.27633124589920044, + "learning_rate": 0.0006, + "loss": 3.7436366081237793, + "step": 2252 + }, + { + "epoch": 31.293577981651374, + "grad_norm": 0.24137185513973236, + "learning_rate": 0.0006, + "loss": 3.7651219367980957, + "step": 2253 + }, + { + "epoch": 31.307557885539538, + "grad_norm": 0.22056810557842255, + "learning_rate": 0.0006, + "loss": 3.7417521476745605, + "step": 2254 + }, + { + "epoch": 31.321537789427698, + "grad_norm": 0.20137323439121246, + "learning_rate": 0.0006, + "loss": 3.750187397003174, + "step": 2255 + }, + { + "epoch": 31.335517693315857, + "grad_norm": 0.2142433375120163, + "learning_rate": 0.0006, + "loss": 3.7292675971984863, + "step": 2256 + }, + { + "epoch": 31.34949759720402, + "grad_norm": 0.21193967759609222, + "learning_rate": 0.0006, + "loss": 3.7459473609924316, + "step": 2257 + }, + { + "epoch": 31.36347750109218, + "grad_norm": 0.21418534219264984, + "learning_rate": 0.0006, + "loss": 3.754359722137451, + "step": 2258 + }, + { + "epoch": 31.37745740498034, + "grad_norm": 0.23507359623908997, + "learning_rate": 0.0006, + "loss": 3.763413906097412, + "step": 2259 + }, + { + "epoch": 31.3914373088685, + "grad_norm": 0.20393887162208557, + "learning_rate": 0.0006, + "loss": 3.73878812789917, + "step": 2260 + }, + { + "epoch": 31.405417212756664, + "grad_norm": 0.21752159297466278, + "learning_rate": 0.0006, + "loss": 3.750549793243408, + "step": 2261 + }, + { + "epoch": 31.419397116644824, + "grad_norm": 0.22629529237747192, + "learning_rate": 0.0006, + "loss": 3.7791430950164795, + "step": 2262 + }, + { + "epoch": 31.433377020532983, + "grad_norm": 0.2114613950252533, + "learning_rate": 0.0006, + "loss": 3.7709264755249023, + "step": 2263 + }, + { + "epoch": 31.447356924421143, + "grad_norm": 0.23241667449474335, + "learning_rate": 0.0006, + "loss": 3.745750665664673, + "step": 2264 + }, + { + "epoch": 31.461336828309307, + "grad_norm": 0.2434246987104416, + "learning_rate": 0.0006, + "loss": 3.769727945327759, + "step": 2265 + }, + { + "epoch": 31.475316732197467, + "grad_norm": 0.247820645570755, + "learning_rate": 0.0006, + "loss": 3.7528204917907715, + "step": 2266 + }, + { + "epoch": 31.489296636085626, + "grad_norm": 0.21287164092063904, + "learning_rate": 0.0006, + "loss": 3.728661060333252, + "step": 2267 + }, + { + "epoch": 31.503276539973786, + "grad_norm": 0.20983846485614777, + "learning_rate": 0.0006, + "loss": 3.7524428367614746, + "step": 2268 + }, + { + "epoch": 31.51725644386195, + "grad_norm": 0.23799288272857666, + "learning_rate": 0.0006, + "loss": 3.7276647090911865, + "step": 2269 + }, + { + "epoch": 31.53123634775011, + "grad_norm": 0.247065007686615, + "learning_rate": 0.0006, + "loss": 3.7506704330444336, + "step": 2270 + }, + { + "epoch": 31.54521625163827, + "grad_norm": 0.20670939981937408, + "learning_rate": 0.0006, + "loss": 3.71852445602417, + "step": 2271 + }, + { + "epoch": 31.55919615552643, + "grad_norm": 0.19463716447353363, + "learning_rate": 0.0006, + "loss": 3.732757568359375, + "step": 2272 + }, + { + "epoch": 31.573176059414592, + "grad_norm": 0.20368841290473938, + "learning_rate": 0.0006, + "loss": 3.746676445007324, + "step": 2273 + }, + { + "epoch": 31.587155963302752, + "grad_norm": 0.19691342115402222, + "learning_rate": 0.0006, + "loss": 3.7535760402679443, + "step": 2274 + }, + { + "epoch": 31.601135867190912, + "grad_norm": 0.2026553899049759, + "learning_rate": 0.0006, + "loss": 3.7406957149505615, + "step": 2275 + }, + { + "epoch": 31.615115771079076, + "grad_norm": 0.21494299173355103, + "learning_rate": 0.0006, + "loss": 3.735888957977295, + "step": 2276 + }, + { + "epoch": 31.629095674967235, + "grad_norm": 0.21644766628742218, + "learning_rate": 0.0006, + "loss": 3.723767042160034, + "step": 2277 + }, + { + "epoch": 31.643075578855395, + "grad_norm": 0.20087581872940063, + "learning_rate": 0.0006, + "loss": 3.7622008323669434, + "step": 2278 + }, + { + "epoch": 31.657055482743555, + "grad_norm": 0.1949695646762848, + "learning_rate": 0.0006, + "loss": 3.7726354598999023, + "step": 2279 + }, + { + "epoch": 31.67103538663172, + "grad_norm": 0.19120797514915466, + "learning_rate": 0.0006, + "loss": 3.7454679012298584, + "step": 2280 + }, + { + "epoch": 31.68501529051988, + "grad_norm": 0.19480115175247192, + "learning_rate": 0.0006, + "loss": 3.743934392929077, + "step": 2281 + }, + { + "epoch": 31.698995194408038, + "grad_norm": 0.1891610324382782, + "learning_rate": 0.0006, + "loss": 3.7724897861480713, + "step": 2282 + }, + { + "epoch": 31.712975098296198, + "grad_norm": 0.18533185124397278, + "learning_rate": 0.0006, + "loss": 3.7556838989257812, + "step": 2283 + }, + { + "epoch": 31.72695500218436, + "grad_norm": 0.20079447329044342, + "learning_rate": 0.0006, + "loss": 3.76758074760437, + "step": 2284 + }, + { + "epoch": 31.74093490607252, + "grad_norm": 0.2103433609008789, + "learning_rate": 0.0006, + "loss": 3.769477367401123, + "step": 2285 + }, + { + "epoch": 31.75491480996068, + "grad_norm": 0.21428923308849335, + "learning_rate": 0.0006, + "loss": 3.7317447662353516, + "step": 2286 + }, + { + "epoch": 31.76889471384884, + "grad_norm": 0.20154133439064026, + "learning_rate": 0.0006, + "loss": 3.749814987182617, + "step": 2287 + }, + { + "epoch": 31.782874617737004, + "grad_norm": 0.18998542428016663, + "learning_rate": 0.0006, + "loss": 3.7655510902404785, + "step": 2288 + }, + { + "epoch": 31.796854521625164, + "grad_norm": 0.2068665474653244, + "learning_rate": 0.0006, + "loss": 3.7375988960266113, + "step": 2289 + }, + { + "epoch": 31.810834425513324, + "grad_norm": 0.22979815304279327, + "learning_rate": 0.0006, + "loss": 3.728095531463623, + "step": 2290 + }, + { + "epoch": 31.824814329401484, + "grad_norm": 0.2378212958574295, + "learning_rate": 0.0006, + "loss": 3.73091459274292, + "step": 2291 + }, + { + "epoch": 31.838794233289647, + "grad_norm": 0.2353672832250595, + "learning_rate": 0.0006, + "loss": 3.7491769790649414, + "step": 2292 + }, + { + "epoch": 31.852774137177807, + "grad_norm": 0.22341586649417877, + "learning_rate": 0.0006, + "loss": 3.777111530303955, + "step": 2293 + }, + { + "epoch": 31.866754041065967, + "grad_norm": 0.20436930656433105, + "learning_rate": 0.0006, + "loss": 3.740997552871704, + "step": 2294 + }, + { + "epoch": 31.88073394495413, + "grad_norm": 0.20836040377616882, + "learning_rate": 0.0006, + "loss": 3.755582571029663, + "step": 2295 + }, + { + "epoch": 31.89471384884229, + "grad_norm": 0.2045193612575531, + "learning_rate": 0.0006, + "loss": 3.7583560943603516, + "step": 2296 + }, + { + "epoch": 31.90869375273045, + "grad_norm": 0.2025591880083084, + "learning_rate": 0.0006, + "loss": 3.773345470428467, + "step": 2297 + }, + { + "epoch": 31.92267365661861, + "grad_norm": 0.20309099555015564, + "learning_rate": 0.0006, + "loss": 3.7392163276672363, + "step": 2298 + }, + { + "epoch": 31.936653560506773, + "grad_norm": 0.2129351645708084, + "learning_rate": 0.0006, + "loss": 3.7801311016082764, + "step": 2299 + }, + { + "epoch": 31.950633464394933, + "grad_norm": 0.19950738549232483, + "learning_rate": 0.0006, + "loss": 3.779261589050293, + "step": 2300 + }, + { + "epoch": 31.964613368283093, + "grad_norm": 0.22837352752685547, + "learning_rate": 0.0006, + "loss": 3.782731294631958, + "step": 2301 + }, + { + "epoch": 31.978593272171253, + "grad_norm": 0.2576889097690582, + "learning_rate": 0.0006, + "loss": 3.7778096199035645, + "step": 2302 + }, + { + "epoch": 31.992573176059416, + "grad_norm": 0.2770138382911682, + "learning_rate": 0.0006, + "loss": 3.735755443572998, + "step": 2303 + }, + { + "epoch": 32.0, + "grad_norm": 0.2632865309715271, + "learning_rate": 0.0006, + "loss": 3.7562808990478516, + "step": 2304 + }, + { + "epoch": 32.0, + "eval_loss": 4.031628608703613, + "eval_runtime": 44.2115, + "eval_samples_per_second": 55.234, + "eval_steps_per_second": 3.461, + "step": 2304 + }, + { + "epoch": 32.01397990388816, + "grad_norm": 0.20234128832817078, + "learning_rate": 0.0006, + "loss": 3.734489917755127, + "step": 2305 + }, + { + "epoch": 32.02795980777632, + "grad_norm": 0.24983637034893036, + "learning_rate": 0.0006, + "loss": 3.7351019382476807, + "step": 2306 + }, + { + "epoch": 32.04193971166448, + "grad_norm": 0.27358478307724, + "learning_rate": 0.0006, + "loss": 3.708712100982666, + "step": 2307 + }, + { + "epoch": 32.05591961555265, + "grad_norm": 0.24693739414215088, + "learning_rate": 0.0006, + "loss": 3.731858491897583, + "step": 2308 + }, + { + "epoch": 32.0698995194408, + "grad_norm": 0.22751131653785706, + "learning_rate": 0.0006, + "loss": 3.7074670791625977, + "step": 2309 + }, + { + "epoch": 32.083879423328966, + "grad_norm": 0.23400720953941345, + "learning_rate": 0.0006, + "loss": 3.714092493057251, + "step": 2310 + }, + { + "epoch": 32.09785932721712, + "grad_norm": 0.20711684226989746, + "learning_rate": 0.0006, + "loss": 3.754727840423584, + "step": 2311 + }, + { + "epoch": 32.111839231105286, + "grad_norm": 0.21589399874210358, + "learning_rate": 0.0006, + "loss": 3.6953847408294678, + "step": 2312 + }, + { + "epoch": 32.12581913499345, + "grad_norm": 0.24575738608837128, + "learning_rate": 0.0006, + "loss": 3.7078802585601807, + "step": 2313 + }, + { + "epoch": 32.139799038881605, + "grad_norm": 0.23152033984661102, + "learning_rate": 0.0006, + "loss": 3.7402305603027344, + "step": 2314 + }, + { + "epoch": 32.15377894276977, + "grad_norm": 0.22639606893062592, + "learning_rate": 0.0006, + "loss": 3.7264223098754883, + "step": 2315 + }, + { + "epoch": 32.16775884665793, + "grad_norm": 0.24701760709285736, + "learning_rate": 0.0006, + "loss": 3.7497639656066895, + "step": 2316 + }, + { + "epoch": 32.18173875054609, + "grad_norm": 0.274832159280777, + "learning_rate": 0.0006, + "loss": 3.7557122707366943, + "step": 2317 + }, + { + "epoch": 32.19571865443425, + "grad_norm": 0.27472418546676636, + "learning_rate": 0.0006, + "loss": 3.6863393783569336, + "step": 2318 + }, + { + "epoch": 32.20969855832241, + "grad_norm": 0.2625530958175659, + "learning_rate": 0.0006, + "loss": 3.7203545570373535, + "step": 2319 + }, + { + "epoch": 32.22367846221057, + "grad_norm": 0.2576068341732025, + "learning_rate": 0.0006, + "loss": 3.734747886657715, + "step": 2320 + }, + { + "epoch": 32.237658366098735, + "grad_norm": 0.25946059823036194, + "learning_rate": 0.0006, + "loss": 3.7501730918884277, + "step": 2321 + }, + { + "epoch": 32.25163826998689, + "grad_norm": 0.2524135410785675, + "learning_rate": 0.0006, + "loss": 3.75177001953125, + "step": 2322 + }, + { + "epoch": 32.265618173875055, + "grad_norm": 0.2568551003932953, + "learning_rate": 0.0006, + "loss": 3.752450704574585, + "step": 2323 + }, + { + "epoch": 32.27959807776322, + "grad_norm": 0.2489749640226364, + "learning_rate": 0.0006, + "loss": 3.711735486984253, + "step": 2324 + }, + { + "epoch": 32.293577981651374, + "grad_norm": 0.2425498366355896, + "learning_rate": 0.0006, + "loss": 3.7004239559173584, + "step": 2325 + }, + { + "epoch": 32.30755788553954, + "grad_norm": 0.24359773099422455, + "learning_rate": 0.0006, + "loss": 3.733870029449463, + "step": 2326 + }, + { + "epoch": 32.3215377894277, + "grad_norm": 0.22314727306365967, + "learning_rate": 0.0006, + "loss": 3.699841022491455, + "step": 2327 + }, + { + "epoch": 32.33551769331586, + "grad_norm": 0.2047620266675949, + "learning_rate": 0.0006, + "loss": 3.732534170150757, + "step": 2328 + }, + { + "epoch": 32.34949759720402, + "grad_norm": 0.24393224716186523, + "learning_rate": 0.0006, + "loss": 3.7200770378112793, + "step": 2329 + }, + { + "epoch": 32.36347750109218, + "grad_norm": 0.23884256184101105, + "learning_rate": 0.0006, + "loss": 3.722318410873413, + "step": 2330 + }, + { + "epoch": 32.37745740498034, + "grad_norm": 0.23262189328670502, + "learning_rate": 0.0006, + "loss": 3.759033203125, + "step": 2331 + }, + { + "epoch": 32.391437308868504, + "grad_norm": 0.22542893886566162, + "learning_rate": 0.0006, + "loss": 3.729198694229126, + "step": 2332 + }, + { + "epoch": 32.40541721275666, + "grad_norm": 0.22479060292243958, + "learning_rate": 0.0006, + "loss": 3.7298169136047363, + "step": 2333 + }, + { + "epoch": 32.419397116644824, + "grad_norm": 0.21571804583072662, + "learning_rate": 0.0006, + "loss": 3.699937343597412, + "step": 2334 + }, + { + "epoch": 32.43337702053299, + "grad_norm": 0.20804545283317566, + "learning_rate": 0.0006, + "loss": 3.7495696544647217, + "step": 2335 + }, + { + "epoch": 32.44735692442114, + "grad_norm": 0.22751706838607788, + "learning_rate": 0.0006, + "loss": 3.7369821071624756, + "step": 2336 + }, + { + "epoch": 32.46133682830931, + "grad_norm": 0.2326795756816864, + "learning_rate": 0.0006, + "loss": 3.7636334896087646, + "step": 2337 + }, + { + "epoch": 32.47531673219746, + "grad_norm": 0.19971159100532532, + "learning_rate": 0.0006, + "loss": 3.72151517868042, + "step": 2338 + }, + { + "epoch": 32.489296636085626, + "grad_norm": 0.21078036725521088, + "learning_rate": 0.0006, + "loss": 3.7050065994262695, + "step": 2339 + }, + { + "epoch": 32.50327653997379, + "grad_norm": 0.22198088467121124, + "learning_rate": 0.0006, + "loss": 3.7654409408569336, + "step": 2340 + }, + { + "epoch": 32.517256443861946, + "grad_norm": 0.20995207130908966, + "learning_rate": 0.0006, + "loss": 3.7516250610351562, + "step": 2341 + }, + { + "epoch": 32.53123634775011, + "grad_norm": 0.20757141709327698, + "learning_rate": 0.0006, + "loss": 3.7412633895874023, + "step": 2342 + }, + { + "epoch": 32.54521625163827, + "grad_norm": 0.20053881406784058, + "learning_rate": 0.0006, + "loss": 3.7477493286132812, + "step": 2343 + }, + { + "epoch": 32.55919615552643, + "grad_norm": 0.20223091542720795, + "learning_rate": 0.0006, + "loss": 3.7149064540863037, + "step": 2344 + }, + { + "epoch": 32.57317605941459, + "grad_norm": 0.20179468393325806, + "learning_rate": 0.0006, + "loss": 3.70635724067688, + "step": 2345 + }, + { + "epoch": 32.58715596330275, + "grad_norm": 0.19670480489730835, + "learning_rate": 0.0006, + "loss": 3.7276744842529297, + "step": 2346 + }, + { + "epoch": 32.60113586719091, + "grad_norm": 0.1992012858390808, + "learning_rate": 0.0006, + "loss": 3.7659356594085693, + "step": 2347 + }, + { + "epoch": 32.615115771079076, + "grad_norm": 0.20124201476573944, + "learning_rate": 0.0006, + "loss": 3.722212791442871, + "step": 2348 + }, + { + "epoch": 32.62909567496723, + "grad_norm": 0.21972708404064178, + "learning_rate": 0.0006, + "loss": 3.751830577850342, + "step": 2349 + }, + { + "epoch": 32.643075578855395, + "grad_norm": 0.20454947650432587, + "learning_rate": 0.0006, + "loss": 3.7196669578552246, + "step": 2350 + }, + { + "epoch": 32.65705548274356, + "grad_norm": 0.1783330887556076, + "learning_rate": 0.0006, + "loss": 3.721461772918701, + "step": 2351 + }, + { + "epoch": 32.671035386631715, + "grad_norm": 0.2027900367975235, + "learning_rate": 0.0006, + "loss": 3.753718614578247, + "step": 2352 + }, + { + "epoch": 32.68501529051988, + "grad_norm": 0.21232381463050842, + "learning_rate": 0.0006, + "loss": 3.732736349105835, + "step": 2353 + }, + { + "epoch": 32.69899519440804, + "grad_norm": 0.2214568555355072, + "learning_rate": 0.0006, + "loss": 3.7250165939331055, + "step": 2354 + }, + { + "epoch": 32.7129750982962, + "grad_norm": 0.2626485228538513, + "learning_rate": 0.0006, + "loss": 3.72263503074646, + "step": 2355 + }, + { + "epoch": 32.72695500218436, + "grad_norm": 0.30096277594566345, + "learning_rate": 0.0006, + "loss": 3.7599854469299316, + "step": 2356 + }, + { + "epoch": 32.74093490607252, + "grad_norm": 0.3374342620372772, + "learning_rate": 0.0006, + "loss": 3.7493844032287598, + "step": 2357 + }, + { + "epoch": 32.75491480996068, + "grad_norm": 0.3051377534866333, + "learning_rate": 0.0006, + "loss": 3.7515692710876465, + "step": 2358 + }, + { + "epoch": 32.768894713848844, + "grad_norm": 0.2130587249994278, + "learning_rate": 0.0006, + "loss": 3.751307964324951, + "step": 2359 + }, + { + "epoch": 32.782874617737, + "grad_norm": 0.25198230147361755, + "learning_rate": 0.0006, + "loss": 3.7500064373016357, + "step": 2360 + }, + { + "epoch": 32.796854521625164, + "grad_norm": 0.27613863348960876, + "learning_rate": 0.0006, + "loss": 3.7257039546966553, + "step": 2361 + }, + { + "epoch": 32.81083442551333, + "grad_norm": 0.23749367892742157, + "learning_rate": 0.0006, + "loss": 3.778343439102173, + "step": 2362 + }, + { + "epoch": 32.824814329401484, + "grad_norm": 0.2063702642917633, + "learning_rate": 0.0006, + "loss": 3.7493772506713867, + "step": 2363 + }, + { + "epoch": 32.83879423328965, + "grad_norm": 0.21169374883174896, + "learning_rate": 0.0006, + "loss": 3.722567081451416, + "step": 2364 + }, + { + "epoch": 32.8527741371778, + "grad_norm": 0.23291490972042084, + "learning_rate": 0.0006, + "loss": 3.7555532455444336, + "step": 2365 + }, + { + "epoch": 32.86675404106597, + "grad_norm": 0.21486155688762665, + "learning_rate": 0.0006, + "loss": 3.7401528358459473, + "step": 2366 + }, + { + "epoch": 32.88073394495413, + "grad_norm": 0.2296247035264969, + "learning_rate": 0.0006, + "loss": 3.7867965698242188, + "step": 2367 + }, + { + "epoch": 32.89471384884229, + "grad_norm": 0.2335108071565628, + "learning_rate": 0.0006, + "loss": 3.768036365509033, + "step": 2368 + }, + { + "epoch": 32.90869375273045, + "grad_norm": 0.23921863734722137, + "learning_rate": 0.0006, + "loss": 3.725252151489258, + "step": 2369 + }, + { + "epoch": 32.92267365661861, + "grad_norm": 0.20303526520729065, + "learning_rate": 0.0006, + "loss": 3.7806248664855957, + "step": 2370 + }, + { + "epoch": 32.93665356050677, + "grad_norm": 0.19293150305747986, + "learning_rate": 0.0006, + "loss": 3.759281873703003, + "step": 2371 + }, + { + "epoch": 32.95063346439493, + "grad_norm": 0.20609107613563538, + "learning_rate": 0.0006, + "loss": 3.764190196990967, + "step": 2372 + }, + { + "epoch": 32.964613368283096, + "grad_norm": 0.2014189213514328, + "learning_rate": 0.0006, + "loss": 3.7365214824676514, + "step": 2373 + }, + { + "epoch": 32.97859327217125, + "grad_norm": 0.22045451402664185, + "learning_rate": 0.0006, + "loss": 3.7435812950134277, + "step": 2374 + }, + { + "epoch": 32.992573176059416, + "grad_norm": 0.24228639900684357, + "learning_rate": 0.0006, + "loss": 3.751309394836426, + "step": 2375 + }, + { + "epoch": 33.0, + "grad_norm": 0.2645106613636017, + "learning_rate": 0.0006, + "loss": 3.7629928588867188, + "step": 2376 + }, + { + "epoch": 33.0, + "eval_loss": 4.026789665222168, + "eval_runtime": 44.9957, + "eval_samples_per_second": 54.272, + "eval_steps_per_second": 3.4, + "step": 2376 + }, + { + "epoch": 33.01397990388816, + "grad_norm": 0.21402551233768463, + "learning_rate": 0.0006, + "loss": 3.72019100189209, + "step": 2377 + }, + { + "epoch": 33.02795980777632, + "grad_norm": 0.23886585235595703, + "learning_rate": 0.0006, + "loss": 3.687084674835205, + "step": 2378 + }, + { + "epoch": 33.04193971166448, + "grad_norm": 0.29936572909355164, + "learning_rate": 0.0006, + "loss": 3.697310447692871, + "step": 2379 + }, + { + "epoch": 33.05591961555265, + "grad_norm": 0.30007585883140564, + "learning_rate": 0.0006, + "loss": 3.6913352012634277, + "step": 2380 + }, + { + "epoch": 33.0698995194408, + "grad_norm": 0.26594656705856323, + "learning_rate": 0.0006, + "loss": 3.740802526473999, + "step": 2381 + }, + { + "epoch": 33.083879423328966, + "grad_norm": 0.2658730447292328, + "learning_rate": 0.0006, + "loss": 3.692746162414551, + "step": 2382 + }, + { + "epoch": 33.09785932721712, + "grad_norm": 0.26755523681640625, + "learning_rate": 0.0006, + "loss": 3.7534420490264893, + "step": 2383 + }, + { + "epoch": 33.111839231105286, + "grad_norm": 0.23070940375328064, + "learning_rate": 0.0006, + "loss": 3.717876672744751, + "step": 2384 + }, + { + "epoch": 33.12581913499345, + "grad_norm": 0.2476235181093216, + "learning_rate": 0.0006, + "loss": 3.7072248458862305, + "step": 2385 + }, + { + "epoch": 33.139799038881605, + "grad_norm": 0.2454477846622467, + "learning_rate": 0.0006, + "loss": 3.729762077331543, + "step": 2386 + }, + { + "epoch": 33.15377894276977, + "grad_norm": 0.24090935289859772, + "learning_rate": 0.0006, + "loss": 3.721374988555908, + "step": 2387 + }, + { + "epoch": 33.16775884665793, + "grad_norm": 0.2440263032913208, + "learning_rate": 0.0006, + "loss": 3.730433464050293, + "step": 2388 + }, + { + "epoch": 33.18173875054609, + "grad_norm": 0.21699118614196777, + "learning_rate": 0.0006, + "loss": 3.724730968475342, + "step": 2389 + }, + { + "epoch": 33.19571865443425, + "grad_norm": 0.2302001267671585, + "learning_rate": 0.0006, + "loss": 3.69376277923584, + "step": 2390 + }, + { + "epoch": 33.20969855832241, + "grad_norm": 0.24707409739494324, + "learning_rate": 0.0006, + "loss": 3.705653667449951, + "step": 2391 + }, + { + "epoch": 33.22367846221057, + "grad_norm": 0.22896641492843628, + "learning_rate": 0.0006, + "loss": 3.747000217437744, + "step": 2392 + }, + { + "epoch": 33.237658366098735, + "grad_norm": 0.2278730720281601, + "learning_rate": 0.0006, + "loss": 3.733464241027832, + "step": 2393 + }, + { + "epoch": 33.25163826998689, + "grad_norm": 0.23909862339496613, + "learning_rate": 0.0006, + "loss": 3.733661413192749, + "step": 2394 + }, + { + "epoch": 33.265618173875055, + "grad_norm": 0.2349950075149536, + "learning_rate": 0.0006, + "loss": 3.7337965965270996, + "step": 2395 + }, + { + "epoch": 33.27959807776322, + "grad_norm": 0.22655968368053436, + "learning_rate": 0.0006, + "loss": 3.70503306388855, + "step": 2396 + }, + { + "epoch": 33.293577981651374, + "grad_norm": 0.22167043387889862, + "learning_rate": 0.0006, + "loss": 3.738797903060913, + "step": 2397 + }, + { + "epoch": 33.30755788553954, + "grad_norm": 0.2278883010149002, + "learning_rate": 0.0006, + "loss": 3.712550640106201, + "step": 2398 + }, + { + "epoch": 33.3215377894277, + "grad_norm": 0.2220565229654312, + "learning_rate": 0.0006, + "loss": 3.7278006076812744, + "step": 2399 + }, + { + "epoch": 33.33551769331586, + "grad_norm": 0.21888740360736847, + "learning_rate": 0.0006, + "loss": 3.72243595123291, + "step": 2400 + }, + { + "epoch": 33.34949759720402, + "grad_norm": 0.21587581932544708, + "learning_rate": 0.0006, + "loss": 3.7177581787109375, + "step": 2401 + }, + { + "epoch": 33.36347750109218, + "grad_norm": 0.1923578530550003, + "learning_rate": 0.0006, + "loss": 3.711294651031494, + "step": 2402 + }, + { + "epoch": 33.37745740498034, + "grad_norm": 0.1994934380054474, + "learning_rate": 0.0006, + "loss": 3.762061595916748, + "step": 2403 + }, + { + "epoch": 33.391437308868504, + "grad_norm": 0.20074427127838135, + "learning_rate": 0.0006, + "loss": 3.708559036254883, + "step": 2404 + }, + { + "epoch": 33.40541721275666, + "grad_norm": 0.21349482238292694, + "learning_rate": 0.0006, + "loss": 3.7089147567749023, + "step": 2405 + }, + { + "epoch": 33.419397116644824, + "grad_norm": 0.25523608922958374, + "learning_rate": 0.0006, + "loss": 3.7241058349609375, + "step": 2406 + }, + { + "epoch": 33.43337702053299, + "grad_norm": 0.27654796838760376, + "learning_rate": 0.0006, + "loss": 3.723618984222412, + "step": 2407 + }, + { + "epoch": 33.44735692442114, + "grad_norm": 0.2651479244232178, + "learning_rate": 0.0006, + "loss": 3.7367782592773438, + "step": 2408 + }, + { + "epoch": 33.46133682830931, + "grad_norm": 0.23403556644916534, + "learning_rate": 0.0006, + "loss": 3.7198312282562256, + "step": 2409 + }, + { + "epoch": 33.47531673219746, + "grad_norm": 0.20970726013183594, + "learning_rate": 0.0006, + "loss": 3.7088186740875244, + "step": 2410 + }, + { + "epoch": 33.489296636085626, + "grad_norm": 0.18532544374465942, + "learning_rate": 0.0006, + "loss": 3.7162208557128906, + "step": 2411 + }, + { + "epoch": 33.50327653997379, + "grad_norm": 0.19590279459953308, + "learning_rate": 0.0006, + "loss": 3.766357898712158, + "step": 2412 + }, + { + "epoch": 33.517256443861946, + "grad_norm": 0.203349307179451, + "learning_rate": 0.0006, + "loss": 3.732177257537842, + "step": 2413 + }, + { + "epoch": 33.53123634775011, + "grad_norm": 0.2015952616930008, + "learning_rate": 0.0006, + "loss": 3.741609573364258, + "step": 2414 + }, + { + "epoch": 33.54521625163827, + "grad_norm": 0.20024161040782928, + "learning_rate": 0.0006, + "loss": 3.6894431114196777, + "step": 2415 + }, + { + "epoch": 33.55919615552643, + "grad_norm": 0.20932617783546448, + "learning_rate": 0.0006, + "loss": 3.721979856491089, + "step": 2416 + }, + { + "epoch": 33.57317605941459, + "grad_norm": 0.22069773077964783, + "learning_rate": 0.0006, + "loss": 3.712203025817871, + "step": 2417 + }, + { + "epoch": 33.58715596330275, + "grad_norm": 0.22341343760490417, + "learning_rate": 0.0006, + "loss": 3.7469263076782227, + "step": 2418 + }, + { + "epoch": 33.60113586719091, + "grad_norm": 0.21758507192134857, + "learning_rate": 0.0006, + "loss": 3.721778392791748, + "step": 2419 + }, + { + "epoch": 33.615115771079076, + "grad_norm": 0.20480088889598846, + "learning_rate": 0.0006, + "loss": 3.743570327758789, + "step": 2420 + }, + { + "epoch": 33.62909567496723, + "grad_norm": 0.23068399727344513, + "learning_rate": 0.0006, + "loss": 3.7203001976013184, + "step": 2421 + }, + { + "epoch": 33.643075578855395, + "grad_norm": 0.2526263892650604, + "learning_rate": 0.0006, + "loss": 3.7336440086364746, + "step": 2422 + }, + { + "epoch": 33.65705548274356, + "grad_norm": 0.218627467751503, + "learning_rate": 0.0006, + "loss": 3.730762243270874, + "step": 2423 + }, + { + "epoch": 33.671035386631715, + "grad_norm": 0.21883417665958405, + "learning_rate": 0.0006, + "loss": 3.749356508255005, + "step": 2424 + }, + { + "epoch": 33.68501529051988, + "grad_norm": 0.22885626554489136, + "learning_rate": 0.0006, + "loss": 3.7426199913024902, + "step": 2425 + }, + { + "epoch": 33.69899519440804, + "grad_norm": 0.23709580302238464, + "learning_rate": 0.0006, + "loss": 3.691652774810791, + "step": 2426 + }, + { + "epoch": 33.7129750982962, + "grad_norm": 0.2258225381374359, + "learning_rate": 0.0006, + "loss": 3.7368886470794678, + "step": 2427 + }, + { + "epoch": 33.72695500218436, + "grad_norm": 0.1993306577205658, + "learning_rate": 0.0006, + "loss": 3.722733497619629, + "step": 2428 + }, + { + "epoch": 33.74093490607252, + "grad_norm": 0.20307473838329315, + "learning_rate": 0.0006, + "loss": 3.7507500648498535, + "step": 2429 + }, + { + "epoch": 33.75491480996068, + "grad_norm": 0.20076696574687958, + "learning_rate": 0.0006, + "loss": 3.6896910667419434, + "step": 2430 + }, + { + "epoch": 33.768894713848844, + "grad_norm": 0.21118830144405365, + "learning_rate": 0.0006, + "loss": 3.7176647186279297, + "step": 2431 + }, + { + "epoch": 33.782874617737, + "grad_norm": 0.21605782210826874, + "learning_rate": 0.0006, + "loss": 3.7423641681671143, + "step": 2432 + }, + { + "epoch": 33.796854521625164, + "grad_norm": 0.22233152389526367, + "learning_rate": 0.0006, + "loss": 3.7296109199523926, + "step": 2433 + }, + { + "epoch": 33.81083442551333, + "grad_norm": 0.2253616899251938, + "learning_rate": 0.0006, + "loss": 3.7095072269439697, + "step": 2434 + }, + { + "epoch": 33.824814329401484, + "grad_norm": 0.2105807662010193, + "learning_rate": 0.0006, + "loss": 3.760921001434326, + "step": 2435 + }, + { + "epoch": 33.83879423328965, + "grad_norm": 0.20413213968276978, + "learning_rate": 0.0006, + "loss": 3.7356553077697754, + "step": 2436 + }, + { + "epoch": 33.8527741371778, + "grad_norm": 0.19781213998794556, + "learning_rate": 0.0006, + "loss": 3.726787567138672, + "step": 2437 + }, + { + "epoch": 33.86675404106597, + "grad_norm": 0.199616938829422, + "learning_rate": 0.0006, + "loss": 3.7200419902801514, + "step": 2438 + }, + { + "epoch": 33.88073394495413, + "grad_norm": 0.19702564179897308, + "learning_rate": 0.0006, + "loss": 3.714287281036377, + "step": 2439 + }, + { + "epoch": 33.89471384884229, + "grad_norm": 0.19456833600997925, + "learning_rate": 0.0006, + "loss": 3.739231586456299, + "step": 2440 + }, + { + "epoch": 33.90869375273045, + "grad_norm": 0.1890697181224823, + "learning_rate": 0.0006, + "loss": 3.7088429927825928, + "step": 2441 + }, + { + "epoch": 33.92267365661861, + "grad_norm": 0.1845911741256714, + "learning_rate": 0.0006, + "loss": 3.760782241821289, + "step": 2442 + }, + { + "epoch": 33.93665356050677, + "grad_norm": 0.19045902788639069, + "learning_rate": 0.0006, + "loss": 3.736957311630249, + "step": 2443 + }, + { + "epoch": 33.95063346439493, + "grad_norm": 0.1934187412261963, + "learning_rate": 0.0006, + "loss": 3.756351947784424, + "step": 2444 + }, + { + "epoch": 33.964613368283096, + "grad_norm": 0.19774580001831055, + "learning_rate": 0.0006, + "loss": 3.7332229614257812, + "step": 2445 + }, + { + "epoch": 33.97859327217125, + "grad_norm": 0.20653048157691956, + "learning_rate": 0.0006, + "loss": 3.7112321853637695, + "step": 2446 + }, + { + "epoch": 33.992573176059416, + "grad_norm": 0.18618541955947876, + "learning_rate": 0.0006, + "loss": 3.735710620880127, + "step": 2447 + }, + { + "epoch": 34.0, + "grad_norm": 0.22846414148807526, + "learning_rate": 0.0006, + "loss": 3.739706039428711, + "step": 2448 + }, + { + "epoch": 34.0, + "eval_loss": 4.0099663734436035, + "eval_runtime": 45.2096, + "eval_samples_per_second": 54.015, + "eval_steps_per_second": 3.384, + "step": 2448 + }, + { + "epoch": 34.01397990388816, + "grad_norm": 0.20987462997436523, + "learning_rate": 0.0006, + "loss": 3.6798832416534424, + "step": 2449 + }, + { + "epoch": 34.02795980777632, + "grad_norm": 0.2230423390865326, + "learning_rate": 0.0006, + "loss": 3.7157368659973145, + "step": 2450 + }, + { + "epoch": 34.04193971166448, + "grad_norm": 0.24115242063999176, + "learning_rate": 0.0006, + "loss": 3.696037769317627, + "step": 2451 + }, + { + "epoch": 34.05591961555265, + "grad_norm": 0.24499665200710297, + "learning_rate": 0.0006, + "loss": 3.695420742034912, + "step": 2452 + }, + { + "epoch": 34.0698995194408, + "grad_norm": 0.23336757719516754, + "learning_rate": 0.0006, + "loss": 3.7252023220062256, + "step": 2453 + }, + { + "epoch": 34.083879423328966, + "grad_norm": 0.23716159164905548, + "learning_rate": 0.0006, + "loss": 3.714542865753174, + "step": 2454 + }, + { + "epoch": 34.09785932721712, + "grad_norm": 0.2305644154548645, + "learning_rate": 0.0006, + "loss": 3.6989386081695557, + "step": 2455 + }, + { + "epoch": 34.111839231105286, + "grad_norm": 0.2281671017408371, + "learning_rate": 0.0006, + "loss": 3.6952829360961914, + "step": 2456 + }, + { + "epoch": 34.12581913499345, + "grad_norm": 0.21031132340431213, + "learning_rate": 0.0006, + "loss": 3.7337589263916016, + "step": 2457 + }, + { + "epoch": 34.139799038881605, + "grad_norm": 0.2233671098947525, + "learning_rate": 0.0006, + "loss": 3.6923675537109375, + "step": 2458 + }, + { + "epoch": 34.15377894276977, + "grad_norm": 0.22766625881195068, + "learning_rate": 0.0006, + "loss": 3.70849609375, + "step": 2459 + }, + { + "epoch": 34.16775884665793, + "grad_norm": 0.22433766722679138, + "learning_rate": 0.0006, + "loss": 3.718319892883301, + "step": 2460 + }, + { + "epoch": 34.18173875054609, + "grad_norm": 0.20621491968631744, + "learning_rate": 0.0006, + "loss": 3.6874704360961914, + "step": 2461 + }, + { + "epoch": 34.19571865443425, + "grad_norm": 0.21353304386138916, + "learning_rate": 0.0006, + "loss": 3.663358688354492, + "step": 2462 + }, + { + "epoch": 34.20969855832241, + "grad_norm": 0.20652951300144196, + "learning_rate": 0.0006, + "loss": 3.718107223510742, + "step": 2463 + }, + { + "epoch": 34.22367846221057, + "grad_norm": 0.19780176877975464, + "learning_rate": 0.0006, + "loss": 3.7255396842956543, + "step": 2464 + }, + { + "epoch": 34.237658366098735, + "grad_norm": 0.20636138319969177, + "learning_rate": 0.0006, + "loss": 3.696850538253784, + "step": 2465 + }, + { + "epoch": 34.25163826998689, + "grad_norm": 0.23691460490226746, + "learning_rate": 0.0006, + "loss": 3.687997341156006, + "step": 2466 + }, + { + "epoch": 34.265618173875055, + "grad_norm": 0.2380511611700058, + "learning_rate": 0.0006, + "loss": 3.716610908508301, + "step": 2467 + }, + { + "epoch": 34.27959807776322, + "grad_norm": 0.21508945524692535, + "learning_rate": 0.0006, + "loss": 3.6993470191955566, + "step": 2468 + }, + { + "epoch": 34.293577981651374, + "grad_norm": 0.20441125333309174, + "learning_rate": 0.0006, + "loss": 3.7194275856018066, + "step": 2469 + }, + { + "epoch": 34.30755788553954, + "grad_norm": 0.19704242050647736, + "learning_rate": 0.0006, + "loss": 3.675929546356201, + "step": 2470 + }, + { + "epoch": 34.3215377894277, + "grad_norm": 0.1918456256389618, + "learning_rate": 0.0006, + "loss": 3.7189574241638184, + "step": 2471 + }, + { + "epoch": 34.33551769331586, + "grad_norm": 0.19687092304229736, + "learning_rate": 0.0006, + "loss": 3.725809335708618, + "step": 2472 + }, + { + "epoch": 34.34949759720402, + "grad_norm": 0.2048639953136444, + "learning_rate": 0.0006, + "loss": 3.7461748123168945, + "step": 2473 + }, + { + "epoch": 34.36347750109218, + "grad_norm": 0.21086618304252625, + "learning_rate": 0.0006, + "loss": 3.6849746704101562, + "step": 2474 + }, + { + "epoch": 34.37745740498034, + "grad_norm": 0.2172154039144516, + "learning_rate": 0.0006, + "loss": 3.7379322052001953, + "step": 2475 + }, + { + "epoch": 34.391437308868504, + "grad_norm": 0.22725504636764526, + "learning_rate": 0.0006, + "loss": 3.7341527938842773, + "step": 2476 + }, + { + "epoch": 34.40541721275666, + "grad_norm": 0.22309242188930511, + "learning_rate": 0.0006, + "loss": 3.724946975708008, + "step": 2477 + }, + { + "epoch": 34.419397116644824, + "grad_norm": 0.25252285599708557, + "learning_rate": 0.0006, + "loss": 3.710257053375244, + "step": 2478 + }, + { + "epoch": 34.43337702053299, + "grad_norm": 0.2549746334552765, + "learning_rate": 0.0006, + "loss": 3.7105040550231934, + "step": 2479 + }, + { + "epoch": 34.44735692442114, + "grad_norm": 0.22544030845165253, + "learning_rate": 0.0006, + "loss": 3.7340707778930664, + "step": 2480 + }, + { + "epoch": 34.46133682830931, + "grad_norm": 0.22275063395500183, + "learning_rate": 0.0006, + "loss": 3.7141473293304443, + "step": 2481 + }, + { + "epoch": 34.47531673219746, + "grad_norm": 0.25373485684394836, + "learning_rate": 0.0006, + "loss": 3.7014691829681396, + "step": 2482 + }, + { + "epoch": 34.489296636085626, + "grad_norm": 0.2573327124118805, + "learning_rate": 0.0006, + "loss": 3.682562828063965, + "step": 2483 + }, + { + "epoch": 34.50327653997379, + "grad_norm": 0.2452341616153717, + "learning_rate": 0.0006, + "loss": 3.757261276245117, + "step": 2484 + }, + { + "epoch": 34.517256443861946, + "grad_norm": 0.2477131187915802, + "learning_rate": 0.0006, + "loss": 3.7216877937316895, + "step": 2485 + }, + { + "epoch": 34.53123634775011, + "grad_norm": 0.24740098416805267, + "learning_rate": 0.0006, + "loss": 3.705704927444458, + "step": 2486 + }, + { + "epoch": 34.54521625163827, + "grad_norm": 0.27306219935417175, + "learning_rate": 0.0006, + "loss": 3.7014641761779785, + "step": 2487 + }, + { + "epoch": 34.55919615552643, + "grad_norm": 0.26376286149024963, + "learning_rate": 0.0006, + "loss": 3.686056137084961, + "step": 2488 + }, + { + "epoch": 34.57317605941459, + "grad_norm": 0.2796899378299713, + "learning_rate": 0.0006, + "loss": 3.7171077728271484, + "step": 2489 + }, + { + "epoch": 34.58715596330275, + "grad_norm": 0.24279902875423431, + "learning_rate": 0.0006, + "loss": 3.7448348999023438, + "step": 2490 + }, + { + "epoch": 34.60113586719091, + "grad_norm": 0.22772833704948425, + "learning_rate": 0.0006, + "loss": 3.7028117179870605, + "step": 2491 + }, + { + "epoch": 34.615115771079076, + "grad_norm": 0.22157910466194153, + "learning_rate": 0.0006, + "loss": 3.750023603439331, + "step": 2492 + }, + { + "epoch": 34.62909567496723, + "grad_norm": 0.24342703819274902, + "learning_rate": 0.0006, + "loss": 3.7181010246276855, + "step": 2493 + }, + { + "epoch": 34.643075578855395, + "grad_norm": 0.2554340362548828, + "learning_rate": 0.0006, + "loss": 3.6994080543518066, + "step": 2494 + }, + { + "epoch": 34.65705548274356, + "grad_norm": 0.21296930313110352, + "learning_rate": 0.0006, + "loss": 3.7534523010253906, + "step": 2495 + }, + { + "epoch": 34.671035386631715, + "grad_norm": 0.19117674231529236, + "learning_rate": 0.0006, + "loss": 3.7267889976501465, + "step": 2496 + }, + { + "epoch": 34.68501529051988, + "grad_norm": 0.2306399643421173, + "learning_rate": 0.0006, + "loss": 3.723212242126465, + "step": 2497 + }, + { + "epoch": 34.69899519440804, + "grad_norm": 0.23063263297080994, + "learning_rate": 0.0006, + "loss": 3.730070114135742, + "step": 2498 + }, + { + "epoch": 34.7129750982962, + "grad_norm": 0.19422881305217743, + "learning_rate": 0.0006, + "loss": 3.694833755493164, + "step": 2499 + }, + { + "epoch": 34.72695500218436, + "grad_norm": 0.20246362686157227, + "learning_rate": 0.0006, + "loss": 3.71140718460083, + "step": 2500 + }, + { + "epoch": 34.74093490607252, + "grad_norm": 0.1942741572856903, + "learning_rate": 0.0006, + "loss": 3.7530534267425537, + "step": 2501 + }, + { + "epoch": 34.75491480996068, + "grad_norm": 0.19686029851436615, + "learning_rate": 0.0006, + "loss": 3.7059555053710938, + "step": 2502 + }, + { + "epoch": 34.768894713848844, + "grad_norm": 0.20120355486869812, + "learning_rate": 0.0006, + "loss": 3.7271084785461426, + "step": 2503 + }, + { + "epoch": 34.782874617737, + "grad_norm": 0.20880399644374847, + "learning_rate": 0.0006, + "loss": 3.712137460708618, + "step": 2504 + }, + { + "epoch": 34.796854521625164, + "grad_norm": 0.22139988839626312, + "learning_rate": 0.0006, + "loss": 3.731245517730713, + "step": 2505 + }, + { + "epoch": 34.81083442551333, + "grad_norm": 0.22756224870681763, + "learning_rate": 0.0006, + "loss": 3.708987236022949, + "step": 2506 + }, + { + "epoch": 34.824814329401484, + "grad_norm": 0.22332409024238586, + "learning_rate": 0.0006, + "loss": 3.7365565299987793, + "step": 2507 + }, + { + "epoch": 34.83879423328965, + "grad_norm": 0.19599054753780365, + "learning_rate": 0.0006, + "loss": 3.7266454696655273, + "step": 2508 + }, + { + "epoch": 34.8527741371778, + "grad_norm": 0.19843019545078278, + "learning_rate": 0.0006, + "loss": 3.7225422859191895, + "step": 2509 + }, + { + "epoch": 34.86675404106597, + "grad_norm": 0.20147928595542908, + "learning_rate": 0.0006, + "loss": 3.7282514572143555, + "step": 2510 + }, + { + "epoch": 34.88073394495413, + "grad_norm": 0.19489876925945282, + "learning_rate": 0.0006, + "loss": 3.694852113723755, + "step": 2511 + }, + { + "epoch": 34.89471384884229, + "grad_norm": 0.20680078864097595, + "learning_rate": 0.0006, + "loss": 3.74678635597229, + "step": 2512 + }, + { + "epoch": 34.90869375273045, + "grad_norm": 0.2233233004808426, + "learning_rate": 0.0006, + "loss": 3.726475238800049, + "step": 2513 + }, + { + "epoch": 34.92267365661861, + "grad_norm": 0.20702993869781494, + "learning_rate": 0.0006, + "loss": 3.6946351528167725, + "step": 2514 + }, + { + "epoch": 34.93665356050677, + "grad_norm": 0.2081725299358368, + "learning_rate": 0.0006, + "loss": 3.7101621627807617, + "step": 2515 + }, + { + "epoch": 34.95063346439493, + "grad_norm": 0.20551837980747223, + "learning_rate": 0.0006, + "loss": 3.7060177326202393, + "step": 2516 + }, + { + "epoch": 34.964613368283096, + "grad_norm": 0.2106839418411255, + "learning_rate": 0.0006, + "loss": 3.7460474967956543, + "step": 2517 + }, + { + "epoch": 34.97859327217125, + "grad_norm": 0.18512766063213348, + "learning_rate": 0.0006, + "loss": 3.719280242919922, + "step": 2518 + }, + { + "epoch": 34.992573176059416, + "grad_norm": 0.1802142709493637, + "learning_rate": 0.0006, + "loss": 3.698255777359009, + "step": 2519 + }, + { + "epoch": 35.0, + "grad_norm": 0.2028084248304367, + "learning_rate": 0.0006, + "loss": 3.711136817932129, + "step": 2520 + }, + { + "epoch": 35.0, + "eval_loss": 4.006688117980957, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 2520 + }, + { + "epoch": 35.01397990388816, + "grad_norm": 0.1973012387752533, + "learning_rate": 0.0006, + "loss": 3.7108325958251953, + "step": 2521 + }, + { + "epoch": 35.02795980777632, + "grad_norm": 0.23763646185398102, + "learning_rate": 0.0006, + "loss": 3.675785541534424, + "step": 2522 + }, + { + "epoch": 35.04193971166448, + "grad_norm": 0.24403199553489685, + "learning_rate": 0.0006, + "loss": 3.7034249305725098, + "step": 2523 + }, + { + "epoch": 35.05591961555265, + "grad_norm": 0.19050131738185883, + "learning_rate": 0.0006, + "loss": 3.6984221935272217, + "step": 2524 + }, + { + "epoch": 35.0698995194408, + "grad_norm": 0.21389710903167725, + "learning_rate": 0.0006, + "loss": 3.6641085147857666, + "step": 2525 + }, + { + "epoch": 35.083879423328966, + "grad_norm": 0.23103152215480804, + "learning_rate": 0.0006, + "loss": 3.722912311553955, + "step": 2526 + }, + { + "epoch": 35.09785932721712, + "grad_norm": 0.2197326272726059, + "learning_rate": 0.0006, + "loss": 3.696568727493286, + "step": 2527 + }, + { + "epoch": 35.111839231105286, + "grad_norm": 0.20877327024936676, + "learning_rate": 0.0006, + "loss": 3.666700601577759, + "step": 2528 + }, + { + "epoch": 35.12581913499345, + "grad_norm": 0.20904001593589783, + "learning_rate": 0.0006, + "loss": 3.6896979808807373, + "step": 2529 + }, + { + "epoch": 35.139799038881605, + "grad_norm": 0.1947423666715622, + "learning_rate": 0.0006, + "loss": 3.6647095680236816, + "step": 2530 + }, + { + "epoch": 35.15377894276977, + "grad_norm": 0.2134019434452057, + "learning_rate": 0.0006, + "loss": 3.696993589401245, + "step": 2531 + }, + { + "epoch": 35.16775884665793, + "grad_norm": 0.2299254685640335, + "learning_rate": 0.0006, + "loss": 3.7067925930023193, + "step": 2532 + }, + { + "epoch": 35.18173875054609, + "grad_norm": 0.219585582613945, + "learning_rate": 0.0006, + "loss": 3.6680960655212402, + "step": 2533 + }, + { + "epoch": 35.19571865443425, + "grad_norm": 0.2146025449037552, + "learning_rate": 0.0006, + "loss": 3.7185046672821045, + "step": 2534 + }, + { + "epoch": 35.20969855832241, + "grad_norm": 0.22748060524463654, + "learning_rate": 0.0006, + "loss": 3.659202814102173, + "step": 2535 + }, + { + "epoch": 35.22367846221057, + "grad_norm": 0.22272273898124695, + "learning_rate": 0.0006, + "loss": 3.7002370357513428, + "step": 2536 + }, + { + "epoch": 35.237658366098735, + "grad_norm": 0.23827379941940308, + "learning_rate": 0.0006, + "loss": 3.714664936065674, + "step": 2537 + }, + { + "epoch": 35.25163826998689, + "grad_norm": 0.2328156679868698, + "learning_rate": 0.0006, + "loss": 3.665173292160034, + "step": 2538 + }, + { + "epoch": 35.265618173875055, + "grad_norm": 0.2573475241661072, + "learning_rate": 0.0006, + "loss": 3.7073206901550293, + "step": 2539 + }, + { + "epoch": 35.27959807776322, + "grad_norm": 0.2411472052335739, + "learning_rate": 0.0006, + "loss": 3.697751045227051, + "step": 2540 + }, + { + "epoch": 35.293577981651374, + "grad_norm": 0.22836148738861084, + "learning_rate": 0.0006, + "loss": 3.7219419479370117, + "step": 2541 + }, + { + "epoch": 35.30755788553954, + "grad_norm": 0.2225421667098999, + "learning_rate": 0.0006, + "loss": 3.69516658782959, + "step": 2542 + }, + { + "epoch": 35.3215377894277, + "grad_norm": 0.2180362343788147, + "learning_rate": 0.0006, + "loss": 3.714043378829956, + "step": 2543 + }, + { + "epoch": 35.33551769331586, + "grad_norm": 0.23638299107551575, + "learning_rate": 0.0006, + "loss": 3.7449421882629395, + "step": 2544 + }, + { + "epoch": 35.34949759720402, + "grad_norm": 0.21792089939117432, + "learning_rate": 0.0006, + "loss": 3.7029948234558105, + "step": 2545 + }, + { + "epoch": 35.36347750109218, + "grad_norm": 0.23266112804412842, + "learning_rate": 0.0006, + "loss": 3.683509111404419, + "step": 2546 + }, + { + "epoch": 35.37745740498034, + "grad_norm": 0.24203059077262878, + "learning_rate": 0.0006, + "loss": 3.68572998046875, + "step": 2547 + }, + { + "epoch": 35.391437308868504, + "grad_norm": 0.2543564438819885, + "learning_rate": 0.0006, + "loss": 3.6902432441711426, + "step": 2548 + }, + { + "epoch": 35.40541721275666, + "grad_norm": 0.22990189492702484, + "learning_rate": 0.0006, + "loss": 3.708810329437256, + "step": 2549 + }, + { + "epoch": 35.419397116644824, + "grad_norm": 0.2594352662563324, + "learning_rate": 0.0006, + "loss": 3.7312886714935303, + "step": 2550 + }, + { + "epoch": 35.43337702053299, + "grad_norm": 0.27525269985198975, + "learning_rate": 0.0006, + "loss": 3.6963448524475098, + "step": 2551 + }, + { + "epoch": 35.44735692442114, + "grad_norm": 0.2436525970697403, + "learning_rate": 0.0006, + "loss": 3.6733713150024414, + "step": 2552 + }, + { + "epoch": 35.46133682830931, + "grad_norm": 0.25500908493995667, + "learning_rate": 0.0006, + "loss": 3.7104358673095703, + "step": 2553 + }, + { + "epoch": 35.47531673219746, + "grad_norm": 0.23504602909088135, + "learning_rate": 0.0006, + "loss": 3.7052388191223145, + "step": 2554 + }, + { + "epoch": 35.489296636085626, + "grad_norm": 0.2277563363313675, + "learning_rate": 0.0006, + "loss": 3.708714008331299, + "step": 2555 + }, + { + "epoch": 35.50327653997379, + "grad_norm": 0.25224778056144714, + "learning_rate": 0.0006, + "loss": 3.699676990509033, + "step": 2556 + }, + { + "epoch": 35.517256443861946, + "grad_norm": 0.28308045864105225, + "learning_rate": 0.0006, + "loss": 3.7005362510681152, + "step": 2557 + }, + { + "epoch": 35.53123634775011, + "grad_norm": 0.25858840346336365, + "learning_rate": 0.0006, + "loss": 3.689999580383301, + "step": 2558 + }, + { + "epoch": 35.54521625163827, + "grad_norm": 0.23497405648231506, + "learning_rate": 0.0006, + "loss": 3.695793867111206, + "step": 2559 + }, + { + "epoch": 35.55919615552643, + "grad_norm": 0.22375957667827606, + "learning_rate": 0.0006, + "loss": 3.7011494636535645, + "step": 2560 + }, + { + "epoch": 35.57317605941459, + "grad_norm": 0.21056118607521057, + "learning_rate": 0.0006, + "loss": 3.722623586654663, + "step": 2561 + }, + { + "epoch": 35.58715596330275, + "grad_norm": 0.22504374384880066, + "learning_rate": 0.0006, + "loss": 3.7211966514587402, + "step": 2562 + }, + { + "epoch": 35.60113586719091, + "grad_norm": 0.22349773347377777, + "learning_rate": 0.0006, + "loss": 3.6901848316192627, + "step": 2563 + }, + { + "epoch": 35.615115771079076, + "grad_norm": 0.219499409198761, + "learning_rate": 0.0006, + "loss": 3.709026575088501, + "step": 2564 + }, + { + "epoch": 35.62909567496723, + "grad_norm": 0.20461080968379974, + "learning_rate": 0.0006, + "loss": 3.72456693649292, + "step": 2565 + }, + { + "epoch": 35.643075578855395, + "grad_norm": 0.2083883285522461, + "learning_rate": 0.0006, + "loss": 3.6845502853393555, + "step": 2566 + }, + { + "epoch": 35.65705548274356, + "grad_norm": 0.19694562256336212, + "learning_rate": 0.0006, + "loss": 3.668515682220459, + "step": 2567 + }, + { + "epoch": 35.671035386631715, + "grad_norm": 0.2107984870672226, + "learning_rate": 0.0006, + "loss": 3.700723648071289, + "step": 2568 + }, + { + "epoch": 35.68501529051988, + "grad_norm": 0.18878720700740814, + "learning_rate": 0.0006, + "loss": 3.689150333404541, + "step": 2569 + }, + { + "epoch": 35.69899519440804, + "grad_norm": 0.20058824121952057, + "learning_rate": 0.0006, + "loss": 3.7048301696777344, + "step": 2570 + }, + { + "epoch": 35.7129750982962, + "grad_norm": 0.2200566679239273, + "learning_rate": 0.0006, + "loss": 3.6944580078125, + "step": 2571 + }, + { + "epoch": 35.72695500218436, + "grad_norm": 0.22200417518615723, + "learning_rate": 0.0006, + "loss": 3.715193510055542, + "step": 2572 + }, + { + "epoch": 35.74093490607252, + "grad_norm": 0.21011404693126678, + "learning_rate": 0.0006, + "loss": 3.737387180328369, + "step": 2573 + }, + { + "epoch": 35.75491480996068, + "grad_norm": 0.21139226853847504, + "learning_rate": 0.0006, + "loss": 3.695596694946289, + "step": 2574 + }, + { + "epoch": 35.768894713848844, + "grad_norm": 0.2112506479024887, + "learning_rate": 0.0006, + "loss": 3.7264227867126465, + "step": 2575 + }, + { + "epoch": 35.782874617737, + "grad_norm": 0.21528391540050507, + "learning_rate": 0.0006, + "loss": 3.7089385986328125, + "step": 2576 + }, + { + "epoch": 35.796854521625164, + "grad_norm": 0.2127804309129715, + "learning_rate": 0.0006, + "loss": 3.6995301246643066, + "step": 2577 + }, + { + "epoch": 35.81083442551333, + "grad_norm": 0.19839410483837128, + "learning_rate": 0.0006, + "loss": 3.7233223915100098, + "step": 2578 + }, + { + "epoch": 35.824814329401484, + "grad_norm": 0.19098423421382904, + "learning_rate": 0.0006, + "loss": 3.7108311653137207, + "step": 2579 + }, + { + "epoch": 35.83879423328965, + "grad_norm": 0.18697232007980347, + "learning_rate": 0.0006, + "loss": 3.725001811981201, + "step": 2580 + }, + { + "epoch": 35.8527741371778, + "grad_norm": 0.21051937341690063, + "learning_rate": 0.0006, + "loss": 3.7310993671417236, + "step": 2581 + }, + { + "epoch": 35.86675404106597, + "grad_norm": 0.2239079475402832, + "learning_rate": 0.0006, + "loss": 3.739056348800659, + "step": 2582 + }, + { + "epoch": 35.88073394495413, + "grad_norm": 0.2581230700016022, + "learning_rate": 0.0006, + "loss": 3.697061061859131, + "step": 2583 + }, + { + "epoch": 35.89471384884229, + "grad_norm": 0.25388655066490173, + "learning_rate": 0.0006, + "loss": 3.7173471450805664, + "step": 2584 + }, + { + "epoch": 35.90869375273045, + "grad_norm": 0.2557796537876129, + "learning_rate": 0.0006, + "loss": 3.7121596336364746, + "step": 2585 + }, + { + "epoch": 35.92267365661861, + "grad_norm": 0.21846474707126617, + "learning_rate": 0.0006, + "loss": 3.7342100143432617, + "step": 2586 + }, + { + "epoch": 35.93665356050677, + "grad_norm": 0.19810006022453308, + "learning_rate": 0.0006, + "loss": 3.7266340255737305, + "step": 2587 + }, + { + "epoch": 35.95063346439493, + "grad_norm": 0.28599923849105835, + "learning_rate": 0.0006, + "loss": 3.711876392364502, + "step": 2588 + }, + { + "epoch": 35.964613368283096, + "grad_norm": 0.3380447030067444, + "learning_rate": 0.0006, + "loss": 3.7611794471740723, + "step": 2589 + }, + { + "epoch": 35.97859327217125, + "grad_norm": 0.2946915328502655, + "learning_rate": 0.0006, + "loss": 3.7659358978271484, + "step": 2590 + }, + { + "epoch": 35.992573176059416, + "grad_norm": 0.2310202419757843, + "learning_rate": 0.0006, + "loss": 3.7124969959259033, + "step": 2591 + }, + { + "epoch": 36.0, + "grad_norm": 0.22294320166110992, + "learning_rate": 0.0006, + "loss": 3.725590705871582, + "step": 2592 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 1.104578250773889e+18, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2592/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-288/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-288/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-288/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-288/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-288/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-288/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-288/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-288/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5b27d0f1ed1ac25e31f7998dfe6e5ecf157174d3 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05d25af2294c374d2ee2fc62527258d973e7d15e65c642b1453306d79e4db26f +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-288/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-288/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..801b7cfac245940fd2b730bbf25b233b85b57677 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6faa3d0735aed2143c723370de7f4e01577f7ccdf4a5d5640d1fcd374bd30185 +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-288/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-288/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..95a95ffc155cbce8af7c5a044a8fd9067f30fa16 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d59e3000a892a1805a635015c5d08862dbc4281d4100d61300f80db435f3920 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-288/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-288/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..d138f496c4cd14b916ea2e9f7db9c1a49e119a3e --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4efb7574e4ad1dce896776e4c60c09baf7bd0d27faf6ccb0e5359ac8d88b8758 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-288/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-288/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..e7f2e4bf5abc860ae45f2d5dbda8115542dd3611 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d1eab1d6f570939dc1e4b9d10383b7354ef244100fb2b34ff0ac8b58642b63c +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-288/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-288/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-288/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-288/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-288/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-288/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..66728013f9892dde143c61320ddba39a90461f79 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/trainer_state.json @@ -0,0 +1,2074 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 4.0, + "eval_steps": 500, + "global_step": 288, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 1.2273091675265434e+17, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-288/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-288/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2880/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2880/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2880/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2880/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..228f1f244e0a33bd644b951d4239d39905e6d2f3 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e236132aa9740ba3fa65ea8c7ffbf7bda969e25354d27bfe9f2b39e33063c8e +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2880/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..8cfc2519d1dd189074f0a1708755cc4f8f3a0172 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5be27ed0c31ddd38088d01a3e3e0f340199df849ba64299955c8e7e7098f979a +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2880/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..46b0fcc22ebd5b40993f05d27e66b1c2be479886 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bae314cc640af15f02aa46b9ae6ec1d1f537356d4cbc9c7435d70a23f963e47 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2880/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..7ac84ddbdfa3691cd04654c7b18571c7ce95a671 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9027b84fe17cf418bff7efe8d21d180901ff66794de6c29d03c5e723fcfc1838 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2880/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..0a5f79a713b34dd2d8d63f191629551c649dd599 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc3ec3427ea842499c98ae42d325c555883f86219e2410d0c1a47e90ade53b1c +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2880/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2880/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2880/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..a6e739d9813ff4568e60d44df9aa4c2067124cbf --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/trainer_state.json @@ -0,0 +1,20506 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 40.0, + "eval_steps": 500, + "global_step": 2880, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + }, + { + "epoch": 8.0, + "eval_loss": 5.100707530975342, + "eval_runtime": 44.2493, + "eval_samples_per_second": 55.187, + "eval_steps_per_second": 3.458, + "step": 576 + }, + { + "epoch": 8.013979903888162, + "grad_norm": 0.3658510148525238, + "learning_rate": 0.0006, + "loss": 4.759055137634277, + "step": 577 + }, + { + "epoch": 8.027959807776321, + "grad_norm": 0.41794446110725403, + "learning_rate": 0.0006, + "loss": 4.737661838531494, + "step": 578 + }, + { + "epoch": 8.041939711664483, + "grad_norm": 0.43284085392951965, + "learning_rate": 0.0006, + "loss": 4.775538444519043, + "step": 579 + }, + { + "epoch": 8.055919615552643, + "grad_norm": 0.4716675281524658, + "learning_rate": 0.0006, + "loss": 4.762231826782227, + "step": 580 + }, + { + "epoch": 8.069899519440805, + "grad_norm": 0.3849579393863678, + "learning_rate": 0.0006, + "loss": 4.753598690032959, + "step": 581 + }, + { + "epoch": 8.083879423328964, + "grad_norm": 0.3721151053905487, + "learning_rate": 0.0006, + "loss": 4.728978157043457, + "step": 582 + }, + { + "epoch": 8.097859327217126, + "grad_norm": 0.37009572982788086, + "learning_rate": 0.0006, + "loss": 4.759153366088867, + "step": 583 + }, + { + "epoch": 8.111839231105286, + "grad_norm": 0.37051302194595337, + "learning_rate": 0.0006, + "loss": 4.744197368621826, + "step": 584 + }, + { + "epoch": 8.125819134993447, + "grad_norm": 0.331238329410553, + "learning_rate": 0.0006, + "loss": 4.7338385581970215, + "step": 585 + }, + { + "epoch": 8.139799038881607, + "grad_norm": 0.3737713694572449, + "learning_rate": 0.0006, + "loss": 4.719110488891602, + "step": 586 + }, + { + "epoch": 8.153778942769769, + "grad_norm": 0.3713214695453644, + "learning_rate": 0.0006, + "loss": 4.734012126922607, + "step": 587 + }, + { + "epoch": 8.167758846657929, + "grad_norm": 0.4060780107975006, + "learning_rate": 0.0006, + "loss": 4.746830940246582, + "step": 588 + }, + { + "epoch": 8.18173875054609, + "grad_norm": 0.39814314246177673, + "learning_rate": 0.0006, + "loss": 4.722851753234863, + "step": 589 + }, + { + "epoch": 8.19571865443425, + "grad_norm": 0.3175652325153351, + "learning_rate": 0.0006, + "loss": 4.745110034942627, + "step": 590 + }, + { + "epoch": 8.209698558322412, + "grad_norm": 0.37214916944503784, + "learning_rate": 0.0006, + "loss": 4.7362775802612305, + "step": 591 + }, + { + "epoch": 8.223678462210572, + "grad_norm": 0.3873472809791565, + "learning_rate": 0.0006, + "loss": 4.738964557647705, + "step": 592 + }, + { + "epoch": 8.237658366098733, + "grad_norm": 0.3299207091331482, + "learning_rate": 0.0006, + "loss": 4.713451385498047, + "step": 593 + }, + { + "epoch": 8.251638269986893, + "grad_norm": 0.32445064187049866, + "learning_rate": 0.0006, + "loss": 4.725602149963379, + "step": 594 + }, + { + "epoch": 8.265618173875055, + "grad_norm": 0.32903164625167847, + "learning_rate": 0.0006, + "loss": 4.732064247131348, + "step": 595 + }, + { + "epoch": 8.279598077763215, + "grad_norm": 0.3166804313659668, + "learning_rate": 0.0006, + "loss": 4.678950786590576, + "step": 596 + }, + { + "epoch": 8.293577981651376, + "grad_norm": 0.2750290334224701, + "learning_rate": 0.0006, + "loss": 4.719513416290283, + "step": 597 + }, + { + "epoch": 8.307557885539538, + "grad_norm": 0.291029691696167, + "learning_rate": 0.0006, + "loss": 4.715405464172363, + "step": 598 + }, + { + "epoch": 8.321537789427698, + "grad_norm": 0.34105145931243896, + "learning_rate": 0.0006, + "loss": 4.722611427307129, + "step": 599 + }, + { + "epoch": 8.33551769331586, + "grad_norm": 0.3078882694244385, + "learning_rate": 0.0006, + "loss": 4.668856620788574, + "step": 600 + }, + { + "epoch": 8.349497597204019, + "grad_norm": 0.3218833804130554, + "learning_rate": 0.0006, + "loss": 4.719579696655273, + "step": 601 + }, + { + "epoch": 8.36347750109218, + "grad_norm": 0.35716721415519714, + "learning_rate": 0.0006, + "loss": 4.690774440765381, + "step": 602 + }, + { + "epoch": 8.37745740498034, + "grad_norm": 0.3045452833175659, + "learning_rate": 0.0006, + "loss": 4.696503639221191, + "step": 603 + }, + { + "epoch": 8.391437308868502, + "grad_norm": 0.3127244710922241, + "learning_rate": 0.0006, + "loss": 4.701899528503418, + "step": 604 + }, + { + "epoch": 8.405417212756662, + "grad_norm": 0.34988710284233093, + "learning_rate": 0.0006, + "loss": 4.677641868591309, + "step": 605 + }, + { + "epoch": 8.419397116644824, + "grad_norm": 0.34035569429397583, + "learning_rate": 0.0006, + "loss": 4.707778453826904, + "step": 606 + }, + { + "epoch": 8.433377020532983, + "grad_norm": 0.3341112732887268, + "learning_rate": 0.0006, + "loss": 4.724853038787842, + "step": 607 + }, + { + "epoch": 8.447356924421145, + "grad_norm": 0.41744324564933777, + "learning_rate": 0.0006, + "loss": 4.680908203125, + "step": 608 + }, + { + "epoch": 8.461336828309305, + "grad_norm": 0.40402331948280334, + "learning_rate": 0.0006, + "loss": 4.726455211639404, + "step": 609 + }, + { + "epoch": 8.475316732197467, + "grad_norm": 0.4727570414543152, + "learning_rate": 0.0006, + "loss": 4.6793084144592285, + "step": 610 + }, + { + "epoch": 8.489296636085626, + "grad_norm": 0.43002694845199585, + "learning_rate": 0.0006, + "loss": 4.663918972015381, + "step": 611 + }, + { + "epoch": 8.503276539973788, + "grad_norm": 0.36124858260154724, + "learning_rate": 0.0006, + "loss": 4.657375335693359, + "step": 612 + }, + { + "epoch": 8.517256443861948, + "grad_norm": 0.37644803524017334, + "learning_rate": 0.0006, + "loss": 4.676977157592773, + "step": 613 + }, + { + "epoch": 8.53123634775011, + "grad_norm": 0.32347747683525085, + "learning_rate": 0.0006, + "loss": 4.708547115325928, + "step": 614 + }, + { + "epoch": 8.54521625163827, + "grad_norm": 0.3071717619895935, + "learning_rate": 0.0006, + "loss": 4.650189399719238, + "step": 615 + }, + { + "epoch": 8.55919615552643, + "grad_norm": 0.30222490429878235, + "learning_rate": 0.0006, + "loss": 4.647942543029785, + "step": 616 + }, + { + "epoch": 8.57317605941459, + "grad_norm": 0.31545212864875793, + "learning_rate": 0.0006, + "loss": 4.660242080688477, + "step": 617 + }, + { + "epoch": 8.587155963302752, + "grad_norm": 0.31644752621650696, + "learning_rate": 0.0006, + "loss": 4.666710376739502, + "step": 618 + }, + { + "epoch": 8.601135867190912, + "grad_norm": 0.26057198643684387, + "learning_rate": 0.0006, + "loss": 4.668096542358398, + "step": 619 + }, + { + "epoch": 8.615115771079074, + "grad_norm": 0.25473910570144653, + "learning_rate": 0.0006, + "loss": 4.641562461853027, + "step": 620 + }, + { + "epoch": 8.629095674967235, + "grad_norm": 0.2456732839345932, + "learning_rate": 0.0006, + "loss": 4.6545281410217285, + "step": 621 + }, + { + "epoch": 8.643075578855395, + "grad_norm": 0.25180476903915405, + "learning_rate": 0.0006, + "loss": 4.6506524085998535, + "step": 622 + }, + { + "epoch": 8.657055482743557, + "grad_norm": 0.21761579811573029, + "learning_rate": 0.0006, + "loss": 4.638909339904785, + "step": 623 + }, + { + "epoch": 8.671035386631717, + "grad_norm": 0.23590542376041412, + "learning_rate": 0.0006, + "loss": 4.6572747230529785, + "step": 624 + }, + { + "epoch": 8.685015290519878, + "grad_norm": 0.23870624601840973, + "learning_rate": 0.0006, + "loss": 4.643742084503174, + "step": 625 + }, + { + "epoch": 8.698995194408038, + "grad_norm": 0.2191203385591507, + "learning_rate": 0.0006, + "loss": 4.632617950439453, + "step": 626 + }, + { + "epoch": 8.7129750982962, + "grad_norm": 0.22107063233852386, + "learning_rate": 0.0006, + "loss": 4.625616073608398, + "step": 627 + }, + { + "epoch": 8.72695500218436, + "grad_norm": 0.20833902060985565, + "learning_rate": 0.0006, + "loss": 4.609896659851074, + "step": 628 + }, + { + "epoch": 8.740934906072521, + "grad_norm": 0.254967600107193, + "learning_rate": 0.0006, + "loss": 4.651735782623291, + "step": 629 + }, + { + "epoch": 8.754914809960681, + "grad_norm": 0.31587523221969604, + "learning_rate": 0.0006, + "loss": 4.6404032707214355, + "step": 630 + }, + { + "epoch": 8.768894713848843, + "grad_norm": 0.28598251938819885, + "learning_rate": 0.0006, + "loss": 4.602679252624512, + "step": 631 + }, + { + "epoch": 8.782874617737003, + "grad_norm": 0.23216590285301208, + "learning_rate": 0.0006, + "loss": 4.610319137573242, + "step": 632 + }, + { + "epoch": 8.796854521625164, + "grad_norm": 0.29212239384651184, + "learning_rate": 0.0006, + "loss": 4.600744247436523, + "step": 633 + }, + { + "epoch": 8.810834425513324, + "grad_norm": 0.3375801146030426, + "learning_rate": 0.0006, + "loss": 4.627819061279297, + "step": 634 + }, + { + "epoch": 8.824814329401486, + "grad_norm": 0.4207753837108612, + "learning_rate": 0.0006, + "loss": 4.634505271911621, + "step": 635 + }, + { + "epoch": 8.838794233289645, + "grad_norm": 0.4640173614025116, + "learning_rate": 0.0006, + "loss": 4.636714935302734, + "step": 636 + }, + { + "epoch": 8.852774137177807, + "grad_norm": 0.5255663990974426, + "learning_rate": 0.0006, + "loss": 4.659462928771973, + "step": 637 + }, + { + "epoch": 8.866754041065967, + "grad_norm": 0.5108268857002258, + "learning_rate": 0.0006, + "loss": 4.633192539215088, + "step": 638 + }, + { + "epoch": 8.880733944954128, + "grad_norm": 0.3821936845779419, + "learning_rate": 0.0006, + "loss": 4.621200084686279, + "step": 639 + }, + { + "epoch": 8.89471384884229, + "grad_norm": 0.3918485939502716, + "learning_rate": 0.0006, + "loss": 4.632599830627441, + "step": 640 + }, + { + "epoch": 8.90869375273045, + "grad_norm": 0.3416556119918823, + "learning_rate": 0.0006, + "loss": 4.620438098907471, + "step": 641 + }, + { + "epoch": 8.922673656618612, + "grad_norm": 0.3191553056240082, + "learning_rate": 0.0006, + "loss": 4.617823600769043, + "step": 642 + }, + { + "epoch": 8.936653560506771, + "grad_norm": 0.3368529677391052, + "learning_rate": 0.0006, + "loss": 4.617222785949707, + "step": 643 + }, + { + "epoch": 8.950633464394933, + "grad_norm": 0.3255428969860077, + "learning_rate": 0.0006, + "loss": 4.633878707885742, + "step": 644 + }, + { + "epoch": 8.964613368283093, + "grad_norm": 0.31394779682159424, + "learning_rate": 0.0006, + "loss": 4.642603874206543, + "step": 645 + }, + { + "epoch": 8.978593272171254, + "grad_norm": 0.29999351501464844, + "learning_rate": 0.0006, + "loss": 4.5925211906433105, + "step": 646 + }, + { + "epoch": 8.992573176059414, + "grad_norm": 0.309154748916626, + "learning_rate": 0.0006, + "loss": 4.61745023727417, + "step": 647 + }, + { + "epoch": 9.0, + "grad_norm": 0.2660452425479889, + "learning_rate": 0.0006, + "loss": 4.575107097625732, + "step": 648 + }, + { + "epoch": 9.0, + "eval_loss": 4.8804192543029785, + "eval_runtime": 45.0015, + "eval_samples_per_second": 54.265, + "eval_steps_per_second": 3.4, + "step": 648 + }, + { + "epoch": 9.013979903888162, + "grad_norm": 0.24159297347068787, + "learning_rate": 0.0006, + "loss": 4.571323871612549, + "step": 649 + }, + { + "epoch": 9.027959807776321, + "grad_norm": 0.2835831046104431, + "learning_rate": 0.0006, + "loss": 4.614255905151367, + "step": 650 + }, + { + "epoch": 9.041939711664483, + "grad_norm": 0.2646859288215637, + "learning_rate": 0.0006, + "loss": 4.578947067260742, + "step": 651 + }, + { + "epoch": 9.055919615552643, + "grad_norm": 0.28868553042411804, + "learning_rate": 0.0006, + "loss": 4.575977325439453, + "step": 652 + }, + { + "epoch": 9.069899519440805, + "grad_norm": 0.2899586856365204, + "learning_rate": 0.0006, + "loss": 4.541798114776611, + "step": 653 + }, + { + "epoch": 9.083879423328964, + "grad_norm": 0.32786068320274353, + "learning_rate": 0.0006, + "loss": 4.575140953063965, + "step": 654 + }, + { + "epoch": 9.097859327217126, + "grad_norm": 0.35675594210624695, + "learning_rate": 0.0006, + "loss": 4.58184814453125, + "step": 655 + }, + { + "epoch": 9.111839231105286, + "grad_norm": 0.3380381166934967, + "learning_rate": 0.0006, + "loss": 4.546271324157715, + "step": 656 + }, + { + "epoch": 9.125819134993447, + "grad_norm": 0.3035511374473572, + "learning_rate": 0.0006, + "loss": 4.591629981994629, + "step": 657 + }, + { + "epoch": 9.139799038881607, + "grad_norm": 0.2733091711997986, + "learning_rate": 0.0006, + "loss": 4.559020042419434, + "step": 658 + }, + { + "epoch": 9.153778942769769, + "grad_norm": 0.2870676815509796, + "learning_rate": 0.0006, + "loss": 4.552787780761719, + "step": 659 + }, + { + "epoch": 9.167758846657929, + "grad_norm": 0.37471064925193787, + "learning_rate": 0.0006, + "loss": 4.572757244110107, + "step": 660 + }, + { + "epoch": 9.18173875054609, + "grad_norm": 0.37889063358306885, + "learning_rate": 0.0006, + "loss": 4.573302268981934, + "step": 661 + }, + { + "epoch": 9.19571865443425, + "grad_norm": 0.29983851313591003, + "learning_rate": 0.0006, + "loss": 4.571202754974365, + "step": 662 + }, + { + "epoch": 9.209698558322412, + "grad_norm": 0.27595147490501404, + "learning_rate": 0.0006, + "loss": 4.529508590698242, + "step": 663 + }, + { + "epoch": 9.223678462210572, + "grad_norm": 0.22693437337875366, + "learning_rate": 0.0006, + "loss": 4.572267532348633, + "step": 664 + }, + { + "epoch": 9.237658366098733, + "grad_norm": 0.27147138118743896, + "learning_rate": 0.0006, + "loss": 4.529747009277344, + "step": 665 + }, + { + "epoch": 9.251638269986893, + "grad_norm": 0.24952703714370728, + "learning_rate": 0.0006, + "loss": 4.553647994995117, + "step": 666 + }, + { + "epoch": 9.265618173875055, + "grad_norm": 0.3086707592010498, + "learning_rate": 0.0006, + "loss": 4.494636058807373, + "step": 667 + }, + { + "epoch": 9.279598077763215, + "grad_norm": 0.3265218138694763, + "learning_rate": 0.0006, + "loss": 4.522481918334961, + "step": 668 + }, + { + "epoch": 9.293577981651376, + "grad_norm": 0.2744608223438263, + "learning_rate": 0.0006, + "loss": 4.544595241546631, + "step": 669 + }, + { + "epoch": 9.307557885539538, + "grad_norm": 0.26698485016822815, + "learning_rate": 0.0006, + "loss": 4.506407260894775, + "step": 670 + }, + { + "epoch": 9.321537789427698, + "grad_norm": 0.2775942087173462, + "learning_rate": 0.0006, + "loss": 4.534619331359863, + "step": 671 + }, + { + "epoch": 9.33551769331586, + "grad_norm": 0.2421862781047821, + "learning_rate": 0.0006, + "loss": 4.523318290710449, + "step": 672 + }, + { + "epoch": 9.349497597204019, + "grad_norm": 0.2756497263908386, + "learning_rate": 0.0006, + "loss": 4.517561912536621, + "step": 673 + }, + { + "epoch": 9.36347750109218, + "grad_norm": 0.28845369815826416, + "learning_rate": 0.0006, + "loss": 4.530844688415527, + "step": 674 + }, + { + "epoch": 9.37745740498034, + "grad_norm": 0.32285866141319275, + "learning_rate": 0.0006, + "loss": 4.55369758605957, + "step": 675 + }, + { + "epoch": 9.391437308868502, + "grad_norm": 0.3726065754890442, + "learning_rate": 0.0006, + "loss": 4.524348258972168, + "step": 676 + }, + { + "epoch": 9.405417212756662, + "grad_norm": 0.39524078369140625, + "learning_rate": 0.0006, + "loss": 4.535778045654297, + "step": 677 + }, + { + "epoch": 9.419397116644824, + "grad_norm": 0.3859797716140747, + "learning_rate": 0.0006, + "loss": 4.538474082946777, + "step": 678 + }, + { + "epoch": 9.433377020532983, + "grad_norm": 0.36151406168937683, + "learning_rate": 0.0006, + "loss": 4.54434061050415, + "step": 679 + }, + { + "epoch": 9.447356924421145, + "grad_norm": 0.40345999598503113, + "learning_rate": 0.0006, + "loss": 4.532961845397949, + "step": 680 + }, + { + "epoch": 9.461336828309305, + "grad_norm": 0.38864144682884216, + "learning_rate": 0.0006, + "loss": 4.567630767822266, + "step": 681 + }, + { + "epoch": 9.475316732197467, + "grad_norm": 0.3816355764865875, + "learning_rate": 0.0006, + "loss": 4.535771369934082, + "step": 682 + }, + { + "epoch": 9.489296636085626, + "grad_norm": 0.38756558299064636, + "learning_rate": 0.0006, + "loss": 4.4971089363098145, + "step": 683 + }, + { + "epoch": 9.503276539973788, + "grad_norm": 0.4572933614253998, + "learning_rate": 0.0006, + "loss": 4.534860134124756, + "step": 684 + }, + { + "epoch": 9.517256443861948, + "grad_norm": 0.42368650436401367, + "learning_rate": 0.0006, + "loss": 4.542638301849365, + "step": 685 + }, + { + "epoch": 9.53123634775011, + "grad_norm": 0.36939486861228943, + "learning_rate": 0.0006, + "loss": 4.571430206298828, + "step": 686 + }, + { + "epoch": 9.54521625163827, + "grad_norm": 0.3900398313999176, + "learning_rate": 0.0006, + "loss": 4.544435501098633, + "step": 687 + }, + { + "epoch": 9.55919615552643, + "grad_norm": 0.37829288840293884, + "learning_rate": 0.0006, + "loss": 4.564268112182617, + "step": 688 + }, + { + "epoch": 9.57317605941459, + "grad_norm": 0.3553886115550995, + "learning_rate": 0.0006, + "loss": 4.5373430252075195, + "step": 689 + }, + { + "epoch": 9.587155963302752, + "grad_norm": 0.3613419532775879, + "learning_rate": 0.0006, + "loss": 4.559074401855469, + "step": 690 + }, + { + "epoch": 9.601135867190912, + "grad_norm": 0.32644546031951904, + "learning_rate": 0.0006, + "loss": 4.533667087554932, + "step": 691 + }, + { + "epoch": 9.615115771079074, + "grad_norm": 0.3264399468898773, + "learning_rate": 0.0006, + "loss": 4.508299350738525, + "step": 692 + }, + { + "epoch": 9.629095674967235, + "grad_norm": 0.3534526526927948, + "learning_rate": 0.0006, + "loss": 4.542442798614502, + "step": 693 + }, + { + "epoch": 9.643075578855395, + "grad_norm": 0.3333452343940735, + "learning_rate": 0.0006, + "loss": 4.497692584991455, + "step": 694 + }, + { + "epoch": 9.657055482743557, + "grad_norm": 0.3214292526245117, + "learning_rate": 0.0006, + "loss": 4.512363433837891, + "step": 695 + }, + { + "epoch": 9.671035386631717, + "grad_norm": 0.2805672585964203, + "learning_rate": 0.0006, + "loss": 4.496874809265137, + "step": 696 + }, + { + "epoch": 9.685015290519878, + "grad_norm": 0.2618725895881653, + "learning_rate": 0.0006, + "loss": 4.51375675201416, + "step": 697 + }, + { + "epoch": 9.698995194408038, + "grad_norm": 0.2556597888469696, + "learning_rate": 0.0006, + "loss": 4.512338638305664, + "step": 698 + }, + { + "epoch": 9.7129750982962, + "grad_norm": 0.23784305155277252, + "learning_rate": 0.0006, + "loss": 4.486503601074219, + "step": 699 + }, + { + "epoch": 9.72695500218436, + "grad_norm": 0.2240338921546936, + "learning_rate": 0.0006, + "loss": 4.486850261688232, + "step": 700 + }, + { + "epoch": 9.740934906072521, + "grad_norm": 0.24686725437641144, + "learning_rate": 0.0006, + "loss": 4.501359462738037, + "step": 701 + }, + { + "epoch": 9.754914809960681, + "grad_norm": 0.20819595456123352, + "learning_rate": 0.0006, + "loss": 4.495186805725098, + "step": 702 + }, + { + "epoch": 9.768894713848843, + "grad_norm": 0.21858957409858704, + "learning_rate": 0.0006, + "loss": 4.475093364715576, + "step": 703 + }, + { + "epoch": 9.782874617737003, + "grad_norm": 0.22676466405391693, + "learning_rate": 0.0006, + "loss": 4.4702534675598145, + "step": 704 + }, + { + "epoch": 9.796854521625164, + "grad_norm": 0.18317611515522003, + "learning_rate": 0.0006, + "loss": 4.471231937408447, + "step": 705 + }, + { + "epoch": 9.810834425513324, + "grad_norm": 0.20979148149490356, + "learning_rate": 0.0006, + "loss": 4.454103946685791, + "step": 706 + }, + { + "epoch": 9.824814329401486, + "grad_norm": 0.2146051526069641, + "learning_rate": 0.0006, + "loss": 4.505178928375244, + "step": 707 + }, + { + "epoch": 9.838794233289645, + "grad_norm": 0.2344852089881897, + "learning_rate": 0.0006, + "loss": 4.437984943389893, + "step": 708 + }, + { + "epoch": 9.852774137177807, + "grad_norm": 0.26532089710235596, + "learning_rate": 0.0006, + "loss": 4.477126121520996, + "step": 709 + }, + { + "epoch": 9.866754041065967, + "grad_norm": 0.2737913131713867, + "learning_rate": 0.0006, + "loss": 4.498421669006348, + "step": 710 + }, + { + "epoch": 9.880733944954128, + "grad_norm": 0.26651278138160706, + "learning_rate": 0.0006, + "loss": 4.480839729309082, + "step": 711 + }, + { + "epoch": 9.89471384884229, + "grad_norm": 0.26576584577560425, + "learning_rate": 0.0006, + "loss": 4.490936279296875, + "step": 712 + }, + { + "epoch": 9.90869375273045, + "grad_norm": 0.22483965754508972, + "learning_rate": 0.0006, + "loss": 4.477953910827637, + "step": 713 + }, + { + "epoch": 9.922673656618612, + "grad_norm": 0.23576045036315918, + "learning_rate": 0.0006, + "loss": 4.4731292724609375, + "step": 714 + }, + { + "epoch": 9.936653560506771, + "grad_norm": 0.2731139361858368, + "learning_rate": 0.0006, + "loss": 4.441622734069824, + "step": 715 + }, + { + "epoch": 9.950633464394933, + "grad_norm": 0.2677643597126007, + "learning_rate": 0.0006, + "loss": 4.49604606628418, + "step": 716 + }, + { + "epoch": 9.964613368283093, + "grad_norm": 0.21940895915031433, + "learning_rate": 0.0006, + "loss": 4.485573768615723, + "step": 717 + }, + { + "epoch": 9.978593272171254, + "grad_norm": 0.2060987651348114, + "learning_rate": 0.0006, + "loss": 4.482657432556152, + "step": 718 + }, + { + "epoch": 9.992573176059414, + "grad_norm": 0.22163978219032288, + "learning_rate": 0.0006, + "loss": 4.478459358215332, + "step": 719 + }, + { + "epoch": 10.0, + "grad_norm": 0.2505086064338684, + "learning_rate": 0.0006, + "loss": 4.4393510818481445, + "step": 720 + }, + { + "epoch": 10.0, + "eval_loss": 4.695676803588867, + "eval_runtime": 49.0751, + "eval_samples_per_second": 49.76, + "eval_steps_per_second": 3.118, + "step": 720 + }, + { + "epoch": 10.013979903888162, + "grad_norm": 0.23820190131664276, + "learning_rate": 0.0006, + "loss": 4.437685489654541, + "step": 721 + }, + { + "epoch": 10.027959807776321, + "grad_norm": 0.2220371812582016, + "learning_rate": 0.0006, + "loss": 4.449873924255371, + "step": 722 + }, + { + "epoch": 10.041939711664483, + "grad_norm": 0.20369848608970642, + "learning_rate": 0.0006, + "loss": 4.448882579803467, + "step": 723 + }, + { + "epoch": 10.055919615552643, + "grad_norm": 0.2360001504421234, + "learning_rate": 0.0006, + "loss": 4.399251937866211, + "step": 724 + }, + { + "epoch": 10.069899519440805, + "grad_norm": 0.23537491261959076, + "learning_rate": 0.0006, + "loss": 4.442960739135742, + "step": 725 + }, + { + "epoch": 10.083879423328964, + "grad_norm": 0.24433870613574982, + "learning_rate": 0.0006, + "loss": 4.44808292388916, + "step": 726 + }, + { + "epoch": 10.097859327217126, + "grad_norm": 0.3406696021556854, + "learning_rate": 0.0006, + "loss": 4.443426132202148, + "step": 727 + }, + { + "epoch": 10.111839231105286, + "grad_norm": 0.4102286100387573, + "learning_rate": 0.0006, + "loss": 4.424919605255127, + "step": 728 + }, + { + "epoch": 10.125819134993447, + "grad_norm": 0.36462604999542236, + "learning_rate": 0.0006, + "loss": 4.45366907119751, + "step": 729 + }, + { + "epoch": 10.139799038881607, + "grad_norm": 0.4374827444553375, + "learning_rate": 0.0006, + "loss": 4.415630340576172, + "step": 730 + }, + { + "epoch": 10.153778942769769, + "grad_norm": 0.45248138904571533, + "learning_rate": 0.0006, + "loss": 4.448849678039551, + "step": 731 + }, + { + "epoch": 10.167758846657929, + "grad_norm": 0.3806457221508026, + "learning_rate": 0.0006, + "loss": 4.443390846252441, + "step": 732 + }, + { + "epoch": 10.18173875054609, + "grad_norm": 0.3491523861885071, + "learning_rate": 0.0006, + "loss": 4.4648637771606445, + "step": 733 + }, + { + "epoch": 10.19571865443425, + "grad_norm": 0.3327210247516632, + "learning_rate": 0.0006, + "loss": 4.460919380187988, + "step": 734 + }, + { + "epoch": 10.209698558322412, + "grad_norm": 0.29772236943244934, + "learning_rate": 0.0006, + "loss": 4.45159912109375, + "step": 735 + }, + { + "epoch": 10.223678462210572, + "grad_norm": 0.33083397150039673, + "learning_rate": 0.0006, + "loss": 4.463382720947266, + "step": 736 + }, + { + "epoch": 10.237658366098733, + "grad_norm": 0.3930598795413971, + "learning_rate": 0.0006, + "loss": 4.434510231018066, + "step": 737 + }, + { + "epoch": 10.251638269986893, + "grad_norm": 0.4342896044254303, + "learning_rate": 0.0006, + "loss": 4.451700210571289, + "step": 738 + }, + { + "epoch": 10.265618173875055, + "grad_norm": 0.4544043242931366, + "learning_rate": 0.0006, + "loss": 4.437224388122559, + "step": 739 + }, + { + "epoch": 10.279598077763215, + "grad_norm": 0.4487038254737854, + "learning_rate": 0.0006, + "loss": 4.46157693862915, + "step": 740 + }, + { + "epoch": 10.293577981651376, + "grad_norm": 0.4420500695705414, + "learning_rate": 0.0006, + "loss": 4.399561405181885, + "step": 741 + }, + { + "epoch": 10.307557885539538, + "grad_norm": 0.4167289435863495, + "learning_rate": 0.0006, + "loss": 4.41792106628418, + "step": 742 + }, + { + "epoch": 10.321537789427698, + "grad_norm": 0.3186971843242645, + "learning_rate": 0.0006, + "loss": 4.435683250427246, + "step": 743 + }, + { + "epoch": 10.33551769331586, + "grad_norm": 0.3077184855937958, + "learning_rate": 0.0006, + "loss": 4.481947898864746, + "step": 744 + }, + { + "epoch": 10.349497597204019, + "grad_norm": 0.26811280846595764, + "learning_rate": 0.0006, + "loss": 4.4339447021484375, + "step": 745 + }, + { + "epoch": 10.36347750109218, + "grad_norm": 0.28448057174682617, + "learning_rate": 0.0006, + "loss": 4.441644668579102, + "step": 746 + }, + { + "epoch": 10.37745740498034, + "grad_norm": 0.30731502175331116, + "learning_rate": 0.0006, + "loss": 4.428773880004883, + "step": 747 + }, + { + "epoch": 10.391437308868502, + "grad_norm": 0.28036001324653625, + "learning_rate": 0.0006, + "loss": 4.4433135986328125, + "step": 748 + }, + { + "epoch": 10.405417212756662, + "grad_norm": 0.2882847189903259, + "learning_rate": 0.0006, + "loss": 4.433401107788086, + "step": 749 + }, + { + "epoch": 10.419397116644824, + "grad_norm": 0.23622776567935944, + "learning_rate": 0.0006, + "loss": 4.444611549377441, + "step": 750 + }, + { + "epoch": 10.433377020532983, + "grad_norm": 0.2306167632341385, + "learning_rate": 0.0006, + "loss": 4.397875785827637, + "step": 751 + }, + { + "epoch": 10.447356924421145, + "grad_norm": 0.22725090384483337, + "learning_rate": 0.0006, + "loss": 4.429759502410889, + "step": 752 + }, + { + "epoch": 10.461336828309305, + "grad_norm": 0.250709593296051, + "learning_rate": 0.0006, + "loss": 4.415618896484375, + "step": 753 + }, + { + "epoch": 10.475316732197467, + "grad_norm": 0.22341276705265045, + "learning_rate": 0.0006, + "loss": 4.389362335205078, + "step": 754 + }, + { + "epoch": 10.489296636085626, + "grad_norm": 0.22595296800136566, + "learning_rate": 0.0006, + "loss": 4.383584022521973, + "step": 755 + }, + { + "epoch": 10.503276539973788, + "grad_norm": 0.24277575314044952, + "learning_rate": 0.0006, + "loss": 4.403777599334717, + "step": 756 + }, + { + "epoch": 10.517256443861948, + "grad_norm": 0.2670708894729614, + "learning_rate": 0.0006, + "loss": 4.398499011993408, + "step": 757 + }, + { + "epoch": 10.53123634775011, + "grad_norm": 0.2640696167945862, + "learning_rate": 0.0006, + "loss": 4.426726818084717, + "step": 758 + }, + { + "epoch": 10.54521625163827, + "grad_norm": 0.2248653769493103, + "learning_rate": 0.0006, + "loss": 4.400103569030762, + "step": 759 + }, + { + "epoch": 10.55919615552643, + "grad_norm": 0.21466240286827087, + "learning_rate": 0.0006, + "loss": 4.404158592224121, + "step": 760 + }, + { + "epoch": 10.57317605941459, + "grad_norm": 0.236923947930336, + "learning_rate": 0.0006, + "loss": 4.37059211730957, + "step": 761 + }, + { + "epoch": 10.587155963302752, + "grad_norm": 0.2515387535095215, + "learning_rate": 0.0006, + "loss": 4.415055274963379, + "step": 762 + }, + { + "epoch": 10.601135867190912, + "grad_norm": 0.23461885750293732, + "learning_rate": 0.0006, + "loss": 4.375036239624023, + "step": 763 + }, + { + "epoch": 10.615115771079074, + "grad_norm": 0.20975761115550995, + "learning_rate": 0.0006, + "loss": 4.3903398513793945, + "step": 764 + }, + { + "epoch": 10.629095674967235, + "grad_norm": 0.19859997928142548, + "learning_rate": 0.0006, + "loss": 4.379380226135254, + "step": 765 + }, + { + "epoch": 10.643075578855395, + "grad_norm": 0.22310325503349304, + "learning_rate": 0.0006, + "loss": 4.382110595703125, + "step": 766 + }, + { + "epoch": 10.657055482743557, + "grad_norm": 0.23940646648406982, + "learning_rate": 0.0006, + "loss": 4.393403053283691, + "step": 767 + }, + { + "epoch": 10.671035386631717, + "grad_norm": 0.2230468988418579, + "learning_rate": 0.0006, + "loss": 4.391970634460449, + "step": 768 + }, + { + "epoch": 10.685015290519878, + "grad_norm": 0.18139775097370148, + "learning_rate": 0.0006, + "loss": 4.399993896484375, + "step": 769 + }, + { + "epoch": 10.698995194408038, + "grad_norm": 0.19936902821063995, + "learning_rate": 0.0006, + "loss": 4.373854160308838, + "step": 770 + }, + { + "epoch": 10.7129750982962, + "grad_norm": 0.22132465243339539, + "learning_rate": 0.0006, + "loss": 4.377530097961426, + "step": 771 + }, + { + "epoch": 10.72695500218436, + "grad_norm": 0.24254944920539856, + "learning_rate": 0.0006, + "loss": 4.398683547973633, + "step": 772 + }, + { + "epoch": 10.740934906072521, + "grad_norm": 0.2666397988796234, + "learning_rate": 0.0006, + "loss": 4.3879899978637695, + "step": 773 + }, + { + "epoch": 10.754914809960681, + "grad_norm": 0.24728631973266602, + "learning_rate": 0.0006, + "loss": 4.356976509094238, + "step": 774 + }, + { + "epoch": 10.768894713848843, + "grad_norm": 0.2612453103065491, + "learning_rate": 0.0006, + "loss": 4.391525745391846, + "step": 775 + }, + { + "epoch": 10.782874617737003, + "grad_norm": 0.24060510098934174, + "learning_rate": 0.0006, + "loss": 4.376985549926758, + "step": 776 + }, + { + "epoch": 10.796854521625164, + "grad_norm": 0.22708238661289215, + "learning_rate": 0.0006, + "loss": 4.368545055389404, + "step": 777 + }, + { + "epoch": 10.810834425513324, + "grad_norm": 0.26931291818618774, + "learning_rate": 0.0006, + "loss": 4.369227409362793, + "step": 778 + }, + { + "epoch": 10.824814329401486, + "grad_norm": 0.265288770198822, + "learning_rate": 0.0006, + "loss": 4.378131866455078, + "step": 779 + }, + { + "epoch": 10.838794233289645, + "grad_norm": 0.3015305697917938, + "learning_rate": 0.0006, + "loss": 4.376267910003662, + "step": 780 + }, + { + "epoch": 10.852774137177807, + "grad_norm": 0.3345746099948883, + "learning_rate": 0.0006, + "loss": 4.3751420974731445, + "step": 781 + }, + { + "epoch": 10.866754041065967, + "grad_norm": 0.32446005940437317, + "learning_rate": 0.0006, + "loss": 4.370899200439453, + "step": 782 + }, + { + "epoch": 10.880733944954128, + "grad_norm": 0.27070069313049316, + "learning_rate": 0.0006, + "loss": 4.391958236694336, + "step": 783 + }, + { + "epoch": 10.89471384884229, + "grad_norm": 0.25584667921066284, + "learning_rate": 0.0006, + "loss": 4.407493591308594, + "step": 784 + }, + { + "epoch": 10.90869375273045, + "grad_norm": 0.2710244655609131, + "learning_rate": 0.0006, + "loss": 4.374400615692139, + "step": 785 + }, + { + "epoch": 10.922673656618612, + "grad_norm": 0.32413622736930847, + "learning_rate": 0.0006, + "loss": 4.379607200622559, + "step": 786 + }, + { + "epoch": 10.936653560506771, + "grad_norm": 0.3253782391548157, + "learning_rate": 0.0006, + "loss": 4.376441955566406, + "step": 787 + }, + { + "epoch": 10.950633464394933, + "grad_norm": 0.30534613132476807, + "learning_rate": 0.0006, + "loss": 4.382739067077637, + "step": 788 + }, + { + "epoch": 10.964613368283093, + "grad_norm": 0.35726621747016907, + "learning_rate": 0.0006, + "loss": 4.3765869140625, + "step": 789 + }, + { + "epoch": 10.978593272171254, + "grad_norm": 0.32763028144836426, + "learning_rate": 0.0006, + "loss": 4.391537189483643, + "step": 790 + }, + { + "epoch": 10.992573176059414, + "grad_norm": 0.31811195611953735, + "learning_rate": 0.0006, + "loss": 4.371829032897949, + "step": 791 + }, + { + "epoch": 11.0, + "grad_norm": 0.37317267060279846, + "learning_rate": 0.0006, + "loss": 4.381916522979736, + "step": 792 + }, + { + "epoch": 11.0, + "eval_loss": 4.588687896728516, + "eval_runtime": 44.8041, + "eval_samples_per_second": 54.504, + "eval_steps_per_second": 3.415, + "step": 792 + }, + { + "epoch": 11.013979903888162, + "grad_norm": 0.37882938981056213, + "learning_rate": 0.0006, + "loss": 4.3463640213012695, + "step": 793 + }, + { + "epoch": 11.027959807776321, + "grad_norm": 0.34719496965408325, + "learning_rate": 0.0006, + "loss": 4.329861640930176, + "step": 794 + }, + { + "epoch": 11.041939711664483, + "grad_norm": 0.36161214113235474, + "learning_rate": 0.0006, + "loss": 4.3287835121154785, + "step": 795 + }, + { + "epoch": 11.055919615552643, + "grad_norm": 0.3743649125099182, + "learning_rate": 0.0006, + "loss": 4.334251403808594, + "step": 796 + }, + { + "epoch": 11.069899519440805, + "grad_norm": 0.32266443967819214, + "learning_rate": 0.0006, + "loss": 4.364782810211182, + "step": 797 + }, + { + "epoch": 11.083879423328964, + "grad_norm": 0.27460047602653503, + "learning_rate": 0.0006, + "loss": 4.348380088806152, + "step": 798 + }, + { + "epoch": 11.097859327217126, + "grad_norm": 0.30498892068862915, + "learning_rate": 0.0006, + "loss": 4.347856521606445, + "step": 799 + }, + { + "epoch": 11.111839231105286, + "grad_norm": 0.29740771651268005, + "learning_rate": 0.0006, + "loss": 4.343471050262451, + "step": 800 + }, + { + "epoch": 11.125819134993447, + "grad_norm": 0.3004681169986725, + "learning_rate": 0.0006, + "loss": 4.337590217590332, + "step": 801 + }, + { + "epoch": 11.139799038881607, + "grad_norm": 0.3000192642211914, + "learning_rate": 0.0006, + "loss": 4.349949836730957, + "step": 802 + }, + { + "epoch": 11.153778942769769, + "grad_norm": 0.27461889386177063, + "learning_rate": 0.0006, + "loss": 4.338934898376465, + "step": 803 + }, + { + "epoch": 11.167758846657929, + "grad_norm": 0.2856169641017914, + "learning_rate": 0.0006, + "loss": 4.320754051208496, + "step": 804 + }, + { + "epoch": 11.18173875054609, + "grad_norm": 0.29822713136672974, + "learning_rate": 0.0006, + "loss": 4.357949733734131, + "step": 805 + }, + { + "epoch": 11.19571865443425, + "grad_norm": 0.34061339497566223, + "learning_rate": 0.0006, + "loss": 4.327282905578613, + "step": 806 + }, + { + "epoch": 11.209698558322412, + "grad_norm": 0.3379063010215759, + "learning_rate": 0.0006, + "loss": 4.355471611022949, + "step": 807 + }, + { + "epoch": 11.223678462210572, + "grad_norm": 0.2859216630458832, + "learning_rate": 0.0006, + "loss": 4.352344989776611, + "step": 808 + }, + { + "epoch": 11.237658366098733, + "grad_norm": 0.29522669315338135, + "learning_rate": 0.0006, + "loss": 4.349186897277832, + "step": 809 + }, + { + "epoch": 11.251638269986893, + "grad_norm": 0.273798406124115, + "learning_rate": 0.0006, + "loss": 4.342379570007324, + "step": 810 + }, + { + "epoch": 11.265618173875055, + "grad_norm": 0.25298982858657837, + "learning_rate": 0.0006, + "loss": 4.358835220336914, + "step": 811 + }, + { + "epoch": 11.279598077763215, + "grad_norm": 0.2170463651418686, + "learning_rate": 0.0006, + "loss": 4.3422017097473145, + "step": 812 + }, + { + "epoch": 11.293577981651376, + "grad_norm": 0.24855731427669525, + "learning_rate": 0.0006, + "loss": 4.322849750518799, + "step": 813 + }, + { + "epoch": 11.307557885539538, + "grad_norm": 0.22564345598220825, + "learning_rate": 0.0006, + "loss": 4.316864967346191, + "step": 814 + }, + { + "epoch": 11.321537789427698, + "grad_norm": 0.21532197296619415, + "learning_rate": 0.0006, + "loss": 4.326743125915527, + "step": 815 + }, + { + "epoch": 11.33551769331586, + "grad_norm": 0.20514146983623505, + "learning_rate": 0.0006, + "loss": 4.326531887054443, + "step": 816 + }, + { + "epoch": 11.349497597204019, + "grad_norm": 0.19035090506076813, + "learning_rate": 0.0006, + "loss": 4.318154335021973, + "step": 817 + }, + { + "epoch": 11.36347750109218, + "grad_norm": 0.17889662086963654, + "learning_rate": 0.0006, + "loss": 4.35410213470459, + "step": 818 + }, + { + "epoch": 11.37745740498034, + "grad_norm": 0.20564863085746765, + "learning_rate": 0.0006, + "loss": 4.350226879119873, + "step": 819 + }, + { + "epoch": 11.391437308868502, + "grad_norm": 0.2412603348493576, + "learning_rate": 0.0006, + "loss": 4.325137138366699, + "step": 820 + }, + { + "epoch": 11.405417212756662, + "grad_norm": 0.2603496015071869, + "learning_rate": 0.0006, + "loss": 4.335752487182617, + "step": 821 + }, + { + "epoch": 11.419397116644824, + "grad_norm": 0.2968119978904724, + "learning_rate": 0.0006, + "loss": 4.3317670822143555, + "step": 822 + }, + { + "epoch": 11.433377020532983, + "grad_norm": 0.3280937969684601, + "learning_rate": 0.0006, + "loss": 4.322279453277588, + "step": 823 + }, + { + "epoch": 11.447356924421145, + "grad_norm": 0.3598847985267639, + "learning_rate": 0.0006, + "loss": 4.312255859375, + "step": 824 + }, + { + "epoch": 11.461336828309305, + "grad_norm": 0.3996485471725464, + "learning_rate": 0.0006, + "loss": 4.327103614807129, + "step": 825 + }, + { + "epoch": 11.475316732197467, + "grad_norm": 0.4352041780948639, + "learning_rate": 0.0006, + "loss": 4.368639945983887, + "step": 826 + }, + { + "epoch": 11.489296636085626, + "grad_norm": 0.4451918601989746, + "learning_rate": 0.0006, + "loss": 4.335113048553467, + "step": 827 + }, + { + "epoch": 11.503276539973788, + "grad_norm": 0.4403933584690094, + "learning_rate": 0.0006, + "loss": 4.369889259338379, + "step": 828 + }, + { + "epoch": 11.517256443861948, + "grad_norm": 0.34862443804740906, + "learning_rate": 0.0006, + "loss": 4.316292762756348, + "step": 829 + }, + { + "epoch": 11.53123634775011, + "grad_norm": 0.3240634500980377, + "learning_rate": 0.0006, + "loss": 4.328078746795654, + "step": 830 + }, + { + "epoch": 11.54521625163827, + "grad_norm": 0.2445751428604126, + "learning_rate": 0.0006, + "loss": 4.291940689086914, + "step": 831 + }, + { + "epoch": 11.55919615552643, + "grad_norm": 0.24376554787158966, + "learning_rate": 0.0006, + "loss": 4.339217662811279, + "step": 832 + }, + { + "epoch": 11.57317605941459, + "grad_norm": 0.22419725358486176, + "learning_rate": 0.0006, + "loss": 4.2887468338012695, + "step": 833 + }, + { + "epoch": 11.587155963302752, + "grad_norm": 0.22318261861801147, + "learning_rate": 0.0006, + "loss": 4.298492908477783, + "step": 834 + }, + { + "epoch": 11.601135867190912, + "grad_norm": 0.2357342392206192, + "learning_rate": 0.0006, + "loss": 4.328692436218262, + "step": 835 + }, + { + "epoch": 11.615115771079074, + "grad_norm": 0.25450602173805237, + "learning_rate": 0.0006, + "loss": 4.360058784484863, + "step": 836 + }, + { + "epoch": 11.629095674967235, + "grad_norm": 0.24540965259075165, + "learning_rate": 0.0006, + "loss": 4.311890602111816, + "step": 837 + }, + { + "epoch": 11.643075578855395, + "grad_norm": 0.2535638213157654, + "learning_rate": 0.0006, + "loss": 4.327730178833008, + "step": 838 + }, + { + "epoch": 11.657055482743557, + "grad_norm": 0.23063556849956512, + "learning_rate": 0.0006, + "loss": 4.303299903869629, + "step": 839 + }, + { + "epoch": 11.671035386631717, + "grad_norm": 0.21813632547855377, + "learning_rate": 0.0006, + "loss": 4.315352439880371, + "step": 840 + }, + { + "epoch": 11.685015290519878, + "grad_norm": 0.2170359194278717, + "learning_rate": 0.0006, + "loss": 4.278632164001465, + "step": 841 + }, + { + "epoch": 11.698995194408038, + "grad_norm": 0.21059377491474152, + "learning_rate": 0.0006, + "loss": 4.306049346923828, + "step": 842 + }, + { + "epoch": 11.7129750982962, + "grad_norm": 0.19872888922691345, + "learning_rate": 0.0006, + "loss": 4.3091535568237305, + "step": 843 + }, + { + "epoch": 11.72695500218436, + "grad_norm": 0.20059862732887268, + "learning_rate": 0.0006, + "loss": 4.2884063720703125, + "step": 844 + }, + { + "epoch": 11.740934906072521, + "grad_norm": 0.19952483475208282, + "learning_rate": 0.0006, + "loss": 4.293610572814941, + "step": 845 + }, + { + "epoch": 11.754914809960681, + "grad_norm": 0.19794537127017975, + "learning_rate": 0.0006, + "loss": 4.288822174072266, + "step": 846 + }, + { + "epoch": 11.768894713848843, + "grad_norm": 0.213914692401886, + "learning_rate": 0.0006, + "loss": 4.320849418640137, + "step": 847 + }, + { + "epoch": 11.782874617737003, + "grad_norm": 0.18500955402851105, + "learning_rate": 0.0006, + "loss": 4.29300594329834, + "step": 848 + }, + { + "epoch": 11.796854521625164, + "grad_norm": 0.19446656107902527, + "learning_rate": 0.0006, + "loss": 4.3079352378845215, + "step": 849 + }, + { + "epoch": 11.810834425513324, + "grad_norm": 0.22191768884658813, + "learning_rate": 0.0006, + "loss": 4.295967102050781, + "step": 850 + }, + { + "epoch": 11.824814329401486, + "grad_norm": 0.20748084783554077, + "learning_rate": 0.0006, + "loss": 4.332365989685059, + "step": 851 + }, + { + "epoch": 11.838794233289645, + "grad_norm": 0.20993955433368683, + "learning_rate": 0.0006, + "loss": 4.294618129730225, + "step": 852 + }, + { + "epoch": 11.852774137177807, + "grad_norm": 0.23506952822208405, + "learning_rate": 0.0006, + "loss": 4.313426971435547, + "step": 853 + }, + { + "epoch": 11.866754041065967, + "grad_norm": 0.2379443347454071, + "learning_rate": 0.0006, + "loss": 4.297664642333984, + "step": 854 + }, + { + "epoch": 11.880733944954128, + "grad_norm": 0.2127852737903595, + "learning_rate": 0.0006, + "loss": 4.2807698249816895, + "step": 855 + }, + { + "epoch": 11.89471384884229, + "grad_norm": 0.2125532180070877, + "learning_rate": 0.0006, + "loss": 4.310990333557129, + "step": 856 + }, + { + "epoch": 11.90869375273045, + "grad_norm": 0.1996062994003296, + "learning_rate": 0.0006, + "loss": 4.253237724304199, + "step": 857 + }, + { + "epoch": 11.922673656618612, + "grad_norm": 0.20747603476047516, + "learning_rate": 0.0006, + "loss": 4.294193267822266, + "step": 858 + }, + { + "epoch": 11.936653560506771, + "grad_norm": 0.24082425236701965, + "learning_rate": 0.0006, + "loss": 4.269967079162598, + "step": 859 + }, + { + "epoch": 11.950633464394933, + "grad_norm": 0.28993573784828186, + "learning_rate": 0.0006, + "loss": 4.294550895690918, + "step": 860 + }, + { + "epoch": 11.964613368283093, + "grad_norm": 0.29576948285102844, + "learning_rate": 0.0006, + "loss": 4.3188252449035645, + "step": 861 + }, + { + "epoch": 11.978593272171254, + "grad_norm": 0.2754935026168823, + "learning_rate": 0.0006, + "loss": 4.312817573547363, + "step": 862 + }, + { + "epoch": 11.992573176059414, + "grad_norm": 0.3062523305416107, + "learning_rate": 0.0006, + "loss": 4.288214683532715, + "step": 863 + }, + { + "epoch": 12.0, + "grad_norm": 0.3367644250392914, + "learning_rate": 0.0006, + "loss": 4.314888954162598, + "step": 864 + }, + { + "epoch": 12.0, + "eval_loss": 4.516861438751221, + "eval_runtime": 44.2584, + "eval_samples_per_second": 55.176, + "eval_steps_per_second": 3.457, + "step": 864 + }, + { + "epoch": 12.013979903888162, + "grad_norm": 0.2976512014865875, + "learning_rate": 0.0006, + "loss": 4.278797149658203, + "step": 865 + }, + { + "epoch": 12.027959807776321, + "grad_norm": 0.32217127084732056, + "learning_rate": 0.0006, + "loss": 4.2823615074157715, + "step": 866 + }, + { + "epoch": 12.041939711664483, + "grad_norm": 0.31538400053977966, + "learning_rate": 0.0006, + "loss": 4.252805709838867, + "step": 867 + }, + { + "epoch": 12.055919615552643, + "grad_norm": 0.3501375913619995, + "learning_rate": 0.0006, + "loss": 4.276501655578613, + "step": 868 + }, + { + "epoch": 12.069899519440805, + "grad_norm": 0.3452056646347046, + "learning_rate": 0.0006, + "loss": 4.275739669799805, + "step": 869 + }, + { + "epoch": 12.083879423328964, + "grad_norm": 0.36963316798210144, + "learning_rate": 0.0006, + "loss": 4.3215227127075195, + "step": 870 + }, + { + "epoch": 12.097859327217126, + "grad_norm": 0.41605016589164734, + "learning_rate": 0.0006, + "loss": 4.28739595413208, + "step": 871 + }, + { + "epoch": 12.111839231105286, + "grad_norm": 0.37700653076171875, + "learning_rate": 0.0006, + "loss": 4.291154861450195, + "step": 872 + }, + { + "epoch": 12.125819134993447, + "grad_norm": 0.3194253444671631, + "learning_rate": 0.0006, + "loss": 4.259326934814453, + "step": 873 + }, + { + "epoch": 12.139799038881607, + "grad_norm": 0.31770631670951843, + "learning_rate": 0.0006, + "loss": 4.270082473754883, + "step": 874 + }, + { + "epoch": 12.153778942769769, + "grad_norm": 0.3748120069503784, + "learning_rate": 0.0006, + "loss": 4.2727274894714355, + "step": 875 + }, + { + "epoch": 12.167758846657929, + "grad_norm": 0.3821348547935486, + "learning_rate": 0.0006, + "loss": 4.2848286628723145, + "step": 876 + }, + { + "epoch": 12.18173875054609, + "grad_norm": 0.31894201040267944, + "learning_rate": 0.0006, + "loss": 4.289551258087158, + "step": 877 + }, + { + "epoch": 12.19571865443425, + "grad_norm": 0.2695826292037964, + "learning_rate": 0.0006, + "loss": 4.2797346115112305, + "step": 878 + }, + { + "epoch": 12.209698558322412, + "grad_norm": 0.23966269195079803, + "learning_rate": 0.0006, + "loss": 4.24021577835083, + "step": 879 + }, + { + "epoch": 12.223678462210572, + "grad_norm": 0.24342599511146545, + "learning_rate": 0.0006, + "loss": 4.277721881866455, + "step": 880 + }, + { + "epoch": 12.237658366098733, + "grad_norm": 0.2522958815097809, + "learning_rate": 0.0006, + "loss": 4.263946533203125, + "step": 881 + }, + { + "epoch": 12.251638269986893, + "grad_norm": 0.2708299458026886, + "learning_rate": 0.0006, + "loss": 4.274540901184082, + "step": 882 + }, + { + "epoch": 12.265618173875055, + "grad_norm": 0.2978788912296295, + "learning_rate": 0.0006, + "loss": 4.2674970626831055, + "step": 883 + }, + { + "epoch": 12.279598077763215, + "grad_norm": 0.2898774743080139, + "learning_rate": 0.0006, + "loss": 4.235060691833496, + "step": 884 + }, + { + "epoch": 12.293577981651376, + "grad_norm": 0.27941837906837463, + "learning_rate": 0.0006, + "loss": 4.284140586853027, + "step": 885 + }, + { + "epoch": 12.307557885539538, + "grad_norm": 0.25050559639930725, + "learning_rate": 0.0006, + "loss": 4.270134925842285, + "step": 886 + }, + { + "epoch": 12.321537789427698, + "grad_norm": 0.21867156028747559, + "learning_rate": 0.0006, + "loss": 4.241571426391602, + "step": 887 + }, + { + "epoch": 12.33551769331586, + "grad_norm": 0.24735847115516663, + "learning_rate": 0.0006, + "loss": 4.253087997436523, + "step": 888 + }, + { + "epoch": 12.349497597204019, + "grad_norm": 0.23069104552268982, + "learning_rate": 0.0006, + "loss": 4.258606910705566, + "step": 889 + }, + { + "epoch": 12.36347750109218, + "grad_norm": 0.2594369947910309, + "learning_rate": 0.0006, + "loss": 4.307351112365723, + "step": 890 + }, + { + "epoch": 12.37745740498034, + "grad_norm": 0.25349098443984985, + "learning_rate": 0.0006, + "loss": 4.264268398284912, + "step": 891 + }, + { + "epoch": 12.391437308868502, + "grad_norm": 0.2550840675830841, + "learning_rate": 0.0006, + "loss": 4.247092247009277, + "step": 892 + }, + { + "epoch": 12.405417212756662, + "grad_norm": 0.2107602059841156, + "learning_rate": 0.0006, + "loss": 4.240527153015137, + "step": 893 + }, + { + "epoch": 12.419397116644824, + "grad_norm": 0.2025548368692398, + "learning_rate": 0.0006, + "loss": 4.244686126708984, + "step": 894 + }, + { + "epoch": 12.433377020532983, + "grad_norm": 0.22061701118946075, + "learning_rate": 0.0006, + "loss": 4.233231544494629, + "step": 895 + }, + { + "epoch": 12.447356924421145, + "grad_norm": 0.19503085315227509, + "learning_rate": 0.0006, + "loss": 4.23851203918457, + "step": 896 + }, + { + "epoch": 12.461336828309305, + "grad_norm": 0.19313643872737885, + "learning_rate": 0.0006, + "loss": 4.190886497497559, + "step": 897 + }, + { + "epoch": 12.475316732197467, + "grad_norm": 0.21094176173210144, + "learning_rate": 0.0006, + "loss": 4.277888298034668, + "step": 898 + }, + { + "epoch": 12.489296636085626, + "grad_norm": 0.1980651170015335, + "learning_rate": 0.0006, + "loss": 4.251066207885742, + "step": 899 + }, + { + "epoch": 12.503276539973788, + "grad_norm": 0.179737389087677, + "learning_rate": 0.0006, + "loss": 4.194703102111816, + "step": 900 + }, + { + "epoch": 12.517256443861948, + "grad_norm": 0.19069281220436096, + "learning_rate": 0.0006, + "loss": 4.242412567138672, + "step": 901 + }, + { + "epoch": 12.53123634775011, + "grad_norm": 0.191154345870018, + "learning_rate": 0.0006, + "loss": 4.2432780265808105, + "step": 902 + }, + { + "epoch": 12.54521625163827, + "grad_norm": 0.19760103523731232, + "learning_rate": 0.0006, + "loss": 4.23294734954834, + "step": 903 + }, + { + "epoch": 12.55919615552643, + "grad_norm": 0.19982324540615082, + "learning_rate": 0.0006, + "loss": 4.249764442443848, + "step": 904 + }, + { + "epoch": 12.57317605941459, + "grad_norm": 0.1986108422279358, + "learning_rate": 0.0006, + "loss": 4.213435649871826, + "step": 905 + }, + { + "epoch": 12.587155963302752, + "grad_norm": 0.19727319478988647, + "learning_rate": 0.0006, + "loss": 4.247962951660156, + "step": 906 + }, + { + "epoch": 12.601135867190912, + "grad_norm": 0.23404482007026672, + "learning_rate": 0.0006, + "loss": 4.237396240234375, + "step": 907 + }, + { + "epoch": 12.615115771079074, + "grad_norm": 0.21136441826820374, + "learning_rate": 0.0006, + "loss": 4.236040115356445, + "step": 908 + }, + { + "epoch": 12.629095674967235, + "grad_norm": 0.2209048718214035, + "learning_rate": 0.0006, + "loss": 4.234212875366211, + "step": 909 + }, + { + "epoch": 12.643075578855395, + "grad_norm": 0.22120307385921478, + "learning_rate": 0.0006, + "loss": 4.2711076736450195, + "step": 910 + }, + { + "epoch": 12.657055482743557, + "grad_norm": 0.22733066976070404, + "learning_rate": 0.0006, + "loss": 4.231651306152344, + "step": 911 + }, + { + "epoch": 12.671035386631717, + "grad_norm": 0.2435602843761444, + "learning_rate": 0.0006, + "loss": 4.249372482299805, + "step": 912 + }, + { + "epoch": 12.685015290519878, + "grad_norm": 0.28881654143333435, + "learning_rate": 0.0006, + "loss": 4.2626051902771, + "step": 913 + }, + { + "epoch": 12.698995194408038, + "grad_norm": 0.3211199641227722, + "learning_rate": 0.0006, + "loss": 4.254220485687256, + "step": 914 + }, + { + "epoch": 12.7129750982962, + "grad_norm": 0.3118100166320801, + "learning_rate": 0.0006, + "loss": 4.233747959136963, + "step": 915 + }, + { + "epoch": 12.72695500218436, + "grad_norm": 0.33411866426467896, + "learning_rate": 0.0006, + "loss": 4.270386219024658, + "step": 916 + }, + { + "epoch": 12.740934906072521, + "grad_norm": 0.2968253195285797, + "learning_rate": 0.0006, + "loss": 4.242254257202148, + "step": 917 + }, + { + "epoch": 12.754914809960681, + "grad_norm": 0.2959132194519043, + "learning_rate": 0.0006, + "loss": 4.232100486755371, + "step": 918 + }, + { + "epoch": 12.768894713848843, + "grad_norm": 0.2729283273220062, + "learning_rate": 0.0006, + "loss": 4.233869552612305, + "step": 919 + }, + { + "epoch": 12.782874617737003, + "grad_norm": 0.2669033408164978, + "learning_rate": 0.0006, + "loss": 4.261008262634277, + "step": 920 + }, + { + "epoch": 12.796854521625164, + "grad_norm": 0.2738507091999054, + "learning_rate": 0.0006, + "loss": 4.2286763191223145, + "step": 921 + }, + { + "epoch": 12.810834425513324, + "grad_norm": 0.29105183482170105, + "learning_rate": 0.0006, + "loss": 4.281410217285156, + "step": 922 + }, + { + "epoch": 12.824814329401486, + "grad_norm": 0.31330201029777527, + "learning_rate": 0.0006, + "loss": 4.264181613922119, + "step": 923 + }, + { + "epoch": 12.838794233289645, + "grad_norm": 0.31324025988578796, + "learning_rate": 0.0006, + "loss": 4.250385284423828, + "step": 924 + }, + { + "epoch": 12.852774137177807, + "grad_norm": 0.2727925181388855, + "learning_rate": 0.0006, + "loss": 4.24821138381958, + "step": 925 + }, + { + "epoch": 12.866754041065967, + "grad_norm": 0.27350082993507385, + "learning_rate": 0.0006, + "loss": 4.230215072631836, + "step": 926 + }, + { + "epoch": 12.880733944954128, + "grad_norm": 0.2269950658082962, + "learning_rate": 0.0006, + "loss": 4.210305213928223, + "step": 927 + }, + { + "epoch": 12.89471384884229, + "grad_norm": 0.24667619168758392, + "learning_rate": 0.0006, + "loss": 4.239969253540039, + "step": 928 + }, + { + "epoch": 12.90869375273045, + "grad_norm": 0.22510501742362976, + "learning_rate": 0.0006, + "loss": 4.192750930786133, + "step": 929 + }, + { + "epoch": 12.922673656618612, + "grad_norm": 0.22887611389160156, + "learning_rate": 0.0006, + "loss": 4.264463424682617, + "step": 930 + }, + { + "epoch": 12.936653560506771, + "grad_norm": 0.22195978462696075, + "learning_rate": 0.0006, + "loss": 4.205256938934326, + "step": 931 + }, + { + "epoch": 12.950633464394933, + "grad_norm": 0.23184578120708466, + "learning_rate": 0.0006, + "loss": 4.214578628540039, + "step": 932 + }, + { + "epoch": 12.964613368283093, + "grad_norm": 0.2186676561832428, + "learning_rate": 0.0006, + "loss": 4.227711200714111, + "step": 933 + }, + { + "epoch": 12.978593272171254, + "grad_norm": 0.2160426527261734, + "learning_rate": 0.0006, + "loss": 4.221796989440918, + "step": 934 + }, + { + "epoch": 12.992573176059414, + "grad_norm": 0.21562792360782623, + "learning_rate": 0.0006, + "loss": 4.21957540512085, + "step": 935 + }, + { + "epoch": 13.0, + "grad_norm": 0.22538058459758759, + "learning_rate": 0.0006, + "loss": 4.2353973388671875, + "step": 936 + }, + { + "epoch": 13.0, + "eval_loss": 4.426600933074951, + "eval_runtime": 44.8138, + "eval_samples_per_second": 54.492, + "eval_steps_per_second": 3.414, + "step": 936 + }, + { + "epoch": 13.013979903888162, + "grad_norm": 0.24888049066066742, + "learning_rate": 0.0006, + "loss": 4.18648624420166, + "step": 937 + }, + { + "epoch": 13.027959807776321, + "grad_norm": 0.28330180048942566, + "learning_rate": 0.0006, + "loss": 4.188892364501953, + "step": 938 + }, + { + "epoch": 13.041939711664483, + "grad_norm": 0.31152188777923584, + "learning_rate": 0.0006, + "loss": 4.2053399085998535, + "step": 939 + }, + { + "epoch": 13.055919615552643, + "grad_norm": 0.2842433452606201, + "learning_rate": 0.0006, + "loss": 4.191902160644531, + "step": 940 + }, + { + "epoch": 13.069899519440805, + "grad_norm": 0.23664532601833344, + "learning_rate": 0.0006, + "loss": 4.1831865310668945, + "step": 941 + }, + { + "epoch": 13.083879423328964, + "grad_norm": 0.24204140901565552, + "learning_rate": 0.0006, + "loss": 4.202641487121582, + "step": 942 + }, + { + "epoch": 13.097859327217126, + "grad_norm": 0.235311359167099, + "learning_rate": 0.0006, + "loss": 4.174511909484863, + "step": 943 + }, + { + "epoch": 13.111839231105286, + "grad_norm": 0.27127715945243835, + "learning_rate": 0.0006, + "loss": 4.201844215393066, + "step": 944 + }, + { + "epoch": 13.125819134993447, + "grad_norm": 0.2722373604774475, + "learning_rate": 0.0006, + "loss": 4.157383918762207, + "step": 945 + }, + { + "epoch": 13.139799038881607, + "grad_norm": 0.25446659326553345, + "learning_rate": 0.0006, + "loss": 4.221236228942871, + "step": 946 + }, + { + "epoch": 13.153778942769769, + "grad_norm": 0.273017019033432, + "learning_rate": 0.0006, + "loss": 4.195512771606445, + "step": 947 + }, + { + "epoch": 13.167758846657929, + "grad_norm": 0.24766312539577484, + "learning_rate": 0.0006, + "loss": 4.220959663391113, + "step": 948 + }, + { + "epoch": 13.18173875054609, + "grad_norm": 0.24636317789554596, + "learning_rate": 0.0006, + "loss": 4.214302062988281, + "step": 949 + }, + { + "epoch": 13.19571865443425, + "grad_norm": 0.3177756667137146, + "learning_rate": 0.0006, + "loss": 4.213500022888184, + "step": 950 + }, + { + "epoch": 13.209698558322412, + "grad_norm": 0.44579195976257324, + "learning_rate": 0.0006, + "loss": 4.227644920349121, + "step": 951 + }, + { + "epoch": 13.223678462210572, + "grad_norm": 0.4217414855957031, + "learning_rate": 0.0006, + "loss": 4.180937767028809, + "step": 952 + }, + { + "epoch": 13.237658366098733, + "grad_norm": 0.30148059129714966, + "learning_rate": 0.0006, + "loss": 4.207760810852051, + "step": 953 + }, + { + "epoch": 13.251638269986893, + "grad_norm": 0.3192492127418518, + "learning_rate": 0.0006, + "loss": 4.197999000549316, + "step": 954 + }, + { + "epoch": 13.265618173875055, + "grad_norm": 0.37334588170051575, + "learning_rate": 0.0006, + "loss": 4.208001136779785, + "step": 955 + }, + { + "epoch": 13.279598077763215, + "grad_norm": 0.4059637784957886, + "learning_rate": 0.0006, + "loss": 4.211322784423828, + "step": 956 + }, + { + "epoch": 13.293577981651376, + "grad_norm": 0.3389599323272705, + "learning_rate": 0.0006, + "loss": 4.204404354095459, + "step": 957 + }, + { + "epoch": 13.307557885539538, + "grad_norm": 0.2675766050815582, + "learning_rate": 0.0006, + "loss": 4.245941162109375, + "step": 958 + }, + { + "epoch": 13.321537789427698, + "grad_norm": 0.2730264365673065, + "learning_rate": 0.0006, + "loss": 4.2221221923828125, + "step": 959 + }, + { + "epoch": 13.33551769331586, + "grad_norm": 0.26458224654197693, + "learning_rate": 0.0006, + "loss": 4.205596923828125, + "step": 960 + }, + { + "epoch": 13.349497597204019, + "grad_norm": 0.2872551381587982, + "learning_rate": 0.0006, + "loss": 4.196977615356445, + "step": 961 + }, + { + "epoch": 13.36347750109218, + "grad_norm": 0.2954796850681305, + "learning_rate": 0.0006, + "loss": 4.202796936035156, + "step": 962 + }, + { + "epoch": 13.37745740498034, + "grad_norm": 0.2619425654411316, + "learning_rate": 0.0006, + "loss": 4.196845054626465, + "step": 963 + }, + { + "epoch": 13.391437308868502, + "grad_norm": 0.30088478326797485, + "learning_rate": 0.0006, + "loss": 4.219697952270508, + "step": 964 + }, + { + "epoch": 13.405417212756662, + "grad_norm": 0.30388689041137695, + "learning_rate": 0.0006, + "loss": 4.187566757202148, + "step": 965 + }, + { + "epoch": 13.419397116644824, + "grad_norm": 0.27918127179145813, + "learning_rate": 0.0006, + "loss": 4.223600387573242, + "step": 966 + }, + { + "epoch": 13.433377020532983, + "grad_norm": 0.27634528279304504, + "learning_rate": 0.0006, + "loss": 4.165332317352295, + "step": 967 + }, + { + "epoch": 13.447356924421145, + "grad_norm": 0.28830021619796753, + "learning_rate": 0.0006, + "loss": 4.204029560089111, + "step": 968 + }, + { + "epoch": 13.461336828309305, + "grad_norm": 0.29220864176750183, + "learning_rate": 0.0006, + "loss": 4.218057155609131, + "step": 969 + }, + { + "epoch": 13.475316732197467, + "grad_norm": 0.3089624345302582, + "learning_rate": 0.0006, + "loss": 4.200654983520508, + "step": 970 + }, + { + "epoch": 13.489296636085626, + "grad_norm": 0.36479851603507996, + "learning_rate": 0.0006, + "loss": 4.182811737060547, + "step": 971 + }, + { + "epoch": 13.503276539973788, + "grad_norm": 0.37561097741127014, + "learning_rate": 0.0006, + "loss": 4.190266132354736, + "step": 972 + }, + { + "epoch": 13.517256443861948, + "grad_norm": 0.3263583183288574, + "learning_rate": 0.0006, + "loss": 4.214815616607666, + "step": 973 + }, + { + "epoch": 13.53123634775011, + "grad_norm": 0.21552999317646027, + "learning_rate": 0.0006, + "loss": 4.171380043029785, + "step": 974 + }, + { + "epoch": 13.54521625163827, + "grad_norm": 0.247328519821167, + "learning_rate": 0.0006, + "loss": 4.175377368927002, + "step": 975 + }, + { + "epoch": 13.55919615552643, + "grad_norm": 0.23740540444850922, + "learning_rate": 0.0006, + "loss": 4.212357997894287, + "step": 976 + }, + { + "epoch": 13.57317605941459, + "grad_norm": 0.21533876657485962, + "learning_rate": 0.0006, + "loss": 4.203285217285156, + "step": 977 + }, + { + "epoch": 13.587155963302752, + "grad_norm": 0.21462024748325348, + "learning_rate": 0.0006, + "loss": 4.178012371063232, + "step": 978 + }, + { + "epoch": 13.601135867190912, + "grad_norm": 0.2279169261455536, + "learning_rate": 0.0006, + "loss": 4.193912982940674, + "step": 979 + }, + { + "epoch": 13.615115771079074, + "grad_norm": 0.2202417552471161, + "learning_rate": 0.0006, + "loss": 4.167629718780518, + "step": 980 + }, + { + "epoch": 13.629095674967235, + "grad_norm": 0.20586472749710083, + "learning_rate": 0.0006, + "loss": 4.159290313720703, + "step": 981 + }, + { + "epoch": 13.643075578855395, + "grad_norm": 0.20200690627098083, + "learning_rate": 0.0006, + "loss": 4.210315227508545, + "step": 982 + }, + { + "epoch": 13.657055482743557, + "grad_norm": 0.21710257232189178, + "learning_rate": 0.0006, + "loss": 4.21730375289917, + "step": 983 + }, + { + "epoch": 13.671035386631717, + "grad_norm": 0.22058045864105225, + "learning_rate": 0.0006, + "loss": 4.1996073722839355, + "step": 984 + }, + { + "epoch": 13.685015290519878, + "grad_norm": 0.21549592912197113, + "learning_rate": 0.0006, + "loss": 4.209203720092773, + "step": 985 + }, + { + "epoch": 13.698995194408038, + "grad_norm": 0.22274717688560486, + "learning_rate": 0.0006, + "loss": 4.220660209655762, + "step": 986 + }, + { + "epoch": 13.7129750982962, + "grad_norm": 0.22791637480258942, + "learning_rate": 0.0006, + "loss": 4.158679962158203, + "step": 987 + }, + { + "epoch": 13.72695500218436, + "grad_norm": 0.216218963265419, + "learning_rate": 0.0006, + "loss": 4.188124656677246, + "step": 988 + }, + { + "epoch": 13.740934906072521, + "grad_norm": 0.19149383902549744, + "learning_rate": 0.0006, + "loss": 4.181729316711426, + "step": 989 + }, + { + "epoch": 13.754914809960681, + "grad_norm": 0.18964019417762756, + "learning_rate": 0.0006, + "loss": 4.184767246246338, + "step": 990 + }, + { + "epoch": 13.768894713848843, + "grad_norm": 0.1778000295162201, + "learning_rate": 0.0006, + "loss": 4.1802263259887695, + "step": 991 + }, + { + "epoch": 13.782874617737003, + "grad_norm": 0.18277616798877716, + "learning_rate": 0.0006, + "loss": 4.1657867431640625, + "step": 992 + }, + { + "epoch": 13.796854521625164, + "grad_norm": 0.18610034883022308, + "learning_rate": 0.0006, + "loss": 4.156744956970215, + "step": 993 + }, + { + "epoch": 13.810834425513324, + "grad_norm": 0.19332963228225708, + "learning_rate": 0.0006, + "loss": 4.143558502197266, + "step": 994 + }, + { + "epoch": 13.824814329401486, + "grad_norm": 0.19758112728595734, + "learning_rate": 0.0006, + "loss": 4.195793151855469, + "step": 995 + }, + { + "epoch": 13.838794233289645, + "grad_norm": 0.1933647245168686, + "learning_rate": 0.0006, + "loss": 4.169734954833984, + "step": 996 + }, + { + "epoch": 13.852774137177807, + "grad_norm": 0.2362028956413269, + "learning_rate": 0.0006, + "loss": 4.175025939941406, + "step": 997 + }, + { + "epoch": 13.866754041065967, + "grad_norm": 0.2465490996837616, + "learning_rate": 0.0006, + "loss": 4.173909664154053, + "step": 998 + }, + { + "epoch": 13.880733944954128, + "grad_norm": 0.23449952900409698, + "learning_rate": 0.0006, + "loss": 4.173429489135742, + "step": 999 + }, + { + "epoch": 13.89471384884229, + "grad_norm": 0.2282160222530365, + "learning_rate": 0.0006, + "loss": 4.158538341522217, + "step": 1000 + }, + { + "epoch": 13.90869375273045, + "grad_norm": 0.21066738665103912, + "learning_rate": 0.0006, + "loss": 4.171584129333496, + "step": 1001 + }, + { + "epoch": 13.922673656618612, + "grad_norm": 0.18787573277950287, + "learning_rate": 0.0006, + "loss": 4.1837544441223145, + "step": 1002 + }, + { + "epoch": 13.936653560506771, + "grad_norm": 0.2001059353351593, + "learning_rate": 0.0006, + "loss": 4.160369873046875, + "step": 1003 + }, + { + "epoch": 13.950633464394933, + "grad_norm": 0.21644988656044006, + "learning_rate": 0.0006, + "loss": 4.221372604370117, + "step": 1004 + }, + { + "epoch": 13.964613368283093, + "grad_norm": 0.22083887457847595, + "learning_rate": 0.0006, + "loss": 4.149261474609375, + "step": 1005 + }, + { + "epoch": 13.978593272171254, + "grad_norm": 0.2201409637928009, + "learning_rate": 0.0006, + "loss": 4.192010879516602, + "step": 1006 + }, + { + "epoch": 13.992573176059414, + "grad_norm": 0.18888601660728455, + "learning_rate": 0.0006, + "loss": 4.17539119720459, + "step": 1007 + }, + { + "epoch": 14.0, + "grad_norm": 0.2073872834444046, + "learning_rate": 0.0006, + "loss": 4.145265579223633, + "step": 1008 + }, + { + "epoch": 14.0, + "eval_loss": 4.36876106262207, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 1008 + }, + { + "epoch": 14.013979903888162, + "grad_norm": 0.20773135125637054, + "learning_rate": 0.0006, + "loss": 4.132615089416504, + "step": 1009 + }, + { + "epoch": 14.027959807776321, + "grad_norm": 0.22409620881080627, + "learning_rate": 0.0006, + "loss": 4.172839164733887, + "step": 1010 + }, + { + "epoch": 14.041939711664483, + "grad_norm": 0.24046066403388977, + "learning_rate": 0.0006, + "loss": 4.126678943634033, + "step": 1011 + }, + { + "epoch": 14.055919615552643, + "grad_norm": 0.29185160994529724, + "learning_rate": 0.0006, + "loss": 4.177952766418457, + "step": 1012 + }, + { + "epoch": 14.069899519440805, + "grad_norm": 0.2984033226966858, + "learning_rate": 0.0006, + "loss": 4.155030250549316, + "step": 1013 + }, + { + "epoch": 14.083879423328964, + "grad_norm": 0.30262473225593567, + "learning_rate": 0.0006, + "loss": 4.145394325256348, + "step": 1014 + }, + { + "epoch": 14.097859327217126, + "grad_norm": 0.3278133273124695, + "learning_rate": 0.0006, + "loss": 4.172739028930664, + "step": 1015 + }, + { + "epoch": 14.111839231105286, + "grad_norm": 0.3285452425479889, + "learning_rate": 0.0006, + "loss": 4.153196334838867, + "step": 1016 + }, + { + "epoch": 14.125819134993447, + "grad_norm": 0.33912697434425354, + "learning_rate": 0.0006, + "loss": 4.098162651062012, + "step": 1017 + }, + { + "epoch": 14.139799038881607, + "grad_norm": 0.32080814242362976, + "learning_rate": 0.0006, + "loss": 4.157135009765625, + "step": 1018 + }, + { + "epoch": 14.153778942769769, + "grad_norm": 0.31288477778434753, + "learning_rate": 0.0006, + "loss": 4.142683029174805, + "step": 1019 + }, + { + "epoch": 14.167758846657929, + "grad_norm": 0.350289523601532, + "learning_rate": 0.0006, + "loss": 4.134700775146484, + "step": 1020 + }, + { + "epoch": 14.18173875054609, + "grad_norm": 0.34274575114250183, + "learning_rate": 0.0006, + "loss": 4.1578569412231445, + "step": 1021 + }, + { + "epoch": 14.19571865443425, + "grad_norm": 0.2843035161495209, + "learning_rate": 0.0006, + "loss": 4.13760232925415, + "step": 1022 + }, + { + "epoch": 14.209698558322412, + "grad_norm": 0.28235161304473877, + "learning_rate": 0.0006, + "loss": 4.1492462158203125, + "step": 1023 + }, + { + "epoch": 14.223678462210572, + "grad_norm": 0.24407248198986053, + "learning_rate": 0.0006, + "loss": 4.144372463226318, + "step": 1024 + }, + { + "epoch": 14.237658366098733, + "grad_norm": 0.2489742934703827, + "learning_rate": 0.0006, + "loss": 4.137950897216797, + "step": 1025 + }, + { + "epoch": 14.251638269986893, + "grad_norm": 0.26035651564598083, + "learning_rate": 0.0006, + "loss": 4.144070625305176, + "step": 1026 + }, + { + "epoch": 14.265618173875055, + "grad_norm": 0.2726516127586365, + "learning_rate": 0.0006, + "loss": 4.145204067230225, + "step": 1027 + }, + { + "epoch": 14.279598077763215, + "grad_norm": 0.2723483443260193, + "learning_rate": 0.0006, + "loss": 4.118407249450684, + "step": 1028 + }, + { + "epoch": 14.293577981651376, + "grad_norm": 0.27476269006729126, + "learning_rate": 0.0006, + "loss": 4.111325263977051, + "step": 1029 + }, + { + "epoch": 14.307557885539538, + "grad_norm": 0.26202502846717834, + "learning_rate": 0.0006, + "loss": 4.122248649597168, + "step": 1030 + }, + { + "epoch": 14.321537789427698, + "grad_norm": 0.2472032904624939, + "learning_rate": 0.0006, + "loss": 4.157790184020996, + "step": 1031 + }, + { + "epoch": 14.33551769331586, + "grad_norm": 0.2518343925476074, + "learning_rate": 0.0006, + "loss": 4.109132766723633, + "step": 1032 + }, + { + "epoch": 14.349497597204019, + "grad_norm": 0.2652401924133301, + "learning_rate": 0.0006, + "loss": 4.144079685211182, + "step": 1033 + }, + { + "epoch": 14.36347750109218, + "grad_norm": 0.2356770783662796, + "learning_rate": 0.0006, + "loss": 4.128426551818848, + "step": 1034 + }, + { + "epoch": 14.37745740498034, + "grad_norm": 0.2164214551448822, + "learning_rate": 0.0006, + "loss": 4.1644392013549805, + "step": 1035 + }, + { + "epoch": 14.391437308868502, + "grad_norm": 0.22383111715316772, + "learning_rate": 0.0006, + "loss": 4.165862083435059, + "step": 1036 + }, + { + "epoch": 14.405417212756662, + "grad_norm": 0.23152419924736023, + "learning_rate": 0.0006, + "loss": 4.140036582946777, + "step": 1037 + }, + { + "epoch": 14.419397116644824, + "grad_norm": 0.2387741357088089, + "learning_rate": 0.0006, + "loss": 4.130461692810059, + "step": 1038 + }, + { + "epoch": 14.433377020532983, + "grad_norm": 0.24018129706382751, + "learning_rate": 0.0006, + "loss": 4.148482322692871, + "step": 1039 + }, + { + "epoch": 14.447356924421145, + "grad_norm": 0.25487351417541504, + "learning_rate": 0.0006, + "loss": 4.158121109008789, + "step": 1040 + }, + { + "epoch": 14.461336828309305, + "grad_norm": 0.28220096230506897, + "learning_rate": 0.0006, + "loss": 4.160198211669922, + "step": 1041 + }, + { + "epoch": 14.475316732197467, + "grad_norm": 0.2574434280395508, + "learning_rate": 0.0006, + "loss": 4.168512344360352, + "step": 1042 + }, + { + "epoch": 14.489296636085626, + "grad_norm": 0.22569820284843445, + "learning_rate": 0.0006, + "loss": 4.1595001220703125, + "step": 1043 + }, + { + "epoch": 14.503276539973788, + "grad_norm": 0.2473423182964325, + "learning_rate": 0.0006, + "loss": 4.084580898284912, + "step": 1044 + }, + { + "epoch": 14.517256443861948, + "grad_norm": 0.24281060695648193, + "learning_rate": 0.0006, + "loss": 4.139714241027832, + "step": 1045 + }, + { + "epoch": 14.53123634775011, + "grad_norm": 0.24691344797611237, + "learning_rate": 0.0006, + "loss": 4.115398406982422, + "step": 1046 + }, + { + "epoch": 14.54521625163827, + "grad_norm": 0.2583645284175873, + "learning_rate": 0.0006, + "loss": 4.142148494720459, + "step": 1047 + }, + { + "epoch": 14.55919615552643, + "grad_norm": 0.23258574306964874, + "learning_rate": 0.0006, + "loss": 4.16251277923584, + "step": 1048 + }, + { + "epoch": 14.57317605941459, + "grad_norm": 0.22103039920330048, + "learning_rate": 0.0006, + "loss": 4.1308441162109375, + "step": 1049 + }, + { + "epoch": 14.587155963302752, + "grad_norm": 0.23713579773902893, + "learning_rate": 0.0006, + "loss": 4.1565985679626465, + "step": 1050 + }, + { + "epoch": 14.601135867190912, + "grad_norm": 0.24406634271144867, + "learning_rate": 0.0006, + "loss": 4.14628267288208, + "step": 1051 + }, + { + "epoch": 14.615115771079074, + "grad_norm": 0.26821228861808777, + "learning_rate": 0.0006, + "loss": 4.138063430786133, + "step": 1052 + }, + { + "epoch": 14.629095674967235, + "grad_norm": 0.25483864545822144, + "learning_rate": 0.0006, + "loss": 4.1311163902282715, + "step": 1053 + }, + { + "epoch": 14.643075578855395, + "grad_norm": 0.23937982320785522, + "learning_rate": 0.0006, + "loss": 4.150882244110107, + "step": 1054 + }, + { + "epoch": 14.657055482743557, + "grad_norm": 0.21896475553512573, + "learning_rate": 0.0006, + "loss": 4.114015102386475, + "step": 1055 + }, + { + "epoch": 14.671035386631717, + "grad_norm": 0.20821231603622437, + "learning_rate": 0.0006, + "loss": 4.139034271240234, + "step": 1056 + }, + { + "epoch": 14.685015290519878, + "grad_norm": 0.1978551596403122, + "learning_rate": 0.0006, + "loss": 4.1810503005981445, + "step": 1057 + }, + { + "epoch": 14.698995194408038, + "grad_norm": 0.1945771872997284, + "learning_rate": 0.0006, + "loss": 4.120734214782715, + "step": 1058 + }, + { + "epoch": 14.7129750982962, + "grad_norm": 0.19518673419952393, + "learning_rate": 0.0006, + "loss": 4.14264440536499, + "step": 1059 + }, + { + "epoch": 14.72695500218436, + "grad_norm": 0.202596515417099, + "learning_rate": 0.0006, + "loss": 4.151649475097656, + "step": 1060 + }, + { + "epoch": 14.740934906072521, + "grad_norm": 0.1904762089252472, + "learning_rate": 0.0006, + "loss": 4.127899169921875, + "step": 1061 + }, + { + "epoch": 14.754914809960681, + "grad_norm": 0.20685508847236633, + "learning_rate": 0.0006, + "loss": 4.093445777893066, + "step": 1062 + }, + { + "epoch": 14.768894713848843, + "grad_norm": 0.22678329050540924, + "learning_rate": 0.0006, + "loss": 4.132084369659424, + "step": 1063 + }, + { + "epoch": 14.782874617737003, + "grad_norm": 0.24631841480731964, + "learning_rate": 0.0006, + "loss": 4.154788970947266, + "step": 1064 + }, + { + "epoch": 14.796854521625164, + "grad_norm": 0.24445782601833344, + "learning_rate": 0.0006, + "loss": 4.144735336303711, + "step": 1065 + }, + { + "epoch": 14.810834425513324, + "grad_norm": 0.22330640256404877, + "learning_rate": 0.0006, + "loss": 4.159893989562988, + "step": 1066 + }, + { + "epoch": 14.824814329401486, + "grad_norm": 0.22422967851161957, + "learning_rate": 0.0006, + "loss": 4.104874610900879, + "step": 1067 + }, + { + "epoch": 14.838794233289645, + "grad_norm": 0.24583931267261505, + "learning_rate": 0.0006, + "loss": 4.139403820037842, + "step": 1068 + }, + { + "epoch": 14.852774137177807, + "grad_norm": 0.2917379140853882, + "learning_rate": 0.0006, + "loss": 4.168988227844238, + "step": 1069 + }, + { + "epoch": 14.866754041065967, + "grad_norm": 0.3171777129173279, + "learning_rate": 0.0006, + "loss": 4.131263732910156, + "step": 1070 + }, + { + "epoch": 14.880733944954128, + "grad_norm": 0.3039591312408447, + "learning_rate": 0.0006, + "loss": 4.149853706359863, + "step": 1071 + }, + { + "epoch": 14.89471384884229, + "grad_norm": 0.2690650522708893, + "learning_rate": 0.0006, + "loss": 4.154787540435791, + "step": 1072 + }, + { + "epoch": 14.90869375273045, + "grad_norm": 0.28683212399482727, + "learning_rate": 0.0006, + "loss": 4.12751579284668, + "step": 1073 + }, + { + "epoch": 14.922673656618612, + "grad_norm": 0.30022913217544556, + "learning_rate": 0.0006, + "loss": 4.141940116882324, + "step": 1074 + }, + { + "epoch": 14.936653560506771, + "grad_norm": 0.3312259316444397, + "learning_rate": 0.0006, + "loss": 4.141905784606934, + "step": 1075 + }, + { + "epoch": 14.950633464394933, + "grad_norm": 0.31159237027168274, + "learning_rate": 0.0006, + "loss": 4.160192966461182, + "step": 1076 + }, + { + "epoch": 14.964613368283093, + "grad_norm": 0.30093592405319214, + "learning_rate": 0.0006, + "loss": 4.1085076332092285, + "step": 1077 + }, + { + "epoch": 14.978593272171254, + "grad_norm": 0.2728535830974579, + "learning_rate": 0.0006, + "loss": 4.156959056854248, + "step": 1078 + }, + { + "epoch": 14.992573176059414, + "grad_norm": 0.24766813218593597, + "learning_rate": 0.0006, + "loss": 4.113999843597412, + "step": 1079 + }, + { + "epoch": 15.0, + "grad_norm": 0.2538154721260071, + "learning_rate": 0.0006, + "loss": 4.147134780883789, + "step": 1080 + }, + { + "epoch": 15.0, + "eval_loss": 4.323154926300049, + "eval_runtime": 44.8813, + "eval_samples_per_second": 54.41, + "eval_steps_per_second": 3.409, + "step": 1080 + }, + { + "epoch": 15.013979903888162, + "grad_norm": 0.22535280883312225, + "learning_rate": 0.0006, + "loss": 4.112179756164551, + "step": 1081 + }, + { + "epoch": 15.027959807776321, + "grad_norm": 0.24340929090976715, + "learning_rate": 0.0006, + "loss": 4.080923080444336, + "step": 1082 + }, + { + "epoch": 15.041939711664483, + "grad_norm": 0.23159465193748474, + "learning_rate": 0.0006, + "loss": 4.097067356109619, + "step": 1083 + }, + { + "epoch": 15.055919615552643, + "grad_norm": 0.22674769163131714, + "learning_rate": 0.0006, + "loss": 4.118601322174072, + "step": 1084 + }, + { + "epoch": 15.069899519440805, + "grad_norm": 0.2524292469024658, + "learning_rate": 0.0006, + "loss": 4.101109504699707, + "step": 1085 + }, + { + "epoch": 15.083879423328964, + "grad_norm": 0.2505405843257904, + "learning_rate": 0.0006, + "loss": 4.121405601501465, + "step": 1086 + }, + { + "epoch": 15.097859327217126, + "grad_norm": 0.2557983696460724, + "learning_rate": 0.0006, + "loss": 4.1063947677612305, + "step": 1087 + }, + { + "epoch": 15.111839231105286, + "grad_norm": 0.24452129006385803, + "learning_rate": 0.0006, + "loss": 4.086133003234863, + "step": 1088 + }, + { + "epoch": 15.125819134993447, + "grad_norm": 0.25821781158447266, + "learning_rate": 0.0006, + "loss": 4.076262950897217, + "step": 1089 + }, + { + "epoch": 15.139799038881607, + "grad_norm": 0.23650537431240082, + "learning_rate": 0.0006, + "loss": 4.101842880249023, + "step": 1090 + }, + { + "epoch": 15.153778942769769, + "grad_norm": 0.2206192910671234, + "learning_rate": 0.0006, + "loss": 4.11027193069458, + "step": 1091 + }, + { + "epoch": 15.167758846657929, + "grad_norm": 0.21843163669109344, + "learning_rate": 0.0006, + "loss": 4.098437309265137, + "step": 1092 + }, + { + "epoch": 15.18173875054609, + "grad_norm": 0.2528176009654999, + "learning_rate": 0.0006, + "loss": 4.108713150024414, + "step": 1093 + }, + { + "epoch": 15.19571865443425, + "grad_norm": 0.26697206497192383, + "learning_rate": 0.0006, + "loss": 4.113210201263428, + "step": 1094 + }, + { + "epoch": 15.209698558322412, + "grad_norm": 0.26480963826179504, + "learning_rate": 0.0006, + "loss": 4.1103620529174805, + "step": 1095 + }, + { + "epoch": 15.223678462210572, + "grad_norm": 0.24887347221374512, + "learning_rate": 0.0006, + "loss": 4.103529930114746, + "step": 1096 + }, + { + "epoch": 15.237658366098733, + "grad_norm": 0.2344668060541153, + "learning_rate": 0.0006, + "loss": 4.129784107208252, + "step": 1097 + }, + { + "epoch": 15.251638269986893, + "grad_norm": 0.22639742493629456, + "learning_rate": 0.0006, + "loss": 4.113495349884033, + "step": 1098 + }, + { + "epoch": 15.265618173875055, + "grad_norm": 0.22466333210468292, + "learning_rate": 0.0006, + "loss": 4.102309703826904, + "step": 1099 + }, + { + "epoch": 15.279598077763215, + "grad_norm": 0.25135037302970886, + "learning_rate": 0.0006, + "loss": 4.117668628692627, + "step": 1100 + }, + { + "epoch": 15.293577981651376, + "grad_norm": 0.2347089946269989, + "learning_rate": 0.0006, + "loss": 4.086637496948242, + "step": 1101 + }, + { + "epoch": 15.307557885539538, + "grad_norm": 0.2347242832183838, + "learning_rate": 0.0006, + "loss": 4.098714828491211, + "step": 1102 + }, + { + "epoch": 15.321537789427698, + "grad_norm": 0.23990283906459808, + "learning_rate": 0.0006, + "loss": 4.079837799072266, + "step": 1103 + }, + { + "epoch": 15.33551769331586, + "grad_norm": 0.22366675734519958, + "learning_rate": 0.0006, + "loss": 4.108136177062988, + "step": 1104 + }, + { + "epoch": 15.349497597204019, + "grad_norm": 0.21823780238628387, + "learning_rate": 0.0006, + "loss": 4.10054349899292, + "step": 1105 + }, + { + "epoch": 15.36347750109218, + "grad_norm": 0.23059198260307312, + "learning_rate": 0.0006, + "loss": 4.108620643615723, + "step": 1106 + }, + { + "epoch": 15.37745740498034, + "grad_norm": 0.2313755601644516, + "learning_rate": 0.0006, + "loss": 4.088565826416016, + "step": 1107 + }, + { + "epoch": 15.391437308868502, + "grad_norm": 0.2546829283237457, + "learning_rate": 0.0006, + "loss": 4.104948043823242, + "step": 1108 + }, + { + "epoch": 15.405417212756662, + "grad_norm": 0.23666726052761078, + "learning_rate": 0.0006, + "loss": 4.111965179443359, + "step": 1109 + }, + { + "epoch": 15.419397116644824, + "grad_norm": 0.21971021592617035, + "learning_rate": 0.0006, + "loss": 4.097846984863281, + "step": 1110 + }, + { + "epoch": 15.433377020532983, + "grad_norm": 0.20951911807060242, + "learning_rate": 0.0006, + "loss": 4.110099792480469, + "step": 1111 + }, + { + "epoch": 15.447356924421145, + "grad_norm": 0.19590918719768524, + "learning_rate": 0.0006, + "loss": 4.101154327392578, + "step": 1112 + }, + { + "epoch": 15.461336828309305, + "grad_norm": 0.21048946678638458, + "learning_rate": 0.0006, + "loss": 4.0986127853393555, + "step": 1113 + }, + { + "epoch": 15.475316732197467, + "grad_norm": 0.21423374116420746, + "learning_rate": 0.0006, + "loss": 4.082328796386719, + "step": 1114 + }, + { + "epoch": 15.489296636085626, + "grad_norm": 0.227146714925766, + "learning_rate": 0.0006, + "loss": 4.105281829833984, + "step": 1115 + }, + { + "epoch": 15.503276539973788, + "grad_norm": 0.2079153060913086, + "learning_rate": 0.0006, + "loss": 4.100836753845215, + "step": 1116 + }, + { + "epoch": 15.517256443861948, + "grad_norm": 0.21084675192832947, + "learning_rate": 0.0006, + "loss": 4.0934343338012695, + "step": 1117 + }, + { + "epoch": 15.53123634775011, + "grad_norm": 0.23863616585731506, + "learning_rate": 0.0006, + "loss": 4.101540565490723, + "step": 1118 + }, + { + "epoch": 15.54521625163827, + "grad_norm": 0.2518490254878998, + "learning_rate": 0.0006, + "loss": 4.12303352355957, + "step": 1119 + }, + { + "epoch": 15.55919615552643, + "grad_norm": 0.24282905459403992, + "learning_rate": 0.0006, + "loss": 4.080670356750488, + "step": 1120 + }, + { + "epoch": 15.57317605941459, + "grad_norm": 0.24171605706214905, + "learning_rate": 0.0006, + "loss": 4.117938041687012, + "step": 1121 + }, + { + "epoch": 15.587155963302752, + "grad_norm": 0.28453412652015686, + "learning_rate": 0.0006, + "loss": 4.080114364624023, + "step": 1122 + }, + { + "epoch": 15.601135867190912, + "grad_norm": 0.30322617292404175, + "learning_rate": 0.0006, + "loss": 4.079695701599121, + "step": 1123 + }, + { + "epoch": 15.615115771079074, + "grad_norm": 0.2657633125782013, + "learning_rate": 0.0006, + "loss": 4.0916290283203125, + "step": 1124 + }, + { + "epoch": 15.629095674967235, + "grad_norm": 0.2467080056667328, + "learning_rate": 0.0006, + "loss": 4.095594882965088, + "step": 1125 + }, + { + "epoch": 15.643075578855395, + "grad_norm": 0.21767394244670868, + "learning_rate": 0.0006, + "loss": 4.079174041748047, + "step": 1126 + }, + { + "epoch": 15.657055482743557, + "grad_norm": 0.2088327705860138, + "learning_rate": 0.0006, + "loss": 4.060707092285156, + "step": 1127 + }, + { + "epoch": 15.671035386631717, + "grad_norm": 0.1921205073595047, + "learning_rate": 0.0006, + "loss": 4.073911666870117, + "step": 1128 + }, + { + "epoch": 15.685015290519878, + "grad_norm": 0.209339901804924, + "learning_rate": 0.0006, + "loss": 4.089954376220703, + "step": 1129 + }, + { + "epoch": 15.698995194408038, + "grad_norm": 0.23513881862163544, + "learning_rate": 0.0006, + "loss": 4.084906578063965, + "step": 1130 + }, + { + "epoch": 15.7129750982962, + "grad_norm": 0.26140275597572327, + "learning_rate": 0.0006, + "loss": 4.086570739746094, + "step": 1131 + }, + { + "epoch": 15.72695500218436, + "grad_norm": 0.290431946516037, + "learning_rate": 0.0006, + "loss": 4.071229457855225, + "step": 1132 + }, + { + "epoch": 15.740934906072521, + "grad_norm": 0.3061376214027405, + "learning_rate": 0.0006, + "loss": 4.103148460388184, + "step": 1133 + }, + { + "epoch": 15.754914809960681, + "grad_norm": 0.26312482357025146, + "learning_rate": 0.0006, + "loss": 4.088448524475098, + "step": 1134 + }, + { + "epoch": 15.768894713848843, + "grad_norm": 0.22474883496761322, + "learning_rate": 0.0006, + "loss": 4.091766834259033, + "step": 1135 + }, + { + "epoch": 15.782874617737003, + "grad_norm": 0.2341146171092987, + "learning_rate": 0.0006, + "loss": 4.1222758293151855, + "step": 1136 + }, + { + "epoch": 15.796854521625164, + "grad_norm": 0.23556149005889893, + "learning_rate": 0.0006, + "loss": 4.094954013824463, + "step": 1137 + }, + { + "epoch": 15.810834425513324, + "grad_norm": 0.263315349817276, + "learning_rate": 0.0006, + "loss": 4.1065473556518555, + "step": 1138 + }, + { + "epoch": 15.824814329401486, + "grad_norm": 0.2700869143009186, + "learning_rate": 0.0006, + "loss": 4.0890045166015625, + "step": 1139 + }, + { + "epoch": 15.838794233289645, + "grad_norm": 0.28697484731674194, + "learning_rate": 0.0006, + "loss": 4.092496395111084, + "step": 1140 + }, + { + "epoch": 15.852774137177807, + "grad_norm": 0.2824092507362366, + "learning_rate": 0.0006, + "loss": 4.079615592956543, + "step": 1141 + }, + { + "epoch": 15.866754041065967, + "grad_norm": 0.24547280371189117, + "learning_rate": 0.0006, + "loss": 4.089683532714844, + "step": 1142 + }, + { + "epoch": 15.880733944954128, + "grad_norm": 0.23653888702392578, + "learning_rate": 0.0006, + "loss": 4.067309379577637, + "step": 1143 + }, + { + "epoch": 15.89471384884229, + "grad_norm": 0.23784421384334564, + "learning_rate": 0.0006, + "loss": 4.09156608581543, + "step": 1144 + }, + { + "epoch": 15.90869375273045, + "grad_norm": 0.22753281891345978, + "learning_rate": 0.0006, + "loss": 4.095428466796875, + "step": 1145 + }, + { + "epoch": 15.922673656618612, + "grad_norm": 0.2464212030172348, + "learning_rate": 0.0006, + "loss": 4.1036376953125, + "step": 1146 + }, + { + "epoch": 15.936653560506771, + "grad_norm": 0.25531601905822754, + "learning_rate": 0.0006, + "loss": 4.073996543884277, + "step": 1147 + }, + { + "epoch": 15.950633464394933, + "grad_norm": 0.24145905673503876, + "learning_rate": 0.0006, + "loss": 4.094479560852051, + "step": 1148 + }, + { + "epoch": 15.964613368283093, + "grad_norm": 0.24274317920207977, + "learning_rate": 0.0006, + "loss": 4.101981163024902, + "step": 1149 + }, + { + "epoch": 15.978593272171254, + "grad_norm": 0.2350679188966751, + "learning_rate": 0.0006, + "loss": 4.057965278625488, + "step": 1150 + }, + { + "epoch": 15.992573176059414, + "grad_norm": 0.24072253704071045, + "learning_rate": 0.0006, + "loss": 4.020050048828125, + "step": 1151 + }, + { + "epoch": 16.0, + "grad_norm": 0.253978967666626, + "learning_rate": 0.0006, + "loss": 4.061928749084473, + "step": 1152 + }, + { + "epoch": 16.0, + "eval_loss": 4.270665645599365, + "eval_runtime": 44.5063, + "eval_samples_per_second": 54.869, + "eval_steps_per_second": 3.438, + "step": 1152 + }, + { + "epoch": 16.01397990388816, + "grad_norm": 0.3265204131603241, + "learning_rate": 0.0006, + "loss": 4.059116363525391, + "step": 1153 + }, + { + "epoch": 16.027959807776323, + "grad_norm": 0.34139737486839294, + "learning_rate": 0.0006, + "loss": 4.062219619750977, + "step": 1154 + }, + { + "epoch": 16.041939711664483, + "grad_norm": 0.2849949598312378, + "learning_rate": 0.0006, + "loss": 4.032323837280273, + "step": 1155 + }, + { + "epoch": 16.055919615552643, + "grad_norm": 0.25031402707099915, + "learning_rate": 0.0006, + "loss": 4.075527191162109, + "step": 1156 + }, + { + "epoch": 16.069899519440803, + "grad_norm": 0.25207436084747314, + "learning_rate": 0.0006, + "loss": 4.0883097648620605, + "step": 1157 + }, + { + "epoch": 16.083879423328966, + "grad_norm": 0.28677356243133545, + "learning_rate": 0.0006, + "loss": 4.040797233581543, + "step": 1158 + }, + { + "epoch": 16.097859327217126, + "grad_norm": 0.30778825283050537, + "learning_rate": 0.0006, + "loss": 4.051504135131836, + "step": 1159 + }, + { + "epoch": 16.111839231105286, + "grad_norm": 0.3136911988258362, + "learning_rate": 0.0006, + "loss": 4.045449256896973, + "step": 1160 + }, + { + "epoch": 16.125819134993446, + "grad_norm": 0.34384530782699585, + "learning_rate": 0.0006, + "loss": 4.069897651672363, + "step": 1161 + }, + { + "epoch": 16.13979903888161, + "grad_norm": 0.3074268400669098, + "learning_rate": 0.0006, + "loss": 4.0621137619018555, + "step": 1162 + }, + { + "epoch": 16.15377894276977, + "grad_norm": 0.33090949058532715, + "learning_rate": 0.0006, + "loss": 4.084089279174805, + "step": 1163 + }, + { + "epoch": 16.16775884665793, + "grad_norm": 0.26358580589294434, + "learning_rate": 0.0006, + "loss": 4.066563606262207, + "step": 1164 + }, + { + "epoch": 16.18173875054609, + "grad_norm": 0.25586041808128357, + "learning_rate": 0.0006, + "loss": 4.08109188079834, + "step": 1165 + }, + { + "epoch": 16.195718654434252, + "grad_norm": 0.2966184616088867, + "learning_rate": 0.0006, + "loss": 4.039186477661133, + "step": 1166 + }, + { + "epoch": 16.209698558322412, + "grad_norm": 0.3064924478530884, + "learning_rate": 0.0006, + "loss": 4.08139705657959, + "step": 1167 + }, + { + "epoch": 16.22367846221057, + "grad_norm": 0.28671345114707947, + "learning_rate": 0.0006, + "loss": 4.04637336730957, + "step": 1168 + }, + { + "epoch": 16.23765836609873, + "grad_norm": 0.26209691166877747, + "learning_rate": 0.0006, + "loss": 4.052768707275391, + "step": 1169 + }, + { + "epoch": 16.251638269986895, + "grad_norm": 0.2758907079696655, + "learning_rate": 0.0006, + "loss": 4.064321517944336, + "step": 1170 + }, + { + "epoch": 16.265618173875055, + "grad_norm": 0.25961801409721375, + "learning_rate": 0.0006, + "loss": 4.057299613952637, + "step": 1171 + }, + { + "epoch": 16.279598077763215, + "grad_norm": 0.2513751685619354, + "learning_rate": 0.0006, + "loss": 4.064148902893066, + "step": 1172 + }, + { + "epoch": 16.293577981651374, + "grad_norm": 0.23920276761054993, + "learning_rate": 0.0006, + "loss": 4.101890563964844, + "step": 1173 + }, + { + "epoch": 16.307557885539538, + "grad_norm": 0.22746537625789642, + "learning_rate": 0.0006, + "loss": 4.086627006530762, + "step": 1174 + }, + { + "epoch": 16.321537789427698, + "grad_norm": 0.22633525729179382, + "learning_rate": 0.0006, + "loss": 4.04669189453125, + "step": 1175 + }, + { + "epoch": 16.335517693315857, + "grad_norm": 0.2654891610145569, + "learning_rate": 0.0006, + "loss": 4.086793422698975, + "step": 1176 + }, + { + "epoch": 16.34949759720402, + "grad_norm": 0.2872653007507324, + "learning_rate": 0.0006, + "loss": 4.077983856201172, + "step": 1177 + }, + { + "epoch": 16.36347750109218, + "grad_norm": 0.25726038217544556, + "learning_rate": 0.0006, + "loss": 4.066011428833008, + "step": 1178 + }, + { + "epoch": 16.37745740498034, + "grad_norm": 0.2592027485370636, + "learning_rate": 0.0006, + "loss": 4.0482988357543945, + "step": 1179 + }, + { + "epoch": 16.3914373088685, + "grad_norm": 0.2768886685371399, + "learning_rate": 0.0006, + "loss": 4.065151214599609, + "step": 1180 + }, + { + "epoch": 16.405417212756664, + "grad_norm": 0.2956002652645111, + "learning_rate": 0.0006, + "loss": 4.037791728973389, + "step": 1181 + }, + { + "epoch": 16.419397116644824, + "grad_norm": 0.3092120885848999, + "learning_rate": 0.0006, + "loss": 4.062164306640625, + "step": 1182 + }, + { + "epoch": 16.433377020532983, + "grad_norm": 0.29516810178756714, + "learning_rate": 0.0006, + "loss": 4.025505065917969, + "step": 1183 + }, + { + "epoch": 16.447356924421143, + "grad_norm": 0.2640177607536316, + "learning_rate": 0.0006, + "loss": 4.060182571411133, + "step": 1184 + }, + { + "epoch": 16.461336828309307, + "grad_norm": 0.2444908320903778, + "learning_rate": 0.0006, + "loss": 4.046144962310791, + "step": 1185 + }, + { + "epoch": 16.475316732197467, + "grad_norm": 0.23190705478191376, + "learning_rate": 0.0006, + "loss": 4.075569152832031, + "step": 1186 + }, + { + "epoch": 16.489296636085626, + "grad_norm": 0.2383626103401184, + "learning_rate": 0.0006, + "loss": 4.088897705078125, + "step": 1187 + }, + { + "epoch": 16.503276539973786, + "grad_norm": 0.20688803493976593, + "learning_rate": 0.0006, + "loss": 4.064517974853516, + "step": 1188 + }, + { + "epoch": 16.51725644386195, + "grad_norm": 0.22610054910182953, + "learning_rate": 0.0006, + "loss": 4.04502010345459, + "step": 1189 + }, + { + "epoch": 16.53123634775011, + "grad_norm": 0.2014893889427185, + "learning_rate": 0.0006, + "loss": 4.058279514312744, + "step": 1190 + }, + { + "epoch": 16.54521625163827, + "grad_norm": 0.21459777653217316, + "learning_rate": 0.0006, + "loss": 4.066389083862305, + "step": 1191 + }, + { + "epoch": 16.55919615552643, + "grad_norm": 0.22909940779209137, + "learning_rate": 0.0006, + "loss": 4.0557966232299805, + "step": 1192 + }, + { + "epoch": 16.573176059414592, + "grad_norm": 0.20039083063602448, + "learning_rate": 0.0006, + "loss": 4.092845916748047, + "step": 1193 + }, + { + "epoch": 16.587155963302752, + "grad_norm": 0.22651726007461548, + "learning_rate": 0.0006, + "loss": 4.034615516662598, + "step": 1194 + }, + { + "epoch": 16.601135867190912, + "grad_norm": 0.21901755034923553, + "learning_rate": 0.0006, + "loss": 4.035619735717773, + "step": 1195 + }, + { + "epoch": 16.615115771079076, + "grad_norm": 0.22930841147899628, + "learning_rate": 0.0006, + "loss": 4.080800533294678, + "step": 1196 + }, + { + "epoch": 16.629095674967235, + "grad_norm": 0.212818443775177, + "learning_rate": 0.0006, + "loss": 4.030189514160156, + "step": 1197 + }, + { + "epoch": 16.643075578855395, + "grad_norm": 0.2370826154947281, + "learning_rate": 0.0006, + "loss": 4.062643527984619, + "step": 1198 + }, + { + "epoch": 16.657055482743555, + "grad_norm": 0.24786995351314545, + "learning_rate": 0.0006, + "loss": 4.031761169433594, + "step": 1199 + }, + { + "epoch": 16.67103538663172, + "grad_norm": 0.2305847704410553, + "learning_rate": 0.0006, + "loss": 4.083752155303955, + "step": 1200 + }, + { + "epoch": 16.68501529051988, + "grad_norm": 0.23336584866046906, + "learning_rate": 0.0006, + "loss": 4.079145431518555, + "step": 1201 + }, + { + "epoch": 16.698995194408038, + "grad_norm": 0.23976293206214905, + "learning_rate": 0.0006, + "loss": 4.020473957061768, + "step": 1202 + }, + { + "epoch": 16.712975098296198, + "grad_norm": 0.222761869430542, + "learning_rate": 0.0006, + "loss": 4.065582752227783, + "step": 1203 + }, + { + "epoch": 16.72695500218436, + "grad_norm": 0.23725618422031403, + "learning_rate": 0.0006, + "loss": 4.0263776779174805, + "step": 1204 + }, + { + "epoch": 16.74093490607252, + "grad_norm": 0.23873984813690186, + "learning_rate": 0.0006, + "loss": 4.053092956542969, + "step": 1205 + }, + { + "epoch": 16.75491480996068, + "grad_norm": 0.21043002605438232, + "learning_rate": 0.0006, + "loss": 4.063965797424316, + "step": 1206 + }, + { + "epoch": 16.76889471384884, + "grad_norm": 0.19863522052764893, + "learning_rate": 0.0006, + "loss": 4.061187267303467, + "step": 1207 + }, + { + "epoch": 16.782874617737004, + "grad_norm": 0.1953752487897873, + "learning_rate": 0.0006, + "loss": 4.046016693115234, + "step": 1208 + }, + { + "epoch": 16.796854521625164, + "grad_norm": 0.2130361795425415, + "learning_rate": 0.0006, + "loss": 4.066933631896973, + "step": 1209 + }, + { + "epoch": 16.810834425513324, + "grad_norm": 0.19598130881786346, + "learning_rate": 0.0006, + "loss": 4.071558952331543, + "step": 1210 + }, + { + "epoch": 16.824814329401484, + "grad_norm": 0.20331116020679474, + "learning_rate": 0.0006, + "loss": 4.088632106781006, + "step": 1211 + }, + { + "epoch": 16.838794233289647, + "grad_norm": 0.20423150062561035, + "learning_rate": 0.0006, + "loss": 4.032224655151367, + "step": 1212 + }, + { + "epoch": 16.852774137177807, + "grad_norm": 0.2401197850704193, + "learning_rate": 0.0006, + "loss": 4.037393569946289, + "step": 1213 + }, + { + "epoch": 16.866754041065967, + "grad_norm": 0.26102620363235474, + "learning_rate": 0.0006, + "loss": 4.04738712310791, + "step": 1214 + }, + { + "epoch": 16.88073394495413, + "grad_norm": 0.2438521534204483, + "learning_rate": 0.0006, + "loss": 4.015673637390137, + "step": 1215 + }, + { + "epoch": 16.89471384884229, + "grad_norm": 0.20742061734199524, + "learning_rate": 0.0006, + "loss": 4.049060821533203, + "step": 1216 + }, + { + "epoch": 16.90869375273045, + "grad_norm": 0.22028608620166779, + "learning_rate": 0.0006, + "loss": 4.088971138000488, + "step": 1217 + }, + { + "epoch": 16.92267365661861, + "grad_norm": 0.21746744215488434, + "learning_rate": 0.0006, + "loss": 4.021710395812988, + "step": 1218 + }, + { + "epoch": 16.936653560506773, + "grad_norm": 0.2226102203130722, + "learning_rate": 0.0006, + "loss": 4.050119400024414, + "step": 1219 + }, + { + "epoch": 16.950633464394933, + "grad_norm": 0.23903657495975494, + "learning_rate": 0.0006, + "loss": 4.0570526123046875, + "step": 1220 + }, + { + "epoch": 16.964613368283093, + "grad_norm": 0.2556349039077759, + "learning_rate": 0.0006, + "loss": 4.0448808670043945, + "step": 1221 + }, + { + "epoch": 16.978593272171253, + "grad_norm": 0.28445592522621155, + "learning_rate": 0.0006, + "loss": 4.052034378051758, + "step": 1222 + }, + { + "epoch": 16.992573176059416, + "grad_norm": 0.273973673582077, + "learning_rate": 0.0006, + "loss": 4.02907657623291, + "step": 1223 + }, + { + "epoch": 17.0, + "grad_norm": 0.26125091314315796, + "learning_rate": 0.0006, + "loss": 4.10643196105957, + "step": 1224 + }, + { + "epoch": 17.0, + "eval_loss": 4.2585954666137695, + "eval_runtime": 44.8583, + "eval_samples_per_second": 54.438, + "eval_steps_per_second": 3.411, + "step": 1224 + }, + { + "epoch": 17.01397990388816, + "grad_norm": 0.2786196768283844, + "learning_rate": 0.0006, + "loss": 4.044719219207764, + "step": 1225 + }, + { + "epoch": 17.027959807776323, + "grad_norm": 0.2969571650028229, + "learning_rate": 0.0006, + "loss": 4.022037506103516, + "step": 1226 + }, + { + "epoch": 17.041939711664483, + "grad_norm": 0.32196253538131714, + "learning_rate": 0.0006, + "loss": 4.03636360168457, + "step": 1227 + }, + { + "epoch": 17.055919615552643, + "grad_norm": 0.28617000579833984, + "learning_rate": 0.0006, + "loss": 4.012125492095947, + "step": 1228 + }, + { + "epoch": 17.069899519440803, + "grad_norm": 0.26539644598960876, + "learning_rate": 0.0006, + "loss": 4.020190715789795, + "step": 1229 + }, + { + "epoch": 17.083879423328966, + "grad_norm": 0.24315394461154938, + "learning_rate": 0.0006, + "loss": 4.0553812980651855, + "step": 1230 + }, + { + "epoch": 17.097859327217126, + "grad_norm": 0.23798158764839172, + "learning_rate": 0.0006, + "loss": 4.004805088043213, + "step": 1231 + }, + { + "epoch": 17.111839231105286, + "grad_norm": 0.25723618268966675, + "learning_rate": 0.0006, + "loss": 4.00108003616333, + "step": 1232 + }, + { + "epoch": 17.125819134993446, + "grad_norm": 0.2669757604598999, + "learning_rate": 0.0006, + "loss": 4.00828742980957, + "step": 1233 + }, + { + "epoch": 17.13979903888161, + "grad_norm": 0.26421651244163513, + "learning_rate": 0.0006, + "loss": 3.995478391647339, + "step": 1234 + }, + { + "epoch": 17.15377894276977, + "grad_norm": 0.24745801091194153, + "learning_rate": 0.0006, + "loss": 4.0171027183532715, + "step": 1235 + }, + { + "epoch": 17.16775884665793, + "grad_norm": 0.27028775215148926, + "learning_rate": 0.0006, + "loss": 4.017108917236328, + "step": 1236 + }, + { + "epoch": 17.18173875054609, + "grad_norm": 0.27247968316078186, + "learning_rate": 0.0006, + "loss": 4.032601356506348, + "step": 1237 + }, + { + "epoch": 17.195718654434252, + "grad_norm": 0.24620869755744934, + "learning_rate": 0.0006, + "loss": 4.022171974182129, + "step": 1238 + }, + { + "epoch": 17.209698558322412, + "grad_norm": 0.23407386243343353, + "learning_rate": 0.0006, + "loss": 3.9946959018707275, + "step": 1239 + }, + { + "epoch": 17.22367846221057, + "grad_norm": 0.22559069097042084, + "learning_rate": 0.0006, + "loss": 4.013072490692139, + "step": 1240 + }, + { + "epoch": 17.23765836609873, + "grad_norm": 0.226687952876091, + "learning_rate": 0.0006, + "loss": 4.023543834686279, + "step": 1241 + }, + { + "epoch": 17.251638269986895, + "grad_norm": 0.24436360597610474, + "learning_rate": 0.0006, + "loss": 4.044206619262695, + "step": 1242 + }, + { + "epoch": 17.265618173875055, + "grad_norm": 0.25527626276016235, + "learning_rate": 0.0006, + "loss": 4.016424179077148, + "step": 1243 + }, + { + "epoch": 17.279598077763215, + "grad_norm": 0.26126864552497864, + "learning_rate": 0.0006, + "loss": 4.024394512176514, + "step": 1244 + }, + { + "epoch": 17.293577981651374, + "grad_norm": 0.25746744871139526, + "learning_rate": 0.0006, + "loss": 4.046844482421875, + "step": 1245 + }, + { + "epoch": 17.307557885539538, + "grad_norm": 0.26579564809799194, + "learning_rate": 0.0006, + "loss": 4.021010398864746, + "step": 1246 + }, + { + "epoch": 17.321537789427698, + "grad_norm": 0.2713971734046936, + "learning_rate": 0.0006, + "loss": 4.022331237792969, + "step": 1247 + }, + { + "epoch": 17.335517693315857, + "grad_norm": 0.24217180907726288, + "learning_rate": 0.0006, + "loss": 4.006353855133057, + "step": 1248 + }, + { + "epoch": 17.34949759720402, + "grad_norm": 0.26899752020835876, + "learning_rate": 0.0006, + "loss": 4.068023681640625, + "step": 1249 + }, + { + "epoch": 17.36347750109218, + "grad_norm": 0.26745253801345825, + "learning_rate": 0.0006, + "loss": 4.031207084655762, + "step": 1250 + }, + { + "epoch": 17.37745740498034, + "grad_norm": 0.21533764898777008, + "learning_rate": 0.0006, + "loss": 4.042410850524902, + "step": 1251 + }, + { + "epoch": 17.3914373088685, + "grad_norm": 0.21958027780056, + "learning_rate": 0.0006, + "loss": 4.02597713470459, + "step": 1252 + }, + { + "epoch": 17.405417212756664, + "grad_norm": 0.263068825006485, + "learning_rate": 0.0006, + "loss": 4.0035905838012695, + "step": 1253 + }, + { + "epoch": 17.419397116644824, + "grad_norm": 0.24044716358184814, + "learning_rate": 0.0006, + "loss": 4.005317687988281, + "step": 1254 + }, + { + "epoch": 17.433377020532983, + "grad_norm": 0.19142559170722961, + "learning_rate": 0.0006, + "loss": 3.9976844787597656, + "step": 1255 + }, + { + "epoch": 17.447356924421143, + "grad_norm": 0.18650250136852264, + "learning_rate": 0.0006, + "loss": 4.031353950500488, + "step": 1256 + }, + { + "epoch": 17.461336828309307, + "grad_norm": 0.1984022557735443, + "learning_rate": 0.0006, + "loss": 4.002097129821777, + "step": 1257 + }, + { + "epoch": 17.475316732197467, + "grad_norm": 0.20087844133377075, + "learning_rate": 0.0006, + "loss": 4.031151294708252, + "step": 1258 + }, + { + "epoch": 17.489296636085626, + "grad_norm": 0.20881228148937225, + "learning_rate": 0.0006, + "loss": 4.034793853759766, + "step": 1259 + }, + { + "epoch": 17.503276539973786, + "grad_norm": 0.23958556354045868, + "learning_rate": 0.0006, + "loss": 4.025238990783691, + "step": 1260 + }, + { + "epoch": 17.51725644386195, + "grad_norm": 0.23927845060825348, + "learning_rate": 0.0006, + "loss": 3.999828338623047, + "step": 1261 + }, + { + "epoch": 17.53123634775011, + "grad_norm": 0.20342715084552765, + "learning_rate": 0.0006, + "loss": 4.054262161254883, + "step": 1262 + }, + { + "epoch": 17.54521625163827, + "grad_norm": 0.21370555460453033, + "learning_rate": 0.0006, + "loss": 4.011582374572754, + "step": 1263 + }, + { + "epoch": 17.55919615552643, + "grad_norm": 0.23681946098804474, + "learning_rate": 0.0006, + "loss": 4.029694080352783, + "step": 1264 + }, + { + "epoch": 17.573176059414592, + "grad_norm": 0.24190311133861542, + "learning_rate": 0.0006, + "loss": 4.018783092498779, + "step": 1265 + }, + { + "epoch": 17.587155963302752, + "grad_norm": 0.23215509951114655, + "learning_rate": 0.0006, + "loss": 4.009703159332275, + "step": 1266 + }, + { + "epoch": 17.601135867190912, + "grad_norm": 0.21122977137565613, + "learning_rate": 0.0006, + "loss": 4.0345659255981445, + "step": 1267 + }, + { + "epoch": 17.615115771079076, + "grad_norm": 0.2075948715209961, + "learning_rate": 0.0006, + "loss": 4.070703506469727, + "step": 1268 + }, + { + "epoch": 17.629095674967235, + "grad_norm": 0.21667909622192383, + "learning_rate": 0.0006, + "loss": 4.020771503448486, + "step": 1269 + }, + { + "epoch": 17.643075578855395, + "grad_norm": 0.20960724353790283, + "learning_rate": 0.0006, + "loss": 4.026404857635498, + "step": 1270 + }, + { + "epoch": 17.657055482743555, + "grad_norm": 0.22575686872005463, + "learning_rate": 0.0006, + "loss": 4.01981258392334, + "step": 1271 + }, + { + "epoch": 17.67103538663172, + "grad_norm": 0.2565988302230835, + "learning_rate": 0.0006, + "loss": 4.015827178955078, + "step": 1272 + }, + { + "epoch": 17.68501529051988, + "grad_norm": 0.24831551313400269, + "learning_rate": 0.0006, + "loss": 4.012457847595215, + "step": 1273 + }, + { + "epoch": 17.698995194408038, + "grad_norm": 0.22595494985580444, + "learning_rate": 0.0006, + "loss": 4.031386375427246, + "step": 1274 + }, + { + "epoch": 17.712975098296198, + "grad_norm": 0.20687322318553925, + "learning_rate": 0.0006, + "loss": 4.014216423034668, + "step": 1275 + }, + { + "epoch": 17.72695500218436, + "grad_norm": 0.21916012465953827, + "learning_rate": 0.0006, + "loss": 4.037643909454346, + "step": 1276 + }, + { + "epoch": 17.74093490607252, + "grad_norm": 0.2243107706308365, + "learning_rate": 0.0006, + "loss": 4.033044815063477, + "step": 1277 + }, + { + "epoch": 17.75491480996068, + "grad_norm": 0.2402164787054062, + "learning_rate": 0.0006, + "loss": 4.026636123657227, + "step": 1278 + }, + { + "epoch": 17.76889471384884, + "grad_norm": 0.27957046031951904, + "learning_rate": 0.0006, + "loss": 4.0270867347717285, + "step": 1279 + }, + { + "epoch": 17.782874617737004, + "grad_norm": 0.27447596192359924, + "learning_rate": 0.0006, + "loss": 4.0120134353637695, + "step": 1280 + }, + { + "epoch": 17.796854521625164, + "grad_norm": 0.26926323771476746, + "learning_rate": 0.0006, + "loss": 4.027970314025879, + "step": 1281 + }, + { + "epoch": 17.810834425513324, + "grad_norm": 0.2535291314125061, + "learning_rate": 0.0006, + "loss": 4.002565383911133, + "step": 1282 + }, + { + "epoch": 17.824814329401484, + "grad_norm": 0.22639447450637817, + "learning_rate": 0.0006, + "loss": 4.032750606536865, + "step": 1283 + }, + { + "epoch": 17.838794233289647, + "grad_norm": 0.23384462296962738, + "learning_rate": 0.0006, + "loss": 4.03568172454834, + "step": 1284 + }, + { + "epoch": 17.852774137177807, + "grad_norm": 0.22971470654010773, + "learning_rate": 0.0006, + "loss": 4.031299591064453, + "step": 1285 + }, + { + "epoch": 17.866754041065967, + "grad_norm": 0.24540141224861145, + "learning_rate": 0.0006, + "loss": 4.0142669677734375, + "step": 1286 + }, + { + "epoch": 17.88073394495413, + "grad_norm": 0.2304888367652893, + "learning_rate": 0.0006, + "loss": 3.9964895248413086, + "step": 1287 + }, + { + "epoch": 17.89471384884229, + "grad_norm": 0.22082284092903137, + "learning_rate": 0.0006, + "loss": 4.024693489074707, + "step": 1288 + }, + { + "epoch": 17.90869375273045, + "grad_norm": 0.23677092790603638, + "learning_rate": 0.0006, + "loss": 4.002082347869873, + "step": 1289 + }, + { + "epoch": 17.92267365661861, + "grad_norm": 0.23122332990169525, + "learning_rate": 0.0006, + "loss": 4.025351524353027, + "step": 1290 + }, + { + "epoch": 17.936653560506773, + "grad_norm": 0.2548119127750397, + "learning_rate": 0.0006, + "loss": 3.9955825805664062, + "step": 1291 + }, + { + "epoch": 17.950633464394933, + "grad_norm": 0.26950931549072266, + "learning_rate": 0.0006, + "loss": 4.026151180267334, + "step": 1292 + }, + { + "epoch": 17.964613368283093, + "grad_norm": 0.3023233711719513, + "learning_rate": 0.0006, + "loss": 4.006035804748535, + "step": 1293 + }, + { + "epoch": 17.978593272171253, + "grad_norm": 0.3190958499908447, + "learning_rate": 0.0006, + "loss": 4.023565292358398, + "step": 1294 + }, + { + "epoch": 17.992573176059416, + "grad_norm": 0.28878068923950195, + "learning_rate": 0.0006, + "loss": 4.020973205566406, + "step": 1295 + }, + { + "epoch": 18.0, + "grad_norm": 0.27312418818473816, + "learning_rate": 0.0006, + "loss": 3.99906587600708, + "step": 1296 + }, + { + "epoch": 18.0, + "eval_loss": 4.224447250366211, + "eval_runtime": 52.5728, + "eval_samples_per_second": 46.45, + "eval_steps_per_second": 2.91, + "step": 1296 + }, + { + "epoch": 18.01397990388816, + "grad_norm": 0.2567712664604187, + "learning_rate": 0.0006, + "loss": 3.9755055904388428, + "step": 1297 + }, + { + "epoch": 18.027959807776323, + "grad_norm": 0.25048133730888367, + "learning_rate": 0.0006, + "loss": 4.009254455566406, + "step": 1298 + }, + { + "epoch": 18.041939711664483, + "grad_norm": 0.2556909918785095, + "learning_rate": 0.0006, + "loss": 4.001235008239746, + "step": 1299 + }, + { + "epoch": 18.055919615552643, + "grad_norm": 0.2501400113105774, + "learning_rate": 0.0006, + "loss": 3.980726480484009, + "step": 1300 + }, + { + "epoch": 18.069899519440803, + "grad_norm": 0.23977792263031006, + "learning_rate": 0.0006, + "loss": 3.964195728302002, + "step": 1301 + }, + { + "epoch": 18.083879423328966, + "grad_norm": 0.25650718808174133, + "learning_rate": 0.0006, + "loss": 4.015914440155029, + "step": 1302 + }, + { + "epoch": 18.097859327217126, + "grad_norm": 0.234053835272789, + "learning_rate": 0.0006, + "loss": 4.0159149169921875, + "step": 1303 + }, + { + "epoch": 18.111839231105286, + "grad_norm": 0.21967713534832, + "learning_rate": 0.0006, + "loss": 4.0055694580078125, + "step": 1304 + }, + { + "epoch": 18.125819134993446, + "grad_norm": 0.21790878474712372, + "learning_rate": 0.0006, + "loss": 3.986253261566162, + "step": 1305 + }, + { + "epoch": 18.13979903888161, + "grad_norm": 0.22955302894115448, + "learning_rate": 0.0006, + "loss": 3.959421157836914, + "step": 1306 + }, + { + "epoch": 18.15377894276977, + "grad_norm": 0.2559174597263336, + "learning_rate": 0.0006, + "loss": 4.0069756507873535, + "step": 1307 + }, + { + "epoch": 18.16775884665793, + "grad_norm": 0.26132866740226746, + "learning_rate": 0.0006, + "loss": 3.9874095916748047, + "step": 1308 + }, + { + "epoch": 18.18173875054609, + "grad_norm": 0.23258940875530243, + "learning_rate": 0.0006, + "loss": 3.9762492179870605, + "step": 1309 + }, + { + "epoch": 18.195718654434252, + "grad_norm": 0.22347190976142883, + "learning_rate": 0.0006, + "loss": 3.9923410415649414, + "step": 1310 + }, + { + "epoch": 18.209698558322412, + "grad_norm": 0.23095804452896118, + "learning_rate": 0.0006, + "loss": 4.019245624542236, + "step": 1311 + }, + { + "epoch": 18.22367846221057, + "grad_norm": 0.24817052483558655, + "learning_rate": 0.0006, + "loss": 3.9697511196136475, + "step": 1312 + }, + { + "epoch": 18.23765836609873, + "grad_norm": 0.2566024959087372, + "learning_rate": 0.0006, + "loss": 3.978804111480713, + "step": 1313 + }, + { + "epoch": 18.251638269986895, + "grad_norm": 0.2527952790260315, + "learning_rate": 0.0006, + "loss": 3.972018241882324, + "step": 1314 + }, + { + "epoch": 18.265618173875055, + "grad_norm": 0.2508150637149811, + "learning_rate": 0.0006, + "loss": 3.9971275329589844, + "step": 1315 + }, + { + "epoch": 18.279598077763215, + "grad_norm": 0.23242022097110748, + "learning_rate": 0.0006, + "loss": 3.9712045192718506, + "step": 1316 + }, + { + "epoch": 18.293577981651374, + "grad_norm": 0.23474404215812683, + "learning_rate": 0.0006, + "loss": 3.9926767349243164, + "step": 1317 + }, + { + "epoch": 18.307557885539538, + "grad_norm": 0.2417769432067871, + "learning_rate": 0.0006, + "loss": 3.9920949935913086, + "step": 1318 + }, + { + "epoch": 18.321537789427698, + "grad_norm": 0.23839452862739563, + "learning_rate": 0.0006, + "loss": 4.016645431518555, + "step": 1319 + }, + { + "epoch": 18.335517693315857, + "grad_norm": 0.2512452304363251, + "learning_rate": 0.0006, + "loss": 3.97586727142334, + "step": 1320 + }, + { + "epoch": 18.34949759720402, + "grad_norm": 0.27503693103790283, + "learning_rate": 0.0006, + "loss": 4.000148773193359, + "step": 1321 + }, + { + "epoch": 18.36347750109218, + "grad_norm": 0.27830836176872253, + "learning_rate": 0.0006, + "loss": 3.9972195625305176, + "step": 1322 + }, + { + "epoch": 18.37745740498034, + "grad_norm": 0.2571812570095062, + "learning_rate": 0.0006, + "loss": 3.9900810718536377, + "step": 1323 + }, + { + "epoch": 18.3914373088685, + "grad_norm": 0.2310052365064621, + "learning_rate": 0.0006, + "loss": 4.003000259399414, + "step": 1324 + }, + { + "epoch": 18.405417212756664, + "grad_norm": 0.19615735113620758, + "learning_rate": 0.0006, + "loss": 3.9536571502685547, + "step": 1325 + }, + { + "epoch": 18.419397116644824, + "grad_norm": 0.21323896944522858, + "learning_rate": 0.0006, + "loss": 3.977508068084717, + "step": 1326 + }, + { + "epoch": 18.433377020532983, + "grad_norm": 0.21404202282428741, + "learning_rate": 0.0006, + "loss": 4.015361785888672, + "step": 1327 + }, + { + "epoch": 18.447356924421143, + "grad_norm": 0.1991959661245346, + "learning_rate": 0.0006, + "loss": 4.000286102294922, + "step": 1328 + }, + { + "epoch": 18.461336828309307, + "grad_norm": 0.2073599398136139, + "learning_rate": 0.0006, + "loss": 3.973065137863159, + "step": 1329 + }, + { + "epoch": 18.475316732197467, + "grad_norm": 0.2096073031425476, + "learning_rate": 0.0006, + "loss": 3.987032890319824, + "step": 1330 + }, + { + "epoch": 18.489296636085626, + "grad_norm": 0.2380610853433609, + "learning_rate": 0.0006, + "loss": 4.035274505615234, + "step": 1331 + }, + { + "epoch": 18.503276539973786, + "grad_norm": 0.23570716381072998, + "learning_rate": 0.0006, + "loss": 4.010516166687012, + "step": 1332 + }, + { + "epoch": 18.51725644386195, + "grad_norm": 0.24805466830730438, + "learning_rate": 0.0006, + "loss": 3.9750983715057373, + "step": 1333 + }, + { + "epoch": 18.53123634775011, + "grad_norm": 0.25173231959342957, + "learning_rate": 0.0006, + "loss": 3.9742345809936523, + "step": 1334 + }, + { + "epoch": 18.54521625163827, + "grad_norm": 0.24590367078781128, + "learning_rate": 0.0006, + "loss": 4.0037312507629395, + "step": 1335 + }, + { + "epoch": 18.55919615552643, + "grad_norm": 0.24379394948482513, + "learning_rate": 0.0006, + "loss": 3.993858814239502, + "step": 1336 + }, + { + "epoch": 18.573176059414592, + "grad_norm": 0.21708883345127106, + "learning_rate": 0.0006, + "loss": 3.965670585632324, + "step": 1337 + }, + { + "epoch": 18.587155963302752, + "grad_norm": 0.21024051308631897, + "learning_rate": 0.0006, + "loss": 3.987551689147949, + "step": 1338 + }, + { + "epoch": 18.601135867190912, + "grad_norm": 0.23376783728599548, + "learning_rate": 0.0006, + "loss": 4.002841472625732, + "step": 1339 + }, + { + "epoch": 18.615115771079076, + "grad_norm": 0.25350701808929443, + "learning_rate": 0.0006, + "loss": 3.9881370067596436, + "step": 1340 + }, + { + "epoch": 18.629095674967235, + "grad_norm": 0.2542140483856201, + "learning_rate": 0.0006, + "loss": 4.003695964813232, + "step": 1341 + }, + { + "epoch": 18.643075578855395, + "grad_norm": 0.22932685911655426, + "learning_rate": 0.0006, + "loss": 4.0146002769470215, + "step": 1342 + }, + { + "epoch": 18.657055482743555, + "grad_norm": 0.21099458634853363, + "learning_rate": 0.0006, + "loss": 3.970472812652588, + "step": 1343 + }, + { + "epoch": 18.67103538663172, + "grad_norm": 0.2234615832567215, + "learning_rate": 0.0006, + "loss": 3.9821488857269287, + "step": 1344 + }, + { + "epoch": 18.68501529051988, + "grad_norm": 0.230327770113945, + "learning_rate": 0.0006, + "loss": 3.996274948120117, + "step": 1345 + }, + { + "epoch": 18.698995194408038, + "grad_norm": 0.23596233129501343, + "learning_rate": 0.0006, + "loss": 3.9747462272644043, + "step": 1346 + }, + { + "epoch": 18.712975098296198, + "grad_norm": 0.24173159897327423, + "learning_rate": 0.0006, + "loss": 4.011804103851318, + "step": 1347 + }, + { + "epoch": 18.72695500218436, + "grad_norm": 0.24087604880332947, + "learning_rate": 0.0006, + "loss": 4.008726119995117, + "step": 1348 + }, + { + "epoch": 18.74093490607252, + "grad_norm": 0.2457292526960373, + "learning_rate": 0.0006, + "loss": 3.990793228149414, + "step": 1349 + }, + { + "epoch": 18.75491480996068, + "grad_norm": 0.22946089506149292, + "learning_rate": 0.0006, + "loss": 3.980494260787964, + "step": 1350 + }, + { + "epoch": 18.76889471384884, + "grad_norm": 0.22986692190170288, + "learning_rate": 0.0006, + "loss": 3.97006893157959, + "step": 1351 + }, + { + "epoch": 18.782874617737004, + "grad_norm": 0.23358555138111115, + "learning_rate": 0.0006, + "loss": 4.008172035217285, + "step": 1352 + }, + { + "epoch": 18.796854521625164, + "grad_norm": 0.20183615386486053, + "learning_rate": 0.0006, + "loss": 3.9720888137817383, + "step": 1353 + }, + { + "epoch": 18.810834425513324, + "grad_norm": 0.19975653290748596, + "learning_rate": 0.0006, + "loss": 3.9783310890197754, + "step": 1354 + }, + { + "epoch": 18.824814329401484, + "grad_norm": 0.18911021947860718, + "learning_rate": 0.0006, + "loss": 3.985982894897461, + "step": 1355 + }, + { + "epoch": 18.838794233289647, + "grad_norm": 0.15984168648719788, + "learning_rate": 0.0006, + "loss": 3.9740548133850098, + "step": 1356 + }, + { + "epoch": 18.852774137177807, + "grad_norm": 0.1755436211824417, + "learning_rate": 0.0006, + "loss": 4.013090133666992, + "step": 1357 + }, + { + "epoch": 18.866754041065967, + "grad_norm": 0.1798417866230011, + "learning_rate": 0.0006, + "loss": 3.997880697250366, + "step": 1358 + }, + { + "epoch": 18.88073394495413, + "grad_norm": 0.20206265151500702, + "learning_rate": 0.0006, + "loss": 3.9892373085021973, + "step": 1359 + }, + { + "epoch": 18.89471384884229, + "grad_norm": 0.23685456812381744, + "learning_rate": 0.0006, + "loss": 3.9909186363220215, + "step": 1360 + }, + { + "epoch": 18.90869375273045, + "grad_norm": 0.26053836941719055, + "learning_rate": 0.0006, + "loss": 4.00327205657959, + "step": 1361 + }, + { + "epoch": 18.92267365661861, + "grad_norm": 0.26215845346450806, + "learning_rate": 0.0006, + "loss": 3.9714717864990234, + "step": 1362 + }, + { + "epoch": 18.936653560506773, + "grad_norm": 0.2433871030807495, + "learning_rate": 0.0006, + "loss": 3.949416160583496, + "step": 1363 + }, + { + "epoch": 18.950633464394933, + "grad_norm": 0.23331883549690247, + "learning_rate": 0.0006, + "loss": 3.980501413345337, + "step": 1364 + }, + { + "epoch": 18.964613368283093, + "grad_norm": 0.2346954047679901, + "learning_rate": 0.0006, + "loss": 3.9974493980407715, + "step": 1365 + }, + { + "epoch": 18.978593272171253, + "grad_norm": 0.25101345777511597, + "learning_rate": 0.0006, + "loss": 3.9800148010253906, + "step": 1366 + }, + { + "epoch": 18.992573176059416, + "grad_norm": 0.26811933517456055, + "learning_rate": 0.0006, + "loss": 4.0065741539001465, + "step": 1367 + }, + { + "epoch": 19.0, + "grad_norm": 0.2731736898422241, + "learning_rate": 0.0006, + "loss": 4.014575481414795, + "step": 1368 + }, + { + "epoch": 19.0, + "eval_loss": 4.200716972351074, + "eval_runtime": 44.6962, + "eval_samples_per_second": 54.636, + "eval_steps_per_second": 3.423, + "step": 1368 + }, + { + "epoch": 19.01397990388816, + "grad_norm": 0.2517746686935425, + "learning_rate": 0.0006, + "loss": 3.9486539363861084, + "step": 1369 + }, + { + "epoch": 19.027959807776323, + "grad_norm": 0.2482699453830719, + "learning_rate": 0.0006, + "loss": 3.95015287399292, + "step": 1370 + }, + { + "epoch": 19.041939711664483, + "grad_norm": 0.21693618595600128, + "learning_rate": 0.0006, + "loss": 3.970022201538086, + "step": 1371 + }, + { + "epoch": 19.055919615552643, + "grad_norm": 0.2035159319639206, + "learning_rate": 0.0006, + "loss": 3.941457748413086, + "step": 1372 + }, + { + "epoch": 19.069899519440803, + "grad_norm": 0.2201429009437561, + "learning_rate": 0.0006, + "loss": 3.946794033050537, + "step": 1373 + }, + { + "epoch": 19.083879423328966, + "grad_norm": 0.22910255193710327, + "learning_rate": 0.0006, + "loss": 3.94606876373291, + "step": 1374 + }, + { + "epoch": 19.097859327217126, + "grad_norm": 0.22378197312355042, + "learning_rate": 0.0006, + "loss": 3.957899570465088, + "step": 1375 + }, + { + "epoch": 19.111839231105286, + "grad_norm": 0.21728114783763885, + "learning_rate": 0.0006, + "loss": 3.9565982818603516, + "step": 1376 + }, + { + "epoch": 19.125819134993446, + "grad_norm": 0.21887634694576263, + "learning_rate": 0.0006, + "loss": 3.9649534225463867, + "step": 1377 + }, + { + "epoch": 19.13979903888161, + "grad_norm": 0.21892991662025452, + "learning_rate": 0.0006, + "loss": 3.971388101577759, + "step": 1378 + }, + { + "epoch": 19.15377894276977, + "grad_norm": 0.24582402408123016, + "learning_rate": 0.0006, + "loss": 3.9370944499969482, + "step": 1379 + }, + { + "epoch": 19.16775884665793, + "grad_norm": 0.27547118067741394, + "learning_rate": 0.0006, + "loss": 3.939406156539917, + "step": 1380 + }, + { + "epoch": 19.18173875054609, + "grad_norm": 0.3131563365459442, + "learning_rate": 0.0006, + "loss": 3.942620277404785, + "step": 1381 + }, + { + "epoch": 19.195718654434252, + "grad_norm": 0.3211703598499298, + "learning_rate": 0.0006, + "loss": 3.9388349056243896, + "step": 1382 + }, + { + "epoch": 19.209698558322412, + "grad_norm": 0.2791919410228729, + "learning_rate": 0.0006, + "loss": 3.9827399253845215, + "step": 1383 + }, + { + "epoch": 19.22367846221057, + "grad_norm": 0.2872016727924347, + "learning_rate": 0.0006, + "loss": 3.976715087890625, + "step": 1384 + }, + { + "epoch": 19.23765836609873, + "grad_norm": 0.2790389060974121, + "learning_rate": 0.0006, + "loss": 3.952850818634033, + "step": 1385 + }, + { + "epoch": 19.251638269986895, + "grad_norm": 0.31903740763664246, + "learning_rate": 0.0006, + "loss": 3.964506149291992, + "step": 1386 + }, + { + "epoch": 19.265618173875055, + "grad_norm": 0.31013646721839905, + "learning_rate": 0.0006, + "loss": 3.967219352722168, + "step": 1387 + }, + { + "epoch": 19.279598077763215, + "grad_norm": 0.2574339509010315, + "learning_rate": 0.0006, + "loss": 3.979168176651001, + "step": 1388 + }, + { + "epoch": 19.293577981651374, + "grad_norm": 0.24621108174324036, + "learning_rate": 0.0006, + "loss": 3.981734275817871, + "step": 1389 + }, + { + "epoch": 19.307557885539538, + "grad_norm": 0.25113818049430847, + "learning_rate": 0.0006, + "loss": 3.9787755012512207, + "step": 1390 + }, + { + "epoch": 19.321537789427698, + "grad_norm": 0.259971022605896, + "learning_rate": 0.0006, + "loss": 3.9648823738098145, + "step": 1391 + }, + { + "epoch": 19.335517693315857, + "grad_norm": 0.22580404579639435, + "learning_rate": 0.0006, + "loss": 3.9658002853393555, + "step": 1392 + }, + { + "epoch": 19.34949759720402, + "grad_norm": 0.2133680284023285, + "learning_rate": 0.0006, + "loss": 3.9615914821624756, + "step": 1393 + }, + { + "epoch": 19.36347750109218, + "grad_norm": 0.2387680858373642, + "learning_rate": 0.0006, + "loss": 3.993811845779419, + "step": 1394 + }, + { + "epoch": 19.37745740498034, + "grad_norm": 0.26086220145225525, + "learning_rate": 0.0006, + "loss": 3.932701826095581, + "step": 1395 + }, + { + "epoch": 19.3914373088685, + "grad_norm": 0.23255233466625214, + "learning_rate": 0.0006, + "loss": 3.8969321250915527, + "step": 1396 + }, + { + "epoch": 19.405417212756664, + "grad_norm": 0.22894541919231415, + "learning_rate": 0.0006, + "loss": 3.9569311141967773, + "step": 1397 + }, + { + "epoch": 19.419397116644824, + "grad_norm": 0.2254200130701065, + "learning_rate": 0.0006, + "loss": 3.953199863433838, + "step": 1398 + }, + { + "epoch": 19.433377020532983, + "grad_norm": 0.25802481174468994, + "learning_rate": 0.0006, + "loss": 3.9714815616607666, + "step": 1399 + }, + { + "epoch": 19.447356924421143, + "grad_norm": 0.24725162982940674, + "learning_rate": 0.0006, + "loss": 3.957339286804199, + "step": 1400 + }, + { + "epoch": 19.461336828309307, + "grad_norm": 0.2162018120288849, + "learning_rate": 0.0006, + "loss": 3.986801862716675, + "step": 1401 + }, + { + "epoch": 19.475316732197467, + "grad_norm": 0.21530906856060028, + "learning_rate": 0.0006, + "loss": 3.9766759872436523, + "step": 1402 + }, + { + "epoch": 19.489296636085626, + "grad_norm": 0.20260323584079742, + "learning_rate": 0.0006, + "loss": 3.9576425552368164, + "step": 1403 + }, + { + "epoch": 19.503276539973786, + "grad_norm": 0.188974529504776, + "learning_rate": 0.0006, + "loss": 3.9852395057678223, + "step": 1404 + }, + { + "epoch": 19.51725644386195, + "grad_norm": 0.19727374613285065, + "learning_rate": 0.0006, + "loss": 3.972484588623047, + "step": 1405 + }, + { + "epoch": 19.53123634775011, + "grad_norm": 0.23708008229732513, + "learning_rate": 0.0006, + "loss": 3.992471694946289, + "step": 1406 + }, + { + "epoch": 19.54521625163827, + "grad_norm": 0.23783449828624725, + "learning_rate": 0.0006, + "loss": 3.9788265228271484, + "step": 1407 + }, + { + "epoch": 19.55919615552643, + "grad_norm": 0.24744364619255066, + "learning_rate": 0.0006, + "loss": 3.9559011459350586, + "step": 1408 + }, + { + "epoch": 19.573176059414592, + "grad_norm": 0.24828094244003296, + "learning_rate": 0.0006, + "loss": 3.9663949012756348, + "step": 1409 + }, + { + "epoch": 19.587155963302752, + "grad_norm": 0.2681315541267395, + "learning_rate": 0.0006, + "loss": 3.9581191539764404, + "step": 1410 + }, + { + "epoch": 19.601135867190912, + "grad_norm": 0.2691532373428345, + "learning_rate": 0.0006, + "loss": 3.9832754135131836, + "step": 1411 + }, + { + "epoch": 19.615115771079076, + "grad_norm": 0.2900252640247345, + "learning_rate": 0.0006, + "loss": 3.984365940093994, + "step": 1412 + }, + { + "epoch": 19.629095674967235, + "grad_norm": 0.3194943070411682, + "learning_rate": 0.0006, + "loss": 3.9856505393981934, + "step": 1413 + }, + { + "epoch": 19.643075578855395, + "grad_norm": 0.3029029071331024, + "learning_rate": 0.0006, + "loss": 3.968992233276367, + "step": 1414 + }, + { + "epoch": 19.657055482743555, + "grad_norm": 0.2658176124095917, + "learning_rate": 0.0006, + "loss": 3.995187282562256, + "step": 1415 + }, + { + "epoch": 19.67103538663172, + "grad_norm": 0.26807504892349243, + "learning_rate": 0.0006, + "loss": 3.9756274223327637, + "step": 1416 + }, + { + "epoch": 19.68501529051988, + "grad_norm": 0.27718642354011536, + "learning_rate": 0.0006, + "loss": 3.9510018825531006, + "step": 1417 + }, + { + "epoch": 19.698995194408038, + "grad_norm": 0.26322051882743835, + "learning_rate": 0.0006, + "loss": 3.965155601501465, + "step": 1418 + }, + { + "epoch": 19.712975098296198, + "grad_norm": 0.2566570043563843, + "learning_rate": 0.0006, + "loss": 3.984218120574951, + "step": 1419 + }, + { + "epoch": 19.72695500218436, + "grad_norm": 0.2218743860721588, + "learning_rate": 0.0006, + "loss": 3.9338784217834473, + "step": 1420 + }, + { + "epoch": 19.74093490607252, + "grad_norm": 0.22894173860549927, + "learning_rate": 0.0006, + "loss": 3.9869046211242676, + "step": 1421 + }, + { + "epoch": 19.75491480996068, + "grad_norm": 0.26837027072906494, + "learning_rate": 0.0006, + "loss": 3.96799898147583, + "step": 1422 + }, + { + "epoch": 19.76889471384884, + "grad_norm": 0.2767876982688904, + "learning_rate": 0.0006, + "loss": 3.9431071281433105, + "step": 1423 + }, + { + "epoch": 19.782874617737004, + "grad_norm": 0.24402284622192383, + "learning_rate": 0.0006, + "loss": 3.9631881713867188, + "step": 1424 + }, + { + "epoch": 19.796854521625164, + "grad_norm": 0.23500724136829376, + "learning_rate": 0.0006, + "loss": 3.9943337440490723, + "step": 1425 + }, + { + "epoch": 19.810834425513324, + "grad_norm": 0.22509142756462097, + "learning_rate": 0.0006, + "loss": 3.961226224899292, + "step": 1426 + }, + { + "epoch": 19.824814329401484, + "grad_norm": 0.23524795472621918, + "learning_rate": 0.0006, + "loss": 3.9552102088928223, + "step": 1427 + }, + { + "epoch": 19.838794233289647, + "grad_norm": 0.22307050228118896, + "learning_rate": 0.0006, + "loss": 3.9623494148254395, + "step": 1428 + }, + { + "epoch": 19.852774137177807, + "grad_norm": 0.21144486963748932, + "learning_rate": 0.0006, + "loss": 3.9620237350463867, + "step": 1429 + }, + { + "epoch": 19.866754041065967, + "grad_norm": 0.20249812304973602, + "learning_rate": 0.0006, + "loss": 3.953911066055298, + "step": 1430 + }, + { + "epoch": 19.88073394495413, + "grad_norm": 0.2350354939699173, + "learning_rate": 0.0006, + "loss": 3.9616730213165283, + "step": 1431 + }, + { + "epoch": 19.89471384884229, + "grad_norm": 0.2566683292388916, + "learning_rate": 0.0006, + "loss": 3.9372501373291016, + "step": 1432 + }, + { + "epoch": 19.90869375273045, + "grad_norm": 0.2520846128463745, + "learning_rate": 0.0006, + "loss": 3.9814648628234863, + "step": 1433 + }, + { + "epoch": 19.92267365661861, + "grad_norm": 0.23989640176296234, + "learning_rate": 0.0006, + "loss": 3.9692864418029785, + "step": 1434 + }, + { + "epoch": 19.936653560506773, + "grad_norm": 0.20650425553321838, + "learning_rate": 0.0006, + "loss": 3.960256814956665, + "step": 1435 + }, + { + "epoch": 19.950633464394933, + "grad_norm": 0.20478376746177673, + "learning_rate": 0.0006, + "loss": 3.9585227966308594, + "step": 1436 + }, + { + "epoch": 19.964613368283093, + "grad_norm": 0.234436497092247, + "learning_rate": 0.0006, + "loss": 3.945631742477417, + "step": 1437 + }, + { + "epoch": 19.978593272171253, + "grad_norm": 0.19969749450683594, + "learning_rate": 0.0006, + "loss": 3.9646050930023193, + "step": 1438 + }, + { + "epoch": 19.992573176059416, + "grad_norm": 0.20638690888881683, + "learning_rate": 0.0006, + "loss": 3.9461846351623535, + "step": 1439 + }, + { + "epoch": 20.0, + "grad_norm": 0.2120274156332016, + "learning_rate": 0.0006, + "loss": 3.965153217315674, + "step": 1440 + }, + { + "epoch": 20.0, + "eval_loss": 4.168524742126465, + "eval_runtime": 44.2796, + "eval_samples_per_second": 55.15, + "eval_steps_per_second": 3.455, + "step": 1440 + }, + { + "epoch": 20.01397990388816, + "grad_norm": 0.19704894721508026, + "learning_rate": 0.0006, + "loss": 3.937016248703003, + "step": 1441 + }, + { + "epoch": 20.027959807776323, + "grad_norm": 0.18682368099689484, + "learning_rate": 0.0006, + "loss": 3.895922899246216, + "step": 1442 + }, + { + "epoch": 20.041939711664483, + "grad_norm": 0.18982571363449097, + "learning_rate": 0.0006, + "loss": 3.929841995239258, + "step": 1443 + }, + { + "epoch": 20.055919615552643, + "grad_norm": 0.20811910927295685, + "learning_rate": 0.0006, + "loss": 3.9498324394226074, + "step": 1444 + }, + { + "epoch": 20.069899519440803, + "grad_norm": 0.2149062603712082, + "learning_rate": 0.0006, + "loss": 3.929853916168213, + "step": 1445 + }, + { + "epoch": 20.083879423328966, + "grad_norm": 0.20016685128211975, + "learning_rate": 0.0006, + "loss": 3.9374136924743652, + "step": 1446 + }, + { + "epoch": 20.097859327217126, + "grad_norm": 0.19969616830348969, + "learning_rate": 0.0006, + "loss": 3.932447910308838, + "step": 1447 + }, + { + "epoch": 20.111839231105286, + "grad_norm": 0.2163356989622116, + "learning_rate": 0.0006, + "loss": 3.9325437545776367, + "step": 1448 + }, + { + "epoch": 20.125819134993446, + "grad_norm": 0.22026969492435455, + "learning_rate": 0.0006, + "loss": 3.9118852615356445, + "step": 1449 + }, + { + "epoch": 20.13979903888161, + "grad_norm": 0.23337116837501526, + "learning_rate": 0.0006, + "loss": 3.9416019916534424, + "step": 1450 + }, + { + "epoch": 20.15377894276977, + "grad_norm": 0.23971447348594666, + "learning_rate": 0.0006, + "loss": 3.9416871070861816, + "step": 1451 + }, + { + "epoch": 20.16775884665793, + "grad_norm": 0.25973960757255554, + "learning_rate": 0.0006, + "loss": 3.93826961517334, + "step": 1452 + }, + { + "epoch": 20.18173875054609, + "grad_norm": 0.2303445190191269, + "learning_rate": 0.0006, + "loss": 3.909383535385132, + "step": 1453 + }, + { + "epoch": 20.195718654434252, + "grad_norm": 0.21090206503868103, + "learning_rate": 0.0006, + "loss": 3.935939311981201, + "step": 1454 + }, + { + "epoch": 20.209698558322412, + "grad_norm": 0.2278691977262497, + "learning_rate": 0.0006, + "loss": 3.9623684883117676, + "step": 1455 + }, + { + "epoch": 20.22367846221057, + "grad_norm": 0.22291512787342072, + "learning_rate": 0.0006, + "loss": 3.9386210441589355, + "step": 1456 + }, + { + "epoch": 20.23765836609873, + "grad_norm": 0.2385793924331665, + "learning_rate": 0.0006, + "loss": 3.927365303039551, + "step": 1457 + }, + { + "epoch": 20.251638269986895, + "grad_norm": 0.23949867486953735, + "learning_rate": 0.0006, + "loss": 3.956698179244995, + "step": 1458 + }, + { + "epoch": 20.265618173875055, + "grad_norm": 0.2232269048690796, + "learning_rate": 0.0006, + "loss": 3.9465065002441406, + "step": 1459 + }, + { + "epoch": 20.279598077763215, + "grad_norm": 0.22286680340766907, + "learning_rate": 0.0006, + "loss": 3.9102284908294678, + "step": 1460 + }, + { + "epoch": 20.293577981651374, + "grad_norm": 0.24039050936698914, + "learning_rate": 0.0006, + "loss": 3.928055763244629, + "step": 1461 + }, + { + "epoch": 20.307557885539538, + "grad_norm": 0.2532738447189331, + "learning_rate": 0.0006, + "loss": 3.931753635406494, + "step": 1462 + }, + { + "epoch": 20.321537789427698, + "grad_norm": 0.2206273376941681, + "learning_rate": 0.0006, + "loss": 3.936119556427002, + "step": 1463 + }, + { + "epoch": 20.335517693315857, + "grad_norm": 0.20918945968151093, + "learning_rate": 0.0006, + "loss": 3.9228529930114746, + "step": 1464 + }, + { + "epoch": 20.34949759720402, + "grad_norm": 0.2324502319097519, + "learning_rate": 0.0006, + "loss": 3.9370768070220947, + "step": 1465 + }, + { + "epoch": 20.36347750109218, + "grad_norm": 0.26811033487319946, + "learning_rate": 0.0006, + "loss": 3.968515396118164, + "step": 1466 + }, + { + "epoch": 20.37745740498034, + "grad_norm": 0.2896045744419098, + "learning_rate": 0.0006, + "loss": 3.945124626159668, + "step": 1467 + }, + { + "epoch": 20.3914373088685, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 3.9399516582489014, + "step": 1468 + }, + { + "epoch": 20.405417212756664, + "grad_norm": 0.3076821565628052, + "learning_rate": 0.0006, + "loss": 3.9545583724975586, + "step": 1469 + }, + { + "epoch": 20.419397116644824, + "grad_norm": 0.3019449710845947, + "learning_rate": 0.0006, + "loss": 3.9502270221710205, + "step": 1470 + }, + { + "epoch": 20.433377020532983, + "grad_norm": 0.31832560896873474, + "learning_rate": 0.0006, + "loss": 3.940439224243164, + "step": 1471 + }, + { + "epoch": 20.447356924421143, + "grad_norm": 0.30303657054901123, + "learning_rate": 0.0006, + "loss": 3.9451770782470703, + "step": 1472 + }, + { + "epoch": 20.461336828309307, + "grad_norm": 0.28122979402542114, + "learning_rate": 0.0006, + "loss": 3.934508800506592, + "step": 1473 + }, + { + "epoch": 20.475316732197467, + "grad_norm": 0.27013441920280457, + "learning_rate": 0.0006, + "loss": 3.924323081970215, + "step": 1474 + }, + { + "epoch": 20.489296636085626, + "grad_norm": 0.29052063822746277, + "learning_rate": 0.0006, + "loss": 3.970916748046875, + "step": 1475 + }, + { + "epoch": 20.503276539973786, + "grad_norm": 0.2871626913547516, + "learning_rate": 0.0006, + "loss": 3.945425033569336, + "step": 1476 + }, + { + "epoch": 20.51725644386195, + "grad_norm": 0.2396184206008911, + "learning_rate": 0.0006, + "loss": 3.964290142059326, + "step": 1477 + }, + { + "epoch": 20.53123634775011, + "grad_norm": 0.21942107379436493, + "learning_rate": 0.0006, + "loss": 3.910101890563965, + "step": 1478 + }, + { + "epoch": 20.54521625163827, + "grad_norm": 0.22193685173988342, + "learning_rate": 0.0006, + "loss": 3.914005756378174, + "step": 1479 + }, + { + "epoch": 20.55919615552643, + "grad_norm": 0.20207515358924866, + "learning_rate": 0.0006, + "loss": 3.9575581550598145, + "step": 1480 + }, + { + "epoch": 20.573176059414592, + "grad_norm": 0.17855247855186462, + "learning_rate": 0.0006, + "loss": 3.941490411758423, + "step": 1481 + }, + { + "epoch": 20.587155963302752, + "grad_norm": 0.21268485486507416, + "learning_rate": 0.0006, + "loss": 3.94045352935791, + "step": 1482 + }, + { + "epoch": 20.601135867190912, + "grad_norm": 0.24890053272247314, + "learning_rate": 0.0006, + "loss": 3.932961940765381, + "step": 1483 + }, + { + "epoch": 20.615115771079076, + "grad_norm": 0.23771314322948456, + "learning_rate": 0.0006, + "loss": 3.9067630767822266, + "step": 1484 + }, + { + "epoch": 20.629095674967235, + "grad_norm": 0.20990237593650818, + "learning_rate": 0.0006, + "loss": 3.9476752281188965, + "step": 1485 + }, + { + "epoch": 20.643075578855395, + "grad_norm": 0.20058798789978027, + "learning_rate": 0.0006, + "loss": 3.9350547790527344, + "step": 1486 + }, + { + "epoch": 20.657055482743555, + "grad_norm": 0.1953001767396927, + "learning_rate": 0.0006, + "loss": 3.9437222480773926, + "step": 1487 + }, + { + "epoch": 20.67103538663172, + "grad_norm": 0.18748535215854645, + "learning_rate": 0.0006, + "loss": 3.9336047172546387, + "step": 1488 + }, + { + "epoch": 20.68501529051988, + "grad_norm": 0.18874801695346832, + "learning_rate": 0.0006, + "loss": 3.9042580127716064, + "step": 1489 + }, + { + "epoch": 20.698995194408038, + "grad_norm": 0.1844169795513153, + "learning_rate": 0.0006, + "loss": 3.9302420616149902, + "step": 1490 + }, + { + "epoch": 20.712975098296198, + "grad_norm": 0.18519413471221924, + "learning_rate": 0.0006, + "loss": 3.9527437686920166, + "step": 1491 + }, + { + "epoch": 20.72695500218436, + "grad_norm": 0.20084598660469055, + "learning_rate": 0.0006, + "loss": 3.9161760807037354, + "step": 1492 + }, + { + "epoch": 20.74093490607252, + "grad_norm": 0.2015734612941742, + "learning_rate": 0.0006, + "loss": 3.9466545581817627, + "step": 1493 + }, + { + "epoch": 20.75491480996068, + "grad_norm": 0.2210122048854828, + "learning_rate": 0.0006, + "loss": 3.8994693756103516, + "step": 1494 + }, + { + "epoch": 20.76889471384884, + "grad_norm": 0.23019762337207794, + "learning_rate": 0.0006, + "loss": 3.93685245513916, + "step": 1495 + }, + { + "epoch": 20.782874617737004, + "grad_norm": 0.21246281266212463, + "learning_rate": 0.0006, + "loss": 3.9499399662017822, + "step": 1496 + }, + { + "epoch": 20.796854521625164, + "grad_norm": 0.21142810583114624, + "learning_rate": 0.0006, + "loss": 3.9317150115966797, + "step": 1497 + }, + { + "epoch": 20.810834425513324, + "grad_norm": 0.20230524241924286, + "learning_rate": 0.0006, + "loss": 3.9389750957489014, + "step": 1498 + }, + { + "epoch": 20.824814329401484, + "grad_norm": 0.21096977591514587, + "learning_rate": 0.0006, + "loss": 3.9325194358825684, + "step": 1499 + }, + { + "epoch": 20.838794233289647, + "grad_norm": 0.2309989333152771, + "learning_rate": 0.0006, + "loss": 3.943641185760498, + "step": 1500 + }, + { + "epoch": 20.852774137177807, + "grad_norm": 0.2016306221485138, + "learning_rate": 0.0006, + "loss": 3.986043930053711, + "step": 1501 + }, + { + "epoch": 20.866754041065967, + "grad_norm": 0.2107970118522644, + "learning_rate": 0.0006, + "loss": 3.9219160079956055, + "step": 1502 + }, + { + "epoch": 20.88073394495413, + "grad_norm": 0.21580125391483307, + "learning_rate": 0.0006, + "loss": 3.942014694213867, + "step": 1503 + }, + { + "epoch": 20.89471384884229, + "grad_norm": 0.21348726749420166, + "learning_rate": 0.0006, + "loss": 3.9389920234680176, + "step": 1504 + }, + { + "epoch": 20.90869375273045, + "grad_norm": 0.23094943165779114, + "learning_rate": 0.0006, + "loss": 3.952993392944336, + "step": 1505 + }, + { + "epoch": 20.92267365661861, + "grad_norm": 0.22431740164756775, + "learning_rate": 0.0006, + "loss": 3.897671937942505, + "step": 1506 + }, + { + "epoch": 20.936653560506773, + "grad_norm": 0.20056353509426117, + "learning_rate": 0.0006, + "loss": 3.9100005626678467, + "step": 1507 + }, + { + "epoch": 20.950633464394933, + "grad_norm": 0.20604434609413147, + "learning_rate": 0.0006, + "loss": 3.9486045837402344, + "step": 1508 + }, + { + "epoch": 20.964613368283093, + "grad_norm": 0.22979380190372467, + "learning_rate": 0.0006, + "loss": 3.977163553237915, + "step": 1509 + }, + { + "epoch": 20.978593272171253, + "grad_norm": 0.2421523779630661, + "learning_rate": 0.0006, + "loss": 3.9216256141662598, + "step": 1510 + }, + { + "epoch": 20.992573176059416, + "grad_norm": 0.25776705145835876, + "learning_rate": 0.0006, + "loss": 3.9221739768981934, + "step": 1511 + }, + { + "epoch": 21.0, + "grad_norm": 0.2750694751739502, + "learning_rate": 0.0006, + "loss": 3.938098907470703, + "step": 1512 + }, + { + "epoch": 21.0, + "eval_loss": 4.159763336181641, + "eval_runtime": 44.8663, + "eval_samples_per_second": 54.428, + "eval_steps_per_second": 3.41, + "step": 1512 + }, + { + "epoch": 21.01397990388816, + "grad_norm": 0.24513043463230133, + "learning_rate": 0.0006, + "loss": 3.8939385414123535, + "step": 1513 + }, + { + "epoch": 21.027959807776323, + "grad_norm": 0.22209352254867554, + "learning_rate": 0.0006, + "loss": 3.9044857025146484, + "step": 1514 + }, + { + "epoch": 21.041939711664483, + "grad_norm": 0.22437648475170135, + "learning_rate": 0.0006, + "loss": 3.9325196743011475, + "step": 1515 + }, + { + "epoch": 21.055919615552643, + "grad_norm": 0.21168062090873718, + "learning_rate": 0.0006, + "loss": 3.882176637649536, + "step": 1516 + }, + { + "epoch": 21.069899519440803, + "grad_norm": 0.22334499657154083, + "learning_rate": 0.0006, + "loss": 3.8978934288024902, + "step": 1517 + }, + { + "epoch": 21.083879423328966, + "grad_norm": 0.21038010716438293, + "learning_rate": 0.0006, + "loss": 3.8807029724121094, + "step": 1518 + }, + { + "epoch": 21.097859327217126, + "grad_norm": 0.2243613600730896, + "learning_rate": 0.0006, + "loss": 3.924865961074829, + "step": 1519 + }, + { + "epoch": 21.111839231105286, + "grad_norm": 0.2535616159439087, + "learning_rate": 0.0006, + "loss": 3.9288227558135986, + "step": 1520 + }, + { + "epoch": 21.125819134993446, + "grad_norm": 0.2782756984233856, + "learning_rate": 0.0006, + "loss": 3.908233642578125, + "step": 1521 + }, + { + "epoch": 21.13979903888161, + "grad_norm": 0.2586214542388916, + "learning_rate": 0.0006, + "loss": 3.9151182174682617, + "step": 1522 + }, + { + "epoch": 21.15377894276977, + "grad_norm": 0.22465091943740845, + "learning_rate": 0.0006, + "loss": 3.9209084510803223, + "step": 1523 + }, + { + "epoch": 21.16775884665793, + "grad_norm": 0.2588018774986267, + "learning_rate": 0.0006, + "loss": 3.9295971393585205, + "step": 1524 + }, + { + "epoch": 21.18173875054609, + "grad_norm": 0.2637675702571869, + "learning_rate": 0.0006, + "loss": 3.9353199005126953, + "step": 1525 + }, + { + "epoch": 21.195718654434252, + "grad_norm": 0.2806383967399597, + "learning_rate": 0.0006, + "loss": 3.922337770462036, + "step": 1526 + }, + { + "epoch": 21.209698558322412, + "grad_norm": 0.27103501558303833, + "learning_rate": 0.0006, + "loss": 3.8811073303222656, + "step": 1527 + }, + { + "epoch": 21.22367846221057, + "grad_norm": 0.27203720808029175, + "learning_rate": 0.0006, + "loss": 3.9036178588867188, + "step": 1528 + }, + { + "epoch": 21.23765836609873, + "grad_norm": 0.2783355712890625, + "learning_rate": 0.0006, + "loss": 3.885456085205078, + "step": 1529 + }, + { + "epoch": 21.251638269986895, + "grad_norm": 0.2884930968284607, + "learning_rate": 0.0006, + "loss": 3.8936941623687744, + "step": 1530 + }, + { + "epoch": 21.265618173875055, + "grad_norm": 0.2829558849334717, + "learning_rate": 0.0006, + "loss": 3.927624225616455, + "step": 1531 + }, + { + "epoch": 21.279598077763215, + "grad_norm": 0.2809497117996216, + "learning_rate": 0.0006, + "loss": 3.8896753787994385, + "step": 1532 + }, + { + "epoch": 21.293577981651374, + "grad_norm": 0.27037671208381653, + "learning_rate": 0.0006, + "loss": 3.91316294670105, + "step": 1533 + }, + { + "epoch": 21.307557885539538, + "grad_norm": 0.310051292181015, + "learning_rate": 0.0006, + "loss": 3.9137332439422607, + "step": 1534 + }, + { + "epoch": 21.321537789427698, + "grad_norm": 0.30489876866340637, + "learning_rate": 0.0006, + "loss": 3.9088284969329834, + "step": 1535 + }, + { + "epoch": 21.335517693315857, + "grad_norm": 0.2607756555080414, + "learning_rate": 0.0006, + "loss": 3.9097847938537598, + "step": 1536 + }, + { + "epoch": 21.34949759720402, + "grad_norm": 0.2460775375366211, + "learning_rate": 0.0006, + "loss": 3.941211700439453, + "step": 1537 + }, + { + "epoch": 21.36347750109218, + "grad_norm": 0.24271734058856964, + "learning_rate": 0.0006, + "loss": 3.9140594005584717, + "step": 1538 + }, + { + "epoch": 21.37745740498034, + "grad_norm": 0.20012645423412323, + "learning_rate": 0.0006, + "loss": 3.888446807861328, + "step": 1539 + }, + { + "epoch": 21.3914373088685, + "grad_norm": 0.2196308672428131, + "learning_rate": 0.0006, + "loss": 3.9153785705566406, + "step": 1540 + }, + { + "epoch": 21.405417212756664, + "grad_norm": 0.22184589505195618, + "learning_rate": 0.0006, + "loss": 3.91996431350708, + "step": 1541 + }, + { + "epoch": 21.419397116644824, + "grad_norm": 0.22947315871715546, + "learning_rate": 0.0006, + "loss": 3.9268412590026855, + "step": 1542 + }, + { + "epoch": 21.433377020532983, + "grad_norm": 0.22275054454803467, + "learning_rate": 0.0006, + "loss": 3.909275531768799, + "step": 1543 + }, + { + "epoch": 21.447356924421143, + "grad_norm": 0.23103971779346466, + "learning_rate": 0.0006, + "loss": 3.925635814666748, + "step": 1544 + }, + { + "epoch": 21.461336828309307, + "grad_norm": 0.23379720747470856, + "learning_rate": 0.0006, + "loss": 3.926647186279297, + "step": 1545 + }, + { + "epoch": 21.475316732197467, + "grad_norm": 0.2244282215833664, + "learning_rate": 0.0006, + "loss": 3.9428000450134277, + "step": 1546 + }, + { + "epoch": 21.489296636085626, + "grad_norm": 0.22773298621177673, + "learning_rate": 0.0006, + "loss": 3.9378256797790527, + "step": 1547 + }, + { + "epoch": 21.503276539973786, + "grad_norm": 0.1918657273054123, + "learning_rate": 0.0006, + "loss": 3.904022216796875, + "step": 1548 + }, + { + "epoch": 21.51725644386195, + "grad_norm": 0.18415570259094238, + "learning_rate": 0.0006, + "loss": 3.9105122089385986, + "step": 1549 + }, + { + "epoch": 21.53123634775011, + "grad_norm": 0.22141380608081818, + "learning_rate": 0.0006, + "loss": 3.9153857231140137, + "step": 1550 + }, + { + "epoch": 21.54521625163827, + "grad_norm": 0.22533352673053741, + "learning_rate": 0.0006, + "loss": 3.9148974418640137, + "step": 1551 + }, + { + "epoch": 21.55919615552643, + "grad_norm": 0.2124762088060379, + "learning_rate": 0.0006, + "loss": 3.926311731338501, + "step": 1552 + }, + { + "epoch": 21.573176059414592, + "grad_norm": 0.239680215716362, + "learning_rate": 0.0006, + "loss": 3.9260334968566895, + "step": 1553 + }, + { + "epoch": 21.587155963302752, + "grad_norm": 0.24158740043640137, + "learning_rate": 0.0006, + "loss": 3.933223247528076, + "step": 1554 + }, + { + "epoch": 21.601135867190912, + "grad_norm": 0.2216576784849167, + "learning_rate": 0.0006, + "loss": 3.9065442085266113, + "step": 1555 + }, + { + "epoch": 21.615115771079076, + "grad_norm": 0.20099912583827972, + "learning_rate": 0.0006, + "loss": 3.923278570175171, + "step": 1556 + }, + { + "epoch": 21.629095674967235, + "grad_norm": 0.2337288111448288, + "learning_rate": 0.0006, + "loss": 3.92032527923584, + "step": 1557 + }, + { + "epoch": 21.643075578855395, + "grad_norm": 0.23574814200401306, + "learning_rate": 0.0006, + "loss": 3.896244525909424, + "step": 1558 + }, + { + "epoch": 21.657055482743555, + "grad_norm": 0.21338573098182678, + "learning_rate": 0.0006, + "loss": 3.930345058441162, + "step": 1559 + }, + { + "epoch": 21.67103538663172, + "grad_norm": 0.2375067174434662, + "learning_rate": 0.0006, + "loss": 3.864104986190796, + "step": 1560 + }, + { + "epoch": 21.68501529051988, + "grad_norm": 0.22490349411964417, + "learning_rate": 0.0006, + "loss": 3.883296012878418, + "step": 1561 + }, + { + "epoch": 21.698995194408038, + "grad_norm": 0.23021313548088074, + "learning_rate": 0.0006, + "loss": 3.915200710296631, + "step": 1562 + }, + { + "epoch": 21.712975098296198, + "grad_norm": 0.22590875625610352, + "learning_rate": 0.0006, + "loss": 3.903597354888916, + "step": 1563 + }, + { + "epoch": 21.72695500218436, + "grad_norm": 0.19066260755062103, + "learning_rate": 0.0006, + "loss": 3.9162631034851074, + "step": 1564 + }, + { + "epoch": 21.74093490607252, + "grad_norm": 0.18134327232837677, + "learning_rate": 0.0006, + "loss": 3.9167914390563965, + "step": 1565 + }, + { + "epoch": 21.75491480996068, + "grad_norm": 0.1782190054655075, + "learning_rate": 0.0006, + "loss": 3.900925636291504, + "step": 1566 + }, + { + "epoch": 21.76889471384884, + "grad_norm": 0.19034099578857422, + "learning_rate": 0.0006, + "loss": 3.896559238433838, + "step": 1567 + }, + { + "epoch": 21.782874617737004, + "grad_norm": 0.21509577333927155, + "learning_rate": 0.0006, + "loss": 3.891681671142578, + "step": 1568 + }, + { + "epoch": 21.796854521625164, + "grad_norm": 0.2370351105928421, + "learning_rate": 0.0006, + "loss": 3.886570453643799, + "step": 1569 + }, + { + "epoch": 21.810834425513324, + "grad_norm": 0.25546324253082275, + "learning_rate": 0.0006, + "loss": 3.9247193336486816, + "step": 1570 + }, + { + "epoch": 21.824814329401484, + "grad_norm": 0.2513384222984314, + "learning_rate": 0.0006, + "loss": 3.9120583534240723, + "step": 1571 + }, + { + "epoch": 21.838794233289647, + "grad_norm": 0.24691323935985565, + "learning_rate": 0.0006, + "loss": 3.9144935607910156, + "step": 1572 + }, + { + "epoch": 21.852774137177807, + "grad_norm": 0.2573968172073364, + "learning_rate": 0.0006, + "loss": 3.9517531394958496, + "step": 1573 + }, + { + "epoch": 21.866754041065967, + "grad_norm": 0.25461453199386597, + "learning_rate": 0.0006, + "loss": 3.93508243560791, + "step": 1574 + }, + { + "epoch": 21.88073394495413, + "grad_norm": 0.23756568133831024, + "learning_rate": 0.0006, + "loss": 3.8885269165039062, + "step": 1575 + }, + { + "epoch": 21.89471384884229, + "grad_norm": 0.2193172425031662, + "learning_rate": 0.0006, + "loss": 3.9103426933288574, + "step": 1576 + }, + { + "epoch": 21.90869375273045, + "grad_norm": 0.2350149303674698, + "learning_rate": 0.0006, + "loss": 3.9399590492248535, + "step": 1577 + }, + { + "epoch": 21.92267365661861, + "grad_norm": 0.23759333789348602, + "learning_rate": 0.0006, + "loss": 3.9433584213256836, + "step": 1578 + }, + { + "epoch": 21.936653560506773, + "grad_norm": 0.21108432114124298, + "learning_rate": 0.0006, + "loss": 3.9241819381713867, + "step": 1579 + }, + { + "epoch": 21.950633464394933, + "grad_norm": 0.22088949382305145, + "learning_rate": 0.0006, + "loss": 3.9231910705566406, + "step": 1580 + }, + { + "epoch": 21.964613368283093, + "grad_norm": 0.22125045955181122, + "learning_rate": 0.0006, + "loss": 3.896329164505005, + "step": 1581 + }, + { + "epoch": 21.978593272171253, + "grad_norm": 0.20745202898979187, + "learning_rate": 0.0006, + "loss": 3.8920536041259766, + "step": 1582 + }, + { + "epoch": 21.992573176059416, + "grad_norm": 0.2409721463918686, + "learning_rate": 0.0006, + "loss": 3.9061317443847656, + "step": 1583 + }, + { + "epoch": 22.0, + "grad_norm": 0.2669669985771179, + "learning_rate": 0.0006, + "loss": 3.922062397003174, + "step": 1584 + }, + { + "epoch": 22.0, + "eval_loss": 4.140966415405273, + "eval_runtime": 46.7132, + "eval_samples_per_second": 52.276, + "eval_steps_per_second": 3.275, + "step": 1584 + }, + { + "epoch": 22.01397990388816, + "grad_norm": 0.26155969500541687, + "learning_rate": 0.0006, + "loss": 3.888944625854492, + "step": 1585 + }, + { + "epoch": 22.027959807776323, + "grad_norm": 0.2579149007797241, + "learning_rate": 0.0006, + "loss": 3.8924355506896973, + "step": 1586 + }, + { + "epoch": 22.041939711664483, + "grad_norm": 0.2429896742105484, + "learning_rate": 0.0006, + "loss": 3.8714070320129395, + "step": 1587 + }, + { + "epoch": 22.055919615552643, + "grad_norm": 0.23497673869132996, + "learning_rate": 0.0006, + "loss": 3.905089855194092, + "step": 1588 + }, + { + "epoch": 22.069899519440803, + "grad_norm": 0.24074940383434296, + "learning_rate": 0.0006, + "loss": 3.886845111846924, + "step": 1589 + }, + { + "epoch": 22.083879423328966, + "grad_norm": 0.2226274162530899, + "learning_rate": 0.0006, + "loss": 3.8554329872131348, + "step": 1590 + }, + { + "epoch": 22.097859327217126, + "grad_norm": 0.22924423217773438, + "learning_rate": 0.0006, + "loss": 3.8914356231689453, + "step": 1591 + }, + { + "epoch": 22.111839231105286, + "grad_norm": 0.2459387183189392, + "learning_rate": 0.0006, + "loss": 3.902522087097168, + "step": 1592 + }, + { + "epoch": 22.125819134993446, + "grad_norm": 0.2704590857028961, + "learning_rate": 0.0006, + "loss": 3.896497964859009, + "step": 1593 + }, + { + "epoch": 22.13979903888161, + "grad_norm": 0.2848219871520996, + "learning_rate": 0.0006, + "loss": 3.88423228263855, + "step": 1594 + }, + { + "epoch": 22.15377894276977, + "grad_norm": 0.22996552288532257, + "learning_rate": 0.0006, + "loss": 3.9034953117370605, + "step": 1595 + }, + { + "epoch": 22.16775884665793, + "grad_norm": 0.2117270529270172, + "learning_rate": 0.0006, + "loss": 3.888279914855957, + "step": 1596 + }, + { + "epoch": 22.18173875054609, + "grad_norm": 0.19724160432815552, + "learning_rate": 0.0006, + "loss": 3.860525131225586, + "step": 1597 + }, + { + "epoch": 22.195718654434252, + "grad_norm": 0.2012624740600586, + "learning_rate": 0.0006, + "loss": 3.8930106163024902, + "step": 1598 + }, + { + "epoch": 22.209698558322412, + "grad_norm": 0.20243871212005615, + "learning_rate": 0.0006, + "loss": 3.8727619647979736, + "step": 1599 + }, + { + "epoch": 22.22367846221057, + "grad_norm": 0.21737465262413025, + "learning_rate": 0.0006, + "loss": 3.887969493865967, + "step": 1600 + }, + { + "epoch": 22.23765836609873, + "grad_norm": 0.23969845473766327, + "learning_rate": 0.0006, + "loss": 3.8629722595214844, + "step": 1601 + }, + { + "epoch": 22.251638269986895, + "grad_norm": 0.22874902188777924, + "learning_rate": 0.0006, + "loss": 3.9135584831237793, + "step": 1602 + }, + { + "epoch": 22.265618173875055, + "grad_norm": 0.209506556391716, + "learning_rate": 0.0006, + "loss": 3.8734190464019775, + "step": 1603 + }, + { + "epoch": 22.279598077763215, + "grad_norm": 0.22235789895057678, + "learning_rate": 0.0006, + "loss": 3.884854793548584, + "step": 1604 + }, + { + "epoch": 22.293577981651374, + "grad_norm": 0.21975041925907135, + "learning_rate": 0.0006, + "loss": 3.8860888481140137, + "step": 1605 + }, + { + "epoch": 22.307557885539538, + "grad_norm": 0.21474459767341614, + "learning_rate": 0.0006, + "loss": 3.9052200317382812, + "step": 1606 + }, + { + "epoch": 22.321537789427698, + "grad_norm": 0.2103329747915268, + "learning_rate": 0.0006, + "loss": 3.8516340255737305, + "step": 1607 + }, + { + "epoch": 22.335517693315857, + "grad_norm": 0.1981191635131836, + "learning_rate": 0.0006, + "loss": 3.9017434120178223, + "step": 1608 + }, + { + "epoch": 22.34949759720402, + "grad_norm": 0.20679591596126556, + "learning_rate": 0.0006, + "loss": 3.889885425567627, + "step": 1609 + }, + { + "epoch": 22.36347750109218, + "grad_norm": 0.20809867978096008, + "learning_rate": 0.0006, + "loss": 3.881868362426758, + "step": 1610 + }, + { + "epoch": 22.37745740498034, + "grad_norm": 0.21394680440425873, + "learning_rate": 0.0006, + "loss": 3.89980411529541, + "step": 1611 + }, + { + "epoch": 22.3914373088685, + "grad_norm": 0.2334284782409668, + "learning_rate": 0.0006, + "loss": 3.8672266006469727, + "step": 1612 + }, + { + "epoch": 22.405417212756664, + "grad_norm": 0.26521918177604675, + "learning_rate": 0.0006, + "loss": 3.8918118476867676, + "step": 1613 + }, + { + "epoch": 22.419397116644824, + "grad_norm": 0.2652994394302368, + "learning_rate": 0.0006, + "loss": 3.8683271408081055, + "step": 1614 + }, + { + "epoch": 22.433377020532983, + "grad_norm": 0.2568066716194153, + "learning_rate": 0.0006, + "loss": 3.892523765563965, + "step": 1615 + }, + { + "epoch": 22.447356924421143, + "grad_norm": 0.260052353143692, + "learning_rate": 0.0006, + "loss": 3.897305488586426, + "step": 1616 + }, + { + "epoch": 22.461336828309307, + "grad_norm": 0.2744271457195282, + "learning_rate": 0.0006, + "loss": 3.8962221145629883, + "step": 1617 + }, + { + "epoch": 22.475316732197467, + "grad_norm": 0.23755787312984467, + "learning_rate": 0.0006, + "loss": 3.888184070587158, + "step": 1618 + }, + { + "epoch": 22.489296636085626, + "grad_norm": 0.2515312135219574, + "learning_rate": 0.0006, + "loss": 3.8946003913879395, + "step": 1619 + }, + { + "epoch": 22.503276539973786, + "grad_norm": 0.24835044145584106, + "learning_rate": 0.0006, + "loss": 3.8711423873901367, + "step": 1620 + }, + { + "epoch": 22.51725644386195, + "grad_norm": 0.22615326941013336, + "learning_rate": 0.0006, + "loss": 3.8878846168518066, + "step": 1621 + }, + { + "epoch": 22.53123634775011, + "grad_norm": 0.20482423901557922, + "learning_rate": 0.0006, + "loss": 3.8782598972320557, + "step": 1622 + }, + { + "epoch": 22.54521625163827, + "grad_norm": 0.20436473190784454, + "learning_rate": 0.0006, + "loss": 3.9075279235839844, + "step": 1623 + }, + { + "epoch": 22.55919615552643, + "grad_norm": 0.2066277265548706, + "learning_rate": 0.0006, + "loss": 3.89908766746521, + "step": 1624 + }, + { + "epoch": 22.573176059414592, + "grad_norm": 0.20735307037830353, + "learning_rate": 0.0006, + "loss": 3.865204334259033, + "step": 1625 + }, + { + "epoch": 22.587155963302752, + "grad_norm": 0.20955748856067657, + "learning_rate": 0.0006, + "loss": 3.8835532665252686, + "step": 1626 + }, + { + "epoch": 22.601135867190912, + "grad_norm": 0.21354222297668457, + "learning_rate": 0.0006, + "loss": 3.9012551307678223, + "step": 1627 + }, + { + "epoch": 22.615115771079076, + "grad_norm": 0.2075091004371643, + "learning_rate": 0.0006, + "loss": 3.8733482360839844, + "step": 1628 + }, + { + "epoch": 22.629095674967235, + "grad_norm": 0.20207874476909637, + "learning_rate": 0.0006, + "loss": 3.9193859100341797, + "step": 1629 + }, + { + "epoch": 22.643075578855395, + "grad_norm": 0.21863923966884613, + "learning_rate": 0.0006, + "loss": 3.883518695831299, + "step": 1630 + }, + { + "epoch": 22.657055482743555, + "grad_norm": 0.22117522358894348, + "learning_rate": 0.0006, + "loss": 3.9163284301757812, + "step": 1631 + }, + { + "epoch": 22.67103538663172, + "grad_norm": 0.2078622728586197, + "learning_rate": 0.0006, + "loss": 3.868274688720703, + "step": 1632 + }, + { + "epoch": 22.68501529051988, + "grad_norm": 0.22745893895626068, + "learning_rate": 0.0006, + "loss": 3.9171340465545654, + "step": 1633 + }, + { + "epoch": 22.698995194408038, + "grad_norm": 0.2312736064195633, + "learning_rate": 0.0006, + "loss": 3.9487013816833496, + "step": 1634 + }, + { + "epoch": 22.712975098296198, + "grad_norm": 0.20491497218608856, + "learning_rate": 0.0006, + "loss": 3.91833758354187, + "step": 1635 + }, + { + "epoch": 22.72695500218436, + "grad_norm": 0.1899084597826004, + "learning_rate": 0.0006, + "loss": 3.876225709915161, + "step": 1636 + }, + { + "epoch": 22.74093490607252, + "grad_norm": 0.18581682443618774, + "learning_rate": 0.0006, + "loss": 3.8667988777160645, + "step": 1637 + }, + { + "epoch": 22.75491480996068, + "grad_norm": 0.19855599105358124, + "learning_rate": 0.0006, + "loss": 3.900789260864258, + "step": 1638 + }, + { + "epoch": 22.76889471384884, + "grad_norm": 0.19951458275318146, + "learning_rate": 0.0006, + "loss": 3.8850367069244385, + "step": 1639 + }, + { + "epoch": 22.782874617737004, + "grad_norm": 0.22802744805812836, + "learning_rate": 0.0006, + "loss": 3.9181363582611084, + "step": 1640 + }, + { + "epoch": 22.796854521625164, + "grad_norm": 0.24279919266700745, + "learning_rate": 0.0006, + "loss": 3.8843770027160645, + "step": 1641 + }, + { + "epoch": 22.810834425513324, + "grad_norm": 0.23554913699626923, + "learning_rate": 0.0006, + "loss": 3.8802413940429688, + "step": 1642 + }, + { + "epoch": 22.824814329401484, + "grad_norm": 0.22343270480632782, + "learning_rate": 0.0006, + "loss": 3.8524107933044434, + "step": 1643 + }, + { + "epoch": 22.838794233289647, + "grad_norm": 0.2185724526643753, + "learning_rate": 0.0006, + "loss": 3.9117047786712646, + "step": 1644 + }, + { + "epoch": 22.852774137177807, + "grad_norm": 0.2114841341972351, + "learning_rate": 0.0006, + "loss": 3.90325927734375, + "step": 1645 + }, + { + "epoch": 22.866754041065967, + "grad_norm": 0.21072550117969513, + "learning_rate": 0.0006, + "loss": 3.8988137245178223, + "step": 1646 + }, + { + "epoch": 22.88073394495413, + "grad_norm": 0.2250078171491623, + "learning_rate": 0.0006, + "loss": 3.9201531410217285, + "step": 1647 + }, + { + "epoch": 22.89471384884229, + "grad_norm": 0.20928071439266205, + "learning_rate": 0.0006, + "loss": 3.91666316986084, + "step": 1648 + }, + { + "epoch": 22.90869375273045, + "grad_norm": 0.24096311628818512, + "learning_rate": 0.0006, + "loss": 3.8797364234924316, + "step": 1649 + }, + { + "epoch": 22.92267365661861, + "grad_norm": 0.2591194212436676, + "learning_rate": 0.0006, + "loss": 3.883273124694824, + "step": 1650 + }, + { + "epoch": 22.936653560506773, + "grad_norm": 0.27342668175697327, + "learning_rate": 0.0006, + "loss": 3.8645026683807373, + "step": 1651 + }, + { + "epoch": 22.950633464394933, + "grad_norm": 0.2448573112487793, + "learning_rate": 0.0006, + "loss": 3.9093551635742188, + "step": 1652 + }, + { + "epoch": 22.964613368283093, + "grad_norm": 0.19899503886699677, + "learning_rate": 0.0006, + "loss": 3.9001057147979736, + "step": 1653 + }, + { + "epoch": 22.978593272171253, + "grad_norm": 0.2023746520280838, + "learning_rate": 0.0006, + "loss": 3.886474370956421, + "step": 1654 + }, + { + "epoch": 22.992573176059416, + "grad_norm": 0.19894269108772278, + "learning_rate": 0.0006, + "loss": 3.9004204273223877, + "step": 1655 + }, + { + "epoch": 23.0, + "grad_norm": 0.2401709407567978, + "learning_rate": 0.0006, + "loss": 3.8665566444396973, + "step": 1656 + }, + { + "epoch": 23.0, + "eval_loss": 4.112459659576416, + "eval_runtime": 44.8325, + "eval_samples_per_second": 54.469, + "eval_steps_per_second": 3.413, + "step": 1656 + }, + { + "epoch": 23.01397990388816, + "grad_norm": 0.22662921249866486, + "learning_rate": 0.0006, + "loss": 3.853271961212158, + "step": 1657 + }, + { + "epoch": 23.027959807776323, + "grad_norm": 0.24406856298446655, + "learning_rate": 0.0006, + "loss": 3.8691890239715576, + "step": 1658 + }, + { + "epoch": 23.041939711664483, + "grad_norm": 0.2266651839017868, + "learning_rate": 0.0006, + "loss": 3.838599681854248, + "step": 1659 + }, + { + "epoch": 23.055919615552643, + "grad_norm": 0.22303511202335358, + "learning_rate": 0.0006, + "loss": 3.8678267002105713, + "step": 1660 + }, + { + "epoch": 23.069899519440803, + "grad_norm": 0.2272164225578308, + "learning_rate": 0.0006, + "loss": 3.9045681953430176, + "step": 1661 + }, + { + "epoch": 23.083879423328966, + "grad_norm": 0.25004875659942627, + "learning_rate": 0.0006, + "loss": 3.856503963470459, + "step": 1662 + }, + { + "epoch": 23.097859327217126, + "grad_norm": 0.26016247272491455, + "learning_rate": 0.0006, + "loss": 3.878587007522583, + "step": 1663 + }, + { + "epoch": 23.111839231105286, + "grad_norm": 0.28539901971817017, + "learning_rate": 0.0006, + "loss": 3.864248514175415, + "step": 1664 + }, + { + "epoch": 23.125819134993446, + "grad_norm": 0.27504822611808777, + "learning_rate": 0.0006, + "loss": 3.821448802947998, + "step": 1665 + }, + { + "epoch": 23.13979903888161, + "grad_norm": 0.238910973072052, + "learning_rate": 0.0006, + "loss": 3.8635847568511963, + "step": 1666 + }, + { + "epoch": 23.15377894276977, + "grad_norm": 0.24179652333259583, + "learning_rate": 0.0006, + "loss": 3.8339638710021973, + "step": 1667 + }, + { + "epoch": 23.16775884665793, + "grad_norm": 0.2199544757604599, + "learning_rate": 0.0006, + "loss": 3.868396759033203, + "step": 1668 + }, + { + "epoch": 23.18173875054609, + "grad_norm": 0.1965002566576004, + "learning_rate": 0.0006, + "loss": 3.8761439323425293, + "step": 1669 + }, + { + "epoch": 23.195718654434252, + "grad_norm": 0.20426614582538605, + "learning_rate": 0.0006, + "loss": 3.822899580001831, + "step": 1670 + }, + { + "epoch": 23.209698558322412, + "grad_norm": 0.2197263389825821, + "learning_rate": 0.0006, + "loss": 3.887728452682495, + "step": 1671 + }, + { + "epoch": 23.22367846221057, + "grad_norm": 0.22844573855400085, + "learning_rate": 0.0006, + "loss": 3.8550517559051514, + "step": 1672 + }, + { + "epoch": 23.23765836609873, + "grad_norm": 0.2347746044397354, + "learning_rate": 0.0006, + "loss": 3.903310537338257, + "step": 1673 + }, + { + "epoch": 23.251638269986895, + "grad_norm": 0.24167625606060028, + "learning_rate": 0.0006, + "loss": 3.8397774696350098, + "step": 1674 + }, + { + "epoch": 23.265618173875055, + "grad_norm": 0.2691650688648224, + "learning_rate": 0.0006, + "loss": 3.853254795074463, + "step": 1675 + }, + { + "epoch": 23.279598077763215, + "grad_norm": 0.29421621561050415, + "learning_rate": 0.0006, + "loss": 3.86065411567688, + "step": 1676 + }, + { + "epoch": 23.293577981651374, + "grad_norm": 0.31074345111846924, + "learning_rate": 0.0006, + "loss": 3.8716742992401123, + "step": 1677 + }, + { + "epoch": 23.307557885539538, + "grad_norm": 0.3044569194316864, + "learning_rate": 0.0006, + "loss": 3.8738951683044434, + "step": 1678 + }, + { + "epoch": 23.321537789427698, + "grad_norm": 0.30496764183044434, + "learning_rate": 0.0006, + "loss": 3.884446620941162, + "step": 1679 + }, + { + "epoch": 23.335517693315857, + "grad_norm": 0.31122756004333496, + "learning_rate": 0.0006, + "loss": 3.878495693206787, + "step": 1680 + }, + { + "epoch": 23.34949759720402, + "grad_norm": 0.32268181443214417, + "learning_rate": 0.0006, + "loss": 3.8793649673461914, + "step": 1681 + }, + { + "epoch": 23.36347750109218, + "grad_norm": 0.3297140598297119, + "learning_rate": 0.0006, + "loss": 3.87484073638916, + "step": 1682 + }, + { + "epoch": 23.37745740498034, + "grad_norm": 0.26007479429244995, + "learning_rate": 0.0006, + "loss": 3.8510947227478027, + "step": 1683 + }, + { + "epoch": 23.3914373088685, + "grad_norm": 0.2627335786819458, + "learning_rate": 0.0006, + "loss": 3.8783209323883057, + "step": 1684 + }, + { + "epoch": 23.405417212756664, + "grad_norm": 0.256452739238739, + "learning_rate": 0.0006, + "loss": 3.8594281673431396, + "step": 1685 + }, + { + "epoch": 23.419397116644824, + "grad_norm": 0.23892226815223694, + "learning_rate": 0.0006, + "loss": 3.898951292037964, + "step": 1686 + }, + { + "epoch": 23.433377020532983, + "grad_norm": 0.21625587344169617, + "learning_rate": 0.0006, + "loss": 3.8679966926574707, + "step": 1687 + }, + { + "epoch": 23.447356924421143, + "grad_norm": 0.21924619376659393, + "learning_rate": 0.0006, + "loss": 3.8774075508117676, + "step": 1688 + }, + { + "epoch": 23.461336828309307, + "grad_norm": 0.21500127017498016, + "learning_rate": 0.0006, + "loss": 3.870619297027588, + "step": 1689 + }, + { + "epoch": 23.475316732197467, + "grad_norm": 0.22580556571483612, + "learning_rate": 0.0006, + "loss": 3.887722969055176, + "step": 1690 + }, + { + "epoch": 23.489296636085626, + "grad_norm": 0.2500104308128357, + "learning_rate": 0.0006, + "loss": 3.88789963722229, + "step": 1691 + }, + { + "epoch": 23.503276539973786, + "grad_norm": 0.22462762892246246, + "learning_rate": 0.0006, + "loss": 3.863997459411621, + "step": 1692 + }, + { + "epoch": 23.51725644386195, + "grad_norm": 0.21427781879901886, + "learning_rate": 0.0006, + "loss": 3.8827033042907715, + "step": 1693 + }, + { + "epoch": 23.53123634775011, + "grad_norm": 0.22278577089309692, + "learning_rate": 0.0006, + "loss": 3.8659563064575195, + "step": 1694 + }, + { + "epoch": 23.54521625163827, + "grad_norm": 0.22801144421100616, + "learning_rate": 0.0006, + "loss": 3.9031362533569336, + "step": 1695 + }, + { + "epoch": 23.55919615552643, + "grad_norm": 0.25071898102760315, + "learning_rate": 0.0006, + "loss": 3.887746810913086, + "step": 1696 + }, + { + "epoch": 23.573176059414592, + "grad_norm": 0.2564085125923157, + "learning_rate": 0.0006, + "loss": 3.8918356895446777, + "step": 1697 + }, + { + "epoch": 23.587155963302752, + "grad_norm": 0.24603120982646942, + "learning_rate": 0.0006, + "loss": 3.850416421890259, + "step": 1698 + }, + { + "epoch": 23.601135867190912, + "grad_norm": 0.20539002120494843, + "learning_rate": 0.0006, + "loss": 3.862060070037842, + "step": 1699 + }, + { + "epoch": 23.615115771079076, + "grad_norm": 0.2022249400615692, + "learning_rate": 0.0006, + "loss": 3.899008274078369, + "step": 1700 + }, + { + "epoch": 23.629095674967235, + "grad_norm": 0.2435392290353775, + "learning_rate": 0.0006, + "loss": 3.844388961791992, + "step": 1701 + }, + { + "epoch": 23.643075578855395, + "grad_norm": 0.21146756410598755, + "learning_rate": 0.0006, + "loss": 3.8972439765930176, + "step": 1702 + }, + { + "epoch": 23.657055482743555, + "grad_norm": 0.2025400996208191, + "learning_rate": 0.0006, + "loss": 3.865253448486328, + "step": 1703 + }, + { + "epoch": 23.67103538663172, + "grad_norm": 0.21129970252513885, + "learning_rate": 0.0006, + "loss": 3.8768205642700195, + "step": 1704 + }, + { + "epoch": 23.68501529051988, + "grad_norm": 0.22982284426689148, + "learning_rate": 0.0006, + "loss": 3.8792667388916016, + "step": 1705 + }, + { + "epoch": 23.698995194408038, + "grad_norm": 0.23013733327388763, + "learning_rate": 0.0006, + "loss": 3.880897045135498, + "step": 1706 + }, + { + "epoch": 23.712975098296198, + "grad_norm": 0.2277672290802002, + "learning_rate": 0.0006, + "loss": 3.8738410472869873, + "step": 1707 + }, + { + "epoch": 23.72695500218436, + "grad_norm": 0.2343369573354721, + "learning_rate": 0.0006, + "loss": 3.8587026596069336, + "step": 1708 + }, + { + "epoch": 23.74093490607252, + "grad_norm": 0.23159530758857727, + "learning_rate": 0.0006, + "loss": 3.856306552886963, + "step": 1709 + }, + { + "epoch": 23.75491480996068, + "grad_norm": 0.19541035592556, + "learning_rate": 0.0006, + "loss": 3.8294754028320312, + "step": 1710 + }, + { + "epoch": 23.76889471384884, + "grad_norm": 0.22999322414398193, + "learning_rate": 0.0006, + "loss": 3.882676124572754, + "step": 1711 + }, + { + "epoch": 23.782874617737004, + "grad_norm": 0.23442843556404114, + "learning_rate": 0.0006, + "loss": 3.8887529373168945, + "step": 1712 + }, + { + "epoch": 23.796854521625164, + "grad_norm": 0.22914239764213562, + "learning_rate": 0.0006, + "loss": 3.867673635482788, + "step": 1713 + }, + { + "epoch": 23.810834425513324, + "grad_norm": 0.20683827996253967, + "learning_rate": 0.0006, + "loss": 3.8999581336975098, + "step": 1714 + }, + { + "epoch": 23.824814329401484, + "grad_norm": 0.19281277060508728, + "learning_rate": 0.0006, + "loss": 3.8997726440429688, + "step": 1715 + }, + { + "epoch": 23.838794233289647, + "grad_norm": 0.20058563351631165, + "learning_rate": 0.0006, + "loss": 3.8583860397338867, + "step": 1716 + }, + { + "epoch": 23.852774137177807, + "grad_norm": 0.19856606423854828, + "learning_rate": 0.0006, + "loss": 3.88948392868042, + "step": 1717 + }, + { + "epoch": 23.866754041065967, + "grad_norm": 0.2099323868751526, + "learning_rate": 0.0006, + "loss": 3.878458261489868, + "step": 1718 + }, + { + "epoch": 23.88073394495413, + "grad_norm": 0.22945016622543335, + "learning_rate": 0.0006, + "loss": 3.84116268157959, + "step": 1719 + }, + { + "epoch": 23.89471384884229, + "grad_norm": 0.22646087408065796, + "learning_rate": 0.0006, + "loss": 3.9006617069244385, + "step": 1720 + }, + { + "epoch": 23.90869375273045, + "grad_norm": 0.20282860100269318, + "learning_rate": 0.0006, + "loss": 3.8781144618988037, + "step": 1721 + }, + { + "epoch": 23.92267365661861, + "grad_norm": 0.1918555349111557, + "learning_rate": 0.0006, + "loss": 3.8560891151428223, + "step": 1722 + }, + { + "epoch": 23.936653560506773, + "grad_norm": 0.19286513328552246, + "learning_rate": 0.0006, + "loss": 3.873220920562744, + "step": 1723 + }, + { + "epoch": 23.950633464394933, + "grad_norm": 0.21071338653564453, + "learning_rate": 0.0006, + "loss": 3.9147067070007324, + "step": 1724 + }, + { + "epoch": 23.964613368283093, + "grad_norm": 0.20956715941429138, + "learning_rate": 0.0006, + "loss": 3.8762729167938232, + "step": 1725 + }, + { + "epoch": 23.978593272171253, + "grad_norm": 0.23053105175495148, + "learning_rate": 0.0006, + "loss": 3.873781681060791, + "step": 1726 + }, + { + "epoch": 23.992573176059416, + "grad_norm": 0.2719029486179352, + "learning_rate": 0.0006, + "loss": 3.862342357635498, + "step": 1727 + }, + { + "epoch": 24.0, + "grad_norm": 0.2933610677719116, + "learning_rate": 0.0006, + "loss": 3.8657689094543457, + "step": 1728 + }, + { + "epoch": 24.0, + "eval_loss": 4.0959153175354, + "eval_runtime": 44.3631, + "eval_samples_per_second": 55.046, + "eval_steps_per_second": 3.449, + "step": 1728 + }, + { + "epoch": 24.01397990388816, + "grad_norm": 0.24905365705490112, + "learning_rate": 0.0006, + "loss": 3.838136911392212, + "step": 1729 + }, + { + "epoch": 24.027959807776323, + "grad_norm": 0.25948020815849304, + "learning_rate": 0.0006, + "loss": 3.8581268787384033, + "step": 1730 + }, + { + "epoch": 24.041939711664483, + "grad_norm": 0.24965140223503113, + "learning_rate": 0.0006, + "loss": 3.8628978729248047, + "step": 1731 + }, + { + "epoch": 24.055919615552643, + "grad_norm": 0.23428823053836823, + "learning_rate": 0.0006, + "loss": 3.8188819885253906, + "step": 1732 + }, + { + "epoch": 24.069899519440803, + "grad_norm": 0.22191211581230164, + "learning_rate": 0.0006, + "loss": 3.8616039752960205, + "step": 1733 + }, + { + "epoch": 24.083879423328966, + "grad_norm": 0.20257535576820374, + "learning_rate": 0.0006, + "loss": 3.8632802963256836, + "step": 1734 + }, + { + "epoch": 24.097859327217126, + "grad_norm": 0.20385196805000305, + "learning_rate": 0.0006, + "loss": 3.885817050933838, + "step": 1735 + }, + { + "epoch": 24.111839231105286, + "grad_norm": 0.19921693205833435, + "learning_rate": 0.0006, + "loss": 3.838515043258667, + "step": 1736 + }, + { + "epoch": 24.125819134993446, + "grad_norm": 0.20221556723117828, + "learning_rate": 0.0006, + "loss": 3.8585309982299805, + "step": 1737 + }, + { + "epoch": 24.13979903888161, + "grad_norm": 0.20124691724777222, + "learning_rate": 0.0006, + "loss": 3.81656551361084, + "step": 1738 + }, + { + "epoch": 24.15377894276977, + "grad_norm": 0.1810830533504486, + "learning_rate": 0.0006, + "loss": 3.841783046722412, + "step": 1739 + }, + { + "epoch": 24.16775884665793, + "grad_norm": 0.18414196372032166, + "learning_rate": 0.0006, + "loss": 3.8614797592163086, + "step": 1740 + }, + { + "epoch": 24.18173875054609, + "grad_norm": 0.18930725753307343, + "learning_rate": 0.0006, + "loss": 3.8382534980773926, + "step": 1741 + }, + { + "epoch": 24.195718654434252, + "grad_norm": 0.19658128917217255, + "learning_rate": 0.0006, + "loss": 3.881742477416992, + "step": 1742 + }, + { + "epoch": 24.209698558322412, + "grad_norm": 0.20175589621067047, + "learning_rate": 0.0006, + "loss": 3.8760581016540527, + "step": 1743 + }, + { + "epoch": 24.22367846221057, + "grad_norm": 0.19416265189647675, + "learning_rate": 0.0006, + "loss": 3.8373687267303467, + "step": 1744 + }, + { + "epoch": 24.23765836609873, + "grad_norm": 0.20206521451473236, + "learning_rate": 0.0006, + "loss": 3.8322830200195312, + "step": 1745 + }, + { + "epoch": 24.251638269986895, + "grad_norm": 0.21797429025173187, + "learning_rate": 0.0006, + "loss": 3.849905490875244, + "step": 1746 + }, + { + "epoch": 24.265618173875055, + "grad_norm": 0.21295784413814545, + "learning_rate": 0.0006, + "loss": 3.847714900970459, + "step": 1747 + }, + { + "epoch": 24.279598077763215, + "grad_norm": 0.22023876011371613, + "learning_rate": 0.0006, + "loss": 3.8221592903137207, + "step": 1748 + }, + { + "epoch": 24.293577981651374, + "grad_norm": 0.2125576138496399, + "learning_rate": 0.0006, + "loss": 3.8070976734161377, + "step": 1749 + }, + { + "epoch": 24.307557885539538, + "grad_norm": 0.18673811852931976, + "learning_rate": 0.0006, + "loss": 3.866878032684326, + "step": 1750 + }, + { + "epoch": 24.321537789427698, + "grad_norm": 0.1972627341747284, + "learning_rate": 0.0006, + "loss": 3.846404552459717, + "step": 1751 + }, + { + "epoch": 24.335517693315857, + "grad_norm": 0.21846632659435272, + "learning_rate": 0.0006, + "loss": 3.8528640270233154, + "step": 1752 + }, + { + "epoch": 24.34949759720402, + "grad_norm": 0.22234080731868744, + "learning_rate": 0.0006, + "loss": 3.8268141746520996, + "step": 1753 + }, + { + "epoch": 24.36347750109218, + "grad_norm": 0.23002761602401733, + "learning_rate": 0.0006, + "loss": 3.832444667816162, + "step": 1754 + }, + { + "epoch": 24.37745740498034, + "grad_norm": 0.22526559233665466, + "learning_rate": 0.0006, + "loss": 3.864406108856201, + "step": 1755 + }, + { + "epoch": 24.3914373088685, + "grad_norm": 0.2290039211511612, + "learning_rate": 0.0006, + "loss": 3.8449103832244873, + "step": 1756 + }, + { + "epoch": 24.405417212756664, + "grad_norm": 0.23145617544651031, + "learning_rate": 0.0006, + "loss": 3.8183751106262207, + "step": 1757 + }, + { + "epoch": 24.419397116644824, + "grad_norm": 0.24287554621696472, + "learning_rate": 0.0006, + "loss": 3.809481382369995, + "step": 1758 + }, + { + "epoch": 24.433377020532983, + "grad_norm": 0.2672404646873474, + "learning_rate": 0.0006, + "loss": 3.877800464630127, + "step": 1759 + }, + { + "epoch": 24.447356924421143, + "grad_norm": 0.26292186975479126, + "learning_rate": 0.0006, + "loss": 3.8329367637634277, + "step": 1760 + }, + { + "epoch": 24.461336828309307, + "grad_norm": 0.26235947012901306, + "learning_rate": 0.0006, + "loss": 3.8414158821105957, + "step": 1761 + }, + { + "epoch": 24.475316732197467, + "grad_norm": 0.2638382613658905, + "learning_rate": 0.0006, + "loss": 3.849188804626465, + "step": 1762 + }, + { + "epoch": 24.489296636085626, + "grad_norm": 0.2564602196216583, + "learning_rate": 0.0006, + "loss": 3.865501880645752, + "step": 1763 + }, + { + "epoch": 24.503276539973786, + "grad_norm": 0.21352271735668182, + "learning_rate": 0.0006, + "loss": 3.87910795211792, + "step": 1764 + }, + { + "epoch": 24.51725644386195, + "grad_norm": 0.2470584511756897, + "learning_rate": 0.0006, + "loss": 3.858750343322754, + "step": 1765 + }, + { + "epoch": 24.53123634775011, + "grad_norm": 0.24907536804676056, + "learning_rate": 0.0006, + "loss": 3.8532559871673584, + "step": 1766 + }, + { + "epoch": 24.54521625163827, + "grad_norm": 0.2426205575466156, + "learning_rate": 0.0006, + "loss": 3.8659827709198, + "step": 1767 + }, + { + "epoch": 24.55919615552643, + "grad_norm": 0.23481151461601257, + "learning_rate": 0.0006, + "loss": 3.863948345184326, + "step": 1768 + }, + { + "epoch": 24.573176059414592, + "grad_norm": 0.22717779874801636, + "learning_rate": 0.0006, + "loss": 3.848527193069458, + "step": 1769 + }, + { + "epoch": 24.587155963302752, + "grad_norm": 0.2267129123210907, + "learning_rate": 0.0006, + "loss": 3.8600735664367676, + "step": 1770 + }, + { + "epoch": 24.601135867190912, + "grad_norm": 0.24967710673809052, + "learning_rate": 0.0006, + "loss": 3.84291934967041, + "step": 1771 + }, + { + "epoch": 24.615115771079076, + "grad_norm": 0.25308957695961, + "learning_rate": 0.0006, + "loss": 3.846181631088257, + "step": 1772 + }, + { + "epoch": 24.629095674967235, + "grad_norm": 0.2689298391342163, + "learning_rate": 0.0006, + "loss": 3.8572893142700195, + "step": 1773 + }, + { + "epoch": 24.643075578855395, + "grad_norm": 0.26458555459976196, + "learning_rate": 0.0006, + "loss": 3.8583621978759766, + "step": 1774 + }, + { + "epoch": 24.657055482743555, + "grad_norm": 0.24416811764240265, + "learning_rate": 0.0006, + "loss": 3.8648223876953125, + "step": 1775 + }, + { + "epoch": 24.67103538663172, + "grad_norm": 0.22218526899814606, + "learning_rate": 0.0006, + "loss": 3.839395523071289, + "step": 1776 + }, + { + "epoch": 24.68501529051988, + "grad_norm": 0.2147492915391922, + "learning_rate": 0.0006, + "loss": 3.875734567642212, + "step": 1777 + }, + { + "epoch": 24.698995194408038, + "grad_norm": 0.2346794754266739, + "learning_rate": 0.0006, + "loss": 3.854768991470337, + "step": 1778 + }, + { + "epoch": 24.712975098296198, + "grad_norm": 0.21406520903110504, + "learning_rate": 0.0006, + "loss": 3.8269104957580566, + "step": 1779 + }, + { + "epoch": 24.72695500218436, + "grad_norm": 0.20716224610805511, + "learning_rate": 0.0006, + "loss": 3.8245768547058105, + "step": 1780 + }, + { + "epoch": 24.74093490607252, + "grad_norm": 0.21445901691913605, + "learning_rate": 0.0006, + "loss": 3.8877978324890137, + "step": 1781 + }, + { + "epoch": 24.75491480996068, + "grad_norm": 0.21964985132217407, + "learning_rate": 0.0006, + "loss": 3.8602452278137207, + "step": 1782 + }, + { + "epoch": 24.76889471384884, + "grad_norm": 0.209807351231575, + "learning_rate": 0.0006, + "loss": 3.853428602218628, + "step": 1783 + }, + { + "epoch": 24.782874617737004, + "grad_norm": 0.19564911723136902, + "learning_rate": 0.0006, + "loss": 3.832275867462158, + "step": 1784 + }, + { + "epoch": 24.796854521625164, + "grad_norm": 0.21394333243370056, + "learning_rate": 0.0006, + "loss": 3.8543171882629395, + "step": 1785 + }, + { + "epoch": 24.810834425513324, + "grad_norm": 0.23156948387622833, + "learning_rate": 0.0006, + "loss": 3.8539412021636963, + "step": 1786 + }, + { + "epoch": 24.824814329401484, + "grad_norm": 0.2378678321838379, + "learning_rate": 0.0006, + "loss": 3.8409833908081055, + "step": 1787 + }, + { + "epoch": 24.838794233289647, + "grad_norm": 0.23816189169883728, + "learning_rate": 0.0006, + "loss": 3.855379581451416, + "step": 1788 + }, + { + "epoch": 24.852774137177807, + "grad_norm": 0.23109886050224304, + "learning_rate": 0.0006, + "loss": 3.8689517974853516, + "step": 1789 + }, + { + "epoch": 24.866754041065967, + "grad_norm": 0.2042883038520813, + "learning_rate": 0.0006, + "loss": 3.8730404376983643, + "step": 1790 + }, + { + "epoch": 24.88073394495413, + "grad_norm": 0.2039479911327362, + "learning_rate": 0.0006, + "loss": 3.8474984169006348, + "step": 1791 + }, + { + "epoch": 24.89471384884229, + "grad_norm": 0.213027223944664, + "learning_rate": 0.0006, + "loss": 3.8539695739746094, + "step": 1792 + }, + { + "epoch": 24.90869375273045, + "grad_norm": 0.2280654013156891, + "learning_rate": 0.0006, + "loss": 3.8633079528808594, + "step": 1793 + }, + { + "epoch": 24.92267365661861, + "grad_norm": 0.20864921808242798, + "learning_rate": 0.0006, + "loss": 3.8110368251800537, + "step": 1794 + }, + { + "epoch": 24.936653560506773, + "grad_norm": 0.23002111911773682, + "learning_rate": 0.0006, + "loss": 3.8334741592407227, + "step": 1795 + }, + { + "epoch": 24.950633464394933, + "grad_norm": 0.232331782579422, + "learning_rate": 0.0006, + "loss": 3.871887683868408, + "step": 1796 + }, + { + "epoch": 24.964613368283093, + "grad_norm": 0.24141235649585724, + "learning_rate": 0.0006, + "loss": 3.8614959716796875, + "step": 1797 + }, + { + "epoch": 24.978593272171253, + "grad_norm": 0.2545177638530731, + "learning_rate": 0.0006, + "loss": 3.8563568592071533, + "step": 1798 + }, + { + "epoch": 24.992573176059416, + "grad_norm": 0.25186386704444885, + "learning_rate": 0.0006, + "loss": 3.882166862487793, + "step": 1799 + }, + { + "epoch": 25.0, + "grad_norm": 0.260195791721344, + "learning_rate": 0.0006, + "loss": 3.884554862976074, + "step": 1800 + }, + { + "epoch": 25.0, + "eval_loss": 4.08809757232666, + "eval_runtime": 44.7947, + "eval_samples_per_second": 54.515, + "eval_steps_per_second": 3.416, + "step": 1800 + }, + { + "epoch": 25.01397990388816, + "grad_norm": 0.25396403670310974, + "learning_rate": 0.0006, + "loss": 3.8217287063598633, + "step": 1801 + }, + { + "epoch": 25.027959807776323, + "grad_norm": 0.2773195207118988, + "learning_rate": 0.0006, + "loss": 3.809542417526245, + "step": 1802 + }, + { + "epoch": 25.041939711664483, + "grad_norm": 0.3073263168334961, + "learning_rate": 0.0006, + "loss": 3.825706958770752, + "step": 1803 + }, + { + "epoch": 25.055919615552643, + "grad_norm": 0.30885398387908936, + "learning_rate": 0.0006, + "loss": 3.8081188201904297, + "step": 1804 + }, + { + "epoch": 25.069899519440803, + "grad_norm": 0.27356019616127014, + "learning_rate": 0.0006, + "loss": 3.8538241386413574, + "step": 1805 + }, + { + "epoch": 25.083879423328966, + "grad_norm": 0.22830164432525635, + "learning_rate": 0.0006, + "loss": 3.8246965408325195, + "step": 1806 + }, + { + "epoch": 25.097859327217126, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.8552842140197754, + "step": 1807 + }, + { + "epoch": 25.111839231105286, + "grad_norm": 0.21718722581863403, + "learning_rate": 0.0006, + "loss": 3.8489418029785156, + "step": 1808 + }, + { + "epoch": 25.125819134993446, + "grad_norm": 0.2480861395597458, + "learning_rate": 0.0006, + "loss": 3.821455955505371, + "step": 1809 + }, + { + "epoch": 25.13979903888161, + "grad_norm": 0.2796635627746582, + "learning_rate": 0.0006, + "loss": 3.8202435970306396, + "step": 1810 + }, + { + "epoch": 25.15377894276977, + "grad_norm": 0.2829958200454712, + "learning_rate": 0.0006, + "loss": 3.8293306827545166, + "step": 1811 + }, + { + "epoch": 25.16775884665793, + "grad_norm": 0.2510125935077667, + "learning_rate": 0.0006, + "loss": 3.8342957496643066, + "step": 1812 + }, + { + "epoch": 25.18173875054609, + "grad_norm": 0.22923722863197327, + "learning_rate": 0.0006, + "loss": 3.8448352813720703, + "step": 1813 + }, + { + "epoch": 25.195718654434252, + "grad_norm": 0.21439228951931, + "learning_rate": 0.0006, + "loss": 3.8343517780303955, + "step": 1814 + }, + { + "epoch": 25.209698558322412, + "grad_norm": 0.1965373307466507, + "learning_rate": 0.0006, + "loss": 3.8163528442382812, + "step": 1815 + }, + { + "epoch": 25.22367846221057, + "grad_norm": 0.20121058821678162, + "learning_rate": 0.0006, + "loss": 3.8007280826568604, + "step": 1816 + }, + { + "epoch": 25.23765836609873, + "grad_norm": 0.21383272111415863, + "learning_rate": 0.0006, + "loss": 3.8200385570526123, + "step": 1817 + }, + { + "epoch": 25.251638269986895, + "grad_norm": 0.2066601663827896, + "learning_rate": 0.0006, + "loss": 3.8333921432495117, + "step": 1818 + }, + { + "epoch": 25.265618173875055, + "grad_norm": 0.2104874551296234, + "learning_rate": 0.0006, + "loss": 3.838012218475342, + "step": 1819 + }, + { + "epoch": 25.279598077763215, + "grad_norm": 0.19733119010925293, + "learning_rate": 0.0006, + "loss": 3.835139274597168, + "step": 1820 + }, + { + "epoch": 25.293577981651374, + "grad_norm": 0.2119498997926712, + "learning_rate": 0.0006, + "loss": 3.8099722862243652, + "step": 1821 + }, + { + "epoch": 25.307557885539538, + "grad_norm": 0.21863529086112976, + "learning_rate": 0.0006, + "loss": 3.7801573276519775, + "step": 1822 + }, + { + "epoch": 25.321537789427698, + "grad_norm": 0.2113322764635086, + "learning_rate": 0.0006, + "loss": 3.809903621673584, + "step": 1823 + }, + { + "epoch": 25.335517693315857, + "grad_norm": 0.21594023704528809, + "learning_rate": 0.0006, + "loss": 3.8485071659088135, + "step": 1824 + }, + { + "epoch": 25.34949759720402, + "grad_norm": 0.21475964784622192, + "learning_rate": 0.0006, + "loss": 3.7894768714904785, + "step": 1825 + }, + { + "epoch": 25.36347750109218, + "grad_norm": 0.21174900233745575, + "learning_rate": 0.0006, + "loss": 3.821711540222168, + "step": 1826 + }, + { + "epoch": 25.37745740498034, + "grad_norm": 0.2065584659576416, + "learning_rate": 0.0006, + "loss": 3.8439841270446777, + "step": 1827 + }, + { + "epoch": 25.3914373088685, + "grad_norm": 0.19157007336616516, + "learning_rate": 0.0006, + "loss": 3.864245891571045, + "step": 1828 + }, + { + "epoch": 25.405417212756664, + "grad_norm": 0.19983816146850586, + "learning_rate": 0.0006, + "loss": 3.8317415714263916, + "step": 1829 + }, + { + "epoch": 25.419397116644824, + "grad_norm": 0.20506152510643005, + "learning_rate": 0.0006, + "loss": 3.8009896278381348, + "step": 1830 + }, + { + "epoch": 25.433377020532983, + "grad_norm": 0.19056960940361023, + "learning_rate": 0.0006, + "loss": 3.8383498191833496, + "step": 1831 + }, + { + "epoch": 25.447356924421143, + "grad_norm": 0.19262190163135529, + "learning_rate": 0.0006, + "loss": 3.838902235031128, + "step": 1832 + }, + { + "epoch": 25.461336828309307, + "grad_norm": 0.19859355688095093, + "learning_rate": 0.0006, + "loss": 3.82452392578125, + "step": 1833 + }, + { + "epoch": 25.475316732197467, + "grad_norm": 0.2144225388765335, + "learning_rate": 0.0006, + "loss": 3.8110032081604004, + "step": 1834 + }, + { + "epoch": 25.489296636085626, + "grad_norm": 0.20566298067569733, + "learning_rate": 0.0006, + "loss": 3.8662471771240234, + "step": 1835 + }, + { + "epoch": 25.503276539973786, + "grad_norm": 0.2071852684020996, + "learning_rate": 0.0006, + "loss": 3.821134090423584, + "step": 1836 + }, + { + "epoch": 25.51725644386195, + "grad_norm": 0.2095036506652832, + "learning_rate": 0.0006, + "loss": 3.824092388153076, + "step": 1837 + }, + { + "epoch": 25.53123634775011, + "grad_norm": 0.20136208832263947, + "learning_rate": 0.0006, + "loss": 3.8669862747192383, + "step": 1838 + }, + { + "epoch": 25.54521625163827, + "grad_norm": 0.1983811855316162, + "learning_rate": 0.0006, + "loss": 3.8120107650756836, + "step": 1839 + }, + { + "epoch": 25.55919615552643, + "grad_norm": 0.22859714925289154, + "learning_rate": 0.0006, + "loss": 3.8519299030303955, + "step": 1840 + }, + { + "epoch": 25.573176059414592, + "grad_norm": 0.23672667145729065, + "learning_rate": 0.0006, + "loss": 3.8245458602905273, + "step": 1841 + }, + { + "epoch": 25.587155963302752, + "grad_norm": 0.22698380053043365, + "learning_rate": 0.0006, + "loss": 3.8406805992126465, + "step": 1842 + }, + { + "epoch": 25.601135867190912, + "grad_norm": 0.25684037804603577, + "learning_rate": 0.0006, + "loss": 3.8584351539611816, + "step": 1843 + }, + { + "epoch": 25.615115771079076, + "grad_norm": 0.28180673718452454, + "learning_rate": 0.0006, + "loss": 3.8085098266601562, + "step": 1844 + }, + { + "epoch": 25.629095674967235, + "grad_norm": 0.2814631462097168, + "learning_rate": 0.0006, + "loss": 3.845083236694336, + "step": 1845 + }, + { + "epoch": 25.643075578855395, + "grad_norm": 0.23630981147289276, + "learning_rate": 0.0006, + "loss": 3.847749710083008, + "step": 1846 + }, + { + "epoch": 25.657055482743555, + "grad_norm": 0.22463662922382355, + "learning_rate": 0.0006, + "loss": 3.8172082901000977, + "step": 1847 + }, + { + "epoch": 25.67103538663172, + "grad_norm": 0.26551681756973267, + "learning_rate": 0.0006, + "loss": 3.8205654621124268, + "step": 1848 + }, + { + "epoch": 25.68501529051988, + "grad_norm": 0.27824243903160095, + "learning_rate": 0.0006, + "loss": 3.846076011657715, + "step": 1849 + }, + { + "epoch": 25.698995194408038, + "grad_norm": 0.266998291015625, + "learning_rate": 0.0006, + "loss": 3.8543574810028076, + "step": 1850 + }, + { + "epoch": 25.712975098296198, + "grad_norm": 0.22980351746082306, + "learning_rate": 0.0006, + "loss": 3.855511426925659, + "step": 1851 + }, + { + "epoch": 25.72695500218436, + "grad_norm": 0.23482872545719147, + "learning_rate": 0.0006, + "loss": 3.8687663078308105, + "step": 1852 + }, + { + "epoch": 25.74093490607252, + "grad_norm": 0.21119585633277893, + "learning_rate": 0.0006, + "loss": 3.8147101402282715, + "step": 1853 + }, + { + "epoch": 25.75491480996068, + "grad_norm": 0.21200446784496307, + "learning_rate": 0.0006, + "loss": 3.858473777770996, + "step": 1854 + }, + { + "epoch": 25.76889471384884, + "grad_norm": 0.20497842133045197, + "learning_rate": 0.0006, + "loss": 3.8545501232147217, + "step": 1855 + }, + { + "epoch": 25.782874617737004, + "grad_norm": 0.19328081607818604, + "learning_rate": 0.0006, + "loss": 3.7941341400146484, + "step": 1856 + }, + { + "epoch": 25.796854521625164, + "grad_norm": 0.2191578894853592, + "learning_rate": 0.0006, + "loss": 3.8408665657043457, + "step": 1857 + }, + { + "epoch": 25.810834425513324, + "grad_norm": 0.2548826038837433, + "learning_rate": 0.0006, + "loss": 3.854130744934082, + "step": 1858 + }, + { + "epoch": 25.824814329401484, + "grad_norm": 0.2290351390838623, + "learning_rate": 0.0006, + "loss": 3.8680176734924316, + "step": 1859 + }, + { + "epoch": 25.838794233289647, + "grad_norm": 0.20760944485664368, + "learning_rate": 0.0006, + "loss": 3.83731746673584, + "step": 1860 + }, + { + "epoch": 25.852774137177807, + "grad_norm": 0.19587582349777222, + "learning_rate": 0.0006, + "loss": 3.8173444271087646, + "step": 1861 + }, + { + "epoch": 25.866754041065967, + "grad_norm": 0.20762693881988525, + "learning_rate": 0.0006, + "loss": 3.8479790687561035, + "step": 1862 + }, + { + "epoch": 25.88073394495413, + "grad_norm": 0.20633186399936676, + "learning_rate": 0.0006, + "loss": 3.852285385131836, + "step": 1863 + }, + { + "epoch": 25.89471384884229, + "grad_norm": 0.21484960615634918, + "learning_rate": 0.0006, + "loss": 3.832592725753784, + "step": 1864 + }, + { + "epoch": 25.90869375273045, + "grad_norm": 0.19569595158100128, + "learning_rate": 0.0006, + "loss": 3.838071584701538, + "step": 1865 + }, + { + "epoch": 25.92267365661861, + "grad_norm": 0.19532904028892517, + "learning_rate": 0.0006, + "loss": 3.854252815246582, + "step": 1866 + }, + { + "epoch": 25.936653560506773, + "grad_norm": 0.1909649819135666, + "learning_rate": 0.0006, + "loss": 3.8444578647613525, + "step": 1867 + }, + { + "epoch": 25.950633464394933, + "grad_norm": 0.17476283013820648, + "learning_rate": 0.0006, + "loss": 3.836519241333008, + "step": 1868 + }, + { + "epoch": 25.964613368283093, + "grad_norm": 0.1895206719636917, + "learning_rate": 0.0006, + "loss": 3.8282582759857178, + "step": 1869 + }, + { + "epoch": 25.978593272171253, + "grad_norm": 0.20038437843322754, + "learning_rate": 0.0006, + "loss": 3.80542254447937, + "step": 1870 + }, + { + "epoch": 25.992573176059416, + "grad_norm": 0.20728608965873718, + "learning_rate": 0.0006, + "loss": 3.8584811687469482, + "step": 1871 + }, + { + "epoch": 26.0, + "grad_norm": 0.22110891342163086, + "learning_rate": 0.0006, + "loss": 3.8020238876342773, + "step": 1872 + }, + { + "epoch": 26.0, + "eval_loss": 4.072164058685303, + "eval_runtime": 44.9089, + "eval_samples_per_second": 54.377, + "eval_steps_per_second": 3.407, + "step": 1872 + }, + { + "epoch": 26.01397990388816, + "grad_norm": 0.2222519814968109, + "learning_rate": 0.0006, + "loss": 3.8309168815612793, + "step": 1873 + }, + { + "epoch": 26.027959807776323, + "grad_norm": 0.2637656033039093, + "learning_rate": 0.0006, + "loss": 3.8025143146514893, + "step": 1874 + }, + { + "epoch": 26.041939711664483, + "grad_norm": 0.2665974795818329, + "learning_rate": 0.0006, + "loss": 3.8244004249572754, + "step": 1875 + }, + { + "epoch": 26.055919615552643, + "grad_norm": 0.22475720942020416, + "learning_rate": 0.0006, + "loss": 3.80039119720459, + "step": 1876 + }, + { + "epoch": 26.069899519440803, + "grad_norm": 0.22994336485862732, + "learning_rate": 0.0006, + "loss": 3.7700726985931396, + "step": 1877 + }, + { + "epoch": 26.083879423328966, + "grad_norm": 0.24214622378349304, + "learning_rate": 0.0006, + "loss": 3.818725109100342, + "step": 1878 + }, + { + "epoch": 26.097859327217126, + "grad_norm": 0.22701293230056763, + "learning_rate": 0.0006, + "loss": 3.833803176879883, + "step": 1879 + }, + { + "epoch": 26.111839231105286, + "grad_norm": 0.21452295780181885, + "learning_rate": 0.0006, + "loss": 3.8391427993774414, + "step": 1880 + }, + { + "epoch": 26.125819134993446, + "grad_norm": 0.20179636776447296, + "learning_rate": 0.0006, + "loss": 3.802957057952881, + "step": 1881 + }, + { + "epoch": 26.13979903888161, + "grad_norm": 0.2087477445602417, + "learning_rate": 0.0006, + "loss": 3.8339905738830566, + "step": 1882 + }, + { + "epoch": 26.15377894276977, + "grad_norm": 0.23583556711673737, + "learning_rate": 0.0006, + "loss": 3.802438259124756, + "step": 1883 + }, + { + "epoch": 26.16775884665793, + "grad_norm": 0.2504311501979828, + "learning_rate": 0.0006, + "loss": 3.80244517326355, + "step": 1884 + }, + { + "epoch": 26.18173875054609, + "grad_norm": 0.24903984367847443, + "learning_rate": 0.0006, + "loss": 3.788865566253662, + "step": 1885 + }, + { + "epoch": 26.195718654434252, + "grad_norm": 0.2707931101322174, + "learning_rate": 0.0006, + "loss": 3.800051212310791, + "step": 1886 + }, + { + "epoch": 26.209698558322412, + "grad_norm": 0.24902892112731934, + "learning_rate": 0.0006, + "loss": 3.8068337440490723, + "step": 1887 + }, + { + "epoch": 26.22367846221057, + "grad_norm": 0.22655536234378815, + "learning_rate": 0.0006, + "loss": 3.779439926147461, + "step": 1888 + }, + { + "epoch": 26.23765836609873, + "grad_norm": 0.24797996878623962, + "learning_rate": 0.0006, + "loss": 3.822831153869629, + "step": 1889 + }, + { + "epoch": 26.251638269986895, + "grad_norm": 0.2821420431137085, + "learning_rate": 0.0006, + "loss": 3.807954788208008, + "step": 1890 + }, + { + "epoch": 26.265618173875055, + "grad_norm": 0.30392691493034363, + "learning_rate": 0.0006, + "loss": 3.776951789855957, + "step": 1891 + }, + { + "epoch": 26.279598077763215, + "grad_norm": 0.32641273736953735, + "learning_rate": 0.0006, + "loss": 3.8216311931610107, + "step": 1892 + }, + { + "epoch": 26.293577981651374, + "grad_norm": 0.32674387097358704, + "learning_rate": 0.0006, + "loss": 3.815596580505371, + "step": 1893 + }, + { + "epoch": 26.307557885539538, + "grad_norm": 0.29137250781059265, + "learning_rate": 0.0006, + "loss": 3.8170812129974365, + "step": 1894 + }, + { + "epoch": 26.321537789427698, + "grad_norm": 0.24291734397411346, + "learning_rate": 0.0006, + "loss": 3.810352087020874, + "step": 1895 + }, + { + "epoch": 26.335517693315857, + "grad_norm": 0.24023209512233734, + "learning_rate": 0.0006, + "loss": 3.8075947761535645, + "step": 1896 + }, + { + "epoch": 26.34949759720402, + "grad_norm": 0.24334804713726044, + "learning_rate": 0.0006, + "loss": 3.831556797027588, + "step": 1897 + }, + { + "epoch": 26.36347750109218, + "grad_norm": 0.2109663337469101, + "learning_rate": 0.0006, + "loss": 3.838347911834717, + "step": 1898 + }, + { + "epoch": 26.37745740498034, + "grad_norm": 0.19668002426624298, + "learning_rate": 0.0006, + "loss": 3.774737596511841, + "step": 1899 + }, + { + "epoch": 26.3914373088685, + "grad_norm": 0.21329134702682495, + "learning_rate": 0.0006, + "loss": 3.8237252235412598, + "step": 1900 + }, + { + "epoch": 26.405417212756664, + "grad_norm": 0.20381781458854675, + "learning_rate": 0.0006, + "loss": 3.802569627761841, + "step": 1901 + }, + { + "epoch": 26.419397116644824, + "grad_norm": 0.19083160161972046, + "learning_rate": 0.0006, + "loss": 3.8301358222961426, + "step": 1902 + }, + { + "epoch": 26.433377020532983, + "grad_norm": 0.20012904703617096, + "learning_rate": 0.0006, + "loss": 3.7966408729553223, + "step": 1903 + }, + { + "epoch": 26.447356924421143, + "grad_norm": 0.19483457505702972, + "learning_rate": 0.0006, + "loss": 3.8431968688964844, + "step": 1904 + }, + { + "epoch": 26.461336828309307, + "grad_norm": 0.19946353137493134, + "learning_rate": 0.0006, + "loss": 3.8023815155029297, + "step": 1905 + }, + { + "epoch": 26.475316732197467, + "grad_norm": 0.1984100341796875, + "learning_rate": 0.0006, + "loss": 3.8283071517944336, + "step": 1906 + }, + { + "epoch": 26.489296636085626, + "grad_norm": 0.2148299664258957, + "learning_rate": 0.0006, + "loss": 3.8377504348754883, + "step": 1907 + }, + { + "epoch": 26.503276539973786, + "grad_norm": 0.22139184176921844, + "learning_rate": 0.0006, + "loss": 3.823051691055298, + "step": 1908 + }, + { + "epoch": 26.51725644386195, + "grad_norm": 0.18289034068584442, + "learning_rate": 0.0006, + "loss": 3.8027071952819824, + "step": 1909 + }, + { + "epoch": 26.53123634775011, + "grad_norm": 0.1816026121377945, + "learning_rate": 0.0006, + "loss": 3.823786735534668, + "step": 1910 + }, + { + "epoch": 26.54521625163827, + "grad_norm": 0.19074322283267975, + "learning_rate": 0.0006, + "loss": 3.813331127166748, + "step": 1911 + }, + { + "epoch": 26.55919615552643, + "grad_norm": 0.20301467180252075, + "learning_rate": 0.0006, + "loss": 3.8218350410461426, + "step": 1912 + }, + { + "epoch": 26.573176059414592, + "grad_norm": 0.25266432762145996, + "learning_rate": 0.0006, + "loss": 3.8455142974853516, + "step": 1913 + }, + { + "epoch": 26.587155963302752, + "grad_norm": 0.25804755091667175, + "learning_rate": 0.0006, + "loss": 3.799227476119995, + "step": 1914 + }, + { + "epoch": 26.601135867190912, + "grad_norm": 0.2555372416973114, + "learning_rate": 0.0006, + "loss": 3.8125686645507812, + "step": 1915 + }, + { + "epoch": 26.615115771079076, + "grad_norm": 0.2266194075345993, + "learning_rate": 0.0006, + "loss": 3.858363628387451, + "step": 1916 + }, + { + "epoch": 26.629095674967235, + "grad_norm": 0.1933048665523529, + "learning_rate": 0.0006, + "loss": 3.8078083992004395, + "step": 1917 + }, + { + "epoch": 26.643075578855395, + "grad_norm": 0.19936731457710266, + "learning_rate": 0.0006, + "loss": 3.81748628616333, + "step": 1918 + }, + { + "epoch": 26.657055482743555, + "grad_norm": 0.22041693329811096, + "learning_rate": 0.0006, + "loss": 3.833272933959961, + "step": 1919 + }, + { + "epoch": 26.67103538663172, + "grad_norm": 0.20679150521755219, + "learning_rate": 0.0006, + "loss": 3.8127288818359375, + "step": 1920 + }, + { + "epoch": 26.68501529051988, + "grad_norm": 0.21545100212097168, + "learning_rate": 0.0006, + "loss": 3.816051483154297, + "step": 1921 + }, + { + "epoch": 26.698995194408038, + "grad_norm": 0.23554518818855286, + "learning_rate": 0.0006, + "loss": 3.8180980682373047, + "step": 1922 + }, + { + "epoch": 26.712975098296198, + "grad_norm": 0.21942466497421265, + "learning_rate": 0.0006, + "loss": 3.803107976913452, + "step": 1923 + }, + { + "epoch": 26.72695500218436, + "grad_norm": 0.22335010766983032, + "learning_rate": 0.0006, + "loss": 3.847890853881836, + "step": 1924 + }, + { + "epoch": 26.74093490607252, + "grad_norm": 0.24731314182281494, + "learning_rate": 0.0006, + "loss": 3.7945008277893066, + "step": 1925 + }, + { + "epoch": 26.75491480996068, + "grad_norm": 0.2804568111896515, + "learning_rate": 0.0006, + "loss": 3.8400068283081055, + "step": 1926 + }, + { + "epoch": 26.76889471384884, + "grad_norm": 0.28787222504615784, + "learning_rate": 0.0006, + "loss": 3.839771270751953, + "step": 1927 + }, + { + "epoch": 26.782874617737004, + "grad_norm": 0.2949632406234741, + "learning_rate": 0.0006, + "loss": 3.8225326538085938, + "step": 1928 + }, + { + "epoch": 26.796854521625164, + "grad_norm": 0.31546032428741455, + "learning_rate": 0.0006, + "loss": 3.8182597160339355, + "step": 1929 + }, + { + "epoch": 26.810834425513324, + "grad_norm": 0.2956962585449219, + "learning_rate": 0.0006, + "loss": 3.8315680027008057, + "step": 1930 + }, + { + "epoch": 26.824814329401484, + "grad_norm": 0.26943835616111755, + "learning_rate": 0.0006, + "loss": 3.787720203399658, + "step": 1931 + }, + { + "epoch": 26.838794233289647, + "grad_norm": 0.24272359907627106, + "learning_rate": 0.0006, + "loss": 3.7973692417144775, + "step": 1932 + }, + { + "epoch": 26.852774137177807, + "grad_norm": 0.20553994178771973, + "learning_rate": 0.0006, + "loss": 3.8241593837738037, + "step": 1933 + }, + { + "epoch": 26.866754041065967, + "grad_norm": 0.21927912533283234, + "learning_rate": 0.0006, + "loss": 3.8608899116516113, + "step": 1934 + }, + { + "epoch": 26.88073394495413, + "grad_norm": 0.22878016531467438, + "learning_rate": 0.0006, + "loss": 3.8341972827911377, + "step": 1935 + }, + { + "epoch": 26.89471384884229, + "grad_norm": 0.2085554301738739, + "learning_rate": 0.0006, + "loss": 3.8261351585388184, + "step": 1936 + }, + { + "epoch": 26.90869375273045, + "grad_norm": 0.21259072422981262, + "learning_rate": 0.0006, + "loss": 3.862056255340576, + "step": 1937 + }, + { + "epoch": 26.92267365661861, + "grad_norm": 0.21354122459888458, + "learning_rate": 0.0006, + "loss": 3.80879545211792, + "step": 1938 + }, + { + "epoch": 26.936653560506773, + "grad_norm": 0.2350253462791443, + "learning_rate": 0.0006, + "loss": 3.817826271057129, + "step": 1939 + }, + { + "epoch": 26.950633464394933, + "grad_norm": 0.23833836615085602, + "learning_rate": 0.0006, + "loss": 3.8220884799957275, + "step": 1940 + }, + { + "epoch": 26.964613368283093, + "grad_norm": 0.2368069440126419, + "learning_rate": 0.0006, + "loss": 3.843264579772949, + "step": 1941 + }, + { + "epoch": 26.978593272171253, + "grad_norm": 0.22663559019565582, + "learning_rate": 0.0006, + "loss": 3.81339430809021, + "step": 1942 + }, + { + "epoch": 26.992573176059416, + "grad_norm": 0.2151402235031128, + "learning_rate": 0.0006, + "loss": 3.8262834548950195, + "step": 1943 + }, + { + "epoch": 27.0, + "grad_norm": 0.24320295453071594, + "learning_rate": 0.0006, + "loss": 3.858567237854004, + "step": 1944 + }, + { + "epoch": 27.0, + "eval_loss": 4.0613322257995605, + "eval_runtime": 44.766, + "eval_samples_per_second": 54.55, + "eval_steps_per_second": 3.418, + "step": 1944 + }, + { + "epoch": 27.01397990388816, + "grad_norm": 0.21188032627105713, + "learning_rate": 0.0006, + "loss": 3.7631278038024902, + "step": 1945 + }, + { + "epoch": 27.027959807776323, + "grad_norm": 0.22298137843608856, + "learning_rate": 0.0006, + "loss": 3.784029245376587, + "step": 1946 + }, + { + "epoch": 27.041939711664483, + "grad_norm": 0.26530158519744873, + "learning_rate": 0.0006, + "loss": 3.795860767364502, + "step": 1947 + }, + { + "epoch": 27.055919615552643, + "grad_norm": 0.24476729333400726, + "learning_rate": 0.0006, + "loss": 3.77512264251709, + "step": 1948 + }, + { + "epoch": 27.069899519440803, + "grad_norm": 0.1934421956539154, + "learning_rate": 0.0006, + "loss": 3.7797446250915527, + "step": 1949 + }, + { + "epoch": 27.083879423328966, + "grad_norm": 0.19777092337608337, + "learning_rate": 0.0006, + "loss": 3.798935890197754, + "step": 1950 + }, + { + "epoch": 27.097859327217126, + "grad_norm": 0.2071693390607834, + "learning_rate": 0.0006, + "loss": 3.763094425201416, + "step": 1951 + }, + { + "epoch": 27.111839231105286, + "grad_norm": 0.18394742906093597, + "learning_rate": 0.0006, + "loss": 3.7892322540283203, + "step": 1952 + }, + { + "epoch": 27.125819134993446, + "grad_norm": 0.17878273129463196, + "learning_rate": 0.0006, + "loss": 3.787968158721924, + "step": 1953 + }, + { + "epoch": 27.13979903888161, + "grad_norm": 0.18792171776294708, + "learning_rate": 0.0006, + "loss": 3.7719640731811523, + "step": 1954 + }, + { + "epoch": 27.15377894276977, + "grad_norm": 0.18718759715557098, + "learning_rate": 0.0006, + "loss": 3.791835308074951, + "step": 1955 + }, + { + "epoch": 27.16775884665793, + "grad_norm": 0.18716055154800415, + "learning_rate": 0.0006, + "loss": 3.7490220069885254, + "step": 1956 + }, + { + "epoch": 27.18173875054609, + "grad_norm": 0.18429182469844818, + "learning_rate": 0.0006, + "loss": 3.8020081520080566, + "step": 1957 + }, + { + "epoch": 27.195718654434252, + "grad_norm": 0.18571704626083374, + "learning_rate": 0.0006, + "loss": 3.8152215480804443, + "step": 1958 + }, + { + "epoch": 27.209698558322412, + "grad_norm": 0.1788843423128128, + "learning_rate": 0.0006, + "loss": 3.8173317909240723, + "step": 1959 + }, + { + "epoch": 27.22367846221057, + "grad_norm": 0.20459426939487457, + "learning_rate": 0.0006, + "loss": 3.7760040760040283, + "step": 1960 + }, + { + "epoch": 27.23765836609873, + "grad_norm": 0.22360935807228088, + "learning_rate": 0.0006, + "loss": 3.8140203952789307, + "step": 1961 + }, + { + "epoch": 27.251638269986895, + "grad_norm": 0.2062767595052719, + "learning_rate": 0.0006, + "loss": 3.792001247406006, + "step": 1962 + }, + { + "epoch": 27.265618173875055, + "grad_norm": 0.20628073811531067, + "learning_rate": 0.0006, + "loss": 3.7873167991638184, + "step": 1963 + }, + { + "epoch": 27.279598077763215, + "grad_norm": 0.19888348877429962, + "learning_rate": 0.0006, + "loss": 3.7903614044189453, + "step": 1964 + }, + { + "epoch": 27.293577981651374, + "grad_norm": 0.22033332288265228, + "learning_rate": 0.0006, + "loss": 3.802497148513794, + "step": 1965 + }, + { + "epoch": 27.307557885539538, + "grad_norm": 0.23476941883563995, + "learning_rate": 0.0006, + "loss": 3.794090986251831, + "step": 1966 + }, + { + "epoch": 27.321537789427698, + "grad_norm": 0.19639968872070312, + "learning_rate": 0.0006, + "loss": 3.831794023513794, + "step": 1967 + }, + { + "epoch": 27.335517693315857, + "grad_norm": 0.18169641494750977, + "learning_rate": 0.0006, + "loss": 3.7687768936157227, + "step": 1968 + }, + { + "epoch": 27.34949759720402, + "grad_norm": 0.17781762778759003, + "learning_rate": 0.0006, + "loss": 3.7868471145629883, + "step": 1969 + }, + { + "epoch": 27.36347750109218, + "grad_norm": 0.18990416824817657, + "learning_rate": 0.0006, + "loss": 3.8340392112731934, + "step": 1970 + }, + { + "epoch": 27.37745740498034, + "grad_norm": 0.2031438797712326, + "learning_rate": 0.0006, + "loss": 3.804513454437256, + "step": 1971 + }, + { + "epoch": 27.3914373088685, + "grad_norm": 0.21233421564102173, + "learning_rate": 0.0006, + "loss": 3.7908449172973633, + "step": 1972 + }, + { + "epoch": 27.405417212756664, + "grad_norm": 0.22480927407741547, + "learning_rate": 0.0006, + "loss": 3.7894086837768555, + "step": 1973 + }, + { + "epoch": 27.419397116644824, + "grad_norm": 0.22713422775268555, + "learning_rate": 0.0006, + "loss": 3.826005458831787, + "step": 1974 + }, + { + "epoch": 27.433377020532983, + "grad_norm": 0.21637366712093353, + "learning_rate": 0.0006, + "loss": 3.8232319355010986, + "step": 1975 + }, + { + "epoch": 27.447356924421143, + "grad_norm": 0.24092449247837067, + "learning_rate": 0.0006, + "loss": 3.813279628753662, + "step": 1976 + }, + { + "epoch": 27.461336828309307, + "grad_norm": 0.21143047511577606, + "learning_rate": 0.0006, + "loss": 3.811586856842041, + "step": 1977 + }, + { + "epoch": 27.475316732197467, + "grad_norm": 0.21049432456493378, + "learning_rate": 0.0006, + "loss": 3.8227009773254395, + "step": 1978 + }, + { + "epoch": 27.489296636085626, + "grad_norm": 0.21853850781917572, + "learning_rate": 0.0006, + "loss": 3.7992515563964844, + "step": 1979 + }, + { + "epoch": 27.503276539973786, + "grad_norm": 0.22405001521110535, + "learning_rate": 0.0006, + "loss": 3.8311715126037598, + "step": 1980 + }, + { + "epoch": 27.51725644386195, + "grad_norm": 0.24085809290409088, + "learning_rate": 0.0006, + "loss": 3.801962375640869, + "step": 1981 + }, + { + "epoch": 27.53123634775011, + "grad_norm": 0.2612341642379761, + "learning_rate": 0.0006, + "loss": 3.7867887020111084, + "step": 1982 + }, + { + "epoch": 27.54521625163827, + "grad_norm": 0.25136062502861023, + "learning_rate": 0.0006, + "loss": 3.8302273750305176, + "step": 1983 + }, + { + "epoch": 27.55919615552643, + "grad_norm": 0.2485426515340805, + "learning_rate": 0.0006, + "loss": 3.770616054534912, + "step": 1984 + }, + { + "epoch": 27.573176059414592, + "grad_norm": 0.28883907198905945, + "learning_rate": 0.0006, + "loss": 3.8152146339416504, + "step": 1985 + }, + { + "epoch": 27.587155963302752, + "grad_norm": 0.28177911043167114, + "learning_rate": 0.0006, + "loss": 3.7966861724853516, + "step": 1986 + }, + { + "epoch": 27.601135867190912, + "grad_norm": 0.2573191523551941, + "learning_rate": 0.0006, + "loss": 3.820788621902466, + "step": 1987 + }, + { + "epoch": 27.615115771079076, + "grad_norm": 0.22225657105445862, + "learning_rate": 0.0006, + "loss": 3.778477191925049, + "step": 1988 + }, + { + "epoch": 27.629095674967235, + "grad_norm": 0.20118530094623566, + "learning_rate": 0.0006, + "loss": 3.8416988849639893, + "step": 1989 + }, + { + "epoch": 27.643075578855395, + "grad_norm": 0.21168658137321472, + "learning_rate": 0.0006, + "loss": 3.798020839691162, + "step": 1990 + }, + { + "epoch": 27.657055482743555, + "grad_norm": 0.2460680454969406, + "learning_rate": 0.0006, + "loss": 3.805917263031006, + "step": 1991 + }, + { + "epoch": 27.67103538663172, + "grad_norm": 0.2700909674167633, + "learning_rate": 0.0006, + "loss": 3.8042726516723633, + "step": 1992 + }, + { + "epoch": 27.68501529051988, + "grad_norm": 0.25814294815063477, + "learning_rate": 0.0006, + "loss": 3.799159049987793, + "step": 1993 + }, + { + "epoch": 27.698995194408038, + "grad_norm": 0.2231985628604889, + "learning_rate": 0.0006, + "loss": 3.778750419616699, + "step": 1994 + }, + { + "epoch": 27.712975098296198, + "grad_norm": 0.20807890594005585, + "learning_rate": 0.0006, + "loss": 3.787919044494629, + "step": 1995 + }, + { + "epoch": 27.72695500218436, + "grad_norm": 0.19537150859832764, + "learning_rate": 0.0006, + "loss": 3.7917299270629883, + "step": 1996 + }, + { + "epoch": 27.74093490607252, + "grad_norm": 0.21057647466659546, + "learning_rate": 0.0006, + "loss": 3.8096866607666016, + "step": 1997 + }, + { + "epoch": 27.75491480996068, + "grad_norm": 0.18983247876167297, + "learning_rate": 0.0006, + "loss": 3.7881717681884766, + "step": 1998 + }, + { + "epoch": 27.76889471384884, + "grad_norm": 0.18701069056987762, + "learning_rate": 0.0006, + "loss": 3.810790538787842, + "step": 1999 + }, + { + "epoch": 27.782874617737004, + "grad_norm": 0.1920134723186493, + "learning_rate": 0.0006, + "loss": 3.8161087036132812, + "step": 2000 + }, + { + "epoch": 27.796854521625164, + "grad_norm": 0.20413947105407715, + "learning_rate": 0.0006, + "loss": 3.790499687194824, + "step": 2001 + }, + { + "epoch": 27.810834425513324, + "grad_norm": 0.1920027732849121, + "learning_rate": 0.0006, + "loss": 3.8194262981414795, + "step": 2002 + }, + { + "epoch": 27.824814329401484, + "grad_norm": 0.18630221486091614, + "learning_rate": 0.0006, + "loss": 3.8267152309417725, + "step": 2003 + }, + { + "epoch": 27.838794233289647, + "grad_norm": 0.1787925660610199, + "learning_rate": 0.0006, + "loss": 3.8147521018981934, + "step": 2004 + }, + { + "epoch": 27.852774137177807, + "grad_norm": 0.19187216460704803, + "learning_rate": 0.0006, + "loss": 3.7751095294952393, + "step": 2005 + }, + { + "epoch": 27.866754041065967, + "grad_norm": 0.18825744092464447, + "learning_rate": 0.0006, + "loss": 3.807401657104492, + "step": 2006 + }, + { + "epoch": 27.88073394495413, + "grad_norm": 0.1879836469888687, + "learning_rate": 0.0006, + "loss": 3.8302509784698486, + "step": 2007 + }, + { + "epoch": 27.89471384884229, + "grad_norm": 0.19136391580104828, + "learning_rate": 0.0006, + "loss": 3.7886242866516113, + "step": 2008 + }, + { + "epoch": 27.90869375273045, + "grad_norm": 0.18774119019508362, + "learning_rate": 0.0006, + "loss": 3.8202977180480957, + "step": 2009 + }, + { + "epoch": 27.92267365661861, + "grad_norm": 0.17794452607631683, + "learning_rate": 0.0006, + "loss": 3.813382387161255, + "step": 2010 + }, + { + "epoch": 27.936653560506773, + "grad_norm": 0.1876268833875656, + "learning_rate": 0.0006, + "loss": 3.810610294342041, + "step": 2011 + }, + { + "epoch": 27.950633464394933, + "grad_norm": 0.19262051582336426, + "learning_rate": 0.0006, + "loss": 3.8113245964050293, + "step": 2012 + }, + { + "epoch": 27.964613368283093, + "grad_norm": 0.19371771812438965, + "learning_rate": 0.0006, + "loss": 3.804790496826172, + "step": 2013 + }, + { + "epoch": 27.978593272171253, + "grad_norm": 0.1922861784696579, + "learning_rate": 0.0006, + "loss": 3.8278889656066895, + "step": 2014 + }, + { + "epoch": 27.992573176059416, + "grad_norm": 0.19748565554618835, + "learning_rate": 0.0006, + "loss": 3.8127200603485107, + "step": 2015 + }, + { + "epoch": 28.0, + "grad_norm": 0.25027501583099365, + "learning_rate": 0.0006, + "loss": 3.7899413108825684, + "step": 2016 + }, + { + "epoch": 28.0, + "eval_loss": 4.047704219818115, + "eval_runtime": 44.293, + "eval_samples_per_second": 55.133, + "eval_steps_per_second": 3.454, + "step": 2016 + }, + { + "epoch": 28.01397990388816, + "grad_norm": 0.25172367691993713, + "learning_rate": 0.0006, + "loss": 3.75449538230896, + "step": 2017 + }, + { + "epoch": 28.027959807776323, + "grad_norm": 0.23494598269462585, + "learning_rate": 0.0006, + "loss": 3.7609024047851562, + "step": 2018 + }, + { + "epoch": 28.041939711664483, + "grad_norm": 0.22459708154201508, + "learning_rate": 0.0006, + "loss": 3.7843551635742188, + "step": 2019 + }, + { + "epoch": 28.055919615552643, + "grad_norm": 0.2038632035255432, + "learning_rate": 0.0006, + "loss": 3.7818198204040527, + "step": 2020 + }, + { + "epoch": 28.069899519440803, + "grad_norm": 0.22050008177757263, + "learning_rate": 0.0006, + "loss": 3.787442684173584, + "step": 2021 + }, + { + "epoch": 28.083879423328966, + "grad_norm": 0.24645832180976868, + "learning_rate": 0.0006, + "loss": 3.768704414367676, + "step": 2022 + }, + { + "epoch": 28.097859327217126, + "grad_norm": 0.2440163493156433, + "learning_rate": 0.0006, + "loss": 3.7783756256103516, + "step": 2023 + }, + { + "epoch": 28.111839231105286, + "grad_norm": 0.2482181042432785, + "learning_rate": 0.0006, + "loss": 3.786881923675537, + "step": 2024 + }, + { + "epoch": 28.125819134993446, + "grad_norm": 0.23494760692119598, + "learning_rate": 0.0006, + "loss": 3.790039300918579, + "step": 2025 + }, + { + "epoch": 28.13979903888161, + "grad_norm": 0.2172182947397232, + "learning_rate": 0.0006, + "loss": 3.818756580352783, + "step": 2026 + }, + { + "epoch": 28.15377894276977, + "grad_norm": 0.2103179395198822, + "learning_rate": 0.0006, + "loss": 3.7768917083740234, + "step": 2027 + }, + { + "epoch": 28.16775884665793, + "grad_norm": 0.22322365641593933, + "learning_rate": 0.0006, + "loss": 3.8223648071289062, + "step": 2028 + }, + { + "epoch": 28.18173875054609, + "grad_norm": 0.24199382960796356, + "learning_rate": 0.0006, + "loss": 3.781357765197754, + "step": 2029 + }, + { + "epoch": 28.195718654434252, + "grad_norm": 0.2500663101673126, + "learning_rate": 0.0006, + "loss": 3.8061184883117676, + "step": 2030 + }, + { + "epoch": 28.209698558322412, + "grad_norm": 0.2439824491739273, + "learning_rate": 0.0006, + "loss": 3.7886464595794678, + "step": 2031 + }, + { + "epoch": 28.22367846221057, + "grad_norm": 0.24563106894493103, + "learning_rate": 0.0006, + "loss": 3.7901692390441895, + "step": 2032 + }, + { + "epoch": 28.23765836609873, + "grad_norm": 0.2287624627351761, + "learning_rate": 0.0006, + "loss": 3.789931058883667, + "step": 2033 + }, + { + "epoch": 28.251638269986895, + "grad_norm": 0.2231188714504242, + "learning_rate": 0.0006, + "loss": 3.7879133224487305, + "step": 2034 + }, + { + "epoch": 28.265618173875055, + "grad_norm": 0.23090387880802155, + "learning_rate": 0.0006, + "loss": 3.7826130390167236, + "step": 2035 + }, + { + "epoch": 28.279598077763215, + "grad_norm": 0.216018944978714, + "learning_rate": 0.0006, + "loss": 3.7764949798583984, + "step": 2036 + }, + { + "epoch": 28.293577981651374, + "grad_norm": 0.22649185359477997, + "learning_rate": 0.0006, + "loss": 3.7911291122436523, + "step": 2037 + }, + { + "epoch": 28.307557885539538, + "grad_norm": 0.2350836843252182, + "learning_rate": 0.0006, + "loss": 3.7668724060058594, + "step": 2038 + }, + { + "epoch": 28.321537789427698, + "grad_norm": 0.23206329345703125, + "learning_rate": 0.0006, + "loss": 3.782243251800537, + "step": 2039 + }, + { + "epoch": 28.335517693315857, + "grad_norm": 0.21896308660507202, + "learning_rate": 0.0006, + "loss": 3.7605721950531006, + "step": 2040 + }, + { + "epoch": 28.34949759720402, + "grad_norm": 0.20381200313568115, + "learning_rate": 0.0006, + "loss": 3.743945598602295, + "step": 2041 + }, + { + "epoch": 28.36347750109218, + "grad_norm": 0.19196000695228577, + "learning_rate": 0.0006, + "loss": 3.808107852935791, + "step": 2042 + }, + { + "epoch": 28.37745740498034, + "grad_norm": 0.19517889618873596, + "learning_rate": 0.0006, + "loss": 3.7906723022460938, + "step": 2043 + }, + { + "epoch": 28.3914373088685, + "grad_norm": 0.20455795526504517, + "learning_rate": 0.0006, + "loss": 3.7421011924743652, + "step": 2044 + }, + { + "epoch": 28.405417212756664, + "grad_norm": 0.1867467314004898, + "learning_rate": 0.0006, + "loss": 3.775509834289551, + "step": 2045 + }, + { + "epoch": 28.419397116644824, + "grad_norm": 0.2029324471950531, + "learning_rate": 0.0006, + "loss": 3.771353244781494, + "step": 2046 + }, + { + "epoch": 28.433377020532983, + "grad_norm": 0.19967497885227203, + "learning_rate": 0.0006, + "loss": 3.7821149826049805, + "step": 2047 + }, + { + "epoch": 28.447356924421143, + "grad_norm": 0.19440607726573944, + "learning_rate": 0.0006, + "loss": 3.8114213943481445, + "step": 2048 + }, + { + "epoch": 28.461336828309307, + "grad_norm": 0.19679802656173706, + "learning_rate": 0.0006, + "loss": 3.7699532508850098, + "step": 2049 + }, + { + "epoch": 28.475316732197467, + "grad_norm": 0.1939811110496521, + "learning_rate": 0.0006, + "loss": 3.7673027515411377, + "step": 2050 + }, + { + "epoch": 28.489296636085626, + "grad_norm": 0.18712401390075684, + "learning_rate": 0.0006, + "loss": 3.816699266433716, + "step": 2051 + }, + { + "epoch": 28.503276539973786, + "grad_norm": 0.202956885099411, + "learning_rate": 0.0006, + "loss": 3.7746071815490723, + "step": 2052 + }, + { + "epoch": 28.51725644386195, + "grad_norm": 0.19098156690597534, + "learning_rate": 0.0006, + "loss": 3.8065481185913086, + "step": 2053 + }, + { + "epoch": 28.53123634775011, + "grad_norm": 0.21144428849220276, + "learning_rate": 0.0006, + "loss": 3.7890982627868652, + "step": 2054 + }, + { + "epoch": 28.54521625163827, + "grad_norm": 0.21882614493370056, + "learning_rate": 0.0006, + "loss": 3.8168821334838867, + "step": 2055 + }, + { + "epoch": 28.55919615552643, + "grad_norm": 0.22200101613998413, + "learning_rate": 0.0006, + "loss": 3.804454803466797, + "step": 2056 + }, + { + "epoch": 28.573176059414592, + "grad_norm": 0.22404780983924866, + "learning_rate": 0.0006, + "loss": 3.808764934539795, + "step": 2057 + }, + { + "epoch": 28.587155963302752, + "grad_norm": 0.22770099341869354, + "learning_rate": 0.0006, + "loss": 3.74835467338562, + "step": 2058 + }, + { + "epoch": 28.601135867190912, + "grad_norm": 0.23214420676231384, + "learning_rate": 0.0006, + "loss": 3.7480111122131348, + "step": 2059 + }, + { + "epoch": 28.615115771079076, + "grad_norm": 0.21786348521709442, + "learning_rate": 0.0006, + "loss": 3.8095176219940186, + "step": 2060 + }, + { + "epoch": 28.629095674967235, + "grad_norm": 0.21004106104373932, + "learning_rate": 0.0006, + "loss": 3.792745590209961, + "step": 2061 + }, + { + "epoch": 28.643075578855395, + "grad_norm": 0.21076138317584991, + "learning_rate": 0.0006, + "loss": 3.7878952026367188, + "step": 2062 + }, + { + "epoch": 28.657055482743555, + "grad_norm": 0.2184346616268158, + "learning_rate": 0.0006, + "loss": 3.757188320159912, + "step": 2063 + }, + { + "epoch": 28.67103538663172, + "grad_norm": 0.22100569307804108, + "learning_rate": 0.0006, + "loss": 3.8131773471832275, + "step": 2064 + }, + { + "epoch": 28.68501529051988, + "grad_norm": 0.23257511854171753, + "learning_rate": 0.0006, + "loss": 3.793826103210449, + "step": 2065 + }, + { + "epoch": 28.698995194408038, + "grad_norm": 0.22312869131565094, + "learning_rate": 0.0006, + "loss": 3.782083749771118, + "step": 2066 + }, + { + "epoch": 28.712975098296198, + "grad_norm": 0.2318405956029892, + "learning_rate": 0.0006, + "loss": 3.7814879417419434, + "step": 2067 + }, + { + "epoch": 28.72695500218436, + "grad_norm": 0.23719379305839539, + "learning_rate": 0.0006, + "loss": 3.8320484161376953, + "step": 2068 + }, + { + "epoch": 28.74093490607252, + "grad_norm": 0.23100806772708893, + "learning_rate": 0.0006, + "loss": 3.7921783924102783, + "step": 2069 + }, + { + "epoch": 28.75491480996068, + "grad_norm": 0.21540866792201996, + "learning_rate": 0.0006, + "loss": 3.8325204849243164, + "step": 2070 + }, + { + "epoch": 28.76889471384884, + "grad_norm": 0.2698654532432556, + "learning_rate": 0.0006, + "loss": 3.7965879440307617, + "step": 2071 + }, + { + "epoch": 28.782874617737004, + "grad_norm": 0.3101225793361664, + "learning_rate": 0.0006, + "loss": 3.78842830657959, + "step": 2072 + }, + { + "epoch": 28.796854521625164, + "grad_norm": 0.2607600688934326, + "learning_rate": 0.0006, + "loss": 3.770064115524292, + "step": 2073 + }, + { + "epoch": 28.810834425513324, + "grad_norm": 0.20558302104473114, + "learning_rate": 0.0006, + "loss": 3.7448501586914062, + "step": 2074 + }, + { + "epoch": 28.824814329401484, + "grad_norm": 0.20030120015144348, + "learning_rate": 0.0006, + "loss": 3.7689406871795654, + "step": 2075 + }, + { + "epoch": 28.838794233289647, + "grad_norm": 0.21781118214130402, + "learning_rate": 0.0006, + "loss": 3.7682244777679443, + "step": 2076 + }, + { + "epoch": 28.852774137177807, + "grad_norm": 0.23543044924736023, + "learning_rate": 0.0006, + "loss": 3.8094193935394287, + "step": 2077 + }, + { + "epoch": 28.866754041065967, + "grad_norm": 0.21634669601917267, + "learning_rate": 0.0006, + "loss": 3.792099952697754, + "step": 2078 + }, + { + "epoch": 28.88073394495413, + "grad_norm": 0.2251661866903305, + "learning_rate": 0.0006, + "loss": 3.7849509716033936, + "step": 2079 + }, + { + "epoch": 28.89471384884229, + "grad_norm": 0.23872914910316467, + "learning_rate": 0.0006, + "loss": 3.8391621112823486, + "step": 2080 + }, + { + "epoch": 28.90869375273045, + "grad_norm": 0.22259248793125153, + "learning_rate": 0.0006, + "loss": 3.8272876739501953, + "step": 2081 + }, + { + "epoch": 28.92267365661861, + "grad_norm": 0.22052262723445892, + "learning_rate": 0.0006, + "loss": 3.7986836433410645, + "step": 2082 + }, + { + "epoch": 28.936653560506773, + "grad_norm": 0.24487647414207458, + "learning_rate": 0.0006, + "loss": 3.798004150390625, + "step": 2083 + }, + { + "epoch": 28.950633464394933, + "grad_norm": 0.22992238402366638, + "learning_rate": 0.0006, + "loss": 3.788522720336914, + "step": 2084 + }, + { + "epoch": 28.964613368283093, + "grad_norm": 0.22521597146987915, + "learning_rate": 0.0006, + "loss": 3.767259120941162, + "step": 2085 + }, + { + "epoch": 28.978593272171253, + "grad_norm": 0.2201499044895172, + "learning_rate": 0.0006, + "loss": 3.7850542068481445, + "step": 2086 + }, + { + "epoch": 28.992573176059416, + "grad_norm": 0.22226814925670624, + "learning_rate": 0.0006, + "loss": 3.8013534545898438, + "step": 2087 + }, + { + "epoch": 29.0, + "grad_norm": 0.27624809741973877, + "learning_rate": 0.0006, + "loss": 3.762004852294922, + "step": 2088 + }, + { + "epoch": 29.0, + "eval_loss": 4.034304618835449, + "eval_runtime": 44.6573, + "eval_samples_per_second": 54.683, + "eval_steps_per_second": 3.426, + "step": 2088 + }, + { + "epoch": 29.01397990388816, + "grad_norm": 0.2550967037677765, + "learning_rate": 0.0006, + "loss": 3.7724227905273438, + "step": 2089 + }, + { + "epoch": 29.027959807776323, + "grad_norm": 0.26730602979660034, + "learning_rate": 0.0006, + "loss": 3.7728946208953857, + "step": 2090 + }, + { + "epoch": 29.041939711664483, + "grad_norm": 0.2394205927848816, + "learning_rate": 0.0006, + "loss": 3.7737584114074707, + "step": 2091 + }, + { + "epoch": 29.055919615552643, + "grad_norm": 0.22488200664520264, + "learning_rate": 0.0006, + "loss": 3.761014938354492, + "step": 2092 + }, + { + "epoch": 29.069899519440803, + "grad_norm": 0.2389903962612152, + "learning_rate": 0.0006, + "loss": 3.766557216644287, + "step": 2093 + }, + { + "epoch": 29.083879423328966, + "grad_norm": 0.234152153134346, + "learning_rate": 0.0006, + "loss": 3.7447147369384766, + "step": 2094 + }, + { + "epoch": 29.097859327217126, + "grad_norm": 0.23123252391815186, + "learning_rate": 0.0006, + "loss": 3.77197527885437, + "step": 2095 + }, + { + "epoch": 29.111839231105286, + "grad_norm": 0.23263143002986908, + "learning_rate": 0.0006, + "loss": 3.7390198707580566, + "step": 2096 + }, + { + "epoch": 29.125819134993446, + "grad_norm": 0.23235775530338287, + "learning_rate": 0.0006, + "loss": 3.7675256729125977, + "step": 2097 + }, + { + "epoch": 29.13979903888161, + "grad_norm": 0.2208816260099411, + "learning_rate": 0.0006, + "loss": 3.7588067054748535, + "step": 2098 + }, + { + "epoch": 29.15377894276977, + "grad_norm": 0.21216371655464172, + "learning_rate": 0.0006, + "loss": 3.7370502948760986, + "step": 2099 + }, + { + "epoch": 29.16775884665793, + "grad_norm": 0.2210543155670166, + "learning_rate": 0.0006, + "loss": 3.767308473587036, + "step": 2100 + }, + { + "epoch": 29.18173875054609, + "grad_norm": 0.21628431975841522, + "learning_rate": 0.0006, + "loss": 3.7298972606658936, + "step": 2101 + }, + { + "epoch": 29.195718654434252, + "grad_norm": 0.21493588387966156, + "learning_rate": 0.0006, + "loss": 3.7806448936462402, + "step": 2102 + }, + { + "epoch": 29.209698558322412, + "grad_norm": 0.25978055596351624, + "learning_rate": 0.0006, + "loss": 3.7716293334960938, + "step": 2103 + }, + { + "epoch": 29.22367846221057, + "grad_norm": 0.2744791507720947, + "learning_rate": 0.0006, + "loss": 3.76897931098938, + "step": 2104 + }, + { + "epoch": 29.23765836609873, + "grad_norm": 0.22959400713443756, + "learning_rate": 0.0006, + "loss": 3.7545714378356934, + "step": 2105 + }, + { + "epoch": 29.251638269986895, + "grad_norm": 0.20369231700897217, + "learning_rate": 0.0006, + "loss": 3.7944722175598145, + "step": 2106 + }, + { + "epoch": 29.265618173875055, + "grad_norm": 0.21663758158683777, + "learning_rate": 0.0006, + "loss": 3.7564756870269775, + "step": 2107 + }, + { + "epoch": 29.279598077763215, + "grad_norm": 0.21862861514091492, + "learning_rate": 0.0006, + "loss": 3.7722725868225098, + "step": 2108 + }, + { + "epoch": 29.293577981651374, + "grad_norm": 0.2044878453016281, + "learning_rate": 0.0006, + "loss": 3.7471303939819336, + "step": 2109 + }, + { + "epoch": 29.307557885539538, + "grad_norm": 0.23015929758548737, + "learning_rate": 0.0006, + "loss": 3.7584962844848633, + "step": 2110 + }, + { + "epoch": 29.321537789427698, + "grad_norm": 0.22548329830169678, + "learning_rate": 0.0006, + "loss": 3.795933723449707, + "step": 2111 + }, + { + "epoch": 29.335517693315857, + "grad_norm": 0.2000468522310257, + "learning_rate": 0.0006, + "loss": 3.766310691833496, + "step": 2112 + }, + { + "epoch": 29.34949759720402, + "grad_norm": 0.19711551070213318, + "learning_rate": 0.0006, + "loss": 3.7296276092529297, + "step": 2113 + }, + { + "epoch": 29.36347750109218, + "grad_norm": 0.18838997185230255, + "learning_rate": 0.0006, + "loss": 3.7685282230377197, + "step": 2114 + }, + { + "epoch": 29.37745740498034, + "grad_norm": 0.1897876113653183, + "learning_rate": 0.0006, + "loss": 3.7280936241149902, + "step": 2115 + }, + { + "epoch": 29.3914373088685, + "grad_norm": 0.21697933971881866, + "learning_rate": 0.0006, + "loss": 3.7991929054260254, + "step": 2116 + }, + { + "epoch": 29.405417212756664, + "grad_norm": 0.23445849120616913, + "learning_rate": 0.0006, + "loss": 3.7857418060302734, + "step": 2117 + }, + { + "epoch": 29.419397116644824, + "grad_norm": 0.24155527353286743, + "learning_rate": 0.0006, + "loss": 3.7897872924804688, + "step": 2118 + }, + { + "epoch": 29.433377020532983, + "grad_norm": 0.2610265016555786, + "learning_rate": 0.0006, + "loss": 3.7867324352264404, + "step": 2119 + }, + { + "epoch": 29.447356924421143, + "grad_norm": 0.2809581160545349, + "learning_rate": 0.0006, + "loss": 3.783799648284912, + "step": 2120 + }, + { + "epoch": 29.461336828309307, + "grad_norm": 0.2621572017669678, + "learning_rate": 0.0006, + "loss": 3.7778549194335938, + "step": 2121 + }, + { + "epoch": 29.475316732197467, + "grad_norm": 0.26002970337867737, + "learning_rate": 0.0006, + "loss": 3.787945508956909, + "step": 2122 + }, + { + "epoch": 29.489296636085626, + "grad_norm": 0.24866686761379242, + "learning_rate": 0.0006, + "loss": 3.7406349182128906, + "step": 2123 + }, + { + "epoch": 29.503276539973786, + "grad_norm": 0.25588324666023254, + "learning_rate": 0.0006, + "loss": 3.785625457763672, + "step": 2124 + }, + { + "epoch": 29.51725644386195, + "grad_norm": 0.24724243581295013, + "learning_rate": 0.0006, + "loss": 3.7581701278686523, + "step": 2125 + }, + { + "epoch": 29.53123634775011, + "grad_norm": 0.23544734716415405, + "learning_rate": 0.0006, + "loss": 3.8163957595825195, + "step": 2126 + }, + { + "epoch": 29.54521625163827, + "grad_norm": 0.2108801156282425, + "learning_rate": 0.0006, + "loss": 3.7881739139556885, + "step": 2127 + }, + { + "epoch": 29.55919615552643, + "grad_norm": 0.20459668338298798, + "learning_rate": 0.0006, + "loss": 3.7641284465789795, + "step": 2128 + }, + { + "epoch": 29.573176059414592, + "grad_norm": 0.24020728468894958, + "learning_rate": 0.0006, + "loss": 3.7748730182647705, + "step": 2129 + }, + { + "epoch": 29.587155963302752, + "grad_norm": 0.256273478269577, + "learning_rate": 0.0006, + "loss": 3.8076486587524414, + "step": 2130 + }, + { + "epoch": 29.601135867190912, + "grad_norm": 0.23295973241329193, + "learning_rate": 0.0006, + "loss": 3.7687063217163086, + "step": 2131 + }, + { + "epoch": 29.615115771079076, + "grad_norm": 0.21554847061634064, + "learning_rate": 0.0006, + "loss": 3.781867027282715, + "step": 2132 + }, + { + "epoch": 29.629095674967235, + "grad_norm": 0.20645774900913239, + "learning_rate": 0.0006, + "loss": 3.7813425064086914, + "step": 2133 + }, + { + "epoch": 29.643075578855395, + "grad_norm": 0.2018265724182129, + "learning_rate": 0.0006, + "loss": 3.772895574569702, + "step": 2134 + }, + { + "epoch": 29.657055482743555, + "grad_norm": 0.20170100033283234, + "learning_rate": 0.0006, + "loss": 3.7819175720214844, + "step": 2135 + }, + { + "epoch": 29.67103538663172, + "grad_norm": 0.22640688717365265, + "learning_rate": 0.0006, + "loss": 3.7999017238616943, + "step": 2136 + }, + { + "epoch": 29.68501529051988, + "grad_norm": 0.23747675120830536, + "learning_rate": 0.0006, + "loss": 3.804999828338623, + "step": 2137 + }, + { + "epoch": 29.698995194408038, + "grad_norm": 0.20005857944488525, + "learning_rate": 0.0006, + "loss": 3.7815160751342773, + "step": 2138 + }, + { + "epoch": 29.712975098296198, + "grad_norm": 0.17901667952537537, + "learning_rate": 0.0006, + "loss": 3.7898688316345215, + "step": 2139 + }, + { + "epoch": 29.72695500218436, + "grad_norm": 0.1890905797481537, + "learning_rate": 0.0006, + "loss": 3.8001184463500977, + "step": 2140 + }, + { + "epoch": 29.74093490607252, + "grad_norm": 0.19565847516059875, + "learning_rate": 0.0006, + "loss": 3.7522482872009277, + "step": 2141 + }, + { + "epoch": 29.75491480996068, + "grad_norm": 0.19429196417331696, + "learning_rate": 0.0006, + "loss": 3.768972158432007, + "step": 2142 + }, + { + "epoch": 29.76889471384884, + "grad_norm": 0.23846636712551117, + "learning_rate": 0.0006, + "loss": 3.765216112136841, + "step": 2143 + }, + { + "epoch": 29.782874617737004, + "grad_norm": 0.23820780217647552, + "learning_rate": 0.0006, + "loss": 3.8027703762054443, + "step": 2144 + }, + { + "epoch": 29.796854521625164, + "grad_norm": 0.21104726195335388, + "learning_rate": 0.0006, + "loss": 3.7682833671569824, + "step": 2145 + }, + { + "epoch": 29.810834425513324, + "grad_norm": 0.1911051720380783, + "learning_rate": 0.0006, + "loss": 3.781782627105713, + "step": 2146 + }, + { + "epoch": 29.824814329401484, + "grad_norm": 0.18881288170814514, + "learning_rate": 0.0006, + "loss": 3.7703428268432617, + "step": 2147 + }, + { + "epoch": 29.838794233289647, + "grad_norm": 0.18292994797229767, + "learning_rate": 0.0006, + "loss": 3.769176721572876, + "step": 2148 + }, + { + "epoch": 29.852774137177807, + "grad_norm": 0.1777714639902115, + "learning_rate": 0.0006, + "loss": 3.7488298416137695, + "step": 2149 + }, + { + "epoch": 29.866754041065967, + "grad_norm": 0.2037898749113083, + "learning_rate": 0.0006, + "loss": 3.804396390914917, + "step": 2150 + }, + { + "epoch": 29.88073394495413, + "grad_norm": 0.2121828943490982, + "learning_rate": 0.0006, + "loss": 3.75870943069458, + "step": 2151 + }, + { + "epoch": 29.89471384884229, + "grad_norm": 0.23231184482574463, + "learning_rate": 0.0006, + "loss": 3.80178165435791, + "step": 2152 + }, + { + "epoch": 29.90869375273045, + "grad_norm": 0.24045611917972565, + "learning_rate": 0.0006, + "loss": 3.7690834999084473, + "step": 2153 + }, + { + "epoch": 29.92267365661861, + "grad_norm": 0.19830496609210968, + "learning_rate": 0.0006, + "loss": 3.764401912689209, + "step": 2154 + }, + { + "epoch": 29.936653560506773, + "grad_norm": 0.17704227566719055, + "learning_rate": 0.0006, + "loss": 3.7634594440460205, + "step": 2155 + }, + { + "epoch": 29.950633464394933, + "grad_norm": 0.17783164978027344, + "learning_rate": 0.0006, + "loss": 3.7856998443603516, + "step": 2156 + }, + { + "epoch": 29.964613368283093, + "grad_norm": 0.19684971868991852, + "learning_rate": 0.0006, + "loss": 3.805774211883545, + "step": 2157 + }, + { + "epoch": 29.978593272171253, + "grad_norm": 0.21662312746047974, + "learning_rate": 0.0006, + "loss": 3.757896661758423, + "step": 2158 + }, + { + "epoch": 29.992573176059416, + "grad_norm": 0.22000661492347717, + "learning_rate": 0.0006, + "loss": 3.7747678756713867, + "step": 2159 + }, + { + "epoch": 30.0, + "grad_norm": 0.21501901745796204, + "learning_rate": 0.0006, + "loss": 3.785585880279541, + "step": 2160 + }, + { + "epoch": 30.0, + "eval_loss": 4.034003734588623, + "eval_runtime": 44.9097, + "eval_samples_per_second": 54.376, + "eval_steps_per_second": 3.407, + "step": 2160 + }, + { + "epoch": 30.01397990388816, + "grad_norm": 0.19710904359817505, + "learning_rate": 0.0006, + "loss": 3.756235122680664, + "step": 2161 + }, + { + "epoch": 30.027959807776323, + "grad_norm": 0.19829736649990082, + "learning_rate": 0.0006, + "loss": 3.734067916870117, + "step": 2162 + }, + { + "epoch": 30.041939711664483, + "grad_norm": 0.21622520685195923, + "learning_rate": 0.0006, + "loss": 3.7329437732696533, + "step": 2163 + }, + { + "epoch": 30.055919615552643, + "grad_norm": 0.22544652223587036, + "learning_rate": 0.0006, + "loss": 3.748716354370117, + "step": 2164 + }, + { + "epoch": 30.069899519440803, + "grad_norm": 0.21098364889621735, + "learning_rate": 0.0006, + "loss": 3.779047727584839, + "step": 2165 + }, + { + "epoch": 30.083879423328966, + "grad_norm": 0.21309930086135864, + "learning_rate": 0.0006, + "loss": 3.7690274715423584, + "step": 2166 + }, + { + "epoch": 30.097859327217126, + "grad_norm": 0.23025690019130707, + "learning_rate": 0.0006, + "loss": 3.7500953674316406, + "step": 2167 + }, + { + "epoch": 30.111839231105286, + "grad_norm": 0.25107935070991516, + "learning_rate": 0.0006, + "loss": 3.745492458343506, + "step": 2168 + }, + { + "epoch": 30.125819134993446, + "grad_norm": 0.29873573780059814, + "learning_rate": 0.0006, + "loss": 3.759793758392334, + "step": 2169 + }, + { + "epoch": 30.13979903888161, + "grad_norm": 0.2810286283493042, + "learning_rate": 0.0006, + "loss": 3.772998809814453, + "step": 2170 + }, + { + "epoch": 30.15377894276977, + "grad_norm": 0.2102176398038864, + "learning_rate": 0.0006, + "loss": 3.740170955657959, + "step": 2171 + }, + { + "epoch": 30.16775884665793, + "grad_norm": 0.24143251776695251, + "learning_rate": 0.0006, + "loss": 3.7317001819610596, + "step": 2172 + }, + { + "epoch": 30.18173875054609, + "grad_norm": 0.2643064558506012, + "learning_rate": 0.0006, + "loss": 3.773263692855835, + "step": 2173 + }, + { + "epoch": 30.195718654434252, + "grad_norm": 0.27571243047714233, + "learning_rate": 0.0006, + "loss": 3.7619900703430176, + "step": 2174 + }, + { + "epoch": 30.209698558322412, + "grad_norm": 0.25359588861465454, + "learning_rate": 0.0006, + "loss": 3.7608513832092285, + "step": 2175 + }, + { + "epoch": 30.22367846221057, + "grad_norm": 0.2500684857368469, + "learning_rate": 0.0006, + "loss": 3.75856614112854, + "step": 2176 + }, + { + "epoch": 30.23765836609873, + "grad_norm": 0.23100309073925018, + "learning_rate": 0.0006, + "loss": 3.749786853790283, + "step": 2177 + }, + { + "epoch": 30.251638269986895, + "grad_norm": 0.24384984374046326, + "learning_rate": 0.0006, + "loss": 3.762244701385498, + "step": 2178 + }, + { + "epoch": 30.265618173875055, + "grad_norm": 0.24593998491764069, + "learning_rate": 0.0006, + "loss": 3.754594326019287, + "step": 2179 + }, + { + "epoch": 30.279598077763215, + "grad_norm": 0.2529342770576477, + "learning_rate": 0.0006, + "loss": 3.7641053199768066, + "step": 2180 + }, + { + "epoch": 30.293577981651374, + "grad_norm": 0.25954094529151917, + "learning_rate": 0.0006, + "loss": 3.810336112976074, + "step": 2181 + }, + { + "epoch": 30.307557885539538, + "grad_norm": 0.2249951958656311, + "learning_rate": 0.0006, + "loss": 3.7542617321014404, + "step": 2182 + }, + { + "epoch": 30.321537789427698, + "grad_norm": 0.19795064628124237, + "learning_rate": 0.0006, + "loss": 3.7734434604644775, + "step": 2183 + }, + { + "epoch": 30.335517693315857, + "grad_norm": 0.20744608342647552, + "learning_rate": 0.0006, + "loss": 3.7816128730773926, + "step": 2184 + }, + { + "epoch": 30.34949759720402, + "grad_norm": 0.19988055527210236, + "learning_rate": 0.0006, + "loss": 3.7631936073303223, + "step": 2185 + }, + { + "epoch": 30.36347750109218, + "grad_norm": 0.22226445376873016, + "learning_rate": 0.0006, + "loss": 3.762910842895508, + "step": 2186 + }, + { + "epoch": 30.37745740498034, + "grad_norm": 0.21986067295074463, + "learning_rate": 0.0006, + "loss": 3.733893394470215, + "step": 2187 + }, + { + "epoch": 30.3914373088685, + "grad_norm": 0.2170228660106659, + "learning_rate": 0.0006, + "loss": 3.726433515548706, + "step": 2188 + }, + { + "epoch": 30.405417212756664, + "grad_norm": 0.2179550975561142, + "learning_rate": 0.0006, + "loss": 3.792311668395996, + "step": 2189 + }, + { + "epoch": 30.419397116644824, + "grad_norm": 0.208037331700325, + "learning_rate": 0.0006, + "loss": 3.774639129638672, + "step": 2190 + }, + { + "epoch": 30.433377020532983, + "grad_norm": 0.20745441317558289, + "learning_rate": 0.0006, + "loss": 3.776130199432373, + "step": 2191 + }, + { + "epoch": 30.447356924421143, + "grad_norm": 0.1988024264574051, + "learning_rate": 0.0006, + "loss": 3.7453784942626953, + "step": 2192 + }, + { + "epoch": 30.461336828309307, + "grad_norm": 0.194968581199646, + "learning_rate": 0.0006, + "loss": 3.764653205871582, + "step": 2193 + }, + { + "epoch": 30.475316732197467, + "grad_norm": 0.20658300817012787, + "learning_rate": 0.0006, + "loss": 3.796513080596924, + "step": 2194 + }, + { + "epoch": 30.489296636085626, + "grad_norm": 0.2123410701751709, + "learning_rate": 0.0006, + "loss": 3.7630836963653564, + "step": 2195 + }, + { + "epoch": 30.503276539973786, + "grad_norm": 0.20894059538841248, + "learning_rate": 0.0006, + "loss": 3.7265470027923584, + "step": 2196 + }, + { + "epoch": 30.51725644386195, + "grad_norm": 0.2016828954219818, + "learning_rate": 0.0006, + "loss": 3.8083386421203613, + "step": 2197 + }, + { + "epoch": 30.53123634775011, + "grad_norm": 0.19584205746650696, + "learning_rate": 0.0006, + "loss": 3.7492105960845947, + "step": 2198 + }, + { + "epoch": 30.54521625163827, + "grad_norm": 0.18635272979736328, + "learning_rate": 0.0006, + "loss": 3.711009979248047, + "step": 2199 + }, + { + "epoch": 30.55919615552643, + "grad_norm": 0.1920594871044159, + "learning_rate": 0.0006, + "loss": 3.760801315307617, + "step": 2200 + }, + { + "epoch": 30.573176059414592, + "grad_norm": 0.1978331208229065, + "learning_rate": 0.0006, + "loss": 3.780529022216797, + "step": 2201 + }, + { + "epoch": 30.587155963302752, + "grad_norm": 0.20076943933963776, + "learning_rate": 0.0006, + "loss": 3.7767038345336914, + "step": 2202 + }, + { + "epoch": 30.601135867190912, + "grad_norm": 0.2067444622516632, + "learning_rate": 0.0006, + "loss": 3.7607920169830322, + "step": 2203 + }, + { + "epoch": 30.615115771079076, + "grad_norm": 0.2081940472126007, + "learning_rate": 0.0006, + "loss": 3.741936206817627, + "step": 2204 + }, + { + "epoch": 30.629095674967235, + "grad_norm": 0.21212869882583618, + "learning_rate": 0.0006, + "loss": 3.7597827911376953, + "step": 2205 + }, + { + "epoch": 30.643075578855395, + "grad_norm": 0.21539026498794556, + "learning_rate": 0.0006, + "loss": 3.764646053314209, + "step": 2206 + }, + { + "epoch": 30.657055482743555, + "grad_norm": 0.19788387417793274, + "learning_rate": 0.0006, + "loss": 3.7535128593444824, + "step": 2207 + }, + { + "epoch": 30.67103538663172, + "grad_norm": 0.20757688581943512, + "learning_rate": 0.0006, + "loss": 3.7414169311523438, + "step": 2208 + }, + { + "epoch": 30.68501529051988, + "grad_norm": 0.199361652135849, + "learning_rate": 0.0006, + "loss": 3.7578506469726562, + "step": 2209 + }, + { + "epoch": 30.698995194408038, + "grad_norm": 0.1909894198179245, + "learning_rate": 0.0006, + "loss": 3.736250400543213, + "step": 2210 + }, + { + "epoch": 30.712975098296198, + "grad_norm": 0.19766664505004883, + "learning_rate": 0.0006, + "loss": 3.7435379028320312, + "step": 2211 + }, + { + "epoch": 30.72695500218436, + "grad_norm": 0.21857766807079315, + "learning_rate": 0.0006, + "loss": 3.7478690147399902, + "step": 2212 + }, + { + "epoch": 30.74093490607252, + "grad_norm": 0.22385898232460022, + "learning_rate": 0.0006, + "loss": 3.7522530555725098, + "step": 2213 + }, + { + "epoch": 30.75491480996068, + "grad_norm": 0.2329241931438446, + "learning_rate": 0.0006, + "loss": 3.7568247318267822, + "step": 2214 + }, + { + "epoch": 30.76889471384884, + "grad_norm": 0.2218400090932846, + "learning_rate": 0.0006, + "loss": 3.7662744522094727, + "step": 2215 + }, + { + "epoch": 30.782874617737004, + "grad_norm": 0.21350212395191193, + "learning_rate": 0.0006, + "loss": 3.7683777809143066, + "step": 2216 + }, + { + "epoch": 30.796854521625164, + "grad_norm": 0.22357074916362762, + "learning_rate": 0.0006, + "loss": 3.763437032699585, + "step": 2217 + }, + { + "epoch": 30.810834425513324, + "grad_norm": 0.22268560528755188, + "learning_rate": 0.0006, + "loss": 3.772836685180664, + "step": 2218 + }, + { + "epoch": 30.824814329401484, + "grad_norm": 0.2434026449918747, + "learning_rate": 0.0006, + "loss": 3.752986431121826, + "step": 2219 + }, + { + "epoch": 30.838794233289647, + "grad_norm": 0.2298414409160614, + "learning_rate": 0.0006, + "loss": 3.7837061882019043, + "step": 2220 + }, + { + "epoch": 30.852774137177807, + "grad_norm": 0.227672278881073, + "learning_rate": 0.0006, + "loss": 3.746065378189087, + "step": 2221 + }, + { + "epoch": 30.866754041065967, + "grad_norm": 0.2562827169895172, + "learning_rate": 0.0006, + "loss": 3.7741947174072266, + "step": 2222 + }, + { + "epoch": 30.88073394495413, + "grad_norm": 0.23657815158367157, + "learning_rate": 0.0006, + "loss": 3.746457099914551, + "step": 2223 + }, + { + "epoch": 30.89471384884229, + "grad_norm": 0.2158907800912857, + "learning_rate": 0.0006, + "loss": 3.7821710109710693, + "step": 2224 + }, + { + "epoch": 30.90869375273045, + "grad_norm": 0.22501254081726074, + "learning_rate": 0.0006, + "loss": 3.7528274059295654, + "step": 2225 + }, + { + "epoch": 30.92267365661861, + "grad_norm": 0.20252224802970886, + "learning_rate": 0.0006, + "loss": 3.749418258666992, + "step": 2226 + }, + { + "epoch": 30.936653560506773, + "grad_norm": 0.2067883312702179, + "learning_rate": 0.0006, + "loss": 3.7560606002807617, + "step": 2227 + }, + { + "epoch": 30.950633464394933, + "grad_norm": 0.23104053735733032, + "learning_rate": 0.0006, + "loss": 3.7883846759796143, + "step": 2228 + }, + { + "epoch": 30.964613368283093, + "grad_norm": 0.21476604044437408, + "learning_rate": 0.0006, + "loss": 3.7976977825164795, + "step": 2229 + }, + { + "epoch": 30.978593272171253, + "grad_norm": 0.2130427062511444, + "learning_rate": 0.0006, + "loss": 3.7429304122924805, + "step": 2230 + }, + { + "epoch": 30.992573176059416, + "grad_norm": 0.2047216147184372, + "learning_rate": 0.0006, + "loss": 3.7669787406921387, + "step": 2231 + }, + { + "epoch": 31.0, + "grad_norm": 0.22254081070423126, + "learning_rate": 0.0006, + "loss": 3.7794251441955566, + "step": 2232 + }, + { + "epoch": 31.0, + "eval_loss": 4.039162635803223, + "eval_runtime": 44.9069, + "eval_samples_per_second": 54.379, + "eval_steps_per_second": 3.407, + "step": 2232 + }, + { + "epoch": 31.01397990388816, + "grad_norm": 0.2278132289648056, + "learning_rate": 0.0006, + "loss": 3.7363929748535156, + "step": 2233 + }, + { + "epoch": 31.027959807776323, + "grad_norm": 0.2377072274684906, + "learning_rate": 0.0006, + "loss": 3.72847318649292, + "step": 2234 + }, + { + "epoch": 31.041939711664483, + "grad_norm": 0.23790542781352997, + "learning_rate": 0.0006, + "loss": 3.767193078994751, + "step": 2235 + }, + { + "epoch": 31.055919615552643, + "grad_norm": 0.2587272524833679, + "learning_rate": 0.0006, + "loss": 3.7564640045166016, + "step": 2236 + }, + { + "epoch": 31.069899519440803, + "grad_norm": 0.27550312876701355, + "learning_rate": 0.0006, + "loss": 3.727578639984131, + "step": 2237 + }, + { + "epoch": 31.083879423328966, + "grad_norm": 0.2488662451505661, + "learning_rate": 0.0006, + "loss": 3.7420730590820312, + "step": 2238 + }, + { + "epoch": 31.097859327217126, + "grad_norm": 0.22699029743671417, + "learning_rate": 0.0006, + "loss": 3.7323155403137207, + "step": 2239 + }, + { + "epoch": 31.111839231105286, + "grad_norm": 0.23360148072242737, + "learning_rate": 0.0006, + "loss": 3.719024181365967, + "step": 2240 + }, + { + "epoch": 31.125819134993446, + "grad_norm": 0.24322988092899323, + "learning_rate": 0.0006, + "loss": 3.74485445022583, + "step": 2241 + }, + { + "epoch": 31.13979903888161, + "grad_norm": 0.2474174052476883, + "learning_rate": 0.0006, + "loss": 3.746826171875, + "step": 2242 + }, + { + "epoch": 31.15377894276977, + "grad_norm": 0.2417406439781189, + "learning_rate": 0.0006, + "loss": 3.7285032272338867, + "step": 2243 + }, + { + "epoch": 31.16775884665793, + "grad_norm": 0.2390318512916565, + "learning_rate": 0.0006, + "loss": 3.7464442253112793, + "step": 2244 + }, + { + "epoch": 31.18173875054609, + "grad_norm": 0.21819323301315308, + "learning_rate": 0.0006, + "loss": 3.735110282897949, + "step": 2245 + }, + { + "epoch": 31.195718654434252, + "grad_norm": 0.21953554451465607, + "learning_rate": 0.0006, + "loss": 3.7270030975341797, + "step": 2246 + }, + { + "epoch": 31.209698558322412, + "grad_norm": 0.1930384635925293, + "learning_rate": 0.0006, + "loss": 3.7519941329956055, + "step": 2247 + }, + { + "epoch": 31.22367846221057, + "grad_norm": 0.19799190759658813, + "learning_rate": 0.0006, + "loss": 3.7428221702575684, + "step": 2248 + }, + { + "epoch": 31.23765836609873, + "grad_norm": 0.20948201417922974, + "learning_rate": 0.0006, + "loss": 3.733120918273926, + "step": 2249 + }, + { + "epoch": 31.251638269986895, + "grad_norm": 0.23768769204616547, + "learning_rate": 0.0006, + "loss": 3.7059035301208496, + "step": 2250 + }, + { + "epoch": 31.265618173875055, + "grad_norm": 0.2808842957019806, + "learning_rate": 0.0006, + "loss": 3.7245287895202637, + "step": 2251 + }, + { + "epoch": 31.279598077763215, + "grad_norm": 0.27633124589920044, + "learning_rate": 0.0006, + "loss": 3.7436366081237793, + "step": 2252 + }, + { + "epoch": 31.293577981651374, + "grad_norm": 0.24137185513973236, + "learning_rate": 0.0006, + "loss": 3.7651219367980957, + "step": 2253 + }, + { + "epoch": 31.307557885539538, + "grad_norm": 0.22056810557842255, + "learning_rate": 0.0006, + "loss": 3.7417521476745605, + "step": 2254 + }, + { + "epoch": 31.321537789427698, + "grad_norm": 0.20137323439121246, + "learning_rate": 0.0006, + "loss": 3.750187397003174, + "step": 2255 + }, + { + "epoch": 31.335517693315857, + "grad_norm": 0.2142433375120163, + "learning_rate": 0.0006, + "loss": 3.7292675971984863, + "step": 2256 + }, + { + "epoch": 31.34949759720402, + "grad_norm": 0.21193967759609222, + "learning_rate": 0.0006, + "loss": 3.7459473609924316, + "step": 2257 + }, + { + "epoch": 31.36347750109218, + "grad_norm": 0.21418534219264984, + "learning_rate": 0.0006, + "loss": 3.754359722137451, + "step": 2258 + }, + { + "epoch": 31.37745740498034, + "grad_norm": 0.23507359623908997, + "learning_rate": 0.0006, + "loss": 3.763413906097412, + "step": 2259 + }, + { + "epoch": 31.3914373088685, + "grad_norm": 0.20393887162208557, + "learning_rate": 0.0006, + "loss": 3.73878812789917, + "step": 2260 + }, + { + "epoch": 31.405417212756664, + "grad_norm": 0.21752159297466278, + "learning_rate": 0.0006, + "loss": 3.750549793243408, + "step": 2261 + }, + { + "epoch": 31.419397116644824, + "grad_norm": 0.22629529237747192, + "learning_rate": 0.0006, + "loss": 3.7791430950164795, + "step": 2262 + }, + { + "epoch": 31.433377020532983, + "grad_norm": 0.2114613950252533, + "learning_rate": 0.0006, + "loss": 3.7709264755249023, + "step": 2263 + }, + { + "epoch": 31.447356924421143, + "grad_norm": 0.23241667449474335, + "learning_rate": 0.0006, + "loss": 3.745750665664673, + "step": 2264 + }, + { + "epoch": 31.461336828309307, + "grad_norm": 0.2434246987104416, + "learning_rate": 0.0006, + "loss": 3.769727945327759, + "step": 2265 + }, + { + "epoch": 31.475316732197467, + "grad_norm": 0.247820645570755, + "learning_rate": 0.0006, + "loss": 3.7528204917907715, + "step": 2266 + }, + { + "epoch": 31.489296636085626, + "grad_norm": 0.21287164092063904, + "learning_rate": 0.0006, + "loss": 3.728661060333252, + "step": 2267 + }, + { + "epoch": 31.503276539973786, + "grad_norm": 0.20983846485614777, + "learning_rate": 0.0006, + "loss": 3.7524428367614746, + "step": 2268 + }, + { + "epoch": 31.51725644386195, + "grad_norm": 0.23799288272857666, + "learning_rate": 0.0006, + "loss": 3.7276647090911865, + "step": 2269 + }, + { + "epoch": 31.53123634775011, + "grad_norm": 0.247065007686615, + "learning_rate": 0.0006, + "loss": 3.7506704330444336, + "step": 2270 + }, + { + "epoch": 31.54521625163827, + "grad_norm": 0.20670939981937408, + "learning_rate": 0.0006, + "loss": 3.71852445602417, + "step": 2271 + }, + { + "epoch": 31.55919615552643, + "grad_norm": 0.19463716447353363, + "learning_rate": 0.0006, + "loss": 3.732757568359375, + "step": 2272 + }, + { + "epoch": 31.573176059414592, + "grad_norm": 0.20368841290473938, + "learning_rate": 0.0006, + "loss": 3.746676445007324, + "step": 2273 + }, + { + "epoch": 31.587155963302752, + "grad_norm": 0.19691342115402222, + "learning_rate": 0.0006, + "loss": 3.7535760402679443, + "step": 2274 + }, + { + "epoch": 31.601135867190912, + "grad_norm": 0.2026553899049759, + "learning_rate": 0.0006, + "loss": 3.7406957149505615, + "step": 2275 + }, + { + "epoch": 31.615115771079076, + "grad_norm": 0.21494299173355103, + "learning_rate": 0.0006, + "loss": 3.735888957977295, + "step": 2276 + }, + { + "epoch": 31.629095674967235, + "grad_norm": 0.21644766628742218, + "learning_rate": 0.0006, + "loss": 3.723767042160034, + "step": 2277 + }, + { + "epoch": 31.643075578855395, + "grad_norm": 0.20087581872940063, + "learning_rate": 0.0006, + "loss": 3.7622008323669434, + "step": 2278 + }, + { + "epoch": 31.657055482743555, + "grad_norm": 0.1949695646762848, + "learning_rate": 0.0006, + "loss": 3.7726354598999023, + "step": 2279 + }, + { + "epoch": 31.67103538663172, + "grad_norm": 0.19120797514915466, + "learning_rate": 0.0006, + "loss": 3.7454679012298584, + "step": 2280 + }, + { + "epoch": 31.68501529051988, + "grad_norm": 0.19480115175247192, + "learning_rate": 0.0006, + "loss": 3.743934392929077, + "step": 2281 + }, + { + "epoch": 31.698995194408038, + "grad_norm": 0.1891610324382782, + "learning_rate": 0.0006, + "loss": 3.7724897861480713, + "step": 2282 + }, + { + "epoch": 31.712975098296198, + "grad_norm": 0.18533185124397278, + "learning_rate": 0.0006, + "loss": 3.7556838989257812, + "step": 2283 + }, + { + "epoch": 31.72695500218436, + "grad_norm": 0.20079447329044342, + "learning_rate": 0.0006, + "loss": 3.76758074760437, + "step": 2284 + }, + { + "epoch": 31.74093490607252, + "grad_norm": 0.2103433609008789, + "learning_rate": 0.0006, + "loss": 3.769477367401123, + "step": 2285 + }, + { + "epoch": 31.75491480996068, + "grad_norm": 0.21428923308849335, + "learning_rate": 0.0006, + "loss": 3.7317447662353516, + "step": 2286 + }, + { + "epoch": 31.76889471384884, + "grad_norm": 0.20154133439064026, + "learning_rate": 0.0006, + "loss": 3.749814987182617, + "step": 2287 + }, + { + "epoch": 31.782874617737004, + "grad_norm": 0.18998542428016663, + "learning_rate": 0.0006, + "loss": 3.7655510902404785, + "step": 2288 + }, + { + "epoch": 31.796854521625164, + "grad_norm": 0.2068665474653244, + "learning_rate": 0.0006, + "loss": 3.7375988960266113, + "step": 2289 + }, + { + "epoch": 31.810834425513324, + "grad_norm": 0.22979815304279327, + "learning_rate": 0.0006, + "loss": 3.728095531463623, + "step": 2290 + }, + { + "epoch": 31.824814329401484, + "grad_norm": 0.2378212958574295, + "learning_rate": 0.0006, + "loss": 3.73091459274292, + "step": 2291 + }, + { + "epoch": 31.838794233289647, + "grad_norm": 0.2353672832250595, + "learning_rate": 0.0006, + "loss": 3.7491769790649414, + "step": 2292 + }, + { + "epoch": 31.852774137177807, + "grad_norm": 0.22341586649417877, + "learning_rate": 0.0006, + "loss": 3.777111530303955, + "step": 2293 + }, + { + "epoch": 31.866754041065967, + "grad_norm": 0.20436930656433105, + "learning_rate": 0.0006, + "loss": 3.740997552871704, + "step": 2294 + }, + { + "epoch": 31.88073394495413, + "grad_norm": 0.20836040377616882, + "learning_rate": 0.0006, + "loss": 3.755582571029663, + "step": 2295 + }, + { + "epoch": 31.89471384884229, + "grad_norm": 0.2045193612575531, + "learning_rate": 0.0006, + "loss": 3.7583560943603516, + "step": 2296 + }, + { + "epoch": 31.90869375273045, + "grad_norm": 0.2025591880083084, + "learning_rate": 0.0006, + "loss": 3.773345470428467, + "step": 2297 + }, + { + "epoch": 31.92267365661861, + "grad_norm": 0.20309099555015564, + "learning_rate": 0.0006, + "loss": 3.7392163276672363, + "step": 2298 + }, + { + "epoch": 31.936653560506773, + "grad_norm": 0.2129351645708084, + "learning_rate": 0.0006, + "loss": 3.7801311016082764, + "step": 2299 + }, + { + "epoch": 31.950633464394933, + "grad_norm": 0.19950738549232483, + "learning_rate": 0.0006, + "loss": 3.779261589050293, + "step": 2300 + }, + { + "epoch": 31.964613368283093, + "grad_norm": 0.22837352752685547, + "learning_rate": 0.0006, + "loss": 3.782731294631958, + "step": 2301 + }, + { + "epoch": 31.978593272171253, + "grad_norm": 0.2576889097690582, + "learning_rate": 0.0006, + "loss": 3.7778096199035645, + "step": 2302 + }, + { + "epoch": 31.992573176059416, + "grad_norm": 0.2770138382911682, + "learning_rate": 0.0006, + "loss": 3.735755443572998, + "step": 2303 + }, + { + "epoch": 32.0, + "grad_norm": 0.2632865309715271, + "learning_rate": 0.0006, + "loss": 3.7562808990478516, + "step": 2304 + }, + { + "epoch": 32.0, + "eval_loss": 4.031628608703613, + "eval_runtime": 44.2115, + "eval_samples_per_second": 55.234, + "eval_steps_per_second": 3.461, + "step": 2304 + }, + { + "epoch": 32.01397990388816, + "grad_norm": 0.20234128832817078, + "learning_rate": 0.0006, + "loss": 3.734489917755127, + "step": 2305 + }, + { + "epoch": 32.02795980777632, + "grad_norm": 0.24983637034893036, + "learning_rate": 0.0006, + "loss": 3.7351019382476807, + "step": 2306 + }, + { + "epoch": 32.04193971166448, + "grad_norm": 0.27358478307724, + "learning_rate": 0.0006, + "loss": 3.708712100982666, + "step": 2307 + }, + { + "epoch": 32.05591961555265, + "grad_norm": 0.24693739414215088, + "learning_rate": 0.0006, + "loss": 3.731858491897583, + "step": 2308 + }, + { + "epoch": 32.0698995194408, + "grad_norm": 0.22751131653785706, + "learning_rate": 0.0006, + "loss": 3.7074670791625977, + "step": 2309 + }, + { + "epoch": 32.083879423328966, + "grad_norm": 0.23400720953941345, + "learning_rate": 0.0006, + "loss": 3.714092493057251, + "step": 2310 + }, + { + "epoch": 32.09785932721712, + "grad_norm": 0.20711684226989746, + "learning_rate": 0.0006, + "loss": 3.754727840423584, + "step": 2311 + }, + { + "epoch": 32.111839231105286, + "grad_norm": 0.21589399874210358, + "learning_rate": 0.0006, + "loss": 3.6953847408294678, + "step": 2312 + }, + { + "epoch": 32.12581913499345, + "grad_norm": 0.24575738608837128, + "learning_rate": 0.0006, + "loss": 3.7078802585601807, + "step": 2313 + }, + { + "epoch": 32.139799038881605, + "grad_norm": 0.23152033984661102, + "learning_rate": 0.0006, + "loss": 3.7402305603027344, + "step": 2314 + }, + { + "epoch": 32.15377894276977, + "grad_norm": 0.22639606893062592, + "learning_rate": 0.0006, + "loss": 3.7264223098754883, + "step": 2315 + }, + { + "epoch": 32.16775884665793, + "grad_norm": 0.24701760709285736, + "learning_rate": 0.0006, + "loss": 3.7497639656066895, + "step": 2316 + }, + { + "epoch": 32.18173875054609, + "grad_norm": 0.274832159280777, + "learning_rate": 0.0006, + "loss": 3.7557122707366943, + "step": 2317 + }, + { + "epoch": 32.19571865443425, + "grad_norm": 0.27472418546676636, + "learning_rate": 0.0006, + "loss": 3.6863393783569336, + "step": 2318 + }, + { + "epoch": 32.20969855832241, + "grad_norm": 0.2625530958175659, + "learning_rate": 0.0006, + "loss": 3.7203545570373535, + "step": 2319 + }, + { + "epoch": 32.22367846221057, + "grad_norm": 0.2576068341732025, + "learning_rate": 0.0006, + "loss": 3.734747886657715, + "step": 2320 + }, + { + "epoch": 32.237658366098735, + "grad_norm": 0.25946059823036194, + "learning_rate": 0.0006, + "loss": 3.7501730918884277, + "step": 2321 + }, + { + "epoch": 32.25163826998689, + "grad_norm": 0.2524135410785675, + "learning_rate": 0.0006, + "loss": 3.75177001953125, + "step": 2322 + }, + { + "epoch": 32.265618173875055, + "grad_norm": 0.2568551003932953, + "learning_rate": 0.0006, + "loss": 3.752450704574585, + "step": 2323 + }, + { + "epoch": 32.27959807776322, + "grad_norm": 0.2489749640226364, + "learning_rate": 0.0006, + "loss": 3.711735486984253, + "step": 2324 + }, + { + "epoch": 32.293577981651374, + "grad_norm": 0.2425498366355896, + "learning_rate": 0.0006, + "loss": 3.7004239559173584, + "step": 2325 + }, + { + "epoch": 32.30755788553954, + "grad_norm": 0.24359773099422455, + "learning_rate": 0.0006, + "loss": 3.733870029449463, + "step": 2326 + }, + { + "epoch": 32.3215377894277, + "grad_norm": 0.22314727306365967, + "learning_rate": 0.0006, + "loss": 3.699841022491455, + "step": 2327 + }, + { + "epoch": 32.33551769331586, + "grad_norm": 0.2047620266675949, + "learning_rate": 0.0006, + "loss": 3.732534170150757, + "step": 2328 + }, + { + "epoch": 32.34949759720402, + "grad_norm": 0.24393224716186523, + "learning_rate": 0.0006, + "loss": 3.7200770378112793, + "step": 2329 + }, + { + "epoch": 32.36347750109218, + "grad_norm": 0.23884256184101105, + "learning_rate": 0.0006, + "loss": 3.722318410873413, + "step": 2330 + }, + { + "epoch": 32.37745740498034, + "grad_norm": 0.23262189328670502, + "learning_rate": 0.0006, + "loss": 3.759033203125, + "step": 2331 + }, + { + "epoch": 32.391437308868504, + "grad_norm": 0.22542893886566162, + "learning_rate": 0.0006, + "loss": 3.729198694229126, + "step": 2332 + }, + { + "epoch": 32.40541721275666, + "grad_norm": 0.22479060292243958, + "learning_rate": 0.0006, + "loss": 3.7298169136047363, + "step": 2333 + }, + { + "epoch": 32.419397116644824, + "grad_norm": 0.21571804583072662, + "learning_rate": 0.0006, + "loss": 3.699937343597412, + "step": 2334 + }, + { + "epoch": 32.43337702053299, + "grad_norm": 0.20804545283317566, + "learning_rate": 0.0006, + "loss": 3.7495696544647217, + "step": 2335 + }, + { + "epoch": 32.44735692442114, + "grad_norm": 0.22751706838607788, + "learning_rate": 0.0006, + "loss": 3.7369821071624756, + "step": 2336 + }, + { + "epoch": 32.46133682830931, + "grad_norm": 0.2326795756816864, + "learning_rate": 0.0006, + "loss": 3.7636334896087646, + "step": 2337 + }, + { + "epoch": 32.47531673219746, + "grad_norm": 0.19971159100532532, + "learning_rate": 0.0006, + "loss": 3.72151517868042, + "step": 2338 + }, + { + "epoch": 32.489296636085626, + "grad_norm": 0.21078036725521088, + "learning_rate": 0.0006, + "loss": 3.7050065994262695, + "step": 2339 + }, + { + "epoch": 32.50327653997379, + "grad_norm": 0.22198088467121124, + "learning_rate": 0.0006, + "loss": 3.7654409408569336, + "step": 2340 + }, + { + "epoch": 32.517256443861946, + "grad_norm": 0.20995207130908966, + "learning_rate": 0.0006, + "loss": 3.7516250610351562, + "step": 2341 + }, + { + "epoch": 32.53123634775011, + "grad_norm": 0.20757141709327698, + "learning_rate": 0.0006, + "loss": 3.7412633895874023, + "step": 2342 + }, + { + "epoch": 32.54521625163827, + "grad_norm": 0.20053881406784058, + "learning_rate": 0.0006, + "loss": 3.7477493286132812, + "step": 2343 + }, + { + "epoch": 32.55919615552643, + "grad_norm": 0.20223091542720795, + "learning_rate": 0.0006, + "loss": 3.7149064540863037, + "step": 2344 + }, + { + "epoch": 32.57317605941459, + "grad_norm": 0.20179468393325806, + "learning_rate": 0.0006, + "loss": 3.70635724067688, + "step": 2345 + }, + { + "epoch": 32.58715596330275, + "grad_norm": 0.19670480489730835, + "learning_rate": 0.0006, + "loss": 3.7276744842529297, + "step": 2346 + }, + { + "epoch": 32.60113586719091, + "grad_norm": 0.1992012858390808, + "learning_rate": 0.0006, + "loss": 3.7659356594085693, + "step": 2347 + }, + { + "epoch": 32.615115771079076, + "grad_norm": 0.20124201476573944, + "learning_rate": 0.0006, + "loss": 3.722212791442871, + "step": 2348 + }, + { + "epoch": 32.62909567496723, + "grad_norm": 0.21972708404064178, + "learning_rate": 0.0006, + "loss": 3.751830577850342, + "step": 2349 + }, + { + "epoch": 32.643075578855395, + "grad_norm": 0.20454947650432587, + "learning_rate": 0.0006, + "loss": 3.7196669578552246, + "step": 2350 + }, + { + "epoch": 32.65705548274356, + "grad_norm": 0.1783330887556076, + "learning_rate": 0.0006, + "loss": 3.721461772918701, + "step": 2351 + }, + { + "epoch": 32.671035386631715, + "grad_norm": 0.2027900367975235, + "learning_rate": 0.0006, + "loss": 3.753718614578247, + "step": 2352 + }, + { + "epoch": 32.68501529051988, + "grad_norm": 0.21232381463050842, + "learning_rate": 0.0006, + "loss": 3.732736349105835, + "step": 2353 + }, + { + "epoch": 32.69899519440804, + "grad_norm": 0.2214568555355072, + "learning_rate": 0.0006, + "loss": 3.7250165939331055, + "step": 2354 + }, + { + "epoch": 32.7129750982962, + "grad_norm": 0.2626485228538513, + "learning_rate": 0.0006, + "loss": 3.72263503074646, + "step": 2355 + }, + { + "epoch": 32.72695500218436, + "grad_norm": 0.30096277594566345, + "learning_rate": 0.0006, + "loss": 3.7599854469299316, + "step": 2356 + }, + { + "epoch": 32.74093490607252, + "grad_norm": 0.3374342620372772, + "learning_rate": 0.0006, + "loss": 3.7493844032287598, + "step": 2357 + }, + { + "epoch": 32.75491480996068, + "grad_norm": 0.3051377534866333, + "learning_rate": 0.0006, + "loss": 3.7515692710876465, + "step": 2358 + }, + { + "epoch": 32.768894713848844, + "grad_norm": 0.2130587249994278, + "learning_rate": 0.0006, + "loss": 3.751307964324951, + "step": 2359 + }, + { + "epoch": 32.782874617737, + "grad_norm": 0.25198230147361755, + "learning_rate": 0.0006, + "loss": 3.7500064373016357, + "step": 2360 + }, + { + "epoch": 32.796854521625164, + "grad_norm": 0.27613863348960876, + "learning_rate": 0.0006, + "loss": 3.7257039546966553, + "step": 2361 + }, + { + "epoch": 32.81083442551333, + "grad_norm": 0.23749367892742157, + "learning_rate": 0.0006, + "loss": 3.778343439102173, + "step": 2362 + }, + { + "epoch": 32.824814329401484, + "grad_norm": 0.2063702642917633, + "learning_rate": 0.0006, + "loss": 3.7493772506713867, + "step": 2363 + }, + { + "epoch": 32.83879423328965, + "grad_norm": 0.21169374883174896, + "learning_rate": 0.0006, + "loss": 3.722567081451416, + "step": 2364 + }, + { + "epoch": 32.8527741371778, + "grad_norm": 0.23291490972042084, + "learning_rate": 0.0006, + "loss": 3.7555532455444336, + "step": 2365 + }, + { + "epoch": 32.86675404106597, + "grad_norm": 0.21486155688762665, + "learning_rate": 0.0006, + "loss": 3.7401528358459473, + "step": 2366 + }, + { + "epoch": 32.88073394495413, + "grad_norm": 0.2296247035264969, + "learning_rate": 0.0006, + "loss": 3.7867965698242188, + "step": 2367 + }, + { + "epoch": 32.89471384884229, + "grad_norm": 0.2335108071565628, + "learning_rate": 0.0006, + "loss": 3.768036365509033, + "step": 2368 + }, + { + "epoch": 32.90869375273045, + "grad_norm": 0.23921863734722137, + "learning_rate": 0.0006, + "loss": 3.725252151489258, + "step": 2369 + }, + { + "epoch": 32.92267365661861, + "grad_norm": 0.20303526520729065, + "learning_rate": 0.0006, + "loss": 3.7806248664855957, + "step": 2370 + }, + { + "epoch": 32.93665356050677, + "grad_norm": 0.19293150305747986, + "learning_rate": 0.0006, + "loss": 3.759281873703003, + "step": 2371 + }, + { + "epoch": 32.95063346439493, + "grad_norm": 0.20609107613563538, + "learning_rate": 0.0006, + "loss": 3.764190196990967, + "step": 2372 + }, + { + "epoch": 32.964613368283096, + "grad_norm": 0.2014189213514328, + "learning_rate": 0.0006, + "loss": 3.7365214824676514, + "step": 2373 + }, + { + "epoch": 32.97859327217125, + "grad_norm": 0.22045451402664185, + "learning_rate": 0.0006, + "loss": 3.7435812950134277, + "step": 2374 + }, + { + "epoch": 32.992573176059416, + "grad_norm": 0.24228639900684357, + "learning_rate": 0.0006, + "loss": 3.751309394836426, + "step": 2375 + }, + { + "epoch": 33.0, + "grad_norm": 0.2645106613636017, + "learning_rate": 0.0006, + "loss": 3.7629928588867188, + "step": 2376 + }, + { + "epoch": 33.0, + "eval_loss": 4.026789665222168, + "eval_runtime": 44.9957, + "eval_samples_per_second": 54.272, + "eval_steps_per_second": 3.4, + "step": 2376 + }, + { + "epoch": 33.01397990388816, + "grad_norm": 0.21402551233768463, + "learning_rate": 0.0006, + "loss": 3.72019100189209, + "step": 2377 + }, + { + "epoch": 33.02795980777632, + "grad_norm": 0.23886585235595703, + "learning_rate": 0.0006, + "loss": 3.687084674835205, + "step": 2378 + }, + { + "epoch": 33.04193971166448, + "grad_norm": 0.29936572909355164, + "learning_rate": 0.0006, + "loss": 3.697310447692871, + "step": 2379 + }, + { + "epoch": 33.05591961555265, + "grad_norm": 0.30007585883140564, + "learning_rate": 0.0006, + "loss": 3.6913352012634277, + "step": 2380 + }, + { + "epoch": 33.0698995194408, + "grad_norm": 0.26594656705856323, + "learning_rate": 0.0006, + "loss": 3.740802526473999, + "step": 2381 + }, + { + "epoch": 33.083879423328966, + "grad_norm": 0.2658730447292328, + "learning_rate": 0.0006, + "loss": 3.692746162414551, + "step": 2382 + }, + { + "epoch": 33.09785932721712, + "grad_norm": 0.26755523681640625, + "learning_rate": 0.0006, + "loss": 3.7534420490264893, + "step": 2383 + }, + { + "epoch": 33.111839231105286, + "grad_norm": 0.23070940375328064, + "learning_rate": 0.0006, + "loss": 3.717876672744751, + "step": 2384 + }, + { + "epoch": 33.12581913499345, + "grad_norm": 0.2476235181093216, + "learning_rate": 0.0006, + "loss": 3.7072248458862305, + "step": 2385 + }, + { + "epoch": 33.139799038881605, + "grad_norm": 0.2454477846622467, + "learning_rate": 0.0006, + "loss": 3.729762077331543, + "step": 2386 + }, + { + "epoch": 33.15377894276977, + "grad_norm": 0.24090935289859772, + "learning_rate": 0.0006, + "loss": 3.721374988555908, + "step": 2387 + }, + { + "epoch": 33.16775884665793, + "grad_norm": 0.2440263032913208, + "learning_rate": 0.0006, + "loss": 3.730433464050293, + "step": 2388 + }, + { + "epoch": 33.18173875054609, + "grad_norm": 0.21699118614196777, + "learning_rate": 0.0006, + "loss": 3.724730968475342, + "step": 2389 + }, + { + "epoch": 33.19571865443425, + "grad_norm": 0.2302001267671585, + "learning_rate": 0.0006, + "loss": 3.69376277923584, + "step": 2390 + }, + { + "epoch": 33.20969855832241, + "grad_norm": 0.24707409739494324, + "learning_rate": 0.0006, + "loss": 3.705653667449951, + "step": 2391 + }, + { + "epoch": 33.22367846221057, + "grad_norm": 0.22896641492843628, + "learning_rate": 0.0006, + "loss": 3.747000217437744, + "step": 2392 + }, + { + "epoch": 33.237658366098735, + "grad_norm": 0.2278730720281601, + "learning_rate": 0.0006, + "loss": 3.733464241027832, + "step": 2393 + }, + { + "epoch": 33.25163826998689, + "grad_norm": 0.23909862339496613, + "learning_rate": 0.0006, + "loss": 3.733661413192749, + "step": 2394 + }, + { + "epoch": 33.265618173875055, + "grad_norm": 0.2349950075149536, + "learning_rate": 0.0006, + "loss": 3.7337965965270996, + "step": 2395 + }, + { + "epoch": 33.27959807776322, + "grad_norm": 0.22655968368053436, + "learning_rate": 0.0006, + "loss": 3.70503306388855, + "step": 2396 + }, + { + "epoch": 33.293577981651374, + "grad_norm": 0.22167043387889862, + "learning_rate": 0.0006, + "loss": 3.738797903060913, + "step": 2397 + }, + { + "epoch": 33.30755788553954, + "grad_norm": 0.2278883010149002, + "learning_rate": 0.0006, + "loss": 3.712550640106201, + "step": 2398 + }, + { + "epoch": 33.3215377894277, + "grad_norm": 0.2220565229654312, + "learning_rate": 0.0006, + "loss": 3.7278006076812744, + "step": 2399 + }, + { + "epoch": 33.33551769331586, + "grad_norm": 0.21888740360736847, + "learning_rate": 0.0006, + "loss": 3.72243595123291, + "step": 2400 + }, + { + "epoch": 33.34949759720402, + "grad_norm": 0.21587581932544708, + "learning_rate": 0.0006, + "loss": 3.7177581787109375, + "step": 2401 + }, + { + "epoch": 33.36347750109218, + "grad_norm": 0.1923578530550003, + "learning_rate": 0.0006, + "loss": 3.711294651031494, + "step": 2402 + }, + { + "epoch": 33.37745740498034, + "grad_norm": 0.1994934380054474, + "learning_rate": 0.0006, + "loss": 3.762061595916748, + "step": 2403 + }, + { + "epoch": 33.391437308868504, + "grad_norm": 0.20074427127838135, + "learning_rate": 0.0006, + "loss": 3.708559036254883, + "step": 2404 + }, + { + "epoch": 33.40541721275666, + "grad_norm": 0.21349482238292694, + "learning_rate": 0.0006, + "loss": 3.7089147567749023, + "step": 2405 + }, + { + "epoch": 33.419397116644824, + "grad_norm": 0.25523608922958374, + "learning_rate": 0.0006, + "loss": 3.7241058349609375, + "step": 2406 + }, + { + "epoch": 33.43337702053299, + "grad_norm": 0.27654796838760376, + "learning_rate": 0.0006, + "loss": 3.723618984222412, + "step": 2407 + }, + { + "epoch": 33.44735692442114, + "grad_norm": 0.2651479244232178, + "learning_rate": 0.0006, + "loss": 3.7367782592773438, + "step": 2408 + }, + { + "epoch": 33.46133682830931, + "grad_norm": 0.23403556644916534, + "learning_rate": 0.0006, + "loss": 3.7198312282562256, + "step": 2409 + }, + { + "epoch": 33.47531673219746, + "grad_norm": 0.20970726013183594, + "learning_rate": 0.0006, + "loss": 3.7088186740875244, + "step": 2410 + }, + { + "epoch": 33.489296636085626, + "grad_norm": 0.18532544374465942, + "learning_rate": 0.0006, + "loss": 3.7162208557128906, + "step": 2411 + }, + { + "epoch": 33.50327653997379, + "grad_norm": 0.19590279459953308, + "learning_rate": 0.0006, + "loss": 3.766357898712158, + "step": 2412 + }, + { + "epoch": 33.517256443861946, + "grad_norm": 0.203349307179451, + "learning_rate": 0.0006, + "loss": 3.732177257537842, + "step": 2413 + }, + { + "epoch": 33.53123634775011, + "grad_norm": 0.2015952616930008, + "learning_rate": 0.0006, + "loss": 3.741609573364258, + "step": 2414 + }, + { + "epoch": 33.54521625163827, + "grad_norm": 0.20024161040782928, + "learning_rate": 0.0006, + "loss": 3.6894431114196777, + "step": 2415 + }, + { + "epoch": 33.55919615552643, + "grad_norm": 0.20932617783546448, + "learning_rate": 0.0006, + "loss": 3.721979856491089, + "step": 2416 + }, + { + "epoch": 33.57317605941459, + "grad_norm": 0.22069773077964783, + "learning_rate": 0.0006, + "loss": 3.712203025817871, + "step": 2417 + }, + { + "epoch": 33.58715596330275, + "grad_norm": 0.22341343760490417, + "learning_rate": 0.0006, + "loss": 3.7469263076782227, + "step": 2418 + }, + { + "epoch": 33.60113586719091, + "grad_norm": 0.21758507192134857, + "learning_rate": 0.0006, + "loss": 3.721778392791748, + "step": 2419 + }, + { + "epoch": 33.615115771079076, + "grad_norm": 0.20480088889598846, + "learning_rate": 0.0006, + "loss": 3.743570327758789, + "step": 2420 + }, + { + "epoch": 33.62909567496723, + "grad_norm": 0.23068399727344513, + "learning_rate": 0.0006, + "loss": 3.7203001976013184, + "step": 2421 + }, + { + "epoch": 33.643075578855395, + "grad_norm": 0.2526263892650604, + "learning_rate": 0.0006, + "loss": 3.7336440086364746, + "step": 2422 + }, + { + "epoch": 33.65705548274356, + "grad_norm": 0.218627467751503, + "learning_rate": 0.0006, + "loss": 3.730762243270874, + "step": 2423 + }, + { + "epoch": 33.671035386631715, + "grad_norm": 0.21883417665958405, + "learning_rate": 0.0006, + "loss": 3.749356508255005, + "step": 2424 + }, + { + "epoch": 33.68501529051988, + "grad_norm": 0.22885626554489136, + "learning_rate": 0.0006, + "loss": 3.7426199913024902, + "step": 2425 + }, + { + "epoch": 33.69899519440804, + "grad_norm": 0.23709580302238464, + "learning_rate": 0.0006, + "loss": 3.691652774810791, + "step": 2426 + }, + { + "epoch": 33.7129750982962, + "grad_norm": 0.2258225381374359, + "learning_rate": 0.0006, + "loss": 3.7368886470794678, + "step": 2427 + }, + { + "epoch": 33.72695500218436, + "grad_norm": 0.1993306577205658, + "learning_rate": 0.0006, + "loss": 3.722733497619629, + "step": 2428 + }, + { + "epoch": 33.74093490607252, + "grad_norm": 0.20307473838329315, + "learning_rate": 0.0006, + "loss": 3.7507500648498535, + "step": 2429 + }, + { + "epoch": 33.75491480996068, + "grad_norm": 0.20076696574687958, + "learning_rate": 0.0006, + "loss": 3.6896910667419434, + "step": 2430 + }, + { + "epoch": 33.768894713848844, + "grad_norm": 0.21118830144405365, + "learning_rate": 0.0006, + "loss": 3.7176647186279297, + "step": 2431 + }, + { + "epoch": 33.782874617737, + "grad_norm": 0.21605782210826874, + "learning_rate": 0.0006, + "loss": 3.7423641681671143, + "step": 2432 + }, + { + "epoch": 33.796854521625164, + "grad_norm": 0.22233152389526367, + "learning_rate": 0.0006, + "loss": 3.7296109199523926, + "step": 2433 + }, + { + "epoch": 33.81083442551333, + "grad_norm": 0.2253616899251938, + "learning_rate": 0.0006, + "loss": 3.7095072269439697, + "step": 2434 + }, + { + "epoch": 33.824814329401484, + "grad_norm": 0.2105807662010193, + "learning_rate": 0.0006, + "loss": 3.760921001434326, + "step": 2435 + }, + { + "epoch": 33.83879423328965, + "grad_norm": 0.20413213968276978, + "learning_rate": 0.0006, + "loss": 3.7356553077697754, + "step": 2436 + }, + { + "epoch": 33.8527741371778, + "grad_norm": 0.19781213998794556, + "learning_rate": 0.0006, + "loss": 3.726787567138672, + "step": 2437 + }, + { + "epoch": 33.86675404106597, + "grad_norm": 0.199616938829422, + "learning_rate": 0.0006, + "loss": 3.7200419902801514, + "step": 2438 + }, + { + "epoch": 33.88073394495413, + "grad_norm": 0.19702564179897308, + "learning_rate": 0.0006, + "loss": 3.714287281036377, + "step": 2439 + }, + { + "epoch": 33.89471384884229, + "grad_norm": 0.19456833600997925, + "learning_rate": 0.0006, + "loss": 3.739231586456299, + "step": 2440 + }, + { + "epoch": 33.90869375273045, + "grad_norm": 0.1890697181224823, + "learning_rate": 0.0006, + "loss": 3.7088429927825928, + "step": 2441 + }, + { + "epoch": 33.92267365661861, + "grad_norm": 0.1845911741256714, + "learning_rate": 0.0006, + "loss": 3.760782241821289, + "step": 2442 + }, + { + "epoch": 33.93665356050677, + "grad_norm": 0.19045902788639069, + "learning_rate": 0.0006, + "loss": 3.736957311630249, + "step": 2443 + }, + { + "epoch": 33.95063346439493, + "grad_norm": 0.1934187412261963, + "learning_rate": 0.0006, + "loss": 3.756351947784424, + "step": 2444 + }, + { + "epoch": 33.964613368283096, + "grad_norm": 0.19774580001831055, + "learning_rate": 0.0006, + "loss": 3.7332229614257812, + "step": 2445 + }, + { + "epoch": 33.97859327217125, + "grad_norm": 0.20653048157691956, + "learning_rate": 0.0006, + "loss": 3.7112321853637695, + "step": 2446 + }, + { + "epoch": 33.992573176059416, + "grad_norm": 0.18618541955947876, + "learning_rate": 0.0006, + "loss": 3.735710620880127, + "step": 2447 + }, + { + "epoch": 34.0, + "grad_norm": 0.22846414148807526, + "learning_rate": 0.0006, + "loss": 3.739706039428711, + "step": 2448 + }, + { + "epoch": 34.0, + "eval_loss": 4.0099663734436035, + "eval_runtime": 45.2096, + "eval_samples_per_second": 54.015, + "eval_steps_per_second": 3.384, + "step": 2448 + }, + { + "epoch": 34.01397990388816, + "grad_norm": 0.20987462997436523, + "learning_rate": 0.0006, + "loss": 3.6798832416534424, + "step": 2449 + }, + { + "epoch": 34.02795980777632, + "grad_norm": 0.2230423390865326, + "learning_rate": 0.0006, + "loss": 3.7157368659973145, + "step": 2450 + }, + { + "epoch": 34.04193971166448, + "grad_norm": 0.24115242063999176, + "learning_rate": 0.0006, + "loss": 3.696037769317627, + "step": 2451 + }, + { + "epoch": 34.05591961555265, + "grad_norm": 0.24499665200710297, + "learning_rate": 0.0006, + "loss": 3.695420742034912, + "step": 2452 + }, + { + "epoch": 34.0698995194408, + "grad_norm": 0.23336757719516754, + "learning_rate": 0.0006, + "loss": 3.7252023220062256, + "step": 2453 + }, + { + "epoch": 34.083879423328966, + "grad_norm": 0.23716159164905548, + "learning_rate": 0.0006, + "loss": 3.714542865753174, + "step": 2454 + }, + { + "epoch": 34.09785932721712, + "grad_norm": 0.2305644154548645, + "learning_rate": 0.0006, + "loss": 3.6989386081695557, + "step": 2455 + }, + { + "epoch": 34.111839231105286, + "grad_norm": 0.2281671017408371, + "learning_rate": 0.0006, + "loss": 3.6952829360961914, + "step": 2456 + }, + { + "epoch": 34.12581913499345, + "grad_norm": 0.21031132340431213, + "learning_rate": 0.0006, + "loss": 3.7337589263916016, + "step": 2457 + }, + { + "epoch": 34.139799038881605, + "grad_norm": 0.2233671098947525, + "learning_rate": 0.0006, + "loss": 3.6923675537109375, + "step": 2458 + }, + { + "epoch": 34.15377894276977, + "grad_norm": 0.22766625881195068, + "learning_rate": 0.0006, + "loss": 3.70849609375, + "step": 2459 + }, + { + "epoch": 34.16775884665793, + "grad_norm": 0.22433766722679138, + "learning_rate": 0.0006, + "loss": 3.718319892883301, + "step": 2460 + }, + { + "epoch": 34.18173875054609, + "grad_norm": 0.20621491968631744, + "learning_rate": 0.0006, + "loss": 3.6874704360961914, + "step": 2461 + }, + { + "epoch": 34.19571865443425, + "grad_norm": 0.21353304386138916, + "learning_rate": 0.0006, + "loss": 3.663358688354492, + "step": 2462 + }, + { + "epoch": 34.20969855832241, + "grad_norm": 0.20652951300144196, + "learning_rate": 0.0006, + "loss": 3.718107223510742, + "step": 2463 + }, + { + "epoch": 34.22367846221057, + "grad_norm": 0.19780176877975464, + "learning_rate": 0.0006, + "loss": 3.7255396842956543, + "step": 2464 + }, + { + "epoch": 34.237658366098735, + "grad_norm": 0.20636138319969177, + "learning_rate": 0.0006, + "loss": 3.696850538253784, + "step": 2465 + }, + { + "epoch": 34.25163826998689, + "grad_norm": 0.23691460490226746, + "learning_rate": 0.0006, + "loss": 3.687997341156006, + "step": 2466 + }, + { + "epoch": 34.265618173875055, + "grad_norm": 0.2380511611700058, + "learning_rate": 0.0006, + "loss": 3.716610908508301, + "step": 2467 + }, + { + "epoch": 34.27959807776322, + "grad_norm": 0.21508945524692535, + "learning_rate": 0.0006, + "loss": 3.6993470191955566, + "step": 2468 + }, + { + "epoch": 34.293577981651374, + "grad_norm": 0.20441125333309174, + "learning_rate": 0.0006, + "loss": 3.7194275856018066, + "step": 2469 + }, + { + "epoch": 34.30755788553954, + "grad_norm": 0.19704242050647736, + "learning_rate": 0.0006, + "loss": 3.675929546356201, + "step": 2470 + }, + { + "epoch": 34.3215377894277, + "grad_norm": 0.1918456256389618, + "learning_rate": 0.0006, + "loss": 3.7189574241638184, + "step": 2471 + }, + { + "epoch": 34.33551769331586, + "grad_norm": 0.19687092304229736, + "learning_rate": 0.0006, + "loss": 3.725809335708618, + "step": 2472 + }, + { + "epoch": 34.34949759720402, + "grad_norm": 0.2048639953136444, + "learning_rate": 0.0006, + "loss": 3.7461748123168945, + "step": 2473 + }, + { + "epoch": 34.36347750109218, + "grad_norm": 0.21086618304252625, + "learning_rate": 0.0006, + "loss": 3.6849746704101562, + "step": 2474 + }, + { + "epoch": 34.37745740498034, + "grad_norm": 0.2172154039144516, + "learning_rate": 0.0006, + "loss": 3.7379322052001953, + "step": 2475 + }, + { + "epoch": 34.391437308868504, + "grad_norm": 0.22725504636764526, + "learning_rate": 0.0006, + "loss": 3.7341527938842773, + "step": 2476 + }, + { + "epoch": 34.40541721275666, + "grad_norm": 0.22309242188930511, + "learning_rate": 0.0006, + "loss": 3.724946975708008, + "step": 2477 + }, + { + "epoch": 34.419397116644824, + "grad_norm": 0.25252285599708557, + "learning_rate": 0.0006, + "loss": 3.710257053375244, + "step": 2478 + }, + { + "epoch": 34.43337702053299, + "grad_norm": 0.2549746334552765, + "learning_rate": 0.0006, + "loss": 3.7105040550231934, + "step": 2479 + }, + { + "epoch": 34.44735692442114, + "grad_norm": 0.22544030845165253, + "learning_rate": 0.0006, + "loss": 3.7340707778930664, + "step": 2480 + }, + { + "epoch": 34.46133682830931, + "grad_norm": 0.22275063395500183, + "learning_rate": 0.0006, + "loss": 3.7141473293304443, + "step": 2481 + }, + { + "epoch": 34.47531673219746, + "grad_norm": 0.25373485684394836, + "learning_rate": 0.0006, + "loss": 3.7014691829681396, + "step": 2482 + }, + { + "epoch": 34.489296636085626, + "grad_norm": 0.2573327124118805, + "learning_rate": 0.0006, + "loss": 3.682562828063965, + "step": 2483 + }, + { + "epoch": 34.50327653997379, + "grad_norm": 0.2452341616153717, + "learning_rate": 0.0006, + "loss": 3.757261276245117, + "step": 2484 + }, + { + "epoch": 34.517256443861946, + "grad_norm": 0.2477131187915802, + "learning_rate": 0.0006, + "loss": 3.7216877937316895, + "step": 2485 + }, + { + "epoch": 34.53123634775011, + "grad_norm": 0.24740098416805267, + "learning_rate": 0.0006, + "loss": 3.705704927444458, + "step": 2486 + }, + { + "epoch": 34.54521625163827, + "grad_norm": 0.27306219935417175, + "learning_rate": 0.0006, + "loss": 3.7014641761779785, + "step": 2487 + }, + { + "epoch": 34.55919615552643, + "grad_norm": 0.26376286149024963, + "learning_rate": 0.0006, + "loss": 3.686056137084961, + "step": 2488 + }, + { + "epoch": 34.57317605941459, + "grad_norm": 0.2796899378299713, + "learning_rate": 0.0006, + "loss": 3.7171077728271484, + "step": 2489 + }, + { + "epoch": 34.58715596330275, + "grad_norm": 0.24279902875423431, + "learning_rate": 0.0006, + "loss": 3.7448348999023438, + "step": 2490 + }, + { + "epoch": 34.60113586719091, + "grad_norm": 0.22772833704948425, + "learning_rate": 0.0006, + "loss": 3.7028117179870605, + "step": 2491 + }, + { + "epoch": 34.615115771079076, + "grad_norm": 0.22157910466194153, + "learning_rate": 0.0006, + "loss": 3.750023603439331, + "step": 2492 + }, + { + "epoch": 34.62909567496723, + "grad_norm": 0.24342703819274902, + "learning_rate": 0.0006, + "loss": 3.7181010246276855, + "step": 2493 + }, + { + "epoch": 34.643075578855395, + "grad_norm": 0.2554340362548828, + "learning_rate": 0.0006, + "loss": 3.6994080543518066, + "step": 2494 + }, + { + "epoch": 34.65705548274356, + "grad_norm": 0.21296930313110352, + "learning_rate": 0.0006, + "loss": 3.7534523010253906, + "step": 2495 + }, + { + "epoch": 34.671035386631715, + "grad_norm": 0.19117674231529236, + "learning_rate": 0.0006, + "loss": 3.7267889976501465, + "step": 2496 + }, + { + "epoch": 34.68501529051988, + "grad_norm": 0.2306399643421173, + "learning_rate": 0.0006, + "loss": 3.723212242126465, + "step": 2497 + }, + { + "epoch": 34.69899519440804, + "grad_norm": 0.23063263297080994, + "learning_rate": 0.0006, + "loss": 3.730070114135742, + "step": 2498 + }, + { + "epoch": 34.7129750982962, + "grad_norm": 0.19422881305217743, + "learning_rate": 0.0006, + "loss": 3.694833755493164, + "step": 2499 + }, + { + "epoch": 34.72695500218436, + "grad_norm": 0.20246362686157227, + "learning_rate": 0.0006, + "loss": 3.71140718460083, + "step": 2500 + }, + { + "epoch": 34.74093490607252, + "grad_norm": 0.1942741572856903, + "learning_rate": 0.0006, + "loss": 3.7530534267425537, + "step": 2501 + }, + { + "epoch": 34.75491480996068, + "grad_norm": 0.19686029851436615, + "learning_rate": 0.0006, + "loss": 3.7059555053710938, + "step": 2502 + }, + { + "epoch": 34.768894713848844, + "grad_norm": 0.20120355486869812, + "learning_rate": 0.0006, + "loss": 3.7271084785461426, + "step": 2503 + }, + { + "epoch": 34.782874617737, + "grad_norm": 0.20880399644374847, + "learning_rate": 0.0006, + "loss": 3.712137460708618, + "step": 2504 + }, + { + "epoch": 34.796854521625164, + "grad_norm": 0.22139988839626312, + "learning_rate": 0.0006, + "loss": 3.731245517730713, + "step": 2505 + }, + { + "epoch": 34.81083442551333, + "grad_norm": 0.22756224870681763, + "learning_rate": 0.0006, + "loss": 3.708987236022949, + "step": 2506 + }, + { + "epoch": 34.824814329401484, + "grad_norm": 0.22332409024238586, + "learning_rate": 0.0006, + "loss": 3.7365565299987793, + "step": 2507 + }, + { + "epoch": 34.83879423328965, + "grad_norm": 0.19599054753780365, + "learning_rate": 0.0006, + "loss": 3.7266454696655273, + "step": 2508 + }, + { + "epoch": 34.8527741371778, + "grad_norm": 0.19843019545078278, + "learning_rate": 0.0006, + "loss": 3.7225422859191895, + "step": 2509 + }, + { + "epoch": 34.86675404106597, + "grad_norm": 0.20147928595542908, + "learning_rate": 0.0006, + "loss": 3.7282514572143555, + "step": 2510 + }, + { + "epoch": 34.88073394495413, + "grad_norm": 0.19489876925945282, + "learning_rate": 0.0006, + "loss": 3.694852113723755, + "step": 2511 + }, + { + "epoch": 34.89471384884229, + "grad_norm": 0.20680078864097595, + "learning_rate": 0.0006, + "loss": 3.74678635597229, + "step": 2512 + }, + { + "epoch": 34.90869375273045, + "grad_norm": 0.2233233004808426, + "learning_rate": 0.0006, + "loss": 3.726475238800049, + "step": 2513 + }, + { + "epoch": 34.92267365661861, + "grad_norm": 0.20702993869781494, + "learning_rate": 0.0006, + "loss": 3.6946351528167725, + "step": 2514 + }, + { + "epoch": 34.93665356050677, + "grad_norm": 0.2081725299358368, + "learning_rate": 0.0006, + "loss": 3.7101621627807617, + "step": 2515 + }, + { + "epoch": 34.95063346439493, + "grad_norm": 0.20551837980747223, + "learning_rate": 0.0006, + "loss": 3.7060177326202393, + "step": 2516 + }, + { + "epoch": 34.964613368283096, + "grad_norm": 0.2106839418411255, + "learning_rate": 0.0006, + "loss": 3.7460474967956543, + "step": 2517 + }, + { + "epoch": 34.97859327217125, + "grad_norm": 0.18512766063213348, + "learning_rate": 0.0006, + "loss": 3.719280242919922, + "step": 2518 + }, + { + "epoch": 34.992573176059416, + "grad_norm": 0.1802142709493637, + "learning_rate": 0.0006, + "loss": 3.698255777359009, + "step": 2519 + }, + { + "epoch": 35.0, + "grad_norm": 0.2028084248304367, + "learning_rate": 0.0006, + "loss": 3.711136817932129, + "step": 2520 + }, + { + "epoch": 35.0, + "eval_loss": 4.006688117980957, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 2520 + }, + { + "epoch": 35.01397990388816, + "grad_norm": 0.1973012387752533, + "learning_rate": 0.0006, + "loss": 3.7108325958251953, + "step": 2521 + }, + { + "epoch": 35.02795980777632, + "grad_norm": 0.23763646185398102, + "learning_rate": 0.0006, + "loss": 3.675785541534424, + "step": 2522 + }, + { + "epoch": 35.04193971166448, + "grad_norm": 0.24403199553489685, + "learning_rate": 0.0006, + "loss": 3.7034249305725098, + "step": 2523 + }, + { + "epoch": 35.05591961555265, + "grad_norm": 0.19050131738185883, + "learning_rate": 0.0006, + "loss": 3.6984221935272217, + "step": 2524 + }, + { + "epoch": 35.0698995194408, + "grad_norm": 0.21389710903167725, + "learning_rate": 0.0006, + "loss": 3.6641085147857666, + "step": 2525 + }, + { + "epoch": 35.083879423328966, + "grad_norm": 0.23103152215480804, + "learning_rate": 0.0006, + "loss": 3.722912311553955, + "step": 2526 + }, + { + "epoch": 35.09785932721712, + "grad_norm": 0.2197326272726059, + "learning_rate": 0.0006, + "loss": 3.696568727493286, + "step": 2527 + }, + { + "epoch": 35.111839231105286, + "grad_norm": 0.20877327024936676, + "learning_rate": 0.0006, + "loss": 3.666700601577759, + "step": 2528 + }, + { + "epoch": 35.12581913499345, + "grad_norm": 0.20904001593589783, + "learning_rate": 0.0006, + "loss": 3.6896979808807373, + "step": 2529 + }, + { + "epoch": 35.139799038881605, + "grad_norm": 0.1947423666715622, + "learning_rate": 0.0006, + "loss": 3.6647095680236816, + "step": 2530 + }, + { + "epoch": 35.15377894276977, + "grad_norm": 0.2134019434452057, + "learning_rate": 0.0006, + "loss": 3.696993589401245, + "step": 2531 + }, + { + "epoch": 35.16775884665793, + "grad_norm": 0.2299254685640335, + "learning_rate": 0.0006, + "loss": 3.7067925930023193, + "step": 2532 + }, + { + "epoch": 35.18173875054609, + "grad_norm": 0.219585582613945, + "learning_rate": 0.0006, + "loss": 3.6680960655212402, + "step": 2533 + }, + { + "epoch": 35.19571865443425, + "grad_norm": 0.2146025449037552, + "learning_rate": 0.0006, + "loss": 3.7185046672821045, + "step": 2534 + }, + { + "epoch": 35.20969855832241, + "grad_norm": 0.22748060524463654, + "learning_rate": 0.0006, + "loss": 3.659202814102173, + "step": 2535 + }, + { + "epoch": 35.22367846221057, + "grad_norm": 0.22272273898124695, + "learning_rate": 0.0006, + "loss": 3.7002370357513428, + "step": 2536 + }, + { + "epoch": 35.237658366098735, + "grad_norm": 0.23827379941940308, + "learning_rate": 0.0006, + "loss": 3.714664936065674, + "step": 2537 + }, + { + "epoch": 35.25163826998689, + "grad_norm": 0.2328156679868698, + "learning_rate": 0.0006, + "loss": 3.665173292160034, + "step": 2538 + }, + { + "epoch": 35.265618173875055, + "grad_norm": 0.2573475241661072, + "learning_rate": 0.0006, + "loss": 3.7073206901550293, + "step": 2539 + }, + { + "epoch": 35.27959807776322, + "grad_norm": 0.2411472052335739, + "learning_rate": 0.0006, + "loss": 3.697751045227051, + "step": 2540 + }, + { + "epoch": 35.293577981651374, + "grad_norm": 0.22836148738861084, + "learning_rate": 0.0006, + "loss": 3.7219419479370117, + "step": 2541 + }, + { + "epoch": 35.30755788553954, + "grad_norm": 0.2225421667098999, + "learning_rate": 0.0006, + "loss": 3.69516658782959, + "step": 2542 + }, + { + "epoch": 35.3215377894277, + "grad_norm": 0.2180362343788147, + "learning_rate": 0.0006, + "loss": 3.714043378829956, + "step": 2543 + }, + { + "epoch": 35.33551769331586, + "grad_norm": 0.23638299107551575, + "learning_rate": 0.0006, + "loss": 3.7449421882629395, + "step": 2544 + }, + { + "epoch": 35.34949759720402, + "grad_norm": 0.21792089939117432, + "learning_rate": 0.0006, + "loss": 3.7029948234558105, + "step": 2545 + }, + { + "epoch": 35.36347750109218, + "grad_norm": 0.23266112804412842, + "learning_rate": 0.0006, + "loss": 3.683509111404419, + "step": 2546 + }, + { + "epoch": 35.37745740498034, + "grad_norm": 0.24203059077262878, + "learning_rate": 0.0006, + "loss": 3.68572998046875, + "step": 2547 + }, + { + "epoch": 35.391437308868504, + "grad_norm": 0.2543564438819885, + "learning_rate": 0.0006, + "loss": 3.6902432441711426, + "step": 2548 + }, + { + "epoch": 35.40541721275666, + "grad_norm": 0.22990189492702484, + "learning_rate": 0.0006, + "loss": 3.708810329437256, + "step": 2549 + }, + { + "epoch": 35.419397116644824, + "grad_norm": 0.2594352662563324, + "learning_rate": 0.0006, + "loss": 3.7312886714935303, + "step": 2550 + }, + { + "epoch": 35.43337702053299, + "grad_norm": 0.27525269985198975, + "learning_rate": 0.0006, + "loss": 3.6963448524475098, + "step": 2551 + }, + { + "epoch": 35.44735692442114, + "grad_norm": 0.2436525970697403, + "learning_rate": 0.0006, + "loss": 3.6733713150024414, + "step": 2552 + }, + { + "epoch": 35.46133682830931, + "grad_norm": 0.25500908493995667, + "learning_rate": 0.0006, + "loss": 3.7104358673095703, + "step": 2553 + }, + { + "epoch": 35.47531673219746, + "grad_norm": 0.23504602909088135, + "learning_rate": 0.0006, + "loss": 3.7052388191223145, + "step": 2554 + }, + { + "epoch": 35.489296636085626, + "grad_norm": 0.2277563363313675, + "learning_rate": 0.0006, + "loss": 3.708714008331299, + "step": 2555 + }, + { + "epoch": 35.50327653997379, + "grad_norm": 0.25224778056144714, + "learning_rate": 0.0006, + "loss": 3.699676990509033, + "step": 2556 + }, + { + "epoch": 35.517256443861946, + "grad_norm": 0.28308045864105225, + "learning_rate": 0.0006, + "loss": 3.7005362510681152, + "step": 2557 + }, + { + "epoch": 35.53123634775011, + "grad_norm": 0.25858840346336365, + "learning_rate": 0.0006, + "loss": 3.689999580383301, + "step": 2558 + }, + { + "epoch": 35.54521625163827, + "grad_norm": 0.23497405648231506, + "learning_rate": 0.0006, + "loss": 3.695793867111206, + "step": 2559 + }, + { + "epoch": 35.55919615552643, + "grad_norm": 0.22375957667827606, + "learning_rate": 0.0006, + "loss": 3.7011494636535645, + "step": 2560 + }, + { + "epoch": 35.57317605941459, + "grad_norm": 0.21056118607521057, + "learning_rate": 0.0006, + "loss": 3.722623586654663, + "step": 2561 + }, + { + "epoch": 35.58715596330275, + "grad_norm": 0.22504374384880066, + "learning_rate": 0.0006, + "loss": 3.7211966514587402, + "step": 2562 + }, + { + "epoch": 35.60113586719091, + "grad_norm": 0.22349773347377777, + "learning_rate": 0.0006, + "loss": 3.6901848316192627, + "step": 2563 + }, + { + "epoch": 35.615115771079076, + "grad_norm": 0.219499409198761, + "learning_rate": 0.0006, + "loss": 3.709026575088501, + "step": 2564 + }, + { + "epoch": 35.62909567496723, + "grad_norm": 0.20461080968379974, + "learning_rate": 0.0006, + "loss": 3.72456693649292, + "step": 2565 + }, + { + "epoch": 35.643075578855395, + "grad_norm": 0.2083883285522461, + "learning_rate": 0.0006, + "loss": 3.6845502853393555, + "step": 2566 + }, + { + "epoch": 35.65705548274356, + "grad_norm": 0.19694562256336212, + "learning_rate": 0.0006, + "loss": 3.668515682220459, + "step": 2567 + }, + { + "epoch": 35.671035386631715, + "grad_norm": 0.2107984870672226, + "learning_rate": 0.0006, + "loss": 3.700723648071289, + "step": 2568 + }, + { + "epoch": 35.68501529051988, + "grad_norm": 0.18878720700740814, + "learning_rate": 0.0006, + "loss": 3.689150333404541, + "step": 2569 + }, + { + "epoch": 35.69899519440804, + "grad_norm": 0.20058824121952057, + "learning_rate": 0.0006, + "loss": 3.7048301696777344, + "step": 2570 + }, + { + "epoch": 35.7129750982962, + "grad_norm": 0.2200566679239273, + "learning_rate": 0.0006, + "loss": 3.6944580078125, + "step": 2571 + }, + { + "epoch": 35.72695500218436, + "grad_norm": 0.22200417518615723, + "learning_rate": 0.0006, + "loss": 3.715193510055542, + "step": 2572 + }, + { + "epoch": 35.74093490607252, + "grad_norm": 0.21011404693126678, + "learning_rate": 0.0006, + "loss": 3.737387180328369, + "step": 2573 + }, + { + "epoch": 35.75491480996068, + "grad_norm": 0.21139226853847504, + "learning_rate": 0.0006, + "loss": 3.695596694946289, + "step": 2574 + }, + { + "epoch": 35.768894713848844, + "grad_norm": 0.2112506479024887, + "learning_rate": 0.0006, + "loss": 3.7264227867126465, + "step": 2575 + }, + { + "epoch": 35.782874617737, + "grad_norm": 0.21528391540050507, + "learning_rate": 0.0006, + "loss": 3.7089385986328125, + "step": 2576 + }, + { + "epoch": 35.796854521625164, + "grad_norm": 0.2127804309129715, + "learning_rate": 0.0006, + "loss": 3.6995301246643066, + "step": 2577 + }, + { + "epoch": 35.81083442551333, + "grad_norm": 0.19839410483837128, + "learning_rate": 0.0006, + "loss": 3.7233223915100098, + "step": 2578 + }, + { + "epoch": 35.824814329401484, + "grad_norm": 0.19098423421382904, + "learning_rate": 0.0006, + "loss": 3.7108311653137207, + "step": 2579 + }, + { + "epoch": 35.83879423328965, + "grad_norm": 0.18697232007980347, + "learning_rate": 0.0006, + "loss": 3.725001811981201, + "step": 2580 + }, + { + "epoch": 35.8527741371778, + "grad_norm": 0.21051937341690063, + "learning_rate": 0.0006, + "loss": 3.7310993671417236, + "step": 2581 + }, + { + "epoch": 35.86675404106597, + "grad_norm": 0.2239079475402832, + "learning_rate": 0.0006, + "loss": 3.739056348800659, + "step": 2582 + }, + { + "epoch": 35.88073394495413, + "grad_norm": 0.2581230700016022, + "learning_rate": 0.0006, + "loss": 3.697061061859131, + "step": 2583 + }, + { + "epoch": 35.89471384884229, + "grad_norm": 0.25388655066490173, + "learning_rate": 0.0006, + "loss": 3.7173471450805664, + "step": 2584 + }, + { + "epoch": 35.90869375273045, + "grad_norm": 0.2557796537876129, + "learning_rate": 0.0006, + "loss": 3.7121596336364746, + "step": 2585 + }, + { + "epoch": 35.92267365661861, + "grad_norm": 0.21846474707126617, + "learning_rate": 0.0006, + "loss": 3.7342100143432617, + "step": 2586 + }, + { + "epoch": 35.93665356050677, + "grad_norm": 0.19810006022453308, + "learning_rate": 0.0006, + "loss": 3.7266340255737305, + "step": 2587 + }, + { + "epoch": 35.95063346439493, + "grad_norm": 0.28599923849105835, + "learning_rate": 0.0006, + "loss": 3.711876392364502, + "step": 2588 + }, + { + "epoch": 35.964613368283096, + "grad_norm": 0.3380447030067444, + "learning_rate": 0.0006, + "loss": 3.7611794471740723, + "step": 2589 + }, + { + "epoch": 35.97859327217125, + "grad_norm": 0.2946915328502655, + "learning_rate": 0.0006, + "loss": 3.7659358978271484, + "step": 2590 + }, + { + "epoch": 35.992573176059416, + "grad_norm": 0.2310202419757843, + "learning_rate": 0.0006, + "loss": 3.7124969959259033, + "step": 2591 + }, + { + "epoch": 36.0, + "grad_norm": 0.22294320166110992, + "learning_rate": 0.0006, + "loss": 3.725590705871582, + "step": 2592 + }, + { + "epoch": 36.0, + "eval_loss": 4.015472412109375, + "eval_runtime": 44.4903, + "eval_samples_per_second": 54.888, + "eval_steps_per_second": 3.439, + "step": 2592 + }, + { + "epoch": 36.01397990388816, + "grad_norm": 0.2442479431629181, + "learning_rate": 0.0006, + "loss": 3.6670360565185547, + "step": 2593 + }, + { + "epoch": 36.02795980777632, + "grad_norm": 0.27702075242996216, + "learning_rate": 0.0006, + "loss": 3.685915946960449, + "step": 2594 + }, + { + "epoch": 36.04193971166448, + "grad_norm": 0.22300852835178375, + "learning_rate": 0.0006, + "loss": 3.6993556022644043, + "step": 2595 + }, + { + "epoch": 36.05591961555265, + "grad_norm": 0.22456000745296478, + "learning_rate": 0.0006, + "loss": 3.6937754154205322, + "step": 2596 + }, + { + "epoch": 36.0698995194408, + "grad_norm": 0.23157717287540436, + "learning_rate": 0.0006, + "loss": 3.6573898792266846, + "step": 2597 + }, + { + "epoch": 36.083879423328966, + "grad_norm": 0.23002618551254272, + "learning_rate": 0.0006, + "loss": 3.6565046310424805, + "step": 2598 + }, + { + "epoch": 36.09785932721712, + "grad_norm": 0.223054900765419, + "learning_rate": 0.0006, + "loss": 3.6964457035064697, + "step": 2599 + }, + { + "epoch": 36.111839231105286, + "grad_norm": 0.21883328258991241, + "learning_rate": 0.0006, + "loss": 3.674757480621338, + "step": 2600 + }, + { + "epoch": 36.12581913499345, + "grad_norm": 0.21729037165641785, + "learning_rate": 0.0006, + "loss": 3.684323310852051, + "step": 2601 + }, + { + "epoch": 36.139799038881605, + "grad_norm": 0.21299415826797485, + "learning_rate": 0.0006, + "loss": 3.6554017066955566, + "step": 2602 + }, + { + "epoch": 36.15377894276977, + "grad_norm": 0.22723016142845154, + "learning_rate": 0.0006, + "loss": 3.666767120361328, + "step": 2603 + }, + { + "epoch": 36.16775884665793, + "grad_norm": 0.23663052916526794, + "learning_rate": 0.0006, + "loss": 3.692861557006836, + "step": 2604 + }, + { + "epoch": 36.18173875054609, + "grad_norm": 0.23544131219387054, + "learning_rate": 0.0006, + "loss": 3.6648998260498047, + "step": 2605 + }, + { + "epoch": 36.19571865443425, + "grad_norm": 0.24303849041461945, + "learning_rate": 0.0006, + "loss": 3.66096568107605, + "step": 2606 + }, + { + "epoch": 36.20969855832241, + "grad_norm": 0.23385047912597656, + "learning_rate": 0.0006, + "loss": 3.6636829376220703, + "step": 2607 + }, + { + "epoch": 36.22367846221057, + "grad_norm": 0.21988974511623383, + "learning_rate": 0.0006, + "loss": 3.685072660446167, + "step": 2608 + }, + { + "epoch": 36.237658366098735, + "grad_norm": 0.2365395724773407, + "learning_rate": 0.0006, + "loss": 3.7292234897613525, + "step": 2609 + }, + { + "epoch": 36.25163826998689, + "grad_norm": 0.23791152238845825, + "learning_rate": 0.0006, + "loss": 3.6870808601379395, + "step": 2610 + }, + { + "epoch": 36.265618173875055, + "grad_norm": 0.22954145073890686, + "learning_rate": 0.0006, + "loss": 3.705406904220581, + "step": 2611 + }, + { + "epoch": 36.27959807776322, + "grad_norm": 0.22748000919818878, + "learning_rate": 0.0006, + "loss": 3.680781841278076, + "step": 2612 + }, + { + "epoch": 36.293577981651374, + "grad_norm": 0.21827450394630432, + "learning_rate": 0.0006, + "loss": 3.6794490814208984, + "step": 2613 + }, + { + "epoch": 36.30755788553954, + "grad_norm": 0.2406153380870819, + "learning_rate": 0.0006, + "loss": 3.690225124359131, + "step": 2614 + }, + { + "epoch": 36.3215377894277, + "grad_norm": 0.2406231164932251, + "learning_rate": 0.0006, + "loss": 3.665867805480957, + "step": 2615 + }, + { + "epoch": 36.33551769331586, + "grad_norm": 0.20494551956653595, + "learning_rate": 0.0006, + "loss": 3.701937198638916, + "step": 2616 + }, + { + "epoch": 36.34949759720402, + "grad_norm": 0.1995103359222412, + "learning_rate": 0.0006, + "loss": 3.702033758163452, + "step": 2617 + }, + { + "epoch": 36.36347750109218, + "grad_norm": 0.1902446299791336, + "learning_rate": 0.0006, + "loss": 3.6809959411621094, + "step": 2618 + }, + { + "epoch": 36.37745740498034, + "grad_norm": 0.1810801923274994, + "learning_rate": 0.0006, + "loss": 3.689852714538574, + "step": 2619 + }, + { + "epoch": 36.391437308868504, + "grad_norm": 0.1882476955652237, + "learning_rate": 0.0006, + "loss": 3.710911273956299, + "step": 2620 + }, + { + "epoch": 36.40541721275666, + "grad_norm": 0.1912514567375183, + "learning_rate": 0.0006, + "loss": 3.7054009437561035, + "step": 2621 + }, + { + "epoch": 36.419397116644824, + "grad_norm": 0.19080901145935059, + "learning_rate": 0.0006, + "loss": 3.681145191192627, + "step": 2622 + }, + { + "epoch": 36.43337702053299, + "grad_norm": 0.193472221493721, + "learning_rate": 0.0006, + "loss": 3.661360740661621, + "step": 2623 + }, + { + "epoch": 36.44735692442114, + "grad_norm": 0.2034357339143753, + "learning_rate": 0.0006, + "loss": 3.706930160522461, + "step": 2624 + }, + { + "epoch": 36.46133682830931, + "grad_norm": 0.19924600422382355, + "learning_rate": 0.0006, + "loss": 3.6903364658355713, + "step": 2625 + }, + { + "epoch": 36.47531673219746, + "grad_norm": 0.20556052029132843, + "learning_rate": 0.0006, + "loss": 3.6974234580993652, + "step": 2626 + }, + { + "epoch": 36.489296636085626, + "grad_norm": 0.19628804922103882, + "learning_rate": 0.0006, + "loss": 3.6947717666625977, + "step": 2627 + }, + { + "epoch": 36.50327653997379, + "grad_norm": 0.18071836233139038, + "learning_rate": 0.0006, + "loss": 3.717582941055298, + "step": 2628 + }, + { + "epoch": 36.517256443861946, + "grad_norm": 0.20531553030014038, + "learning_rate": 0.0006, + "loss": 3.680610179901123, + "step": 2629 + }, + { + "epoch": 36.53123634775011, + "grad_norm": 0.23789429664611816, + "learning_rate": 0.0006, + "loss": 3.711493968963623, + "step": 2630 + }, + { + "epoch": 36.54521625163827, + "grad_norm": 0.23027348518371582, + "learning_rate": 0.0006, + "loss": 3.6827993392944336, + "step": 2631 + }, + { + "epoch": 36.55919615552643, + "grad_norm": 0.21941570937633514, + "learning_rate": 0.0006, + "loss": 3.682286262512207, + "step": 2632 + }, + { + "epoch": 36.57317605941459, + "grad_norm": 0.21213553845882416, + "learning_rate": 0.0006, + "loss": 3.6828765869140625, + "step": 2633 + }, + { + "epoch": 36.58715596330275, + "grad_norm": 0.21929772198200226, + "learning_rate": 0.0006, + "loss": 3.697030544281006, + "step": 2634 + }, + { + "epoch": 36.60113586719091, + "grad_norm": 0.2101750522851944, + "learning_rate": 0.0006, + "loss": 3.723201274871826, + "step": 2635 + }, + { + "epoch": 36.615115771079076, + "grad_norm": 0.19014132022857666, + "learning_rate": 0.0006, + "loss": 3.6989338397979736, + "step": 2636 + }, + { + "epoch": 36.62909567496723, + "grad_norm": 0.21566815674304962, + "learning_rate": 0.0006, + "loss": 3.6968226432800293, + "step": 2637 + }, + { + "epoch": 36.643075578855395, + "grad_norm": 0.20500224828720093, + "learning_rate": 0.0006, + "loss": 3.689640522003174, + "step": 2638 + }, + { + "epoch": 36.65705548274356, + "grad_norm": 0.210358127951622, + "learning_rate": 0.0006, + "loss": 3.6996328830718994, + "step": 2639 + }, + { + "epoch": 36.671035386631715, + "grad_norm": 0.2061213105916977, + "learning_rate": 0.0006, + "loss": 3.7019221782684326, + "step": 2640 + }, + { + "epoch": 36.68501529051988, + "grad_norm": 0.21494871377944946, + "learning_rate": 0.0006, + "loss": 3.6634578704833984, + "step": 2641 + }, + { + "epoch": 36.69899519440804, + "grad_norm": 0.19586549699306488, + "learning_rate": 0.0006, + "loss": 3.708131790161133, + "step": 2642 + }, + { + "epoch": 36.7129750982962, + "grad_norm": 0.22805732488632202, + "learning_rate": 0.0006, + "loss": 3.6977362632751465, + "step": 2643 + }, + { + "epoch": 36.72695500218436, + "grad_norm": 0.28397148847579956, + "learning_rate": 0.0006, + "loss": 3.6847963333129883, + "step": 2644 + }, + { + "epoch": 36.74093490607252, + "grad_norm": 0.28333187103271484, + "learning_rate": 0.0006, + "loss": 3.734257459640503, + "step": 2645 + }, + { + "epoch": 36.75491480996068, + "grad_norm": 0.22314953804016113, + "learning_rate": 0.0006, + "loss": 3.6871445178985596, + "step": 2646 + }, + { + "epoch": 36.768894713848844, + "grad_norm": 0.20580267906188965, + "learning_rate": 0.0006, + "loss": 3.692736864089966, + "step": 2647 + }, + { + "epoch": 36.782874617737, + "grad_norm": 0.22695036232471466, + "learning_rate": 0.0006, + "loss": 3.697096824645996, + "step": 2648 + }, + { + "epoch": 36.796854521625164, + "grad_norm": 0.25916165113449097, + "learning_rate": 0.0006, + "loss": 3.7099573612213135, + "step": 2649 + }, + { + "epoch": 36.81083442551333, + "grad_norm": 0.26024341583251953, + "learning_rate": 0.0006, + "loss": 3.7161359786987305, + "step": 2650 + }, + { + "epoch": 36.824814329401484, + "grad_norm": 0.2340802699327469, + "learning_rate": 0.0006, + "loss": 3.708864688873291, + "step": 2651 + }, + { + "epoch": 36.83879423328965, + "grad_norm": 0.23312288522720337, + "learning_rate": 0.0006, + "loss": 3.7351365089416504, + "step": 2652 + }, + { + "epoch": 36.8527741371778, + "grad_norm": 0.22953253984451294, + "learning_rate": 0.0006, + "loss": 3.735302209854126, + "step": 2653 + }, + { + "epoch": 36.86675404106597, + "grad_norm": 0.21928828954696655, + "learning_rate": 0.0006, + "loss": 3.72445011138916, + "step": 2654 + }, + { + "epoch": 36.88073394495413, + "grad_norm": 0.22865602374076843, + "learning_rate": 0.0006, + "loss": 3.714867115020752, + "step": 2655 + }, + { + "epoch": 36.89471384884229, + "grad_norm": 0.23255643248558044, + "learning_rate": 0.0006, + "loss": 3.695101261138916, + "step": 2656 + }, + { + "epoch": 36.90869375273045, + "grad_norm": 0.2491452544927597, + "learning_rate": 0.0006, + "loss": 3.70692777633667, + "step": 2657 + }, + { + "epoch": 36.92267365661861, + "grad_norm": 0.27367597818374634, + "learning_rate": 0.0006, + "loss": 3.6906654834747314, + "step": 2658 + }, + { + "epoch": 36.93665356050677, + "grad_norm": 0.26728564500808716, + "learning_rate": 0.0006, + "loss": 3.7092056274414062, + "step": 2659 + }, + { + "epoch": 36.95063346439493, + "grad_norm": 0.207070454955101, + "learning_rate": 0.0006, + "loss": 3.7152137756347656, + "step": 2660 + }, + { + "epoch": 36.964613368283096, + "grad_norm": 0.21671561896800995, + "learning_rate": 0.0006, + "loss": 3.7130112648010254, + "step": 2661 + }, + { + "epoch": 36.97859327217125, + "grad_norm": 0.2140914648771286, + "learning_rate": 0.0006, + "loss": 3.7286999225616455, + "step": 2662 + }, + { + "epoch": 36.992573176059416, + "grad_norm": 0.21324342489242554, + "learning_rate": 0.0006, + "loss": 3.6828715801239014, + "step": 2663 + }, + { + "epoch": 37.0, + "grad_norm": 0.22366146743297577, + "learning_rate": 0.0006, + "loss": 3.69199800491333, + "step": 2664 + }, + { + "epoch": 37.0, + "eval_loss": 4.011842727661133, + "eval_runtime": 44.7825, + "eval_samples_per_second": 54.53, + "eval_steps_per_second": 3.417, + "step": 2664 + }, + { + "epoch": 37.01397990388816, + "grad_norm": 0.22093228995800018, + "learning_rate": 0.0006, + "loss": 3.6940979957580566, + "step": 2665 + }, + { + "epoch": 37.02795980777632, + "grad_norm": 0.20821493864059448, + "learning_rate": 0.0006, + "loss": 3.670813798904419, + "step": 2666 + }, + { + "epoch": 37.04193971166448, + "grad_norm": 0.22330114245414734, + "learning_rate": 0.0006, + "loss": 3.6392664909362793, + "step": 2667 + }, + { + "epoch": 37.05591961555265, + "grad_norm": 0.2224634289741516, + "learning_rate": 0.0006, + "loss": 3.660856246948242, + "step": 2668 + }, + { + "epoch": 37.0698995194408, + "grad_norm": 0.2255052626132965, + "learning_rate": 0.0006, + "loss": 3.6393589973449707, + "step": 2669 + }, + { + "epoch": 37.083879423328966, + "grad_norm": 0.23462942242622375, + "learning_rate": 0.0006, + "loss": 3.684429168701172, + "step": 2670 + }, + { + "epoch": 37.09785932721712, + "grad_norm": 0.23743386566638947, + "learning_rate": 0.0006, + "loss": 3.67622709274292, + "step": 2671 + }, + { + "epoch": 37.111839231105286, + "grad_norm": 0.2276267409324646, + "learning_rate": 0.0006, + "loss": 3.6487984657287598, + "step": 2672 + }, + { + "epoch": 37.12581913499345, + "grad_norm": 0.24448423087596893, + "learning_rate": 0.0006, + "loss": 3.67645525932312, + "step": 2673 + }, + { + "epoch": 37.139799038881605, + "grad_norm": 0.2428973764181137, + "learning_rate": 0.0006, + "loss": 3.681497097015381, + "step": 2674 + }, + { + "epoch": 37.15377894276977, + "grad_norm": 0.21918512880802155, + "learning_rate": 0.0006, + "loss": 3.67134428024292, + "step": 2675 + }, + { + "epoch": 37.16775884665793, + "grad_norm": 0.2103680670261383, + "learning_rate": 0.0006, + "loss": 3.6508708000183105, + "step": 2676 + }, + { + "epoch": 37.18173875054609, + "grad_norm": 0.20674929022789001, + "learning_rate": 0.0006, + "loss": 3.6904029846191406, + "step": 2677 + }, + { + "epoch": 37.19571865443425, + "grad_norm": 0.21867282688617706, + "learning_rate": 0.0006, + "loss": 3.697535514831543, + "step": 2678 + }, + { + "epoch": 37.20969855832241, + "grad_norm": 0.22919587790966034, + "learning_rate": 0.0006, + "loss": 3.675565004348755, + "step": 2679 + }, + { + "epoch": 37.22367846221057, + "grad_norm": 0.22255578637123108, + "learning_rate": 0.0006, + "loss": 3.6830129623413086, + "step": 2680 + }, + { + "epoch": 37.237658366098735, + "grad_norm": 0.22460198402404785, + "learning_rate": 0.0006, + "loss": 3.6872951984405518, + "step": 2681 + }, + { + "epoch": 37.25163826998689, + "grad_norm": 0.23677165806293488, + "learning_rate": 0.0006, + "loss": 3.6779165267944336, + "step": 2682 + }, + { + "epoch": 37.265618173875055, + "grad_norm": 0.23231394588947296, + "learning_rate": 0.0006, + "loss": 3.6831178665161133, + "step": 2683 + }, + { + "epoch": 37.27959807776322, + "grad_norm": 0.22131343185901642, + "learning_rate": 0.0006, + "loss": 3.664295196533203, + "step": 2684 + }, + { + "epoch": 37.293577981651374, + "grad_norm": 0.23424340784549713, + "learning_rate": 0.0006, + "loss": 3.696678638458252, + "step": 2685 + }, + { + "epoch": 37.30755788553954, + "grad_norm": 0.22695423662662506, + "learning_rate": 0.0006, + "loss": 3.6697473526000977, + "step": 2686 + }, + { + "epoch": 37.3215377894277, + "grad_norm": 0.2165997475385666, + "learning_rate": 0.0006, + "loss": 3.6801891326904297, + "step": 2687 + }, + { + "epoch": 37.33551769331586, + "grad_norm": 0.2241077572107315, + "learning_rate": 0.0006, + "loss": 3.6957011222839355, + "step": 2688 + }, + { + "epoch": 37.34949759720402, + "grad_norm": 0.21191732585430145, + "learning_rate": 0.0006, + "loss": 3.6812620162963867, + "step": 2689 + }, + { + "epoch": 37.36347750109218, + "grad_norm": 0.1827201396226883, + "learning_rate": 0.0006, + "loss": 3.6797738075256348, + "step": 2690 + }, + { + "epoch": 37.37745740498034, + "grad_norm": 0.20793627202510834, + "learning_rate": 0.0006, + "loss": 3.672819137573242, + "step": 2691 + }, + { + "epoch": 37.391437308868504, + "grad_norm": 0.19737116992473602, + "learning_rate": 0.0006, + "loss": 3.667839527130127, + "step": 2692 + }, + { + "epoch": 37.40541721275666, + "grad_norm": 0.18670497834682465, + "learning_rate": 0.0006, + "loss": 3.651561737060547, + "step": 2693 + }, + { + "epoch": 37.419397116644824, + "grad_norm": 0.21385592222213745, + "learning_rate": 0.0006, + "loss": 3.717456340789795, + "step": 2694 + }, + { + "epoch": 37.43337702053299, + "grad_norm": 0.20590044558048248, + "learning_rate": 0.0006, + "loss": 3.6950271129608154, + "step": 2695 + }, + { + "epoch": 37.44735692442114, + "grad_norm": 0.1992103010416031, + "learning_rate": 0.0006, + "loss": 3.687854290008545, + "step": 2696 + }, + { + "epoch": 37.46133682830931, + "grad_norm": 0.2004154473543167, + "learning_rate": 0.0006, + "loss": 3.695838451385498, + "step": 2697 + }, + { + "epoch": 37.47531673219746, + "grad_norm": 0.2019810527563095, + "learning_rate": 0.0006, + "loss": 3.690431594848633, + "step": 2698 + }, + { + "epoch": 37.489296636085626, + "grad_norm": 0.2192547768354416, + "learning_rate": 0.0006, + "loss": 3.6743836402893066, + "step": 2699 + }, + { + "epoch": 37.50327653997379, + "grad_norm": 0.2568076550960541, + "learning_rate": 0.0006, + "loss": 3.6857337951660156, + "step": 2700 + }, + { + "epoch": 37.517256443861946, + "grad_norm": 0.20050311088562012, + "learning_rate": 0.0006, + "loss": 3.6811180114746094, + "step": 2701 + }, + { + "epoch": 37.53123634775011, + "grad_norm": 0.21008558571338654, + "learning_rate": 0.0006, + "loss": 3.700563907623291, + "step": 2702 + }, + { + "epoch": 37.54521625163827, + "grad_norm": 0.2393747717142105, + "learning_rate": 0.0006, + "loss": 3.679438591003418, + "step": 2703 + }, + { + "epoch": 37.55919615552643, + "grad_norm": 0.2531895041465759, + "learning_rate": 0.0006, + "loss": 3.682903289794922, + "step": 2704 + }, + { + "epoch": 37.57317605941459, + "grad_norm": 0.2372656762599945, + "learning_rate": 0.0006, + "loss": 3.7128796577453613, + "step": 2705 + }, + { + "epoch": 37.58715596330275, + "grad_norm": 0.20020034909248352, + "learning_rate": 0.0006, + "loss": 3.701916217803955, + "step": 2706 + }, + { + "epoch": 37.60113586719091, + "grad_norm": 0.20250852406024933, + "learning_rate": 0.0006, + "loss": 3.6761491298675537, + "step": 2707 + }, + { + "epoch": 37.615115771079076, + "grad_norm": 0.19259589910507202, + "learning_rate": 0.0006, + "loss": 3.715104579925537, + "step": 2708 + }, + { + "epoch": 37.62909567496723, + "grad_norm": 0.19649392366409302, + "learning_rate": 0.0006, + "loss": 3.687556266784668, + "step": 2709 + }, + { + "epoch": 37.643075578855395, + "grad_norm": 0.1909446269273758, + "learning_rate": 0.0006, + "loss": 3.684046745300293, + "step": 2710 + }, + { + "epoch": 37.65705548274356, + "grad_norm": 0.19589872658252716, + "learning_rate": 0.0006, + "loss": 3.707886219024658, + "step": 2711 + }, + { + "epoch": 37.671035386631715, + "grad_norm": 0.19472210109233856, + "learning_rate": 0.0006, + "loss": 3.6837692260742188, + "step": 2712 + }, + { + "epoch": 37.68501529051988, + "grad_norm": 0.22622711956501007, + "learning_rate": 0.0006, + "loss": 3.703619956970215, + "step": 2713 + }, + { + "epoch": 37.69899519440804, + "grad_norm": 0.24314729869365692, + "learning_rate": 0.0006, + "loss": 3.7345223426818848, + "step": 2714 + }, + { + "epoch": 37.7129750982962, + "grad_norm": 0.23934306204319, + "learning_rate": 0.0006, + "loss": 3.687809705734253, + "step": 2715 + }, + { + "epoch": 37.72695500218436, + "grad_norm": 0.24838587641716003, + "learning_rate": 0.0006, + "loss": 3.708613872528076, + "step": 2716 + }, + { + "epoch": 37.74093490607252, + "grad_norm": 0.23191452026367188, + "learning_rate": 0.0006, + "loss": 3.7090163230895996, + "step": 2717 + }, + { + "epoch": 37.75491480996068, + "grad_norm": 0.24574638903141022, + "learning_rate": 0.0006, + "loss": 3.68489146232605, + "step": 2718 + }, + { + "epoch": 37.768894713848844, + "grad_norm": 0.2706749439239502, + "learning_rate": 0.0006, + "loss": 3.687061309814453, + "step": 2719 + }, + { + "epoch": 37.782874617737, + "grad_norm": 0.25955191254615784, + "learning_rate": 0.0006, + "loss": 3.694173812866211, + "step": 2720 + }, + { + "epoch": 37.796854521625164, + "grad_norm": 0.22040610015392303, + "learning_rate": 0.0006, + "loss": 3.701871871948242, + "step": 2721 + }, + { + "epoch": 37.81083442551333, + "grad_norm": 0.22328512370586395, + "learning_rate": 0.0006, + "loss": 3.7082555294036865, + "step": 2722 + }, + { + "epoch": 37.824814329401484, + "grad_norm": 0.2290581911802292, + "learning_rate": 0.0006, + "loss": 3.7023987770080566, + "step": 2723 + }, + { + "epoch": 37.83879423328965, + "grad_norm": 0.23129472136497498, + "learning_rate": 0.0006, + "loss": 3.7101752758026123, + "step": 2724 + }, + { + "epoch": 37.8527741371778, + "grad_norm": 0.21203753352165222, + "learning_rate": 0.0006, + "loss": 3.712129592895508, + "step": 2725 + }, + { + "epoch": 37.86675404106597, + "grad_norm": 0.21938200294971466, + "learning_rate": 0.0006, + "loss": 3.7086095809936523, + "step": 2726 + }, + { + "epoch": 37.88073394495413, + "grad_norm": 0.2203572541475296, + "learning_rate": 0.0006, + "loss": 3.6789026260375977, + "step": 2727 + }, + { + "epoch": 37.89471384884229, + "grad_norm": 0.18146046996116638, + "learning_rate": 0.0006, + "loss": 3.666893243789673, + "step": 2728 + }, + { + "epoch": 37.90869375273045, + "grad_norm": 0.1879623532295227, + "learning_rate": 0.0006, + "loss": 3.69246768951416, + "step": 2729 + }, + { + "epoch": 37.92267365661861, + "grad_norm": 0.18311670422554016, + "learning_rate": 0.0006, + "loss": 3.682036876678467, + "step": 2730 + }, + { + "epoch": 37.93665356050677, + "grad_norm": 0.1898486614227295, + "learning_rate": 0.0006, + "loss": 3.6683125495910645, + "step": 2731 + }, + { + "epoch": 37.95063346439493, + "grad_norm": 0.1858556717634201, + "learning_rate": 0.0006, + "loss": 3.6879611015319824, + "step": 2732 + }, + { + "epoch": 37.964613368283096, + "grad_norm": 0.19914504885673523, + "learning_rate": 0.0006, + "loss": 3.690250873565674, + "step": 2733 + }, + { + "epoch": 37.97859327217125, + "grad_norm": 0.20406974852085114, + "learning_rate": 0.0006, + "loss": 3.6812171936035156, + "step": 2734 + }, + { + "epoch": 37.992573176059416, + "grad_norm": 0.2003912478685379, + "learning_rate": 0.0006, + "loss": 3.6852147579193115, + "step": 2735 + }, + { + "epoch": 38.0, + "grad_norm": 0.22644472122192383, + "learning_rate": 0.0006, + "loss": 3.645207405090332, + "step": 2736 + }, + { + "epoch": 38.0, + "eval_loss": 3.995000123977661, + "eval_runtime": 45.1644, + "eval_samples_per_second": 54.069, + "eval_steps_per_second": 3.388, + "step": 2736 + }, + { + "epoch": 38.01397990388816, + "grad_norm": 0.1989814043045044, + "learning_rate": 0.0006, + "loss": 3.6511387825012207, + "step": 2737 + }, + { + "epoch": 38.02795980777632, + "grad_norm": 0.203324094414711, + "learning_rate": 0.0006, + "loss": 3.6513094902038574, + "step": 2738 + }, + { + "epoch": 38.04193971166448, + "grad_norm": 0.21504290401935577, + "learning_rate": 0.0006, + "loss": 3.647711992263794, + "step": 2739 + }, + { + "epoch": 38.05591961555265, + "grad_norm": 0.23464815318584442, + "learning_rate": 0.0006, + "loss": 3.6418747901916504, + "step": 2740 + }, + { + "epoch": 38.0698995194408, + "grad_norm": 0.242184117436409, + "learning_rate": 0.0006, + "loss": 3.6741859912872314, + "step": 2741 + }, + { + "epoch": 38.083879423328966, + "grad_norm": 0.23488445580005646, + "learning_rate": 0.0006, + "loss": 3.6710941791534424, + "step": 2742 + }, + { + "epoch": 38.09785932721712, + "grad_norm": 0.20800170302391052, + "learning_rate": 0.0006, + "loss": 3.660001754760742, + "step": 2743 + }, + { + "epoch": 38.111839231105286, + "grad_norm": 0.19505052268505096, + "learning_rate": 0.0006, + "loss": 3.684129238128662, + "step": 2744 + }, + { + "epoch": 38.12581913499345, + "grad_norm": 0.2185833901166916, + "learning_rate": 0.0006, + "loss": 3.656033515930176, + "step": 2745 + }, + { + "epoch": 38.139799038881605, + "grad_norm": 0.21850253641605377, + "learning_rate": 0.0006, + "loss": 3.6818184852600098, + "step": 2746 + }, + { + "epoch": 38.15377894276977, + "grad_norm": 0.2109488695859909, + "learning_rate": 0.0006, + "loss": 3.6485435962677, + "step": 2747 + }, + { + "epoch": 38.16775884665793, + "grad_norm": 0.21059907972812653, + "learning_rate": 0.0006, + "loss": 3.6734395027160645, + "step": 2748 + }, + { + "epoch": 38.18173875054609, + "grad_norm": 0.20741555094718933, + "learning_rate": 0.0006, + "loss": 3.6672463417053223, + "step": 2749 + }, + { + "epoch": 38.19571865443425, + "grad_norm": 0.2130175530910492, + "learning_rate": 0.0006, + "loss": 3.692840576171875, + "step": 2750 + }, + { + "epoch": 38.20969855832241, + "grad_norm": 0.1899138242006302, + "learning_rate": 0.0006, + "loss": 3.675316333770752, + "step": 2751 + }, + { + "epoch": 38.22367846221057, + "grad_norm": 0.218918576836586, + "learning_rate": 0.0006, + "loss": 3.634105920791626, + "step": 2752 + }, + { + "epoch": 38.237658366098735, + "grad_norm": 0.23649370670318604, + "learning_rate": 0.0006, + "loss": 3.6526122093200684, + "step": 2753 + }, + { + "epoch": 38.25163826998689, + "grad_norm": 0.22011931240558624, + "learning_rate": 0.0006, + "loss": 3.6859593391418457, + "step": 2754 + }, + { + "epoch": 38.265618173875055, + "grad_norm": 0.2143620252609253, + "learning_rate": 0.0006, + "loss": 3.656838893890381, + "step": 2755 + }, + { + "epoch": 38.27959807776322, + "grad_norm": 0.24068567156791687, + "learning_rate": 0.0006, + "loss": 3.67006254196167, + "step": 2756 + }, + { + "epoch": 38.293577981651374, + "grad_norm": 0.25773152709007263, + "learning_rate": 0.0006, + "loss": 3.6648950576782227, + "step": 2757 + }, + { + "epoch": 38.30755788553954, + "grad_norm": 0.24213455617427826, + "learning_rate": 0.0006, + "loss": 3.6918864250183105, + "step": 2758 + }, + { + "epoch": 38.3215377894277, + "grad_norm": 0.22463668882846832, + "learning_rate": 0.0006, + "loss": 3.6662540435791016, + "step": 2759 + }, + { + "epoch": 38.33551769331586, + "grad_norm": 0.22541455924510956, + "learning_rate": 0.0006, + "loss": 3.6563215255737305, + "step": 2760 + }, + { + "epoch": 38.34949759720402, + "grad_norm": 0.21833783388137817, + "learning_rate": 0.0006, + "loss": 3.650446891784668, + "step": 2761 + }, + { + "epoch": 38.36347750109218, + "grad_norm": 0.22799745202064514, + "learning_rate": 0.0006, + "loss": 3.7007250785827637, + "step": 2762 + }, + { + "epoch": 38.37745740498034, + "grad_norm": 0.23739562928676605, + "learning_rate": 0.0006, + "loss": 3.667130708694458, + "step": 2763 + }, + { + "epoch": 38.391437308868504, + "grad_norm": 0.23744846880435944, + "learning_rate": 0.0006, + "loss": 3.678760528564453, + "step": 2764 + }, + { + "epoch": 38.40541721275666, + "grad_norm": 0.2677105963230133, + "learning_rate": 0.0006, + "loss": 3.6829030513763428, + "step": 2765 + }, + { + "epoch": 38.419397116644824, + "grad_norm": 0.24490566551685333, + "learning_rate": 0.0006, + "loss": 3.707911491394043, + "step": 2766 + }, + { + "epoch": 38.43337702053299, + "grad_norm": 0.23477254807949066, + "learning_rate": 0.0006, + "loss": 3.680157423019409, + "step": 2767 + }, + { + "epoch": 38.44735692442114, + "grad_norm": 0.26611173152923584, + "learning_rate": 0.0006, + "loss": 3.660834550857544, + "step": 2768 + }, + { + "epoch": 38.46133682830931, + "grad_norm": 0.24505069851875305, + "learning_rate": 0.0006, + "loss": 3.696178436279297, + "step": 2769 + }, + { + "epoch": 38.47531673219746, + "grad_norm": 0.22933335602283478, + "learning_rate": 0.0006, + "loss": 3.6506235599517822, + "step": 2770 + }, + { + "epoch": 38.489296636085626, + "grad_norm": 0.23662401735782623, + "learning_rate": 0.0006, + "loss": 3.680819511413574, + "step": 2771 + }, + { + "epoch": 38.50327653997379, + "grad_norm": 0.27774113416671753, + "learning_rate": 0.0006, + "loss": 3.699146270751953, + "step": 2772 + }, + { + "epoch": 38.517256443861946, + "grad_norm": 0.2881671190261841, + "learning_rate": 0.0006, + "loss": 3.6509652137756348, + "step": 2773 + }, + { + "epoch": 38.53123634775011, + "grad_norm": 0.26570361852645874, + "learning_rate": 0.0006, + "loss": 3.6808385848999023, + "step": 2774 + }, + { + "epoch": 38.54521625163827, + "grad_norm": 0.23043136298656464, + "learning_rate": 0.0006, + "loss": 3.7082371711730957, + "step": 2775 + }, + { + "epoch": 38.55919615552643, + "grad_norm": 0.23730400204658508, + "learning_rate": 0.0006, + "loss": 3.653615951538086, + "step": 2776 + }, + { + "epoch": 38.57317605941459, + "grad_norm": 0.2332635223865509, + "learning_rate": 0.0006, + "loss": 3.6869683265686035, + "step": 2777 + }, + { + "epoch": 38.58715596330275, + "grad_norm": 0.22913676500320435, + "learning_rate": 0.0006, + "loss": 3.6998367309570312, + "step": 2778 + }, + { + "epoch": 38.60113586719091, + "grad_norm": 0.226078599691391, + "learning_rate": 0.0006, + "loss": 3.7051444053649902, + "step": 2779 + }, + { + "epoch": 38.615115771079076, + "grad_norm": 0.2336396723985672, + "learning_rate": 0.0006, + "loss": 3.6964943408966064, + "step": 2780 + }, + { + "epoch": 38.62909567496723, + "grad_norm": 0.23270335793495178, + "learning_rate": 0.0006, + "loss": 3.6741909980773926, + "step": 2781 + }, + { + "epoch": 38.643075578855395, + "grad_norm": 0.19324959814548492, + "learning_rate": 0.0006, + "loss": 3.64506196975708, + "step": 2782 + }, + { + "epoch": 38.65705548274356, + "grad_norm": 0.18551453948020935, + "learning_rate": 0.0006, + "loss": 3.6834206581115723, + "step": 2783 + }, + { + "epoch": 38.671035386631715, + "grad_norm": 0.17392469942569733, + "learning_rate": 0.0006, + "loss": 3.67282772064209, + "step": 2784 + }, + { + "epoch": 38.68501529051988, + "grad_norm": 0.19093742966651917, + "learning_rate": 0.0006, + "loss": 3.6648201942443848, + "step": 2785 + }, + { + "epoch": 38.69899519440804, + "grad_norm": 0.2124558985233307, + "learning_rate": 0.0006, + "loss": 3.712191581726074, + "step": 2786 + }, + { + "epoch": 38.7129750982962, + "grad_norm": 0.2220139354467392, + "learning_rate": 0.0006, + "loss": 3.675504207611084, + "step": 2787 + }, + { + "epoch": 38.72695500218436, + "grad_norm": 0.17677755653858185, + "learning_rate": 0.0006, + "loss": 3.6693475246429443, + "step": 2788 + }, + { + "epoch": 38.74093490607252, + "grad_norm": 0.2002430409193039, + "learning_rate": 0.0006, + "loss": 3.6906018257141113, + "step": 2789 + }, + { + "epoch": 38.75491480996068, + "grad_norm": 0.18844179809093475, + "learning_rate": 0.0006, + "loss": 3.660121440887451, + "step": 2790 + }, + { + "epoch": 38.768894713848844, + "grad_norm": 0.19319336116313934, + "learning_rate": 0.0006, + "loss": 3.6592631340026855, + "step": 2791 + }, + { + "epoch": 38.782874617737, + "grad_norm": 0.18624325096607208, + "learning_rate": 0.0006, + "loss": 3.6935300827026367, + "step": 2792 + }, + { + "epoch": 38.796854521625164, + "grad_norm": 0.2049761712551117, + "learning_rate": 0.0006, + "loss": 3.6702702045440674, + "step": 2793 + }, + { + "epoch": 38.81083442551333, + "grad_norm": 0.2030584216117859, + "learning_rate": 0.0006, + "loss": 3.714639663696289, + "step": 2794 + }, + { + "epoch": 38.824814329401484, + "grad_norm": 0.18989548087120056, + "learning_rate": 0.0006, + "loss": 3.678253412246704, + "step": 2795 + }, + { + "epoch": 38.83879423328965, + "grad_norm": 0.19944126904010773, + "learning_rate": 0.0006, + "loss": 3.648367166519165, + "step": 2796 + }, + { + "epoch": 38.8527741371778, + "grad_norm": 0.2062688171863556, + "learning_rate": 0.0006, + "loss": 3.701514720916748, + "step": 2797 + }, + { + "epoch": 38.86675404106597, + "grad_norm": 0.21475110948085785, + "learning_rate": 0.0006, + "loss": 3.6725993156433105, + "step": 2798 + }, + { + "epoch": 38.88073394495413, + "grad_norm": 0.2240881323814392, + "learning_rate": 0.0006, + "loss": 3.6944539546966553, + "step": 2799 + }, + { + "epoch": 38.89471384884229, + "grad_norm": 0.23074312508106232, + "learning_rate": 0.0006, + "loss": 3.747671365737915, + "step": 2800 + }, + { + "epoch": 38.90869375273045, + "grad_norm": 0.2447938323020935, + "learning_rate": 0.0006, + "loss": 3.6856026649475098, + "step": 2801 + }, + { + "epoch": 38.92267365661861, + "grad_norm": 0.2136487364768982, + "learning_rate": 0.0006, + "loss": 3.710397720336914, + "step": 2802 + }, + { + "epoch": 38.93665356050677, + "grad_norm": 0.21676769852638245, + "learning_rate": 0.0006, + "loss": 3.6911189556121826, + "step": 2803 + }, + { + "epoch": 38.95063346439493, + "grad_norm": 0.2226478010416031, + "learning_rate": 0.0006, + "loss": 3.6902880668640137, + "step": 2804 + }, + { + "epoch": 38.964613368283096, + "grad_norm": 0.2071496546268463, + "learning_rate": 0.0006, + "loss": 3.6831371784210205, + "step": 2805 + }, + { + "epoch": 38.97859327217125, + "grad_norm": 0.19568349421024323, + "learning_rate": 0.0006, + "loss": 3.6897640228271484, + "step": 2806 + }, + { + "epoch": 38.992573176059416, + "grad_norm": 0.19067516922950745, + "learning_rate": 0.0006, + "loss": 3.7096242904663086, + "step": 2807 + }, + { + "epoch": 39.0, + "grad_norm": 0.22872281074523926, + "learning_rate": 0.0006, + "loss": 3.689342975616455, + "step": 2808 + }, + { + "epoch": 39.0, + "eval_loss": 4.001968860626221, + "eval_runtime": 44.8452, + "eval_samples_per_second": 54.454, + "eval_steps_per_second": 3.412, + "step": 2808 + }, + { + "epoch": 39.01397990388816, + "grad_norm": 0.21685896813869476, + "learning_rate": 0.0006, + "loss": 3.638145923614502, + "step": 2809 + }, + { + "epoch": 39.02795980777632, + "grad_norm": 0.20085014402866364, + "learning_rate": 0.0006, + "loss": 3.626654624938965, + "step": 2810 + }, + { + "epoch": 39.04193971166448, + "grad_norm": 0.20615799725055695, + "learning_rate": 0.0006, + "loss": 3.6280088424682617, + "step": 2811 + }, + { + "epoch": 39.05591961555265, + "grad_norm": 0.23471905291080475, + "learning_rate": 0.0006, + "loss": 3.6444239616394043, + "step": 2812 + }, + { + "epoch": 39.0698995194408, + "grad_norm": 0.22207780182361603, + "learning_rate": 0.0006, + "loss": 3.6276912689208984, + "step": 2813 + }, + { + "epoch": 39.083879423328966, + "grad_norm": 0.23354043066501617, + "learning_rate": 0.0006, + "loss": 3.7007269859313965, + "step": 2814 + }, + { + "epoch": 39.09785932721712, + "grad_norm": 0.22520557045936584, + "learning_rate": 0.0006, + "loss": 3.6487162113189697, + "step": 2815 + }, + { + "epoch": 39.111839231105286, + "grad_norm": 0.20489682257175446, + "learning_rate": 0.0006, + "loss": 3.6523492336273193, + "step": 2816 + }, + { + "epoch": 39.12581913499345, + "grad_norm": 0.20979270339012146, + "learning_rate": 0.0006, + "loss": 3.6574230194091797, + "step": 2817 + }, + { + "epoch": 39.139799038881605, + "grad_norm": 0.2256486713886261, + "learning_rate": 0.0006, + "loss": 3.6499013900756836, + "step": 2818 + }, + { + "epoch": 39.15377894276977, + "grad_norm": 0.1960437297821045, + "learning_rate": 0.0006, + "loss": 3.6780271530151367, + "step": 2819 + }, + { + "epoch": 39.16775884665793, + "grad_norm": 0.19279663264751434, + "learning_rate": 0.0006, + "loss": 3.623819589614868, + "step": 2820 + }, + { + "epoch": 39.18173875054609, + "grad_norm": 0.19151495397090912, + "learning_rate": 0.0006, + "loss": 3.612868070602417, + "step": 2821 + }, + { + "epoch": 39.19571865443425, + "grad_norm": 0.19399534165859222, + "learning_rate": 0.0006, + "loss": 3.6518092155456543, + "step": 2822 + }, + { + "epoch": 39.20969855832241, + "grad_norm": 0.21723251044750214, + "learning_rate": 0.0006, + "loss": 3.681509494781494, + "step": 2823 + }, + { + "epoch": 39.22367846221057, + "grad_norm": 0.2487006038427353, + "learning_rate": 0.0006, + "loss": 3.6569719314575195, + "step": 2824 + }, + { + "epoch": 39.237658366098735, + "grad_norm": 0.2640652656555176, + "learning_rate": 0.0006, + "loss": 3.680734634399414, + "step": 2825 + }, + { + "epoch": 39.25163826998689, + "grad_norm": 0.21862825751304626, + "learning_rate": 0.0006, + "loss": 3.6741840839385986, + "step": 2826 + }, + { + "epoch": 39.265618173875055, + "grad_norm": 0.19515705108642578, + "learning_rate": 0.0006, + "loss": 3.657750129699707, + "step": 2827 + }, + { + "epoch": 39.27959807776322, + "grad_norm": 0.1971602737903595, + "learning_rate": 0.0006, + "loss": 3.6524124145507812, + "step": 2828 + }, + { + "epoch": 39.293577981651374, + "grad_norm": 0.20822174847126007, + "learning_rate": 0.0006, + "loss": 3.69527006149292, + "step": 2829 + }, + { + "epoch": 39.30755788553954, + "grad_norm": 0.2566370368003845, + "learning_rate": 0.0006, + "loss": 3.6770880222320557, + "step": 2830 + }, + { + "epoch": 39.3215377894277, + "grad_norm": 0.24984225630760193, + "learning_rate": 0.0006, + "loss": 3.6733901500701904, + "step": 2831 + }, + { + "epoch": 39.33551769331586, + "grad_norm": 0.233322873711586, + "learning_rate": 0.0006, + "loss": 3.645519256591797, + "step": 2832 + }, + { + "epoch": 39.34949759720402, + "grad_norm": 0.21584749221801758, + "learning_rate": 0.0006, + "loss": 3.6211934089660645, + "step": 2833 + }, + { + "epoch": 39.36347750109218, + "grad_norm": 0.2188950479030609, + "learning_rate": 0.0006, + "loss": 3.6434195041656494, + "step": 2834 + }, + { + "epoch": 39.37745740498034, + "grad_norm": 0.21998439729213715, + "learning_rate": 0.0006, + "loss": 3.6720595359802246, + "step": 2835 + }, + { + "epoch": 39.391437308868504, + "grad_norm": 0.2459399700164795, + "learning_rate": 0.0006, + "loss": 3.667083740234375, + "step": 2836 + }, + { + "epoch": 39.40541721275666, + "grad_norm": 0.23579223453998566, + "learning_rate": 0.0006, + "loss": 3.665452480316162, + "step": 2837 + }, + { + "epoch": 39.419397116644824, + "grad_norm": 0.19401362538337708, + "learning_rate": 0.0006, + "loss": 3.684218406677246, + "step": 2838 + }, + { + "epoch": 39.43337702053299, + "grad_norm": 0.1894487738609314, + "learning_rate": 0.0006, + "loss": 3.670626163482666, + "step": 2839 + }, + { + "epoch": 39.44735692442114, + "grad_norm": 0.1936904937028885, + "learning_rate": 0.0006, + "loss": 3.6367318630218506, + "step": 2840 + }, + { + "epoch": 39.46133682830931, + "grad_norm": 0.1867629438638687, + "learning_rate": 0.0006, + "loss": 3.670098304748535, + "step": 2841 + }, + { + "epoch": 39.47531673219746, + "grad_norm": 0.18849903345108032, + "learning_rate": 0.0006, + "loss": 3.6877760887145996, + "step": 2842 + }, + { + "epoch": 39.489296636085626, + "grad_norm": 0.18247179687023163, + "learning_rate": 0.0006, + "loss": 3.7132980823516846, + "step": 2843 + }, + { + "epoch": 39.50327653997379, + "grad_norm": 0.19206349551677704, + "learning_rate": 0.0006, + "loss": 3.630319595336914, + "step": 2844 + }, + { + "epoch": 39.517256443861946, + "grad_norm": 0.21730613708496094, + "learning_rate": 0.0006, + "loss": 3.6818761825561523, + "step": 2845 + }, + { + "epoch": 39.53123634775011, + "grad_norm": 0.22482407093048096, + "learning_rate": 0.0006, + "loss": 3.6385269165039062, + "step": 2846 + }, + { + "epoch": 39.54521625163827, + "grad_norm": 0.24560105800628662, + "learning_rate": 0.0006, + "loss": 3.660067558288574, + "step": 2847 + }, + { + "epoch": 39.55919615552643, + "grad_norm": 0.23720617592334747, + "learning_rate": 0.0006, + "loss": 3.6811556816101074, + "step": 2848 + }, + { + "epoch": 39.57317605941459, + "grad_norm": 0.18990741670131683, + "learning_rate": 0.0006, + "loss": 3.6733779907226562, + "step": 2849 + }, + { + "epoch": 39.58715596330275, + "grad_norm": 0.2135438323020935, + "learning_rate": 0.0006, + "loss": 3.662020683288574, + "step": 2850 + }, + { + "epoch": 39.60113586719091, + "grad_norm": 0.24248908460140228, + "learning_rate": 0.0006, + "loss": 3.6794259548187256, + "step": 2851 + }, + { + "epoch": 39.615115771079076, + "grad_norm": 0.23115725815296173, + "learning_rate": 0.0006, + "loss": 3.6732406616210938, + "step": 2852 + }, + { + "epoch": 39.62909567496723, + "grad_norm": 0.23760166764259338, + "learning_rate": 0.0006, + "loss": 3.7062699794769287, + "step": 2853 + }, + { + "epoch": 39.643075578855395, + "grad_norm": 0.24670571088790894, + "learning_rate": 0.0006, + "loss": 3.692385673522949, + "step": 2854 + }, + { + "epoch": 39.65705548274356, + "grad_norm": 0.20983918011188507, + "learning_rate": 0.0006, + "loss": 3.691361427307129, + "step": 2855 + }, + { + "epoch": 39.671035386631715, + "grad_norm": 0.1915138065814972, + "learning_rate": 0.0006, + "loss": 3.6985888481140137, + "step": 2856 + }, + { + "epoch": 39.68501529051988, + "grad_norm": 0.23440803587436676, + "learning_rate": 0.0006, + "loss": 3.6484973430633545, + "step": 2857 + }, + { + "epoch": 39.69899519440804, + "grad_norm": 0.2483232468366623, + "learning_rate": 0.0006, + "loss": 3.6861510276794434, + "step": 2858 + }, + { + "epoch": 39.7129750982962, + "grad_norm": 0.21373426914215088, + "learning_rate": 0.0006, + "loss": 3.6528866291046143, + "step": 2859 + }, + { + "epoch": 39.72695500218436, + "grad_norm": 0.19849136471748352, + "learning_rate": 0.0006, + "loss": 3.6435961723327637, + "step": 2860 + }, + { + "epoch": 39.74093490607252, + "grad_norm": 0.21748292446136475, + "learning_rate": 0.0006, + "loss": 3.678481101989746, + "step": 2861 + }, + { + "epoch": 39.75491480996068, + "grad_norm": 0.22488188743591309, + "learning_rate": 0.0006, + "loss": 3.711717128753662, + "step": 2862 + }, + { + "epoch": 39.768894713848844, + "grad_norm": 0.22251835465431213, + "learning_rate": 0.0006, + "loss": 3.690516471862793, + "step": 2863 + }, + { + "epoch": 39.782874617737, + "grad_norm": 0.22101449966430664, + "learning_rate": 0.0006, + "loss": 3.6679611206054688, + "step": 2864 + }, + { + "epoch": 39.796854521625164, + "grad_norm": 0.20345936715602875, + "learning_rate": 0.0006, + "loss": 3.6935629844665527, + "step": 2865 + }, + { + "epoch": 39.81083442551333, + "grad_norm": 0.23772259056568146, + "learning_rate": 0.0006, + "loss": 3.697561264038086, + "step": 2866 + }, + { + "epoch": 39.824814329401484, + "grad_norm": 0.24446387588977814, + "learning_rate": 0.0006, + "loss": 3.696723461151123, + "step": 2867 + }, + { + "epoch": 39.83879423328965, + "grad_norm": 0.2365843653678894, + "learning_rate": 0.0006, + "loss": 3.6511402130126953, + "step": 2868 + }, + { + "epoch": 39.8527741371778, + "grad_norm": 0.25421974062919617, + "learning_rate": 0.0006, + "loss": 3.68449068069458, + "step": 2869 + }, + { + "epoch": 39.86675404106597, + "grad_norm": 0.2504308819770813, + "learning_rate": 0.0006, + "loss": 3.685884952545166, + "step": 2870 + }, + { + "epoch": 39.88073394495413, + "grad_norm": 0.24695490300655365, + "learning_rate": 0.0006, + "loss": 3.6667490005493164, + "step": 2871 + }, + { + "epoch": 39.89471384884229, + "grad_norm": 0.2633236348628998, + "learning_rate": 0.0006, + "loss": 3.6828866004943848, + "step": 2872 + }, + { + "epoch": 39.90869375273045, + "grad_norm": 0.2421039491891861, + "learning_rate": 0.0006, + "loss": 3.681187391281128, + "step": 2873 + }, + { + "epoch": 39.92267365661861, + "grad_norm": 0.21202950179576874, + "learning_rate": 0.0006, + "loss": 3.679069995880127, + "step": 2874 + }, + { + "epoch": 39.93665356050677, + "grad_norm": 0.2344917505979538, + "learning_rate": 0.0006, + "loss": 3.6810007095336914, + "step": 2875 + }, + { + "epoch": 39.95063346439493, + "grad_norm": 0.2115124762058258, + "learning_rate": 0.0006, + "loss": 3.653219223022461, + "step": 2876 + }, + { + "epoch": 39.964613368283096, + "grad_norm": 0.21588370203971863, + "learning_rate": 0.0006, + "loss": 3.6972861289978027, + "step": 2877 + }, + { + "epoch": 39.97859327217125, + "grad_norm": 0.26215407252311707, + "learning_rate": 0.0006, + "loss": 3.6796963214874268, + "step": 2878 + }, + { + "epoch": 39.992573176059416, + "grad_norm": 0.23645395040512085, + "learning_rate": 0.0006, + "loss": 3.696091413497925, + "step": 2879 + }, + { + "epoch": 40.0, + "grad_norm": 0.21817512810230255, + "learning_rate": 0.0006, + "loss": 3.668196678161621, + "step": 2880 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 1.2273091675265434e+18, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2880/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3168/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3168/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3168/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3168/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e996660c1c02f0f248564e2785a28c8d29c4c2b8 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:799ac6f5ad0954ed22debc610141e21f743f65d942b6b59a022002b399f1f331 +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3168/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..408503e38de052650350e4bca3f24d27c1db9e9f --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d117d6baade7292b9d7ed9c4923fd7b6e02474c1f5927739dee5e6b6b8919b81 +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3168/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..f65e890984165cef33a99ba0b15823a82760413e --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:003939f5e86095f2dbe72a57d4180d062b87b374256f7e5bc75299c36e091b77 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3168/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..81afcfb3b167cab5e2e42de9f0c6d96b9f4a3283 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70999939878e71f59c6aab1c513ba28d542374a64edbf4c44f2d88b6a2d17d2e +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3168/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..197051978d6c74fdad6b7032be258e0e7820d474 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e78dacd009cacb02d7e6aed95e856956ae6e4311674c02b7eda2409a3c3c392 +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3168/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3168/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3168/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..a3c245de17ac44109cd64b580b7c369facf1a045 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/trainer_state.json @@ -0,0 +1,22554 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 44.0, + "eval_steps": 500, + "global_step": 3168, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + }, + { + "epoch": 8.0, + "eval_loss": 5.100707530975342, + "eval_runtime": 44.2493, + "eval_samples_per_second": 55.187, + "eval_steps_per_second": 3.458, + "step": 576 + }, + { + "epoch": 8.013979903888162, + "grad_norm": 0.3658510148525238, + "learning_rate": 0.0006, + "loss": 4.759055137634277, + "step": 577 + }, + { + "epoch": 8.027959807776321, + "grad_norm": 0.41794446110725403, + "learning_rate": 0.0006, + "loss": 4.737661838531494, + "step": 578 + }, + { + "epoch": 8.041939711664483, + "grad_norm": 0.43284085392951965, + "learning_rate": 0.0006, + "loss": 4.775538444519043, + "step": 579 + }, + { + "epoch": 8.055919615552643, + "grad_norm": 0.4716675281524658, + "learning_rate": 0.0006, + "loss": 4.762231826782227, + "step": 580 + }, + { + "epoch": 8.069899519440805, + "grad_norm": 0.3849579393863678, + "learning_rate": 0.0006, + "loss": 4.753598690032959, + "step": 581 + }, + { + "epoch": 8.083879423328964, + "grad_norm": 0.3721151053905487, + "learning_rate": 0.0006, + "loss": 4.728978157043457, + "step": 582 + }, + { + "epoch": 8.097859327217126, + "grad_norm": 0.37009572982788086, + "learning_rate": 0.0006, + "loss": 4.759153366088867, + "step": 583 + }, + { + "epoch": 8.111839231105286, + "grad_norm": 0.37051302194595337, + "learning_rate": 0.0006, + "loss": 4.744197368621826, + "step": 584 + }, + { + "epoch": 8.125819134993447, + "grad_norm": 0.331238329410553, + "learning_rate": 0.0006, + "loss": 4.7338385581970215, + "step": 585 + }, + { + "epoch": 8.139799038881607, + "grad_norm": 0.3737713694572449, + "learning_rate": 0.0006, + "loss": 4.719110488891602, + "step": 586 + }, + { + "epoch": 8.153778942769769, + "grad_norm": 0.3713214695453644, + "learning_rate": 0.0006, + "loss": 4.734012126922607, + "step": 587 + }, + { + "epoch": 8.167758846657929, + "grad_norm": 0.4060780107975006, + "learning_rate": 0.0006, + "loss": 4.746830940246582, + "step": 588 + }, + { + "epoch": 8.18173875054609, + "grad_norm": 0.39814314246177673, + "learning_rate": 0.0006, + "loss": 4.722851753234863, + "step": 589 + }, + { + "epoch": 8.19571865443425, + "grad_norm": 0.3175652325153351, + "learning_rate": 0.0006, + "loss": 4.745110034942627, + "step": 590 + }, + { + "epoch": 8.209698558322412, + "grad_norm": 0.37214916944503784, + "learning_rate": 0.0006, + "loss": 4.7362775802612305, + "step": 591 + }, + { + "epoch": 8.223678462210572, + "grad_norm": 0.3873472809791565, + "learning_rate": 0.0006, + "loss": 4.738964557647705, + "step": 592 + }, + { + "epoch": 8.237658366098733, + "grad_norm": 0.3299207091331482, + "learning_rate": 0.0006, + "loss": 4.713451385498047, + "step": 593 + }, + { + "epoch": 8.251638269986893, + "grad_norm": 0.32445064187049866, + "learning_rate": 0.0006, + "loss": 4.725602149963379, + "step": 594 + }, + { + "epoch": 8.265618173875055, + "grad_norm": 0.32903164625167847, + "learning_rate": 0.0006, + "loss": 4.732064247131348, + "step": 595 + }, + { + "epoch": 8.279598077763215, + "grad_norm": 0.3166804313659668, + "learning_rate": 0.0006, + "loss": 4.678950786590576, + "step": 596 + }, + { + "epoch": 8.293577981651376, + "grad_norm": 0.2750290334224701, + "learning_rate": 0.0006, + "loss": 4.719513416290283, + "step": 597 + }, + { + "epoch": 8.307557885539538, + "grad_norm": 0.291029691696167, + "learning_rate": 0.0006, + "loss": 4.715405464172363, + "step": 598 + }, + { + "epoch": 8.321537789427698, + "grad_norm": 0.34105145931243896, + "learning_rate": 0.0006, + "loss": 4.722611427307129, + "step": 599 + }, + { + "epoch": 8.33551769331586, + "grad_norm": 0.3078882694244385, + "learning_rate": 0.0006, + "loss": 4.668856620788574, + "step": 600 + }, + { + "epoch": 8.349497597204019, + "grad_norm": 0.3218833804130554, + "learning_rate": 0.0006, + "loss": 4.719579696655273, + "step": 601 + }, + { + "epoch": 8.36347750109218, + "grad_norm": 0.35716721415519714, + "learning_rate": 0.0006, + "loss": 4.690774440765381, + "step": 602 + }, + { + "epoch": 8.37745740498034, + "grad_norm": 0.3045452833175659, + "learning_rate": 0.0006, + "loss": 4.696503639221191, + "step": 603 + }, + { + "epoch": 8.391437308868502, + "grad_norm": 0.3127244710922241, + "learning_rate": 0.0006, + "loss": 4.701899528503418, + "step": 604 + }, + { + "epoch": 8.405417212756662, + "grad_norm": 0.34988710284233093, + "learning_rate": 0.0006, + "loss": 4.677641868591309, + "step": 605 + }, + { + "epoch": 8.419397116644824, + "grad_norm": 0.34035569429397583, + "learning_rate": 0.0006, + "loss": 4.707778453826904, + "step": 606 + }, + { + "epoch": 8.433377020532983, + "grad_norm": 0.3341112732887268, + "learning_rate": 0.0006, + "loss": 4.724853038787842, + "step": 607 + }, + { + "epoch": 8.447356924421145, + "grad_norm": 0.41744324564933777, + "learning_rate": 0.0006, + "loss": 4.680908203125, + "step": 608 + }, + { + "epoch": 8.461336828309305, + "grad_norm": 0.40402331948280334, + "learning_rate": 0.0006, + "loss": 4.726455211639404, + "step": 609 + }, + { + "epoch": 8.475316732197467, + "grad_norm": 0.4727570414543152, + "learning_rate": 0.0006, + "loss": 4.6793084144592285, + "step": 610 + }, + { + "epoch": 8.489296636085626, + "grad_norm": 0.43002694845199585, + "learning_rate": 0.0006, + "loss": 4.663918972015381, + "step": 611 + }, + { + "epoch": 8.503276539973788, + "grad_norm": 0.36124858260154724, + "learning_rate": 0.0006, + "loss": 4.657375335693359, + "step": 612 + }, + { + "epoch": 8.517256443861948, + "grad_norm": 0.37644803524017334, + "learning_rate": 0.0006, + "loss": 4.676977157592773, + "step": 613 + }, + { + "epoch": 8.53123634775011, + "grad_norm": 0.32347747683525085, + "learning_rate": 0.0006, + "loss": 4.708547115325928, + "step": 614 + }, + { + "epoch": 8.54521625163827, + "grad_norm": 0.3071717619895935, + "learning_rate": 0.0006, + "loss": 4.650189399719238, + "step": 615 + }, + { + "epoch": 8.55919615552643, + "grad_norm": 0.30222490429878235, + "learning_rate": 0.0006, + "loss": 4.647942543029785, + "step": 616 + }, + { + "epoch": 8.57317605941459, + "grad_norm": 0.31545212864875793, + "learning_rate": 0.0006, + "loss": 4.660242080688477, + "step": 617 + }, + { + "epoch": 8.587155963302752, + "grad_norm": 0.31644752621650696, + "learning_rate": 0.0006, + "loss": 4.666710376739502, + "step": 618 + }, + { + "epoch": 8.601135867190912, + "grad_norm": 0.26057198643684387, + "learning_rate": 0.0006, + "loss": 4.668096542358398, + "step": 619 + }, + { + "epoch": 8.615115771079074, + "grad_norm": 0.25473910570144653, + "learning_rate": 0.0006, + "loss": 4.641562461853027, + "step": 620 + }, + { + "epoch": 8.629095674967235, + "grad_norm": 0.2456732839345932, + "learning_rate": 0.0006, + "loss": 4.6545281410217285, + "step": 621 + }, + { + "epoch": 8.643075578855395, + "grad_norm": 0.25180476903915405, + "learning_rate": 0.0006, + "loss": 4.6506524085998535, + "step": 622 + }, + { + "epoch": 8.657055482743557, + "grad_norm": 0.21761579811573029, + "learning_rate": 0.0006, + "loss": 4.638909339904785, + "step": 623 + }, + { + "epoch": 8.671035386631717, + "grad_norm": 0.23590542376041412, + "learning_rate": 0.0006, + "loss": 4.6572747230529785, + "step": 624 + }, + { + "epoch": 8.685015290519878, + "grad_norm": 0.23870624601840973, + "learning_rate": 0.0006, + "loss": 4.643742084503174, + "step": 625 + }, + { + "epoch": 8.698995194408038, + "grad_norm": 0.2191203385591507, + "learning_rate": 0.0006, + "loss": 4.632617950439453, + "step": 626 + }, + { + "epoch": 8.7129750982962, + "grad_norm": 0.22107063233852386, + "learning_rate": 0.0006, + "loss": 4.625616073608398, + "step": 627 + }, + { + "epoch": 8.72695500218436, + "grad_norm": 0.20833902060985565, + "learning_rate": 0.0006, + "loss": 4.609896659851074, + "step": 628 + }, + { + "epoch": 8.740934906072521, + "grad_norm": 0.254967600107193, + "learning_rate": 0.0006, + "loss": 4.651735782623291, + "step": 629 + }, + { + "epoch": 8.754914809960681, + "grad_norm": 0.31587523221969604, + "learning_rate": 0.0006, + "loss": 4.6404032707214355, + "step": 630 + }, + { + "epoch": 8.768894713848843, + "grad_norm": 0.28598251938819885, + "learning_rate": 0.0006, + "loss": 4.602679252624512, + "step": 631 + }, + { + "epoch": 8.782874617737003, + "grad_norm": 0.23216590285301208, + "learning_rate": 0.0006, + "loss": 4.610319137573242, + "step": 632 + }, + { + "epoch": 8.796854521625164, + "grad_norm": 0.29212239384651184, + "learning_rate": 0.0006, + "loss": 4.600744247436523, + "step": 633 + }, + { + "epoch": 8.810834425513324, + "grad_norm": 0.3375801146030426, + "learning_rate": 0.0006, + "loss": 4.627819061279297, + "step": 634 + }, + { + "epoch": 8.824814329401486, + "grad_norm": 0.4207753837108612, + "learning_rate": 0.0006, + "loss": 4.634505271911621, + "step": 635 + }, + { + "epoch": 8.838794233289645, + "grad_norm": 0.4640173614025116, + "learning_rate": 0.0006, + "loss": 4.636714935302734, + "step": 636 + }, + { + "epoch": 8.852774137177807, + "grad_norm": 0.5255663990974426, + "learning_rate": 0.0006, + "loss": 4.659462928771973, + "step": 637 + }, + { + "epoch": 8.866754041065967, + "grad_norm": 0.5108268857002258, + "learning_rate": 0.0006, + "loss": 4.633192539215088, + "step": 638 + }, + { + "epoch": 8.880733944954128, + "grad_norm": 0.3821936845779419, + "learning_rate": 0.0006, + "loss": 4.621200084686279, + "step": 639 + }, + { + "epoch": 8.89471384884229, + "grad_norm": 0.3918485939502716, + "learning_rate": 0.0006, + "loss": 4.632599830627441, + "step": 640 + }, + { + "epoch": 8.90869375273045, + "grad_norm": 0.3416556119918823, + "learning_rate": 0.0006, + "loss": 4.620438098907471, + "step": 641 + }, + { + "epoch": 8.922673656618612, + "grad_norm": 0.3191553056240082, + "learning_rate": 0.0006, + "loss": 4.617823600769043, + "step": 642 + }, + { + "epoch": 8.936653560506771, + "grad_norm": 0.3368529677391052, + "learning_rate": 0.0006, + "loss": 4.617222785949707, + "step": 643 + }, + { + "epoch": 8.950633464394933, + "grad_norm": 0.3255428969860077, + "learning_rate": 0.0006, + "loss": 4.633878707885742, + "step": 644 + }, + { + "epoch": 8.964613368283093, + "grad_norm": 0.31394779682159424, + "learning_rate": 0.0006, + "loss": 4.642603874206543, + "step": 645 + }, + { + "epoch": 8.978593272171254, + "grad_norm": 0.29999351501464844, + "learning_rate": 0.0006, + "loss": 4.5925211906433105, + "step": 646 + }, + { + "epoch": 8.992573176059414, + "grad_norm": 0.309154748916626, + "learning_rate": 0.0006, + "loss": 4.61745023727417, + "step": 647 + }, + { + "epoch": 9.0, + "grad_norm": 0.2660452425479889, + "learning_rate": 0.0006, + "loss": 4.575107097625732, + "step": 648 + }, + { + "epoch": 9.0, + "eval_loss": 4.8804192543029785, + "eval_runtime": 45.0015, + "eval_samples_per_second": 54.265, + "eval_steps_per_second": 3.4, + "step": 648 + }, + { + "epoch": 9.013979903888162, + "grad_norm": 0.24159297347068787, + "learning_rate": 0.0006, + "loss": 4.571323871612549, + "step": 649 + }, + { + "epoch": 9.027959807776321, + "grad_norm": 0.2835831046104431, + "learning_rate": 0.0006, + "loss": 4.614255905151367, + "step": 650 + }, + { + "epoch": 9.041939711664483, + "grad_norm": 0.2646859288215637, + "learning_rate": 0.0006, + "loss": 4.578947067260742, + "step": 651 + }, + { + "epoch": 9.055919615552643, + "grad_norm": 0.28868553042411804, + "learning_rate": 0.0006, + "loss": 4.575977325439453, + "step": 652 + }, + { + "epoch": 9.069899519440805, + "grad_norm": 0.2899586856365204, + "learning_rate": 0.0006, + "loss": 4.541798114776611, + "step": 653 + }, + { + "epoch": 9.083879423328964, + "grad_norm": 0.32786068320274353, + "learning_rate": 0.0006, + "loss": 4.575140953063965, + "step": 654 + }, + { + "epoch": 9.097859327217126, + "grad_norm": 0.35675594210624695, + "learning_rate": 0.0006, + "loss": 4.58184814453125, + "step": 655 + }, + { + "epoch": 9.111839231105286, + "grad_norm": 0.3380381166934967, + "learning_rate": 0.0006, + "loss": 4.546271324157715, + "step": 656 + }, + { + "epoch": 9.125819134993447, + "grad_norm": 0.3035511374473572, + "learning_rate": 0.0006, + "loss": 4.591629981994629, + "step": 657 + }, + { + "epoch": 9.139799038881607, + "grad_norm": 0.2733091711997986, + "learning_rate": 0.0006, + "loss": 4.559020042419434, + "step": 658 + }, + { + "epoch": 9.153778942769769, + "grad_norm": 0.2870676815509796, + "learning_rate": 0.0006, + "loss": 4.552787780761719, + "step": 659 + }, + { + "epoch": 9.167758846657929, + "grad_norm": 0.37471064925193787, + "learning_rate": 0.0006, + "loss": 4.572757244110107, + "step": 660 + }, + { + "epoch": 9.18173875054609, + "grad_norm": 0.37889063358306885, + "learning_rate": 0.0006, + "loss": 4.573302268981934, + "step": 661 + }, + { + "epoch": 9.19571865443425, + "grad_norm": 0.29983851313591003, + "learning_rate": 0.0006, + "loss": 4.571202754974365, + "step": 662 + }, + { + "epoch": 9.209698558322412, + "grad_norm": 0.27595147490501404, + "learning_rate": 0.0006, + "loss": 4.529508590698242, + "step": 663 + }, + { + "epoch": 9.223678462210572, + "grad_norm": 0.22693437337875366, + "learning_rate": 0.0006, + "loss": 4.572267532348633, + "step": 664 + }, + { + "epoch": 9.237658366098733, + "grad_norm": 0.27147138118743896, + "learning_rate": 0.0006, + "loss": 4.529747009277344, + "step": 665 + }, + { + "epoch": 9.251638269986893, + "grad_norm": 0.24952703714370728, + "learning_rate": 0.0006, + "loss": 4.553647994995117, + "step": 666 + }, + { + "epoch": 9.265618173875055, + "grad_norm": 0.3086707592010498, + "learning_rate": 0.0006, + "loss": 4.494636058807373, + "step": 667 + }, + { + "epoch": 9.279598077763215, + "grad_norm": 0.3265218138694763, + "learning_rate": 0.0006, + "loss": 4.522481918334961, + "step": 668 + }, + { + "epoch": 9.293577981651376, + "grad_norm": 0.2744608223438263, + "learning_rate": 0.0006, + "loss": 4.544595241546631, + "step": 669 + }, + { + "epoch": 9.307557885539538, + "grad_norm": 0.26698485016822815, + "learning_rate": 0.0006, + "loss": 4.506407260894775, + "step": 670 + }, + { + "epoch": 9.321537789427698, + "grad_norm": 0.2775942087173462, + "learning_rate": 0.0006, + "loss": 4.534619331359863, + "step": 671 + }, + { + "epoch": 9.33551769331586, + "grad_norm": 0.2421862781047821, + "learning_rate": 0.0006, + "loss": 4.523318290710449, + "step": 672 + }, + { + "epoch": 9.349497597204019, + "grad_norm": 0.2756497263908386, + "learning_rate": 0.0006, + "loss": 4.517561912536621, + "step": 673 + }, + { + "epoch": 9.36347750109218, + "grad_norm": 0.28845369815826416, + "learning_rate": 0.0006, + "loss": 4.530844688415527, + "step": 674 + }, + { + "epoch": 9.37745740498034, + "grad_norm": 0.32285866141319275, + "learning_rate": 0.0006, + "loss": 4.55369758605957, + "step": 675 + }, + { + "epoch": 9.391437308868502, + "grad_norm": 0.3726065754890442, + "learning_rate": 0.0006, + "loss": 4.524348258972168, + "step": 676 + }, + { + "epoch": 9.405417212756662, + "grad_norm": 0.39524078369140625, + "learning_rate": 0.0006, + "loss": 4.535778045654297, + "step": 677 + }, + { + "epoch": 9.419397116644824, + "grad_norm": 0.3859797716140747, + "learning_rate": 0.0006, + "loss": 4.538474082946777, + "step": 678 + }, + { + "epoch": 9.433377020532983, + "grad_norm": 0.36151406168937683, + "learning_rate": 0.0006, + "loss": 4.54434061050415, + "step": 679 + }, + { + "epoch": 9.447356924421145, + "grad_norm": 0.40345999598503113, + "learning_rate": 0.0006, + "loss": 4.532961845397949, + "step": 680 + }, + { + "epoch": 9.461336828309305, + "grad_norm": 0.38864144682884216, + "learning_rate": 0.0006, + "loss": 4.567630767822266, + "step": 681 + }, + { + "epoch": 9.475316732197467, + "grad_norm": 0.3816355764865875, + "learning_rate": 0.0006, + "loss": 4.535771369934082, + "step": 682 + }, + { + "epoch": 9.489296636085626, + "grad_norm": 0.38756558299064636, + "learning_rate": 0.0006, + "loss": 4.4971089363098145, + "step": 683 + }, + { + "epoch": 9.503276539973788, + "grad_norm": 0.4572933614253998, + "learning_rate": 0.0006, + "loss": 4.534860134124756, + "step": 684 + }, + { + "epoch": 9.517256443861948, + "grad_norm": 0.42368650436401367, + "learning_rate": 0.0006, + "loss": 4.542638301849365, + "step": 685 + }, + { + "epoch": 9.53123634775011, + "grad_norm": 0.36939486861228943, + "learning_rate": 0.0006, + "loss": 4.571430206298828, + "step": 686 + }, + { + "epoch": 9.54521625163827, + "grad_norm": 0.3900398313999176, + "learning_rate": 0.0006, + "loss": 4.544435501098633, + "step": 687 + }, + { + "epoch": 9.55919615552643, + "grad_norm": 0.37829288840293884, + "learning_rate": 0.0006, + "loss": 4.564268112182617, + "step": 688 + }, + { + "epoch": 9.57317605941459, + "grad_norm": 0.3553886115550995, + "learning_rate": 0.0006, + "loss": 4.5373430252075195, + "step": 689 + }, + { + "epoch": 9.587155963302752, + "grad_norm": 0.3613419532775879, + "learning_rate": 0.0006, + "loss": 4.559074401855469, + "step": 690 + }, + { + "epoch": 9.601135867190912, + "grad_norm": 0.32644546031951904, + "learning_rate": 0.0006, + "loss": 4.533667087554932, + "step": 691 + }, + { + "epoch": 9.615115771079074, + "grad_norm": 0.3264399468898773, + "learning_rate": 0.0006, + "loss": 4.508299350738525, + "step": 692 + }, + { + "epoch": 9.629095674967235, + "grad_norm": 0.3534526526927948, + "learning_rate": 0.0006, + "loss": 4.542442798614502, + "step": 693 + }, + { + "epoch": 9.643075578855395, + "grad_norm": 0.3333452343940735, + "learning_rate": 0.0006, + "loss": 4.497692584991455, + "step": 694 + }, + { + "epoch": 9.657055482743557, + "grad_norm": 0.3214292526245117, + "learning_rate": 0.0006, + "loss": 4.512363433837891, + "step": 695 + }, + { + "epoch": 9.671035386631717, + "grad_norm": 0.2805672585964203, + "learning_rate": 0.0006, + "loss": 4.496874809265137, + "step": 696 + }, + { + "epoch": 9.685015290519878, + "grad_norm": 0.2618725895881653, + "learning_rate": 0.0006, + "loss": 4.51375675201416, + "step": 697 + }, + { + "epoch": 9.698995194408038, + "grad_norm": 0.2556597888469696, + "learning_rate": 0.0006, + "loss": 4.512338638305664, + "step": 698 + }, + { + "epoch": 9.7129750982962, + "grad_norm": 0.23784305155277252, + "learning_rate": 0.0006, + "loss": 4.486503601074219, + "step": 699 + }, + { + "epoch": 9.72695500218436, + "grad_norm": 0.2240338921546936, + "learning_rate": 0.0006, + "loss": 4.486850261688232, + "step": 700 + }, + { + "epoch": 9.740934906072521, + "grad_norm": 0.24686725437641144, + "learning_rate": 0.0006, + "loss": 4.501359462738037, + "step": 701 + }, + { + "epoch": 9.754914809960681, + "grad_norm": 0.20819595456123352, + "learning_rate": 0.0006, + "loss": 4.495186805725098, + "step": 702 + }, + { + "epoch": 9.768894713848843, + "grad_norm": 0.21858957409858704, + "learning_rate": 0.0006, + "loss": 4.475093364715576, + "step": 703 + }, + { + "epoch": 9.782874617737003, + "grad_norm": 0.22676466405391693, + "learning_rate": 0.0006, + "loss": 4.4702534675598145, + "step": 704 + }, + { + "epoch": 9.796854521625164, + "grad_norm": 0.18317611515522003, + "learning_rate": 0.0006, + "loss": 4.471231937408447, + "step": 705 + }, + { + "epoch": 9.810834425513324, + "grad_norm": 0.20979148149490356, + "learning_rate": 0.0006, + "loss": 4.454103946685791, + "step": 706 + }, + { + "epoch": 9.824814329401486, + "grad_norm": 0.2146051526069641, + "learning_rate": 0.0006, + "loss": 4.505178928375244, + "step": 707 + }, + { + "epoch": 9.838794233289645, + "grad_norm": 0.2344852089881897, + "learning_rate": 0.0006, + "loss": 4.437984943389893, + "step": 708 + }, + { + "epoch": 9.852774137177807, + "grad_norm": 0.26532089710235596, + "learning_rate": 0.0006, + "loss": 4.477126121520996, + "step": 709 + }, + { + "epoch": 9.866754041065967, + "grad_norm": 0.2737913131713867, + "learning_rate": 0.0006, + "loss": 4.498421669006348, + "step": 710 + }, + { + "epoch": 9.880733944954128, + "grad_norm": 0.26651278138160706, + "learning_rate": 0.0006, + "loss": 4.480839729309082, + "step": 711 + }, + { + "epoch": 9.89471384884229, + "grad_norm": 0.26576584577560425, + "learning_rate": 0.0006, + "loss": 4.490936279296875, + "step": 712 + }, + { + "epoch": 9.90869375273045, + "grad_norm": 0.22483965754508972, + "learning_rate": 0.0006, + "loss": 4.477953910827637, + "step": 713 + }, + { + "epoch": 9.922673656618612, + "grad_norm": 0.23576045036315918, + "learning_rate": 0.0006, + "loss": 4.4731292724609375, + "step": 714 + }, + { + "epoch": 9.936653560506771, + "grad_norm": 0.2731139361858368, + "learning_rate": 0.0006, + "loss": 4.441622734069824, + "step": 715 + }, + { + "epoch": 9.950633464394933, + "grad_norm": 0.2677643597126007, + "learning_rate": 0.0006, + "loss": 4.49604606628418, + "step": 716 + }, + { + "epoch": 9.964613368283093, + "grad_norm": 0.21940895915031433, + "learning_rate": 0.0006, + "loss": 4.485573768615723, + "step": 717 + }, + { + "epoch": 9.978593272171254, + "grad_norm": 0.2060987651348114, + "learning_rate": 0.0006, + "loss": 4.482657432556152, + "step": 718 + }, + { + "epoch": 9.992573176059414, + "grad_norm": 0.22163978219032288, + "learning_rate": 0.0006, + "loss": 4.478459358215332, + "step": 719 + }, + { + "epoch": 10.0, + "grad_norm": 0.2505086064338684, + "learning_rate": 0.0006, + "loss": 4.4393510818481445, + "step": 720 + }, + { + "epoch": 10.0, + "eval_loss": 4.695676803588867, + "eval_runtime": 49.0751, + "eval_samples_per_second": 49.76, + "eval_steps_per_second": 3.118, + "step": 720 + }, + { + "epoch": 10.013979903888162, + "grad_norm": 0.23820190131664276, + "learning_rate": 0.0006, + "loss": 4.437685489654541, + "step": 721 + }, + { + "epoch": 10.027959807776321, + "grad_norm": 0.2220371812582016, + "learning_rate": 0.0006, + "loss": 4.449873924255371, + "step": 722 + }, + { + "epoch": 10.041939711664483, + "grad_norm": 0.20369848608970642, + "learning_rate": 0.0006, + "loss": 4.448882579803467, + "step": 723 + }, + { + "epoch": 10.055919615552643, + "grad_norm": 0.2360001504421234, + "learning_rate": 0.0006, + "loss": 4.399251937866211, + "step": 724 + }, + { + "epoch": 10.069899519440805, + "grad_norm": 0.23537491261959076, + "learning_rate": 0.0006, + "loss": 4.442960739135742, + "step": 725 + }, + { + "epoch": 10.083879423328964, + "grad_norm": 0.24433870613574982, + "learning_rate": 0.0006, + "loss": 4.44808292388916, + "step": 726 + }, + { + "epoch": 10.097859327217126, + "grad_norm": 0.3406696021556854, + "learning_rate": 0.0006, + "loss": 4.443426132202148, + "step": 727 + }, + { + "epoch": 10.111839231105286, + "grad_norm": 0.4102286100387573, + "learning_rate": 0.0006, + "loss": 4.424919605255127, + "step": 728 + }, + { + "epoch": 10.125819134993447, + "grad_norm": 0.36462604999542236, + "learning_rate": 0.0006, + "loss": 4.45366907119751, + "step": 729 + }, + { + "epoch": 10.139799038881607, + "grad_norm": 0.4374827444553375, + "learning_rate": 0.0006, + "loss": 4.415630340576172, + "step": 730 + }, + { + "epoch": 10.153778942769769, + "grad_norm": 0.45248138904571533, + "learning_rate": 0.0006, + "loss": 4.448849678039551, + "step": 731 + }, + { + "epoch": 10.167758846657929, + "grad_norm": 0.3806457221508026, + "learning_rate": 0.0006, + "loss": 4.443390846252441, + "step": 732 + }, + { + "epoch": 10.18173875054609, + "grad_norm": 0.3491523861885071, + "learning_rate": 0.0006, + "loss": 4.4648637771606445, + "step": 733 + }, + { + "epoch": 10.19571865443425, + "grad_norm": 0.3327210247516632, + "learning_rate": 0.0006, + "loss": 4.460919380187988, + "step": 734 + }, + { + "epoch": 10.209698558322412, + "grad_norm": 0.29772236943244934, + "learning_rate": 0.0006, + "loss": 4.45159912109375, + "step": 735 + }, + { + "epoch": 10.223678462210572, + "grad_norm": 0.33083397150039673, + "learning_rate": 0.0006, + "loss": 4.463382720947266, + "step": 736 + }, + { + "epoch": 10.237658366098733, + "grad_norm": 0.3930598795413971, + "learning_rate": 0.0006, + "loss": 4.434510231018066, + "step": 737 + }, + { + "epoch": 10.251638269986893, + "grad_norm": 0.4342896044254303, + "learning_rate": 0.0006, + "loss": 4.451700210571289, + "step": 738 + }, + { + "epoch": 10.265618173875055, + "grad_norm": 0.4544043242931366, + "learning_rate": 0.0006, + "loss": 4.437224388122559, + "step": 739 + }, + { + "epoch": 10.279598077763215, + "grad_norm": 0.4487038254737854, + "learning_rate": 0.0006, + "loss": 4.46157693862915, + "step": 740 + }, + { + "epoch": 10.293577981651376, + "grad_norm": 0.4420500695705414, + "learning_rate": 0.0006, + "loss": 4.399561405181885, + "step": 741 + }, + { + "epoch": 10.307557885539538, + "grad_norm": 0.4167289435863495, + "learning_rate": 0.0006, + "loss": 4.41792106628418, + "step": 742 + }, + { + "epoch": 10.321537789427698, + "grad_norm": 0.3186971843242645, + "learning_rate": 0.0006, + "loss": 4.435683250427246, + "step": 743 + }, + { + "epoch": 10.33551769331586, + "grad_norm": 0.3077184855937958, + "learning_rate": 0.0006, + "loss": 4.481947898864746, + "step": 744 + }, + { + "epoch": 10.349497597204019, + "grad_norm": 0.26811280846595764, + "learning_rate": 0.0006, + "loss": 4.4339447021484375, + "step": 745 + }, + { + "epoch": 10.36347750109218, + "grad_norm": 0.28448057174682617, + "learning_rate": 0.0006, + "loss": 4.441644668579102, + "step": 746 + }, + { + "epoch": 10.37745740498034, + "grad_norm": 0.30731502175331116, + "learning_rate": 0.0006, + "loss": 4.428773880004883, + "step": 747 + }, + { + "epoch": 10.391437308868502, + "grad_norm": 0.28036001324653625, + "learning_rate": 0.0006, + "loss": 4.4433135986328125, + "step": 748 + }, + { + "epoch": 10.405417212756662, + "grad_norm": 0.2882847189903259, + "learning_rate": 0.0006, + "loss": 4.433401107788086, + "step": 749 + }, + { + "epoch": 10.419397116644824, + "grad_norm": 0.23622776567935944, + "learning_rate": 0.0006, + "loss": 4.444611549377441, + "step": 750 + }, + { + "epoch": 10.433377020532983, + "grad_norm": 0.2306167632341385, + "learning_rate": 0.0006, + "loss": 4.397875785827637, + "step": 751 + }, + { + "epoch": 10.447356924421145, + "grad_norm": 0.22725090384483337, + "learning_rate": 0.0006, + "loss": 4.429759502410889, + "step": 752 + }, + { + "epoch": 10.461336828309305, + "grad_norm": 0.250709593296051, + "learning_rate": 0.0006, + "loss": 4.415618896484375, + "step": 753 + }, + { + "epoch": 10.475316732197467, + "grad_norm": 0.22341276705265045, + "learning_rate": 0.0006, + "loss": 4.389362335205078, + "step": 754 + }, + { + "epoch": 10.489296636085626, + "grad_norm": 0.22595296800136566, + "learning_rate": 0.0006, + "loss": 4.383584022521973, + "step": 755 + }, + { + "epoch": 10.503276539973788, + "grad_norm": 0.24277575314044952, + "learning_rate": 0.0006, + "loss": 4.403777599334717, + "step": 756 + }, + { + "epoch": 10.517256443861948, + "grad_norm": 0.2670708894729614, + "learning_rate": 0.0006, + "loss": 4.398499011993408, + "step": 757 + }, + { + "epoch": 10.53123634775011, + "grad_norm": 0.2640696167945862, + "learning_rate": 0.0006, + "loss": 4.426726818084717, + "step": 758 + }, + { + "epoch": 10.54521625163827, + "grad_norm": 0.2248653769493103, + "learning_rate": 0.0006, + "loss": 4.400103569030762, + "step": 759 + }, + { + "epoch": 10.55919615552643, + "grad_norm": 0.21466240286827087, + "learning_rate": 0.0006, + "loss": 4.404158592224121, + "step": 760 + }, + { + "epoch": 10.57317605941459, + "grad_norm": 0.236923947930336, + "learning_rate": 0.0006, + "loss": 4.37059211730957, + "step": 761 + }, + { + "epoch": 10.587155963302752, + "grad_norm": 0.2515387535095215, + "learning_rate": 0.0006, + "loss": 4.415055274963379, + "step": 762 + }, + { + "epoch": 10.601135867190912, + "grad_norm": 0.23461885750293732, + "learning_rate": 0.0006, + "loss": 4.375036239624023, + "step": 763 + }, + { + "epoch": 10.615115771079074, + "grad_norm": 0.20975761115550995, + "learning_rate": 0.0006, + "loss": 4.3903398513793945, + "step": 764 + }, + { + "epoch": 10.629095674967235, + "grad_norm": 0.19859997928142548, + "learning_rate": 0.0006, + "loss": 4.379380226135254, + "step": 765 + }, + { + "epoch": 10.643075578855395, + "grad_norm": 0.22310325503349304, + "learning_rate": 0.0006, + "loss": 4.382110595703125, + "step": 766 + }, + { + "epoch": 10.657055482743557, + "grad_norm": 0.23940646648406982, + "learning_rate": 0.0006, + "loss": 4.393403053283691, + "step": 767 + }, + { + "epoch": 10.671035386631717, + "grad_norm": 0.2230468988418579, + "learning_rate": 0.0006, + "loss": 4.391970634460449, + "step": 768 + }, + { + "epoch": 10.685015290519878, + "grad_norm": 0.18139775097370148, + "learning_rate": 0.0006, + "loss": 4.399993896484375, + "step": 769 + }, + { + "epoch": 10.698995194408038, + "grad_norm": 0.19936902821063995, + "learning_rate": 0.0006, + "loss": 4.373854160308838, + "step": 770 + }, + { + "epoch": 10.7129750982962, + "grad_norm": 0.22132465243339539, + "learning_rate": 0.0006, + "loss": 4.377530097961426, + "step": 771 + }, + { + "epoch": 10.72695500218436, + "grad_norm": 0.24254944920539856, + "learning_rate": 0.0006, + "loss": 4.398683547973633, + "step": 772 + }, + { + "epoch": 10.740934906072521, + "grad_norm": 0.2666397988796234, + "learning_rate": 0.0006, + "loss": 4.3879899978637695, + "step": 773 + }, + { + "epoch": 10.754914809960681, + "grad_norm": 0.24728631973266602, + "learning_rate": 0.0006, + "loss": 4.356976509094238, + "step": 774 + }, + { + "epoch": 10.768894713848843, + "grad_norm": 0.2612453103065491, + "learning_rate": 0.0006, + "loss": 4.391525745391846, + "step": 775 + }, + { + "epoch": 10.782874617737003, + "grad_norm": 0.24060510098934174, + "learning_rate": 0.0006, + "loss": 4.376985549926758, + "step": 776 + }, + { + "epoch": 10.796854521625164, + "grad_norm": 0.22708238661289215, + "learning_rate": 0.0006, + "loss": 4.368545055389404, + "step": 777 + }, + { + "epoch": 10.810834425513324, + "grad_norm": 0.26931291818618774, + "learning_rate": 0.0006, + "loss": 4.369227409362793, + "step": 778 + }, + { + "epoch": 10.824814329401486, + "grad_norm": 0.265288770198822, + "learning_rate": 0.0006, + "loss": 4.378131866455078, + "step": 779 + }, + { + "epoch": 10.838794233289645, + "grad_norm": 0.3015305697917938, + "learning_rate": 0.0006, + "loss": 4.376267910003662, + "step": 780 + }, + { + "epoch": 10.852774137177807, + "grad_norm": 0.3345746099948883, + "learning_rate": 0.0006, + "loss": 4.3751420974731445, + "step": 781 + }, + { + "epoch": 10.866754041065967, + "grad_norm": 0.32446005940437317, + "learning_rate": 0.0006, + "loss": 4.370899200439453, + "step": 782 + }, + { + "epoch": 10.880733944954128, + "grad_norm": 0.27070069313049316, + "learning_rate": 0.0006, + "loss": 4.391958236694336, + "step": 783 + }, + { + "epoch": 10.89471384884229, + "grad_norm": 0.25584667921066284, + "learning_rate": 0.0006, + "loss": 4.407493591308594, + "step": 784 + }, + { + "epoch": 10.90869375273045, + "grad_norm": 0.2710244655609131, + "learning_rate": 0.0006, + "loss": 4.374400615692139, + "step": 785 + }, + { + "epoch": 10.922673656618612, + "grad_norm": 0.32413622736930847, + "learning_rate": 0.0006, + "loss": 4.379607200622559, + "step": 786 + }, + { + "epoch": 10.936653560506771, + "grad_norm": 0.3253782391548157, + "learning_rate": 0.0006, + "loss": 4.376441955566406, + "step": 787 + }, + { + "epoch": 10.950633464394933, + "grad_norm": 0.30534613132476807, + "learning_rate": 0.0006, + "loss": 4.382739067077637, + "step": 788 + }, + { + "epoch": 10.964613368283093, + "grad_norm": 0.35726621747016907, + "learning_rate": 0.0006, + "loss": 4.3765869140625, + "step": 789 + }, + { + "epoch": 10.978593272171254, + "grad_norm": 0.32763028144836426, + "learning_rate": 0.0006, + "loss": 4.391537189483643, + "step": 790 + }, + { + "epoch": 10.992573176059414, + "grad_norm": 0.31811195611953735, + "learning_rate": 0.0006, + "loss": 4.371829032897949, + "step": 791 + }, + { + "epoch": 11.0, + "grad_norm": 0.37317267060279846, + "learning_rate": 0.0006, + "loss": 4.381916522979736, + "step": 792 + }, + { + "epoch": 11.0, + "eval_loss": 4.588687896728516, + "eval_runtime": 44.8041, + "eval_samples_per_second": 54.504, + "eval_steps_per_second": 3.415, + "step": 792 + }, + { + "epoch": 11.013979903888162, + "grad_norm": 0.37882938981056213, + "learning_rate": 0.0006, + "loss": 4.3463640213012695, + "step": 793 + }, + { + "epoch": 11.027959807776321, + "grad_norm": 0.34719496965408325, + "learning_rate": 0.0006, + "loss": 4.329861640930176, + "step": 794 + }, + { + "epoch": 11.041939711664483, + "grad_norm": 0.36161214113235474, + "learning_rate": 0.0006, + "loss": 4.3287835121154785, + "step": 795 + }, + { + "epoch": 11.055919615552643, + "grad_norm": 0.3743649125099182, + "learning_rate": 0.0006, + "loss": 4.334251403808594, + "step": 796 + }, + { + "epoch": 11.069899519440805, + "grad_norm": 0.32266443967819214, + "learning_rate": 0.0006, + "loss": 4.364782810211182, + "step": 797 + }, + { + "epoch": 11.083879423328964, + "grad_norm": 0.27460047602653503, + "learning_rate": 0.0006, + "loss": 4.348380088806152, + "step": 798 + }, + { + "epoch": 11.097859327217126, + "grad_norm": 0.30498892068862915, + "learning_rate": 0.0006, + "loss": 4.347856521606445, + "step": 799 + }, + { + "epoch": 11.111839231105286, + "grad_norm": 0.29740771651268005, + "learning_rate": 0.0006, + "loss": 4.343471050262451, + "step": 800 + }, + { + "epoch": 11.125819134993447, + "grad_norm": 0.3004681169986725, + "learning_rate": 0.0006, + "loss": 4.337590217590332, + "step": 801 + }, + { + "epoch": 11.139799038881607, + "grad_norm": 0.3000192642211914, + "learning_rate": 0.0006, + "loss": 4.349949836730957, + "step": 802 + }, + { + "epoch": 11.153778942769769, + "grad_norm": 0.27461889386177063, + "learning_rate": 0.0006, + "loss": 4.338934898376465, + "step": 803 + }, + { + "epoch": 11.167758846657929, + "grad_norm": 0.2856169641017914, + "learning_rate": 0.0006, + "loss": 4.320754051208496, + "step": 804 + }, + { + "epoch": 11.18173875054609, + "grad_norm": 0.29822713136672974, + "learning_rate": 0.0006, + "loss": 4.357949733734131, + "step": 805 + }, + { + "epoch": 11.19571865443425, + "grad_norm": 0.34061339497566223, + "learning_rate": 0.0006, + "loss": 4.327282905578613, + "step": 806 + }, + { + "epoch": 11.209698558322412, + "grad_norm": 0.3379063010215759, + "learning_rate": 0.0006, + "loss": 4.355471611022949, + "step": 807 + }, + { + "epoch": 11.223678462210572, + "grad_norm": 0.2859216630458832, + "learning_rate": 0.0006, + "loss": 4.352344989776611, + "step": 808 + }, + { + "epoch": 11.237658366098733, + "grad_norm": 0.29522669315338135, + "learning_rate": 0.0006, + "loss": 4.349186897277832, + "step": 809 + }, + { + "epoch": 11.251638269986893, + "grad_norm": 0.273798406124115, + "learning_rate": 0.0006, + "loss": 4.342379570007324, + "step": 810 + }, + { + "epoch": 11.265618173875055, + "grad_norm": 0.25298982858657837, + "learning_rate": 0.0006, + "loss": 4.358835220336914, + "step": 811 + }, + { + "epoch": 11.279598077763215, + "grad_norm": 0.2170463651418686, + "learning_rate": 0.0006, + "loss": 4.3422017097473145, + "step": 812 + }, + { + "epoch": 11.293577981651376, + "grad_norm": 0.24855731427669525, + "learning_rate": 0.0006, + "loss": 4.322849750518799, + "step": 813 + }, + { + "epoch": 11.307557885539538, + "grad_norm": 0.22564345598220825, + "learning_rate": 0.0006, + "loss": 4.316864967346191, + "step": 814 + }, + { + "epoch": 11.321537789427698, + "grad_norm": 0.21532197296619415, + "learning_rate": 0.0006, + "loss": 4.326743125915527, + "step": 815 + }, + { + "epoch": 11.33551769331586, + "grad_norm": 0.20514146983623505, + "learning_rate": 0.0006, + "loss": 4.326531887054443, + "step": 816 + }, + { + "epoch": 11.349497597204019, + "grad_norm": 0.19035090506076813, + "learning_rate": 0.0006, + "loss": 4.318154335021973, + "step": 817 + }, + { + "epoch": 11.36347750109218, + "grad_norm": 0.17889662086963654, + "learning_rate": 0.0006, + "loss": 4.35410213470459, + "step": 818 + }, + { + "epoch": 11.37745740498034, + "grad_norm": 0.20564863085746765, + "learning_rate": 0.0006, + "loss": 4.350226879119873, + "step": 819 + }, + { + "epoch": 11.391437308868502, + "grad_norm": 0.2412603348493576, + "learning_rate": 0.0006, + "loss": 4.325137138366699, + "step": 820 + }, + { + "epoch": 11.405417212756662, + "grad_norm": 0.2603496015071869, + "learning_rate": 0.0006, + "loss": 4.335752487182617, + "step": 821 + }, + { + "epoch": 11.419397116644824, + "grad_norm": 0.2968119978904724, + "learning_rate": 0.0006, + "loss": 4.3317670822143555, + "step": 822 + }, + { + "epoch": 11.433377020532983, + "grad_norm": 0.3280937969684601, + "learning_rate": 0.0006, + "loss": 4.322279453277588, + "step": 823 + }, + { + "epoch": 11.447356924421145, + "grad_norm": 0.3598847985267639, + "learning_rate": 0.0006, + "loss": 4.312255859375, + "step": 824 + }, + { + "epoch": 11.461336828309305, + "grad_norm": 0.3996485471725464, + "learning_rate": 0.0006, + "loss": 4.327103614807129, + "step": 825 + }, + { + "epoch": 11.475316732197467, + "grad_norm": 0.4352041780948639, + "learning_rate": 0.0006, + "loss": 4.368639945983887, + "step": 826 + }, + { + "epoch": 11.489296636085626, + "grad_norm": 0.4451918601989746, + "learning_rate": 0.0006, + "loss": 4.335113048553467, + "step": 827 + }, + { + "epoch": 11.503276539973788, + "grad_norm": 0.4403933584690094, + "learning_rate": 0.0006, + "loss": 4.369889259338379, + "step": 828 + }, + { + "epoch": 11.517256443861948, + "grad_norm": 0.34862443804740906, + "learning_rate": 0.0006, + "loss": 4.316292762756348, + "step": 829 + }, + { + "epoch": 11.53123634775011, + "grad_norm": 0.3240634500980377, + "learning_rate": 0.0006, + "loss": 4.328078746795654, + "step": 830 + }, + { + "epoch": 11.54521625163827, + "grad_norm": 0.2445751428604126, + "learning_rate": 0.0006, + "loss": 4.291940689086914, + "step": 831 + }, + { + "epoch": 11.55919615552643, + "grad_norm": 0.24376554787158966, + "learning_rate": 0.0006, + "loss": 4.339217662811279, + "step": 832 + }, + { + "epoch": 11.57317605941459, + "grad_norm": 0.22419725358486176, + "learning_rate": 0.0006, + "loss": 4.2887468338012695, + "step": 833 + }, + { + "epoch": 11.587155963302752, + "grad_norm": 0.22318261861801147, + "learning_rate": 0.0006, + "loss": 4.298492908477783, + "step": 834 + }, + { + "epoch": 11.601135867190912, + "grad_norm": 0.2357342392206192, + "learning_rate": 0.0006, + "loss": 4.328692436218262, + "step": 835 + }, + { + "epoch": 11.615115771079074, + "grad_norm": 0.25450602173805237, + "learning_rate": 0.0006, + "loss": 4.360058784484863, + "step": 836 + }, + { + "epoch": 11.629095674967235, + "grad_norm": 0.24540965259075165, + "learning_rate": 0.0006, + "loss": 4.311890602111816, + "step": 837 + }, + { + "epoch": 11.643075578855395, + "grad_norm": 0.2535638213157654, + "learning_rate": 0.0006, + "loss": 4.327730178833008, + "step": 838 + }, + { + "epoch": 11.657055482743557, + "grad_norm": 0.23063556849956512, + "learning_rate": 0.0006, + "loss": 4.303299903869629, + "step": 839 + }, + { + "epoch": 11.671035386631717, + "grad_norm": 0.21813632547855377, + "learning_rate": 0.0006, + "loss": 4.315352439880371, + "step": 840 + }, + { + "epoch": 11.685015290519878, + "grad_norm": 0.2170359194278717, + "learning_rate": 0.0006, + "loss": 4.278632164001465, + "step": 841 + }, + { + "epoch": 11.698995194408038, + "grad_norm": 0.21059377491474152, + "learning_rate": 0.0006, + "loss": 4.306049346923828, + "step": 842 + }, + { + "epoch": 11.7129750982962, + "grad_norm": 0.19872888922691345, + "learning_rate": 0.0006, + "loss": 4.3091535568237305, + "step": 843 + }, + { + "epoch": 11.72695500218436, + "grad_norm": 0.20059862732887268, + "learning_rate": 0.0006, + "loss": 4.2884063720703125, + "step": 844 + }, + { + "epoch": 11.740934906072521, + "grad_norm": 0.19952483475208282, + "learning_rate": 0.0006, + "loss": 4.293610572814941, + "step": 845 + }, + { + "epoch": 11.754914809960681, + "grad_norm": 0.19794537127017975, + "learning_rate": 0.0006, + "loss": 4.288822174072266, + "step": 846 + }, + { + "epoch": 11.768894713848843, + "grad_norm": 0.213914692401886, + "learning_rate": 0.0006, + "loss": 4.320849418640137, + "step": 847 + }, + { + "epoch": 11.782874617737003, + "grad_norm": 0.18500955402851105, + "learning_rate": 0.0006, + "loss": 4.29300594329834, + "step": 848 + }, + { + "epoch": 11.796854521625164, + "grad_norm": 0.19446656107902527, + "learning_rate": 0.0006, + "loss": 4.3079352378845215, + "step": 849 + }, + { + "epoch": 11.810834425513324, + "grad_norm": 0.22191768884658813, + "learning_rate": 0.0006, + "loss": 4.295967102050781, + "step": 850 + }, + { + "epoch": 11.824814329401486, + "grad_norm": 0.20748084783554077, + "learning_rate": 0.0006, + "loss": 4.332365989685059, + "step": 851 + }, + { + "epoch": 11.838794233289645, + "grad_norm": 0.20993955433368683, + "learning_rate": 0.0006, + "loss": 4.294618129730225, + "step": 852 + }, + { + "epoch": 11.852774137177807, + "grad_norm": 0.23506952822208405, + "learning_rate": 0.0006, + "loss": 4.313426971435547, + "step": 853 + }, + { + "epoch": 11.866754041065967, + "grad_norm": 0.2379443347454071, + "learning_rate": 0.0006, + "loss": 4.297664642333984, + "step": 854 + }, + { + "epoch": 11.880733944954128, + "grad_norm": 0.2127852737903595, + "learning_rate": 0.0006, + "loss": 4.2807698249816895, + "step": 855 + }, + { + "epoch": 11.89471384884229, + "grad_norm": 0.2125532180070877, + "learning_rate": 0.0006, + "loss": 4.310990333557129, + "step": 856 + }, + { + "epoch": 11.90869375273045, + "grad_norm": 0.1996062994003296, + "learning_rate": 0.0006, + "loss": 4.253237724304199, + "step": 857 + }, + { + "epoch": 11.922673656618612, + "grad_norm": 0.20747603476047516, + "learning_rate": 0.0006, + "loss": 4.294193267822266, + "step": 858 + }, + { + "epoch": 11.936653560506771, + "grad_norm": 0.24082425236701965, + "learning_rate": 0.0006, + "loss": 4.269967079162598, + "step": 859 + }, + { + "epoch": 11.950633464394933, + "grad_norm": 0.28993573784828186, + "learning_rate": 0.0006, + "loss": 4.294550895690918, + "step": 860 + }, + { + "epoch": 11.964613368283093, + "grad_norm": 0.29576948285102844, + "learning_rate": 0.0006, + "loss": 4.3188252449035645, + "step": 861 + }, + { + "epoch": 11.978593272171254, + "grad_norm": 0.2754935026168823, + "learning_rate": 0.0006, + "loss": 4.312817573547363, + "step": 862 + }, + { + "epoch": 11.992573176059414, + "grad_norm": 0.3062523305416107, + "learning_rate": 0.0006, + "loss": 4.288214683532715, + "step": 863 + }, + { + "epoch": 12.0, + "grad_norm": 0.3367644250392914, + "learning_rate": 0.0006, + "loss": 4.314888954162598, + "step": 864 + }, + { + "epoch": 12.0, + "eval_loss": 4.516861438751221, + "eval_runtime": 44.2584, + "eval_samples_per_second": 55.176, + "eval_steps_per_second": 3.457, + "step": 864 + }, + { + "epoch": 12.013979903888162, + "grad_norm": 0.2976512014865875, + "learning_rate": 0.0006, + "loss": 4.278797149658203, + "step": 865 + }, + { + "epoch": 12.027959807776321, + "grad_norm": 0.32217127084732056, + "learning_rate": 0.0006, + "loss": 4.2823615074157715, + "step": 866 + }, + { + "epoch": 12.041939711664483, + "grad_norm": 0.31538400053977966, + "learning_rate": 0.0006, + "loss": 4.252805709838867, + "step": 867 + }, + { + "epoch": 12.055919615552643, + "grad_norm": 0.3501375913619995, + "learning_rate": 0.0006, + "loss": 4.276501655578613, + "step": 868 + }, + { + "epoch": 12.069899519440805, + "grad_norm": 0.3452056646347046, + "learning_rate": 0.0006, + "loss": 4.275739669799805, + "step": 869 + }, + { + "epoch": 12.083879423328964, + "grad_norm": 0.36963316798210144, + "learning_rate": 0.0006, + "loss": 4.3215227127075195, + "step": 870 + }, + { + "epoch": 12.097859327217126, + "grad_norm": 0.41605016589164734, + "learning_rate": 0.0006, + "loss": 4.28739595413208, + "step": 871 + }, + { + "epoch": 12.111839231105286, + "grad_norm": 0.37700653076171875, + "learning_rate": 0.0006, + "loss": 4.291154861450195, + "step": 872 + }, + { + "epoch": 12.125819134993447, + "grad_norm": 0.3194253444671631, + "learning_rate": 0.0006, + "loss": 4.259326934814453, + "step": 873 + }, + { + "epoch": 12.139799038881607, + "grad_norm": 0.31770631670951843, + "learning_rate": 0.0006, + "loss": 4.270082473754883, + "step": 874 + }, + { + "epoch": 12.153778942769769, + "grad_norm": 0.3748120069503784, + "learning_rate": 0.0006, + "loss": 4.2727274894714355, + "step": 875 + }, + { + "epoch": 12.167758846657929, + "grad_norm": 0.3821348547935486, + "learning_rate": 0.0006, + "loss": 4.2848286628723145, + "step": 876 + }, + { + "epoch": 12.18173875054609, + "grad_norm": 0.31894201040267944, + "learning_rate": 0.0006, + "loss": 4.289551258087158, + "step": 877 + }, + { + "epoch": 12.19571865443425, + "grad_norm": 0.2695826292037964, + "learning_rate": 0.0006, + "loss": 4.2797346115112305, + "step": 878 + }, + { + "epoch": 12.209698558322412, + "grad_norm": 0.23966269195079803, + "learning_rate": 0.0006, + "loss": 4.24021577835083, + "step": 879 + }, + { + "epoch": 12.223678462210572, + "grad_norm": 0.24342599511146545, + "learning_rate": 0.0006, + "loss": 4.277721881866455, + "step": 880 + }, + { + "epoch": 12.237658366098733, + "grad_norm": 0.2522958815097809, + "learning_rate": 0.0006, + "loss": 4.263946533203125, + "step": 881 + }, + { + "epoch": 12.251638269986893, + "grad_norm": 0.2708299458026886, + "learning_rate": 0.0006, + "loss": 4.274540901184082, + "step": 882 + }, + { + "epoch": 12.265618173875055, + "grad_norm": 0.2978788912296295, + "learning_rate": 0.0006, + "loss": 4.2674970626831055, + "step": 883 + }, + { + "epoch": 12.279598077763215, + "grad_norm": 0.2898774743080139, + "learning_rate": 0.0006, + "loss": 4.235060691833496, + "step": 884 + }, + { + "epoch": 12.293577981651376, + "grad_norm": 0.27941837906837463, + "learning_rate": 0.0006, + "loss": 4.284140586853027, + "step": 885 + }, + { + "epoch": 12.307557885539538, + "grad_norm": 0.25050559639930725, + "learning_rate": 0.0006, + "loss": 4.270134925842285, + "step": 886 + }, + { + "epoch": 12.321537789427698, + "grad_norm": 0.21867156028747559, + "learning_rate": 0.0006, + "loss": 4.241571426391602, + "step": 887 + }, + { + "epoch": 12.33551769331586, + "grad_norm": 0.24735847115516663, + "learning_rate": 0.0006, + "loss": 4.253087997436523, + "step": 888 + }, + { + "epoch": 12.349497597204019, + "grad_norm": 0.23069104552268982, + "learning_rate": 0.0006, + "loss": 4.258606910705566, + "step": 889 + }, + { + "epoch": 12.36347750109218, + "grad_norm": 0.2594369947910309, + "learning_rate": 0.0006, + "loss": 4.307351112365723, + "step": 890 + }, + { + "epoch": 12.37745740498034, + "grad_norm": 0.25349098443984985, + "learning_rate": 0.0006, + "loss": 4.264268398284912, + "step": 891 + }, + { + "epoch": 12.391437308868502, + "grad_norm": 0.2550840675830841, + "learning_rate": 0.0006, + "loss": 4.247092247009277, + "step": 892 + }, + { + "epoch": 12.405417212756662, + "grad_norm": 0.2107602059841156, + "learning_rate": 0.0006, + "loss": 4.240527153015137, + "step": 893 + }, + { + "epoch": 12.419397116644824, + "grad_norm": 0.2025548368692398, + "learning_rate": 0.0006, + "loss": 4.244686126708984, + "step": 894 + }, + { + "epoch": 12.433377020532983, + "grad_norm": 0.22061701118946075, + "learning_rate": 0.0006, + "loss": 4.233231544494629, + "step": 895 + }, + { + "epoch": 12.447356924421145, + "grad_norm": 0.19503085315227509, + "learning_rate": 0.0006, + "loss": 4.23851203918457, + "step": 896 + }, + { + "epoch": 12.461336828309305, + "grad_norm": 0.19313643872737885, + "learning_rate": 0.0006, + "loss": 4.190886497497559, + "step": 897 + }, + { + "epoch": 12.475316732197467, + "grad_norm": 0.21094176173210144, + "learning_rate": 0.0006, + "loss": 4.277888298034668, + "step": 898 + }, + { + "epoch": 12.489296636085626, + "grad_norm": 0.1980651170015335, + "learning_rate": 0.0006, + "loss": 4.251066207885742, + "step": 899 + }, + { + "epoch": 12.503276539973788, + "grad_norm": 0.179737389087677, + "learning_rate": 0.0006, + "loss": 4.194703102111816, + "step": 900 + }, + { + "epoch": 12.517256443861948, + "grad_norm": 0.19069281220436096, + "learning_rate": 0.0006, + "loss": 4.242412567138672, + "step": 901 + }, + { + "epoch": 12.53123634775011, + "grad_norm": 0.191154345870018, + "learning_rate": 0.0006, + "loss": 4.2432780265808105, + "step": 902 + }, + { + "epoch": 12.54521625163827, + "grad_norm": 0.19760103523731232, + "learning_rate": 0.0006, + "loss": 4.23294734954834, + "step": 903 + }, + { + "epoch": 12.55919615552643, + "grad_norm": 0.19982324540615082, + "learning_rate": 0.0006, + "loss": 4.249764442443848, + "step": 904 + }, + { + "epoch": 12.57317605941459, + "grad_norm": 0.1986108422279358, + "learning_rate": 0.0006, + "loss": 4.213435649871826, + "step": 905 + }, + { + "epoch": 12.587155963302752, + "grad_norm": 0.19727319478988647, + "learning_rate": 0.0006, + "loss": 4.247962951660156, + "step": 906 + }, + { + "epoch": 12.601135867190912, + "grad_norm": 0.23404482007026672, + "learning_rate": 0.0006, + "loss": 4.237396240234375, + "step": 907 + }, + { + "epoch": 12.615115771079074, + "grad_norm": 0.21136441826820374, + "learning_rate": 0.0006, + "loss": 4.236040115356445, + "step": 908 + }, + { + "epoch": 12.629095674967235, + "grad_norm": 0.2209048718214035, + "learning_rate": 0.0006, + "loss": 4.234212875366211, + "step": 909 + }, + { + "epoch": 12.643075578855395, + "grad_norm": 0.22120307385921478, + "learning_rate": 0.0006, + "loss": 4.2711076736450195, + "step": 910 + }, + { + "epoch": 12.657055482743557, + "grad_norm": 0.22733066976070404, + "learning_rate": 0.0006, + "loss": 4.231651306152344, + "step": 911 + }, + { + "epoch": 12.671035386631717, + "grad_norm": 0.2435602843761444, + "learning_rate": 0.0006, + "loss": 4.249372482299805, + "step": 912 + }, + { + "epoch": 12.685015290519878, + "grad_norm": 0.28881654143333435, + "learning_rate": 0.0006, + "loss": 4.2626051902771, + "step": 913 + }, + { + "epoch": 12.698995194408038, + "grad_norm": 0.3211199641227722, + "learning_rate": 0.0006, + "loss": 4.254220485687256, + "step": 914 + }, + { + "epoch": 12.7129750982962, + "grad_norm": 0.3118100166320801, + "learning_rate": 0.0006, + "loss": 4.233747959136963, + "step": 915 + }, + { + "epoch": 12.72695500218436, + "grad_norm": 0.33411866426467896, + "learning_rate": 0.0006, + "loss": 4.270386219024658, + "step": 916 + }, + { + "epoch": 12.740934906072521, + "grad_norm": 0.2968253195285797, + "learning_rate": 0.0006, + "loss": 4.242254257202148, + "step": 917 + }, + { + "epoch": 12.754914809960681, + "grad_norm": 0.2959132194519043, + "learning_rate": 0.0006, + "loss": 4.232100486755371, + "step": 918 + }, + { + "epoch": 12.768894713848843, + "grad_norm": 0.2729283273220062, + "learning_rate": 0.0006, + "loss": 4.233869552612305, + "step": 919 + }, + { + "epoch": 12.782874617737003, + "grad_norm": 0.2669033408164978, + "learning_rate": 0.0006, + "loss": 4.261008262634277, + "step": 920 + }, + { + "epoch": 12.796854521625164, + "grad_norm": 0.2738507091999054, + "learning_rate": 0.0006, + "loss": 4.2286763191223145, + "step": 921 + }, + { + "epoch": 12.810834425513324, + "grad_norm": 0.29105183482170105, + "learning_rate": 0.0006, + "loss": 4.281410217285156, + "step": 922 + }, + { + "epoch": 12.824814329401486, + "grad_norm": 0.31330201029777527, + "learning_rate": 0.0006, + "loss": 4.264181613922119, + "step": 923 + }, + { + "epoch": 12.838794233289645, + "grad_norm": 0.31324025988578796, + "learning_rate": 0.0006, + "loss": 4.250385284423828, + "step": 924 + }, + { + "epoch": 12.852774137177807, + "grad_norm": 0.2727925181388855, + "learning_rate": 0.0006, + "loss": 4.24821138381958, + "step": 925 + }, + { + "epoch": 12.866754041065967, + "grad_norm": 0.27350082993507385, + "learning_rate": 0.0006, + "loss": 4.230215072631836, + "step": 926 + }, + { + "epoch": 12.880733944954128, + "grad_norm": 0.2269950658082962, + "learning_rate": 0.0006, + "loss": 4.210305213928223, + "step": 927 + }, + { + "epoch": 12.89471384884229, + "grad_norm": 0.24667619168758392, + "learning_rate": 0.0006, + "loss": 4.239969253540039, + "step": 928 + }, + { + "epoch": 12.90869375273045, + "grad_norm": 0.22510501742362976, + "learning_rate": 0.0006, + "loss": 4.192750930786133, + "step": 929 + }, + { + "epoch": 12.922673656618612, + "grad_norm": 0.22887611389160156, + "learning_rate": 0.0006, + "loss": 4.264463424682617, + "step": 930 + }, + { + "epoch": 12.936653560506771, + "grad_norm": 0.22195978462696075, + "learning_rate": 0.0006, + "loss": 4.205256938934326, + "step": 931 + }, + { + "epoch": 12.950633464394933, + "grad_norm": 0.23184578120708466, + "learning_rate": 0.0006, + "loss": 4.214578628540039, + "step": 932 + }, + { + "epoch": 12.964613368283093, + "grad_norm": 0.2186676561832428, + "learning_rate": 0.0006, + "loss": 4.227711200714111, + "step": 933 + }, + { + "epoch": 12.978593272171254, + "grad_norm": 0.2160426527261734, + "learning_rate": 0.0006, + "loss": 4.221796989440918, + "step": 934 + }, + { + "epoch": 12.992573176059414, + "grad_norm": 0.21562792360782623, + "learning_rate": 0.0006, + "loss": 4.21957540512085, + "step": 935 + }, + { + "epoch": 13.0, + "grad_norm": 0.22538058459758759, + "learning_rate": 0.0006, + "loss": 4.2353973388671875, + "step": 936 + }, + { + "epoch": 13.0, + "eval_loss": 4.426600933074951, + "eval_runtime": 44.8138, + "eval_samples_per_second": 54.492, + "eval_steps_per_second": 3.414, + "step": 936 + }, + { + "epoch": 13.013979903888162, + "grad_norm": 0.24888049066066742, + "learning_rate": 0.0006, + "loss": 4.18648624420166, + "step": 937 + }, + { + "epoch": 13.027959807776321, + "grad_norm": 0.28330180048942566, + "learning_rate": 0.0006, + "loss": 4.188892364501953, + "step": 938 + }, + { + "epoch": 13.041939711664483, + "grad_norm": 0.31152188777923584, + "learning_rate": 0.0006, + "loss": 4.2053399085998535, + "step": 939 + }, + { + "epoch": 13.055919615552643, + "grad_norm": 0.2842433452606201, + "learning_rate": 0.0006, + "loss": 4.191902160644531, + "step": 940 + }, + { + "epoch": 13.069899519440805, + "grad_norm": 0.23664532601833344, + "learning_rate": 0.0006, + "loss": 4.1831865310668945, + "step": 941 + }, + { + "epoch": 13.083879423328964, + "grad_norm": 0.24204140901565552, + "learning_rate": 0.0006, + "loss": 4.202641487121582, + "step": 942 + }, + { + "epoch": 13.097859327217126, + "grad_norm": 0.235311359167099, + "learning_rate": 0.0006, + "loss": 4.174511909484863, + "step": 943 + }, + { + "epoch": 13.111839231105286, + "grad_norm": 0.27127715945243835, + "learning_rate": 0.0006, + "loss": 4.201844215393066, + "step": 944 + }, + { + "epoch": 13.125819134993447, + "grad_norm": 0.2722373604774475, + "learning_rate": 0.0006, + "loss": 4.157383918762207, + "step": 945 + }, + { + "epoch": 13.139799038881607, + "grad_norm": 0.25446659326553345, + "learning_rate": 0.0006, + "loss": 4.221236228942871, + "step": 946 + }, + { + "epoch": 13.153778942769769, + "grad_norm": 0.273017019033432, + "learning_rate": 0.0006, + "loss": 4.195512771606445, + "step": 947 + }, + { + "epoch": 13.167758846657929, + "grad_norm": 0.24766312539577484, + "learning_rate": 0.0006, + "loss": 4.220959663391113, + "step": 948 + }, + { + "epoch": 13.18173875054609, + "grad_norm": 0.24636317789554596, + "learning_rate": 0.0006, + "loss": 4.214302062988281, + "step": 949 + }, + { + "epoch": 13.19571865443425, + "grad_norm": 0.3177756667137146, + "learning_rate": 0.0006, + "loss": 4.213500022888184, + "step": 950 + }, + { + "epoch": 13.209698558322412, + "grad_norm": 0.44579195976257324, + "learning_rate": 0.0006, + "loss": 4.227644920349121, + "step": 951 + }, + { + "epoch": 13.223678462210572, + "grad_norm": 0.4217414855957031, + "learning_rate": 0.0006, + "loss": 4.180937767028809, + "step": 952 + }, + { + "epoch": 13.237658366098733, + "grad_norm": 0.30148059129714966, + "learning_rate": 0.0006, + "loss": 4.207760810852051, + "step": 953 + }, + { + "epoch": 13.251638269986893, + "grad_norm": 0.3192492127418518, + "learning_rate": 0.0006, + "loss": 4.197999000549316, + "step": 954 + }, + { + "epoch": 13.265618173875055, + "grad_norm": 0.37334588170051575, + "learning_rate": 0.0006, + "loss": 4.208001136779785, + "step": 955 + }, + { + "epoch": 13.279598077763215, + "grad_norm": 0.4059637784957886, + "learning_rate": 0.0006, + "loss": 4.211322784423828, + "step": 956 + }, + { + "epoch": 13.293577981651376, + "grad_norm": 0.3389599323272705, + "learning_rate": 0.0006, + "loss": 4.204404354095459, + "step": 957 + }, + { + "epoch": 13.307557885539538, + "grad_norm": 0.2675766050815582, + "learning_rate": 0.0006, + "loss": 4.245941162109375, + "step": 958 + }, + { + "epoch": 13.321537789427698, + "grad_norm": 0.2730264365673065, + "learning_rate": 0.0006, + "loss": 4.2221221923828125, + "step": 959 + }, + { + "epoch": 13.33551769331586, + "grad_norm": 0.26458224654197693, + "learning_rate": 0.0006, + "loss": 4.205596923828125, + "step": 960 + }, + { + "epoch": 13.349497597204019, + "grad_norm": 0.2872551381587982, + "learning_rate": 0.0006, + "loss": 4.196977615356445, + "step": 961 + }, + { + "epoch": 13.36347750109218, + "grad_norm": 0.2954796850681305, + "learning_rate": 0.0006, + "loss": 4.202796936035156, + "step": 962 + }, + { + "epoch": 13.37745740498034, + "grad_norm": 0.2619425654411316, + "learning_rate": 0.0006, + "loss": 4.196845054626465, + "step": 963 + }, + { + "epoch": 13.391437308868502, + "grad_norm": 0.30088478326797485, + "learning_rate": 0.0006, + "loss": 4.219697952270508, + "step": 964 + }, + { + "epoch": 13.405417212756662, + "grad_norm": 0.30388689041137695, + "learning_rate": 0.0006, + "loss": 4.187566757202148, + "step": 965 + }, + { + "epoch": 13.419397116644824, + "grad_norm": 0.27918127179145813, + "learning_rate": 0.0006, + "loss": 4.223600387573242, + "step": 966 + }, + { + "epoch": 13.433377020532983, + "grad_norm": 0.27634528279304504, + "learning_rate": 0.0006, + "loss": 4.165332317352295, + "step": 967 + }, + { + "epoch": 13.447356924421145, + "grad_norm": 0.28830021619796753, + "learning_rate": 0.0006, + "loss": 4.204029560089111, + "step": 968 + }, + { + "epoch": 13.461336828309305, + "grad_norm": 0.29220864176750183, + "learning_rate": 0.0006, + "loss": 4.218057155609131, + "step": 969 + }, + { + "epoch": 13.475316732197467, + "grad_norm": 0.3089624345302582, + "learning_rate": 0.0006, + "loss": 4.200654983520508, + "step": 970 + }, + { + "epoch": 13.489296636085626, + "grad_norm": 0.36479851603507996, + "learning_rate": 0.0006, + "loss": 4.182811737060547, + "step": 971 + }, + { + "epoch": 13.503276539973788, + "grad_norm": 0.37561097741127014, + "learning_rate": 0.0006, + "loss": 4.190266132354736, + "step": 972 + }, + { + "epoch": 13.517256443861948, + "grad_norm": 0.3263583183288574, + "learning_rate": 0.0006, + "loss": 4.214815616607666, + "step": 973 + }, + { + "epoch": 13.53123634775011, + "grad_norm": 0.21552999317646027, + "learning_rate": 0.0006, + "loss": 4.171380043029785, + "step": 974 + }, + { + "epoch": 13.54521625163827, + "grad_norm": 0.247328519821167, + "learning_rate": 0.0006, + "loss": 4.175377368927002, + "step": 975 + }, + { + "epoch": 13.55919615552643, + "grad_norm": 0.23740540444850922, + "learning_rate": 0.0006, + "loss": 4.212357997894287, + "step": 976 + }, + { + "epoch": 13.57317605941459, + "grad_norm": 0.21533876657485962, + "learning_rate": 0.0006, + "loss": 4.203285217285156, + "step": 977 + }, + { + "epoch": 13.587155963302752, + "grad_norm": 0.21462024748325348, + "learning_rate": 0.0006, + "loss": 4.178012371063232, + "step": 978 + }, + { + "epoch": 13.601135867190912, + "grad_norm": 0.2279169261455536, + "learning_rate": 0.0006, + "loss": 4.193912982940674, + "step": 979 + }, + { + "epoch": 13.615115771079074, + "grad_norm": 0.2202417552471161, + "learning_rate": 0.0006, + "loss": 4.167629718780518, + "step": 980 + }, + { + "epoch": 13.629095674967235, + "grad_norm": 0.20586472749710083, + "learning_rate": 0.0006, + "loss": 4.159290313720703, + "step": 981 + }, + { + "epoch": 13.643075578855395, + "grad_norm": 0.20200690627098083, + "learning_rate": 0.0006, + "loss": 4.210315227508545, + "step": 982 + }, + { + "epoch": 13.657055482743557, + "grad_norm": 0.21710257232189178, + "learning_rate": 0.0006, + "loss": 4.21730375289917, + "step": 983 + }, + { + "epoch": 13.671035386631717, + "grad_norm": 0.22058045864105225, + "learning_rate": 0.0006, + "loss": 4.1996073722839355, + "step": 984 + }, + { + "epoch": 13.685015290519878, + "grad_norm": 0.21549592912197113, + "learning_rate": 0.0006, + "loss": 4.209203720092773, + "step": 985 + }, + { + "epoch": 13.698995194408038, + "grad_norm": 0.22274717688560486, + "learning_rate": 0.0006, + "loss": 4.220660209655762, + "step": 986 + }, + { + "epoch": 13.7129750982962, + "grad_norm": 0.22791637480258942, + "learning_rate": 0.0006, + "loss": 4.158679962158203, + "step": 987 + }, + { + "epoch": 13.72695500218436, + "grad_norm": 0.216218963265419, + "learning_rate": 0.0006, + "loss": 4.188124656677246, + "step": 988 + }, + { + "epoch": 13.740934906072521, + "grad_norm": 0.19149383902549744, + "learning_rate": 0.0006, + "loss": 4.181729316711426, + "step": 989 + }, + { + "epoch": 13.754914809960681, + "grad_norm": 0.18964019417762756, + "learning_rate": 0.0006, + "loss": 4.184767246246338, + "step": 990 + }, + { + "epoch": 13.768894713848843, + "grad_norm": 0.1778000295162201, + "learning_rate": 0.0006, + "loss": 4.1802263259887695, + "step": 991 + }, + { + "epoch": 13.782874617737003, + "grad_norm": 0.18277616798877716, + "learning_rate": 0.0006, + "loss": 4.1657867431640625, + "step": 992 + }, + { + "epoch": 13.796854521625164, + "grad_norm": 0.18610034883022308, + "learning_rate": 0.0006, + "loss": 4.156744956970215, + "step": 993 + }, + { + "epoch": 13.810834425513324, + "grad_norm": 0.19332963228225708, + "learning_rate": 0.0006, + "loss": 4.143558502197266, + "step": 994 + }, + { + "epoch": 13.824814329401486, + "grad_norm": 0.19758112728595734, + "learning_rate": 0.0006, + "loss": 4.195793151855469, + "step": 995 + }, + { + "epoch": 13.838794233289645, + "grad_norm": 0.1933647245168686, + "learning_rate": 0.0006, + "loss": 4.169734954833984, + "step": 996 + }, + { + "epoch": 13.852774137177807, + "grad_norm": 0.2362028956413269, + "learning_rate": 0.0006, + "loss": 4.175025939941406, + "step": 997 + }, + { + "epoch": 13.866754041065967, + "grad_norm": 0.2465490996837616, + "learning_rate": 0.0006, + "loss": 4.173909664154053, + "step": 998 + }, + { + "epoch": 13.880733944954128, + "grad_norm": 0.23449952900409698, + "learning_rate": 0.0006, + "loss": 4.173429489135742, + "step": 999 + }, + { + "epoch": 13.89471384884229, + "grad_norm": 0.2282160222530365, + "learning_rate": 0.0006, + "loss": 4.158538341522217, + "step": 1000 + }, + { + "epoch": 13.90869375273045, + "grad_norm": 0.21066738665103912, + "learning_rate": 0.0006, + "loss": 4.171584129333496, + "step": 1001 + }, + { + "epoch": 13.922673656618612, + "grad_norm": 0.18787573277950287, + "learning_rate": 0.0006, + "loss": 4.1837544441223145, + "step": 1002 + }, + { + "epoch": 13.936653560506771, + "grad_norm": 0.2001059353351593, + "learning_rate": 0.0006, + "loss": 4.160369873046875, + "step": 1003 + }, + { + "epoch": 13.950633464394933, + "grad_norm": 0.21644988656044006, + "learning_rate": 0.0006, + "loss": 4.221372604370117, + "step": 1004 + }, + { + "epoch": 13.964613368283093, + "grad_norm": 0.22083887457847595, + "learning_rate": 0.0006, + "loss": 4.149261474609375, + "step": 1005 + }, + { + "epoch": 13.978593272171254, + "grad_norm": 0.2201409637928009, + "learning_rate": 0.0006, + "loss": 4.192010879516602, + "step": 1006 + }, + { + "epoch": 13.992573176059414, + "grad_norm": 0.18888601660728455, + "learning_rate": 0.0006, + "loss": 4.17539119720459, + "step": 1007 + }, + { + "epoch": 14.0, + "grad_norm": 0.2073872834444046, + "learning_rate": 0.0006, + "loss": 4.145265579223633, + "step": 1008 + }, + { + "epoch": 14.0, + "eval_loss": 4.36876106262207, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 1008 + }, + { + "epoch": 14.013979903888162, + "grad_norm": 0.20773135125637054, + "learning_rate": 0.0006, + "loss": 4.132615089416504, + "step": 1009 + }, + { + "epoch": 14.027959807776321, + "grad_norm": 0.22409620881080627, + "learning_rate": 0.0006, + "loss": 4.172839164733887, + "step": 1010 + }, + { + "epoch": 14.041939711664483, + "grad_norm": 0.24046066403388977, + "learning_rate": 0.0006, + "loss": 4.126678943634033, + "step": 1011 + }, + { + "epoch": 14.055919615552643, + "grad_norm": 0.29185160994529724, + "learning_rate": 0.0006, + "loss": 4.177952766418457, + "step": 1012 + }, + { + "epoch": 14.069899519440805, + "grad_norm": 0.2984033226966858, + "learning_rate": 0.0006, + "loss": 4.155030250549316, + "step": 1013 + }, + { + "epoch": 14.083879423328964, + "grad_norm": 0.30262473225593567, + "learning_rate": 0.0006, + "loss": 4.145394325256348, + "step": 1014 + }, + { + "epoch": 14.097859327217126, + "grad_norm": 0.3278133273124695, + "learning_rate": 0.0006, + "loss": 4.172739028930664, + "step": 1015 + }, + { + "epoch": 14.111839231105286, + "grad_norm": 0.3285452425479889, + "learning_rate": 0.0006, + "loss": 4.153196334838867, + "step": 1016 + }, + { + "epoch": 14.125819134993447, + "grad_norm": 0.33912697434425354, + "learning_rate": 0.0006, + "loss": 4.098162651062012, + "step": 1017 + }, + { + "epoch": 14.139799038881607, + "grad_norm": 0.32080814242362976, + "learning_rate": 0.0006, + "loss": 4.157135009765625, + "step": 1018 + }, + { + "epoch": 14.153778942769769, + "grad_norm": 0.31288477778434753, + "learning_rate": 0.0006, + "loss": 4.142683029174805, + "step": 1019 + }, + { + "epoch": 14.167758846657929, + "grad_norm": 0.350289523601532, + "learning_rate": 0.0006, + "loss": 4.134700775146484, + "step": 1020 + }, + { + "epoch": 14.18173875054609, + "grad_norm": 0.34274575114250183, + "learning_rate": 0.0006, + "loss": 4.1578569412231445, + "step": 1021 + }, + { + "epoch": 14.19571865443425, + "grad_norm": 0.2843035161495209, + "learning_rate": 0.0006, + "loss": 4.13760232925415, + "step": 1022 + }, + { + "epoch": 14.209698558322412, + "grad_norm": 0.28235161304473877, + "learning_rate": 0.0006, + "loss": 4.1492462158203125, + "step": 1023 + }, + { + "epoch": 14.223678462210572, + "grad_norm": 0.24407248198986053, + "learning_rate": 0.0006, + "loss": 4.144372463226318, + "step": 1024 + }, + { + "epoch": 14.237658366098733, + "grad_norm": 0.2489742934703827, + "learning_rate": 0.0006, + "loss": 4.137950897216797, + "step": 1025 + }, + { + "epoch": 14.251638269986893, + "grad_norm": 0.26035651564598083, + "learning_rate": 0.0006, + "loss": 4.144070625305176, + "step": 1026 + }, + { + "epoch": 14.265618173875055, + "grad_norm": 0.2726516127586365, + "learning_rate": 0.0006, + "loss": 4.145204067230225, + "step": 1027 + }, + { + "epoch": 14.279598077763215, + "grad_norm": 0.2723483443260193, + "learning_rate": 0.0006, + "loss": 4.118407249450684, + "step": 1028 + }, + { + "epoch": 14.293577981651376, + "grad_norm": 0.27476269006729126, + "learning_rate": 0.0006, + "loss": 4.111325263977051, + "step": 1029 + }, + { + "epoch": 14.307557885539538, + "grad_norm": 0.26202502846717834, + "learning_rate": 0.0006, + "loss": 4.122248649597168, + "step": 1030 + }, + { + "epoch": 14.321537789427698, + "grad_norm": 0.2472032904624939, + "learning_rate": 0.0006, + "loss": 4.157790184020996, + "step": 1031 + }, + { + "epoch": 14.33551769331586, + "grad_norm": 0.2518343925476074, + "learning_rate": 0.0006, + "loss": 4.109132766723633, + "step": 1032 + }, + { + "epoch": 14.349497597204019, + "grad_norm": 0.2652401924133301, + "learning_rate": 0.0006, + "loss": 4.144079685211182, + "step": 1033 + }, + { + "epoch": 14.36347750109218, + "grad_norm": 0.2356770783662796, + "learning_rate": 0.0006, + "loss": 4.128426551818848, + "step": 1034 + }, + { + "epoch": 14.37745740498034, + "grad_norm": 0.2164214551448822, + "learning_rate": 0.0006, + "loss": 4.1644392013549805, + "step": 1035 + }, + { + "epoch": 14.391437308868502, + "grad_norm": 0.22383111715316772, + "learning_rate": 0.0006, + "loss": 4.165862083435059, + "step": 1036 + }, + { + "epoch": 14.405417212756662, + "grad_norm": 0.23152419924736023, + "learning_rate": 0.0006, + "loss": 4.140036582946777, + "step": 1037 + }, + { + "epoch": 14.419397116644824, + "grad_norm": 0.2387741357088089, + "learning_rate": 0.0006, + "loss": 4.130461692810059, + "step": 1038 + }, + { + "epoch": 14.433377020532983, + "grad_norm": 0.24018129706382751, + "learning_rate": 0.0006, + "loss": 4.148482322692871, + "step": 1039 + }, + { + "epoch": 14.447356924421145, + "grad_norm": 0.25487351417541504, + "learning_rate": 0.0006, + "loss": 4.158121109008789, + "step": 1040 + }, + { + "epoch": 14.461336828309305, + "grad_norm": 0.28220096230506897, + "learning_rate": 0.0006, + "loss": 4.160198211669922, + "step": 1041 + }, + { + "epoch": 14.475316732197467, + "grad_norm": 0.2574434280395508, + "learning_rate": 0.0006, + "loss": 4.168512344360352, + "step": 1042 + }, + { + "epoch": 14.489296636085626, + "grad_norm": 0.22569820284843445, + "learning_rate": 0.0006, + "loss": 4.1595001220703125, + "step": 1043 + }, + { + "epoch": 14.503276539973788, + "grad_norm": 0.2473423182964325, + "learning_rate": 0.0006, + "loss": 4.084580898284912, + "step": 1044 + }, + { + "epoch": 14.517256443861948, + "grad_norm": 0.24281060695648193, + "learning_rate": 0.0006, + "loss": 4.139714241027832, + "step": 1045 + }, + { + "epoch": 14.53123634775011, + "grad_norm": 0.24691344797611237, + "learning_rate": 0.0006, + "loss": 4.115398406982422, + "step": 1046 + }, + { + "epoch": 14.54521625163827, + "grad_norm": 0.2583645284175873, + "learning_rate": 0.0006, + "loss": 4.142148494720459, + "step": 1047 + }, + { + "epoch": 14.55919615552643, + "grad_norm": 0.23258574306964874, + "learning_rate": 0.0006, + "loss": 4.16251277923584, + "step": 1048 + }, + { + "epoch": 14.57317605941459, + "grad_norm": 0.22103039920330048, + "learning_rate": 0.0006, + "loss": 4.1308441162109375, + "step": 1049 + }, + { + "epoch": 14.587155963302752, + "grad_norm": 0.23713579773902893, + "learning_rate": 0.0006, + "loss": 4.1565985679626465, + "step": 1050 + }, + { + "epoch": 14.601135867190912, + "grad_norm": 0.24406634271144867, + "learning_rate": 0.0006, + "loss": 4.14628267288208, + "step": 1051 + }, + { + "epoch": 14.615115771079074, + "grad_norm": 0.26821228861808777, + "learning_rate": 0.0006, + "loss": 4.138063430786133, + "step": 1052 + }, + { + "epoch": 14.629095674967235, + "grad_norm": 0.25483864545822144, + "learning_rate": 0.0006, + "loss": 4.1311163902282715, + "step": 1053 + }, + { + "epoch": 14.643075578855395, + "grad_norm": 0.23937982320785522, + "learning_rate": 0.0006, + "loss": 4.150882244110107, + "step": 1054 + }, + { + "epoch": 14.657055482743557, + "grad_norm": 0.21896475553512573, + "learning_rate": 0.0006, + "loss": 4.114015102386475, + "step": 1055 + }, + { + "epoch": 14.671035386631717, + "grad_norm": 0.20821231603622437, + "learning_rate": 0.0006, + "loss": 4.139034271240234, + "step": 1056 + }, + { + "epoch": 14.685015290519878, + "grad_norm": 0.1978551596403122, + "learning_rate": 0.0006, + "loss": 4.1810503005981445, + "step": 1057 + }, + { + "epoch": 14.698995194408038, + "grad_norm": 0.1945771872997284, + "learning_rate": 0.0006, + "loss": 4.120734214782715, + "step": 1058 + }, + { + "epoch": 14.7129750982962, + "grad_norm": 0.19518673419952393, + "learning_rate": 0.0006, + "loss": 4.14264440536499, + "step": 1059 + }, + { + "epoch": 14.72695500218436, + "grad_norm": 0.202596515417099, + "learning_rate": 0.0006, + "loss": 4.151649475097656, + "step": 1060 + }, + { + "epoch": 14.740934906072521, + "grad_norm": 0.1904762089252472, + "learning_rate": 0.0006, + "loss": 4.127899169921875, + "step": 1061 + }, + { + "epoch": 14.754914809960681, + "grad_norm": 0.20685508847236633, + "learning_rate": 0.0006, + "loss": 4.093445777893066, + "step": 1062 + }, + { + "epoch": 14.768894713848843, + "grad_norm": 0.22678329050540924, + "learning_rate": 0.0006, + "loss": 4.132084369659424, + "step": 1063 + }, + { + "epoch": 14.782874617737003, + "grad_norm": 0.24631841480731964, + "learning_rate": 0.0006, + "loss": 4.154788970947266, + "step": 1064 + }, + { + "epoch": 14.796854521625164, + "grad_norm": 0.24445782601833344, + "learning_rate": 0.0006, + "loss": 4.144735336303711, + "step": 1065 + }, + { + "epoch": 14.810834425513324, + "grad_norm": 0.22330640256404877, + "learning_rate": 0.0006, + "loss": 4.159893989562988, + "step": 1066 + }, + { + "epoch": 14.824814329401486, + "grad_norm": 0.22422967851161957, + "learning_rate": 0.0006, + "loss": 4.104874610900879, + "step": 1067 + }, + { + "epoch": 14.838794233289645, + "grad_norm": 0.24583931267261505, + "learning_rate": 0.0006, + "loss": 4.139403820037842, + "step": 1068 + }, + { + "epoch": 14.852774137177807, + "grad_norm": 0.2917379140853882, + "learning_rate": 0.0006, + "loss": 4.168988227844238, + "step": 1069 + }, + { + "epoch": 14.866754041065967, + "grad_norm": 0.3171777129173279, + "learning_rate": 0.0006, + "loss": 4.131263732910156, + "step": 1070 + }, + { + "epoch": 14.880733944954128, + "grad_norm": 0.3039591312408447, + "learning_rate": 0.0006, + "loss": 4.149853706359863, + "step": 1071 + }, + { + "epoch": 14.89471384884229, + "grad_norm": 0.2690650522708893, + "learning_rate": 0.0006, + "loss": 4.154787540435791, + "step": 1072 + }, + { + "epoch": 14.90869375273045, + "grad_norm": 0.28683212399482727, + "learning_rate": 0.0006, + "loss": 4.12751579284668, + "step": 1073 + }, + { + "epoch": 14.922673656618612, + "grad_norm": 0.30022913217544556, + "learning_rate": 0.0006, + "loss": 4.141940116882324, + "step": 1074 + }, + { + "epoch": 14.936653560506771, + "grad_norm": 0.3312259316444397, + "learning_rate": 0.0006, + "loss": 4.141905784606934, + "step": 1075 + }, + { + "epoch": 14.950633464394933, + "grad_norm": 0.31159237027168274, + "learning_rate": 0.0006, + "loss": 4.160192966461182, + "step": 1076 + }, + { + "epoch": 14.964613368283093, + "grad_norm": 0.30093592405319214, + "learning_rate": 0.0006, + "loss": 4.1085076332092285, + "step": 1077 + }, + { + "epoch": 14.978593272171254, + "grad_norm": 0.2728535830974579, + "learning_rate": 0.0006, + "loss": 4.156959056854248, + "step": 1078 + }, + { + "epoch": 14.992573176059414, + "grad_norm": 0.24766813218593597, + "learning_rate": 0.0006, + "loss": 4.113999843597412, + "step": 1079 + }, + { + "epoch": 15.0, + "grad_norm": 0.2538154721260071, + "learning_rate": 0.0006, + "loss": 4.147134780883789, + "step": 1080 + }, + { + "epoch": 15.0, + "eval_loss": 4.323154926300049, + "eval_runtime": 44.8813, + "eval_samples_per_second": 54.41, + "eval_steps_per_second": 3.409, + "step": 1080 + }, + { + "epoch": 15.013979903888162, + "grad_norm": 0.22535280883312225, + "learning_rate": 0.0006, + "loss": 4.112179756164551, + "step": 1081 + }, + { + "epoch": 15.027959807776321, + "grad_norm": 0.24340929090976715, + "learning_rate": 0.0006, + "loss": 4.080923080444336, + "step": 1082 + }, + { + "epoch": 15.041939711664483, + "grad_norm": 0.23159465193748474, + "learning_rate": 0.0006, + "loss": 4.097067356109619, + "step": 1083 + }, + { + "epoch": 15.055919615552643, + "grad_norm": 0.22674769163131714, + "learning_rate": 0.0006, + "loss": 4.118601322174072, + "step": 1084 + }, + { + "epoch": 15.069899519440805, + "grad_norm": 0.2524292469024658, + "learning_rate": 0.0006, + "loss": 4.101109504699707, + "step": 1085 + }, + { + "epoch": 15.083879423328964, + "grad_norm": 0.2505405843257904, + "learning_rate": 0.0006, + "loss": 4.121405601501465, + "step": 1086 + }, + { + "epoch": 15.097859327217126, + "grad_norm": 0.2557983696460724, + "learning_rate": 0.0006, + "loss": 4.1063947677612305, + "step": 1087 + }, + { + "epoch": 15.111839231105286, + "grad_norm": 0.24452129006385803, + "learning_rate": 0.0006, + "loss": 4.086133003234863, + "step": 1088 + }, + { + "epoch": 15.125819134993447, + "grad_norm": 0.25821781158447266, + "learning_rate": 0.0006, + "loss": 4.076262950897217, + "step": 1089 + }, + { + "epoch": 15.139799038881607, + "grad_norm": 0.23650537431240082, + "learning_rate": 0.0006, + "loss": 4.101842880249023, + "step": 1090 + }, + { + "epoch": 15.153778942769769, + "grad_norm": 0.2206192910671234, + "learning_rate": 0.0006, + "loss": 4.11027193069458, + "step": 1091 + }, + { + "epoch": 15.167758846657929, + "grad_norm": 0.21843163669109344, + "learning_rate": 0.0006, + "loss": 4.098437309265137, + "step": 1092 + }, + { + "epoch": 15.18173875054609, + "grad_norm": 0.2528176009654999, + "learning_rate": 0.0006, + "loss": 4.108713150024414, + "step": 1093 + }, + { + "epoch": 15.19571865443425, + "grad_norm": 0.26697206497192383, + "learning_rate": 0.0006, + "loss": 4.113210201263428, + "step": 1094 + }, + { + "epoch": 15.209698558322412, + "grad_norm": 0.26480963826179504, + "learning_rate": 0.0006, + "loss": 4.1103620529174805, + "step": 1095 + }, + { + "epoch": 15.223678462210572, + "grad_norm": 0.24887347221374512, + "learning_rate": 0.0006, + "loss": 4.103529930114746, + "step": 1096 + }, + { + "epoch": 15.237658366098733, + "grad_norm": 0.2344668060541153, + "learning_rate": 0.0006, + "loss": 4.129784107208252, + "step": 1097 + }, + { + "epoch": 15.251638269986893, + "grad_norm": 0.22639742493629456, + "learning_rate": 0.0006, + "loss": 4.113495349884033, + "step": 1098 + }, + { + "epoch": 15.265618173875055, + "grad_norm": 0.22466333210468292, + "learning_rate": 0.0006, + "loss": 4.102309703826904, + "step": 1099 + }, + { + "epoch": 15.279598077763215, + "grad_norm": 0.25135037302970886, + "learning_rate": 0.0006, + "loss": 4.117668628692627, + "step": 1100 + }, + { + "epoch": 15.293577981651376, + "grad_norm": 0.2347089946269989, + "learning_rate": 0.0006, + "loss": 4.086637496948242, + "step": 1101 + }, + { + "epoch": 15.307557885539538, + "grad_norm": 0.2347242832183838, + "learning_rate": 0.0006, + "loss": 4.098714828491211, + "step": 1102 + }, + { + "epoch": 15.321537789427698, + "grad_norm": 0.23990283906459808, + "learning_rate": 0.0006, + "loss": 4.079837799072266, + "step": 1103 + }, + { + "epoch": 15.33551769331586, + "grad_norm": 0.22366675734519958, + "learning_rate": 0.0006, + "loss": 4.108136177062988, + "step": 1104 + }, + { + "epoch": 15.349497597204019, + "grad_norm": 0.21823780238628387, + "learning_rate": 0.0006, + "loss": 4.10054349899292, + "step": 1105 + }, + { + "epoch": 15.36347750109218, + "grad_norm": 0.23059198260307312, + "learning_rate": 0.0006, + "loss": 4.108620643615723, + "step": 1106 + }, + { + "epoch": 15.37745740498034, + "grad_norm": 0.2313755601644516, + "learning_rate": 0.0006, + "loss": 4.088565826416016, + "step": 1107 + }, + { + "epoch": 15.391437308868502, + "grad_norm": 0.2546829283237457, + "learning_rate": 0.0006, + "loss": 4.104948043823242, + "step": 1108 + }, + { + "epoch": 15.405417212756662, + "grad_norm": 0.23666726052761078, + "learning_rate": 0.0006, + "loss": 4.111965179443359, + "step": 1109 + }, + { + "epoch": 15.419397116644824, + "grad_norm": 0.21971021592617035, + "learning_rate": 0.0006, + "loss": 4.097846984863281, + "step": 1110 + }, + { + "epoch": 15.433377020532983, + "grad_norm": 0.20951911807060242, + "learning_rate": 0.0006, + "loss": 4.110099792480469, + "step": 1111 + }, + { + "epoch": 15.447356924421145, + "grad_norm": 0.19590918719768524, + "learning_rate": 0.0006, + "loss": 4.101154327392578, + "step": 1112 + }, + { + "epoch": 15.461336828309305, + "grad_norm": 0.21048946678638458, + "learning_rate": 0.0006, + "loss": 4.0986127853393555, + "step": 1113 + }, + { + "epoch": 15.475316732197467, + "grad_norm": 0.21423374116420746, + "learning_rate": 0.0006, + "loss": 4.082328796386719, + "step": 1114 + }, + { + "epoch": 15.489296636085626, + "grad_norm": 0.227146714925766, + "learning_rate": 0.0006, + "loss": 4.105281829833984, + "step": 1115 + }, + { + "epoch": 15.503276539973788, + "grad_norm": 0.2079153060913086, + "learning_rate": 0.0006, + "loss": 4.100836753845215, + "step": 1116 + }, + { + "epoch": 15.517256443861948, + "grad_norm": 0.21084675192832947, + "learning_rate": 0.0006, + "loss": 4.0934343338012695, + "step": 1117 + }, + { + "epoch": 15.53123634775011, + "grad_norm": 0.23863616585731506, + "learning_rate": 0.0006, + "loss": 4.101540565490723, + "step": 1118 + }, + { + "epoch": 15.54521625163827, + "grad_norm": 0.2518490254878998, + "learning_rate": 0.0006, + "loss": 4.12303352355957, + "step": 1119 + }, + { + "epoch": 15.55919615552643, + "grad_norm": 0.24282905459403992, + "learning_rate": 0.0006, + "loss": 4.080670356750488, + "step": 1120 + }, + { + "epoch": 15.57317605941459, + "grad_norm": 0.24171605706214905, + "learning_rate": 0.0006, + "loss": 4.117938041687012, + "step": 1121 + }, + { + "epoch": 15.587155963302752, + "grad_norm": 0.28453412652015686, + "learning_rate": 0.0006, + "loss": 4.080114364624023, + "step": 1122 + }, + { + "epoch": 15.601135867190912, + "grad_norm": 0.30322617292404175, + "learning_rate": 0.0006, + "loss": 4.079695701599121, + "step": 1123 + }, + { + "epoch": 15.615115771079074, + "grad_norm": 0.2657633125782013, + "learning_rate": 0.0006, + "loss": 4.0916290283203125, + "step": 1124 + }, + { + "epoch": 15.629095674967235, + "grad_norm": 0.2467080056667328, + "learning_rate": 0.0006, + "loss": 4.095594882965088, + "step": 1125 + }, + { + "epoch": 15.643075578855395, + "grad_norm": 0.21767394244670868, + "learning_rate": 0.0006, + "loss": 4.079174041748047, + "step": 1126 + }, + { + "epoch": 15.657055482743557, + "grad_norm": 0.2088327705860138, + "learning_rate": 0.0006, + "loss": 4.060707092285156, + "step": 1127 + }, + { + "epoch": 15.671035386631717, + "grad_norm": 0.1921205073595047, + "learning_rate": 0.0006, + "loss": 4.073911666870117, + "step": 1128 + }, + { + "epoch": 15.685015290519878, + "grad_norm": 0.209339901804924, + "learning_rate": 0.0006, + "loss": 4.089954376220703, + "step": 1129 + }, + { + "epoch": 15.698995194408038, + "grad_norm": 0.23513881862163544, + "learning_rate": 0.0006, + "loss": 4.084906578063965, + "step": 1130 + }, + { + "epoch": 15.7129750982962, + "grad_norm": 0.26140275597572327, + "learning_rate": 0.0006, + "loss": 4.086570739746094, + "step": 1131 + }, + { + "epoch": 15.72695500218436, + "grad_norm": 0.290431946516037, + "learning_rate": 0.0006, + "loss": 4.071229457855225, + "step": 1132 + }, + { + "epoch": 15.740934906072521, + "grad_norm": 0.3061376214027405, + "learning_rate": 0.0006, + "loss": 4.103148460388184, + "step": 1133 + }, + { + "epoch": 15.754914809960681, + "grad_norm": 0.26312482357025146, + "learning_rate": 0.0006, + "loss": 4.088448524475098, + "step": 1134 + }, + { + "epoch": 15.768894713848843, + "grad_norm": 0.22474883496761322, + "learning_rate": 0.0006, + "loss": 4.091766834259033, + "step": 1135 + }, + { + "epoch": 15.782874617737003, + "grad_norm": 0.2341146171092987, + "learning_rate": 0.0006, + "loss": 4.1222758293151855, + "step": 1136 + }, + { + "epoch": 15.796854521625164, + "grad_norm": 0.23556149005889893, + "learning_rate": 0.0006, + "loss": 4.094954013824463, + "step": 1137 + }, + { + "epoch": 15.810834425513324, + "grad_norm": 0.263315349817276, + "learning_rate": 0.0006, + "loss": 4.1065473556518555, + "step": 1138 + }, + { + "epoch": 15.824814329401486, + "grad_norm": 0.2700869143009186, + "learning_rate": 0.0006, + "loss": 4.0890045166015625, + "step": 1139 + }, + { + "epoch": 15.838794233289645, + "grad_norm": 0.28697484731674194, + "learning_rate": 0.0006, + "loss": 4.092496395111084, + "step": 1140 + }, + { + "epoch": 15.852774137177807, + "grad_norm": 0.2824092507362366, + "learning_rate": 0.0006, + "loss": 4.079615592956543, + "step": 1141 + }, + { + "epoch": 15.866754041065967, + "grad_norm": 0.24547280371189117, + "learning_rate": 0.0006, + "loss": 4.089683532714844, + "step": 1142 + }, + { + "epoch": 15.880733944954128, + "grad_norm": 0.23653888702392578, + "learning_rate": 0.0006, + "loss": 4.067309379577637, + "step": 1143 + }, + { + "epoch": 15.89471384884229, + "grad_norm": 0.23784421384334564, + "learning_rate": 0.0006, + "loss": 4.09156608581543, + "step": 1144 + }, + { + "epoch": 15.90869375273045, + "grad_norm": 0.22753281891345978, + "learning_rate": 0.0006, + "loss": 4.095428466796875, + "step": 1145 + }, + { + "epoch": 15.922673656618612, + "grad_norm": 0.2464212030172348, + "learning_rate": 0.0006, + "loss": 4.1036376953125, + "step": 1146 + }, + { + "epoch": 15.936653560506771, + "grad_norm": 0.25531601905822754, + "learning_rate": 0.0006, + "loss": 4.073996543884277, + "step": 1147 + }, + { + "epoch": 15.950633464394933, + "grad_norm": 0.24145905673503876, + "learning_rate": 0.0006, + "loss": 4.094479560852051, + "step": 1148 + }, + { + "epoch": 15.964613368283093, + "grad_norm": 0.24274317920207977, + "learning_rate": 0.0006, + "loss": 4.101981163024902, + "step": 1149 + }, + { + "epoch": 15.978593272171254, + "grad_norm": 0.2350679188966751, + "learning_rate": 0.0006, + "loss": 4.057965278625488, + "step": 1150 + }, + { + "epoch": 15.992573176059414, + "grad_norm": 0.24072253704071045, + "learning_rate": 0.0006, + "loss": 4.020050048828125, + "step": 1151 + }, + { + "epoch": 16.0, + "grad_norm": 0.253978967666626, + "learning_rate": 0.0006, + "loss": 4.061928749084473, + "step": 1152 + }, + { + "epoch": 16.0, + "eval_loss": 4.270665645599365, + "eval_runtime": 44.5063, + "eval_samples_per_second": 54.869, + "eval_steps_per_second": 3.438, + "step": 1152 + }, + { + "epoch": 16.01397990388816, + "grad_norm": 0.3265204131603241, + "learning_rate": 0.0006, + "loss": 4.059116363525391, + "step": 1153 + }, + { + "epoch": 16.027959807776323, + "grad_norm": 0.34139737486839294, + "learning_rate": 0.0006, + "loss": 4.062219619750977, + "step": 1154 + }, + { + "epoch": 16.041939711664483, + "grad_norm": 0.2849949598312378, + "learning_rate": 0.0006, + "loss": 4.032323837280273, + "step": 1155 + }, + { + "epoch": 16.055919615552643, + "grad_norm": 0.25031402707099915, + "learning_rate": 0.0006, + "loss": 4.075527191162109, + "step": 1156 + }, + { + "epoch": 16.069899519440803, + "grad_norm": 0.25207436084747314, + "learning_rate": 0.0006, + "loss": 4.0883097648620605, + "step": 1157 + }, + { + "epoch": 16.083879423328966, + "grad_norm": 0.28677356243133545, + "learning_rate": 0.0006, + "loss": 4.040797233581543, + "step": 1158 + }, + { + "epoch": 16.097859327217126, + "grad_norm": 0.30778825283050537, + "learning_rate": 0.0006, + "loss": 4.051504135131836, + "step": 1159 + }, + { + "epoch": 16.111839231105286, + "grad_norm": 0.3136911988258362, + "learning_rate": 0.0006, + "loss": 4.045449256896973, + "step": 1160 + }, + { + "epoch": 16.125819134993446, + "grad_norm": 0.34384530782699585, + "learning_rate": 0.0006, + "loss": 4.069897651672363, + "step": 1161 + }, + { + "epoch": 16.13979903888161, + "grad_norm": 0.3074268400669098, + "learning_rate": 0.0006, + "loss": 4.0621137619018555, + "step": 1162 + }, + { + "epoch": 16.15377894276977, + "grad_norm": 0.33090949058532715, + "learning_rate": 0.0006, + "loss": 4.084089279174805, + "step": 1163 + }, + { + "epoch": 16.16775884665793, + "grad_norm": 0.26358580589294434, + "learning_rate": 0.0006, + "loss": 4.066563606262207, + "step": 1164 + }, + { + "epoch": 16.18173875054609, + "grad_norm": 0.25586041808128357, + "learning_rate": 0.0006, + "loss": 4.08109188079834, + "step": 1165 + }, + { + "epoch": 16.195718654434252, + "grad_norm": 0.2966184616088867, + "learning_rate": 0.0006, + "loss": 4.039186477661133, + "step": 1166 + }, + { + "epoch": 16.209698558322412, + "grad_norm": 0.3064924478530884, + "learning_rate": 0.0006, + "loss": 4.08139705657959, + "step": 1167 + }, + { + "epoch": 16.22367846221057, + "grad_norm": 0.28671345114707947, + "learning_rate": 0.0006, + "loss": 4.04637336730957, + "step": 1168 + }, + { + "epoch": 16.23765836609873, + "grad_norm": 0.26209691166877747, + "learning_rate": 0.0006, + "loss": 4.052768707275391, + "step": 1169 + }, + { + "epoch": 16.251638269986895, + "grad_norm": 0.2758907079696655, + "learning_rate": 0.0006, + "loss": 4.064321517944336, + "step": 1170 + }, + { + "epoch": 16.265618173875055, + "grad_norm": 0.25961801409721375, + "learning_rate": 0.0006, + "loss": 4.057299613952637, + "step": 1171 + }, + { + "epoch": 16.279598077763215, + "grad_norm": 0.2513751685619354, + "learning_rate": 0.0006, + "loss": 4.064148902893066, + "step": 1172 + }, + { + "epoch": 16.293577981651374, + "grad_norm": 0.23920276761054993, + "learning_rate": 0.0006, + "loss": 4.101890563964844, + "step": 1173 + }, + { + "epoch": 16.307557885539538, + "grad_norm": 0.22746537625789642, + "learning_rate": 0.0006, + "loss": 4.086627006530762, + "step": 1174 + }, + { + "epoch": 16.321537789427698, + "grad_norm": 0.22633525729179382, + "learning_rate": 0.0006, + "loss": 4.04669189453125, + "step": 1175 + }, + { + "epoch": 16.335517693315857, + "grad_norm": 0.2654891610145569, + "learning_rate": 0.0006, + "loss": 4.086793422698975, + "step": 1176 + }, + { + "epoch": 16.34949759720402, + "grad_norm": 0.2872653007507324, + "learning_rate": 0.0006, + "loss": 4.077983856201172, + "step": 1177 + }, + { + "epoch": 16.36347750109218, + "grad_norm": 0.25726038217544556, + "learning_rate": 0.0006, + "loss": 4.066011428833008, + "step": 1178 + }, + { + "epoch": 16.37745740498034, + "grad_norm": 0.2592027485370636, + "learning_rate": 0.0006, + "loss": 4.0482988357543945, + "step": 1179 + }, + { + "epoch": 16.3914373088685, + "grad_norm": 0.2768886685371399, + "learning_rate": 0.0006, + "loss": 4.065151214599609, + "step": 1180 + }, + { + "epoch": 16.405417212756664, + "grad_norm": 0.2956002652645111, + "learning_rate": 0.0006, + "loss": 4.037791728973389, + "step": 1181 + }, + { + "epoch": 16.419397116644824, + "grad_norm": 0.3092120885848999, + "learning_rate": 0.0006, + "loss": 4.062164306640625, + "step": 1182 + }, + { + "epoch": 16.433377020532983, + "grad_norm": 0.29516810178756714, + "learning_rate": 0.0006, + "loss": 4.025505065917969, + "step": 1183 + }, + { + "epoch": 16.447356924421143, + "grad_norm": 0.2640177607536316, + "learning_rate": 0.0006, + "loss": 4.060182571411133, + "step": 1184 + }, + { + "epoch": 16.461336828309307, + "grad_norm": 0.2444908320903778, + "learning_rate": 0.0006, + "loss": 4.046144962310791, + "step": 1185 + }, + { + "epoch": 16.475316732197467, + "grad_norm": 0.23190705478191376, + "learning_rate": 0.0006, + "loss": 4.075569152832031, + "step": 1186 + }, + { + "epoch": 16.489296636085626, + "grad_norm": 0.2383626103401184, + "learning_rate": 0.0006, + "loss": 4.088897705078125, + "step": 1187 + }, + { + "epoch": 16.503276539973786, + "grad_norm": 0.20688803493976593, + "learning_rate": 0.0006, + "loss": 4.064517974853516, + "step": 1188 + }, + { + "epoch": 16.51725644386195, + "grad_norm": 0.22610054910182953, + "learning_rate": 0.0006, + "loss": 4.04502010345459, + "step": 1189 + }, + { + "epoch": 16.53123634775011, + "grad_norm": 0.2014893889427185, + "learning_rate": 0.0006, + "loss": 4.058279514312744, + "step": 1190 + }, + { + "epoch": 16.54521625163827, + "grad_norm": 0.21459777653217316, + "learning_rate": 0.0006, + "loss": 4.066389083862305, + "step": 1191 + }, + { + "epoch": 16.55919615552643, + "grad_norm": 0.22909940779209137, + "learning_rate": 0.0006, + "loss": 4.0557966232299805, + "step": 1192 + }, + { + "epoch": 16.573176059414592, + "grad_norm": 0.20039083063602448, + "learning_rate": 0.0006, + "loss": 4.092845916748047, + "step": 1193 + }, + { + "epoch": 16.587155963302752, + "grad_norm": 0.22651726007461548, + "learning_rate": 0.0006, + "loss": 4.034615516662598, + "step": 1194 + }, + { + "epoch": 16.601135867190912, + "grad_norm": 0.21901755034923553, + "learning_rate": 0.0006, + "loss": 4.035619735717773, + "step": 1195 + }, + { + "epoch": 16.615115771079076, + "grad_norm": 0.22930841147899628, + "learning_rate": 0.0006, + "loss": 4.080800533294678, + "step": 1196 + }, + { + "epoch": 16.629095674967235, + "grad_norm": 0.212818443775177, + "learning_rate": 0.0006, + "loss": 4.030189514160156, + "step": 1197 + }, + { + "epoch": 16.643075578855395, + "grad_norm": 0.2370826154947281, + "learning_rate": 0.0006, + "loss": 4.062643527984619, + "step": 1198 + }, + { + "epoch": 16.657055482743555, + "grad_norm": 0.24786995351314545, + "learning_rate": 0.0006, + "loss": 4.031761169433594, + "step": 1199 + }, + { + "epoch": 16.67103538663172, + "grad_norm": 0.2305847704410553, + "learning_rate": 0.0006, + "loss": 4.083752155303955, + "step": 1200 + }, + { + "epoch": 16.68501529051988, + "grad_norm": 0.23336584866046906, + "learning_rate": 0.0006, + "loss": 4.079145431518555, + "step": 1201 + }, + { + "epoch": 16.698995194408038, + "grad_norm": 0.23976293206214905, + "learning_rate": 0.0006, + "loss": 4.020473957061768, + "step": 1202 + }, + { + "epoch": 16.712975098296198, + "grad_norm": 0.222761869430542, + "learning_rate": 0.0006, + "loss": 4.065582752227783, + "step": 1203 + }, + { + "epoch": 16.72695500218436, + "grad_norm": 0.23725618422031403, + "learning_rate": 0.0006, + "loss": 4.0263776779174805, + "step": 1204 + }, + { + "epoch": 16.74093490607252, + "grad_norm": 0.23873984813690186, + "learning_rate": 0.0006, + "loss": 4.053092956542969, + "step": 1205 + }, + { + "epoch": 16.75491480996068, + "grad_norm": 0.21043002605438232, + "learning_rate": 0.0006, + "loss": 4.063965797424316, + "step": 1206 + }, + { + "epoch": 16.76889471384884, + "grad_norm": 0.19863522052764893, + "learning_rate": 0.0006, + "loss": 4.061187267303467, + "step": 1207 + }, + { + "epoch": 16.782874617737004, + "grad_norm": 0.1953752487897873, + "learning_rate": 0.0006, + "loss": 4.046016693115234, + "step": 1208 + }, + { + "epoch": 16.796854521625164, + "grad_norm": 0.2130361795425415, + "learning_rate": 0.0006, + "loss": 4.066933631896973, + "step": 1209 + }, + { + "epoch": 16.810834425513324, + "grad_norm": 0.19598130881786346, + "learning_rate": 0.0006, + "loss": 4.071558952331543, + "step": 1210 + }, + { + "epoch": 16.824814329401484, + "grad_norm": 0.20331116020679474, + "learning_rate": 0.0006, + "loss": 4.088632106781006, + "step": 1211 + }, + { + "epoch": 16.838794233289647, + "grad_norm": 0.20423150062561035, + "learning_rate": 0.0006, + "loss": 4.032224655151367, + "step": 1212 + }, + { + "epoch": 16.852774137177807, + "grad_norm": 0.2401197850704193, + "learning_rate": 0.0006, + "loss": 4.037393569946289, + "step": 1213 + }, + { + "epoch": 16.866754041065967, + "grad_norm": 0.26102620363235474, + "learning_rate": 0.0006, + "loss": 4.04738712310791, + "step": 1214 + }, + { + "epoch": 16.88073394495413, + "grad_norm": 0.2438521534204483, + "learning_rate": 0.0006, + "loss": 4.015673637390137, + "step": 1215 + }, + { + "epoch": 16.89471384884229, + "grad_norm": 0.20742061734199524, + "learning_rate": 0.0006, + "loss": 4.049060821533203, + "step": 1216 + }, + { + "epoch": 16.90869375273045, + "grad_norm": 0.22028608620166779, + "learning_rate": 0.0006, + "loss": 4.088971138000488, + "step": 1217 + }, + { + "epoch": 16.92267365661861, + "grad_norm": 0.21746744215488434, + "learning_rate": 0.0006, + "loss": 4.021710395812988, + "step": 1218 + }, + { + "epoch": 16.936653560506773, + "grad_norm": 0.2226102203130722, + "learning_rate": 0.0006, + "loss": 4.050119400024414, + "step": 1219 + }, + { + "epoch": 16.950633464394933, + "grad_norm": 0.23903657495975494, + "learning_rate": 0.0006, + "loss": 4.0570526123046875, + "step": 1220 + }, + { + "epoch": 16.964613368283093, + "grad_norm": 0.2556349039077759, + "learning_rate": 0.0006, + "loss": 4.0448808670043945, + "step": 1221 + }, + { + "epoch": 16.978593272171253, + "grad_norm": 0.28445592522621155, + "learning_rate": 0.0006, + "loss": 4.052034378051758, + "step": 1222 + }, + { + "epoch": 16.992573176059416, + "grad_norm": 0.273973673582077, + "learning_rate": 0.0006, + "loss": 4.02907657623291, + "step": 1223 + }, + { + "epoch": 17.0, + "grad_norm": 0.26125091314315796, + "learning_rate": 0.0006, + "loss": 4.10643196105957, + "step": 1224 + }, + { + "epoch": 17.0, + "eval_loss": 4.2585954666137695, + "eval_runtime": 44.8583, + "eval_samples_per_second": 54.438, + "eval_steps_per_second": 3.411, + "step": 1224 + }, + { + "epoch": 17.01397990388816, + "grad_norm": 0.2786196768283844, + "learning_rate": 0.0006, + "loss": 4.044719219207764, + "step": 1225 + }, + { + "epoch": 17.027959807776323, + "grad_norm": 0.2969571650028229, + "learning_rate": 0.0006, + "loss": 4.022037506103516, + "step": 1226 + }, + { + "epoch": 17.041939711664483, + "grad_norm": 0.32196253538131714, + "learning_rate": 0.0006, + "loss": 4.03636360168457, + "step": 1227 + }, + { + "epoch": 17.055919615552643, + "grad_norm": 0.28617000579833984, + "learning_rate": 0.0006, + "loss": 4.012125492095947, + "step": 1228 + }, + { + "epoch": 17.069899519440803, + "grad_norm": 0.26539644598960876, + "learning_rate": 0.0006, + "loss": 4.020190715789795, + "step": 1229 + }, + { + "epoch": 17.083879423328966, + "grad_norm": 0.24315394461154938, + "learning_rate": 0.0006, + "loss": 4.0553812980651855, + "step": 1230 + }, + { + "epoch": 17.097859327217126, + "grad_norm": 0.23798158764839172, + "learning_rate": 0.0006, + "loss": 4.004805088043213, + "step": 1231 + }, + { + "epoch": 17.111839231105286, + "grad_norm": 0.25723618268966675, + "learning_rate": 0.0006, + "loss": 4.00108003616333, + "step": 1232 + }, + { + "epoch": 17.125819134993446, + "grad_norm": 0.2669757604598999, + "learning_rate": 0.0006, + "loss": 4.00828742980957, + "step": 1233 + }, + { + "epoch": 17.13979903888161, + "grad_norm": 0.26421651244163513, + "learning_rate": 0.0006, + "loss": 3.995478391647339, + "step": 1234 + }, + { + "epoch": 17.15377894276977, + "grad_norm": 0.24745801091194153, + "learning_rate": 0.0006, + "loss": 4.0171027183532715, + "step": 1235 + }, + { + "epoch": 17.16775884665793, + "grad_norm": 0.27028775215148926, + "learning_rate": 0.0006, + "loss": 4.017108917236328, + "step": 1236 + }, + { + "epoch": 17.18173875054609, + "grad_norm": 0.27247968316078186, + "learning_rate": 0.0006, + "loss": 4.032601356506348, + "step": 1237 + }, + { + "epoch": 17.195718654434252, + "grad_norm": 0.24620869755744934, + "learning_rate": 0.0006, + "loss": 4.022171974182129, + "step": 1238 + }, + { + "epoch": 17.209698558322412, + "grad_norm": 0.23407386243343353, + "learning_rate": 0.0006, + "loss": 3.9946959018707275, + "step": 1239 + }, + { + "epoch": 17.22367846221057, + "grad_norm": 0.22559069097042084, + "learning_rate": 0.0006, + "loss": 4.013072490692139, + "step": 1240 + }, + { + "epoch": 17.23765836609873, + "grad_norm": 0.226687952876091, + "learning_rate": 0.0006, + "loss": 4.023543834686279, + "step": 1241 + }, + { + "epoch": 17.251638269986895, + "grad_norm": 0.24436360597610474, + "learning_rate": 0.0006, + "loss": 4.044206619262695, + "step": 1242 + }, + { + "epoch": 17.265618173875055, + "grad_norm": 0.25527626276016235, + "learning_rate": 0.0006, + "loss": 4.016424179077148, + "step": 1243 + }, + { + "epoch": 17.279598077763215, + "grad_norm": 0.26126864552497864, + "learning_rate": 0.0006, + "loss": 4.024394512176514, + "step": 1244 + }, + { + "epoch": 17.293577981651374, + "grad_norm": 0.25746744871139526, + "learning_rate": 0.0006, + "loss": 4.046844482421875, + "step": 1245 + }, + { + "epoch": 17.307557885539538, + "grad_norm": 0.26579564809799194, + "learning_rate": 0.0006, + "loss": 4.021010398864746, + "step": 1246 + }, + { + "epoch": 17.321537789427698, + "grad_norm": 0.2713971734046936, + "learning_rate": 0.0006, + "loss": 4.022331237792969, + "step": 1247 + }, + { + "epoch": 17.335517693315857, + "grad_norm": 0.24217180907726288, + "learning_rate": 0.0006, + "loss": 4.006353855133057, + "step": 1248 + }, + { + "epoch": 17.34949759720402, + "grad_norm": 0.26899752020835876, + "learning_rate": 0.0006, + "loss": 4.068023681640625, + "step": 1249 + }, + { + "epoch": 17.36347750109218, + "grad_norm": 0.26745253801345825, + "learning_rate": 0.0006, + "loss": 4.031207084655762, + "step": 1250 + }, + { + "epoch": 17.37745740498034, + "grad_norm": 0.21533764898777008, + "learning_rate": 0.0006, + "loss": 4.042410850524902, + "step": 1251 + }, + { + "epoch": 17.3914373088685, + "grad_norm": 0.21958027780056, + "learning_rate": 0.0006, + "loss": 4.02597713470459, + "step": 1252 + }, + { + "epoch": 17.405417212756664, + "grad_norm": 0.263068825006485, + "learning_rate": 0.0006, + "loss": 4.0035905838012695, + "step": 1253 + }, + { + "epoch": 17.419397116644824, + "grad_norm": 0.24044716358184814, + "learning_rate": 0.0006, + "loss": 4.005317687988281, + "step": 1254 + }, + { + "epoch": 17.433377020532983, + "grad_norm": 0.19142559170722961, + "learning_rate": 0.0006, + "loss": 3.9976844787597656, + "step": 1255 + }, + { + "epoch": 17.447356924421143, + "grad_norm": 0.18650250136852264, + "learning_rate": 0.0006, + "loss": 4.031353950500488, + "step": 1256 + }, + { + "epoch": 17.461336828309307, + "grad_norm": 0.1984022557735443, + "learning_rate": 0.0006, + "loss": 4.002097129821777, + "step": 1257 + }, + { + "epoch": 17.475316732197467, + "grad_norm": 0.20087844133377075, + "learning_rate": 0.0006, + "loss": 4.031151294708252, + "step": 1258 + }, + { + "epoch": 17.489296636085626, + "grad_norm": 0.20881228148937225, + "learning_rate": 0.0006, + "loss": 4.034793853759766, + "step": 1259 + }, + { + "epoch": 17.503276539973786, + "grad_norm": 0.23958556354045868, + "learning_rate": 0.0006, + "loss": 4.025238990783691, + "step": 1260 + }, + { + "epoch": 17.51725644386195, + "grad_norm": 0.23927845060825348, + "learning_rate": 0.0006, + "loss": 3.999828338623047, + "step": 1261 + }, + { + "epoch": 17.53123634775011, + "grad_norm": 0.20342715084552765, + "learning_rate": 0.0006, + "loss": 4.054262161254883, + "step": 1262 + }, + { + "epoch": 17.54521625163827, + "grad_norm": 0.21370555460453033, + "learning_rate": 0.0006, + "loss": 4.011582374572754, + "step": 1263 + }, + { + "epoch": 17.55919615552643, + "grad_norm": 0.23681946098804474, + "learning_rate": 0.0006, + "loss": 4.029694080352783, + "step": 1264 + }, + { + "epoch": 17.573176059414592, + "grad_norm": 0.24190311133861542, + "learning_rate": 0.0006, + "loss": 4.018783092498779, + "step": 1265 + }, + { + "epoch": 17.587155963302752, + "grad_norm": 0.23215509951114655, + "learning_rate": 0.0006, + "loss": 4.009703159332275, + "step": 1266 + }, + { + "epoch": 17.601135867190912, + "grad_norm": 0.21122977137565613, + "learning_rate": 0.0006, + "loss": 4.0345659255981445, + "step": 1267 + }, + { + "epoch": 17.615115771079076, + "grad_norm": 0.2075948715209961, + "learning_rate": 0.0006, + "loss": 4.070703506469727, + "step": 1268 + }, + { + "epoch": 17.629095674967235, + "grad_norm": 0.21667909622192383, + "learning_rate": 0.0006, + "loss": 4.020771503448486, + "step": 1269 + }, + { + "epoch": 17.643075578855395, + "grad_norm": 0.20960724353790283, + "learning_rate": 0.0006, + "loss": 4.026404857635498, + "step": 1270 + }, + { + "epoch": 17.657055482743555, + "grad_norm": 0.22575686872005463, + "learning_rate": 0.0006, + "loss": 4.01981258392334, + "step": 1271 + }, + { + "epoch": 17.67103538663172, + "grad_norm": 0.2565988302230835, + "learning_rate": 0.0006, + "loss": 4.015827178955078, + "step": 1272 + }, + { + "epoch": 17.68501529051988, + "grad_norm": 0.24831551313400269, + "learning_rate": 0.0006, + "loss": 4.012457847595215, + "step": 1273 + }, + { + "epoch": 17.698995194408038, + "grad_norm": 0.22595494985580444, + "learning_rate": 0.0006, + "loss": 4.031386375427246, + "step": 1274 + }, + { + "epoch": 17.712975098296198, + "grad_norm": 0.20687322318553925, + "learning_rate": 0.0006, + "loss": 4.014216423034668, + "step": 1275 + }, + { + "epoch": 17.72695500218436, + "grad_norm": 0.21916012465953827, + "learning_rate": 0.0006, + "loss": 4.037643909454346, + "step": 1276 + }, + { + "epoch": 17.74093490607252, + "grad_norm": 0.2243107706308365, + "learning_rate": 0.0006, + "loss": 4.033044815063477, + "step": 1277 + }, + { + "epoch": 17.75491480996068, + "grad_norm": 0.2402164787054062, + "learning_rate": 0.0006, + "loss": 4.026636123657227, + "step": 1278 + }, + { + "epoch": 17.76889471384884, + "grad_norm": 0.27957046031951904, + "learning_rate": 0.0006, + "loss": 4.0270867347717285, + "step": 1279 + }, + { + "epoch": 17.782874617737004, + "grad_norm": 0.27447596192359924, + "learning_rate": 0.0006, + "loss": 4.0120134353637695, + "step": 1280 + }, + { + "epoch": 17.796854521625164, + "grad_norm": 0.26926323771476746, + "learning_rate": 0.0006, + "loss": 4.027970314025879, + "step": 1281 + }, + { + "epoch": 17.810834425513324, + "grad_norm": 0.2535291314125061, + "learning_rate": 0.0006, + "loss": 4.002565383911133, + "step": 1282 + }, + { + "epoch": 17.824814329401484, + "grad_norm": 0.22639447450637817, + "learning_rate": 0.0006, + "loss": 4.032750606536865, + "step": 1283 + }, + { + "epoch": 17.838794233289647, + "grad_norm": 0.23384462296962738, + "learning_rate": 0.0006, + "loss": 4.03568172454834, + "step": 1284 + }, + { + "epoch": 17.852774137177807, + "grad_norm": 0.22971470654010773, + "learning_rate": 0.0006, + "loss": 4.031299591064453, + "step": 1285 + }, + { + "epoch": 17.866754041065967, + "grad_norm": 0.24540141224861145, + "learning_rate": 0.0006, + "loss": 4.0142669677734375, + "step": 1286 + }, + { + "epoch": 17.88073394495413, + "grad_norm": 0.2304888367652893, + "learning_rate": 0.0006, + "loss": 3.9964895248413086, + "step": 1287 + }, + { + "epoch": 17.89471384884229, + "grad_norm": 0.22082284092903137, + "learning_rate": 0.0006, + "loss": 4.024693489074707, + "step": 1288 + }, + { + "epoch": 17.90869375273045, + "grad_norm": 0.23677092790603638, + "learning_rate": 0.0006, + "loss": 4.002082347869873, + "step": 1289 + }, + { + "epoch": 17.92267365661861, + "grad_norm": 0.23122332990169525, + "learning_rate": 0.0006, + "loss": 4.025351524353027, + "step": 1290 + }, + { + "epoch": 17.936653560506773, + "grad_norm": 0.2548119127750397, + "learning_rate": 0.0006, + "loss": 3.9955825805664062, + "step": 1291 + }, + { + "epoch": 17.950633464394933, + "grad_norm": 0.26950931549072266, + "learning_rate": 0.0006, + "loss": 4.026151180267334, + "step": 1292 + }, + { + "epoch": 17.964613368283093, + "grad_norm": 0.3023233711719513, + "learning_rate": 0.0006, + "loss": 4.006035804748535, + "step": 1293 + }, + { + "epoch": 17.978593272171253, + "grad_norm": 0.3190958499908447, + "learning_rate": 0.0006, + "loss": 4.023565292358398, + "step": 1294 + }, + { + "epoch": 17.992573176059416, + "grad_norm": 0.28878068923950195, + "learning_rate": 0.0006, + "loss": 4.020973205566406, + "step": 1295 + }, + { + "epoch": 18.0, + "grad_norm": 0.27312418818473816, + "learning_rate": 0.0006, + "loss": 3.99906587600708, + "step": 1296 + }, + { + "epoch": 18.0, + "eval_loss": 4.224447250366211, + "eval_runtime": 52.5728, + "eval_samples_per_second": 46.45, + "eval_steps_per_second": 2.91, + "step": 1296 + }, + { + "epoch": 18.01397990388816, + "grad_norm": 0.2567712664604187, + "learning_rate": 0.0006, + "loss": 3.9755055904388428, + "step": 1297 + }, + { + "epoch": 18.027959807776323, + "grad_norm": 0.25048133730888367, + "learning_rate": 0.0006, + "loss": 4.009254455566406, + "step": 1298 + }, + { + "epoch": 18.041939711664483, + "grad_norm": 0.2556909918785095, + "learning_rate": 0.0006, + "loss": 4.001235008239746, + "step": 1299 + }, + { + "epoch": 18.055919615552643, + "grad_norm": 0.2501400113105774, + "learning_rate": 0.0006, + "loss": 3.980726480484009, + "step": 1300 + }, + { + "epoch": 18.069899519440803, + "grad_norm": 0.23977792263031006, + "learning_rate": 0.0006, + "loss": 3.964195728302002, + "step": 1301 + }, + { + "epoch": 18.083879423328966, + "grad_norm": 0.25650718808174133, + "learning_rate": 0.0006, + "loss": 4.015914440155029, + "step": 1302 + }, + { + "epoch": 18.097859327217126, + "grad_norm": 0.234053835272789, + "learning_rate": 0.0006, + "loss": 4.0159149169921875, + "step": 1303 + }, + { + "epoch": 18.111839231105286, + "grad_norm": 0.21967713534832, + "learning_rate": 0.0006, + "loss": 4.0055694580078125, + "step": 1304 + }, + { + "epoch": 18.125819134993446, + "grad_norm": 0.21790878474712372, + "learning_rate": 0.0006, + "loss": 3.986253261566162, + "step": 1305 + }, + { + "epoch": 18.13979903888161, + "grad_norm": 0.22955302894115448, + "learning_rate": 0.0006, + "loss": 3.959421157836914, + "step": 1306 + }, + { + "epoch": 18.15377894276977, + "grad_norm": 0.2559174597263336, + "learning_rate": 0.0006, + "loss": 4.0069756507873535, + "step": 1307 + }, + { + "epoch": 18.16775884665793, + "grad_norm": 0.26132866740226746, + "learning_rate": 0.0006, + "loss": 3.9874095916748047, + "step": 1308 + }, + { + "epoch": 18.18173875054609, + "grad_norm": 0.23258940875530243, + "learning_rate": 0.0006, + "loss": 3.9762492179870605, + "step": 1309 + }, + { + "epoch": 18.195718654434252, + "grad_norm": 0.22347190976142883, + "learning_rate": 0.0006, + "loss": 3.9923410415649414, + "step": 1310 + }, + { + "epoch": 18.209698558322412, + "grad_norm": 0.23095804452896118, + "learning_rate": 0.0006, + "loss": 4.019245624542236, + "step": 1311 + }, + { + "epoch": 18.22367846221057, + "grad_norm": 0.24817052483558655, + "learning_rate": 0.0006, + "loss": 3.9697511196136475, + "step": 1312 + }, + { + "epoch": 18.23765836609873, + "grad_norm": 0.2566024959087372, + "learning_rate": 0.0006, + "loss": 3.978804111480713, + "step": 1313 + }, + { + "epoch": 18.251638269986895, + "grad_norm": 0.2527952790260315, + "learning_rate": 0.0006, + "loss": 3.972018241882324, + "step": 1314 + }, + { + "epoch": 18.265618173875055, + "grad_norm": 0.2508150637149811, + "learning_rate": 0.0006, + "loss": 3.9971275329589844, + "step": 1315 + }, + { + "epoch": 18.279598077763215, + "grad_norm": 0.23242022097110748, + "learning_rate": 0.0006, + "loss": 3.9712045192718506, + "step": 1316 + }, + { + "epoch": 18.293577981651374, + "grad_norm": 0.23474404215812683, + "learning_rate": 0.0006, + "loss": 3.9926767349243164, + "step": 1317 + }, + { + "epoch": 18.307557885539538, + "grad_norm": 0.2417769432067871, + "learning_rate": 0.0006, + "loss": 3.9920949935913086, + "step": 1318 + }, + { + "epoch": 18.321537789427698, + "grad_norm": 0.23839452862739563, + "learning_rate": 0.0006, + "loss": 4.016645431518555, + "step": 1319 + }, + { + "epoch": 18.335517693315857, + "grad_norm": 0.2512452304363251, + "learning_rate": 0.0006, + "loss": 3.97586727142334, + "step": 1320 + }, + { + "epoch": 18.34949759720402, + "grad_norm": 0.27503693103790283, + "learning_rate": 0.0006, + "loss": 4.000148773193359, + "step": 1321 + }, + { + "epoch": 18.36347750109218, + "grad_norm": 0.27830836176872253, + "learning_rate": 0.0006, + "loss": 3.9972195625305176, + "step": 1322 + }, + { + "epoch": 18.37745740498034, + "grad_norm": 0.2571812570095062, + "learning_rate": 0.0006, + "loss": 3.9900810718536377, + "step": 1323 + }, + { + "epoch": 18.3914373088685, + "grad_norm": 0.2310052365064621, + "learning_rate": 0.0006, + "loss": 4.003000259399414, + "step": 1324 + }, + { + "epoch": 18.405417212756664, + "grad_norm": 0.19615735113620758, + "learning_rate": 0.0006, + "loss": 3.9536571502685547, + "step": 1325 + }, + { + "epoch": 18.419397116644824, + "grad_norm": 0.21323896944522858, + "learning_rate": 0.0006, + "loss": 3.977508068084717, + "step": 1326 + }, + { + "epoch": 18.433377020532983, + "grad_norm": 0.21404202282428741, + "learning_rate": 0.0006, + "loss": 4.015361785888672, + "step": 1327 + }, + { + "epoch": 18.447356924421143, + "grad_norm": 0.1991959661245346, + "learning_rate": 0.0006, + "loss": 4.000286102294922, + "step": 1328 + }, + { + "epoch": 18.461336828309307, + "grad_norm": 0.2073599398136139, + "learning_rate": 0.0006, + "loss": 3.973065137863159, + "step": 1329 + }, + { + "epoch": 18.475316732197467, + "grad_norm": 0.2096073031425476, + "learning_rate": 0.0006, + "loss": 3.987032890319824, + "step": 1330 + }, + { + "epoch": 18.489296636085626, + "grad_norm": 0.2380610853433609, + "learning_rate": 0.0006, + "loss": 4.035274505615234, + "step": 1331 + }, + { + "epoch": 18.503276539973786, + "grad_norm": 0.23570716381072998, + "learning_rate": 0.0006, + "loss": 4.010516166687012, + "step": 1332 + }, + { + "epoch": 18.51725644386195, + "grad_norm": 0.24805466830730438, + "learning_rate": 0.0006, + "loss": 3.9750983715057373, + "step": 1333 + }, + { + "epoch": 18.53123634775011, + "grad_norm": 0.25173231959342957, + "learning_rate": 0.0006, + "loss": 3.9742345809936523, + "step": 1334 + }, + { + "epoch": 18.54521625163827, + "grad_norm": 0.24590367078781128, + "learning_rate": 0.0006, + "loss": 4.0037312507629395, + "step": 1335 + }, + { + "epoch": 18.55919615552643, + "grad_norm": 0.24379394948482513, + "learning_rate": 0.0006, + "loss": 3.993858814239502, + "step": 1336 + }, + { + "epoch": 18.573176059414592, + "grad_norm": 0.21708883345127106, + "learning_rate": 0.0006, + "loss": 3.965670585632324, + "step": 1337 + }, + { + "epoch": 18.587155963302752, + "grad_norm": 0.21024051308631897, + "learning_rate": 0.0006, + "loss": 3.987551689147949, + "step": 1338 + }, + { + "epoch": 18.601135867190912, + "grad_norm": 0.23376783728599548, + "learning_rate": 0.0006, + "loss": 4.002841472625732, + "step": 1339 + }, + { + "epoch": 18.615115771079076, + "grad_norm": 0.25350701808929443, + "learning_rate": 0.0006, + "loss": 3.9881370067596436, + "step": 1340 + }, + { + "epoch": 18.629095674967235, + "grad_norm": 0.2542140483856201, + "learning_rate": 0.0006, + "loss": 4.003695964813232, + "step": 1341 + }, + { + "epoch": 18.643075578855395, + "grad_norm": 0.22932685911655426, + "learning_rate": 0.0006, + "loss": 4.0146002769470215, + "step": 1342 + }, + { + "epoch": 18.657055482743555, + "grad_norm": 0.21099458634853363, + "learning_rate": 0.0006, + "loss": 3.970472812652588, + "step": 1343 + }, + { + "epoch": 18.67103538663172, + "grad_norm": 0.2234615832567215, + "learning_rate": 0.0006, + "loss": 3.9821488857269287, + "step": 1344 + }, + { + "epoch": 18.68501529051988, + "grad_norm": 0.230327770113945, + "learning_rate": 0.0006, + "loss": 3.996274948120117, + "step": 1345 + }, + { + "epoch": 18.698995194408038, + "grad_norm": 0.23596233129501343, + "learning_rate": 0.0006, + "loss": 3.9747462272644043, + "step": 1346 + }, + { + "epoch": 18.712975098296198, + "grad_norm": 0.24173159897327423, + "learning_rate": 0.0006, + "loss": 4.011804103851318, + "step": 1347 + }, + { + "epoch": 18.72695500218436, + "grad_norm": 0.24087604880332947, + "learning_rate": 0.0006, + "loss": 4.008726119995117, + "step": 1348 + }, + { + "epoch": 18.74093490607252, + "grad_norm": 0.2457292526960373, + "learning_rate": 0.0006, + "loss": 3.990793228149414, + "step": 1349 + }, + { + "epoch": 18.75491480996068, + "grad_norm": 0.22946089506149292, + "learning_rate": 0.0006, + "loss": 3.980494260787964, + "step": 1350 + }, + { + "epoch": 18.76889471384884, + "grad_norm": 0.22986692190170288, + "learning_rate": 0.0006, + "loss": 3.97006893157959, + "step": 1351 + }, + { + "epoch": 18.782874617737004, + "grad_norm": 0.23358555138111115, + "learning_rate": 0.0006, + "loss": 4.008172035217285, + "step": 1352 + }, + { + "epoch": 18.796854521625164, + "grad_norm": 0.20183615386486053, + "learning_rate": 0.0006, + "loss": 3.9720888137817383, + "step": 1353 + }, + { + "epoch": 18.810834425513324, + "grad_norm": 0.19975653290748596, + "learning_rate": 0.0006, + "loss": 3.9783310890197754, + "step": 1354 + }, + { + "epoch": 18.824814329401484, + "grad_norm": 0.18911021947860718, + "learning_rate": 0.0006, + "loss": 3.985982894897461, + "step": 1355 + }, + { + "epoch": 18.838794233289647, + "grad_norm": 0.15984168648719788, + "learning_rate": 0.0006, + "loss": 3.9740548133850098, + "step": 1356 + }, + { + "epoch": 18.852774137177807, + "grad_norm": 0.1755436211824417, + "learning_rate": 0.0006, + "loss": 4.013090133666992, + "step": 1357 + }, + { + "epoch": 18.866754041065967, + "grad_norm": 0.1798417866230011, + "learning_rate": 0.0006, + "loss": 3.997880697250366, + "step": 1358 + }, + { + "epoch": 18.88073394495413, + "grad_norm": 0.20206265151500702, + "learning_rate": 0.0006, + "loss": 3.9892373085021973, + "step": 1359 + }, + { + "epoch": 18.89471384884229, + "grad_norm": 0.23685456812381744, + "learning_rate": 0.0006, + "loss": 3.9909186363220215, + "step": 1360 + }, + { + "epoch": 18.90869375273045, + "grad_norm": 0.26053836941719055, + "learning_rate": 0.0006, + "loss": 4.00327205657959, + "step": 1361 + }, + { + "epoch": 18.92267365661861, + "grad_norm": 0.26215845346450806, + "learning_rate": 0.0006, + "loss": 3.9714717864990234, + "step": 1362 + }, + { + "epoch": 18.936653560506773, + "grad_norm": 0.2433871030807495, + "learning_rate": 0.0006, + "loss": 3.949416160583496, + "step": 1363 + }, + { + "epoch": 18.950633464394933, + "grad_norm": 0.23331883549690247, + "learning_rate": 0.0006, + "loss": 3.980501413345337, + "step": 1364 + }, + { + "epoch": 18.964613368283093, + "grad_norm": 0.2346954047679901, + "learning_rate": 0.0006, + "loss": 3.9974493980407715, + "step": 1365 + }, + { + "epoch": 18.978593272171253, + "grad_norm": 0.25101345777511597, + "learning_rate": 0.0006, + "loss": 3.9800148010253906, + "step": 1366 + }, + { + "epoch": 18.992573176059416, + "grad_norm": 0.26811933517456055, + "learning_rate": 0.0006, + "loss": 4.0065741539001465, + "step": 1367 + }, + { + "epoch": 19.0, + "grad_norm": 0.2731736898422241, + "learning_rate": 0.0006, + "loss": 4.014575481414795, + "step": 1368 + }, + { + "epoch": 19.0, + "eval_loss": 4.200716972351074, + "eval_runtime": 44.6962, + "eval_samples_per_second": 54.636, + "eval_steps_per_second": 3.423, + "step": 1368 + }, + { + "epoch": 19.01397990388816, + "grad_norm": 0.2517746686935425, + "learning_rate": 0.0006, + "loss": 3.9486539363861084, + "step": 1369 + }, + { + "epoch": 19.027959807776323, + "grad_norm": 0.2482699453830719, + "learning_rate": 0.0006, + "loss": 3.95015287399292, + "step": 1370 + }, + { + "epoch": 19.041939711664483, + "grad_norm": 0.21693618595600128, + "learning_rate": 0.0006, + "loss": 3.970022201538086, + "step": 1371 + }, + { + "epoch": 19.055919615552643, + "grad_norm": 0.2035159319639206, + "learning_rate": 0.0006, + "loss": 3.941457748413086, + "step": 1372 + }, + { + "epoch": 19.069899519440803, + "grad_norm": 0.2201429009437561, + "learning_rate": 0.0006, + "loss": 3.946794033050537, + "step": 1373 + }, + { + "epoch": 19.083879423328966, + "grad_norm": 0.22910255193710327, + "learning_rate": 0.0006, + "loss": 3.94606876373291, + "step": 1374 + }, + { + "epoch": 19.097859327217126, + "grad_norm": 0.22378197312355042, + "learning_rate": 0.0006, + "loss": 3.957899570465088, + "step": 1375 + }, + { + "epoch": 19.111839231105286, + "grad_norm": 0.21728114783763885, + "learning_rate": 0.0006, + "loss": 3.9565982818603516, + "step": 1376 + }, + { + "epoch": 19.125819134993446, + "grad_norm": 0.21887634694576263, + "learning_rate": 0.0006, + "loss": 3.9649534225463867, + "step": 1377 + }, + { + "epoch": 19.13979903888161, + "grad_norm": 0.21892991662025452, + "learning_rate": 0.0006, + "loss": 3.971388101577759, + "step": 1378 + }, + { + "epoch": 19.15377894276977, + "grad_norm": 0.24582402408123016, + "learning_rate": 0.0006, + "loss": 3.9370944499969482, + "step": 1379 + }, + { + "epoch": 19.16775884665793, + "grad_norm": 0.27547118067741394, + "learning_rate": 0.0006, + "loss": 3.939406156539917, + "step": 1380 + }, + { + "epoch": 19.18173875054609, + "grad_norm": 0.3131563365459442, + "learning_rate": 0.0006, + "loss": 3.942620277404785, + "step": 1381 + }, + { + "epoch": 19.195718654434252, + "grad_norm": 0.3211703598499298, + "learning_rate": 0.0006, + "loss": 3.9388349056243896, + "step": 1382 + }, + { + "epoch": 19.209698558322412, + "grad_norm": 0.2791919410228729, + "learning_rate": 0.0006, + "loss": 3.9827399253845215, + "step": 1383 + }, + { + "epoch": 19.22367846221057, + "grad_norm": 0.2872016727924347, + "learning_rate": 0.0006, + "loss": 3.976715087890625, + "step": 1384 + }, + { + "epoch": 19.23765836609873, + "grad_norm": 0.2790389060974121, + "learning_rate": 0.0006, + "loss": 3.952850818634033, + "step": 1385 + }, + { + "epoch": 19.251638269986895, + "grad_norm": 0.31903740763664246, + "learning_rate": 0.0006, + "loss": 3.964506149291992, + "step": 1386 + }, + { + "epoch": 19.265618173875055, + "grad_norm": 0.31013646721839905, + "learning_rate": 0.0006, + "loss": 3.967219352722168, + "step": 1387 + }, + { + "epoch": 19.279598077763215, + "grad_norm": 0.2574339509010315, + "learning_rate": 0.0006, + "loss": 3.979168176651001, + "step": 1388 + }, + { + "epoch": 19.293577981651374, + "grad_norm": 0.24621108174324036, + "learning_rate": 0.0006, + "loss": 3.981734275817871, + "step": 1389 + }, + { + "epoch": 19.307557885539538, + "grad_norm": 0.25113818049430847, + "learning_rate": 0.0006, + "loss": 3.9787755012512207, + "step": 1390 + }, + { + "epoch": 19.321537789427698, + "grad_norm": 0.259971022605896, + "learning_rate": 0.0006, + "loss": 3.9648823738098145, + "step": 1391 + }, + { + "epoch": 19.335517693315857, + "grad_norm": 0.22580404579639435, + "learning_rate": 0.0006, + "loss": 3.9658002853393555, + "step": 1392 + }, + { + "epoch": 19.34949759720402, + "grad_norm": 0.2133680284023285, + "learning_rate": 0.0006, + "loss": 3.9615914821624756, + "step": 1393 + }, + { + "epoch": 19.36347750109218, + "grad_norm": 0.2387680858373642, + "learning_rate": 0.0006, + "loss": 3.993811845779419, + "step": 1394 + }, + { + "epoch": 19.37745740498034, + "grad_norm": 0.26086220145225525, + "learning_rate": 0.0006, + "loss": 3.932701826095581, + "step": 1395 + }, + { + "epoch": 19.3914373088685, + "grad_norm": 0.23255233466625214, + "learning_rate": 0.0006, + "loss": 3.8969321250915527, + "step": 1396 + }, + { + "epoch": 19.405417212756664, + "grad_norm": 0.22894541919231415, + "learning_rate": 0.0006, + "loss": 3.9569311141967773, + "step": 1397 + }, + { + "epoch": 19.419397116644824, + "grad_norm": 0.2254200130701065, + "learning_rate": 0.0006, + "loss": 3.953199863433838, + "step": 1398 + }, + { + "epoch": 19.433377020532983, + "grad_norm": 0.25802481174468994, + "learning_rate": 0.0006, + "loss": 3.9714815616607666, + "step": 1399 + }, + { + "epoch": 19.447356924421143, + "grad_norm": 0.24725162982940674, + "learning_rate": 0.0006, + "loss": 3.957339286804199, + "step": 1400 + }, + { + "epoch": 19.461336828309307, + "grad_norm": 0.2162018120288849, + "learning_rate": 0.0006, + "loss": 3.986801862716675, + "step": 1401 + }, + { + "epoch": 19.475316732197467, + "grad_norm": 0.21530906856060028, + "learning_rate": 0.0006, + "loss": 3.9766759872436523, + "step": 1402 + }, + { + "epoch": 19.489296636085626, + "grad_norm": 0.20260323584079742, + "learning_rate": 0.0006, + "loss": 3.9576425552368164, + "step": 1403 + }, + { + "epoch": 19.503276539973786, + "grad_norm": 0.188974529504776, + "learning_rate": 0.0006, + "loss": 3.9852395057678223, + "step": 1404 + }, + { + "epoch": 19.51725644386195, + "grad_norm": 0.19727374613285065, + "learning_rate": 0.0006, + "loss": 3.972484588623047, + "step": 1405 + }, + { + "epoch": 19.53123634775011, + "grad_norm": 0.23708008229732513, + "learning_rate": 0.0006, + "loss": 3.992471694946289, + "step": 1406 + }, + { + "epoch": 19.54521625163827, + "grad_norm": 0.23783449828624725, + "learning_rate": 0.0006, + "loss": 3.9788265228271484, + "step": 1407 + }, + { + "epoch": 19.55919615552643, + "grad_norm": 0.24744364619255066, + "learning_rate": 0.0006, + "loss": 3.9559011459350586, + "step": 1408 + }, + { + "epoch": 19.573176059414592, + "grad_norm": 0.24828094244003296, + "learning_rate": 0.0006, + "loss": 3.9663949012756348, + "step": 1409 + }, + { + "epoch": 19.587155963302752, + "grad_norm": 0.2681315541267395, + "learning_rate": 0.0006, + "loss": 3.9581191539764404, + "step": 1410 + }, + { + "epoch": 19.601135867190912, + "grad_norm": 0.2691532373428345, + "learning_rate": 0.0006, + "loss": 3.9832754135131836, + "step": 1411 + }, + { + "epoch": 19.615115771079076, + "grad_norm": 0.2900252640247345, + "learning_rate": 0.0006, + "loss": 3.984365940093994, + "step": 1412 + }, + { + "epoch": 19.629095674967235, + "grad_norm": 0.3194943070411682, + "learning_rate": 0.0006, + "loss": 3.9856505393981934, + "step": 1413 + }, + { + "epoch": 19.643075578855395, + "grad_norm": 0.3029029071331024, + "learning_rate": 0.0006, + "loss": 3.968992233276367, + "step": 1414 + }, + { + "epoch": 19.657055482743555, + "grad_norm": 0.2658176124095917, + "learning_rate": 0.0006, + "loss": 3.995187282562256, + "step": 1415 + }, + { + "epoch": 19.67103538663172, + "grad_norm": 0.26807504892349243, + "learning_rate": 0.0006, + "loss": 3.9756274223327637, + "step": 1416 + }, + { + "epoch": 19.68501529051988, + "grad_norm": 0.27718642354011536, + "learning_rate": 0.0006, + "loss": 3.9510018825531006, + "step": 1417 + }, + { + "epoch": 19.698995194408038, + "grad_norm": 0.26322051882743835, + "learning_rate": 0.0006, + "loss": 3.965155601501465, + "step": 1418 + }, + { + "epoch": 19.712975098296198, + "grad_norm": 0.2566570043563843, + "learning_rate": 0.0006, + "loss": 3.984218120574951, + "step": 1419 + }, + { + "epoch": 19.72695500218436, + "grad_norm": 0.2218743860721588, + "learning_rate": 0.0006, + "loss": 3.9338784217834473, + "step": 1420 + }, + { + "epoch": 19.74093490607252, + "grad_norm": 0.22894173860549927, + "learning_rate": 0.0006, + "loss": 3.9869046211242676, + "step": 1421 + }, + { + "epoch": 19.75491480996068, + "grad_norm": 0.26837027072906494, + "learning_rate": 0.0006, + "loss": 3.96799898147583, + "step": 1422 + }, + { + "epoch": 19.76889471384884, + "grad_norm": 0.2767876982688904, + "learning_rate": 0.0006, + "loss": 3.9431071281433105, + "step": 1423 + }, + { + "epoch": 19.782874617737004, + "grad_norm": 0.24402284622192383, + "learning_rate": 0.0006, + "loss": 3.9631881713867188, + "step": 1424 + }, + { + "epoch": 19.796854521625164, + "grad_norm": 0.23500724136829376, + "learning_rate": 0.0006, + "loss": 3.9943337440490723, + "step": 1425 + }, + { + "epoch": 19.810834425513324, + "grad_norm": 0.22509142756462097, + "learning_rate": 0.0006, + "loss": 3.961226224899292, + "step": 1426 + }, + { + "epoch": 19.824814329401484, + "grad_norm": 0.23524795472621918, + "learning_rate": 0.0006, + "loss": 3.9552102088928223, + "step": 1427 + }, + { + "epoch": 19.838794233289647, + "grad_norm": 0.22307050228118896, + "learning_rate": 0.0006, + "loss": 3.9623494148254395, + "step": 1428 + }, + { + "epoch": 19.852774137177807, + "grad_norm": 0.21144486963748932, + "learning_rate": 0.0006, + "loss": 3.9620237350463867, + "step": 1429 + }, + { + "epoch": 19.866754041065967, + "grad_norm": 0.20249812304973602, + "learning_rate": 0.0006, + "loss": 3.953911066055298, + "step": 1430 + }, + { + "epoch": 19.88073394495413, + "grad_norm": 0.2350354939699173, + "learning_rate": 0.0006, + "loss": 3.9616730213165283, + "step": 1431 + }, + { + "epoch": 19.89471384884229, + "grad_norm": 0.2566683292388916, + "learning_rate": 0.0006, + "loss": 3.9372501373291016, + "step": 1432 + }, + { + "epoch": 19.90869375273045, + "grad_norm": 0.2520846128463745, + "learning_rate": 0.0006, + "loss": 3.9814648628234863, + "step": 1433 + }, + { + "epoch": 19.92267365661861, + "grad_norm": 0.23989640176296234, + "learning_rate": 0.0006, + "loss": 3.9692864418029785, + "step": 1434 + }, + { + "epoch": 19.936653560506773, + "grad_norm": 0.20650425553321838, + "learning_rate": 0.0006, + "loss": 3.960256814956665, + "step": 1435 + }, + { + "epoch": 19.950633464394933, + "grad_norm": 0.20478376746177673, + "learning_rate": 0.0006, + "loss": 3.9585227966308594, + "step": 1436 + }, + { + "epoch": 19.964613368283093, + "grad_norm": 0.234436497092247, + "learning_rate": 0.0006, + "loss": 3.945631742477417, + "step": 1437 + }, + { + "epoch": 19.978593272171253, + "grad_norm": 0.19969749450683594, + "learning_rate": 0.0006, + "loss": 3.9646050930023193, + "step": 1438 + }, + { + "epoch": 19.992573176059416, + "grad_norm": 0.20638690888881683, + "learning_rate": 0.0006, + "loss": 3.9461846351623535, + "step": 1439 + }, + { + "epoch": 20.0, + "grad_norm": 0.2120274156332016, + "learning_rate": 0.0006, + "loss": 3.965153217315674, + "step": 1440 + }, + { + "epoch": 20.0, + "eval_loss": 4.168524742126465, + "eval_runtime": 44.2796, + "eval_samples_per_second": 55.15, + "eval_steps_per_second": 3.455, + "step": 1440 + }, + { + "epoch": 20.01397990388816, + "grad_norm": 0.19704894721508026, + "learning_rate": 0.0006, + "loss": 3.937016248703003, + "step": 1441 + }, + { + "epoch": 20.027959807776323, + "grad_norm": 0.18682368099689484, + "learning_rate": 0.0006, + "loss": 3.895922899246216, + "step": 1442 + }, + { + "epoch": 20.041939711664483, + "grad_norm": 0.18982571363449097, + "learning_rate": 0.0006, + "loss": 3.929841995239258, + "step": 1443 + }, + { + "epoch": 20.055919615552643, + "grad_norm": 0.20811910927295685, + "learning_rate": 0.0006, + "loss": 3.9498324394226074, + "step": 1444 + }, + { + "epoch": 20.069899519440803, + "grad_norm": 0.2149062603712082, + "learning_rate": 0.0006, + "loss": 3.929853916168213, + "step": 1445 + }, + { + "epoch": 20.083879423328966, + "grad_norm": 0.20016685128211975, + "learning_rate": 0.0006, + "loss": 3.9374136924743652, + "step": 1446 + }, + { + "epoch": 20.097859327217126, + "grad_norm": 0.19969616830348969, + "learning_rate": 0.0006, + "loss": 3.932447910308838, + "step": 1447 + }, + { + "epoch": 20.111839231105286, + "grad_norm": 0.2163356989622116, + "learning_rate": 0.0006, + "loss": 3.9325437545776367, + "step": 1448 + }, + { + "epoch": 20.125819134993446, + "grad_norm": 0.22026969492435455, + "learning_rate": 0.0006, + "loss": 3.9118852615356445, + "step": 1449 + }, + { + "epoch": 20.13979903888161, + "grad_norm": 0.23337116837501526, + "learning_rate": 0.0006, + "loss": 3.9416019916534424, + "step": 1450 + }, + { + "epoch": 20.15377894276977, + "grad_norm": 0.23971447348594666, + "learning_rate": 0.0006, + "loss": 3.9416871070861816, + "step": 1451 + }, + { + "epoch": 20.16775884665793, + "grad_norm": 0.25973960757255554, + "learning_rate": 0.0006, + "loss": 3.93826961517334, + "step": 1452 + }, + { + "epoch": 20.18173875054609, + "grad_norm": 0.2303445190191269, + "learning_rate": 0.0006, + "loss": 3.909383535385132, + "step": 1453 + }, + { + "epoch": 20.195718654434252, + "grad_norm": 0.21090206503868103, + "learning_rate": 0.0006, + "loss": 3.935939311981201, + "step": 1454 + }, + { + "epoch": 20.209698558322412, + "grad_norm": 0.2278691977262497, + "learning_rate": 0.0006, + "loss": 3.9623684883117676, + "step": 1455 + }, + { + "epoch": 20.22367846221057, + "grad_norm": 0.22291512787342072, + "learning_rate": 0.0006, + "loss": 3.9386210441589355, + "step": 1456 + }, + { + "epoch": 20.23765836609873, + "grad_norm": 0.2385793924331665, + "learning_rate": 0.0006, + "loss": 3.927365303039551, + "step": 1457 + }, + { + "epoch": 20.251638269986895, + "grad_norm": 0.23949867486953735, + "learning_rate": 0.0006, + "loss": 3.956698179244995, + "step": 1458 + }, + { + "epoch": 20.265618173875055, + "grad_norm": 0.2232269048690796, + "learning_rate": 0.0006, + "loss": 3.9465065002441406, + "step": 1459 + }, + { + "epoch": 20.279598077763215, + "grad_norm": 0.22286680340766907, + "learning_rate": 0.0006, + "loss": 3.9102284908294678, + "step": 1460 + }, + { + "epoch": 20.293577981651374, + "grad_norm": 0.24039050936698914, + "learning_rate": 0.0006, + "loss": 3.928055763244629, + "step": 1461 + }, + { + "epoch": 20.307557885539538, + "grad_norm": 0.2532738447189331, + "learning_rate": 0.0006, + "loss": 3.931753635406494, + "step": 1462 + }, + { + "epoch": 20.321537789427698, + "grad_norm": 0.2206273376941681, + "learning_rate": 0.0006, + "loss": 3.936119556427002, + "step": 1463 + }, + { + "epoch": 20.335517693315857, + "grad_norm": 0.20918945968151093, + "learning_rate": 0.0006, + "loss": 3.9228529930114746, + "step": 1464 + }, + { + "epoch": 20.34949759720402, + "grad_norm": 0.2324502319097519, + "learning_rate": 0.0006, + "loss": 3.9370768070220947, + "step": 1465 + }, + { + "epoch": 20.36347750109218, + "grad_norm": 0.26811033487319946, + "learning_rate": 0.0006, + "loss": 3.968515396118164, + "step": 1466 + }, + { + "epoch": 20.37745740498034, + "grad_norm": 0.2896045744419098, + "learning_rate": 0.0006, + "loss": 3.945124626159668, + "step": 1467 + }, + { + "epoch": 20.3914373088685, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 3.9399516582489014, + "step": 1468 + }, + { + "epoch": 20.405417212756664, + "grad_norm": 0.3076821565628052, + "learning_rate": 0.0006, + "loss": 3.9545583724975586, + "step": 1469 + }, + { + "epoch": 20.419397116644824, + "grad_norm": 0.3019449710845947, + "learning_rate": 0.0006, + "loss": 3.9502270221710205, + "step": 1470 + }, + { + "epoch": 20.433377020532983, + "grad_norm": 0.31832560896873474, + "learning_rate": 0.0006, + "loss": 3.940439224243164, + "step": 1471 + }, + { + "epoch": 20.447356924421143, + "grad_norm": 0.30303657054901123, + "learning_rate": 0.0006, + "loss": 3.9451770782470703, + "step": 1472 + }, + { + "epoch": 20.461336828309307, + "grad_norm": 0.28122979402542114, + "learning_rate": 0.0006, + "loss": 3.934508800506592, + "step": 1473 + }, + { + "epoch": 20.475316732197467, + "grad_norm": 0.27013441920280457, + "learning_rate": 0.0006, + "loss": 3.924323081970215, + "step": 1474 + }, + { + "epoch": 20.489296636085626, + "grad_norm": 0.29052063822746277, + "learning_rate": 0.0006, + "loss": 3.970916748046875, + "step": 1475 + }, + { + "epoch": 20.503276539973786, + "grad_norm": 0.2871626913547516, + "learning_rate": 0.0006, + "loss": 3.945425033569336, + "step": 1476 + }, + { + "epoch": 20.51725644386195, + "grad_norm": 0.2396184206008911, + "learning_rate": 0.0006, + "loss": 3.964290142059326, + "step": 1477 + }, + { + "epoch": 20.53123634775011, + "grad_norm": 0.21942107379436493, + "learning_rate": 0.0006, + "loss": 3.910101890563965, + "step": 1478 + }, + { + "epoch": 20.54521625163827, + "grad_norm": 0.22193685173988342, + "learning_rate": 0.0006, + "loss": 3.914005756378174, + "step": 1479 + }, + { + "epoch": 20.55919615552643, + "grad_norm": 0.20207515358924866, + "learning_rate": 0.0006, + "loss": 3.9575581550598145, + "step": 1480 + }, + { + "epoch": 20.573176059414592, + "grad_norm": 0.17855247855186462, + "learning_rate": 0.0006, + "loss": 3.941490411758423, + "step": 1481 + }, + { + "epoch": 20.587155963302752, + "grad_norm": 0.21268485486507416, + "learning_rate": 0.0006, + "loss": 3.94045352935791, + "step": 1482 + }, + { + "epoch": 20.601135867190912, + "grad_norm": 0.24890053272247314, + "learning_rate": 0.0006, + "loss": 3.932961940765381, + "step": 1483 + }, + { + "epoch": 20.615115771079076, + "grad_norm": 0.23771314322948456, + "learning_rate": 0.0006, + "loss": 3.9067630767822266, + "step": 1484 + }, + { + "epoch": 20.629095674967235, + "grad_norm": 0.20990237593650818, + "learning_rate": 0.0006, + "loss": 3.9476752281188965, + "step": 1485 + }, + { + "epoch": 20.643075578855395, + "grad_norm": 0.20058798789978027, + "learning_rate": 0.0006, + "loss": 3.9350547790527344, + "step": 1486 + }, + { + "epoch": 20.657055482743555, + "grad_norm": 0.1953001767396927, + "learning_rate": 0.0006, + "loss": 3.9437222480773926, + "step": 1487 + }, + { + "epoch": 20.67103538663172, + "grad_norm": 0.18748535215854645, + "learning_rate": 0.0006, + "loss": 3.9336047172546387, + "step": 1488 + }, + { + "epoch": 20.68501529051988, + "grad_norm": 0.18874801695346832, + "learning_rate": 0.0006, + "loss": 3.9042580127716064, + "step": 1489 + }, + { + "epoch": 20.698995194408038, + "grad_norm": 0.1844169795513153, + "learning_rate": 0.0006, + "loss": 3.9302420616149902, + "step": 1490 + }, + { + "epoch": 20.712975098296198, + "grad_norm": 0.18519413471221924, + "learning_rate": 0.0006, + "loss": 3.9527437686920166, + "step": 1491 + }, + { + "epoch": 20.72695500218436, + "grad_norm": 0.20084598660469055, + "learning_rate": 0.0006, + "loss": 3.9161760807037354, + "step": 1492 + }, + { + "epoch": 20.74093490607252, + "grad_norm": 0.2015734612941742, + "learning_rate": 0.0006, + "loss": 3.9466545581817627, + "step": 1493 + }, + { + "epoch": 20.75491480996068, + "grad_norm": 0.2210122048854828, + "learning_rate": 0.0006, + "loss": 3.8994693756103516, + "step": 1494 + }, + { + "epoch": 20.76889471384884, + "grad_norm": 0.23019762337207794, + "learning_rate": 0.0006, + "loss": 3.93685245513916, + "step": 1495 + }, + { + "epoch": 20.782874617737004, + "grad_norm": 0.21246281266212463, + "learning_rate": 0.0006, + "loss": 3.9499399662017822, + "step": 1496 + }, + { + "epoch": 20.796854521625164, + "grad_norm": 0.21142810583114624, + "learning_rate": 0.0006, + "loss": 3.9317150115966797, + "step": 1497 + }, + { + "epoch": 20.810834425513324, + "grad_norm": 0.20230524241924286, + "learning_rate": 0.0006, + "loss": 3.9389750957489014, + "step": 1498 + }, + { + "epoch": 20.824814329401484, + "grad_norm": 0.21096977591514587, + "learning_rate": 0.0006, + "loss": 3.9325194358825684, + "step": 1499 + }, + { + "epoch": 20.838794233289647, + "grad_norm": 0.2309989333152771, + "learning_rate": 0.0006, + "loss": 3.943641185760498, + "step": 1500 + }, + { + "epoch": 20.852774137177807, + "grad_norm": 0.2016306221485138, + "learning_rate": 0.0006, + "loss": 3.986043930053711, + "step": 1501 + }, + { + "epoch": 20.866754041065967, + "grad_norm": 0.2107970118522644, + "learning_rate": 0.0006, + "loss": 3.9219160079956055, + "step": 1502 + }, + { + "epoch": 20.88073394495413, + "grad_norm": 0.21580125391483307, + "learning_rate": 0.0006, + "loss": 3.942014694213867, + "step": 1503 + }, + { + "epoch": 20.89471384884229, + "grad_norm": 0.21348726749420166, + "learning_rate": 0.0006, + "loss": 3.9389920234680176, + "step": 1504 + }, + { + "epoch": 20.90869375273045, + "grad_norm": 0.23094943165779114, + "learning_rate": 0.0006, + "loss": 3.952993392944336, + "step": 1505 + }, + { + "epoch": 20.92267365661861, + "grad_norm": 0.22431740164756775, + "learning_rate": 0.0006, + "loss": 3.897671937942505, + "step": 1506 + }, + { + "epoch": 20.936653560506773, + "grad_norm": 0.20056353509426117, + "learning_rate": 0.0006, + "loss": 3.9100005626678467, + "step": 1507 + }, + { + "epoch": 20.950633464394933, + "grad_norm": 0.20604434609413147, + "learning_rate": 0.0006, + "loss": 3.9486045837402344, + "step": 1508 + }, + { + "epoch": 20.964613368283093, + "grad_norm": 0.22979380190372467, + "learning_rate": 0.0006, + "loss": 3.977163553237915, + "step": 1509 + }, + { + "epoch": 20.978593272171253, + "grad_norm": 0.2421523779630661, + "learning_rate": 0.0006, + "loss": 3.9216256141662598, + "step": 1510 + }, + { + "epoch": 20.992573176059416, + "grad_norm": 0.25776705145835876, + "learning_rate": 0.0006, + "loss": 3.9221739768981934, + "step": 1511 + }, + { + "epoch": 21.0, + "grad_norm": 0.2750694751739502, + "learning_rate": 0.0006, + "loss": 3.938098907470703, + "step": 1512 + }, + { + "epoch": 21.0, + "eval_loss": 4.159763336181641, + "eval_runtime": 44.8663, + "eval_samples_per_second": 54.428, + "eval_steps_per_second": 3.41, + "step": 1512 + }, + { + "epoch": 21.01397990388816, + "grad_norm": 0.24513043463230133, + "learning_rate": 0.0006, + "loss": 3.8939385414123535, + "step": 1513 + }, + { + "epoch": 21.027959807776323, + "grad_norm": 0.22209352254867554, + "learning_rate": 0.0006, + "loss": 3.9044857025146484, + "step": 1514 + }, + { + "epoch": 21.041939711664483, + "grad_norm": 0.22437648475170135, + "learning_rate": 0.0006, + "loss": 3.9325196743011475, + "step": 1515 + }, + { + "epoch": 21.055919615552643, + "grad_norm": 0.21168062090873718, + "learning_rate": 0.0006, + "loss": 3.882176637649536, + "step": 1516 + }, + { + "epoch": 21.069899519440803, + "grad_norm": 0.22334499657154083, + "learning_rate": 0.0006, + "loss": 3.8978934288024902, + "step": 1517 + }, + { + "epoch": 21.083879423328966, + "grad_norm": 0.21038010716438293, + "learning_rate": 0.0006, + "loss": 3.8807029724121094, + "step": 1518 + }, + { + "epoch": 21.097859327217126, + "grad_norm": 0.2243613600730896, + "learning_rate": 0.0006, + "loss": 3.924865961074829, + "step": 1519 + }, + { + "epoch": 21.111839231105286, + "grad_norm": 0.2535616159439087, + "learning_rate": 0.0006, + "loss": 3.9288227558135986, + "step": 1520 + }, + { + "epoch": 21.125819134993446, + "grad_norm": 0.2782756984233856, + "learning_rate": 0.0006, + "loss": 3.908233642578125, + "step": 1521 + }, + { + "epoch": 21.13979903888161, + "grad_norm": 0.2586214542388916, + "learning_rate": 0.0006, + "loss": 3.9151182174682617, + "step": 1522 + }, + { + "epoch": 21.15377894276977, + "grad_norm": 0.22465091943740845, + "learning_rate": 0.0006, + "loss": 3.9209084510803223, + "step": 1523 + }, + { + "epoch": 21.16775884665793, + "grad_norm": 0.2588018774986267, + "learning_rate": 0.0006, + "loss": 3.9295971393585205, + "step": 1524 + }, + { + "epoch": 21.18173875054609, + "grad_norm": 0.2637675702571869, + "learning_rate": 0.0006, + "loss": 3.9353199005126953, + "step": 1525 + }, + { + "epoch": 21.195718654434252, + "grad_norm": 0.2806383967399597, + "learning_rate": 0.0006, + "loss": 3.922337770462036, + "step": 1526 + }, + { + "epoch": 21.209698558322412, + "grad_norm": 0.27103501558303833, + "learning_rate": 0.0006, + "loss": 3.8811073303222656, + "step": 1527 + }, + { + "epoch": 21.22367846221057, + "grad_norm": 0.27203720808029175, + "learning_rate": 0.0006, + "loss": 3.9036178588867188, + "step": 1528 + }, + { + "epoch": 21.23765836609873, + "grad_norm": 0.2783355712890625, + "learning_rate": 0.0006, + "loss": 3.885456085205078, + "step": 1529 + }, + { + "epoch": 21.251638269986895, + "grad_norm": 0.2884930968284607, + "learning_rate": 0.0006, + "loss": 3.8936941623687744, + "step": 1530 + }, + { + "epoch": 21.265618173875055, + "grad_norm": 0.2829558849334717, + "learning_rate": 0.0006, + "loss": 3.927624225616455, + "step": 1531 + }, + { + "epoch": 21.279598077763215, + "grad_norm": 0.2809497117996216, + "learning_rate": 0.0006, + "loss": 3.8896753787994385, + "step": 1532 + }, + { + "epoch": 21.293577981651374, + "grad_norm": 0.27037671208381653, + "learning_rate": 0.0006, + "loss": 3.91316294670105, + "step": 1533 + }, + { + "epoch": 21.307557885539538, + "grad_norm": 0.310051292181015, + "learning_rate": 0.0006, + "loss": 3.9137332439422607, + "step": 1534 + }, + { + "epoch": 21.321537789427698, + "grad_norm": 0.30489876866340637, + "learning_rate": 0.0006, + "loss": 3.9088284969329834, + "step": 1535 + }, + { + "epoch": 21.335517693315857, + "grad_norm": 0.2607756555080414, + "learning_rate": 0.0006, + "loss": 3.9097847938537598, + "step": 1536 + }, + { + "epoch": 21.34949759720402, + "grad_norm": 0.2460775375366211, + "learning_rate": 0.0006, + "loss": 3.941211700439453, + "step": 1537 + }, + { + "epoch": 21.36347750109218, + "grad_norm": 0.24271734058856964, + "learning_rate": 0.0006, + "loss": 3.9140594005584717, + "step": 1538 + }, + { + "epoch": 21.37745740498034, + "grad_norm": 0.20012645423412323, + "learning_rate": 0.0006, + "loss": 3.888446807861328, + "step": 1539 + }, + { + "epoch": 21.3914373088685, + "grad_norm": 0.2196308672428131, + "learning_rate": 0.0006, + "loss": 3.9153785705566406, + "step": 1540 + }, + { + "epoch": 21.405417212756664, + "grad_norm": 0.22184589505195618, + "learning_rate": 0.0006, + "loss": 3.91996431350708, + "step": 1541 + }, + { + "epoch": 21.419397116644824, + "grad_norm": 0.22947315871715546, + "learning_rate": 0.0006, + "loss": 3.9268412590026855, + "step": 1542 + }, + { + "epoch": 21.433377020532983, + "grad_norm": 0.22275054454803467, + "learning_rate": 0.0006, + "loss": 3.909275531768799, + "step": 1543 + }, + { + "epoch": 21.447356924421143, + "grad_norm": 0.23103971779346466, + "learning_rate": 0.0006, + "loss": 3.925635814666748, + "step": 1544 + }, + { + "epoch": 21.461336828309307, + "grad_norm": 0.23379720747470856, + "learning_rate": 0.0006, + "loss": 3.926647186279297, + "step": 1545 + }, + { + "epoch": 21.475316732197467, + "grad_norm": 0.2244282215833664, + "learning_rate": 0.0006, + "loss": 3.9428000450134277, + "step": 1546 + }, + { + "epoch": 21.489296636085626, + "grad_norm": 0.22773298621177673, + "learning_rate": 0.0006, + "loss": 3.9378256797790527, + "step": 1547 + }, + { + "epoch": 21.503276539973786, + "grad_norm": 0.1918657273054123, + "learning_rate": 0.0006, + "loss": 3.904022216796875, + "step": 1548 + }, + { + "epoch": 21.51725644386195, + "grad_norm": 0.18415570259094238, + "learning_rate": 0.0006, + "loss": 3.9105122089385986, + "step": 1549 + }, + { + "epoch": 21.53123634775011, + "grad_norm": 0.22141380608081818, + "learning_rate": 0.0006, + "loss": 3.9153857231140137, + "step": 1550 + }, + { + "epoch": 21.54521625163827, + "grad_norm": 0.22533352673053741, + "learning_rate": 0.0006, + "loss": 3.9148974418640137, + "step": 1551 + }, + { + "epoch": 21.55919615552643, + "grad_norm": 0.2124762088060379, + "learning_rate": 0.0006, + "loss": 3.926311731338501, + "step": 1552 + }, + { + "epoch": 21.573176059414592, + "grad_norm": 0.239680215716362, + "learning_rate": 0.0006, + "loss": 3.9260334968566895, + "step": 1553 + }, + { + "epoch": 21.587155963302752, + "grad_norm": 0.24158740043640137, + "learning_rate": 0.0006, + "loss": 3.933223247528076, + "step": 1554 + }, + { + "epoch": 21.601135867190912, + "grad_norm": 0.2216576784849167, + "learning_rate": 0.0006, + "loss": 3.9065442085266113, + "step": 1555 + }, + { + "epoch": 21.615115771079076, + "grad_norm": 0.20099912583827972, + "learning_rate": 0.0006, + "loss": 3.923278570175171, + "step": 1556 + }, + { + "epoch": 21.629095674967235, + "grad_norm": 0.2337288111448288, + "learning_rate": 0.0006, + "loss": 3.92032527923584, + "step": 1557 + }, + { + "epoch": 21.643075578855395, + "grad_norm": 0.23574814200401306, + "learning_rate": 0.0006, + "loss": 3.896244525909424, + "step": 1558 + }, + { + "epoch": 21.657055482743555, + "grad_norm": 0.21338573098182678, + "learning_rate": 0.0006, + "loss": 3.930345058441162, + "step": 1559 + }, + { + "epoch": 21.67103538663172, + "grad_norm": 0.2375067174434662, + "learning_rate": 0.0006, + "loss": 3.864104986190796, + "step": 1560 + }, + { + "epoch": 21.68501529051988, + "grad_norm": 0.22490349411964417, + "learning_rate": 0.0006, + "loss": 3.883296012878418, + "step": 1561 + }, + { + "epoch": 21.698995194408038, + "grad_norm": 0.23021313548088074, + "learning_rate": 0.0006, + "loss": 3.915200710296631, + "step": 1562 + }, + { + "epoch": 21.712975098296198, + "grad_norm": 0.22590875625610352, + "learning_rate": 0.0006, + "loss": 3.903597354888916, + "step": 1563 + }, + { + "epoch": 21.72695500218436, + "grad_norm": 0.19066260755062103, + "learning_rate": 0.0006, + "loss": 3.9162631034851074, + "step": 1564 + }, + { + "epoch": 21.74093490607252, + "grad_norm": 0.18134327232837677, + "learning_rate": 0.0006, + "loss": 3.9167914390563965, + "step": 1565 + }, + { + "epoch": 21.75491480996068, + "grad_norm": 0.1782190054655075, + "learning_rate": 0.0006, + "loss": 3.900925636291504, + "step": 1566 + }, + { + "epoch": 21.76889471384884, + "grad_norm": 0.19034099578857422, + "learning_rate": 0.0006, + "loss": 3.896559238433838, + "step": 1567 + }, + { + "epoch": 21.782874617737004, + "grad_norm": 0.21509577333927155, + "learning_rate": 0.0006, + "loss": 3.891681671142578, + "step": 1568 + }, + { + "epoch": 21.796854521625164, + "grad_norm": 0.2370351105928421, + "learning_rate": 0.0006, + "loss": 3.886570453643799, + "step": 1569 + }, + { + "epoch": 21.810834425513324, + "grad_norm": 0.25546324253082275, + "learning_rate": 0.0006, + "loss": 3.9247193336486816, + "step": 1570 + }, + { + "epoch": 21.824814329401484, + "grad_norm": 0.2513384222984314, + "learning_rate": 0.0006, + "loss": 3.9120583534240723, + "step": 1571 + }, + { + "epoch": 21.838794233289647, + "grad_norm": 0.24691323935985565, + "learning_rate": 0.0006, + "loss": 3.9144935607910156, + "step": 1572 + }, + { + "epoch": 21.852774137177807, + "grad_norm": 0.2573968172073364, + "learning_rate": 0.0006, + "loss": 3.9517531394958496, + "step": 1573 + }, + { + "epoch": 21.866754041065967, + "grad_norm": 0.25461453199386597, + "learning_rate": 0.0006, + "loss": 3.93508243560791, + "step": 1574 + }, + { + "epoch": 21.88073394495413, + "grad_norm": 0.23756568133831024, + "learning_rate": 0.0006, + "loss": 3.8885269165039062, + "step": 1575 + }, + { + "epoch": 21.89471384884229, + "grad_norm": 0.2193172425031662, + "learning_rate": 0.0006, + "loss": 3.9103426933288574, + "step": 1576 + }, + { + "epoch": 21.90869375273045, + "grad_norm": 0.2350149303674698, + "learning_rate": 0.0006, + "loss": 3.9399590492248535, + "step": 1577 + }, + { + "epoch": 21.92267365661861, + "grad_norm": 0.23759333789348602, + "learning_rate": 0.0006, + "loss": 3.9433584213256836, + "step": 1578 + }, + { + "epoch": 21.936653560506773, + "grad_norm": 0.21108432114124298, + "learning_rate": 0.0006, + "loss": 3.9241819381713867, + "step": 1579 + }, + { + "epoch": 21.950633464394933, + "grad_norm": 0.22088949382305145, + "learning_rate": 0.0006, + "loss": 3.9231910705566406, + "step": 1580 + }, + { + "epoch": 21.964613368283093, + "grad_norm": 0.22125045955181122, + "learning_rate": 0.0006, + "loss": 3.896329164505005, + "step": 1581 + }, + { + "epoch": 21.978593272171253, + "grad_norm": 0.20745202898979187, + "learning_rate": 0.0006, + "loss": 3.8920536041259766, + "step": 1582 + }, + { + "epoch": 21.992573176059416, + "grad_norm": 0.2409721463918686, + "learning_rate": 0.0006, + "loss": 3.9061317443847656, + "step": 1583 + }, + { + "epoch": 22.0, + "grad_norm": 0.2669669985771179, + "learning_rate": 0.0006, + "loss": 3.922062397003174, + "step": 1584 + }, + { + "epoch": 22.0, + "eval_loss": 4.140966415405273, + "eval_runtime": 46.7132, + "eval_samples_per_second": 52.276, + "eval_steps_per_second": 3.275, + "step": 1584 + }, + { + "epoch": 22.01397990388816, + "grad_norm": 0.26155969500541687, + "learning_rate": 0.0006, + "loss": 3.888944625854492, + "step": 1585 + }, + { + "epoch": 22.027959807776323, + "grad_norm": 0.2579149007797241, + "learning_rate": 0.0006, + "loss": 3.8924355506896973, + "step": 1586 + }, + { + "epoch": 22.041939711664483, + "grad_norm": 0.2429896742105484, + "learning_rate": 0.0006, + "loss": 3.8714070320129395, + "step": 1587 + }, + { + "epoch": 22.055919615552643, + "grad_norm": 0.23497673869132996, + "learning_rate": 0.0006, + "loss": 3.905089855194092, + "step": 1588 + }, + { + "epoch": 22.069899519440803, + "grad_norm": 0.24074940383434296, + "learning_rate": 0.0006, + "loss": 3.886845111846924, + "step": 1589 + }, + { + "epoch": 22.083879423328966, + "grad_norm": 0.2226274162530899, + "learning_rate": 0.0006, + "loss": 3.8554329872131348, + "step": 1590 + }, + { + "epoch": 22.097859327217126, + "grad_norm": 0.22924423217773438, + "learning_rate": 0.0006, + "loss": 3.8914356231689453, + "step": 1591 + }, + { + "epoch": 22.111839231105286, + "grad_norm": 0.2459387183189392, + "learning_rate": 0.0006, + "loss": 3.902522087097168, + "step": 1592 + }, + { + "epoch": 22.125819134993446, + "grad_norm": 0.2704590857028961, + "learning_rate": 0.0006, + "loss": 3.896497964859009, + "step": 1593 + }, + { + "epoch": 22.13979903888161, + "grad_norm": 0.2848219871520996, + "learning_rate": 0.0006, + "loss": 3.88423228263855, + "step": 1594 + }, + { + "epoch": 22.15377894276977, + "grad_norm": 0.22996552288532257, + "learning_rate": 0.0006, + "loss": 3.9034953117370605, + "step": 1595 + }, + { + "epoch": 22.16775884665793, + "grad_norm": 0.2117270529270172, + "learning_rate": 0.0006, + "loss": 3.888279914855957, + "step": 1596 + }, + { + "epoch": 22.18173875054609, + "grad_norm": 0.19724160432815552, + "learning_rate": 0.0006, + "loss": 3.860525131225586, + "step": 1597 + }, + { + "epoch": 22.195718654434252, + "grad_norm": 0.2012624740600586, + "learning_rate": 0.0006, + "loss": 3.8930106163024902, + "step": 1598 + }, + { + "epoch": 22.209698558322412, + "grad_norm": 0.20243871212005615, + "learning_rate": 0.0006, + "loss": 3.8727619647979736, + "step": 1599 + }, + { + "epoch": 22.22367846221057, + "grad_norm": 0.21737465262413025, + "learning_rate": 0.0006, + "loss": 3.887969493865967, + "step": 1600 + }, + { + "epoch": 22.23765836609873, + "grad_norm": 0.23969845473766327, + "learning_rate": 0.0006, + "loss": 3.8629722595214844, + "step": 1601 + }, + { + "epoch": 22.251638269986895, + "grad_norm": 0.22874902188777924, + "learning_rate": 0.0006, + "loss": 3.9135584831237793, + "step": 1602 + }, + { + "epoch": 22.265618173875055, + "grad_norm": 0.209506556391716, + "learning_rate": 0.0006, + "loss": 3.8734190464019775, + "step": 1603 + }, + { + "epoch": 22.279598077763215, + "grad_norm": 0.22235789895057678, + "learning_rate": 0.0006, + "loss": 3.884854793548584, + "step": 1604 + }, + { + "epoch": 22.293577981651374, + "grad_norm": 0.21975041925907135, + "learning_rate": 0.0006, + "loss": 3.8860888481140137, + "step": 1605 + }, + { + "epoch": 22.307557885539538, + "grad_norm": 0.21474459767341614, + "learning_rate": 0.0006, + "loss": 3.9052200317382812, + "step": 1606 + }, + { + "epoch": 22.321537789427698, + "grad_norm": 0.2103329747915268, + "learning_rate": 0.0006, + "loss": 3.8516340255737305, + "step": 1607 + }, + { + "epoch": 22.335517693315857, + "grad_norm": 0.1981191635131836, + "learning_rate": 0.0006, + "loss": 3.9017434120178223, + "step": 1608 + }, + { + "epoch": 22.34949759720402, + "grad_norm": 0.20679591596126556, + "learning_rate": 0.0006, + "loss": 3.889885425567627, + "step": 1609 + }, + { + "epoch": 22.36347750109218, + "grad_norm": 0.20809867978096008, + "learning_rate": 0.0006, + "loss": 3.881868362426758, + "step": 1610 + }, + { + "epoch": 22.37745740498034, + "grad_norm": 0.21394680440425873, + "learning_rate": 0.0006, + "loss": 3.89980411529541, + "step": 1611 + }, + { + "epoch": 22.3914373088685, + "grad_norm": 0.2334284782409668, + "learning_rate": 0.0006, + "loss": 3.8672266006469727, + "step": 1612 + }, + { + "epoch": 22.405417212756664, + "grad_norm": 0.26521918177604675, + "learning_rate": 0.0006, + "loss": 3.8918118476867676, + "step": 1613 + }, + { + "epoch": 22.419397116644824, + "grad_norm": 0.2652994394302368, + "learning_rate": 0.0006, + "loss": 3.8683271408081055, + "step": 1614 + }, + { + "epoch": 22.433377020532983, + "grad_norm": 0.2568066716194153, + "learning_rate": 0.0006, + "loss": 3.892523765563965, + "step": 1615 + }, + { + "epoch": 22.447356924421143, + "grad_norm": 0.260052353143692, + "learning_rate": 0.0006, + "loss": 3.897305488586426, + "step": 1616 + }, + { + "epoch": 22.461336828309307, + "grad_norm": 0.2744271457195282, + "learning_rate": 0.0006, + "loss": 3.8962221145629883, + "step": 1617 + }, + { + "epoch": 22.475316732197467, + "grad_norm": 0.23755787312984467, + "learning_rate": 0.0006, + "loss": 3.888184070587158, + "step": 1618 + }, + { + "epoch": 22.489296636085626, + "grad_norm": 0.2515312135219574, + "learning_rate": 0.0006, + "loss": 3.8946003913879395, + "step": 1619 + }, + { + "epoch": 22.503276539973786, + "grad_norm": 0.24835044145584106, + "learning_rate": 0.0006, + "loss": 3.8711423873901367, + "step": 1620 + }, + { + "epoch": 22.51725644386195, + "grad_norm": 0.22615326941013336, + "learning_rate": 0.0006, + "loss": 3.8878846168518066, + "step": 1621 + }, + { + "epoch": 22.53123634775011, + "grad_norm": 0.20482423901557922, + "learning_rate": 0.0006, + "loss": 3.8782598972320557, + "step": 1622 + }, + { + "epoch": 22.54521625163827, + "grad_norm": 0.20436473190784454, + "learning_rate": 0.0006, + "loss": 3.9075279235839844, + "step": 1623 + }, + { + "epoch": 22.55919615552643, + "grad_norm": 0.2066277265548706, + "learning_rate": 0.0006, + "loss": 3.89908766746521, + "step": 1624 + }, + { + "epoch": 22.573176059414592, + "grad_norm": 0.20735307037830353, + "learning_rate": 0.0006, + "loss": 3.865204334259033, + "step": 1625 + }, + { + "epoch": 22.587155963302752, + "grad_norm": 0.20955748856067657, + "learning_rate": 0.0006, + "loss": 3.8835532665252686, + "step": 1626 + }, + { + "epoch": 22.601135867190912, + "grad_norm": 0.21354222297668457, + "learning_rate": 0.0006, + "loss": 3.9012551307678223, + "step": 1627 + }, + { + "epoch": 22.615115771079076, + "grad_norm": 0.2075091004371643, + "learning_rate": 0.0006, + "loss": 3.8733482360839844, + "step": 1628 + }, + { + "epoch": 22.629095674967235, + "grad_norm": 0.20207874476909637, + "learning_rate": 0.0006, + "loss": 3.9193859100341797, + "step": 1629 + }, + { + "epoch": 22.643075578855395, + "grad_norm": 0.21863923966884613, + "learning_rate": 0.0006, + "loss": 3.883518695831299, + "step": 1630 + }, + { + "epoch": 22.657055482743555, + "grad_norm": 0.22117522358894348, + "learning_rate": 0.0006, + "loss": 3.9163284301757812, + "step": 1631 + }, + { + "epoch": 22.67103538663172, + "grad_norm": 0.2078622728586197, + "learning_rate": 0.0006, + "loss": 3.868274688720703, + "step": 1632 + }, + { + "epoch": 22.68501529051988, + "grad_norm": 0.22745893895626068, + "learning_rate": 0.0006, + "loss": 3.9171340465545654, + "step": 1633 + }, + { + "epoch": 22.698995194408038, + "grad_norm": 0.2312736064195633, + "learning_rate": 0.0006, + "loss": 3.9487013816833496, + "step": 1634 + }, + { + "epoch": 22.712975098296198, + "grad_norm": 0.20491497218608856, + "learning_rate": 0.0006, + "loss": 3.91833758354187, + "step": 1635 + }, + { + "epoch": 22.72695500218436, + "grad_norm": 0.1899084597826004, + "learning_rate": 0.0006, + "loss": 3.876225709915161, + "step": 1636 + }, + { + "epoch": 22.74093490607252, + "grad_norm": 0.18581682443618774, + "learning_rate": 0.0006, + "loss": 3.8667988777160645, + "step": 1637 + }, + { + "epoch": 22.75491480996068, + "grad_norm": 0.19855599105358124, + "learning_rate": 0.0006, + "loss": 3.900789260864258, + "step": 1638 + }, + { + "epoch": 22.76889471384884, + "grad_norm": 0.19951458275318146, + "learning_rate": 0.0006, + "loss": 3.8850367069244385, + "step": 1639 + }, + { + "epoch": 22.782874617737004, + "grad_norm": 0.22802744805812836, + "learning_rate": 0.0006, + "loss": 3.9181363582611084, + "step": 1640 + }, + { + "epoch": 22.796854521625164, + "grad_norm": 0.24279919266700745, + "learning_rate": 0.0006, + "loss": 3.8843770027160645, + "step": 1641 + }, + { + "epoch": 22.810834425513324, + "grad_norm": 0.23554913699626923, + "learning_rate": 0.0006, + "loss": 3.8802413940429688, + "step": 1642 + }, + { + "epoch": 22.824814329401484, + "grad_norm": 0.22343270480632782, + "learning_rate": 0.0006, + "loss": 3.8524107933044434, + "step": 1643 + }, + { + "epoch": 22.838794233289647, + "grad_norm": 0.2185724526643753, + "learning_rate": 0.0006, + "loss": 3.9117047786712646, + "step": 1644 + }, + { + "epoch": 22.852774137177807, + "grad_norm": 0.2114841341972351, + "learning_rate": 0.0006, + "loss": 3.90325927734375, + "step": 1645 + }, + { + "epoch": 22.866754041065967, + "grad_norm": 0.21072550117969513, + "learning_rate": 0.0006, + "loss": 3.8988137245178223, + "step": 1646 + }, + { + "epoch": 22.88073394495413, + "grad_norm": 0.2250078171491623, + "learning_rate": 0.0006, + "loss": 3.9201531410217285, + "step": 1647 + }, + { + "epoch": 22.89471384884229, + "grad_norm": 0.20928071439266205, + "learning_rate": 0.0006, + "loss": 3.91666316986084, + "step": 1648 + }, + { + "epoch": 22.90869375273045, + "grad_norm": 0.24096311628818512, + "learning_rate": 0.0006, + "loss": 3.8797364234924316, + "step": 1649 + }, + { + "epoch": 22.92267365661861, + "grad_norm": 0.2591194212436676, + "learning_rate": 0.0006, + "loss": 3.883273124694824, + "step": 1650 + }, + { + "epoch": 22.936653560506773, + "grad_norm": 0.27342668175697327, + "learning_rate": 0.0006, + "loss": 3.8645026683807373, + "step": 1651 + }, + { + "epoch": 22.950633464394933, + "grad_norm": 0.2448573112487793, + "learning_rate": 0.0006, + "loss": 3.9093551635742188, + "step": 1652 + }, + { + "epoch": 22.964613368283093, + "grad_norm": 0.19899503886699677, + "learning_rate": 0.0006, + "loss": 3.9001057147979736, + "step": 1653 + }, + { + "epoch": 22.978593272171253, + "grad_norm": 0.2023746520280838, + "learning_rate": 0.0006, + "loss": 3.886474370956421, + "step": 1654 + }, + { + "epoch": 22.992573176059416, + "grad_norm": 0.19894269108772278, + "learning_rate": 0.0006, + "loss": 3.9004204273223877, + "step": 1655 + }, + { + "epoch": 23.0, + "grad_norm": 0.2401709407567978, + "learning_rate": 0.0006, + "loss": 3.8665566444396973, + "step": 1656 + }, + { + "epoch": 23.0, + "eval_loss": 4.112459659576416, + "eval_runtime": 44.8325, + "eval_samples_per_second": 54.469, + "eval_steps_per_second": 3.413, + "step": 1656 + }, + { + "epoch": 23.01397990388816, + "grad_norm": 0.22662921249866486, + "learning_rate": 0.0006, + "loss": 3.853271961212158, + "step": 1657 + }, + { + "epoch": 23.027959807776323, + "grad_norm": 0.24406856298446655, + "learning_rate": 0.0006, + "loss": 3.8691890239715576, + "step": 1658 + }, + { + "epoch": 23.041939711664483, + "grad_norm": 0.2266651839017868, + "learning_rate": 0.0006, + "loss": 3.838599681854248, + "step": 1659 + }, + { + "epoch": 23.055919615552643, + "grad_norm": 0.22303511202335358, + "learning_rate": 0.0006, + "loss": 3.8678267002105713, + "step": 1660 + }, + { + "epoch": 23.069899519440803, + "grad_norm": 0.2272164225578308, + "learning_rate": 0.0006, + "loss": 3.9045681953430176, + "step": 1661 + }, + { + "epoch": 23.083879423328966, + "grad_norm": 0.25004875659942627, + "learning_rate": 0.0006, + "loss": 3.856503963470459, + "step": 1662 + }, + { + "epoch": 23.097859327217126, + "grad_norm": 0.26016247272491455, + "learning_rate": 0.0006, + "loss": 3.878587007522583, + "step": 1663 + }, + { + "epoch": 23.111839231105286, + "grad_norm": 0.28539901971817017, + "learning_rate": 0.0006, + "loss": 3.864248514175415, + "step": 1664 + }, + { + "epoch": 23.125819134993446, + "grad_norm": 0.27504822611808777, + "learning_rate": 0.0006, + "loss": 3.821448802947998, + "step": 1665 + }, + { + "epoch": 23.13979903888161, + "grad_norm": 0.238910973072052, + "learning_rate": 0.0006, + "loss": 3.8635847568511963, + "step": 1666 + }, + { + "epoch": 23.15377894276977, + "grad_norm": 0.24179652333259583, + "learning_rate": 0.0006, + "loss": 3.8339638710021973, + "step": 1667 + }, + { + "epoch": 23.16775884665793, + "grad_norm": 0.2199544757604599, + "learning_rate": 0.0006, + "loss": 3.868396759033203, + "step": 1668 + }, + { + "epoch": 23.18173875054609, + "grad_norm": 0.1965002566576004, + "learning_rate": 0.0006, + "loss": 3.8761439323425293, + "step": 1669 + }, + { + "epoch": 23.195718654434252, + "grad_norm": 0.20426614582538605, + "learning_rate": 0.0006, + "loss": 3.822899580001831, + "step": 1670 + }, + { + "epoch": 23.209698558322412, + "grad_norm": 0.2197263389825821, + "learning_rate": 0.0006, + "loss": 3.887728452682495, + "step": 1671 + }, + { + "epoch": 23.22367846221057, + "grad_norm": 0.22844573855400085, + "learning_rate": 0.0006, + "loss": 3.8550517559051514, + "step": 1672 + }, + { + "epoch": 23.23765836609873, + "grad_norm": 0.2347746044397354, + "learning_rate": 0.0006, + "loss": 3.903310537338257, + "step": 1673 + }, + { + "epoch": 23.251638269986895, + "grad_norm": 0.24167625606060028, + "learning_rate": 0.0006, + "loss": 3.8397774696350098, + "step": 1674 + }, + { + "epoch": 23.265618173875055, + "grad_norm": 0.2691650688648224, + "learning_rate": 0.0006, + "loss": 3.853254795074463, + "step": 1675 + }, + { + "epoch": 23.279598077763215, + "grad_norm": 0.29421621561050415, + "learning_rate": 0.0006, + "loss": 3.86065411567688, + "step": 1676 + }, + { + "epoch": 23.293577981651374, + "grad_norm": 0.31074345111846924, + "learning_rate": 0.0006, + "loss": 3.8716742992401123, + "step": 1677 + }, + { + "epoch": 23.307557885539538, + "grad_norm": 0.3044569194316864, + "learning_rate": 0.0006, + "loss": 3.8738951683044434, + "step": 1678 + }, + { + "epoch": 23.321537789427698, + "grad_norm": 0.30496764183044434, + "learning_rate": 0.0006, + "loss": 3.884446620941162, + "step": 1679 + }, + { + "epoch": 23.335517693315857, + "grad_norm": 0.31122756004333496, + "learning_rate": 0.0006, + "loss": 3.878495693206787, + "step": 1680 + }, + { + "epoch": 23.34949759720402, + "grad_norm": 0.32268181443214417, + "learning_rate": 0.0006, + "loss": 3.8793649673461914, + "step": 1681 + }, + { + "epoch": 23.36347750109218, + "grad_norm": 0.3297140598297119, + "learning_rate": 0.0006, + "loss": 3.87484073638916, + "step": 1682 + }, + { + "epoch": 23.37745740498034, + "grad_norm": 0.26007479429244995, + "learning_rate": 0.0006, + "loss": 3.8510947227478027, + "step": 1683 + }, + { + "epoch": 23.3914373088685, + "grad_norm": 0.2627335786819458, + "learning_rate": 0.0006, + "loss": 3.8783209323883057, + "step": 1684 + }, + { + "epoch": 23.405417212756664, + "grad_norm": 0.256452739238739, + "learning_rate": 0.0006, + "loss": 3.8594281673431396, + "step": 1685 + }, + { + "epoch": 23.419397116644824, + "grad_norm": 0.23892226815223694, + "learning_rate": 0.0006, + "loss": 3.898951292037964, + "step": 1686 + }, + { + "epoch": 23.433377020532983, + "grad_norm": 0.21625587344169617, + "learning_rate": 0.0006, + "loss": 3.8679966926574707, + "step": 1687 + }, + { + "epoch": 23.447356924421143, + "grad_norm": 0.21924619376659393, + "learning_rate": 0.0006, + "loss": 3.8774075508117676, + "step": 1688 + }, + { + "epoch": 23.461336828309307, + "grad_norm": 0.21500127017498016, + "learning_rate": 0.0006, + "loss": 3.870619297027588, + "step": 1689 + }, + { + "epoch": 23.475316732197467, + "grad_norm": 0.22580556571483612, + "learning_rate": 0.0006, + "loss": 3.887722969055176, + "step": 1690 + }, + { + "epoch": 23.489296636085626, + "grad_norm": 0.2500104308128357, + "learning_rate": 0.0006, + "loss": 3.88789963722229, + "step": 1691 + }, + { + "epoch": 23.503276539973786, + "grad_norm": 0.22462762892246246, + "learning_rate": 0.0006, + "loss": 3.863997459411621, + "step": 1692 + }, + { + "epoch": 23.51725644386195, + "grad_norm": 0.21427781879901886, + "learning_rate": 0.0006, + "loss": 3.8827033042907715, + "step": 1693 + }, + { + "epoch": 23.53123634775011, + "grad_norm": 0.22278577089309692, + "learning_rate": 0.0006, + "loss": 3.8659563064575195, + "step": 1694 + }, + { + "epoch": 23.54521625163827, + "grad_norm": 0.22801144421100616, + "learning_rate": 0.0006, + "loss": 3.9031362533569336, + "step": 1695 + }, + { + "epoch": 23.55919615552643, + "grad_norm": 0.25071898102760315, + "learning_rate": 0.0006, + "loss": 3.887746810913086, + "step": 1696 + }, + { + "epoch": 23.573176059414592, + "grad_norm": 0.2564085125923157, + "learning_rate": 0.0006, + "loss": 3.8918356895446777, + "step": 1697 + }, + { + "epoch": 23.587155963302752, + "grad_norm": 0.24603120982646942, + "learning_rate": 0.0006, + "loss": 3.850416421890259, + "step": 1698 + }, + { + "epoch": 23.601135867190912, + "grad_norm": 0.20539002120494843, + "learning_rate": 0.0006, + "loss": 3.862060070037842, + "step": 1699 + }, + { + "epoch": 23.615115771079076, + "grad_norm": 0.2022249400615692, + "learning_rate": 0.0006, + "loss": 3.899008274078369, + "step": 1700 + }, + { + "epoch": 23.629095674967235, + "grad_norm": 0.2435392290353775, + "learning_rate": 0.0006, + "loss": 3.844388961791992, + "step": 1701 + }, + { + "epoch": 23.643075578855395, + "grad_norm": 0.21146756410598755, + "learning_rate": 0.0006, + "loss": 3.8972439765930176, + "step": 1702 + }, + { + "epoch": 23.657055482743555, + "grad_norm": 0.2025400996208191, + "learning_rate": 0.0006, + "loss": 3.865253448486328, + "step": 1703 + }, + { + "epoch": 23.67103538663172, + "grad_norm": 0.21129970252513885, + "learning_rate": 0.0006, + "loss": 3.8768205642700195, + "step": 1704 + }, + { + "epoch": 23.68501529051988, + "grad_norm": 0.22982284426689148, + "learning_rate": 0.0006, + "loss": 3.8792667388916016, + "step": 1705 + }, + { + "epoch": 23.698995194408038, + "grad_norm": 0.23013733327388763, + "learning_rate": 0.0006, + "loss": 3.880897045135498, + "step": 1706 + }, + { + "epoch": 23.712975098296198, + "grad_norm": 0.2277672290802002, + "learning_rate": 0.0006, + "loss": 3.8738410472869873, + "step": 1707 + }, + { + "epoch": 23.72695500218436, + "grad_norm": 0.2343369573354721, + "learning_rate": 0.0006, + "loss": 3.8587026596069336, + "step": 1708 + }, + { + "epoch": 23.74093490607252, + "grad_norm": 0.23159530758857727, + "learning_rate": 0.0006, + "loss": 3.856306552886963, + "step": 1709 + }, + { + "epoch": 23.75491480996068, + "grad_norm": 0.19541035592556, + "learning_rate": 0.0006, + "loss": 3.8294754028320312, + "step": 1710 + }, + { + "epoch": 23.76889471384884, + "grad_norm": 0.22999322414398193, + "learning_rate": 0.0006, + "loss": 3.882676124572754, + "step": 1711 + }, + { + "epoch": 23.782874617737004, + "grad_norm": 0.23442843556404114, + "learning_rate": 0.0006, + "loss": 3.8887529373168945, + "step": 1712 + }, + { + "epoch": 23.796854521625164, + "grad_norm": 0.22914239764213562, + "learning_rate": 0.0006, + "loss": 3.867673635482788, + "step": 1713 + }, + { + "epoch": 23.810834425513324, + "grad_norm": 0.20683827996253967, + "learning_rate": 0.0006, + "loss": 3.8999581336975098, + "step": 1714 + }, + { + "epoch": 23.824814329401484, + "grad_norm": 0.19281277060508728, + "learning_rate": 0.0006, + "loss": 3.8997726440429688, + "step": 1715 + }, + { + "epoch": 23.838794233289647, + "grad_norm": 0.20058563351631165, + "learning_rate": 0.0006, + "loss": 3.8583860397338867, + "step": 1716 + }, + { + "epoch": 23.852774137177807, + "grad_norm": 0.19856606423854828, + "learning_rate": 0.0006, + "loss": 3.88948392868042, + "step": 1717 + }, + { + "epoch": 23.866754041065967, + "grad_norm": 0.2099323868751526, + "learning_rate": 0.0006, + "loss": 3.878458261489868, + "step": 1718 + }, + { + "epoch": 23.88073394495413, + "grad_norm": 0.22945016622543335, + "learning_rate": 0.0006, + "loss": 3.84116268157959, + "step": 1719 + }, + { + "epoch": 23.89471384884229, + "grad_norm": 0.22646087408065796, + "learning_rate": 0.0006, + "loss": 3.9006617069244385, + "step": 1720 + }, + { + "epoch": 23.90869375273045, + "grad_norm": 0.20282860100269318, + "learning_rate": 0.0006, + "loss": 3.8781144618988037, + "step": 1721 + }, + { + "epoch": 23.92267365661861, + "grad_norm": 0.1918555349111557, + "learning_rate": 0.0006, + "loss": 3.8560891151428223, + "step": 1722 + }, + { + "epoch": 23.936653560506773, + "grad_norm": 0.19286513328552246, + "learning_rate": 0.0006, + "loss": 3.873220920562744, + "step": 1723 + }, + { + "epoch": 23.950633464394933, + "grad_norm": 0.21071338653564453, + "learning_rate": 0.0006, + "loss": 3.9147067070007324, + "step": 1724 + }, + { + "epoch": 23.964613368283093, + "grad_norm": 0.20956715941429138, + "learning_rate": 0.0006, + "loss": 3.8762729167938232, + "step": 1725 + }, + { + "epoch": 23.978593272171253, + "grad_norm": 0.23053105175495148, + "learning_rate": 0.0006, + "loss": 3.873781681060791, + "step": 1726 + }, + { + "epoch": 23.992573176059416, + "grad_norm": 0.2719029486179352, + "learning_rate": 0.0006, + "loss": 3.862342357635498, + "step": 1727 + }, + { + "epoch": 24.0, + "grad_norm": 0.2933610677719116, + "learning_rate": 0.0006, + "loss": 3.8657689094543457, + "step": 1728 + }, + { + "epoch": 24.0, + "eval_loss": 4.0959153175354, + "eval_runtime": 44.3631, + "eval_samples_per_second": 55.046, + "eval_steps_per_second": 3.449, + "step": 1728 + }, + { + "epoch": 24.01397990388816, + "grad_norm": 0.24905365705490112, + "learning_rate": 0.0006, + "loss": 3.838136911392212, + "step": 1729 + }, + { + "epoch": 24.027959807776323, + "grad_norm": 0.25948020815849304, + "learning_rate": 0.0006, + "loss": 3.8581268787384033, + "step": 1730 + }, + { + "epoch": 24.041939711664483, + "grad_norm": 0.24965140223503113, + "learning_rate": 0.0006, + "loss": 3.8628978729248047, + "step": 1731 + }, + { + "epoch": 24.055919615552643, + "grad_norm": 0.23428823053836823, + "learning_rate": 0.0006, + "loss": 3.8188819885253906, + "step": 1732 + }, + { + "epoch": 24.069899519440803, + "grad_norm": 0.22191211581230164, + "learning_rate": 0.0006, + "loss": 3.8616039752960205, + "step": 1733 + }, + { + "epoch": 24.083879423328966, + "grad_norm": 0.20257535576820374, + "learning_rate": 0.0006, + "loss": 3.8632802963256836, + "step": 1734 + }, + { + "epoch": 24.097859327217126, + "grad_norm": 0.20385196805000305, + "learning_rate": 0.0006, + "loss": 3.885817050933838, + "step": 1735 + }, + { + "epoch": 24.111839231105286, + "grad_norm": 0.19921693205833435, + "learning_rate": 0.0006, + "loss": 3.838515043258667, + "step": 1736 + }, + { + "epoch": 24.125819134993446, + "grad_norm": 0.20221556723117828, + "learning_rate": 0.0006, + "loss": 3.8585309982299805, + "step": 1737 + }, + { + "epoch": 24.13979903888161, + "grad_norm": 0.20124691724777222, + "learning_rate": 0.0006, + "loss": 3.81656551361084, + "step": 1738 + }, + { + "epoch": 24.15377894276977, + "grad_norm": 0.1810830533504486, + "learning_rate": 0.0006, + "loss": 3.841783046722412, + "step": 1739 + }, + { + "epoch": 24.16775884665793, + "grad_norm": 0.18414196372032166, + "learning_rate": 0.0006, + "loss": 3.8614797592163086, + "step": 1740 + }, + { + "epoch": 24.18173875054609, + "grad_norm": 0.18930725753307343, + "learning_rate": 0.0006, + "loss": 3.8382534980773926, + "step": 1741 + }, + { + "epoch": 24.195718654434252, + "grad_norm": 0.19658128917217255, + "learning_rate": 0.0006, + "loss": 3.881742477416992, + "step": 1742 + }, + { + "epoch": 24.209698558322412, + "grad_norm": 0.20175589621067047, + "learning_rate": 0.0006, + "loss": 3.8760581016540527, + "step": 1743 + }, + { + "epoch": 24.22367846221057, + "grad_norm": 0.19416265189647675, + "learning_rate": 0.0006, + "loss": 3.8373687267303467, + "step": 1744 + }, + { + "epoch": 24.23765836609873, + "grad_norm": 0.20206521451473236, + "learning_rate": 0.0006, + "loss": 3.8322830200195312, + "step": 1745 + }, + { + "epoch": 24.251638269986895, + "grad_norm": 0.21797429025173187, + "learning_rate": 0.0006, + "loss": 3.849905490875244, + "step": 1746 + }, + { + "epoch": 24.265618173875055, + "grad_norm": 0.21295784413814545, + "learning_rate": 0.0006, + "loss": 3.847714900970459, + "step": 1747 + }, + { + "epoch": 24.279598077763215, + "grad_norm": 0.22023876011371613, + "learning_rate": 0.0006, + "loss": 3.8221592903137207, + "step": 1748 + }, + { + "epoch": 24.293577981651374, + "grad_norm": 0.2125576138496399, + "learning_rate": 0.0006, + "loss": 3.8070976734161377, + "step": 1749 + }, + { + "epoch": 24.307557885539538, + "grad_norm": 0.18673811852931976, + "learning_rate": 0.0006, + "loss": 3.866878032684326, + "step": 1750 + }, + { + "epoch": 24.321537789427698, + "grad_norm": 0.1972627341747284, + "learning_rate": 0.0006, + "loss": 3.846404552459717, + "step": 1751 + }, + { + "epoch": 24.335517693315857, + "grad_norm": 0.21846632659435272, + "learning_rate": 0.0006, + "loss": 3.8528640270233154, + "step": 1752 + }, + { + "epoch": 24.34949759720402, + "grad_norm": 0.22234080731868744, + "learning_rate": 0.0006, + "loss": 3.8268141746520996, + "step": 1753 + }, + { + "epoch": 24.36347750109218, + "grad_norm": 0.23002761602401733, + "learning_rate": 0.0006, + "loss": 3.832444667816162, + "step": 1754 + }, + { + "epoch": 24.37745740498034, + "grad_norm": 0.22526559233665466, + "learning_rate": 0.0006, + "loss": 3.864406108856201, + "step": 1755 + }, + { + "epoch": 24.3914373088685, + "grad_norm": 0.2290039211511612, + "learning_rate": 0.0006, + "loss": 3.8449103832244873, + "step": 1756 + }, + { + "epoch": 24.405417212756664, + "grad_norm": 0.23145617544651031, + "learning_rate": 0.0006, + "loss": 3.8183751106262207, + "step": 1757 + }, + { + "epoch": 24.419397116644824, + "grad_norm": 0.24287554621696472, + "learning_rate": 0.0006, + "loss": 3.809481382369995, + "step": 1758 + }, + { + "epoch": 24.433377020532983, + "grad_norm": 0.2672404646873474, + "learning_rate": 0.0006, + "loss": 3.877800464630127, + "step": 1759 + }, + { + "epoch": 24.447356924421143, + "grad_norm": 0.26292186975479126, + "learning_rate": 0.0006, + "loss": 3.8329367637634277, + "step": 1760 + }, + { + "epoch": 24.461336828309307, + "grad_norm": 0.26235947012901306, + "learning_rate": 0.0006, + "loss": 3.8414158821105957, + "step": 1761 + }, + { + "epoch": 24.475316732197467, + "grad_norm": 0.2638382613658905, + "learning_rate": 0.0006, + "loss": 3.849188804626465, + "step": 1762 + }, + { + "epoch": 24.489296636085626, + "grad_norm": 0.2564602196216583, + "learning_rate": 0.0006, + "loss": 3.865501880645752, + "step": 1763 + }, + { + "epoch": 24.503276539973786, + "grad_norm": 0.21352271735668182, + "learning_rate": 0.0006, + "loss": 3.87910795211792, + "step": 1764 + }, + { + "epoch": 24.51725644386195, + "grad_norm": 0.2470584511756897, + "learning_rate": 0.0006, + "loss": 3.858750343322754, + "step": 1765 + }, + { + "epoch": 24.53123634775011, + "grad_norm": 0.24907536804676056, + "learning_rate": 0.0006, + "loss": 3.8532559871673584, + "step": 1766 + }, + { + "epoch": 24.54521625163827, + "grad_norm": 0.2426205575466156, + "learning_rate": 0.0006, + "loss": 3.8659827709198, + "step": 1767 + }, + { + "epoch": 24.55919615552643, + "grad_norm": 0.23481151461601257, + "learning_rate": 0.0006, + "loss": 3.863948345184326, + "step": 1768 + }, + { + "epoch": 24.573176059414592, + "grad_norm": 0.22717779874801636, + "learning_rate": 0.0006, + "loss": 3.848527193069458, + "step": 1769 + }, + { + "epoch": 24.587155963302752, + "grad_norm": 0.2267129123210907, + "learning_rate": 0.0006, + "loss": 3.8600735664367676, + "step": 1770 + }, + { + "epoch": 24.601135867190912, + "grad_norm": 0.24967710673809052, + "learning_rate": 0.0006, + "loss": 3.84291934967041, + "step": 1771 + }, + { + "epoch": 24.615115771079076, + "grad_norm": 0.25308957695961, + "learning_rate": 0.0006, + "loss": 3.846181631088257, + "step": 1772 + }, + { + "epoch": 24.629095674967235, + "grad_norm": 0.2689298391342163, + "learning_rate": 0.0006, + "loss": 3.8572893142700195, + "step": 1773 + }, + { + "epoch": 24.643075578855395, + "grad_norm": 0.26458555459976196, + "learning_rate": 0.0006, + "loss": 3.8583621978759766, + "step": 1774 + }, + { + "epoch": 24.657055482743555, + "grad_norm": 0.24416811764240265, + "learning_rate": 0.0006, + "loss": 3.8648223876953125, + "step": 1775 + }, + { + "epoch": 24.67103538663172, + "grad_norm": 0.22218526899814606, + "learning_rate": 0.0006, + "loss": 3.839395523071289, + "step": 1776 + }, + { + "epoch": 24.68501529051988, + "grad_norm": 0.2147492915391922, + "learning_rate": 0.0006, + "loss": 3.875734567642212, + "step": 1777 + }, + { + "epoch": 24.698995194408038, + "grad_norm": 0.2346794754266739, + "learning_rate": 0.0006, + "loss": 3.854768991470337, + "step": 1778 + }, + { + "epoch": 24.712975098296198, + "grad_norm": 0.21406520903110504, + "learning_rate": 0.0006, + "loss": 3.8269104957580566, + "step": 1779 + }, + { + "epoch": 24.72695500218436, + "grad_norm": 0.20716224610805511, + "learning_rate": 0.0006, + "loss": 3.8245768547058105, + "step": 1780 + }, + { + "epoch": 24.74093490607252, + "grad_norm": 0.21445901691913605, + "learning_rate": 0.0006, + "loss": 3.8877978324890137, + "step": 1781 + }, + { + "epoch": 24.75491480996068, + "grad_norm": 0.21964985132217407, + "learning_rate": 0.0006, + "loss": 3.8602452278137207, + "step": 1782 + }, + { + "epoch": 24.76889471384884, + "grad_norm": 0.209807351231575, + "learning_rate": 0.0006, + "loss": 3.853428602218628, + "step": 1783 + }, + { + "epoch": 24.782874617737004, + "grad_norm": 0.19564911723136902, + "learning_rate": 0.0006, + "loss": 3.832275867462158, + "step": 1784 + }, + { + "epoch": 24.796854521625164, + "grad_norm": 0.21394333243370056, + "learning_rate": 0.0006, + "loss": 3.8543171882629395, + "step": 1785 + }, + { + "epoch": 24.810834425513324, + "grad_norm": 0.23156948387622833, + "learning_rate": 0.0006, + "loss": 3.8539412021636963, + "step": 1786 + }, + { + "epoch": 24.824814329401484, + "grad_norm": 0.2378678321838379, + "learning_rate": 0.0006, + "loss": 3.8409833908081055, + "step": 1787 + }, + { + "epoch": 24.838794233289647, + "grad_norm": 0.23816189169883728, + "learning_rate": 0.0006, + "loss": 3.855379581451416, + "step": 1788 + }, + { + "epoch": 24.852774137177807, + "grad_norm": 0.23109886050224304, + "learning_rate": 0.0006, + "loss": 3.8689517974853516, + "step": 1789 + }, + { + "epoch": 24.866754041065967, + "grad_norm": 0.2042883038520813, + "learning_rate": 0.0006, + "loss": 3.8730404376983643, + "step": 1790 + }, + { + "epoch": 24.88073394495413, + "grad_norm": 0.2039479911327362, + "learning_rate": 0.0006, + "loss": 3.8474984169006348, + "step": 1791 + }, + { + "epoch": 24.89471384884229, + "grad_norm": 0.213027223944664, + "learning_rate": 0.0006, + "loss": 3.8539695739746094, + "step": 1792 + }, + { + "epoch": 24.90869375273045, + "grad_norm": 0.2280654013156891, + "learning_rate": 0.0006, + "loss": 3.8633079528808594, + "step": 1793 + }, + { + "epoch": 24.92267365661861, + "grad_norm": 0.20864921808242798, + "learning_rate": 0.0006, + "loss": 3.8110368251800537, + "step": 1794 + }, + { + "epoch": 24.936653560506773, + "grad_norm": 0.23002111911773682, + "learning_rate": 0.0006, + "loss": 3.8334741592407227, + "step": 1795 + }, + { + "epoch": 24.950633464394933, + "grad_norm": 0.232331782579422, + "learning_rate": 0.0006, + "loss": 3.871887683868408, + "step": 1796 + }, + { + "epoch": 24.964613368283093, + "grad_norm": 0.24141235649585724, + "learning_rate": 0.0006, + "loss": 3.8614959716796875, + "step": 1797 + }, + { + "epoch": 24.978593272171253, + "grad_norm": 0.2545177638530731, + "learning_rate": 0.0006, + "loss": 3.8563568592071533, + "step": 1798 + }, + { + "epoch": 24.992573176059416, + "grad_norm": 0.25186386704444885, + "learning_rate": 0.0006, + "loss": 3.882166862487793, + "step": 1799 + }, + { + "epoch": 25.0, + "grad_norm": 0.260195791721344, + "learning_rate": 0.0006, + "loss": 3.884554862976074, + "step": 1800 + }, + { + "epoch": 25.0, + "eval_loss": 4.08809757232666, + "eval_runtime": 44.7947, + "eval_samples_per_second": 54.515, + "eval_steps_per_second": 3.416, + "step": 1800 + }, + { + "epoch": 25.01397990388816, + "grad_norm": 0.25396403670310974, + "learning_rate": 0.0006, + "loss": 3.8217287063598633, + "step": 1801 + }, + { + "epoch": 25.027959807776323, + "grad_norm": 0.2773195207118988, + "learning_rate": 0.0006, + "loss": 3.809542417526245, + "step": 1802 + }, + { + "epoch": 25.041939711664483, + "grad_norm": 0.3073263168334961, + "learning_rate": 0.0006, + "loss": 3.825706958770752, + "step": 1803 + }, + { + "epoch": 25.055919615552643, + "grad_norm": 0.30885398387908936, + "learning_rate": 0.0006, + "loss": 3.8081188201904297, + "step": 1804 + }, + { + "epoch": 25.069899519440803, + "grad_norm": 0.27356019616127014, + "learning_rate": 0.0006, + "loss": 3.8538241386413574, + "step": 1805 + }, + { + "epoch": 25.083879423328966, + "grad_norm": 0.22830164432525635, + "learning_rate": 0.0006, + "loss": 3.8246965408325195, + "step": 1806 + }, + { + "epoch": 25.097859327217126, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.8552842140197754, + "step": 1807 + }, + { + "epoch": 25.111839231105286, + "grad_norm": 0.21718722581863403, + "learning_rate": 0.0006, + "loss": 3.8489418029785156, + "step": 1808 + }, + { + "epoch": 25.125819134993446, + "grad_norm": 0.2480861395597458, + "learning_rate": 0.0006, + "loss": 3.821455955505371, + "step": 1809 + }, + { + "epoch": 25.13979903888161, + "grad_norm": 0.2796635627746582, + "learning_rate": 0.0006, + "loss": 3.8202435970306396, + "step": 1810 + }, + { + "epoch": 25.15377894276977, + "grad_norm": 0.2829958200454712, + "learning_rate": 0.0006, + "loss": 3.8293306827545166, + "step": 1811 + }, + { + "epoch": 25.16775884665793, + "grad_norm": 0.2510125935077667, + "learning_rate": 0.0006, + "loss": 3.8342957496643066, + "step": 1812 + }, + { + "epoch": 25.18173875054609, + "grad_norm": 0.22923722863197327, + "learning_rate": 0.0006, + "loss": 3.8448352813720703, + "step": 1813 + }, + { + "epoch": 25.195718654434252, + "grad_norm": 0.21439228951931, + "learning_rate": 0.0006, + "loss": 3.8343517780303955, + "step": 1814 + }, + { + "epoch": 25.209698558322412, + "grad_norm": 0.1965373307466507, + "learning_rate": 0.0006, + "loss": 3.8163528442382812, + "step": 1815 + }, + { + "epoch": 25.22367846221057, + "grad_norm": 0.20121058821678162, + "learning_rate": 0.0006, + "loss": 3.8007280826568604, + "step": 1816 + }, + { + "epoch": 25.23765836609873, + "grad_norm": 0.21383272111415863, + "learning_rate": 0.0006, + "loss": 3.8200385570526123, + "step": 1817 + }, + { + "epoch": 25.251638269986895, + "grad_norm": 0.2066601663827896, + "learning_rate": 0.0006, + "loss": 3.8333921432495117, + "step": 1818 + }, + { + "epoch": 25.265618173875055, + "grad_norm": 0.2104874551296234, + "learning_rate": 0.0006, + "loss": 3.838012218475342, + "step": 1819 + }, + { + "epoch": 25.279598077763215, + "grad_norm": 0.19733119010925293, + "learning_rate": 0.0006, + "loss": 3.835139274597168, + "step": 1820 + }, + { + "epoch": 25.293577981651374, + "grad_norm": 0.2119498997926712, + "learning_rate": 0.0006, + "loss": 3.8099722862243652, + "step": 1821 + }, + { + "epoch": 25.307557885539538, + "grad_norm": 0.21863529086112976, + "learning_rate": 0.0006, + "loss": 3.7801573276519775, + "step": 1822 + }, + { + "epoch": 25.321537789427698, + "grad_norm": 0.2113322764635086, + "learning_rate": 0.0006, + "loss": 3.809903621673584, + "step": 1823 + }, + { + "epoch": 25.335517693315857, + "grad_norm": 0.21594023704528809, + "learning_rate": 0.0006, + "loss": 3.8485071659088135, + "step": 1824 + }, + { + "epoch": 25.34949759720402, + "grad_norm": 0.21475964784622192, + "learning_rate": 0.0006, + "loss": 3.7894768714904785, + "step": 1825 + }, + { + "epoch": 25.36347750109218, + "grad_norm": 0.21174900233745575, + "learning_rate": 0.0006, + "loss": 3.821711540222168, + "step": 1826 + }, + { + "epoch": 25.37745740498034, + "grad_norm": 0.2065584659576416, + "learning_rate": 0.0006, + "loss": 3.8439841270446777, + "step": 1827 + }, + { + "epoch": 25.3914373088685, + "grad_norm": 0.19157007336616516, + "learning_rate": 0.0006, + "loss": 3.864245891571045, + "step": 1828 + }, + { + "epoch": 25.405417212756664, + "grad_norm": 0.19983816146850586, + "learning_rate": 0.0006, + "loss": 3.8317415714263916, + "step": 1829 + }, + { + "epoch": 25.419397116644824, + "grad_norm": 0.20506152510643005, + "learning_rate": 0.0006, + "loss": 3.8009896278381348, + "step": 1830 + }, + { + "epoch": 25.433377020532983, + "grad_norm": 0.19056960940361023, + "learning_rate": 0.0006, + "loss": 3.8383498191833496, + "step": 1831 + }, + { + "epoch": 25.447356924421143, + "grad_norm": 0.19262190163135529, + "learning_rate": 0.0006, + "loss": 3.838902235031128, + "step": 1832 + }, + { + "epoch": 25.461336828309307, + "grad_norm": 0.19859355688095093, + "learning_rate": 0.0006, + "loss": 3.82452392578125, + "step": 1833 + }, + { + "epoch": 25.475316732197467, + "grad_norm": 0.2144225388765335, + "learning_rate": 0.0006, + "loss": 3.8110032081604004, + "step": 1834 + }, + { + "epoch": 25.489296636085626, + "grad_norm": 0.20566298067569733, + "learning_rate": 0.0006, + "loss": 3.8662471771240234, + "step": 1835 + }, + { + "epoch": 25.503276539973786, + "grad_norm": 0.2071852684020996, + "learning_rate": 0.0006, + "loss": 3.821134090423584, + "step": 1836 + }, + { + "epoch": 25.51725644386195, + "grad_norm": 0.2095036506652832, + "learning_rate": 0.0006, + "loss": 3.824092388153076, + "step": 1837 + }, + { + "epoch": 25.53123634775011, + "grad_norm": 0.20136208832263947, + "learning_rate": 0.0006, + "loss": 3.8669862747192383, + "step": 1838 + }, + { + "epoch": 25.54521625163827, + "grad_norm": 0.1983811855316162, + "learning_rate": 0.0006, + "loss": 3.8120107650756836, + "step": 1839 + }, + { + "epoch": 25.55919615552643, + "grad_norm": 0.22859714925289154, + "learning_rate": 0.0006, + "loss": 3.8519299030303955, + "step": 1840 + }, + { + "epoch": 25.573176059414592, + "grad_norm": 0.23672667145729065, + "learning_rate": 0.0006, + "loss": 3.8245458602905273, + "step": 1841 + }, + { + "epoch": 25.587155963302752, + "grad_norm": 0.22698380053043365, + "learning_rate": 0.0006, + "loss": 3.8406805992126465, + "step": 1842 + }, + { + "epoch": 25.601135867190912, + "grad_norm": 0.25684037804603577, + "learning_rate": 0.0006, + "loss": 3.8584351539611816, + "step": 1843 + }, + { + "epoch": 25.615115771079076, + "grad_norm": 0.28180673718452454, + "learning_rate": 0.0006, + "loss": 3.8085098266601562, + "step": 1844 + }, + { + "epoch": 25.629095674967235, + "grad_norm": 0.2814631462097168, + "learning_rate": 0.0006, + "loss": 3.845083236694336, + "step": 1845 + }, + { + "epoch": 25.643075578855395, + "grad_norm": 0.23630981147289276, + "learning_rate": 0.0006, + "loss": 3.847749710083008, + "step": 1846 + }, + { + "epoch": 25.657055482743555, + "grad_norm": 0.22463662922382355, + "learning_rate": 0.0006, + "loss": 3.8172082901000977, + "step": 1847 + }, + { + "epoch": 25.67103538663172, + "grad_norm": 0.26551681756973267, + "learning_rate": 0.0006, + "loss": 3.8205654621124268, + "step": 1848 + }, + { + "epoch": 25.68501529051988, + "grad_norm": 0.27824243903160095, + "learning_rate": 0.0006, + "loss": 3.846076011657715, + "step": 1849 + }, + { + "epoch": 25.698995194408038, + "grad_norm": 0.266998291015625, + "learning_rate": 0.0006, + "loss": 3.8543574810028076, + "step": 1850 + }, + { + "epoch": 25.712975098296198, + "grad_norm": 0.22980351746082306, + "learning_rate": 0.0006, + "loss": 3.855511426925659, + "step": 1851 + }, + { + "epoch": 25.72695500218436, + "grad_norm": 0.23482872545719147, + "learning_rate": 0.0006, + "loss": 3.8687663078308105, + "step": 1852 + }, + { + "epoch": 25.74093490607252, + "grad_norm": 0.21119585633277893, + "learning_rate": 0.0006, + "loss": 3.8147101402282715, + "step": 1853 + }, + { + "epoch": 25.75491480996068, + "grad_norm": 0.21200446784496307, + "learning_rate": 0.0006, + "loss": 3.858473777770996, + "step": 1854 + }, + { + "epoch": 25.76889471384884, + "grad_norm": 0.20497842133045197, + "learning_rate": 0.0006, + "loss": 3.8545501232147217, + "step": 1855 + }, + { + "epoch": 25.782874617737004, + "grad_norm": 0.19328081607818604, + "learning_rate": 0.0006, + "loss": 3.7941341400146484, + "step": 1856 + }, + { + "epoch": 25.796854521625164, + "grad_norm": 0.2191578894853592, + "learning_rate": 0.0006, + "loss": 3.8408665657043457, + "step": 1857 + }, + { + "epoch": 25.810834425513324, + "grad_norm": 0.2548826038837433, + "learning_rate": 0.0006, + "loss": 3.854130744934082, + "step": 1858 + }, + { + "epoch": 25.824814329401484, + "grad_norm": 0.2290351390838623, + "learning_rate": 0.0006, + "loss": 3.8680176734924316, + "step": 1859 + }, + { + "epoch": 25.838794233289647, + "grad_norm": 0.20760944485664368, + "learning_rate": 0.0006, + "loss": 3.83731746673584, + "step": 1860 + }, + { + "epoch": 25.852774137177807, + "grad_norm": 0.19587582349777222, + "learning_rate": 0.0006, + "loss": 3.8173444271087646, + "step": 1861 + }, + { + "epoch": 25.866754041065967, + "grad_norm": 0.20762693881988525, + "learning_rate": 0.0006, + "loss": 3.8479790687561035, + "step": 1862 + }, + { + "epoch": 25.88073394495413, + "grad_norm": 0.20633186399936676, + "learning_rate": 0.0006, + "loss": 3.852285385131836, + "step": 1863 + }, + { + "epoch": 25.89471384884229, + "grad_norm": 0.21484960615634918, + "learning_rate": 0.0006, + "loss": 3.832592725753784, + "step": 1864 + }, + { + "epoch": 25.90869375273045, + "grad_norm": 0.19569595158100128, + "learning_rate": 0.0006, + "loss": 3.838071584701538, + "step": 1865 + }, + { + "epoch": 25.92267365661861, + "grad_norm": 0.19532904028892517, + "learning_rate": 0.0006, + "loss": 3.854252815246582, + "step": 1866 + }, + { + "epoch": 25.936653560506773, + "grad_norm": 0.1909649819135666, + "learning_rate": 0.0006, + "loss": 3.8444578647613525, + "step": 1867 + }, + { + "epoch": 25.950633464394933, + "grad_norm": 0.17476283013820648, + "learning_rate": 0.0006, + "loss": 3.836519241333008, + "step": 1868 + }, + { + "epoch": 25.964613368283093, + "grad_norm": 0.1895206719636917, + "learning_rate": 0.0006, + "loss": 3.8282582759857178, + "step": 1869 + }, + { + "epoch": 25.978593272171253, + "grad_norm": 0.20038437843322754, + "learning_rate": 0.0006, + "loss": 3.80542254447937, + "step": 1870 + }, + { + "epoch": 25.992573176059416, + "grad_norm": 0.20728608965873718, + "learning_rate": 0.0006, + "loss": 3.8584811687469482, + "step": 1871 + }, + { + "epoch": 26.0, + "grad_norm": 0.22110891342163086, + "learning_rate": 0.0006, + "loss": 3.8020238876342773, + "step": 1872 + }, + { + "epoch": 26.0, + "eval_loss": 4.072164058685303, + "eval_runtime": 44.9089, + "eval_samples_per_second": 54.377, + "eval_steps_per_second": 3.407, + "step": 1872 + }, + { + "epoch": 26.01397990388816, + "grad_norm": 0.2222519814968109, + "learning_rate": 0.0006, + "loss": 3.8309168815612793, + "step": 1873 + }, + { + "epoch": 26.027959807776323, + "grad_norm": 0.2637656033039093, + "learning_rate": 0.0006, + "loss": 3.8025143146514893, + "step": 1874 + }, + { + "epoch": 26.041939711664483, + "grad_norm": 0.2665974795818329, + "learning_rate": 0.0006, + "loss": 3.8244004249572754, + "step": 1875 + }, + { + "epoch": 26.055919615552643, + "grad_norm": 0.22475720942020416, + "learning_rate": 0.0006, + "loss": 3.80039119720459, + "step": 1876 + }, + { + "epoch": 26.069899519440803, + "grad_norm": 0.22994336485862732, + "learning_rate": 0.0006, + "loss": 3.7700726985931396, + "step": 1877 + }, + { + "epoch": 26.083879423328966, + "grad_norm": 0.24214622378349304, + "learning_rate": 0.0006, + "loss": 3.818725109100342, + "step": 1878 + }, + { + "epoch": 26.097859327217126, + "grad_norm": 0.22701293230056763, + "learning_rate": 0.0006, + "loss": 3.833803176879883, + "step": 1879 + }, + { + "epoch": 26.111839231105286, + "grad_norm": 0.21452295780181885, + "learning_rate": 0.0006, + "loss": 3.8391427993774414, + "step": 1880 + }, + { + "epoch": 26.125819134993446, + "grad_norm": 0.20179636776447296, + "learning_rate": 0.0006, + "loss": 3.802957057952881, + "step": 1881 + }, + { + "epoch": 26.13979903888161, + "grad_norm": 0.2087477445602417, + "learning_rate": 0.0006, + "loss": 3.8339905738830566, + "step": 1882 + }, + { + "epoch": 26.15377894276977, + "grad_norm": 0.23583556711673737, + "learning_rate": 0.0006, + "loss": 3.802438259124756, + "step": 1883 + }, + { + "epoch": 26.16775884665793, + "grad_norm": 0.2504311501979828, + "learning_rate": 0.0006, + "loss": 3.80244517326355, + "step": 1884 + }, + { + "epoch": 26.18173875054609, + "grad_norm": 0.24903984367847443, + "learning_rate": 0.0006, + "loss": 3.788865566253662, + "step": 1885 + }, + { + "epoch": 26.195718654434252, + "grad_norm": 0.2707931101322174, + "learning_rate": 0.0006, + "loss": 3.800051212310791, + "step": 1886 + }, + { + "epoch": 26.209698558322412, + "grad_norm": 0.24902892112731934, + "learning_rate": 0.0006, + "loss": 3.8068337440490723, + "step": 1887 + }, + { + "epoch": 26.22367846221057, + "grad_norm": 0.22655536234378815, + "learning_rate": 0.0006, + "loss": 3.779439926147461, + "step": 1888 + }, + { + "epoch": 26.23765836609873, + "grad_norm": 0.24797996878623962, + "learning_rate": 0.0006, + "loss": 3.822831153869629, + "step": 1889 + }, + { + "epoch": 26.251638269986895, + "grad_norm": 0.2821420431137085, + "learning_rate": 0.0006, + "loss": 3.807954788208008, + "step": 1890 + }, + { + "epoch": 26.265618173875055, + "grad_norm": 0.30392691493034363, + "learning_rate": 0.0006, + "loss": 3.776951789855957, + "step": 1891 + }, + { + "epoch": 26.279598077763215, + "grad_norm": 0.32641273736953735, + "learning_rate": 0.0006, + "loss": 3.8216311931610107, + "step": 1892 + }, + { + "epoch": 26.293577981651374, + "grad_norm": 0.32674387097358704, + "learning_rate": 0.0006, + "loss": 3.815596580505371, + "step": 1893 + }, + { + "epoch": 26.307557885539538, + "grad_norm": 0.29137250781059265, + "learning_rate": 0.0006, + "loss": 3.8170812129974365, + "step": 1894 + }, + { + "epoch": 26.321537789427698, + "grad_norm": 0.24291734397411346, + "learning_rate": 0.0006, + "loss": 3.810352087020874, + "step": 1895 + }, + { + "epoch": 26.335517693315857, + "grad_norm": 0.24023209512233734, + "learning_rate": 0.0006, + "loss": 3.8075947761535645, + "step": 1896 + }, + { + "epoch": 26.34949759720402, + "grad_norm": 0.24334804713726044, + "learning_rate": 0.0006, + "loss": 3.831556797027588, + "step": 1897 + }, + { + "epoch": 26.36347750109218, + "grad_norm": 0.2109663337469101, + "learning_rate": 0.0006, + "loss": 3.838347911834717, + "step": 1898 + }, + { + "epoch": 26.37745740498034, + "grad_norm": 0.19668002426624298, + "learning_rate": 0.0006, + "loss": 3.774737596511841, + "step": 1899 + }, + { + "epoch": 26.3914373088685, + "grad_norm": 0.21329134702682495, + "learning_rate": 0.0006, + "loss": 3.8237252235412598, + "step": 1900 + }, + { + "epoch": 26.405417212756664, + "grad_norm": 0.20381781458854675, + "learning_rate": 0.0006, + "loss": 3.802569627761841, + "step": 1901 + }, + { + "epoch": 26.419397116644824, + "grad_norm": 0.19083160161972046, + "learning_rate": 0.0006, + "loss": 3.8301358222961426, + "step": 1902 + }, + { + "epoch": 26.433377020532983, + "grad_norm": 0.20012904703617096, + "learning_rate": 0.0006, + "loss": 3.7966408729553223, + "step": 1903 + }, + { + "epoch": 26.447356924421143, + "grad_norm": 0.19483457505702972, + "learning_rate": 0.0006, + "loss": 3.8431968688964844, + "step": 1904 + }, + { + "epoch": 26.461336828309307, + "grad_norm": 0.19946353137493134, + "learning_rate": 0.0006, + "loss": 3.8023815155029297, + "step": 1905 + }, + { + "epoch": 26.475316732197467, + "grad_norm": 0.1984100341796875, + "learning_rate": 0.0006, + "loss": 3.8283071517944336, + "step": 1906 + }, + { + "epoch": 26.489296636085626, + "grad_norm": 0.2148299664258957, + "learning_rate": 0.0006, + "loss": 3.8377504348754883, + "step": 1907 + }, + { + "epoch": 26.503276539973786, + "grad_norm": 0.22139184176921844, + "learning_rate": 0.0006, + "loss": 3.823051691055298, + "step": 1908 + }, + { + "epoch": 26.51725644386195, + "grad_norm": 0.18289034068584442, + "learning_rate": 0.0006, + "loss": 3.8027071952819824, + "step": 1909 + }, + { + "epoch": 26.53123634775011, + "grad_norm": 0.1816026121377945, + "learning_rate": 0.0006, + "loss": 3.823786735534668, + "step": 1910 + }, + { + "epoch": 26.54521625163827, + "grad_norm": 0.19074322283267975, + "learning_rate": 0.0006, + "loss": 3.813331127166748, + "step": 1911 + }, + { + "epoch": 26.55919615552643, + "grad_norm": 0.20301467180252075, + "learning_rate": 0.0006, + "loss": 3.8218350410461426, + "step": 1912 + }, + { + "epoch": 26.573176059414592, + "grad_norm": 0.25266432762145996, + "learning_rate": 0.0006, + "loss": 3.8455142974853516, + "step": 1913 + }, + { + "epoch": 26.587155963302752, + "grad_norm": 0.25804755091667175, + "learning_rate": 0.0006, + "loss": 3.799227476119995, + "step": 1914 + }, + { + "epoch": 26.601135867190912, + "grad_norm": 0.2555372416973114, + "learning_rate": 0.0006, + "loss": 3.8125686645507812, + "step": 1915 + }, + { + "epoch": 26.615115771079076, + "grad_norm": 0.2266194075345993, + "learning_rate": 0.0006, + "loss": 3.858363628387451, + "step": 1916 + }, + { + "epoch": 26.629095674967235, + "grad_norm": 0.1933048665523529, + "learning_rate": 0.0006, + "loss": 3.8078083992004395, + "step": 1917 + }, + { + "epoch": 26.643075578855395, + "grad_norm": 0.19936731457710266, + "learning_rate": 0.0006, + "loss": 3.81748628616333, + "step": 1918 + }, + { + "epoch": 26.657055482743555, + "grad_norm": 0.22041693329811096, + "learning_rate": 0.0006, + "loss": 3.833272933959961, + "step": 1919 + }, + { + "epoch": 26.67103538663172, + "grad_norm": 0.20679150521755219, + "learning_rate": 0.0006, + "loss": 3.8127288818359375, + "step": 1920 + }, + { + "epoch": 26.68501529051988, + "grad_norm": 0.21545100212097168, + "learning_rate": 0.0006, + "loss": 3.816051483154297, + "step": 1921 + }, + { + "epoch": 26.698995194408038, + "grad_norm": 0.23554518818855286, + "learning_rate": 0.0006, + "loss": 3.8180980682373047, + "step": 1922 + }, + { + "epoch": 26.712975098296198, + "grad_norm": 0.21942466497421265, + "learning_rate": 0.0006, + "loss": 3.803107976913452, + "step": 1923 + }, + { + "epoch": 26.72695500218436, + "grad_norm": 0.22335010766983032, + "learning_rate": 0.0006, + "loss": 3.847890853881836, + "step": 1924 + }, + { + "epoch": 26.74093490607252, + "grad_norm": 0.24731314182281494, + "learning_rate": 0.0006, + "loss": 3.7945008277893066, + "step": 1925 + }, + { + "epoch": 26.75491480996068, + "grad_norm": 0.2804568111896515, + "learning_rate": 0.0006, + "loss": 3.8400068283081055, + "step": 1926 + }, + { + "epoch": 26.76889471384884, + "grad_norm": 0.28787222504615784, + "learning_rate": 0.0006, + "loss": 3.839771270751953, + "step": 1927 + }, + { + "epoch": 26.782874617737004, + "grad_norm": 0.2949632406234741, + "learning_rate": 0.0006, + "loss": 3.8225326538085938, + "step": 1928 + }, + { + "epoch": 26.796854521625164, + "grad_norm": 0.31546032428741455, + "learning_rate": 0.0006, + "loss": 3.8182597160339355, + "step": 1929 + }, + { + "epoch": 26.810834425513324, + "grad_norm": 0.2956962585449219, + "learning_rate": 0.0006, + "loss": 3.8315680027008057, + "step": 1930 + }, + { + "epoch": 26.824814329401484, + "grad_norm": 0.26943835616111755, + "learning_rate": 0.0006, + "loss": 3.787720203399658, + "step": 1931 + }, + { + "epoch": 26.838794233289647, + "grad_norm": 0.24272359907627106, + "learning_rate": 0.0006, + "loss": 3.7973692417144775, + "step": 1932 + }, + { + "epoch": 26.852774137177807, + "grad_norm": 0.20553994178771973, + "learning_rate": 0.0006, + "loss": 3.8241593837738037, + "step": 1933 + }, + { + "epoch": 26.866754041065967, + "grad_norm": 0.21927912533283234, + "learning_rate": 0.0006, + "loss": 3.8608899116516113, + "step": 1934 + }, + { + "epoch": 26.88073394495413, + "grad_norm": 0.22878016531467438, + "learning_rate": 0.0006, + "loss": 3.8341972827911377, + "step": 1935 + }, + { + "epoch": 26.89471384884229, + "grad_norm": 0.2085554301738739, + "learning_rate": 0.0006, + "loss": 3.8261351585388184, + "step": 1936 + }, + { + "epoch": 26.90869375273045, + "grad_norm": 0.21259072422981262, + "learning_rate": 0.0006, + "loss": 3.862056255340576, + "step": 1937 + }, + { + "epoch": 26.92267365661861, + "grad_norm": 0.21354122459888458, + "learning_rate": 0.0006, + "loss": 3.80879545211792, + "step": 1938 + }, + { + "epoch": 26.936653560506773, + "grad_norm": 0.2350253462791443, + "learning_rate": 0.0006, + "loss": 3.817826271057129, + "step": 1939 + }, + { + "epoch": 26.950633464394933, + "grad_norm": 0.23833836615085602, + "learning_rate": 0.0006, + "loss": 3.8220884799957275, + "step": 1940 + }, + { + "epoch": 26.964613368283093, + "grad_norm": 0.2368069440126419, + "learning_rate": 0.0006, + "loss": 3.843264579772949, + "step": 1941 + }, + { + "epoch": 26.978593272171253, + "grad_norm": 0.22663559019565582, + "learning_rate": 0.0006, + "loss": 3.81339430809021, + "step": 1942 + }, + { + "epoch": 26.992573176059416, + "grad_norm": 0.2151402235031128, + "learning_rate": 0.0006, + "loss": 3.8262834548950195, + "step": 1943 + }, + { + "epoch": 27.0, + "grad_norm": 0.24320295453071594, + "learning_rate": 0.0006, + "loss": 3.858567237854004, + "step": 1944 + }, + { + "epoch": 27.0, + "eval_loss": 4.0613322257995605, + "eval_runtime": 44.766, + "eval_samples_per_second": 54.55, + "eval_steps_per_second": 3.418, + "step": 1944 + }, + { + "epoch": 27.01397990388816, + "grad_norm": 0.21188032627105713, + "learning_rate": 0.0006, + "loss": 3.7631278038024902, + "step": 1945 + }, + { + "epoch": 27.027959807776323, + "grad_norm": 0.22298137843608856, + "learning_rate": 0.0006, + "loss": 3.784029245376587, + "step": 1946 + }, + { + "epoch": 27.041939711664483, + "grad_norm": 0.26530158519744873, + "learning_rate": 0.0006, + "loss": 3.795860767364502, + "step": 1947 + }, + { + "epoch": 27.055919615552643, + "grad_norm": 0.24476729333400726, + "learning_rate": 0.0006, + "loss": 3.77512264251709, + "step": 1948 + }, + { + "epoch": 27.069899519440803, + "grad_norm": 0.1934421956539154, + "learning_rate": 0.0006, + "loss": 3.7797446250915527, + "step": 1949 + }, + { + "epoch": 27.083879423328966, + "grad_norm": 0.19777092337608337, + "learning_rate": 0.0006, + "loss": 3.798935890197754, + "step": 1950 + }, + { + "epoch": 27.097859327217126, + "grad_norm": 0.2071693390607834, + "learning_rate": 0.0006, + "loss": 3.763094425201416, + "step": 1951 + }, + { + "epoch": 27.111839231105286, + "grad_norm": 0.18394742906093597, + "learning_rate": 0.0006, + "loss": 3.7892322540283203, + "step": 1952 + }, + { + "epoch": 27.125819134993446, + "grad_norm": 0.17878273129463196, + "learning_rate": 0.0006, + "loss": 3.787968158721924, + "step": 1953 + }, + { + "epoch": 27.13979903888161, + "grad_norm": 0.18792171776294708, + "learning_rate": 0.0006, + "loss": 3.7719640731811523, + "step": 1954 + }, + { + "epoch": 27.15377894276977, + "grad_norm": 0.18718759715557098, + "learning_rate": 0.0006, + "loss": 3.791835308074951, + "step": 1955 + }, + { + "epoch": 27.16775884665793, + "grad_norm": 0.18716055154800415, + "learning_rate": 0.0006, + "loss": 3.7490220069885254, + "step": 1956 + }, + { + "epoch": 27.18173875054609, + "grad_norm": 0.18429182469844818, + "learning_rate": 0.0006, + "loss": 3.8020081520080566, + "step": 1957 + }, + { + "epoch": 27.195718654434252, + "grad_norm": 0.18571704626083374, + "learning_rate": 0.0006, + "loss": 3.8152215480804443, + "step": 1958 + }, + { + "epoch": 27.209698558322412, + "grad_norm": 0.1788843423128128, + "learning_rate": 0.0006, + "loss": 3.8173317909240723, + "step": 1959 + }, + { + "epoch": 27.22367846221057, + "grad_norm": 0.20459426939487457, + "learning_rate": 0.0006, + "loss": 3.7760040760040283, + "step": 1960 + }, + { + "epoch": 27.23765836609873, + "grad_norm": 0.22360935807228088, + "learning_rate": 0.0006, + "loss": 3.8140203952789307, + "step": 1961 + }, + { + "epoch": 27.251638269986895, + "grad_norm": 0.2062767595052719, + "learning_rate": 0.0006, + "loss": 3.792001247406006, + "step": 1962 + }, + { + "epoch": 27.265618173875055, + "grad_norm": 0.20628073811531067, + "learning_rate": 0.0006, + "loss": 3.7873167991638184, + "step": 1963 + }, + { + "epoch": 27.279598077763215, + "grad_norm": 0.19888348877429962, + "learning_rate": 0.0006, + "loss": 3.7903614044189453, + "step": 1964 + }, + { + "epoch": 27.293577981651374, + "grad_norm": 0.22033332288265228, + "learning_rate": 0.0006, + "loss": 3.802497148513794, + "step": 1965 + }, + { + "epoch": 27.307557885539538, + "grad_norm": 0.23476941883563995, + "learning_rate": 0.0006, + "loss": 3.794090986251831, + "step": 1966 + }, + { + "epoch": 27.321537789427698, + "grad_norm": 0.19639968872070312, + "learning_rate": 0.0006, + "loss": 3.831794023513794, + "step": 1967 + }, + { + "epoch": 27.335517693315857, + "grad_norm": 0.18169641494750977, + "learning_rate": 0.0006, + "loss": 3.7687768936157227, + "step": 1968 + }, + { + "epoch": 27.34949759720402, + "grad_norm": 0.17781762778759003, + "learning_rate": 0.0006, + "loss": 3.7868471145629883, + "step": 1969 + }, + { + "epoch": 27.36347750109218, + "grad_norm": 0.18990416824817657, + "learning_rate": 0.0006, + "loss": 3.8340392112731934, + "step": 1970 + }, + { + "epoch": 27.37745740498034, + "grad_norm": 0.2031438797712326, + "learning_rate": 0.0006, + "loss": 3.804513454437256, + "step": 1971 + }, + { + "epoch": 27.3914373088685, + "grad_norm": 0.21233421564102173, + "learning_rate": 0.0006, + "loss": 3.7908449172973633, + "step": 1972 + }, + { + "epoch": 27.405417212756664, + "grad_norm": 0.22480927407741547, + "learning_rate": 0.0006, + "loss": 3.7894086837768555, + "step": 1973 + }, + { + "epoch": 27.419397116644824, + "grad_norm": 0.22713422775268555, + "learning_rate": 0.0006, + "loss": 3.826005458831787, + "step": 1974 + }, + { + "epoch": 27.433377020532983, + "grad_norm": 0.21637366712093353, + "learning_rate": 0.0006, + "loss": 3.8232319355010986, + "step": 1975 + }, + { + "epoch": 27.447356924421143, + "grad_norm": 0.24092449247837067, + "learning_rate": 0.0006, + "loss": 3.813279628753662, + "step": 1976 + }, + { + "epoch": 27.461336828309307, + "grad_norm": 0.21143047511577606, + "learning_rate": 0.0006, + "loss": 3.811586856842041, + "step": 1977 + }, + { + "epoch": 27.475316732197467, + "grad_norm": 0.21049432456493378, + "learning_rate": 0.0006, + "loss": 3.8227009773254395, + "step": 1978 + }, + { + "epoch": 27.489296636085626, + "grad_norm": 0.21853850781917572, + "learning_rate": 0.0006, + "loss": 3.7992515563964844, + "step": 1979 + }, + { + "epoch": 27.503276539973786, + "grad_norm": 0.22405001521110535, + "learning_rate": 0.0006, + "loss": 3.8311715126037598, + "step": 1980 + }, + { + "epoch": 27.51725644386195, + "grad_norm": 0.24085809290409088, + "learning_rate": 0.0006, + "loss": 3.801962375640869, + "step": 1981 + }, + { + "epoch": 27.53123634775011, + "grad_norm": 0.2612341642379761, + "learning_rate": 0.0006, + "loss": 3.7867887020111084, + "step": 1982 + }, + { + "epoch": 27.54521625163827, + "grad_norm": 0.25136062502861023, + "learning_rate": 0.0006, + "loss": 3.8302273750305176, + "step": 1983 + }, + { + "epoch": 27.55919615552643, + "grad_norm": 0.2485426515340805, + "learning_rate": 0.0006, + "loss": 3.770616054534912, + "step": 1984 + }, + { + "epoch": 27.573176059414592, + "grad_norm": 0.28883907198905945, + "learning_rate": 0.0006, + "loss": 3.8152146339416504, + "step": 1985 + }, + { + "epoch": 27.587155963302752, + "grad_norm": 0.28177911043167114, + "learning_rate": 0.0006, + "loss": 3.7966861724853516, + "step": 1986 + }, + { + "epoch": 27.601135867190912, + "grad_norm": 0.2573191523551941, + "learning_rate": 0.0006, + "loss": 3.820788621902466, + "step": 1987 + }, + { + "epoch": 27.615115771079076, + "grad_norm": 0.22225657105445862, + "learning_rate": 0.0006, + "loss": 3.778477191925049, + "step": 1988 + }, + { + "epoch": 27.629095674967235, + "grad_norm": 0.20118530094623566, + "learning_rate": 0.0006, + "loss": 3.8416988849639893, + "step": 1989 + }, + { + "epoch": 27.643075578855395, + "grad_norm": 0.21168658137321472, + "learning_rate": 0.0006, + "loss": 3.798020839691162, + "step": 1990 + }, + { + "epoch": 27.657055482743555, + "grad_norm": 0.2460680454969406, + "learning_rate": 0.0006, + "loss": 3.805917263031006, + "step": 1991 + }, + { + "epoch": 27.67103538663172, + "grad_norm": 0.2700909674167633, + "learning_rate": 0.0006, + "loss": 3.8042726516723633, + "step": 1992 + }, + { + "epoch": 27.68501529051988, + "grad_norm": 0.25814294815063477, + "learning_rate": 0.0006, + "loss": 3.799159049987793, + "step": 1993 + }, + { + "epoch": 27.698995194408038, + "grad_norm": 0.2231985628604889, + "learning_rate": 0.0006, + "loss": 3.778750419616699, + "step": 1994 + }, + { + "epoch": 27.712975098296198, + "grad_norm": 0.20807890594005585, + "learning_rate": 0.0006, + "loss": 3.787919044494629, + "step": 1995 + }, + { + "epoch": 27.72695500218436, + "grad_norm": 0.19537150859832764, + "learning_rate": 0.0006, + "loss": 3.7917299270629883, + "step": 1996 + }, + { + "epoch": 27.74093490607252, + "grad_norm": 0.21057647466659546, + "learning_rate": 0.0006, + "loss": 3.8096866607666016, + "step": 1997 + }, + { + "epoch": 27.75491480996068, + "grad_norm": 0.18983247876167297, + "learning_rate": 0.0006, + "loss": 3.7881717681884766, + "step": 1998 + }, + { + "epoch": 27.76889471384884, + "grad_norm": 0.18701069056987762, + "learning_rate": 0.0006, + "loss": 3.810790538787842, + "step": 1999 + }, + { + "epoch": 27.782874617737004, + "grad_norm": 0.1920134723186493, + "learning_rate": 0.0006, + "loss": 3.8161087036132812, + "step": 2000 + }, + { + "epoch": 27.796854521625164, + "grad_norm": 0.20413947105407715, + "learning_rate": 0.0006, + "loss": 3.790499687194824, + "step": 2001 + }, + { + "epoch": 27.810834425513324, + "grad_norm": 0.1920027732849121, + "learning_rate": 0.0006, + "loss": 3.8194262981414795, + "step": 2002 + }, + { + "epoch": 27.824814329401484, + "grad_norm": 0.18630221486091614, + "learning_rate": 0.0006, + "loss": 3.8267152309417725, + "step": 2003 + }, + { + "epoch": 27.838794233289647, + "grad_norm": 0.1787925660610199, + "learning_rate": 0.0006, + "loss": 3.8147521018981934, + "step": 2004 + }, + { + "epoch": 27.852774137177807, + "grad_norm": 0.19187216460704803, + "learning_rate": 0.0006, + "loss": 3.7751095294952393, + "step": 2005 + }, + { + "epoch": 27.866754041065967, + "grad_norm": 0.18825744092464447, + "learning_rate": 0.0006, + "loss": 3.807401657104492, + "step": 2006 + }, + { + "epoch": 27.88073394495413, + "grad_norm": 0.1879836469888687, + "learning_rate": 0.0006, + "loss": 3.8302509784698486, + "step": 2007 + }, + { + "epoch": 27.89471384884229, + "grad_norm": 0.19136391580104828, + "learning_rate": 0.0006, + "loss": 3.7886242866516113, + "step": 2008 + }, + { + "epoch": 27.90869375273045, + "grad_norm": 0.18774119019508362, + "learning_rate": 0.0006, + "loss": 3.8202977180480957, + "step": 2009 + }, + { + "epoch": 27.92267365661861, + "grad_norm": 0.17794452607631683, + "learning_rate": 0.0006, + "loss": 3.813382387161255, + "step": 2010 + }, + { + "epoch": 27.936653560506773, + "grad_norm": 0.1876268833875656, + "learning_rate": 0.0006, + "loss": 3.810610294342041, + "step": 2011 + }, + { + "epoch": 27.950633464394933, + "grad_norm": 0.19262051582336426, + "learning_rate": 0.0006, + "loss": 3.8113245964050293, + "step": 2012 + }, + { + "epoch": 27.964613368283093, + "grad_norm": 0.19371771812438965, + "learning_rate": 0.0006, + "loss": 3.804790496826172, + "step": 2013 + }, + { + "epoch": 27.978593272171253, + "grad_norm": 0.1922861784696579, + "learning_rate": 0.0006, + "loss": 3.8278889656066895, + "step": 2014 + }, + { + "epoch": 27.992573176059416, + "grad_norm": 0.19748565554618835, + "learning_rate": 0.0006, + "loss": 3.8127200603485107, + "step": 2015 + }, + { + "epoch": 28.0, + "grad_norm": 0.25027501583099365, + "learning_rate": 0.0006, + "loss": 3.7899413108825684, + "step": 2016 + }, + { + "epoch": 28.0, + "eval_loss": 4.047704219818115, + "eval_runtime": 44.293, + "eval_samples_per_second": 55.133, + "eval_steps_per_second": 3.454, + "step": 2016 + }, + { + "epoch": 28.01397990388816, + "grad_norm": 0.25172367691993713, + "learning_rate": 0.0006, + "loss": 3.75449538230896, + "step": 2017 + }, + { + "epoch": 28.027959807776323, + "grad_norm": 0.23494598269462585, + "learning_rate": 0.0006, + "loss": 3.7609024047851562, + "step": 2018 + }, + { + "epoch": 28.041939711664483, + "grad_norm": 0.22459708154201508, + "learning_rate": 0.0006, + "loss": 3.7843551635742188, + "step": 2019 + }, + { + "epoch": 28.055919615552643, + "grad_norm": 0.2038632035255432, + "learning_rate": 0.0006, + "loss": 3.7818198204040527, + "step": 2020 + }, + { + "epoch": 28.069899519440803, + "grad_norm": 0.22050008177757263, + "learning_rate": 0.0006, + "loss": 3.787442684173584, + "step": 2021 + }, + { + "epoch": 28.083879423328966, + "grad_norm": 0.24645832180976868, + "learning_rate": 0.0006, + "loss": 3.768704414367676, + "step": 2022 + }, + { + "epoch": 28.097859327217126, + "grad_norm": 0.2440163493156433, + "learning_rate": 0.0006, + "loss": 3.7783756256103516, + "step": 2023 + }, + { + "epoch": 28.111839231105286, + "grad_norm": 0.2482181042432785, + "learning_rate": 0.0006, + "loss": 3.786881923675537, + "step": 2024 + }, + { + "epoch": 28.125819134993446, + "grad_norm": 0.23494760692119598, + "learning_rate": 0.0006, + "loss": 3.790039300918579, + "step": 2025 + }, + { + "epoch": 28.13979903888161, + "grad_norm": 0.2172182947397232, + "learning_rate": 0.0006, + "loss": 3.818756580352783, + "step": 2026 + }, + { + "epoch": 28.15377894276977, + "grad_norm": 0.2103179395198822, + "learning_rate": 0.0006, + "loss": 3.7768917083740234, + "step": 2027 + }, + { + "epoch": 28.16775884665793, + "grad_norm": 0.22322365641593933, + "learning_rate": 0.0006, + "loss": 3.8223648071289062, + "step": 2028 + }, + { + "epoch": 28.18173875054609, + "grad_norm": 0.24199382960796356, + "learning_rate": 0.0006, + "loss": 3.781357765197754, + "step": 2029 + }, + { + "epoch": 28.195718654434252, + "grad_norm": 0.2500663101673126, + "learning_rate": 0.0006, + "loss": 3.8061184883117676, + "step": 2030 + }, + { + "epoch": 28.209698558322412, + "grad_norm": 0.2439824491739273, + "learning_rate": 0.0006, + "loss": 3.7886464595794678, + "step": 2031 + }, + { + "epoch": 28.22367846221057, + "grad_norm": 0.24563106894493103, + "learning_rate": 0.0006, + "loss": 3.7901692390441895, + "step": 2032 + }, + { + "epoch": 28.23765836609873, + "grad_norm": 0.2287624627351761, + "learning_rate": 0.0006, + "loss": 3.789931058883667, + "step": 2033 + }, + { + "epoch": 28.251638269986895, + "grad_norm": 0.2231188714504242, + "learning_rate": 0.0006, + "loss": 3.7879133224487305, + "step": 2034 + }, + { + "epoch": 28.265618173875055, + "grad_norm": 0.23090387880802155, + "learning_rate": 0.0006, + "loss": 3.7826130390167236, + "step": 2035 + }, + { + "epoch": 28.279598077763215, + "grad_norm": 0.216018944978714, + "learning_rate": 0.0006, + "loss": 3.7764949798583984, + "step": 2036 + }, + { + "epoch": 28.293577981651374, + "grad_norm": 0.22649185359477997, + "learning_rate": 0.0006, + "loss": 3.7911291122436523, + "step": 2037 + }, + { + "epoch": 28.307557885539538, + "grad_norm": 0.2350836843252182, + "learning_rate": 0.0006, + "loss": 3.7668724060058594, + "step": 2038 + }, + { + "epoch": 28.321537789427698, + "grad_norm": 0.23206329345703125, + "learning_rate": 0.0006, + "loss": 3.782243251800537, + "step": 2039 + }, + { + "epoch": 28.335517693315857, + "grad_norm": 0.21896308660507202, + "learning_rate": 0.0006, + "loss": 3.7605721950531006, + "step": 2040 + }, + { + "epoch": 28.34949759720402, + "grad_norm": 0.20381200313568115, + "learning_rate": 0.0006, + "loss": 3.743945598602295, + "step": 2041 + }, + { + "epoch": 28.36347750109218, + "grad_norm": 0.19196000695228577, + "learning_rate": 0.0006, + "loss": 3.808107852935791, + "step": 2042 + }, + { + "epoch": 28.37745740498034, + "grad_norm": 0.19517889618873596, + "learning_rate": 0.0006, + "loss": 3.7906723022460938, + "step": 2043 + }, + { + "epoch": 28.3914373088685, + "grad_norm": 0.20455795526504517, + "learning_rate": 0.0006, + "loss": 3.7421011924743652, + "step": 2044 + }, + { + "epoch": 28.405417212756664, + "grad_norm": 0.1867467314004898, + "learning_rate": 0.0006, + "loss": 3.775509834289551, + "step": 2045 + }, + { + "epoch": 28.419397116644824, + "grad_norm": 0.2029324471950531, + "learning_rate": 0.0006, + "loss": 3.771353244781494, + "step": 2046 + }, + { + "epoch": 28.433377020532983, + "grad_norm": 0.19967497885227203, + "learning_rate": 0.0006, + "loss": 3.7821149826049805, + "step": 2047 + }, + { + "epoch": 28.447356924421143, + "grad_norm": 0.19440607726573944, + "learning_rate": 0.0006, + "loss": 3.8114213943481445, + "step": 2048 + }, + { + "epoch": 28.461336828309307, + "grad_norm": 0.19679802656173706, + "learning_rate": 0.0006, + "loss": 3.7699532508850098, + "step": 2049 + }, + { + "epoch": 28.475316732197467, + "grad_norm": 0.1939811110496521, + "learning_rate": 0.0006, + "loss": 3.7673027515411377, + "step": 2050 + }, + { + "epoch": 28.489296636085626, + "grad_norm": 0.18712401390075684, + "learning_rate": 0.0006, + "loss": 3.816699266433716, + "step": 2051 + }, + { + "epoch": 28.503276539973786, + "grad_norm": 0.202956885099411, + "learning_rate": 0.0006, + "loss": 3.7746071815490723, + "step": 2052 + }, + { + "epoch": 28.51725644386195, + "grad_norm": 0.19098156690597534, + "learning_rate": 0.0006, + "loss": 3.8065481185913086, + "step": 2053 + }, + { + "epoch": 28.53123634775011, + "grad_norm": 0.21144428849220276, + "learning_rate": 0.0006, + "loss": 3.7890982627868652, + "step": 2054 + }, + { + "epoch": 28.54521625163827, + "grad_norm": 0.21882614493370056, + "learning_rate": 0.0006, + "loss": 3.8168821334838867, + "step": 2055 + }, + { + "epoch": 28.55919615552643, + "grad_norm": 0.22200101613998413, + "learning_rate": 0.0006, + "loss": 3.804454803466797, + "step": 2056 + }, + { + "epoch": 28.573176059414592, + "grad_norm": 0.22404780983924866, + "learning_rate": 0.0006, + "loss": 3.808764934539795, + "step": 2057 + }, + { + "epoch": 28.587155963302752, + "grad_norm": 0.22770099341869354, + "learning_rate": 0.0006, + "loss": 3.74835467338562, + "step": 2058 + }, + { + "epoch": 28.601135867190912, + "grad_norm": 0.23214420676231384, + "learning_rate": 0.0006, + "loss": 3.7480111122131348, + "step": 2059 + }, + { + "epoch": 28.615115771079076, + "grad_norm": 0.21786348521709442, + "learning_rate": 0.0006, + "loss": 3.8095176219940186, + "step": 2060 + }, + { + "epoch": 28.629095674967235, + "grad_norm": 0.21004106104373932, + "learning_rate": 0.0006, + "loss": 3.792745590209961, + "step": 2061 + }, + { + "epoch": 28.643075578855395, + "grad_norm": 0.21076138317584991, + "learning_rate": 0.0006, + "loss": 3.7878952026367188, + "step": 2062 + }, + { + "epoch": 28.657055482743555, + "grad_norm": 0.2184346616268158, + "learning_rate": 0.0006, + "loss": 3.757188320159912, + "step": 2063 + }, + { + "epoch": 28.67103538663172, + "grad_norm": 0.22100569307804108, + "learning_rate": 0.0006, + "loss": 3.8131773471832275, + "step": 2064 + }, + { + "epoch": 28.68501529051988, + "grad_norm": 0.23257511854171753, + "learning_rate": 0.0006, + "loss": 3.793826103210449, + "step": 2065 + }, + { + "epoch": 28.698995194408038, + "grad_norm": 0.22312869131565094, + "learning_rate": 0.0006, + "loss": 3.782083749771118, + "step": 2066 + }, + { + "epoch": 28.712975098296198, + "grad_norm": 0.2318405956029892, + "learning_rate": 0.0006, + "loss": 3.7814879417419434, + "step": 2067 + }, + { + "epoch": 28.72695500218436, + "grad_norm": 0.23719379305839539, + "learning_rate": 0.0006, + "loss": 3.8320484161376953, + "step": 2068 + }, + { + "epoch": 28.74093490607252, + "grad_norm": 0.23100806772708893, + "learning_rate": 0.0006, + "loss": 3.7921783924102783, + "step": 2069 + }, + { + "epoch": 28.75491480996068, + "grad_norm": 0.21540866792201996, + "learning_rate": 0.0006, + "loss": 3.8325204849243164, + "step": 2070 + }, + { + "epoch": 28.76889471384884, + "grad_norm": 0.2698654532432556, + "learning_rate": 0.0006, + "loss": 3.7965879440307617, + "step": 2071 + }, + { + "epoch": 28.782874617737004, + "grad_norm": 0.3101225793361664, + "learning_rate": 0.0006, + "loss": 3.78842830657959, + "step": 2072 + }, + { + "epoch": 28.796854521625164, + "grad_norm": 0.2607600688934326, + "learning_rate": 0.0006, + "loss": 3.770064115524292, + "step": 2073 + }, + { + "epoch": 28.810834425513324, + "grad_norm": 0.20558302104473114, + "learning_rate": 0.0006, + "loss": 3.7448501586914062, + "step": 2074 + }, + { + "epoch": 28.824814329401484, + "grad_norm": 0.20030120015144348, + "learning_rate": 0.0006, + "loss": 3.7689406871795654, + "step": 2075 + }, + { + "epoch": 28.838794233289647, + "grad_norm": 0.21781118214130402, + "learning_rate": 0.0006, + "loss": 3.7682244777679443, + "step": 2076 + }, + { + "epoch": 28.852774137177807, + "grad_norm": 0.23543044924736023, + "learning_rate": 0.0006, + "loss": 3.8094193935394287, + "step": 2077 + }, + { + "epoch": 28.866754041065967, + "grad_norm": 0.21634669601917267, + "learning_rate": 0.0006, + "loss": 3.792099952697754, + "step": 2078 + }, + { + "epoch": 28.88073394495413, + "grad_norm": 0.2251661866903305, + "learning_rate": 0.0006, + "loss": 3.7849509716033936, + "step": 2079 + }, + { + "epoch": 28.89471384884229, + "grad_norm": 0.23872914910316467, + "learning_rate": 0.0006, + "loss": 3.8391621112823486, + "step": 2080 + }, + { + "epoch": 28.90869375273045, + "grad_norm": 0.22259248793125153, + "learning_rate": 0.0006, + "loss": 3.8272876739501953, + "step": 2081 + }, + { + "epoch": 28.92267365661861, + "grad_norm": 0.22052262723445892, + "learning_rate": 0.0006, + "loss": 3.7986836433410645, + "step": 2082 + }, + { + "epoch": 28.936653560506773, + "grad_norm": 0.24487647414207458, + "learning_rate": 0.0006, + "loss": 3.798004150390625, + "step": 2083 + }, + { + "epoch": 28.950633464394933, + "grad_norm": 0.22992238402366638, + "learning_rate": 0.0006, + "loss": 3.788522720336914, + "step": 2084 + }, + { + "epoch": 28.964613368283093, + "grad_norm": 0.22521597146987915, + "learning_rate": 0.0006, + "loss": 3.767259120941162, + "step": 2085 + }, + { + "epoch": 28.978593272171253, + "grad_norm": 0.2201499044895172, + "learning_rate": 0.0006, + "loss": 3.7850542068481445, + "step": 2086 + }, + { + "epoch": 28.992573176059416, + "grad_norm": 0.22226814925670624, + "learning_rate": 0.0006, + "loss": 3.8013534545898438, + "step": 2087 + }, + { + "epoch": 29.0, + "grad_norm": 0.27624809741973877, + "learning_rate": 0.0006, + "loss": 3.762004852294922, + "step": 2088 + }, + { + "epoch": 29.0, + "eval_loss": 4.034304618835449, + "eval_runtime": 44.6573, + "eval_samples_per_second": 54.683, + "eval_steps_per_second": 3.426, + "step": 2088 + }, + { + "epoch": 29.01397990388816, + "grad_norm": 0.2550967037677765, + "learning_rate": 0.0006, + "loss": 3.7724227905273438, + "step": 2089 + }, + { + "epoch": 29.027959807776323, + "grad_norm": 0.26730602979660034, + "learning_rate": 0.0006, + "loss": 3.7728946208953857, + "step": 2090 + }, + { + "epoch": 29.041939711664483, + "grad_norm": 0.2394205927848816, + "learning_rate": 0.0006, + "loss": 3.7737584114074707, + "step": 2091 + }, + { + "epoch": 29.055919615552643, + "grad_norm": 0.22488200664520264, + "learning_rate": 0.0006, + "loss": 3.761014938354492, + "step": 2092 + }, + { + "epoch": 29.069899519440803, + "grad_norm": 0.2389903962612152, + "learning_rate": 0.0006, + "loss": 3.766557216644287, + "step": 2093 + }, + { + "epoch": 29.083879423328966, + "grad_norm": 0.234152153134346, + "learning_rate": 0.0006, + "loss": 3.7447147369384766, + "step": 2094 + }, + { + "epoch": 29.097859327217126, + "grad_norm": 0.23123252391815186, + "learning_rate": 0.0006, + "loss": 3.77197527885437, + "step": 2095 + }, + { + "epoch": 29.111839231105286, + "grad_norm": 0.23263143002986908, + "learning_rate": 0.0006, + "loss": 3.7390198707580566, + "step": 2096 + }, + { + "epoch": 29.125819134993446, + "grad_norm": 0.23235775530338287, + "learning_rate": 0.0006, + "loss": 3.7675256729125977, + "step": 2097 + }, + { + "epoch": 29.13979903888161, + "grad_norm": 0.2208816260099411, + "learning_rate": 0.0006, + "loss": 3.7588067054748535, + "step": 2098 + }, + { + "epoch": 29.15377894276977, + "grad_norm": 0.21216371655464172, + "learning_rate": 0.0006, + "loss": 3.7370502948760986, + "step": 2099 + }, + { + "epoch": 29.16775884665793, + "grad_norm": 0.2210543155670166, + "learning_rate": 0.0006, + "loss": 3.767308473587036, + "step": 2100 + }, + { + "epoch": 29.18173875054609, + "grad_norm": 0.21628431975841522, + "learning_rate": 0.0006, + "loss": 3.7298972606658936, + "step": 2101 + }, + { + "epoch": 29.195718654434252, + "grad_norm": 0.21493588387966156, + "learning_rate": 0.0006, + "loss": 3.7806448936462402, + "step": 2102 + }, + { + "epoch": 29.209698558322412, + "grad_norm": 0.25978055596351624, + "learning_rate": 0.0006, + "loss": 3.7716293334960938, + "step": 2103 + }, + { + "epoch": 29.22367846221057, + "grad_norm": 0.2744791507720947, + "learning_rate": 0.0006, + "loss": 3.76897931098938, + "step": 2104 + }, + { + "epoch": 29.23765836609873, + "grad_norm": 0.22959400713443756, + "learning_rate": 0.0006, + "loss": 3.7545714378356934, + "step": 2105 + }, + { + "epoch": 29.251638269986895, + "grad_norm": 0.20369231700897217, + "learning_rate": 0.0006, + "loss": 3.7944722175598145, + "step": 2106 + }, + { + "epoch": 29.265618173875055, + "grad_norm": 0.21663758158683777, + "learning_rate": 0.0006, + "loss": 3.7564756870269775, + "step": 2107 + }, + { + "epoch": 29.279598077763215, + "grad_norm": 0.21862861514091492, + "learning_rate": 0.0006, + "loss": 3.7722725868225098, + "step": 2108 + }, + { + "epoch": 29.293577981651374, + "grad_norm": 0.2044878453016281, + "learning_rate": 0.0006, + "loss": 3.7471303939819336, + "step": 2109 + }, + { + "epoch": 29.307557885539538, + "grad_norm": 0.23015929758548737, + "learning_rate": 0.0006, + "loss": 3.7584962844848633, + "step": 2110 + }, + { + "epoch": 29.321537789427698, + "grad_norm": 0.22548329830169678, + "learning_rate": 0.0006, + "loss": 3.795933723449707, + "step": 2111 + }, + { + "epoch": 29.335517693315857, + "grad_norm": 0.2000468522310257, + "learning_rate": 0.0006, + "loss": 3.766310691833496, + "step": 2112 + }, + { + "epoch": 29.34949759720402, + "grad_norm": 0.19711551070213318, + "learning_rate": 0.0006, + "loss": 3.7296276092529297, + "step": 2113 + }, + { + "epoch": 29.36347750109218, + "grad_norm": 0.18838997185230255, + "learning_rate": 0.0006, + "loss": 3.7685282230377197, + "step": 2114 + }, + { + "epoch": 29.37745740498034, + "grad_norm": 0.1897876113653183, + "learning_rate": 0.0006, + "loss": 3.7280936241149902, + "step": 2115 + }, + { + "epoch": 29.3914373088685, + "grad_norm": 0.21697933971881866, + "learning_rate": 0.0006, + "loss": 3.7991929054260254, + "step": 2116 + }, + { + "epoch": 29.405417212756664, + "grad_norm": 0.23445849120616913, + "learning_rate": 0.0006, + "loss": 3.7857418060302734, + "step": 2117 + }, + { + "epoch": 29.419397116644824, + "grad_norm": 0.24155527353286743, + "learning_rate": 0.0006, + "loss": 3.7897872924804688, + "step": 2118 + }, + { + "epoch": 29.433377020532983, + "grad_norm": 0.2610265016555786, + "learning_rate": 0.0006, + "loss": 3.7867324352264404, + "step": 2119 + }, + { + "epoch": 29.447356924421143, + "grad_norm": 0.2809581160545349, + "learning_rate": 0.0006, + "loss": 3.783799648284912, + "step": 2120 + }, + { + "epoch": 29.461336828309307, + "grad_norm": 0.2621572017669678, + "learning_rate": 0.0006, + "loss": 3.7778549194335938, + "step": 2121 + }, + { + "epoch": 29.475316732197467, + "grad_norm": 0.26002970337867737, + "learning_rate": 0.0006, + "loss": 3.787945508956909, + "step": 2122 + }, + { + "epoch": 29.489296636085626, + "grad_norm": 0.24866686761379242, + "learning_rate": 0.0006, + "loss": 3.7406349182128906, + "step": 2123 + }, + { + "epoch": 29.503276539973786, + "grad_norm": 0.25588324666023254, + "learning_rate": 0.0006, + "loss": 3.785625457763672, + "step": 2124 + }, + { + "epoch": 29.51725644386195, + "grad_norm": 0.24724243581295013, + "learning_rate": 0.0006, + "loss": 3.7581701278686523, + "step": 2125 + }, + { + "epoch": 29.53123634775011, + "grad_norm": 0.23544734716415405, + "learning_rate": 0.0006, + "loss": 3.8163957595825195, + "step": 2126 + }, + { + "epoch": 29.54521625163827, + "grad_norm": 0.2108801156282425, + "learning_rate": 0.0006, + "loss": 3.7881739139556885, + "step": 2127 + }, + { + "epoch": 29.55919615552643, + "grad_norm": 0.20459668338298798, + "learning_rate": 0.0006, + "loss": 3.7641284465789795, + "step": 2128 + }, + { + "epoch": 29.573176059414592, + "grad_norm": 0.24020728468894958, + "learning_rate": 0.0006, + "loss": 3.7748730182647705, + "step": 2129 + }, + { + "epoch": 29.587155963302752, + "grad_norm": 0.256273478269577, + "learning_rate": 0.0006, + "loss": 3.8076486587524414, + "step": 2130 + }, + { + "epoch": 29.601135867190912, + "grad_norm": 0.23295973241329193, + "learning_rate": 0.0006, + "loss": 3.7687063217163086, + "step": 2131 + }, + { + "epoch": 29.615115771079076, + "grad_norm": 0.21554847061634064, + "learning_rate": 0.0006, + "loss": 3.781867027282715, + "step": 2132 + }, + { + "epoch": 29.629095674967235, + "grad_norm": 0.20645774900913239, + "learning_rate": 0.0006, + "loss": 3.7813425064086914, + "step": 2133 + }, + { + "epoch": 29.643075578855395, + "grad_norm": 0.2018265724182129, + "learning_rate": 0.0006, + "loss": 3.772895574569702, + "step": 2134 + }, + { + "epoch": 29.657055482743555, + "grad_norm": 0.20170100033283234, + "learning_rate": 0.0006, + "loss": 3.7819175720214844, + "step": 2135 + }, + { + "epoch": 29.67103538663172, + "grad_norm": 0.22640688717365265, + "learning_rate": 0.0006, + "loss": 3.7999017238616943, + "step": 2136 + }, + { + "epoch": 29.68501529051988, + "grad_norm": 0.23747675120830536, + "learning_rate": 0.0006, + "loss": 3.804999828338623, + "step": 2137 + }, + { + "epoch": 29.698995194408038, + "grad_norm": 0.20005857944488525, + "learning_rate": 0.0006, + "loss": 3.7815160751342773, + "step": 2138 + }, + { + "epoch": 29.712975098296198, + "grad_norm": 0.17901667952537537, + "learning_rate": 0.0006, + "loss": 3.7898688316345215, + "step": 2139 + }, + { + "epoch": 29.72695500218436, + "grad_norm": 0.1890905797481537, + "learning_rate": 0.0006, + "loss": 3.8001184463500977, + "step": 2140 + }, + { + "epoch": 29.74093490607252, + "grad_norm": 0.19565847516059875, + "learning_rate": 0.0006, + "loss": 3.7522482872009277, + "step": 2141 + }, + { + "epoch": 29.75491480996068, + "grad_norm": 0.19429196417331696, + "learning_rate": 0.0006, + "loss": 3.768972158432007, + "step": 2142 + }, + { + "epoch": 29.76889471384884, + "grad_norm": 0.23846636712551117, + "learning_rate": 0.0006, + "loss": 3.765216112136841, + "step": 2143 + }, + { + "epoch": 29.782874617737004, + "grad_norm": 0.23820780217647552, + "learning_rate": 0.0006, + "loss": 3.8027703762054443, + "step": 2144 + }, + { + "epoch": 29.796854521625164, + "grad_norm": 0.21104726195335388, + "learning_rate": 0.0006, + "loss": 3.7682833671569824, + "step": 2145 + }, + { + "epoch": 29.810834425513324, + "grad_norm": 0.1911051720380783, + "learning_rate": 0.0006, + "loss": 3.781782627105713, + "step": 2146 + }, + { + "epoch": 29.824814329401484, + "grad_norm": 0.18881288170814514, + "learning_rate": 0.0006, + "loss": 3.7703428268432617, + "step": 2147 + }, + { + "epoch": 29.838794233289647, + "grad_norm": 0.18292994797229767, + "learning_rate": 0.0006, + "loss": 3.769176721572876, + "step": 2148 + }, + { + "epoch": 29.852774137177807, + "grad_norm": 0.1777714639902115, + "learning_rate": 0.0006, + "loss": 3.7488298416137695, + "step": 2149 + }, + { + "epoch": 29.866754041065967, + "grad_norm": 0.2037898749113083, + "learning_rate": 0.0006, + "loss": 3.804396390914917, + "step": 2150 + }, + { + "epoch": 29.88073394495413, + "grad_norm": 0.2121828943490982, + "learning_rate": 0.0006, + "loss": 3.75870943069458, + "step": 2151 + }, + { + "epoch": 29.89471384884229, + "grad_norm": 0.23231184482574463, + "learning_rate": 0.0006, + "loss": 3.80178165435791, + "step": 2152 + }, + { + "epoch": 29.90869375273045, + "grad_norm": 0.24045611917972565, + "learning_rate": 0.0006, + "loss": 3.7690834999084473, + "step": 2153 + }, + { + "epoch": 29.92267365661861, + "grad_norm": 0.19830496609210968, + "learning_rate": 0.0006, + "loss": 3.764401912689209, + "step": 2154 + }, + { + "epoch": 29.936653560506773, + "grad_norm": 0.17704227566719055, + "learning_rate": 0.0006, + "loss": 3.7634594440460205, + "step": 2155 + }, + { + "epoch": 29.950633464394933, + "grad_norm": 0.17783164978027344, + "learning_rate": 0.0006, + "loss": 3.7856998443603516, + "step": 2156 + }, + { + "epoch": 29.964613368283093, + "grad_norm": 0.19684971868991852, + "learning_rate": 0.0006, + "loss": 3.805774211883545, + "step": 2157 + }, + { + "epoch": 29.978593272171253, + "grad_norm": 0.21662312746047974, + "learning_rate": 0.0006, + "loss": 3.757896661758423, + "step": 2158 + }, + { + "epoch": 29.992573176059416, + "grad_norm": 0.22000661492347717, + "learning_rate": 0.0006, + "loss": 3.7747678756713867, + "step": 2159 + }, + { + "epoch": 30.0, + "grad_norm": 0.21501901745796204, + "learning_rate": 0.0006, + "loss": 3.785585880279541, + "step": 2160 + }, + { + "epoch": 30.0, + "eval_loss": 4.034003734588623, + "eval_runtime": 44.9097, + "eval_samples_per_second": 54.376, + "eval_steps_per_second": 3.407, + "step": 2160 + }, + { + "epoch": 30.01397990388816, + "grad_norm": 0.19710904359817505, + "learning_rate": 0.0006, + "loss": 3.756235122680664, + "step": 2161 + }, + { + "epoch": 30.027959807776323, + "grad_norm": 0.19829736649990082, + "learning_rate": 0.0006, + "loss": 3.734067916870117, + "step": 2162 + }, + { + "epoch": 30.041939711664483, + "grad_norm": 0.21622520685195923, + "learning_rate": 0.0006, + "loss": 3.7329437732696533, + "step": 2163 + }, + { + "epoch": 30.055919615552643, + "grad_norm": 0.22544652223587036, + "learning_rate": 0.0006, + "loss": 3.748716354370117, + "step": 2164 + }, + { + "epoch": 30.069899519440803, + "grad_norm": 0.21098364889621735, + "learning_rate": 0.0006, + "loss": 3.779047727584839, + "step": 2165 + }, + { + "epoch": 30.083879423328966, + "grad_norm": 0.21309930086135864, + "learning_rate": 0.0006, + "loss": 3.7690274715423584, + "step": 2166 + }, + { + "epoch": 30.097859327217126, + "grad_norm": 0.23025690019130707, + "learning_rate": 0.0006, + "loss": 3.7500953674316406, + "step": 2167 + }, + { + "epoch": 30.111839231105286, + "grad_norm": 0.25107935070991516, + "learning_rate": 0.0006, + "loss": 3.745492458343506, + "step": 2168 + }, + { + "epoch": 30.125819134993446, + "grad_norm": 0.29873573780059814, + "learning_rate": 0.0006, + "loss": 3.759793758392334, + "step": 2169 + }, + { + "epoch": 30.13979903888161, + "grad_norm": 0.2810286283493042, + "learning_rate": 0.0006, + "loss": 3.772998809814453, + "step": 2170 + }, + { + "epoch": 30.15377894276977, + "grad_norm": 0.2102176398038864, + "learning_rate": 0.0006, + "loss": 3.740170955657959, + "step": 2171 + }, + { + "epoch": 30.16775884665793, + "grad_norm": 0.24143251776695251, + "learning_rate": 0.0006, + "loss": 3.7317001819610596, + "step": 2172 + }, + { + "epoch": 30.18173875054609, + "grad_norm": 0.2643064558506012, + "learning_rate": 0.0006, + "loss": 3.773263692855835, + "step": 2173 + }, + { + "epoch": 30.195718654434252, + "grad_norm": 0.27571243047714233, + "learning_rate": 0.0006, + "loss": 3.7619900703430176, + "step": 2174 + }, + { + "epoch": 30.209698558322412, + "grad_norm": 0.25359588861465454, + "learning_rate": 0.0006, + "loss": 3.7608513832092285, + "step": 2175 + }, + { + "epoch": 30.22367846221057, + "grad_norm": 0.2500684857368469, + "learning_rate": 0.0006, + "loss": 3.75856614112854, + "step": 2176 + }, + { + "epoch": 30.23765836609873, + "grad_norm": 0.23100309073925018, + "learning_rate": 0.0006, + "loss": 3.749786853790283, + "step": 2177 + }, + { + "epoch": 30.251638269986895, + "grad_norm": 0.24384984374046326, + "learning_rate": 0.0006, + "loss": 3.762244701385498, + "step": 2178 + }, + { + "epoch": 30.265618173875055, + "grad_norm": 0.24593998491764069, + "learning_rate": 0.0006, + "loss": 3.754594326019287, + "step": 2179 + }, + { + "epoch": 30.279598077763215, + "grad_norm": 0.2529342770576477, + "learning_rate": 0.0006, + "loss": 3.7641053199768066, + "step": 2180 + }, + { + "epoch": 30.293577981651374, + "grad_norm": 0.25954094529151917, + "learning_rate": 0.0006, + "loss": 3.810336112976074, + "step": 2181 + }, + { + "epoch": 30.307557885539538, + "grad_norm": 0.2249951958656311, + "learning_rate": 0.0006, + "loss": 3.7542617321014404, + "step": 2182 + }, + { + "epoch": 30.321537789427698, + "grad_norm": 0.19795064628124237, + "learning_rate": 0.0006, + "loss": 3.7734434604644775, + "step": 2183 + }, + { + "epoch": 30.335517693315857, + "grad_norm": 0.20744608342647552, + "learning_rate": 0.0006, + "loss": 3.7816128730773926, + "step": 2184 + }, + { + "epoch": 30.34949759720402, + "grad_norm": 0.19988055527210236, + "learning_rate": 0.0006, + "loss": 3.7631936073303223, + "step": 2185 + }, + { + "epoch": 30.36347750109218, + "grad_norm": 0.22226445376873016, + "learning_rate": 0.0006, + "loss": 3.762910842895508, + "step": 2186 + }, + { + "epoch": 30.37745740498034, + "grad_norm": 0.21986067295074463, + "learning_rate": 0.0006, + "loss": 3.733893394470215, + "step": 2187 + }, + { + "epoch": 30.3914373088685, + "grad_norm": 0.2170228660106659, + "learning_rate": 0.0006, + "loss": 3.726433515548706, + "step": 2188 + }, + { + "epoch": 30.405417212756664, + "grad_norm": 0.2179550975561142, + "learning_rate": 0.0006, + "loss": 3.792311668395996, + "step": 2189 + }, + { + "epoch": 30.419397116644824, + "grad_norm": 0.208037331700325, + "learning_rate": 0.0006, + "loss": 3.774639129638672, + "step": 2190 + }, + { + "epoch": 30.433377020532983, + "grad_norm": 0.20745441317558289, + "learning_rate": 0.0006, + "loss": 3.776130199432373, + "step": 2191 + }, + { + "epoch": 30.447356924421143, + "grad_norm": 0.1988024264574051, + "learning_rate": 0.0006, + "loss": 3.7453784942626953, + "step": 2192 + }, + { + "epoch": 30.461336828309307, + "grad_norm": 0.194968581199646, + "learning_rate": 0.0006, + "loss": 3.764653205871582, + "step": 2193 + }, + { + "epoch": 30.475316732197467, + "grad_norm": 0.20658300817012787, + "learning_rate": 0.0006, + "loss": 3.796513080596924, + "step": 2194 + }, + { + "epoch": 30.489296636085626, + "grad_norm": 0.2123410701751709, + "learning_rate": 0.0006, + "loss": 3.7630836963653564, + "step": 2195 + }, + { + "epoch": 30.503276539973786, + "grad_norm": 0.20894059538841248, + "learning_rate": 0.0006, + "loss": 3.7265470027923584, + "step": 2196 + }, + { + "epoch": 30.51725644386195, + "grad_norm": 0.2016828954219818, + "learning_rate": 0.0006, + "loss": 3.8083386421203613, + "step": 2197 + }, + { + "epoch": 30.53123634775011, + "grad_norm": 0.19584205746650696, + "learning_rate": 0.0006, + "loss": 3.7492105960845947, + "step": 2198 + }, + { + "epoch": 30.54521625163827, + "grad_norm": 0.18635272979736328, + "learning_rate": 0.0006, + "loss": 3.711009979248047, + "step": 2199 + }, + { + "epoch": 30.55919615552643, + "grad_norm": 0.1920594871044159, + "learning_rate": 0.0006, + "loss": 3.760801315307617, + "step": 2200 + }, + { + "epoch": 30.573176059414592, + "grad_norm": 0.1978331208229065, + "learning_rate": 0.0006, + "loss": 3.780529022216797, + "step": 2201 + }, + { + "epoch": 30.587155963302752, + "grad_norm": 0.20076943933963776, + "learning_rate": 0.0006, + "loss": 3.7767038345336914, + "step": 2202 + }, + { + "epoch": 30.601135867190912, + "grad_norm": 0.2067444622516632, + "learning_rate": 0.0006, + "loss": 3.7607920169830322, + "step": 2203 + }, + { + "epoch": 30.615115771079076, + "grad_norm": 0.2081940472126007, + "learning_rate": 0.0006, + "loss": 3.741936206817627, + "step": 2204 + }, + { + "epoch": 30.629095674967235, + "grad_norm": 0.21212869882583618, + "learning_rate": 0.0006, + "loss": 3.7597827911376953, + "step": 2205 + }, + { + "epoch": 30.643075578855395, + "grad_norm": 0.21539026498794556, + "learning_rate": 0.0006, + "loss": 3.764646053314209, + "step": 2206 + }, + { + "epoch": 30.657055482743555, + "grad_norm": 0.19788387417793274, + "learning_rate": 0.0006, + "loss": 3.7535128593444824, + "step": 2207 + }, + { + "epoch": 30.67103538663172, + "grad_norm": 0.20757688581943512, + "learning_rate": 0.0006, + "loss": 3.7414169311523438, + "step": 2208 + }, + { + "epoch": 30.68501529051988, + "grad_norm": 0.199361652135849, + "learning_rate": 0.0006, + "loss": 3.7578506469726562, + "step": 2209 + }, + { + "epoch": 30.698995194408038, + "grad_norm": 0.1909894198179245, + "learning_rate": 0.0006, + "loss": 3.736250400543213, + "step": 2210 + }, + { + "epoch": 30.712975098296198, + "grad_norm": 0.19766664505004883, + "learning_rate": 0.0006, + "loss": 3.7435379028320312, + "step": 2211 + }, + { + "epoch": 30.72695500218436, + "grad_norm": 0.21857766807079315, + "learning_rate": 0.0006, + "loss": 3.7478690147399902, + "step": 2212 + }, + { + "epoch": 30.74093490607252, + "grad_norm": 0.22385898232460022, + "learning_rate": 0.0006, + "loss": 3.7522530555725098, + "step": 2213 + }, + { + "epoch": 30.75491480996068, + "grad_norm": 0.2329241931438446, + "learning_rate": 0.0006, + "loss": 3.7568247318267822, + "step": 2214 + }, + { + "epoch": 30.76889471384884, + "grad_norm": 0.2218400090932846, + "learning_rate": 0.0006, + "loss": 3.7662744522094727, + "step": 2215 + }, + { + "epoch": 30.782874617737004, + "grad_norm": 0.21350212395191193, + "learning_rate": 0.0006, + "loss": 3.7683777809143066, + "step": 2216 + }, + { + "epoch": 30.796854521625164, + "grad_norm": 0.22357074916362762, + "learning_rate": 0.0006, + "loss": 3.763437032699585, + "step": 2217 + }, + { + "epoch": 30.810834425513324, + "grad_norm": 0.22268560528755188, + "learning_rate": 0.0006, + "loss": 3.772836685180664, + "step": 2218 + }, + { + "epoch": 30.824814329401484, + "grad_norm": 0.2434026449918747, + "learning_rate": 0.0006, + "loss": 3.752986431121826, + "step": 2219 + }, + { + "epoch": 30.838794233289647, + "grad_norm": 0.2298414409160614, + "learning_rate": 0.0006, + "loss": 3.7837061882019043, + "step": 2220 + }, + { + "epoch": 30.852774137177807, + "grad_norm": 0.227672278881073, + "learning_rate": 0.0006, + "loss": 3.746065378189087, + "step": 2221 + }, + { + "epoch": 30.866754041065967, + "grad_norm": 0.2562827169895172, + "learning_rate": 0.0006, + "loss": 3.7741947174072266, + "step": 2222 + }, + { + "epoch": 30.88073394495413, + "grad_norm": 0.23657815158367157, + "learning_rate": 0.0006, + "loss": 3.746457099914551, + "step": 2223 + }, + { + "epoch": 30.89471384884229, + "grad_norm": 0.2158907800912857, + "learning_rate": 0.0006, + "loss": 3.7821710109710693, + "step": 2224 + }, + { + "epoch": 30.90869375273045, + "grad_norm": 0.22501254081726074, + "learning_rate": 0.0006, + "loss": 3.7528274059295654, + "step": 2225 + }, + { + "epoch": 30.92267365661861, + "grad_norm": 0.20252224802970886, + "learning_rate": 0.0006, + "loss": 3.749418258666992, + "step": 2226 + }, + { + "epoch": 30.936653560506773, + "grad_norm": 0.2067883312702179, + "learning_rate": 0.0006, + "loss": 3.7560606002807617, + "step": 2227 + }, + { + "epoch": 30.950633464394933, + "grad_norm": 0.23104053735733032, + "learning_rate": 0.0006, + "loss": 3.7883846759796143, + "step": 2228 + }, + { + "epoch": 30.964613368283093, + "grad_norm": 0.21476604044437408, + "learning_rate": 0.0006, + "loss": 3.7976977825164795, + "step": 2229 + }, + { + "epoch": 30.978593272171253, + "grad_norm": 0.2130427062511444, + "learning_rate": 0.0006, + "loss": 3.7429304122924805, + "step": 2230 + }, + { + "epoch": 30.992573176059416, + "grad_norm": 0.2047216147184372, + "learning_rate": 0.0006, + "loss": 3.7669787406921387, + "step": 2231 + }, + { + "epoch": 31.0, + "grad_norm": 0.22254081070423126, + "learning_rate": 0.0006, + "loss": 3.7794251441955566, + "step": 2232 + }, + { + "epoch": 31.0, + "eval_loss": 4.039162635803223, + "eval_runtime": 44.9069, + "eval_samples_per_second": 54.379, + "eval_steps_per_second": 3.407, + "step": 2232 + }, + { + "epoch": 31.01397990388816, + "grad_norm": 0.2278132289648056, + "learning_rate": 0.0006, + "loss": 3.7363929748535156, + "step": 2233 + }, + { + "epoch": 31.027959807776323, + "grad_norm": 0.2377072274684906, + "learning_rate": 0.0006, + "loss": 3.72847318649292, + "step": 2234 + }, + { + "epoch": 31.041939711664483, + "grad_norm": 0.23790542781352997, + "learning_rate": 0.0006, + "loss": 3.767193078994751, + "step": 2235 + }, + { + "epoch": 31.055919615552643, + "grad_norm": 0.2587272524833679, + "learning_rate": 0.0006, + "loss": 3.7564640045166016, + "step": 2236 + }, + { + "epoch": 31.069899519440803, + "grad_norm": 0.27550312876701355, + "learning_rate": 0.0006, + "loss": 3.727578639984131, + "step": 2237 + }, + { + "epoch": 31.083879423328966, + "grad_norm": 0.2488662451505661, + "learning_rate": 0.0006, + "loss": 3.7420730590820312, + "step": 2238 + }, + { + "epoch": 31.097859327217126, + "grad_norm": 0.22699029743671417, + "learning_rate": 0.0006, + "loss": 3.7323155403137207, + "step": 2239 + }, + { + "epoch": 31.111839231105286, + "grad_norm": 0.23360148072242737, + "learning_rate": 0.0006, + "loss": 3.719024181365967, + "step": 2240 + }, + { + "epoch": 31.125819134993446, + "grad_norm": 0.24322988092899323, + "learning_rate": 0.0006, + "loss": 3.74485445022583, + "step": 2241 + }, + { + "epoch": 31.13979903888161, + "grad_norm": 0.2474174052476883, + "learning_rate": 0.0006, + "loss": 3.746826171875, + "step": 2242 + }, + { + "epoch": 31.15377894276977, + "grad_norm": 0.2417406439781189, + "learning_rate": 0.0006, + "loss": 3.7285032272338867, + "step": 2243 + }, + { + "epoch": 31.16775884665793, + "grad_norm": 0.2390318512916565, + "learning_rate": 0.0006, + "loss": 3.7464442253112793, + "step": 2244 + }, + { + "epoch": 31.18173875054609, + "grad_norm": 0.21819323301315308, + "learning_rate": 0.0006, + "loss": 3.735110282897949, + "step": 2245 + }, + { + "epoch": 31.195718654434252, + "grad_norm": 0.21953554451465607, + "learning_rate": 0.0006, + "loss": 3.7270030975341797, + "step": 2246 + }, + { + "epoch": 31.209698558322412, + "grad_norm": 0.1930384635925293, + "learning_rate": 0.0006, + "loss": 3.7519941329956055, + "step": 2247 + }, + { + "epoch": 31.22367846221057, + "grad_norm": 0.19799190759658813, + "learning_rate": 0.0006, + "loss": 3.7428221702575684, + "step": 2248 + }, + { + "epoch": 31.23765836609873, + "grad_norm": 0.20948201417922974, + "learning_rate": 0.0006, + "loss": 3.733120918273926, + "step": 2249 + }, + { + "epoch": 31.251638269986895, + "grad_norm": 0.23768769204616547, + "learning_rate": 0.0006, + "loss": 3.7059035301208496, + "step": 2250 + }, + { + "epoch": 31.265618173875055, + "grad_norm": 0.2808842957019806, + "learning_rate": 0.0006, + "loss": 3.7245287895202637, + "step": 2251 + }, + { + "epoch": 31.279598077763215, + "grad_norm": 0.27633124589920044, + "learning_rate": 0.0006, + "loss": 3.7436366081237793, + "step": 2252 + }, + { + "epoch": 31.293577981651374, + "grad_norm": 0.24137185513973236, + "learning_rate": 0.0006, + "loss": 3.7651219367980957, + "step": 2253 + }, + { + "epoch": 31.307557885539538, + "grad_norm": 0.22056810557842255, + "learning_rate": 0.0006, + "loss": 3.7417521476745605, + "step": 2254 + }, + { + "epoch": 31.321537789427698, + "grad_norm": 0.20137323439121246, + "learning_rate": 0.0006, + "loss": 3.750187397003174, + "step": 2255 + }, + { + "epoch": 31.335517693315857, + "grad_norm": 0.2142433375120163, + "learning_rate": 0.0006, + "loss": 3.7292675971984863, + "step": 2256 + }, + { + "epoch": 31.34949759720402, + "grad_norm": 0.21193967759609222, + "learning_rate": 0.0006, + "loss": 3.7459473609924316, + "step": 2257 + }, + { + "epoch": 31.36347750109218, + "grad_norm": 0.21418534219264984, + "learning_rate": 0.0006, + "loss": 3.754359722137451, + "step": 2258 + }, + { + "epoch": 31.37745740498034, + "grad_norm": 0.23507359623908997, + "learning_rate": 0.0006, + "loss": 3.763413906097412, + "step": 2259 + }, + { + "epoch": 31.3914373088685, + "grad_norm": 0.20393887162208557, + "learning_rate": 0.0006, + "loss": 3.73878812789917, + "step": 2260 + }, + { + "epoch": 31.405417212756664, + "grad_norm": 0.21752159297466278, + "learning_rate": 0.0006, + "loss": 3.750549793243408, + "step": 2261 + }, + { + "epoch": 31.419397116644824, + "grad_norm": 0.22629529237747192, + "learning_rate": 0.0006, + "loss": 3.7791430950164795, + "step": 2262 + }, + { + "epoch": 31.433377020532983, + "grad_norm": 0.2114613950252533, + "learning_rate": 0.0006, + "loss": 3.7709264755249023, + "step": 2263 + }, + { + "epoch": 31.447356924421143, + "grad_norm": 0.23241667449474335, + "learning_rate": 0.0006, + "loss": 3.745750665664673, + "step": 2264 + }, + { + "epoch": 31.461336828309307, + "grad_norm": 0.2434246987104416, + "learning_rate": 0.0006, + "loss": 3.769727945327759, + "step": 2265 + }, + { + "epoch": 31.475316732197467, + "grad_norm": 0.247820645570755, + "learning_rate": 0.0006, + "loss": 3.7528204917907715, + "step": 2266 + }, + { + "epoch": 31.489296636085626, + "grad_norm": 0.21287164092063904, + "learning_rate": 0.0006, + "loss": 3.728661060333252, + "step": 2267 + }, + { + "epoch": 31.503276539973786, + "grad_norm": 0.20983846485614777, + "learning_rate": 0.0006, + "loss": 3.7524428367614746, + "step": 2268 + }, + { + "epoch": 31.51725644386195, + "grad_norm": 0.23799288272857666, + "learning_rate": 0.0006, + "loss": 3.7276647090911865, + "step": 2269 + }, + { + "epoch": 31.53123634775011, + "grad_norm": 0.247065007686615, + "learning_rate": 0.0006, + "loss": 3.7506704330444336, + "step": 2270 + }, + { + "epoch": 31.54521625163827, + "grad_norm": 0.20670939981937408, + "learning_rate": 0.0006, + "loss": 3.71852445602417, + "step": 2271 + }, + { + "epoch": 31.55919615552643, + "grad_norm": 0.19463716447353363, + "learning_rate": 0.0006, + "loss": 3.732757568359375, + "step": 2272 + }, + { + "epoch": 31.573176059414592, + "grad_norm": 0.20368841290473938, + "learning_rate": 0.0006, + "loss": 3.746676445007324, + "step": 2273 + }, + { + "epoch": 31.587155963302752, + "grad_norm": 0.19691342115402222, + "learning_rate": 0.0006, + "loss": 3.7535760402679443, + "step": 2274 + }, + { + "epoch": 31.601135867190912, + "grad_norm": 0.2026553899049759, + "learning_rate": 0.0006, + "loss": 3.7406957149505615, + "step": 2275 + }, + { + "epoch": 31.615115771079076, + "grad_norm": 0.21494299173355103, + "learning_rate": 0.0006, + "loss": 3.735888957977295, + "step": 2276 + }, + { + "epoch": 31.629095674967235, + "grad_norm": 0.21644766628742218, + "learning_rate": 0.0006, + "loss": 3.723767042160034, + "step": 2277 + }, + { + "epoch": 31.643075578855395, + "grad_norm": 0.20087581872940063, + "learning_rate": 0.0006, + "loss": 3.7622008323669434, + "step": 2278 + }, + { + "epoch": 31.657055482743555, + "grad_norm": 0.1949695646762848, + "learning_rate": 0.0006, + "loss": 3.7726354598999023, + "step": 2279 + }, + { + "epoch": 31.67103538663172, + "grad_norm": 0.19120797514915466, + "learning_rate": 0.0006, + "loss": 3.7454679012298584, + "step": 2280 + }, + { + "epoch": 31.68501529051988, + "grad_norm": 0.19480115175247192, + "learning_rate": 0.0006, + "loss": 3.743934392929077, + "step": 2281 + }, + { + "epoch": 31.698995194408038, + "grad_norm": 0.1891610324382782, + "learning_rate": 0.0006, + "loss": 3.7724897861480713, + "step": 2282 + }, + { + "epoch": 31.712975098296198, + "grad_norm": 0.18533185124397278, + "learning_rate": 0.0006, + "loss": 3.7556838989257812, + "step": 2283 + }, + { + "epoch": 31.72695500218436, + "grad_norm": 0.20079447329044342, + "learning_rate": 0.0006, + "loss": 3.76758074760437, + "step": 2284 + }, + { + "epoch": 31.74093490607252, + "grad_norm": 0.2103433609008789, + "learning_rate": 0.0006, + "loss": 3.769477367401123, + "step": 2285 + }, + { + "epoch": 31.75491480996068, + "grad_norm": 0.21428923308849335, + "learning_rate": 0.0006, + "loss": 3.7317447662353516, + "step": 2286 + }, + { + "epoch": 31.76889471384884, + "grad_norm": 0.20154133439064026, + "learning_rate": 0.0006, + "loss": 3.749814987182617, + "step": 2287 + }, + { + "epoch": 31.782874617737004, + "grad_norm": 0.18998542428016663, + "learning_rate": 0.0006, + "loss": 3.7655510902404785, + "step": 2288 + }, + { + "epoch": 31.796854521625164, + "grad_norm": 0.2068665474653244, + "learning_rate": 0.0006, + "loss": 3.7375988960266113, + "step": 2289 + }, + { + "epoch": 31.810834425513324, + "grad_norm": 0.22979815304279327, + "learning_rate": 0.0006, + "loss": 3.728095531463623, + "step": 2290 + }, + { + "epoch": 31.824814329401484, + "grad_norm": 0.2378212958574295, + "learning_rate": 0.0006, + "loss": 3.73091459274292, + "step": 2291 + }, + { + "epoch": 31.838794233289647, + "grad_norm": 0.2353672832250595, + "learning_rate": 0.0006, + "loss": 3.7491769790649414, + "step": 2292 + }, + { + "epoch": 31.852774137177807, + "grad_norm": 0.22341586649417877, + "learning_rate": 0.0006, + "loss": 3.777111530303955, + "step": 2293 + }, + { + "epoch": 31.866754041065967, + "grad_norm": 0.20436930656433105, + "learning_rate": 0.0006, + "loss": 3.740997552871704, + "step": 2294 + }, + { + "epoch": 31.88073394495413, + "grad_norm": 0.20836040377616882, + "learning_rate": 0.0006, + "loss": 3.755582571029663, + "step": 2295 + }, + { + "epoch": 31.89471384884229, + "grad_norm": 0.2045193612575531, + "learning_rate": 0.0006, + "loss": 3.7583560943603516, + "step": 2296 + }, + { + "epoch": 31.90869375273045, + "grad_norm": 0.2025591880083084, + "learning_rate": 0.0006, + "loss": 3.773345470428467, + "step": 2297 + }, + { + "epoch": 31.92267365661861, + "grad_norm": 0.20309099555015564, + "learning_rate": 0.0006, + "loss": 3.7392163276672363, + "step": 2298 + }, + { + "epoch": 31.936653560506773, + "grad_norm": 0.2129351645708084, + "learning_rate": 0.0006, + "loss": 3.7801311016082764, + "step": 2299 + }, + { + "epoch": 31.950633464394933, + "grad_norm": 0.19950738549232483, + "learning_rate": 0.0006, + "loss": 3.779261589050293, + "step": 2300 + }, + { + "epoch": 31.964613368283093, + "grad_norm": 0.22837352752685547, + "learning_rate": 0.0006, + "loss": 3.782731294631958, + "step": 2301 + }, + { + "epoch": 31.978593272171253, + "grad_norm": 0.2576889097690582, + "learning_rate": 0.0006, + "loss": 3.7778096199035645, + "step": 2302 + }, + { + "epoch": 31.992573176059416, + "grad_norm": 0.2770138382911682, + "learning_rate": 0.0006, + "loss": 3.735755443572998, + "step": 2303 + }, + { + "epoch": 32.0, + "grad_norm": 0.2632865309715271, + "learning_rate": 0.0006, + "loss": 3.7562808990478516, + "step": 2304 + }, + { + "epoch": 32.0, + "eval_loss": 4.031628608703613, + "eval_runtime": 44.2115, + "eval_samples_per_second": 55.234, + "eval_steps_per_second": 3.461, + "step": 2304 + }, + { + "epoch": 32.01397990388816, + "grad_norm": 0.20234128832817078, + "learning_rate": 0.0006, + "loss": 3.734489917755127, + "step": 2305 + }, + { + "epoch": 32.02795980777632, + "grad_norm": 0.24983637034893036, + "learning_rate": 0.0006, + "loss": 3.7351019382476807, + "step": 2306 + }, + { + "epoch": 32.04193971166448, + "grad_norm": 0.27358478307724, + "learning_rate": 0.0006, + "loss": 3.708712100982666, + "step": 2307 + }, + { + "epoch": 32.05591961555265, + "grad_norm": 0.24693739414215088, + "learning_rate": 0.0006, + "loss": 3.731858491897583, + "step": 2308 + }, + { + "epoch": 32.0698995194408, + "grad_norm": 0.22751131653785706, + "learning_rate": 0.0006, + "loss": 3.7074670791625977, + "step": 2309 + }, + { + "epoch": 32.083879423328966, + "grad_norm": 0.23400720953941345, + "learning_rate": 0.0006, + "loss": 3.714092493057251, + "step": 2310 + }, + { + "epoch": 32.09785932721712, + "grad_norm": 0.20711684226989746, + "learning_rate": 0.0006, + "loss": 3.754727840423584, + "step": 2311 + }, + { + "epoch": 32.111839231105286, + "grad_norm": 0.21589399874210358, + "learning_rate": 0.0006, + "loss": 3.6953847408294678, + "step": 2312 + }, + { + "epoch": 32.12581913499345, + "grad_norm": 0.24575738608837128, + "learning_rate": 0.0006, + "loss": 3.7078802585601807, + "step": 2313 + }, + { + "epoch": 32.139799038881605, + "grad_norm": 0.23152033984661102, + "learning_rate": 0.0006, + "loss": 3.7402305603027344, + "step": 2314 + }, + { + "epoch": 32.15377894276977, + "grad_norm": 0.22639606893062592, + "learning_rate": 0.0006, + "loss": 3.7264223098754883, + "step": 2315 + }, + { + "epoch": 32.16775884665793, + "grad_norm": 0.24701760709285736, + "learning_rate": 0.0006, + "loss": 3.7497639656066895, + "step": 2316 + }, + { + "epoch": 32.18173875054609, + "grad_norm": 0.274832159280777, + "learning_rate": 0.0006, + "loss": 3.7557122707366943, + "step": 2317 + }, + { + "epoch": 32.19571865443425, + "grad_norm": 0.27472418546676636, + "learning_rate": 0.0006, + "loss": 3.6863393783569336, + "step": 2318 + }, + { + "epoch": 32.20969855832241, + "grad_norm": 0.2625530958175659, + "learning_rate": 0.0006, + "loss": 3.7203545570373535, + "step": 2319 + }, + { + "epoch": 32.22367846221057, + "grad_norm": 0.2576068341732025, + "learning_rate": 0.0006, + "loss": 3.734747886657715, + "step": 2320 + }, + { + "epoch": 32.237658366098735, + "grad_norm": 0.25946059823036194, + "learning_rate": 0.0006, + "loss": 3.7501730918884277, + "step": 2321 + }, + { + "epoch": 32.25163826998689, + "grad_norm": 0.2524135410785675, + "learning_rate": 0.0006, + "loss": 3.75177001953125, + "step": 2322 + }, + { + "epoch": 32.265618173875055, + "grad_norm": 0.2568551003932953, + "learning_rate": 0.0006, + "loss": 3.752450704574585, + "step": 2323 + }, + { + "epoch": 32.27959807776322, + "grad_norm": 0.2489749640226364, + "learning_rate": 0.0006, + "loss": 3.711735486984253, + "step": 2324 + }, + { + "epoch": 32.293577981651374, + "grad_norm": 0.2425498366355896, + "learning_rate": 0.0006, + "loss": 3.7004239559173584, + "step": 2325 + }, + { + "epoch": 32.30755788553954, + "grad_norm": 0.24359773099422455, + "learning_rate": 0.0006, + "loss": 3.733870029449463, + "step": 2326 + }, + { + "epoch": 32.3215377894277, + "grad_norm": 0.22314727306365967, + "learning_rate": 0.0006, + "loss": 3.699841022491455, + "step": 2327 + }, + { + "epoch": 32.33551769331586, + "grad_norm": 0.2047620266675949, + "learning_rate": 0.0006, + "loss": 3.732534170150757, + "step": 2328 + }, + { + "epoch": 32.34949759720402, + "grad_norm": 0.24393224716186523, + "learning_rate": 0.0006, + "loss": 3.7200770378112793, + "step": 2329 + }, + { + "epoch": 32.36347750109218, + "grad_norm": 0.23884256184101105, + "learning_rate": 0.0006, + "loss": 3.722318410873413, + "step": 2330 + }, + { + "epoch": 32.37745740498034, + "grad_norm": 0.23262189328670502, + "learning_rate": 0.0006, + "loss": 3.759033203125, + "step": 2331 + }, + { + "epoch": 32.391437308868504, + "grad_norm": 0.22542893886566162, + "learning_rate": 0.0006, + "loss": 3.729198694229126, + "step": 2332 + }, + { + "epoch": 32.40541721275666, + "grad_norm": 0.22479060292243958, + "learning_rate": 0.0006, + "loss": 3.7298169136047363, + "step": 2333 + }, + { + "epoch": 32.419397116644824, + "grad_norm": 0.21571804583072662, + "learning_rate": 0.0006, + "loss": 3.699937343597412, + "step": 2334 + }, + { + "epoch": 32.43337702053299, + "grad_norm": 0.20804545283317566, + "learning_rate": 0.0006, + "loss": 3.7495696544647217, + "step": 2335 + }, + { + "epoch": 32.44735692442114, + "grad_norm": 0.22751706838607788, + "learning_rate": 0.0006, + "loss": 3.7369821071624756, + "step": 2336 + }, + { + "epoch": 32.46133682830931, + "grad_norm": 0.2326795756816864, + "learning_rate": 0.0006, + "loss": 3.7636334896087646, + "step": 2337 + }, + { + "epoch": 32.47531673219746, + "grad_norm": 0.19971159100532532, + "learning_rate": 0.0006, + "loss": 3.72151517868042, + "step": 2338 + }, + { + "epoch": 32.489296636085626, + "grad_norm": 0.21078036725521088, + "learning_rate": 0.0006, + "loss": 3.7050065994262695, + "step": 2339 + }, + { + "epoch": 32.50327653997379, + "grad_norm": 0.22198088467121124, + "learning_rate": 0.0006, + "loss": 3.7654409408569336, + "step": 2340 + }, + { + "epoch": 32.517256443861946, + "grad_norm": 0.20995207130908966, + "learning_rate": 0.0006, + "loss": 3.7516250610351562, + "step": 2341 + }, + { + "epoch": 32.53123634775011, + "grad_norm": 0.20757141709327698, + "learning_rate": 0.0006, + "loss": 3.7412633895874023, + "step": 2342 + }, + { + "epoch": 32.54521625163827, + "grad_norm": 0.20053881406784058, + "learning_rate": 0.0006, + "loss": 3.7477493286132812, + "step": 2343 + }, + { + "epoch": 32.55919615552643, + "grad_norm": 0.20223091542720795, + "learning_rate": 0.0006, + "loss": 3.7149064540863037, + "step": 2344 + }, + { + "epoch": 32.57317605941459, + "grad_norm": 0.20179468393325806, + "learning_rate": 0.0006, + "loss": 3.70635724067688, + "step": 2345 + }, + { + "epoch": 32.58715596330275, + "grad_norm": 0.19670480489730835, + "learning_rate": 0.0006, + "loss": 3.7276744842529297, + "step": 2346 + }, + { + "epoch": 32.60113586719091, + "grad_norm": 0.1992012858390808, + "learning_rate": 0.0006, + "loss": 3.7659356594085693, + "step": 2347 + }, + { + "epoch": 32.615115771079076, + "grad_norm": 0.20124201476573944, + "learning_rate": 0.0006, + "loss": 3.722212791442871, + "step": 2348 + }, + { + "epoch": 32.62909567496723, + "grad_norm": 0.21972708404064178, + "learning_rate": 0.0006, + "loss": 3.751830577850342, + "step": 2349 + }, + { + "epoch": 32.643075578855395, + "grad_norm": 0.20454947650432587, + "learning_rate": 0.0006, + "loss": 3.7196669578552246, + "step": 2350 + }, + { + "epoch": 32.65705548274356, + "grad_norm": 0.1783330887556076, + "learning_rate": 0.0006, + "loss": 3.721461772918701, + "step": 2351 + }, + { + "epoch": 32.671035386631715, + "grad_norm": 0.2027900367975235, + "learning_rate": 0.0006, + "loss": 3.753718614578247, + "step": 2352 + }, + { + "epoch": 32.68501529051988, + "grad_norm": 0.21232381463050842, + "learning_rate": 0.0006, + "loss": 3.732736349105835, + "step": 2353 + }, + { + "epoch": 32.69899519440804, + "grad_norm": 0.2214568555355072, + "learning_rate": 0.0006, + "loss": 3.7250165939331055, + "step": 2354 + }, + { + "epoch": 32.7129750982962, + "grad_norm": 0.2626485228538513, + "learning_rate": 0.0006, + "loss": 3.72263503074646, + "step": 2355 + }, + { + "epoch": 32.72695500218436, + "grad_norm": 0.30096277594566345, + "learning_rate": 0.0006, + "loss": 3.7599854469299316, + "step": 2356 + }, + { + "epoch": 32.74093490607252, + "grad_norm": 0.3374342620372772, + "learning_rate": 0.0006, + "loss": 3.7493844032287598, + "step": 2357 + }, + { + "epoch": 32.75491480996068, + "grad_norm": 0.3051377534866333, + "learning_rate": 0.0006, + "loss": 3.7515692710876465, + "step": 2358 + }, + { + "epoch": 32.768894713848844, + "grad_norm": 0.2130587249994278, + "learning_rate": 0.0006, + "loss": 3.751307964324951, + "step": 2359 + }, + { + "epoch": 32.782874617737, + "grad_norm": 0.25198230147361755, + "learning_rate": 0.0006, + "loss": 3.7500064373016357, + "step": 2360 + }, + { + "epoch": 32.796854521625164, + "grad_norm": 0.27613863348960876, + "learning_rate": 0.0006, + "loss": 3.7257039546966553, + "step": 2361 + }, + { + "epoch": 32.81083442551333, + "grad_norm": 0.23749367892742157, + "learning_rate": 0.0006, + "loss": 3.778343439102173, + "step": 2362 + }, + { + "epoch": 32.824814329401484, + "grad_norm": 0.2063702642917633, + "learning_rate": 0.0006, + "loss": 3.7493772506713867, + "step": 2363 + }, + { + "epoch": 32.83879423328965, + "grad_norm": 0.21169374883174896, + "learning_rate": 0.0006, + "loss": 3.722567081451416, + "step": 2364 + }, + { + "epoch": 32.8527741371778, + "grad_norm": 0.23291490972042084, + "learning_rate": 0.0006, + "loss": 3.7555532455444336, + "step": 2365 + }, + { + "epoch": 32.86675404106597, + "grad_norm": 0.21486155688762665, + "learning_rate": 0.0006, + "loss": 3.7401528358459473, + "step": 2366 + }, + { + "epoch": 32.88073394495413, + "grad_norm": 0.2296247035264969, + "learning_rate": 0.0006, + "loss": 3.7867965698242188, + "step": 2367 + }, + { + "epoch": 32.89471384884229, + "grad_norm": 0.2335108071565628, + "learning_rate": 0.0006, + "loss": 3.768036365509033, + "step": 2368 + }, + { + "epoch": 32.90869375273045, + "grad_norm": 0.23921863734722137, + "learning_rate": 0.0006, + "loss": 3.725252151489258, + "step": 2369 + }, + { + "epoch": 32.92267365661861, + "grad_norm": 0.20303526520729065, + "learning_rate": 0.0006, + "loss": 3.7806248664855957, + "step": 2370 + }, + { + "epoch": 32.93665356050677, + "grad_norm": 0.19293150305747986, + "learning_rate": 0.0006, + "loss": 3.759281873703003, + "step": 2371 + }, + { + "epoch": 32.95063346439493, + "grad_norm": 0.20609107613563538, + "learning_rate": 0.0006, + "loss": 3.764190196990967, + "step": 2372 + }, + { + "epoch": 32.964613368283096, + "grad_norm": 0.2014189213514328, + "learning_rate": 0.0006, + "loss": 3.7365214824676514, + "step": 2373 + }, + { + "epoch": 32.97859327217125, + "grad_norm": 0.22045451402664185, + "learning_rate": 0.0006, + "loss": 3.7435812950134277, + "step": 2374 + }, + { + "epoch": 32.992573176059416, + "grad_norm": 0.24228639900684357, + "learning_rate": 0.0006, + "loss": 3.751309394836426, + "step": 2375 + }, + { + "epoch": 33.0, + "grad_norm": 0.2645106613636017, + "learning_rate": 0.0006, + "loss": 3.7629928588867188, + "step": 2376 + }, + { + "epoch": 33.0, + "eval_loss": 4.026789665222168, + "eval_runtime": 44.9957, + "eval_samples_per_second": 54.272, + "eval_steps_per_second": 3.4, + "step": 2376 + }, + { + "epoch": 33.01397990388816, + "grad_norm": 0.21402551233768463, + "learning_rate": 0.0006, + "loss": 3.72019100189209, + "step": 2377 + }, + { + "epoch": 33.02795980777632, + "grad_norm": 0.23886585235595703, + "learning_rate": 0.0006, + "loss": 3.687084674835205, + "step": 2378 + }, + { + "epoch": 33.04193971166448, + "grad_norm": 0.29936572909355164, + "learning_rate": 0.0006, + "loss": 3.697310447692871, + "step": 2379 + }, + { + "epoch": 33.05591961555265, + "grad_norm": 0.30007585883140564, + "learning_rate": 0.0006, + "loss": 3.6913352012634277, + "step": 2380 + }, + { + "epoch": 33.0698995194408, + "grad_norm": 0.26594656705856323, + "learning_rate": 0.0006, + "loss": 3.740802526473999, + "step": 2381 + }, + { + "epoch": 33.083879423328966, + "grad_norm": 0.2658730447292328, + "learning_rate": 0.0006, + "loss": 3.692746162414551, + "step": 2382 + }, + { + "epoch": 33.09785932721712, + "grad_norm": 0.26755523681640625, + "learning_rate": 0.0006, + "loss": 3.7534420490264893, + "step": 2383 + }, + { + "epoch": 33.111839231105286, + "grad_norm": 0.23070940375328064, + "learning_rate": 0.0006, + "loss": 3.717876672744751, + "step": 2384 + }, + { + "epoch": 33.12581913499345, + "grad_norm": 0.2476235181093216, + "learning_rate": 0.0006, + "loss": 3.7072248458862305, + "step": 2385 + }, + { + "epoch": 33.139799038881605, + "grad_norm": 0.2454477846622467, + "learning_rate": 0.0006, + "loss": 3.729762077331543, + "step": 2386 + }, + { + "epoch": 33.15377894276977, + "grad_norm": 0.24090935289859772, + "learning_rate": 0.0006, + "loss": 3.721374988555908, + "step": 2387 + }, + { + "epoch": 33.16775884665793, + "grad_norm": 0.2440263032913208, + "learning_rate": 0.0006, + "loss": 3.730433464050293, + "step": 2388 + }, + { + "epoch": 33.18173875054609, + "grad_norm": 0.21699118614196777, + "learning_rate": 0.0006, + "loss": 3.724730968475342, + "step": 2389 + }, + { + "epoch": 33.19571865443425, + "grad_norm": 0.2302001267671585, + "learning_rate": 0.0006, + "loss": 3.69376277923584, + "step": 2390 + }, + { + "epoch": 33.20969855832241, + "grad_norm": 0.24707409739494324, + "learning_rate": 0.0006, + "loss": 3.705653667449951, + "step": 2391 + }, + { + "epoch": 33.22367846221057, + "grad_norm": 0.22896641492843628, + "learning_rate": 0.0006, + "loss": 3.747000217437744, + "step": 2392 + }, + { + "epoch": 33.237658366098735, + "grad_norm": 0.2278730720281601, + "learning_rate": 0.0006, + "loss": 3.733464241027832, + "step": 2393 + }, + { + "epoch": 33.25163826998689, + "grad_norm": 0.23909862339496613, + "learning_rate": 0.0006, + "loss": 3.733661413192749, + "step": 2394 + }, + { + "epoch": 33.265618173875055, + "grad_norm": 0.2349950075149536, + "learning_rate": 0.0006, + "loss": 3.7337965965270996, + "step": 2395 + }, + { + "epoch": 33.27959807776322, + "grad_norm": 0.22655968368053436, + "learning_rate": 0.0006, + "loss": 3.70503306388855, + "step": 2396 + }, + { + "epoch": 33.293577981651374, + "grad_norm": 0.22167043387889862, + "learning_rate": 0.0006, + "loss": 3.738797903060913, + "step": 2397 + }, + { + "epoch": 33.30755788553954, + "grad_norm": 0.2278883010149002, + "learning_rate": 0.0006, + "loss": 3.712550640106201, + "step": 2398 + }, + { + "epoch": 33.3215377894277, + "grad_norm": 0.2220565229654312, + "learning_rate": 0.0006, + "loss": 3.7278006076812744, + "step": 2399 + }, + { + "epoch": 33.33551769331586, + "grad_norm": 0.21888740360736847, + "learning_rate": 0.0006, + "loss": 3.72243595123291, + "step": 2400 + }, + { + "epoch": 33.34949759720402, + "grad_norm": 0.21587581932544708, + "learning_rate": 0.0006, + "loss": 3.7177581787109375, + "step": 2401 + }, + { + "epoch": 33.36347750109218, + "grad_norm": 0.1923578530550003, + "learning_rate": 0.0006, + "loss": 3.711294651031494, + "step": 2402 + }, + { + "epoch": 33.37745740498034, + "grad_norm": 0.1994934380054474, + "learning_rate": 0.0006, + "loss": 3.762061595916748, + "step": 2403 + }, + { + "epoch": 33.391437308868504, + "grad_norm": 0.20074427127838135, + "learning_rate": 0.0006, + "loss": 3.708559036254883, + "step": 2404 + }, + { + "epoch": 33.40541721275666, + "grad_norm": 0.21349482238292694, + "learning_rate": 0.0006, + "loss": 3.7089147567749023, + "step": 2405 + }, + { + "epoch": 33.419397116644824, + "grad_norm": 0.25523608922958374, + "learning_rate": 0.0006, + "loss": 3.7241058349609375, + "step": 2406 + }, + { + "epoch": 33.43337702053299, + "grad_norm": 0.27654796838760376, + "learning_rate": 0.0006, + "loss": 3.723618984222412, + "step": 2407 + }, + { + "epoch": 33.44735692442114, + "grad_norm": 0.2651479244232178, + "learning_rate": 0.0006, + "loss": 3.7367782592773438, + "step": 2408 + }, + { + "epoch": 33.46133682830931, + "grad_norm": 0.23403556644916534, + "learning_rate": 0.0006, + "loss": 3.7198312282562256, + "step": 2409 + }, + { + "epoch": 33.47531673219746, + "grad_norm": 0.20970726013183594, + "learning_rate": 0.0006, + "loss": 3.7088186740875244, + "step": 2410 + }, + { + "epoch": 33.489296636085626, + "grad_norm": 0.18532544374465942, + "learning_rate": 0.0006, + "loss": 3.7162208557128906, + "step": 2411 + }, + { + "epoch": 33.50327653997379, + "grad_norm": 0.19590279459953308, + "learning_rate": 0.0006, + "loss": 3.766357898712158, + "step": 2412 + }, + { + "epoch": 33.517256443861946, + "grad_norm": 0.203349307179451, + "learning_rate": 0.0006, + "loss": 3.732177257537842, + "step": 2413 + }, + { + "epoch": 33.53123634775011, + "grad_norm": 0.2015952616930008, + "learning_rate": 0.0006, + "loss": 3.741609573364258, + "step": 2414 + }, + { + "epoch": 33.54521625163827, + "grad_norm": 0.20024161040782928, + "learning_rate": 0.0006, + "loss": 3.6894431114196777, + "step": 2415 + }, + { + "epoch": 33.55919615552643, + "grad_norm": 0.20932617783546448, + "learning_rate": 0.0006, + "loss": 3.721979856491089, + "step": 2416 + }, + { + "epoch": 33.57317605941459, + "grad_norm": 0.22069773077964783, + "learning_rate": 0.0006, + "loss": 3.712203025817871, + "step": 2417 + }, + { + "epoch": 33.58715596330275, + "grad_norm": 0.22341343760490417, + "learning_rate": 0.0006, + "loss": 3.7469263076782227, + "step": 2418 + }, + { + "epoch": 33.60113586719091, + "grad_norm": 0.21758507192134857, + "learning_rate": 0.0006, + "loss": 3.721778392791748, + "step": 2419 + }, + { + "epoch": 33.615115771079076, + "grad_norm": 0.20480088889598846, + "learning_rate": 0.0006, + "loss": 3.743570327758789, + "step": 2420 + }, + { + "epoch": 33.62909567496723, + "grad_norm": 0.23068399727344513, + "learning_rate": 0.0006, + "loss": 3.7203001976013184, + "step": 2421 + }, + { + "epoch": 33.643075578855395, + "grad_norm": 0.2526263892650604, + "learning_rate": 0.0006, + "loss": 3.7336440086364746, + "step": 2422 + }, + { + "epoch": 33.65705548274356, + "grad_norm": 0.218627467751503, + "learning_rate": 0.0006, + "loss": 3.730762243270874, + "step": 2423 + }, + { + "epoch": 33.671035386631715, + "grad_norm": 0.21883417665958405, + "learning_rate": 0.0006, + "loss": 3.749356508255005, + "step": 2424 + }, + { + "epoch": 33.68501529051988, + "grad_norm": 0.22885626554489136, + "learning_rate": 0.0006, + "loss": 3.7426199913024902, + "step": 2425 + }, + { + "epoch": 33.69899519440804, + "grad_norm": 0.23709580302238464, + "learning_rate": 0.0006, + "loss": 3.691652774810791, + "step": 2426 + }, + { + "epoch": 33.7129750982962, + "grad_norm": 0.2258225381374359, + "learning_rate": 0.0006, + "loss": 3.7368886470794678, + "step": 2427 + }, + { + "epoch": 33.72695500218436, + "grad_norm": 0.1993306577205658, + "learning_rate": 0.0006, + "loss": 3.722733497619629, + "step": 2428 + }, + { + "epoch": 33.74093490607252, + "grad_norm": 0.20307473838329315, + "learning_rate": 0.0006, + "loss": 3.7507500648498535, + "step": 2429 + }, + { + "epoch": 33.75491480996068, + "grad_norm": 0.20076696574687958, + "learning_rate": 0.0006, + "loss": 3.6896910667419434, + "step": 2430 + }, + { + "epoch": 33.768894713848844, + "grad_norm": 0.21118830144405365, + "learning_rate": 0.0006, + "loss": 3.7176647186279297, + "step": 2431 + }, + { + "epoch": 33.782874617737, + "grad_norm": 0.21605782210826874, + "learning_rate": 0.0006, + "loss": 3.7423641681671143, + "step": 2432 + }, + { + "epoch": 33.796854521625164, + "grad_norm": 0.22233152389526367, + "learning_rate": 0.0006, + "loss": 3.7296109199523926, + "step": 2433 + }, + { + "epoch": 33.81083442551333, + "grad_norm": 0.2253616899251938, + "learning_rate": 0.0006, + "loss": 3.7095072269439697, + "step": 2434 + }, + { + "epoch": 33.824814329401484, + "grad_norm": 0.2105807662010193, + "learning_rate": 0.0006, + "loss": 3.760921001434326, + "step": 2435 + }, + { + "epoch": 33.83879423328965, + "grad_norm": 0.20413213968276978, + "learning_rate": 0.0006, + "loss": 3.7356553077697754, + "step": 2436 + }, + { + "epoch": 33.8527741371778, + "grad_norm": 0.19781213998794556, + "learning_rate": 0.0006, + "loss": 3.726787567138672, + "step": 2437 + }, + { + "epoch": 33.86675404106597, + "grad_norm": 0.199616938829422, + "learning_rate": 0.0006, + "loss": 3.7200419902801514, + "step": 2438 + }, + { + "epoch": 33.88073394495413, + "grad_norm": 0.19702564179897308, + "learning_rate": 0.0006, + "loss": 3.714287281036377, + "step": 2439 + }, + { + "epoch": 33.89471384884229, + "grad_norm": 0.19456833600997925, + "learning_rate": 0.0006, + "loss": 3.739231586456299, + "step": 2440 + }, + { + "epoch": 33.90869375273045, + "grad_norm": 0.1890697181224823, + "learning_rate": 0.0006, + "loss": 3.7088429927825928, + "step": 2441 + }, + { + "epoch": 33.92267365661861, + "grad_norm": 0.1845911741256714, + "learning_rate": 0.0006, + "loss": 3.760782241821289, + "step": 2442 + }, + { + "epoch": 33.93665356050677, + "grad_norm": 0.19045902788639069, + "learning_rate": 0.0006, + "loss": 3.736957311630249, + "step": 2443 + }, + { + "epoch": 33.95063346439493, + "grad_norm": 0.1934187412261963, + "learning_rate": 0.0006, + "loss": 3.756351947784424, + "step": 2444 + }, + { + "epoch": 33.964613368283096, + "grad_norm": 0.19774580001831055, + "learning_rate": 0.0006, + "loss": 3.7332229614257812, + "step": 2445 + }, + { + "epoch": 33.97859327217125, + "grad_norm": 0.20653048157691956, + "learning_rate": 0.0006, + "loss": 3.7112321853637695, + "step": 2446 + }, + { + "epoch": 33.992573176059416, + "grad_norm": 0.18618541955947876, + "learning_rate": 0.0006, + "loss": 3.735710620880127, + "step": 2447 + }, + { + "epoch": 34.0, + "grad_norm": 0.22846414148807526, + "learning_rate": 0.0006, + "loss": 3.739706039428711, + "step": 2448 + }, + { + "epoch": 34.0, + "eval_loss": 4.0099663734436035, + "eval_runtime": 45.2096, + "eval_samples_per_second": 54.015, + "eval_steps_per_second": 3.384, + "step": 2448 + }, + { + "epoch": 34.01397990388816, + "grad_norm": 0.20987462997436523, + "learning_rate": 0.0006, + "loss": 3.6798832416534424, + "step": 2449 + }, + { + "epoch": 34.02795980777632, + "grad_norm": 0.2230423390865326, + "learning_rate": 0.0006, + "loss": 3.7157368659973145, + "step": 2450 + }, + { + "epoch": 34.04193971166448, + "grad_norm": 0.24115242063999176, + "learning_rate": 0.0006, + "loss": 3.696037769317627, + "step": 2451 + }, + { + "epoch": 34.05591961555265, + "grad_norm": 0.24499665200710297, + "learning_rate": 0.0006, + "loss": 3.695420742034912, + "step": 2452 + }, + { + "epoch": 34.0698995194408, + "grad_norm": 0.23336757719516754, + "learning_rate": 0.0006, + "loss": 3.7252023220062256, + "step": 2453 + }, + { + "epoch": 34.083879423328966, + "grad_norm": 0.23716159164905548, + "learning_rate": 0.0006, + "loss": 3.714542865753174, + "step": 2454 + }, + { + "epoch": 34.09785932721712, + "grad_norm": 0.2305644154548645, + "learning_rate": 0.0006, + "loss": 3.6989386081695557, + "step": 2455 + }, + { + "epoch": 34.111839231105286, + "grad_norm": 0.2281671017408371, + "learning_rate": 0.0006, + "loss": 3.6952829360961914, + "step": 2456 + }, + { + "epoch": 34.12581913499345, + "grad_norm": 0.21031132340431213, + "learning_rate": 0.0006, + "loss": 3.7337589263916016, + "step": 2457 + }, + { + "epoch": 34.139799038881605, + "grad_norm": 0.2233671098947525, + "learning_rate": 0.0006, + "loss": 3.6923675537109375, + "step": 2458 + }, + { + "epoch": 34.15377894276977, + "grad_norm": 0.22766625881195068, + "learning_rate": 0.0006, + "loss": 3.70849609375, + "step": 2459 + }, + { + "epoch": 34.16775884665793, + "grad_norm": 0.22433766722679138, + "learning_rate": 0.0006, + "loss": 3.718319892883301, + "step": 2460 + }, + { + "epoch": 34.18173875054609, + "grad_norm": 0.20621491968631744, + "learning_rate": 0.0006, + "loss": 3.6874704360961914, + "step": 2461 + }, + { + "epoch": 34.19571865443425, + "grad_norm": 0.21353304386138916, + "learning_rate": 0.0006, + "loss": 3.663358688354492, + "step": 2462 + }, + { + "epoch": 34.20969855832241, + "grad_norm": 0.20652951300144196, + "learning_rate": 0.0006, + "loss": 3.718107223510742, + "step": 2463 + }, + { + "epoch": 34.22367846221057, + "grad_norm": 0.19780176877975464, + "learning_rate": 0.0006, + "loss": 3.7255396842956543, + "step": 2464 + }, + { + "epoch": 34.237658366098735, + "grad_norm": 0.20636138319969177, + "learning_rate": 0.0006, + "loss": 3.696850538253784, + "step": 2465 + }, + { + "epoch": 34.25163826998689, + "grad_norm": 0.23691460490226746, + "learning_rate": 0.0006, + "loss": 3.687997341156006, + "step": 2466 + }, + { + "epoch": 34.265618173875055, + "grad_norm": 0.2380511611700058, + "learning_rate": 0.0006, + "loss": 3.716610908508301, + "step": 2467 + }, + { + "epoch": 34.27959807776322, + "grad_norm": 0.21508945524692535, + "learning_rate": 0.0006, + "loss": 3.6993470191955566, + "step": 2468 + }, + { + "epoch": 34.293577981651374, + "grad_norm": 0.20441125333309174, + "learning_rate": 0.0006, + "loss": 3.7194275856018066, + "step": 2469 + }, + { + "epoch": 34.30755788553954, + "grad_norm": 0.19704242050647736, + "learning_rate": 0.0006, + "loss": 3.675929546356201, + "step": 2470 + }, + { + "epoch": 34.3215377894277, + "grad_norm": 0.1918456256389618, + "learning_rate": 0.0006, + "loss": 3.7189574241638184, + "step": 2471 + }, + { + "epoch": 34.33551769331586, + "grad_norm": 0.19687092304229736, + "learning_rate": 0.0006, + "loss": 3.725809335708618, + "step": 2472 + }, + { + "epoch": 34.34949759720402, + "grad_norm": 0.2048639953136444, + "learning_rate": 0.0006, + "loss": 3.7461748123168945, + "step": 2473 + }, + { + "epoch": 34.36347750109218, + "grad_norm": 0.21086618304252625, + "learning_rate": 0.0006, + "loss": 3.6849746704101562, + "step": 2474 + }, + { + "epoch": 34.37745740498034, + "grad_norm": 0.2172154039144516, + "learning_rate": 0.0006, + "loss": 3.7379322052001953, + "step": 2475 + }, + { + "epoch": 34.391437308868504, + "grad_norm": 0.22725504636764526, + "learning_rate": 0.0006, + "loss": 3.7341527938842773, + "step": 2476 + }, + { + "epoch": 34.40541721275666, + "grad_norm": 0.22309242188930511, + "learning_rate": 0.0006, + "loss": 3.724946975708008, + "step": 2477 + }, + { + "epoch": 34.419397116644824, + "grad_norm": 0.25252285599708557, + "learning_rate": 0.0006, + "loss": 3.710257053375244, + "step": 2478 + }, + { + "epoch": 34.43337702053299, + "grad_norm": 0.2549746334552765, + "learning_rate": 0.0006, + "loss": 3.7105040550231934, + "step": 2479 + }, + { + "epoch": 34.44735692442114, + "grad_norm": 0.22544030845165253, + "learning_rate": 0.0006, + "loss": 3.7340707778930664, + "step": 2480 + }, + { + "epoch": 34.46133682830931, + "grad_norm": 0.22275063395500183, + "learning_rate": 0.0006, + "loss": 3.7141473293304443, + "step": 2481 + }, + { + "epoch": 34.47531673219746, + "grad_norm": 0.25373485684394836, + "learning_rate": 0.0006, + "loss": 3.7014691829681396, + "step": 2482 + }, + { + "epoch": 34.489296636085626, + "grad_norm": 0.2573327124118805, + "learning_rate": 0.0006, + "loss": 3.682562828063965, + "step": 2483 + }, + { + "epoch": 34.50327653997379, + "grad_norm": 0.2452341616153717, + "learning_rate": 0.0006, + "loss": 3.757261276245117, + "step": 2484 + }, + { + "epoch": 34.517256443861946, + "grad_norm": 0.2477131187915802, + "learning_rate": 0.0006, + "loss": 3.7216877937316895, + "step": 2485 + }, + { + "epoch": 34.53123634775011, + "grad_norm": 0.24740098416805267, + "learning_rate": 0.0006, + "loss": 3.705704927444458, + "step": 2486 + }, + { + "epoch": 34.54521625163827, + "grad_norm": 0.27306219935417175, + "learning_rate": 0.0006, + "loss": 3.7014641761779785, + "step": 2487 + }, + { + "epoch": 34.55919615552643, + "grad_norm": 0.26376286149024963, + "learning_rate": 0.0006, + "loss": 3.686056137084961, + "step": 2488 + }, + { + "epoch": 34.57317605941459, + "grad_norm": 0.2796899378299713, + "learning_rate": 0.0006, + "loss": 3.7171077728271484, + "step": 2489 + }, + { + "epoch": 34.58715596330275, + "grad_norm": 0.24279902875423431, + "learning_rate": 0.0006, + "loss": 3.7448348999023438, + "step": 2490 + }, + { + "epoch": 34.60113586719091, + "grad_norm": 0.22772833704948425, + "learning_rate": 0.0006, + "loss": 3.7028117179870605, + "step": 2491 + }, + { + "epoch": 34.615115771079076, + "grad_norm": 0.22157910466194153, + "learning_rate": 0.0006, + "loss": 3.750023603439331, + "step": 2492 + }, + { + "epoch": 34.62909567496723, + "grad_norm": 0.24342703819274902, + "learning_rate": 0.0006, + "loss": 3.7181010246276855, + "step": 2493 + }, + { + "epoch": 34.643075578855395, + "grad_norm": 0.2554340362548828, + "learning_rate": 0.0006, + "loss": 3.6994080543518066, + "step": 2494 + }, + { + "epoch": 34.65705548274356, + "grad_norm": 0.21296930313110352, + "learning_rate": 0.0006, + "loss": 3.7534523010253906, + "step": 2495 + }, + { + "epoch": 34.671035386631715, + "grad_norm": 0.19117674231529236, + "learning_rate": 0.0006, + "loss": 3.7267889976501465, + "step": 2496 + }, + { + "epoch": 34.68501529051988, + "grad_norm": 0.2306399643421173, + "learning_rate": 0.0006, + "loss": 3.723212242126465, + "step": 2497 + }, + { + "epoch": 34.69899519440804, + "grad_norm": 0.23063263297080994, + "learning_rate": 0.0006, + "loss": 3.730070114135742, + "step": 2498 + }, + { + "epoch": 34.7129750982962, + "grad_norm": 0.19422881305217743, + "learning_rate": 0.0006, + "loss": 3.694833755493164, + "step": 2499 + }, + { + "epoch": 34.72695500218436, + "grad_norm": 0.20246362686157227, + "learning_rate": 0.0006, + "loss": 3.71140718460083, + "step": 2500 + }, + { + "epoch": 34.74093490607252, + "grad_norm": 0.1942741572856903, + "learning_rate": 0.0006, + "loss": 3.7530534267425537, + "step": 2501 + }, + { + "epoch": 34.75491480996068, + "grad_norm": 0.19686029851436615, + "learning_rate": 0.0006, + "loss": 3.7059555053710938, + "step": 2502 + }, + { + "epoch": 34.768894713848844, + "grad_norm": 0.20120355486869812, + "learning_rate": 0.0006, + "loss": 3.7271084785461426, + "step": 2503 + }, + { + "epoch": 34.782874617737, + "grad_norm": 0.20880399644374847, + "learning_rate": 0.0006, + "loss": 3.712137460708618, + "step": 2504 + }, + { + "epoch": 34.796854521625164, + "grad_norm": 0.22139988839626312, + "learning_rate": 0.0006, + "loss": 3.731245517730713, + "step": 2505 + }, + { + "epoch": 34.81083442551333, + "grad_norm": 0.22756224870681763, + "learning_rate": 0.0006, + "loss": 3.708987236022949, + "step": 2506 + }, + { + "epoch": 34.824814329401484, + "grad_norm": 0.22332409024238586, + "learning_rate": 0.0006, + "loss": 3.7365565299987793, + "step": 2507 + }, + { + "epoch": 34.83879423328965, + "grad_norm": 0.19599054753780365, + "learning_rate": 0.0006, + "loss": 3.7266454696655273, + "step": 2508 + }, + { + "epoch": 34.8527741371778, + "grad_norm": 0.19843019545078278, + "learning_rate": 0.0006, + "loss": 3.7225422859191895, + "step": 2509 + }, + { + "epoch": 34.86675404106597, + "grad_norm": 0.20147928595542908, + "learning_rate": 0.0006, + "loss": 3.7282514572143555, + "step": 2510 + }, + { + "epoch": 34.88073394495413, + "grad_norm": 0.19489876925945282, + "learning_rate": 0.0006, + "loss": 3.694852113723755, + "step": 2511 + }, + { + "epoch": 34.89471384884229, + "grad_norm": 0.20680078864097595, + "learning_rate": 0.0006, + "loss": 3.74678635597229, + "step": 2512 + }, + { + "epoch": 34.90869375273045, + "grad_norm": 0.2233233004808426, + "learning_rate": 0.0006, + "loss": 3.726475238800049, + "step": 2513 + }, + { + "epoch": 34.92267365661861, + "grad_norm": 0.20702993869781494, + "learning_rate": 0.0006, + "loss": 3.6946351528167725, + "step": 2514 + }, + { + "epoch": 34.93665356050677, + "grad_norm": 0.2081725299358368, + "learning_rate": 0.0006, + "loss": 3.7101621627807617, + "step": 2515 + }, + { + "epoch": 34.95063346439493, + "grad_norm": 0.20551837980747223, + "learning_rate": 0.0006, + "loss": 3.7060177326202393, + "step": 2516 + }, + { + "epoch": 34.964613368283096, + "grad_norm": 0.2106839418411255, + "learning_rate": 0.0006, + "loss": 3.7460474967956543, + "step": 2517 + }, + { + "epoch": 34.97859327217125, + "grad_norm": 0.18512766063213348, + "learning_rate": 0.0006, + "loss": 3.719280242919922, + "step": 2518 + }, + { + "epoch": 34.992573176059416, + "grad_norm": 0.1802142709493637, + "learning_rate": 0.0006, + "loss": 3.698255777359009, + "step": 2519 + }, + { + "epoch": 35.0, + "grad_norm": 0.2028084248304367, + "learning_rate": 0.0006, + "loss": 3.711136817932129, + "step": 2520 + }, + { + "epoch": 35.0, + "eval_loss": 4.006688117980957, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 2520 + }, + { + "epoch": 35.01397990388816, + "grad_norm": 0.1973012387752533, + "learning_rate": 0.0006, + "loss": 3.7108325958251953, + "step": 2521 + }, + { + "epoch": 35.02795980777632, + "grad_norm": 0.23763646185398102, + "learning_rate": 0.0006, + "loss": 3.675785541534424, + "step": 2522 + }, + { + "epoch": 35.04193971166448, + "grad_norm": 0.24403199553489685, + "learning_rate": 0.0006, + "loss": 3.7034249305725098, + "step": 2523 + }, + { + "epoch": 35.05591961555265, + "grad_norm": 0.19050131738185883, + "learning_rate": 0.0006, + "loss": 3.6984221935272217, + "step": 2524 + }, + { + "epoch": 35.0698995194408, + "grad_norm": 0.21389710903167725, + "learning_rate": 0.0006, + "loss": 3.6641085147857666, + "step": 2525 + }, + { + "epoch": 35.083879423328966, + "grad_norm": 0.23103152215480804, + "learning_rate": 0.0006, + "loss": 3.722912311553955, + "step": 2526 + }, + { + "epoch": 35.09785932721712, + "grad_norm": 0.2197326272726059, + "learning_rate": 0.0006, + "loss": 3.696568727493286, + "step": 2527 + }, + { + "epoch": 35.111839231105286, + "grad_norm": 0.20877327024936676, + "learning_rate": 0.0006, + "loss": 3.666700601577759, + "step": 2528 + }, + { + "epoch": 35.12581913499345, + "grad_norm": 0.20904001593589783, + "learning_rate": 0.0006, + "loss": 3.6896979808807373, + "step": 2529 + }, + { + "epoch": 35.139799038881605, + "grad_norm": 0.1947423666715622, + "learning_rate": 0.0006, + "loss": 3.6647095680236816, + "step": 2530 + }, + { + "epoch": 35.15377894276977, + "grad_norm": 0.2134019434452057, + "learning_rate": 0.0006, + "loss": 3.696993589401245, + "step": 2531 + }, + { + "epoch": 35.16775884665793, + "grad_norm": 0.2299254685640335, + "learning_rate": 0.0006, + "loss": 3.7067925930023193, + "step": 2532 + }, + { + "epoch": 35.18173875054609, + "grad_norm": 0.219585582613945, + "learning_rate": 0.0006, + "loss": 3.6680960655212402, + "step": 2533 + }, + { + "epoch": 35.19571865443425, + "grad_norm": 0.2146025449037552, + "learning_rate": 0.0006, + "loss": 3.7185046672821045, + "step": 2534 + }, + { + "epoch": 35.20969855832241, + "grad_norm": 0.22748060524463654, + "learning_rate": 0.0006, + "loss": 3.659202814102173, + "step": 2535 + }, + { + "epoch": 35.22367846221057, + "grad_norm": 0.22272273898124695, + "learning_rate": 0.0006, + "loss": 3.7002370357513428, + "step": 2536 + }, + { + "epoch": 35.237658366098735, + "grad_norm": 0.23827379941940308, + "learning_rate": 0.0006, + "loss": 3.714664936065674, + "step": 2537 + }, + { + "epoch": 35.25163826998689, + "grad_norm": 0.2328156679868698, + "learning_rate": 0.0006, + "loss": 3.665173292160034, + "step": 2538 + }, + { + "epoch": 35.265618173875055, + "grad_norm": 0.2573475241661072, + "learning_rate": 0.0006, + "loss": 3.7073206901550293, + "step": 2539 + }, + { + "epoch": 35.27959807776322, + "grad_norm": 0.2411472052335739, + "learning_rate": 0.0006, + "loss": 3.697751045227051, + "step": 2540 + }, + { + "epoch": 35.293577981651374, + "grad_norm": 0.22836148738861084, + "learning_rate": 0.0006, + "loss": 3.7219419479370117, + "step": 2541 + }, + { + "epoch": 35.30755788553954, + "grad_norm": 0.2225421667098999, + "learning_rate": 0.0006, + "loss": 3.69516658782959, + "step": 2542 + }, + { + "epoch": 35.3215377894277, + "grad_norm": 0.2180362343788147, + "learning_rate": 0.0006, + "loss": 3.714043378829956, + "step": 2543 + }, + { + "epoch": 35.33551769331586, + "grad_norm": 0.23638299107551575, + "learning_rate": 0.0006, + "loss": 3.7449421882629395, + "step": 2544 + }, + { + "epoch": 35.34949759720402, + "grad_norm": 0.21792089939117432, + "learning_rate": 0.0006, + "loss": 3.7029948234558105, + "step": 2545 + }, + { + "epoch": 35.36347750109218, + "grad_norm": 0.23266112804412842, + "learning_rate": 0.0006, + "loss": 3.683509111404419, + "step": 2546 + }, + { + "epoch": 35.37745740498034, + "grad_norm": 0.24203059077262878, + "learning_rate": 0.0006, + "loss": 3.68572998046875, + "step": 2547 + }, + { + "epoch": 35.391437308868504, + "grad_norm": 0.2543564438819885, + "learning_rate": 0.0006, + "loss": 3.6902432441711426, + "step": 2548 + }, + { + "epoch": 35.40541721275666, + "grad_norm": 0.22990189492702484, + "learning_rate": 0.0006, + "loss": 3.708810329437256, + "step": 2549 + }, + { + "epoch": 35.419397116644824, + "grad_norm": 0.2594352662563324, + "learning_rate": 0.0006, + "loss": 3.7312886714935303, + "step": 2550 + }, + { + "epoch": 35.43337702053299, + "grad_norm": 0.27525269985198975, + "learning_rate": 0.0006, + "loss": 3.6963448524475098, + "step": 2551 + }, + { + "epoch": 35.44735692442114, + "grad_norm": 0.2436525970697403, + "learning_rate": 0.0006, + "loss": 3.6733713150024414, + "step": 2552 + }, + { + "epoch": 35.46133682830931, + "grad_norm": 0.25500908493995667, + "learning_rate": 0.0006, + "loss": 3.7104358673095703, + "step": 2553 + }, + { + "epoch": 35.47531673219746, + "grad_norm": 0.23504602909088135, + "learning_rate": 0.0006, + "loss": 3.7052388191223145, + "step": 2554 + }, + { + "epoch": 35.489296636085626, + "grad_norm": 0.2277563363313675, + "learning_rate": 0.0006, + "loss": 3.708714008331299, + "step": 2555 + }, + { + "epoch": 35.50327653997379, + "grad_norm": 0.25224778056144714, + "learning_rate": 0.0006, + "loss": 3.699676990509033, + "step": 2556 + }, + { + "epoch": 35.517256443861946, + "grad_norm": 0.28308045864105225, + "learning_rate": 0.0006, + "loss": 3.7005362510681152, + "step": 2557 + }, + { + "epoch": 35.53123634775011, + "grad_norm": 0.25858840346336365, + "learning_rate": 0.0006, + "loss": 3.689999580383301, + "step": 2558 + }, + { + "epoch": 35.54521625163827, + "grad_norm": 0.23497405648231506, + "learning_rate": 0.0006, + "loss": 3.695793867111206, + "step": 2559 + }, + { + "epoch": 35.55919615552643, + "grad_norm": 0.22375957667827606, + "learning_rate": 0.0006, + "loss": 3.7011494636535645, + "step": 2560 + }, + { + "epoch": 35.57317605941459, + "grad_norm": 0.21056118607521057, + "learning_rate": 0.0006, + "loss": 3.722623586654663, + "step": 2561 + }, + { + "epoch": 35.58715596330275, + "grad_norm": 0.22504374384880066, + "learning_rate": 0.0006, + "loss": 3.7211966514587402, + "step": 2562 + }, + { + "epoch": 35.60113586719091, + "grad_norm": 0.22349773347377777, + "learning_rate": 0.0006, + "loss": 3.6901848316192627, + "step": 2563 + }, + { + "epoch": 35.615115771079076, + "grad_norm": 0.219499409198761, + "learning_rate": 0.0006, + "loss": 3.709026575088501, + "step": 2564 + }, + { + "epoch": 35.62909567496723, + "grad_norm": 0.20461080968379974, + "learning_rate": 0.0006, + "loss": 3.72456693649292, + "step": 2565 + }, + { + "epoch": 35.643075578855395, + "grad_norm": 0.2083883285522461, + "learning_rate": 0.0006, + "loss": 3.6845502853393555, + "step": 2566 + }, + { + "epoch": 35.65705548274356, + "grad_norm": 0.19694562256336212, + "learning_rate": 0.0006, + "loss": 3.668515682220459, + "step": 2567 + }, + { + "epoch": 35.671035386631715, + "grad_norm": 0.2107984870672226, + "learning_rate": 0.0006, + "loss": 3.700723648071289, + "step": 2568 + }, + { + "epoch": 35.68501529051988, + "grad_norm": 0.18878720700740814, + "learning_rate": 0.0006, + "loss": 3.689150333404541, + "step": 2569 + }, + { + "epoch": 35.69899519440804, + "grad_norm": 0.20058824121952057, + "learning_rate": 0.0006, + "loss": 3.7048301696777344, + "step": 2570 + }, + { + "epoch": 35.7129750982962, + "grad_norm": 0.2200566679239273, + "learning_rate": 0.0006, + "loss": 3.6944580078125, + "step": 2571 + }, + { + "epoch": 35.72695500218436, + "grad_norm": 0.22200417518615723, + "learning_rate": 0.0006, + "loss": 3.715193510055542, + "step": 2572 + }, + { + "epoch": 35.74093490607252, + "grad_norm": 0.21011404693126678, + "learning_rate": 0.0006, + "loss": 3.737387180328369, + "step": 2573 + }, + { + "epoch": 35.75491480996068, + "grad_norm": 0.21139226853847504, + "learning_rate": 0.0006, + "loss": 3.695596694946289, + "step": 2574 + }, + { + "epoch": 35.768894713848844, + "grad_norm": 0.2112506479024887, + "learning_rate": 0.0006, + "loss": 3.7264227867126465, + "step": 2575 + }, + { + "epoch": 35.782874617737, + "grad_norm": 0.21528391540050507, + "learning_rate": 0.0006, + "loss": 3.7089385986328125, + "step": 2576 + }, + { + "epoch": 35.796854521625164, + "grad_norm": 0.2127804309129715, + "learning_rate": 0.0006, + "loss": 3.6995301246643066, + "step": 2577 + }, + { + "epoch": 35.81083442551333, + "grad_norm": 0.19839410483837128, + "learning_rate": 0.0006, + "loss": 3.7233223915100098, + "step": 2578 + }, + { + "epoch": 35.824814329401484, + "grad_norm": 0.19098423421382904, + "learning_rate": 0.0006, + "loss": 3.7108311653137207, + "step": 2579 + }, + { + "epoch": 35.83879423328965, + "grad_norm": 0.18697232007980347, + "learning_rate": 0.0006, + "loss": 3.725001811981201, + "step": 2580 + }, + { + "epoch": 35.8527741371778, + "grad_norm": 0.21051937341690063, + "learning_rate": 0.0006, + "loss": 3.7310993671417236, + "step": 2581 + }, + { + "epoch": 35.86675404106597, + "grad_norm": 0.2239079475402832, + "learning_rate": 0.0006, + "loss": 3.739056348800659, + "step": 2582 + }, + { + "epoch": 35.88073394495413, + "grad_norm": 0.2581230700016022, + "learning_rate": 0.0006, + "loss": 3.697061061859131, + "step": 2583 + }, + { + "epoch": 35.89471384884229, + "grad_norm": 0.25388655066490173, + "learning_rate": 0.0006, + "loss": 3.7173471450805664, + "step": 2584 + }, + { + "epoch": 35.90869375273045, + "grad_norm": 0.2557796537876129, + "learning_rate": 0.0006, + "loss": 3.7121596336364746, + "step": 2585 + }, + { + "epoch": 35.92267365661861, + "grad_norm": 0.21846474707126617, + "learning_rate": 0.0006, + "loss": 3.7342100143432617, + "step": 2586 + }, + { + "epoch": 35.93665356050677, + "grad_norm": 0.19810006022453308, + "learning_rate": 0.0006, + "loss": 3.7266340255737305, + "step": 2587 + }, + { + "epoch": 35.95063346439493, + "grad_norm": 0.28599923849105835, + "learning_rate": 0.0006, + "loss": 3.711876392364502, + "step": 2588 + }, + { + "epoch": 35.964613368283096, + "grad_norm": 0.3380447030067444, + "learning_rate": 0.0006, + "loss": 3.7611794471740723, + "step": 2589 + }, + { + "epoch": 35.97859327217125, + "grad_norm": 0.2946915328502655, + "learning_rate": 0.0006, + "loss": 3.7659358978271484, + "step": 2590 + }, + { + "epoch": 35.992573176059416, + "grad_norm": 0.2310202419757843, + "learning_rate": 0.0006, + "loss": 3.7124969959259033, + "step": 2591 + }, + { + "epoch": 36.0, + "grad_norm": 0.22294320166110992, + "learning_rate": 0.0006, + "loss": 3.725590705871582, + "step": 2592 + }, + { + "epoch": 36.0, + "eval_loss": 4.015472412109375, + "eval_runtime": 44.4903, + "eval_samples_per_second": 54.888, + "eval_steps_per_second": 3.439, + "step": 2592 + }, + { + "epoch": 36.01397990388816, + "grad_norm": 0.2442479431629181, + "learning_rate": 0.0006, + "loss": 3.6670360565185547, + "step": 2593 + }, + { + "epoch": 36.02795980777632, + "grad_norm": 0.27702075242996216, + "learning_rate": 0.0006, + "loss": 3.685915946960449, + "step": 2594 + }, + { + "epoch": 36.04193971166448, + "grad_norm": 0.22300852835178375, + "learning_rate": 0.0006, + "loss": 3.6993556022644043, + "step": 2595 + }, + { + "epoch": 36.05591961555265, + "grad_norm": 0.22456000745296478, + "learning_rate": 0.0006, + "loss": 3.6937754154205322, + "step": 2596 + }, + { + "epoch": 36.0698995194408, + "grad_norm": 0.23157717287540436, + "learning_rate": 0.0006, + "loss": 3.6573898792266846, + "step": 2597 + }, + { + "epoch": 36.083879423328966, + "grad_norm": 0.23002618551254272, + "learning_rate": 0.0006, + "loss": 3.6565046310424805, + "step": 2598 + }, + { + "epoch": 36.09785932721712, + "grad_norm": 0.223054900765419, + "learning_rate": 0.0006, + "loss": 3.6964457035064697, + "step": 2599 + }, + { + "epoch": 36.111839231105286, + "grad_norm": 0.21883328258991241, + "learning_rate": 0.0006, + "loss": 3.674757480621338, + "step": 2600 + }, + { + "epoch": 36.12581913499345, + "grad_norm": 0.21729037165641785, + "learning_rate": 0.0006, + "loss": 3.684323310852051, + "step": 2601 + }, + { + "epoch": 36.139799038881605, + "grad_norm": 0.21299415826797485, + "learning_rate": 0.0006, + "loss": 3.6554017066955566, + "step": 2602 + }, + { + "epoch": 36.15377894276977, + "grad_norm": 0.22723016142845154, + "learning_rate": 0.0006, + "loss": 3.666767120361328, + "step": 2603 + }, + { + "epoch": 36.16775884665793, + "grad_norm": 0.23663052916526794, + "learning_rate": 0.0006, + "loss": 3.692861557006836, + "step": 2604 + }, + { + "epoch": 36.18173875054609, + "grad_norm": 0.23544131219387054, + "learning_rate": 0.0006, + "loss": 3.6648998260498047, + "step": 2605 + }, + { + "epoch": 36.19571865443425, + "grad_norm": 0.24303849041461945, + "learning_rate": 0.0006, + "loss": 3.66096568107605, + "step": 2606 + }, + { + "epoch": 36.20969855832241, + "grad_norm": 0.23385047912597656, + "learning_rate": 0.0006, + "loss": 3.6636829376220703, + "step": 2607 + }, + { + "epoch": 36.22367846221057, + "grad_norm": 0.21988974511623383, + "learning_rate": 0.0006, + "loss": 3.685072660446167, + "step": 2608 + }, + { + "epoch": 36.237658366098735, + "grad_norm": 0.2365395724773407, + "learning_rate": 0.0006, + "loss": 3.7292234897613525, + "step": 2609 + }, + { + "epoch": 36.25163826998689, + "grad_norm": 0.23791152238845825, + "learning_rate": 0.0006, + "loss": 3.6870808601379395, + "step": 2610 + }, + { + "epoch": 36.265618173875055, + "grad_norm": 0.22954145073890686, + "learning_rate": 0.0006, + "loss": 3.705406904220581, + "step": 2611 + }, + { + "epoch": 36.27959807776322, + "grad_norm": 0.22748000919818878, + "learning_rate": 0.0006, + "loss": 3.680781841278076, + "step": 2612 + }, + { + "epoch": 36.293577981651374, + "grad_norm": 0.21827450394630432, + "learning_rate": 0.0006, + "loss": 3.6794490814208984, + "step": 2613 + }, + { + "epoch": 36.30755788553954, + "grad_norm": 0.2406153380870819, + "learning_rate": 0.0006, + "loss": 3.690225124359131, + "step": 2614 + }, + { + "epoch": 36.3215377894277, + "grad_norm": 0.2406231164932251, + "learning_rate": 0.0006, + "loss": 3.665867805480957, + "step": 2615 + }, + { + "epoch": 36.33551769331586, + "grad_norm": 0.20494551956653595, + "learning_rate": 0.0006, + "loss": 3.701937198638916, + "step": 2616 + }, + { + "epoch": 36.34949759720402, + "grad_norm": 0.1995103359222412, + "learning_rate": 0.0006, + "loss": 3.702033758163452, + "step": 2617 + }, + { + "epoch": 36.36347750109218, + "grad_norm": 0.1902446299791336, + "learning_rate": 0.0006, + "loss": 3.6809959411621094, + "step": 2618 + }, + { + "epoch": 36.37745740498034, + "grad_norm": 0.1810801923274994, + "learning_rate": 0.0006, + "loss": 3.689852714538574, + "step": 2619 + }, + { + "epoch": 36.391437308868504, + "grad_norm": 0.1882476955652237, + "learning_rate": 0.0006, + "loss": 3.710911273956299, + "step": 2620 + }, + { + "epoch": 36.40541721275666, + "grad_norm": 0.1912514567375183, + "learning_rate": 0.0006, + "loss": 3.7054009437561035, + "step": 2621 + }, + { + "epoch": 36.419397116644824, + "grad_norm": 0.19080901145935059, + "learning_rate": 0.0006, + "loss": 3.681145191192627, + "step": 2622 + }, + { + "epoch": 36.43337702053299, + "grad_norm": 0.193472221493721, + "learning_rate": 0.0006, + "loss": 3.661360740661621, + "step": 2623 + }, + { + "epoch": 36.44735692442114, + "grad_norm": 0.2034357339143753, + "learning_rate": 0.0006, + "loss": 3.706930160522461, + "step": 2624 + }, + { + "epoch": 36.46133682830931, + "grad_norm": 0.19924600422382355, + "learning_rate": 0.0006, + "loss": 3.6903364658355713, + "step": 2625 + }, + { + "epoch": 36.47531673219746, + "grad_norm": 0.20556052029132843, + "learning_rate": 0.0006, + "loss": 3.6974234580993652, + "step": 2626 + }, + { + "epoch": 36.489296636085626, + "grad_norm": 0.19628804922103882, + "learning_rate": 0.0006, + "loss": 3.6947717666625977, + "step": 2627 + }, + { + "epoch": 36.50327653997379, + "grad_norm": 0.18071836233139038, + "learning_rate": 0.0006, + "loss": 3.717582941055298, + "step": 2628 + }, + { + "epoch": 36.517256443861946, + "grad_norm": 0.20531553030014038, + "learning_rate": 0.0006, + "loss": 3.680610179901123, + "step": 2629 + }, + { + "epoch": 36.53123634775011, + "grad_norm": 0.23789429664611816, + "learning_rate": 0.0006, + "loss": 3.711493968963623, + "step": 2630 + }, + { + "epoch": 36.54521625163827, + "grad_norm": 0.23027348518371582, + "learning_rate": 0.0006, + "loss": 3.6827993392944336, + "step": 2631 + }, + { + "epoch": 36.55919615552643, + "grad_norm": 0.21941570937633514, + "learning_rate": 0.0006, + "loss": 3.682286262512207, + "step": 2632 + }, + { + "epoch": 36.57317605941459, + "grad_norm": 0.21213553845882416, + "learning_rate": 0.0006, + "loss": 3.6828765869140625, + "step": 2633 + }, + { + "epoch": 36.58715596330275, + "grad_norm": 0.21929772198200226, + "learning_rate": 0.0006, + "loss": 3.697030544281006, + "step": 2634 + }, + { + "epoch": 36.60113586719091, + "grad_norm": 0.2101750522851944, + "learning_rate": 0.0006, + "loss": 3.723201274871826, + "step": 2635 + }, + { + "epoch": 36.615115771079076, + "grad_norm": 0.19014132022857666, + "learning_rate": 0.0006, + "loss": 3.6989338397979736, + "step": 2636 + }, + { + "epoch": 36.62909567496723, + "grad_norm": 0.21566815674304962, + "learning_rate": 0.0006, + "loss": 3.6968226432800293, + "step": 2637 + }, + { + "epoch": 36.643075578855395, + "grad_norm": 0.20500224828720093, + "learning_rate": 0.0006, + "loss": 3.689640522003174, + "step": 2638 + }, + { + "epoch": 36.65705548274356, + "grad_norm": 0.210358127951622, + "learning_rate": 0.0006, + "loss": 3.6996328830718994, + "step": 2639 + }, + { + "epoch": 36.671035386631715, + "grad_norm": 0.2061213105916977, + "learning_rate": 0.0006, + "loss": 3.7019221782684326, + "step": 2640 + }, + { + "epoch": 36.68501529051988, + "grad_norm": 0.21494871377944946, + "learning_rate": 0.0006, + "loss": 3.6634578704833984, + "step": 2641 + }, + { + "epoch": 36.69899519440804, + "grad_norm": 0.19586549699306488, + "learning_rate": 0.0006, + "loss": 3.708131790161133, + "step": 2642 + }, + { + "epoch": 36.7129750982962, + "grad_norm": 0.22805732488632202, + "learning_rate": 0.0006, + "loss": 3.6977362632751465, + "step": 2643 + }, + { + "epoch": 36.72695500218436, + "grad_norm": 0.28397148847579956, + "learning_rate": 0.0006, + "loss": 3.6847963333129883, + "step": 2644 + }, + { + "epoch": 36.74093490607252, + "grad_norm": 0.28333187103271484, + "learning_rate": 0.0006, + "loss": 3.734257459640503, + "step": 2645 + }, + { + "epoch": 36.75491480996068, + "grad_norm": 0.22314953804016113, + "learning_rate": 0.0006, + "loss": 3.6871445178985596, + "step": 2646 + }, + { + "epoch": 36.768894713848844, + "grad_norm": 0.20580267906188965, + "learning_rate": 0.0006, + "loss": 3.692736864089966, + "step": 2647 + }, + { + "epoch": 36.782874617737, + "grad_norm": 0.22695036232471466, + "learning_rate": 0.0006, + "loss": 3.697096824645996, + "step": 2648 + }, + { + "epoch": 36.796854521625164, + "grad_norm": 0.25916165113449097, + "learning_rate": 0.0006, + "loss": 3.7099573612213135, + "step": 2649 + }, + { + "epoch": 36.81083442551333, + "grad_norm": 0.26024341583251953, + "learning_rate": 0.0006, + "loss": 3.7161359786987305, + "step": 2650 + }, + { + "epoch": 36.824814329401484, + "grad_norm": 0.2340802699327469, + "learning_rate": 0.0006, + "loss": 3.708864688873291, + "step": 2651 + }, + { + "epoch": 36.83879423328965, + "grad_norm": 0.23312288522720337, + "learning_rate": 0.0006, + "loss": 3.7351365089416504, + "step": 2652 + }, + { + "epoch": 36.8527741371778, + "grad_norm": 0.22953253984451294, + "learning_rate": 0.0006, + "loss": 3.735302209854126, + "step": 2653 + }, + { + "epoch": 36.86675404106597, + "grad_norm": 0.21928828954696655, + "learning_rate": 0.0006, + "loss": 3.72445011138916, + "step": 2654 + }, + { + "epoch": 36.88073394495413, + "grad_norm": 0.22865602374076843, + "learning_rate": 0.0006, + "loss": 3.714867115020752, + "step": 2655 + }, + { + "epoch": 36.89471384884229, + "grad_norm": 0.23255643248558044, + "learning_rate": 0.0006, + "loss": 3.695101261138916, + "step": 2656 + }, + { + "epoch": 36.90869375273045, + "grad_norm": 0.2491452544927597, + "learning_rate": 0.0006, + "loss": 3.70692777633667, + "step": 2657 + }, + { + "epoch": 36.92267365661861, + "grad_norm": 0.27367597818374634, + "learning_rate": 0.0006, + "loss": 3.6906654834747314, + "step": 2658 + }, + { + "epoch": 36.93665356050677, + "grad_norm": 0.26728564500808716, + "learning_rate": 0.0006, + "loss": 3.7092056274414062, + "step": 2659 + }, + { + "epoch": 36.95063346439493, + "grad_norm": 0.207070454955101, + "learning_rate": 0.0006, + "loss": 3.7152137756347656, + "step": 2660 + }, + { + "epoch": 36.964613368283096, + "grad_norm": 0.21671561896800995, + "learning_rate": 0.0006, + "loss": 3.7130112648010254, + "step": 2661 + }, + { + "epoch": 36.97859327217125, + "grad_norm": 0.2140914648771286, + "learning_rate": 0.0006, + "loss": 3.7286999225616455, + "step": 2662 + }, + { + "epoch": 36.992573176059416, + "grad_norm": 0.21324342489242554, + "learning_rate": 0.0006, + "loss": 3.6828715801239014, + "step": 2663 + }, + { + "epoch": 37.0, + "grad_norm": 0.22366146743297577, + "learning_rate": 0.0006, + "loss": 3.69199800491333, + "step": 2664 + }, + { + "epoch": 37.0, + "eval_loss": 4.011842727661133, + "eval_runtime": 44.7825, + "eval_samples_per_second": 54.53, + "eval_steps_per_second": 3.417, + "step": 2664 + }, + { + "epoch": 37.01397990388816, + "grad_norm": 0.22093228995800018, + "learning_rate": 0.0006, + "loss": 3.6940979957580566, + "step": 2665 + }, + { + "epoch": 37.02795980777632, + "grad_norm": 0.20821493864059448, + "learning_rate": 0.0006, + "loss": 3.670813798904419, + "step": 2666 + }, + { + "epoch": 37.04193971166448, + "grad_norm": 0.22330114245414734, + "learning_rate": 0.0006, + "loss": 3.6392664909362793, + "step": 2667 + }, + { + "epoch": 37.05591961555265, + "grad_norm": 0.2224634289741516, + "learning_rate": 0.0006, + "loss": 3.660856246948242, + "step": 2668 + }, + { + "epoch": 37.0698995194408, + "grad_norm": 0.2255052626132965, + "learning_rate": 0.0006, + "loss": 3.6393589973449707, + "step": 2669 + }, + { + "epoch": 37.083879423328966, + "grad_norm": 0.23462942242622375, + "learning_rate": 0.0006, + "loss": 3.684429168701172, + "step": 2670 + }, + { + "epoch": 37.09785932721712, + "grad_norm": 0.23743386566638947, + "learning_rate": 0.0006, + "loss": 3.67622709274292, + "step": 2671 + }, + { + "epoch": 37.111839231105286, + "grad_norm": 0.2276267409324646, + "learning_rate": 0.0006, + "loss": 3.6487984657287598, + "step": 2672 + }, + { + "epoch": 37.12581913499345, + "grad_norm": 0.24448423087596893, + "learning_rate": 0.0006, + "loss": 3.67645525932312, + "step": 2673 + }, + { + "epoch": 37.139799038881605, + "grad_norm": 0.2428973764181137, + "learning_rate": 0.0006, + "loss": 3.681497097015381, + "step": 2674 + }, + { + "epoch": 37.15377894276977, + "grad_norm": 0.21918512880802155, + "learning_rate": 0.0006, + "loss": 3.67134428024292, + "step": 2675 + }, + { + "epoch": 37.16775884665793, + "grad_norm": 0.2103680670261383, + "learning_rate": 0.0006, + "loss": 3.6508708000183105, + "step": 2676 + }, + { + "epoch": 37.18173875054609, + "grad_norm": 0.20674929022789001, + "learning_rate": 0.0006, + "loss": 3.6904029846191406, + "step": 2677 + }, + { + "epoch": 37.19571865443425, + "grad_norm": 0.21867282688617706, + "learning_rate": 0.0006, + "loss": 3.697535514831543, + "step": 2678 + }, + { + "epoch": 37.20969855832241, + "grad_norm": 0.22919587790966034, + "learning_rate": 0.0006, + "loss": 3.675565004348755, + "step": 2679 + }, + { + "epoch": 37.22367846221057, + "grad_norm": 0.22255578637123108, + "learning_rate": 0.0006, + "loss": 3.6830129623413086, + "step": 2680 + }, + { + "epoch": 37.237658366098735, + "grad_norm": 0.22460198402404785, + "learning_rate": 0.0006, + "loss": 3.6872951984405518, + "step": 2681 + }, + { + "epoch": 37.25163826998689, + "grad_norm": 0.23677165806293488, + "learning_rate": 0.0006, + "loss": 3.6779165267944336, + "step": 2682 + }, + { + "epoch": 37.265618173875055, + "grad_norm": 0.23231394588947296, + "learning_rate": 0.0006, + "loss": 3.6831178665161133, + "step": 2683 + }, + { + "epoch": 37.27959807776322, + "grad_norm": 0.22131343185901642, + "learning_rate": 0.0006, + "loss": 3.664295196533203, + "step": 2684 + }, + { + "epoch": 37.293577981651374, + "grad_norm": 0.23424340784549713, + "learning_rate": 0.0006, + "loss": 3.696678638458252, + "step": 2685 + }, + { + "epoch": 37.30755788553954, + "grad_norm": 0.22695423662662506, + "learning_rate": 0.0006, + "loss": 3.6697473526000977, + "step": 2686 + }, + { + "epoch": 37.3215377894277, + "grad_norm": 0.2165997475385666, + "learning_rate": 0.0006, + "loss": 3.6801891326904297, + "step": 2687 + }, + { + "epoch": 37.33551769331586, + "grad_norm": 0.2241077572107315, + "learning_rate": 0.0006, + "loss": 3.6957011222839355, + "step": 2688 + }, + { + "epoch": 37.34949759720402, + "grad_norm": 0.21191732585430145, + "learning_rate": 0.0006, + "loss": 3.6812620162963867, + "step": 2689 + }, + { + "epoch": 37.36347750109218, + "grad_norm": 0.1827201396226883, + "learning_rate": 0.0006, + "loss": 3.6797738075256348, + "step": 2690 + }, + { + "epoch": 37.37745740498034, + "grad_norm": 0.20793627202510834, + "learning_rate": 0.0006, + "loss": 3.672819137573242, + "step": 2691 + }, + { + "epoch": 37.391437308868504, + "grad_norm": 0.19737116992473602, + "learning_rate": 0.0006, + "loss": 3.667839527130127, + "step": 2692 + }, + { + "epoch": 37.40541721275666, + "grad_norm": 0.18670497834682465, + "learning_rate": 0.0006, + "loss": 3.651561737060547, + "step": 2693 + }, + { + "epoch": 37.419397116644824, + "grad_norm": 0.21385592222213745, + "learning_rate": 0.0006, + "loss": 3.717456340789795, + "step": 2694 + }, + { + "epoch": 37.43337702053299, + "grad_norm": 0.20590044558048248, + "learning_rate": 0.0006, + "loss": 3.6950271129608154, + "step": 2695 + }, + { + "epoch": 37.44735692442114, + "grad_norm": 0.1992103010416031, + "learning_rate": 0.0006, + "loss": 3.687854290008545, + "step": 2696 + }, + { + "epoch": 37.46133682830931, + "grad_norm": 0.2004154473543167, + "learning_rate": 0.0006, + "loss": 3.695838451385498, + "step": 2697 + }, + { + "epoch": 37.47531673219746, + "grad_norm": 0.2019810527563095, + "learning_rate": 0.0006, + "loss": 3.690431594848633, + "step": 2698 + }, + { + "epoch": 37.489296636085626, + "grad_norm": 0.2192547768354416, + "learning_rate": 0.0006, + "loss": 3.6743836402893066, + "step": 2699 + }, + { + "epoch": 37.50327653997379, + "grad_norm": 0.2568076550960541, + "learning_rate": 0.0006, + "loss": 3.6857337951660156, + "step": 2700 + }, + { + "epoch": 37.517256443861946, + "grad_norm": 0.20050311088562012, + "learning_rate": 0.0006, + "loss": 3.6811180114746094, + "step": 2701 + }, + { + "epoch": 37.53123634775011, + "grad_norm": 0.21008558571338654, + "learning_rate": 0.0006, + "loss": 3.700563907623291, + "step": 2702 + }, + { + "epoch": 37.54521625163827, + "grad_norm": 0.2393747717142105, + "learning_rate": 0.0006, + "loss": 3.679438591003418, + "step": 2703 + }, + { + "epoch": 37.55919615552643, + "grad_norm": 0.2531895041465759, + "learning_rate": 0.0006, + "loss": 3.682903289794922, + "step": 2704 + }, + { + "epoch": 37.57317605941459, + "grad_norm": 0.2372656762599945, + "learning_rate": 0.0006, + "loss": 3.7128796577453613, + "step": 2705 + }, + { + "epoch": 37.58715596330275, + "grad_norm": 0.20020034909248352, + "learning_rate": 0.0006, + "loss": 3.701916217803955, + "step": 2706 + }, + { + "epoch": 37.60113586719091, + "grad_norm": 0.20250852406024933, + "learning_rate": 0.0006, + "loss": 3.6761491298675537, + "step": 2707 + }, + { + "epoch": 37.615115771079076, + "grad_norm": 0.19259589910507202, + "learning_rate": 0.0006, + "loss": 3.715104579925537, + "step": 2708 + }, + { + "epoch": 37.62909567496723, + "grad_norm": 0.19649392366409302, + "learning_rate": 0.0006, + "loss": 3.687556266784668, + "step": 2709 + }, + { + "epoch": 37.643075578855395, + "grad_norm": 0.1909446269273758, + "learning_rate": 0.0006, + "loss": 3.684046745300293, + "step": 2710 + }, + { + "epoch": 37.65705548274356, + "grad_norm": 0.19589872658252716, + "learning_rate": 0.0006, + "loss": 3.707886219024658, + "step": 2711 + }, + { + "epoch": 37.671035386631715, + "grad_norm": 0.19472210109233856, + "learning_rate": 0.0006, + "loss": 3.6837692260742188, + "step": 2712 + }, + { + "epoch": 37.68501529051988, + "grad_norm": 0.22622711956501007, + "learning_rate": 0.0006, + "loss": 3.703619956970215, + "step": 2713 + }, + { + "epoch": 37.69899519440804, + "grad_norm": 0.24314729869365692, + "learning_rate": 0.0006, + "loss": 3.7345223426818848, + "step": 2714 + }, + { + "epoch": 37.7129750982962, + "grad_norm": 0.23934306204319, + "learning_rate": 0.0006, + "loss": 3.687809705734253, + "step": 2715 + }, + { + "epoch": 37.72695500218436, + "grad_norm": 0.24838587641716003, + "learning_rate": 0.0006, + "loss": 3.708613872528076, + "step": 2716 + }, + { + "epoch": 37.74093490607252, + "grad_norm": 0.23191452026367188, + "learning_rate": 0.0006, + "loss": 3.7090163230895996, + "step": 2717 + }, + { + "epoch": 37.75491480996068, + "grad_norm": 0.24574638903141022, + "learning_rate": 0.0006, + "loss": 3.68489146232605, + "step": 2718 + }, + { + "epoch": 37.768894713848844, + "grad_norm": 0.2706749439239502, + "learning_rate": 0.0006, + "loss": 3.687061309814453, + "step": 2719 + }, + { + "epoch": 37.782874617737, + "grad_norm": 0.25955191254615784, + "learning_rate": 0.0006, + "loss": 3.694173812866211, + "step": 2720 + }, + { + "epoch": 37.796854521625164, + "grad_norm": 0.22040610015392303, + "learning_rate": 0.0006, + "loss": 3.701871871948242, + "step": 2721 + }, + { + "epoch": 37.81083442551333, + "grad_norm": 0.22328512370586395, + "learning_rate": 0.0006, + "loss": 3.7082555294036865, + "step": 2722 + }, + { + "epoch": 37.824814329401484, + "grad_norm": 0.2290581911802292, + "learning_rate": 0.0006, + "loss": 3.7023987770080566, + "step": 2723 + }, + { + "epoch": 37.83879423328965, + "grad_norm": 0.23129472136497498, + "learning_rate": 0.0006, + "loss": 3.7101752758026123, + "step": 2724 + }, + { + "epoch": 37.8527741371778, + "grad_norm": 0.21203753352165222, + "learning_rate": 0.0006, + "loss": 3.712129592895508, + "step": 2725 + }, + { + "epoch": 37.86675404106597, + "grad_norm": 0.21938200294971466, + "learning_rate": 0.0006, + "loss": 3.7086095809936523, + "step": 2726 + }, + { + "epoch": 37.88073394495413, + "grad_norm": 0.2203572541475296, + "learning_rate": 0.0006, + "loss": 3.6789026260375977, + "step": 2727 + }, + { + "epoch": 37.89471384884229, + "grad_norm": 0.18146046996116638, + "learning_rate": 0.0006, + "loss": 3.666893243789673, + "step": 2728 + }, + { + "epoch": 37.90869375273045, + "grad_norm": 0.1879623532295227, + "learning_rate": 0.0006, + "loss": 3.69246768951416, + "step": 2729 + }, + { + "epoch": 37.92267365661861, + "grad_norm": 0.18311670422554016, + "learning_rate": 0.0006, + "loss": 3.682036876678467, + "step": 2730 + }, + { + "epoch": 37.93665356050677, + "grad_norm": 0.1898486614227295, + "learning_rate": 0.0006, + "loss": 3.6683125495910645, + "step": 2731 + }, + { + "epoch": 37.95063346439493, + "grad_norm": 0.1858556717634201, + "learning_rate": 0.0006, + "loss": 3.6879611015319824, + "step": 2732 + }, + { + "epoch": 37.964613368283096, + "grad_norm": 0.19914504885673523, + "learning_rate": 0.0006, + "loss": 3.690250873565674, + "step": 2733 + }, + { + "epoch": 37.97859327217125, + "grad_norm": 0.20406974852085114, + "learning_rate": 0.0006, + "loss": 3.6812171936035156, + "step": 2734 + }, + { + "epoch": 37.992573176059416, + "grad_norm": 0.2003912478685379, + "learning_rate": 0.0006, + "loss": 3.6852147579193115, + "step": 2735 + }, + { + "epoch": 38.0, + "grad_norm": 0.22644472122192383, + "learning_rate": 0.0006, + "loss": 3.645207405090332, + "step": 2736 + }, + { + "epoch": 38.0, + "eval_loss": 3.995000123977661, + "eval_runtime": 45.1644, + "eval_samples_per_second": 54.069, + "eval_steps_per_second": 3.388, + "step": 2736 + }, + { + "epoch": 38.01397990388816, + "grad_norm": 0.1989814043045044, + "learning_rate": 0.0006, + "loss": 3.6511387825012207, + "step": 2737 + }, + { + "epoch": 38.02795980777632, + "grad_norm": 0.203324094414711, + "learning_rate": 0.0006, + "loss": 3.6513094902038574, + "step": 2738 + }, + { + "epoch": 38.04193971166448, + "grad_norm": 0.21504290401935577, + "learning_rate": 0.0006, + "loss": 3.647711992263794, + "step": 2739 + }, + { + "epoch": 38.05591961555265, + "grad_norm": 0.23464815318584442, + "learning_rate": 0.0006, + "loss": 3.6418747901916504, + "step": 2740 + }, + { + "epoch": 38.0698995194408, + "grad_norm": 0.242184117436409, + "learning_rate": 0.0006, + "loss": 3.6741859912872314, + "step": 2741 + }, + { + "epoch": 38.083879423328966, + "grad_norm": 0.23488445580005646, + "learning_rate": 0.0006, + "loss": 3.6710941791534424, + "step": 2742 + }, + { + "epoch": 38.09785932721712, + "grad_norm": 0.20800170302391052, + "learning_rate": 0.0006, + "loss": 3.660001754760742, + "step": 2743 + }, + { + "epoch": 38.111839231105286, + "grad_norm": 0.19505052268505096, + "learning_rate": 0.0006, + "loss": 3.684129238128662, + "step": 2744 + }, + { + "epoch": 38.12581913499345, + "grad_norm": 0.2185833901166916, + "learning_rate": 0.0006, + "loss": 3.656033515930176, + "step": 2745 + }, + { + "epoch": 38.139799038881605, + "grad_norm": 0.21850253641605377, + "learning_rate": 0.0006, + "loss": 3.6818184852600098, + "step": 2746 + }, + { + "epoch": 38.15377894276977, + "grad_norm": 0.2109488695859909, + "learning_rate": 0.0006, + "loss": 3.6485435962677, + "step": 2747 + }, + { + "epoch": 38.16775884665793, + "grad_norm": 0.21059907972812653, + "learning_rate": 0.0006, + "loss": 3.6734395027160645, + "step": 2748 + }, + { + "epoch": 38.18173875054609, + "grad_norm": 0.20741555094718933, + "learning_rate": 0.0006, + "loss": 3.6672463417053223, + "step": 2749 + }, + { + "epoch": 38.19571865443425, + "grad_norm": 0.2130175530910492, + "learning_rate": 0.0006, + "loss": 3.692840576171875, + "step": 2750 + }, + { + "epoch": 38.20969855832241, + "grad_norm": 0.1899138242006302, + "learning_rate": 0.0006, + "loss": 3.675316333770752, + "step": 2751 + }, + { + "epoch": 38.22367846221057, + "grad_norm": 0.218918576836586, + "learning_rate": 0.0006, + "loss": 3.634105920791626, + "step": 2752 + }, + { + "epoch": 38.237658366098735, + "grad_norm": 0.23649370670318604, + "learning_rate": 0.0006, + "loss": 3.6526122093200684, + "step": 2753 + }, + { + "epoch": 38.25163826998689, + "grad_norm": 0.22011931240558624, + "learning_rate": 0.0006, + "loss": 3.6859593391418457, + "step": 2754 + }, + { + "epoch": 38.265618173875055, + "grad_norm": 0.2143620252609253, + "learning_rate": 0.0006, + "loss": 3.656838893890381, + "step": 2755 + }, + { + "epoch": 38.27959807776322, + "grad_norm": 0.24068567156791687, + "learning_rate": 0.0006, + "loss": 3.67006254196167, + "step": 2756 + }, + { + "epoch": 38.293577981651374, + "grad_norm": 0.25773152709007263, + "learning_rate": 0.0006, + "loss": 3.6648950576782227, + "step": 2757 + }, + { + "epoch": 38.30755788553954, + "grad_norm": 0.24213455617427826, + "learning_rate": 0.0006, + "loss": 3.6918864250183105, + "step": 2758 + }, + { + "epoch": 38.3215377894277, + "grad_norm": 0.22463668882846832, + "learning_rate": 0.0006, + "loss": 3.6662540435791016, + "step": 2759 + }, + { + "epoch": 38.33551769331586, + "grad_norm": 0.22541455924510956, + "learning_rate": 0.0006, + "loss": 3.6563215255737305, + "step": 2760 + }, + { + "epoch": 38.34949759720402, + "grad_norm": 0.21833783388137817, + "learning_rate": 0.0006, + "loss": 3.650446891784668, + "step": 2761 + }, + { + "epoch": 38.36347750109218, + "grad_norm": 0.22799745202064514, + "learning_rate": 0.0006, + "loss": 3.7007250785827637, + "step": 2762 + }, + { + "epoch": 38.37745740498034, + "grad_norm": 0.23739562928676605, + "learning_rate": 0.0006, + "loss": 3.667130708694458, + "step": 2763 + }, + { + "epoch": 38.391437308868504, + "grad_norm": 0.23744846880435944, + "learning_rate": 0.0006, + "loss": 3.678760528564453, + "step": 2764 + }, + { + "epoch": 38.40541721275666, + "grad_norm": 0.2677105963230133, + "learning_rate": 0.0006, + "loss": 3.6829030513763428, + "step": 2765 + }, + { + "epoch": 38.419397116644824, + "grad_norm": 0.24490566551685333, + "learning_rate": 0.0006, + "loss": 3.707911491394043, + "step": 2766 + }, + { + "epoch": 38.43337702053299, + "grad_norm": 0.23477254807949066, + "learning_rate": 0.0006, + "loss": 3.680157423019409, + "step": 2767 + }, + { + "epoch": 38.44735692442114, + "grad_norm": 0.26611173152923584, + "learning_rate": 0.0006, + "loss": 3.660834550857544, + "step": 2768 + }, + { + "epoch": 38.46133682830931, + "grad_norm": 0.24505069851875305, + "learning_rate": 0.0006, + "loss": 3.696178436279297, + "step": 2769 + }, + { + "epoch": 38.47531673219746, + "grad_norm": 0.22933335602283478, + "learning_rate": 0.0006, + "loss": 3.6506235599517822, + "step": 2770 + }, + { + "epoch": 38.489296636085626, + "grad_norm": 0.23662401735782623, + "learning_rate": 0.0006, + "loss": 3.680819511413574, + "step": 2771 + }, + { + "epoch": 38.50327653997379, + "grad_norm": 0.27774113416671753, + "learning_rate": 0.0006, + "loss": 3.699146270751953, + "step": 2772 + }, + { + "epoch": 38.517256443861946, + "grad_norm": 0.2881671190261841, + "learning_rate": 0.0006, + "loss": 3.6509652137756348, + "step": 2773 + }, + { + "epoch": 38.53123634775011, + "grad_norm": 0.26570361852645874, + "learning_rate": 0.0006, + "loss": 3.6808385848999023, + "step": 2774 + }, + { + "epoch": 38.54521625163827, + "grad_norm": 0.23043136298656464, + "learning_rate": 0.0006, + "loss": 3.7082371711730957, + "step": 2775 + }, + { + "epoch": 38.55919615552643, + "grad_norm": 0.23730400204658508, + "learning_rate": 0.0006, + "loss": 3.653615951538086, + "step": 2776 + }, + { + "epoch": 38.57317605941459, + "grad_norm": 0.2332635223865509, + "learning_rate": 0.0006, + "loss": 3.6869683265686035, + "step": 2777 + }, + { + "epoch": 38.58715596330275, + "grad_norm": 0.22913676500320435, + "learning_rate": 0.0006, + "loss": 3.6998367309570312, + "step": 2778 + }, + { + "epoch": 38.60113586719091, + "grad_norm": 0.226078599691391, + "learning_rate": 0.0006, + "loss": 3.7051444053649902, + "step": 2779 + }, + { + "epoch": 38.615115771079076, + "grad_norm": 0.2336396723985672, + "learning_rate": 0.0006, + "loss": 3.6964943408966064, + "step": 2780 + }, + { + "epoch": 38.62909567496723, + "grad_norm": 0.23270335793495178, + "learning_rate": 0.0006, + "loss": 3.6741909980773926, + "step": 2781 + }, + { + "epoch": 38.643075578855395, + "grad_norm": 0.19324959814548492, + "learning_rate": 0.0006, + "loss": 3.64506196975708, + "step": 2782 + }, + { + "epoch": 38.65705548274356, + "grad_norm": 0.18551453948020935, + "learning_rate": 0.0006, + "loss": 3.6834206581115723, + "step": 2783 + }, + { + "epoch": 38.671035386631715, + "grad_norm": 0.17392469942569733, + "learning_rate": 0.0006, + "loss": 3.67282772064209, + "step": 2784 + }, + { + "epoch": 38.68501529051988, + "grad_norm": 0.19093742966651917, + "learning_rate": 0.0006, + "loss": 3.6648201942443848, + "step": 2785 + }, + { + "epoch": 38.69899519440804, + "grad_norm": 0.2124558985233307, + "learning_rate": 0.0006, + "loss": 3.712191581726074, + "step": 2786 + }, + { + "epoch": 38.7129750982962, + "grad_norm": 0.2220139354467392, + "learning_rate": 0.0006, + "loss": 3.675504207611084, + "step": 2787 + }, + { + "epoch": 38.72695500218436, + "grad_norm": 0.17677755653858185, + "learning_rate": 0.0006, + "loss": 3.6693475246429443, + "step": 2788 + }, + { + "epoch": 38.74093490607252, + "grad_norm": 0.2002430409193039, + "learning_rate": 0.0006, + "loss": 3.6906018257141113, + "step": 2789 + }, + { + "epoch": 38.75491480996068, + "grad_norm": 0.18844179809093475, + "learning_rate": 0.0006, + "loss": 3.660121440887451, + "step": 2790 + }, + { + "epoch": 38.768894713848844, + "grad_norm": 0.19319336116313934, + "learning_rate": 0.0006, + "loss": 3.6592631340026855, + "step": 2791 + }, + { + "epoch": 38.782874617737, + "grad_norm": 0.18624325096607208, + "learning_rate": 0.0006, + "loss": 3.6935300827026367, + "step": 2792 + }, + { + "epoch": 38.796854521625164, + "grad_norm": 0.2049761712551117, + "learning_rate": 0.0006, + "loss": 3.6702702045440674, + "step": 2793 + }, + { + "epoch": 38.81083442551333, + "grad_norm": 0.2030584216117859, + "learning_rate": 0.0006, + "loss": 3.714639663696289, + "step": 2794 + }, + { + "epoch": 38.824814329401484, + "grad_norm": 0.18989548087120056, + "learning_rate": 0.0006, + "loss": 3.678253412246704, + "step": 2795 + }, + { + "epoch": 38.83879423328965, + "grad_norm": 0.19944126904010773, + "learning_rate": 0.0006, + "loss": 3.648367166519165, + "step": 2796 + }, + { + "epoch": 38.8527741371778, + "grad_norm": 0.2062688171863556, + "learning_rate": 0.0006, + "loss": 3.701514720916748, + "step": 2797 + }, + { + "epoch": 38.86675404106597, + "grad_norm": 0.21475110948085785, + "learning_rate": 0.0006, + "loss": 3.6725993156433105, + "step": 2798 + }, + { + "epoch": 38.88073394495413, + "grad_norm": 0.2240881323814392, + "learning_rate": 0.0006, + "loss": 3.6944539546966553, + "step": 2799 + }, + { + "epoch": 38.89471384884229, + "grad_norm": 0.23074312508106232, + "learning_rate": 0.0006, + "loss": 3.747671365737915, + "step": 2800 + }, + { + "epoch": 38.90869375273045, + "grad_norm": 0.2447938323020935, + "learning_rate": 0.0006, + "loss": 3.6856026649475098, + "step": 2801 + }, + { + "epoch": 38.92267365661861, + "grad_norm": 0.2136487364768982, + "learning_rate": 0.0006, + "loss": 3.710397720336914, + "step": 2802 + }, + { + "epoch": 38.93665356050677, + "grad_norm": 0.21676769852638245, + "learning_rate": 0.0006, + "loss": 3.6911189556121826, + "step": 2803 + }, + { + "epoch": 38.95063346439493, + "grad_norm": 0.2226478010416031, + "learning_rate": 0.0006, + "loss": 3.6902880668640137, + "step": 2804 + }, + { + "epoch": 38.964613368283096, + "grad_norm": 0.2071496546268463, + "learning_rate": 0.0006, + "loss": 3.6831371784210205, + "step": 2805 + }, + { + "epoch": 38.97859327217125, + "grad_norm": 0.19568349421024323, + "learning_rate": 0.0006, + "loss": 3.6897640228271484, + "step": 2806 + }, + { + "epoch": 38.992573176059416, + "grad_norm": 0.19067516922950745, + "learning_rate": 0.0006, + "loss": 3.7096242904663086, + "step": 2807 + }, + { + "epoch": 39.0, + "grad_norm": 0.22872281074523926, + "learning_rate": 0.0006, + "loss": 3.689342975616455, + "step": 2808 + }, + { + "epoch": 39.0, + "eval_loss": 4.001968860626221, + "eval_runtime": 44.8452, + "eval_samples_per_second": 54.454, + "eval_steps_per_second": 3.412, + "step": 2808 + }, + { + "epoch": 39.01397990388816, + "grad_norm": 0.21685896813869476, + "learning_rate": 0.0006, + "loss": 3.638145923614502, + "step": 2809 + }, + { + "epoch": 39.02795980777632, + "grad_norm": 0.20085014402866364, + "learning_rate": 0.0006, + "loss": 3.626654624938965, + "step": 2810 + }, + { + "epoch": 39.04193971166448, + "grad_norm": 0.20615799725055695, + "learning_rate": 0.0006, + "loss": 3.6280088424682617, + "step": 2811 + }, + { + "epoch": 39.05591961555265, + "grad_norm": 0.23471905291080475, + "learning_rate": 0.0006, + "loss": 3.6444239616394043, + "step": 2812 + }, + { + "epoch": 39.0698995194408, + "grad_norm": 0.22207780182361603, + "learning_rate": 0.0006, + "loss": 3.6276912689208984, + "step": 2813 + }, + { + "epoch": 39.083879423328966, + "grad_norm": 0.23354043066501617, + "learning_rate": 0.0006, + "loss": 3.7007269859313965, + "step": 2814 + }, + { + "epoch": 39.09785932721712, + "grad_norm": 0.22520557045936584, + "learning_rate": 0.0006, + "loss": 3.6487162113189697, + "step": 2815 + }, + { + "epoch": 39.111839231105286, + "grad_norm": 0.20489682257175446, + "learning_rate": 0.0006, + "loss": 3.6523492336273193, + "step": 2816 + }, + { + "epoch": 39.12581913499345, + "grad_norm": 0.20979270339012146, + "learning_rate": 0.0006, + "loss": 3.6574230194091797, + "step": 2817 + }, + { + "epoch": 39.139799038881605, + "grad_norm": 0.2256486713886261, + "learning_rate": 0.0006, + "loss": 3.6499013900756836, + "step": 2818 + }, + { + "epoch": 39.15377894276977, + "grad_norm": 0.1960437297821045, + "learning_rate": 0.0006, + "loss": 3.6780271530151367, + "step": 2819 + }, + { + "epoch": 39.16775884665793, + "grad_norm": 0.19279663264751434, + "learning_rate": 0.0006, + "loss": 3.623819589614868, + "step": 2820 + }, + { + "epoch": 39.18173875054609, + "grad_norm": 0.19151495397090912, + "learning_rate": 0.0006, + "loss": 3.612868070602417, + "step": 2821 + }, + { + "epoch": 39.19571865443425, + "grad_norm": 0.19399534165859222, + "learning_rate": 0.0006, + "loss": 3.6518092155456543, + "step": 2822 + }, + { + "epoch": 39.20969855832241, + "grad_norm": 0.21723251044750214, + "learning_rate": 0.0006, + "loss": 3.681509494781494, + "step": 2823 + }, + { + "epoch": 39.22367846221057, + "grad_norm": 0.2487006038427353, + "learning_rate": 0.0006, + "loss": 3.6569719314575195, + "step": 2824 + }, + { + "epoch": 39.237658366098735, + "grad_norm": 0.2640652656555176, + "learning_rate": 0.0006, + "loss": 3.680734634399414, + "step": 2825 + }, + { + "epoch": 39.25163826998689, + "grad_norm": 0.21862825751304626, + "learning_rate": 0.0006, + "loss": 3.6741840839385986, + "step": 2826 + }, + { + "epoch": 39.265618173875055, + "grad_norm": 0.19515705108642578, + "learning_rate": 0.0006, + "loss": 3.657750129699707, + "step": 2827 + }, + { + "epoch": 39.27959807776322, + "grad_norm": 0.1971602737903595, + "learning_rate": 0.0006, + "loss": 3.6524124145507812, + "step": 2828 + }, + { + "epoch": 39.293577981651374, + "grad_norm": 0.20822174847126007, + "learning_rate": 0.0006, + "loss": 3.69527006149292, + "step": 2829 + }, + { + "epoch": 39.30755788553954, + "grad_norm": 0.2566370368003845, + "learning_rate": 0.0006, + "loss": 3.6770880222320557, + "step": 2830 + }, + { + "epoch": 39.3215377894277, + "grad_norm": 0.24984225630760193, + "learning_rate": 0.0006, + "loss": 3.6733901500701904, + "step": 2831 + }, + { + "epoch": 39.33551769331586, + "grad_norm": 0.233322873711586, + "learning_rate": 0.0006, + "loss": 3.645519256591797, + "step": 2832 + }, + { + "epoch": 39.34949759720402, + "grad_norm": 0.21584749221801758, + "learning_rate": 0.0006, + "loss": 3.6211934089660645, + "step": 2833 + }, + { + "epoch": 39.36347750109218, + "grad_norm": 0.2188950479030609, + "learning_rate": 0.0006, + "loss": 3.6434195041656494, + "step": 2834 + }, + { + "epoch": 39.37745740498034, + "grad_norm": 0.21998439729213715, + "learning_rate": 0.0006, + "loss": 3.6720595359802246, + "step": 2835 + }, + { + "epoch": 39.391437308868504, + "grad_norm": 0.2459399700164795, + "learning_rate": 0.0006, + "loss": 3.667083740234375, + "step": 2836 + }, + { + "epoch": 39.40541721275666, + "grad_norm": 0.23579223453998566, + "learning_rate": 0.0006, + "loss": 3.665452480316162, + "step": 2837 + }, + { + "epoch": 39.419397116644824, + "grad_norm": 0.19401362538337708, + "learning_rate": 0.0006, + "loss": 3.684218406677246, + "step": 2838 + }, + { + "epoch": 39.43337702053299, + "grad_norm": 0.1894487738609314, + "learning_rate": 0.0006, + "loss": 3.670626163482666, + "step": 2839 + }, + { + "epoch": 39.44735692442114, + "grad_norm": 0.1936904937028885, + "learning_rate": 0.0006, + "loss": 3.6367318630218506, + "step": 2840 + }, + { + "epoch": 39.46133682830931, + "grad_norm": 0.1867629438638687, + "learning_rate": 0.0006, + "loss": 3.670098304748535, + "step": 2841 + }, + { + "epoch": 39.47531673219746, + "grad_norm": 0.18849903345108032, + "learning_rate": 0.0006, + "loss": 3.6877760887145996, + "step": 2842 + }, + { + "epoch": 39.489296636085626, + "grad_norm": 0.18247179687023163, + "learning_rate": 0.0006, + "loss": 3.7132980823516846, + "step": 2843 + }, + { + "epoch": 39.50327653997379, + "grad_norm": 0.19206349551677704, + "learning_rate": 0.0006, + "loss": 3.630319595336914, + "step": 2844 + }, + { + "epoch": 39.517256443861946, + "grad_norm": 0.21730613708496094, + "learning_rate": 0.0006, + "loss": 3.6818761825561523, + "step": 2845 + }, + { + "epoch": 39.53123634775011, + "grad_norm": 0.22482407093048096, + "learning_rate": 0.0006, + "loss": 3.6385269165039062, + "step": 2846 + }, + { + "epoch": 39.54521625163827, + "grad_norm": 0.24560105800628662, + "learning_rate": 0.0006, + "loss": 3.660067558288574, + "step": 2847 + }, + { + "epoch": 39.55919615552643, + "grad_norm": 0.23720617592334747, + "learning_rate": 0.0006, + "loss": 3.6811556816101074, + "step": 2848 + }, + { + "epoch": 39.57317605941459, + "grad_norm": 0.18990741670131683, + "learning_rate": 0.0006, + "loss": 3.6733779907226562, + "step": 2849 + }, + { + "epoch": 39.58715596330275, + "grad_norm": 0.2135438323020935, + "learning_rate": 0.0006, + "loss": 3.662020683288574, + "step": 2850 + }, + { + "epoch": 39.60113586719091, + "grad_norm": 0.24248908460140228, + "learning_rate": 0.0006, + "loss": 3.6794259548187256, + "step": 2851 + }, + { + "epoch": 39.615115771079076, + "grad_norm": 0.23115725815296173, + "learning_rate": 0.0006, + "loss": 3.6732406616210938, + "step": 2852 + }, + { + "epoch": 39.62909567496723, + "grad_norm": 0.23760166764259338, + "learning_rate": 0.0006, + "loss": 3.7062699794769287, + "step": 2853 + }, + { + "epoch": 39.643075578855395, + "grad_norm": 0.24670571088790894, + "learning_rate": 0.0006, + "loss": 3.692385673522949, + "step": 2854 + }, + { + "epoch": 39.65705548274356, + "grad_norm": 0.20983918011188507, + "learning_rate": 0.0006, + "loss": 3.691361427307129, + "step": 2855 + }, + { + "epoch": 39.671035386631715, + "grad_norm": 0.1915138065814972, + "learning_rate": 0.0006, + "loss": 3.6985888481140137, + "step": 2856 + }, + { + "epoch": 39.68501529051988, + "grad_norm": 0.23440803587436676, + "learning_rate": 0.0006, + "loss": 3.6484973430633545, + "step": 2857 + }, + { + "epoch": 39.69899519440804, + "grad_norm": 0.2483232468366623, + "learning_rate": 0.0006, + "loss": 3.6861510276794434, + "step": 2858 + }, + { + "epoch": 39.7129750982962, + "grad_norm": 0.21373426914215088, + "learning_rate": 0.0006, + "loss": 3.6528866291046143, + "step": 2859 + }, + { + "epoch": 39.72695500218436, + "grad_norm": 0.19849136471748352, + "learning_rate": 0.0006, + "loss": 3.6435961723327637, + "step": 2860 + }, + { + "epoch": 39.74093490607252, + "grad_norm": 0.21748292446136475, + "learning_rate": 0.0006, + "loss": 3.678481101989746, + "step": 2861 + }, + { + "epoch": 39.75491480996068, + "grad_norm": 0.22488188743591309, + "learning_rate": 0.0006, + "loss": 3.711717128753662, + "step": 2862 + }, + { + "epoch": 39.768894713848844, + "grad_norm": 0.22251835465431213, + "learning_rate": 0.0006, + "loss": 3.690516471862793, + "step": 2863 + }, + { + "epoch": 39.782874617737, + "grad_norm": 0.22101449966430664, + "learning_rate": 0.0006, + "loss": 3.6679611206054688, + "step": 2864 + }, + { + "epoch": 39.796854521625164, + "grad_norm": 0.20345936715602875, + "learning_rate": 0.0006, + "loss": 3.6935629844665527, + "step": 2865 + }, + { + "epoch": 39.81083442551333, + "grad_norm": 0.23772259056568146, + "learning_rate": 0.0006, + "loss": 3.697561264038086, + "step": 2866 + }, + { + "epoch": 39.824814329401484, + "grad_norm": 0.24446387588977814, + "learning_rate": 0.0006, + "loss": 3.696723461151123, + "step": 2867 + }, + { + "epoch": 39.83879423328965, + "grad_norm": 0.2365843653678894, + "learning_rate": 0.0006, + "loss": 3.6511402130126953, + "step": 2868 + }, + { + "epoch": 39.8527741371778, + "grad_norm": 0.25421974062919617, + "learning_rate": 0.0006, + "loss": 3.68449068069458, + "step": 2869 + }, + { + "epoch": 39.86675404106597, + "grad_norm": 0.2504308819770813, + "learning_rate": 0.0006, + "loss": 3.685884952545166, + "step": 2870 + }, + { + "epoch": 39.88073394495413, + "grad_norm": 0.24695490300655365, + "learning_rate": 0.0006, + "loss": 3.6667490005493164, + "step": 2871 + }, + { + "epoch": 39.89471384884229, + "grad_norm": 0.2633236348628998, + "learning_rate": 0.0006, + "loss": 3.6828866004943848, + "step": 2872 + }, + { + "epoch": 39.90869375273045, + "grad_norm": 0.2421039491891861, + "learning_rate": 0.0006, + "loss": 3.681187391281128, + "step": 2873 + }, + { + "epoch": 39.92267365661861, + "grad_norm": 0.21202950179576874, + "learning_rate": 0.0006, + "loss": 3.679069995880127, + "step": 2874 + }, + { + "epoch": 39.93665356050677, + "grad_norm": 0.2344917505979538, + "learning_rate": 0.0006, + "loss": 3.6810007095336914, + "step": 2875 + }, + { + "epoch": 39.95063346439493, + "grad_norm": 0.2115124762058258, + "learning_rate": 0.0006, + "loss": 3.653219223022461, + "step": 2876 + }, + { + "epoch": 39.964613368283096, + "grad_norm": 0.21588370203971863, + "learning_rate": 0.0006, + "loss": 3.6972861289978027, + "step": 2877 + }, + { + "epoch": 39.97859327217125, + "grad_norm": 0.26215407252311707, + "learning_rate": 0.0006, + "loss": 3.6796963214874268, + "step": 2878 + }, + { + "epoch": 39.992573176059416, + "grad_norm": 0.23645395040512085, + "learning_rate": 0.0006, + "loss": 3.696091413497925, + "step": 2879 + }, + { + "epoch": 40.0, + "grad_norm": 0.21817512810230255, + "learning_rate": 0.0006, + "loss": 3.668196678161621, + "step": 2880 + }, + { + "epoch": 40.0, + "eval_loss": 3.9873862266540527, + "eval_runtime": 44.1149, + "eval_samples_per_second": 55.355, + "eval_steps_per_second": 3.468, + "step": 2880 + }, + { + "epoch": 40.01397990388816, + "grad_norm": 0.2031477391719818, + "learning_rate": 0.0006, + "loss": 3.6494622230529785, + "step": 2881 + }, + { + "epoch": 40.02795980777632, + "grad_norm": 0.2223939746618271, + "learning_rate": 0.0006, + "loss": 3.6587047576904297, + "step": 2882 + }, + { + "epoch": 40.04193971166448, + "grad_norm": 0.21485820412635803, + "learning_rate": 0.0006, + "loss": 3.62253737449646, + "step": 2883 + }, + { + "epoch": 40.05591961555265, + "grad_norm": 0.23364055156707764, + "learning_rate": 0.0006, + "loss": 3.619035005569458, + "step": 2884 + }, + { + "epoch": 40.0698995194408, + "grad_norm": 0.23141583800315857, + "learning_rate": 0.0006, + "loss": 3.6650376319885254, + "step": 2885 + }, + { + "epoch": 40.083879423328966, + "grad_norm": 0.2131720930337906, + "learning_rate": 0.0006, + "loss": 3.646428108215332, + "step": 2886 + }, + { + "epoch": 40.09785932721712, + "grad_norm": 0.2337951511144638, + "learning_rate": 0.0006, + "loss": 3.6284823417663574, + "step": 2887 + }, + { + "epoch": 40.111839231105286, + "grad_norm": 0.2790892720222473, + "learning_rate": 0.0006, + "loss": 3.6558361053466797, + "step": 2888 + }, + { + "epoch": 40.12581913499345, + "grad_norm": 0.28444936871528625, + "learning_rate": 0.0006, + "loss": 3.644402503967285, + "step": 2889 + }, + { + "epoch": 40.139799038881605, + "grad_norm": 0.2550848126411438, + "learning_rate": 0.0006, + "loss": 3.671562671661377, + "step": 2890 + }, + { + "epoch": 40.15377894276977, + "grad_norm": 0.22960248589515686, + "learning_rate": 0.0006, + "loss": 3.6998534202575684, + "step": 2891 + }, + { + "epoch": 40.16775884665793, + "grad_norm": 0.23920369148254395, + "learning_rate": 0.0006, + "loss": 3.653874635696411, + "step": 2892 + }, + { + "epoch": 40.18173875054609, + "grad_norm": 0.24586012959480286, + "learning_rate": 0.0006, + "loss": 3.620765209197998, + "step": 2893 + }, + { + "epoch": 40.19571865443425, + "grad_norm": 0.26394739747047424, + "learning_rate": 0.0006, + "loss": 3.638437509536743, + "step": 2894 + }, + { + "epoch": 40.20969855832241, + "grad_norm": 0.27566927671432495, + "learning_rate": 0.0006, + "loss": 3.6684799194335938, + "step": 2895 + }, + { + "epoch": 40.22367846221057, + "grad_norm": 0.25469011068344116, + "learning_rate": 0.0006, + "loss": 3.6113009452819824, + "step": 2896 + }, + { + "epoch": 40.237658366098735, + "grad_norm": 0.2403056025505066, + "learning_rate": 0.0006, + "loss": 3.650771141052246, + "step": 2897 + }, + { + "epoch": 40.25163826998689, + "grad_norm": 0.262423038482666, + "learning_rate": 0.0006, + "loss": 3.635892391204834, + "step": 2898 + }, + { + "epoch": 40.265618173875055, + "grad_norm": 0.23696045577526093, + "learning_rate": 0.0006, + "loss": 3.6396005153656006, + "step": 2899 + }, + { + "epoch": 40.27959807776322, + "grad_norm": 0.208719402551651, + "learning_rate": 0.0006, + "loss": 3.6681132316589355, + "step": 2900 + }, + { + "epoch": 40.293577981651374, + "grad_norm": 0.21554480493068695, + "learning_rate": 0.0006, + "loss": 3.6417553424835205, + "step": 2901 + }, + { + "epoch": 40.30755788553954, + "grad_norm": 0.2290734499692917, + "learning_rate": 0.0006, + "loss": 3.6659927368164062, + "step": 2902 + }, + { + "epoch": 40.3215377894277, + "grad_norm": 0.20803220570087433, + "learning_rate": 0.0006, + "loss": 3.6443324089050293, + "step": 2903 + }, + { + "epoch": 40.33551769331586, + "grad_norm": 0.20334568619728088, + "learning_rate": 0.0006, + "loss": 3.6824207305908203, + "step": 2904 + }, + { + "epoch": 40.34949759720402, + "grad_norm": 0.2000233381986618, + "learning_rate": 0.0006, + "loss": 3.644399642944336, + "step": 2905 + }, + { + "epoch": 40.36347750109218, + "grad_norm": 0.21990752220153809, + "learning_rate": 0.0006, + "loss": 3.668160915374756, + "step": 2906 + }, + { + "epoch": 40.37745740498034, + "grad_norm": 0.24385249614715576, + "learning_rate": 0.0006, + "loss": 3.634392261505127, + "step": 2907 + }, + { + "epoch": 40.391437308868504, + "grad_norm": 0.21272684633731842, + "learning_rate": 0.0006, + "loss": 3.6504263877868652, + "step": 2908 + }, + { + "epoch": 40.40541721275666, + "grad_norm": 0.2003277838230133, + "learning_rate": 0.0006, + "loss": 3.6707763671875, + "step": 2909 + }, + { + "epoch": 40.419397116644824, + "grad_norm": 0.2086087465286255, + "learning_rate": 0.0006, + "loss": 3.66988468170166, + "step": 2910 + }, + { + "epoch": 40.43337702053299, + "grad_norm": 0.19706451892852783, + "learning_rate": 0.0006, + "loss": 3.662794828414917, + "step": 2911 + }, + { + "epoch": 40.44735692442114, + "grad_norm": 0.18795762956142426, + "learning_rate": 0.0006, + "loss": 3.628016233444214, + "step": 2912 + }, + { + "epoch": 40.46133682830931, + "grad_norm": 0.19931825995445251, + "learning_rate": 0.0006, + "loss": 3.6791915893554688, + "step": 2913 + }, + { + "epoch": 40.47531673219746, + "grad_norm": 0.21295934915542603, + "learning_rate": 0.0006, + "loss": 3.688632011413574, + "step": 2914 + }, + { + "epoch": 40.489296636085626, + "grad_norm": 0.2104834020137787, + "learning_rate": 0.0006, + "loss": 3.6270499229431152, + "step": 2915 + }, + { + "epoch": 40.50327653997379, + "grad_norm": 0.19942966103553772, + "learning_rate": 0.0006, + "loss": 3.651721477508545, + "step": 2916 + }, + { + "epoch": 40.517256443861946, + "grad_norm": 0.18890425562858582, + "learning_rate": 0.0006, + "loss": 3.6778619289398193, + "step": 2917 + }, + { + "epoch": 40.53123634775011, + "grad_norm": 0.19861607253551483, + "learning_rate": 0.0006, + "loss": 3.658832550048828, + "step": 2918 + }, + { + "epoch": 40.54521625163827, + "grad_norm": 0.21553616225719452, + "learning_rate": 0.0006, + "loss": 3.6566901206970215, + "step": 2919 + }, + { + "epoch": 40.55919615552643, + "grad_norm": 0.21698440611362457, + "learning_rate": 0.0006, + "loss": 3.6795129776000977, + "step": 2920 + }, + { + "epoch": 40.57317605941459, + "grad_norm": 0.20310913026332855, + "learning_rate": 0.0006, + "loss": 3.645244598388672, + "step": 2921 + }, + { + "epoch": 40.58715596330275, + "grad_norm": 0.2075812816619873, + "learning_rate": 0.0006, + "loss": 3.678452491760254, + "step": 2922 + }, + { + "epoch": 40.60113586719091, + "grad_norm": 0.20606619119644165, + "learning_rate": 0.0006, + "loss": 3.6150245666503906, + "step": 2923 + }, + { + "epoch": 40.615115771079076, + "grad_norm": 0.21511296927928925, + "learning_rate": 0.0006, + "loss": 3.6682112216949463, + "step": 2924 + }, + { + "epoch": 40.62909567496723, + "grad_norm": 0.19771839678287506, + "learning_rate": 0.0006, + "loss": 3.6639556884765625, + "step": 2925 + }, + { + "epoch": 40.643075578855395, + "grad_norm": 0.20419852435588837, + "learning_rate": 0.0006, + "loss": 3.664982318878174, + "step": 2926 + }, + { + "epoch": 40.65705548274356, + "grad_norm": 0.20119430124759674, + "learning_rate": 0.0006, + "loss": 3.661625385284424, + "step": 2927 + }, + { + "epoch": 40.671035386631715, + "grad_norm": 0.21590501070022583, + "learning_rate": 0.0006, + "loss": 3.673719644546509, + "step": 2928 + }, + { + "epoch": 40.68501529051988, + "grad_norm": 0.19165395200252533, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 2929 + }, + { + "epoch": 40.69899519440804, + "grad_norm": 0.19620473682880402, + "learning_rate": 0.0006, + "loss": 3.7008142471313477, + "step": 2930 + }, + { + "epoch": 40.7129750982962, + "grad_norm": 0.23002777993679047, + "learning_rate": 0.0006, + "loss": 3.654296875, + "step": 2931 + }, + { + "epoch": 40.72695500218436, + "grad_norm": 0.22007468342781067, + "learning_rate": 0.0006, + "loss": 3.688178539276123, + "step": 2932 + }, + { + "epoch": 40.74093490607252, + "grad_norm": 0.2030077874660492, + "learning_rate": 0.0006, + "loss": 3.6514129638671875, + "step": 2933 + }, + { + "epoch": 40.75491480996068, + "grad_norm": 0.20960700511932373, + "learning_rate": 0.0006, + "loss": 3.651864528656006, + "step": 2934 + }, + { + "epoch": 40.768894713848844, + "grad_norm": 0.2132565975189209, + "learning_rate": 0.0006, + "loss": 3.680915355682373, + "step": 2935 + }, + { + "epoch": 40.782874617737, + "grad_norm": 0.2411353588104248, + "learning_rate": 0.0006, + "loss": 3.647167682647705, + "step": 2936 + }, + { + "epoch": 40.796854521625164, + "grad_norm": 0.24621541798114777, + "learning_rate": 0.0006, + "loss": 3.6784768104553223, + "step": 2937 + }, + { + "epoch": 40.81083442551333, + "grad_norm": 0.23324407637119293, + "learning_rate": 0.0006, + "loss": 3.6855263710021973, + "step": 2938 + }, + { + "epoch": 40.824814329401484, + "grad_norm": 0.21749550104141235, + "learning_rate": 0.0006, + "loss": 3.672682285308838, + "step": 2939 + }, + { + "epoch": 40.83879423328965, + "grad_norm": 0.1957911103963852, + "learning_rate": 0.0006, + "loss": 3.635678291320801, + "step": 2940 + }, + { + "epoch": 40.8527741371778, + "grad_norm": 0.21262411773204803, + "learning_rate": 0.0006, + "loss": 3.6829824447631836, + "step": 2941 + }, + { + "epoch": 40.86675404106597, + "grad_norm": 0.19940680265426636, + "learning_rate": 0.0006, + "loss": 3.720932960510254, + "step": 2942 + }, + { + "epoch": 40.88073394495413, + "grad_norm": 0.1964999884366989, + "learning_rate": 0.0006, + "loss": 3.678405284881592, + "step": 2943 + }, + { + "epoch": 40.89471384884229, + "grad_norm": 0.21459022164344788, + "learning_rate": 0.0006, + "loss": 3.6788480281829834, + "step": 2944 + }, + { + "epoch": 40.90869375273045, + "grad_norm": 0.2251381129026413, + "learning_rate": 0.0006, + "loss": 3.679459571838379, + "step": 2945 + }, + { + "epoch": 40.92267365661861, + "grad_norm": 0.19951461255550385, + "learning_rate": 0.0006, + "loss": 3.6610841751098633, + "step": 2946 + }, + { + "epoch": 40.93665356050677, + "grad_norm": 0.2057943493127823, + "learning_rate": 0.0006, + "loss": 3.649491786956787, + "step": 2947 + }, + { + "epoch": 40.95063346439493, + "grad_norm": 0.19601917266845703, + "learning_rate": 0.0006, + "loss": 3.724552631378174, + "step": 2948 + }, + { + "epoch": 40.964613368283096, + "grad_norm": 0.20982769131660461, + "learning_rate": 0.0006, + "loss": 3.648465394973755, + "step": 2949 + }, + { + "epoch": 40.97859327217125, + "grad_norm": 0.21103954315185547, + "learning_rate": 0.0006, + "loss": 3.692239999771118, + "step": 2950 + }, + { + "epoch": 40.992573176059416, + "grad_norm": 0.2007385492324829, + "learning_rate": 0.0006, + "loss": 3.659999132156372, + "step": 2951 + }, + { + "epoch": 41.0, + "grad_norm": 0.22357431054115295, + "learning_rate": 0.0006, + "loss": 3.6461124420166016, + "step": 2952 + }, + { + "epoch": 41.0, + "eval_loss": 3.9891226291656494, + "eval_runtime": 44.65, + "eval_samples_per_second": 54.692, + "eval_steps_per_second": 3.427, + "step": 2952 + }, + { + "epoch": 41.01397990388816, + "grad_norm": 0.20387817919254303, + "learning_rate": 0.0006, + "loss": 3.643923282623291, + "step": 2953 + }, + { + "epoch": 41.02795980777632, + "grad_norm": 0.1988423764705658, + "learning_rate": 0.0006, + "loss": 3.6152570247650146, + "step": 2954 + }, + { + "epoch": 41.04193971166448, + "grad_norm": 0.19998641312122345, + "learning_rate": 0.0006, + "loss": 3.667520523071289, + "step": 2955 + }, + { + "epoch": 41.05591961555265, + "grad_norm": 0.18347714841365814, + "learning_rate": 0.0006, + "loss": 3.6289002895355225, + "step": 2956 + }, + { + "epoch": 41.0698995194408, + "grad_norm": 0.21235640347003937, + "learning_rate": 0.0006, + "loss": 3.6422951221466064, + "step": 2957 + }, + { + "epoch": 41.083879423328966, + "grad_norm": 0.1990172415971756, + "learning_rate": 0.0006, + "loss": 3.625697135925293, + "step": 2958 + }, + { + "epoch": 41.09785932721712, + "grad_norm": 0.18313643336296082, + "learning_rate": 0.0006, + "loss": 3.672356605529785, + "step": 2959 + }, + { + "epoch": 41.111839231105286, + "grad_norm": 0.17956401407718658, + "learning_rate": 0.0006, + "loss": 3.6093602180480957, + "step": 2960 + }, + { + "epoch": 41.12581913499345, + "grad_norm": 0.19487550854682922, + "learning_rate": 0.0006, + "loss": 3.6004128456115723, + "step": 2961 + }, + { + "epoch": 41.139799038881605, + "grad_norm": 0.2117495834827423, + "learning_rate": 0.0006, + "loss": 3.6468565464019775, + "step": 2962 + }, + { + "epoch": 41.15377894276977, + "grad_norm": 0.20602662861347198, + "learning_rate": 0.0006, + "loss": 3.6299140453338623, + "step": 2963 + }, + { + "epoch": 41.16775884665793, + "grad_norm": 0.21859265863895416, + "learning_rate": 0.0006, + "loss": 3.630052328109741, + "step": 2964 + }, + { + "epoch": 41.18173875054609, + "grad_norm": 0.22684140503406525, + "learning_rate": 0.0006, + "loss": 3.5995004177093506, + "step": 2965 + }, + { + "epoch": 41.19571865443425, + "grad_norm": 0.25682681798934937, + "learning_rate": 0.0006, + "loss": 3.613131523132324, + "step": 2966 + }, + { + "epoch": 41.20969855832241, + "grad_norm": 0.2508181631565094, + "learning_rate": 0.0006, + "loss": 3.644259452819824, + "step": 2967 + }, + { + "epoch": 41.22367846221057, + "grad_norm": 0.24200427532196045, + "learning_rate": 0.0006, + "loss": 3.6651816368103027, + "step": 2968 + }, + { + "epoch": 41.237658366098735, + "grad_norm": 0.21753790974617004, + "learning_rate": 0.0006, + "loss": 3.686199188232422, + "step": 2969 + }, + { + "epoch": 41.25163826998689, + "grad_norm": 0.19811955094337463, + "learning_rate": 0.0006, + "loss": 3.63014817237854, + "step": 2970 + }, + { + "epoch": 41.265618173875055, + "grad_norm": 0.19316327571868896, + "learning_rate": 0.0006, + "loss": 3.6532740592956543, + "step": 2971 + }, + { + "epoch": 41.27959807776322, + "grad_norm": 0.21440976858139038, + "learning_rate": 0.0006, + "loss": 3.6546850204467773, + "step": 2972 + }, + { + "epoch": 41.293577981651374, + "grad_norm": 0.2732681334018707, + "learning_rate": 0.0006, + "loss": 3.6135244369506836, + "step": 2973 + }, + { + "epoch": 41.30755788553954, + "grad_norm": 0.2588619589805603, + "learning_rate": 0.0006, + "loss": 3.657963275909424, + "step": 2974 + }, + { + "epoch": 41.3215377894277, + "grad_norm": 0.20054970681667328, + "learning_rate": 0.0006, + "loss": 3.6391024589538574, + "step": 2975 + }, + { + "epoch": 41.33551769331586, + "grad_norm": 0.23703549802303314, + "learning_rate": 0.0006, + "loss": 3.6609978675842285, + "step": 2976 + }, + { + "epoch": 41.34949759720402, + "grad_norm": 0.24222144484519958, + "learning_rate": 0.0006, + "loss": 3.659271478652954, + "step": 2977 + }, + { + "epoch": 41.36347750109218, + "grad_norm": 0.2228497713804245, + "learning_rate": 0.0006, + "loss": 3.607358455657959, + "step": 2978 + }, + { + "epoch": 41.37745740498034, + "grad_norm": 0.22105038166046143, + "learning_rate": 0.0006, + "loss": 3.64198899269104, + "step": 2979 + }, + { + "epoch": 41.391437308868504, + "grad_norm": 0.23753555119037628, + "learning_rate": 0.0006, + "loss": 3.63116455078125, + "step": 2980 + }, + { + "epoch": 41.40541721275666, + "grad_norm": 0.24492689967155457, + "learning_rate": 0.0006, + "loss": 3.636122465133667, + "step": 2981 + }, + { + "epoch": 41.419397116644824, + "grad_norm": 0.20610782504081726, + "learning_rate": 0.0006, + "loss": 3.656487226486206, + "step": 2982 + }, + { + "epoch": 41.43337702053299, + "grad_norm": 0.20781412720680237, + "learning_rate": 0.0006, + "loss": 3.669196605682373, + "step": 2983 + }, + { + "epoch": 41.44735692442114, + "grad_norm": 0.23892036080360413, + "learning_rate": 0.0006, + "loss": 3.6345765590667725, + "step": 2984 + }, + { + "epoch": 41.46133682830931, + "grad_norm": 0.2477712333202362, + "learning_rate": 0.0006, + "loss": 3.6599812507629395, + "step": 2985 + }, + { + "epoch": 41.47531673219746, + "grad_norm": 0.25314703583717346, + "learning_rate": 0.0006, + "loss": 3.6737258434295654, + "step": 2986 + }, + { + "epoch": 41.489296636085626, + "grad_norm": 0.2386070191860199, + "learning_rate": 0.0006, + "loss": 3.666586399078369, + "step": 2987 + }, + { + "epoch": 41.50327653997379, + "grad_norm": 0.27259722352027893, + "learning_rate": 0.0006, + "loss": 3.658761501312256, + "step": 2988 + }, + { + "epoch": 41.517256443861946, + "grad_norm": 0.3312860429286957, + "learning_rate": 0.0006, + "loss": 3.629699230194092, + "step": 2989 + }, + { + "epoch": 41.53123634775011, + "grad_norm": 0.3321581780910492, + "learning_rate": 0.0006, + "loss": 3.66628360748291, + "step": 2990 + }, + { + "epoch": 41.54521625163827, + "grad_norm": 0.2850016951560974, + "learning_rate": 0.0006, + "loss": 3.690005302429199, + "step": 2991 + }, + { + "epoch": 41.55919615552643, + "grad_norm": 0.2544100880622864, + "learning_rate": 0.0006, + "loss": 3.6554486751556396, + "step": 2992 + }, + { + "epoch": 41.57317605941459, + "grad_norm": 0.28541380167007446, + "learning_rate": 0.0006, + "loss": 3.672952175140381, + "step": 2993 + }, + { + "epoch": 41.58715596330275, + "grad_norm": 0.2909766435623169, + "learning_rate": 0.0006, + "loss": 3.6649627685546875, + "step": 2994 + }, + { + "epoch": 41.60113586719091, + "grad_norm": 0.26089969277381897, + "learning_rate": 0.0006, + "loss": 3.6512341499328613, + "step": 2995 + }, + { + "epoch": 41.615115771079076, + "grad_norm": 0.21815894544124603, + "learning_rate": 0.0006, + "loss": 3.612436056137085, + "step": 2996 + }, + { + "epoch": 41.62909567496723, + "grad_norm": 0.20712246000766754, + "learning_rate": 0.0006, + "loss": 3.6482479572296143, + "step": 2997 + }, + { + "epoch": 41.643075578855395, + "grad_norm": 0.23280103504657745, + "learning_rate": 0.0006, + "loss": 3.6648616790771484, + "step": 2998 + }, + { + "epoch": 41.65705548274356, + "grad_norm": 0.21623823046684265, + "learning_rate": 0.0006, + "loss": 3.6714487075805664, + "step": 2999 + }, + { + "epoch": 41.671035386631715, + "grad_norm": 0.2081632912158966, + "learning_rate": 0.0006, + "loss": 3.693014144897461, + "step": 3000 + }, + { + "epoch": 41.68501529051988, + "grad_norm": 0.23109425604343414, + "learning_rate": 0.0006, + "loss": 3.667262554168701, + "step": 3001 + }, + { + "epoch": 41.69899519440804, + "grad_norm": 0.2304934561252594, + "learning_rate": 0.0006, + "loss": 3.666405439376831, + "step": 3002 + }, + { + "epoch": 41.7129750982962, + "grad_norm": 0.23132432997226715, + "learning_rate": 0.0006, + "loss": 3.690964698791504, + "step": 3003 + }, + { + "epoch": 41.72695500218436, + "grad_norm": 0.2085159569978714, + "learning_rate": 0.0006, + "loss": 3.6620168685913086, + "step": 3004 + }, + { + "epoch": 41.74093490607252, + "grad_norm": 0.1919657438993454, + "learning_rate": 0.0006, + "loss": 3.67447566986084, + "step": 3005 + }, + { + "epoch": 41.75491480996068, + "grad_norm": 0.20189036428928375, + "learning_rate": 0.0006, + "loss": 3.6434998512268066, + "step": 3006 + }, + { + "epoch": 41.768894713848844, + "grad_norm": 0.23530980944633484, + "learning_rate": 0.0006, + "loss": 3.644280433654785, + "step": 3007 + }, + { + "epoch": 41.782874617737, + "grad_norm": 0.2550027370452881, + "learning_rate": 0.0006, + "loss": 3.6686060428619385, + "step": 3008 + }, + { + "epoch": 41.796854521625164, + "grad_norm": 0.2285512536764145, + "learning_rate": 0.0006, + "loss": 3.7013134956359863, + "step": 3009 + }, + { + "epoch": 41.81083442551333, + "grad_norm": 0.20538675785064697, + "learning_rate": 0.0006, + "loss": 3.6568830013275146, + "step": 3010 + }, + { + "epoch": 41.824814329401484, + "grad_norm": 0.2007976472377777, + "learning_rate": 0.0006, + "loss": 3.680250883102417, + "step": 3011 + }, + { + "epoch": 41.83879423328965, + "grad_norm": 0.20060500502586365, + "learning_rate": 0.0006, + "loss": 3.6565070152282715, + "step": 3012 + }, + { + "epoch": 41.8527741371778, + "grad_norm": 0.21055014431476593, + "learning_rate": 0.0006, + "loss": 3.661667823791504, + "step": 3013 + }, + { + "epoch": 41.86675404106597, + "grad_norm": 0.2201126217842102, + "learning_rate": 0.0006, + "loss": 3.650052070617676, + "step": 3014 + }, + { + "epoch": 41.88073394495413, + "grad_norm": 0.20397843420505524, + "learning_rate": 0.0006, + "loss": 3.6535415649414062, + "step": 3015 + }, + { + "epoch": 41.89471384884229, + "grad_norm": 0.1993463635444641, + "learning_rate": 0.0006, + "loss": 3.665696144104004, + "step": 3016 + }, + { + "epoch": 41.90869375273045, + "grad_norm": 0.20448797941207886, + "learning_rate": 0.0006, + "loss": 3.6448118686676025, + "step": 3017 + }, + { + "epoch": 41.92267365661861, + "grad_norm": 0.2064918726682663, + "learning_rate": 0.0006, + "loss": 3.6881537437438965, + "step": 3018 + }, + { + "epoch": 41.93665356050677, + "grad_norm": 0.20554372668266296, + "learning_rate": 0.0006, + "loss": 3.688559055328369, + "step": 3019 + }, + { + "epoch": 41.95063346439493, + "grad_norm": 0.1862783133983612, + "learning_rate": 0.0006, + "loss": 3.6713812351226807, + "step": 3020 + }, + { + "epoch": 41.964613368283096, + "grad_norm": 0.18139860033988953, + "learning_rate": 0.0006, + "loss": 3.6612548828125, + "step": 3021 + }, + { + "epoch": 41.97859327217125, + "grad_norm": 0.1844220608472824, + "learning_rate": 0.0006, + "loss": 3.641725540161133, + "step": 3022 + }, + { + "epoch": 41.992573176059416, + "grad_norm": 0.1885213702917099, + "learning_rate": 0.0006, + "loss": 3.663257122039795, + "step": 3023 + }, + { + "epoch": 42.0, + "grad_norm": 0.2250746339559555, + "learning_rate": 0.0006, + "loss": 3.6479320526123047, + "step": 3024 + }, + { + "epoch": 42.0, + "eval_loss": 3.993955135345459, + "eval_runtime": 44.4709, + "eval_samples_per_second": 54.912, + "eval_steps_per_second": 3.44, + "step": 3024 + }, + { + "epoch": 42.01397990388816, + "grad_norm": 0.21096517145633698, + "learning_rate": 0.0006, + "loss": 3.6729278564453125, + "step": 3025 + }, + { + "epoch": 42.02795980777632, + "grad_norm": 0.2106277495622635, + "learning_rate": 0.0006, + "loss": 3.629892349243164, + "step": 3026 + }, + { + "epoch": 42.04193971166448, + "grad_norm": 0.2673060894012451, + "learning_rate": 0.0006, + "loss": 3.643604040145874, + "step": 3027 + }, + { + "epoch": 42.05591961555265, + "grad_norm": 0.28180691599845886, + "learning_rate": 0.0006, + "loss": 3.596560478210449, + "step": 3028 + }, + { + "epoch": 42.0698995194408, + "grad_norm": 0.25607243180274963, + "learning_rate": 0.0006, + "loss": 3.597935199737549, + "step": 3029 + }, + { + "epoch": 42.083879423328966, + "grad_norm": 0.22120746970176697, + "learning_rate": 0.0006, + "loss": 3.6219305992126465, + "step": 3030 + }, + { + "epoch": 42.09785932721712, + "grad_norm": 0.2164907306432724, + "learning_rate": 0.0006, + "loss": 3.6220779418945312, + "step": 3031 + }, + { + "epoch": 42.111839231105286, + "grad_norm": 0.23800921440124512, + "learning_rate": 0.0006, + "loss": 3.63372540473938, + "step": 3032 + }, + { + "epoch": 42.12581913499345, + "grad_norm": 0.21812695264816284, + "learning_rate": 0.0006, + "loss": 3.636105537414551, + "step": 3033 + }, + { + "epoch": 42.139799038881605, + "grad_norm": 0.2027447372674942, + "learning_rate": 0.0006, + "loss": 3.6167502403259277, + "step": 3034 + }, + { + "epoch": 42.15377894276977, + "grad_norm": 0.20157714188098907, + "learning_rate": 0.0006, + "loss": 3.6141409873962402, + "step": 3035 + }, + { + "epoch": 42.16775884665793, + "grad_norm": 0.20780996978282928, + "learning_rate": 0.0006, + "loss": 3.6323471069335938, + "step": 3036 + }, + { + "epoch": 42.18173875054609, + "grad_norm": 0.20025081932544708, + "learning_rate": 0.0006, + "loss": 3.625446081161499, + "step": 3037 + }, + { + "epoch": 42.19571865443425, + "grad_norm": 0.20019082725048065, + "learning_rate": 0.0006, + "loss": 3.631418228149414, + "step": 3038 + }, + { + "epoch": 42.20969855832241, + "grad_norm": 0.21194526553153992, + "learning_rate": 0.0006, + "loss": 3.6180832386016846, + "step": 3039 + }, + { + "epoch": 42.22367846221057, + "grad_norm": 0.2016245573759079, + "learning_rate": 0.0006, + "loss": 3.6388602256774902, + "step": 3040 + }, + { + "epoch": 42.237658366098735, + "grad_norm": 0.1892252415418625, + "learning_rate": 0.0006, + "loss": 3.6086854934692383, + "step": 3041 + }, + { + "epoch": 42.25163826998689, + "grad_norm": 0.1878061145544052, + "learning_rate": 0.0006, + "loss": 3.599428176879883, + "step": 3042 + }, + { + "epoch": 42.265618173875055, + "grad_norm": 0.20258742570877075, + "learning_rate": 0.0006, + "loss": 3.6177172660827637, + "step": 3043 + }, + { + "epoch": 42.27959807776322, + "grad_norm": 0.2114444226026535, + "learning_rate": 0.0006, + "loss": 3.641916275024414, + "step": 3044 + }, + { + "epoch": 42.293577981651374, + "grad_norm": 0.19873645901679993, + "learning_rate": 0.0006, + "loss": 3.6585676670074463, + "step": 3045 + }, + { + "epoch": 42.30755788553954, + "grad_norm": 0.20361217856407166, + "learning_rate": 0.0006, + "loss": 3.648475170135498, + "step": 3046 + }, + { + "epoch": 42.3215377894277, + "grad_norm": 0.20227114856243134, + "learning_rate": 0.0006, + "loss": 3.63625431060791, + "step": 3047 + }, + { + "epoch": 42.33551769331586, + "grad_norm": 0.18246233463287354, + "learning_rate": 0.0006, + "loss": 3.6380200386047363, + "step": 3048 + }, + { + "epoch": 42.34949759720402, + "grad_norm": 0.17944976687431335, + "learning_rate": 0.0006, + "loss": 3.6325912475585938, + "step": 3049 + }, + { + "epoch": 42.36347750109218, + "grad_norm": 0.188584566116333, + "learning_rate": 0.0006, + "loss": 3.6418886184692383, + "step": 3050 + }, + { + "epoch": 42.37745740498034, + "grad_norm": 0.1917790323495865, + "learning_rate": 0.0006, + "loss": 3.664421558380127, + "step": 3051 + }, + { + "epoch": 42.391437308868504, + "grad_norm": 0.175637349486351, + "learning_rate": 0.0006, + "loss": 3.641819953918457, + "step": 3052 + }, + { + "epoch": 42.40541721275666, + "grad_norm": 0.18751518428325653, + "learning_rate": 0.0006, + "loss": 3.646697998046875, + "step": 3053 + }, + { + "epoch": 42.419397116644824, + "grad_norm": 0.1805887520313263, + "learning_rate": 0.0006, + "loss": 3.637866735458374, + "step": 3054 + }, + { + "epoch": 42.43337702053299, + "grad_norm": 0.19680845737457275, + "learning_rate": 0.0006, + "loss": 3.602511405944824, + "step": 3055 + }, + { + "epoch": 42.44735692442114, + "grad_norm": 0.20605766773223877, + "learning_rate": 0.0006, + "loss": 3.6472771167755127, + "step": 3056 + }, + { + "epoch": 42.46133682830931, + "grad_norm": 0.18083851039409637, + "learning_rate": 0.0006, + "loss": 3.6672325134277344, + "step": 3057 + }, + { + "epoch": 42.47531673219746, + "grad_norm": 0.19665084779262543, + "learning_rate": 0.0006, + "loss": 3.625300884246826, + "step": 3058 + }, + { + "epoch": 42.489296636085626, + "grad_norm": 0.22506165504455566, + "learning_rate": 0.0006, + "loss": 3.592872142791748, + "step": 3059 + }, + { + "epoch": 42.50327653997379, + "grad_norm": 0.2051578164100647, + "learning_rate": 0.0006, + "loss": 3.6302249431610107, + "step": 3060 + }, + { + "epoch": 42.517256443861946, + "grad_norm": 0.18957172334194183, + "learning_rate": 0.0006, + "loss": 3.6277074813842773, + "step": 3061 + }, + { + "epoch": 42.53123634775011, + "grad_norm": 0.21467208862304688, + "learning_rate": 0.0006, + "loss": 3.6121392250061035, + "step": 3062 + }, + { + "epoch": 42.54521625163827, + "grad_norm": 0.21618402004241943, + "learning_rate": 0.0006, + "loss": 3.664738655090332, + "step": 3063 + }, + { + "epoch": 42.55919615552643, + "grad_norm": 0.2259770780801773, + "learning_rate": 0.0006, + "loss": 3.652042865753174, + "step": 3064 + }, + { + "epoch": 42.57317605941459, + "grad_norm": 0.22667232155799866, + "learning_rate": 0.0006, + "loss": 3.6552934646606445, + "step": 3065 + }, + { + "epoch": 42.58715596330275, + "grad_norm": 0.21405228972434998, + "learning_rate": 0.0006, + "loss": 3.644043445587158, + "step": 3066 + }, + { + "epoch": 42.60113586719091, + "grad_norm": 0.20855450630187988, + "learning_rate": 0.0006, + "loss": 3.6534876823425293, + "step": 3067 + }, + { + "epoch": 42.615115771079076, + "grad_norm": 0.22474415600299835, + "learning_rate": 0.0006, + "loss": 3.656677484512329, + "step": 3068 + }, + { + "epoch": 42.62909567496723, + "grad_norm": 0.23401428759098053, + "learning_rate": 0.0006, + "loss": 3.6788997650146484, + "step": 3069 + }, + { + "epoch": 42.643075578855395, + "grad_norm": 0.21567967534065247, + "learning_rate": 0.0006, + "loss": 3.675379753112793, + "step": 3070 + }, + { + "epoch": 42.65705548274356, + "grad_norm": 0.21704941987991333, + "learning_rate": 0.0006, + "loss": 3.630707263946533, + "step": 3071 + }, + { + "epoch": 42.671035386631715, + "grad_norm": 0.2718963921070099, + "learning_rate": 0.0006, + "loss": 3.6653294563293457, + "step": 3072 + }, + { + "epoch": 42.68501529051988, + "grad_norm": 0.30198901891708374, + "learning_rate": 0.0006, + "loss": 3.6761326789855957, + "step": 3073 + }, + { + "epoch": 42.69899519440804, + "grad_norm": 0.27593618631362915, + "learning_rate": 0.0006, + "loss": 3.6610732078552246, + "step": 3074 + }, + { + "epoch": 42.7129750982962, + "grad_norm": 0.22495242953300476, + "learning_rate": 0.0006, + "loss": 3.656907320022583, + "step": 3075 + }, + { + "epoch": 42.72695500218436, + "grad_norm": 0.19872353971004486, + "learning_rate": 0.0006, + "loss": 3.6611597537994385, + "step": 3076 + }, + { + "epoch": 42.74093490607252, + "grad_norm": 0.21527111530303955, + "learning_rate": 0.0006, + "loss": 3.676821708679199, + "step": 3077 + }, + { + "epoch": 42.75491480996068, + "grad_norm": 0.22314463555812836, + "learning_rate": 0.0006, + "loss": 3.629460334777832, + "step": 3078 + }, + { + "epoch": 42.768894713848844, + "grad_norm": 0.23461024463176727, + "learning_rate": 0.0006, + "loss": 3.665390968322754, + "step": 3079 + }, + { + "epoch": 42.782874617737, + "grad_norm": 0.2582414448261261, + "learning_rate": 0.0006, + "loss": 3.6420979499816895, + "step": 3080 + }, + { + "epoch": 42.796854521625164, + "grad_norm": 0.2505052983760834, + "learning_rate": 0.0006, + "loss": 3.67236328125, + "step": 3081 + }, + { + "epoch": 42.81083442551333, + "grad_norm": 0.22617632150650024, + "learning_rate": 0.0006, + "loss": 3.654897689819336, + "step": 3082 + }, + { + "epoch": 42.824814329401484, + "grad_norm": 0.2340085208415985, + "learning_rate": 0.0006, + "loss": 3.6423635482788086, + "step": 3083 + }, + { + "epoch": 42.83879423328965, + "grad_norm": 0.26765671372413635, + "learning_rate": 0.0006, + "loss": 3.622769832611084, + "step": 3084 + }, + { + "epoch": 42.8527741371778, + "grad_norm": 0.29490381479263306, + "learning_rate": 0.0006, + "loss": 3.656053066253662, + "step": 3085 + }, + { + "epoch": 42.86675404106597, + "grad_norm": 0.29776132106781006, + "learning_rate": 0.0006, + "loss": 3.6454644203186035, + "step": 3086 + }, + { + "epoch": 42.88073394495413, + "grad_norm": 0.23994849622249603, + "learning_rate": 0.0006, + "loss": 3.674665927886963, + "step": 3087 + }, + { + "epoch": 42.89471384884229, + "grad_norm": 0.21456265449523926, + "learning_rate": 0.0006, + "loss": 3.670175790786743, + "step": 3088 + }, + { + "epoch": 42.90869375273045, + "grad_norm": 0.25727778673171997, + "learning_rate": 0.0006, + "loss": 3.6425390243530273, + "step": 3089 + }, + { + "epoch": 42.92267365661861, + "grad_norm": 0.30310627818107605, + "learning_rate": 0.0006, + "loss": 3.68511962890625, + "step": 3090 + }, + { + "epoch": 42.93665356050677, + "grad_norm": 0.2792291045188904, + "learning_rate": 0.0006, + "loss": 3.681732654571533, + "step": 3091 + }, + { + "epoch": 42.95063346439493, + "grad_norm": 0.23614276945590973, + "learning_rate": 0.0006, + "loss": 3.6417222023010254, + "step": 3092 + }, + { + "epoch": 42.964613368283096, + "grad_norm": 0.23602448403835297, + "learning_rate": 0.0006, + "loss": 3.6602869033813477, + "step": 3093 + }, + { + "epoch": 42.97859327217125, + "grad_norm": 0.21968287229537964, + "learning_rate": 0.0006, + "loss": 3.6618118286132812, + "step": 3094 + }, + { + "epoch": 42.992573176059416, + "grad_norm": 0.2177523374557495, + "learning_rate": 0.0006, + "loss": 3.666904926300049, + "step": 3095 + }, + { + "epoch": 43.0, + "grad_norm": 0.23960894346237183, + "learning_rate": 0.0006, + "loss": 3.710965633392334, + "step": 3096 + }, + { + "epoch": 43.0, + "eval_loss": 3.977475166320801, + "eval_runtime": 44.5209, + "eval_samples_per_second": 54.851, + "eval_steps_per_second": 3.437, + "step": 3096 + }, + { + "epoch": 43.01397990388816, + "grad_norm": 0.24180234968662262, + "learning_rate": 0.0006, + "loss": 3.5949223041534424, + "step": 3097 + }, + { + "epoch": 43.02795980777632, + "grad_norm": 0.3331127166748047, + "learning_rate": 0.0006, + "loss": 3.625802755355835, + "step": 3098 + }, + { + "epoch": 43.04193971166448, + "grad_norm": 0.38338130712509155, + "learning_rate": 0.0006, + "loss": 3.6390271186828613, + "step": 3099 + }, + { + "epoch": 43.05591961555265, + "grad_norm": 0.32292598485946655, + "learning_rate": 0.0006, + "loss": 3.630621910095215, + "step": 3100 + }, + { + "epoch": 43.0698995194408, + "grad_norm": 0.24179677665233612, + "learning_rate": 0.0006, + "loss": 3.6124491691589355, + "step": 3101 + }, + { + "epoch": 43.083879423328966, + "grad_norm": 0.2622842788696289, + "learning_rate": 0.0006, + "loss": 3.6207399368286133, + "step": 3102 + }, + { + "epoch": 43.09785932721712, + "grad_norm": 0.264297217130661, + "learning_rate": 0.0006, + "loss": 3.637218475341797, + "step": 3103 + }, + { + "epoch": 43.111839231105286, + "grad_norm": 0.25815117359161377, + "learning_rate": 0.0006, + "loss": 3.614841938018799, + "step": 3104 + }, + { + "epoch": 43.12581913499345, + "grad_norm": 0.2209406942129135, + "learning_rate": 0.0006, + "loss": 3.604722738265991, + "step": 3105 + }, + { + "epoch": 43.139799038881605, + "grad_norm": 0.22333410382270813, + "learning_rate": 0.0006, + "loss": 3.6388449668884277, + "step": 3106 + }, + { + "epoch": 43.15377894276977, + "grad_norm": 0.2194417119026184, + "learning_rate": 0.0006, + "loss": 3.611644744873047, + "step": 3107 + }, + { + "epoch": 43.16775884665793, + "grad_norm": 0.21270349621772766, + "learning_rate": 0.0006, + "loss": 3.6180214881896973, + "step": 3108 + }, + { + "epoch": 43.18173875054609, + "grad_norm": 0.21358032524585724, + "learning_rate": 0.0006, + "loss": 3.646512985229492, + "step": 3109 + }, + { + "epoch": 43.19571865443425, + "grad_norm": 0.2180788666009903, + "learning_rate": 0.0006, + "loss": 3.641981363296509, + "step": 3110 + }, + { + "epoch": 43.20969855832241, + "grad_norm": 0.21979685127735138, + "learning_rate": 0.0006, + "loss": 3.6251654624938965, + "step": 3111 + }, + { + "epoch": 43.22367846221057, + "grad_norm": 0.2072533220052719, + "learning_rate": 0.0006, + "loss": 3.665372371673584, + "step": 3112 + }, + { + "epoch": 43.237658366098735, + "grad_norm": 0.2085742950439453, + "learning_rate": 0.0006, + "loss": 3.647730827331543, + "step": 3113 + }, + { + "epoch": 43.25163826998689, + "grad_norm": 0.1934993416070938, + "learning_rate": 0.0006, + "loss": 3.6296567916870117, + "step": 3114 + }, + { + "epoch": 43.265618173875055, + "grad_norm": 0.1954783797264099, + "learning_rate": 0.0006, + "loss": 3.6412858963012695, + "step": 3115 + }, + { + "epoch": 43.27959807776322, + "grad_norm": 0.1932750642299652, + "learning_rate": 0.0006, + "loss": 3.6246860027313232, + "step": 3116 + }, + { + "epoch": 43.293577981651374, + "grad_norm": 0.19765302538871765, + "learning_rate": 0.0006, + "loss": 3.618922710418701, + "step": 3117 + }, + { + "epoch": 43.30755788553954, + "grad_norm": 0.1987425684928894, + "learning_rate": 0.0006, + "loss": 3.633185863494873, + "step": 3118 + }, + { + "epoch": 43.3215377894277, + "grad_norm": 0.1894739419221878, + "learning_rate": 0.0006, + "loss": 3.595709800720215, + "step": 3119 + }, + { + "epoch": 43.33551769331586, + "grad_norm": 0.19455872476100922, + "learning_rate": 0.0006, + "loss": 3.6309051513671875, + "step": 3120 + }, + { + "epoch": 43.34949759720402, + "grad_norm": 0.21448275446891785, + "learning_rate": 0.0006, + "loss": 3.6425981521606445, + "step": 3121 + }, + { + "epoch": 43.36347750109218, + "grad_norm": 0.24527893960475922, + "learning_rate": 0.0006, + "loss": 3.6497793197631836, + "step": 3122 + }, + { + "epoch": 43.37745740498034, + "grad_norm": 0.253231942653656, + "learning_rate": 0.0006, + "loss": 3.644453525543213, + "step": 3123 + }, + { + "epoch": 43.391437308868504, + "grad_norm": 0.2048978954553604, + "learning_rate": 0.0006, + "loss": 3.5963876247406006, + "step": 3124 + }, + { + "epoch": 43.40541721275666, + "grad_norm": 0.19951528310775757, + "learning_rate": 0.0006, + "loss": 3.6274406909942627, + "step": 3125 + }, + { + "epoch": 43.419397116644824, + "grad_norm": 0.2293875813484192, + "learning_rate": 0.0006, + "loss": 3.6482725143432617, + "step": 3126 + }, + { + "epoch": 43.43337702053299, + "grad_norm": 0.22379456460475922, + "learning_rate": 0.0006, + "loss": 3.6466073989868164, + "step": 3127 + }, + { + "epoch": 43.44735692442114, + "grad_norm": 0.2275441288948059, + "learning_rate": 0.0006, + "loss": 3.6529078483581543, + "step": 3128 + }, + { + "epoch": 43.46133682830931, + "grad_norm": 0.23014242947101593, + "learning_rate": 0.0006, + "loss": 3.6084837913513184, + "step": 3129 + }, + { + "epoch": 43.47531673219746, + "grad_norm": 0.22280924022197723, + "learning_rate": 0.0006, + "loss": 3.611320734024048, + "step": 3130 + }, + { + "epoch": 43.489296636085626, + "grad_norm": 0.19498756527900696, + "learning_rate": 0.0006, + "loss": 3.630185604095459, + "step": 3131 + }, + { + "epoch": 43.50327653997379, + "grad_norm": 0.21357767283916473, + "learning_rate": 0.0006, + "loss": 3.6509933471679688, + "step": 3132 + }, + { + "epoch": 43.517256443861946, + "grad_norm": 0.21775896847248077, + "learning_rate": 0.0006, + "loss": 3.635112762451172, + "step": 3133 + }, + { + "epoch": 43.53123634775011, + "grad_norm": 0.2035629004240036, + "learning_rate": 0.0006, + "loss": 3.658327102661133, + "step": 3134 + }, + { + "epoch": 43.54521625163827, + "grad_norm": 0.20083840191364288, + "learning_rate": 0.0006, + "loss": 3.632441997528076, + "step": 3135 + }, + { + "epoch": 43.55919615552643, + "grad_norm": 0.1922001987695694, + "learning_rate": 0.0006, + "loss": 3.6417734622955322, + "step": 3136 + }, + { + "epoch": 43.57317605941459, + "grad_norm": 0.21049264073371887, + "learning_rate": 0.0006, + "loss": 3.671274423599243, + "step": 3137 + }, + { + "epoch": 43.58715596330275, + "grad_norm": 0.21432001888751984, + "learning_rate": 0.0006, + "loss": 3.6216118335723877, + "step": 3138 + }, + { + "epoch": 43.60113586719091, + "grad_norm": 0.25448811054229736, + "learning_rate": 0.0006, + "loss": 3.658283233642578, + "step": 3139 + }, + { + "epoch": 43.615115771079076, + "grad_norm": 0.24313904345035553, + "learning_rate": 0.0006, + "loss": 3.6447594165802, + "step": 3140 + }, + { + "epoch": 43.62909567496723, + "grad_norm": 0.2332659363746643, + "learning_rate": 0.0006, + "loss": 3.625528573989868, + "step": 3141 + }, + { + "epoch": 43.643075578855395, + "grad_norm": 0.23222137987613678, + "learning_rate": 0.0006, + "loss": 3.6524429321289062, + "step": 3142 + }, + { + "epoch": 43.65705548274356, + "grad_norm": 0.2147051990032196, + "learning_rate": 0.0006, + "loss": 3.6517302989959717, + "step": 3143 + }, + { + "epoch": 43.671035386631715, + "grad_norm": 0.2464994341135025, + "learning_rate": 0.0006, + "loss": 3.654947519302368, + "step": 3144 + }, + { + "epoch": 43.68501529051988, + "grad_norm": 0.2365981936454773, + "learning_rate": 0.0006, + "loss": 3.638695240020752, + "step": 3145 + }, + { + "epoch": 43.69899519440804, + "grad_norm": 0.2325262874364853, + "learning_rate": 0.0006, + "loss": 3.6496055126190186, + "step": 3146 + }, + { + "epoch": 43.7129750982962, + "grad_norm": 0.2196085900068283, + "learning_rate": 0.0006, + "loss": 3.6323978900909424, + "step": 3147 + }, + { + "epoch": 43.72695500218436, + "grad_norm": 0.20404237508773804, + "learning_rate": 0.0006, + "loss": 3.6572763919830322, + "step": 3148 + }, + { + "epoch": 43.74093490607252, + "grad_norm": 0.2363257110118866, + "learning_rate": 0.0006, + "loss": 3.6347732543945312, + "step": 3149 + }, + { + "epoch": 43.75491480996068, + "grad_norm": 0.23671524226665497, + "learning_rate": 0.0006, + "loss": 3.650017023086548, + "step": 3150 + }, + { + "epoch": 43.768894713848844, + "grad_norm": 0.20892305672168732, + "learning_rate": 0.0006, + "loss": 3.638185977935791, + "step": 3151 + }, + { + "epoch": 43.782874617737, + "grad_norm": 0.18670055270195007, + "learning_rate": 0.0006, + "loss": 3.6647696495056152, + "step": 3152 + }, + { + "epoch": 43.796854521625164, + "grad_norm": 0.21818184852600098, + "learning_rate": 0.0006, + "loss": 3.663623332977295, + "step": 3153 + }, + { + "epoch": 43.81083442551333, + "grad_norm": 0.23472464084625244, + "learning_rate": 0.0006, + "loss": 3.650595188140869, + "step": 3154 + }, + { + "epoch": 43.824814329401484, + "grad_norm": 0.2266419678926468, + "learning_rate": 0.0006, + "loss": 3.6362059116363525, + "step": 3155 + }, + { + "epoch": 43.83879423328965, + "grad_norm": 0.2250787913799286, + "learning_rate": 0.0006, + "loss": 3.647970199584961, + "step": 3156 + }, + { + "epoch": 43.8527741371778, + "grad_norm": 0.21493776142597198, + "learning_rate": 0.0006, + "loss": 3.6510982513427734, + "step": 3157 + }, + { + "epoch": 43.86675404106597, + "grad_norm": 0.20783160626888275, + "learning_rate": 0.0006, + "loss": 3.654845714569092, + "step": 3158 + }, + { + "epoch": 43.88073394495413, + "grad_norm": 0.2222554087638855, + "learning_rate": 0.0006, + "loss": 3.6565685272216797, + "step": 3159 + }, + { + "epoch": 43.89471384884229, + "grad_norm": 0.2148049771785736, + "learning_rate": 0.0006, + "loss": 3.630779266357422, + "step": 3160 + }, + { + "epoch": 43.90869375273045, + "grad_norm": 0.2222086787223816, + "learning_rate": 0.0006, + "loss": 3.6312813758850098, + "step": 3161 + }, + { + "epoch": 43.92267365661861, + "grad_norm": 0.24049264192581177, + "learning_rate": 0.0006, + "loss": 3.6185736656188965, + "step": 3162 + }, + { + "epoch": 43.93665356050677, + "grad_norm": 0.2228843867778778, + "learning_rate": 0.0006, + "loss": 3.595583438873291, + "step": 3163 + }, + { + "epoch": 43.95063346439493, + "grad_norm": 0.20714408159255981, + "learning_rate": 0.0006, + "loss": 3.6649322509765625, + "step": 3164 + }, + { + "epoch": 43.964613368283096, + "grad_norm": 0.2048991471529007, + "learning_rate": 0.0006, + "loss": 3.6513710021972656, + "step": 3165 + }, + { + "epoch": 43.97859327217125, + "grad_norm": 0.21874114871025085, + "learning_rate": 0.0006, + "loss": 3.6471524238586426, + "step": 3166 + }, + { + "epoch": 43.992573176059416, + "grad_norm": 0.21309879422187805, + "learning_rate": 0.0006, + "loss": 3.647021770477295, + "step": 3167 + }, + { + "epoch": 44.0, + "grad_norm": 0.23717166483402252, + "learning_rate": 0.0006, + "loss": 3.6903820037841797, + "step": 3168 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 1.3500400842791977e+18, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3168/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3456/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3456/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3456/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3456/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3c9ce9202abc02f0d1b287ea08fc4040fa1ed6c4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad4c2a619ee0735cbc2fae8a3313c7663d9ea48cfd2a25464fb37529fb57d2bc +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3456/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..aac1c3644cb4a745ac0eac3be13b0136db1e24c1 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a68cb9db656e00f8353a2f9ba6e72b0137d76480bdeb05fb1421b7dd7b8eb8c +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3456/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..84b2b699f00aa941968fb2ce2a55da4350d635f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40ccd8666d0716e90666c6820d3329a5f153f7c068dde6f658eeb7db2ee687a7 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3456/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..d9a10b20076192348e453db3bf12b7615ca277b6 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13915961791d220744f4cdf0ec6aec4f2b9cf5aa7d04c12e238b8deae89db384 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3456/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..6f299b34b59cabea3196797084c0dd37275dcaa8 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a30063d3a42c95cfa4d505a809336bc072a917980dcfbeb28708fcb4baba115 +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3456/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3456/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3456/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..1c43d70bc3daddd64c761badb2fba6dda5aafb23 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/trainer_state.json @@ -0,0 +1,24602 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 48.0, + "eval_steps": 500, + "global_step": 3456, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + }, + { + "epoch": 8.0, + "eval_loss": 5.100707530975342, + "eval_runtime": 44.2493, + "eval_samples_per_second": 55.187, + "eval_steps_per_second": 3.458, + "step": 576 + }, + { + "epoch": 8.013979903888162, + "grad_norm": 0.3658510148525238, + "learning_rate": 0.0006, + "loss": 4.759055137634277, + "step": 577 + }, + { + "epoch": 8.027959807776321, + "grad_norm": 0.41794446110725403, + "learning_rate": 0.0006, + "loss": 4.737661838531494, + "step": 578 + }, + { + "epoch": 8.041939711664483, + "grad_norm": 0.43284085392951965, + "learning_rate": 0.0006, + "loss": 4.775538444519043, + "step": 579 + }, + { + "epoch": 8.055919615552643, + "grad_norm": 0.4716675281524658, + "learning_rate": 0.0006, + "loss": 4.762231826782227, + "step": 580 + }, + { + "epoch": 8.069899519440805, + "grad_norm": 0.3849579393863678, + "learning_rate": 0.0006, + "loss": 4.753598690032959, + "step": 581 + }, + { + "epoch": 8.083879423328964, + "grad_norm": 0.3721151053905487, + "learning_rate": 0.0006, + "loss": 4.728978157043457, + "step": 582 + }, + { + "epoch": 8.097859327217126, + "grad_norm": 0.37009572982788086, + "learning_rate": 0.0006, + "loss": 4.759153366088867, + "step": 583 + }, + { + "epoch": 8.111839231105286, + "grad_norm": 0.37051302194595337, + "learning_rate": 0.0006, + "loss": 4.744197368621826, + "step": 584 + }, + { + "epoch": 8.125819134993447, + "grad_norm": 0.331238329410553, + "learning_rate": 0.0006, + "loss": 4.7338385581970215, + "step": 585 + }, + { + "epoch": 8.139799038881607, + "grad_norm": 0.3737713694572449, + "learning_rate": 0.0006, + "loss": 4.719110488891602, + "step": 586 + }, + { + "epoch": 8.153778942769769, + "grad_norm": 0.3713214695453644, + "learning_rate": 0.0006, + "loss": 4.734012126922607, + "step": 587 + }, + { + "epoch": 8.167758846657929, + "grad_norm": 0.4060780107975006, + "learning_rate": 0.0006, + "loss": 4.746830940246582, + "step": 588 + }, + { + "epoch": 8.18173875054609, + "grad_norm": 0.39814314246177673, + "learning_rate": 0.0006, + "loss": 4.722851753234863, + "step": 589 + }, + { + "epoch": 8.19571865443425, + "grad_norm": 0.3175652325153351, + "learning_rate": 0.0006, + "loss": 4.745110034942627, + "step": 590 + }, + { + "epoch": 8.209698558322412, + "grad_norm": 0.37214916944503784, + "learning_rate": 0.0006, + "loss": 4.7362775802612305, + "step": 591 + }, + { + "epoch": 8.223678462210572, + "grad_norm": 0.3873472809791565, + "learning_rate": 0.0006, + "loss": 4.738964557647705, + "step": 592 + }, + { + "epoch": 8.237658366098733, + "grad_norm": 0.3299207091331482, + "learning_rate": 0.0006, + "loss": 4.713451385498047, + "step": 593 + }, + { + "epoch": 8.251638269986893, + "grad_norm": 0.32445064187049866, + "learning_rate": 0.0006, + "loss": 4.725602149963379, + "step": 594 + }, + { + "epoch": 8.265618173875055, + "grad_norm": 0.32903164625167847, + "learning_rate": 0.0006, + "loss": 4.732064247131348, + "step": 595 + }, + { + "epoch": 8.279598077763215, + "grad_norm": 0.3166804313659668, + "learning_rate": 0.0006, + "loss": 4.678950786590576, + "step": 596 + }, + { + "epoch": 8.293577981651376, + "grad_norm": 0.2750290334224701, + "learning_rate": 0.0006, + "loss": 4.719513416290283, + "step": 597 + }, + { + "epoch": 8.307557885539538, + "grad_norm": 0.291029691696167, + "learning_rate": 0.0006, + "loss": 4.715405464172363, + "step": 598 + }, + { + "epoch": 8.321537789427698, + "grad_norm": 0.34105145931243896, + "learning_rate": 0.0006, + "loss": 4.722611427307129, + "step": 599 + }, + { + "epoch": 8.33551769331586, + "grad_norm": 0.3078882694244385, + "learning_rate": 0.0006, + "loss": 4.668856620788574, + "step": 600 + }, + { + "epoch": 8.349497597204019, + "grad_norm": 0.3218833804130554, + "learning_rate": 0.0006, + "loss": 4.719579696655273, + "step": 601 + }, + { + "epoch": 8.36347750109218, + "grad_norm": 0.35716721415519714, + "learning_rate": 0.0006, + "loss": 4.690774440765381, + "step": 602 + }, + { + "epoch": 8.37745740498034, + "grad_norm": 0.3045452833175659, + "learning_rate": 0.0006, + "loss": 4.696503639221191, + "step": 603 + }, + { + "epoch": 8.391437308868502, + "grad_norm": 0.3127244710922241, + "learning_rate": 0.0006, + "loss": 4.701899528503418, + "step": 604 + }, + { + "epoch": 8.405417212756662, + "grad_norm": 0.34988710284233093, + "learning_rate": 0.0006, + "loss": 4.677641868591309, + "step": 605 + }, + { + "epoch": 8.419397116644824, + "grad_norm": 0.34035569429397583, + "learning_rate": 0.0006, + "loss": 4.707778453826904, + "step": 606 + }, + { + "epoch": 8.433377020532983, + "grad_norm": 0.3341112732887268, + "learning_rate": 0.0006, + "loss": 4.724853038787842, + "step": 607 + }, + { + "epoch": 8.447356924421145, + "grad_norm": 0.41744324564933777, + "learning_rate": 0.0006, + "loss": 4.680908203125, + "step": 608 + }, + { + "epoch": 8.461336828309305, + "grad_norm": 0.40402331948280334, + "learning_rate": 0.0006, + "loss": 4.726455211639404, + "step": 609 + }, + { + "epoch": 8.475316732197467, + "grad_norm": 0.4727570414543152, + "learning_rate": 0.0006, + "loss": 4.6793084144592285, + "step": 610 + }, + { + "epoch": 8.489296636085626, + "grad_norm": 0.43002694845199585, + "learning_rate": 0.0006, + "loss": 4.663918972015381, + "step": 611 + }, + { + "epoch": 8.503276539973788, + "grad_norm": 0.36124858260154724, + "learning_rate": 0.0006, + "loss": 4.657375335693359, + "step": 612 + }, + { + "epoch": 8.517256443861948, + "grad_norm": 0.37644803524017334, + "learning_rate": 0.0006, + "loss": 4.676977157592773, + "step": 613 + }, + { + "epoch": 8.53123634775011, + "grad_norm": 0.32347747683525085, + "learning_rate": 0.0006, + "loss": 4.708547115325928, + "step": 614 + }, + { + "epoch": 8.54521625163827, + "grad_norm": 0.3071717619895935, + "learning_rate": 0.0006, + "loss": 4.650189399719238, + "step": 615 + }, + { + "epoch": 8.55919615552643, + "grad_norm": 0.30222490429878235, + "learning_rate": 0.0006, + "loss": 4.647942543029785, + "step": 616 + }, + { + "epoch": 8.57317605941459, + "grad_norm": 0.31545212864875793, + "learning_rate": 0.0006, + "loss": 4.660242080688477, + "step": 617 + }, + { + "epoch": 8.587155963302752, + "grad_norm": 0.31644752621650696, + "learning_rate": 0.0006, + "loss": 4.666710376739502, + "step": 618 + }, + { + "epoch": 8.601135867190912, + "grad_norm": 0.26057198643684387, + "learning_rate": 0.0006, + "loss": 4.668096542358398, + "step": 619 + }, + { + "epoch": 8.615115771079074, + "grad_norm": 0.25473910570144653, + "learning_rate": 0.0006, + "loss": 4.641562461853027, + "step": 620 + }, + { + "epoch": 8.629095674967235, + "grad_norm": 0.2456732839345932, + "learning_rate": 0.0006, + "loss": 4.6545281410217285, + "step": 621 + }, + { + "epoch": 8.643075578855395, + "grad_norm": 0.25180476903915405, + "learning_rate": 0.0006, + "loss": 4.6506524085998535, + "step": 622 + }, + { + "epoch": 8.657055482743557, + "grad_norm": 0.21761579811573029, + "learning_rate": 0.0006, + "loss": 4.638909339904785, + "step": 623 + }, + { + "epoch": 8.671035386631717, + "grad_norm": 0.23590542376041412, + "learning_rate": 0.0006, + "loss": 4.6572747230529785, + "step": 624 + }, + { + "epoch": 8.685015290519878, + "grad_norm": 0.23870624601840973, + "learning_rate": 0.0006, + "loss": 4.643742084503174, + "step": 625 + }, + { + "epoch": 8.698995194408038, + "grad_norm": 0.2191203385591507, + "learning_rate": 0.0006, + "loss": 4.632617950439453, + "step": 626 + }, + { + "epoch": 8.7129750982962, + "grad_norm": 0.22107063233852386, + "learning_rate": 0.0006, + "loss": 4.625616073608398, + "step": 627 + }, + { + "epoch": 8.72695500218436, + "grad_norm": 0.20833902060985565, + "learning_rate": 0.0006, + "loss": 4.609896659851074, + "step": 628 + }, + { + "epoch": 8.740934906072521, + "grad_norm": 0.254967600107193, + "learning_rate": 0.0006, + "loss": 4.651735782623291, + "step": 629 + }, + { + "epoch": 8.754914809960681, + "grad_norm": 0.31587523221969604, + "learning_rate": 0.0006, + "loss": 4.6404032707214355, + "step": 630 + }, + { + "epoch": 8.768894713848843, + "grad_norm": 0.28598251938819885, + "learning_rate": 0.0006, + "loss": 4.602679252624512, + "step": 631 + }, + { + "epoch": 8.782874617737003, + "grad_norm": 0.23216590285301208, + "learning_rate": 0.0006, + "loss": 4.610319137573242, + "step": 632 + }, + { + "epoch": 8.796854521625164, + "grad_norm": 0.29212239384651184, + "learning_rate": 0.0006, + "loss": 4.600744247436523, + "step": 633 + }, + { + "epoch": 8.810834425513324, + "grad_norm": 0.3375801146030426, + "learning_rate": 0.0006, + "loss": 4.627819061279297, + "step": 634 + }, + { + "epoch": 8.824814329401486, + "grad_norm": 0.4207753837108612, + "learning_rate": 0.0006, + "loss": 4.634505271911621, + "step": 635 + }, + { + "epoch": 8.838794233289645, + "grad_norm": 0.4640173614025116, + "learning_rate": 0.0006, + "loss": 4.636714935302734, + "step": 636 + }, + { + "epoch": 8.852774137177807, + "grad_norm": 0.5255663990974426, + "learning_rate": 0.0006, + "loss": 4.659462928771973, + "step": 637 + }, + { + "epoch": 8.866754041065967, + "grad_norm": 0.5108268857002258, + "learning_rate": 0.0006, + "loss": 4.633192539215088, + "step": 638 + }, + { + "epoch": 8.880733944954128, + "grad_norm": 0.3821936845779419, + "learning_rate": 0.0006, + "loss": 4.621200084686279, + "step": 639 + }, + { + "epoch": 8.89471384884229, + "grad_norm": 0.3918485939502716, + "learning_rate": 0.0006, + "loss": 4.632599830627441, + "step": 640 + }, + { + "epoch": 8.90869375273045, + "grad_norm": 0.3416556119918823, + "learning_rate": 0.0006, + "loss": 4.620438098907471, + "step": 641 + }, + { + "epoch": 8.922673656618612, + "grad_norm": 0.3191553056240082, + "learning_rate": 0.0006, + "loss": 4.617823600769043, + "step": 642 + }, + { + "epoch": 8.936653560506771, + "grad_norm": 0.3368529677391052, + "learning_rate": 0.0006, + "loss": 4.617222785949707, + "step": 643 + }, + { + "epoch": 8.950633464394933, + "grad_norm": 0.3255428969860077, + "learning_rate": 0.0006, + "loss": 4.633878707885742, + "step": 644 + }, + { + "epoch": 8.964613368283093, + "grad_norm": 0.31394779682159424, + "learning_rate": 0.0006, + "loss": 4.642603874206543, + "step": 645 + }, + { + "epoch": 8.978593272171254, + "grad_norm": 0.29999351501464844, + "learning_rate": 0.0006, + "loss": 4.5925211906433105, + "step": 646 + }, + { + "epoch": 8.992573176059414, + "grad_norm": 0.309154748916626, + "learning_rate": 0.0006, + "loss": 4.61745023727417, + "step": 647 + }, + { + "epoch": 9.0, + "grad_norm": 0.2660452425479889, + "learning_rate": 0.0006, + "loss": 4.575107097625732, + "step": 648 + }, + { + "epoch": 9.0, + "eval_loss": 4.8804192543029785, + "eval_runtime": 45.0015, + "eval_samples_per_second": 54.265, + "eval_steps_per_second": 3.4, + "step": 648 + }, + { + "epoch": 9.013979903888162, + "grad_norm": 0.24159297347068787, + "learning_rate": 0.0006, + "loss": 4.571323871612549, + "step": 649 + }, + { + "epoch": 9.027959807776321, + "grad_norm": 0.2835831046104431, + "learning_rate": 0.0006, + "loss": 4.614255905151367, + "step": 650 + }, + { + "epoch": 9.041939711664483, + "grad_norm": 0.2646859288215637, + "learning_rate": 0.0006, + "loss": 4.578947067260742, + "step": 651 + }, + { + "epoch": 9.055919615552643, + "grad_norm": 0.28868553042411804, + "learning_rate": 0.0006, + "loss": 4.575977325439453, + "step": 652 + }, + { + "epoch": 9.069899519440805, + "grad_norm": 0.2899586856365204, + "learning_rate": 0.0006, + "loss": 4.541798114776611, + "step": 653 + }, + { + "epoch": 9.083879423328964, + "grad_norm": 0.32786068320274353, + "learning_rate": 0.0006, + "loss": 4.575140953063965, + "step": 654 + }, + { + "epoch": 9.097859327217126, + "grad_norm": 0.35675594210624695, + "learning_rate": 0.0006, + "loss": 4.58184814453125, + "step": 655 + }, + { + "epoch": 9.111839231105286, + "grad_norm": 0.3380381166934967, + "learning_rate": 0.0006, + "loss": 4.546271324157715, + "step": 656 + }, + { + "epoch": 9.125819134993447, + "grad_norm": 0.3035511374473572, + "learning_rate": 0.0006, + "loss": 4.591629981994629, + "step": 657 + }, + { + "epoch": 9.139799038881607, + "grad_norm": 0.2733091711997986, + "learning_rate": 0.0006, + "loss": 4.559020042419434, + "step": 658 + }, + { + "epoch": 9.153778942769769, + "grad_norm": 0.2870676815509796, + "learning_rate": 0.0006, + "loss": 4.552787780761719, + "step": 659 + }, + { + "epoch": 9.167758846657929, + "grad_norm": 0.37471064925193787, + "learning_rate": 0.0006, + "loss": 4.572757244110107, + "step": 660 + }, + { + "epoch": 9.18173875054609, + "grad_norm": 0.37889063358306885, + "learning_rate": 0.0006, + "loss": 4.573302268981934, + "step": 661 + }, + { + "epoch": 9.19571865443425, + "grad_norm": 0.29983851313591003, + "learning_rate": 0.0006, + "loss": 4.571202754974365, + "step": 662 + }, + { + "epoch": 9.209698558322412, + "grad_norm": 0.27595147490501404, + "learning_rate": 0.0006, + "loss": 4.529508590698242, + "step": 663 + }, + { + "epoch": 9.223678462210572, + "grad_norm": 0.22693437337875366, + "learning_rate": 0.0006, + "loss": 4.572267532348633, + "step": 664 + }, + { + "epoch": 9.237658366098733, + "grad_norm": 0.27147138118743896, + "learning_rate": 0.0006, + "loss": 4.529747009277344, + "step": 665 + }, + { + "epoch": 9.251638269986893, + "grad_norm": 0.24952703714370728, + "learning_rate": 0.0006, + "loss": 4.553647994995117, + "step": 666 + }, + { + "epoch": 9.265618173875055, + "grad_norm": 0.3086707592010498, + "learning_rate": 0.0006, + "loss": 4.494636058807373, + "step": 667 + }, + { + "epoch": 9.279598077763215, + "grad_norm": 0.3265218138694763, + "learning_rate": 0.0006, + "loss": 4.522481918334961, + "step": 668 + }, + { + "epoch": 9.293577981651376, + "grad_norm": 0.2744608223438263, + "learning_rate": 0.0006, + "loss": 4.544595241546631, + "step": 669 + }, + { + "epoch": 9.307557885539538, + "grad_norm": 0.26698485016822815, + "learning_rate": 0.0006, + "loss": 4.506407260894775, + "step": 670 + }, + { + "epoch": 9.321537789427698, + "grad_norm": 0.2775942087173462, + "learning_rate": 0.0006, + "loss": 4.534619331359863, + "step": 671 + }, + { + "epoch": 9.33551769331586, + "grad_norm": 0.2421862781047821, + "learning_rate": 0.0006, + "loss": 4.523318290710449, + "step": 672 + }, + { + "epoch": 9.349497597204019, + "grad_norm": 0.2756497263908386, + "learning_rate": 0.0006, + "loss": 4.517561912536621, + "step": 673 + }, + { + "epoch": 9.36347750109218, + "grad_norm": 0.28845369815826416, + "learning_rate": 0.0006, + "loss": 4.530844688415527, + "step": 674 + }, + { + "epoch": 9.37745740498034, + "grad_norm": 0.32285866141319275, + "learning_rate": 0.0006, + "loss": 4.55369758605957, + "step": 675 + }, + { + "epoch": 9.391437308868502, + "grad_norm": 0.3726065754890442, + "learning_rate": 0.0006, + "loss": 4.524348258972168, + "step": 676 + }, + { + "epoch": 9.405417212756662, + "grad_norm": 0.39524078369140625, + "learning_rate": 0.0006, + "loss": 4.535778045654297, + "step": 677 + }, + { + "epoch": 9.419397116644824, + "grad_norm": 0.3859797716140747, + "learning_rate": 0.0006, + "loss": 4.538474082946777, + "step": 678 + }, + { + "epoch": 9.433377020532983, + "grad_norm": 0.36151406168937683, + "learning_rate": 0.0006, + "loss": 4.54434061050415, + "step": 679 + }, + { + "epoch": 9.447356924421145, + "grad_norm": 0.40345999598503113, + "learning_rate": 0.0006, + "loss": 4.532961845397949, + "step": 680 + }, + { + "epoch": 9.461336828309305, + "grad_norm": 0.38864144682884216, + "learning_rate": 0.0006, + "loss": 4.567630767822266, + "step": 681 + }, + { + "epoch": 9.475316732197467, + "grad_norm": 0.3816355764865875, + "learning_rate": 0.0006, + "loss": 4.535771369934082, + "step": 682 + }, + { + "epoch": 9.489296636085626, + "grad_norm": 0.38756558299064636, + "learning_rate": 0.0006, + "loss": 4.4971089363098145, + "step": 683 + }, + { + "epoch": 9.503276539973788, + "grad_norm": 0.4572933614253998, + "learning_rate": 0.0006, + "loss": 4.534860134124756, + "step": 684 + }, + { + "epoch": 9.517256443861948, + "grad_norm": 0.42368650436401367, + "learning_rate": 0.0006, + "loss": 4.542638301849365, + "step": 685 + }, + { + "epoch": 9.53123634775011, + "grad_norm": 0.36939486861228943, + "learning_rate": 0.0006, + "loss": 4.571430206298828, + "step": 686 + }, + { + "epoch": 9.54521625163827, + "grad_norm": 0.3900398313999176, + "learning_rate": 0.0006, + "loss": 4.544435501098633, + "step": 687 + }, + { + "epoch": 9.55919615552643, + "grad_norm": 0.37829288840293884, + "learning_rate": 0.0006, + "loss": 4.564268112182617, + "step": 688 + }, + { + "epoch": 9.57317605941459, + "grad_norm": 0.3553886115550995, + "learning_rate": 0.0006, + "loss": 4.5373430252075195, + "step": 689 + }, + { + "epoch": 9.587155963302752, + "grad_norm": 0.3613419532775879, + "learning_rate": 0.0006, + "loss": 4.559074401855469, + "step": 690 + }, + { + "epoch": 9.601135867190912, + "grad_norm": 0.32644546031951904, + "learning_rate": 0.0006, + "loss": 4.533667087554932, + "step": 691 + }, + { + "epoch": 9.615115771079074, + "grad_norm": 0.3264399468898773, + "learning_rate": 0.0006, + "loss": 4.508299350738525, + "step": 692 + }, + { + "epoch": 9.629095674967235, + "grad_norm": 0.3534526526927948, + "learning_rate": 0.0006, + "loss": 4.542442798614502, + "step": 693 + }, + { + "epoch": 9.643075578855395, + "grad_norm": 0.3333452343940735, + "learning_rate": 0.0006, + "loss": 4.497692584991455, + "step": 694 + }, + { + "epoch": 9.657055482743557, + "grad_norm": 0.3214292526245117, + "learning_rate": 0.0006, + "loss": 4.512363433837891, + "step": 695 + }, + { + "epoch": 9.671035386631717, + "grad_norm": 0.2805672585964203, + "learning_rate": 0.0006, + "loss": 4.496874809265137, + "step": 696 + }, + { + "epoch": 9.685015290519878, + "grad_norm": 0.2618725895881653, + "learning_rate": 0.0006, + "loss": 4.51375675201416, + "step": 697 + }, + { + "epoch": 9.698995194408038, + "grad_norm": 0.2556597888469696, + "learning_rate": 0.0006, + "loss": 4.512338638305664, + "step": 698 + }, + { + "epoch": 9.7129750982962, + "grad_norm": 0.23784305155277252, + "learning_rate": 0.0006, + "loss": 4.486503601074219, + "step": 699 + }, + { + "epoch": 9.72695500218436, + "grad_norm": 0.2240338921546936, + "learning_rate": 0.0006, + "loss": 4.486850261688232, + "step": 700 + }, + { + "epoch": 9.740934906072521, + "grad_norm": 0.24686725437641144, + "learning_rate": 0.0006, + "loss": 4.501359462738037, + "step": 701 + }, + { + "epoch": 9.754914809960681, + "grad_norm": 0.20819595456123352, + "learning_rate": 0.0006, + "loss": 4.495186805725098, + "step": 702 + }, + { + "epoch": 9.768894713848843, + "grad_norm": 0.21858957409858704, + "learning_rate": 0.0006, + "loss": 4.475093364715576, + "step": 703 + }, + { + "epoch": 9.782874617737003, + "grad_norm": 0.22676466405391693, + "learning_rate": 0.0006, + "loss": 4.4702534675598145, + "step": 704 + }, + { + "epoch": 9.796854521625164, + "grad_norm": 0.18317611515522003, + "learning_rate": 0.0006, + "loss": 4.471231937408447, + "step": 705 + }, + { + "epoch": 9.810834425513324, + "grad_norm": 0.20979148149490356, + "learning_rate": 0.0006, + "loss": 4.454103946685791, + "step": 706 + }, + { + "epoch": 9.824814329401486, + "grad_norm": 0.2146051526069641, + "learning_rate": 0.0006, + "loss": 4.505178928375244, + "step": 707 + }, + { + "epoch": 9.838794233289645, + "grad_norm": 0.2344852089881897, + "learning_rate": 0.0006, + "loss": 4.437984943389893, + "step": 708 + }, + { + "epoch": 9.852774137177807, + "grad_norm": 0.26532089710235596, + "learning_rate": 0.0006, + "loss": 4.477126121520996, + "step": 709 + }, + { + "epoch": 9.866754041065967, + "grad_norm": 0.2737913131713867, + "learning_rate": 0.0006, + "loss": 4.498421669006348, + "step": 710 + }, + { + "epoch": 9.880733944954128, + "grad_norm": 0.26651278138160706, + "learning_rate": 0.0006, + "loss": 4.480839729309082, + "step": 711 + }, + { + "epoch": 9.89471384884229, + "grad_norm": 0.26576584577560425, + "learning_rate": 0.0006, + "loss": 4.490936279296875, + "step": 712 + }, + { + "epoch": 9.90869375273045, + "grad_norm": 0.22483965754508972, + "learning_rate": 0.0006, + "loss": 4.477953910827637, + "step": 713 + }, + { + "epoch": 9.922673656618612, + "grad_norm": 0.23576045036315918, + "learning_rate": 0.0006, + "loss": 4.4731292724609375, + "step": 714 + }, + { + "epoch": 9.936653560506771, + "grad_norm": 0.2731139361858368, + "learning_rate": 0.0006, + "loss": 4.441622734069824, + "step": 715 + }, + { + "epoch": 9.950633464394933, + "grad_norm": 0.2677643597126007, + "learning_rate": 0.0006, + "loss": 4.49604606628418, + "step": 716 + }, + { + "epoch": 9.964613368283093, + "grad_norm": 0.21940895915031433, + "learning_rate": 0.0006, + "loss": 4.485573768615723, + "step": 717 + }, + { + "epoch": 9.978593272171254, + "grad_norm": 0.2060987651348114, + "learning_rate": 0.0006, + "loss": 4.482657432556152, + "step": 718 + }, + { + "epoch": 9.992573176059414, + "grad_norm": 0.22163978219032288, + "learning_rate": 0.0006, + "loss": 4.478459358215332, + "step": 719 + }, + { + "epoch": 10.0, + "grad_norm": 0.2505086064338684, + "learning_rate": 0.0006, + "loss": 4.4393510818481445, + "step": 720 + }, + { + "epoch": 10.0, + "eval_loss": 4.695676803588867, + "eval_runtime": 49.0751, + "eval_samples_per_second": 49.76, + "eval_steps_per_second": 3.118, + "step": 720 + }, + { + "epoch": 10.013979903888162, + "grad_norm": 0.23820190131664276, + "learning_rate": 0.0006, + "loss": 4.437685489654541, + "step": 721 + }, + { + "epoch": 10.027959807776321, + "grad_norm": 0.2220371812582016, + "learning_rate": 0.0006, + "loss": 4.449873924255371, + "step": 722 + }, + { + "epoch": 10.041939711664483, + "grad_norm": 0.20369848608970642, + "learning_rate": 0.0006, + "loss": 4.448882579803467, + "step": 723 + }, + { + "epoch": 10.055919615552643, + "grad_norm": 0.2360001504421234, + "learning_rate": 0.0006, + "loss": 4.399251937866211, + "step": 724 + }, + { + "epoch": 10.069899519440805, + "grad_norm": 0.23537491261959076, + "learning_rate": 0.0006, + "loss": 4.442960739135742, + "step": 725 + }, + { + "epoch": 10.083879423328964, + "grad_norm": 0.24433870613574982, + "learning_rate": 0.0006, + "loss": 4.44808292388916, + "step": 726 + }, + { + "epoch": 10.097859327217126, + "grad_norm": 0.3406696021556854, + "learning_rate": 0.0006, + "loss": 4.443426132202148, + "step": 727 + }, + { + "epoch": 10.111839231105286, + "grad_norm": 0.4102286100387573, + "learning_rate": 0.0006, + "loss": 4.424919605255127, + "step": 728 + }, + { + "epoch": 10.125819134993447, + "grad_norm": 0.36462604999542236, + "learning_rate": 0.0006, + "loss": 4.45366907119751, + "step": 729 + }, + { + "epoch": 10.139799038881607, + "grad_norm": 0.4374827444553375, + "learning_rate": 0.0006, + "loss": 4.415630340576172, + "step": 730 + }, + { + "epoch": 10.153778942769769, + "grad_norm": 0.45248138904571533, + "learning_rate": 0.0006, + "loss": 4.448849678039551, + "step": 731 + }, + { + "epoch": 10.167758846657929, + "grad_norm": 0.3806457221508026, + "learning_rate": 0.0006, + "loss": 4.443390846252441, + "step": 732 + }, + { + "epoch": 10.18173875054609, + "grad_norm": 0.3491523861885071, + "learning_rate": 0.0006, + "loss": 4.4648637771606445, + "step": 733 + }, + { + "epoch": 10.19571865443425, + "grad_norm": 0.3327210247516632, + "learning_rate": 0.0006, + "loss": 4.460919380187988, + "step": 734 + }, + { + "epoch": 10.209698558322412, + "grad_norm": 0.29772236943244934, + "learning_rate": 0.0006, + "loss": 4.45159912109375, + "step": 735 + }, + { + "epoch": 10.223678462210572, + "grad_norm": 0.33083397150039673, + "learning_rate": 0.0006, + "loss": 4.463382720947266, + "step": 736 + }, + { + "epoch": 10.237658366098733, + "grad_norm": 0.3930598795413971, + "learning_rate": 0.0006, + "loss": 4.434510231018066, + "step": 737 + }, + { + "epoch": 10.251638269986893, + "grad_norm": 0.4342896044254303, + "learning_rate": 0.0006, + "loss": 4.451700210571289, + "step": 738 + }, + { + "epoch": 10.265618173875055, + "grad_norm": 0.4544043242931366, + "learning_rate": 0.0006, + "loss": 4.437224388122559, + "step": 739 + }, + { + "epoch": 10.279598077763215, + "grad_norm": 0.4487038254737854, + "learning_rate": 0.0006, + "loss": 4.46157693862915, + "step": 740 + }, + { + "epoch": 10.293577981651376, + "grad_norm": 0.4420500695705414, + "learning_rate": 0.0006, + "loss": 4.399561405181885, + "step": 741 + }, + { + "epoch": 10.307557885539538, + "grad_norm": 0.4167289435863495, + "learning_rate": 0.0006, + "loss": 4.41792106628418, + "step": 742 + }, + { + "epoch": 10.321537789427698, + "grad_norm": 0.3186971843242645, + "learning_rate": 0.0006, + "loss": 4.435683250427246, + "step": 743 + }, + { + "epoch": 10.33551769331586, + "grad_norm": 0.3077184855937958, + "learning_rate": 0.0006, + "loss": 4.481947898864746, + "step": 744 + }, + { + "epoch": 10.349497597204019, + "grad_norm": 0.26811280846595764, + "learning_rate": 0.0006, + "loss": 4.4339447021484375, + "step": 745 + }, + { + "epoch": 10.36347750109218, + "grad_norm": 0.28448057174682617, + "learning_rate": 0.0006, + "loss": 4.441644668579102, + "step": 746 + }, + { + "epoch": 10.37745740498034, + "grad_norm": 0.30731502175331116, + "learning_rate": 0.0006, + "loss": 4.428773880004883, + "step": 747 + }, + { + "epoch": 10.391437308868502, + "grad_norm": 0.28036001324653625, + "learning_rate": 0.0006, + "loss": 4.4433135986328125, + "step": 748 + }, + { + "epoch": 10.405417212756662, + "grad_norm": 0.2882847189903259, + "learning_rate": 0.0006, + "loss": 4.433401107788086, + "step": 749 + }, + { + "epoch": 10.419397116644824, + "grad_norm": 0.23622776567935944, + "learning_rate": 0.0006, + "loss": 4.444611549377441, + "step": 750 + }, + { + "epoch": 10.433377020532983, + "grad_norm": 0.2306167632341385, + "learning_rate": 0.0006, + "loss": 4.397875785827637, + "step": 751 + }, + { + "epoch": 10.447356924421145, + "grad_norm": 0.22725090384483337, + "learning_rate": 0.0006, + "loss": 4.429759502410889, + "step": 752 + }, + { + "epoch": 10.461336828309305, + "grad_norm": 0.250709593296051, + "learning_rate": 0.0006, + "loss": 4.415618896484375, + "step": 753 + }, + { + "epoch": 10.475316732197467, + "grad_norm": 0.22341276705265045, + "learning_rate": 0.0006, + "loss": 4.389362335205078, + "step": 754 + }, + { + "epoch": 10.489296636085626, + "grad_norm": 0.22595296800136566, + "learning_rate": 0.0006, + "loss": 4.383584022521973, + "step": 755 + }, + { + "epoch": 10.503276539973788, + "grad_norm": 0.24277575314044952, + "learning_rate": 0.0006, + "loss": 4.403777599334717, + "step": 756 + }, + { + "epoch": 10.517256443861948, + "grad_norm": 0.2670708894729614, + "learning_rate": 0.0006, + "loss": 4.398499011993408, + "step": 757 + }, + { + "epoch": 10.53123634775011, + "grad_norm": 0.2640696167945862, + "learning_rate": 0.0006, + "loss": 4.426726818084717, + "step": 758 + }, + { + "epoch": 10.54521625163827, + "grad_norm": 0.2248653769493103, + "learning_rate": 0.0006, + "loss": 4.400103569030762, + "step": 759 + }, + { + "epoch": 10.55919615552643, + "grad_norm": 0.21466240286827087, + "learning_rate": 0.0006, + "loss": 4.404158592224121, + "step": 760 + }, + { + "epoch": 10.57317605941459, + "grad_norm": 0.236923947930336, + "learning_rate": 0.0006, + "loss": 4.37059211730957, + "step": 761 + }, + { + "epoch": 10.587155963302752, + "grad_norm": 0.2515387535095215, + "learning_rate": 0.0006, + "loss": 4.415055274963379, + "step": 762 + }, + { + "epoch": 10.601135867190912, + "grad_norm": 0.23461885750293732, + "learning_rate": 0.0006, + "loss": 4.375036239624023, + "step": 763 + }, + { + "epoch": 10.615115771079074, + "grad_norm": 0.20975761115550995, + "learning_rate": 0.0006, + "loss": 4.3903398513793945, + "step": 764 + }, + { + "epoch": 10.629095674967235, + "grad_norm": 0.19859997928142548, + "learning_rate": 0.0006, + "loss": 4.379380226135254, + "step": 765 + }, + { + "epoch": 10.643075578855395, + "grad_norm": 0.22310325503349304, + "learning_rate": 0.0006, + "loss": 4.382110595703125, + "step": 766 + }, + { + "epoch": 10.657055482743557, + "grad_norm": 0.23940646648406982, + "learning_rate": 0.0006, + "loss": 4.393403053283691, + "step": 767 + }, + { + "epoch": 10.671035386631717, + "grad_norm": 0.2230468988418579, + "learning_rate": 0.0006, + "loss": 4.391970634460449, + "step": 768 + }, + { + "epoch": 10.685015290519878, + "grad_norm": 0.18139775097370148, + "learning_rate": 0.0006, + "loss": 4.399993896484375, + "step": 769 + }, + { + "epoch": 10.698995194408038, + "grad_norm": 0.19936902821063995, + "learning_rate": 0.0006, + "loss": 4.373854160308838, + "step": 770 + }, + { + "epoch": 10.7129750982962, + "grad_norm": 0.22132465243339539, + "learning_rate": 0.0006, + "loss": 4.377530097961426, + "step": 771 + }, + { + "epoch": 10.72695500218436, + "grad_norm": 0.24254944920539856, + "learning_rate": 0.0006, + "loss": 4.398683547973633, + "step": 772 + }, + { + "epoch": 10.740934906072521, + "grad_norm": 0.2666397988796234, + "learning_rate": 0.0006, + "loss": 4.3879899978637695, + "step": 773 + }, + { + "epoch": 10.754914809960681, + "grad_norm": 0.24728631973266602, + "learning_rate": 0.0006, + "loss": 4.356976509094238, + "step": 774 + }, + { + "epoch": 10.768894713848843, + "grad_norm": 0.2612453103065491, + "learning_rate": 0.0006, + "loss": 4.391525745391846, + "step": 775 + }, + { + "epoch": 10.782874617737003, + "grad_norm": 0.24060510098934174, + "learning_rate": 0.0006, + "loss": 4.376985549926758, + "step": 776 + }, + { + "epoch": 10.796854521625164, + "grad_norm": 0.22708238661289215, + "learning_rate": 0.0006, + "loss": 4.368545055389404, + "step": 777 + }, + { + "epoch": 10.810834425513324, + "grad_norm": 0.26931291818618774, + "learning_rate": 0.0006, + "loss": 4.369227409362793, + "step": 778 + }, + { + "epoch": 10.824814329401486, + "grad_norm": 0.265288770198822, + "learning_rate": 0.0006, + "loss": 4.378131866455078, + "step": 779 + }, + { + "epoch": 10.838794233289645, + "grad_norm": 0.3015305697917938, + "learning_rate": 0.0006, + "loss": 4.376267910003662, + "step": 780 + }, + { + "epoch": 10.852774137177807, + "grad_norm": 0.3345746099948883, + "learning_rate": 0.0006, + "loss": 4.3751420974731445, + "step": 781 + }, + { + "epoch": 10.866754041065967, + "grad_norm": 0.32446005940437317, + "learning_rate": 0.0006, + "loss": 4.370899200439453, + "step": 782 + }, + { + "epoch": 10.880733944954128, + "grad_norm": 0.27070069313049316, + "learning_rate": 0.0006, + "loss": 4.391958236694336, + "step": 783 + }, + { + "epoch": 10.89471384884229, + "grad_norm": 0.25584667921066284, + "learning_rate": 0.0006, + "loss": 4.407493591308594, + "step": 784 + }, + { + "epoch": 10.90869375273045, + "grad_norm": 0.2710244655609131, + "learning_rate": 0.0006, + "loss": 4.374400615692139, + "step": 785 + }, + { + "epoch": 10.922673656618612, + "grad_norm": 0.32413622736930847, + "learning_rate": 0.0006, + "loss": 4.379607200622559, + "step": 786 + }, + { + "epoch": 10.936653560506771, + "grad_norm": 0.3253782391548157, + "learning_rate": 0.0006, + "loss": 4.376441955566406, + "step": 787 + }, + { + "epoch": 10.950633464394933, + "grad_norm": 0.30534613132476807, + "learning_rate": 0.0006, + "loss": 4.382739067077637, + "step": 788 + }, + { + "epoch": 10.964613368283093, + "grad_norm": 0.35726621747016907, + "learning_rate": 0.0006, + "loss": 4.3765869140625, + "step": 789 + }, + { + "epoch": 10.978593272171254, + "grad_norm": 0.32763028144836426, + "learning_rate": 0.0006, + "loss": 4.391537189483643, + "step": 790 + }, + { + "epoch": 10.992573176059414, + "grad_norm": 0.31811195611953735, + "learning_rate": 0.0006, + "loss": 4.371829032897949, + "step": 791 + }, + { + "epoch": 11.0, + "grad_norm": 0.37317267060279846, + "learning_rate": 0.0006, + "loss": 4.381916522979736, + "step": 792 + }, + { + "epoch": 11.0, + "eval_loss": 4.588687896728516, + "eval_runtime": 44.8041, + "eval_samples_per_second": 54.504, + "eval_steps_per_second": 3.415, + "step": 792 + }, + { + "epoch": 11.013979903888162, + "grad_norm": 0.37882938981056213, + "learning_rate": 0.0006, + "loss": 4.3463640213012695, + "step": 793 + }, + { + "epoch": 11.027959807776321, + "grad_norm": 0.34719496965408325, + "learning_rate": 0.0006, + "loss": 4.329861640930176, + "step": 794 + }, + { + "epoch": 11.041939711664483, + "grad_norm": 0.36161214113235474, + "learning_rate": 0.0006, + "loss": 4.3287835121154785, + "step": 795 + }, + { + "epoch": 11.055919615552643, + "grad_norm": 0.3743649125099182, + "learning_rate": 0.0006, + "loss": 4.334251403808594, + "step": 796 + }, + { + "epoch": 11.069899519440805, + "grad_norm": 0.32266443967819214, + "learning_rate": 0.0006, + "loss": 4.364782810211182, + "step": 797 + }, + { + "epoch": 11.083879423328964, + "grad_norm": 0.27460047602653503, + "learning_rate": 0.0006, + "loss": 4.348380088806152, + "step": 798 + }, + { + "epoch": 11.097859327217126, + "grad_norm": 0.30498892068862915, + "learning_rate": 0.0006, + "loss": 4.347856521606445, + "step": 799 + }, + { + "epoch": 11.111839231105286, + "grad_norm": 0.29740771651268005, + "learning_rate": 0.0006, + "loss": 4.343471050262451, + "step": 800 + }, + { + "epoch": 11.125819134993447, + "grad_norm": 0.3004681169986725, + "learning_rate": 0.0006, + "loss": 4.337590217590332, + "step": 801 + }, + { + "epoch": 11.139799038881607, + "grad_norm": 0.3000192642211914, + "learning_rate": 0.0006, + "loss": 4.349949836730957, + "step": 802 + }, + { + "epoch": 11.153778942769769, + "grad_norm": 0.27461889386177063, + "learning_rate": 0.0006, + "loss": 4.338934898376465, + "step": 803 + }, + { + "epoch": 11.167758846657929, + "grad_norm": 0.2856169641017914, + "learning_rate": 0.0006, + "loss": 4.320754051208496, + "step": 804 + }, + { + "epoch": 11.18173875054609, + "grad_norm": 0.29822713136672974, + "learning_rate": 0.0006, + "loss": 4.357949733734131, + "step": 805 + }, + { + "epoch": 11.19571865443425, + "grad_norm": 0.34061339497566223, + "learning_rate": 0.0006, + "loss": 4.327282905578613, + "step": 806 + }, + { + "epoch": 11.209698558322412, + "grad_norm": 0.3379063010215759, + "learning_rate": 0.0006, + "loss": 4.355471611022949, + "step": 807 + }, + { + "epoch": 11.223678462210572, + "grad_norm": 0.2859216630458832, + "learning_rate": 0.0006, + "loss": 4.352344989776611, + "step": 808 + }, + { + "epoch": 11.237658366098733, + "grad_norm": 0.29522669315338135, + "learning_rate": 0.0006, + "loss": 4.349186897277832, + "step": 809 + }, + { + "epoch": 11.251638269986893, + "grad_norm": 0.273798406124115, + "learning_rate": 0.0006, + "loss": 4.342379570007324, + "step": 810 + }, + { + "epoch": 11.265618173875055, + "grad_norm": 0.25298982858657837, + "learning_rate": 0.0006, + "loss": 4.358835220336914, + "step": 811 + }, + { + "epoch": 11.279598077763215, + "grad_norm": 0.2170463651418686, + "learning_rate": 0.0006, + "loss": 4.3422017097473145, + "step": 812 + }, + { + "epoch": 11.293577981651376, + "grad_norm": 0.24855731427669525, + "learning_rate": 0.0006, + "loss": 4.322849750518799, + "step": 813 + }, + { + "epoch": 11.307557885539538, + "grad_norm": 0.22564345598220825, + "learning_rate": 0.0006, + "loss": 4.316864967346191, + "step": 814 + }, + { + "epoch": 11.321537789427698, + "grad_norm": 0.21532197296619415, + "learning_rate": 0.0006, + "loss": 4.326743125915527, + "step": 815 + }, + { + "epoch": 11.33551769331586, + "grad_norm": 0.20514146983623505, + "learning_rate": 0.0006, + "loss": 4.326531887054443, + "step": 816 + }, + { + "epoch": 11.349497597204019, + "grad_norm": 0.19035090506076813, + "learning_rate": 0.0006, + "loss": 4.318154335021973, + "step": 817 + }, + { + "epoch": 11.36347750109218, + "grad_norm": 0.17889662086963654, + "learning_rate": 0.0006, + "loss": 4.35410213470459, + "step": 818 + }, + { + "epoch": 11.37745740498034, + "grad_norm": 0.20564863085746765, + "learning_rate": 0.0006, + "loss": 4.350226879119873, + "step": 819 + }, + { + "epoch": 11.391437308868502, + "grad_norm": 0.2412603348493576, + "learning_rate": 0.0006, + "loss": 4.325137138366699, + "step": 820 + }, + { + "epoch": 11.405417212756662, + "grad_norm": 0.2603496015071869, + "learning_rate": 0.0006, + "loss": 4.335752487182617, + "step": 821 + }, + { + "epoch": 11.419397116644824, + "grad_norm": 0.2968119978904724, + "learning_rate": 0.0006, + "loss": 4.3317670822143555, + "step": 822 + }, + { + "epoch": 11.433377020532983, + "grad_norm": 0.3280937969684601, + "learning_rate": 0.0006, + "loss": 4.322279453277588, + "step": 823 + }, + { + "epoch": 11.447356924421145, + "grad_norm": 0.3598847985267639, + "learning_rate": 0.0006, + "loss": 4.312255859375, + "step": 824 + }, + { + "epoch": 11.461336828309305, + "grad_norm": 0.3996485471725464, + "learning_rate": 0.0006, + "loss": 4.327103614807129, + "step": 825 + }, + { + "epoch": 11.475316732197467, + "grad_norm": 0.4352041780948639, + "learning_rate": 0.0006, + "loss": 4.368639945983887, + "step": 826 + }, + { + "epoch": 11.489296636085626, + "grad_norm": 0.4451918601989746, + "learning_rate": 0.0006, + "loss": 4.335113048553467, + "step": 827 + }, + { + "epoch": 11.503276539973788, + "grad_norm": 0.4403933584690094, + "learning_rate": 0.0006, + "loss": 4.369889259338379, + "step": 828 + }, + { + "epoch": 11.517256443861948, + "grad_norm": 0.34862443804740906, + "learning_rate": 0.0006, + "loss": 4.316292762756348, + "step": 829 + }, + { + "epoch": 11.53123634775011, + "grad_norm": 0.3240634500980377, + "learning_rate": 0.0006, + "loss": 4.328078746795654, + "step": 830 + }, + { + "epoch": 11.54521625163827, + "grad_norm": 0.2445751428604126, + "learning_rate": 0.0006, + "loss": 4.291940689086914, + "step": 831 + }, + { + "epoch": 11.55919615552643, + "grad_norm": 0.24376554787158966, + "learning_rate": 0.0006, + "loss": 4.339217662811279, + "step": 832 + }, + { + "epoch": 11.57317605941459, + "grad_norm": 0.22419725358486176, + "learning_rate": 0.0006, + "loss": 4.2887468338012695, + "step": 833 + }, + { + "epoch": 11.587155963302752, + "grad_norm": 0.22318261861801147, + "learning_rate": 0.0006, + "loss": 4.298492908477783, + "step": 834 + }, + { + "epoch": 11.601135867190912, + "grad_norm": 0.2357342392206192, + "learning_rate": 0.0006, + "loss": 4.328692436218262, + "step": 835 + }, + { + "epoch": 11.615115771079074, + "grad_norm": 0.25450602173805237, + "learning_rate": 0.0006, + "loss": 4.360058784484863, + "step": 836 + }, + { + "epoch": 11.629095674967235, + "grad_norm": 0.24540965259075165, + "learning_rate": 0.0006, + "loss": 4.311890602111816, + "step": 837 + }, + { + "epoch": 11.643075578855395, + "grad_norm": 0.2535638213157654, + "learning_rate": 0.0006, + "loss": 4.327730178833008, + "step": 838 + }, + { + "epoch": 11.657055482743557, + "grad_norm": 0.23063556849956512, + "learning_rate": 0.0006, + "loss": 4.303299903869629, + "step": 839 + }, + { + "epoch": 11.671035386631717, + "grad_norm": 0.21813632547855377, + "learning_rate": 0.0006, + "loss": 4.315352439880371, + "step": 840 + }, + { + "epoch": 11.685015290519878, + "grad_norm": 0.2170359194278717, + "learning_rate": 0.0006, + "loss": 4.278632164001465, + "step": 841 + }, + { + "epoch": 11.698995194408038, + "grad_norm": 0.21059377491474152, + "learning_rate": 0.0006, + "loss": 4.306049346923828, + "step": 842 + }, + { + "epoch": 11.7129750982962, + "grad_norm": 0.19872888922691345, + "learning_rate": 0.0006, + "loss": 4.3091535568237305, + "step": 843 + }, + { + "epoch": 11.72695500218436, + "grad_norm": 0.20059862732887268, + "learning_rate": 0.0006, + "loss": 4.2884063720703125, + "step": 844 + }, + { + "epoch": 11.740934906072521, + "grad_norm": 0.19952483475208282, + "learning_rate": 0.0006, + "loss": 4.293610572814941, + "step": 845 + }, + { + "epoch": 11.754914809960681, + "grad_norm": 0.19794537127017975, + "learning_rate": 0.0006, + "loss": 4.288822174072266, + "step": 846 + }, + { + "epoch": 11.768894713848843, + "grad_norm": 0.213914692401886, + "learning_rate": 0.0006, + "loss": 4.320849418640137, + "step": 847 + }, + { + "epoch": 11.782874617737003, + "grad_norm": 0.18500955402851105, + "learning_rate": 0.0006, + "loss": 4.29300594329834, + "step": 848 + }, + { + "epoch": 11.796854521625164, + "grad_norm": 0.19446656107902527, + "learning_rate": 0.0006, + "loss": 4.3079352378845215, + "step": 849 + }, + { + "epoch": 11.810834425513324, + "grad_norm": 0.22191768884658813, + "learning_rate": 0.0006, + "loss": 4.295967102050781, + "step": 850 + }, + { + "epoch": 11.824814329401486, + "grad_norm": 0.20748084783554077, + "learning_rate": 0.0006, + "loss": 4.332365989685059, + "step": 851 + }, + { + "epoch": 11.838794233289645, + "grad_norm": 0.20993955433368683, + "learning_rate": 0.0006, + "loss": 4.294618129730225, + "step": 852 + }, + { + "epoch": 11.852774137177807, + "grad_norm": 0.23506952822208405, + "learning_rate": 0.0006, + "loss": 4.313426971435547, + "step": 853 + }, + { + "epoch": 11.866754041065967, + "grad_norm": 0.2379443347454071, + "learning_rate": 0.0006, + "loss": 4.297664642333984, + "step": 854 + }, + { + "epoch": 11.880733944954128, + "grad_norm": 0.2127852737903595, + "learning_rate": 0.0006, + "loss": 4.2807698249816895, + "step": 855 + }, + { + "epoch": 11.89471384884229, + "grad_norm": 0.2125532180070877, + "learning_rate": 0.0006, + "loss": 4.310990333557129, + "step": 856 + }, + { + "epoch": 11.90869375273045, + "grad_norm": 0.1996062994003296, + "learning_rate": 0.0006, + "loss": 4.253237724304199, + "step": 857 + }, + { + "epoch": 11.922673656618612, + "grad_norm": 0.20747603476047516, + "learning_rate": 0.0006, + "loss": 4.294193267822266, + "step": 858 + }, + { + "epoch": 11.936653560506771, + "grad_norm": 0.24082425236701965, + "learning_rate": 0.0006, + "loss": 4.269967079162598, + "step": 859 + }, + { + "epoch": 11.950633464394933, + "grad_norm": 0.28993573784828186, + "learning_rate": 0.0006, + "loss": 4.294550895690918, + "step": 860 + }, + { + "epoch": 11.964613368283093, + "grad_norm": 0.29576948285102844, + "learning_rate": 0.0006, + "loss": 4.3188252449035645, + "step": 861 + }, + { + "epoch": 11.978593272171254, + "grad_norm": 0.2754935026168823, + "learning_rate": 0.0006, + "loss": 4.312817573547363, + "step": 862 + }, + { + "epoch": 11.992573176059414, + "grad_norm": 0.3062523305416107, + "learning_rate": 0.0006, + "loss": 4.288214683532715, + "step": 863 + }, + { + "epoch": 12.0, + "grad_norm": 0.3367644250392914, + "learning_rate": 0.0006, + "loss": 4.314888954162598, + "step": 864 + }, + { + "epoch": 12.0, + "eval_loss": 4.516861438751221, + "eval_runtime": 44.2584, + "eval_samples_per_second": 55.176, + "eval_steps_per_second": 3.457, + "step": 864 + }, + { + "epoch": 12.013979903888162, + "grad_norm": 0.2976512014865875, + "learning_rate": 0.0006, + "loss": 4.278797149658203, + "step": 865 + }, + { + "epoch": 12.027959807776321, + "grad_norm": 0.32217127084732056, + "learning_rate": 0.0006, + "loss": 4.2823615074157715, + "step": 866 + }, + { + "epoch": 12.041939711664483, + "grad_norm": 0.31538400053977966, + "learning_rate": 0.0006, + "loss": 4.252805709838867, + "step": 867 + }, + { + "epoch": 12.055919615552643, + "grad_norm": 0.3501375913619995, + "learning_rate": 0.0006, + "loss": 4.276501655578613, + "step": 868 + }, + { + "epoch": 12.069899519440805, + "grad_norm": 0.3452056646347046, + "learning_rate": 0.0006, + "loss": 4.275739669799805, + "step": 869 + }, + { + "epoch": 12.083879423328964, + "grad_norm": 0.36963316798210144, + "learning_rate": 0.0006, + "loss": 4.3215227127075195, + "step": 870 + }, + { + "epoch": 12.097859327217126, + "grad_norm": 0.41605016589164734, + "learning_rate": 0.0006, + "loss": 4.28739595413208, + "step": 871 + }, + { + "epoch": 12.111839231105286, + "grad_norm": 0.37700653076171875, + "learning_rate": 0.0006, + "loss": 4.291154861450195, + "step": 872 + }, + { + "epoch": 12.125819134993447, + "grad_norm": 0.3194253444671631, + "learning_rate": 0.0006, + "loss": 4.259326934814453, + "step": 873 + }, + { + "epoch": 12.139799038881607, + "grad_norm": 0.31770631670951843, + "learning_rate": 0.0006, + "loss": 4.270082473754883, + "step": 874 + }, + { + "epoch": 12.153778942769769, + "grad_norm": 0.3748120069503784, + "learning_rate": 0.0006, + "loss": 4.2727274894714355, + "step": 875 + }, + { + "epoch": 12.167758846657929, + "grad_norm": 0.3821348547935486, + "learning_rate": 0.0006, + "loss": 4.2848286628723145, + "step": 876 + }, + { + "epoch": 12.18173875054609, + "grad_norm": 0.31894201040267944, + "learning_rate": 0.0006, + "loss": 4.289551258087158, + "step": 877 + }, + { + "epoch": 12.19571865443425, + "grad_norm": 0.2695826292037964, + "learning_rate": 0.0006, + "loss": 4.2797346115112305, + "step": 878 + }, + { + "epoch": 12.209698558322412, + "grad_norm": 0.23966269195079803, + "learning_rate": 0.0006, + "loss": 4.24021577835083, + "step": 879 + }, + { + "epoch": 12.223678462210572, + "grad_norm": 0.24342599511146545, + "learning_rate": 0.0006, + "loss": 4.277721881866455, + "step": 880 + }, + { + "epoch": 12.237658366098733, + "grad_norm": 0.2522958815097809, + "learning_rate": 0.0006, + "loss": 4.263946533203125, + "step": 881 + }, + { + "epoch": 12.251638269986893, + "grad_norm": 0.2708299458026886, + "learning_rate": 0.0006, + "loss": 4.274540901184082, + "step": 882 + }, + { + "epoch": 12.265618173875055, + "grad_norm": 0.2978788912296295, + "learning_rate": 0.0006, + "loss": 4.2674970626831055, + "step": 883 + }, + { + "epoch": 12.279598077763215, + "grad_norm": 0.2898774743080139, + "learning_rate": 0.0006, + "loss": 4.235060691833496, + "step": 884 + }, + { + "epoch": 12.293577981651376, + "grad_norm": 0.27941837906837463, + "learning_rate": 0.0006, + "loss": 4.284140586853027, + "step": 885 + }, + { + "epoch": 12.307557885539538, + "grad_norm": 0.25050559639930725, + "learning_rate": 0.0006, + "loss": 4.270134925842285, + "step": 886 + }, + { + "epoch": 12.321537789427698, + "grad_norm": 0.21867156028747559, + "learning_rate": 0.0006, + "loss": 4.241571426391602, + "step": 887 + }, + { + "epoch": 12.33551769331586, + "grad_norm": 0.24735847115516663, + "learning_rate": 0.0006, + "loss": 4.253087997436523, + "step": 888 + }, + { + "epoch": 12.349497597204019, + "grad_norm": 0.23069104552268982, + "learning_rate": 0.0006, + "loss": 4.258606910705566, + "step": 889 + }, + { + "epoch": 12.36347750109218, + "grad_norm": 0.2594369947910309, + "learning_rate": 0.0006, + "loss": 4.307351112365723, + "step": 890 + }, + { + "epoch": 12.37745740498034, + "grad_norm": 0.25349098443984985, + "learning_rate": 0.0006, + "loss": 4.264268398284912, + "step": 891 + }, + { + "epoch": 12.391437308868502, + "grad_norm": 0.2550840675830841, + "learning_rate": 0.0006, + "loss": 4.247092247009277, + "step": 892 + }, + { + "epoch": 12.405417212756662, + "grad_norm": 0.2107602059841156, + "learning_rate": 0.0006, + "loss": 4.240527153015137, + "step": 893 + }, + { + "epoch": 12.419397116644824, + "grad_norm": 0.2025548368692398, + "learning_rate": 0.0006, + "loss": 4.244686126708984, + "step": 894 + }, + { + "epoch": 12.433377020532983, + "grad_norm": 0.22061701118946075, + "learning_rate": 0.0006, + "loss": 4.233231544494629, + "step": 895 + }, + { + "epoch": 12.447356924421145, + "grad_norm": 0.19503085315227509, + "learning_rate": 0.0006, + "loss": 4.23851203918457, + "step": 896 + }, + { + "epoch": 12.461336828309305, + "grad_norm": 0.19313643872737885, + "learning_rate": 0.0006, + "loss": 4.190886497497559, + "step": 897 + }, + { + "epoch": 12.475316732197467, + "grad_norm": 0.21094176173210144, + "learning_rate": 0.0006, + "loss": 4.277888298034668, + "step": 898 + }, + { + "epoch": 12.489296636085626, + "grad_norm": 0.1980651170015335, + "learning_rate": 0.0006, + "loss": 4.251066207885742, + "step": 899 + }, + { + "epoch": 12.503276539973788, + "grad_norm": 0.179737389087677, + "learning_rate": 0.0006, + "loss": 4.194703102111816, + "step": 900 + }, + { + "epoch": 12.517256443861948, + "grad_norm": 0.19069281220436096, + "learning_rate": 0.0006, + "loss": 4.242412567138672, + "step": 901 + }, + { + "epoch": 12.53123634775011, + "grad_norm": 0.191154345870018, + "learning_rate": 0.0006, + "loss": 4.2432780265808105, + "step": 902 + }, + { + "epoch": 12.54521625163827, + "grad_norm": 0.19760103523731232, + "learning_rate": 0.0006, + "loss": 4.23294734954834, + "step": 903 + }, + { + "epoch": 12.55919615552643, + "grad_norm": 0.19982324540615082, + "learning_rate": 0.0006, + "loss": 4.249764442443848, + "step": 904 + }, + { + "epoch": 12.57317605941459, + "grad_norm": 0.1986108422279358, + "learning_rate": 0.0006, + "loss": 4.213435649871826, + "step": 905 + }, + { + "epoch": 12.587155963302752, + "grad_norm": 0.19727319478988647, + "learning_rate": 0.0006, + "loss": 4.247962951660156, + "step": 906 + }, + { + "epoch": 12.601135867190912, + "grad_norm": 0.23404482007026672, + "learning_rate": 0.0006, + "loss": 4.237396240234375, + "step": 907 + }, + { + "epoch": 12.615115771079074, + "grad_norm": 0.21136441826820374, + "learning_rate": 0.0006, + "loss": 4.236040115356445, + "step": 908 + }, + { + "epoch": 12.629095674967235, + "grad_norm": 0.2209048718214035, + "learning_rate": 0.0006, + "loss": 4.234212875366211, + "step": 909 + }, + { + "epoch": 12.643075578855395, + "grad_norm": 0.22120307385921478, + "learning_rate": 0.0006, + "loss": 4.2711076736450195, + "step": 910 + }, + { + "epoch": 12.657055482743557, + "grad_norm": 0.22733066976070404, + "learning_rate": 0.0006, + "loss": 4.231651306152344, + "step": 911 + }, + { + "epoch": 12.671035386631717, + "grad_norm": 0.2435602843761444, + "learning_rate": 0.0006, + "loss": 4.249372482299805, + "step": 912 + }, + { + "epoch": 12.685015290519878, + "grad_norm": 0.28881654143333435, + "learning_rate": 0.0006, + "loss": 4.2626051902771, + "step": 913 + }, + { + "epoch": 12.698995194408038, + "grad_norm": 0.3211199641227722, + "learning_rate": 0.0006, + "loss": 4.254220485687256, + "step": 914 + }, + { + "epoch": 12.7129750982962, + "grad_norm": 0.3118100166320801, + "learning_rate": 0.0006, + "loss": 4.233747959136963, + "step": 915 + }, + { + "epoch": 12.72695500218436, + "grad_norm": 0.33411866426467896, + "learning_rate": 0.0006, + "loss": 4.270386219024658, + "step": 916 + }, + { + "epoch": 12.740934906072521, + "grad_norm": 0.2968253195285797, + "learning_rate": 0.0006, + "loss": 4.242254257202148, + "step": 917 + }, + { + "epoch": 12.754914809960681, + "grad_norm": 0.2959132194519043, + "learning_rate": 0.0006, + "loss": 4.232100486755371, + "step": 918 + }, + { + "epoch": 12.768894713848843, + "grad_norm": 0.2729283273220062, + "learning_rate": 0.0006, + "loss": 4.233869552612305, + "step": 919 + }, + { + "epoch": 12.782874617737003, + "grad_norm": 0.2669033408164978, + "learning_rate": 0.0006, + "loss": 4.261008262634277, + "step": 920 + }, + { + "epoch": 12.796854521625164, + "grad_norm": 0.2738507091999054, + "learning_rate": 0.0006, + "loss": 4.2286763191223145, + "step": 921 + }, + { + "epoch": 12.810834425513324, + "grad_norm": 0.29105183482170105, + "learning_rate": 0.0006, + "loss": 4.281410217285156, + "step": 922 + }, + { + "epoch": 12.824814329401486, + "grad_norm": 0.31330201029777527, + "learning_rate": 0.0006, + "loss": 4.264181613922119, + "step": 923 + }, + { + "epoch": 12.838794233289645, + "grad_norm": 0.31324025988578796, + "learning_rate": 0.0006, + "loss": 4.250385284423828, + "step": 924 + }, + { + "epoch": 12.852774137177807, + "grad_norm": 0.2727925181388855, + "learning_rate": 0.0006, + "loss": 4.24821138381958, + "step": 925 + }, + { + "epoch": 12.866754041065967, + "grad_norm": 0.27350082993507385, + "learning_rate": 0.0006, + "loss": 4.230215072631836, + "step": 926 + }, + { + "epoch": 12.880733944954128, + "grad_norm": 0.2269950658082962, + "learning_rate": 0.0006, + "loss": 4.210305213928223, + "step": 927 + }, + { + "epoch": 12.89471384884229, + "grad_norm": 0.24667619168758392, + "learning_rate": 0.0006, + "loss": 4.239969253540039, + "step": 928 + }, + { + "epoch": 12.90869375273045, + "grad_norm": 0.22510501742362976, + "learning_rate": 0.0006, + "loss": 4.192750930786133, + "step": 929 + }, + { + "epoch": 12.922673656618612, + "grad_norm": 0.22887611389160156, + "learning_rate": 0.0006, + "loss": 4.264463424682617, + "step": 930 + }, + { + "epoch": 12.936653560506771, + "grad_norm": 0.22195978462696075, + "learning_rate": 0.0006, + "loss": 4.205256938934326, + "step": 931 + }, + { + "epoch": 12.950633464394933, + "grad_norm": 0.23184578120708466, + "learning_rate": 0.0006, + "loss": 4.214578628540039, + "step": 932 + }, + { + "epoch": 12.964613368283093, + "grad_norm": 0.2186676561832428, + "learning_rate": 0.0006, + "loss": 4.227711200714111, + "step": 933 + }, + { + "epoch": 12.978593272171254, + "grad_norm": 0.2160426527261734, + "learning_rate": 0.0006, + "loss": 4.221796989440918, + "step": 934 + }, + { + "epoch": 12.992573176059414, + "grad_norm": 0.21562792360782623, + "learning_rate": 0.0006, + "loss": 4.21957540512085, + "step": 935 + }, + { + "epoch": 13.0, + "grad_norm": 0.22538058459758759, + "learning_rate": 0.0006, + "loss": 4.2353973388671875, + "step": 936 + }, + { + "epoch": 13.0, + "eval_loss": 4.426600933074951, + "eval_runtime": 44.8138, + "eval_samples_per_second": 54.492, + "eval_steps_per_second": 3.414, + "step": 936 + }, + { + "epoch": 13.013979903888162, + "grad_norm": 0.24888049066066742, + "learning_rate": 0.0006, + "loss": 4.18648624420166, + "step": 937 + }, + { + "epoch": 13.027959807776321, + "grad_norm": 0.28330180048942566, + "learning_rate": 0.0006, + "loss": 4.188892364501953, + "step": 938 + }, + { + "epoch": 13.041939711664483, + "grad_norm": 0.31152188777923584, + "learning_rate": 0.0006, + "loss": 4.2053399085998535, + "step": 939 + }, + { + "epoch": 13.055919615552643, + "grad_norm": 0.2842433452606201, + "learning_rate": 0.0006, + "loss": 4.191902160644531, + "step": 940 + }, + { + "epoch": 13.069899519440805, + "grad_norm": 0.23664532601833344, + "learning_rate": 0.0006, + "loss": 4.1831865310668945, + "step": 941 + }, + { + "epoch": 13.083879423328964, + "grad_norm": 0.24204140901565552, + "learning_rate": 0.0006, + "loss": 4.202641487121582, + "step": 942 + }, + { + "epoch": 13.097859327217126, + "grad_norm": 0.235311359167099, + "learning_rate": 0.0006, + "loss": 4.174511909484863, + "step": 943 + }, + { + "epoch": 13.111839231105286, + "grad_norm": 0.27127715945243835, + "learning_rate": 0.0006, + "loss": 4.201844215393066, + "step": 944 + }, + { + "epoch": 13.125819134993447, + "grad_norm": 0.2722373604774475, + "learning_rate": 0.0006, + "loss": 4.157383918762207, + "step": 945 + }, + { + "epoch": 13.139799038881607, + "grad_norm": 0.25446659326553345, + "learning_rate": 0.0006, + "loss": 4.221236228942871, + "step": 946 + }, + { + "epoch": 13.153778942769769, + "grad_norm": 0.273017019033432, + "learning_rate": 0.0006, + "loss": 4.195512771606445, + "step": 947 + }, + { + "epoch": 13.167758846657929, + "grad_norm": 0.24766312539577484, + "learning_rate": 0.0006, + "loss": 4.220959663391113, + "step": 948 + }, + { + "epoch": 13.18173875054609, + "grad_norm": 0.24636317789554596, + "learning_rate": 0.0006, + "loss": 4.214302062988281, + "step": 949 + }, + { + "epoch": 13.19571865443425, + "grad_norm": 0.3177756667137146, + "learning_rate": 0.0006, + "loss": 4.213500022888184, + "step": 950 + }, + { + "epoch": 13.209698558322412, + "grad_norm": 0.44579195976257324, + "learning_rate": 0.0006, + "loss": 4.227644920349121, + "step": 951 + }, + { + "epoch": 13.223678462210572, + "grad_norm": 0.4217414855957031, + "learning_rate": 0.0006, + "loss": 4.180937767028809, + "step": 952 + }, + { + "epoch": 13.237658366098733, + "grad_norm": 0.30148059129714966, + "learning_rate": 0.0006, + "loss": 4.207760810852051, + "step": 953 + }, + { + "epoch": 13.251638269986893, + "grad_norm": 0.3192492127418518, + "learning_rate": 0.0006, + "loss": 4.197999000549316, + "step": 954 + }, + { + "epoch": 13.265618173875055, + "grad_norm": 0.37334588170051575, + "learning_rate": 0.0006, + "loss": 4.208001136779785, + "step": 955 + }, + { + "epoch": 13.279598077763215, + "grad_norm": 0.4059637784957886, + "learning_rate": 0.0006, + "loss": 4.211322784423828, + "step": 956 + }, + { + "epoch": 13.293577981651376, + "grad_norm": 0.3389599323272705, + "learning_rate": 0.0006, + "loss": 4.204404354095459, + "step": 957 + }, + { + "epoch": 13.307557885539538, + "grad_norm": 0.2675766050815582, + "learning_rate": 0.0006, + "loss": 4.245941162109375, + "step": 958 + }, + { + "epoch": 13.321537789427698, + "grad_norm": 0.2730264365673065, + "learning_rate": 0.0006, + "loss": 4.2221221923828125, + "step": 959 + }, + { + "epoch": 13.33551769331586, + "grad_norm": 0.26458224654197693, + "learning_rate": 0.0006, + "loss": 4.205596923828125, + "step": 960 + }, + { + "epoch": 13.349497597204019, + "grad_norm": 0.2872551381587982, + "learning_rate": 0.0006, + "loss": 4.196977615356445, + "step": 961 + }, + { + "epoch": 13.36347750109218, + "grad_norm": 0.2954796850681305, + "learning_rate": 0.0006, + "loss": 4.202796936035156, + "step": 962 + }, + { + "epoch": 13.37745740498034, + "grad_norm": 0.2619425654411316, + "learning_rate": 0.0006, + "loss": 4.196845054626465, + "step": 963 + }, + { + "epoch": 13.391437308868502, + "grad_norm": 0.30088478326797485, + "learning_rate": 0.0006, + "loss": 4.219697952270508, + "step": 964 + }, + { + "epoch": 13.405417212756662, + "grad_norm": 0.30388689041137695, + "learning_rate": 0.0006, + "loss": 4.187566757202148, + "step": 965 + }, + { + "epoch": 13.419397116644824, + "grad_norm": 0.27918127179145813, + "learning_rate": 0.0006, + "loss": 4.223600387573242, + "step": 966 + }, + { + "epoch": 13.433377020532983, + "grad_norm": 0.27634528279304504, + "learning_rate": 0.0006, + "loss": 4.165332317352295, + "step": 967 + }, + { + "epoch": 13.447356924421145, + "grad_norm": 0.28830021619796753, + "learning_rate": 0.0006, + "loss": 4.204029560089111, + "step": 968 + }, + { + "epoch": 13.461336828309305, + "grad_norm": 0.29220864176750183, + "learning_rate": 0.0006, + "loss": 4.218057155609131, + "step": 969 + }, + { + "epoch": 13.475316732197467, + "grad_norm": 0.3089624345302582, + "learning_rate": 0.0006, + "loss": 4.200654983520508, + "step": 970 + }, + { + "epoch": 13.489296636085626, + "grad_norm": 0.36479851603507996, + "learning_rate": 0.0006, + "loss": 4.182811737060547, + "step": 971 + }, + { + "epoch": 13.503276539973788, + "grad_norm": 0.37561097741127014, + "learning_rate": 0.0006, + "loss": 4.190266132354736, + "step": 972 + }, + { + "epoch": 13.517256443861948, + "grad_norm": 0.3263583183288574, + "learning_rate": 0.0006, + "loss": 4.214815616607666, + "step": 973 + }, + { + "epoch": 13.53123634775011, + "grad_norm": 0.21552999317646027, + "learning_rate": 0.0006, + "loss": 4.171380043029785, + "step": 974 + }, + { + "epoch": 13.54521625163827, + "grad_norm": 0.247328519821167, + "learning_rate": 0.0006, + "loss": 4.175377368927002, + "step": 975 + }, + { + "epoch": 13.55919615552643, + "grad_norm": 0.23740540444850922, + "learning_rate": 0.0006, + "loss": 4.212357997894287, + "step": 976 + }, + { + "epoch": 13.57317605941459, + "grad_norm": 0.21533876657485962, + "learning_rate": 0.0006, + "loss": 4.203285217285156, + "step": 977 + }, + { + "epoch": 13.587155963302752, + "grad_norm": 0.21462024748325348, + "learning_rate": 0.0006, + "loss": 4.178012371063232, + "step": 978 + }, + { + "epoch": 13.601135867190912, + "grad_norm": 0.2279169261455536, + "learning_rate": 0.0006, + "loss": 4.193912982940674, + "step": 979 + }, + { + "epoch": 13.615115771079074, + "grad_norm": 0.2202417552471161, + "learning_rate": 0.0006, + "loss": 4.167629718780518, + "step": 980 + }, + { + "epoch": 13.629095674967235, + "grad_norm": 0.20586472749710083, + "learning_rate": 0.0006, + "loss": 4.159290313720703, + "step": 981 + }, + { + "epoch": 13.643075578855395, + "grad_norm": 0.20200690627098083, + "learning_rate": 0.0006, + "loss": 4.210315227508545, + "step": 982 + }, + { + "epoch": 13.657055482743557, + "grad_norm": 0.21710257232189178, + "learning_rate": 0.0006, + "loss": 4.21730375289917, + "step": 983 + }, + { + "epoch": 13.671035386631717, + "grad_norm": 0.22058045864105225, + "learning_rate": 0.0006, + "loss": 4.1996073722839355, + "step": 984 + }, + { + "epoch": 13.685015290519878, + "grad_norm": 0.21549592912197113, + "learning_rate": 0.0006, + "loss": 4.209203720092773, + "step": 985 + }, + { + "epoch": 13.698995194408038, + "grad_norm": 0.22274717688560486, + "learning_rate": 0.0006, + "loss": 4.220660209655762, + "step": 986 + }, + { + "epoch": 13.7129750982962, + "grad_norm": 0.22791637480258942, + "learning_rate": 0.0006, + "loss": 4.158679962158203, + "step": 987 + }, + { + "epoch": 13.72695500218436, + "grad_norm": 0.216218963265419, + "learning_rate": 0.0006, + "loss": 4.188124656677246, + "step": 988 + }, + { + "epoch": 13.740934906072521, + "grad_norm": 0.19149383902549744, + "learning_rate": 0.0006, + "loss": 4.181729316711426, + "step": 989 + }, + { + "epoch": 13.754914809960681, + "grad_norm": 0.18964019417762756, + "learning_rate": 0.0006, + "loss": 4.184767246246338, + "step": 990 + }, + { + "epoch": 13.768894713848843, + "grad_norm": 0.1778000295162201, + "learning_rate": 0.0006, + "loss": 4.1802263259887695, + "step": 991 + }, + { + "epoch": 13.782874617737003, + "grad_norm": 0.18277616798877716, + "learning_rate": 0.0006, + "loss": 4.1657867431640625, + "step": 992 + }, + { + "epoch": 13.796854521625164, + "grad_norm": 0.18610034883022308, + "learning_rate": 0.0006, + "loss": 4.156744956970215, + "step": 993 + }, + { + "epoch": 13.810834425513324, + "grad_norm": 0.19332963228225708, + "learning_rate": 0.0006, + "loss": 4.143558502197266, + "step": 994 + }, + { + "epoch": 13.824814329401486, + "grad_norm": 0.19758112728595734, + "learning_rate": 0.0006, + "loss": 4.195793151855469, + "step": 995 + }, + { + "epoch": 13.838794233289645, + "grad_norm": 0.1933647245168686, + "learning_rate": 0.0006, + "loss": 4.169734954833984, + "step": 996 + }, + { + "epoch": 13.852774137177807, + "grad_norm": 0.2362028956413269, + "learning_rate": 0.0006, + "loss": 4.175025939941406, + "step": 997 + }, + { + "epoch": 13.866754041065967, + "grad_norm": 0.2465490996837616, + "learning_rate": 0.0006, + "loss": 4.173909664154053, + "step": 998 + }, + { + "epoch": 13.880733944954128, + "grad_norm": 0.23449952900409698, + "learning_rate": 0.0006, + "loss": 4.173429489135742, + "step": 999 + }, + { + "epoch": 13.89471384884229, + "grad_norm": 0.2282160222530365, + "learning_rate": 0.0006, + "loss": 4.158538341522217, + "step": 1000 + }, + { + "epoch": 13.90869375273045, + "grad_norm": 0.21066738665103912, + "learning_rate": 0.0006, + "loss": 4.171584129333496, + "step": 1001 + }, + { + "epoch": 13.922673656618612, + "grad_norm": 0.18787573277950287, + "learning_rate": 0.0006, + "loss": 4.1837544441223145, + "step": 1002 + }, + { + "epoch": 13.936653560506771, + "grad_norm": 0.2001059353351593, + "learning_rate": 0.0006, + "loss": 4.160369873046875, + "step": 1003 + }, + { + "epoch": 13.950633464394933, + "grad_norm": 0.21644988656044006, + "learning_rate": 0.0006, + "loss": 4.221372604370117, + "step": 1004 + }, + { + "epoch": 13.964613368283093, + "grad_norm": 0.22083887457847595, + "learning_rate": 0.0006, + "loss": 4.149261474609375, + "step": 1005 + }, + { + "epoch": 13.978593272171254, + "grad_norm": 0.2201409637928009, + "learning_rate": 0.0006, + "loss": 4.192010879516602, + "step": 1006 + }, + { + "epoch": 13.992573176059414, + "grad_norm": 0.18888601660728455, + "learning_rate": 0.0006, + "loss": 4.17539119720459, + "step": 1007 + }, + { + "epoch": 14.0, + "grad_norm": 0.2073872834444046, + "learning_rate": 0.0006, + "loss": 4.145265579223633, + "step": 1008 + }, + { + "epoch": 14.0, + "eval_loss": 4.36876106262207, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 1008 + }, + { + "epoch": 14.013979903888162, + "grad_norm": 0.20773135125637054, + "learning_rate": 0.0006, + "loss": 4.132615089416504, + "step": 1009 + }, + { + "epoch": 14.027959807776321, + "grad_norm": 0.22409620881080627, + "learning_rate": 0.0006, + "loss": 4.172839164733887, + "step": 1010 + }, + { + "epoch": 14.041939711664483, + "grad_norm": 0.24046066403388977, + "learning_rate": 0.0006, + "loss": 4.126678943634033, + "step": 1011 + }, + { + "epoch": 14.055919615552643, + "grad_norm": 0.29185160994529724, + "learning_rate": 0.0006, + "loss": 4.177952766418457, + "step": 1012 + }, + { + "epoch": 14.069899519440805, + "grad_norm": 0.2984033226966858, + "learning_rate": 0.0006, + "loss": 4.155030250549316, + "step": 1013 + }, + { + "epoch": 14.083879423328964, + "grad_norm": 0.30262473225593567, + "learning_rate": 0.0006, + "loss": 4.145394325256348, + "step": 1014 + }, + { + "epoch": 14.097859327217126, + "grad_norm": 0.3278133273124695, + "learning_rate": 0.0006, + "loss": 4.172739028930664, + "step": 1015 + }, + { + "epoch": 14.111839231105286, + "grad_norm": 0.3285452425479889, + "learning_rate": 0.0006, + "loss": 4.153196334838867, + "step": 1016 + }, + { + "epoch": 14.125819134993447, + "grad_norm": 0.33912697434425354, + "learning_rate": 0.0006, + "loss": 4.098162651062012, + "step": 1017 + }, + { + "epoch": 14.139799038881607, + "grad_norm": 0.32080814242362976, + "learning_rate": 0.0006, + "loss": 4.157135009765625, + "step": 1018 + }, + { + "epoch": 14.153778942769769, + "grad_norm": 0.31288477778434753, + "learning_rate": 0.0006, + "loss": 4.142683029174805, + "step": 1019 + }, + { + "epoch": 14.167758846657929, + "grad_norm": 0.350289523601532, + "learning_rate": 0.0006, + "loss": 4.134700775146484, + "step": 1020 + }, + { + "epoch": 14.18173875054609, + "grad_norm": 0.34274575114250183, + "learning_rate": 0.0006, + "loss": 4.1578569412231445, + "step": 1021 + }, + { + "epoch": 14.19571865443425, + "grad_norm": 0.2843035161495209, + "learning_rate": 0.0006, + "loss": 4.13760232925415, + "step": 1022 + }, + { + "epoch": 14.209698558322412, + "grad_norm": 0.28235161304473877, + "learning_rate": 0.0006, + "loss": 4.1492462158203125, + "step": 1023 + }, + { + "epoch": 14.223678462210572, + "grad_norm": 0.24407248198986053, + "learning_rate": 0.0006, + "loss": 4.144372463226318, + "step": 1024 + }, + { + "epoch": 14.237658366098733, + "grad_norm": 0.2489742934703827, + "learning_rate": 0.0006, + "loss": 4.137950897216797, + "step": 1025 + }, + { + "epoch": 14.251638269986893, + "grad_norm": 0.26035651564598083, + "learning_rate": 0.0006, + "loss": 4.144070625305176, + "step": 1026 + }, + { + "epoch": 14.265618173875055, + "grad_norm": 0.2726516127586365, + "learning_rate": 0.0006, + "loss": 4.145204067230225, + "step": 1027 + }, + { + "epoch": 14.279598077763215, + "grad_norm": 0.2723483443260193, + "learning_rate": 0.0006, + "loss": 4.118407249450684, + "step": 1028 + }, + { + "epoch": 14.293577981651376, + "grad_norm": 0.27476269006729126, + "learning_rate": 0.0006, + "loss": 4.111325263977051, + "step": 1029 + }, + { + "epoch": 14.307557885539538, + "grad_norm": 0.26202502846717834, + "learning_rate": 0.0006, + "loss": 4.122248649597168, + "step": 1030 + }, + { + "epoch": 14.321537789427698, + "grad_norm": 0.2472032904624939, + "learning_rate": 0.0006, + "loss": 4.157790184020996, + "step": 1031 + }, + { + "epoch": 14.33551769331586, + "grad_norm": 0.2518343925476074, + "learning_rate": 0.0006, + "loss": 4.109132766723633, + "step": 1032 + }, + { + "epoch": 14.349497597204019, + "grad_norm": 0.2652401924133301, + "learning_rate": 0.0006, + "loss": 4.144079685211182, + "step": 1033 + }, + { + "epoch": 14.36347750109218, + "grad_norm": 0.2356770783662796, + "learning_rate": 0.0006, + "loss": 4.128426551818848, + "step": 1034 + }, + { + "epoch": 14.37745740498034, + "grad_norm": 0.2164214551448822, + "learning_rate": 0.0006, + "loss": 4.1644392013549805, + "step": 1035 + }, + { + "epoch": 14.391437308868502, + "grad_norm": 0.22383111715316772, + "learning_rate": 0.0006, + "loss": 4.165862083435059, + "step": 1036 + }, + { + "epoch": 14.405417212756662, + "grad_norm": 0.23152419924736023, + "learning_rate": 0.0006, + "loss": 4.140036582946777, + "step": 1037 + }, + { + "epoch": 14.419397116644824, + "grad_norm": 0.2387741357088089, + "learning_rate": 0.0006, + "loss": 4.130461692810059, + "step": 1038 + }, + { + "epoch": 14.433377020532983, + "grad_norm": 0.24018129706382751, + "learning_rate": 0.0006, + "loss": 4.148482322692871, + "step": 1039 + }, + { + "epoch": 14.447356924421145, + "grad_norm": 0.25487351417541504, + "learning_rate": 0.0006, + "loss": 4.158121109008789, + "step": 1040 + }, + { + "epoch": 14.461336828309305, + "grad_norm": 0.28220096230506897, + "learning_rate": 0.0006, + "loss": 4.160198211669922, + "step": 1041 + }, + { + "epoch": 14.475316732197467, + "grad_norm": 0.2574434280395508, + "learning_rate": 0.0006, + "loss": 4.168512344360352, + "step": 1042 + }, + { + "epoch": 14.489296636085626, + "grad_norm": 0.22569820284843445, + "learning_rate": 0.0006, + "loss": 4.1595001220703125, + "step": 1043 + }, + { + "epoch": 14.503276539973788, + "grad_norm": 0.2473423182964325, + "learning_rate": 0.0006, + "loss": 4.084580898284912, + "step": 1044 + }, + { + "epoch": 14.517256443861948, + "grad_norm": 0.24281060695648193, + "learning_rate": 0.0006, + "loss": 4.139714241027832, + "step": 1045 + }, + { + "epoch": 14.53123634775011, + "grad_norm": 0.24691344797611237, + "learning_rate": 0.0006, + "loss": 4.115398406982422, + "step": 1046 + }, + { + "epoch": 14.54521625163827, + "grad_norm": 0.2583645284175873, + "learning_rate": 0.0006, + "loss": 4.142148494720459, + "step": 1047 + }, + { + "epoch": 14.55919615552643, + "grad_norm": 0.23258574306964874, + "learning_rate": 0.0006, + "loss": 4.16251277923584, + "step": 1048 + }, + { + "epoch": 14.57317605941459, + "grad_norm": 0.22103039920330048, + "learning_rate": 0.0006, + "loss": 4.1308441162109375, + "step": 1049 + }, + { + "epoch": 14.587155963302752, + "grad_norm": 0.23713579773902893, + "learning_rate": 0.0006, + "loss": 4.1565985679626465, + "step": 1050 + }, + { + "epoch": 14.601135867190912, + "grad_norm": 0.24406634271144867, + "learning_rate": 0.0006, + "loss": 4.14628267288208, + "step": 1051 + }, + { + "epoch": 14.615115771079074, + "grad_norm": 0.26821228861808777, + "learning_rate": 0.0006, + "loss": 4.138063430786133, + "step": 1052 + }, + { + "epoch": 14.629095674967235, + "grad_norm": 0.25483864545822144, + "learning_rate": 0.0006, + "loss": 4.1311163902282715, + "step": 1053 + }, + { + "epoch": 14.643075578855395, + "grad_norm": 0.23937982320785522, + "learning_rate": 0.0006, + "loss": 4.150882244110107, + "step": 1054 + }, + { + "epoch": 14.657055482743557, + "grad_norm": 0.21896475553512573, + "learning_rate": 0.0006, + "loss": 4.114015102386475, + "step": 1055 + }, + { + "epoch": 14.671035386631717, + "grad_norm": 0.20821231603622437, + "learning_rate": 0.0006, + "loss": 4.139034271240234, + "step": 1056 + }, + { + "epoch": 14.685015290519878, + "grad_norm": 0.1978551596403122, + "learning_rate": 0.0006, + "loss": 4.1810503005981445, + "step": 1057 + }, + { + "epoch": 14.698995194408038, + "grad_norm": 0.1945771872997284, + "learning_rate": 0.0006, + "loss": 4.120734214782715, + "step": 1058 + }, + { + "epoch": 14.7129750982962, + "grad_norm": 0.19518673419952393, + "learning_rate": 0.0006, + "loss": 4.14264440536499, + "step": 1059 + }, + { + "epoch": 14.72695500218436, + "grad_norm": 0.202596515417099, + "learning_rate": 0.0006, + "loss": 4.151649475097656, + "step": 1060 + }, + { + "epoch": 14.740934906072521, + "grad_norm": 0.1904762089252472, + "learning_rate": 0.0006, + "loss": 4.127899169921875, + "step": 1061 + }, + { + "epoch": 14.754914809960681, + "grad_norm": 0.20685508847236633, + "learning_rate": 0.0006, + "loss": 4.093445777893066, + "step": 1062 + }, + { + "epoch": 14.768894713848843, + "grad_norm": 0.22678329050540924, + "learning_rate": 0.0006, + "loss": 4.132084369659424, + "step": 1063 + }, + { + "epoch": 14.782874617737003, + "grad_norm": 0.24631841480731964, + "learning_rate": 0.0006, + "loss": 4.154788970947266, + "step": 1064 + }, + { + "epoch": 14.796854521625164, + "grad_norm": 0.24445782601833344, + "learning_rate": 0.0006, + "loss": 4.144735336303711, + "step": 1065 + }, + { + "epoch": 14.810834425513324, + "grad_norm": 0.22330640256404877, + "learning_rate": 0.0006, + "loss": 4.159893989562988, + "step": 1066 + }, + { + "epoch": 14.824814329401486, + "grad_norm": 0.22422967851161957, + "learning_rate": 0.0006, + "loss": 4.104874610900879, + "step": 1067 + }, + { + "epoch": 14.838794233289645, + "grad_norm": 0.24583931267261505, + "learning_rate": 0.0006, + "loss": 4.139403820037842, + "step": 1068 + }, + { + "epoch": 14.852774137177807, + "grad_norm": 0.2917379140853882, + "learning_rate": 0.0006, + "loss": 4.168988227844238, + "step": 1069 + }, + { + "epoch": 14.866754041065967, + "grad_norm": 0.3171777129173279, + "learning_rate": 0.0006, + "loss": 4.131263732910156, + "step": 1070 + }, + { + "epoch": 14.880733944954128, + "grad_norm": 0.3039591312408447, + "learning_rate": 0.0006, + "loss": 4.149853706359863, + "step": 1071 + }, + { + "epoch": 14.89471384884229, + "grad_norm": 0.2690650522708893, + "learning_rate": 0.0006, + "loss": 4.154787540435791, + "step": 1072 + }, + { + "epoch": 14.90869375273045, + "grad_norm": 0.28683212399482727, + "learning_rate": 0.0006, + "loss": 4.12751579284668, + "step": 1073 + }, + { + "epoch": 14.922673656618612, + "grad_norm": 0.30022913217544556, + "learning_rate": 0.0006, + "loss": 4.141940116882324, + "step": 1074 + }, + { + "epoch": 14.936653560506771, + "grad_norm": 0.3312259316444397, + "learning_rate": 0.0006, + "loss": 4.141905784606934, + "step": 1075 + }, + { + "epoch": 14.950633464394933, + "grad_norm": 0.31159237027168274, + "learning_rate": 0.0006, + "loss": 4.160192966461182, + "step": 1076 + }, + { + "epoch": 14.964613368283093, + "grad_norm": 0.30093592405319214, + "learning_rate": 0.0006, + "loss": 4.1085076332092285, + "step": 1077 + }, + { + "epoch": 14.978593272171254, + "grad_norm": 0.2728535830974579, + "learning_rate": 0.0006, + "loss": 4.156959056854248, + "step": 1078 + }, + { + "epoch": 14.992573176059414, + "grad_norm": 0.24766813218593597, + "learning_rate": 0.0006, + "loss": 4.113999843597412, + "step": 1079 + }, + { + "epoch": 15.0, + "grad_norm": 0.2538154721260071, + "learning_rate": 0.0006, + "loss": 4.147134780883789, + "step": 1080 + }, + { + "epoch": 15.0, + "eval_loss": 4.323154926300049, + "eval_runtime": 44.8813, + "eval_samples_per_second": 54.41, + "eval_steps_per_second": 3.409, + "step": 1080 + }, + { + "epoch": 15.013979903888162, + "grad_norm": 0.22535280883312225, + "learning_rate": 0.0006, + "loss": 4.112179756164551, + "step": 1081 + }, + { + "epoch": 15.027959807776321, + "grad_norm": 0.24340929090976715, + "learning_rate": 0.0006, + "loss": 4.080923080444336, + "step": 1082 + }, + { + "epoch": 15.041939711664483, + "grad_norm": 0.23159465193748474, + "learning_rate": 0.0006, + "loss": 4.097067356109619, + "step": 1083 + }, + { + "epoch": 15.055919615552643, + "grad_norm": 0.22674769163131714, + "learning_rate": 0.0006, + "loss": 4.118601322174072, + "step": 1084 + }, + { + "epoch": 15.069899519440805, + "grad_norm": 0.2524292469024658, + "learning_rate": 0.0006, + "loss": 4.101109504699707, + "step": 1085 + }, + { + "epoch": 15.083879423328964, + "grad_norm": 0.2505405843257904, + "learning_rate": 0.0006, + "loss": 4.121405601501465, + "step": 1086 + }, + { + "epoch": 15.097859327217126, + "grad_norm": 0.2557983696460724, + "learning_rate": 0.0006, + "loss": 4.1063947677612305, + "step": 1087 + }, + { + "epoch": 15.111839231105286, + "grad_norm": 0.24452129006385803, + "learning_rate": 0.0006, + "loss": 4.086133003234863, + "step": 1088 + }, + { + "epoch": 15.125819134993447, + "grad_norm": 0.25821781158447266, + "learning_rate": 0.0006, + "loss": 4.076262950897217, + "step": 1089 + }, + { + "epoch": 15.139799038881607, + "grad_norm": 0.23650537431240082, + "learning_rate": 0.0006, + "loss": 4.101842880249023, + "step": 1090 + }, + { + "epoch": 15.153778942769769, + "grad_norm": 0.2206192910671234, + "learning_rate": 0.0006, + "loss": 4.11027193069458, + "step": 1091 + }, + { + "epoch": 15.167758846657929, + "grad_norm": 0.21843163669109344, + "learning_rate": 0.0006, + "loss": 4.098437309265137, + "step": 1092 + }, + { + "epoch": 15.18173875054609, + "grad_norm": 0.2528176009654999, + "learning_rate": 0.0006, + "loss": 4.108713150024414, + "step": 1093 + }, + { + "epoch": 15.19571865443425, + "grad_norm": 0.26697206497192383, + "learning_rate": 0.0006, + "loss": 4.113210201263428, + "step": 1094 + }, + { + "epoch": 15.209698558322412, + "grad_norm": 0.26480963826179504, + "learning_rate": 0.0006, + "loss": 4.1103620529174805, + "step": 1095 + }, + { + "epoch": 15.223678462210572, + "grad_norm": 0.24887347221374512, + "learning_rate": 0.0006, + "loss": 4.103529930114746, + "step": 1096 + }, + { + "epoch": 15.237658366098733, + "grad_norm": 0.2344668060541153, + "learning_rate": 0.0006, + "loss": 4.129784107208252, + "step": 1097 + }, + { + "epoch": 15.251638269986893, + "grad_norm": 0.22639742493629456, + "learning_rate": 0.0006, + "loss": 4.113495349884033, + "step": 1098 + }, + { + "epoch": 15.265618173875055, + "grad_norm": 0.22466333210468292, + "learning_rate": 0.0006, + "loss": 4.102309703826904, + "step": 1099 + }, + { + "epoch": 15.279598077763215, + "grad_norm": 0.25135037302970886, + "learning_rate": 0.0006, + "loss": 4.117668628692627, + "step": 1100 + }, + { + "epoch": 15.293577981651376, + "grad_norm": 0.2347089946269989, + "learning_rate": 0.0006, + "loss": 4.086637496948242, + "step": 1101 + }, + { + "epoch": 15.307557885539538, + "grad_norm": 0.2347242832183838, + "learning_rate": 0.0006, + "loss": 4.098714828491211, + "step": 1102 + }, + { + "epoch": 15.321537789427698, + "grad_norm": 0.23990283906459808, + "learning_rate": 0.0006, + "loss": 4.079837799072266, + "step": 1103 + }, + { + "epoch": 15.33551769331586, + "grad_norm": 0.22366675734519958, + "learning_rate": 0.0006, + "loss": 4.108136177062988, + "step": 1104 + }, + { + "epoch": 15.349497597204019, + "grad_norm": 0.21823780238628387, + "learning_rate": 0.0006, + "loss": 4.10054349899292, + "step": 1105 + }, + { + "epoch": 15.36347750109218, + "grad_norm": 0.23059198260307312, + "learning_rate": 0.0006, + "loss": 4.108620643615723, + "step": 1106 + }, + { + "epoch": 15.37745740498034, + "grad_norm": 0.2313755601644516, + "learning_rate": 0.0006, + "loss": 4.088565826416016, + "step": 1107 + }, + { + "epoch": 15.391437308868502, + "grad_norm": 0.2546829283237457, + "learning_rate": 0.0006, + "loss": 4.104948043823242, + "step": 1108 + }, + { + "epoch": 15.405417212756662, + "grad_norm": 0.23666726052761078, + "learning_rate": 0.0006, + "loss": 4.111965179443359, + "step": 1109 + }, + { + "epoch": 15.419397116644824, + "grad_norm": 0.21971021592617035, + "learning_rate": 0.0006, + "loss": 4.097846984863281, + "step": 1110 + }, + { + "epoch": 15.433377020532983, + "grad_norm": 0.20951911807060242, + "learning_rate": 0.0006, + "loss": 4.110099792480469, + "step": 1111 + }, + { + "epoch": 15.447356924421145, + "grad_norm": 0.19590918719768524, + "learning_rate": 0.0006, + "loss": 4.101154327392578, + "step": 1112 + }, + { + "epoch": 15.461336828309305, + "grad_norm": 0.21048946678638458, + "learning_rate": 0.0006, + "loss": 4.0986127853393555, + "step": 1113 + }, + { + "epoch": 15.475316732197467, + "grad_norm": 0.21423374116420746, + "learning_rate": 0.0006, + "loss": 4.082328796386719, + "step": 1114 + }, + { + "epoch": 15.489296636085626, + "grad_norm": 0.227146714925766, + "learning_rate": 0.0006, + "loss": 4.105281829833984, + "step": 1115 + }, + { + "epoch": 15.503276539973788, + "grad_norm": 0.2079153060913086, + "learning_rate": 0.0006, + "loss": 4.100836753845215, + "step": 1116 + }, + { + "epoch": 15.517256443861948, + "grad_norm": 0.21084675192832947, + "learning_rate": 0.0006, + "loss": 4.0934343338012695, + "step": 1117 + }, + { + "epoch": 15.53123634775011, + "grad_norm": 0.23863616585731506, + "learning_rate": 0.0006, + "loss": 4.101540565490723, + "step": 1118 + }, + { + "epoch": 15.54521625163827, + "grad_norm": 0.2518490254878998, + "learning_rate": 0.0006, + "loss": 4.12303352355957, + "step": 1119 + }, + { + "epoch": 15.55919615552643, + "grad_norm": 0.24282905459403992, + "learning_rate": 0.0006, + "loss": 4.080670356750488, + "step": 1120 + }, + { + "epoch": 15.57317605941459, + "grad_norm": 0.24171605706214905, + "learning_rate": 0.0006, + "loss": 4.117938041687012, + "step": 1121 + }, + { + "epoch": 15.587155963302752, + "grad_norm": 0.28453412652015686, + "learning_rate": 0.0006, + "loss": 4.080114364624023, + "step": 1122 + }, + { + "epoch": 15.601135867190912, + "grad_norm": 0.30322617292404175, + "learning_rate": 0.0006, + "loss": 4.079695701599121, + "step": 1123 + }, + { + "epoch": 15.615115771079074, + "grad_norm": 0.2657633125782013, + "learning_rate": 0.0006, + "loss": 4.0916290283203125, + "step": 1124 + }, + { + "epoch": 15.629095674967235, + "grad_norm": 0.2467080056667328, + "learning_rate": 0.0006, + "loss": 4.095594882965088, + "step": 1125 + }, + { + "epoch": 15.643075578855395, + "grad_norm": 0.21767394244670868, + "learning_rate": 0.0006, + "loss": 4.079174041748047, + "step": 1126 + }, + { + "epoch": 15.657055482743557, + "grad_norm": 0.2088327705860138, + "learning_rate": 0.0006, + "loss": 4.060707092285156, + "step": 1127 + }, + { + "epoch": 15.671035386631717, + "grad_norm": 0.1921205073595047, + "learning_rate": 0.0006, + "loss": 4.073911666870117, + "step": 1128 + }, + { + "epoch": 15.685015290519878, + "grad_norm": 0.209339901804924, + "learning_rate": 0.0006, + "loss": 4.089954376220703, + "step": 1129 + }, + { + "epoch": 15.698995194408038, + "grad_norm": 0.23513881862163544, + "learning_rate": 0.0006, + "loss": 4.084906578063965, + "step": 1130 + }, + { + "epoch": 15.7129750982962, + "grad_norm": 0.26140275597572327, + "learning_rate": 0.0006, + "loss": 4.086570739746094, + "step": 1131 + }, + { + "epoch": 15.72695500218436, + "grad_norm": 0.290431946516037, + "learning_rate": 0.0006, + "loss": 4.071229457855225, + "step": 1132 + }, + { + "epoch": 15.740934906072521, + "grad_norm": 0.3061376214027405, + "learning_rate": 0.0006, + "loss": 4.103148460388184, + "step": 1133 + }, + { + "epoch": 15.754914809960681, + "grad_norm": 0.26312482357025146, + "learning_rate": 0.0006, + "loss": 4.088448524475098, + "step": 1134 + }, + { + "epoch": 15.768894713848843, + "grad_norm": 0.22474883496761322, + "learning_rate": 0.0006, + "loss": 4.091766834259033, + "step": 1135 + }, + { + "epoch": 15.782874617737003, + "grad_norm": 0.2341146171092987, + "learning_rate": 0.0006, + "loss": 4.1222758293151855, + "step": 1136 + }, + { + "epoch": 15.796854521625164, + "grad_norm": 0.23556149005889893, + "learning_rate": 0.0006, + "loss": 4.094954013824463, + "step": 1137 + }, + { + "epoch": 15.810834425513324, + "grad_norm": 0.263315349817276, + "learning_rate": 0.0006, + "loss": 4.1065473556518555, + "step": 1138 + }, + { + "epoch": 15.824814329401486, + "grad_norm": 0.2700869143009186, + "learning_rate": 0.0006, + "loss": 4.0890045166015625, + "step": 1139 + }, + { + "epoch": 15.838794233289645, + "grad_norm": 0.28697484731674194, + "learning_rate": 0.0006, + "loss": 4.092496395111084, + "step": 1140 + }, + { + "epoch": 15.852774137177807, + "grad_norm": 0.2824092507362366, + "learning_rate": 0.0006, + "loss": 4.079615592956543, + "step": 1141 + }, + { + "epoch": 15.866754041065967, + "grad_norm": 0.24547280371189117, + "learning_rate": 0.0006, + "loss": 4.089683532714844, + "step": 1142 + }, + { + "epoch": 15.880733944954128, + "grad_norm": 0.23653888702392578, + "learning_rate": 0.0006, + "loss": 4.067309379577637, + "step": 1143 + }, + { + "epoch": 15.89471384884229, + "grad_norm": 0.23784421384334564, + "learning_rate": 0.0006, + "loss": 4.09156608581543, + "step": 1144 + }, + { + "epoch": 15.90869375273045, + "grad_norm": 0.22753281891345978, + "learning_rate": 0.0006, + "loss": 4.095428466796875, + "step": 1145 + }, + { + "epoch": 15.922673656618612, + "grad_norm": 0.2464212030172348, + "learning_rate": 0.0006, + "loss": 4.1036376953125, + "step": 1146 + }, + { + "epoch": 15.936653560506771, + "grad_norm": 0.25531601905822754, + "learning_rate": 0.0006, + "loss": 4.073996543884277, + "step": 1147 + }, + { + "epoch": 15.950633464394933, + "grad_norm": 0.24145905673503876, + "learning_rate": 0.0006, + "loss": 4.094479560852051, + "step": 1148 + }, + { + "epoch": 15.964613368283093, + "grad_norm": 0.24274317920207977, + "learning_rate": 0.0006, + "loss": 4.101981163024902, + "step": 1149 + }, + { + "epoch": 15.978593272171254, + "grad_norm": 0.2350679188966751, + "learning_rate": 0.0006, + "loss": 4.057965278625488, + "step": 1150 + }, + { + "epoch": 15.992573176059414, + "grad_norm": 0.24072253704071045, + "learning_rate": 0.0006, + "loss": 4.020050048828125, + "step": 1151 + }, + { + "epoch": 16.0, + "grad_norm": 0.253978967666626, + "learning_rate": 0.0006, + "loss": 4.061928749084473, + "step": 1152 + }, + { + "epoch": 16.0, + "eval_loss": 4.270665645599365, + "eval_runtime": 44.5063, + "eval_samples_per_second": 54.869, + "eval_steps_per_second": 3.438, + "step": 1152 + }, + { + "epoch": 16.01397990388816, + "grad_norm": 0.3265204131603241, + "learning_rate": 0.0006, + "loss": 4.059116363525391, + "step": 1153 + }, + { + "epoch": 16.027959807776323, + "grad_norm": 0.34139737486839294, + "learning_rate": 0.0006, + "loss": 4.062219619750977, + "step": 1154 + }, + { + "epoch": 16.041939711664483, + "grad_norm": 0.2849949598312378, + "learning_rate": 0.0006, + "loss": 4.032323837280273, + "step": 1155 + }, + { + "epoch": 16.055919615552643, + "grad_norm": 0.25031402707099915, + "learning_rate": 0.0006, + "loss": 4.075527191162109, + "step": 1156 + }, + { + "epoch": 16.069899519440803, + "grad_norm": 0.25207436084747314, + "learning_rate": 0.0006, + "loss": 4.0883097648620605, + "step": 1157 + }, + { + "epoch": 16.083879423328966, + "grad_norm": 0.28677356243133545, + "learning_rate": 0.0006, + "loss": 4.040797233581543, + "step": 1158 + }, + { + "epoch": 16.097859327217126, + "grad_norm": 0.30778825283050537, + "learning_rate": 0.0006, + "loss": 4.051504135131836, + "step": 1159 + }, + { + "epoch": 16.111839231105286, + "grad_norm": 0.3136911988258362, + "learning_rate": 0.0006, + "loss": 4.045449256896973, + "step": 1160 + }, + { + "epoch": 16.125819134993446, + "grad_norm": 0.34384530782699585, + "learning_rate": 0.0006, + "loss": 4.069897651672363, + "step": 1161 + }, + { + "epoch": 16.13979903888161, + "grad_norm": 0.3074268400669098, + "learning_rate": 0.0006, + "loss": 4.0621137619018555, + "step": 1162 + }, + { + "epoch": 16.15377894276977, + "grad_norm": 0.33090949058532715, + "learning_rate": 0.0006, + "loss": 4.084089279174805, + "step": 1163 + }, + { + "epoch": 16.16775884665793, + "grad_norm": 0.26358580589294434, + "learning_rate": 0.0006, + "loss": 4.066563606262207, + "step": 1164 + }, + { + "epoch": 16.18173875054609, + "grad_norm": 0.25586041808128357, + "learning_rate": 0.0006, + "loss": 4.08109188079834, + "step": 1165 + }, + { + "epoch": 16.195718654434252, + "grad_norm": 0.2966184616088867, + "learning_rate": 0.0006, + "loss": 4.039186477661133, + "step": 1166 + }, + { + "epoch": 16.209698558322412, + "grad_norm": 0.3064924478530884, + "learning_rate": 0.0006, + "loss": 4.08139705657959, + "step": 1167 + }, + { + "epoch": 16.22367846221057, + "grad_norm": 0.28671345114707947, + "learning_rate": 0.0006, + "loss": 4.04637336730957, + "step": 1168 + }, + { + "epoch": 16.23765836609873, + "grad_norm": 0.26209691166877747, + "learning_rate": 0.0006, + "loss": 4.052768707275391, + "step": 1169 + }, + { + "epoch": 16.251638269986895, + "grad_norm": 0.2758907079696655, + "learning_rate": 0.0006, + "loss": 4.064321517944336, + "step": 1170 + }, + { + "epoch": 16.265618173875055, + "grad_norm": 0.25961801409721375, + "learning_rate": 0.0006, + "loss": 4.057299613952637, + "step": 1171 + }, + { + "epoch": 16.279598077763215, + "grad_norm": 0.2513751685619354, + "learning_rate": 0.0006, + "loss": 4.064148902893066, + "step": 1172 + }, + { + "epoch": 16.293577981651374, + "grad_norm": 0.23920276761054993, + "learning_rate": 0.0006, + "loss": 4.101890563964844, + "step": 1173 + }, + { + "epoch": 16.307557885539538, + "grad_norm": 0.22746537625789642, + "learning_rate": 0.0006, + "loss": 4.086627006530762, + "step": 1174 + }, + { + "epoch": 16.321537789427698, + "grad_norm": 0.22633525729179382, + "learning_rate": 0.0006, + "loss": 4.04669189453125, + "step": 1175 + }, + { + "epoch": 16.335517693315857, + "grad_norm": 0.2654891610145569, + "learning_rate": 0.0006, + "loss": 4.086793422698975, + "step": 1176 + }, + { + "epoch": 16.34949759720402, + "grad_norm": 0.2872653007507324, + "learning_rate": 0.0006, + "loss": 4.077983856201172, + "step": 1177 + }, + { + "epoch": 16.36347750109218, + "grad_norm": 0.25726038217544556, + "learning_rate": 0.0006, + "loss": 4.066011428833008, + "step": 1178 + }, + { + "epoch": 16.37745740498034, + "grad_norm": 0.2592027485370636, + "learning_rate": 0.0006, + "loss": 4.0482988357543945, + "step": 1179 + }, + { + "epoch": 16.3914373088685, + "grad_norm": 0.2768886685371399, + "learning_rate": 0.0006, + "loss": 4.065151214599609, + "step": 1180 + }, + { + "epoch": 16.405417212756664, + "grad_norm": 0.2956002652645111, + "learning_rate": 0.0006, + "loss": 4.037791728973389, + "step": 1181 + }, + { + "epoch": 16.419397116644824, + "grad_norm": 0.3092120885848999, + "learning_rate": 0.0006, + "loss": 4.062164306640625, + "step": 1182 + }, + { + "epoch": 16.433377020532983, + "grad_norm": 0.29516810178756714, + "learning_rate": 0.0006, + "loss": 4.025505065917969, + "step": 1183 + }, + { + "epoch": 16.447356924421143, + "grad_norm": 0.2640177607536316, + "learning_rate": 0.0006, + "loss": 4.060182571411133, + "step": 1184 + }, + { + "epoch": 16.461336828309307, + "grad_norm": 0.2444908320903778, + "learning_rate": 0.0006, + "loss": 4.046144962310791, + "step": 1185 + }, + { + "epoch": 16.475316732197467, + "grad_norm": 0.23190705478191376, + "learning_rate": 0.0006, + "loss": 4.075569152832031, + "step": 1186 + }, + { + "epoch": 16.489296636085626, + "grad_norm": 0.2383626103401184, + "learning_rate": 0.0006, + "loss": 4.088897705078125, + "step": 1187 + }, + { + "epoch": 16.503276539973786, + "grad_norm": 0.20688803493976593, + "learning_rate": 0.0006, + "loss": 4.064517974853516, + "step": 1188 + }, + { + "epoch": 16.51725644386195, + "grad_norm": 0.22610054910182953, + "learning_rate": 0.0006, + "loss": 4.04502010345459, + "step": 1189 + }, + { + "epoch": 16.53123634775011, + "grad_norm": 0.2014893889427185, + "learning_rate": 0.0006, + "loss": 4.058279514312744, + "step": 1190 + }, + { + "epoch": 16.54521625163827, + "grad_norm": 0.21459777653217316, + "learning_rate": 0.0006, + "loss": 4.066389083862305, + "step": 1191 + }, + { + "epoch": 16.55919615552643, + "grad_norm": 0.22909940779209137, + "learning_rate": 0.0006, + "loss": 4.0557966232299805, + "step": 1192 + }, + { + "epoch": 16.573176059414592, + "grad_norm": 0.20039083063602448, + "learning_rate": 0.0006, + "loss": 4.092845916748047, + "step": 1193 + }, + { + "epoch": 16.587155963302752, + "grad_norm": 0.22651726007461548, + "learning_rate": 0.0006, + "loss": 4.034615516662598, + "step": 1194 + }, + { + "epoch": 16.601135867190912, + "grad_norm": 0.21901755034923553, + "learning_rate": 0.0006, + "loss": 4.035619735717773, + "step": 1195 + }, + { + "epoch": 16.615115771079076, + "grad_norm": 0.22930841147899628, + "learning_rate": 0.0006, + "loss": 4.080800533294678, + "step": 1196 + }, + { + "epoch": 16.629095674967235, + "grad_norm": 0.212818443775177, + "learning_rate": 0.0006, + "loss": 4.030189514160156, + "step": 1197 + }, + { + "epoch": 16.643075578855395, + "grad_norm": 0.2370826154947281, + "learning_rate": 0.0006, + "loss": 4.062643527984619, + "step": 1198 + }, + { + "epoch": 16.657055482743555, + "grad_norm": 0.24786995351314545, + "learning_rate": 0.0006, + "loss": 4.031761169433594, + "step": 1199 + }, + { + "epoch": 16.67103538663172, + "grad_norm": 0.2305847704410553, + "learning_rate": 0.0006, + "loss": 4.083752155303955, + "step": 1200 + }, + { + "epoch": 16.68501529051988, + "grad_norm": 0.23336584866046906, + "learning_rate": 0.0006, + "loss": 4.079145431518555, + "step": 1201 + }, + { + "epoch": 16.698995194408038, + "grad_norm": 0.23976293206214905, + "learning_rate": 0.0006, + "loss": 4.020473957061768, + "step": 1202 + }, + { + "epoch": 16.712975098296198, + "grad_norm": 0.222761869430542, + "learning_rate": 0.0006, + "loss": 4.065582752227783, + "step": 1203 + }, + { + "epoch": 16.72695500218436, + "grad_norm": 0.23725618422031403, + "learning_rate": 0.0006, + "loss": 4.0263776779174805, + "step": 1204 + }, + { + "epoch": 16.74093490607252, + "grad_norm": 0.23873984813690186, + "learning_rate": 0.0006, + "loss": 4.053092956542969, + "step": 1205 + }, + { + "epoch": 16.75491480996068, + "grad_norm": 0.21043002605438232, + "learning_rate": 0.0006, + "loss": 4.063965797424316, + "step": 1206 + }, + { + "epoch": 16.76889471384884, + "grad_norm": 0.19863522052764893, + "learning_rate": 0.0006, + "loss": 4.061187267303467, + "step": 1207 + }, + { + "epoch": 16.782874617737004, + "grad_norm": 0.1953752487897873, + "learning_rate": 0.0006, + "loss": 4.046016693115234, + "step": 1208 + }, + { + "epoch": 16.796854521625164, + "grad_norm": 0.2130361795425415, + "learning_rate": 0.0006, + "loss": 4.066933631896973, + "step": 1209 + }, + { + "epoch": 16.810834425513324, + "grad_norm": 0.19598130881786346, + "learning_rate": 0.0006, + "loss": 4.071558952331543, + "step": 1210 + }, + { + "epoch": 16.824814329401484, + "grad_norm": 0.20331116020679474, + "learning_rate": 0.0006, + "loss": 4.088632106781006, + "step": 1211 + }, + { + "epoch": 16.838794233289647, + "grad_norm": 0.20423150062561035, + "learning_rate": 0.0006, + "loss": 4.032224655151367, + "step": 1212 + }, + { + "epoch": 16.852774137177807, + "grad_norm": 0.2401197850704193, + "learning_rate": 0.0006, + "loss": 4.037393569946289, + "step": 1213 + }, + { + "epoch": 16.866754041065967, + "grad_norm": 0.26102620363235474, + "learning_rate": 0.0006, + "loss": 4.04738712310791, + "step": 1214 + }, + { + "epoch": 16.88073394495413, + "grad_norm": 0.2438521534204483, + "learning_rate": 0.0006, + "loss": 4.015673637390137, + "step": 1215 + }, + { + "epoch": 16.89471384884229, + "grad_norm": 0.20742061734199524, + "learning_rate": 0.0006, + "loss": 4.049060821533203, + "step": 1216 + }, + { + "epoch": 16.90869375273045, + "grad_norm": 0.22028608620166779, + "learning_rate": 0.0006, + "loss": 4.088971138000488, + "step": 1217 + }, + { + "epoch": 16.92267365661861, + "grad_norm": 0.21746744215488434, + "learning_rate": 0.0006, + "loss": 4.021710395812988, + "step": 1218 + }, + { + "epoch": 16.936653560506773, + "grad_norm": 0.2226102203130722, + "learning_rate": 0.0006, + "loss": 4.050119400024414, + "step": 1219 + }, + { + "epoch": 16.950633464394933, + "grad_norm": 0.23903657495975494, + "learning_rate": 0.0006, + "loss": 4.0570526123046875, + "step": 1220 + }, + { + "epoch": 16.964613368283093, + "grad_norm": 0.2556349039077759, + "learning_rate": 0.0006, + "loss": 4.0448808670043945, + "step": 1221 + }, + { + "epoch": 16.978593272171253, + "grad_norm": 0.28445592522621155, + "learning_rate": 0.0006, + "loss": 4.052034378051758, + "step": 1222 + }, + { + "epoch": 16.992573176059416, + "grad_norm": 0.273973673582077, + "learning_rate": 0.0006, + "loss": 4.02907657623291, + "step": 1223 + }, + { + "epoch": 17.0, + "grad_norm": 0.26125091314315796, + "learning_rate": 0.0006, + "loss": 4.10643196105957, + "step": 1224 + }, + { + "epoch": 17.0, + "eval_loss": 4.2585954666137695, + "eval_runtime": 44.8583, + "eval_samples_per_second": 54.438, + "eval_steps_per_second": 3.411, + "step": 1224 + }, + { + "epoch": 17.01397990388816, + "grad_norm": 0.2786196768283844, + "learning_rate": 0.0006, + "loss": 4.044719219207764, + "step": 1225 + }, + { + "epoch": 17.027959807776323, + "grad_norm": 0.2969571650028229, + "learning_rate": 0.0006, + "loss": 4.022037506103516, + "step": 1226 + }, + { + "epoch": 17.041939711664483, + "grad_norm": 0.32196253538131714, + "learning_rate": 0.0006, + "loss": 4.03636360168457, + "step": 1227 + }, + { + "epoch": 17.055919615552643, + "grad_norm": 0.28617000579833984, + "learning_rate": 0.0006, + "loss": 4.012125492095947, + "step": 1228 + }, + { + "epoch": 17.069899519440803, + "grad_norm": 0.26539644598960876, + "learning_rate": 0.0006, + "loss": 4.020190715789795, + "step": 1229 + }, + { + "epoch": 17.083879423328966, + "grad_norm": 0.24315394461154938, + "learning_rate": 0.0006, + "loss": 4.0553812980651855, + "step": 1230 + }, + { + "epoch": 17.097859327217126, + "grad_norm": 0.23798158764839172, + "learning_rate": 0.0006, + "loss": 4.004805088043213, + "step": 1231 + }, + { + "epoch": 17.111839231105286, + "grad_norm": 0.25723618268966675, + "learning_rate": 0.0006, + "loss": 4.00108003616333, + "step": 1232 + }, + { + "epoch": 17.125819134993446, + "grad_norm": 0.2669757604598999, + "learning_rate": 0.0006, + "loss": 4.00828742980957, + "step": 1233 + }, + { + "epoch": 17.13979903888161, + "grad_norm": 0.26421651244163513, + "learning_rate": 0.0006, + "loss": 3.995478391647339, + "step": 1234 + }, + { + "epoch": 17.15377894276977, + "grad_norm": 0.24745801091194153, + "learning_rate": 0.0006, + "loss": 4.0171027183532715, + "step": 1235 + }, + { + "epoch": 17.16775884665793, + "grad_norm": 0.27028775215148926, + "learning_rate": 0.0006, + "loss": 4.017108917236328, + "step": 1236 + }, + { + "epoch": 17.18173875054609, + "grad_norm": 0.27247968316078186, + "learning_rate": 0.0006, + "loss": 4.032601356506348, + "step": 1237 + }, + { + "epoch": 17.195718654434252, + "grad_norm": 0.24620869755744934, + "learning_rate": 0.0006, + "loss": 4.022171974182129, + "step": 1238 + }, + { + "epoch": 17.209698558322412, + "grad_norm": 0.23407386243343353, + "learning_rate": 0.0006, + "loss": 3.9946959018707275, + "step": 1239 + }, + { + "epoch": 17.22367846221057, + "grad_norm": 0.22559069097042084, + "learning_rate": 0.0006, + "loss": 4.013072490692139, + "step": 1240 + }, + { + "epoch": 17.23765836609873, + "grad_norm": 0.226687952876091, + "learning_rate": 0.0006, + "loss": 4.023543834686279, + "step": 1241 + }, + { + "epoch": 17.251638269986895, + "grad_norm": 0.24436360597610474, + "learning_rate": 0.0006, + "loss": 4.044206619262695, + "step": 1242 + }, + { + "epoch": 17.265618173875055, + "grad_norm": 0.25527626276016235, + "learning_rate": 0.0006, + "loss": 4.016424179077148, + "step": 1243 + }, + { + "epoch": 17.279598077763215, + "grad_norm": 0.26126864552497864, + "learning_rate": 0.0006, + "loss": 4.024394512176514, + "step": 1244 + }, + { + "epoch": 17.293577981651374, + "grad_norm": 0.25746744871139526, + "learning_rate": 0.0006, + "loss": 4.046844482421875, + "step": 1245 + }, + { + "epoch": 17.307557885539538, + "grad_norm": 0.26579564809799194, + "learning_rate": 0.0006, + "loss": 4.021010398864746, + "step": 1246 + }, + { + "epoch": 17.321537789427698, + "grad_norm": 0.2713971734046936, + "learning_rate": 0.0006, + "loss": 4.022331237792969, + "step": 1247 + }, + { + "epoch": 17.335517693315857, + "grad_norm": 0.24217180907726288, + "learning_rate": 0.0006, + "loss": 4.006353855133057, + "step": 1248 + }, + { + "epoch": 17.34949759720402, + "grad_norm": 0.26899752020835876, + "learning_rate": 0.0006, + "loss": 4.068023681640625, + "step": 1249 + }, + { + "epoch": 17.36347750109218, + "grad_norm": 0.26745253801345825, + "learning_rate": 0.0006, + "loss": 4.031207084655762, + "step": 1250 + }, + { + "epoch": 17.37745740498034, + "grad_norm": 0.21533764898777008, + "learning_rate": 0.0006, + "loss": 4.042410850524902, + "step": 1251 + }, + { + "epoch": 17.3914373088685, + "grad_norm": 0.21958027780056, + "learning_rate": 0.0006, + "loss": 4.02597713470459, + "step": 1252 + }, + { + "epoch": 17.405417212756664, + "grad_norm": 0.263068825006485, + "learning_rate": 0.0006, + "loss": 4.0035905838012695, + "step": 1253 + }, + { + "epoch": 17.419397116644824, + "grad_norm": 0.24044716358184814, + "learning_rate": 0.0006, + "loss": 4.005317687988281, + "step": 1254 + }, + { + "epoch": 17.433377020532983, + "grad_norm": 0.19142559170722961, + "learning_rate": 0.0006, + "loss": 3.9976844787597656, + "step": 1255 + }, + { + "epoch": 17.447356924421143, + "grad_norm": 0.18650250136852264, + "learning_rate": 0.0006, + "loss": 4.031353950500488, + "step": 1256 + }, + { + "epoch": 17.461336828309307, + "grad_norm": 0.1984022557735443, + "learning_rate": 0.0006, + "loss": 4.002097129821777, + "step": 1257 + }, + { + "epoch": 17.475316732197467, + "grad_norm": 0.20087844133377075, + "learning_rate": 0.0006, + "loss": 4.031151294708252, + "step": 1258 + }, + { + "epoch": 17.489296636085626, + "grad_norm": 0.20881228148937225, + "learning_rate": 0.0006, + "loss": 4.034793853759766, + "step": 1259 + }, + { + "epoch": 17.503276539973786, + "grad_norm": 0.23958556354045868, + "learning_rate": 0.0006, + "loss": 4.025238990783691, + "step": 1260 + }, + { + "epoch": 17.51725644386195, + "grad_norm": 0.23927845060825348, + "learning_rate": 0.0006, + "loss": 3.999828338623047, + "step": 1261 + }, + { + "epoch": 17.53123634775011, + "grad_norm": 0.20342715084552765, + "learning_rate": 0.0006, + "loss": 4.054262161254883, + "step": 1262 + }, + { + "epoch": 17.54521625163827, + "grad_norm": 0.21370555460453033, + "learning_rate": 0.0006, + "loss": 4.011582374572754, + "step": 1263 + }, + { + "epoch": 17.55919615552643, + "grad_norm": 0.23681946098804474, + "learning_rate": 0.0006, + "loss": 4.029694080352783, + "step": 1264 + }, + { + "epoch": 17.573176059414592, + "grad_norm": 0.24190311133861542, + "learning_rate": 0.0006, + "loss": 4.018783092498779, + "step": 1265 + }, + { + "epoch": 17.587155963302752, + "grad_norm": 0.23215509951114655, + "learning_rate": 0.0006, + "loss": 4.009703159332275, + "step": 1266 + }, + { + "epoch": 17.601135867190912, + "grad_norm": 0.21122977137565613, + "learning_rate": 0.0006, + "loss": 4.0345659255981445, + "step": 1267 + }, + { + "epoch": 17.615115771079076, + "grad_norm": 0.2075948715209961, + "learning_rate": 0.0006, + "loss": 4.070703506469727, + "step": 1268 + }, + { + "epoch": 17.629095674967235, + "grad_norm": 0.21667909622192383, + "learning_rate": 0.0006, + "loss": 4.020771503448486, + "step": 1269 + }, + { + "epoch": 17.643075578855395, + "grad_norm": 0.20960724353790283, + "learning_rate": 0.0006, + "loss": 4.026404857635498, + "step": 1270 + }, + { + "epoch": 17.657055482743555, + "grad_norm": 0.22575686872005463, + "learning_rate": 0.0006, + "loss": 4.01981258392334, + "step": 1271 + }, + { + "epoch": 17.67103538663172, + "grad_norm": 0.2565988302230835, + "learning_rate": 0.0006, + "loss": 4.015827178955078, + "step": 1272 + }, + { + "epoch": 17.68501529051988, + "grad_norm": 0.24831551313400269, + "learning_rate": 0.0006, + "loss": 4.012457847595215, + "step": 1273 + }, + { + "epoch": 17.698995194408038, + "grad_norm": 0.22595494985580444, + "learning_rate": 0.0006, + "loss": 4.031386375427246, + "step": 1274 + }, + { + "epoch": 17.712975098296198, + "grad_norm": 0.20687322318553925, + "learning_rate": 0.0006, + "loss": 4.014216423034668, + "step": 1275 + }, + { + "epoch": 17.72695500218436, + "grad_norm": 0.21916012465953827, + "learning_rate": 0.0006, + "loss": 4.037643909454346, + "step": 1276 + }, + { + "epoch": 17.74093490607252, + "grad_norm": 0.2243107706308365, + "learning_rate": 0.0006, + "loss": 4.033044815063477, + "step": 1277 + }, + { + "epoch": 17.75491480996068, + "grad_norm": 0.2402164787054062, + "learning_rate": 0.0006, + "loss": 4.026636123657227, + "step": 1278 + }, + { + "epoch": 17.76889471384884, + "grad_norm": 0.27957046031951904, + "learning_rate": 0.0006, + "loss": 4.0270867347717285, + "step": 1279 + }, + { + "epoch": 17.782874617737004, + "grad_norm": 0.27447596192359924, + "learning_rate": 0.0006, + "loss": 4.0120134353637695, + "step": 1280 + }, + { + "epoch": 17.796854521625164, + "grad_norm": 0.26926323771476746, + "learning_rate": 0.0006, + "loss": 4.027970314025879, + "step": 1281 + }, + { + "epoch": 17.810834425513324, + "grad_norm": 0.2535291314125061, + "learning_rate": 0.0006, + "loss": 4.002565383911133, + "step": 1282 + }, + { + "epoch": 17.824814329401484, + "grad_norm": 0.22639447450637817, + "learning_rate": 0.0006, + "loss": 4.032750606536865, + "step": 1283 + }, + { + "epoch": 17.838794233289647, + "grad_norm": 0.23384462296962738, + "learning_rate": 0.0006, + "loss": 4.03568172454834, + "step": 1284 + }, + { + "epoch": 17.852774137177807, + "grad_norm": 0.22971470654010773, + "learning_rate": 0.0006, + "loss": 4.031299591064453, + "step": 1285 + }, + { + "epoch": 17.866754041065967, + "grad_norm": 0.24540141224861145, + "learning_rate": 0.0006, + "loss": 4.0142669677734375, + "step": 1286 + }, + { + "epoch": 17.88073394495413, + "grad_norm": 0.2304888367652893, + "learning_rate": 0.0006, + "loss": 3.9964895248413086, + "step": 1287 + }, + { + "epoch": 17.89471384884229, + "grad_norm": 0.22082284092903137, + "learning_rate": 0.0006, + "loss": 4.024693489074707, + "step": 1288 + }, + { + "epoch": 17.90869375273045, + "grad_norm": 0.23677092790603638, + "learning_rate": 0.0006, + "loss": 4.002082347869873, + "step": 1289 + }, + { + "epoch": 17.92267365661861, + "grad_norm": 0.23122332990169525, + "learning_rate": 0.0006, + "loss": 4.025351524353027, + "step": 1290 + }, + { + "epoch": 17.936653560506773, + "grad_norm": 0.2548119127750397, + "learning_rate": 0.0006, + "loss": 3.9955825805664062, + "step": 1291 + }, + { + "epoch": 17.950633464394933, + "grad_norm": 0.26950931549072266, + "learning_rate": 0.0006, + "loss": 4.026151180267334, + "step": 1292 + }, + { + "epoch": 17.964613368283093, + "grad_norm": 0.3023233711719513, + "learning_rate": 0.0006, + "loss": 4.006035804748535, + "step": 1293 + }, + { + "epoch": 17.978593272171253, + "grad_norm": 0.3190958499908447, + "learning_rate": 0.0006, + "loss": 4.023565292358398, + "step": 1294 + }, + { + "epoch": 17.992573176059416, + "grad_norm": 0.28878068923950195, + "learning_rate": 0.0006, + "loss": 4.020973205566406, + "step": 1295 + }, + { + "epoch": 18.0, + "grad_norm": 0.27312418818473816, + "learning_rate": 0.0006, + "loss": 3.99906587600708, + "step": 1296 + }, + { + "epoch": 18.0, + "eval_loss": 4.224447250366211, + "eval_runtime": 52.5728, + "eval_samples_per_second": 46.45, + "eval_steps_per_second": 2.91, + "step": 1296 + }, + { + "epoch": 18.01397990388816, + "grad_norm": 0.2567712664604187, + "learning_rate": 0.0006, + "loss": 3.9755055904388428, + "step": 1297 + }, + { + "epoch": 18.027959807776323, + "grad_norm": 0.25048133730888367, + "learning_rate": 0.0006, + "loss": 4.009254455566406, + "step": 1298 + }, + { + "epoch": 18.041939711664483, + "grad_norm": 0.2556909918785095, + "learning_rate": 0.0006, + "loss": 4.001235008239746, + "step": 1299 + }, + { + "epoch": 18.055919615552643, + "grad_norm": 0.2501400113105774, + "learning_rate": 0.0006, + "loss": 3.980726480484009, + "step": 1300 + }, + { + "epoch": 18.069899519440803, + "grad_norm": 0.23977792263031006, + "learning_rate": 0.0006, + "loss": 3.964195728302002, + "step": 1301 + }, + { + "epoch": 18.083879423328966, + "grad_norm": 0.25650718808174133, + "learning_rate": 0.0006, + "loss": 4.015914440155029, + "step": 1302 + }, + { + "epoch": 18.097859327217126, + "grad_norm": 0.234053835272789, + "learning_rate": 0.0006, + "loss": 4.0159149169921875, + "step": 1303 + }, + { + "epoch": 18.111839231105286, + "grad_norm": 0.21967713534832, + "learning_rate": 0.0006, + "loss": 4.0055694580078125, + "step": 1304 + }, + { + "epoch": 18.125819134993446, + "grad_norm": 0.21790878474712372, + "learning_rate": 0.0006, + "loss": 3.986253261566162, + "step": 1305 + }, + { + "epoch": 18.13979903888161, + "grad_norm": 0.22955302894115448, + "learning_rate": 0.0006, + "loss": 3.959421157836914, + "step": 1306 + }, + { + "epoch": 18.15377894276977, + "grad_norm": 0.2559174597263336, + "learning_rate": 0.0006, + "loss": 4.0069756507873535, + "step": 1307 + }, + { + "epoch": 18.16775884665793, + "grad_norm": 0.26132866740226746, + "learning_rate": 0.0006, + "loss": 3.9874095916748047, + "step": 1308 + }, + { + "epoch": 18.18173875054609, + "grad_norm": 0.23258940875530243, + "learning_rate": 0.0006, + "loss": 3.9762492179870605, + "step": 1309 + }, + { + "epoch": 18.195718654434252, + "grad_norm": 0.22347190976142883, + "learning_rate": 0.0006, + "loss": 3.9923410415649414, + "step": 1310 + }, + { + "epoch": 18.209698558322412, + "grad_norm": 0.23095804452896118, + "learning_rate": 0.0006, + "loss": 4.019245624542236, + "step": 1311 + }, + { + "epoch": 18.22367846221057, + "grad_norm": 0.24817052483558655, + "learning_rate": 0.0006, + "loss": 3.9697511196136475, + "step": 1312 + }, + { + "epoch": 18.23765836609873, + "grad_norm": 0.2566024959087372, + "learning_rate": 0.0006, + "loss": 3.978804111480713, + "step": 1313 + }, + { + "epoch": 18.251638269986895, + "grad_norm": 0.2527952790260315, + "learning_rate": 0.0006, + "loss": 3.972018241882324, + "step": 1314 + }, + { + "epoch": 18.265618173875055, + "grad_norm": 0.2508150637149811, + "learning_rate": 0.0006, + "loss": 3.9971275329589844, + "step": 1315 + }, + { + "epoch": 18.279598077763215, + "grad_norm": 0.23242022097110748, + "learning_rate": 0.0006, + "loss": 3.9712045192718506, + "step": 1316 + }, + { + "epoch": 18.293577981651374, + "grad_norm": 0.23474404215812683, + "learning_rate": 0.0006, + "loss": 3.9926767349243164, + "step": 1317 + }, + { + "epoch": 18.307557885539538, + "grad_norm": 0.2417769432067871, + "learning_rate": 0.0006, + "loss": 3.9920949935913086, + "step": 1318 + }, + { + "epoch": 18.321537789427698, + "grad_norm": 0.23839452862739563, + "learning_rate": 0.0006, + "loss": 4.016645431518555, + "step": 1319 + }, + { + "epoch": 18.335517693315857, + "grad_norm": 0.2512452304363251, + "learning_rate": 0.0006, + "loss": 3.97586727142334, + "step": 1320 + }, + { + "epoch": 18.34949759720402, + "grad_norm": 0.27503693103790283, + "learning_rate": 0.0006, + "loss": 4.000148773193359, + "step": 1321 + }, + { + "epoch": 18.36347750109218, + "grad_norm": 0.27830836176872253, + "learning_rate": 0.0006, + "loss": 3.9972195625305176, + "step": 1322 + }, + { + "epoch": 18.37745740498034, + "grad_norm": 0.2571812570095062, + "learning_rate": 0.0006, + "loss": 3.9900810718536377, + "step": 1323 + }, + { + "epoch": 18.3914373088685, + "grad_norm": 0.2310052365064621, + "learning_rate": 0.0006, + "loss": 4.003000259399414, + "step": 1324 + }, + { + "epoch": 18.405417212756664, + "grad_norm": 0.19615735113620758, + "learning_rate": 0.0006, + "loss": 3.9536571502685547, + "step": 1325 + }, + { + "epoch": 18.419397116644824, + "grad_norm": 0.21323896944522858, + "learning_rate": 0.0006, + "loss": 3.977508068084717, + "step": 1326 + }, + { + "epoch": 18.433377020532983, + "grad_norm": 0.21404202282428741, + "learning_rate": 0.0006, + "loss": 4.015361785888672, + "step": 1327 + }, + { + "epoch": 18.447356924421143, + "grad_norm": 0.1991959661245346, + "learning_rate": 0.0006, + "loss": 4.000286102294922, + "step": 1328 + }, + { + "epoch": 18.461336828309307, + "grad_norm": 0.2073599398136139, + "learning_rate": 0.0006, + "loss": 3.973065137863159, + "step": 1329 + }, + { + "epoch": 18.475316732197467, + "grad_norm": 0.2096073031425476, + "learning_rate": 0.0006, + "loss": 3.987032890319824, + "step": 1330 + }, + { + "epoch": 18.489296636085626, + "grad_norm": 0.2380610853433609, + "learning_rate": 0.0006, + "loss": 4.035274505615234, + "step": 1331 + }, + { + "epoch": 18.503276539973786, + "grad_norm": 0.23570716381072998, + "learning_rate": 0.0006, + "loss": 4.010516166687012, + "step": 1332 + }, + { + "epoch": 18.51725644386195, + "grad_norm": 0.24805466830730438, + "learning_rate": 0.0006, + "loss": 3.9750983715057373, + "step": 1333 + }, + { + "epoch": 18.53123634775011, + "grad_norm": 0.25173231959342957, + "learning_rate": 0.0006, + "loss": 3.9742345809936523, + "step": 1334 + }, + { + "epoch": 18.54521625163827, + "grad_norm": 0.24590367078781128, + "learning_rate": 0.0006, + "loss": 4.0037312507629395, + "step": 1335 + }, + { + "epoch": 18.55919615552643, + "grad_norm": 0.24379394948482513, + "learning_rate": 0.0006, + "loss": 3.993858814239502, + "step": 1336 + }, + { + "epoch": 18.573176059414592, + "grad_norm": 0.21708883345127106, + "learning_rate": 0.0006, + "loss": 3.965670585632324, + "step": 1337 + }, + { + "epoch": 18.587155963302752, + "grad_norm": 0.21024051308631897, + "learning_rate": 0.0006, + "loss": 3.987551689147949, + "step": 1338 + }, + { + "epoch": 18.601135867190912, + "grad_norm": 0.23376783728599548, + "learning_rate": 0.0006, + "loss": 4.002841472625732, + "step": 1339 + }, + { + "epoch": 18.615115771079076, + "grad_norm": 0.25350701808929443, + "learning_rate": 0.0006, + "loss": 3.9881370067596436, + "step": 1340 + }, + { + "epoch": 18.629095674967235, + "grad_norm": 0.2542140483856201, + "learning_rate": 0.0006, + "loss": 4.003695964813232, + "step": 1341 + }, + { + "epoch": 18.643075578855395, + "grad_norm": 0.22932685911655426, + "learning_rate": 0.0006, + "loss": 4.0146002769470215, + "step": 1342 + }, + { + "epoch": 18.657055482743555, + "grad_norm": 0.21099458634853363, + "learning_rate": 0.0006, + "loss": 3.970472812652588, + "step": 1343 + }, + { + "epoch": 18.67103538663172, + "grad_norm": 0.2234615832567215, + "learning_rate": 0.0006, + "loss": 3.9821488857269287, + "step": 1344 + }, + { + "epoch": 18.68501529051988, + "grad_norm": 0.230327770113945, + "learning_rate": 0.0006, + "loss": 3.996274948120117, + "step": 1345 + }, + { + "epoch": 18.698995194408038, + "grad_norm": 0.23596233129501343, + "learning_rate": 0.0006, + "loss": 3.9747462272644043, + "step": 1346 + }, + { + "epoch": 18.712975098296198, + "grad_norm": 0.24173159897327423, + "learning_rate": 0.0006, + "loss": 4.011804103851318, + "step": 1347 + }, + { + "epoch": 18.72695500218436, + "grad_norm": 0.24087604880332947, + "learning_rate": 0.0006, + "loss": 4.008726119995117, + "step": 1348 + }, + { + "epoch": 18.74093490607252, + "grad_norm": 0.2457292526960373, + "learning_rate": 0.0006, + "loss": 3.990793228149414, + "step": 1349 + }, + { + "epoch": 18.75491480996068, + "grad_norm": 0.22946089506149292, + "learning_rate": 0.0006, + "loss": 3.980494260787964, + "step": 1350 + }, + { + "epoch": 18.76889471384884, + "grad_norm": 0.22986692190170288, + "learning_rate": 0.0006, + "loss": 3.97006893157959, + "step": 1351 + }, + { + "epoch": 18.782874617737004, + "grad_norm": 0.23358555138111115, + "learning_rate": 0.0006, + "loss": 4.008172035217285, + "step": 1352 + }, + { + "epoch": 18.796854521625164, + "grad_norm": 0.20183615386486053, + "learning_rate": 0.0006, + "loss": 3.9720888137817383, + "step": 1353 + }, + { + "epoch": 18.810834425513324, + "grad_norm": 0.19975653290748596, + "learning_rate": 0.0006, + "loss": 3.9783310890197754, + "step": 1354 + }, + { + "epoch": 18.824814329401484, + "grad_norm": 0.18911021947860718, + "learning_rate": 0.0006, + "loss": 3.985982894897461, + "step": 1355 + }, + { + "epoch": 18.838794233289647, + "grad_norm": 0.15984168648719788, + "learning_rate": 0.0006, + "loss": 3.9740548133850098, + "step": 1356 + }, + { + "epoch": 18.852774137177807, + "grad_norm": 0.1755436211824417, + "learning_rate": 0.0006, + "loss": 4.013090133666992, + "step": 1357 + }, + { + "epoch": 18.866754041065967, + "grad_norm": 0.1798417866230011, + "learning_rate": 0.0006, + "loss": 3.997880697250366, + "step": 1358 + }, + { + "epoch": 18.88073394495413, + "grad_norm": 0.20206265151500702, + "learning_rate": 0.0006, + "loss": 3.9892373085021973, + "step": 1359 + }, + { + "epoch": 18.89471384884229, + "grad_norm": 0.23685456812381744, + "learning_rate": 0.0006, + "loss": 3.9909186363220215, + "step": 1360 + }, + { + "epoch": 18.90869375273045, + "grad_norm": 0.26053836941719055, + "learning_rate": 0.0006, + "loss": 4.00327205657959, + "step": 1361 + }, + { + "epoch": 18.92267365661861, + "grad_norm": 0.26215845346450806, + "learning_rate": 0.0006, + "loss": 3.9714717864990234, + "step": 1362 + }, + { + "epoch": 18.936653560506773, + "grad_norm": 0.2433871030807495, + "learning_rate": 0.0006, + "loss": 3.949416160583496, + "step": 1363 + }, + { + "epoch": 18.950633464394933, + "grad_norm": 0.23331883549690247, + "learning_rate": 0.0006, + "loss": 3.980501413345337, + "step": 1364 + }, + { + "epoch": 18.964613368283093, + "grad_norm": 0.2346954047679901, + "learning_rate": 0.0006, + "loss": 3.9974493980407715, + "step": 1365 + }, + { + "epoch": 18.978593272171253, + "grad_norm": 0.25101345777511597, + "learning_rate": 0.0006, + "loss": 3.9800148010253906, + "step": 1366 + }, + { + "epoch": 18.992573176059416, + "grad_norm": 0.26811933517456055, + "learning_rate": 0.0006, + "loss": 4.0065741539001465, + "step": 1367 + }, + { + "epoch": 19.0, + "grad_norm": 0.2731736898422241, + "learning_rate": 0.0006, + "loss": 4.014575481414795, + "step": 1368 + }, + { + "epoch": 19.0, + "eval_loss": 4.200716972351074, + "eval_runtime": 44.6962, + "eval_samples_per_second": 54.636, + "eval_steps_per_second": 3.423, + "step": 1368 + }, + { + "epoch": 19.01397990388816, + "grad_norm": 0.2517746686935425, + "learning_rate": 0.0006, + "loss": 3.9486539363861084, + "step": 1369 + }, + { + "epoch": 19.027959807776323, + "grad_norm": 0.2482699453830719, + "learning_rate": 0.0006, + "loss": 3.95015287399292, + "step": 1370 + }, + { + "epoch": 19.041939711664483, + "grad_norm": 0.21693618595600128, + "learning_rate": 0.0006, + "loss": 3.970022201538086, + "step": 1371 + }, + { + "epoch": 19.055919615552643, + "grad_norm": 0.2035159319639206, + "learning_rate": 0.0006, + "loss": 3.941457748413086, + "step": 1372 + }, + { + "epoch": 19.069899519440803, + "grad_norm": 0.2201429009437561, + "learning_rate": 0.0006, + "loss": 3.946794033050537, + "step": 1373 + }, + { + "epoch": 19.083879423328966, + "grad_norm": 0.22910255193710327, + "learning_rate": 0.0006, + "loss": 3.94606876373291, + "step": 1374 + }, + { + "epoch": 19.097859327217126, + "grad_norm": 0.22378197312355042, + "learning_rate": 0.0006, + "loss": 3.957899570465088, + "step": 1375 + }, + { + "epoch": 19.111839231105286, + "grad_norm": 0.21728114783763885, + "learning_rate": 0.0006, + "loss": 3.9565982818603516, + "step": 1376 + }, + { + "epoch": 19.125819134993446, + "grad_norm": 0.21887634694576263, + "learning_rate": 0.0006, + "loss": 3.9649534225463867, + "step": 1377 + }, + { + "epoch": 19.13979903888161, + "grad_norm": 0.21892991662025452, + "learning_rate": 0.0006, + "loss": 3.971388101577759, + "step": 1378 + }, + { + "epoch": 19.15377894276977, + "grad_norm": 0.24582402408123016, + "learning_rate": 0.0006, + "loss": 3.9370944499969482, + "step": 1379 + }, + { + "epoch": 19.16775884665793, + "grad_norm": 0.27547118067741394, + "learning_rate": 0.0006, + "loss": 3.939406156539917, + "step": 1380 + }, + { + "epoch": 19.18173875054609, + "grad_norm": 0.3131563365459442, + "learning_rate": 0.0006, + "loss": 3.942620277404785, + "step": 1381 + }, + { + "epoch": 19.195718654434252, + "grad_norm": 0.3211703598499298, + "learning_rate": 0.0006, + "loss": 3.9388349056243896, + "step": 1382 + }, + { + "epoch": 19.209698558322412, + "grad_norm": 0.2791919410228729, + "learning_rate": 0.0006, + "loss": 3.9827399253845215, + "step": 1383 + }, + { + "epoch": 19.22367846221057, + "grad_norm": 0.2872016727924347, + "learning_rate": 0.0006, + "loss": 3.976715087890625, + "step": 1384 + }, + { + "epoch": 19.23765836609873, + "grad_norm": 0.2790389060974121, + "learning_rate": 0.0006, + "loss": 3.952850818634033, + "step": 1385 + }, + { + "epoch": 19.251638269986895, + "grad_norm": 0.31903740763664246, + "learning_rate": 0.0006, + "loss": 3.964506149291992, + "step": 1386 + }, + { + "epoch": 19.265618173875055, + "grad_norm": 0.31013646721839905, + "learning_rate": 0.0006, + "loss": 3.967219352722168, + "step": 1387 + }, + { + "epoch": 19.279598077763215, + "grad_norm": 0.2574339509010315, + "learning_rate": 0.0006, + "loss": 3.979168176651001, + "step": 1388 + }, + { + "epoch": 19.293577981651374, + "grad_norm": 0.24621108174324036, + "learning_rate": 0.0006, + "loss": 3.981734275817871, + "step": 1389 + }, + { + "epoch": 19.307557885539538, + "grad_norm": 0.25113818049430847, + "learning_rate": 0.0006, + "loss": 3.9787755012512207, + "step": 1390 + }, + { + "epoch": 19.321537789427698, + "grad_norm": 0.259971022605896, + "learning_rate": 0.0006, + "loss": 3.9648823738098145, + "step": 1391 + }, + { + "epoch": 19.335517693315857, + "grad_norm": 0.22580404579639435, + "learning_rate": 0.0006, + "loss": 3.9658002853393555, + "step": 1392 + }, + { + "epoch": 19.34949759720402, + "grad_norm": 0.2133680284023285, + "learning_rate": 0.0006, + "loss": 3.9615914821624756, + "step": 1393 + }, + { + "epoch": 19.36347750109218, + "grad_norm": 0.2387680858373642, + "learning_rate": 0.0006, + "loss": 3.993811845779419, + "step": 1394 + }, + { + "epoch": 19.37745740498034, + "grad_norm": 0.26086220145225525, + "learning_rate": 0.0006, + "loss": 3.932701826095581, + "step": 1395 + }, + { + "epoch": 19.3914373088685, + "grad_norm": 0.23255233466625214, + "learning_rate": 0.0006, + "loss": 3.8969321250915527, + "step": 1396 + }, + { + "epoch": 19.405417212756664, + "grad_norm": 0.22894541919231415, + "learning_rate": 0.0006, + "loss": 3.9569311141967773, + "step": 1397 + }, + { + "epoch": 19.419397116644824, + "grad_norm": 0.2254200130701065, + "learning_rate": 0.0006, + "loss": 3.953199863433838, + "step": 1398 + }, + { + "epoch": 19.433377020532983, + "grad_norm": 0.25802481174468994, + "learning_rate": 0.0006, + "loss": 3.9714815616607666, + "step": 1399 + }, + { + "epoch": 19.447356924421143, + "grad_norm": 0.24725162982940674, + "learning_rate": 0.0006, + "loss": 3.957339286804199, + "step": 1400 + }, + { + "epoch": 19.461336828309307, + "grad_norm": 0.2162018120288849, + "learning_rate": 0.0006, + "loss": 3.986801862716675, + "step": 1401 + }, + { + "epoch": 19.475316732197467, + "grad_norm": 0.21530906856060028, + "learning_rate": 0.0006, + "loss": 3.9766759872436523, + "step": 1402 + }, + { + "epoch": 19.489296636085626, + "grad_norm": 0.20260323584079742, + "learning_rate": 0.0006, + "loss": 3.9576425552368164, + "step": 1403 + }, + { + "epoch": 19.503276539973786, + "grad_norm": 0.188974529504776, + "learning_rate": 0.0006, + "loss": 3.9852395057678223, + "step": 1404 + }, + { + "epoch": 19.51725644386195, + "grad_norm": 0.19727374613285065, + "learning_rate": 0.0006, + "loss": 3.972484588623047, + "step": 1405 + }, + { + "epoch": 19.53123634775011, + "grad_norm": 0.23708008229732513, + "learning_rate": 0.0006, + "loss": 3.992471694946289, + "step": 1406 + }, + { + "epoch": 19.54521625163827, + "grad_norm": 0.23783449828624725, + "learning_rate": 0.0006, + "loss": 3.9788265228271484, + "step": 1407 + }, + { + "epoch": 19.55919615552643, + "grad_norm": 0.24744364619255066, + "learning_rate": 0.0006, + "loss": 3.9559011459350586, + "step": 1408 + }, + { + "epoch": 19.573176059414592, + "grad_norm": 0.24828094244003296, + "learning_rate": 0.0006, + "loss": 3.9663949012756348, + "step": 1409 + }, + { + "epoch": 19.587155963302752, + "grad_norm": 0.2681315541267395, + "learning_rate": 0.0006, + "loss": 3.9581191539764404, + "step": 1410 + }, + { + "epoch": 19.601135867190912, + "grad_norm": 0.2691532373428345, + "learning_rate": 0.0006, + "loss": 3.9832754135131836, + "step": 1411 + }, + { + "epoch": 19.615115771079076, + "grad_norm": 0.2900252640247345, + "learning_rate": 0.0006, + "loss": 3.984365940093994, + "step": 1412 + }, + { + "epoch": 19.629095674967235, + "grad_norm": 0.3194943070411682, + "learning_rate": 0.0006, + "loss": 3.9856505393981934, + "step": 1413 + }, + { + "epoch": 19.643075578855395, + "grad_norm": 0.3029029071331024, + "learning_rate": 0.0006, + "loss": 3.968992233276367, + "step": 1414 + }, + { + "epoch": 19.657055482743555, + "grad_norm": 0.2658176124095917, + "learning_rate": 0.0006, + "loss": 3.995187282562256, + "step": 1415 + }, + { + "epoch": 19.67103538663172, + "grad_norm": 0.26807504892349243, + "learning_rate": 0.0006, + "loss": 3.9756274223327637, + "step": 1416 + }, + { + "epoch": 19.68501529051988, + "grad_norm": 0.27718642354011536, + "learning_rate": 0.0006, + "loss": 3.9510018825531006, + "step": 1417 + }, + { + "epoch": 19.698995194408038, + "grad_norm": 0.26322051882743835, + "learning_rate": 0.0006, + "loss": 3.965155601501465, + "step": 1418 + }, + { + "epoch": 19.712975098296198, + "grad_norm": 0.2566570043563843, + "learning_rate": 0.0006, + "loss": 3.984218120574951, + "step": 1419 + }, + { + "epoch": 19.72695500218436, + "grad_norm": 0.2218743860721588, + "learning_rate": 0.0006, + "loss": 3.9338784217834473, + "step": 1420 + }, + { + "epoch": 19.74093490607252, + "grad_norm": 0.22894173860549927, + "learning_rate": 0.0006, + "loss": 3.9869046211242676, + "step": 1421 + }, + { + "epoch": 19.75491480996068, + "grad_norm": 0.26837027072906494, + "learning_rate": 0.0006, + "loss": 3.96799898147583, + "step": 1422 + }, + { + "epoch": 19.76889471384884, + "grad_norm": 0.2767876982688904, + "learning_rate": 0.0006, + "loss": 3.9431071281433105, + "step": 1423 + }, + { + "epoch": 19.782874617737004, + "grad_norm": 0.24402284622192383, + "learning_rate": 0.0006, + "loss": 3.9631881713867188, + "step": 1424 + }, + { + "epoch": 19.796854521625164, + "grad_norm": 0.23500724136829376, + "learning_rate": 0.0006, + "loss": 3.9943337440490723, + "step": 1425 + }, + { + "epoch": 19.810834425513324, + "grad_norm": 0.22509142756462097, + "learning_rate": 0.0006, + "loss": 3.961226224899292, + "step": 1426 + }, + { + "epoch": 19.824814329401484, + "grad_norm": 0.23524795472621918, + "learning_rate": 0.0006, + "loss": 3.9552102088928223, + "step": 1427 + }, + { + "epoch": 19.838794233289647, + "grad_norm": 0.22307050228118896, + "learning_rate": 0.0006, + "loss": 3.9623494148254395, + "step": 1428 + }, + { + "epoch": 19.852774137177807, + "grad_norm": 0.21144486963748932, + "learning_rate": 0.0006, + "loss": 3.9620237350463867, + "step": 1429 + }, + { + "epoch": 19.866754041065967, + "grad_norm": 0.20249812304973602, + "learning_rate": 0.0006, + "loss": 3.953911066055298, + "step": 1430 + }, + { + "epoch": 19.88073394495413, + "grad_norm": 0.2350354939699173, + "learning_rate": 0.0006, + "loss": 3.9616730213165283, + "step": 1431 + }, + { + "epoch": 19.89471384884229, + "grad_norm": 0.2566683292388916, + "learning_rate": 0.0006, + "loss": 3.9372501373291016, + "step": 1432 + }, + { + "epoch": 19.90869375273045, + "grad_norm": 0.2520846128463745, + "learning_rate": 0.0006, + "loss": 3.9814648628234863, + "step": 1433 + }, + { + "epoch": 19.92267365661861, + "grad_norm": 0.23989640176296234, + "learning_rate": 0.0006, + "loss": 3.9692864418029785, + "step": 1434 + }, + { + "epoch": 19.936653560506773, + "grad_norm": 0.20650425553321838, + "learning_rate": 0.0006, + "loss": 3.960256814956665, + "step": 1435 + }, + { + "epoch": 19.950633464394933, + "grad_norm": 0.20478376746177673, + "learning_rate": 0.0006, + "loss": 3.9585227966308594, + "step": 1436 + }, + { + "epoch": 19.964613368283093, + "grad_norm": 0.234436497092247, + "learning_rate": 0.0006, + "loss": 3.945631742477417, + "step": 1437 + }, + { + "epoch": 19.978593272171253, + "grad_norm": 0.19969749450683594, + "learning_rate": 0.0006, + "loss": 3.9646050930023193, + "step": 1438 + }, + { + "epoch": 19.992573176059416, + "grad_norm": 0.20638690888881683, + "learning_rate": 0.0006, + "loss": 3.9461846351623535, + "step": 1439 + }, + { + "epoch": 20.0, + "grad_norm": 0.2120274156332016, + "learning_rate": 0.0006, + "loss": 3.965153217315674, + "step": 1440 + }, + { + "epoch": 20.0, + "eval_loss": 4.168524742126465, + "eval_runtime": 44.2796, + "eval_samples_per_second": 55.15, + "eval_steps_per_second": 3.455, + "step": 1440 + }, + { + "epoch": 20.01397990388816, + "grad_norm": 0.19704894721508026, + "learning_rate": 0.0006, + "loss": 3.937016248703003, + "step": 1441 + }, + { + "epoch": 20.027959807776323, + "grad_norm": 0.18682368099689484, + "learning_rate": 0.0006, + "loss": 3.895922899246216, + "step": 1442 + }, + { + "epoch": 20.041939711664483, + "grad_norm": 0.18982571363449097, + "learning_rate": 0.0006, + "loss": 3.929841995239258, + "step": 1443 + }, + { + "epoch": 20.055919615552643, + "grad_norm": 0.20811910927295685, + "learning_rate": 0.0006, + "loss": 3.9498324394226074, + "step": 1444 + }, + { + "epoch": 20.069899519440803, + "grad_norm": 0.2149062603712082, + "learning_rate": 0.0006, + "loss": 3.929853916168213, + "step": 1445 + }, + { + "epoch": 20.083879423328966, + "grad_norm": 0.20016685128211975, + "learning_rate": 0.0006, + "loss": 3.9374136924743652, + "step": 1446 + }, + { + "epoch": 20.097859327217126, + "grad_norm": 0.19969616830348969, + "learning_rate": 0.0006, + "loss": 3.932447910308838, + "step": 1447 + }, + { + "epoch": 20.111839231105286, + "grad_norm": 0.2163356989622116, + "learning_rate": 0.0006, + "loss": 3.9325437545776367, + "step": 1448 + }, + { + "epoch": 20.125819134993446, + "grad_norm": 0.22026969492435455, + "learning_rate": 0.0006, + "loss": 3.9118852615356445, + "step": 1449 + }, + { + "epoch": 20.13979903888161, + "grad_norm": 0.23337116837501526, + "learning_rate": 0.0006, + "loss": 3.9416019916534424, + "step": 1450 + }, + { + "epoch": 20.15377894276977, + "grad_norm": 0.23971447348594666, + "learning_rate": 0.0006, + "loss": 3.9416871070861816, + "step": 1451 + }, + { + "epoch": 20.16775884665793, + "grad_norm": 0.25973960757255554, + "learning_rate": 0.0006, + "loss": 3.93826961517334, + "step": 1452 + }, + { + "epoch": 20.18173875054609, + "grad_norm": 0.2303445190191269, + "learning_rate": 0.0006, + "loss": 3.909383535385132, + "step": 1453 + }, + { + "epoch": 20.195718654434252, + "grad_norm": 0.21090206503868103, + "learning_rate": 0.0006, + "loss": 3.935939311981201, + "step": 1454 + }, + { + "epoch": 20.209698558322412, + "grad_norm": 0.2278691977262497, + "learning_rate": 0.0006, + "loss": 3.9623684883117676, + "step": 1455 + }, + { + "epoch": 20.22367846221057, + "grad_norm": 0.22291512787342072, + "learning_rate": 0.0006, + "loss": 3.9386210441589355, + "step": 1456 + }, + { + "epoch": 20.23765836609873, + "grad_norm": 0.2385793924331665, + "learning_rate": 0.0006, + "loss": 3.927365303039551, + "step": 1457 + }, + { + "epoch": 20.251638269986895, + "grad_norm": 0.23949867486953735, + "learning_rate": 0.0006, + "loss": 3.956698179244995, + "step": 1458 + }, + { + "epoch": 20.265618173875055, + "grad_norm": 0.2232269048690796, + "learning_rate": 0.0006, + "loss": 3.9465065002441406, + "step": 1459 + }, + { + "epoch": 20.279598077763215, + "grad_norm": 0.22286680340766907, + "learning_rate": 0.0006, + "loss": 3.9102284908294678, + "step": 1460 + }, + { + "epoch": 20.293577981651374, + "grad_norm": 0.24039050936698914, + "learning_rate": 0.0006, + "loss": 3.928055763244629, + "step": 1461 + }, + { + "epoch": 20.307557885539538, + "grad_norm": 0.2532738447189331, + "learning_rate": 0.0006, + "loss": 3.931753635406494, + "step": 1462 + }, + { + "epoch": 20.321537789427698, + "grad_norm": 0.2206273376941681, + "learning_rate": 0.0006, + "loss": 3.936119556427002, + "step": 1463 + }, + { + "epoch": 20.335517693315857, + "grad_norm": 0.20918945968151093, + "learning_rate": 0.0006, + "loss": 3.9228529930114746, + "step": 1464 + }, + { + "epoch": 20.34949759720402, + "grad_norm": 0.2324502319097519, + "learning_rate": 0.0006, + "loss": 3.9370768070220947, + "step": 1465 + }, + { + "epoch": 20.36347750109218, + "grad_norm": 0.26811033487319946, + "learning_rate": 0.0006, + "loss": 3.968515396118164, + "step": 1466 + }, + { + "epoch": 20.37745740498034, + "grad_norm": 0.2896045744419098, + "learning_rate": 0.0006, + "loss": 3.945124626159668, + "step": 1467 + }, + { + "epoch": 20.3914373088685, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 3.9399516582489014, + "step": 1468 + }, + { + "epoch": 20.405417212756664, + "grad_norm": 0.3076821565628052, + "learning_rate": 0.0006, + "loss": 3.9545583724975586, + "step": 1469 + }, + { + "epoch": 20.419397116644824, + "grad_norm": 0.3019449710845947, + "learning_rate": 0.0006, + "loss": 3.9502270221710205, + "step": 1470 + }, + { + "epoch": 20.433377020532983, + "grad_norm": 0.31832560896873474, + "learning_rate": 0.0006, + "loss": 3.940439224243164, + "step": 1471 + }, + { + "epoch": 20.447356924421143, + "grad_norm": 0.30303657054901123, + "learning_rate": 0.0006, + "loss": 3.9451770782470703, + "step": 1472 + }, + { + "epoch": 20.461336828309307, + "grad_norm": 0.28122979402542114, + "learning_rate": 0.0006, + "loss": 3.934508800506592, + "step": 1473 + }, + { + "epoch": 20.475316732197467, + "grad_norm": 0.27013441920280457, + "learning_rate": 0.0006, + "loss": 3.924323081970215, + "step": 1474 + }, + { + "epoch": 20.489296636085626, + "grad_norm": 0.29052063822746277, + "learning_rate": 0.0006, + "loss": 3.970916748046875, + "step": 1475 + }, + { + "epoch": 20.503276539973786, + "grad_norm": 0.2871626913547516, + "learning_rate": 0.0006, + "loss": 3.945425033569336, + "step": 1476 + }, + { + "epoch": 20.51725644386195, + "grad_norm": 0.2396184206008911, + "learning_rate": 0.0006, + "loss": 3.964290142059326, + "step": 1477 + }, + { + "epoch": 20.53123634775011, + "grad_norm": 0.21942107379436493, + "learning_rate": 0.0006, + "loss": 3.910101890563965, + "step": 1478 + }, + { + "epoch": 20.54521625163827, + "grad_norm": 0.22193685173988342, + "learning_rate": 0.0006, + "loss": 3.914005756378174, + "step": 1479 + }, + { + "epoch": 20.55919615552643, + "grad_norm": 0.20207515358924866, + "learning_rate": 0.0006, + "loss": 3.9575581550598145, + "step": 1480 + }, + { + "epoch": 20.573176059414592, + "grad_norm": 0.17855247855186462, + "learning_rate": 0.0006, + "loss": 3.941490411758423, + "step": 1481 + }, + { + "epoch": 20.587155963302752, + "grad_norm": 0.21268485486507416, + "learning_rate": 0.0006, + "loss": 3.94045352935791, + "step": 1482 + }, + { + "epoch": 20.601135867190912, + "grad_norm": 0.24890053272247314, + "learning_rate": 0.0006, + "loss": 3.932961940765381, + "step": 1483 + }, + { + "epoch": 20.615115771079076, + "grad_norm": 0.23771314322948456, + "learning_rate": 0.0006, + "loss": 3.9067630767822266, + "step": 1484 + }, + { + "epoch": 20.629095674967235, + "grad_norm": 0.20990237593650818, + "learning_rate": 0.0006, + "loss": 3.9476752281188965, + "step": 1485 + }, + { + "epoch": 20.643075578855395, + "grad_norm": 0.20058798789978027, + "learning_rate": 0.0006, + "loss": 3.9350547790527344, + "step": 1486 + }, + { + "epoch": 20.657055482743555, + "grad_norm": 0.1953001767396927, + "learning_rate": 0.0006, + "loss": 3.9437222480773926, + "step": 1487 + }, + { + "epoch": 20.67103538663172, + "grad_norm": 0.18748535215854645, + "learning_rate": 0.0006, + "loss": 3.9336047172546387, + "step": 1488 + }, + { + "epoch": 20.68501529051988, + "grad_norm": 0.18874801695346832, + "learning_rate": 0.0006, + "loss": 3.9042580127716064, + "step": 1489 + }, + { + "epoch": 20.698995194408038, + "grad_norm": 0.1844169795513153, + "learning_rate": 0.0006, + "loss": 3.9302420616149902, + "step": 1490 + }, + { + "epoch": 20.712975098296198, + "grad_norm": 0.18519413471221924, + "learning_rate": 0.0006, + "loss": 3.9527437686920166, + "step": 1491 + }, + { + "epoch": 20.72695500218436, + "grad_norm": 0.20084598660469055, + "learning_rate": 0.0006, + "loss": 3.9161760807037354, + "step": 1492 + }, + { + "epoch": 20.74093490607252, + "grad_norm": 0.2015734612941742, + "learning_rate": 0.0006, + "loss": 3.9466545581817627, + "step": 1493 + }, + { + "epoch": 20.75491480996068, + "grad_norm": 0.2210122048854828, + "learning_rate": 0.0006, + "loss": 3.8994693756103516, + "step": 1494 + }, + { + "epoch": 20.76889471384884, + "grad_norm": 0.23019762337207794, + "learning_rate": 0.0006, + "loss": 3.93685245513916, + "step": 1495 + }, + { + "epoch": 20.782874617737004, + "grad_norm": 0.21246281266212463, + "learning_rate": 0.0006, + "loss": 3.9499399662017822, + "step": 1496 + }, + { + "epoch": 20.796854521625164, + "grad_norm": 0.21142810583114624, + "learning_rate": 0.0006, + "loss": 3.9317150115966797, + "step": 1497 + }, + { + "epoch": 20.810834425513324, + "grad_norm": 0.20230524241924286, + "learning_rate": 0.0006, + "loss": 3.9389750957489014, + "step": 1498 + }, + { + "epoch": 20.824814329401484, + "grad_norm": 0.21096977591514587, + "learning_rate": 0.0006, + "loss": 3.9325194358825684, + "step": 1499 + }, + { + "epoch": 20.838794233289647, + "grad_norm": 0.2309989333152771, + "learning_rate": 0.0006, + "loss": 3.943641185760498, + "step": 1500 + }, + { + "epoch": 20.852774137177807, + "grad_norm": 0.2016306221485138, + "learning_rate": 0.0006, + "loss": 3.986043930053711, + "step": 1501 + }, + { + "epoch": 20.866754041065967, + "grad_norm": 0.2107970118522644, + "learning_rate": 0.0006, + "loss": 3.9219160079956055, + "step": 1502 + }, + { + "epoch": 20.88073394495413, + "grad_norm": 0.21580125391483307, + "learning_rate": 0.0006, + "loss": 3.942014694213867, + "step": 1503 + }, + { + "epoch": 20.89471384884229, + "grad_norm": 0.21348726749420166, + "learning_rate": 0.0006, + "loss": 3.9389920234680176, + "step": 1504 + }, + { + "epoch": 20.90869375273045, + "grad_norm": 0.23094943165779114, + "learning_rate": 0.0006, + "loss": 3.952993392944336, + "step": 1505 + }, + { + "epoch": 20.92267365661861, + "grad_norm": 0.22431740164756775, + "learning_rate": 0.0006, + "loss": 3.897671937942505, + "step": 1506 + }, + { + "epoch": 20.936653560506773, + "grad_norm": 0.20056353509426117, + "learning_rate": 0.0006, + "loss": 3.9100005626678467, + "step": 1507 + }, + { + "epoch": 20.950633464394933, + "grad_norm": 0.20604434609413147, + "learning_rate": 0.0006, + "loss": 3.9486045837402344, + "step": 1508 + }, + { + "epoch": 20.964613368283093, + "grad_norm": 0.22979380190372467, + "learning_rate": 0.0006, + "loss": 3.977163553237915, + "step": 1509 + }, + { + "epoch": 20.978593272171253, + "grad_norm": 0.2421523779630661, + "learning_rate": 0.0006, + "loss": 3.9216256141662598, + "step": 1510 + }, + { + "epoch": 20.992573176059416, + "grad_norm": 0.25776705145835876, + "learning_rate": 0.0006, + "loss": 3.9221739768981934, + "step": 1511 + }, + { + "epoch": 21.0, + "grad_norm": 0.2750694751739502, + "learning_rate": 0.0006, + "loss": 3.938098907470703, + "step": 1512 + }, + { + "epoch": 21.0, + "eval_loss": 4.159763336181641, + "eval_runtime": 44.8663, + "eval_samples_per_second": 54.428, + "eval_steps_per_second": 3.41, + "step": 1512 + }, + { + "epoch": 21.01397990388816, + "grad_norm": 0.24513043463230133, + "learning_rate": 0.0006, + "loss": 3.8939385414123535, + "step": 1513 + }, + { + "epoch": 21.027959807776323, + "grad_norm": 0.22209352254867554, + "learning_rate": 0.0006, + "loss": 3.9044857025146484, + "step": 1514 + }, + { + "epoch": 21.041939711664483, + "grad_norm": 0.22437648475170135, + "learning_rate": 0.0006, + "loss": 3.9325196743011475, + "step": 1515 + }, + { + "epoch": 21.055919615552643, + "grad_norm": 0.21168062090873718, + "learning_rate": 0.0006, + "loss": 3.882176637649536, + "step": 1516 + }, + { + "epoch": 21.069899519440803, + "grad_norm": 0.22334499657154083, + "learning_rate": 0.0006, + "loss": 3.8978934288024902, + "step": 1517 + }, + { + "epoch": 21.083879423328966, + "grad_norm": 0.21038010716438293, + "learning_rate": 0.0006, + "loss": 3.8807029724121094, + "step": 1518 + }, + { + "epoch": 21.097859327217126, + "grad_norm": 0.2243613600730896, + "learning_rate": 0.0006, + "loss": 3.924865961074829, + "step": 1519 + }, + { + "epoch": 21.111839231105286, + "grad_norm": 0.2535616159439087, + "learning_rate": 0.0006, + "loss": 3.9288227558135986, + "step": 1520 + }, + { + "epoch": 21.125819134993446, + "grad_norm": 0.2782756984233856, + "learning_rate": 0.0006, + "loss": 3.908233642578125, + "step": 1521 + }, + { + "epoch": 21.13979903888161, + "grad_norm": 0.2586214542388916, + "learning_rate": 0.0006, + "loss": 3.9151182174682617, + "step": 1522 + }, + { + "epoch": 21.15377894276977, + "grad_norm": 0.22465091943740845, + "learning_rate": 0.0006, + "loss": 3.9209084510803223, + "step": 1523 + }, + { + "epoch": 21.16775884665793, + "grad_norm": 0.2588018774986267, + "learning_rate": 0.0006, + "loss": 3.9295971393585205, + "step": 1524 + }, + { + "epoch": 21.18173875054609, + "grad_norm": 0.2637675702571869, + "learning_rate": 0.0006, + "loss": 3.9353199005126953, + "step": 1525 + }, + { + "epoch": 21.195718654434252, + "grad_norm": 0.2806383967399597, + "learning_rate": 0.0006, + "loss": 3.922337770462036, + "step": 1526 + }, + { + "epoch": 21.209698558322412, + "grad_norm": 0.27103501558303833, + "learning_rate": 0.0006, + "loss": 3.8811073303222656, + "step": 1527 + }, + { + "epoch": 21.22367846221057, + "grad_norm": 0.27203720808029175, + "learning_rate": 0.0006, + "loss": 3.9036178588867188, + "step": 1528 + }, + { + "epoch": 21.23765836609873, + "grad_norm": 0.2783355712890625, + "learning_rate": 0.0006, + "loss": 3.885456085205078, + "step": 1529 + }, + { + "epoch": 21.251638269986895, + "grad_norm": 0.2884930968284607, + "learning_rate": 0.0006, + "loss": 3.8936941623687744, + "step": 1530 + }, + { + "epoch": 21.265618173875055, + "grad_norm": 0.2829558849334717, + "learning_rate": 0.0006, + "loss": 3.927624225616455, + "step": 1531 + }, + { + "epoch": 21.279598077763215, + "grad_norm": 0.2809497117996216, + "learning_rate": 0.0006, + "loss": 3.8896753787994385, + "step": 1532 + }, + { + "epoch": 21.293577981651374, + "grad_norm": 0.27037671208381653, + "learning_rate": 0.0006, + "loss": 3.91316294670105, + "step": 1533 + }, + { + "epoch": 21.307557885539538, + "grad_norm": 0.310051292181015, + "learning_rate": 0.0006, + "loss": 3.9137332439422607, + "step": 1534 + }, + { + "epoch": 21.321537789427698, + "grad_norm": 0.30489876866340637, + "learning_rate": 0.0006, + "loss": 3.9088284969329834, + "step": 1535 + }, + { + "epoch": 21.335517693315857, + "grad_norm": 0.2607756555080414, + "learning_rate": 0.0006, + "loss": 3.9097847938537598, + "step": 1536 + }, + { + "epoch": 21.34949759720402, + "grad_norm": 0.2460775375366211, + "learning_rate": 0.0006, + "loss": 3.941211700439453, + "step": 1537 + }, + { + "epoch": 21.36347750109218, + "grad_norm": 0.24271734058856964, + "learning_rate": 0.0006, + "loss": 3.9140594005584717, + "step": 1538 + }, + { + "epoch": 21.37745740498034, + "grad_norm": 0.20012645423412323, + "learning_rate": 0.0006, + "loss": 3.888446807861328, + "step": 1539 + }, + { + "epoch": 21.3914373088685, + "grad_norm": 0.2196308672428131, + "learning_rate": 0.0006, + "loss": 3.9153785705566406, + "step": 1540 + }, + { + "epoch": 21.405417212756664, + "grad_norm": 0.22184589505195618, + "learning_rate": 0.0006, + "loss": 3.91996431350708, + "step": 1541 + }, + { + "epoch": 21.419397116644824, + "grad_norm": 0.22947315871715546, + "learning_rate": 0.0006, + "loss": 3.9268412590026855, + "step": 1542 + }, + { + "epoch": 21.433377020532983, + "grad_norm": 0.22275054454803467, + "learning_rate": 0.0006, + "loss": 3.909275531768799, + "step": 1543 + }, + { + "epoch": 21.447356924421143, + "grad_norm": 0.23103971779346466, + "learning_rate": 0.0006, + "loss": 3.925635814666748, + "step": 1544 + }, + { + "epoch": 21.461336828309307, + "grad_norm": 0.23379720747470856, + "learning_rate": 0.0006, + "loss": 3.926647186279297, + "step": 1545 + }, + { + "epoch": 21.475316732197467, + "grad_norm": 0.2244282215833664, + "learning_rate": 0.0006, + "loss": 3.9428000450134277, + "step": 1546 + }, + { + "epoch": 21.489296636085626, + "grad_norm": 0.22773298621177673, + "learning_rate": 0.0006, + "loss": 3.9378256797790527, + "step": 1547 + }, + { + "epoch": 21.503276539973786, + "grad_norm": 0.1918657273054123, + "learning_rate": 0.0006, + "loss": 3.904022216796875, + "step": 1548 + }, + { + "epoch": 21.51725644386195, + "grad_norm": 0.18415570259094238, + "learning_rate": 0.0006, + "loss": 3.9105122089385986, + "step": 1549 + }, + { + "epoch": 21.53123634775011, + "grad_norm": 0.22141380608081818, + "learning_rate": 0.0006, + "loss": 3.9153857231140137, + "step": 1550 + }, + { + "epoch": 21.54521625163827, + "grad_norm": 0.22533352673053741, + "learning_rate": 0.0006, + "loss": 3.9148974418640137, + "step": 1551 + }, + { + "epoch": 21.55919615552643, + "grad_norm": 0.2124762088060379, + "learning_rate": 0.0006, + "loss": 3.926311731338501, + "step": 1552 + }, + { + "epoch": 21.573176059414592, + "grad_norm": 0.239680215716362, + "learning_rate": 0.0006, + "loss": 3.9260334968566895, + "step": 1553 + }, + { + "epoch": 21.587155963302752, + "grad_norm": 0.24158740043640137, + "learning_rate": 0.0006, + "loss": 3.933223247528076, + "step": 1554 + }, + { + "epoch": 21.601135867190912, + "grad_norm": 0.2216576784849167, + "learning_rate": 0.0006, + "loss": 3.9065442085266113, + "step": 1555 + }, + { + "epoch": 21.615115771079076, + "grad_norm": 0.20099912583827972, + "learning_rate": 0.0006, + "loss": 3.923278570175171, + "step": 1556 + }, + { + "epoch": 21.629095674967235, + "grad_norm": 0.2337288111448288, + "learning_rate": 0.0006, + "loss": 3.92032527923584, + "step": 1557 + }, + { + "epoch": 21.643075578855395, + "grad_norm": 0.23574814200401306, + "learning_rate": 0.0006, + "loss": 3.896244525909424, + "step": 1558 + }, + { + "epoch": 21.657055482743555, + "grad_norm": 0.21338573098182678, + "learning_rate": 0.0006, + "loss": 3.930345058441162, + "step": 1559 + }, + { + "epoch": 21.67103538663172, + "grad_norm": 0.2375067174434662, + "learning_rate": 0.0006, + "loss": 3.864104986190796, + "step": 1560 + }, + { + "epoch": 21.68501529051988, + "grad_norm": 0.22490349411964417, + "learning_rate": 0.0006, + "loss": 3.883296012878418, + "step": 1561 + }, + { + "epoch": 21.698995194408038, + "grad_norm": 0.23021313548088074, + "learning_rate": 0.0006, + "loss": 3.915200710296631, + "step": 1562 + }, + { + "epoch": 21.712975098296198, + "grad_norm": 0.22590875625610352, + "learning_rate": 0.0006, + "loss": 3.903597354888916, + "step": 1563 + }, + { + "epoch": 21.72695500218436, + "grad_norm": 0.19066260755062103, + "learning_rate": 0.0006, + "loss": 3.9162631034851074, + "step": 1564 + }, + { + "epoch": 21.74093490607252, + "grad_norm": 0.18134327232837677, + "learning_rate": 0.0006, + "loss": 3.9167914390563965, + "step": 1565 + }, + { + "epoch": 21.75491480996068, + "grad_norm": 0.1782190054655075, + "learning_rate": 0.0006, + "loss": 3.900925636291504, + "step": 1566 + }, + { + "epoch": 21.76889471384884, + "grad_norm": 0.19034099578857422, + "learning_rate": 0.0006, + "loss": 3.896559238433838, + "step": 1567 + }, + { + "epoch": 21.782874617737004, + "grad_norm": 0.21509577333927155, + "learning_rate": 0.0006, + "loss": 3.891681671142578, + "step": 1568 + }, + { + "epoch": 21.796854521625164, + "grad_norm": 0.2370351105928421, + "learning_rate": 0.0006, + "loss": 3.886570453643799, + "step": 1569 + }, + { + "epoch": 21.810834425513324, + "grad_norm": 0.25546324253082275, + "learning_rate": 0.0006, + "loss": 3.9247193336486816, + "step": 1570 + }, + { + "epoch": 21.824814329401484, + "grad_norm": 0.2513384222984314, + "learning_rate": 0.0006, + "loss": 3.9120583534240723, + "step": 1571 + }, + { + "epoch": 21.838794233289647, + "grad_norm": 0.24691323935985565, + "learning_rate": 0.0006, + "loss": 3.9144935607910156, + "step": 1572 + }, + { + "epoch": 21.852774137177807, + "grad_norm": 0.2573968172073364, + "learning_rate": 0.0006, + "loss": 3.9517531394958496, + "step": 1573 + }, + { + "epoch": 21.866754041065967, + "grad_norm": 0.25461453199386597, + "learning_rate": 0.0006, + "loss": 3.93508243560791, + "step": 1574 + }, + { + "epoch": 21.88073394495413, + "grad_norm": 0.23756568133831024, + "learning_rate": 0.0006, + "loss": 3.8885269165039062, + "step": 1575 + }, + { + "epoch": 21.89471384884229, + "grad_norm": 0.2193172425031662, + "learning_rate": 0.0006, + "loss": 3.9103426933288574, + "step": 1576 + }, + { + "epoch": 21.90869375273045, + "grad_norm": 0.2350149303674698, + "learning_rate": 0.0006, + "loss": 3.9399590492248535, + "step": 1577 + }, + { + "epoch": 21.92267365661861, + "grad_norm": 0.23759333789348602, + "learning_rate": 0.0006, + "loss": 3.9433584213256836, + "step": 1578 + }, + { + "epoch": 21.936653560506773, + "grad_norm": 0.21108432114124298, + "learning_rate": 0.0006, + "loss": 3.9241819381713867, + "step": 1579 + }, + { + "epoch": 21.950633464394933, + "grad_norm": 0.22088949382305145, + "learning_rate": 0.0006, + "loss": 3.9231910705566406, + "step": 1580 + }, + { + "epoch": 21.964613368283093, + "grad_norm": 0.22125045955181122, + "learning_rate": 0.0006, + "loss": 3.896329164505005, + "step": 1581 + }, + { + "epoch": 21.978593272171253, + "grad_norm": 0.20745202898979187, + "learning_rate": 0.0006, + "loss": 3.8920536041259766, + "step": 1582 + }, + { + "epoch": 21.992573176059416, + "grad_norm": 0.2409721463918686, + "learning_rate": 0.0006, + "loss": 3.9061317443847656, + "step": 1583 + }, + { + "epoch": 22.0, + "grad_norm": 0.2669669985771179, + "learning_rate": 0.0006, + "loss": 3.922062397003174, + "step": 1584 + }, + { + "epoch": 22.0, + "eval_loss": 4.140966415405273, + "eval_runtime": 46.7132, + "eval_samples_per_second": 52.276, + "eval_steps_per_second": 3.275, + "step": 1584 + }, + { + "epoch": 22.01397990388816, + "grad_norm": 0.26155969500541687, + "learning_rate": 0.0006, + "loss": 3.888944625854492, + "step": 1585 + }, + { + "epoch": 22.027959807776323, + "grad_norm": 0.2579149007797241, + "learning_rate": 0.0006, + "loss": 3.8924355506896973, + "step": 1586 + }, + { + "epoch": 22.041939711664483, + "grad_norm": 0.2429896742105484, + "learning_rate": 0.0006, + "loss": 3.8714070320129395, + "step": 1587 + }, + { + "epoch": 22.055919615552643, + "grad_norm": 0.23497673869132996, + "learning_rate": 0.0006, + "loss": 3.905089855194092, + "step": 1588 + }, + { + "epoch": 22.069899519440803, + "grad_norm": 0.24074940383434296, + "learning_rate": 0.0006, + "loss": 3.886845111846924, + "step": 1589 + }, + { + "epoch": 22.083879423328966, + "grad_norm": 0.2226274162530899, + "learning_rate": 0.0006, + "loss": 3.8554329872131348, + "step": 1590 + }, + { + "epoch": 22.097859327217126, + "grad_norm": 0.22924423217773438, + "learning_rate": 0.0006, + "loss": 3.8914356231689453, + "step": 1591 + }, + { + "epoch": 22.111839231105286, + "grad_norm": 0.2459387183189392, + "learning_rate": 0.0006, + "loss": 3.902522087097168, + "step": 1592 + }, + { + "epoch": 22.125819134993446, + "grad_norm": 0.2704590857028961, + "learning_rate": 0.0006, + "loss": 3.896497964859009, + "step": 1593 + }, + { + "epoch": 22.13979903888161, + "grad_norm": 0.2848219871520996, + "learning_rate": 0.0006, + "loss": 3.88423228263855, + "step": 1594 + }, + { + "epoch": 22.15377894276977, + "grad_norm": 0.22996552288532257, + "learning_rate": 0.0006, + "loss": 3.9034953117370605, + "step": 1595 + }, + { + "epoch": 22.16775884665793, + "grad_norm": 0.2117270529270172, + "learning_rate": 0.0006, + "loss": 3.888279914855957, + "step": 1596 + }, + { + "epoch": 22.18173875054609, + "grad_norm": 0.19724160432815552, + "learning_rate": 0.0006, + "loss": 3.860525131225586, + "step": 1597 + }, + { + "epoch": 22.195718654434252, + "grad_norm": 0.2012624740600586, + "learning_rate": 0.0006, + "loss": 3.8930106163024902, + "step": 1598 + }, + { + "epoch": 22.209698558322412, + "grad_norm": 0.20243871212005615, + "learning_rate": 0.0006, + "loss": 3.8727619647979736, + "step": 1599 + }, + { + "epoch": 22.22367846221057, + "grad_norm": 0.21737465262413025, + "learning_rate": 0.0006, + "loss": 3.887969493865967, + "step": 1600 + }, + { + "epoch": 22.23765836609873, + "grad_norm": 0.23969845473766327, + "learning_rate": 0.0006, + "loss": 3.8629722595214844, + "step": 1601 + }, + { + "epoch": 22.251638269986895, + "grad_norm": 0.22874902188777924, + "learning_rate": 0.0006, + "loss": 3.9135584831237793, + "step": 1602 + }, + { + "epoch": 22.265618173875055, + "grad_norm": 0.209506556391716, + "learning_rate": 0.0006, + "loss": 3.8734190464019775, + "step": 1603 + }, + { + "epoch": 22.279598077763215, + "grad_norm": 0.22235789895057678, + "learning_rate": 0.0006, + "loss": 3.884854793548584, + "step": 1604 + }, + { + "epoch": 22.293577981651374, + "grad_norm": 0.21975041925907135, + "learning_rate": 0.0006, + "loss": 3.8860888481140137, + "step": 1605 + }, + { + "epoch": 22.307557885539538, + "grad_norm": 0.21474459767341614, + "learning_rate": 0.0006, + "loss": 3.9052200317382812, + "step": 1606 + }, + { + "epoch": 22.321537789427698, + "grad_norm": 0.2103329747915268, + "learning_rate": 0.0006, + "loss": 3.8516340255737305, + "step": 1607 + }, + { + "epoch": 22.335517693315857, + "grad_norm": 0.1981191635131836, + "learning_rate": 0.0006, + "loss": 3.9017434120178223, + "step": 1608 + }, + { + "epoch": 22.34949759720402, + "grad_norm": 0.20679591596126556, + "learning_rate": 0.0006, + "loss": 3.889885425567627, + "step": 1609 + }, + { + "epoch": 22.36347750109218, + "grad_norm": 0.20809867978096008, + "learning_rate": 0.0006, + "loss": 3.881868362426758, + "step": 1610 + }, + { + "epoch": 22.37745740498034, + "grad_norm": 0.21394680440425873, + "learning_rate": 0.0006, + "loss": 3.89980411529541, + "step": 1611 + }, + { + "epoch": 22.3914373088685, + "grad_norm": 0.2334284782409668, + "learning_rate": 0.0006, + "loss": 3.8672266006469727, + "step": 1612 + }, + { + "epoch": 22.405417212756664, + "grad_norm": 0.26521918177604675, + "learning_rate": 0.0006, + "loss": 3.8918118476867676, + "step": 1613 + }, + { + "epoch": 22.419397116644824, + "grad_norm": 0.2652994394302368, + "learning_rate": 0.0006, + "loss": 3.8683271408081055, + "step": 1614 + }, + { + "epoch": 22.433377020532983, + "grad_norm": 0.2568066716194153, + "learning_rate": 0.0006, + "loss": 3.892523765563965, + "step": 1615 + }, + { + "epoch": 22.447356924421143, + "grad_norm": 0.260052353143692, + "learning_rate": 0.0006, + "loss": 3.897305488586426, + "step": 1616 + }, + { + "epoch": 22.461336828309307, + "grad_norm": 0.2744271457195282, + "learning_rate": 0.0006, + "loss": 3.8962221145629883, + "step": 1617 + }, + { + "epoch": 22.475316732197467, + "grad_norm": 0.23755787312984467, + "learning_rate": 0.0006, + "loss": 3.888184070587158, + "step": 1618 + }, + { + "epoch": 22.489296636085626, + "grad_norm": 0.2515312135219574, + "learning_rate": 0.0006, + "loss": 3.8946003913879395, + "step": 1619 + }, + { + "epoch": 22.503276539973786, + "grad_norm": 0.24835044145584106, + "learning_rate": 0.0006, + "loss": 3.8711423873901367, + "step": 1620 + }, + { + "epoch": 22.51725644386195, + "grad_norm": 0.22615326941013336, + "learning_rate": 0.0006, + "loss": 3.8878846168518066, + "step": 1621 + }, + { + "epoch": 22.53123634775011, + "grad_norm": 0.20482423901557922, + "learning_rate": 0.0006, + "loss": 3.8782598972320557, + "step": 1622 + }, + { + "epoch": 22.54521625163827, + "grad_norm": 0.20436473190784454, + "learning_rate": 0.0006, + "loss": 3.9075279235839844, + "step": 1623 + }, + { + "epoch": 22.55919615552643, + "grad_norm": 0.2066277265548706, + "learning_rate": 0.0006, + "loss": 3.89908766746521, + "step": 1624 + }, + { + "epoch": 22.573176059414592, + "grad_norm": 0.20735307037830353, + "learning_rate": 0.0006, + "loss": 3.865204334259033, + "step": 1625 + }, + { + "epoch": 22.587155963302752, + "grad_norm": 0.20955748856067657, + "learning_rate": 0.0006, + "loss": 3.8835532665252686, + "step": 1626 + }, + { + "epoch": 22.601135867190912, + "grad_norm": 0.21354222297668457, + "learning_rate": 0.0006, + "loss": 3.9012551307678223, + "step": 1627 + }, + { + "epoch": 22.615115771079076, + "grad_norm": 0.2075091004371643, + "learning_rate": 0.0006, + "loss": 3.8733482360839844, + "step": 1628 + }, + { + "epoch": 22.629095674967235, + "grad_norm": 0.20207874476909637, + "learning_rate": 0.0006, + "loss": 3.9193859100341797, + "step": 1629 + }, + { + "epoch": 22.643075578855395, + "grad_norm": 0.21863923966884613, + "learning_rate": 0.0006, + "loss": 3.883518695831299, + "step": 1630 + }, + { + "epoch": 22.657055482743555, + "grad_norm": 0.22117522358894348, + "learning_rate": 0.0006, + "loss": 3.9163284301757812, + "step": 1631 + }, + { + "epoch": 22.67103538663172, + "grad_norm": 0.2078622728586197, + "learning_rate": 0.0006, + "loss": 3.868274688720703, + "step": 1632 + }, + { + "epoch": 22.68501529051988, + "grad_norm": 0.22745893895626068, + "learning_rate": 0.0006, + "loss": 3.9171340465545654, + "step": 1633 + }, + { + "epoch": 22.698995194408038, + "grad_norm": 0.2312736064195633, + "learning_rate": 0.0006, + "loss": 3.9487013816833496, + "step": 1634 + }, + { + "epoch": 22.712975098296198, + "grad_norm": 0.20491497218608856, + "learning_rate": 0.0006, + "loss": 3.91833758354187, + "step": 1635 + }, + { + "epoch": 22.72695500218436, + "grad_norm": 0.1899084597826004, + "learning_rate": 0.0006, + "loss": 3.876225709915161, + "step": 1636 + }, + { + "epoch": 22.74093490607252, + "grad_norm": 0.18581682443618774, + "learning_rate": 0.0006, + "loss": 3.8667988777160645, + "step": 1637 + }, + { + "epoch": 22.75491480996068, + "grad_norm": 0.19855599105358124, + "learning_rate": 0.0006, + "loss": 3.900789260864258, + "step": 1638 + }, + { + "epoch": 22.76889471384884, + "grad_norm": 0.19951458275318146, + "learning_rate": 0.0006, + "loss": 3.8850367069244385, + "step": 1639 + }, + { + "epoch": 22.782874617737004, + "grad_norm": 0.22802744805812836, + "learning_rate": 0.0006, + "loss": 3.9181363582611084, + "step": 1640 + }, + { + "epoch": 22.796854521625164, + "grad_norm": 0.24279919266700745, + "learning_rate": 0.0006, + "loss": 3.8843770027160645, + "step": 1641 + }, + { + "epoch": 22.810834425513324, + "grad_norm": 0.23554913699626923, + "learning_rate": 0.0006, + "loss": 3.8802413940429688, + "step": 1642 + }, + { + "epoch": 22.824814329401484, + "grad_norm": 0.22343270480632782, + "learning_rate": 0.0006, + "loss": 3.8524107933044434, + "step": 1643 + }, + { + "epoch": 22.838794233289647, + "grad_norm": 0.2185724526643753, + "learning_rate": 0.0006, + "loss": 3.9117047786712646, + "step": 1644 + }, + { + "epoch": 22.852774137177807, + "grad_norm": 0.2114841341972351, + "learning_rate": 0.0006, + "loss": 3.90325927734375, + "step": 1645 + }, + { + "epoch": 22.866754041065967, + "grad_norm": 0.21072550117969513, + "learning_rate": 0.0006, + "loss": 3.8988137245178223, + "step": 1646 + }, + { + "epoch": 22.88073394495413, + "grad_norm": 0.2250078171491623, + "learning_rate": 0.0006, + "loss": 3.9201531410217285, + "step": 1647 + }, + { + "epoch": 22.89471384884229, + "grad_norm": 0.20928071439266205, + "learning_rate": 0.0006, + "loss": 3.91666316986084, + "step": 1648 + }, + { + "epoch": 22.90869375273045, + "grad_norm": 0.24096311628818512, + "learning_rate": 0.0006, + "loss": 3.8797364234924316, + "step": 1649 + }, + { + "epoch": 22.92267365661861, + "grad_norm": 0.2591194212436676, + "learning_rate": 0.0006, + "loss": 3.883273124694824, + "step": 1650 + }, + { + "epoch": 22.936653560506773, + "grad_norm": 0.27342668175697327, + "learning_rate": 0.0006, + "loss": 3.8645026683807373, + "step": 1651 + }, + { + "epoch": 22.950633464394933, + "grad_norm": 0.2448573112487793, + "learning_rate": 0.0006, + "loss": 3.9093551635742188, + "step": 1652 + }, + { + "epoch": 22.964613368283093, + "grad_norm": 0.19899503886699677, + "learning_rate": 0.0006, + "loss": 3.9001057147979736, + "step": 1653 + }, + { + "epoch": 22.978593272171253, + "grad_norm": 0.2023746520280838, + "learning_rate": 0.0006, + "loss": 3.886474370956421, + "step": 1654 + }, + { + "epoch": 22.992573176059416, + "grad_norm": 0.19894269108772278, + "learning_rate": 0.0006, + "loss": 3.9004204273223877, + "step": 1655 + }, + { + "epoch": 23.0, + "grad_norm": 0.2401709407567978, + "learning_rate": 0.0006, + "loss": 3.8665566444396973, + "step": 1656 + }, + { + "epoch": 23.0, + "eval_loss": 4.112459659576416, + "eval_runtime": 44.8325, + "eval_samples_per_second": 54.469, + "eval_steps_per_second": 3.413, + "step": 1656 + }, + { + "epoch": 23.01397990388816, + "grad_norm": 0.22662921249866486, + "learning_rate": 0.0006, + "loss": 3.853271961212158, + "step": 1657 + }, + { + "epoch": 23.027959807776323, + "grad_norm": 0.24406856298446655, + "learning_rate": 0.0006, + "loss": 3.8691890239715576, + "step": 1658 + }, + { + "epoch": 23.041939711664483, + "grad_norm": 0.2266651839017868, + "learning_rate": 0.0006, + "loss": 3.838599681854248, + "step": 1659 + }, + { + "epoch": 23.055919615552643, + "grad_norm": 0.22303511202335358, + "learning_rate": 0.0006, + "loss": 3.8678267002105713, + "step": 1660 + }, + { + "epoch": 23.069899519440803, + "grad_norm": 0.2272164225578308, + "learning_rate": 0.0006, + "loss": 3.9045681953430176, + "step": 1661 + }, + { + "epoch": 23.083879423328966, + "grad_norm": 0.25004875659942627, + "learning_rate": 0.0006, + "loss": 3.856503963470459, + "step": 1662 + }, + { + "epoch": 23.097859327217126, + "grad_norm": 0.26016247272491455, + "learning_rate": 0.0006, + "loss": 3.878587007522583, + "step": 1663 + }, + { + "epoch": 23.111839231105286, + "grad_norm": 0.28539901971817017, + "learning_rate": 0.0006, + "loss": 3.864248514175415, + "step": 1664 + }, + { + "epoch": 23.125819134993446, + "grad_norm": 0.27504822611808777, + "learning_rate": 0.0006, + "loss": 3.821448802947998, + "step": 1665 + }, + { + "epoch": 23.13979903888161, + "grad_norm": 0.238910973072052, + "learning_rate": 0.0006, + "loss": 3.8635847568511963, + "step": 1666 + }, + { + "epoch": 23.15377894276977, + "grad_norm": 0.24179652333259583, + "learning_rate": 0.0006, + "loss": 3.8339638710021973, + "step": 1667 + }, + { + "epoch": 23.16775884665793, + "grad_norm": 0.2199544757604599, + "learning_rate": 0.0006, + "loss": 3.868396759033203, + "step": 1668 + }, + { + "epoch": 23.18173875054609, + "grad_norm": 0.1965002566576004, + "learning_rate": 0.0006, + "loss": 3.8761439323425293, + "step": 1669 + }, + { + "epoch": 23.195718654434252, + "grad_norm": 0.20426614582538605, + "learning_rate": 0.0006, + "loss": 3.822899580001831, + "step": 1670 + }, + { + "epoch": 23.209698558322412, + "grad_norm": 0.2197263389825821, + "learning_rate": 0.0006, + "loss": 3.887728452682495, + "step": 1671 + }, + { + "epoch": 23.22367846221057, + "grad_norm": 0.22844573855400085, + "learning_rate": 0.0006, + "loss": 3.8550517559051514, + "step": 1672 + }, + { + "epoch": 23.23765836609873, + "grad_norm": 0.2347746044397354, + "learning_rate": 0.0006, + "loss": 3.903310537338257, + "step": 1673 + }, + { + "epoch": 23.251638269986895, + "grad_norm": 0.24167625606060028, + "learning_rate": 0.0006, + "loss": 3.8397774696350098, + "step": 1674 + }, + { + "epoch": 23.265618173875055, + "grad_norm": 0.2691650688648224, + "learning_rate": 0.0006, + "loss": 3.853254795074463, + "step": 1675 + }, + { + "epoch": 23.279598077763215, + "grad_norm": 0.29421621561050415, + "learning_rate": 0.0006, + "loss": 3.86065411567688, + "step": 1676 + }, + { + "epoch": 23.293577981651374, + "grad_norm": 0.31074345111846924, + "learning_rate": 0.0006, + "loss": 3.8716742992401123, + "step": 1677 + }, + { + "epoch": 23.307557885539538, + "grad_norm": 0.3044569194316864, + "learning_rate": 0.0006, + "loss": 3.8738951683044434, + "step": 1678 + }, + { + "epoch": 23.321537789427698, + "grad_norm": 0.30496764183044434, + "learning_rate": 0.0006, + "loss": 3.884446620941162, + "step": 1679 + }, + { + "epoch": 23.335517693315857, + "grad_norm": 0.31122756004333496, + "learning_rate": 0.0006, + "loss": 3.878495693206787, + "step": 1680 + }, + { + "epoch": 23.34949759720402, + "grad_norm": 0.32268181443214417, + "learning_rate": 0.0006, + "loss": 3.8793649673461914, + "step": 1681 + }, + { + "epoch": 23.36347750109218, + "grad_norm": 0.3297140598297119, + "learning_rate": 0.0006, + "loss": 3.87484073638916, + "step": 1682 + }, + { + "epoch": 23.37745740498034, + "grad_norm": 0.26007479429244995, + "learning_rate": 0.0006, + "loss": 3.8510947227478027, + "step": 1683 + }, + { + "epoch": 23.3914373088685, + "grad_norm": 0.2627335786819458, + "learning_rate": 0.0006, + "loss": 3.8783209323883057, + "step": 1684 + }, + { + "epoch": 23.405417212756664, + "grad_norm": 0.256452739238739, + "learning_rate": 0.0006, + "loss": 3.8594281673431396, + "step": 1685 + }, + { + "epoch": 23.419397116644824, + "grad_norm": 0.23892226815223694, + "learning_rate": 0.0006, + "loss": 3.898951292037964, + "step": 1686 + }, + { + "epoch": 23.433377020532983, + "grad_norm": 0.21625587344169617, + "learning_rate": 0.0006, + "loss": 3.8679966926574707, + "step": 1687 + }, + { + "epoch": 23.447356924421143, + "grad_norm": 0.21924619376659393, + "learning_rate": 0.0006, + "loss": 3.8774075508117676, + "step": 1688 + }, + { + "epoch": 23.461336828309307, + "grad_norm": 0.21500127017498016, + "learning_rate": 0.0006, + "loss": 3.870619297027588, + "step": 1689 + }, + { + "epoch": 23.475316732197467, + "grad_norm": 0.22580556571483612, + "learning_rate": 0.0006, + "loss": 3.887722969055176, + "step": 1690 + }, + { + "epoch": 23.489296636085626, + "grad_norm": 0.2500104308128357, + "learning_rate": 0.0006, + "loss": 3.88789963722229, + "step": 1691 + }, + { + "epoch": 23.503276539973786, + "grad_norm": 0.22462762892246246, + "learning_rate": 0.0006, + "loss": 3.863997459411621, + "step": 1692 + }, + { + "epoch": 23.51725644386195, + "grad_norm": 0.21427781879901886, + "learning_rate": 0.0006, + "loss": 3.8827033042907715, + "step": 1693 + }, + { + "epoch": 23.53123634775011, + "grad_norm": 0.22278577089309692, + "learning_rate": 0.0006, + "loss": 3.8659563064575195, + "step": 1694 + }, + { + "epoch": 23.54521625163827, + "grad_norm": 0.22801144421100616, + "learning_rate": 0.0006, + "loss": 3.9031362533569336, + "step": 1695 + }, + { + "epoch": 23.55919615552643, + "grad_norm": 0.25071898102760315, + "learning_rate": 0.0006, + "loss": 3.887746810913086, + "step": 1696 + }, + { + "epoch": 23.573176059414592, + "grad_norm": 0.2564085125923157, + "learning_rate": 0.0006, + "loss": 3.8918356895446777, + "step": 1697 + }, + { + "epoch": 23.587155963302752, + "grad_norm": 0.24603120982646942, + "learning_rate": 0.0006, + "loss": 3.850416421890259, + "step": 1698 + }, + { + "epoch": 23.601135867190912, + "grad_norm": 0.20539002120494843, + "learning_rate": 0.0006, + "loss": 3.862060070037842, + "step": 1699 + }, + { + "epoch": 23.615115771079076, + "grad_norm": 0.2022249400615692, + "learning_rate": 0.0006, + "loss": 3.899008274078369, + "step": 1700 + }, + { + "epoch": 23.629095674967235, + "grad_norm": 0.2435392290353775, + "learning_rate": 0.0006, + "loss": 3.844388961791992, + "step": 1701 + }, + { + "epoch": 23.643075578855395, + "grad_norm": 0.21146756410598755, + "learning_rate": 0.0006, + "loss": 3.8972439765930176, + "step": 1702 + }, + { + "epoch": 23.657055482743555, + "grad_norm": 0.2025400996208191, + "learning_rate": 0.0006, + "loss": 3.865253448486328, + "step": 1703 + }, + { + "epoch": 23.67103538663172, + "grad_norm": 0.21129970252513885, + "learning_rate": 0.0006, + "loss": 3.8768205642700195, + "step": 1704 + }, + { + "epoch": 23.68501529051988, + "grad_norm": 0.22982284426689148, + "learning_rate": 0.0006, + "loss": 3.8792667388916016, + "step": 1705 + }, + { + "epoch": 23.698995194408038, + "grad_norm": 0.23013733327388763, + "learning_rate": 0.0006, + "loss": 3.880897045135498, + "step": 1706 + }, + { + "epoch": 23.712975098296198, + "grad_norm": 0.2277672290802002, + "learning_rate": 0.0006, + "loss": 3.8738410472869873, + "step": 1707 + }, + { + "epoch": 23.72695500218436, + "grad_norm": 0.2343369573354721, + "learning_rate": 0.0006, + "loss": 3.8587026596069336, + "step": 1708 + }, + { + "epoch": 23.74093490607252, + "grad_norm": 0.23159530758857727, + "learning_rate": 0.0006, + "loss": 3.856306552886963, + "step": 1709 + }, + { + "epoch": 23.75491480996068, + "grad_norm": 0.19541035592556, + "learning_rate": 0.0006, + "loss": 3.8294754028320312, + "step": 1710 + }, + { + "epoch": 23.76889471384884, + "grad_norm": 0.22999322414398193, + "learning_rate": 0.0006, + "loss": 3.882676124572754, + "step": 1711 + }, + { + "epoch": 23.782874617737004, + "grad_norm": 0.23442843556404114, + "learning_rate": 0.0006, + "loss": 3.8887529373168945, + "step": 1712 + }, + { + "epoch": 23.796854521625164, + "grad_norm": 0.22914239764213562, + "learning_rate": 0.0006, + "loss": 3.867673635482788, + "step": 1713 + }, + { + "epoch": 23.810834425513324, + "grad_norm": 0.20683827996253967, + "learning_rate": 0.0006, + "loss": 3.8999581336975098, + "step": 1714 + }, + { + "epoch": 23.824814329401484, + "grad_norm": 0.19281277060508728, + "learning_rate": 0.0006, + "loss": 3.8997726440429688, + "step": 1715 + }, + { + "epoch": 23.838794233289647, + "grad_norm": 0.20058563351631165, + "learning_rate": 0.0006, + "loss": 3.8583860397338867, + "step": 1716 + }, + { + "epoch": 23.852774137177807, + "grad_norm": 0.19856606423854828, + "learning_rate": 0.0006, + "loss": 3.88948392868042, + "step": 1717 + }, + { + "epoch": 23.866754041065967, + "grad_norm": 0.2099323868751526, + "learning_rate": 0.0006, + "loss": 3.878458261489868, + "step": 1718 + }, + { + "epoch": 23.88073394495413, + "grad_norm": 0.22945016622543335, + "learning_rate": 0.0006, + "loss": 3.84116268157959, + "step": 1719 + }, + { + "epoch": 23.89471384884229, + "grad_norm": 0.22646087408065796, + "learning_rate": 0.0006, + "loss": 3.9006617069244385, + "step": 1720 + }, + { + "epoch": 23.90869375273045, + "grad_norm": 0.20282860100269318, + "learning_rate": 0.0006, + "loss": 3.8781144618988037, + "step": 1721 + }, + { + "epoch": 23.92267365661861, + "grad_norm": 0.1918555349111557, + "learning_rate": 0.0006, + "loss": 3.8560891151428223, + "step": 1722 + }, + { + "epoch": 23.936653560506773, + "grad_norm": 0.19286513328552246, + "learning_rate": 0.0006, + "loss": 3.873220920562744, + "step": 1723 + }, + { + "epoch": 23.950633464394933, + "grad_norm": 0.21071338653564453, + "learning_rate": 0.0006, + "loss": 3.9147067070007324, + "step": 1724 + }, + { + "epoch": 23.964613368283093, + "grad_norm": 0.20956715941429138, + "learning_rate": 0.0006, + "loss": 3.8762729167938232, + "step": 1725 + }, + { + "epoch": 23.978593272171253, + "grad_norm": 0.23053105175495148, + "learning_rate": 0.0006, + "loss": 3.873781681060791, + "step": 1726 + }, + { + "epoch": 23.992573176059416, + "grad_norm": 0.2719029486179352, + "learning_rate": 0.0006, + "loss": 3.862342357635498, + "step": 1727 + }, + { + "epoch": 24.0, + "grad_norm": 0.2933610677719116, + "learning_rate": 0.0006, + "loss": 3.8657689094543457, + "step": 1728 + }, + { + "epoch": 24.0, + "eval_loss": 4.0959153175354, + "eval_runtime": 44.3631, + "eval_samples_per_second": 55.046, + "eval_steps_per_second": 3.449, + "step": 1728 + }, + { + "epoch": 24.01397990388816, + "grad_norm": 0.24905365705490112, + "learning_rate": 0.0006, + "loss": 3.838136911392212, + "step": 1729 + }, + { + "epoch": 24.027959807776323, + "grad_norm": 0.25948020815849304, + "learning_rate": 0.0006, + "loss": 3.8581268787384033, + "step": 1730 + }, + { + "epoch": 24.041939711664483, + "grad_norm": 0.24965140223503113, + "learning_rate": 0.0006, + "loss": 3.8628978729248047, + "step": 1731 + }, + { + "epoch": 24.055919615552643, + "grad_norm": 0.23428823053836823, + "learning_rate": 0.0006, + "loss": 3.8188819885253906, + "step": 1732 + }, + { + "epoch": 24.069899519440803, + "grad_norm": 0.22191211581230164, + "learning_rate": 0.0006, + "loss": 3.8616039752960205, + "step": 1733 + }, + { + "epoch": 24.083879423328966, + "grad_norm": 0.20257535576820374, + "learning_rate": 0.0006, + "loss": 3.8632802963256836, + "step": 1734 + }, + { + "epoch": 24.097859327217126, + "grad_norm": 0.20385196805000305, + "learning_rate": 0.0006, + "loss": 3.885817050933838, + "step": 1735 + }, + { + "epoch": 24.111839231105286, + "grad_norm": 0.19921693205833435, + "learning_rate": 0.0006, + "loss": 3.838515043258667, + "step": 1736 + }, + { + "epoch": 24.125819134993446, + "grad_norm": 0.20221556723117828, + "learning_rate": 0.0006, + "loss": 3.8585309982299805, + "step": 1737 + }, + { + "epoch": 24.13979903888161, + "grad_norm": 0.20124691724777222, + "learning_rate": 0.0006, + "loss": 3.81656551361084, + "step": 1738 + }, + { + "epoch": 24.15377894276977, + "grad_norm": 0.1810830533504486, + "learning_rate": 0.0006, + "loss": 3.841783046722412, + "step": 1739 + }, + { + "epoch": 24.16775884665793, + "grad_norm": 0.18414196372032166, + "learning_rate": 0.0006, + "loss": 3.8614797592163086, + "step": 1740 + }, + { + "epoch": 24.18173875054609, + "grad_norm": 0.18930725753307343, + "learning_rate": 0.0006, + "loss": 3.8382534980773926, + "step": 1741 + }, + { + "epoch": 24.195718654434252, + "grad_norm": 0.19658128917217255, + "learning_rate": 0.0006, + "loss": 3.881742477416992, + "step": 1742 + }, + { + "epoch": 24.209698558322412, + "grad_norm": 0.20175589621067047, + "learning_rate": 0.0006, + "loss": 3.8760581016540527, + "step": 1743 + }, + { + "epoch": 24.22367846221057, + "grad_norm": 0.19416265189647675, + "learning_rate": 0.0006, + "loss": 3.8373687267303467, + "step": 1744 + }, + { + "epoch": 24.23765836609873, + "grad_norm": 0.20206521451473236, + "learning_rate": 0.0006, + "loss": 3.8322830200195312, + "step": 1745 + }, + { + "epoch": 24.251638269986895, + "grad_norm": 0.21797429025173187, + "learning_rate": 0.0006, + "loss": 3.849905490875244, + "step": 1746 + }, + { + "epoch": 24.265618173875055, + "grad_norm": 0.21295784413814545, + "learning_rate": 0.0006, + "loss": 3.847714900970459, + "step": 1747 + }, + { + "epoch": 24.279598077763215, + "grad_norm": 0.22023876011371613, + "learning_rate": 0.0006, + "loss": 3.8221592903137207, + "step": 1748 + }, + { + "epoch": 24.293577981651374, + "grad_norm": 0.2125576138496399, + "learning_rate": 0.0006, + "loss": 3.8070976734161377, + "step": 1749 + }, + { + "epoch": 24.307557885539538, + "grad_norm": 0.18673811852931976, + "learning_rate": 0.0006, + "loss": 3.866878032684326, + "step": 1750 + }, + { + "epoch": 24.321537789427698, + "grad_norm": 0.1972627341747284, + "learning_rate": 0.0006, + "loss": 3.846404552459717, + "step": 1751 + }, + { + "epoch": 24.335517693315857, + "grad_norm": 0.21846632659435272, + "learning_rate": 0.0006, + "loss": 3.8528640270233154, + "step": 1752 + }, + { + "epoch": 24.34949759720402, + "grad_norm": 0.22234080731868744, + "learning_rate": 0.0006, + "loss": 3.8268141746520996, + "step": 1753 + }, + { + "epoch": 24.36347750109218, + "grad_norm": 0.23002761602401733, + "learning_rate": 0.0006, + "loss": 3.832444667816162, + "step": 1754 + }, + { + "epoch": 24.37745740498034, + "grad_norm": 0.22526559233665466, + "learning_rate": 0.0006, + "loss": 3.864406108856201, + "step": 1755 + }, + { + "epoch": 24.3914373088685, + "grad_norm": 0.2290039211511612, + "learning_rate": 0.0006, + "loss": 3.8449103832244873, + "step": 1756 + }, + { + "epoch": 24.405417212756664, + "grad_norm": 0.23145617544651031, + "learning_rate": 0.0006, + "loss": 3.8183751106262207, + "step": 1757 + }, + { + "epoch": 24.419397116644824, + "grad_norm": 0.24287554621696472, + "learning_rate": 0.0006, + "loss": 3.809481382369995, + "step": 1758 + }, + { + "epoch": 24.433377020532983, + "grad_norm": 0.2672404646873474, + "learning_rate": 0.0006, + "loss": 3.877800464630127, + "step": 1759 + }, + { + "epoch": 24.447356924421143, + "grad_norm": 0.26292186975479126, + "learning_rate": 0.0006, + "loss": 3.8329367637634277, + "step": 1760 + }, + { + "epoch": 24.461336828309307, + "grad_norm": 0.26235947012901306, + "learning_rate": 0.0006, + "loss": 3.8414158821105957, + "step": 1761 + }, + { + "epoch": 24.475316732197467, + "grad_norm": 0.2638382613658905, + "learning_rate": 0.0006, + "loss": 3.849188804626465, + "step": 1762 + }, + { + "epoch": 24.489296636085626, + "grad_norm": 0.2564602196216583, + "learning_rate": 0.0006, + "loss": 3.865501880645752, + "step": 1763 + }, + { + "epoch": 24.503276539973786, + "grad_norm": 0.21352271735668182, + "learning_rate": 0.0006, + "loss": 3.87910795211792, + "step": 1764 + }, + { + "epoch": 24.51725644386195, + "grad_norm": 0.2470584511756897, + "learning_rate": 0.0006, + "loss": 3.858750343322754, + "step": 1765 + }, + { + "epoch": 24.53123634775011, + "grad_norm": 0.24907536804676056, + "learning_rate": 0.0006, + "loss": 3.8532559871673584, + "step": 1766 + }, + { + "epoch": 24.54521625163827, + "grad_norm": 0.2426205575466156, + "learning_rate": 0.0006, + "loss": 3.8659827709198, + "step": 1767 + }, + { + "epoch": 24.55919615552643, + "grad_norm": 0.23481151461601257, + "learning_rate": 0.0006, + "loss": 3.863948345184326, + "step": 1768 + }, + { + "epoch": 24.573176059414592, + "grad_norm": 0.22717779874801636, + "learning_rate": 0.0006, + "loss": 3.848527193069458, + "step": 1769 + }, + { + "epoch": 24.587155963302752, + "grad_norm": 0.2267129123210907, + "learning_rate": 0.0006, + "loss": 3.8600735664367676, + "step": 1770 + }, + { + "epoch": 24.601135867190912, + "grad_norm": 0.24967710673809052, + "learning_rate": 0.0006, + "loss": 3.84291934967041, + "step": 1771 + }, + { + "epoch": 24.615115771079076, + "grad_norm": 0.25308957695961, + "learning_rate": 0.0006, + "loss": 3.846181631088257, + "step": 1772 + }, + { + "epoch": 24.629095674967235, + "grad_norm": 0.2689298391342163, + "learning_rate": 0.0006, + "loss": 3.8572893142700195, + "step": 1773 + }, + { + "epoch": 24.643075578855395, + "grad_norm": 0.26458555459976196, + "learning_rate": 0.0006, + "loss": 3.8583621978759766, + "step": 1774 + }, + { + "epoch": 24.657055482743555, + "grad_norm": 0.24416811764240265, + "learning_rate": 0.0006, + "loss": 3.8648223876953125, + "step": 1775 + }, + { + "epoch": 24.67103538663172, + "grad_norm": 0.22218526899814606, + "learning_rate": 0.0006, + "loss": 3.839395523071289, + "step": 1776 + }, + { + "epoch": 24.68501529051988, + "grad_norm": 0.2147492915391922, + "learning_rate": 0.0006, + "loss": 3.875734567642212, + "step": 1777 + }, + { + "epoch": 24.698995194408038, + "grad_norm": 0.2346794754266739, + "learning_rate": 0.0006, + "loss": 3.854768991470337, + "step": 1778 + }, + { + "epoch": 24.712975098296198, + "grad_norm": 0.21406520903110504, + "learning_rate": 0.0006, + "loss": 3.8269104957580566, + "step": 1779 + }, + { + "epoch": 24.72695500218436, + "grad_norm": 0.20716224610805511, + "learning_rate": 0.0006, + "loss": 3.8245768547058105, + "step": 1780 + }, + { + "epoch": 24.74093490607252, + "grad_norm": 0.21445901691913605, + "learning_rate": 0.0006, + "loss": 3.8877978324890137, + "step": 1781 + }, + { + "epoch": 24.75491480996068, + "grad_norm": 0.21964985132217407, + "learning_rate": 0.0006, + "loss": 3.8602452278137207, + "step": 1782 + }, + { + "epoch": 24.76889471384884, + "grad_norm": 0.209807351231575, + "learning_rate": 0.0006, + "loss": 3.853428602218628, + "step": 1783 + }, + { + "epoch": 24.782874617737004, + "grad_norm": 0.19564911723136902, + "learning_rate": 0.0006, + "loss": 3.832275867462158, + "step": 1784 + }, + { + "epoch": 24.796854521625164, + "grad_norm": 0.21394333243370056, + "learning_rate": 0.0006, + "loss": 3.8543171882629395, + "step": 1785 + }, + { + "epoch": 24.810834425513324, + "grad_norm": 0.23156948387622833, + "learning_rate": 0.0006, + "loss": 3.8539412021636963, + "step": 1786 + }, + { + "epoch": 24.824814329401484, + "grad_norm": 0.2378678321838379, + "learning_rate": 0.0006, + "loss": 3.8409833908081055, + "step": 1787 + }, + { + "epoch": 24.838794233289647, + "grad_norm": 0.23816189169883728, + "learning_rate": 0.0006, + "loss": 3.855379581451416, + "step": 1788 + }, + { + "epoch": 24.852774137177807, + "grad_norm": 0.23109886050224304, + "learning_rate": 0.0006, + "loss": 3.8689517974853516, + "step": 1789 + }, + { + "epoch": 24.866754041065967, + "grad_norm": 0.2042883038520813, + "learning_rate": 0.0006, + "loss": 3.8730404376983643, + "step": 1790 + }, + { + "epoch": 24.88073394495413, + "grad_norm": 0.2039479911327362, + "learning_rate": 0.0006, + "loss": 3.8474984169006348, + "step": 1791 + }, + { + "epoch": 24.89471384884229, + "grad_norm": 0.213027223944664, + "learning_rate": 0.0006, + "loss": 3.8539695739746094, + "step": 1792 + }, + { + "epoch": 24.90869375273045, + "grad_norm": 0.2280654013156891, + "learning_rate": 0.0006, + "loss": 3.8633079528808594, + "step": 1793 + }, + { + "epoch": 24.92267365661861, + "grad_norm": 0.20864921808242798, + "learning_rate": 0.0006, + "loss": 3.8110368251800537, + "step": 1794 + }, + { + "epoch": 24.936653560506773, + "grad_norm": 0.23002111911773682, + "learning_rate": 0.0006, + "loss": 3.8334741592407227, + "step": 1795 + }, + { + "epoch": 24.950633464394933, + "grad_norm": 0.232331782579422, + "learning_rate": 0.0006, + "loss": 3.871887683868408, + "step": 1796 + }, + { + "epoch": 24.964613368283093, + "grad_norm": 0.24141235649585724, + "learning_rate": 0.0006, + "loss": 3.8614959716796875, + "step": 1797 + }, + { + "epoch": 24.978593272171253, + "grad_norm": 0.2545177638530731, + "learning_rate": 0.0006, + "loss": 3.8563568592071533, + "step": 1798 + }, + { + "epoch": 24.992573176059416, + "grad_norm": 0.25186386704444885, + "learning_rate": 0.0006, + "loss": 3.882166862487793, + "step": 1799 + }, + { + "epoch": 25.0, + "grad_norm": 0.260195791721344, + "learning_rate": 0.0006, + "loss": 3.884554862976074, + "step": 1800 + }, + { + "epoch": 25.0, + "eval_loss": 4.08809757232666, + "eval_runtime": 44.7947, + "eval_samples_per_second": 54.515, + "eval_steps_per_second": 3.416, + "step": 1800 + }, + { + "epoch": 25.01397990388816, + "grad_norm": 0.25396403670310974, + "learning_rate": 0.0006, + "loss": 3.8217287063598633, + "step": 1801 + }, + { + "epoch": 25.027959807776323, + "grad_norm": 0.2773195207118988, + "learning_rate": 0.0006, + "loss": 3.809542417526245, + "step": 1802 + }, + { + "epoch": 25.041939711664483, + "grad_norm": 0.3073263168334961, + "learning_rate": 0.0006, + "loss": 3.825706958770752, + "step": 1803 + }, + { + "epoch": 25.055919615552643, + "grad_norm": 0.30885398387908936, + "learning_rate": 0.0006, + "loss": 3.8081188201904297, + "step": 1804 + }, + { + "epoch": 25.069899519440803, + "grad_norm": 0.27356019616127014, + "learning_rate": 0.0006, + "loss": 3.8538241386413574, + "step": 1805 + }, + { + "epoch": 25.083879423328966, + "grad_norm": 0.22830164432525635, + "learning_rate": 0.0006, + "loss": 3.8246965408325195, + "step": 1806 + }, + { + "epoch": 25.097859327217126, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.8552842140197754, + "step": 1807 + }, + { + "epoch": 25.111839231105286, + "grad_norm": 0.21718722581863403, + "learning_rate": 0.0006, + "loss": 3.8489418029785156, + "step": 1808 + }, + { + "epoch": 25.125819134993446, + "grad_norm": 0.2480861395597458, + "learning_rate": 0.0006, + "loss": 3.821455955505371, + "step": 1809 + }, + { + "epoch": 25.13979903888161, + "grad_norm": 0.2796635627746582, + "learning_rate": 0.0006, + "loss": 3.8202435970306396, + "step": 1810 + }, + { + "epoch": 25.15377894276977, + "grad_norm": 0.2829958200454712, + "learning_rate": 0.0006, + "loss": 3.8293306827545166, + "step": 1811 + }, + { + "epoch": 25.16775884665793, + "grad_norm": 0.2510125935077667, + "learning_rate": 0.0006, + "loss": 3.8342957496643066, + "step": 1812 + }, + { + "epoch": 25.18173875054609, + "grad_norm": 0.22923722863197327, + "learning_rate": 0.0006, + "loss": 3.8448352813720703, + "step": 1813 + }, + { + "epoch": 25.195718654434252, + "grad_norm": 0.21439228951931, + "learning_rate": 0.0006, + "loss": 3.8343517780303955, + "step": 1814 + }, + { + "epoch": 25.209698558322412, + "grad_norm": 0.1965373307466507, + "learning_rate": 0.0006, + "loss": 3.8163528442382812, + "step": 1815 + }, + { + "epoch": 25.22367846221057, + "grad_norm": 0.20121058821678162, + "learning_rate": 0.0006, + "loss": 3.8007280826568604, + "step": 1816 + }, + { + "epoch": 25.23765836609873, + "grad_norm": 0.21383272111415863, + "learning_rate": 0.0006, + "loss": 3.8200385570526123, + "step": 1817 + }, + { + "epoch": 25.251638269986895, + "grad_norm": 0.2066601663827896, + "learning_rate": 0.0006, + "loss": 3.8333921432495117, + "step": 1818 + }, + { + "epoch": 25.265618173875055, + "grad_norm": 0.2104874551296234, + "learning_rate": 0.0006, + "loss": 3.838012218475342, + "step": 1819 + }, + { + "epoch": 25.279598077763215, + "grad_norm": 0.19733119010925293, + "learning_rate": 0.0006, + "loss": 3.835139274597168, + "step": 1820 + }, + { + "epoch": 25.293577981651374, + "grad_norm": 0.2119498997926712, + "learning_rate": 0.0006, + "loss": 3.8099722862243652, + "step": 1821 + }, + { + "epoch": 25.307557885539538, + "grad_norm": 0.21863529086112976, + "learning_rate": 0.0006, + "loss": 3.7801573276519775, + "step": 1822 + }, + { + "epoch": 25.321537789427698, + "grad_norm": 0.2113322764635086, + "learning_rate": 0.0006, + "loss": 3.809903621673584, + "step": 1823 + }, + { + "epoch": 25.335517693315857, + "grad_norm": 0.21594023704528809, + "learning_rate": 0.0006, + "loss": 3.8485071659088135, + "step": 1824 + }, + { + "epoch": 25.34949759720402, + "grad_norm": 0.21475964784622192, + "learning_rate": 0.0006, + "loss": 3.7894768714904785, + "step": 1825 + }, + { + "epoch": 25.36347750109218, + "grad_norm": 0.21174900233745575, + "learning_rate": 0.0006, + "loss": 3.821711540222168, + "step": 1826 + }, + { + "epoch": 25.37745740498034, + "grad_norm": 0.2065584659576416, + "learning_rate": 0.0006, + "loss": 3.8439841270446777, + "step": 1827 + }, + { + "epoch": 25.3914373088685, + "grad_norm": 0.19157007336616516, + "learning_rate": 0.0006, + "loss": 3.864245891571045, + "step": 1828 + }, + { + "epoch": 25.405417212756664, + "grad_norm": 0.19983816146850586, + "learning_rate": 0.0006, + "loss": 3.8317415714263916, + "step": 1829 + }, + { + "epoch": 25.419397116644824, + "grad_norm": 0.20506152510643005, + "learning_rate": 0.0006, + "loss": 3.8009896278381348, + "step": 1830 + }, + { + "epoch": 25.433377020532983, + "grad_norm": 0.19056960940361023, + "learning_rate": 0.0006, + "loss": 3.8383498191833496, + "step": 1831 + }, + { + "epoch": 25.447356924421143, + "grad_norm": 0.19262190163135529, + "learning_rate": 0.0006, + "loss": 3.838902235031128, + "step": 1832 + }, + { + "epoch": 25.461336828309307, + "grad_norm": 0.19859355688095093, + "learning_rate": 0.0006, + "loss": 3.82452392578125, + "step": 1833 + }, + { + "epoch": 25.475316732197467, + "grad_norm": 0.2144225388765335, + "learning_rate": 0.0006, + "loss": 3.8110032081604004, + "step": 1834 + }, + { + "epoch": 25.489296636085626, + "grad_norm": 0.20566298067569733, + "learning_rate": 0.0006, + "loss": 3.8662471771240234, + "step": 1835 + }, + { + "epoch": 25.503276539973786, + "grad_norm": 0.2071852684020996, + "learning_rate": 0.0006, + "loss": 3.821134090423584, + "step": 1836 + }, + { + "epoch": 25.51725644386195, + "grad_norm": 0.2095036506652832, + "learning_rate": 0.0006, + "loss": 3.824092388153076, + "step": 1837 + }, + { + "epoch": 25.53123634775011, + "grad_norm": 0.20136208832263947, + "learning_rate": 0.0006, + "loss": 3.8669862747192383, + "step": 1838 + }, + { + "epoch": 25.54521625163827, + "grad_norm": 0.1983811855316162, + "learning_rate": 0.0006, + "loss": 3.8120107650756836, + "step": 1839 + }, + { + "epoch": 25.55919615552643, + "grad_norm": 0.22859714925289154, + "learning_rate": 0.0006, + "loss": 3.8519299030303955, + "step": 1840 + }, + { + "epoch": 25.573176059414592, + "grad_norm": 0.23672667145729065, + "learning_rate": 0.0006, + "loss": 3.8245458602905273, + "step": 1841 + }, + { + "epoch": 25.587155963302752, + "grad_norm": 0.22698380053043365, + "learning_rate": 0.0006, + "loss": 3.8406805992126465, + "step": 1842 + }, + { + "epoch": 25.601135867190912, + "grad_norm": 0.25684037804603577, + "learning_rate": 0.0006, + "loss": 3.8584351539611816, + "step": 1843 + }, + { + "epoch": 25.615115771079076, + "grad_norm": 0.28180673718452454, + "learning_rate": 0.0006, + "loss": 3.8085098266601562, + "step": 1844 + }, + { + "epoch": 25.629095674967235, + "grad_norm": 0.2814631462097168, + "learning_rate": 0.0006, + "loss": 3.845083236694336, + "step": 1845 + }, + { + "epoch": 25.643075578855395, + "grad_norm": 0.23630981147289276, + "learning_rate": 0.0006, + "loss": 3.847749710083008, + "step": 1846 + }, + { + "epoch": 25.657055482743555, + "grad_norm": 0.22463662922382355, + "learning_rate": 0.0006, + "loss": 3.8172082901000977, + "step": 1847 + }, + { + "epoch": 25.67103538663172, + "grad_norm": 0.26551681756973267, + "learning_rate": 0.0006, + "loss": 3.8205654621124268, + "step": 1848 + }, + { + "epoch": 25.68501529051988, + "grad_norm": 0.27824243903160095, + "learning_rate": 0.0006, + "loss": 3.846076011657715, + "step": 1849 + }, + { + "epoch": 25.698995194408038, + "grad_norm": 0.266998291015625, + "learning_rate": 0.0006, + "loss": 3.8543574810028076, + "step": 1850 + }, + { + "epoch": 25.712975098296198, + "grad_norm": 0.22980351746082306, + "learning_rate": 0.0006, + "loss": 3.855511426925659, + "step": 1851 + }, + { + "epoch": 25.72695500218436, + "grad_norm": 0.23482872545719147, + "learning_rate": 0.0006, + "loss": 3.8687663078308105, + "step": 1852 + }, + { + "epoch": 25.74093490607252, + "grad_norm": 0.21119585633277893, + "learning_rate": 0.0006, + "loss": 3.8147101402282715, + "step": 1853 + }, + { + "epoch": 25.75491480996068, + "grad_norm": 0.21200446784496307, + "learning_rate": 0.0006, + "loss": 3.858473777770996, + "step": 1854 + }, + { + "epoch": 25.76889471384884, + "grad_norm": 0.20497842133045197, + "learning_rate": 0.0006, + "loss": 3.8545501232147217, + "step": 1855 + }, + { + "epoch": 25.782874617737004, + "grad_norm": 0.19328081607818604, + "learning_rate": 0.0006, + "loss": 3.7941341400146484, + "step": 1856 + }, + { + "epoch": 25.796854521625164, + "grad_norm": 0.2191578894853592, + "learning_rate": 0.0006, + "loss": 3.8408665657043457, + "step": 1857 + }, + { + "epoch": 25.810834425513324, + "grad_norm": 0.2548826038837433, + "learning_rate": 0.0006, + "loss": 3.854130744934082, + "step": 1858 + }, + { + "epoch": 25.824814329401484, + "grad_norm": 0.2290351390838623, + "learning_rate": 0.0006, + "loss": 3.8680176734924316, + "step": 1859 + }, + { + "epoch": 25.838794233289647, + "grad_norm": 0.20760944485664368, + "learning_rate": 0.0006, + "loss": 3.83731746673584, + "step": 1860 + }, + { + "epoch": 25.852774137177807, + "grad_norm": 0.19587582349777222, + "learning_rate": 0.0006, + "loss": 3.8173444271087646, + "step": 1861 + }, + { + "epoch": 25.866754041065967, + "grad_norm": 0.20762693881988525, + "learning_rate": 0.0006, + "loss": 3.8479790687561035, + "step": 1862 + }, + { + "epoch": 25.88073394495413, + "grad_norm": 0.20633186399936676, + "learning_rate": 0.0006, + "loss": 3.852285385131836, + "step": 1863 + }, + { + "epoch": 25.89471384884229, + "grad_norm": 0.21484960615634918, + "learning_rate": 0.0006, + "loss": 3.832592725753784, + "step": 1864 + }, + { + "epoch": 25.90869375273045, + "grad_norm": 0.19569595158100128, + "learning_rate": 0.0006, + "loss": 3.838071584701538, + "step": 1865 + }, + { + "epoch": 25.92267365661861, + "grad_norm": 0.19532904028892517, + "learning_rate": 0.0006, + "loss": 3.854252815246582, + "step": 1866 + }, + { + "epoch": 25.936653560506773, + "grad_norm": 0.1909649819135666, + "learning_rate": 0.0006, + "loss": 3.8444578647613525, + "step": 1867 + }, + { + "epoch": 25.950633464394933, + "grad_norm": 0.17476283013820648, + "learning_rate": 0.0006, + "loss": 3.836519241333008, + "step": 1868 + }, + { + "epoch": 25.964613368283093, + "grad_norm": 0.1895206719636917, + "learning_rate": 0.0006, + "loss": 3.8282582759857178, + "step": 1869 + }, + { + "epoch": 25.978593272171253, + "grad_norm": 0.20038437843322754, + "learning_rate": 0.0006, + "loss": 3.80542254447937, + "step": 1870 + }, + { + "epoch": 25.992573176059416, + "grad_norm": 0.20728608965873718, + "learning_rate": 0.0006, + "loss": 3.8584811687469482, + "step": 1871 + }, + { + "epoch": 26.0, + "grad_norm": 0.22110891342163086, + "learning_rate": 0.0006, + "loss": 3.8020238876342773, + "step": 1872 + }, + { + "epoch": 26.0, + "eval_loss": 4.072164058685303, + "eval_runtime": 44.9089, + "eval_samples_per_second": 54.377, + "eval_steps_per_second": 3.407, + "step": 1872 + }, + { + "epoch": 26.01397990388816, + "grad_norm": 0.2222519814968109, + "learning_rate": 0.0006, + "loss": 3.8309168815612793, + "step": 1873 + }, + { + "epoch": 26.027959807776323, + "grad_norm": 0.2637656033039093, + "learning_rate": 0.0006, + "loss": 3.8025143146514893, + "step": 1874 + }, + { + "epoch": 26.041939711664483, + "grad_norm": 0.2665974795818329, + "learning_rate": 0.0006, + "loss": 3.8244004249572754, + "step": 1875 + }, + { + "epoch": 26.055919615552643, + "grad_norm": 0.22475720942020416, + "learning_rate": 0.0006, + "loss": 3.80039119720459, + "step": 1876 + }, + { + "epoch": 26.069899519440803, + "grad_norm": 0.22994336485862732, + "learning_rate": 0.0006, + "loss": 3.7700726985931396, + "step": 1877 + }, + { + "epoch": 26.083879423328966, + "grad_norm": 0.24214622378349304, + "learning_rate": 0.0006, + "loss": 3.818725109100342, + "step": 1878 + }, + { + "epoch": 26.097859327217126, + "grad_norm": 0.22701293230056763, + "learning_rate": 0.0006, + "loss": 3.833803176879883, + "step": 1879 + }, + { + "epoch": 26.111839231105286, + "grad_norm": 0.21452295780181885, + "learning_rate": 0.0006, + "loss": 3.8391427993774414, + "step": 1880 + }, + { + "epoch": 26.125819134993446, + "grad_norm": 0.20179636776447296, + "learning_rate": 0.0006, + "loss": 3.802957057952881, + "step": 1881 + }, + { + "epoch": 26.13979903888161, + "grad_norm": 0.2087477445602417, + "learning_rate": 0.0006, + "loss": 3.8339905738830566, + "step": 1882 + }, + { + "epoch": 26.15377894276977, + "grad_norm": 0.23583556711673737, + "learning_rate": 0.0006, + "loss": 3.802438259124756, + "step": 1883 + }, + { + "epoch": 26.16775884665793, + "grad_norm": 0.2504311501979828, + "learning_rate": 0.0006, + "loss": 3.80244517326355, + "step": 1884 + }, + { + "epoch": 26.18173875054609, + "grad_norm": 0.24903984367847443, + "learning_rate": 0.0006, + "loss": 3.788865566253662, + "step": 1885 + }, + { + "epoch": 26.195718654434252, + "grad_norm": 0.2707931101322174, + "learning_rate": 0.0006, + "loss": 3.800051212310791, + "step": 1886 + }, + { + "epoch": 26.209698558322412, + "grad_norm": 0.24902892112731934, + "learning_rate": 0.0006, + "loss": 3.8068337440490723, + "step": 1887 + }, + { + "epoch": 26.22367846221057, + "grad_norm": 0.22655536234378815, + "learning_rate": 0.0006, + "loss": 3.779439926147461, + "step": 1888 + }, + { + "epoch": 26.23765836609873, + "grad_norm": 0.24797996878623962, + "learning_rate": 0.0006, + "loss": 3.822831153869629, + "step": 1889 + }, + { + "epoch": 26.251638269986895, + "grad_norm": 0.2821420431137085, + "learning_rate": 0.0006, + "loss": 3.807954788208008, + "step": 1890 + }, + { + "epoch": 26.265618173875055, + "grad_norm": 0.30392691493034363, + "learning_rate": 0.0006, + "loss": 3.776951789855957, + "step": 1891 + }, + { + "epoch": 26.279598077763215, + "grad_norm": 0.32641273736953735, + "learning_rate": 0.0006, + "loss": 3.8216311931610107, + "step": 1892 + }, + { + "epoch": 26.293577981651374, + "grad_norm": 0.32674387097358704, + "learning_rate": 0.0006, + "loss": 3.815596580505371, + "step": 1893 + }, + { + "epoch": 26.307557885539538, + "grad_norm": 0.29137250781059265, + "learning_rate": 0.0006, + "loss": 3.8170812129974365, + "step": 1894 + }, + { + "epoch": 26.321537789427698, + "grad_norm": 0.24291734397411346, + "learning_rate": 0.0006, + "loss": 3.810352087020874, + "step": 1895 + }, + { + "epoch": 26.335517693315857, + "grad_norm": 0.24023209512233734, + "learning_rate": 0.0006, + "loss": 3.8075947761535645, + "step": 1896 + }, + { + "epoch": 26.34949759720402, + "grad_norm": 0.24334804713726044, + "learning_rate": 0.0006, + "loss": 3.831556797027588, + "step": 1897 + }, + { + "epoch": 26.36347750109218, + "grad_norm": 0.2109663337469101, + "learning_rate": 0.0006, + "loss": 3.838347911834717, + "step": 1898 + }, + { + "epoch": 26.37745740498034, + "grad_norm": 0.19668002426624298, + "learning_rate": 0.0006, + "loss": 3.774737596511841, + "step": 1899 + }, + { + "epoch": 26.3914373088685, + "grad_norm": 0.21329134702682495, + "learning_rate": 0.0006, + "loss": 3.8237252235412598, + "step": 1900 + }, + { + "epoch": 26.405417212756664, + "grad_norm": 0.20381781458854675, + "learning_rate": 0.0006, + "loss": 3.802569627761841, + "step": 1901 + }, + { + "epoch": 26.419397116644824, + "grad_norm": 0.19083160161972046, + "learning_rate": 0.0006, + "loss": 3.8301358222961426, + "step": 1902 + }, + { + "epoch": 26.433377020532983, + "grad_norm": 0.20012904703617096, + "learning_rate": 0.0006, + "loss": 3.7966408729553223, + "step": 1903 + }, + { + "epoch": 26.447356924421143, + "grad_norm": 0.19483457505702972, + "learning_rate": 0.0006, + "loss": 3.8431968688964844, + "step": 1904 + }, + { + "epoch": 26.461336828309307, + "grad_norm": 0.19946353137493134, + "learning_rate": 0.0006, + "loss": 3.8023815155029297, + "step": 1905 + }, + { + "epoch": 26.475316732197467, + "grad_norm": 0.1984100341796875, + "learning_rate": 0.0006, + "loss": 3.8283071517944336, + "step": 1906 + }, + { + "epoch": 26.489296636085626, + "grad_norm": 0.2148299664258957, + "learning_rate": 0.0006, + "loss": 3.8377504348754883, + "step": 1907 + }, + { + "epoch": 26.503276539973786, + "grad_norm": 0.22139184176921844, + "learning_rate": 0.0006, + "loss": 3.823051691055298, + "step": 1908 + }, + { + "epoch": 26.51725644386195, + "grad_norm": 0.18289034068584442, + "learning_rate": 0.0006, + "loss": 3.8027071952819824, + "step": 1909 + }, + { + "epoch": 26.53123634775011, + "grad_norm": 0.1816026121377945, + "learning_rate": 0.0006, + "loss": 3.823786735534668, + "step": 1910 + }, + { + "epoch": 26.54521625163827, + "grad_norm": 0.19074322283267975, + "learning_rate": 0.0006, + "loss": 3.813331127166748, + "step": 1911 + }, + { + "epoch": 26.55919615552643, + "grad_norm": 0.20301467180252075, + "learning_rate": 0.0006, + "loss": 3.8218350410461426, + "step": 1912 + }, + { + "epoch": 26.573176059414592, + "grad_norm": 0.25266432762145996, + "learning_rate": 0.0006, + "loss": 3.8455142974853516, + "step": 1913 + }, + { + "epoch": 26.587155963302752, + "grad_norm": 0.25804755091667175, + "learning_rate": 0.0006, + "loss": 3.799227476119995, + "step": 1914 + }, + { + "epoch": 26.601135867190912, + "grad_norm": 0.2555372416973114, + "learning_rate": 0.0006, + "loss": 3.8125686645507812, + "step": 1915 + }, + { + "epoch": 26.615115771079076, + "grad_norm": 0.2266194075345993, + "learning_rate": 0.0006, + "loss": 3.858363628387451, + "step": 1916 + }, + { + "epoch": 26.629095674967235, + "grad_norm": 0.1933048665523529, + "learning_rate": 0.0006, + "loss": 3.8078083992004395, + "step": 1917 + }, + { + "epoch": 26.643075578855395, + "grad_norm": 0.19936731457710266, + "learning_rate": 0.0006, + "loss": 3.81748628616333, + "step": 1918 + }, + { + "epoch": 26.657055482743555, + "grad_norm": 0.22041693329811096, + "learning_rate": 0.0006, + "loss": 3.833272933959961, + "step": 1919 + }, + { + "epoch": 26.67103538663172, + "grad_norm": 0.20679150521755219, + "learning_rate": 0.0006, + "loss": 3.8127288818359375, + "step": 1920 + }, + { + "epoch": 26.68501529051988, + "grad_norm": 0.21545100212097168, + "learning_rate": 0.0006, + "loss": 3.816051483154297, + "step": 1921 + }, + { + "epoch": 26.698995194408038, + "grad_norm": 0.23554518818855286, + "learning_rate": 0.0006, + "loss": 3.8180980682373047, + "step": 1922 + }, + { + "epoch": 26.712975098296198, + "grad_norm": 0.21942466497421265, + "learning_rate": 0.0006, + "loss": 3.803107976913452, + "step": 1923 + }, + { + "epoch": 26.72695500218436, + "grad_norm": 0.22335010766983032, + "learning_rate": 0.0006, + "loss": 3.847890853881836, + "step": 1924 + }, + { + "epoch": 26.74093490607252, + "grad_norm": 0.24731314182281494, + "learning_rate": 0.0006, + "loss": 3.7945008277893066, + "step": 1925 + }, + { + "epoch": 26.75491480996068, + "grad_norm": 0.2804568111896515, + "learning_rate": 0.0006, + "loss": 3.8400068283081055, + "step": 1926 + }, + { + "epoch": 26.76889471384884, + "grad_norm": 0.28787222504615784, + "learning_rate": 0.0006, + "loss": 3.839771270751953, + "step": 1927 + }, + { + "epoch": 26.782874617737004, + "grad_norm": 0.2949632406234741, + "learning_rate": 0.0006, + "loss": 3.8225326538085938, + "step": 1928 + }, + { + "epoch": 26.796854521625164, + "grad_norm": 0.31546032428741455, + "learning_rate": 0.0006, + "loss": 3.8182597160339355, + "step": 1929 + }, + { + "epoch": 26.810834425513324, + "grad_norm": 0.2956962585449219, + "learning_rate": 0.0006, + "loss": 3.8315680027008057, + "step": 1930 + }, + { + "epoch": 26.824814329401484, + "grad_norm": 0.26943835616111755, + "learning_rate": 0.0006, + "loss": 3.787720203399658, + "step": 1931 + }, + { + "epoch": 26.838794233289647, + "grad_norm": 0.24272359907627106, + "learning_rate": 0.0006, + "loss": 3.7973692417144775, + "step": 1932 + }, + { + "epoch": 26.852774137177807, + "grad_norm": 0.20553994178771973, + "learning_rate": 0.0006, + "loss": 3.8241593837738037, + "step": 1933 + }, + { + "epoch": 26.866754041065967, + "grad_norm": 0.21927912533283234, + "learning_rate": 0.0006, + "loss": 3.8608899116516113, + "step": 1934 + }, + { + "epoch": 26.88073394495413, + "grad_norm": 0.22878016531467438, + "learning_rate": 0.0006, + "loss": 3.8341972827911377, + "step": 1935 + }, + { + "epoch": 26.89471384884229, + "grad_norm": 0.2085554301738739, + "learning_rate": 0.0006, + "loss": 3.8261351585388184, + "step": 1936 + }, + { + "epoch": 26.90869375273045, + "grad_norm": 0.21259072422981262, + "learning_rate": 0.0006, + "loss": 3.862056255340576, + "step": 1937 + }, + { + "epoch": 26.92267365661861, + "grad_norm": 0.21354122459888458, + "learning_rate": 0.0006, + "loss": 3.80879545211792, + "step": 1938 + }, + { + "epoch": 26.936653560506773, + "grad_norm": 0.2350253462791443, + "learning_rate": 0.0006, + "loss": 3.817826271057129, + "step": 1939 + }, + { + "epoch": 26.950633464394933, + "grad_norm": 0.23833836615085602, + "learning_rate": 0.0006, + "loss": 3.8220884799957275, + "step": 1940 + }, + { + "epoch": 26.964613368283093, + "grad_norm": 0.2368069440126419, + "learning_rate": 0.0006, + "loss": 3.843264579772949, + "step": 1941 + }, + { + "epoch": 26.978593272171253, + "grad_norm": 0.22663559019565582, + "learning_rate": 0.0006, + "loss": 3.81339430809021, + "step": 1942 + }, + { + "epoch": 26.992573176059416, + "grad_norm": 0.2151402235031128, + "learning_rate": 0.0006, + "loss": 3.8262834548950195, + "step": 1943 + }, + { + "epoch": 27.0, + "grad_norm": 0.24320295453071594, + "learning_rate": 0.0006, + "loss": 3.858567237854004, + "step": 1944 + }, + { + "epoch": 27.0, + "eval_loss": 4.0613322257995605, + "eval_runtime": 44.766, + "eval_samples_per_second": 54.55, + "eval_steps_per_second": 3.418, + "step": 1944 + }, + { + "epoch": 27.01397990388816, + "grad_norm": 0.21188032627105713, + "learning_rate": 0.0006, + "loss": 3.7631278038024902, + "step": 1945 + }, + { + "epoch": 27.027959807776323, + "grad_norm": 0.22298137843608856, + "learning_rate": 0.0006, + "loss": 3.784029245376587, + "step": 1946 + }, + { + "epoch": 27.041939711664483, + "grad_norm": 0.26530158519744873, + "learning_rate": 0.0006, + "loss": 3.795860767364502, + "step": 1947 + }, + { + "epoch": 27.055919615552643, + "grad_norm": 0.24476729333400726, + "learning_rate": 0.0006, + "loss": 3.77512264251709, + "step": 1948 + }, + { + "epoch": 27.069899519440803, + "grad_norm": 0.1934421956539154, + "learning_rate": 0.0006, + "loss": 3.7797446250915527, + "step": 1949 + }, + { + "epoch": 27.083879423328966, + "grad_norm": 0.19777092337608337, + "learning_rate": 0.0006, + "loss": 3.798935890197754, + "step": 1950 + }, + { + "epoch": 27.097859327217126, + "grad_norm": 0.2071693390607834, + "learning_rate": 0.0006, + "loss": 3.763094425201416, + "step": 1951 + }, + { + "epoch": 27.111839231105286, + "grad_norm": 0.18394742906093597, + "learning_rate": 0.0006, + "loss": 3.7892322540283203, + "step": 1952 + }, + { + "epoch": 27.125819134993446, + "grad_norm": 0.17878273129463196, + "learning_rate": 0.0006, + "loss": 3.787968158721924, + "step": 1953 + }, + { + "epoch": 27.13979903888161, + "grad_norm": 0.18792171776294708, + "learning_rate": 0.0006, + "loss": 3.7719640731811523, + "step": 1954 + }, + { + "epoch": 27.15377894276977, + "grad_norm": 0.18718759715557098, + "learning_rate": 0.0006, + "loss": 3.791835308074951, + "step": 1955 + }, + { + "epoch": 27.16775884665793, + "grad_norm": 0.18716055154800415, + "learning_rate": 0.0006, + "loss": 3.7490220069885254, + "step": 1956 + }, + { + "epoch": 27.18173875054609, + "grad_norm": 0.18429182469844818, + "learning_rate": 0.0006, + "loss": 3.8020081520080566, + "step": 1957 + }, + { + "epoch": 27.195718654434252, + "grad_norm": 0.18571704626083374, + "learning_rate": 0.0006, + "loss": 3.8152215480804443, + "step": 1958 + }, + { + "epoch": 27.209698558322412, + "grad_norm": 0.1788843423128128, + "learning_rate": 0.0006, + "loss": 3.8173317909240723, + "step": 1959 + }, + { + "epoch": 27.22367846221057, + "grad_norm": 0.20459426939487457, + "learning_rate": 0.0006, + "loss": 3.7760040760040283, + "step": 1960 + }, + { + "epoch": 27.23765836609873, + "grad_norm": 0.22360935807228088, + "learning_rate": 0.0006, + "loss": 3.8140203952789307, + "step": 1961 + }, + { + "epoch": 27.251638269986895, + "grad_norm": 0.2062767595052719, + "learning_rate": 0.0006, + "loss": 3.792001247406006, + "step": 1962 + }, + { + "epoch": 27.265618173875055, + "grad_norm": 0.20628073811531067, + "learning_rate": 0.0006, + "loss": 3.7873167991638184, + "step": 1963 + }, + { + "epoch": 27.279598077763215, + "grad_norm": 0.19888348877429962, + "learning_rate": 0.0006, + "loss": 3.7903614044189453, + "step": 1964 + }, + { + "epoch": 27.293577981651374, + "grad_norm": 0.22033332288265228, + "learning_rate": 0.0006, + "loss": 3.802497148513794, + "step": 1965 + }, + { + "epoch": 27.307557885539538, + "grad_norm": 0.23476941883563995, + "learning_rate": 0.0006, + "loss": 3.794090986251831, + "step": 1966 + }, + { + "epoch": 27.321537789427698, + "grad_norm": 0.19639968872070312, + "learning_rate": 0.0006, + "loss": 3.831794023513794, + "step": 1967 + }, + { + "epoch": 27.335517693315857, + "grad_norm": 0.18169641494750977, + "learning_rate": 0.0006, + "loss": 3.7687768936157227, + "step": 1968 + }, + { + "epoch": 27.34949759720402, + "grad_norm": 0.17781762778759003, + "learning_rate": 0.0006, + "loss": 3.7868471145629883, + "step": 1969 + }, + { + "epoch": 27.36347750109218, + "grad_norm": 0.18990416824817657, + "learning_rate": 0.0006, + "loss": 3.8340392112731934, + "step": 1970 + }, + { + "epoch": 27.37745740498034, + "grad_norm": 0.2031438797712326, + "learning_rate": 0.0006, + "loss": 3.804513454437256, + "step": 1971 + }, + { + "epoch": 27.3914373088685, + "grad_norm": 0.21233421564102173, + "learning_rate": 0.0006, + "loss": 3.7908449172973633, + "step": 1972 + }, + { + "epoch": 27.405417212756664, + "grad_norm": 0.22480927407741547, + "learning_rate": 0.0006, + "loss": 3.7894086837768555, + "step": 1973 + }, + { + "epoch": 27.419397116644824, + "grad_norm": 0.22713422775268555, + "learning_rate": 0.0006, + "loss": 3.826005458831787, + "step": 1974 + }, + { + "epoch": 27.433377020532983, + "grad_norm": 0.21637366712093353, + "learning_rate": 0.0006, + "loss": 3.8232319355010986, + "step": 1975 + }, + { + "epoch": 27.447356924421143, + "grad_norm": 0.24092449247837067, + "learning_rate": 0.0006, + "loss": 3.813279628753662, + "step": 1976 + }, + { + "epoch": 27.461336828309307, + "grad_norm": 0.21143047511577606, + "learning_rate": 0.0006, + "loss": 3.811586856842041, + "step": 1977 + }, + { + "epoch": 27.475316732197467, + "grad_norm": 0.21049432456493378, + "learning_rate": 0.0006, + "loss": 3.8227009773254395, + "step": 1978 + }, + { + "epoch": 27.489296636085626, + "grad_norm": 0.21853850781917572, + "learning_rate": 0.0006, + "loss": 3.7992515563964844, + "step": 1979 + }, + { + "epoch": 27.503276539973786, + "grad_norm": 0.22405001521110535, + "learning_rate": 0.0006, + "loss": 3.8311715126037598, + "step": 1980 + }, + { + "epoch": 27.51725644386195, + "grad_norm": 0.24085809290409088, + "learning_rate": 0.0006, + "loss": 3.801962375640869, + "step": 1981 + }, + { + "epoch": 27.53123634775011, + "grad_norm": 0.2612341642379761, + "learning_rate": 0.0006, + "loss": 3.7867887020111084, + "step": 1982 + }, + { + "epoch": 27.54521625163827, + "grad_norm": 0.25136062502861023, + "learning_rate": 0.0006, + "loss": 3.8302273750305176, + "step": 1983 + }, + { + "epoch": 27.55919615552643, + "grad_norm": 0.2485426515340805, + "learning_rate": 0.0006, + "loss": 3.770616054534912, + "step": 1984 + }, + { + "epoch": 27.573176059414592, + "grad_norm": 0.28883907198905945, + "learning_rate": 0.0006, + "loss": 3.8152146339416504, + "step": 1985 + }, + { + "epoch": 27.587155963302752, + "grad_norm": 0.28177911043167114, + "learning_rate": 0.0006, + "loss": 3.7966861724853516, + "step": 1986 + }, + { + "epoch": 27.601135867190912, + "grad_norm": 0.2573191523551941, + "learning_rate": 0.0006, + "loss": 3.820788621902466, + "step": 1987 + }, + { + "epoch": 27.615115771079076, + "grad_norm": 0.22225657105445862, + "learning_rate": 0.0006, + "loss": 3.778477191925049, + "step": 1988 + }, + { + "epoch": 27.629095674967235, + "grad_norm": 0.20118530094623566, + "learning_rate": 0.0006, + "loss": 3.8416988849639893, + "step": 1989 + }, + { + "epoch": 27.643075578855395, + "grad_norm": 0.21168658137321472, + "learning_rate": 0.0006, + "loss": 3.798020839691162, + "step": 1990 + }, + { + "epoch": 27.657055482743555, + "grad_norm": 0.2460680454969406, + "learning_rate": 0.0006, + "loss": 3.805917263031006, + "step": 1991 + }, + { + "epoch": 27.67103538663172, + "grad_norm": 0.2700909674167633, + "learning_rate": 0.0006, + "loss": 3.8042726516723633, + "step": 1992 + }, + { + "epoch": 27.68501529051988, + "grad_norm": 0.25814294815063477, + "learning_rate": 0.0006, + "loss": 3.799159049987793, + "step": 1993 + }, + { + "epoch": 27.698995194408038, + "grad_norm": 0.2231985628604889, + "learning_rate": 0.0006, + "loss": 3.778750419616699, + "step": 1994 + }, + { + "epoch": 27.712975098296198, + "grad_norm": 0.20807890594005585, + "learning_rate": 0.0006, + "loss": 3.787919044494629, + "step": 1995 + }, + { + "epoch": 27.72695500218436, + "grad_norm": 0.19537150859832764, + "learning_rate": 0.0006, + "loss": 3.7917299270629883, + "step": 1996 + }, + { + "epoch": 27.74093490607252, + "grad_norm": 0.21057647466659546, + "learning_rate": 0.0006, + "loss": 3.8096866607666016, + "step": 1997 + }, + { + "epoch": 27.75491480996068, + "grad_norm": 0.18983247876167297, + "learning_rate": 0.0006, + "loss": 3.7881717681884766, + "step": 1998 + }, + { + "epoch": 27.76889471384884, + "grad_norm": 0.18701069056987762, + "learning_rate": 0.0006, + "loss": 3.810790538787842, + "step": 1999 + }, + { + "epoch": 27.782874617737004, + "grad_norm": 0.1920134723186493, + "learning_rate": 0.0006, + "loss": 3.8161087036132812, + "step": 2000 + }, + { + "epoch": 27.796854521625164, + "grad_norm": 0.20413947105407715, + "learning_rate": 0.0006, + "loss": 3.790499687194824, + "step": 2001 + }, + { + "epoch": 27.810834425513324, + "grad_norm": 0.1920027732849121, + "learning_rate": 0.0006, + "loss": 3.8194262981414795, + "step": 2002 + }, + { + "epoch": 27.824814329401484, + "grad_norm": 0.18630221486091614, + "learning_rate": 0.0006, + "loss": 3.8267152309417725, + "step": 2003 + }, + { + "epoch": 27.838794233289647, + "grad_norm": 0.1787925660610199, + "learning_rate": 0.0006, + "loss": 3.8147521018981934, + "step": 2004 + }, + { + "epoch": 27.852774137177807, + "grad_norm": 0.19187216460704803, + "learning_rate": 0.0006, + "loss": 3.7751095294952393, + "step": 2005 + }, + { + "epoch": 27.866754041065967, + "grad_norm": 0.18825744092464447, + "learning_rate": 0.0006, + "loss": 3.807401657104492, + "step": 2006 + }, + { + "epoch": 27.88073394495413, + "grad_norm": 0.1879836469888687, + "learning_rate": 0.0006, + "loss": 3.8302509784698486, + "step": 2007 + }, + { + "epoch": 27.89471384884229, + "grad_norm": 0.19136391580104828, + "learning_rate": 0.0006, + "loss": 3.7886242866516113, + "step": 2008 + }, + { + "epoch": 27.90869375273045, + "grad_norm": 0.18774119019508362, + "learning_rate": 0.0006, + "loss": 3.8202977180480957, + "step": 2009 + }, + { + "epoch": 27.92267365661861, + "grad_norm": 0.17794452607631683, + "learning_rate": 0.0006, + "loss": 3.813382387161255, + "step": 2010 + }, + { + "epoch": 27.936653560506773, + "grad_norm": 0.1876268833875656, + "learning_rate": 0.0006, + "loss": 3.810610294342041, + "step": 2011 + }, + { + "epoch": 27.950633464394933, + "grad_norm": 0.19262051582336426, + "learning_rate": 0.0006, + "loss": 3.8113245964050293, + "step": 2012 + }, + { + "epoch": 27.964613368283093, + "grad_norm": 0.19371771812438965, + "learning_rate": 0.0006, + "loss": 3.804790496826172, + "step": 2013 + }, + { + "epoch": 27.978593272171253, + "grad_norm": 0.1922861784696579, + "learning_rate": 0.0006, + "loss": 3.8278889656066895, + "step": 2014 + }, + { + "epoch": 27.992573176059416, + "grad_norm": 0.19748565554618835, + "learning_rate": 0.0006, + "loss": 3.8127200603485107, + "step": 2015 + }, + { + "epoch": 28.0, + "grad_norm": 0.25027501583099365, + "learning_rate": 0.0006, + "loss": 3.7899413108825684, + "step": 2016 + }, + { + "epoch": 28.0, + "eval_loss": 4.047704219818115, + "eval_runtime": 44.293, + "eval_samples_per_second": 55.133, + "eval_steps_per_second": 3.454, + "step": 2016 + }, + { + "epoch": 28.01397990388816, + "grad_norm": 0.25172367691993713, + "learning_rate": 0.0006, + "loss": 3.75449538230896, + "step": 2017 + }, + { + "epoch": 28.027959807776323, + "grad_norm": 0.23494598269462585, + "learning_rate": 0.0006, + "loss": 3.7609024047851562, + "step": 2018 + }, + { + "epoch": 28.041939711664483, + "grad_norm": 0.22459708154201508, + "learning_rate": 0.0006, + "loss": 3.7843551635742188, + "step": 2019 + }, + { + "epoch": 28.055919615552643, + "grad_norm": 0.2038632035255432, + "learning_rate": 0.0006, + "loss": 3.7818198204040527, + "step": 2020 + }, + { + "epoch": 28.069899519440803, + "grad_norm": 0.22050008177757263, + "learning_rate": 0.0006, + "loss": 3.787442684173584, + "step": 2021 + }, + { + "epoch": 28.083879423328966, + "grad_norm": 0.24645832180976868, + "learning_rate": 0.0006, + "loss": 3.768704414367676, + "step": 2022 + }, + { + "epoch": 28.097859327217126, + "grad_norm": 0.2440163493156433, + "learning_rate": 0.0006, + "loss": 3.7783756256103516, + "step": 2023 + }, + { + "epoch": 28.111839231105286, + "grad_norm": 0.2482181042432785, + "learning_rate": 0.0006, + "loss": 3.786881923675537, + "step": 2024 + }, + { + "epoch": 28.125819134993446, + "grad_norm": 0.23494760692119598, + "learning_rate": 0.0006, + "loss": 3.790039300918579, + "step": 2025 + }, + { + "epoch": 28.13979903888161, + "grad_norm": 0.2172182947397232, + "learning_rate": 0.0006, + "loss": 3.818756580352783, + "step": 2026 + }, + { + "epoch": 28.15377894276977, + "grad_norm": 0.2103179395198822, + "learning_rate": 0.0006, + "loss": 3.7768917083740234, + "step": 2027 + }, + { + "epoch": 28.16775884665793, + "grad_norm": 0.22322365641593933, + "learning_rate": 0.0006, + "loss": 3.8223648071289062, + "step": 2028 + }, + { + "epoch": 28.18173875054609, + "grad_norm": 0.24199382960796356, + "learning_rate": 0.0006, + "loss": 3.781357765197754, + "step": 2029 + }, + { + "epoch": 28.195718654434252, + "grad_norm": 0.2500663101673126, + "learning_rate": 0.0006, + "loss": 3.8061184883117676, + "step": 2030 + }, + { + "epoch": 28.209698558322412, + "grad_norm": 0.2439824491739273, + "learning_rate": 0.0006, + "loss": 3.7886464595794678, + "step": 2031 + }, + { + "epoch": 28.22367846221057, + "grad_norm": 0.24563106894493103, + "learning_rate": 0.0006, + "loss": 3.7901692390441895, + "step": 2032 + }, + { + "epoch": 28.23765836609873, + "grad_norm": 0.2287624627351761, + "learning_rate": 0.0006, + "loss": 3.789931058883667, + "step": 2033 + }, + { + "epoch": 28.251638269986895, + "grad_norm": 0.2231188714504242, + "learning_rate": 0.0006, + "loss": 3.7879133224487305, + "step": 2034 + }, + { + "epoch": 28.265618173875055, + "grad_norm": 0.23090387880802155, + "learning_rate": 0.0006, + "loss": 3.7826130390167236, + "step": 2035 + }, + { + "epoch": 28.279598077763215, + "grad_norm": 0.216018944978714, + "learning_rate": 0.0006, + "loss": 3.7764949798583984, + "step": 2036 + }, + { + "epoch": 28.293577981651374, + "grad_norm": 0.22649185359477997, + "learning_rate": 0.0006, + "loss": 3.7911291122436523, + "step": 2037 + }, + { + "epoch": 28.307557885539538, + "grad_norm": 0.2350836843252182, + "learning_rate": 0.0006, + "loss": 3.7668724060058594, + "step": 2038 + }, + { + "epoch": 28.321537789427698, + "grad_norm": 0.23206329345703125, + "learning_rate": 0.0006, + "loss": 3.782243251800537, + "step": 2039 + }, + { + "epoch": 28.335517693315857, + "grad_norm": 0.21896308660507202, + "learning_rate": 0.0006, + "loss": 3.7605721950531006, + "step": 2040 + }, + { + "epoch": 28.34949759720402, + "grad_norm": 0.20381200313568115, + "learning_rate": 0.0006, + "loss": 3.743945598602295, + "step": 2041 + }, + { + "epoch": 28.36347750109218, + "grad_norm": 0.19196000695228577, + "learning_rate": 0.0006, + "loss": 3.808107852935791, + "step": 2042 + }, + { + "epoch": 28.37745740498034, + "grad_norm": 0.19517889618873596, + "learning_rate": 0.0006, + "loss": 3.7906723022460938, + "step": 2043 + }, + { + "epoch": 28.3914373088685, + "grad_norm": 0.20455795526504517, + "learning_rate": 0.0006, + "loss": 3.7421011924743652, + "step": 2044 + }, + { + "epoch": 28.405417212756664, + "grad_norm": 0.1867467314004898, + "learning_rate": 0.0006, + "loss": 3.775509834289551, + "step": 2045 + }, + { + "epoch": 28.419397116644824, + "grad_norm": 0.2029324471950531, + "learning_rate": 0.0006, + "loss": 3.771353244781494, + "step": 2046 + }, + { + "epoch": 28.433377020532983, + "grad_norm": 0.19967497885227203, + "learning_rate": 0.0006, + "loss": 3.7821149826049805, + "step": 2047 + }, + { + "epoch": 28.447356924421143, + "grad_norm": 0.19440607726573944, + "learning_rate": 0.0006, + "loss": 3.8114213943481445, + "step": 2048 + }, + { + "epoch": 28.461336828309307, + "grad_norm": 0.19679802656173706, + "learning_rate": 0.0006, + "loss": 3.7699532508850098, + "step": 2049 + }, + { + "epoch": 28.475316732197467, + "grad_norm": 0.1939811110496521, + "learning_rate": 0.0006, + "loss": 3.7673027515411377, + "step": 2050 + }, + { + "epoch": 28.489296636085626, + "grad_norm": 0.18712401390075684, + "learning_rate": 0.0006, + "loss": 3.816699266433716, + "step": 2051 + }, + { + "epoch": 28.503276539973786, + "grad_norm": 0.202956885099411, + "learning_rate": 0.0006, + "loss": 3.7746071815490723, + "step": 2052 + }, + { + "epoch": 28.51725644386195, + "grad_norm": 0.19098156690597534, + "learning_rate": 0.0006, + "loss": 3.8065481185913086, + "step": 2053 + }, + { + "epoch": 28.53123634775011, + "grad_norm": 0.21144428849220276, + "learning_rate": 0.0006, + "loss": 3.7890982627868652, + "step": 2054 + }, + { + "epoch": 28.54521625163827, + "grad_norm": 0.21882614493370056, + "learning_rate": 0.0006, + "loss": 3.8168821334838867, + "step": 2055 + }, + { + "epoch": 28.55919615552643, + "grad_norm": 0.22200101613998413, + "learning_rate": 0.0006, + "loss": 3.804454803466797, + "step": 2056 + }, + { + "epoch": 28.573176059414592, + "grad_norm": 0.22404780983924866, + "learning_rate": 0.0006, + "loss": 3.808764934539795, + "step": 2057 + }, + { + "epoch": 28.587155963302752, + "grad_norm": 0.22770099341869354, + "learning_rate": 0.0006, + "loss": 3.74835467338562, + "step": 2058 + }, + { + "epoch": 28.601135867190912, + "grad_norm": 0.23214420676231384, + "learning_rate": 0.0006, + "loss": 3.7480111122131348, + "step": 2059 + }, + { + "epoch": 28.615115771079076, + "grad_norm": 0.21786348521709442, + "learning_rate": 0.0006, + "loss": 3.8095176219940186, + "step": 2060 + }, + { + "epoch": 28.629095674967235, + "grad_norm": 0.21004106104373932, + "learning_rate": 0.0006, + "loss": 3.792745590209961, + "step": 2061 + }, + { + "epoch": 28.643075578855395, + "grad_norm": 0.21076138317584991, + "learning_rate": 0.0006, + "loss": 3.7878952026367188, + "step": 2062 + }, + { + "epoch": 28.657055482743555, + "grad_norm": 0.2184346616268158, + "learning_rate": 0.0006, + "loss": 3.757188320159912, + "step": 2063 + }, + { + "epoch": 28.67103538663172, + "grad_norm": 0.22100569307804108, + "learning_rate": 0.0006, + "loss": 3.8131773471832275, + "step": 2064 + }, + { + "epoch": 28.68501529051988, + "grad_norm": 0.23257511854171753, + "learning_rate": 0.0006, + "loss": 3.793826103210449, + "step": 2065 + }, + { + "epoch": 28.698995194408038, + "grad_norm": 0.22312869131565094, + "learning_rate": 0.0006, + "loss": 3.782083749771118, + "step": 2066 + }, + { + "epoch": 28.712975098296198, + "grad_norm": 0.2318405956029892, + "learning_rate": 0.0006, + "loss": 3.7814879417419434, + "step": 2067 + }, + { + "epoch": 28.72695500218436, + "grad_norm": 0.23719379305839539, + "learning_rate": 0.0006, + "loss": 3.8320484161376953, + "step": 2068 + }, + { + "epoch": 28.74093490607252, + "grad_norm": 0.23100806772708893, + "learning_rate": 0.0006, + "loss": 3.7921783924102783, + "step": 2069 + }, + { + "epoch": 28.75491480996068, + "grad_norm": 0.21540866792201996, + "learning_rate": 0.0006, + "loss": 3.8325204849243164, + "step": 2070 + }, + { + "epoch": 28.76889471384884, + "grad_norm": 0.2698654532432556, + "learning_rate": 0.0006, + "loss": 3.7965879440307617, + "step": 2071 + }, + { + "epoch": 28.782874617737004, + "grad_norm": 0.3101225793361664, + "learning_rate": 0.0006, + "loss": 3.78842830657959, + "step": 2072 + }, + { + "epoch": 28.796854521625164, + "grad_norm": 0.2607600688934326, + "learning_rate": 0.0006, + "loss": 3.770064115524292, + "step": 2073 + }, + { + "epoch": 28.810834425513324, + "grad_norm": 0.20558302104473114, + "learning_rate": 0.0006, + "loss": 3.7448501586914062, + "step": 2074 + }, + { + "epoch": 28.824814329401484, + "grad_norm": 0.20030120015144348, + "learning_rate": 0.0006, + "loss": 3.7689406871795654, + "step": 2075 + }, + { + "epoch": 28.838794233289647, + "grad_norm": 0.21781118214130402, + "learning_rate": 0.0006, + "loss": 3.7682244777679443, + "step": 2076 + }, + { + "epoch": 28.852774137177807, + "grad_norm": 0.23543044924736023, + "learning_rate": 0.0006, + "loss": 3.8094193935394287, + "step": 2077 + }, + { + "epoch": 28.866754041065967, + "grad_norm": 0.21634669601917267, + "learning_rate": 0.0006, + "loss": 3.792099952697754, + "step": 2078 + }, + { + "epoch": 28.88073394495413, + "grad_norm": 0.2251661866903305, + "learning_rate": 0.0006, + "loss": 3.7849509716033936, + "step": 2079 + }, + { + "epoch": 28.89471384884229, + "grad_norm": 0.23872914910316467, + "learning_rate": 0.0006, + "loss": 3.8391621112823486, + "step": 2080 + }, + { + "epoch": 28.90869375273045, + "grad_norm": 0.22259248793125153, + "learning_rate": 0.0006, + "loss": 3.8272876739501953, + "step": 2081 + }, + { + "epoch": 28.92267365661861, + "grad_norm": 0.22052262723445892, + "learning_rate": 0.0006, + "loss": 3.7986836433410645, + "step": 2082 + }, + { + "epoch": 28.936653560506773, + "grad_norm": 0.24487647414207458, + "learning_rate": 0.0006, + "loss": 3.798004150390625, + "step": 2083 + }, + { + "epoch": 28.950633464394933, + "grad_norm": 0.22992238402366638, + "learning_rate": 0.0006, + "loss": 3.788522720336914, + "step": 2084 + }, + { + "epoch": 28.964613368283093, + "grad_norm": 0.22521597146987915, + "learning_rate": 0.0006, + "loss": 3.767259120941162, + "step": 2085 + }, + { + "epoch": 28.978593272171253, + "grad_norm": 0.2201499044895172, + "learning_rate": 0.0006, + "loss": 3.7850542068481445, + "step": 2086 + }, + { + "epoch": 28.992573176059416, + "grad_norm": 0.22226814925670624, + "learning_rate": 0.0006, + "loss": 3.8013534545898438, + "step": 2087 + }, + { + "epoch": 29.0, + "grad_norm": 0.27624809741973877, + "learning_rate": 0.0006, + "loss": 3.762004852294922, + "step": 2088 + }, + { + "epoch": 29.0, + "eval_loss": 4.034304618835449, + "eval_runtime": 44.6573, + "eval_samples_per_second": 54.683, + "eval_steps_per_second": 3.426, + "step": 2088 + }, + { + "epoch": 29.01397990388816, + "grad_norm": 0.2550967037677765, + "learning_rate": 0.0006, + "loss": 3.7724227905273438, + "step": 2089 + }, + { + "epoch": 29.027959807776323, + "grad_norm": 0.26730602979660034, + "learning_rate": 0.0006, + "loss": 3.7728946208953857, + "step": 2090 + }, + { + "epoch": 29.041939711664483, + "grad_norm": 0.2394205927848816, + "learning_rate": 0.0006, + "loss": 3.7737584114074707, + "step": 2091 + }, + { + "epoch": 29.055919615552643, + "grad_norm": 0.22488200664520264, + "learning_rate": 0.0006, + "loss": 3.761014938354492, + "step": 2092 + }, + { + "epoch": 29.069899519440803, + "grad_norm": 0.2389903962612152, + "learning_rate": 0.0006, + "loss": 3.766557216644287, + "step": 2093 + }, + { + "epoch": 29.083879423328966, + "grad_norm": 0.234152153134346, + "learning_rate": 0.0006, + "loss": 3.7447147369384766, + "step": 2094 + }, + { + "epoch": 29.097859327217126, + "grad_norm": 0.23123252391815186, + "learning_rate": 0.0006, + "loss": 3.77197527885437, + "step": 2095 + }, + { + "epoch": 29.111839231105286, + "grad_norm": 0.23263143002986908, + "learning_rate": 0.0006, + "loss": 3.7390198707580566, + "step": 2096 + }, + { + "epoch": 29.125819134993446, + "grad_norm": 0.23235775530338287, + "learning_rate": 0.0006, + "loss": 3.7675256729125977, + "step": 2097 + }, + { + "epoch": 29.13979903888161, + "grad_norm": 0.2208816260099411, + "learning_rate": 0.0006, + "loss": 3.7588067054748535, + "step": 2098 + }, + { + "epoch": 29.15377894276977, + "grad_norm": 0.21216371655464172, + "learning_rate": 0.0006, + "loss": 3.7370502948760986, + "step": 2099 + }, + { + "epoch": 29.16775884665793, + "grad_norm": 0.2210543155670166, + "learning_rate": 0.0006, + "loss": 3.767308473587036, + "step": 2100 + }, + { + "epoch": 29.18173875054609, + "grad_norm": 0.21628431975841522, + "learning_rate": 0.0006, + "loss": 3.7298972606658936, + "step": 2101 + }, + { + "epoch": 29.195718654434252, + "grad_norm": 0.21493588387966156, + "learning_rate": 0.0006, + "loss": 3.7806448936462402, + "step": 2102 + }, + { + "epoch": 29.209698558322412, + "grad_norm": 0.25978055596351624, + "learning_rate": 0.0006, + "loss": 3.7716293334960938, + "step": 2103 + }, + { + "epoch": 29.22367846221057, + "grad_norm": 0.2744791507720947, + "learning_rate": 0.0006, + "loss": 3.76897931098938, + "step": 2104 + }, + { + "epoch": 29.23765836609873, + "grad_norm": 0.22959400713443756, + "learning_rate": 0.0006, + "loss": 3.7545714378356934, + "step": 2105 + }, + { + "epoch": 29.251638269986895, + "grad_norm": 0.20369231700897217, + "learning_rate": 0.0006, + "loss": 3.7944722175598145, + "step": 2106 + }, + { + "epoch": 29.265618173875055, + "grad_norm": 0.21663758158683777, + "learning_rate": 0.0006, + "loss": 3.7564756870269775, + "step": 2107 + }, + { + "epoch": 29.279598077763215, + "grad_norm": 0.21862861514091492, + "learning_rate": 0.0006, + "loss": 3.7722725868225098, + "step": 2108 + }, + { + "epoch": 29.293577981651374, + "grad_norm": 0.2044878453016281, + "learning_rate": 0.0006, + "loss": 3.7471303939819336, + "step": 2109 + }, + { + "epoch": 29.307557885539538, + "grad_norm": 0.23015929758548737, + "learning_rate": 0.0006, + "loss": 3.7584962844848633, + "step": 2110 + }, + { + "epoch": 29.321537789427698, + "grad_norm": 0.22548329830169678, + "learning_rate": 0.0006, + "loss": 3.795933723449707, + "step": 2111 + }, + { + "epoch": 29.335517693315857, + "grad_norm": 0.2000468522310257, + "learning_rate": 0.0006, + "loss": 3.766310691833496, + "step": 2112 + }, + { + "epoch": 29.34949759720402, + "grad_norm": 0.19711551070213318, + "learning_rate": 0.0006, + "loss": 3.7296276092529297, + "step": 2113 + }, + { + "epoch": 29.36347750109218, + "grad_norm": 0.18838997185230255, + "learning_rate": 0.0006, + "loss": 3.7685282230377197, + "step": 2114 + }, + { + "epoch": 29.37745740498034, + "grad_norm": 0.1897876113653183, + "learning_rate": 0.0006, + "loss": 3.7280936241149902, + "step": 2115 + }, + { + "epoch": 29.3914373088685, + "grad_norm": 0.21697933971881866, + "learning_rate": 0.0006, + "loss": 3.7991929054260254, + "step": 2116 + }, + { + "epoch": 29.405417212756664, + "grad_norm": 0.23445849120616913, + "learning_rate": 0.0006, + "loss": 3.7857418060302734, + "step": 2117 + }, + { + "epoch": 29.419397116644824, + "grad_norm": 0.24155527353286743, + "learning_rate": 0.0006, + "loss": 3.7897872924804688, + "step": 2118 + }, + { + "epoch": 29.433377020532983, + "grad_norm": 0.2610265016555786, + "learning_rate": 0.0006, + "loss": 3.7867324352264404, + "step": 2119 + }, + { + "epoch": 29.447356924421143, + "grad_norm": 0.2809581160545349, + "learning_rate": 0.0006, + "loss": 3.783799648284912, + "step": 2120 + }, + { + "epoch": 29.461336828309307, + "grad_norm": 0.2621572017669678, + "learning_rate": 0.0006, + "loss": 3.7778549194335938, + "step": 2121 + }, + { + "epoch": 29.475316732197467, + "grad_norm": 0.26002970337867737, + "learning_rate": 0.0006, + "loss": 3.787945508956909, + "step": 2122 + }, + { + "epoch": 29.489296636085626, + "grad_norm": 0.24866686761379242, + "learning_rate": 0.0006, + "loss": 3.7406349182128906, + "step": 2123 + }, + { + "epoch": 29.503276539973786, + "grad_norm": 0.25588324666023254, + "learning_rate": 0.0006, + "loss": 3.785625457763672, + "step": 2124 + }, + { + "epoch": 29.51725644386195, + "grad_norm": 0.24724243581295013, + "learning_rate": 0.0006, + "loss": 3.7581701278686523, + "step": 2125 + }, + { + "epoch": 29.53123634775011, + "grad_norm": 0.23544734716415405, + "learning_rate": 0.0006, + "loss": 3.8163957595825195, + "step": 2126 + }, + { + "epoch": 29.54521625163827, + "grad_norm": 0.2108801156282425, + "learning_rate": 0.0006, + "loss": 3.7881739139556885, + "step": 2127 + }, + { + "epoch": 29.55919615552643, + "grad_norm": 0.20459668338298798, + "learning_rate": 0.0006, + "loss": 3.7641284465789795, + "step": 2128 + }, + { + "epoch": 29.573176059414592, + "grad_norm": 0.24020728468894958, + "learning_rate": 0.0006, + "loss": 3.7748730182647705, + "step": 2129 + }, + { + "epoch": 29.587155963302752, + "grad_norm": 0.256273478269577, + "learning_rate": 0.0006, + "loss": 3.8076486587524414, + "step": 2130 + }, + { + "epoch": 29.601135867190912, + "grad_norm": 0.23295973241329193, + "learning_rate": 0.0006, + "loss": 3.7687063217163086, + "step": 2131 + }, + { + "epoch": 29.615115771079076, + "grad_norm": 0.21554847061634064, + "learning_rate": 0.0006, + "loss": 3.781867027282715, + "step": 2132 + }, + { + "epoch": 29.629095674967235, + "grad_norm": 0.20645774900913239, + "learning_rate": 0.0006, + "loss": 3.7813425064086914, + "step": 2133 + }, + { + "epoch": 29.643075578855395, + "grad_norm": 0.2018265724182129, + "learning_rate": 0.0006, + "loss": 3.772895574569702, + "step": 2134 + }, + { + "epoch": 29.657055482743555, + "grad_norm": 0.20170100033283234, + "learning_rate": 0.0006, + "loss": 3.7819175720214844, + "step": 2135 + }, + { + "epoch": 29.67103538663172, + "grad_norm": 0.22640688717365265, + "learning_rate": 0.0006, + "loss": 3.7999017238616943, + "step": 2136 + }, + { + "epoch": 29.68501529051988, + "grad_norm": 0.23747675120830536, + "learning_rate": 0.0006, + "loss": 3.804999828338623, + "step": 2137 + }, + { + "epoch": 29.698995194408038, + "grad_norm": 0.20005857944488525, + "learning_rate": 0.0006, + "loss": 3.7815160751342773, + "step": 2138 + }, + { + "epoch": 29.712975098296198, + "grad_norm": 0.17901667952537537, + "learning_rate": 0.0006, + "loss": 3.7898688316345215, + "step": 2139 + }, + { + "epoch": 29.72695500218436, + "grad_norm": 0.1890905797481537, + "learning_rate": 0.0006, + "loss": 3.8001184463500977, + "step": 2140 + }, + { + "epoch": 29.74093490607252, + "grad_norm": 0.19565847516059875, + "learning_rate": 0.0006, + "loss": 3.7522482872009277, + "step": 2141 + }, + { + "epoch": 29.75491480996068, + "grad_norm": 0.19429196417331696, + "learning_rate": 0.0006, + "loss": 3.768972158432007, + "step": 2142 + }, + { + "epoch": 29.76889471384884, + "grad_norm": 0.23846636712551117, + "learning_rate": 0.0006, + "loss": 3.765216112136841, + "step": 2143 + }, + { + "epoch": 29.782874617737004, + "grad_norm": 0.23820780217647552, + "learning_rate": 0.0006, + "loss": 3.8027703762054443, + "step": 2144 + }, + { + "epoch": 29.796854521625164, + "grad_norm": 0.21104726195335388, + "learning_rate": 0.0006, + "loss": 3.7682833671569824, + "step": 2145 + }, + { + "epoch": 29.810834425513324, + "grad_norm": 0.1911051720380783, + "learning_rate": 0.0006, + "loss": 3.781782627105713, + "step": 2146 + }, + { + "epoch": 29.824814329401484, + "grad_norm": 0.18881288170814514, + "learning_rate": 0.0006, + "loss": 3.7703428268432617, + "step": 2147 + }, + { + "epoch": 29.838794233289647, + "grad_norm": 0.18292994797229767, + "learning_rate": 0.0006, + "loss": 3.769176721572876, + "step": 2148 + }, + { + "epoch": 29.852774137177807, + "grad_norm": 0.1777714639902115, + "learning_rate": 0.0006, + "loss": 3.7488298416137695, + "step": 2149 + }, + { + "epoch": 29.866754041065967, + "grad_norm": 0.2037898749113083, + "learning_rate": 0.0006, + "loss": 3.804396390914917, + "step": 2150 + }, + { + "epoch": 29.88073394495413, + "grad_norm": 0.2121828943490982, + "learning_rate": 0.0006, + "loss": 3.75870943069458, + "step": 2151 + }, + { + "epoch": 29.89471384884229, + "grad_norm": 0.23231184482574463, + "learning_rate": 0.0006, + "loss": 3.80178165435791, + "step": 2152 + }, + { + "epoch": 29.90869375273045, + "grad_norm": 0.24045611917972565, + "learning_rate": 0.0006, + "loss": 3.7690834999084473, + "step": 2153 + }, + { + "epoch": 29.92267365661861, + "grad_norm": 0.19830496609210968, + "learning_rate": 0.0006, + "loss": 3.764401912689209, + "step": 2154 + }, + { + "epoch": 29.936653560506773, + "grad_norm": 0.17704227566719055, + "learning_rate": 0.0006, + "loss": 3.7634594440460205, + "step": 2155 + }, + { + "epoch": 29.950633464394933, + "grad_norm": 0.17783164978027344, + "learning_rate": 0.0006, + "loss": 3.7856998443603516, + "step": 2156 + }, + { + "epoch": 29.964613368283093, + "grad_norm": 0.19684971868991852, + "learning_rate": 0.0006, + "loss": 3.805774211883545, + "step": 2157 + }, + { + "epoch": 29.978593272171253, + "grad_norm": 0.21662312746047974, + "learning_rate": 0.0006, + "loss": 3.757896661758423, + "step": 2158 + }, + { + "epoch": 29.992573176059416, + "grad_norm": 0.22000661492347717, + "learning_rate": 0.0006, + "loss": 3.7747678756713867, + "step": 2159 + }, + { + "epoch": 30.0, + "grad_norm": 0.21501901745796204, + "learning_rate": 0.0006, + "loss": 3.785585880279541, + "step": 2160 + }, + { + "epoch": 30.0, + "eval_loss": 4.034003734588623, + "eval_runtime": 44.9097, + "eval_samples_per_second": 54.376, + "eval_steps_per_second": 3.407, + "step": 2160 + }, + { + "epoch": 30.01397990388816, + "grad_norm": 0.19710904359817505, + "learning_rate": 0.0006, + "loss": 3.756235122680664, + "step": 2161 + }, + { + "epoch": 30.027959807776323, + "grad_norm": 0.19829736649990082, + "learning_rate": 0.0006, + "loss": 3.734067916870117, + "step": 2162 + }, + { + "epoch": 30.041939711664483, + "grad_norm": 0.21622520685195923, + "learning_rate": 0.0006, + "loss": 3.7329437732696533, + "step": 2163 + }, + { + "epoch": 30.055919615552643, + "grad_norm": 0.22544652223587036, + "learning_rate": 0.0006, + "loss": 3.748716354370117, + "step": 2164 + }, + { + "epoch": 30.069899519440803, + "grad_norm": 0.21098364889621735, + "learning_rate": 0.0006, + "loss": 3.779047727584839, + "step": 2165 + }, + { + "epoch": 30.083879423328966, + "grad_norm": 0.21309930086135864, + "learning_rate": 0.0006, + "loss": 3.7690274715423584, + "step": 2166 + }, + { + "epoch": 30.097859327217126, + "grad_norm": 0.23025690019130707, + "learning_rate": 0.0006, + "loss": 3.7500953674316406, + "step": 2167 + }, + { + "epoch": 30.111839231105286, + "grad_norm": 0.25107935070991516, + "learning_rate": 0.0006, + "loss": 3.745492458343506, + "step": 2168 + }, + { + "epoch": 30.125819134993446, + "grad_norm": 0.29873573780059814, + "learning_rate": 0.0006, + "loss": 3.759793758392334, + "step": 2169 + }, + { + "epoch": 30.13979903888161, + "grad_norm": 0.2810286283493042, + "learning_rate": 0.0006, + "loss": 3.772998809814453, + "step": 2170 + }, + { + "epoch": 30.15377894276977, + "grad_norm": 0.2102176398038864, + "learning_rate": 0.0006, + "loss": 3.740170955657959, + "step": 2171 + }, + { + "epoch": 30.16775884665793, + "grad_norm": 0.24143251776695251, + "learning_rate": 0.0006, + "loss": 3.7317001819610596, + "step": 2172 + }, + { + "epoch": 30.18173875054609, + "grad_norm": 0.2643064558506012, + "learning_rate": 0.0006, + "loss": 3.773263692855835, + "step": 2173 + }, + { + "epoch": 30.195718654434252, + "grad_norm": 0.27571243047714233, + "learning_rate": 0.0006, + "loss": 3.7619900703430176, + "step": 2174 + }, + { + "epoch": 30.209698558322412, + "grad_norm": 0.25359588861465454, + "learning_rate": 0.0006, + "loss": 3.7608513832092285, + "step": 2175 + }, + { + "epoch": 30.22367846221057, + "grad_norm": 0.2500684857368469, + "learning_rate": 0.0006, + "loss": 3.75856614112854, + "step": 2176 + }, + { + "epoch": 30.23765836609873, + "grad_norm": 0.23100309073925018, + "learning_rate": 0.0006, + "loss": 3.749786853790283, + "step": 2177 + }, + { + "epoch": 30.251638269986895, + "grad_norm": 0.24384984374046326, + "learning_rate": 0.0006, + "loss": 3.762244701385498, + "step": 2178 + }, + { + "epoch": 30.265618173875055, + "grad_norm": 0.24593998491764069, + "learning_rate": 0.0006, + "loss": 3.754594326019287, + "step": 2179 + }, + { + "epoch": 30.279598077763215, + "grad_norm": 0.2529342770576477, + "learning_rate": 0.0006, + "loss": 3.7641053199768066, + "step": 2180 + }, + { + "epoch": 30.293577981651374, + "grad_norm": 0.25954094529151917, + "learning_rate": 0.0006, + "loss": 3.810336112976074, + "step": 2181 + }, + { + "epoch": 30.307557885539538, + "grad_norm": 0.2249951958656311, + "learning_rate": 0.0006, + "loss": 3.7542617321014404, + "step": 2182 + }, + { + "epoch": 30.321537789427698, + "grad_norm": 0.19795064628124237, + "learning_rate": 0.0006, + "loss": 3.7734434604644775, + "step": 2183 + }, + { + "epoch": 30.335517693315857, + "grad_norm": 0.20744608342647552, + "learning_rate": 0.0006, + "loss": 3.7816128730773926, + "step": 2184 + }, + { + "epoch": 30.34949759720402, + "grad_norm": 0.19988055527210236, + "learning_rate": 0.0006, + "loss": 3.7631936073303223, + "step": 2185 + }, + { + "epoch": 30.36347750109218, + "grad_norm": 0.22226445376873016, + "learning_rate": 0.0006, + "loss": 3.762910842895508, + "step": 2186 + }, + { + "epoch": 30.37745740498034, + "grad_norm": 0.21986067295074463, + "learning_rate": 0.0006, + "loss": 3.733893394470215, + "step": 2187 + }, + { + "epoch": 30.3914373088685, + "grad_norm": 0.2170228660106659, + "learning_rate": 0.0006, + "loss": 3.726433515548706, + "step": 2188 + }, + { + "epoch": 30.405417212756664, + "grad_norm": 0.2179550975561142, + "learning_rate": 0.0006, + "loss": 3.792311668395996, + "step": 2189 + }, + { + "epoch": 30.419397116644824, + "grad_norm": 0.208037331700325, + "learning_rate": 0.0006, + "loss": 3.774639129638672, + "step": 2190 + }, + { + "epoch": 30.433377020532983, + "grad_norm": 0.20745441317558289, + "learning_rate": 0.0006, + "loss": 3.776130199432373, + "step": 2191 + }, + { + "epoch": 30.447356924421143, + "grad_norm": 0.1988024264574051, + "learning_rate": 0.0006, + "loss": 3.7453784942626953, + "step": 2192 + }, + { + "epoch": 30.461336828309307, + "grad_norm": 0.194968581199646, + "learning_rate": 0.0006, + "loss": 3.764653205871582, + "step": 2193 + }, + { + "epoch": 30.475316732197467, + "grad_norm": 0.20658300817012787, + "learning_rate": 0.0006, + "loss": 3.796513080596924, + "step": 2194 + }, + { + "epoch": 30.489296636085626, + "grad_norm": 0.2123410701751709, + "learning_rate": 0.0006, + "loss": 3.7630836963653564, + "step": 2195 + }, + { + "epoch": 30.503276539973786, + "grad_norm": 0.20894059538841248, + "learning_rate": 0.0006, + "loss": 3.7265470027923584, + "step": 2196 + }, + { + "epoch": 30.51725644386195, + "grad_norm": 0.2016828954219818, + "learning_rate": 0.0006, + "loss": 3.8083386421203613, + "step": 2197 + }, + { + "epoch": 30.53123634775011, + "grad_norm": 0.19584205746650696, + "learning_rate": 0.0006, + "loss": 3.7492105960845947, + "step": 2198 + }, + { + "epoch": 30.54521625163827, + "grad_norm": 0.18635272979736328, + "learning_rate": 0.0006, + "loss": 3.711009979248047, + "step": 2199 + }, + { + "epoch": 30.55919615552643, + "grad_norm": 0.1920594871044159, + "learning_rate": 0.0006, + "loss": 3.760801315307617, + "step": 2200 + }, + { + "epoch": 30.573176059414592, + "grad_norm": 0.1978331208229065, + "learning_rate": 0.0006, + "loss": 3.780529022216797, + "step": 2201 + }, + { + "epoch": 30.587155963302752, + "grad_norm": 0.20076943933963776, + "learning_rate": 0.0006, + "loss": 3.7767038345336914, + "step": 2202 + }, + { + "epoch": 30.601135867190912, + "grad_norm": 0.2067444622516632, + "learning_rate": 0.0006, + "loss": 3.7607920169830322, + "step": 2203 + }, + { + "epoch": 30.615115771079076, + "grad_norm": 0.2081940472126007, + "learning_rate": 0.0006, + "loss": 3.741936206817627, + "step": 2204 + }, + { + "epoch": 30.629095674967235, + "grad_norm": 0.21212869882583618, + "learning_rate": 0.0006, + "loss": 3.7597827911376953, + "step": 2205 + }, + { + "epoch": 30.643075578855395, + "grad_norm": 0.21539026498794556, + "learning_rate": 0.0006, + "loss": 3.764646053314209, + "step": 2206 + }, + { + "epoch": 30.657055482743555, + "grad_norm": 0.19788387417793274, + "learning_rate": 0.0006, + "loss": 3.7535128593444824, + "step": 2207 + }, + { + "epoch": 30.67103538663172, + "grad_norm": 0.20757688581943512, + "learning_rate": 0.0006, + "loss": 3.7414169311523438, + "step": 2208 + }, + { + "epoch": 30.68501529051988, + "grad_norm": 0.199361652135849, + "learning_rate": 0.0006, + "loss": 3.7578506469726562, + "step": 2209 + }, + { + "epoch": 30.698995194408038, + "grad_norm": 0.1909894198179245, + "learning_rate": 0.0006, + "loss": 3.736250400543213, + "step": 2210 + }, + { + "epoch": 30.712975098296198, + "grad_norm": 0.19766664505004883, + "learning_rate": 0.0006, + "loss": 3.7435379028320312, + "step": 2211 + }, + { + "epoch": 30.72695500218436, + "grad_norm": 0.21857766807079315, + "learning_rate": 0.0006, + "loss": 3.7478690147399902, + "step": 2212 + }, + { + "epoch": 30.74093490607252, + "grad_norm": 0.22385898232460022, + "learning_rate": 0.0006, + "loss": 3.7522530555725098, + "step": 2213 + }, + { + "epoch": 30.75491480996068, + "grad_norm": 0.2329241931438446, + "learning_rate": 0.0006, + "loss": 3.7568247318267822, + "step": 2214 + }, + { + "epoch": 30.76889471384884, + "grad_norm": 0.2218400090932846, + "learning_rate": 0.0006, + "loss": 3.7662744522094727, + "step": 2215 + }, + { + "epoch": 30.782874617737004, + "grad_norm": 0.21350212395191193, + "learning_rate": 0.0006, + "loss": 3.7683777809143066, + "step": 2216 + }, + { + "epoch": 30.796854521625164, + "grad_norm": 0.22357074916362762, + "learning_rate": 0.0006, + "loss": 3.763437032699585, + "step": 2217 + }, + { + "epoch": 30.810834425513324, + "grad_norm": 0.22268560528755188, + "learning_rate": 0.0006, + "loss": 3.772836685180664, + "step": 2218 + }, + { + "epoch": 30.824814329401484, + "grad_norm": 0.2434026449918747, + "learning_rate": 0.0006, + "loss": 3.752986431121826, + "step": 2219 + }, + { + "epoch": 30.838794233289647, + "grad_norm": 0.2298414409160614, + "learning_rate": 0.0006, + "loss": 3.7837061882019043, + "step": 2220 + }, + { + "epoch": 30.852774137177807, + "grad_norm": 0.227672278881073, + "learning_rate": 0.0006, + "loss": 3.746065378189087, + "step": 2221 + }, + { + "epoch": 30.866754041065967, + "grad_norm": 0.2562827169895172, + "learning_rate": 0.0006, + "loss": 3.7741947174072266, + "step": 2222 + }, + { + "epoch": 30.88073394495413, + "grad_norm": 0.23657815158367157, + "learning_rate": 0.0006, + "loss": 3.746457099914551, + "step": 2223 + }, + { + "epoch": 30.89471384884229, + "grad_norm": 0.2158907800912857, + "learning_rate": 0.0006, + "loss": 3.7821710109710693, + "step": 2224 + }, + { + "epoch": 30.90869375273045, + "grad_norm": 0.22501254081726074, + "learning_rate": 0.0006, + "loss": 3.7528274059295654, + "step": 2225 + }, + { + "epoch": 30.92267365661861, + "grad_norm": 0.20252224802970886, + "learning_rate": 0.0006, + "loss": 3.749418258666992, + "step": 2226 + }, + { + "epoch": 30.936653560506773, + "grad_norm": 0.2067883312702179, + "learning_rate": 0.0006, + "loss": 3.7560606002807617, + "step": 2227 + }, + { + "epoch": 30.950633464394933, + "grad_norm": 0.23104053735733032, + "learning_rate": 0.0006, + "loss": 3.7883846759796143, + "step": 2228 + }, + { + "epoch": 30.964613368283093, + "grad_norm": 0.21476604044437408, + "learning_rate": 0.0006, + "loss": 3.7976977825164795, + "step": 2229 + }, + { + "epoch": 30.978593272171253, + "grad_norm": 0.2130427062511444, + "learning_rate": 0.0006, + "loss": 3.7429304122924805, + "step": 2230 + }, + { + "epoch": 30.992573176059416, + "grad_norm": 0.2047216147184372, + "learning_rate": 0.0006, + "loss": 3.7669787406921387, + "step": 2231 + }, + { + "epoch": 31.0, + "grad_norm": 0.22254081070423126, + "learning_rate": 0.0006, + "loss": 3.7794251441955566, + "step": 2232 + }, + { + "epoch": 31.0, + "eval_loss": 4.039162635803223, + "eval_runtime": 44.9069, + "eval_samples_per_second": 54.379, + "eval_steps_per_second": 3.407, + "step": 2232 + }, + { + "epoch": 31.01397990388816, + "grad_norm": 0.2278132289648056, + "learning_rate": 0.0006, + "loss": 3.7363929748535156, + "step": 2233 + }, + { + "epoch": 31.027959807776323, + "grad_norm": 0.2377072274684906, + "learning_rate": 0.0006, + "loss": 3.72847318649292, + "step": 2234 + }, + { + "epoch": 31.041939711664483, + "grad_norm": 0.23790542781352997, + "learning_rate": 0.0006, + "loss": 3.767193078994751, + "step": 2235 + }, + { + "epoch": 31.055919615552643, + "grad_norm": 0.2587272524833679, + "learning_rate": 0.0006, + "loss": 3.7564640045166016, + "step": 2236 + }, + { + "epoch": 31.069899519440803, + "grad_norm": 0.27550312876701355, + "learning_rate": 0.0006, + "loss": 3.727578639984131, + "step": 2237 + }, + { + "epoch": 31.083879423328966, + "grad_norm": 0.2488662451505661, + "learning_rate": 0.0006, + "loss": 3.7420730590820312, + "step": 2238 + }, + { + "epoch": 31.097859327217126, + "grad_norm": 0.22699029743671417, + "learning_rate": 0.0006, + "loss": 3.7323155403137207, + "step": 2239 + }, + { + "epoch": 31.111839231105286, + "grad_norm": 0.23360148072242737, + "learning_rate": 0.0006, + "loss": 3.719024181365967, + "step": 2240 + }, + { + "epoch": 31.125819134993446, + "grad_norm": 0.24322988092899323, + "learning_rate": 0.0006, + "loss": 3.74485445022583, + "step": 2241 + }, + { + "epoch": 31.13979903888161, + "grad_norm": 0.2474174052476883, + "learning_rate": 0.0006, + "loss": 3.746826171875, + "step": 2242 + }, + { + "epoch": 31.15377894276977, + "grad_norm": 0.2417406439781189, + "learning_rate": 0.0006, + "loss": 3.7285032272338867, + "step": 2243 + }, + { + "epoch": 31.16775884665793, + "grad_norm": 0.2390318512916565, + "learning_rate": 0.0006, + "loss": 3.7464442253112793, + "step": 2244 + }, + { + "epoch": 31.18173875054609, + "grad_norm": 0.21819323301315308, + "learning_rate": 0.0006, + "loss": 3.735110282897949, + "step": 2245 + }, + { + "epoch": 31.195718654434252, + "grad_norm": 0.21953554451465607, + "learning_rate": 0.0006, + "loss": 3.7270030975341797, + "step": 2246 + }, + { + "epoch": 31.209698558322412, + "grad_norm": 0.1930384635925293, + "learning_rate": 0.0006, + "loss": 3.7519941329956055, + "step": 2247 + }, + { + "epoch": 31.22367846221057, + "grad_norm": 0.19799190759658813, + "learning_rate": 0.0006, + "loss": 3.7428221702575684, + "step": 2248 + }, + { + "epoch": 31.23765836609873, + "grad_norm": 0.20948201417922974, + "learning_rate": 0.0006, + "loss": 3.733120918273926, + "step": 2249 + }, + { + "epoch": 31.251638269986895, + "grad_norm": 0.23768769204616547, + "learning_rate": 0.0006, + "loss": 3.7059035301208496, + "step": 2250 + }, + { + "epoch": 31.265618173875055, + "grad_norm": 0.2808842957019806, + "learning_rate": 0.0006, + "loss": 3.7245287895202637, + "step": 2251 + }, + { + "epoch": 31.279598077763215, + "grad_norm": 0.27633124589920044, + "learning_rate": 0.0006, + "loss": 3.7436366081237793, + "step": 2252 + }, + { + "epoch": 31.293577981651374, + "grad_norm": 0.24137185513973236, + "learning_rate": 0.0006, + "loss": 3.7651219367980957, + "step": 2253 + }, + { + "epoch": 31.307557885539538, + "grad_norm": 0.22056810557842255, + "learning_rate": 0.0006, + "loss": 3.7417521476745605, + "step": 2254 + }, + { + "epoch": 31.321537789427698, + "grad_norm": 0.20137323439121246, + "learning_rate": 0.0006, + "loss": 3.750187397003174, + "step": 2255 + }, + { + "epoch": 31.335517693315857, + "grad_norm": 0.2142433375120163, + "learning_rate": 0.0006, + "loss": 3.7292675971984863, + "step": 2256 + }, + { + "epoch": 31.34949759720402, + "grad_norm": 0.21193967759609222, + "learning_rate": 0.0006, + "loss": 3.7459473609924316, + "step": 2257 + }, + { + "epoch": 31.36347750109218, + "grad_norm": 0.21418534219264984, + "learning_rate": 0.0006, + "loss": 3.754359722137451, + "step": 2258 + }, + { + "epoch": 31.37745740498034, + "grad_norm": 0.23507359623908997, + "learning_rate": 0.0006, + "loss": 3.763413906097412, + "step": 2259 + }, + { + "epoch": 31.3914373088685, + "grad_norm": 0.20393887162208557, + "learning_rate": 0.0006, + "loss": 3.73878812789917, + "step": 2260 + }, + { + "epoch": 31.405417212756664, + "grad_norm": 0.21752159297466278, + "learning_rate": 0.0006, + "loss": 3.750549793243408, + "step": 2261 + }, + { + "epoch": 31.419397116644824, + "grad_norm": 0.22629529237747192, + "learning_rate": 0.0006, + "loss": 3.7791430950164795, + "step": 2262 + }, + { + "epoch": 31.433377020532983, + "grad_norm": 0.2114613950252533, + "learning_rate": 0.0006, + "loss": 3.7709264755249023, + "step": 2263 + }, + { + "epoch": 31.447356924421143, + "grad_norm": 0.23241667449474335, + "learning_rate": 0.0006, + "loss": 3.745750665664673, + "step": 2264 + }, + { + "epoch": 31.461336828309307, + "grad_norm": 0.2434246987104416, + "learning_rate": 0.0006, + "loss": 3.769727945327759, + "step": 2265 + }, + { + "epoch": 31.475316732197467, + "grad_norm": 0.247820645570755, + "learning_rate": 0.0006, + "loss": 3.7528204917907715, + "step": 2266 + }, + { + "epoch": 31.489296636085626, + "grad_norm": 0.21287164092063904, + "learning_rate": 0.0006, + "loss": 3.728661060333252, + "step": 2267 + }, + { + "epoch": 31.503276539973786, + "grad_norm": 0.20983846485614777, + "learning_rate": 0.0006, + "loss": 3.7524428367614746, + "step": 2268 + }, + { + "epoch": 31.51725644386195, + "grad_norm": 0.23799288272857666, + "learning_rate": 0.0006, + "loss": 3.7276647090911865, + "step": 2269 + }, + { + "epoch": 31.53123634775011, + "grad_norm": 0.247065007686615, + "learning_rate": 0.0006, + "loss": 3.7506704330444336, + "step": 2270 + }, + { + "epoch": 31.54521625163827, + "grad_norm": 0.20670939981937408, + "learning_rate": 0.0006, + "loss": 3.71852445602417, + "step": 2271 + }, + { + "epoch": 31.55919615552643, + "grad_norm": 0.19463716447353363, + "learning_rate": 0.0006, + "loss": 3.732757568359375, + "step": 2272 + }, + { + "epoch": 31.573176059414592, + "grad_norm": 0.20368841290473938, + "learning_rate": 0.0006, + "loss": 3.746676445007324, + "step": 2273 + }, + { + "epoch": 31.587155963302752, + "grad_norm": 0.19691342115402222, + "learning_rate": 0.0006, + "loss": 3.7535760402679443, + "step": 2274 + }, + { + "epoch": 31.601135867190912, + "grad_norm": 0.2026553899049759, + "learning_rate": 0.0006, + "loss": 3.7406957149505615, + "step": 2275 + }, + { + "epoch": 31.615115771079076, + "grad_norm": 0.21494299173355103, + "learning_rate": 0.0006, + "loss": 3.735888957977295, + "step": 2276 + }, + { + "epoch": 31.629095674967235, + "grad_norm": 0.21644766628742218, + "learning_rate": 0.0006, + "loss": 3.723767042160034, + "step": 2277 + }, + { + "epoch": 31.643075578855395, + "grad_norm": 0.20087581872940063, + "learning_rate": 0.0006, + "loss": 3.7622008323669434, + "step": 2278 + }, + { + "epoch": 31.657055482743555, + "grad_norm": 0.1949695646762848, + "learning_rate": 0.0006, + "loss": 3.7726354598999023, + "step": 2279 + }, + { + "epoch": 31.67103538663172, + "grad_norm": 0.19120797514915466, + "learning_rate": 0.0006, + "loss": 3.7454679012298584, + "step": 2280 + }, + { + "epoch": 31.68501529051988, + "grad_norm": 0.19480115175247192, + "learning_rate": 0.0006, + "loss": 3.743934392929077, + "step": 2281 + }, + { + "epoch": 31.698995194408038, + "grad_norm": 0.1891610324382782, + "learning_rate": 0.0006, + "loss": 3.7724897861480713, + "step": 2282 + }, + { + "epoch": 31.712975098296198, + "grad_norm": 0.18533185124397278, + "learning_rate": 0.0006, + "loss": 3.7556838989257812, + "step": 2283 + }, + { + "epoch": 31.72695500218436, + "grad_norm": 0.20079447329044342, + "learning_rate": 0.0006, + "loss": 3.76758074760437, + "step": 2284 + }, + { + "epoch": 31.74093490607252, + "grad_norm": 0.2103433609008789, + "learning_rate": 0.0006, + "loss": 3.769477367401123, + "step": 2285 + }, + { + "epoch": 31.75491480996068, + "grad_norm": 0.21428923308849335, + "learning_rate": 0.0006, + "loss": 3.7317447662353516, + "step": 2286 + }, + { + "epoch": 31.76889471384884, + "grad_norm": 0.20154133439064026, + "learning_rate": 0.0006, + "loss": 3.749814987182617, + "step": 2287 + }, + { + "epoch": 31.782874617737004, + "grad_norm": 0.18998542428016663, + "learning_rate": 0.0006, + "loss": 3.7655510902404785, + "step": 2288 + }, + { + "epoch": 31.796854521625164, + "grad_norm": 0.2068665474653244, + "learning_rate": 0.0006, + "loss": 3.7375988960266113, + "step": 2289 + }, + { + "epoch": 31.810834425513324, + "grad_norm": 0.22979815304279327, + "learning_rate": 0.0006, + "loss": 3.728095531463623, + "step": 2290 + }, + { + "epoch": 31.824814329401484, + "grad_norm": 0.2378212958574295, + "learning_rate": 0.0006, + "loss": 3.73091459274292, + "step": 2291 + }, + { + "epoch": 31.838794233289647, + "grad_norm": 0.2353672832250595, + "learning_rate": 0.0006, + "loss": 3.7491769790649414, + "step": 2292 + }, + { + "epoch": 31.852774137177807, + "grad_norm": 0.22341586649417877, + "learning_rate": 0.0006, + "loss": 3.777111530303955, + "step": 2293 + }, + { + "epoch": 31.866754041065967, + "grad_norm": 0.20436930656433105, + "learning_rate": 0.0006, + "loss": 3.740997552871704, + "step": 2294 + }, + { + "epoch": 31.88073394495413, + "grad_norm": 0.20836040377616882, + "learning_rate": 0.0006, + "loss": 3.755582571029663, + "step": 2295 + }, + { + "epoch": 31.89471384884229, + "grad_norm": 0.2045193612575531, + "learning_rate": 0.0006, + "loss": 3.7583560943603516, + "step": 2296 + }, + { + "epoch": 31.90869375273045, + "grad_norm": 0.2025591880083084, + "learning_rate": 0.0006, + "loss": 3.773345470428467, + "step": 2297 + }, + { + "epoch": 31.92267365661861, + "grad_norm": 0.20309099555015564, + "learning_rate": 0.0006, + "loss": 3.7392163276672363, + "step": 2298 + }, + { + "epoch": 31.936653560506773, + "grad_norm": 0.2129351645708084, + "learning_rate": 0.0006, + "loss": 3.7801311016082764, + "step": 2299 + }, + { + "epoch": 31.950633464394933, + "grad_norm": 0.19950738549232483, + "learning_rate": 0.0006, + "loss": 3.779261589050293, + "step": 2300 + }, + { + "epoch": 31.964613368283093, + "grad_norm": 0.22837352752685547, + "learning_rate": 0.0006, + "loss": 3.782731294631958, + "step": 2301 + }, + { + "epoch": 31.978593272171253, + "grad_norm": 0.2576889097690582, + "learning_rate": 0.0006, + "loss": 3.7778096199035645, + "step": 2302 + }, + { + "epoch": 31.992573176059416, + "grad_norm": 0.2770138382911682, + "learning_rate": 0.0006, + "loss": 3.735755443572998, + "step": 2303 + }, + { + "epoch": 32.0, + "grad_norm": 0.2632865309715271, + "learning_rate": 0.0006, + "loss": 3.7562808990478516, + "step": 2304 + }, + { + "epoch": 32.0, + "eval_loss": 4.031628608703613, + "eval_runtime": 44.2115, + "eval_samples_per_second": 55.234, + "eval_steps_per_second": 3.461, + "step": 2304 + }, + { + "epoch": 32.01397990388816, + "grad_norm": 0.20234128832817078, + "learning_rate": 0.0006, + "loss": 3.734489917755127, + "step": 2305 + }, + { + "epoch": 32.02795980777632, + "grad_norm": 0.24983637034893036, + "learning_rate": 0.0006, + "loss": 3.7351019382476807, + "step": 2306 + }, + { + "epoch": 32.04193971166448, + "grad_norm": 0.27358478307724, + "learning_rate": 0.0006, + "loss": 3.708712100982666, + "step": 2307 + }, + { + "epoch": 32.05591961555265, + "grad_norm": 0.24693739414215088, + "learning_rate": 0.0006, + "loss": 3.731858491897583, + "step": 2308 + }, + { + "epoch": 32.0698995194408, + "grad_norm": 0.22751131653785706, + "learning_rate": 0.0006, + "loss": 3.7074670791625977, + "step": 2309 + }, + { + "epoch": 32.083879423328966, + "grad_norm": 0.23400720953941345, + "learning_rate": 0.0006, + "loss": 3.714092493057251, + "step": 2310 + }, + { + "epoch": 32.09785932721712, + "grad_norm": 0.20711684226989746, + "learning_rate": 0.0006, + "loss": 3.754727840423584, + "step": 2311 + }, + { + "epoch": 32.111839231105286, + "grad_norm": 0.21589399874210358, + "learning_rate": 0.0006, + "loss": 3.6953847408294678, + "step": 2312 + }, + { + "epoch": 32.12581913499345, + "grad_norm": 0.24575738608837128, + "learning_rate": 0.0006, + "loss": 3.7078802585601807, + "step": 2313 + }, + { + "epoch": 32.139799038881605, + "grad_norm": 0.23152033984661102, + "learning_rate": 0.0006, + "loss": 3.7402305603027344, + "step": 2314 + }, + { + "epoch": 32.15377894276977, + "grad_norm": 0.22639606893062592, + "learning_rate": 0.0006, + "loss": 3.7264223098754883, + "step": 2315 + }, + { + "epoch": 32.16775884665793, + "grad_norm": 0.24701760709285736, + "learning_rate": 0.0006, + "loss": 3.7497639656066895, + "step": 2316 + }, + { + "epoch": 32.18173875054609, + "grad_norm": 0.274832159280777, + "learning_rate": 0.0006, + "loss": 3.7557122707366943, + "step": 2317 + }, + { + "epoch": 32.19571865443425, + "grad_norm": 0.27472418546676636, + "learning_rate": 0.0006, + "loss": 3.6863393783569336, + "step": 2318 + }, + { + "epoch": 32.20969855832241, + "grad_norm": 0.2625530958175659, + "learning_rate": 0.0006, + "loss": 3.7203545570373535, + "step": 2319 + }, + { + "epoch": 32.22367846221057, + "grad_norm": 0.2576068341732025, + "learning_rate": 0.0006, + "loss": 3.734747886657715, + "step": 2320 + }, + { + "epoch": 32.237658366098735, + "grad_norm": 0.25946059823036194, + "learning_rate": 0.0006, + "loss": 3.7501730918884277, + "step": 2321 + }, + { + "epoch": 32.25163826998689, + "grad_norm": 0.2524135410785675, + "learning_rate": 0.0006, + "loss": 3.75177001953125, + "step": 2322 + }, + { + "epoch": 32.265618173875055, + "grad_norm": 0.2568551003932953, + "learning_rate": 0.0006, + "loss": 3.752450704574585, + "step": 2323 + }, + { + "epoch": 32.27959807776322, + "grad_norm": 0.2489749640226364, + "learning_rate": 0.0006, + "loss": 3.711735486984253, + "step": 2324 + }, + { + "epoch": 32.293577981651374, + "grad_norm": 0.2425498366355896, + "learning_rate": 0.0006, + "loss": 3.7004239559173584, + "step": 2325 + }, + { + "epoch": 32.30755788553954, + "grad_norm": 0.24359773099422455, + "learning_rate": 0.0006, + "loss": 3.733870029449463, + "step": 2326 + }, + { + "epoch": 32.3215377894277, + "grad_norm": 0.22314727306365967, + "learning_rate": 0.0006, + "loss": 3.699841022491455, + "step": 2327 + }, + { + "epoch": 32.33551769331586, + "grad_norm": 0.2047620266675949, + "learning_rate": 0.0006, + "loss": 3.732534170150757, + "step": 2328 + }, + { + "epoch": 32.34949759720402, + "grad_norm": 0.24393224716186523, + "learning_rate": 0.0006, + "loss": 3.7200770378112793, + "step": 2329 + }, + { + "epoch": 32.36347750109218, + "grad_norm": 0.23884256184101105, + "learning_rate": 0.0006, + "loss": 3.722318410873413, + "step": 2330 + }, + { + "epoch": 32.37745740498034, + "grad_norm": 0.23262189328670502, + "learning_rate": 0.0006, + "loss": 3.759033203125, + "step": 2331 + }, + { + "epoch": 32.391437308868504, + "grad_norm": 0.22542893886566162, + "learning_rate": 0.0006, + "loss": 3.729198694229126, + "step": 2332 + }, + { + "epoch": 32.40541721275666, + "grad_norm": 0.22479060292243958, + "learning_rate": 0.0006, + "loss": 3.7298169136047363, + "step": 2333 + }, + { + "epoch": 32.419397116644824, + "grad_norm": 0.21571804583072662, + "learning_rate": 0.0006, + "loss": 3.699937343597412, + "step": 2334 + }, + { + "epoch": 32.43337702053299, + "grad_norm": 0.20804545283317566, + "learning_rate": 0.0006, + "loss": 3.7495696544647217, + "step": 2335 + }, + { + "epoch": 32.44735692442114, + "grad_norm": 0.22751706838607788, + "learning_rate": 0.0006, + "loss": 3.7369821071624756, + "step": 2336 + }, + { + "epoch": 32.46133682830931, + "grad_norm": 0.2326795756816864, + "learning_rate": 0.0006, + "loss": 3.7636334896087646, + "step": 2337 + }, + { + "epoch": 32.47531673219746, + "grad_norm": 0.19971159100532532, + "learning_rate": 0.0006, + "loss": 3.72151517868042, + "step": 2338 + }, + { + "epoch": 32.489296636085626, + "grad_norm": 0.21078036725521088, + "learning_rate": 0.0006, + "loss": 3.7050065994262695, + "step": 2339 + }, + { + "epoch": 32.50327653997379, + "grad_norm": 0.22198088467121124, + "learning_rate": 0.0006, + "loss": 3.7654409408569336, + "step": 2340 + }, + { + "epoch": 32.517256443861946, + "grad_norm": 0.20995207130908966, + "learning_rate": 0.0006, + "loss": 3.7516250610351562, + "step": 2341 + }, + { + "epoch": 32.53123634775011, + "grad_norm": 0.20757141709327698, + "learning_rate": 0.0006, + "loss": 3.7412633895874023, + "step": 2342 + }, + { + "epoch": 32.54521625163827, + "grad_norm": 0.20053881406784058, + "learning_rate": 0.0006, + "loss": 3.7477493286132812, + "step": 2343 + }, + { + "epoch": 32.55919615552643, + "grad_norm": 0.20223091542720795, + "learning_rate": 0.0006, + "loss": 3.7149064540863037, + "step": 2344 + }, + { + "epoch": 32.57317605941459, + "grad_norm": 0.20179468393325806, + "learning_rate": 0.0006, + "loss": 3.70635724067688, + "step": 2345 + }, + { + "epoch": 32.58715596330275, + "grad_norm": 0.19670480489730835, + "learning_rate": 0.0006, + "loss": 3.7276744842529297, + "step": 2346 + }, + { + "epoch": 32.60113586719091, + "grad_norm": 0.1992012858390808, + "learning_rate": 0.0006, + "loss": 3.7659356594085693, + "step": 2347 + }, + { + "epoch": 32.615115771079076, + "grad_norm": 0.20124201476573944, + "learning_rate": 0.0006, + "loss": 3.722212791442871, + "step": 2348 + }, + { + "epoch": 32.62909567496723, + "grad_norm": 0.21972708404064178, + "learning_rate": 0.0006, + "loss": 3.751830577850342, + "step": 2349 + }, + { + "epoch": 32.643075578855395, + "grad_norm": 0.20454947650432587, + "learning_rate": 0.0006, + "loss": 3.7196669578552246, + "step": 2350 + }, + { + "epoch": 32.65705548274356, + "grad_norm": 0.1783330887556076, + "learning_rate": 0.0006, + "loss": 3.721461772918701, + "step": 2351 + }, + { + "epoch": 32.671035386631715, + "grad_norm": 0.2027900367975235, + "learning_rate": 0.0006, + "loss": 3.753718614578247, + "step": 2352 + }, + { + "epoch": 32.68501529051988, + "grad_norm": 0.21232381463050842, + "learning_rate": 0.0006, + "loss": 3.732736349105835, + "step": 2353 + }, + { + "epoch": 32.69899519440804, + "grad_norm": 0.2214568555355072, + "learning_rate": 0.0006, + "loss": 3.7250165939331055, + "step": 2354 + }, + { + "epoch": 32.7129750982962, + "grad_norm": 0.2626485228538513, + "learning_rate": 0.0006, + "loss": 3.72263503074646, + "step": 2355 + }, + { + "epoch": 32.72695500218436, + "grad_norm": 0.30096277594566345, + "learning_rate": 0.0006, + "loss": 3.7599854469299316, + "step": 2356 + }, + { + "epoch": 32.74093490607252, + "grad_norm": 0.3374342620372772, + "learning_rate": 0.0006, + "loss": 3.7493844032287598, + "step": 2357 + }, + { + "epoch": 32.75491480996068, + "grad_norm": 0.3051377534866333, + "learning_rate": 0.0006, + "loss": 3.7515692710876465, + "step": 2358 + }, + { + "epoch": 32.768894713848844, + "grad_norm": 0.2130587249994278, + "learning_rate": 0.0006, + "loss": 3.751307964324951, + "step": 2359 + }, + { + "epoch": 32.782874617737, + "grad_norm": 0.25198230147361755, + "learning_rate": 0.0006, + "loss": 3.7500064373016357, + "step": 2360 + }, + { + "epoch": 32.796854521625164, + "grad_norm": 0.27613863348960876, + "learning_rate": 0.0006, + "loss": 3.7257039546966553, + "step": 2361 + }, + { + "epoch": 32.81083442551333, + "grad_norm": 0.23749367892742157, + "learning_rate": 0.0006, + "loss": 3.778343439102173, + "step": 2362 + }, + { + "epoch": 32.824814329401484, + "grad_norm": 0.2063702642917633, + "learning_rate": 0.0006, + "loss": 3.7493772506713867, + "step": 2363 + }, + { + "epoch": 32.83879423328965, + "grad_norm": 0.21169374883174896, + "learning_rate": 0.0006, + "loss": 3.722567081451416, + "step": 2364 + }, + { + "epoch": 32.8527741371778, + "grad_norm": 0.23291490972042084, + "learning_rate": 0.0006, + "loss": 3.7555532455444336, + "step": 2365 + }, + { + "epoch": 32.86675404106597, + "grad_norm": 0.21486155688762665, + "learning_rate": 0.0006, + "loss": 3.7401528358459473, + "step": 2366 + }, + { + "epoch": 32.88073394495413, + "grad_norm": 0.2296247035264969, + "learning_rate": 0.0006, + "loss": 3.7867965698242188, + "step": 2367 + }, + { + "epoch": 32.89471384884229, + "grad_norm": 0.2335108071565628, + "learning_rate": 0.0006, + "loss": 3.768036365509033, + "step": 2368 + }, + { + "epoch": 32.90869375273045, + "grad_norm": 0.23921863734722137, + "learning_rate": 0.0006, + "loss": 3.725252151489258, + "step": 2369 + }, + { + "epoch": 32.92267365661861, + "grad_norm": 0.20303526520729065, + "learning_rate": 0.0006, + "loss": 3.7806248664855957, + "step": 2370 + }, + { + "epoch": 32.93665356050677, + "grad_norm": 0.19293150305747986, + "learning_rate": 0.0006, + "loss": 3.759281873703003, + "step": 2371 + }, + { + "epoch": 32.95063346439493, + "grad_norm": 0.20609107613563538, + "learning_rate": 0.0006, + "loss": 3.764190196990967, + "step": 2372 + }, + { + "epoch": 32.964613368283096, + "grad_norm": 0.2014189213514328, + "learning_rate": 0.0006, + "loss": 3.7365214824676514, + "step": 2373 + }, + { + "epoch": 32.97859327217125, + "grad_norm": 0.22045451402664185, + "learning_rate": 0.0006, + "loss": 3.7435812950134277, + "step": 2374 + }, + { + "epoch": 32.992573176059416, + "grad_norm": 0.24228639900684357, + "learning_rate": 0.0006, + "loss": 3.751309394836426, + "step": 2375 + }, + { + "epoch": 33.0, + "grad_norm": 0.2645106613636017, + "learning_rate": 0.0006, + "loss": 3.7629928588867188, + "step": 2376 + }, + { + "epoch": 33.0, + "eval_loss": 4.026789665222168, + "eval_runtime": 44.9957, + "eval_samples_per_second": 54.272, + "eval_steps_per_second": 3.4, + "step": 2376 + }, + { + "epoch": 33.01397990388816, + "grad_norm": 0.21402551233768463, + "learning_rate": 0.0006, + "loss": 3.72019100189209, + "step": 2377 + }, + { + "epoch": 33.02795980777632, + "grad_norm": 0.23886585235595703, + "learning_rate": 0.0006, + "loss": 3.687084674835205, + "step": 2378 + }, + { + "epoch": 33.04193971166448, + "grad_norm": 0.29936572909355164, + "learning_rate": 0.0006, + "loss": 3.697310447692871, + "step": 2379 + }, + { + "epoch": 33.05591961555265, + "grad_norm": 0.30007585883140564, + "learning_rate": 0.0006, + "loss": 3.6913352012634277, + "step": 2380 + }, + { + "epoch": 33.0698995194408, + "grad_norm": 0.26594656705856323, + "learning_rate": 0.0006, + "loss": 3.740802526473999, + "step": 2381 + }, + { + "epoch": 33.083879423328966, + "grad_norm": 0.2658730447292328, + "learning_rate": 0.0006, + "loss": 3.692746162414551, + "step": 2382 + }, + { + "epoch": 33.09785932721712, + "grad_norm": 0.26755523681640625, + "learning_rate": 0.0006, + "loss": 3.7534420490264893, + "step": 2383 + }, + { + "epoch": 33.111839231105286, + "grad_norm": 0.23070940375328064, + "learning_rate": 0.0006, + "loss": 3.717876672744751, + "step": 2384 + }, + { + "epoch": 33.12581913499345, + "grad_norm": 0.2476235181093216, + "learning_rate": 0.0006, + "loss": 3.7072248458862305, + "step": 2385 + }, + { + "epoch": 33.139799038881605, + "grad_norm": 0.2454477846622467, + "learning_rate": 0.0006, + "loss": 3.729762077331543, + "step": 2386 + }, + { + "epoch": 33.15377894276977, + "grad_norm": 0.24090935289859772, + "learning_rate": 0.0006, + "loss": 3.721374988555908, + "step": 2387 + }, + { + "epoch": 33.16775884665793, + "grad_norm": 0.2440263032913208, + "learning_rate": 0.0006, + "loss": 3.730433464050293, + "step": 2388 + }, + { + "epoch": 33.18173875054609, + "grad_norm": 0.21699118614196777, + "learning_rate": 0.0006, + "loss": 3.724730968475342, + "step": 2389 + }, + { + "epoch": 33.19571865443425, + "grad_norm": 0.2302001267671585, + "learning_rate": 0.0006, + "loss": 3.69376277923584, + "step": 2390 + }, + { + "epoch": 33.20969855832241, + "grad_norm": 0.24707409739494324, + "learning_rate": 0.0006, + "loss": 3.705653667449951, + "step": 2391 + }, + { + "epoch": 33.22367846221057, + "grad_norm": 0.22896641492843628, + "learning_rate": 0.0006, + "loss": 3.747000217437744, + "step": 2392 + }, + { + "epoch": 33.237658366098735, + "grad_norm": 0.2278730720281601, + "learning_rate": 0.0006, + "loss": 3.733464241027832, + "step": 2393 + }, + { + "epoch": 33.25163826998689, + "grad_norm": 0.23909862339496613, + "learning_rate": 0.0006, + "loss": 3.733661413192749, + "step": 2394 + }, + { + "epoch": 33.265618173875055, + "grad_norm": 0.2349950075149536, + "learning_rate": 0.0006, + "loss": 3.7337965965270996, + "step": 2395 + }, + { + "epoch": 33.27959807776322, + "grad_norm": 0.22655968368053436, + "learning_rate": 0.0006, + "loss": 3.70503306388855, + "step": 2396 + }, + { + "epoch": 33.293577981651374, + "grad_norm": 0.22167043387889862, + "learning_rate": 0.0006, + "loss": 3.738797903060913, + "step": 2397 + }, + { + "epoch": 33.30755788553954, + "grad_norm": 0.2278883010149002, + "learning_rate": 0.0006, + "loss": 3.712550640106201, + "step": 2398 + }, + { + "epoch": 33.3215377894277, + "grad_norm": 0.2220565229654312, + "learning_rate": 0.0006, + "loss": 3.7278006076812744, + "step": 2399 + }, + { + "epoch": 33.33551769331586, + "grad_norm": 0.21888740360736847, + "learning_rate": 0.0006, + "loss": 3.72243595123291, + "step": 2400 + }, + { + "epoch": 33.34949759720402, + "grad_norm": 0.21587581932544708, + "learning_rate": 0.0006, + "loss": 3.7177581787109375, + "step": 2401 + }, + { + "epoch": 33.36347750109218, + "grad_norm": 0.1923578530550003, + "learning_rate": 0.0006, + "loss": 3.711294651031494, + "step": 2402 + }, + { + "epoch": 33.37745740498034, + "grad_norm": 0.1994934380054474, + "learning_rate": 0.0006, + "loss": 3.762061595916748, + "step": 2403 + }, + { + "epoch": 33.391437308868504, + "grad_norm": 0.20074427127838135, + "learning_rate": 0.0006, + "loss": 3.708559036254883, + "step": 2404 + }, + { + "epoch": 33.40541721275666, + "grad_norm": 0.21349482238292694, + "learning_rate": 0.0006, + "loss": 3.7089147567749023, + "step": 2405 + }, + { + "epoch": 33.419397116644824, + "grad_norm": 0.25523608922958374, + "learning_rate": 0.0006, + "loss": 3.7241058349609375, + "step": 2406 + }, + { + "epoch": 33.43337702053299, + "grad_norm": 0.27654796838760376, + "learning_rate": 0.0006, + "loss": 3.723618984222412, + "step": 2407 + }, + { + "epoch": 33.44735692442114, + "grad_norm": 0.2651479244232178, + "learning_rate": 0.0006, + "loss": 3.7367782592773438, + "step": 2408 + }, + { + "epoch": 33.46133682830931, + "grad_norm": 0.23403556644916534, + "learning_rate": 0.0006, + "loss": 3.7198312282562256, + "step": 2409 + }, + { + "epoch": 33.47531673219746, + "grad_norm": 0.20970726013183594, + "learning_rate": 0.0006, + "loss": 3.7088186740875244, + "step": 2410 + }, + { + "epoch": 33.489296636085626, + "grad_norm": 0.18532544374465942, + "learning_rate": 0.0006, + "loss": 3.7162208557128906, + "step": 2411 + }, + { + "epoch": 33.50327653997379, + "grad_norm": 0.19590279459953308, + "learning_rate": 0.0006, + "loss": 3.766357898712158, + "step": 2412 + }, + { + "epoch": 33.517256443861946, + "grad_norm": 0.203349307179451, + "learning_rate": 0.0006, + "loss": 3.732177257537842, + "step": 2413 + }, + { + "epoch": 33.53123634775011, + "grad_norm": 0.2015952616930008, + "learning_rate": 0.0006, + "loss": 3.741609573364258, + "step": 2414 + }, + { + "epoch": 33.54521625163827, + "grad_norm": 0.20024161040782928, + "learning_rate": 0.0006, + "loss": 3.6894431114196777, + "step": 2415 + }, + { + "epoch": 33.55919615552643, + "grad_norm": 0.20932617783546448, + "learning_rate": 0.0006, + "loss": 3.721979856491089, + "step": 2416 + }, + { + "epoch": 33.57317605941459, + "grad_norm": 0.22069773077964783, + "learning_rate": 0.0006, + "loss": 3.712203025817871, + "step": 2417 + }, + { + "epoch": 33.58715596330275, + "grad_norm": 0.22341343760490417, + "learning_rate": 0.0006, + "loss": 3.7469263076782227, + "step": 2418 + }, + { + "epoch": 33.60113586719091, + "grad_norm": 0.21758507192134857, + "learning_rate": 0.0006, + "loss": 3.721778392791748, + "step": 2419 + }, + { + "epoch": 33.615115771079076, + "grad_norm": 0.20480088889598846, + "learning_rate": 0.0006, + "loss": 3.743570327758789, + "step": 2420 + }, + { + "epoch": 33.62909567496723, + "grad_norm": 0.23068399727344513, + "learning_rate": 0.0006, + "loss": 3.7203001976013184, + "step": 2421 + }, + { + "epoch": 33.643075578855395, + "grad_norm": 0.2526263892650604, + "learning_rate": 0.0006, + "loss": 3.7336440086364746, + "step": 2422 + }, + { + "epoch": 33.65705548274356, + "grad_norm": 0.218627467751503, + "learning_rate": 0.0006, + "loss": 3.730762243270874, + "step": 2423 + }, + { + "epoch": 33.671035386631715, + "grad_norm": 0.21883417665958405, + "learning_rate": 0.0006, + "loss": 3.749356508255005, + "step": 2424 + }, + { + "epoch": 33.68501529051988, + "grad_norm": 0.22885626554489136, + "learning_rate": 0.0006, + "loss": 3.7426199913024902, + "step": 2425 + }, + { + "epoch": 33.69899519440804, + "grad_norm": 0.23709580302238464, + "learning_rate": 0.0006, + "loss": 3.691652774810791, + "step": 2426 + }, + { + "epoch": 33.7129750982962, + "grad_norm": 0.2258225381374359, + "learning_rate": 0.0006, + "loss": 3.7368886470794678, + "step": 2427 + }, + { + "epoch": 33.72695500218436, + "grad_norm": 0.1993306577205658, + "learning_rate": 0.0006, + "loss": 3.722733497619629, + "step": 2428 + }, + { + "epoch": 33.74093490607252, + "grad_norm": 0.20307473838329315, + "learning_rate": 0.0006, + "loss": 3.7507500648498535, + "step": 2429 + }, + { + "epoch": 33.75491480996068, + "grad_norm": 0.20076696574687958, + "learning_rate": 0.0006, + "loss": 3.6896910667419434, + "step": 2430 + }, + { + "epoch": 33.768894713848844, + "grad_norm": 0.21118830144405365, + "learning_rate": 0.0006, + "loss": 3.7176647186279297, + "step": 2431 + }, + { + "epoch": 33.782874617737, + "grad_norm": 0.21605782210826874, + "learning_rate": 0.0006, + "loss": 3.7423641681671143, + "step": 2432 + }, + { + "epoch": 33.796854521625164, + "grad_norm": 0.22233152389526367, + "learning_rate": 0.0006, + "loss": 3.7296109199523926, + "step": 2433 + }, + { + "epoch": 33.81083442551333, + "grad_norm": 0.2253616899251938, + "learning_rate": 0.0006, + "loss": 3.7095072269439697, + "step": 2434 + }, + { + "epoch": 33.824814329401484, + "grad_norm": 0.2105807662010193, + "learning_rate": 0.0006, + "loss": 3.760921001434326, + "step": 2435 + }, + { + "epoch": 33.83879423328965, + "grad_norm": 0.20413213968276978, + "learning_rate": 0.0006, + "loss": 3.7356553077697754, + "step": 2436 + }, + { + "epoch": 33.8527741371778, + "grad_norm": 0.19781213998794556, + "learning_rate": 0.0006, + "loss": 3.726787567138672, + "step": 2437 + }, + { + "epoch": 33.86675404106597, + "grad_norm": 0.199616938829422, + "learning_rate": 0.0006, + "loss": 3.7200419902801514, + "step": 2438 + }, + { + "epoch": 33.88073394495413, + "grad_norm": 0.19702564179897308, + "learning_rate": 0.0006, + "loss": 3.714287281036377, + "step": 2439 + }, + { + "epoch": 33.89471384884229, + "grad_norm": 0.19456833600997925, + "learning_rate": 0.0006, + "loss": 3.739231586456299, + "step": 2440 + }, + { + "epoch": 33.90869375273045, + "grad_norm": 0.1890697181224823, + "learning_rate": 0.0006, + "loss": 3.7088429927825928, + "step": 2441 + }, + { + "epoch": 33.92267365661861, + "grad_norm": 0.1845911741256714, + "learning_rate": 0.0006, + "loss": 3.760782241821289, + "step": 2442 + }, + { + "epoch": 33.93665356050677, + "grad_norm": 0.19045902788639069, + "learning_rate": 0.0006, + "loss": 3.736957311630249, + "step": 2443 + }, + { + "epoch": 33.95063346439493, + "grad_norm": 0.1934187412261963, + "learning_rate": 0.0006, + "loss": 3.756351947784424, + "step": 2444 + }, + { + "epoch": 33.964613368283096, + "grad_norm": 0.19774580001831055, + "learning_rate": 0.0006, + "loss": 3.7332229614257812, + "step": 2445 + }, + { + "epoch": 33.97859327217125, + "grad_norm": 0.20653048157691956, + "learning_rate": 0.0006, + "loss": 3.7112321853637695, + "step": 2446 + }, + { + "epoch": 33.992573176059416, + "grad_norm": 0.18618541955947876, + "learning_rate": 0.0006, + "loss": 3.735710620880127, + "step": 2447 + }, + { + "epoch": 34.0, + "grad_norm": 0.22846414148807526, + "learning_rate": 0.0006, + "loss": 3.739706039428711, + "step": 2448 + }, + { + "epoch": 34.0, + "eval_loss": 4.0099663734436035, + "eval_runtime": 45.2096, + "eval_samples_per_second": 54.015, + "eval_steps_per_second": 3.384, + "step": 2448 + }, + { + "epoch": 34.01397990388816, + "grad_norm": 0.20987462997436523, + "learning_rate": 0.0006, + "loss": 3.6798832416534424, + "step": 2449 + }, + { + "epoch": 34.02795980777632, + "grad_norm": 0.2230423390865326, + "learning_rate": 0.0006, + "loss": 3.7157368659973145, + "step": 2450 + }, + { + "epoch": 34.04193971166448, + "grad_norm": 0.24115242063999176, + "learning_rate": 0.0006, + "loss": 3.696037769317627, + "step": 2451 + }, + { + "epoch": 34.05591961555265, + "grad_norm": 0.24499665200710297, + "learning_rate": 0.0006, + "loss": 3.695420742034912, + "step": 2452 + }, + { + "epoch": 34.0698995194408, + "grad_norm": 0.23336757719516754, + "learning_rate": 0.0006, + "loss": 3.7252023220062256, + "step": 2453 + }, + { + "epoch": 34.083879423328966, + "grad_norm": 0.23716159164905548, + "learning_rate": 0.0006, + "loss": 3.714542865753174, + "step": 2454 + }, + { + "epoch": 34.09785932721712, + "grad_norm": 0.2305644154548645, + "learning_rate": 0.0006, + "loss": 3.6989386081695557, + "step": 2455 + }, + { + "epoch": 34.111839231105286, + "grad_norm": 0.2281671017408371, + "learning_rate": 0.0006, + "loss": 3.6952829360961914, + "step": 2456 + }, + { + "epoch": 34.12581913499345, + "grad_norm": 0.21031132340431213, + "learning_rate": 0.0006, + "loss": 3.7337589263916016, + "step": 2457 + }, + { + "epoch": 34.139799038881605, + "grad_norm": 0.2233671098947525, + "learning_rate": 0.0006, + "loss": 3.6923675537109375, + "step": 2458 + }, + { + "epoch": 34.15377894276977, + "grad_norm": 0.22766625881195068, + "learning_rate": 0.0006, + "loss": 3.70849609375, + "step": 2459 + }, + { + "epoch": 34.16775884665793, + "grad_norm": 0.22433766722679138, + "learning_rate": 0.0006, + "loss": 3.718319892883301, + "step": 2460 + }, + { + "epoch": 34.18173875054609, + "grad_norm": 0.20621491968631744, + "learning_rate": 0.0006, + "loss": 3.6874704360961914, + "step": 2461 + }, + { + "epoch": 34.19571865443425, + "grad_norm": 0.21353304386138916, + "learning_rate": 0.0006, + "loss": 3.663358688354492, + "step": 2462 + }, + { + "epoch": 34.20969855832241, + "grad_norm": 0.20652951300144196, + "learning_rate": 0.0006, + "loss": 3.718107223510742, + "step": 2463 + }, + { + "epoch": 34.22367846221057, + "grad_norm": 0.19780176877975464, + "learning_rate": 0.0006, + "loss": 3.7255396842956543, + "step": 2464 + }, + { + "epoch": 34.237658366098735, + "grad_norm": 0.20636138319969177, + "learning_rate": 0.0006, + "loss": 3.696850538253784, + "step": 2465 + }, + { + "epoch": 34.25163826998689, + "grad_norm": 0.23691460490226746, + "learning_rate": 0.0006, + "loss": 3.687997341156006, + "step": 2466 + }, + { + "epoch": 34.265618173875055, + "grad_norm": 0.2380511611700058, + "learning_rate": 0.0006, + "loss": 3.716610908508301, + "step": 2467 + }, + { + "epoch": 34.27959807776322, + "grad_norm": 0.21508945524692535, + "learning_rate": 0.0006, + "loss": 3.6993470191955566, + "step": 2468 + }, + { + "epoch": 34.293577981651374, + "grad_norm": 0.20441125333309174, + "learning_rate": 0.0006, + "loss": 3.7194275856018066, + "step": 2469 + }, + { + "epoch": 34.30755788553954, + "grad_norm": 0.19704242050647736, + "learning_rate": 0.0006, + "loss": 3.675929546356201, + "step": 2470 + }, + { + "epoch": 34.3215377894277, + "grad_norm": 0.1918456256389618, + "learning_rate": 0.0006, + "loss": 3.7189574241638184, + "step": 2471 + }, + { + "epoch": 34.33551769331586, + "grad_norm": 0.19687092304229736, + "learning_rate": 0.0006, + "loss": 3.725809335708618, + "step": 2472 + }, + { + "epoch": 34.34949759720402, + "grad_norm": 0.2048639953136444, + "learning_rate": 0.0006, + "loss": 3.7461748123168945, + "step": 2473 + }, + { + "epoch": 34.36347750109218, + "grad_norm": 0.21086618304252625, + "learning_rate": 0.0006, + "loss": 3.6849746704101562, + "step": 2474 + }, + { + "epoch": 34.37745740498034, + "grad_norm": 0.2172154039144516, + "learning_rate": 0.0006, + "loss": 3.7379322052001953, + "step": 2475 + }, + { + "epoch": 34.391437308868504, + "grad_norm": 0.22725504636764526, + "learning_rate": 0.0006, + "loss": 3.7341527938842773, + "step": 2476 + }, + { + "epoch": 34.40541721275666, + "grad_norm": 0.22309242188930511, + "learning_rate": 0.0006, + "loss": 3.724946975708008, + "step": 2477 + }, + { + "epoch": 34.419397116644824, + "grad_norm": 0.25252285599708557, + "learning_rate": 0.0006, + "loss": 3.710257053375244, + "step": 2478 + }, + { + "epoch": 34.43337702053299, + "grad_norm": 0.2549746334552765, + "learning_rate": 0.0006, + "loss": 3.7105040550231934, + "step": 2479 + }, + { + "epoch": 34.44735692442114, + "grad_norm": 0.22544030845165253, + "learning_rate": 0.0006, + "loss": 3.7340707778930664, + "step": 2480 + }, + { + "epoch": 34.46133682830931, + "grad_norm": 0.22275063395500183, + "learning_rate": 0.0006, + "loss": 3.7141473293304443, + "step": 2481 + }, + { + "epoch": 34.47531673219746, + "grad_norm": 0.25373485684394836, + "learning_rate": 0.0006, + "loss": 3.7014691829681396, + "step": 2482 + }, + { + "epoch": 34.489296636085626, + "grad_norm": 0.2573327124118805, + "learning_rate": 0.0006, + "loss": 3.682562828063965, + "step": 2483 + }, + { + "epoch": 34.50327653997379, + "grad_norm": 0.2452341616153717, + "learning_rate": 0.0006, + "loss": 3.757261276245117, + "step": 2484 + }, + { + "epoch": 34.517256443861946, + "grad_norm": 0.2477131187915802, + "learning_rate": 0.0006, + "loss": 3.7216877937316895, + "step": 2485 + }, + { + "epoch": 34.53123634775011, + "grad_norm": 0.24740098416805267, + "learning_rate": 0.0006, + "loss": 3.705704927444458, + "step": 2486 + }, + { + "epoch": 34.54521625163827, + "grad_norm": 0.27306219935417175, + "learning_rate": 0.0006, + "loss": 3.7014641761779785, + "step": 2487 + }, + { + "epoch": 34.55919615552643, + "grad_norm": 0.26376286149024963, + "learning_rate": 0.0006, + "loss": 3.686056137084961, + "step": 2488 + }, + { + "epoch": 34.57317605941459, + "grad_norm": 0.2796899378299713, + "learning_rate": 0.0006, + "loss": 3.7171077728271484, + "step": 2489 + }, + { + "epoch": 34.58715596330275, + "grad_norm": 0.24279902875423431, + "learning_rate": 0.0006, + "loss": 3.7448348999023438, + "step": 2490 + }, + { + "epoch": 34.60113586719091, + "grad_norm": 0.22772833704948425, + "learning_rate": 0.0006, + "loss": 3.7028117179870605, + "step": 2491 + }, + { + "epoch": 34.615115771079076, + "grad_norm": 0.22157910466194153, + "learning_rate": 0.0006, + "loss": 3.750023603439331, + "step": 2492 + }, + { + "epoch": 34.62909567496723, + "grad_norm": 0.24342703819274902, + "learning_rate": 0.0006, + "loss": 3.7181010246276855, + "step": 2493 + }, + { + "epoch": 34.643075578855395, + "grad_norm": 0.2554340362548828, + "learning_rate": 0.0006, + "loss": 3.6994080543518066, + "step": 2494 + }, + { + "epoch": 34.65705548274356, + "grad_norm": 0.21296930313110352, + "learning_rate": 0.0006, + "loss": 3.7534523010253906, + "step": 2495 + }, + { + "epoch": 34.671035386631715, + "grad_norm": 0.19117674231529236, + "learning_rate": 0.0006, + "loss": 3.7267889976501465, + "step": 2496 + }, + { + "epoch": 34.68501529051988, + "grad_norm": 0.2306399643421173, + "learning_rate": 0.0006, + "loss": 3.723212242126465, + "step": 2497 + }, + { + "epoch": 34.69899519440804, + "grad_norm": 0.23063263297080994, + "learning_rate": 0.0006, + "loss": 3.730070114135742, + "step": 2498 + }, + { + "epoch": 34.7129750982962, + "grad_norm": 0.19422881305217743, + "learning_rate": 0.0006, + "loss": 3.694833755493164, + "step": 2499 + }, + { + "epoch": 34.72695500218436, + "grad_norm": 0.20246362686157227, + "learning_rate": 0.0006, + "loss": 3.71140718460083, + "step": 2500 + }, + { + "epoch": 34.74093490607252, + "grad_norm": 0.1942741572856903, + "learning_rate": 0.0006, + "loss": 3.7530534267425537, + "step": 2501 + }, + { + "epoch": 34.75491480996068, + "grad_norm": 0.19686029851436615, + "learning_rate": 0.0006, + "loss": 3.7059555053710938, + "step": 2502 + }, + { + "epoch": 34.768894713848844, + "grad_norm": 0.20120355486869812, + "learning_rate": 0.0006, + "loss": 3.7271084785461426, + "step": 2503 + }, + { + "epoch": 34.782874617737, + "grad_norm": 0.20880399644374847, + "learning_rate": 0.0006, + "loss": 3.712137460708618, + "step": 2504 + }, + { + "epoch": 34.796854521625164, + "grad_norm": 0.22139988839626312, + "learning_rate": 0.0006, + "loss": 3.731245517730713, + "step": 2505 + }, + { + "epoch": 34.81083442551333, + "grad_norm": 0.22756224870681763, + "learning_rate": 0.0006, + "loss": 3.708987236022949, + "step": 2506 + }, + { + "epoch": 34.824814329401484, + "grad_norm": 0.22332409024238586, + "learning_rate": 0.0006, + "loss": 3.7365565299987793, + "step": 2507 + }, + { + "epoch": 34.83879423328965, + "grad_norm": 0.19599054753780365, + "learning_rate": 0.0006, + "loss": 3.7266454696655273, + "step": 2508 + }, + { + "epoch": 34.8527741371778, + "grad_norm": 0.19843019545078278, + "learning_rate": 0.0006, + "loss": 3.7225422859191895, + "step": 2509 + }, + { + "epoch": 34.86675404106597, + "grad_norm": 0.20147928595542908, + "learning_rate": 0.0006, + "loss": 3.7282514572143555, + "step": 2510 + }, + { + "epoch": 34.88073394495413, + "grad_norm": 0.19489876925945282, + "learning_rate": 0.0006, + "loss": 3.694852113723755, + "step": 2511 + }, + { + "epoch": 34.89471384884229, + "grad_norm": 0.20680078864097595, + "learning_rate": 0.0006, + "loss": 3.74678635597229, + "step": 2512 + }, + { + "epoch": 34.90869375273045, + "grad_norm": 0.2233233004808426, + "learning_rate": 0.0006, + "loss": 3.726475238800049, + "step": 2513 + }, + { + "epoch": 34.92267365661861, + "grad_norm": 0.20702993869781494, + "learning_rate": 0.0006, + "loss": 3.6946351528167725, + "step": 2514 + }, + { + "epoch": 34.93665356050677, + "grad_norm": 0.2081725299358368, + "learning_rate": 0.0006, + "loss": 3.7101621627807617, + "step": 2515 + }, + { + "epoch": 34.95063346439493, + "grad_norm": 0.20551837980747223, + "learning_rate": 0.0006, + "loss": 3.7060177326202393, + "step": 2516 + }, + { + "epoch": 34.964613368283096, + "grad_norm": 0.2106839418411255, + "learning_rate": 0.0006, + "loss": 3.7460474967956543, + "step": 2517 + }, + { + "epoch": 34.97859327217125, + "grad_norm": 0.18512766063213348, + "learning_rate": 0.0006, + "loss": 3.719280242919922, + "step": 2518 + }, + { + "epoch": 34.992573176059416, + "grad_norm": 0.1802142709493637, + "learning_rate": 0.0006, + "loss": 3.698255777359009, + "step": 2519 + }, + { + "epoch": 35.0, + "grad_norm": 0.2028084248304367, + "learning_rate": 0.0006, + "loss": 3.711136817932129, + "step": 2520 + }, + { + "epoch": 35.0, + "eval_loss": 4.006688117980957, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 2520 + }, + { + "epoch": 35.01397990388816, + "grad_norm": 0.1973012387752533, + "learning_rate": 0.0006, + "loss": 3.7108325958251953, + "step": 2521 + }, + { + "epoch": 35.02795980777632, + "grad_norm": 0.23763646185398102, + "learning_rate": 0.0006, + "loss": 3.675785541534424, + "step": 2522 + }, + { + "epoch": 35.04193971166448, + "grad_norm": 0.24403199553489685, + "learning_rate": 0.0006, + "loss": 3.7034249305725098, + "step": 2523 + }, + { + "epoch": 35.05591961555265, + "grad_norm": 0.19050131738185883, + "learning_rate": 0.0006, + "loss": 3.6984221935272217, + "step": 2524 + }, + { + "epoch": 35.0698995194408, + "grad_norm": 0.21389710903167725, + "learning_rate": 0.0006, + "loss": 3.6641085147857666, + "step": 2525 + }, + { + "epoch": 35.083879423328966, + "grad_norm": 0.23103152215480804, + "learning_rate": 0.0006, + "loss": 3.722912311553955, + "step": 2526 + }, + { + "epoch": 35.09785932721712, + "grad_norm": 0.2197326272726059, + "learning_rate": 0.0006, + "loss": 3.696568727493286, + "step": 2527 + }, + { + "epoch": 35.111839231105286, + "grad_norm": 0.20877327024936676, + "learning_rate": 0.0006, + "loss": 3.666700601577759, + "step": 2528 + }, + { + "epoch": 35.12581913499345, + "grad_norm": 0.20904001593589783, + "learning_rate": 0.0006, + "loss": 3.6896979808807373, + "step": 2529 + }, + { + "epoch": 35.139799038881605, + "grad_norm": 0.1947423666715622, + "learning_rate": 0.0006, + "loss": 3.6647095680236816, + "step": 2530 + }, + { + "epoch": 35.15377894276977, + "grad_norm": 0.2134019434452057, + "learning_rate": 0.0006, + "loss": 3.696993589401245, + "step": 2531 + }, + { + "epoch": 35.16775884665793, + "grad_norm": 0.2299254685640335, + "learning_rate": 0.0006, + "loss": 3.7067925930023193, + "step": 2532 + }, + { + "epoch": 35.18173875054609, + "grad_norm": 0.219585582613945, + "learning_rate": 0.0006, + "loss": 3.6680960655212402, + "step": 2533 + }, + { + "epoch": 35.19571865443425, + "grad_norm": 0.2146025449037552, + "learning_rate": 0.0006, + "loss": 3.7185046672821045, + "step": 2534 + }, + { + "epoch": 35.20969855832241, + "grad_norm": 0.22748060524463654, + "learning_rate": 0.0006, + "loss": 3.659202814102173, + "step": 2535 + }, + { + "epoch": 35.22367846221057, + "grad_norm": 0.22272273898124695, + "learning_rate": 0.0006, + "loss": 3.7002370357513428, + "step": 2536 + }, + { + "epoch": 35.237658366098735, + "grad_norm": 0.23827379941940308, + "learning_rate": 0.0006, + "loss": 3.714664936065674, + "step": 2537 + }, + { + "epoch": 35.25163826998689, + "grad_norm": 0.2328156679868698, + "learning_rate": 0.0006, + "loss": 3.665173292160034, + "step": 2538 + }, + { + "epoch": 35.265618173875055, + "grad_norm": 0.2573475241661072, + "learning_rate": 0.0006, + "loss": 3.7073206901550293, + "step": 2539 + }, + { + "epoch": 35.27959807776322, + "grad_norm": 0.2411472052335739, + "learning_rate": 0.0006, + "loss": 3.697751045227051, + "step": 2540 + }, + { + "epoch": 35.293577981651374, + "grad_norm": 0.22836148738861084, + "learning_rate": 0.0006, + "loss": 3.7219419479370117, + "step": 2541 + }, + { + "epoch": 35.30755788553954, + "grad_norm": 0.2225421667098999, + "learning_rate": 0.0006, + "loss": 3.69516658782959, + "step": 2542 + }, + { + "epoch": 35.3215377894277, + "grad_norm": 0.2180362343788147, + "learning_rate": 0.0006, + "loss": 3.714043378829956, + "step": 2543 + }, + { + "epoch": 35.33551769331586, + "grad_norm": 0.23638299107551575, + "learning_rate": 0.0006, + "loss": 3.7449421882629395, + "step": 2544 + }, + { + "epoch": 35.34949759720402, + "grad_norm": 0.21792089939117432, + "learning_rate": 0.0006, + "loss": 3.7029948234558105, + "step": 2545 + }, + { + "epoch": 35.36347750109218, + "grad_norm": 0.23266112804412842, + "learning_rate": 0.0006, + "loss": 3.683509111404419, + "step": 2546 + }, + { + "epoch": 35.37745740498034, + "grad_norm": 0.24203059077262878, + "learning_rate": 0.0006, + "loss": 3.68572998046875, + "step": 2547 + }, + { + "epoch": 35.391437308868504, + "grad_norm": 0.2543564438819885, + "learning_rate": 0.0006, + "loss": 3.6902432441711426, + "step": 2548 + }, + { + "epoch": 35.40541721275666, + "grad_norm": 0.22990189492702484, + "learning_rate": 0.0006, + "loss": 3.708810329437256, + "step": 2549 + }, + { + "epoch": 35.419397116644824, + "grad_norm": 0.2594352662563324, + "learning_rate": 0.0006, + "loss": 3.7312886714935303, + "step": 2550 + }, + { + "epoch": 35.43337702053299, + "grad_norm": 0.27525269985198975, + "learning_rate": 0.0006, + "loss": 3.6963448524475098, + "step": 2551 + }, + { + "epoch": 35.44735692442114, + "grad_norm": 0.2436525970697403, + "learning_rate": 0.0006, + "loss": 3.6733713150024414, + "step": 2552 + }, + { + "epoch": 35.46133682830931, + "grad_norm": 0.25500908493995667, + "learning_rate": 0.0006, + "loss": 3.7104358673095703, + "step": 2553 + }, + { + "epoch": 35.47531673219746, + "grad_norm": 0.23504602909088135, + "learning_rate": 0.0006, + "loss": 3.7052388191223145, + "step": 2554 + }, + { + "epoch": 35.489296636085626, + "grad_norm": 0.2277563363313675, + "learning_rate": 0.0006, + "loss": 3.708714008331299, + "step": 2555 + }, + { + "epoch": 35.50327653997379, + "grad_norm": 0.25224778056144714, + "learning_rate": 0.0006, + "loss": 3.699676990509033, + "step": 2556 + }, + { + "epoch": 35.517256443861946, + "grad_norm": 0.28308045864105225, + "learning_rate": 0.0006, + "loss": 3.7005362510681152, + "step": 2557 + }, + { + "epoch": 35.53123634775011, + "grad_norm": 0.25858840346336365, + "learning_rate": 0.0006, + "loss": 3.689999580383301, + "step": 2558 + }, + { + "epoch": 35.54521625163827, + "grad_norm": 0.23497405648231506, + "learning_rate": 0.0006, + "loss": 3.695793867111206, + "step": 2559 + }, + { + "epoch": 35.55919615552643, + "grad_norm": 0.22375957667827606, + "learning_rate": 0.0006, + "loss": 3.7011494636535645, + "step": 2560 + }, + { + "epoch": 35.57317605941459, + "grad_norm": 0.21056118607521057, + "learning_rate": 0.0006, + "loss": 3.722623586654663, + "step": 2561 + }, + { + "epoch": 35.58715596330275, + "grad_norm": 0.22504374384880066, + "learning_rate": 0.0006, + "loss": 3.7211966514587402, + "step": 2562 + }, + { + "epoch": 35.60113586719091, + "grad_norm": 0.22349773347377777, + "learning_rate": 0.0006, + "loss": 3.6901848316192627, + "step": 2563 + }, + { + "epoch": 35.615115771079076, + "grad_norm": 0.219499409198761, + "learning_rate": 0.0006, + "loss": 3.709026575088501, + "step": 2564 + }, + { + "epoch": 35.62909567496723, + "grad_norm": 0.20461080968379974, + "learning_rate": 0.0006, + "loss": 3.72456693649292, + "step": 2565 + }, + { + "epoch": 35.643075578855395, + "grad_norm": 0.2083883285522461, + "learning_rate": 0.0006, + "loss": 3.6845502853393555, + "step": 2566 + }, + { + "epoch": 35.65705548274356, + "grad_norm": 0.19694562256336212, + "learning_rate": 0.0006, + "loss": 3.668515682220459, + "step": 2567 + }, + { + "epoch": 35.671035386631715, + "grad_norm": 0.2107984870672226, + "learning_rate": 0.0006, + "loss": 3.700723648071289, + "step": 2568 + }, + { + "epoch": 35.68501529051988, + "grad_norm": 0.18878720700740814, + "learning_rate": 0.0006, + "loss": 3.689150333404541, + "step": 2569 + }, + { + "epoch": 35.69899519440804, + "grad_norm": 0.20058824121952057, + "learning_rate": 0.0006, + "loss": 3.7048301696777344, + "step": 2570 + }, + { + "epoch": 35.7129750982962, + "grad_norm": 0.2200566679239273, + "learning_rate": 0.0006, + "loss": 3.6944580078125, + "step": 2571 + }, + { + "epoch": 35.72695500218436, + "grad_norm": 0.22200417518615723, + "learning_rate": 0.0006, + "loss": 3.715193510055542, + "step": 2572 + }, + { + "epoch": 35.74093490607252, + "grad_norm": 0.21011404693126678, + "learning_rate": 0.0006, + "loss": 3.737387180328369, + "step": 2573 + }, + { + "epoch": 35.75491480996068, + "grad_norm": 0.21139226853847504, + "learning_rate": 0.0006, + "loss": 3.695596694946289, + "step": 2574 + }, + { + "epoch": 35.768894713848844, + "grad_norm": 0.2112506479024887, + "learning_rate": 0.0006, + "loss": 3.7264227867126465, + "step": 2575 + }, + { + "epoch": 35.782874617737, + "grad_norm": 0.21528391540050507, + "learning_rate": 0.0006, + "loss": 3.7089385986328125, + "step": 2576 + }, + { + "epoch": 35.796854521625164, + "grad_norm": 0.2127804309129715, + "learning_rate": 0.0006, + "loss": 3.6995301246643066, + "step": 2577 + }, + { + "epoch": 35.81083442551333, + "grad_norm": 0.19839410483837128, + "learning_rate": 0.0006, + "loss": 3.7233223915100098, + "step": 2578 + }, + { + "epoch": 35.824814329401484, + "grad_norm": 0.19098423421382904, + "learning_rate": 0.0006, + "loss": 3.7108311653137207, + "step": 2579 + }, + { + "epoch": 35.83879423328965, + "grad_norm": 0.18697232007980347, + "learning_rate": 0.0006, + "loss": 3.725001811981201, + "step": 2580 + }, + { + "epoch": 35.8527741371778, + "grad_norm": 0.21051937341690063, + "learning_rate": 0.0006, + "loss": 3.7310993671417236, + "step": 2581 + }, + { + "epoch": 35.86675404106597, + "grad_norm": 0.2239079475402832, + "learning_rate": 0.0006, + "loss": 3.739056348800659, + "step": 2582 + }, + { + "epoch": 35.88073394495413, + "grad_norm": 0.2581230700016022, + "learning_rate": 0.0006, + "loss": 3.697061061859131, + "step": 2583 + }, + { + "epoch": 35.89471384884229, + "grad_norm": 0.25388655066490173, + "learning_rate": 0.0006, + "loss": 3.7173471450805664, + "step": 2584 + }, + { + "epoch": 35.90869375273045, + "grad_norm": 0.2557796537876129, + "learning_rate": 0.0006, + "loss": 3.7121596336364746, + "step": 2585 + }, + { + "epoch": 35.92267365661861, + "grad_norm": 0.21846474707126617, + "learning_rate": 0.0006, + "loss": 3.7342100143432617, + "step": 2586 + }, + { + "epoch": 35.93665356050677, + "grad_norm": 0.19810006022453308, + "learning_rate": 0.0006, + "loss": 3.7266340255737305, + "step": 2587 + }, + { + "epoch": 35.95063346439493, + "grad_norm": 0.28599923849105835, + "learning_rate": 0.0006, + "loss": 3.711876392364502, + "step": 2588 + }, + { + "epoch": 35.964613368283096, + "grad_norm": 0.3380447030067444, + "learning_rate": 0.0006, + "loss": 3.7611794471740723, + "step": 2589 + }, + { + "epoch": 35.97859327217125, + "grad_norm": 0.2946915328502655, + "learning_rate": 0.0006, + "loss": 3.7659358978271484, + "step": 2590 + }, + { + "epoch": 35.992573176059416, + "grad_norm": 0.2310202419757843, + "learning_rate": 0.0006, + "loss": 3.7124969959259033, + "step": 2591 + }, + { + "epoch": 36.0, + "grad_norm": 0.22294320166110992, + "learning_rate": 0.0006, + "loss": 3.725590705871582, + "step": 2592 + }, + { + "epoch": 36.0, + "eval_loss": 4.015472412109375, + "eval_runtime": 44.4903, + "eval_samples_per_second": 54.888, + "eval_steps_per_second": 3.439, + "step": 2592 + }, + { + "epoch": 36.01397990388816, + "grad_norm": 0.2442479431629181, + "learning_rate": 0.0006, + "loss": 3.6670360565185547, + "step": 2593 + }, + { + "epoch": 36.02795980777632, + "grad_norm": 0.27702075242996216, + "learning_rate": 0.0006, + "loss": 3.685915946960449, + "step": 2594 + }, + { + "epoch": 36.04193971166448, + "grad_norm": 0.22300852835178375, + "learning_rate": 0.0006, + "loss": 3.6993556022644043, + "step": 2595 + }, + { + "epoch": 36.05591961555265, + "grad_norm": 0.22456000745296478, + "learning_rate": 0.0006, + "loss": 3.6937754154205322, + "step": 2596 + }, + { + "epoch": 36.0698995194408, + "grad_norm": 0.23157717287540436, + "learning_rate": 0.0006, + "loss": 3.6573898792266846, + "step": 2597 + }, + { + "epoch": 36.083879423328966, + "grad_norm": 0.23002618551254272, + "learning_rate": 0.0006, + "loss": 3.6565046310424805, + "step": 2598 + }, + { + "epoch": 36.09785932721712, + "grad_norm": 0.223054900765419, + "learning_rate": 0.0006, + "loss": 3.6964457035064697, + "step": 2599 + }, + { + "epoch": 36.111839231105286, + "grad_norm": 0.21883328258991241, + "learning_rate": 0.0006, + "loss": 3.674757480621338, + "step": 2600 + }, + { + "epoch": 36.12581913499345, + "grad_norm": 0.21729037165641785, + "learning_rate": 0.0006, + "loss": 3.684323310852051, + "step": 2601 + }, + { + "epoch": 36.139799038881605, + "grad_norm": 0.21299415826797485, + "learning_rate": 0.0006, + "loss": 3.6554017066955566, + "step": 2602 + }, + { + "epoch": 36.15377894276977, + "grad_norm": 0.22723016142845154, + "learning_rate": 0.0006, + "loss": 3.666767120361328, + "step": 2603 + }, + { + "epoch": 36.16775884665793, + "grad_norm": 0.23663052916526794, + "learning_rate": 0.0006, + "loss": 3.692861557006836, + "step": 2604 + }, + { + "epoch": 36.18173875054609, + "grad_norm": 0.23544131219387054, + "learning_rate": 0.0006, + "loss": 3.6648998260498047, + "step": 2605 + }, + { + "epoch": 36.19571865443425, + "grad_norm": 0.24303849041461945, + "learning_rate": 0.0006, + "loss": 3.66096568107605, + "step": 2606 + }, + { + "epoch": 36.20969855832241, + "grad_norm": 0.23385047912597656, + "learning_rate": 0.0006, + "loss": 3.6636829376220703, + "step": 2607 + }, + { + "epoch": 36.22367846221057, + "grad_norm": 0.21988974511623383, + "learning_rate": 0.0006, + "loss": 3.685072660446167, + "step": 2608 + }, + { + "epoch": 36.237658366098735, + "grad_norm": 0.2365395724773407, + "learning_rate": 0.0006, + "loss": 3.7292234897613525, + "step": 2609 + }, + { + "epoch": 36.25163826998689, + "grad_norm": 0.23791152238845825, + "learning_rate": 0.0006, + "loss": 3.6870808601379395, + "step": 2610 + }, + { + "epoch": 36.265618173875055, + "grad_norm": 0.22954145073890686, + "learning_rate": 0.0006, + "loss": 3.705406904220581, + "step": 2611 + }, + { + "epoch": 36.27959807776322, + "grad_norm": 0.22748000919818878, + "learning_rate": 0.0006, + "loss": 3.680781841278076, + "step": 2612 + }, + { + "epoch": 36.293577981651374, + "grad_norm": 0.21827450394630432, + "learning_rate": 0.0006, + "loss": 3.6794490814208984, + "step": 2613 + }, + { + "epoch": 36.30755788553954, + "grad_norm": 0.2406153380870819, + "learning_rate": 0.0006, + "loss": 3.690225124359131, + "step": 2614 + }, + { + "epoch": 36.3215377894277, + "grad_norm": 0.2406231164932251, + "learning_rate": 0.0006, + "loss": 3.665867805480957, + "step": 2615 + }, + { + "epoch": 36.33551769331586, + "grad_norm": 0.20494551956653595, + "learning_rate": 0.0006, + "loss": 3.701937198638916, + "step": 2616 + }, + { + "epoch": 36.34949759720402, + "grad_norm": 0.1995103359222412, + "learning_rate": 0.0006, + "loss": 3.702033758163452, + "step": 2617 + }, + { + "epoch": 36.36347750109218, + "grad_norm": 0.1902446299791336, + "learning_rate": 0.0006, + "loss": 3.6809959411621094, + "step": 2618 + }, + { + "epoch": 36.37745740498034, + "grad_norm": 0.1810801923274994, + "learning_rate": 0.0006, + "loss": 3.689852714538574, + "step": 2619 + }, + { + "epoch": 36.391437308868504, + "grad_norm": 0.1882476955652237, + "learning_rate": 0.0006, + "loss": 3.710911273956299, + "step": 2620 + }, + { + "epoch": 36.40541721275666, + "grad_norm": 0.1912514567375183, + "learning_rate": 0.0006, + "loss": 3.7054009437561035, + "step": 2621 + }, + { + "epoch": 36.419397116644824, + "grad_norm": 0.19080901145935059, + "learning_rate": 0.0006, + "loss": 3.681145191192627, + "step": 2622 + }, + { + "epoch": 36.43337702053299, + "grad_norm": 0.193472221493721, + "learning_rate": 0.0006, + "loss": 3.661360740661621, + "step": 2623 + }, + { + "epoch": 36.44735692442114, + "grad_norm": 0.2034357339143753, + "learning_rate": 0.0006, + "loss": 3.706930160522461, + "step": 2624 + }, + { + "epoch": 36.46133682830931, + "grad_norm": 0.19924600422382355, + "learning_rate": 0.0006, + "loss": 3.6903364658355713, + "step": 2625 + }, + { + "epoch": 36.47531673219746, + "grad_norm": 0.20556052029132843, + "learning_rate": 0.0006, + "loss": 3.6974234580993652, + "step": 2626 + }, + { + "epoch": 36.489296636085626, + "grad_norm": 0.19628804922103882, + "learning_rate": 0.0006, + "loss": 3.6947717666625977, + "step": 2627 + }, + { + "epoch": 36.50327653997379, + "grad_norm": 0.18071836233139038, + "learning_rate": 0.0006, + "loss": 3.717582941055298, + "step": 2628 + }, + { + "epoch": 36.517256443861946, + "grad_norm": 0.20531553030014038, + "learning_rate": 0.0006, + "loss": 3.680610179901123, + "step": 2629 + }, + { + "epoch": 36.53123634775011, + "grad_norm": 0.23789429664611816, + "learning_rate": 0.0006, + "loss": 3.711493968963623, + "step": 2630 + }, + { + "epoch": 36.54521625163827, + "grad_norm": 0.23027348518371582, + "learning_rate": 0.0006, + "loss": 3.6827993392944336, + "step": 2631 + }, + { + "epoch": 36.55919615552643, + "grad_norm": 0.21941570937633514, + "learning_rate": 0.0006, + "loss": 3.682286262512207, + "step": 2632 + }, + { + "epoch": 36.57317605941459, + "grad_norm": 0.21213553845882416, + "learning_rate": 0.0006, + "loss": 3.6828765869140625, + "step": 2633 + }, + { + "epoch": 36.58715596330275, + "grad_norm": 0.21929772198200226, + "learning_rate": 0.0006, + "loss": 3.697030544281006, + "step": 2634 + }, + { + "epoch": 36.60113586719091, + "grad_norm": 0.2101750522851944, + "learning_rate": 0.0006, + "loss": 3.723201274871826, + "step": 2635 + }, + { + "epoch": 36.615115771079076, + "grad_norm": 0.19014132022857666, + "learning_rate": 0.0006, + "loss": 3.6989338397979736, + "step": 2636 + }, + { + "epoch": 36.62909567496723, + "grad_norm": 0.21566815674304962, + "learning_rate": 0.0006, + "loss": 3.6968226432800293, + "step": 2637 + }, + { + "epoch": 36.643075578855395, + "grad_norm": 0.20500224828720093, + "learning_rate": 0.0006, + "loss": 3.689640522003174, + "step": 2638 + }, + { + "epoch": 36.65705548274356, + "grad_norm": 0.210358127951622, + "learning_rate": 0.0006, + "loss": 3.6996328830718994, + "step": 2639 + }, + { + "epoch": 36.671035386631715, + "grad_norm": 0.2061213105916977, + "learning_rate": 0.0006, + "loss": 3.7019221782684326, + "step": 2640 + }, + { + "epoch": 36.68501529051988, + "grad_norm": 0.21494871377944946, + "learning_rate": 0.0006, + "loss": 3.6634578704833984, + "step": 2641 + }, + { + "epoch": 36.69899519440804, + "grad_norm": 0.19586549699306488, + "learning_rate": 0.0006, + "loss": 3.708131790161133, + "step": 2642 + }, + { + "epoch": 36.7129750982962, + "grad_norm": 0.22805732488632202, + "learning_rate": 0.0006, + "loss": 3.6977362632751465, + "step": 2643 + }, + { + "epoch": 36.72695500218436, + "grad_norm": 0.28397148847579956, + "learning_rate": 0.0006, + "loss": 3.6847963333129883, + "step": 2644 + }, + { + "epoch": 36.74093490607252, + "grad_norm": 0.28333187103271484, + "learning_rate": 0.0006, + "loss": 3.734257459640503, + "step": 2645 + }, + { + "epoch": 36.75491480996068, + "grad_norm": 0.22314953804016113, + "learning_rate": 0.0006, + "loss": 3.6871445178985596, + "step": 2646 + }, + { + "epoch": 36.768894713848844, + "grad_norm": 0.20580267906188965, + "learning_rate": 0.0006, + "loss": 3.692736864089966, + "step": 2647 + }, + { + "epoch": 36.782874617737, + "grad_norm": 0.22695036232471466, + "learning_rate": 0.0006, + "loss": 3.697096824645996, + "step": 2648 + }, + { + "epoch": 36.796854521625164, + "grad_norm": 0.25916165113449097, + "learning_rate": 0.0006, + "loss": 3.7099573612213135, + "step": 2649 + }, + { + "epoch": 36.81083442551333, + "grad_norm": 0.26024341583251953, + "learning_rate": 0.0006, + "loss": 3.7161359786987305, + "step": 2650 + }, + { + "epoch": 36.824814329401484, + "grad_norm": 0.2340802699327469, + "learning_rate": 0.0006, + "loss": 3.708864688873291, + "step": 2651 + }, + { + "epoch": 36.83879423328965, + "grad_norm": 0.23312288522720337, + "learning_rate": 0.0006, + "loss": 3.7351365089416504, + "step": 2652 + }, + { + "epoch": 36.8527741371778, + "grad_norm": 0.22953253984451294, + "learning_rate": 0.0006, + "loss": 3.735302209854126, + "step": 2653 + }, + { + "epoch": 36.86675404106597, + "grad_norm": 0.21928828954696655, + "learning_rate": 0.0006, + "loss": 3.72445011138916, + "step": 2654 + }, + { + "epoch": 36.88073394495413, + "grad_norm": 0.22865602374076843, + "learning_rate": 0.0006, + "loss": 3.714867115020752, + "step": 2655 + }, + { + "epoch": 36.89471384884229, + "grad_norm": 0.23255643248558044, + "learning_rate": 0.0006, + "loss": 3.695101261138916, + "step": 2656 + }, + { + "epoch": 36.90869375273045, + "grad_norm": 0.2491452544927597, + "learning_rate": 0.0006, + "loss": 3.70692777633667, + "step": 2657 + }, + { + "epoch": 36.92267365661861, + "grad_norm": 0.27367597818374634, + "learning_rate": 0.0006, + "loss": 3.6906654834747314, + "step": 2658 + }, + { + "epoch": 36.93665356050677, + "grad_norm": 0.26728564500808716, + "learning_rate": 0.0006, + "loss": 3.7092056274414062, + "step": 2659 + }, + { + "epoch": 36.95063346439493, + "grad_norm": 0.207070454955101, + "learning_rate": 0.0006, + "loss": 3.7152137756347656, + "step": 2660 + }, + { + "epoch": 36.964613368283096, + "grad_norm": 0.21671561896800995, + "learning_rate": 0.0006, + "loss": 3.7130112648010254, + "step": 2661 + }, + { + "epoch": 36.97859327217125, + "grad_norm": 0.2140914648771286, + "learning_rate": 0.0006, + "loss": 3.7286999225616455, + "step": 2662 + }, + { + "epoch": 36.992573176059416, + "grad_norm": 0.21324342489242554, + "learning_rate": 0.0006, + "loss": 3.6828715801239014, + "step": 2663 + }, + { + "epoch": 37.0, + "grad_norm": 0.22366146743297577, + "learning_rate": 0.0006, + "loss": 3.69199800491333, + "step": 2664 + }, + { + "epoch": 37.0, + "eval_loss": 4.011842727661133, + "eval_runtime": 44.7825, + "eval_samples_per_second": 54.53, + "eval_steps_per_second": 3.417, + "step": 2664 + }, + { + "epoch": 37.01397990388816, + "grad_norm": 0.22093228995800018, + "learning_rate": 0.0006, + "loss": 3.6940979957580566, + "step": 2665 + }, + { + "epoch": 37.02795980777632, + "grad_norm": 0.20821493864059448, + "learning_rate": 0.0006, + "loss": 3.670813798904419, + "step": 2666 + }, + { + "epoch": 37.04193971166448, + "grad_norm": 0.22330114245414734, + "learning_rate": 0.0006, + "loss": 3.6392664909362793, + "step": 2667 + }, + { + "epoch": 37.05591961555265, + "grad_norm": 0.2224634289741516, + "learning_rate": 0.0006, + "loss": 3.660856246948242, + "step": 2668 + }, + { + "epoch": 37.0698995194408, + "grad_norm": 0.2255052626132965, + "learning_rate": 0.0006, + "loss": 3.6393589973449707, + "step": 2669 + }, + { + "epoch": 37.083879423328966, + "grad_norm": 0.23462942242622375, + "learning_rate": 0.0006, + "loss": 3.684429168701172, + "step": 2670 + }, + { + "epoch": 37.09785932721712, + "grad_norm": 0.23743386566638947, + "learning_rate": 0.0006, + "loss": 3.67622709274292, + "step": 2671 + }, + { + "epoch": 37.111839231105286, + "grad_norm": 0.2276267409324646, + "learning_rate": 0.0006, + "loss": 3.6487984657287598, + "step": 2672 + }, + { + "epoch": 37.12581913499345, + "grad_norm": 0.24448423087596893, + "learning_rate": 0.0006, + "loss": 3.67645525932312, + "step": 2673 + }, + { + "epoch": 37.139799038881605, + "grad_norm": 0.2428973764181137, + "learning_rate": 0.0006, + "loss": 3.681497097015381, + "step": 2674 + }, + { + "epoch": 37.15377894276977, + "grad_norm": 0.21918512880802155, + "learning_rate": 0.0006, + "loss": 3.67134428024292, + "step": 2675 + }, + { + "epoch": 37.16775884665793, + "grad_norm": 0.2103680670261383, + "learning_rate": 0.0006, + "loss": 3.6508708000183105, + "step": 2676 + }, + { + "epoch": 37.18173875054609, + "grad_norm": 0.20674929022789001, + "learning_rate": 0.0006, + "loss": 3.6904029846191406, + "step": 2677 + }, + { + "epoch": 37.19571865443425, + "grad_norm": 0.21867282688617706, + "learning_rate": 0.0006, + "loss": 3.697535514831543, + "step": 2678 + }, + { + "epoch": 37.20969855832241, + "grad_norm": 0.22919587790966034, + "learning_rate": 0.0006, + "loss": 3.675565004348755, + "step": 2679 + }, + { + "epoch": 37.22367846221057, + "grad_norm": 0.22255578637123108, + "learning_rate": 0.0006, + "loss": 3.6830129623413086, + "step": 2680 + }, + { + "epoch": 37.237658366098735, + "grad_norm": 0.22460198402404785, + "learning_rate": 0.0006, + "loss": 3.6872951984405518, + "step": 2681 + }, + { + "epoch": 37.25163826998689, + "grad_norm": 0.23677165806293488, + "learning_rate": 0.0006, + "loss": 3.6779165267944336, + "step": 2682 + }, + { + "epoch": 37.265618173875055, + "grad_norm": 0.23231394588947296, + "learning_rate": 0.0006, + "loss": 3.6831178665161133, + "step": 2683 + }, + { + "epoch": 37.27959807776322, + "grad_norm": 0.22131343185901642, + "learning_rate": 0.0006, + "loss": 3.664295196533203, + "step": 2684 + }, + { + "epoch": 37.293577981651374, + "grad_norm": 0.23424340784549713, + "learning_rate": 0.0006, + "loss": 3.696678638458252, + "step": 2685 + }, + { + "epoch": 37.30755788553954, + "grad_norm": 0.22695423662662506, + "learning_rate": 0.0006, + "loss": 3.6697473526000977, + "step": 2686 + }, + { + "epoch": 37.3215377894277, + "grad_norm": 0.2165997475385666, + "learning_rate": 0.0006, + "loss": 3.6801891326904297, + "step": 2687 + }, + { + "epoch": 37.33551769331586, + "grad_norm": 0.2241077572107315, + "learning_rate": 0.0006, + "loss": 3.6957011222839355, + "step": 2688 + }, + { + "epoch": 37.34949759720402, + "grad_norm": 0.21191732585430145, + "learning_rate": 0.0006, + "loss": 3.6812620162963867, + "step": 2689 + }, + { + "epoch": 37.36347750109218, + "grad_norm": 0.1827201396226883, + "learning_rate": 0.0006, + "loss": 3.6797738075256348, + "step": 2690 + }, + { + "epoch": 37.37745740498034, + "grad_norm": 0.20793627202510834, + "learning_rate": 0.0006, + "loss": 3.672819137573242, + "step": 2691 + }, + { + "epoch": 37.391437308868504, + "grad_norm": 0.19737116992473602, + "learning_rate": 0.0006, + "loss": 3.667839527130127, + "step": 2692 + }, + { + "epoch": 37.40541721275666, + "grad_norm": 0.18670497834682465, + "learning_rate": 0.0006, + "loss": 3.651561737060547, + "step": 2693 + }, + { + "epoch": 37.419397116644824, + "grad_norm": 0.21385592222213745, + "learning_rate": 0.0006, + "loss": 3.717456340789795, + "step": 2694 + }, + { + "epoch": 37.43337702053299, + "grad_norm": 0.20590044558048248, + "learning_rate": 0.0006, + "loss": 3.6950271129608154, + "step": 2695 + }, + { + "epoch": 37.44735692442114, + "grad_norm": 0.1992103010416031, + "learning_rate": 0.0006, + "loss": 3.687854290008545, + "step": 2696 + }, + { + "epoch": 37.46133682830931, + "grad_norm": 0.2004154473543167, + "learning_rate": 0.0006, + "loss": 3.695838451385498, + "step": 2697 + }, + { + "epoch": 37.47531673219746, + "grad_norm": 0.2019810527563095, + "learning_rate": 0.0006, + "loss": 3.690431594848633, + "step": 2698 + }, + { + "epoch": 37.489296636085626, + "grad_norm": 0.2192547768354416, + "learning_rate": 0.0006, + "loss": 3.6743836402893066, + "step": 2699 + }, + { + "epoch": 37.50327653997379, + "grad_norm": 0.2568076550960541, + "learning_rate": 0.0006, + "loss": 3.6857337951660156, + "step": 2700 + }, + { + "epoch": 37.517256443861946, + "grad_norm": 0.20050311088562012, + "learning_rate": 0.0006, + "loss": 3.6811180114746094, + "step": 2701 + }, + { + "epoch": 37.53123634775011, + "grad_norm": 0.21008558571338654, + "learning_rate": 0.0006, + "loss": 3.700563907623291, + "step": 2702 + }, + { + "epoch": 37.54521625163827, + "grad_norm": 0.2393747717142105, + "learning_rate": 0.0006, + "loss": 3.679438591003418, + "step": 2703 + }, + { + "epoch": 37.55919615552643, + "grad_norm": 0.2531895041465759, + "learning_rate": 0.0006, + "loss": 3.682903289794922, + "step": 2704 + }, + { + "epoch": 37.57317605941459, + "grad_norm": 0.2372656762599945, + "learning_rate": 0.0006, + "loss": 3.7128796577453613, + "step": 2705 + }, + { + "epoch": 37.58715596330275, + "grad_norm": 0.20020034909248352, + "learning_rate": 0.0006, + "loss": 3.701916217803955, + "step": 2706 + }, + { + "epoch": 37.60113586719091, + "grad_norm": 0.20250852406024933, + "learning_rate": 0.0006, + "loss": 3.6761491298675537, + "step": 2707 + }, + { + "epoch": 37.615115771079076, + "grad_norm": 0.19259589910507202, + "learning_rate": 0.0006, + "loss": 3.715104579925537, + "step": 2708 + }, + { + "epoch": 37.62909567496723, + "grad_norm": 0.19649392366409302, + "learning_rate": 0.0006, + "loss": 3.687556266784668, + "step": 2709 + }, + { + "epoch": 37.643075578855395, + "grad_norm": 0.1909446269273758, + "learning_rate": 0.0006, + "loss": 3.684046745300293, + "step": 2710 + }, + { + "epoch": 37.65705548274356, + "grad_norm": 0.19589872658252716, + "learning_rate": 0.0006, + "loss": 3.707886219024658, + "step": 2711 + }, + { + "epoch": 37.671035386631715, + "grad_norm": 0.19472210109233856, + "learning_rate": 0.0006, + "loss": 3.6837692260742188, + "step": 2712 + }, + { + "epoch": 37.68501529051988, + "grad_norm": 0.22622711956501007, + "learning_rate": 0.0006, + "loss": 3.703619956970215, + "step": 2713 + }, + { + "epoch": 37.69899519440804, + "grad_norm": 0.24314729869365692, + "learning_rate": 0.0006, + "loss": 3.7345223426818848, + "step": 2714 + }, + { + "epoch": 37.7129750982962, + "grad_norm": 0.23934306204319, + "learning_rate": 0.0006, + "loss": 3.687809705734253, + "step": 2715 + }, + { + "epoch": 37.72695500218436, + "grad_norm": 0.24838587641716003, + "learning_rate": 0.0006, + "loss": 3.708613872528076, + "step": 2716 + }, + { + "epoch": 37.74093490607252, + "grad_norm": 0.23191452026367188, + "learning_rate": 0.0006, + "loss": 3.7090163230895996, + "step": 2717 + }, + { + "epoch": 37.75491480996068, + "grad_norm": 0.24574638903141022, + "learning_rate": 0.0006, + "loss": 3.68489146232605, + "step": 2718 + }, + { + "epoch": 37.768894713848844, + "grad_norm": 0.2706749439239502, + "learning_rate": 0.0006, + "loss": 3.687061309814453, + "step": 2719 + }, + { + "epoch": 37.782874617737, + "grad_norm": 0.25955191254615784, + "learning_rate": 0.0006, + "loss": 3.694173812866211, + "step": 2720 + }, + { + "epoch": 37.796854521625164, + "grad_norm": 0.22040610015392303, + "learning_rate": 0.0006, + "loss": 3.701871871948242, + "step": 2721 + }, + { + "epoch": 37.81083442551333, + "grad_norm": 0.22328512370586395, + "learning_rate": 0.0006, + "loss": 3.7082555294036865, + "step": 2722 + }, + { + "epoch": 37.824814329401484, + "grad_norm": 0.2290581911802292, + "learning_rate": 0.0006, + "loss": 3.7023987770080566, + "step": 2723 + }, + { + "epoch": 37.83879423328965, + "grad_norm": 0.23129472136497498, + "learning_rate": 0.0006, + "loss": 3.7101752758026123, + "step": 2724 + }, + { + "epoch": 37.8527741371778, + "grad_norm": 0.21203753352165222, + "learning_rate": 0.0006, + "loss": 3.712129592895508, + "step": 2725 + }, + { + "epoch": 37.86675404106597, + "grad_norm": 0.21938200294971466, + "learning_rate": 0.0006, + "loss": 3.7086095809936523, + "step": 2726 + }, + { + "epoch": 37.88073394495413, + "grad_norm": 0.2203572541475296, + "learning_rate": 0.0006, + "loss": 3.6789026260375977, + "step": 2727 + }, + { + "epoch": 37.89471384884229, + "grad_norm": 0.18146046996116638, + "learning_rate": 0.0006, + "loss": 3.666893243789673, + "step": 2728 + }, + { + "epoch": 37.90869375273045, + "grad_norm": 0.1879623532295227, + "learning_rate": 0.0006, + "loss": 3.69246768951416, + "step": 2729 + }, + { + "epoch": 37.92267365661861, + "grad_norm": 0.18311670422554016, + "learning_rate": 0.0006, + "loss": 3.682036876678467, + "step": 2730 + }, + { + "epoch": 37.93665356050677, + "grad_norm": 0.1898486614227295, + "learning_rate": 0.0006, + "loss": 3.6683125495910645, + "step": 2731 + }, + { + "epoch": 37.95063346439493, + "grad_norm": 0.1858556717634201, + "learning_rate": 0.0006, + "loss": 3.6879611015319824, + "step": 2732 + }, + { + "epoch": 37.964613368283096, + "grad_norm": 0.19914504885673523, + "learning_rate": 0.0006, + "loss": 3.690250873565674, + "step": 2733 + }, + { + "epoch": 37.97859327217125, + "grad_norm": 0.20406974852085114, + "learning_rate": 0.0006, + "loss": 3.6812171936035156, + "step": 2734 + }, + { + "epoch": 37.992573176059416, + "grad_norm": 0.2003912478685379, + "learning_rate": 0.0006, + "loss": 3.6852147579193115, + "step": 2735 + }, + { + "epoch": 38.0, + "grad_norm": 0.22644472122192383, + "learning_rate": 0.0006, + "loss": 3.645207405090332, + "step": 2736 + }, + { + "epoch": 38.0, + "eval_loss": 3.995000123977661, + "eval_runtime": 45.1644, + "eval_samples_per_second": 54.069, + "eval_steps_per_second": 3.388, + "step": 2736 + }, + { + "epoch": 38.01397990388816, + "grad_norm": 0.1989814043045044, + "learning_rate": 0.0006, + "loss": 3.6511387825012207, + "step": 2737 + }, + { + "epoch": 38.02795980777632, + "grad_norm": 0.203324094414711, + "learning_rate": 0.0006, + "loss": 3.6513094902038574, + "step": 2738 + }, + { + "epoch": 38.04193971166448, + "grad_norm": 0.21504290401935577, + "learning_rate": 0.0006, + "loss": 3.647711992263794, + "step": 2739 + }, + { + "epoch": 38.05591961555265, + "grad_norm": 0.23464815318584442, + "learning_rate": 0.0006, + "loss": 3.6418747901916504, + "step": 2740 + }, + { + "epoch": 38.0698995194408, + "grad_norm": 0.242184117436409, + "learning_rate": 0.0006, + "loss": 3.6741859912872314, + "step": 2741 + }, + { + "epoch": 38.083879423328966, + "grad_norm": 0.23488445580005646, + "learning_rate": 0.0006, + "loss": 3.6710941791534424, + "step": 2742 + }, + { + "epoch": 38.09785932721712, + "grad_norm": 0.20800170302391052, + "learning_rate": 0.0006, + "loss": 3.660001754760742, + "step": 2743 + }, + { + "epoch": 38.111839231105286, + "grad_norm": 0.19505052268505096, + "learning_rate": 0.0006, + "loss": 3.684129238128662, + "step": 2744 + }, + { + "epoch": 38.12581913499345, + "grad_norm": 0.2185833901166916, + "learning_rate": 0.0006, + "loss": 3.656033515930176, + "step": 2745 + }, + { + "epoch": 38.139799038881605, + "grad_norm": 0.21850253641605377, + "learning_rate": 0.0006, + "loss": 3.6818184852600098, + "step": 2746 + }, + { + "epoch": 38.15377894276977, + "grad_norm": 0.2109488695859909, + "learning_rate": 0.0006, + "loss": 3.6485435962677, + "step": 2747 + }, + { + "epoch": 38.16775884665793, + "grad_norm": 0.21059907972812653, + "learning_rate": 0.0006, + "loss": 3.6734395027160645, + "step": 2748 + }, + { + "epoch": 38.18173875054609, + "grad_norm": 0.20741555094718933, + "learning_rate": 0.0006, + "loss": 3.6672463417053223, + "step": 2749 + }, + { + "epoch": 38.19571865443425, + "grad_norm": 0.2130175530910492, + "learning_rate": 0.0006, + "loss": 3.692840576171875, + "step": 2750 + }, + { + "epoch": 38.20969855832241, + "grad_norm": 0.1899138242006302, + "learning_rate": 0.0006, + "loss": 3.675316333770752, + "step": 2751 + }, + { + "epoch": 38.22367846221057, + "grad_norm": 0.218918576836586, + "learning_rate": 0.0006, + "loss": 3.634105920791626, + "step": 2752 + }, + { + "epoch": 38.237658366098735, + "grad_norm": 0.23649370670318604, + "learning_rate": 0.0006, + "loss": 3.6526122093200684, + "step": 2753 + }, + { + "epoch": 38.25163826998689, + "grad_norm": 0.22011931240558624, + "learning_rate": 0.0006, + "loss": 3.6859593391418457, + "step": 2754 + }, + { + "epoch": 38.265618173875055, + "grad_norm": 0.2143620252609253, + "learning_rate": 0.0006, + "loss": 3.656838893890381, + "step": 2755 + }, + { + "epoch": 38.27959807776322, + "grad_norm": 0.24068567156791687, + "learning_rate": 0.0006, + "loss": 3.67006254196167, + "step": 2756 + }, + { + "epoch": 38.293577981651374, + "grad_norm": 0.25773152709007263, + "learning_rate": 0.0006, + "loss": 3.6648950576782227, + "step": 2757 + }, + { + "epoch": 38.30755788553954, + "grad_norm": 0.24213455617427826, + "learning_rate": 0.0006, + "loss": 3.6918864250183105, + "step": 2758 + }, + { + "epoch": 38.3215377894277, + "grad_norm": 0.22463668882846832, + "learning_rate": 0.0006, + "loss": 3.6662540435791016, + "step": 2759 + }, + { + "epoch": 38.33551769331586, + "grad_norm": 0.22541455924510956, + "learning_rate": 0.0006, + "loss": 3.6563215255737305, + "step": 2760 + }, + { + "epoch": 38.34949759720402, + "grad_norm": 0.21833783388137817, + "learning_rate": 0.0006, + "loss": 3.650446891784668, + "step": 2761 + }, + { + "epoch": 38.36347750109218, + "grad_norm": 0.22799745202064514, + "learning_rate": 0.0006, + "loss": 3.7007250785827637, + "step": 2762 + }, + { + "epoch": 38.37745740498034, + "grad_norm": 0.23739562928676605, + "learning_rate": 0.0006, + "loss": 3.667130708694458, + "step": 2763 + }, + { + "epoch": 38.391437308868504, + "grad_norm": 0.23744846880435944, + "learning_rate": 0.0006, + "loss": 3.678760528564453, + "step": 2764 + }, + { + "epoch": 38.40541721275666, + "grad_norm": 0.2677105963230133, + "learning_rate": 0.0006, + "loss": 3.6829030513763428, + "step": 2765 + }, + { + "epoch": 38.419397116644824, + "grad_norm": 0.24490566551685333, + "learning_rate": 0.0006, + "loss": 3.707911491394043, + "step": 2766 + }, + { + "epoch": 38.43337702053299, + "grad_norm": 0.23477254807949066, + "learning_rate": 0.0006, + "loss": 3.680157423019409, + "step": 2767 + }, + { + "epoch": 38.44735692442114, + "grad_norm": 0.26611173152923584, + "learning_rate": 0.0006, + "loss": 3.660834550857544, + "step": 2768 + }, + { + "epoch": 38.46133682830931, + "grad_norm": 0.24505069851875305, + "learning_rate": 0.0006, + "loss": 3.696178436279297, + "step": 2769 + }, + { + "epoch": 38.47531673219746, + "grad_norm": 0.22933335602283478, + "learning_rate": 0.0006, + "loss": 3.6506235599517822, + "step": 2770 + }, + { + "epoch": 38.489296636085626, + "grad_norm": 0.23662401735782623, + "learning_rate": 0.0006, + "loss": 3.680819511413574, + "step": 2771 + }, + { + "epoch": 38.50327653997379, + "grad_norm": 0.27774113416671753, + "learning_rate": 0.0006, + "loss": 3.699146270751953, + "step": 2772 + }, + { + "epoch": 38.517256443861946, + "grad_norm": 0.2881671190261841, + "learning_rate": 0.0006, + "loss": 3.6509652137756348, + "step": 2773 + }, + { + "epoch": 38.53123634775011, + "grad_norm": 0.26570361852645874, + "learning_rate": 0.0006, + "loss": 3.6808385848999023, + "step": 2774 + }, + { + "epoch": 38.54521625163827, + "grad_norm": 0.23043136298656464, + "learning_rate": 0.0006, + "loss": 3.7082371711730957, + "step": 2775 + }, + { + "epoch": 38.55919615552643, + "grad_norm": 0.23730400204658508, + "learning_rate": 0.0006, + "loss": 3.653615951538086, + "step": 2776 + }, + { + "epoch": 38.57317605941459, + "grad_norm": 0.2332635223865509, + "learning_rate": 0.0006, + "loss": 3.6869683265686035, + "step": 2777 + }, + { + "epoch": 38.58715596330275, + "grad_norm": 0.22913676500320435, + "learning_rate": 0.0006, + "loss": 3.6998367309570312, + "step": 2778 + }, + { + "epoch": 38.60113586719091, + "grad_norm": 0.226078599691391, + "learning_rate": 0.0006, + "loss": 3.7051444053649902, + "step": 2779 + }, + { + "epoch": 38.615115771079076, + "grad_norm": 0.2336396723985672, + "learning_rate": 0.0006, + "loss": 3.6964943408966064, + "step": 2780 + }, + { + "epoch": 38.62909567496723, + "grad_norm": 0.23270335793495178, + "learning_rate": 0.0006, + "loss": 3.6741909980773926, + "step": 2781 + }, + { + "epoch": 38.643075578855395, + "grad_norm": 0.19324959814548492, + "learning_rate": 0.0006, + "loss": 3.64506196975708, + "step": 2782 + }, + { + "epoch": 38.65705548274356, + "grad_norm": 0.18551453948020935, + "learning_rate": 0.0006, + "loss": 3.6834206581115723, + "step": 2783 + }, + { + "epoch": 38.671035386631715, + "grad_norm": 0.17392469942569733, + "learning_rate": 0.0006, + "loss": 3.67282772064209, + "step": 2784 + }, + { + "epoch": 38.68501529051988, + "grad_norm": 0.19093742966651917, + "learning_rate": 0.0006, + "loss": 3.6648201942443848, + "step": 2785 + }, + { + "epoch": 38.69899519440804, + "grad_norm": 0.2124558985233307, + "learning_rate": 0.0006, + "loss": 3.712191581726074, + "step": 2786 + }, + { + "epoch": 38.7129750982962, + "grad_norm": 0.2220139354467392, + "learning_rate": 0.0006, + "loss": 3.675504207611084, + "step": 2787 + }, + { + "epoch": 38.72695500218436, + "grad_norm": 0.17677755653858185, + "learning_rate": 0.0006, + "loss": 3.6693475246429443, + "step": 2788 + }, + { + "epoch": 38.74093490607252, + "grad_norm": 0.2002430409193039, + "learning_rate": 0.0006, + "loss": 3.6906018257141113, + "step": 2789 + }, + { + "epoch": 38.75491480996068, + "grad_norm": 0.18844179809093475, + "learning_rate": 0.0006, + "loss": 3.660121440887451, + "step": 2790 + }, + { + "epoch": 38.768894713848844, + "grad_norm": 0.19319336116313934, + "learning_rate": 0.0006, + "loss": 3.6592631340026855, + "step": 2791 + }, + { + "epoch": 38.782874617737, + "grad_norm": 0.18624325096607208, + "learning_rate": 0.0006, + "loss": 3.6935300827026367, + "step": 2792 + }, + { + "epoch": 38.796854521625164, + "grad_norm": 0.2049761712551117, + "learning_rate": 0.0006, + "loss": 3.6702702045440674, + "step": 2793 + }, + { + "epoch": 38.81083442551333, + "grad_norm": 0.2030584216117859, + "learning_rate": 0.0006, + "loss": 3.714639663696289, + "step": 2794 + }, + { + "epoch": 38.824814329401484, + "grad_norm": 0.18989548087120056, + "learning_rate": 0.0006, + "loss": 3.678253412246704, + "step": 2795 + }, + { + "epoch": 38.83879423328965, + "grad_norm": 0.19944126904010773, + "learning_rate": 0.0006, + "loss": 3.648367166519165, + "step": 2796 + }, + { + "epoch": 38.8527741371778, + "grad_norm": 0.2062688171863556, + "learning_rate": 0.0006, + "loss": 3.701514720916748, + "step": 2797 + }, + { + "epoch": 38.86675404106597, + "grad_norm": 0.21475110948085785, + "learning_rate": 0.0006, + "loss": 3.6725993156433105, + "step": 2798 + }, + { + "epoch": 38.88073394495413, + "grad_norm": 0.2240881323814392, + "learning_rate": 0.0006, + "loss": 3.6944539546966553, + "step": 2799 + }, + { + "epoch": 38.89471384884229, + "grad_norm": 0.23074312508106232, + "learning_rate": 0.0006, + "loss": 3.747671365737915, + "step": 2800 + }, + { + "epoch": 38.90869375273045, + "grad_norm": 0.2447938323020935, + "learning_rate": 0.0006, + "loss": 3.6856026649475098, + "step": 2801 + }, + { + "epoch": 38.92267365661861, + "grad_norm": 0.2136487364768982, + "learning_rate": 0.0006, + "loss": 3.710397720336914, + "step": 2802 + }, + { + "epoch": 38.93665356050677, + "grad_norm": 0.21676769852638245, + "learning_rate": 0.0006, + "loss": 3.6911189556121826, + "step": 2803 + }, + { + "epoch": 38.95063346439493, + "grad_norm": 0.2226478010416031, + "learning_rate": 0.0006, + "loss": 3.6902880668640137, + "step": 2804 + }, + { + "epoch": 38.964613368283096, + "grad_norm": 0.2071496546268463, + "learning_rate": 0.0006, + "loss": 3.6831371784210205, + "step": 2805 + }, + { + "epoch": 38.97859327217125, + "grad_norm": 0.19568349421024323, + "learning_rate": 0.0006, + "loss": 3.6897640228271484, + "step": 2806 + }, + { + "epoch": 38.992573176059416, + "grad_norm": 0.19067516922950745, + "learning_rate": 0.0006, + "loss": 3.7096242904663086, + "step": 2807 + }, + { + "epoch": 39.0, + "grad_norm": 0.22872281074523926, + "learning_rate": 0.0006, + "loss": 3.689342975616455, + "step": 2808 + }, + { + "epoch": 39.0, + "eval_loss": 4.001968860626221, + "eval_runtime": 44.8452, + "eval_samples_per_second": 54.454, + "eval_steps_per_second": 3.412, + "step": 2808 + }, + { + "epoch": 39.01397990388816, + "grad_norm": 0.21685896813869476, + "learning_rate": 0.0006, + "loss": 3.638145923614502, + "step": 2809 + }, + { + "epoch": 39.02795980777632, + "grad_norm": 0.20085014402866364, + "learning_rate": 0.0006, + "loss": 3.626654624938965, + "step": 2810 + }, + { + "epoch": 39.04193971166448, + "grad_norm": 0.20615799725055695, + "learning_rate": 0.0006, + "loss": 3.6280088424682617, + "step": 2811 + }, + { + "epoch": 39.05591961555265, + "grad_norm": 0.23471905291080475, + "learning_rate": 0.0006, + "loss": 3.6444239616394043, + "step": 2812 + }, + { + "epoch": 39.0698995194408, + "grad_norm": 0.22207780182361603, + "learning_rate": 0.0006, + "loss": 3.6276912689208984, + "step": 2813 + }, + { + "epoch": 39.083879423328966, + "grad_norm": 0.23354043066501617, + "learning_rate": 0.0006, + "loss": 3.7007269859313965, + "step": 2814 + }, + { + "epoch": 39.09785932721712, + "grad_norm": 0.22520557045936584, + "learning_rate": 0.0006, + "loss": 3.6487162113189697, + "step": 2815 + }, + { + "epoch": 39.111839231105286, + "grad_norm": 0.20489682257175446, + "learning_rate": 0.0006, + "loss": 3.6523492336273193, + "step": 2816 + }, + { + "epoch": 39.12581913499345, + "grad_norm": 0.20979270339012146, + "learning_rate": 0.0006, + "loss": 3.6574230194091797, + "step": 2817 + }, + { + "epoch": 39.139799038881605, + "grad_norm": 0.2256486713886261, + "learning_rate": 0.0006, + "loss": 3.6499013900756836, + "step": 2818 + }, + { + "epoch": 39.15377894276977, + "grad_norm": 0.1960437297821045, + "learning_rate": 0.0006, + "loss": 3.6780271530151367, + "step": 2819 + }, + { + "epoch": 39.16775884665793, + "grad_norm": 0.19279663264751434, + "learning_rate": 0.0006, + "loss": 3.623819589614868, + "step": 2820 + }, + { + "epoch": 39.18173875054609, + "grad_norm": 0.19151495397090912, + "learning_rate": 0.0006, + "loss": 3.612868070602417, + "step": 2821 + }, + { + "epoch": 39.19571865443425, + "grad_norm": 0.19399534165859222, + "learning_rate": 0.0006, + "loss": 3.6518092155456543, + "step": 2822 + }, + { + "epoch": 39.20969855832241, + "grad_norm": 0.21723251044750214, + "learning_rate": 0.0006, + "loss": 3.681509494781494, + "step": 2823 + }, + { + "epoch": 39.22367846221057, + "grad_norm": 0.2487006038427353, + "learning_rate": 0.0006, + "loss": 3.6569719314575195, + "step": 2824 + }, + { + "epoch": 39.237658366098735, + "grad_norm": 0.2640652656555176, + "learning_rate": 0.0006, + "loss": 3.680734634399414, + "step": 2825 + }, + { + "epoch": 39.25163826998689, + "grad_norm": 0.21862825751304626, + "learning_rate": 0.0006, + "loss": 3.6741840839385986, + "step": 2826 + }, + { + "epoch": 39.265618173875055, + "grad_norm": 0.19515705108642578, + "learning_rate": 0.0006, + "loss": 3.657750129699707, + "step": 2827 + }, + { + "epoch": 39.27959807776322, + "grad_norm": 0.1971602737903595, + "learning_rate": 0.0006, + "loss": 3.6524124145507812, + "step": 2828 + }, + { + "epoch": 39.293577981651374, + "grad_norm": 0.20822174847126007, + "learning_rate": 0.0006, + "loss": 3.69527006149292, + "step": 2829 + }, + { + "epoch": 39.30755788553954, + "grad_norm": 0.2566370368003845, + "learning_rate": 0.0006, + "loss": 3.6770880222320557, + "step": 2830 + }, + { + "epoch": 39.3215377894277, + "grad_norm": 0.24984225630760193, + "learning_rate": 0.0006, + "loss": 3.6733901500701904, + "step": 2831 + }, + { + "epoch": 39.33551769331586, + "grad_norm": 0.233322873711586, + "learning_rate": 0.0006, + "loss": 3.645519256591797, + "step": 2832 + }, + { + "epoch": 39.34949759720402, + "grad_norm": 0.21584749221801758, + "learning_rate": 0.0006, + "loss": 3.6211934089660645, + "step": 2833 + }, + { + "epoch": 39.36347750109218, + "grad_norm": 0.2188950479030609, + "learning_rate": 0.0006, + "loss": 3.6434195041656494, + "step": 2834 + }, + { + "epoch": 39.37745740498034, + "grad_norm": 0.21998439729213715, + "learning_rate": 0.0006, + "loss": 3.6720595359802246, + "step": 2835 + }, + { + "epoch": 39.391437308868504, + "grad_norm": 0.2459399700164795, + "learning_rate": 0.0006, + "loss": 3.667083740234375, + "step": 2836 + }, + { + "epoch": 39.40541721275666, + "grad_norm": 0.23579223453998566, + "learning_rate": 0.0006, + "loss": 3.665452480316162, + "step": 2837 + }, + { + "epoch": 39.419397116644824, + "grad_norm": 0.19401362538337708, + "learning_rate": 0.0006, + "loss": 3.684218406677246, + "step": 2838 + }, + { + "epoch": 39.43337702053299, + "grad_norm": 0.1894487738609314, + "learning_rate": 0.0006, + "loss": 3.670626163482666, + "step": 2839 + }, + { + "epoch": 39.44735692442114, + "grad_norm": 0.1936904937028885, + "learning_rate": 0.0006, + "loss": 3.6367318630218506, + "step": 2840 + }, + { + "epoch": 39.46133682830931, + "grad_norm": 0.1867629438638687, + "learning_rate": 0.0006, + "loss": 3.670098304748535, + "step": 2841 + }, + { + "epoch": 39.47531673219746, + "grad_norm": 0.18849903345108032, + "learning_rate": 0.0006, + "loss": 3.6877760887145996, + "step": 2842 + }, + { + "epoch": 39.489296636085626, + "grad_norm": 0.18247179687023163, + "learning_rate": 0.0006, + "loss": 3.7132980823516846, + "step": 2843 + }, + { + "epoch": 39.50327653997379, + "grad_norm": 0.19206349551677704, + "learning_rate": 0.0006, + "loss": 3.630319595336914, + "step": 2844 + }, + { + "epoch": 39.517256443861946, + "grad_norm": 0.21730613708496094, + "learning_rate": 0.0006, + "loss": 3.6818761825561523, + "step": 2845 + }, + { + "epoch": 39.53123634775011, + "grad_norm": 0.22482407093048096, + "learning_rate": 0.0006, + "loss": 3.6385269165039062, + "step": 2846 + }, + { + "epoch": 39.54521625163827, + "grad_norm": 0.24560105800628662, + "learning_rate": 0.0006, + "loss": 3.660067558288574, + "step": 2847 + }, + { + "epoch": 39.55919615552643, + "grad_norm": 0.23720617592334747, + "learning_rate": 0.0006, + "loss": 3.6811556816101074, + "step": 2848 + }, + { + "epoch": 39.57317605941459, + "grad_norm": 0.18990741670131683, + "learning_rate": 0.0006, + "loss": 3.6733779907226562, + "step": 2849 + }, + { + "epoch": 39.58715596330275, + "grad_norm": 0.2135438323020935, + "learning_rate": 0.0006, + "loss": 3.662020683288574, + "step": 2850 + }, + { + "epoch": 39.60113586719091, + "grad_norm": 0.24248908460140228, + "learning_rate": 0.0006, + "loss": 3.6794259548187256, + "step": 2851 + }, + { + "epoch": 39.615115771079076, + "grad_norm": 0.23115725815296173, + "learning_rate": 0.0006, + "loss": 3.6732406616210938, + "step": 2852 + }, + { + "epoch": 39.62909567496723, + "grad_norm": 0.23760166764259338, + "learning_rate": 0.0006, + "loss": 3.7062699794769287, + "step": 2853 + }, + { + "epoch": 39.643075578855395, + "grad_norm": 0.24670571088790894, + "learning_rate": 0.0006, + "loss": 3.692385673522949, + "step": 2854 + }, + { + "epoch": 39.65705548274356, + "grad_norm": 0.20983918011188507, + "learning_rate": 0.0006, + "loss": 3.691361427307129, + "step": 2855 + }, + { + "epoch": 39.671035386631715, + "grad_norm": 0.1915138065814972, + "learning_rate": 0.0006, + "loss": 3.6985888481140137, + "step": 2856 + }, + { + "epoch": 39.68501529051988, + "grad_norm": 0.23440803587436676, + "learning_rate": 0.0006, + "loss": 3.6484973430633545, + "step": 2857 + }, + { + "epoch": 39.69899519440804, + "grad_norm": 0.2483232468366623, + "learning_rate": 0.0006, + "loss": 3.6861510276794434, + "step": 2858 + }, + { + "epoch": 39.7129750982962, + "grad_norm": 0.21373426914215088, + "learning_rate": 0.0006, + "loss": 3.6528866291046143, + "step": 2859 + }, + { + "epoch": 39.72695500218436, + "grad_norm": 0.19849136471748352, + "learning_rate": 0.0006, + "loss": 3.6435961723327637, + "step": 2860 + }, + { + "epoch": 39.74093490607252, + "grad_norm": 0.21748292446136475, + "learning_rate": 0.0006, + "loss": 3.678481101989746, + "step": 2861 + }, + { + "epoch": 39.75491480996068, + "grad_norm": 0.22488188743591309, + "learning_rate": 0.0006, + "loss": 3.711717128753662, + "step": 2862 + }, + { + "epoch": 39.768894713848844, + "grad_norm": 0.22251835465431213, + "learning_rate": 0.0006, + "loss": 3.690516471862793, + "step": 2863 + }, + { + "epoch": 39.782874617737, + "grad_norm": 0.22101449966430664, + "learning_rate": 0.0006, + "loss": 3.6679611206054688, + "step": 2864 + }, + { + "epoch": 39.796854521625164, + "grad_norm": 0.20345936715602875, + "learning_rate": 0.0006, + "loss": 3.6935629844665527, + "step": 2865 + }, + { + "epoch": 39.81083442551333, + "grad_norm": 0.23772259056568146, + "learning_rate": 0.0006, + "loss": 3.697561264038086, + "step": 2866 + }, + { + "epoch": 39.824814329401484, + "grad_norm": 0.24446387588977814, + "learning_rate": 0.0006, + "loss": 3.696723461151123, + "step": 2867 + }, + { + "epoch": 39.83879423328965, + "grad_norm": 0.2365843653678894, + "learning_rate": 0.0006, + "loss": 3.6511402130126953, + "step": 2868 + }, + { + "epoch": 39.8527741371778, + "grad_norm": 0.25421974062919617, + "learning_rate": 0.0006, + "loss": 3.68449068069458, + "step": 2869 + }, + { + "epoch": 39.86675404106597, + "grad_norm": 0.2504308819770813, + "learning_rate": 0.0006, + "loss": 3.685884952545166, + "step": 2870 + }, + { + "epoch": 39.88073394495413, + "grad_norm": 0.24695490300655365, + "learning_rate": 0.0006, + "loss": 3.6667490005493164, + "step": 2871 + }, + { + "epoch": 39.89471384884229, + "grad_norm": 0.2633236348628998, + "learning_rate": 0.0006, + "loss": 3.6828866004943848, + "step": 2872 + }, + { + "epoch": 39.90869375273045, + "grad_norm": 0.2421039491891861, + "learning_rate": 0.0006, + "loss": 3.681187391281128, + "step": 2873 + }, + { + "epoch": 39.92267365661861, + "grad_norm": 0.21202950179576874, + "learning_rate": 0.0006, + "loss": 3.679069995880127, + "step": 2874 + }, + { + "epoch": 39.93665356050677, + "grad_norm": 0.2344917505979538, + "learning_rate": 0.0006, + "loss": 3.6810007095336914, + "step": 2875 + }, + { + "epoch": 39.95063346439493, + "grad_norm": 0.2115124762058258, + "learning_rate": 0.0006, + "loss": 3.653219223022461, + "step": 2876 + }, + { + "epoch": 39.964613368283096, + "grad_norm": 0.21588370203971863, + "learning_rate": 0.0006, + "loss": 3.6972861289978027, + "step": 2877 + }, + { + "epoch": 39.97859327217125, + "grad_norm": 0.26215407252311707, + "learning_rate": 0.0006, + "loss": 3.6796963214874268, + "step": 2878 + }, + { + "epoch": 39.992573176059416, + "grad_norm": 0.23645395040512085, + "learning_rate": 0.0006, + "loss": 3.696091413497925, + "step": 2879 + }, + { + "epoch": 40.0, + "grad_norm": 0.21817512810230255, + "learning_rate": 0.0006, + "loss": 3.668196678161621, + "step": 2880 + }, + { + "epoch": 40.0, + "eval_loss": 3.9873862266540527, + "eval_runtime": 44.1149, + "eval_samples_per_second": 55.355, + "eval_steps_per_second": 3.468, + "step": 2880 + }, + { + "epoch": 40.01397990388816, + "grad_norm": 0.2031477391719818, + "learning_rate": 0.0006, + "loss": 3.6494622230529785, + "step": 2881 + }, + { + "epoch": 40.02795980777632, + "grad_norm": 0.2223939746618271, + "learning_rate": 0.0006, + "loss": 3.6587047576904297, + "step": 2882 + }, + { + "epoch": 40.04193971166448, + "grad_norm": 0.21485820412635803, + "learning_rate": 0.0006, + "loss": 3.62253737449646, + "step": 2883 + }, + { + "epoch": 40.05591961555265, + "grad_norm": 0.23364055156707764, + "learning_rate": 0.0006, + "loss": 3.619035005569458, + "step": 2884 + }, + { + "epoch": 40.0698995194408, + "grad_norm": 0.23141583800315857, + "learning_rate": 0.0006, + "loss": 3.6650376319885254, + "step": 2885 + }, + { + "epoch": 40.083879423328966, + "grad_norm": 0.2131720930337906, + "learning_rate": 0.0006, + "loss": 3.646428108215332, + "step": 2886 + }, + { + "epoch": 40.09785932721712, + "grad_norm": 0.2337951511144638, + "learning_rate": 0.0006, + "loss": 3.6284823417663574, + "step": 2887 + }, + { + "epoch": 40.111839231105286, + "grad_norm": 0.2790892720222473, + "learning_rate": 0.0006, + "loss": 3.6558361053466797, + "step": 2888 + }, + { + "epoch": 40.12581913499345, + "grad_norm": 0.28444936871528625, + "learning_rate": 0.0006, + "loss": 3.644402503967285, + "step": 2889 + }, + { + "epoch": 40.139799038881605, + "grad_norm": 0.2550848126411438, + "learning_rate": 0.0006, + "loss": 3.671562671661377, + "step": 2890 + }, + { + "epoch": 40.15377894276977, + "grad_norm": 0.22960248589515686, + "learning_rate": 0.0006, + "loss": 3.6998534202575684, + "step": 2891 + }, + { + "epoch": 40.16775884665793, + "grad_norm": 0.23920369148254395, + "learning_rate": 0.0006, + "loss": 3.653874635696411, + "step": 2892 + }, + { + "epoch": 40.18173875054609, + "grad_norm": 0.24586012959480286, + "learning_rate": 0.0006, + "loss": 3.620765209197998, + "step": 2893 + }, + { + "epoch": 40.19571865443425, + "grad_norm": 0.26394739747047424, + "learning_rate": 0.0006, + "loss": 3.638437509536743, + "step": 2894 + }, + { + "epoch": 40.20969855832241, + "grad_norm": 0.27566927671432495, + "learning_rate": 0.0006, + "loss": 3.6684799194335938, + "step": 2895 + }, + { + "epoch": 40.22367846221057, + "grad_norm": 0.25469011068344116, + "learning_rate": 0.0006, + "loss": 3.6113009452819824, + "step": 2896 + }, + { + "epoch": 40.237658366098735, + "grad_norm": 0.2403056025505066, + "learning_rate": 0.0006, + "loss": 3.650771141052246, + "step": 2897 + }, + { + "epoch": 40.25163826998689, + "grad_norm": 0.262423038482666, + "learning_rate": 0.0006, + "loss": 3.635892391204834, + "step": 2898 + }, + { + "epoch": 40.265618173875055, + "grad_norm": 0.23696045577526093, + "learning_rate": 0.0006, + "loss": 3.6396005153656006, + "step": 2899 + }, + { + "epoch": 40.27959807776322, + "grad_norm": 0.208719402551651, + "learning_rate": 0.0006, + "loss": 3.6681132316589355, + "step": 2900 + }, + { + "epoch": 40.293577981651374, + "grad_norm": 0.21554480493068695, + "learning_rate": 0.0006, + "loss": 3.6417553424835205, + "step": 2901 + }, + { + "epoch": 40.30755788553954, + "grad_norm": 0.2290734499692917, + "learning_rate": 0.0006, + "loss": 3.6659927368164062, + "step": 2902 + }, + { + "epoch": 40.3215377894277, + "grad_norm": 0.20803220570087433, + "learning_rate": 0.0006, + "loss": 3.6443324089050293, + "step": 2903 + }, + { + "epoch": 40.33551769331586, + "grad_norm": 0.20334568619728088, + "learning_rate": 0.0006, + "loss": 3.6824207305908203, + "step": 2904 + }, + { + "epoch": 40.34949759720402, + "grad_norm": 0.2000233381986618, + "learning_rate": 0.0006, + "loss": 3.644399642944336, + "step": 2905 + }, + { + "epoch": 40.36347750109218, + "grad_norm": 0.21990752220153809, + "learning_rate": 0.0006, + "loss": 3.668160915374756, + "step": 2906 + }, + { + "epoch": 40.37745740498034, + "grad_norm": 0.24385249614715576, + "learning_rate": 0.0006, + "loss": 3.634392261505127, + "step": 2907 + }, + { + "epoch": 40.391437308868504, + "grad_norm": 0.21272684633731842, + "learning_rate": 0.0006, + "loss": 3.6504263877868652, + "step": 2908 + }, + { + "epoch": 40.40541721275666, + "grad_norm": 0.2003277838230133, + "learning_rate": 0.0006, + "loss": 3.6707763671875, + "step": 2909 + }, + { + "epoch": 40.419397116644824, + "grad_norm": 0.2086087465286255, + "learning_rate": 0.0006, + "loss": 3.66988468170166, + "step": 2910 + }, + { + "epoch": 40.43337702053299, + "grad_norm": 0.19706451892852783, + "learning_rate": 0.0006, + "loss": 3.662794828414917, + "step": 2911 + }, + { + "epoch": 40.44735692442114, + "grad_norm": 0.18795762956142426, + "learning_rate": 0.0006, + "loss": 3.628016233444214, + "step": 2912 + }, + { + "epoch": 40.46133682830931, + "grad_norm": 0.19931825995445251, + "learning_rate": 0.0006, + "loss": 3.6791915893554688, + "step": 2913 + }, + { + "epoch": 40.47531673219746, + "grad_norm": 0.21295934915542603, + "learning_rate": 0.0006, + "loss": 3.688632011413574, + "step": 2914 + }, + { + "epoch": 40.489296636085626, + "grad_norm": 0.2104834020137787, + "learning_rate": 0.0006, + "loss": 3.6270499229431152, + "step": 2915 + }, + { + "epoch": 40.50327653997379, + "grad_norm": 0.19942966103553772, + "learning_rate": 0.0006, + "loss": 3.651721477508545, + "step": 2916 + }, + { + "epoch": 40.517256443861946, + "grad_norm": 0.18890425562858582, + "learning_rate": 0.0006, + "loss": 3.6778619289398193, + "step": 2917 + }, + { + "epoch": 40.53123634775011, + "grad_norm": 0.19861607253551483, + "learning_rate": 0.0006, + "loss": 3.658832550048828, + "step": 2918 + }, + { + "epoch": 40.54521625163827, + "grad_norm": 0.21553616225719452, + "learning_rate": 0.0006, + "loss": 3.6566901206970215, + "step": 2919 + }, + { + "epoch": 40.55919615552643, + "grad_norm": 0.21698440611362457, + "learning_rate": 0.0006, + "loss": 3.6795129776000977, + "step": 2920 + }, + { + "epoch": 40.57317605941459, + "grad_norm": 0.20310913026332855, + "learning_rate": 0.0006, + "loss": 3.645244598388672, + "step": 2921 + }, + { + "epoch": 40.58715596330275, + "grad_norm": 0.2075812816619873, + "learning_rate": 0.0006, + "loss": 3.678452491760254, + "step": 2922 + }, + { + "epoch": 40.60113586719091, + "grad_norm": 0.20606619119644165, + "learning_rate": 0.0006, + "loss": 3.6150245666503906, + "step": 2923 + }, + { + "epoch": 40.615115771079076, + "grad_norm": 0.21511296927928925, + "learning_rate": 0.0006, + "loss": 3.6682112216949463, + "step": 2924 + }, + { + "epoch": 40.62909567496723, + "grad_norm": 0.19771839678287506, + "learning_rate": 0.0006, + "loss": 3.6639556884765625, + "step": 2925 + }, + { + "epoch": 40.643075578855395, + "grad_norm": 0.20419852435588837, + "learning_rate": 0.0006, + "loss": 3.664982318878174, + "step": 2926 + }, + { + "epoch": 40.65705548274356, + "grad_norm": 0.20119430124759674, + "learning_rate": 0.0006, + "loss": 3.661625385284424, + "step": 2927 + }, + { + "epoch": 40.671035386631715, + "grad_norm": 0.21590501070022583, + "learning_rate": 0.0006, + "loss": 3.673719644546509, + "step": 2928 + }, + { + "epoch": 40.68501529051988, + "grad_norm": 0.19165395200252533, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 2929 + }, + { + "epoch": 40.69899519440804, + "grad_norm": 0.19620473682880402, + "learning_rate": 0.0006, + "loss": 3.7008142471313477, + "step": 2930 + }, + { + "epoch": 40.7129750982962, + "grad_norm": 0.23002777993679047, + "learning_rate": 0.0006, + "loss": 3.654296875, + "step": 2931 + }, + { + "epoch": 40.72695500218436, + "grad_norm": 0.22007468342781067, + "learning_rate": 0.0006, + "loss": 3.688178539276123, + "step": 2932 + }, + { + "epoch": 40.74093490607252, + "grad_norm": 0.2030077874660492, + "learning_rate": 0.0006, + "loss": 3.6514129638671875, + "step": 2933 + }, + { + "epoch": 40.75491480996068, + "grad_norm": 0.20960700511932373, + "learning_rate": 0.0006, + "loss": 3.651864528656006, + "step": 2934 + }, + { + "epoch": 40.768894713848844, + "grad_norm": 0.2132565975189209, + "learning_rate": 0.0006, + "loss": 3.680915355682373, + "step": 2935 + }, + { + "epoch": 40.782874617737, + "grad_norm": 0.2411353588104248, + "learning_rate": 0.0006, + "loss": 3.647167682647705, + "step": 2936 + }, + { + "epoch": 40.796854521625164, + "grad_norm": 0.24621541798114777, + "learning_rate": 0.0006, + "loss": 3.6784768104553223, + "step": 2937 + }, + { + "epoch": 40.81083442551333, + "grad_norm": 0.23324407637119293, + "learning_rate": 0.0006, + "loss": 3.6855263710021973, + "step": 2938 + }, + { + "epoch": 40.824814329401484, + "grad_norm": 0.21749550104141235, + "learning_rate": 0.0006, + "loss": 3.672682285308838, + "step": 2939 + }, + { + "epoch": 40.83879423328965, + "grad_norm": 0.1957911103963852, + "learning_rate": 0.0006, + "loss": 3.635678291320801, + "step": 2940 + }, + { + "epoch": 40.8527741371778, + "grad_norm": 0.21262411773204803, + "learning_rate": 0.0006, + "loss": 3.6829824447631836, + "step": 2941 + }, + { + "epoch": 40.86675404106597, + "grad_norm": 0.19940680265426636, + "learning_rate": 0.0006, + "loss": 3.720932960510254, + "step": 2942 + }, + { + "epoch": 40.88073394495413, + "grad_norm": 0.1964999884366989, + "learning_rate": 0.0006, + "loss": 3.678405284881592, + "step": 2943 + }, + { + "epoch": 40.89471384884229, + "grad_norm": 0.21459022164344788, + "learning_rate": 0.0006, + "loss": 3.6788480281829834, + "step": 2944 + }, + { + "epoch": 40.90869375273045, + "grad_norm": 0.2251381129026413, + "learning_rate": 0.0006, + "loss": 3.679459571838379, + "step": 2945 + }, + { + "epoch": 40.92267365661861, + "grad_norm": 0.19951461255550385, + "learning_rate": 0.0006, + "loss": 3.6610841751098633, + "step": 2946 + }, + { + "epoch": 40.93665356050677, + "grad_norm": 0.2057943493127823, + "learning_rate": 0.0006, + "loss": 3.649491786956787, + "step": 2947 + }, + { + "epoch": 40.95063346439493, + "grad_norm": 0.19601917266845703, + "learning_rate": 0.0006, + "loss": 3.724552631378174, + "step": 2948 + }, + { + "epoch": 40.964613368283096, + "grad_norm": 0.20982769131660461, + "learning_rate": 0.0006, + "loss": 3.648465394973755, + "step": 2949 + }, + { + "epoch": 40.97859327217125, + "grad_norm": 0.21103954315185547, + "learning_rate": 0.0006, + "loss": 3.692239999771118, + "step": 2950 + }, + { + "epoch": 40.992573176059416, + "grad_norm": 0.2007385492324829, + "learning_rate": 0.0006, + "loss": 3.659999132156372, + "step": 2951 + }, + { + "epoch": 41.0, + "grad_norm": 0.22357431054115295, + "learning_rate": 0.0006, + "loss": 3.6461124420166016, + "step": 2952 + }, + { + "epoch": 41.0, + "eval_loss": 3.9891226291656494, + "eval_runtime": 44.65, + "eval_samples_per_second": 54.692, + "eval_steps_per_second": 3.427, + "step": 2952 + }, + { + "epoch": 41.01397990388816, + "grad_norm": 0.20387817919254303, + "learning_rate": 0.0006, + "loss": 3.643923282623291, + "step": 2953 + }, + { + "epoch": 41.02795980777632, + "grad_norm": 0.1988423764705658, + "learning_rate": 0.0006, + "loss": 3.6152570247650146, + "step": 2954 + }, + { + "epoch": 41.04193971166448, + "grad_norm": 0.19998641312122345, + "learning_rate": 0.0006, + "loss": 3.667520523071289, + "step": 2955 + }, + { + "epoch": 41.05591961555265, + "grad_norm": 0.18347714841365814, + "learning_rate": 0.0006, + "loss": 3.6289002895355225, + "step": 2956 + }, + { + "epoch": 41.0698995194408, + "grad_norm": 0.21235640347003937, + "learning_rate": 0.0006, + "loss": 3.6422951221466064, + "step": 2957 + }, + { + "epoch": 41.083879423328966, + "grad_norm": 0.1990172415971756, + "learning_rate": 0.0006, + "loss": 3.625697135925293, + "step": 2958 + }, + { + "epoch": 41.09785932721712, + "grad_norm": 0.18313643336296082, + "learning_rate": 0.0006, + "loss": 3.672356605529785, + "step": 2959 + }, + { + "epoch": 41.111839231105286, + "grad_norm": 0.17956401407718658, + "learning_rate": 0.0006, + "loss": 3.6093602180480957, + "step": 2960 + }, + { + "epoch": 41.12581913499345, + "grad_norm": 0.19487550854682922, + "learning_rate": 0.0006, + "loss": 3.6004128456115723, + "step": 2961 + }, + { + "epoch": 41.139799038881605, + "grad_norm": 0.2117495834827423, + "learning_rate": 0.0006, + "loss": 3.6468565464019775, + "step": 2962 + }, + { + "epoch": 41.15377894276977, + "grad_norm": 0.20602662861347198, + "learning_rate": 0.0006, + "loss": 3.6299140453338623, + "step": 2963 + }, + { + "epoch": 41.16775884665793, + "grad_norm": 0.21859265863895416, + "learning_rate": 0.0006, + "loss": 3.630052328109741, + "step": 2964 + }, + { + "epoch": 41.18173875054609, + "grad_norm": 0.22684140503406525, + "learning_rate": 0.0006, + "loss": 3.5995004177093506, + "step": 2965 + }, + { + "epoch": 41.19571865443425, + "grad_norm": 0.25682681798934937, + "learning_rate": 0.0006, + "loss": 3.613131523132324, + "step": 2966 + }, + { + "epoch": 41.20969855832241, + "grad_norm": 0.2508181631565094, + "learning_rate": 0.0006, + "loss": 3.644259452819824, + "step": 2967 + }, + { + "epoch": 41.22367846221057, + "grad_norm": 0.24200427532196045, + "learning_rate": 0.0006, + "loss": 3.6651816368103027, + "step": 2968 + }, + { + "epoch": 41.237658366098735, + "grad_norm": 0.21753790974617004, + "learning_rate": 0.0006, + "loss": 3.686199188232422, + "step": 2969 + }, + { + "epoch": 41.25163826998689, + "grad_norm": 0.19811955094337463, + "learning_rate": 0.0006, + "loss": 3.63014817237854, + "step": 2970 + }, + { + "epoch": 41.265618173875055, + "grad_norm": 0.19316327571868896, + "learning_rate": 0.0006, + "loss": 3.6532740592956543, + "step": 2971 + }, + { + "epoch": 41.27959807776322, + "grad_norm": 0.21440976858139038, + "learning_rate": 0.0006, + "loss": 3.6546850204467773, + "step": 2972 + }, + { + "epoch": 41.293577981651374, + "grad_norm": 0.2732681334018707, + "learning_rate": 0.0006, + "loss": 3.6135244369506836, + "step": 2973 + }, + { + "epoch": 41.30755788553954, + "grad_norm": 0.2588619589805603, + "learning_rate": 0.0006, + "loss": 3.657963275909424, + "step": 2974 + }, + { + "epoch": 41.3215377894277, + "grad_norm": 0.20054970681667328, + "learning_rate": 0.0006, + "loss": 3.6391024589538574, + "step": 2975 + }, + { + "epoch": 41.33551769331586, + "grad_norm": 0.23703549802303314, + "learning_rate": 0.0006, + "loss": 3.6609978675842285, + "step": 2976 + }, + { + "epoch": 41.34949759720402, + "grad_norm": 0.24222144484519958, + "learning_rate": 0.0006, + "loss": 3.659271478652954, + "step": 2977 + }, + { + "epoch": 41.36347750109218, + "grad_norm": 0.2228497713804245, + "learning_rate": 0.0006, + "loss": 3.607358455657959, + "step": 2978 + }, + { + "epoch": 41.37745740498034, + "grad_norm": 0.22105038166046143, + "learning_rate": 0.0006, + "loss": 3.64198899269104, + "step": 2979 + }, + { + "epoch": 41.391437308868504, + "grad_norm": 0.23753555119037628, + "learning_rate": 0.0006, + "loss": 3.63116455078125, + "step": 2980 + }, + { + "epoch": 41.40541721275666, + "grad_norm": 0.24492689967155457, + "learning_rate": 0.0006, + "loss": 3.636122465133667, + "step": 2981 + }, + { + "epoch": 41.419397116644824, + "grad_norm": 0.20610782504081726, + "learning_rate": 0.0006, + "loss": 3.656487226486206, + "step": 2982 + }, + { + "epoch": 41.43337702053299, + "grad_norm": 0.20781412720680237, + "learning_rate": 0.0006, + "loss": 3.669196605682373, + "step": 2983 + }, + { + "epoch": 41.44735692442114, + "grad_norm": 0.23892036080360413, + "learning_rate": 0.0006, + "loss": 3.6345765590667725, + "step": 2984 + }, + { + "epoch": 41.46133682830931, + "grad_norm": 0.2477712333202362, + "learning_rate": 0.0006, + "loss": 3.6599812507629395, + "step": 2985 + }, + { + "epoch": 41.47531673219746, + "grad_norm": 0.25314703583717346, + "learning_rate": 0.0006, + "loss": 3.6737258434295654, + "step": 2986 + }, + { + "epoch": 41.489296636085626, + "grad_norm": 0.2386070191860199, + "learning_rate": 0.0006, + "loss": 3.666586399078369, + "step": 2987 + }, + { + "epoch": 41.50327653997379, + "grad_norm": 0.27259722352027893, + "learning_rate": 0.0006, + "loss": 3.658761501312256, + "step": 2988 + }, + { + "epoch": 41.517256443861946, + "grad_norm": 0.3312860429286957, + "learning_rate": 0.0006, + "loss": 3.629699230194092, + "step": 2989 + }, + { + "epoch": 41.53123634775011, + "grad_norm": 0.3321581780910492, + "learning_rate": 0.0006, + "loss": 3.66628360748291, + "step": 2990 + }, + { + "epoch": 41.54521625163827, + "grad_norm": 0.2850016951560974, + "learning_rate": 0.0006, + "loss": 3.690005302429199, + "step": 2991 + }, + { + "epoch": 41.55919615552643, + "grad_norm": 0.2544100880622864, + "learning_rate": 0.0006, + "loss": 3.6554486751556396, + "step": 2992 + }, + { + "epoch": 41.57317605941459, + "grad_norm": 0.28541380167007446, + "learning_rate": 0.0006, + "loss": 3.672952175140381, + "step": 2993 + }, + { + "epoch": 41.58715596330275, + "grad_norm": 0.2909766435623169, + "learning_rate": 0.0006, + "loss": 3.6649627685546875, + "step": 2994 + }, + { + "epoch": 41.60113586719091, + "grad_norm": 0.26089969277381897, + "learning_rate": 0.0006, + "loss": 3.6512341499328613, + "step": 2995 + }, + { + "epoch": 41.615115771079076, + "grad_norm": 0.21815894544124603, + "learning_rate": 0.0006, + "loss": 3.612436056137085, + "step": 2996 + }, + { + "epoch": 41.62909567496723, + "grad_norm": 0.20712246000766754, + "learning_rate": 0.0006, + "loss": 3.6482479572296143, + "step": 2997 + }, + { + "epoch": 41.643075578855395, + "grad_norm": 0.23280103504657745, + "learning_rate": 0.0006, + "loss": 3.6648616790771484, + "step": 2998 + }, + { + "epoch": 41.65705548274356, + "grad_norm": 0.21623823046684265, + "learning_rate": 0.0006, + "loss": 3.6714487075805664, + "step": 2999 + }, + { + "epoch": 41.671035386631715, + "grad_norm": 0.2081632912158966, + "learning_rate": 0.0006, + "loss": 3.693014144897461, + "step": 3000 + }, + { + "epoch": 41.68501529051988, + "grad_norm": 0.23109425604343414, + "learning_rate": 0.0006, + "loss": 3.667262554168701, + "step": 3001 + }, + { + "epoch": 41.69899519440804, + "grad_norm": 0.2304934561252594, + "learning_rate": 0.0006, + "loss": 3.666405439376831, + "step": 3002 + }, + { + "epoch": 41.7129750982962, + "grad_norm": 0.23132432997226715, + "learning_rate": 0.0006, + "loss": 3.690964698791504, + "step": 3003 + }, + { + "epoch": 41.72695500218436, + "grad_norm": 0.2085159569978714, + "learning_rate": 0.0006, + "loss": 3.6620168685913086, + "step": 3004 + }, + { + "epoch": 41.74093490607252, + "grad_norm": 0.1919657438993454, + "learning_rate": 0.0006, + "loss": 3.67447566986084, + "step": 3005 + }, + { + "epoch": 41.75491480996068, + "grad_norm": 0.20189036428928375, + "learning_rate": 0.0006, + "loss": 3.6434998512268066, + "step": 3006 + }, + { + "epoch": 41.768894713848844, + "grad_norm": 0.23530980944633484, + "learning_rate": 0.0006, + "loss": 3.644280433654785, + "step": 3007 + }, + { + "epoch": 41.782874617737, + "grad_norm": 0.2550027370452881, + "learning_rate": 0.0006, + "loss": 3.6686060428619385, + "step": 3008 + }, + { + "epoch": 41.796854521625164, + "grad_norm": 0.2285512536764145, + "learning_rate": 0.0006, + "loss": 3.7013134956359863, + "step": 3009 + }, + { + "epoch": 41.81083442551333, + "grad_norm": 0.20538675785064697, + "learning_rate": 0.0006, + "loss": 3.6568830013275146, + "step": 3010 + }, + { + "epoch": 41.824814329401484, + "grad_norm": 0.2007976472377777, + "learning_rate": 0.0006, + "loss": 3.680250883102417, + "step": 3011 + }, + { + "epoch": 41.83879423328965, + "grad_norm": 0.20060500502586365, + "learning_rate": 0.0006, + "loss": 3.6565070152282715, + "step": 3012 + }, + { + "epoch": 41.8527741371778, + "grad_norm": 0.21055014431476593, + "learning_rate": 0.0006, + "loss": 3.661667823791504, + "step": 3013 + }, + { + "epoch": 41.86675404106597, + "grad_norm": 0.2201126217842102, + "learning_rate": 0.0006, + "loss": 3.650052070617676, + "step": 3014 + }, + { + "epoch": 41.88073394495413, + "grad_norm": 0.20397843420505524, + "learning_rate": 0.0006, + "loss": 3.6535415649414062, + "step": 3015 + }, + { + "epoch": 41.89471384884229, + "grad_norm": 0.1993463635444641, + "learning_rate": 0.0006, + "loss": 3.665696144104004, + "step": 3016 + }, + { + "epoch": 41.90869375273045, + "grad_norm": 0.20448797941207886, + "learning_rate": 0.0006, + "loss": 3.6448118686676025, + "step": 3017 + }, + { + "epoch": 41.92267365661861, + "grad_norm": 0.2064918726682663, + "learning_rate": 0.0006, + "loss": 3.6881537437438965, + "step": 3018 + }, + { + "epoch": 41.93665356050677, + "grad_norm": 0.20554372668266296, + "learning_rate": 0.0006, + "loss": 3.688559055328369, + "step": 3019 + }, + { + "epoch": 41.95063346439493, + "grad_norm": 0.1862783133983612, + "learning_rate": 0.0006, + "loss": 3.6713812351226807, + "step": 3020 + }, + { + "epoch": 41.964613368283096, + "grad_norm": 0.18139860033988953, + "learning_rate": 0.0006, + "loss": 3.6612548828125, + "step": 3021 + }, + { + "epoch": 41.97859327217125, + "grad_norm": 0.1844220608472824, + "learning_rate": 0.0006, + "loss": 3.641725540161133, + "step": 3022 + }, + { + "epoch": 41.992573176059416, + "grad_norm": 0.1885213702917099, + "learning_rate": 0.0006, + "loss": 3.663257122039795, + "step": 3023 + }, + { + "epoch": 42.0, + "grad_norm": 0.2250746339559555, + "learning_rate": 0.0006, + "loss": 3.6479320526123047, + "step": 3024 + }, + { + "epoch": 42.0, + "eval_loss": 3.993955135345459, + "eval_runtime": 44.4709, + "eval_samples_per_second": 54.912, + "eval_steps_per_second": 3.44, + "step": 3024 + }, + { + "epoch": 42.01397990388816, + "grad_norm": 0.21096517145633698, + "learning_rate": 0.0006, + "loss": 3.6729278564453125, + "step": 3025 + }, + { + "epoch": 42.02795980777632, + "grad_norm": 0.2106277495622635, + "learning_rate": 0.0006, + "loss": 3.629892349243164, + "step": 3026 + }, + { + "epoch": 42.04193971166448, + "grad_norm": 0.2673060894012451, + "learning_rate": 0.0006, + "loss": 3.643604040145874, + "step": 3027 + }, + { + "epoch": 42.05591961555265, + "grad_norm": 0.28180691599845886, + "learning_rate": 0.0006, + "loss": 3.596560478210449, + "step": 3028 + }, + { + "epoch": 42.0698995194408, + "grad_norm": 0.25607243180274963, + "learning_rate": 0.0006, + "loss": 3.597935199737549, + "step": 3029 + }, + { + "epoch": 42.083879423328966, + "grad_norm": 0.22120746970176697, + "learning_rate": 0.0006, + "loss": 3.6219305992126465, + "step": 3030 + }, + { + "epoch": 42.09785932721712, + "grad_norm": 0.2164907306432724, + "learning_rate": 0.0006, + "loss": 3.6220779418945312, + "step": 3031 + }, + { + "epoch": 42.111839231105286, + "grad_norm": 0.23800921440124512, + "learning_rate": 0.0006, + "loss": 3.63372540473938, + "step": 3032 + }, + { + "epoch": 42.12581913499345, + "grad_norm": 0.21812695264816284, + "learning_rate": 0.0006, + "loss": 3.636105537414551, + "step": 3033 + }, + { + "epoch": 42.139799038881605, + "grad_norm": 0.2027447372674942, + "learning_rate": 0.0006, + "loss": 3.6167502403259277, + "step": 3034 + }, + { + "epoch": 42.15377894276977, + "grad_norm": 0.20157714188098907, + "learning_rate": 0.0006, + "loss": 3.6141409873962402, + "step": 3035 + }, + { + "epoch": 42.16775884665793, + "grad_norm": 0.20780996978282928, + "learning_rate": 0.0006, + "loss": 3.6323471069335938, + "step": 3036 + }, + { + "epoch": 42.18173875054609, + "grad_norm": 0.20025081932544708, + "learning_rate": 0.0006, + "loss": 3.625446081161499, + "step": 3037 + }, + { + "epoch": 42.19571865443425, + "grad_norm": 0.20019082725048065, + "learning_rate": 0.0006, + "loss": 3.631418228149414, + "step": 3038 + }, + { + "epoch": 42.20969855832241, + "grad_norm": 0.21194526553153992, + "learning_rate": 0.0006, + "loss": 3.6180832386016846, + "step": 3039 + }, + { + "epoch": 42.22367846221057, + "grad_norm": 0.2016245573759079, + "learning_rate": 0.0006, + "loss": 3.6388602256774902, + "step": 3040 + }, + { + "epoch": 42.237658366098735, + "grad_norm": 0.1892252415418625, + "learning_rate": 0.0006, + "loss": 3.6086854934692383, + "step": 3041 + }, + { + "epoch": 42.25163826998689, + "grad_norm": 0.1878061145544052, + "learning_rate": 0.0006, + "loss": 3.599428176879883, + "step": 3042 + }, + { + "epoch": 42.265618173875055, + "grad_norm": 0.20258742570877075, + "learning_rate": 0.0006, + "loss": 3.6177172660827637, + "step": 3043 + }, + { + "epoch": 42.27959807776322, + "grad_norm": 0.2114444226026535, + "learning_rate": 0.0006, + "loss": 3.641916275024414, + "step": 3044 + }, + { + "epoch": 42.293577981651374, + "grad_norm": 0.19873645901679993, + "learning_rate": 0.0006, + "loss": 3.6585676670074463, + "step": 3045 + }, + { + "epoch": 42.30755788553954, + "grad_norm": 0.20361217856407166, + "learning_rate": 0.0006, + "loss": 3.648475170135498, + "step": 3046 + }, + { + "epoch": 42.3215377894277, + "grad_norm": 0.20227114856243134, + "learning_rate": 0.0006, + "loss": 3.63625431060791, + "step": 3047 + }, + { + "epoch": 42.33551769331586, + "grad_norm": 0.18246233463287354, + "learning_rate": 0.0006, + "loss": 3.6380200386047363, + "step": 3048 + }, + { + "epoch": 42.34949759720402, + "grad_norm": 0.17944976687431335, + "learning_rate": 0.0006, + "loss": 3.6325912475585938, + "step": 3049 + }, + { + "epoch": 42.36347750109218, + "grad_norm": 0.188584566116333, + "learning_rate": 0.0006, + "loss": 3.6418886184692383, + "step": 3050 + }, + { + "epoch": 42.37745740498034, + "grad_norm": 0.1917790323495865, + "learning_rate": 0.0006, + "loss": 3.664421558380127, + "step": 3051 + }, + { + "epoch": 42.391437308868504, + "grad_norm": 0.175637349486351, + "learning_rate": 0.0006, + "loss": 3.641819953918457, + "step": 3052 + }, + { + "epoch": 42.40541721275666, + "grad_norm": 0.18751518428325653, + "learning_rate": 0.0006, + "loss": 3.646697998046875, + "step": 3053 + }, + { + "epoch": 42.419397116644824, + "grad_norm": 0.1805887520313263, + "learning_rate": 0.0006, + "loss": 3.637866735458374, + "step": 3054 + }, + { + "epoch": 42.43337702053299, + "grad_norm": 0.19680845737457275, + "learning_rate": 0.0006, + "loss": 3.602511405944824, + "step": 3055 + }, + { + "epoch": 42.44735692442114, + "grad_norm": 0.20605766773223877, + "learning_rate": 0.0006, + "loss": 3.6472771167755127, + "step": 3056 + }, + { + "epoch": 42.46133682830931, + "grad_norm": 0.18083851039409637, + "learning_rate": 0.0006, + "loss": 3.6672325134277344, + "step": 3057 + }, + { + "epoch": 42.47531673219746, + "grad_norm": 0.19665084779262543, + "learning_rate": 0.0006, + "loss": 3.625300884246826, + "step": 3058 + }, + { + "epoch": 42.489296636085626, + "grad_norm": 0.22506165504455566, + "learning_rate": 0.0006, + "loss": 3.592872142791748, + "step": 3059 + }, + { + "epoch": 42.50327653997379, + "grad_norm": 0.2051578164100647, + "learning_rate": 0.0006, + "loss": 3.6302249431610107, + "step": 3060 + }, + { + "epoch": 42.517256443861946, + "grad_norm": 0.18957172334194183, + "learning_rate": 0.0006, + "loss": 3.6277074813842773, + "step": 3061 + }, + { + "epoch": 42.53123634775011, + "grad_norm": 0.21467208862304688, + "learning_rate": 0.0006, + "loss": 3.6121392250061035, + "step": 3062 + }, + { + "epoch": 42.54521625163827, + "grad_norm": 0.21618402004241943, + "learning_rate": 0.0006, + "loss": 3.664738655090332, + "step": 3063 + }, + { + "epoch": 42.55919615552643, + "grad_norm": 0.2259770780801773, + "learning_rate": 0.0006, + "loss": 3.652042865753174, + "step": 3064 + }, + { + "epoch": 42.57317605941459, + "grad_norm": 0.22667232155799866, + "learning_rate": 0.0006, + "loss": 3.6552934646606445, + "step": 3065 + }, + { + "epoch": 42.58715596330275, + "grad_norm": 0.21405228972434998, + "learning_rate": 0.0006, + "loss": 3.644043445587158, + "step": 3066 + }, + { + "epoch": 42.60113586719091, + "grad_norm": 0.20855450630187988, + "learning_rate": 0.0006, + "loss": 3.6534876823425293, + "step": 3067 + }, + { + "epoch": 42.615115771079076, + "grad_norm": 0.22474415600299835, + "learning_rate": 0.0006, + "loss": 3.656677484512329, + "step": 3068 + }, + { + "epoch": 42.62909567496723, + "grad_norm": 0.23401428759098053, + "learning_rate": 0.0006, + "loss": 3.6788997650146484, + "step": 3069 + }, + { + "epoch": 42.643075578855395, + "grad_norm": 0.21567967534065247, + "learning_rate": 0.0006, + "loss": 3.675379753112793, + "step": 3070 + }, + { + "epoch": 42.65705548274356, + "grad_norm": 0.21704941987991333, + "learning_rate": 0.0006, + "loss": 3.630707263946533, + "step": 3071 + }, + { + "epoch": 42.671035386631715, + "grad_norm": 0.2718963921070099, + "learning_rate": 0.0006, + "loss": 3.6653294563293457, + "step": 3072 + }, + { + "epoch": 42.68501529051988, + "grad_norm": 0.30198901891708374, + "learning_rate": 0.0006, + "loss": 3.6761326789855957, + "step": 3073 + }, + { + "epoch": 42.69899519440804, + "grad_norm": 0.27593618631362915, + "learning_rate": 0.0006, + "loss": 3.6610732078552246, + "step": 3074 + }, + { + "epoch": 42.7129750982962, + "grad_norm": 0.22495242953300476, + "learning_rate": 0.0006, + "loss": 3.656907320022583, + "step": 3075 + }, + { + "epoch": 42.72695500218436, + "grad_norm": 0.19872353971004486, + "learning_rate": 0.0006, + "loss": 3.6611597537994385, + "step": 3076 + }, + { + "epoch": 42.74093490607252, + "grad_norm": 0.21527111530303955, + "learning_rate": 0.0006, + "loss": 3.676821708679199, + "step": 3077 + }, + { + "epoch": 42.75491480996068, + "grad_norm": 0.22314463555812836, + "learning_rate": 0.0006, + "loss": 3.629460334777832, + "step": 3078 + }, + { + "epoch": 42.768894713848844, + "grad_norm": 0.23461024463176727, + "learning_rate": 0.0006, + "loss": 3.665390968322754, + "step": 3079 + }, + { + "epoch": 42.782874617737, + "grad_norm": 0.2582414448261261, + "learning_rate": 0.0006, + "loss": 3.6420979499816895, + "step": 3080 + }, + { + "epoch": 42.796854521625164, + "grad_norm": 0.2505052983760834, + "learning_rate": 0.0006, + "loss": 3.67236328125, + "step": 3081 + }, + { + "epoch": 42.81083442551333, + "grad_norm": 0.22617632150650024, + "learning_rate": 0.0006, + "loss": 3.654897689819336, + "step": 3082 + }, + { + "epoch": 42.824814329401484, + "grad_norm": 0.2340085208415985, + "learning_rate": 0.0006, + "loss": 3.6423635482788086, + "step": 3083 + }, + { + "epoch": 42.83879423328965, + "grad_norm": 0.26765671372413635, + "learning_rate": 0.0006, + "loss": 3.622769832611084, + "step": 3084 + }, + { + "epoch": 42.8527741371778, + "grad_norm": 0.29490381479263306, + "learning_rate": 0.0006, + "loss": 3.656053066253662, + "step": 3085 + }, + { + "epoch": 42.86675404106597, + "grad_norm": 0.29776132106781006, + "learning_rate": 0.0006, + "loss": 3.6454644203186035, + "step": 3086 + }, + { + "epoch": 42.88073394495413, + "grad_norm": 0.23994849622249603, + "learning_rate": 0.0006, + "loss": 3.674665927886963, + "step": 3087 + }, + { + "epoch": 42.89471384884229, + "grad_norm": 0.21456265449523926, + "learning_rate": 0.0006, + "loss": 3.670175790786743, + "step": 3088 + }, + { + "epoch": 42.90869375273045, + "grad_norm": 0.25727778673171997, + "learning_rate": 0.0006, + "loss": 3.6425390243530273, + "step": 3089 + }, + { + "epoch": 42.92267365661861, + "grad_norm": 0.30310627818107605, + "learning_rate": 0.0006, + "loss": 3.68511962890625, + "step": 3090 + }, + { + "epoch": 42.93665356050677, + "grad_norm": 0.2792291045188904, + "learning_rate": 0.0006, + "loss": 3.681732654571533, + "step": 3091 + }, + { + "epoch": 42.95063346439493, + "grad_norm": 0.23614276945590973, + "learning_rate": 0.0006, + "loss": 3.6417222023010254, + "step": 3092 + }, + { + "epoch": 42.964613368283096, + "grad_norm": 0.23602448403835297, + "learning_rate": 0.0006, + "loss": 3.6602869033813477, + "step": 3093 + }, + { + "epoch": 42.97859327217125, + "grad_norm": 0.21968287229537964, + "learning_rate": 0.0006, + "loss": 3.6618118286132812, + "step": 3094 + }, + { + "epoch": 42.992573176059416, + "grad_norm": 0.2177523374557495, + "learning_rate": 0.0006, + "loss": 3.666904926300049, + "step": 3095 + }, + { + "epoch": 43.0, + "grad_norm": 0.23960894346237183, + "learning_rate": 0.0006, + "loss": 3.710965633392334, + "step": 3096 + }, + { + "epoch": 43.0, + "eval_loss": 3.977475166320801, + "eval_runtime": 44.5209, + "eval_samples_per_second": 54.851, + "eval_steps_per_second": 3.437, + "step": 3096 + }, + { + "epoch": 43.01397990388816, + "grad_norm": 0.24180234968662262, + "learning_rate": 0.0006, + "loss": 3.5949223041534424, + "step": 3097 + }, + { + "epoch": 43.02795980777632, + "grad_norm": 0.3331127166748047, + "learning_rate": 0.0006, + "loss": 3.625802755355835, + "step": 3098 + }, + { + "epoch": 43.04193971166448, + "grad_norm": 0.38338130712509155, + "learning_rate": 0.0006, + "loss": 3.6390271186828613, + "step": 3099 + }, + { + "epoch": 43.05591961555265, + "grad_norm": 0.32292598485946655, + "learning_rate": 0.0006, + "loss": 3.630621910095215, + "step": 3100 + }, + { + "epoch": 43.0698995194408, + "grad_norm": 0.24179677665233612, + "learning_rate": 0.0006, + "loss": 3.6124491691589355, + "step": 3101 + }, + { + "epoch": 43.083879423328966, + "grad_norm": 0.2622842788696289, + "learning_rate": 0.0006, + "loss": 3.6207399368286133, + "step": 3102 + }, + { + "epoch": 43.09785932721712, + "grad_norm": 0.264297217130661, + "learning_rate": 0.0006, + "loss": 3.637218475341797, + "step": 3103 + }, + { + "epoch": 43.111839231105286, + "grad_norm": 0.25815117359161377, + "learning_rate": 0.0006, + "loss": 3.614841938018799, + "step": 3104 + }, + { + "epoch": 43.12581913499345, + "grad_norm": 0.2209406942129135, + "learning_rate": 0.0006, + "loss": 3.604722738265991, + "step": 3105 + }, + { + "epoch": 43.139799038881605, + "grad_norm": 0.22333410382270813, + "learning_rate": 0.0006, + "loss": 3.6388449668884277, + "step": 3106 + }, + { + "epoch": 43.15377894276977, + "grad_norm": 0.2194417119026184, + "learning_rate": 0.0006, + "loss": 3.611644744873047, + "step": 3107 + }, + { + "epoch": 43.16775884665793, + "grad_norm": 0.21270349621772766, + "learning_rate": 0.0006, + "loss": 3.6180214881896973, + "step": 3108 + }, + { + "epoch": 43.18173875054609, + "grad_norm": 0.21358032524585724, + "learning_rate": 0.0006, + "loss": 3.646512985229492, + "step": 3109 + }, + { + "epoch": 43.19571865443425, + "grad_norm": 0.2180788666009903, + "learning_rate": 0.0006, + "loss": 3.641981363296509, + "step": 3110 + }, + { + "epoch": 43.20969855832241, + "grad_norm": 0.21979685127735138, + "learning_rate": 0.0006, + "loss": 3.6251654624938965, + "step": 3111 + }, + { + "epoch": 43.22367846221057, + "grad_norm": 0.2072533220052719, + "learning_rate": 0.0006, + "loss": 3.665372371673584, + "step": 3112 + }, + { + "epoch": 43.237658366098735, + "grad_norm": 0.2085742950439453, + "learning_rate": 0.0006, + "loss": 3.647730827331543, + "step": 3113 + }, + { + "epoch": 43.25163826998689, + "grad_norm": 0.1934993416070938, + "learning_rate": 0.0006, + "loss": 3.6296567916870117, + "step": 3114 + }, + { + "epoch": 43.265618173875055, + "grad_norm": 0.1954783797264099, + "learning_rate": 0.0006, + "loss": 3.6412858963012695, + "step": 3115 + }, + { + "epoch": 43.27959807776322, + "grad_norm": 0.1932750642299652, + "learning_rate": 0.0006, + "loss": 3.6246860027313232, + "step": 3116 + }, + { + "epoch": 43.293577981651374, + "grad_norm": 0.19765302538871765, + "learning_rate": 0.0006, + "loss": 3.618922710418701, + "step": 3117 + }, + { + "epoch": 43.30755788553954, + "grad_norm": 0.1987425684928894, + "learning_rate": 0.0006, + "loss": 3.633185863494873, + "step": 3118 + }, + { + "epoch": 43.3215377894277, + "grad_norm": 0.1894739419221878, + "learning_rate": 0.0006, + "loss": 3.595709800720215, + "step": 3119 + }, + { + "epoch": 43.33551769331586, + "grad_norm": 0.19455872476100922, + "learning_rate": 0.0006, + "loss": 3.6309051513671875, + "step": 3120 + }, + { + "epoch": 43.34949759720402, + "grad_norm": 0.21448275446891785, + "learning_rate": 0.0006, + "loss": 3.6425981521606445, + "step": 3121 + }, + { + "epoch": 43.36347750109218, + "grad_norm": 0.24527893960475922, + "learning_rate": 0.0006, + "loss": 3.6497793197631836, + "step": 3122 + }, + { + "epoch": 43.37745740498034, + "grad_norm": 0.253231942653656, + "learning_rate": 0.0006, + "loss": 3.644453525543213, + "step": 3123 + }, + { + "epoch": 43.391437308868504, + "grad_norm": 0.2048978954553604, + "learning_rate": 0.0006, + "loss": 3.5963876247406006, + "step": 3124 + }, + { + "epoch": 43.40541721275666, + "grad_norm": 0.19951528310775757, + "learning_rate": 0.0006, + "loss": 3.6274406909942627, + "step": 3125 + }, + { + "epoch": 43.419397116644824, + "grad_norm": 0.2293875813484192, + "learning_rate": 0.0006, + "loss": 3.6482725143432617, + "step": 3126 + }, + { + "epoch": 43.43337702053299, + "grad_norm": 0.22379456460475922, + "learning_rate": 0.0006, + "loss": 3.6466073989868164, + "step": 3127 + }, + { + "epoch": 43.44735692442114, + "grad_norm": 0.2275441288948059, + "learning_rate": 0.0006, + "loss": 3.6529078483581543, + "step": 3128 + }, + { + "epoch": 43.46133682830931, + "grad_norm": 0.23014242947101593, + "learning_rate": 0.0006, + "loss": 3.6084837913513184, + "step": 3129 + }, + { + "epoch": 43.47531673219746, + "grad_norm": 0.22280924022197723, + "learning_rate": 0.0006, + "loss": 3.611320734024048, + "step": 3130 + }, + { + "epoch": 43.489296636085626, + "grad_norm": 0.19498756527900696, + "learning_rate": 0.0006, + "loss": 3.630185604095459, + "step": 3131 + }, + { + "epoch": 43.50327653997379, + "grad_norm": 0.21357767283916473, + "learning_rate": 0.0006, + "loss": 3.6509933471679688, + "step": 3132 + }, + { + "epoch": 43.517256443861946, + "grad_norm": 0.21775896847248077, + "learning_rate": 0.0006, + "loss": 3.635112762451172, + "step": 3133 + }, + { + "epoch": 43.53123634775011, + "grad_norm": 0.2035629004240036, + "learning_rate": 0.0006, + "loss": 3.658327102661133, + "step": 3134 + }, + { + "epoch": 43.54521625163827, + "grad_norm": 0.20083840191364288, + "learning_rate": 0.0006, + "loss": 3.632441997528076, + "step": 3135 + }, + { + "epoch": 43.55919615552643, + "grad_norm": 0.1922001987695694, + "learning_rate": 0.0006, + "loss": 3.6417734622955322, + "step": 3136 + }, + { + "epoch": 43.57317605941459, + "grad_norm": 0.21049264073371887, + "learning_rate": 0.0006, + "loss": 3.671274423599243, + "step": 3137 + }, + { + "epoch": 43.58715596330275, + "grad_norm": 0.21432001888751984, + "learning_rate": 0.0006, + "loss": 3.6216118335723877, + "step": 3138 + }, + { + "epoch": 43.60113586719091, + "grad_norm": 0.25448811054229736, + "learning_rate": 0.0006, + "loss": 3.658283233642578, + "step": 3139 + }, + { + "epoch": 43.615115771079076, + "grad_norm": 0.24313904345035553, + "learning_rate": 0.0006, + "loss": 3.6447594165802, + "step": 3140 + }, + { + "epoch": 43.62909567496723, + "grad_norm": 0.2332659363746643, + "learning_rate": 0.0006, + "loss": 3.625528573989868, + "step": 3141 + }, + { + "epoch": 43.643075578855395, + "grad_norm": 0.23222137987613678, + "learning_rate": 0.0006, + "loss": 3.6524429321289062, + "step": 3142 + }, + { + "epoch": 43.65705548274356, + "grad_norm": 0.2147051990032196, + "learning_rate": 0.0006, + "loss": 3.6517302989959717, + "step": 3143 + }, + { + "epoch": 43.671035386631715, + "grad_norm": 0.2464994341135025, + "learning_rate": 0.0006, + "loss": 3.654947519302368, + "step": 3144 + }, + { + "epoch": 43.68501529051988, + "grad_norm": 0.2365981936454773, + "learning_rate": 0.0006, + "loss": 3.638695240020752, + "step": 3145 + }, + { + "epoch": 43.69899519440804, + "grad_norm": 0.2325262874364853, + "learning_rate": 0.0006, + "loss": 3.6496055126190186, + "step": 3146 + }, + { + "epoch": 43.7129750982962, + "grad_norm": 0.2196085900068283, + "learning_rate": 0.0006, + "loss": 3.6323978900909424, + "step": 3147 + }, + { + "epoch": 43.72695500218436, + "grad_norm": 0.20404237508773804, + "learning_rate": 0.0006, + "loss": 3.6572763919830322, + "step": 3148 + }, + { + "epoch": 43.74093490607252, + "grad_norm": 0.2363257110118866, + "learning_rate": 0.0006, + "loss": 3.6347732543945312, + "step": 3149 + }, + { + "epoch": 43.75491480996068, + "grad_norm": 0.23671524226665497, + "learning_rate": 0.0006, + "loss": 3.650017023086548, + "step": 3150 + }, + { + "epoch": 43.768894713848844, + "grad_norm": 0.20892305672168732, + "learning_rate": 0.0006, + "loss": 3.638185977935791, + "step": 3151 + }, + { + "epoch": 43.782874617737, + "grad_norm": 0.18670055270195007, + "learning_rate": 0.0006, + "loss": 3.6647696495056152, + "step": 3152 + }, + { + "epoch": 43.796854521625164, + "grad_norm": 0.21818184852600098, + "learning_rate": 0.0006, + "loss": 3.663623332977295, + "step": 3153 + }, + { + "epoch": 43.81083442551333, + "grad_norm": 0.23472464084625244, + "learning_rate": 0.0006, + "loss": 3.650595188140869, + "step": 3154 + }, + { + "epoch": 43.824814329401484, + "grad_norm": 0.2266419678926468, + "learning_rate": 0.0006, + "loss": 3.6362059116363525, + "step": 3155 + }, + { + "epoch": 43.83879423328965, + "grad_norm": 0.2250787913799286, + "learning_rate": 0.0006, + "loss": 3.647970199584961, + "step": 3156 + }, + { + "epoch": 43.8527741371778, + "grad_norm": 0.21493776142597198, + "learning_rate": 0.0006, + "loss": 3.6510982513427734, + "step": 3157 + }, + { + "epoch": 43.86675404106597, + "grad_norm": 0.20783160626888275, + "learning_rate": 0.0006, + "loss": 3.654845714569092, + "step": 3158 + }, + { + "epoch": 43.88073394495413, + "grad_norm": 0.2222554087638855, + "learning_rate": 0.0006, + "loss": 3.6565685272216797, + "step": 3159 + }, + { + "epoch": 43.89471384884229, + "grad_norm": 0.2148049771785736, + "learning_rate": 0.0006, + "loss": 3.630779266357422, + "step": 3160 + }, + { + "epoch": 43.90869375273045, + "grad_norm": 0.2222086787223816, + "learning_rate": 0.0006, + "loss": 3.6312813758850098, + "step": 3161 + }, + { + "epoch": 43.92267365661861, + "grad_norm": 0.24049264192581177, + "learning_rate": 0.0006, + "loss": 3.6185736656188965, + "step": 3162 + }, + { + "epoch": 43.93665356050677, + "grad_norm": 0.2228843867778778, + "learning_rate": 0.0006, + "loss": 3.595583438873291, + "step": 3163 + }, + { + "epoch": 43.95063346439493, + "grad_norm": 0.20714408159255981, + "learning_rate": 0.0006, + "loss": 3.6649322509765625, + "step": 3164 + }, + { + "epoch": 43.964613368283096, + "grad_norm": 0.2048991471529007, + "learning_rate": 0.0006, + "loss": 3.6513710021972656, + "step": 3165 + }, + { + "epoch": 43.97859327217125, + "grad_norm": 0.21874114871025085, + "learning_rate": 0.0006, + "loss": 3.6471524238586426, + "step": 3166 + }, + { + "epoch": 43.992573176059416, + "grad_norm": 0.21309879422187805, + "learning_rate": 0.0006, + "loss": 3.647021770477295, + "step": 3167 + }, + { + "epoch": 44.0, + "grad_norm": 0.23717166483402252, + "learning_rate": 0.0006, + "loss": 3.6903820037841797, + "step": 3168 + }, + { + "epoch": 44.0, + "eval_loss": 3.9844837188720703, + "eval_runtime": 44.29, + "eval_samples_per_second": 55.137, + "eval_steps_per_second": 3.455, + "step": 3168 + }, + { + "epoch": 44.01397990388816, + "grad_norm": 0.21503832936286926, + "learning_rate": 0.0006, + "loss": 3.6054744720458984, + "step": 3169 + }, + { + "epoch": 44.02795980777632, + "grad_norm": 0.2289554923772812, + "learning_rate": 0.0006, + "loss": 3.6560556888580322, + "step": 3170 + }, + { + "epoch": 44.04193971166448, + "grad_norm": 0.24250416457653046, + "learning_rate": 0.0006, + "loss": 3.611820697784424, + "step": 3171 + }, + { + "epoch": 44.05591961555265, + "grad_norm": 0.2526668310165405, + "learning_rate": 0.0006, + "loss": 3.6273183822631836, + "step": 3172 + }, + { + "epoch": 44.0698995194408, + "grad_norm": 0.26702383160591125, + "learning_rate": 0.0006, + "loss": 3.5856852531433105, + "step": 3173 + }, + { + "epoch": 44.083879423328966, + "grad_norm": 0.2715195417404175, + "learning_rate": 0.0006, + "loss": 3.631045341491699, + "step": 3174 + }, + { + "epoch": 44.09785932721712, + "grad_norm": 0.3505614995956421, + "learning_rate": 0.0006, + "loss": 3.628720760345459, + "step": 3175 + }, + { + "epoch": 44.111839231105286, + "grad_norm": 0.2760702967643738, + "learning_rate": 0.0006, + "loss": 3.6283509731292725, + "step": 3176 + }, + { + "epoch": 44.12581913499345, + "grad_norm": 0.21105222404003143, + "learning_rate": 0.0006, + "loss": 3.6495566368103027, + "step": 3177 + }, + { + "epoch": 44.139799038881605, + "grad_norm": 0.2852860987186432, + "learning_rate": 0.0006, + "loss": 3.640768527984619, + "step": 3178 + }, + { + "epoch": 44.15377894276977, + "grad_norm": 0.2941005825996399, + "learning_rate": 0.0006, + "loss": 3.6303114891052246, + "step": 3179 + }, + { + "epoch": 44.16775884665793, + "grad_norm": 0.2792299687862396, + "learning_rate": 0.0006, + "loss": 3.6053574085235596, + "step": 3180 + }, + { + "epoch": 44.18173875054609, + "grad_norm": 0.23168638348579407, + "learning_rate": 0.0006, + "loss": 3.62430477142334, + "step": 3181 + }, + { + "epoch": 44.19571865443425, + "grad_norm": 0.23713921010494232, + "learning_rate": 0.0006, + "loss": 3.601106643676758, + "step": 3182 + }, + { + "epoch": 44.20969855832241, + "grad_norm": 0.23341049253940582, + "learning_rate": 0.0006, + "loss": 3.631762742996216, + "step": 3183 + }, + { + "epoch": 44.22367846221057, + "grad_norm": 0.23094508051872253, + "learning_rate": 0.0006, + "loss": 3.586683750152588, + "step": 3184 + }, + { + "epoch": 44.237658366098735, + "grad_norm": 0.24085712432861328, + "learning_rate": 0.0006, + "loss": 3.6251423358917236, + "step": 3185 + }, + { + "epoch": 44.25163826998689, + "grad_norm": 0.24999955296516418, + "learning_rate": 0.0006, + "loss": 3.6554198265075684, + "step": 3186 + }, + { + "epoch": 44.265618173875055, + "grad_norm": 0.21759621798992157, + "learning_rate": 0.0006, + "loss": 3.6249518394470215, + "step": 3187 + }, + { + "epoch": 44.27959807776322, + "grad_norm": 0.2490139901638031, + "learning_rate": 0.0006, + "loss": 3.6163341999053955, + "step": 3188 + }, + { + "epoch": 44.293577981651374, + "grad_norm": 0.23420892655849457, + "learning_rate": 0.0006, + "loss": 3.615469455718994, + "step": 3189 + }, + { + "epoch": 44.30755788553954, + "grad_norm": 0.2292138934135437, + "learning_rate": 0.0006, + "loss": 3.6085104942321777, + "step": 3190 + }, + { + "epoch": 44.3215377894277, + "grad_norm": 0.22595474123954773, + "learning_rate": 0.0006, + "loss": 3.6317405700683594, + "step": 3191 + }, + { + "epoch": 44.33551769331586, + "grad_norm": 0.22418338060379028, + "learning_rate": 0.0006, + "loss": 3.6287777423858643, + "step": 3192 + }, + { + "epoch": 44.34949759720402, + "grad_norm": 0.2453135848045349, + "learning_rate": 0.0006, + "loss": 3.6228437423706055, + "step": 3193 + }, + { + "epoch": 44.36347750109218, + "grad_norm": 0.2627771198749542, + "learning_rate": 0.0006, + "loss": 3.6581034660339355, + "step": 3194 + }, + { + "epoch": 44.37745740498034, + "grad_norm": 0.24114494025707245, + "learning_rate": 0.0006, + "loss": 3.653505563735962, + "step": 3195 + }, + { + "epoch": 44.391437308868504, + "grad_norm": 0.2103721648454666, + "learning_rate": 0.0006, + "loss": 3.5698580741882324, + "step": 3196 + }, + { + "epoch": 44.40541721275666, + "grad_norm": 0.21172291040420532, + "learning_rate": 0.0006, + "loss": 3.573453426361084, + "step": 3197 + }, + { + "epoch": 44.419397116644824, + "grad_norm": 0.20298106968402863, + "learning_rate": 0.0006, + "loss": 3.6350207328796387, + "step": 3198 + }, + { + "epoch": 44.43337702053299, + "grad_norm": 0.2029009759426117, + "learning_rate": 0.0006, + "loss": 3.6025917530059814, + "step": 3199 + }, + { + "epoch": 44.44735692442114, + "grad_norm": 0.18960542976856232, + "learning_rate": 0.0006, + "loss": 3.625028133392334, + "step": 3200 + }, + { + "epoch": 44.46133682830931, + "grad_norm": 0.20758579671382904, + "learning_rate": 0.0006, + "loss": 3.647071123123169, + "step": 3201 + }, + { + "epoch": 44.47531673219746, + "grad_norm": 0.21896769106388092, + "learning_rate": 0.0006, + "loss": 3.6481196880340576, + "step": 3202 + }, + { + "epoch": 44.489296636085626, + "grad_norm": 0.20817387104034424, + "learning_rate": 0.0006, + "loss": 3.629366874694824, + "step": 3203 + }, + { + "epoch": 44.50327653997379, + "grad_norm": 0.2099488228559494, + "learning_rate": 0.0006, + "loss": 3.6757798194885254, + "step": 3204 + }, + { + "epoch": 44.517256443861946, + "grad_norm": 0.21376627683639526, + "learning_rate": 0.0006, + "loss": 3.638324737548828, + "step": 3205 + }, + { + "epoch": 44.53123634775011, + "grad_norm": 0.19089072942733765, + "learning_rate": 0.0006, + "loss": 3.6497435569763184, + "step": 3206 + }, + { + "epoch": 44.54521625163827, + "grad_norm": 0.20489120483398438, + "learning_rate": 0.0006, + "loss": 3.634019374847412, + "step": 3207 + }, + { + "epoch": 44.55919615552643, + "grad_norm": 0.21991780400276184, + "learning_rate": 0.0006, + "loss": 3.6255834102630615, + "step": 3208 + }, + { + "epoch": 44.57317605941459, + "grad_norm": 0.23417581617832184, + "learning_rate": 0.0006, + "loss": 3.631927728652954, + "step": 3209 + }, + { + "epoch": 44.58715596330275, + "grad_norm": 0.22819049656391144, + "learning_rate": 0.0006, + "loss": 3.640167713165283, + "step": 3210 + }, + { + "epoch": 44.60113586719091, + "grad_norm": 0.21443316340446472, + "learning_rate": 0.0006, + "loss": 3.645709991455078, + "step": 3211 + }, + { + "epoch": 44.615115771079076, + "grad_norm": 0.19252653419971466, + "learning_rate": 0.0006, + "loss": 3.591294288635254, + "step": 3212 + }, + { + "epoch": 44.62909567496723, + "grad_norm": 0.18925397098064423, + "learning_rate": 0.0006, + "loss": 3.6163625717163086, + "step": 3213 + }, + { + "epoch": 44.643075578855395, + "grad_norm": 0.21605387330055237, + "learning_rate": 0.0006, + "loss": 3.6826887130737305, + "step": 3214 + }, + { + "epoch": 44.65705548274356, + "grad_norm": 0.21301978826522827, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 3215 + }, + { + "epoch": 44.671035386631715, + "grad_norm": 0.20065832138061523, + "learning_rate": 0.0006, + "loss": 3.648879289627075, + "step": 3216 + }, + { + "epoch": 44.68501529051988, + "grad_norm": 0.21413499116897583, + "learning_rate": 0.0006, + "loss": 3.6327264308929443, + "step": 3217 + }, + { + "epoch": 44.69899519440804, + "grad_norm": 0.22769849002361298, + "learning_rate": 0.0006, + "loss": 3.6486430168151855, + "step": 3218 + }, + { + "epoch": 44.7129750982962, + "grad_norm": 0.227064847946167, + "learning_rate": 0.0006, + "loss": 3.633342981338501, + "step": 3219 + }, + { + "epoch": 44.72695500218436, + "grad_norm": 0.21335656940937042, + "learning_rate": 0.0006, + "loss": 3.648621082305908, + "step": 3220 + }, + { + "epoch": 44.74093490607252, + "grad_norm": 0.2085563838481903, + "learning_rate": 0.0006, + "loss": 3.647826671600342, + "step": 3221 + }, + { + "epoch": 44.75491480996068, + "grad_norm": 0.19203904271125793, + "learning_rate": 0.0006, + "loss": 3.6296122074127197, + "step": 3222 + }, + { + "epoch": 44.768894713848844, + "grad_norm": 0.1969112604856491, + "learning_rate": 0.0006, + "loss": 3.6477179527282715, + "step": 3223 + }, + { + "epoch": 44.782874617737, + "grad_norm": 0.21630392968654633, + "learning_rate": 0.0006, + "loss": 3.628805637359619, + "step": 3224 + }, + { + "epoch": 44.796854521625164, + "grad_norm": 0.20641647279262543, + "learning_rate": 0.0006, + "loss": 3.650993824005127, + "step": 3225 + }, + { + "epoch": 44.81083442551333, + "grad_norm": 0.1954173892736435, + "learning_rate": 0.0006, + "loss": 3.6362831592559814, + "step": 3226 + }, + { + "epoch": 44.824814329401484, + "grad_norm": 0.20479747653007507, + "learning_rate": 0.0006, + "loss": 3.6467390060424805, + "step": 3227 + }, + { + "epoch": 44.83879423328965, + "grad_norm": 0.20502690970897675, + "learning_rate": 0.0006, + "loss": 3.6260130405426025, + "step": 3228 + }, + { + "epoch": 44.8527741371778, + "grad_norm": 0.20348094403743744, + "learning_rate": 0.0006, + "loss": 3.6836767196655273, + "step": 3229 + }, + { + "epoch": 44.86675404106597, + "grad_norm": 0.18748269975185394, + "learning_rate": 0.0006, + "loss": 3.610104560852051, + "step": 3230 + }, + { + "epoch": 44.88073394495413, + "grad_norm": 0.18822219967842102, + "learning_rate": 0.0006, + "loss": 3.61354398727417, + "step": 3231 + }, + { + "epoch": 44.89471384884229, + "grad_norm": 0.20972031354904175, + "learning_rate": 0.0006, + "loss": 3.644336700439453, + "step": 3232 + }, + { + "epoch": 44.90869375273045, + "grad_norm": 0.2013155072927475, + "learning_rate": 0.0006, + "loss": 3.659287929534912, + "step": 3233 + }, + { + "epoch": 44.92267365661861, + "grad_norm": 0.2056475579738617, + "learning_rate": 0.0006, + "loss": 3.6545677185058594, + "step": 3234 + }, + { + "epoch": 44.93665356050677, + "grad_norm": 0.2104482203722, + "learning_rate": 0.0006, + "loss": 3.6094017028808594, + "step": 3235 + }, + { + "epoch": 44.95063346439493, + "grad_norm": 0.1993035078048706, + "learning_rate": 0.0006, + "loss": 3.6209053993225098, + "step": 3236 + }, + { + "epoch": 44.964613368283096, + "grad_norm": 0.1883099526166916, + "learning_rate": 0.0006, + "loss": 3.6011457443237305, + "step": 3237 + }, + { + "epoch": 44.97859327217125, + "grad_norm": 0.1927674412727356, + "learning_rate": 0.0006, + "loss": 3.606609344482422, + "step": 3238 + }, + { + "epoch": 44.992573176059416, + "grad_norm": 0.1878899335861206, + "learning_rate": 0.0006, + "loss": 3.6701109409332275, + "step": 3239 + }, + { + "epoch": 45.0, + "grad_norm": 0.2237395942211151, + "learning_rate": 0.0006, + "loss": 3.6617302894592285, + "step": 3240 + }, + { + "epoch": 45.0, + "eval_loss": 3.9812564849853516, + "eval_runtime": 44.8635, + "eval_samples_per_second": 54.432, + "eval_steps_per_second": 3.41, + "step": 3240 + }, + { + "epoch": 45.01397990388816, + "grad_norm": 0.21368487179279327, + "learning_rate": 0.0006, + "loss": 3.599107265472412, + "step": 3241 + }, + { + "epoch": 45.02795980777632, + "grad_norm": 0.2234211564064026, + "learning_rate": 0.0006, + "loss": 3.5943236351013184, + "step": 3242 + }, + { + "epoch": 45.04193971166448, + "grad_norm": 0.2222544252872467, + "learning_rate": 0.0006, + "loss": 3.6152291297912598, + "step": 3243 + }, + { + "epoch": 45.05591961555265, + "grad_norm": 0.24686792492866516, + "learning_rate": 0.0006, + "loss": 3.6006085872650146, + "step": 3244 + }, + { + "epoch": 45.0698995194408, + "grad_norm": 0.24634984135627747, + "learning_rate": 0.0006, + "loss": 3.6023471355438232, + "step": 3245 + }, + { + "epoch": 45.083879423328966, + "grad_norm": 0.2150750756263733, + "learning_rate": 0.0006, + "loss": 3.5690598487854004, + "step": 3246 + }, + { + "epoch": 45.09785932721712, + "grad_norm": 0.196721151471138, + "learning_rate": 0.0006, + "loss": 3.592653751373291, + "step": 3247 + }, + { + "epoch": 45.111839231105286, + "grad_norm": 0.21874476969242096, + "learning_rate": 0.0006, + "loss": 3.586243152618408, + "step": 3248 + }, + { + "epoch": 45.12581913499345, + "grad_norm": 0.21021611988544464, + "learning_rate": 0.0006, + "loss": 3.599384307861328, + "step": 3249 + }, + { + "epoch": 45.139799038881605, + "grad_norm": 0.19754183292388916, + "learning_rate": 0.0006, + "loss": 3.623816967010498, + "step": 3250 + }, + { + "epoch": 45.15377894276977, + "grad_norm": 0.21218672394752502, + "learning_rate": 0.0006, + "loss": 3.5901236534118652, + "step": 3251 + }, + { + "epoch": 45.16775884665793, + "grad_norm": 0.23569360375404358, + "learning_rate": 0.0006, + "loss": 3.600029945373535, + "step": 3252 + }, + { + "epoch": 45.18173875054609, + "grad_norm": 0.25429826974868774, + "learning_rate": 0.0006, + "loss": 3.607773542404175, + "step": 3253 + }, + { + "epoch": 45.19571865443425, + "grad_norm": 0.23416805267333984, + "learning_rate": 0.0006, + "loss": 3.63248348236084, + "step": 3254 + }, + { + "epoch": 45.20969855832241, + "grad_norm": 0.20821864902973175, + "learning_rate": 0.0006, + "loss": 3.641927719116211, + "step": 3255 + }, + { + "epoch": 45.22367846221057, + "grad_norm": 0.21849380433559418, + "learning_rate": 0.0006, + "loss": 3.665098190307617, + "step": 3256 + }, + { + "epoch": 45.237658366098735, + "grad_norm": 0.22939491271972656, + "learning_rate": 0.0006, + "loss": 3.6106104850769043, + "step": 3257 + }, + { + "epoch": 45.25163826998689, + "grad_norm": 0.24144501984119415, + "learning_rate": 0.0006, + "loss": 3.5872416496276855, + "step": 3258 + }, + { + "epoch": 45.265618173875055, + "grad_norm": 0.21790480613708496, + "learning_rate": 0.0006, + "loss": 3.6268889904022217, + "step": 3259 + }, + { + "epoch": 45.27959807776322, + "grad_norm": 0.22702264785766602, + "learning_rate": 0.0006, + "loss": 3.5972542762756348, + "step": 3260 + }, + { + "epoch": 45.293577981651374, + "grad_norm": 0.22465437650680542, + "learning_rate": 0.0006, + "loss": 3.6339592933654785, + "step": 3261 + }, + { + "epoch": 45.30755788553954, + "grad_norm": 0.21804460883140564, + "learning_rate": 0.0006, + "loss": 3.6062779426574707, + "step": 3262 + }, + { + "epoch": 45.3215377894277, + "grad_norm": 0.1985616534948349, + "learning_rate": 0.0006, + "loss": 3.629815101623535, + "step": 3263 + }, + { + "epoch": 45.33551769331586, + "grad_norm": 0.22264975309371948, + "learning_rate": 0.0006, + "loss": 3.631214141845703, + "step": 3264 + }, + { + "epoch": 45.34949759720402, + "grad_norm": 0.22178539633750916, + "learning_rate": 0.0006, + "loss": 3.620854377746582, + "step": 3265 + }, + { + "epoch": 45.36347750109218, + "grad_norm": 0.22392240166664124, + "learning_rate": 0.0006, + "loss": 3.6611738204956055, + "step": 3266 + }, + { + "epoch": 45.37745740498034, + "grad_norm": 0.2178916484117508, + "learning_rate": 0.0006, + "loss": 3.639893054962158, + "step": 3267 + }, + { + "epoch": 45.391437308868504, + "grad_norm": 0.2173885703086853, + "learning_rate": 0.0006, + "loss": 3.611750364303589, + "step": 3268 + }, + { + "epoch": 45.40541721275666, + "grad_norm": 0.2107069045305252, + "learning_rate": 0.0006, + "loss": 3.595181465148926, + "step": 3269 + }, + { + "epoch": 45.419397116644824, + "grad_norm": 0.19623015820980072, + "learning_rate": 0.0006, + "loss": 3.6096351146698, + "step": 3270 + }, + { + "epoch": 45.43337702053299, + "grad_norm": 0.23091304302215576, + "learning_rate": 0.0006, + "loss": 3.603667974472046, + "step": 3271 + }, + { + "epoch": 45.44735692442114, + "grad_norm": 0.22909007966518402, + "learning_rate": 0.0006, + "loss": 3.62846040725708, + "step": 3272 + }, + { + "epoch": 45.46133682830931, + "grad_norm": 0.2104928195476532, + "learning_rate": 0.0006, + "loss": 3.6543164253234863, + "step": 3273 + }, + { + "epoch": 45.47531673219746, + "grad_norm": 0.22994203865528107, + "learning_rate": 0.0006, + "loss": 3.621878147125244, + "step": 3274 + }, + { + "epoch": 45.489296636085626, + "grad_norm": 0.21652749180793762, + "learning_rate": 0.0006, + "loss": 3.6095705032348633, + "step": 3275 + }, + { + "epoch": 45.50327653997379, + "grad_norm": 0.20125073194503784, + "learning_rate": 0.0006, + "loss": 3.6213903427124023, + "step": 3276 + }, + { + "epoch": 45.517256443861946, + "grad_norm": 0.19995734095573425, + "learning_rate": 0.0006, + "loss": 3.6526503562927246, + "step": 3277 + }, + { + "epoch": 45.53123634775011, + "grad_norm": 0.2071387618780136, + "learning_rate": 0.0006, + "loss": 3.626208782196045, + "step": 3278 + }, + { + "epoch": 45.54521625163827, + "grad_norm": 0.222015842795372, + "learning_rate": 0.0006, + "loss": 3.61144757270813, + "step": 3279 + }, + { + "epoch": 45.55919615552643, + "grad_norm": 0.20780639350414276, + "learning_rate": 0.0006, + "loss": 3.64092755317688, + "step": 3280 + }, + { + "epoch": 45.57317605941459, + "grad_norm": 0.19297364354133606, + "learning_rate": 0.0006, + "loss": 3.6308364868164062, + "step": 3281 + }, + { + "epoch": 45.58715596330275, + "grad_norm": 0.1928786337375641, + "learning_rate": 0.0006, + "loss": 3.6258254051208496, + "step": 3282 + }, + { + "epoch": 45.60113586719091, + "grad_norm": 0.1940007209777832, + "learning_rate": 0.0006, + "loss": 3.622849464416504, + "step": 3283 + }, + { + "epoch": 45.615115771079076, + "grad_norm": 0.19643044471740723, + "learning_rate": 0.0006, + "loss": 3.6461117267608643, + "step": 3284 + }, + { + "epoch": 45.62909567496723, + "grad_norm": 0.19996654987335205, + "learning_rate": 0.0006, + "loss": 3.61572265625, + "step": 3285 + }, + { + "epoch": 45.643075578855395, + "grad_norm": 0.20202603936195374, + "learning_rate": 0.0006, + "loss": 3.610734462738037, + "step": 3286 + }, + { + "epoch": 45.65705548274356, + "grad_norm": 0.19249361753463745, + "learning_rate": 0.0006, + "loss": 3.607048511505127, + "step": 3287 + }, + { + "epoch": 45.671035386631715, + "grad_norm": 0.1894780397415161, + "learning_rate": 0.0006, + "loss": 3.6450905799865723, + "step": 3288 + }, + { + "epoch": 45.68501529051988, + "grad_norm": 0.19901636242866516, + "learning_rate": 0.0006, + "loss": 3.6313018798828125, + "step": 3289 + }, + { + "epoch": 45.69899519440804, + "grad_norm": 0.1875065118074417, + "learning_rate": 0.0006, + "loss": 3.641326427459717, + "step": 3290 + }, + { + "epoch": 45.7129750982962, + "grad_norm": 0.19832095503807068, + "learning_rate": 0.0006, + "loss": 3.6612308025360107, + "step": 3291 + }, + { + "epoch": 45.72695500218436, + "grad_norm": 0.20353806018829346, + "learning_rate": 0.0006, + "loss": 3.623152017593384, + "step": 3292 + }, + { + "epoch": 45.74093490607252, + "grad_norm": 0.1984023153781891, + "learning_rate": 0.0006, + "loss": 3.627358913421631, + "step": 3293 + }, + { + "epoch": 45.75491480996068, + "grad_norm": 0.2002221643924713, + "learning_rate": 0.0006, + "loss": 3.6334757804870605, + "step": 3294 + }, + { + "epoch": 45.768894713848844, + "grad_norm": 0.21099092066287994, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3295 + }, + { + "epoch": 45.782874617737, + "grad_norm": 0.19109416007995605, + "learning_rate": 0.0006, + "loss": 3.62795352935791, + "step": 3296 + }, + { + "epoch": 45.796854521625164, + "grad_norm": 0.18424192070960999, + "learning_rate": 0.0006, + "loss": 3.6151700019836426, + "step": 3297 + }, + { + "epoch": 45.81083442551333, + "grad_norm": 0.20823849737644196, + "learning_rate": 0.0006, + "loss": 3.641907215118408, + "step": 3298 + }, + { + "epoch": 45.824814329401484, + "grad_norm": 0.21407285332679749, + "learning_rate": 0.0006, + "loss": 3.6430726051330566, + "step": 3299 + }, + { + "epoch": 45.83879423328965, + "grad_norm": 0.23493780195713043, + "learning_rate": 0.0006, + "loss": 3.610065460205078, + "step": 3300 + }, + { + "epoch": 45.8527741371778, + "grad_norm": 0.21910642087459564, + "learning_rate": 0.0006, + "loss": 3.630603313446045, + "step": 3301 + }, + { + "epoch": 45.86675404106597, + "grad_norm": 0.1838075965642929, + "learning_rate": 0.0006, + "loss": 3.634315013885498, + "step": 3302 + }, + { + "epoch": 45.88073394495413, + "grad_norm": 0.22131477296352386, + "learning_rate": 0.0006, + "loss": 3.6142020225524902, + "step": 3303 + }, + { + "epoch": 45.89471384884229, + "grad_norm": 0.2497209906578064, + "learning_rate": 0.0006, + "loss": 3.689103126525879, + "step": 3304 + }, + { + "epoch": 45.90869375273045, + "grad_norm": 0.24403175711631775, + "learning_rate": 0.0006, + "loss": 3.6321184635162354, + "step": 3305 + }, + { + "epoch": 45.92267365661861, + "grad_norm": 0.22527103126049042, + "learning_rate": 0.0006, + "loss": 3.6486921310424805, + "step": 3306 + }, + { + "epoch": 45.93665356050677, + "grad_norm": 0.20127955079078674, + "learning_rate": 0.0006, + "loss": 3.6109299659729004, + "step": 3307 + }, + { + "epoch": 45.95063346439493, + "grad_norm": 0.18997317552566528, + "learning_rate": 0.0006, + "loss": 3.6157617568969727, + "step": 3308 + }, + { + "epoch": 45.964613368283096, + "grad_norm": 0.19921870529651642, + "learning_rate": 0.0006, + "loss": 3.691776990890503, + "step": 3309 + }, + { + "epoch": 45.97859327217125, + "grad_norm": 0.2124646008014679, + "learning_rate": 0.0006, + "loss": 3.61795711517334, + "step": 3310 + }, + { + "epoch": 45.992573176059416, + "grad_norm": 0.20002500712871552, + "learning_rate": 0.0006, + "loss": 3.6266353130340576, + "step": 3311 + }, + { + "epoch": 46.0, + "grad_norm": 0.22992220520973206, + "learning_rate": 0.0006, + "loss": 3.647242784500122, + "step": 3312 + }, + { + "epoch": 46.0, + "eval_loss": 3.9855220317840576, + "eval_runtime": 44.9108, + "eval_samples_per_second": 54.374, + "eval_steps_per_second": 3.407, + "step": 3312 + }, + { + "epoch": 46.01397990388816, + "grad_norm": 0.1976146101951599, + "learning_rate": 0.0006, + "loss": 3.5675041675567627, + "step": 3313 + }, + { + "epoch": 46.02795980777632, + "grad_norm": 0.2238360494375229, + "learning_rate": 0.0006, + "loss": 3.6077466011047363, + "step": 3314 + }, + { + "epoch": 46.04193971166448, + "grad_norm": 0.288669228553772, + "learning_rate": 0.0006, + "loss": 3.589958667755127, + "step": 3315 + }, + { + "epoch": 46.05591961555265, + "grad_norm": 0.30626827478408813, + "learning_rate": 0.0006, + "loss": 3.604401111602783, + "step": 3316 + }, + { + "epoch": 46.0698995194408, + "grad_norm": 0.2721095681190491, + "learning_rate": 0.0006, + "loss": 3.620197296142578, + "step": 3317 + }, + { + "epoch": 46.083879423328966, + "grad_norm": 0.2152107059955597, + "learning_rate": 0.0006, + "loss": 3.607327938079834, + "step": 3318 + }, + { + "epoch": 46.09785932721712, + "grad_norm": 0.2205267995595932, + "learning_rate": 0.0006, + "loss": 3.6020898818969727, + "step": 3319 + }, + { + "epoch": 46.111839231105286, + "grad_norm": 0.25419551134109497, + "learning_rate": 0.0006, + "loss": 3.59277606010437, + "step": 3320 + }, + { + "epoch": 46.12581913499345, + "grad_norm": 0.2379811704158783, + "learning_rate": 0.0006, + "loss": 3.560422897338867, + "step": 3321 + }, + { + "epoch": 46.139799038881605, + "grad_norm": 0.20928747951984406, + "learning_rate": 0.0006, + "loss": 3.6373965740203857, + "step": 3322 + }, + { + "epoch": 46.15377894276977, + "grad_norm": 0.21654292941093445, + "learning_rate": 0.0006, + "loss": 3.620784282684326, + "step": 3323 + }, + { + "epoch": 46.16775884665793, + "grad_norm": 0.22994576394557953, + "learning_rate": 0.0006, + "loss": 3.589960813522339, + "step": 3324 + }, + { + "epoch": 46.18173875054609, + "grad_norm": 0.24989335238933563, + "learning_rate": 0.0006, + "loss": 3.599091053009033, + "step": 3325 + }, + { + "epoch": 46.19571865443425, + "grad_norm": 0.27068355679512024, + "learning_rate": 0.0006, + "loss": 3.5933146476745605, + "step": 3326 + }, + { + "epoch": 46.20969855832241, + "grad_norm": 0.2581503391265869, + "learning_rate": 0.0006, + "loss": 3.5935447216033936, + "step": 3327 + }, + { + "epoch": 46.22367846221057, + "grad_norm": 0.23368583619594574, + "learning_rate": 0.0006, + "loss": 3.6120412349700928, + "step": 3328 + }, + { + "epoch": 46.237658366098735, + "grad_norm": 0.21808452904224396, + "learning_rate": 0.0006, + "loss": 3.6155190467834473, + "step": 3329 + }, + { + "epoch": 46.25163826998689, + "grad_norm": 0.2152830809354782, + "learning_rate": 0.0006, + "loss": 3.6039974689483643, + "step": 3330 + }, + { + "epoch": 46.265618173875055, + "grad_norm": 0.20902983844280243, + "learning_rate": 0.0006, + "loss": 3.586416721343994, + "step": 3331 + }, + { + "epoch": 46.27959807776322, + "grad_norm": 0.21693682670593262, + "learning_rate": 0.0006, + "loss": 3.601595401763916, + "step": 3332 + }, + { + "epoch": 46.293577981651374, + "grad_norm": 0.21157346665859222, + "learning_rate": 0.0006, + "loss": 3.619825601577759, + "step": 3333 + }, + { + "epoch": 46.30755788553954, + "grad_norm": 0.19628529250621796, + "learning_rate": 0.0006, + "loss": 3.5845298767089844, + "step": 3334 + }, + { + "epoch": 46.3215377894277, + "grad_norm": 0.19599373638629913, + "learning_rate": 0.0006, + "loss": 3.614483594894409, + "step": 3335 + }, + { + "epoch": 46.33551769331586, + "grad_norm": 0.21777382493019104, + "learning_rate": 0.0006, + "loss": 3.5865678787231445, + "step": 3336 + }, + { + "epoch": 46.34949759720402, + "grad_norm": 0.24697323143482208, + "learning_rate": 0.0006, + "loss": 3.6168298721313477, + "step": 3337 + }, + { + "epoch": 46.36347750109218, + "grad_norm": 0.29521632194519043, + "learning_rate": 0.0006, + "loss": 3.627875804901123, + "step": 3338 + }, + { + "epoch": 46.37745740498034, + "grad_norm": 0.2548002004623413, + "learning_rate": 0.0006, + "loss": 3.6286001205444336, + "step": 3339 + }, + { + "epoch": 46.391437308868504, + "grad_norm": 0.20501002669334412, + "learning_rate": 0.0006, + "loss": 3.625035524368286, + "step": 3340 + }, + { + "epoch": 46.40541721275666, + "grad_norm": 0.21849584579467773, + "learning_rate": 0.0006, + "loss": 3.621872901916504, + "step": 3341 + }, + { + "epoch": 46.419397116644824, + "grad_norm": 0.22302033007144928, + "learning_rate": 0.0006, + "loss": 3.6088266372680664, + "step": 3342 + }, + { + "epoch": 46.43337702053299, + "grad_norm": 0.21138787269592285, + "learning_rate": 0.0006, + "loss": 3.6211094856262207, + "step": 3343 + }, + { + "epoch": 46.44735692442114, + "grad_norm": 0.22372713685035706, + "learning_rate": 0.0006, + "loss": 3.5799427032470703, + "step": 3344 + }, + { + "epoch": 46.46133682830931, + "grad_norm": 0.22019316256046295, + "learning_rate": 0.0006, + "loss": 3.616044044494629, + "step": 3345 + }, + { + "epoch": 46.47531673219746, + "grad_norm": 0.21947625279426575, + "learning_rate": 0.0006, + "loss": 3.613643169403076, + "step": 3346 + }, + { + "epoch": 46.489296636085626, + "grad_norm": 0.21935684978961945, + "learning_rate": 0.0006, + "loss": 3.6255440711975098, + "step": 3347 + }, + { + "epoch": 46.50327653997379, + "grad_norm": 0.20366479456424713, + "learning_rate": 0.0006, + "loss": 3.613892078399658, + "step": 3348 + }, + { + "epoch": 46.517256443861946, + "grad_norm": 0.21755267679691315, + "learning_rate": 0.0006, + "loss": 3.617886543273926, + "step": 3349 + }, + { + "epoch": 46.53123634775011, + "grad_norm": 0.20023910701274872, + "learning_rate": 0.0006, + "loss": 3.6172280311584473, + "step": 3350 + }, + { + "epoch": 46.54521625163827, + "grad_norm": 0.20375007390975952, + "learning_rate": 0.0006, + "loss": 3.595829486846924, + "step": 3351 + }, + { + "epoch": 46.55919615552643, + "grad_norm": 0.21125391125679016, + "learning_rate": 0.0006, + "loss": 3.632533550262451, + "step": 3352 + }, + { + "epoch": 46.57317605941459, + "grad_norm": 0.2359670102596283, + "learning_rate": 0.0006, + "loss": 3.597811222076416, + "step": 3353 + }, + { + "epoch": 46.58715596330275, + "grad_norm": 0.21696777641773224, + "learning_rate": 0.0006, + "loss": 3.627127170562744, + "step": 3354 + }, + { + "epoch": 46.60113586719091, + "grad_norm": 0.21501564979553223, + "learning_rate": 0.0006, + "loss": 3.630887985229492, + "step": 3355 + }, + { + "epoch": 46.615115771079076, + "grad_norm": 0.21446822583675385, + "learning_rate": 0.0006, + "loss": 3.6075234413146973, + "step": 3356 + }, + { + "epoch": 46.62909567496723, + "grad_norm": 0.21508967876434326, + "learning_rate": 0.0006, + "loss": 3.626603603363037, + "step": 3357 + }, + { + "epoch": 46.643075578855395, + "grad_norm": 0.19969215989112854, + "learning_rate": 0.0006, + "loss": 3.6160733699798584, + "step": 3358 + }, + { + "epoch": 46.65705548274356, + "grad_norm": 0.19982007145881653, + "learning_rate": 0.0006, + "loss": 3.632960319519043, + "step": 3359 + }, + { + "epoch": 46.671035386631715, + "grad_norm": 0.1981230527162552, + "learning_rate": 0.0006, + "loss": 3.608591079711914, + "step": 3360 + }, + { + "epoch": 46.68501529051988, + "grad_norm": 0.19948643445968628, + "learning_rate": 0.0006, + "loss": 3.6100947856903076, + "step": 3361 + }, + { + "epoch": 46.69899519440804, + "grad_norm": 0.18967196345329285, + "learning_rate": 0.0006, + "loss": 3.6203439235687256, + "step": 3362 + }, + { + "epoch": 46.7129750982962, + "grad_norm": 0.20035311579704285, + "learning_rate": 0.0006, + "loss": 3.64508056640625, + "step": 3363 + }, + { + "epoch": 46.72695500218436, + "grad_norm": 0.21049824357032776, + "learning_rate": 0.0006, + "loss": 3.620095729827881, + "step": 3364 + }, + { + "epoch": 46.74093490607252, + "grad_norm": 0.21411995589733124, + "learning_rate": 0.0006, + "loss": 3.650815963745117, + "step": 3365 + }, + { + "epoch": 46.75491480996068, + "grad_norm": 0.18666061758995056, + "learning_rate": 0.0006, + "loss": 3.625699758529663, + "step": 3366 + }, + { + "epoch": 46.768894713848844, + "grad_norm": 0.1927071362733841, + "learning_rate": 0.0006, + "loss": 3.6165151596069336, + "step": 3367 + }, + { + "epoch": 46.782874617737, + "grad_norm": 0.2063879817724228, + "learning_rate": 0.0006, + "loss": 3.6182332038879395, + "step": 3368 + }, + { + "epoch": 46.796854521625164, + "grad_norm": 0.19215327501296997, + "learning_rate": 0.0006, + "loss": 3.607239246368408, + "step": 3369 + }, + { + "epoch": 46.81083442551333, + "grad_norm": 0.2074592262506485, + "learning_rate": 0.0006, + "loss": 3.624856948852539, + "step": 3370 + }, + { + "epoch": 46.824814329401484, + "grad_norm": 0.2184106856584549, + "learning_rate": 0.0006, + "loss": 3.628757953643799, + "step": 3371 + }, + { + "epoch": 46.83879423328965, + "grad_norm": 0.2203136682510376, + "learning_rate": 0.0006, + "loss": 3.625958204269409, + "step": 3372 + }, + { + "epoch": 46.8527741371778, + "grad_norm": 0.21920061111450195, + "learning_rate": 0.0006, + "loss": 3.6060733795166016, + "step": 3373 + }, + { + "epoch": 46.86675404106597, + "grad_norm": 0.2122412472963333, + "learning_rate": 0.0006, + "loss": 3.6126952171325684, + "step": 3374 + }, + { + "epoch": 46.88073394495413, + "grad_norm": 0.1971784383058548, + "learning_rate": 0.0006, + "loss": 3.637129783630371, + "step": 3375 + }, + { + "epoch": 46.89471384884229, + "grad_norm": 0.20824873447418213, + "learning_rate": 0.0006, + "loss": 3.62868070602417, + "step": 3376 + }, + { + "epoch": 46.90869375273045, + "grad_norm": 0.20157678425312042, + "learning_rate": 0.0006, + "loss": 3.6321873664855957, + "step": 3377 + }, + { + "epoch": 46.92267365661861, + "grad_norm": 0.1958925426006317, + "learning_rate": 0.0006, + "loss": 3.6513354778289795, + "step": 3378 + }, + { + "epoch": 46.93665356050677, + "grad_norm": 0.1969553828239441, + "learning_rate": 0.0006, + "loss": 3.6346323490142822, + "step": 3379 + }, + { + "epoch": 46.95063346439493, + "grad_norm": 0.19311924278736115, + "learning_rate": 0.0006, + "loss": 3.6673245429992676, + "step": 3380 + }, + { + "epoch": 46.964613368283096, + "grad_norm": 0.20341862738132477, + "learning_rate": 0.0006, + "loss": 3.680025339126587, + "step": 3381 + }, + { + "epoch": 46.97859327217125, + "grad_norm": 0.20667442679405212, + "learning_rate": 0.0006, + "loss": 3.632290840148926, + "step": 3382 + }, + { + "epoch": 46.992573176059416, + "grad_norm": 0.19141609966754913, + "learning_rate": 0.0006, + "loss": 3.659360647201538, + "step": 3383 + }, + { + "epoch": 47.0, + "grad_norm": 0.20981188118457794, + "learning_rate": 0.0006, + "loss": 3.653548240661621, + "step": 3384 + }, + { + "epoch": 47.0, + "eval_loss": 3.9833984375, + "eval_runtime": 44.4693, + "eval_samples_per_second": 54.914, + "eval_steps_per_second": 3.441, + "step": 3384 + }, + { + "epoch": 47.01397990388816, + "grad_norm": 0.1958128660917282, + "learning_rate": 0.0006, + "loss": 3.5778727531433105, + "step": 3385 + }, + { + "epoch": 47.02795980777632, + "grad_norm": 0.19728390872478485, + "learning_rate": 0.0006, + "loss": 3.5827393531799316, + "step": 3386 + }, + { + "epoch": 47.04193971166448, + "grad_norm": 0.18564026057720184, + "learning_rate": 0.0006, + "loss": 3.573071002960205, + "step": 3387 + }, + { + "epoch": 47.05591961555265, + "grad_norm": 0.20563258230686188, + "learning_rate": 0.0006, + "loss": 3.564330577850342, + "step": 3388 + }, + { + "epoch": 47.0698995194408, + "grad_norm": 0.21382158994674683, + "learning_rate": 0.0006, + "loss": 3.5976946353912354, + "step": 3389 + }, + { + "epoch": 47.083879423328966, + "grad_norm": 0.2383693903684616, + "learning_rate": 0.0006, + "loss": 3.5970897674560547, + "step": 3390 + }, + { + "epoch": 47.09785932721712, + "grad_norm": 0.24709449708461761, + "learning_rate": 0.0006, + "loss": 3.613409996032715, + "step": 3391 + }, + { + "epoch": 47.111839231105286, + "grad_norm": 0.2329784333705902, + "learning_rate": 0.0006, + "loss": 3.571023464202881, + "step": 3392 + }, + { + "epoch": 47.12581913499345, + "grad_norm": 0.2096954584121704, + "learning_rate": 0.0006, + "loss": 3.573697090148926, + "step": 3393 + }, + { + "epoch": 47.139799038881605, + "grad_norm": 0.21630050241947174, + "learning_rate": 0.0006, + "loss": 3.6085095405578613, + "step": 3394 + }, + { + "epoch": 47.15377894276977, + "grad_norm": 0.22828878462314606, + "learning_rate": 0.0006, + "loss": 3.605466842651367, + "step": 3395 + }, + { + "epoch": 47.16775884665793, + "grad_norm": 0.24957625567913055, + "learning_rate": 0.0006, + "loss": 3.588324546813965, + "step": 3396 + }, + { + "epoch": 47.18173875054609, + "grad_norm": 0.25446194410324097, + "learning_rate": 0.0006, + "loss": 3.6161458492279053, + "step": 3397 + }, + { + "epoch": 47.19571865443425, + "grad_norm": 0.24938438832759857, + "learning_rate": 0.0006, + "loss": 3.6017847061157227, + "step": 3398 + }, + { + "epoch": 47.20969855832241, + "grad_norm": 0.23318032920360565, + "learning_rate": 0.0006, + "loss": 3.6077046394348145, + "step": 3399 + }, + { + "epoch": 47.22367846221057, + "grad_norm": 0.2179042547941208, + "learning_rate": 0.0006, + "loss": 3.598104953765869, + "step": 3400 + }, + { + "epoch": 47.237658366098735, + "grad_norm": 0.213354229927063, + "learning_rate": 0.0006, + "loss": 3.6328814029693604, + "step": 3401 + }, + { + "epoch": 47.25163826998689, + "grad_norm": 0.23104089498519897, + "learning_rate": 0.0006, + "loss": 3.6161890029907227, + "step": 3402 + }, + { + "epoch": 47.265618173875055, + "grad_norm": 0.22219021618366241, + "learning_rate": 0.0006, + "loss": 3.620314121246338, + "step": 3403 + }, + { + "epoch": 47.27959807776322, + "grad_norm": 0.21618683636188507, + "learning_rate": 0.0006, + "loss": 3.5955371856689453, + "step": 3404 + }, + { + "epoch": 47.293577981651374, + "grad_norm": 0.22280243039131165, + "learning_rate": 0.0006, + "loss": 3.618302345275879, + "step": 3405 + }, + { + "epoch": 47.30755788553954, + "grad_norm": 0.2268427014350891, + "learning_rate": 0.0006, + "loss": 3.6035101413726807, + "step": 3406 + }, + { + "epoch": 47.3215377894277, + "grad_norm": 0.20324429869651794, + "learning_rate": 0.0006, + "loss": 3.612598419189453, + "step": 3407 + }, + { + "epoch": 47.33551769331586, + "grad_norm": 0.19353045523166656, + "learning_rate": 0.0006, + "loss": 3.5951499938964844, + "step": 3408 + }, + { + "epoch": 47.34949759720402, + "grad_norm": 0.19008080661296844, + "learning_rate": 0.0006, + "loss": 3.6177732944488525, + "step": 3409 + }, + { + "epoch": 47.36347750109218, + "grad_norm": 0.19530250132083893, + "learning_rate": 0.0006, + "loss": 3.597903251647949, + "step": 3410 + }, + { + "epoch": 47.37745740498034, + "grad_norm": 0.2083505541086197, + "learning_rate": 0.0006, + "loss": 3.6062350273132324, + "step": 3411 + }, + { + "epoch": 47.391437308868504, + "grad_norm": 0.2241518199443817, + "learning_rate": 0.0006, + "loss": 3.6084704399108887, + "step": 3412 + }, + { + "epoch": 47.40541721275666, + "grad_norm": 0.25763124227523804, + "learning_rate": 0.0006, + "loss": 3.600295066833496, + "step": 3413 + }, + { + "epoch": 47.419397116644824, + "grad_norm": 0.2689114212989807, + "learning_rate": 0.0006, + "loss": 3.648848533630371, + "step": 3414 + }, + { + "epoch": 47.43337702053299, + "grad_norm": 0.30106639862060547, + "learning_rate": 0.0006, + "loss": 3.6248483657836914, + "step": 3415 + }, + { + "epoch": 47.44735692442114, + "grad_norm": 0.31840384006500244, + "learning_rate": 0.0006, + "loss": 3.6256890296936035, + "step": 3416 + }, + { + "epoch": 47.46133682830931, + "grad_norm": 0.2603468894958496, + "learning_rate": 0.0006, + "loss": 3.6225175857543945, + "step": 3417 + }, + { + "epoch": 47.47531673219746, + "grad_norm": 0.33408305048942566, + "learning_rate": 0.0006, + "loss": 3.590303897857666, + "step": 3418 + }, + { + "epoch": 47.489296636085626, + "grad_norm": 0.3677918612957001, + "learning_rate": 0.0006, + "loss": 3.6005120277404785, + "step": 3419 + }, + { + "epoch": 47.50327653997379, + "grad_norm": 0.23077215254306793, + "learning_rate": 0.0006, + "loss": 3.6093883514404297, + "step": 3420 + }, + { + "epoch": 47.517256443861946, + "grad_norm": 0.27272120118141174, + "learning_rate": 0.0006, + "loss": 3.580151081085205, + "step": 3421 + }, + { + "epoch": 47.53123634775011, + "grad_norm": 0.22629371285438538, + "learning_rate": 0.0006, + "loss": 3.6375746726989746, + "step": 3422 + }, + { + "epoch": 47.54521625163827, + "grad_norm": 0.2376468926668167, + "learning_rate": 0.0006, + "loss": 3.6492481231689453, + "step": 3423 + }, + { + "epoch": 47.55919615552643, + "grad_norm": 0.21200433373451233, + "learning_rate": 0.0006, + "loss": 3.6258158683776855, + "step": 3424 + }, + { + "epoch": 47.57317605941459, + "grad_norm": 0.2246236652135849, + "learning_rate": 0.0006, + "loss": 3.6199564933776855, + "step": 3425 + }, + { + "epoch": 47.58715596330275, + "grad_norm": 0.21713437139987946, + "learning_rate": 0.0006, + "loss": 3.638197898864746, + "step": 3426 + }, + { + "epoch": 47.60113586719091, + "grad_norm": 0.1964627057313919, + "learning_rate": 0.0006, + "loss": 3.6334147453308105, + "step": 3427 + }, + { + "epoch": 47.615115771079076, + "grad_norm": 0.21705810725688934, + "learning_rate": 0.0006, + "loss": 3.6298668384552, + "step": 3428 + }, + { + "epoch": 47.62909567496723, + "grad_norm": 0.20376256108283997, + "learning_rate": 0.0006, + "loss": 3.6127166748046875, + "step": 3429 + }, + { + "epoch": 47.643075578855395, + "grad_norm": 0.20046672224998474, + "learning_rate": 0.0006, + "loss": 3.633683681488037, + "step": 3430 + }, + { + "epoch": 47.65705548274356, + "grad_norm": 0.21494409441947937, + "learning_rate": 0.0006, + "loss": 3.635828971862793, + "step": 3431 + }, + { + "epoch": 47.671035386631715, + "grad_norm": 0.24550487101078033, + "learning_rate": 0.0006, + "loss": 3.6056854724884033, + "step": 3432 + }, + { + "epoch": 47.68501529051988, + "grad_norm": 0.24416600167751312, + "learning_rate": 0.0006, + "loss": 3.618785858154297, + "step": 3433 + }, + { + "epoch": 47.69899519440804, + "grad_norm": 0.22872993350028992, + "learning_rate": 0.0006, + "loss": 3.6189026832580566, + "step": 3434 + }, + { + "epoch": 47.7129750982962, + "grad_norm": 0.23609530925750732, + "learning_rate": 0.0006, + "loss": 3.623661518096924, + "step": 3435 + }, + { + "epoch": 47.72695500218436, + "grad_norm": 0.22905564308166504, + "learning_rate": 0.0006, + "loss": 3.6155691146850586, + "step": 3436 + }, + { + "epoch": 47.74093490607252, + "grad_norm": 0.25507304072380066, + "learning_rate": 0.0006, + "loss": 3.5848331451416016, + "step": 3437 + }, + { + "epoch": 47.75491480996068, + "grad_norm": 0.24594344198703766, + "learning_rate": 0.0006, + "loss": 3.588374614715576, + "step": 3438 + }, + { + "epoch": 47.768894713848844, + "grad_norm": 0.23131750524044037, + "learning_rate": 0.0006, + "loss": 3.6164474487304688, + "step": 3439 + }, + { + "epoch": 47.782874617737, + "grad_norm": 0.21967829763889313, + "learning_rate": 0.0006, + "loss": 3.619150161743164, + "step": 3440 + }, + { + "epoch": 47.796854521625164, + "grad_norm": 0.226309135556221, + "learning_rate": 0.0006, + "loss": 3.5946340560913086, + "step": 3441 + }, + { + "epoch": 47.81083442551333, + "grad_norm": 0.23141087591648102, + "learning_rate": 0.0006, + "loss": 3.614711046218872, + "step": 3442 + }, + { + "epoch": 47.824814329401484, + "grad_norm": 0.20917707681655884, + "learning_rate": 0.0006, + "loss": 3.610058307647705, + "step": 3443 + }, + { + "epoch": 47.83879423328965, + "grad_norm": 0.22864583134651184, + "learning_rate": 0.0006, + "loss": 3.6396052837371826, + "step": 3444 + }, + { + "epoch": 47.8527741371778, + "grad_norm": 0.22201144695281982, + "learning_rate": 0.0006, + "loss": 3.6462526321411133, + "step": 3445 + }, + { + "epoch": 47.86675404106597, + "grad_norm": 0.21199125051498413, + "learning_rate": 0.0006, + "loss": 3.6090314388275146, + "step": 3446 + }, + { + "epoch": 47.88073394495413, + "grad_norm": 0.2236194908618927, + "learning_rate": 0.0006, + "loss": 3.6308231353759766, + "step": 3447 + }, + { + "epoch": 47.89471384884229, + "grad_norm": 0.21571075916290283, + "learning_rate": 0.0006, + "loss": 3.5899293422698975, + "step": 3448 + }, + { + "epoch": 47.90869375273045, + "grad_norm": 0.2320997267961502, + "learning_rate": 0.0006, + "loss": 3.6360764503479004, + "step": 3449 + }, + { + "epoch": 47.92267365661861, + "grad_norm": 0.2304147630929947, + "learning_rate": 0.0006, + "loss": 3.61220121383667, + "step": 3450 + }, + { + "epoch": 47.93665356050677, + "grad_norm": 0.2321154624223709, + "learning_rate": 0.0006, + "loss": 3.6104419231414795, + "step": 3451 + }, + { + "epoch": 47.95063346439493, + "grad_norm": 0.20895935595035553, + "learning_rate": 0.0006, + "loss": 3.6372952461242676, + "step": 3452 + }, + { + "epoch": 47.964613368283096, + "grad_norm": 0.19926418364048004, + "learning_rate": 0.0006, + "loss": 3.652947425842285, + "step": 3453 + }, + { + "epoch": 47.97859327217125, + "grad_norm": 0.22443149983882904, + "learning_rate": 0.0006, + "loss": 3.6005635261535645, + "step": 3454 + }, + { + "epoch": 47.992573176059416, + "grad_norm": 0.2361244559288025, + "learning_rate": 0.0006, + "loss": 3.626563549041748, + "step": 3455 + }, + { + "epoch": 48.0, + "grad_norm": 0.2542579174041748, + "learning_rate": 0.0006, + "loss": 3.619098663330078, + "step": 3456 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 1.472771001031852e+18, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3456/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3744/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3744/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3744/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3744/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3b1262332982d3b5fd8cf878a021a50ee3f5db80 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3285642866999e68645419b0ed7cff021d9c063e2bbb2b3ba1a124e8155df9b +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3744/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..a2778a581c53fc6202a528bbf14093d379576fa9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4af03f4f1d816162c32b7f6c8b57d3e3c855d36b438590b4904e9b6c1d9d1e94 +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3744/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..e76db839cf4718db38bf66181dcf9dbddf935d53 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eef7f7d2633975396d4f3fd0b419a62e578fbb1d468519240e4a3c5eada04a02 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3744/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..952c4ad3d1bbefc1a51233924fc24a270bd00200 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bda863cab74d69bc1434458afe894fafac1b15a6cfa54cefbd687851cfc0940 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3744/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..20b086465f72e318302a946aa7b4256ef216a798 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fdc869be493cb85f416c60210527a1c69abda3f8a295fcb1ff6f1bec552aedc +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3744/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3744/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3744/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..f90ed61507e5612a7100d58ee9afcd817d9c503a --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/trainer_state.json @@ -0,0 +1,26650 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 52.0, + "eval_steps": 500, + "global_step": 3744, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + }, + { + "epoch": 8.0, + "eval_loss": 5.100707530975342, + "eval_runtime": 44.2493, + "eval_samples_per_second": 55.187, + "eval_steps_per_second": 3.458, + "step": 576 + }, + { + "epoch": 8.013979903888162, + "grad_norm": 0.3658510148525238, + "learning_rate": 0.0006, + "loss": 4.759055137634277, + "step": 577 + }, + { + "epoch": 8.027959807776321, + "grad_norm": 0.41794446110725403, + "learning_rate": 0.0006, + "loss": 4.737661838531494, + "step": 578 + }, + { + "epoch": 8.041939711664483, + "grad_norm": 0.43284085392951965, + "learning_rate": 0.0006, + "loss": 4.775538444519043, + "step": 579 + }, + { + "epoch": 8.055919615552643, + "grad_norm": 0.4716675281524658, + "learning_rate": 0.0006, + "loss": 4.762231826782227, + "step": 580 + }, + { + "epoch": 8.069899519440805, + "grad_norm": 0.3849579393863678, + "learning_rate": 0.0006, + "loss": 4.753598690032959, + "step": 581 + }, + { + "epoch": 8.083879423328964, + "grad_norm": 0.3721151053905487, + "learning_rate": 0.0006, + "loss": 4.728978157043457, + "step": 582 + }, + { + "epoch": 8.097859327217126, + "grad_norm": 0.37009572982788086, + "learning_rate": 0.0006, + "loss": 4.759153366088867, + "step": 583 + }, + { + "epoch": 8.111839231105286, + "grad_norm": 0.37051302194595337, + "learning_rate": 0.0006, + "loss": 4.744197368621826, + "step": 584 + }, + { + "epoch": 8.125819134993447, + "grad_norm": 0.331238329410553, + "learning_rate": 0.0006, + "loss": 4.7338385581970215, + "step": 585 + }, + { + "epoch": 8.139799038881607, + "grad_norm": 0.3737713694572449, + "learning_rate": 0.0006, + "loss": 4.719110488891602, + "step": 586 + }, + { + "epoch": 8.153778942769769, + "grad_norm": 0.3713214695453644, + "learning_rate": 0.0006, + "loss": 4.734012126922607, + "step": 587 + }, + { + "epoch": 8.167758846657929, + "grad_norm": 0.4060780107975006, + "learning_rate": 0.0006, + "loss": 4.746830940246582, + "step": 588 + }, + { + "epoch": 8.18173875054609, + "grad_norm": 0.39814314246177673, + "learning_rate": 0.0006, + "loss": 4.722851753234863, + "step": 589 + }, + { + "epoch": 8.19571865443425, + "grad_norm": 0.3175652325153351, + "learning_rate": 0.0006, + "loss": 4.745110034942627, + "step": 590 + }, + { + "epoch": 8.209698558322412, + "grad_norm": 0.37214916944503784, + "learning_rate": 0.0006, + "loss": 4.7362775802612305, + "step": 591 + }, + { + "epoch": 8.223678462210572, + "grad_norm": 0.3873472809791565, + "learning_rate": 0.0006, + "loss": 4.738964557647705, + "step": 592 + }, + { + "epoch": 8.237658366098733, + "grad_norm": 0.3299207091331482, + "learning_rate": 0.0006, + "loss": 4.713451385498047, + "step": 593 + }, + { + "epoch": 8.251638269986893, + "grad_norm": 0.32445064187049866, + "learning_rate": 0.0006, + "loss": 4.725602149963379, + "step": 594 + }, + { + "epoch": 8.265618173875055, + "grad_norm": 0.32903164625167847, + "learning_rate": 0.0006, + "loss": 4.732064247131348, + "step": 595 + }, + { + "epoch": 8.279598077763215, + "grad_norm": 0.3166804313659668, + "learning_rate": 0.0006, + "loss": 4.678950786590576, + "step": 596 + }, + { + "epoch": 8.293577981651376, + "grad_norm": 0.2750290334224701, + "learning_rate": 0.0006, + "loss": 4.719513416290283, + "step": 597 + }, + { + "epoch": 8.307557885539538, + "grad_norm": 0.291029691696167, + "learning_rate": 0.0006, + "loss": 4.715405464172363, + "step": 598 + }, + { + "epoch": 8.321537789427698, + "grad_norm": 0.34105145931243896, + "learning_rate": 0.0006, + "loss": 4.722611427307129, + "step": 599 + }, + { + "epoch": 8.33551769331586, + "grad_norm": 0.3078882694244385, + "learning_rate": 0.0006, + "loss": 4.668856620788574, + "step": 600 + }, + { + "epoch": 8.349497597204019, + "grad_norm": 0.3218833804130554, + "learning_rate": 0.0006, + "loss": 4.719579696655273, + "step": 601 + }, + { + "epoch": 8.36347750109218, + "grad_norm": 0.35716721415519714, + "learning_rate": 0.0006, + "loss": 4.690774440765381, + "step": 602 + }, + { + "epoch": 8.37745740498034, + "grad_norm": 0.3045452833175659, + "learning_rate": 0.0006, + "loss": 4.696503639221191, + "step": 603 + }, + { + "epoch": 8.391437308868502, + "grad_norm": 0.3127244710922241, + "learning_rate": 0.0006, + "loss": 4.701899528503418, + "step": 604 + }, + { + "epoch": 8.405417212756662, + "grad_norm": 0.34988710284233093, + "learning_rate": 0.0006, + "loss": 4.677641868591309, + "step": 605 + }, + { + "epoch": 8.419397116644824, + "grad_norm": 0.34035569429397583, + "learning_rate": 0.0006, + "loss": 4.707778453826904, + "step": 606 + }, + { + "epoch": 8.433377020532983, + "grad_norm": 0.3341112732887268, + "learning_rate": 0.0006, + "loss": 4.724853038787842, + "step": 607 + }, + { + "epoch": 8.447356924421145, + "grad_norm": 0.41744324564933777, + "learning_rate": 0.0006, + "loss": 4.680908203125, + "step": 608 + }, + { + "epoch": 8.461336828309305, + "grad_norm": 0.40402331948280334, + "learning_rate": 0.0006, + "loss": 4.726455211639404, + "step": 609 + }, + { + "epoch": 8.475316732197467, + "grad_norm": 0.4727570414543152, + "learning_rate": 0.0006, + "loss": 4.6793084144592285, + "step": 610 + }, + { + "epoch": 8.489296636085626, + "grad_norm": 0.43002694845199585, + "learning_rate": 0.0006, + "loss": 4.663918972015381, + "step": 611 + }, + { + "epoch": 8.503276539973788, + "grad_norm": 0.36124858260154724, + "learning_rate": 0.0006, + "loss": 4.657375335693359, + "step": 612 + }, + { + "epoch": 8.517256443861948, + "grad_norm": 0.37644803524017334, + "learning_rate": 0.0006, + "loss": 4.676977157592773, + "step": 613 + }, + { + "epoch": 8.53123634775011, + "grad_norm": 0.32347747683525085, + "learning_rate": 0.0006, + "loss": 4.708547115325928, + "step": 614 + }, + { + "epoch": 8.54521625163827, + "grad_norm": 0.3071717619895935, + "learning_rate": 0.0006, + "loss": 4.650189399719238, + "step": 615 + }, + { + "epoch": 8.55919615552643, + "grad_norm": 0.30222490429878235, + "learning_rate": 0.0006, + "loss": 4.647942543029785, + "step": 616 + }, + { + "epoch": 8.57317605941459, + "grad_norm": 0.31545212864875793, + "learning_rate": 0.0006, + "loss": 4.660242080688477, + "step": 617 + }, + { + "epoch": 8.587155963302752, + "grad_norm": 0.31644752621650696, + "learning_rate": 0.0006, + "loss": 4.666710376739502, + "step": 618 + }, + { + "epoch": 8.601135867190912, + "grad_norm": 0.26057198643684387, + "learning_rate": 0.0006, + "loss": 4.668096542358398, + "step": 619 + }, + { + "epoch": 8.615115771079074, + "grad_norm": 0.25473910570144653, + "learning_rate": 0.0006, + "loss": 4.641562461853027, + "step": 620 + }, + { + "epoch": 8.629095674967235, + "grad_norm": 0.2456732839345932, + "learning_rate": 0.0006, + "loss": 4.6545281410217285, + "step": 621 + }, + { + "epoch": 8.643075578855395, + "grad_norm": 0.25180476903915405, + "learning_rate": 0.0006, + "loss": 4.6506524085998535, + "step": 622 + }, + { + "epoch": 8.657055482743557, + "grad_norm": 0.21761579811573029, + "learning_rate": 0.0006, + "loss": 4.638909339904785, + "step": 623 + }, + { + "epoch": 8.671035386631717, + "grad_norm": 0.23590542376041412, + "learning_rate": 0.0006, + "loss": 4.6572747230529785, + "step": 624 + }, + { + "epoch": 8.685015290519878, + "grad_norm": 0.23870624601840973, + "learning_rate": 0.0006, + "loss": 4.643742084503174, + "step": 625 + }, + { + "epoch": 8.698995194408038, + "grad_norm": 0.2191203385591507, + "learning_rate": 0.0006, + "loss": 4.632617950439453, + "step": 626 + }, + { + "epoch": 8.7129750982962, + "grad_norm": 0.22107063233852386, + "learning_rate": 0.0006, + "loss": 4.625616073608398, + "step": 627 + }, + { + "epoch": 8.72695500218436, + "grad_norm": 0.20833902060985565, + "learning_rate": 0.0006, + "loss": 4.609896659851074, + "step": 628 + }, + { + "epoch": 8.740934906072521, + "grad_norm": 0.254967600107193, + "learning_rate": 0.0006, + "loss": 4.651735782623291, + "step": 629 + }, + { + "epoch": 8.754914809960681, + "grad_norm": 0.31587523221969604, + "learning_rate": 0.0006, + "loss": 4.6404032707214355, + "step": 630 + }, + { + "epoch": 8.768894713848843, + "grad_norm": 0.28598251938819885, + "learning_rate": 0.0006, + "loss": 4.602679252624512, + "step": 631 + }, + { + "epoch": 8.782874617737003, + "grad_norm": 0.23216590285301208, + "learning_rate": 0.0006, + "loss": 4.610319137573242, + "step": 632 + }, + { + "epoch": 8.796854521625164, + "grad_norm": 0.29212239384651184, + "learning_rate": 0.0006, + "loss": 4.600744247436523, + "step": 633 + }, + { + "epoch": 8.810834425513324, + "grad_norm": 0.3375801146030426, + "learning_rate": 0.0006, + "loss": 4.627819061279297, + "step": 634 + }, + { + "epoch": 8.824814329401486, + "grad_norm": 0.4207753837108612, + "learning_rate": 0.0006, + "loss": 4.634505271911621, + "step": 635 + }, + { + "epoch": 8.838794233289645, + "grad_norm": 0.4640173614025116, + "learning_rate": 0.0006, + "loss": 4.636714935302734, + "step": 636 + }, + { + "epoch": 8.852774137177807, + "grad_norm": 0.5255663990974426, + "learning_rate": 0.0006, + "loss": 4.659462928771973, + "step": 637 + }, + { + "epoch": 8.866754041065967, + "grad_norm": 0.5108268857002258, + "learning_rate": 0.0006, + "loss": 4.633192539215088, + "step": 638 + }, + { + "epoch": 8.880733944954128, + "grad_norm": 0.3821936845779419, + "learning_rate": 0.0006, + "loss": 4.621200084686279, + "step": 639 + }, + { + "epoch": 8.89471384884229, + "grad_norm": 0.3918485939502716, + "learning_rate": 0.0006, + "loss": 4.632599830627441, + "step": 640 + }, + { + "epoch": 8.90869375273045, + "grad_norm": 0.3416556119918823, + "learning_rate": 0.0006, + "loss": 4.620438098907471, + "step": 641 + }, + { + "epoch": 8.922673656618612, + "grad_norm": 0.3191553056240082, + "learning_rate": 0.0006, + "loss": 4.617823600769043, + "step": 642 + }, + { + "epoch": 8.936653560506771, + "grad_norm": 0.3368529677391052, + "learning_rate": 0.0006, + "loss": 4.617222785949707, + "step": 643 + }, + { + "epoch": 8.950633464394933, + "grad_norm": 0.3255428969860077, + "learning_rate": 0.0006, + "loss": 4.633878707885742, + "step": 644 + }, + { + "epoch": 8.964613368283093, + "grad_norm": 0.31394779682159424, + "learning_rate": 0.0006, + "loss": 4.642603874206543, + "step": 645 + }, + { + "epoch": 8.978593272171254, + "grad_norm": 0.29999351501464844, + "learning_rate": 0.0006, + "loss": 4.5925211906433105, + "step": 646 + }, + { + "epoch": 8.992573176059414, + "grad_norm": 0.309154748916626, + "learning_rate": 0.0006, + "loss": 4.61745023727417, + "step": 647 + }, + { + "epoch": 9.0, + "grad_norm": 0.2660452425479889, + "learning_rate": 0.0006, + "loss": 4.575107097625732, + "step": 648 + }, + { + "epoch": 9.0, + "eval_loss": 4.8804192543029785, + "eval_runtime": 45.0015, + "eval_samples_per_second": 54.265, + "eval_steps_per_second": 3.4, + "step": 648 + }, + { + "epoch": 9.013979903888162, + "grad_norm": 0.24159297347068787, + "learning_rate": 0.0006, + "loss": 4.571323871612549, + "step": 649 + }, + { + "epoch": 9.027959807776321, + "grad_norm": 0.2835831046104431, + "learning_rate": 0.0006, + "loss": 4.614255905151367, + "step": 650 + }, + { + "epoch": 9.041939711664483, + "grad_norm": 0.2646859288215637, + "learning_rate": 0.0006, + "loss": 4.578947067260742, + "step": 651 + }, + { + "epoch": 9.055919615552643, + "grad_norm": 0.28868553042411804, + "learning_rate": 0.0006, + "loss": 4.575977325439453, + "step": 652 + }, + { + "epoch": 9.069899519440805, + "grad_norm": 0.2899586856365204, + "learning_rate": 0.0006, + "loss": 4.541798114776611, + "step": 653 + }, + { + "epoch": 9.083879423328964, + "grad_norm": 0.32786068320274353, + "learning_rate": 0.0006, + "loss": 4.575140953063965, + "step": 654 + }, + { + "epoch": 9.097859327217126, + "grad_norm": 0.35675594210624695, + "learning_rate": 0.0006, + "loss": 4.58184814453125, + "step": 655 + }, + { + "epoch": 9.111839231105286, + "grad_norm": 0.3380381166934967, + "learning_rate": 0.0006, + "loss": 4.546271324157715, + "step": 656 + }, + { + "epoch": 9.125819134993447, + "grad_norm": 0.3035511374473572, + "learning_rate": 0.0006, + "loss": 4.591629981994629, + "step": 657 + }, + { + "epoch": 9.139799038881607, + "grad_norm": 0.2733091711997986, + "learning_rate": 0.0006, + "loss": 4.559020042419434, + "step": 658 + }, + { + "epoch": 9.153778942769769, + "grad_norm": 0.2870676815509796, + "learning_rate": 0.0006, + "loss": 4.552787780761719, + "step": 659 + }, + { + "epoch": 9.167758846657929, + "grad_norm": 0.37471064925193787, + "learning_rate": 0.0006, + "loss": 4.572757244110107, + "step": 660 + }, + { + "epoch": 9.18173875054609, + "grad_norm": 0.37889063358306885, + "learning_rate": 0.0006, + "loss": 4.573302268981934, + "step": 661 + }, + { + "epoch": 9.19571865443425, + "grad_norm": 0.29983851313591003, + "learning_rate": 0.0006, + "loss": 4.571202754974365, + "step": 662 + }, + { + "epoch": 9.209698558322412, + "grad_norm": 0.27595147490501404, + "learning_rate": 0.0006, + "loss": 4.529508590698242, + "step": 663 + }, + { + "epoch": 9.223678462210572, + "grad_norm": 0.22693437337875366, + "learning_rate": 0.0006, + "loss": 4.572267532348633, + "step": 664 + }, + { + "epoch": 9.237658366098733, + "grad_norm": 0.27147138118743896, + "learning_rate": 0.0006, + "loss": 4.529747009277344, + "step": 665 + }, + { + "epoch": 9.251638269986893, + "grad_norm": 0.24952703714370728, + "learning_rate": 0.0006, + "loss": 4.553647994995117, + "step": 666 + }, + { + "epoch": 9.265618173875055, + "grad_norm": 0.3086707592010498, + "learning_rate": 0.0006, + "loss": 4.494636058807373, + "step": 667 + }, + { + "epoch": 9.279598077763215, + "grad_norm": 0.3265218138694763, + "learning_rate": 0.0006, + "loss": 4.522481918334961, + "step": 668 + }, + { + "epoch": 9.293577981651376, + "grad_norm": 0.2744608223438263, + "learning_rate": 0.0006, + "loss": 4.544595241546631, + "step": 669 + }, + { + "epoch": 9.307557885539538, + "grad_norm": 0.26698485016822815, + "learning_rate": 0.0006, + "loss": 4.506407260894775, + "step": 670 + }, + { + "epoch": 9.321537789427698, + "grad_norm": 0.2775942087173462, + "learning_rate": 0.0006, + "loss": 4.534619331359863, + "step": 671 + }, + { + "epoch": 9.33551769331586, + "grad_norm": 0.2421862781047821, + "learning_rate": 0.0006, + "loss": 4.523318290710449, + "step": 672 + }, + { + "epoch": 9.349497597204019, + "grad_norm": 0.2756497263908386, + "learning_rate": 0.0006, + "loss": 4.517561912536621, + "step": 673 + }, + { + "epoch": 9.36347750109218, + "grad_norm": 0.28845369815826416, + "learning_rate": 0.0006, + "loss": 4.530844688415527, + "step": 674 + }, + { + "epoch": 9.37745740498034, + "grad_norm": 0.32285866141319275, + "learning_rate": 0.0006, + "loss": 4.55369758605957, + "step": 675 + }, + { + "epoch": 9.391437308868502, + "grad_norm": 0.3726065754890442, + "learning_rate": 0.0006, + "loss": 4.524348258972168, + "step": 676 + }, + { + "epoch": 9.405417212756662, + "grad_norm": 0.39524078369140625, + "learning_rate": 0.0006, + "loss": 4.535778045654297, + "step": 677 + }, + { + "epoch": 9.419397116644824, + "grad_norm": 0.3859797716140747, + "learning_rate": 0.0006, + "loss": 4.538474082946777, + "step": 678 + }, + { + "epoch": 9.433377020532983, + "grad_norm": 0.36151406168937683, + "learning_rate": 0.0006, + "loss": 4.54434061050415, + "step": 679 + }, + { + "epoch": 9.447356924421145, + "grad_norm": 0.40345999598503113, + "learning_rate": 0.0006, + "loss": 4.532961845397949, + "step": 680 + }, + { + "epoch": 9.461336828309305, + "grad_norm": 0.38864144682884216, + "learning_rate": 0.0006, + "loss": 4.567630767822266, + "step": 681 + }, + { + "epoch": 9.475316732197467, + "grad_norm": 0.3816355764865875, + "learning_rate": 0.0006, + "loss": 4.535771369934082, + "step": 682 + }, + { + "epoch": 9.489296636085626, + "grad_norm": 0.38756558299064636, + "learning_rate": 0.0006, + "loss": 4.4971089363098145, + "step": 683 + }, + { + "epoch": 9.503276539973788, + "grad_norm": 0.4572933614253998, + "learning_rate": 0.0006, + "loss": 4.534860134124756, + "step": 684 + }, + { + "epoch": 9.517256443861948, + "grad_norm": 0.42368650436401367, + "learning_rate": 0.0006, + "loss": 4.542638301849365, + "step": 685 + }, + { + "epoch": 9.53123634775011, + "grad_norm": 0.36939486861228943, + "learning_rate": 0.0006, + "loss": 4.571430206298828, + "step": 686 + }, + { + "epoch": 9.54521625163827, + "grad_norm": 0.3900398313999176, + "learning_rate": 0.0006, + "loss": 4.544435501098633, + "step": 687 + }, + { + "epoch": 9.55919615552643, + "grad_norm": 0.37829288840293884, + "learning_rate": 0.0006, + "loss": 4.564268112182617, + "step": 688 + }, + { + "epoch": 9.57317605941459, + "grad_norm": 0.3553886115550995, + "learning_rate": 0.0006, + "loss": 4.5373430252075195, + "step": 689 + }, + { + "epoch": 9.587155963302752, + "grad_norm": 0.3613419532775879, + "learning_rate": 0.0006, + "loss": 4.559074401855469, + "step": 690 + }, + { + "epoch": 9.601135867190912, + "grad_norm": 0.32644546031951904, + "learning_rate": 0.0006, + "loss": 4.533667087554932, + "step": 691 + }, + { + "epoch": 9.615115771079074, + "grad_norm": 0.3264399468898773, + "learning_rate": 0.0006, + "loss": 4.508299350738525, + "step": 692 + }, + { + "epoch": 9.629095674967235, + "grad_norm": 0.3534526526927948, + "learning_rate": 0.0006, + "loss": 4.542442798614502, + "step": 693 + }, + { + "epoch": 9.643075578855395, + "grad_norm": 0.3333452343940735, + "learning_rate": 0.0006, + "loss": 4.497692584991455, + "step": 694 + }, + { + "epoch": 9.657055482743557, + "grad_norm": 0.3214292526245117, + "learning_rate": 0.0006, + "loss": 4.512363433837891, + "step": 695 + }, + { + "epoch": 9.671035386631717, + "grad_norm": 0.2805672585964203, + "learning_rate": 0.0006, + "loss": 4.496874809265137, + "step": 696 + }, + { + "epoch": 9.685015290519878, + "grad_norm": 0.2618725895881653, + "learning_rate": 0.0006, + "loss": 4.51375675201416, + "step": 697 + }, + { + "epoch": 9.698995194408038, + "grad_norm": 0.2556597888469696, + "learning_rate": 0.0006, + "loss": 4.512338638305664, + "step": 698 + }, + { + "epoch": 9.7129750982962, + "grad_norm": 0.23784305155277252, + "learning_rate": 0.0006, + "loss": 4.486503601074219, + "step": 699 + }, + { + "epoch": 9.72695500218436, + "grad_norm": 0.2240338921546936, + "learning_rate": 0.0006, + "loss": 4.486850261688232, + "step": 700 + }, + { + "epoch": 9.740934906072521, + "grad_norm": 0.24686725437641144, + "learning_rate": 0.0006, + "loss": 4.501359462738037, + "step": 701 + }, + { + "epoch": 9.754914809960681, + "grad_norm": 0.20819595456123352, + "learning_rate": 0.0006, + "loss": 4.495186805725098, + "step": 702 + }, + { + "epoch": 9.768894713848843, + "grad_norm": 0.21858957409858704, + "learning_rate": 0.0006, + "loss": 4.475093364715576, + "step": 703 + }, + { + "epoch": 9.782874617737003, + "grad_norm": 0.22676466405391693, + "learning_rate": 0.0006, + "loss": 4.4702534675598145, + "step": 704 + }, + { + "epoch": 9.796854521625164, + "grad_norm": 0.18317611515522003, + "learning_rate": 0.0006, + "loss": 4.471231937408447, + "step": 705 + }, + { + "epoch": 9.810834425513324, + "grad_norm": 0.20979148149490356, + "learning_rate": 0.0006, + "loss": 4.454103946685791, + "step": 706 + }, + { + "epoch": 9.824814329401486, + "grad_norm": 0.2146051526069641, + "learning_rate": 0.0006, + "loss": 4.505178928375244, + "step": 707 + }, + { + "epoch": 9.838794233289645, + "grad_norm": 0.2344852089881897, + "learning_rate": 0.0006, + "loss": 4.437984943389893, + "step": 708 + }, + { + "epoch": 9.852774137177807, + "grad_norm": 0.26532089710235596, + "learning_rate": 0.0006, + "loss": 4.477126121520996, + "step": 709 + }, + { + "epoch": 9.866754041065967, + "grad_norm": 0.2737913131713867, + "learning_rate": 0.0006, + "loss": 4.498421669006348, + "step": 710 + }, + { + "epoch": 9.880733944954128, + "grad_norm": 0.26651278138160706, + "learning_rate": 0.0006, + "loss": 4.480839729309082, + "step": 711 + }, + { + "epoch": 9.89471384884229, + "grad_norm": 0.26576584577560425, + "learning_rate": 0.0006, + "loss": 4.490936279296875, + "step": 712 + }, + { + "epoch": 9.90869375273045, + "grad_norm": 0.22483965754508972, + "learning_rate": 0.0006, + "loss": 4.477953910827637, + "step": 713 + }, + { + "epoch": 9.922673656618612, + "grad_norm": 0.23576045036315918, + "learning_rate": 0.0006, + "loss": 4.4731292724609375, + "step": 714 + }, + { + "epoch": 9.936653560506771, + "grad_norm": 0.2731139361858368, + "learning_rate": 0.0006, + "loss": 4.441622734069824, + "step": 715 + }, + { + "epoch": 9.950633464394933, + "grad_norm": 0.2677643597126007, + "learning_rate": 0.0006, + "loss": 4.49604606628418, + "step": 716 + }, + { + "epoch": 9.964613368283093, + "grad_norm": 0.21940895915031433, + "learning_rate": 0.0006, + "loss": 4.485573768615723, + "step": 717 + }, + { + "epoch": 9.978593272171254, + "grad_norm": 0.2060987651348114, + "learning_rate": 0.0006, + "loss": 4.482657432556152, + "step": 718 + }, + { + "epoch": 9.992573176059414, + "grad_norm": 0.22163978219032288, + "learning_rate": 0.0006, + "loss": 4.478459358215332, + "step": 719 + }, + { + "epoch": 10.0, + "grad_norm": 0.2505086064338684, + "learning_rate": 0.0006, + "loss": 4.4393510818481445, + "step": 720 + }, + { + "epoch": 10.0, + "eval_loss": 4.695676803588867, + "eval_runtime": 49.0751, + "eval_samples_per_second": 49.76, + "eval_steps_per_second": 3.118, + "step": 720 + }, + { + "epoch": 10.013979903888162, + "grad_norm": 0.23820190131664276, + "learning_rate": 0.0006, + "loss": 4.437685489654541, + "step": 721 + }, + { + "epoch": 10.027959807776321, + "grad_norm": 0.2220371812582016, + "learning_rate": 0.0006, + "loss": 4.449873924255371, + "step": 722 + }, + { + "epoch": 10.041939711664483, + "grad_norm": 0.20369848608970642, + "learning_rate": 0.0006, + "loss": 4.448882579803467, + "step": 723 + }, + { + "epoch": 10.055919615552643, + "grad_norm": 0.2360001504421234, + "learning_rate": 0.0006, + "loss": 4.399251937866211, + "step": 724 + }, + { + "epoch": 10.069899519440805, + "grad_norm": 0.23537491261959076, + "learning_rate": 0.0006, + "loss": 4.442960739135742, + "step": 725 + }, + { + "epoch": 10.083879423328964, + "grad_norm": 0.24433870613574982, + "learning_rate": 0.0006, + "loss": 4.44808292388916, + "step": 726 + }, + { + "epoch": 10.097859327217126, + "grad_norm": 0.3406696021556854, + "learning_rate": 0.0006, + "loss": 4.443426132202148, + "step": 727 + }, + { + "epoch": 10.111839231105286, + "grad_norm": 0.4102286100387573, + "learning_rate": 0.0006, + "loss": 4.424919605255127, + "step": 728 + }, + { + "epoch": 10.125819134993447, + "grad_norm": 0.36462604999542236, + "learning_rate": 0.0006, + "loss": 4.45366907119751, + "step": 729 + }, + { + "epoch": 10.139799038881607, + "grad_norm": 0.4374827444553375, + "learning_rate": 0.0006, + "loss": 4.415630340576172, + "step": 730 + }, + { + "epoch": 10.153778942769769, + "grad_norm": 0.45248138904571533, + "learning_rate": 0.0006, + "loss": 4.448849678039551, + "step": 731 + }, + { + "epoch": 10.167758846657929, + "grad_norm": 0.3806457221508026, + "learning_rate": 0.0006, + "loss": 4.443390846252441, + "step": 732 + }, + { + "epoch": 10.18173875054609, + "grad_norm": 0.3491523861885071, + "learning_rate": 0.0006, + "loss": 4.4648637771606445, + "step": 733 + }, + { + "epoch": 10.19571865443425, + "grad_norm": 0.3327210247516632, + "learning_rate": 0.0006, + "loss": 4.460919380187988, + "step": 734 + }, + { + "epoch": 10.209698558322412, + "grad_norm": 0.29772236943244934, + "learning_rate": 0.0006, + "loss": 4.45159912109375, + "step": 735 + }, + { + "epoch": 10.223678462210572, + "grad_norm": 0.33083397150039673, + "learning_rate": 0.0006, + "loss": 4.463382720947266, + "step": 736 + }, + { + "epoch": 10.237658366098733, + "grad_norm": 0.3930598795413971, + "learning_rate": 0.0006, + "loss": 4.434510231018066, + "step": 737 + }, + { + "epoch": 10.251638269986893, + "grad_norm": 0.4342896044254303, + "learning_rate": 0.0006, + "loss": 4.451700210571289, + "step": 738 + }, + { + "epoch": 10.265618173875055, + "grad_norm": 0.4544043242931366, + "learning_rate": 0.0006, + "loss": 4.437224388122559, + "step": 739 + }, + { + "epoch": 10.279598077763215, + "grad_norm": 0.4487038254737854, + "learning_rate": 0.0006, + "loss": 4.46157693862915, + "step": 740 + }, + { + "epoch": 10.293577981651376, + "grad_norm": 0.4420500695705414, + "learning_rate": 0.0006, + "loss": 4.399561405181885, + "step": 741 + }, + { + "epoch": 10.307557885539538, + "grad_norm": 0.4167289435863495, + "learning_rate": 0.0006, + "loss": 4.41792106628418, + "step": 742 + }, + { + "epoch": 10.321537789427698, + "grad_norm": 0.3186971843242645, + "learning_rate": 0.0006, + "loss": 4.435683250427246, + "step": 743 + }, + { + "epoch": 10.33551769331586, + "grad_norm": 0.3077184855937958, + "learning_rate": 0.0006, + "loss": 4.481947898864746, + "step": 744 + }, + { + "epoch": 10.349497597204019, + "grad_norm": 0.26811280846595764, + "learning_rate": 0.0006, + "loss": 4.4339447021484375, + "step": 745 + }, + { + "epoch": 10.36347750109218, + "grad_norm": 0.28448057174682617, + "learning_rate": 0.0006, + "loss": 4.441644668579102, + "step": 746 + }, + { + "epoch": 10.37745740498034, + "grad_norm": 0.30731502175331116, + "learning_rate": 0.0006, + "loss": 4.428773880004883, + "step": 747 + }, + { + "epoch": 10.391437308868502, + "grad_norm": 0.28036001324653625, + "learning_rate": 0.0006, + "loss": 4.4433135986328125, + "step": 748 + }, + { + "epoch": 10.405417212756662, + "grad_norm": 0.2882847189903259, + "learning_rate": 0.0006, + "loss": 4.433401107788086, + "step": 749 + }, + { + "epoch": 10.419397116644824, + "grad_norm": 0.23622776567935944, + "learning_rate": 0.0006, + "loss": 4.444611549377441, + "step": 750 + }, + { + "epoch": 10.433377020532983, + "grad_norm": 0.2306167632341385, + "learning_rate": 0.0006, + "loss": 4.397875785827637, + "step": 751 + }, + { + "epoch": 10.447356924421145, + "grad_norm": 0.22725090384483337, + "learning_rate": 0.0006, + "loss": 4.429759502410889, + "step": 752 + }, + { + "epoch": 10.461336828309305, + "grad_norm": 0.250709593296051, + "learning_rate": 0.0006, + "loss": 4.415618896484375, + "step": 753 + }, + { + "epoch": 10.475316732197467, + "grad_norm": 0.22341276705265045, + "learning_rate": 0.0006, + "loss": 4.389362335205078, + "step": 754 + }, + { + "epoch": 10.489296636085626, + "grad_norm": 0.22595296800136566, + "learning_rate": 0.0006, + "loss": 4.383584022521973, + "step": 755 + }, + { + "epoch": 10.503276539973788, + "grad_norm": 0.24277575314044952, + "learning_rate": 0.0006, + "loss": 4.403777599334717, + "step": 756 + }, + { + "epoch": 10.517256443861948, + "grad_norm": 0.2670708894729614, + "learning_rate": 0.0006, + "loss": 4.398499011993408, + "step": 757 + }, + { + "epoch": 10.53123634775011, + "grad_norm": 0.2640696167945862, + "learning_rate": 0.0006, + "loss": 4.426726818084717, + "step": 758 + }, + { + "epoch": 10.54521625163827, + "grad_norm": 0.2248653769493103, + "learning_rate": 0.0006, + "loss": 4.400103569030762, + "step": 759 + }, + { + "epoch": 10.55919615552643, + "grad_norm": 0.21466240286827087, + "learning_rate": 0.0006, + "loss": 4.404158592224121, + "step": 760 + }, + { + "epoch": 10.57317605941459, + "grad_norm": 0.236923947930336, + "learning_rate": 0.0006, + "loss": 4.37059211730957, + "step": 761 + }, + { + "epoch": 10.587155963302752, + "grad_norm": 0.2515387535095215, + "learning_rate": 0.0006, + "loss": 4.415055274963379, + "step": 762 + }, + { + "epoch": 10.601135867190912, + "grad_norm": 0.23461885750293732, + "learning_rate": 0.0006, + "loss": 4.375036239624023, + "step": 763 + }, + { + "epoch": 10.615115771079074, + "grad_norm": 0.20975761115550995, + "learning_rate": 0.0006, + "loss": 4.3903398513793945, + "step": 764 + }, + { + "epoch": 10.629095674967235, + "grad_norm": 0.19859997928142548, + "learning_rate": 0.0006, + "loss": 4.379380226135254, + "step": 765 + }, + { + "epoch": 10.643075578855395, + "grad_norm": 0.22310325503349304, + "learning_rate": 0.0006, + "loss": 4.382110595703125, + "step": 766 + }, + { + "epoch": 10.657055482743557, + "grad_norm": 0.23940646648406982, + "learning_rate": 0.0006, + "loss": 4.393403053283691, + "step": 767 + }, + { + "epoch": 10.671035386631717, + "grad_norm": 0.2230468988418579, + "learning_rate": 0.0006, + "loss": 4.391970634460449, + "step": 768 + }, + { + "epoch": 10.685015290519878, + "grad_norm": 0.18139775097370148, + "learning_rate": 0.0006, + "loss": 4.399993896484375, + "step": 769 + }, + { + "epoch": 10.698995194408038, + "grad_norm": 0.19936902821063995, + "learning_rate": 0.0006, + "loss": 4.373854160308838, + "step": 770 + }, + { + "epoch": 10.7129750982962, + "grad_norm": 0.22132465243339539, + "learning_rate": 0.0006, + "loss": 4.377530097961426, + "step": 771 + }, + { + "epoch": 10.72695500218436, + "grad_norm": 0.24254944920539856, + "learning_rate": 0.0006, + "loss": 4.398683547973633, + "step": 772 + }, + { + "epoch": 10.740934906072521, + "grad_norm": 0.2666397988796234, + "learning_rate": 0.0006, + "loss": 4.3879899978637695, + "step": 773 + }, + { + "epoch": 10.754914809960681, + "grad_norm": 0.24728631973266602, + "learning_rate": 0.0006, + "loss": 4.356976509094238, + "step": 774 + }, + { + "epoch": 10.768894713848843, + "grad_norm": 0.2612453103065491, + "learning_rate": 0.0006, + "loss": 4.391525745391846, + "step": 775 + }, + { + "epoch": 10.782874617737003, + "grad_norm": 0.24060510098934174, + "learning_rate": 0.0006, + "loss": 4.376985549926758, + "step": 776 + }, + { + "epoch": 10.796854521625164, + "grad_norm": 0.22708238661289215, + "learning_rate": 0.0006, + "loss": 4.368545055389404, + "step": 777 + }, + { + "epoch": 10.810834425513324, + "grad_norm": 0.26931291818618774, + "learning_rate": 0.0006, + "loss": 4.369227409362793, + "step": 778 + }, + { + "epoch": 10.824814329401486, + "grad_norm": 0.265288770198822, + "learning_rate": 0.0006, + "loss": 4.378131866455078, + "step": 779 + }, + { + "epoch": 10.838794233289645, + "grad_norm": 0.3015305697917938, + "learning_rate": 0.0006, + "loss": 4.376267910003662, + "step": 780 + }, + { + "epoch": 10.852774137177807, + "grad_norm": 0.3345746099948883, + "learning_rate": 0.0006, + "loss": 4.3751420974731445, + "step": 781 + }, + { + "epoch": 10.866754041065967, + "grad_norm": 0.32446005940437317, + "learning_rate": 0.0006, + "loss": 4.370899200439453, + "step": 782 + }, + { + "epoch": 10.880733944954128, + "grad_norm": 0.27070069313049316, + "learning_rate": 0.0006, + "loss": 4.391958236694336, + "step": 783 + }, + { + "epoch": 10.89471384884229, + "grad_norm": 0.25584667921066284, + "learning_rate": 0.0006, + "loss": 4.407493591308594, + "step": 784 + }, + { + "epoch": 10.90869375273045, + "grad_norm": 0.2710244655609131, + "learning_rate": 0.0006, + "loss": 4.374400615692139, + "step": 785 + }, + { + "epoch": 10.922673656618612, + "grad_norm": 0.32413622736930847, + "learning_rate": 0.0006, + "loss": 4.379607200622559, + "step": 786 + }, + { + "epoch": 10.936653560506771, + "grad_norm": 0.3253782391548157, + "learning_rate": 0.0006, + "loss": 4.376441955566406, + "step": 787 + }, + { + "epoch": 10.950633464394933, + "grad_norm": 0.30534613132476807, + "learning_rate": 0.0006, + "loss": 4.382739067077637, + "step": 788 + }, + { + "epoch": 10.964613368283093, + "grad_norm": 0.35726621747016907, + "learning_rate": 0.0006, + "loss": 4.3765869140625, + "step": 789 + }, + { + "epoch": 10.978593272171254, + "grad_norm": 0.32763028144836426, + "learning_rate": 0.0006, + "loss": 4.391537189483643, + "step": 790 + }, + { + "epoch": 10.992573176059414, + "grad_norm": 0.31811195611953735, + "learning_rate": 0.0006, + "loss": 4.371829032897949, + "step": 791 + }, + { + "epoch": 11.0, + "grad_norm": 0.37317267060279846, + "learning_rate": 0.0006, + "loss": 4.381916522979736, + "step": 792 + }, + { + "epoch": 11.0, + "eval_loss": 4.588687896728516, + "eval_runtime": 44.8041, + "eval_samples_per_second": 54.504, + "eval_steps_per_second": 3.415, + "step": 792 + }, + { + "epoch": 11.013979903888162, + "grad_norm": 0.37882938981056213, + "learning_rate": 0.0006, + "loss": 4.3463640213012695, + "step": 793 + }, + { + "epoch": 11.027959807776321, + "grad_norm": 0.34719496965408325, + "learning_rate": 0.0006, + "loss": 4.329861640930176, + "step": 794 + }, + { + "epoch": 11.041939711664483, + "grad_norm": 0.36161214113235474, + "learning_rate": 0.0006, + "loss": 4.3287835121154785, + "step": 795 + }, + { + "epoch": 11.055919615552643, + "grad_norm": 0.3743649125099182, + "learning_rate": 0.0006, + "loss": 4.334251403808594, + "step": 796 + }, + { + "epoch": 11.069899519440805, + "grad_norm": 0.32266443967819214, + "learning_rate": 0.0006, + "loss": 4.364782810211182, + "step": 797 + }, + { + "epoch": 11.083879423328964, + "grad_norm": 0.27460047602653503, + "learning_rate": 0.0006, + "loss": 4.348380088806152, + "step": 798 + }, + { + "epoch": 11.097859327217126, + "grad_norm": 0.30498892068862915, + "learning_rate": 0.0006, + "loss": 4.347856521606445, + "step": 799 + }, + { + "epoch": 11.111839231105286, + "grad_norm": 0.29740771651268005, + "learning_rate": 0.0006, + "loss": 4.343471050262451, + "step": 800 + }, + { + "epoch": 11.125819134993447, + "grad_norm": 0.3004681169986725, + "learning_rate": 0.0006, + "loss": 4.337590217590332, + "step": 801 + }, + { + "epoch": 11.139799038881607, + "grad_norm": 0.3000192642211914, + "learning_rate": 0.0006, + "loss": 4.349949836730957, + "step": 802 + }, + { + "epoch": 11.153778942769769, + "grad_norm": 0.27461889386177063, + "learning_rate": 0.0006, + "loss": 4.338934898376465, + "step": 803 + }, + { + "epoch": 11.167758846657929, + "grad_norm": 0.2856169641017914, + "learning_rate": 0.0006, + "loss": 4.320754051208496, + "step": 804 + }, + { + "epoch": 11.18173875054609, + "grad_norm": 0.29822713136672974, + "learning_rate": 0.0006, + "loss": 4.357949733734131, + "step": 805 + }, + { + "epoch": 11.19571865443425, + "grad_norm": 0.34061339497566223, + "learning_rate": 0.0006, + "loss": 4.327282905578613, + "step": 806 + }, + { + "epoch": 11.209698558322412, + "grad_norm": 0.3379063010215759, + "learning_rate": 0.0006, + "loss": 4.355471611022949, + "step": 807 + }, + { + "epoch": 11.223678462210572, + "grad_norm": 0.2859216630458832, + "learning_rate": 0.0006, + "loss": 4.352344989776611, + "step": 808 + }, + { + "epoch": 11.237658366098733, + "grad_norm": 0.29522669315338135, + "learning_rate": 0.0006, + "loss": 4.349186897277832, + "step": 809 + }, + { + "epoch": 11.251638269986893, + "grad_norm": 0.273798406124115, + "learning_rate": 0.0006, + "loss": 4.342379570007324, + "step": 810 + }, + { + "epoch": 11.265618173875055, + "grad_norm": 0.25298982858657837, + "learning_rate": 0.0006, + "loss": 4.358835220336914, + "step": 811 + }, + { + "epoch": 11.279598077763215, + "grad_norm": 0.2170463651418686, + "learning_rate": 0.0006, + "loss": 4.3422017097473145, + "step": 812 + }, + { + "epoch": 11.293577981651376, + "grad_norm": 0.24855731427669525, + "learning_rate": 0.0006, + "loss": 4.322849750518799, + "step": 813 + }, + { + "epoch": 11.307557885539538, + "grad_norm": 0.22564345598220825, + "learning_rate": 0.0006, + "loss": 4.316864967346191, + "step": 814 + }, + { + "epoch": 11.321537789427698, + "grad_norm": 0.21532197296619415, + "learning_rate": 0.0006, + "loss": 4.326743125915527, + "step": 815 + }, + { + "epoch": 11.33551769331586, + "grad_norm": 0.20514146983623505, + "learning_rate": 0.0006, + "loss": 4.326531887054443, + "step": 816 + }, + { + "epoch": 11.349497597204019, + "grad_norm": 0.19035090506076813, + "learning_rate": 0.0006, + "loss": 4.318154335021973, + "step": 817 + }, + { + "epoch": 11.36347750109218, + "grad_norm": 0.17889662086963654, + "learning_rate": 0.0006, + "loss": 4.35410213470459, + "step": 818 + }, + { + "epoch": 11.37745740498034, + "grad_norm": 0.20564863085746765, + "learning_rate": 0.0006, + "loss": 4.350226879119873, + "step": 819 + }, + { + "epoch": 11.391437308868502, + "grad_norm": 0.2412603348493576, + "learning_rate": 0.0006, + "loss": 4.325137138366699, + "step": 820 + }, + { + "epoch": 11.405417212756662, + "grad_norm": 0.2603496015071869, + "learning_rate": 0.0006, + "loss": 4.335752487182617, + "step": 821 + }, + { + "epoch": 11.419397116644824, + "grad_norm": 0.2968119978904724, + "learning_rate": 0.0006, + "loss": 4.3317670822143555, + "step": 822 + }, + { + "epoch": 11.433377020532983, + "grad_norm": 0.3280937969684601, + "learning_rate": 0.0006, + "loss": 4.322279453277588, + "step": 823 + }, + { + "epoch": 11.447356924421145, + "grad_norm": 0.3598847985267639, + "learning_rate": 0.0006, + "loss": 4.312255859375, + "step": 824 + }, + { + "epoch": 11.461336828309305, + "grad_norm": 0.3996485471725464, + "learning_rate": 0.0006, + "loss": 4.327103614807129, + "step": 825 + }, + { + "epoch": 11.475316732197467, + "grad_norm": 0.4352041780948639, + "learning_rate": 0.0006, + "loss": 4.368639945983887, + "step": 826 + }, + { + "epoch": 11.489296636085626, + "grad_norm": 0.4451918601989746, + "learning_rate": 0.0006, + "loss": 4.335113048553467, + "step": 827 + }, + { + "epoch": 11.503276539973788, + "grad_norm": 0.4403933584690094, + "learning_rate": 0.0006, + "loss": 4.369889259338379, + "step": 828 + }, + { + "epoch": 11.517256443861948, + "grad_norm": 0.34862443804740906, + "learning_rate": 0.0006, + "loss": 4.316292762756348, + "step": 829 + }, + { + "epoch": 11.53123634775011, + "grad_norm": 0.3240634500980377, + "learning_rate": 0.0006, + "loss": 4.328078746795654, + "step": 830 + }, + { + "epoch": 11.54521625163827, + "grad_norm": 0.2445751428604126, + "learning_rate": 0.0006, + "loss": 4.291940689086914, + "step": 831 + }, + { + "epoch": 11.55919615552643, + "grad_norm": 0.24376554787158966, + "learning_rate": 0.0006, + "loss": 4.339217662811279, + "step": 832 + }, + { + "epoch": 11.57317605941459, + "grad_norm": 0.22419725358486176, + "learning_rate": 0.0006, + "loss": 4.2887468338012695, + "step": 833 + }, + { + "epoch": 11.587155963302752, + "grad_norm": 0.22318261861801147, + "learning_rate": 0.0006, + "loss": 4.298492908477783, + "step": 834 + }, + { + "epoch": 11.601135867190912, + "grad_norm": 0.2357342392206192, + "learning_rate": 0.0006, + "loss": 4.328692436218262, + "step": 835 + }, + { + "epoch": 11.615115771079074, + "grad_norm": 0.25450602173805237, + "learning_rate": 0.0006, + "loss": 4.360058784484863, + "step": 836 + }, + { + "epoch": 11.629095674967235, + "grad_norm": 0.24540965259075165, + "learning_rate": 0.0006, + "loss": 4.311890602111816, + "step": 837 + }, + { + "epoch": 11.643075578855395, + "grad_norm": 0.2535638213157654, + "learning_rate": 0.0006, + "loss": 4.327730178833008, + "step": 838 + }, + { + "epoch": 11.657055482743557, + "grad_norm": 0.23063556849956512, + "learning_rate": 0.0006, + "loss": 4.303299903869629, + "step": 839 + }, + { + "epoch": 11.671035386631717, + "grad_norm": 0.21813632547855377, + "learning_rate": 0.0006, + "loss": 4.315352439880371, + "step": 840 + }, + { + "epoch": 11.685015290519878, + "grad_norm": 0.2170359194278717, + "learning_rate": 0.0006, + "loss": 4.278632164001465, + "step": 841 + }, + { + "epoch": 11.698995194408038, + "grad_norm": 0.21059377491474152, + "learning_rate": 0.0006, + "loss": 4.306049346923828, + "step": 842 + }, + { + "epoch": 11.7129750982962, + "grad_norm": 0.19872888922691345, + "learning_rate": 0.0006, + "loss": 4.3091535568237305, + "step": 843 + }, + { + "epoch": 11.72695500218436, + "grad_norm": 0.20059862732887268, + "learning_rate": 0.0006, + "loss": 4.2884063720703125, + "step": 844 + }, + { + "epoch": 11.740934906072521, + "grad_norm": 0.19952483475208282, + "learning_rate": 0.0006, + "loss": 4.293610572814941, + "step": 845 + }, + { + "epoch": 11.754914809960681, + "grad_norm": 0.19794537127017975, + "learning_rate": 0.0006, + "loss": 4.288822174072266, + "step": 846 + }, + { + "epoch": 11.768894713848843, + "grad_norm": 0.213914692401886, + "learning_rate": 0.0006, + "loss": 4.320849418640137, + "step": 847 + }, + { + "epoch": 11.782874617737003, + "grad_norm": 0.18500955402851105, + "learning_rate": 0.0006, + "loss": 4.29300594329834, + "step": 848 + }, + { + "epoch": 11.796854521625164, + "grad_norm": 0.19446656107902527, + "learning_rate": 0.0006, + "loss": 4.3079352378845215, + "step": 849 + }, + { + "epoch": 11.810834425513324, + "grad_norm": 0.22191768884658813, + "learning_rate": 0.0006, + "loss": 4.295967102050781, + "step": 850 + }, + { + "epoch": 11.824814329401486, + "grad_norm": 0.20748084783554077, + "learning_rate": 0.0006, + "loss": 4.332365989685059, + "step": 851 + }, + { + "epoch": 11.838794233289645, + "grad_norm": 0.20993955433368683, + "learning_rate": 0.0006, + "loss": 4.294618129730225, + "step": 852 + }, + { + "epoch": 11.852774137177807, + "grad_norm": 0.23506952822208405, + "learning_rate": 0.0006, + "loss": 4.313426971435547, + "step": 853 + }, + { + "epoch": 11.866754041065967, + "grad_norm": 0.2379443347454071, + "learning_rate": 0.0006, + "loss": 4.297664642333984, + "step": 854 + }, + { + "epoch": 11.880733944954128, + "grad_norm": 0.2127852737903595, + "learning_rate": 0.0006, + "loss": 4.2807698249816895, + "step": 855 + }, + { + "epoch": 11.89471384884229, + "grad_norm": 0.2125532180070877, + "learning_rate": 0.0006, + "loss": 4.310990333557129, + "step": 856 + }, + { + "epoch": 11.90869375273045, + "grad_norm": 0.1996062994003296, + "learning_rate": 0.0006, + "loss": 4.253237724304199, + "step": 857 + }, + { + "epoch": 11.922673656618612, + "grad_norm": 0.20747603476047516, + "learning_rate": 0.0006, + "loss": 4.294193267822266, + "step": 858 + }, + { + "epoch": 11.936653560506771, + "grad_norm": 0.24082425236701965, + "learning_rate": 0.0006, + "loss": 4.269967079162598, + "step": 859 + }, + { + "epoch": 11.950633464394933, + "grad_norm": 0.28993573784828186, + "learning_rate": 0.0006, + "loss": 4.294550895690918, + "step": 860 + }, + { + "epoch": 11.964613368283093, + "grad_norm": 0.29576948285102844, + "learning_rate": 0.0006, + "loss": 4.3188252449035645, + "step": 861 + }, + { + "epoch": 11.978593272171254, + "grad_norm": 0.2754935026168823, + "learning_rate": 0.0006, + "loss": 4.312817573547363, + "step": 862 + }, + { + "epoch": 11.992573176059414, + "grad_norm": 0.3062523305416107, + "learning_rate": 0.0006, + "loss": 4.288214683532715, + "step": 863 + }, + { + "epoch": 12.0, + "grad_norm": 0.3367644250392914, + "learning_rate": 0.0006, + "loss": 4.314888954162598, + "step": 864 + }, + { + "epoch": 12.0, + "eval_loss": 4.516861438751221, + "eval_runtime": 44.2584, + "eval_samples_per_second": 55.176, + "eval_steps_per_second": 3.457, + "step": 864 + }, + { + "epoch": 12.013979903888162, + "grad_norm": 0.2976512014865875, + "learning_rate": 0.0006, + "loss": 4.278797149658203, + "step": 865 + }, + { + "epoch": 12.027959807776321, + "grad_norm": 0.32217127084732056, + "learning_rate": 0.0006, + "loss": 4.2823615074157715, + "step": 866 + }, + { + "epoch": 12.041939711664483, + "grad_norm": 0.31538400053977966, + "learning_rate": 0.0006, + "loss": 4.252805709838867, + "step": 867 + }, + { + "epoch": 12.055919615552643, + "grad_norm": 0.3501375913619995, + "learning_rate": 0.0006, + "loss": 4.276501655578613, + "step": 868 + }, + { + "epoch": 12.069899519440805, + "grad_norm": 0.3452056646347046, + "learning_rate": 0.0006, + "loss": 4.275739669799805, + "step": 869 + }, + { + "epoch": 12.083879423328964, + "grad_norm": 0.36963316798210144, + "learning_rate": 0.0006, + "loss": 4.3215227127075195, + "step": 870 + }, + { + "epoch": 12.097859327217126, + "grad_norm": 0.41605016589164734, + "learning_rate": 0.0006, + "loss": 4.28739595413208, + "step": 871 + }, + { + "epoch": 12.111839231105286, + "grad_norm": 0.37700653076171875, + "learning_rate": 0.0006, + "loss": 4.291154861450195, + "step": 872 + }, + { + "epoch": 12.125819134993447, + "grad_norm": 0.3194253444671631, + "learning_rate": 0.0006, + "loss": 4.259326934814453, + "step": 873 + }, + { + "epoch": 12.139799038881607, + "grad_norm": 0.31770631670951843, + "learning_rate": 0.0006, + "loss": 4.270082473754883, + "step": 874 + }, + { + "epoch": 12.153778942769769, + "grad_norm": 0.3748120069503784, + "learning_rate": 0.0006, + "loss": 4.2727274894714355, + "step": 875 + }, + { + "epoch": 12.167758846657929, + "grad_norm": 0.3821348547935486, + "learning_rate": 0.0006, + "loss": 4.2848286628723145, + "step": 876 + }, + { + "epoch": 12.18173875054609, + "grad_norm": 0.31894201040267944, + "learning_rate": 0.0006, + "loss": 4.289551258087158, + "step": 877 + }, + { + "epoch": 12.19571865443425, + "grad_norm": 0.2695826292037964, + "learning_rate": 0.0006, + "loss": 4.2797346115112305, + "step": 878 + }, + { + "epoch": 12.209698558322412, + "grad_norm": 0.23966269195079803, + "learning_rate": 0.0006, + "loss": 4.24021577835083, + "step": 879 + }, + { + "epoch": 12.223678462210572, + "grad_norm": 0.24342599511146545, + "learning_rate": 0.0006, + "loss": 4.277721881866455, + "step": 880 + }, + { + "epoch": 12.237658366098733, + "grad_norm": 0.2522958815097809, + "learning_rate": 0.0006, + "loss": 4.263946533203125, + "step": 881 + }, + { + "epoch": 12.251638269986893, + "grad_norm": 0.2708299458026886, + "learning_rate": 0.0006, + "loss": 4.274540901184082, + "step": 882 + }, + { + "epoch": 12.265618173875055, + "grad_norm": 0.2978788912296295, + "learning_rate": 0.0006, + "loss": 4.2674970626831055, + "step": 883 + }, + { + "epoch": 12.279598077763215, + "grad_norm": 0.2898774743080139, + "learning_rate": 0.0006, + "loss": 4.235060691833496, + "step": 884 + }, + { + "epoch": 12.293577981651376, + "grad_norm": 0.27941837906837463, + "learning_rate": 0.0006, + "loss": 4.284140586853027, + "step": 885 + }, + { + "epoch": 12.307557885539538, + "grad_norm": 0.25050559639930725, + "learning_rate": 0.0006, + "loss": 4.270134925842285, + "step": 886 + }, + { + "epoch": 12.321537789427698, + "grad_norm": 0.21867156028747559, + "learning_rate": 0.0006, + "loss": 4.241571426391602, + "step": 887 + }, + { + "epoch": 12.33551769331586, + "grad_norm": 0.24735847115516663, + "learning_rate": 0.0006, + "loss": 4.253087997436523, + "step": 888 + }, + { + "epoch": 12.349497597204019, + "grad_norm": 0.23069104552268982, + "learning_rate": 0.0006, + "loss": 4.258606910705566, + "step": 889 + }, + { + "epoch": 12.36347750109218, + "grad_norm": 0.2594369947910309, + "learning_rate": 0.0006, + "loss": 4.307351112365723, + "step": 890 + }, + { + "epoch": 12.37745740498034, + "grad_norm": 0.25349098443984985, + "learning_rate": 0.0006, + "loss": 4.264268398284912, + "step": 891 + }, + { + "epoch": 12.391437308868502, + "grad_norm": 0.2550840675830841, + "learning_rate": 0.0006, + "loss": 4.247092247009277, + "step": 892 + }, + { + "epoch": 12.405417212756662, + "grad_norm": 0.2107602059841156, + "learning_rate": 0.0006, + "loss": 4.240527153015137, + "step": 893 + }, + { + "epoch": 12.419397116644824, + "grad_norm": 0.2025548368692398, + "learning_rate": 0.0006, + "loss": 4.244686126708984, + "step": 894 + }, + { + "epoch": 12.433377020532983, + "grad_norm": 0.22061701118946075, + "learning_rate": 0.0006, + "loss": 4.233231544494629, + "step": 895 + }, + { + "epoch": 12.447356924421145, + "grad_norm": 0.19503085315227509, + "learning_rate": 0.0006, + "loss": 4.23851203918457, + "step": 896 + }, + { + "epoch": 12.461336828309305, + "grad_norm": 0.19313643872737885, + "learning_rate": 0.0006, + "loss": 4.190886497497559, + "step": 897 + }, + { + "epoch": 12.475316732197467, + "grad_norm": 0.21094176173210144, + "learning_rate": 0.0006, + "loss": 4.277888298034668, + "step": 898 + }, + { + "epoch": 12.489296636085626, + "grad_norm": 0.1980651170015335, + "learning_rate": 0.0006, + "loss": 4.251066207885742, + "step": 899 + }, + { + "epoch": 12.503276539973788, + "grad_norm": 0.179737389087677, + "learning_rate": 0.0006, + "loss": 4.194703102111816, + "step": 900 + }, + { + "epoch": 12.517256443861948, + "grad_norm": 0.19069281220436096, + "learning_rate": 0.0006, + "loss": 4.242412567138672, + "step": 901 + }, + { + "epoch": 12.53123634775011, + "grad_norm": 0.191154345870018, + "learning_rate": 0.0006, + "loss": 4.2432780265808105, + "step": 902 + }, + { + "epoch": 12.54521625163827, + "grad_norm": 0.19760103523731232, + "learning_rate": 0.0006, + "loss": 4.23294734954834, + "step": 903 + }, + { + "epoch": 12.55919615552643, + "grad_norm": 0.19982324540615082, + "learning_rate": 0.0006, + "loss": 4.249764442443848, + "step": 904 + }, + { + "epoch": 12.57317605941459, + "grad_norm": 0.1986108422279358, + "learning_rate": 0.0006, + "loss": 4.213435649871826, + "step": 905 + }, + { + "epoch": 12.587155963302752, + "grad_norm": 0.19727319478988647, + "learning_rate": 0.0006, + "loss": 4.247962951660156, + "step": 906 + }, + { + "epoch": 12.601135867190912, + "grad_norm": 0.23404482007026672, + "learning_rate": 0.0006, + "loss": 4.237396240234375, + "step": 907 + }, + { + "epoch": 12.615115771079074, + "grad_norm": 0.21136441826820374, + "learning_rate": 0.0006, + "loss": 4.236040115356445, + "step": 908 + }, + { + "epoch": 12.629095674967235, + "grad_norm": 0.2209048718214035, + "learning_rate": 0.0006, + "loss": 4.234212875366211, + "step": 909 + }, + { + "epoch": 12.643075578855395, + "grad_norm": 0.22120307385921478, + "learning_rate": 0.0006, + "loss": 4.2711076736450195, + "step": 910 + }, + { + "epoch": 12.657055482743557, + "grad_norm": 0.22733066976070404, + "learning_rate": 0.0006, + "loss": 4.231651306152344, + "step": 911 + }, + { + "epoch": 12.671035386631717, + "grad_norm": 0.2435602843761444, + "learning_rate": 0.0006, + "loss": 4.249372482299805, + "step": 912 + }, + { + "epoch": 12.685015290519878, + "grad_norm": 0.28881654143333435, + "learning_rate": 0.0006, + "loss": 4.2626051902771, + "step": 913 + }, + { + "epoch": 12.698995194408038, + "grad_norm": 0.3211199641227722, + "learning_rate": 0.0006, + "loss": 4.254220485687256, + "step": 914 + }, + { + "epoch": 12.7129750982962, + "grad_norm": 0.3118100166320801, + "learning_rate": 0.0006, + "loss": 4.233747959136963, + "step": 915 + }, + { + "epoch": 12.72695500218436, + "grad_norm": 0.33411866426467896, + "learning_rate": 0.0006, + "loss": 4.270386219024658, + "step": 916 + }, + { + "epoch": 12.740934906072521, + "grad_norm": 0.2968253195285797, + "learning_rate": 0.0006, + "loss": 4.242254257202148, + "step": 917 + }, + { + "epoch": 12.754914809960681, + "grad_norm": 0.2959132194519043, + "learning_rate": 0.0006, + "loss": 4.232100486755371, + "step": 918 + }, + { + "epoch": 12.768894713848843, + "grad_norm": 0.2729283273220062, + "learning_rate": 0.0006, + "loss": 4.233869552612305, + "step": 919 + }, + { + "epoch": 12.782874617737003, + "grad_norm": 0.2669033408164978, + "learning_rate": 0.0006, + "loss": 4.261008262634277, + "step": 920 + }, + { + "epoch": 12.796854521625164, + "grad_norm": 0.2738507091999054, + "learning_rate": 0.0006, + "loss": 4.2286763191223145, + "step": 921 + }, + { + "epoch": 12.810834425513324, + "grad_norm": 0.29105183482170105, + "learning_rate": 0.0006, + "loss": 4.281410217285156, + "step": 922 + }, + { + "epoch": 12.824814329401486, + "grad_norm": 0.31330201029777527, + "learning_rate": 0.0006, + "loss": 4.264181613922119, + "step": 923 + }, + { + "epoch": 12.838794233289645, + "grad_norm": 0.31324025988578796, + "learning_rate": 0.0006, + "loss": 4.250385284423828, + "step": 924 + }, + { + "epoch": 12.852774137177807, + "grad_norm": 0.2727925181388855, + "learning_rate": 0.0006, + "loss": 4.24821138381958, + "step": 925 + }, + { + "epoch": 12.866754041065967, + "grad_norm": 0.27350082993507385, + "learning_rate": 0.0006, + "loss": 4.230215072631836, + "step": 926 + }, + { + "epoch": 12.880733944954128, + "grad_norm": 0.2269950658082962, + "learning_rate": 0.0006, + "loss": 4.210305213928223, + "step": 927 + }, + { + "epoch": 12.89471384884229, + "grad_norm": 0.24667619168758392, + "learning_rate": 0.0006, + "loss": 4.239969253540039, + "step": 928 + }, + { + "epoch": 12.90869375273045, + "grad_norm": 0.22510501742362976, + "learning_rate": 0.0006, + "loss": 4.192750930786133, + "step": 929 + }, + { + "epoch": 12.922673656618612, + "grad_norm": 0.22887611389160156, + "learning_rate": 0.0006, + "loss": 4.264463424682617, + "step": 930 + }, + { + "epoch": 12.936653560506771, + "grad_norm": 0.22195978462696075, + "learning_rate": 0.0006, + "loss": 4.205256938934326, + "step": 931 + }, + { + "epoch": 12.950633464394933, + "grad_norm": 0.23184578120708466, + "learning_rate": 0.0006, + "loss": 4.214578628540039, + "step": 932 + }, + { + "epoch": 12.964613368283093, + "grad_norm": 0.2186676561832428, + "learning_rate": 0.0006, + "loss": 4.227711200714111, + "step": 933 + }, + { + "epoch": 12.978593272171254, + "grad_norm": 0.2160426527261734, + "learning_rate": 0.0006, + "loss": 4.221796989440918, + "step": 934 + }, + { + "epoch": 12.992573176059414, + "grad_norm": 0.21562792360782623, + "learning_rate": 0.0006, + "loss": 4.21957540512085, + "step": 935 + }, + { + "epoch": 13.0, + "grad_norm": 0.22538058459758759, + "learning_rate": 0.0006, + "loss": 4.2353973388671875, + "step": 936 + }, + { + "epoch": 13.0, + "eval_loss": 4.426600933074951, + "eval_runtime": 44.8138, + "eval_samples_per_second": 54.492, + "eval_steps_per_second": 3.414, + "step": 936 + }, + { + "epoch": 13.013979903888162, + "grad_norm": 0.24888049066066742, + "learning_rate": 0.0006, + "loss": 4.18648624420166, + "step": 937 + }, + { + "epoch": 13.027959807776321, + "grad_norm": 0.28330180048942566, + "learning_rate": 0.0006, + "loss": 4.188892364501953, + "step": 938 + }, + { + "epoch": 13.041939711664483, + "grad_norm": 0.31152188777923584, + "learning_rate": 0.0006, + "loss": 4.2053399085998535, + "step": 939 + }, + { + "epoch": 13.055919615552643, + "grad_norm": 0.2842433452606201, + "learning_rate": 0.0006, + "loss": 4.191902160644531, + "step": 940 + }, + { + "epoch": 13.069899519440805, + "grad_norm": 0.23664532601833344, + "learning_rate": 0.0006, + "loss": 4.1831865310668945, + "step": 941 + }, + { + "epoch": 13.083879423328964, + "grad_norm": 0.24204140901565552, + "learning_rate": 0.0006, + "loss": 4.202641487121582, + "step": 942 + }, + { + "epoch": 13.097859327217126, + "grad_norm": 0.235311359167099, + "learning_rate": 0.0006, + "loss": 4.174511909484863, + "step": 943 + }, + { + "epoch": 13.111839231105286, + "grad_norm": 0.27127715945243835, + "learning_rate": 0.0006, + "loss": 4.201844215393066, + "step": 944 + }, + { + "epoch": 13.125819134993447, + "grad_norm": 0.2722373604774475, + "learning_rate": 0.0006, + "loss": 4.157383918762207, + "step": 945 + }, + { + "epoch": 13.139799038881607, + "grad_norm": 0.25446659326553345, + "learning_rate": 0.0006, + "loss": 4.221236228942871, + "step": 946 + }, + { + "epoch": 13.153778942769769, + "grad_norm": 0.273017019033432, + "learning_rate": 0.0006, + "loss": 4.195512771606445, + "step": 947 + }, + { + "epoch": 13.167758846657929, + "grad_norm": 0.24766312539577484, + "learning_rate": 0.0006, + "loss": 4.220959663391113, + "step": 948 + }, + { + "epoch": 13.18173875054609, + "grad_norm": 0.24636317789554596, + "learning_rate": 0.0006, + "loss": 4.214302062988281, + "step": 949 + }, + { + "epoch": 13.19571865443425, + "grad_norm": 0.3177756667137146, + "learning_rate": 0.0006, + "loss": 4.213500022888184, + "step": 950 + }, + { + "epoch": 13.209698558322412, + "grad_norm": 0.44579195976257324, + "learning_rate": 0.0006, + "loss": 4.227644920349121, + "step": 951 + }, + { + "epoch": 13.223678462210572, + "grad_norm": 0.4217414855957031, + "learning_rate": 0.0006, + "loss": 4.180937767028809, + "step": 952 + }, + { + "epoch": 13.237658366098733, + "grad_norm": 0.30148059129714966, + "learning_rate": 0.0006, + "loss": 4.207760810852051, + "step": 953 + }, + { + "epoch": 13.251638269986893, + "grad_norm": 0.3192492127418518, + "learning_rate": 0.0006, + "loss": 4.197999000549316, + "step": 954 + }, + { + "epoch": 13.265618173875055, + "grad_norm": 0.37334588170051575, + "learning_rate": 0.0006, + "loss": 4.208001136779785, + "step": 955 + }, + { + "epoch": 13.279598077763215, + "grad_norm": 0.4059637784957886, + "learning_rate": 0.0006, + "loss": 4.211322784423828, + "step": 956 + }, + { + "epoch": 13.293577981651376, + "grad_norm": 0.3389599323272705, + "learning_rate": 0.0006, + "loss": 4.204404354095459, + "step": 957 + }, + { + "epoch": 13.307557885539538, + "grad_norm": 0.2675766050815582, + "learning_rate": 0.0006, + "loss": 4.245941162109375, + "step": 958 + }, + { + "epoch": 13.321537789427698, + "grad_norm": 0.2730264365673065, + "learning_rate": 0.0006, + "loss": 4.2221221923828125, + "step": 959 + }, + { + "epoch": 13.33551769331586, + "grad_norm": 0.26458224654197693, + "learning_rate": 0.0006, + "loss": 4.205596923828125, + "step": 960 + }, + { + "epoch": 13.349497597204019, + "grad_norm": 0.2872551381587982, + "learning_rate": 0.0006, + "loss": 4.196977615356445, + "step": 961 + }, + { + "epoch": 13.36347750109218, + "grad_norm": 0.2954796850681305, + "learning_rate": 0.0006, + "loss": 4.202796936035156, + "step": 962 + }, + { + "epoch": 13.37745740498034, + "grad_norm": 0.2619425654411316, + "learning_rate": 0.0006, + "loss": 4.196845054626465, + "step": 963 + }, + { + "epoch": 13.391437308868502, + "grad_norm": 0.30088478326797485, + "learning_rate": 0.0006, + "loss": 4.219697952270508, + "step": 964 + }, + { + "epoch": 13.405417212756662, + "grad_norm": 0.30388689041137695, + "learning_rate": 0.0006, + "loss": 4.187566757202148, + "step": 965 + }, + { + "epoch": 13.419397116644824, + "grad_norm": 0.27918127179145813, + "learning_rate": 0.0006, + "loss": 4.223600387573242, + "step": 966 + }, + { + "epoch": 13.433377020532983, + "grad_norm": 0.27634528279304504, + "learning_rate": 0.0006, + "loss": 4.165332317352295, + "step": 967 + }, + { + "epoch": 13.447356924421145, + "grad_norm": 0.28830021619796753, + "learning_rate": 0.0006, + "loss": 4.204029560089111, + "step": 968 + }, + { + "epoch": 13.461336828309305, + "grad_norm": 0.29220864176750183, + "learning_rate": 0.0006, + "loss": 4.218057155609131, + "step": 969 + }, + { + "epoch": 13.475316732197467, + "grad_norm": 0.3089624345302582, + "learning_rate": 0.0006, + "loss": 4.200654983520508, + "step": 970 + }, + { + "epoch": 13.489296636085626, + "grad_norm": 0.36479851603507996, + "learning_rate": 0.0006, + "loss": 4.182811737060547, + "step": 971 + }, + { + "epoch": 13.503276539973788, + "grad_norm": 0.37561097741127014, + "learning_rate": 0.0006, + "loss": 4.190266132354736, + "step": 972 + }, + { + "epoch": 13.517256443861948, + "grad_norm": 0.3263583183288574, + "learning_rate": 0.0006, + "loss": 4.214815616607666, + "step": 973 + }, + { + "epoch": 13.53123634775011, + "grad_norm": 0.21552999317646027, + "learning_rate": 0.0006, + "loss": 4.171380043029785, + "step": 974 + }, + { + "epoch": 13.54521625163827, + "grad_norm": 0.247328519821167, + "learning_rate": 0.0006, + "loss": 4.175377368927002, + "step": 975 + }, + { + "epoch": 13.55919615552643, + "grad_norm": 0.23740540444850922, + "learning_rate": 0.0006, + "loss": 4.212357997894287, + "step": 976 + }, + { + "epoch": 13.57317605941459, + "grad_norm": 0.21533876657485962, + "learning_rate": 0.0006, + "loss": 4.203285217285156, + "step": 977 + }, + { + "epoch": 13.587155963302752, + "grad_norm": 0.21462024748325348, + "learning_rate": 0.0006, + "loss": 4.178012371063232, + "step": 978 + }, + { + "epoch": 13.601135867190912, + "grad_norm": 0.2279169261455536, + "learning_rate": 0.0006, + "loss": 4.193912982940674, + "step": 979 + }, + { + "epoch": 13.615115771079074, + "grad_norm": 0.2202417552471161, + "learning_rate": 0.0006, + "loss": 4.167629718780518, + "step": 980 + }, + { + "epoch": 13.629095674967235, + "grad_norm": 0.20586472749710083, + "learning_rate": 0.0006, + "loss": 4.159290313720703, + "step": 981 + }, + { + "epoch": 13.643075578855395, + "grad_norm": 0.20200690627098083, + "learning_rate": 0.0006, + "loss": 4.210315227508545, + "step": 982 + }, + { + "epoch": 13.657055482743557, + "grad_norm": 0.21710257232189178, + "learning_rate": 0.0006, + "loss": 4.21730375289917, + "step": 983 + }, + { + "epoch": 13.671035386631717, + "grad_norm": 0.22058045864105225, + "learning_rate": 0.0006, + "loss": 4.1996073722839355, + "step": 984 + }, + { + "epoch": 13.685015290519878, + "grad_norm": 0.21549592912197113, + "learning_rate": 0.0006, + "loss": 4.209203720092773, + "step": 985 + }, + { + "epoch": 13.698995194408038, + "grad_norm": 0.22274717688560486, + "learning_rate": 0.0006, + "loss": 4.220660209655762, + "step": 986 + }, + { + "epoch": 13.7129750982962, + "grad_norm": 0.22791637480258942, + "learning_rate": 0.0006, + "loss": 4.158679962158203, + "step": 987 + }, + { + "epoch": 13.72695500218436, + "grad_norm": 0.216218963265419, + "learning_rate": 0.0006, + "loss": 4.188124656677246, + "step": 988 + }, + { + "epoch": 13.740934906072521, + "grad_norm": 0.19149383902549744, + "learning_rate": 0.0006, + "loss": 4.181729316711426, + "step": 989 + }, + { + "epoch": 13.754914809960681, + "grad_norm": 0.18964019417762756, + "learning_rate": 0.0006, + "loss": 4.184767246246338, + "step": 990 + }, + { + "epoch": 13.768894713848843, + "grad_norm": 0.1778000295162201, + "learning_rate": 0.0006, + "loss": 4.1802263259887695, + "step": 991 + }, + { + "epoch": 13.782874617737003, + "grad_norm": 0.18277616798877716, + "learning_rate": 0.0006, + "loss": 4.1657867431640625, + "step": 992 + }, + { + "epoch": 13.796854521625164, + "grad_norm": 0.18610034883022308, + "learning_rate": 0.0006, + "loss": 4.156744956970215, + "step": 993 + }, + { + "epoch": 13.810834425513324, + "grad_norm": 0.19332963228225708, + "learning_rate": 0.0006, + "loss": 4.143558502197266, + "step": 994 + }, + { + "epoch": 13.824814329401486, + "grad_norm": 0.19758112728595734, + "learning_rate": 0.0006, + "loss": 4.195793151855469, + "step": 995 + }, + { + "epoch": 13.838794233289645, + "grad_norm": 0.1933647245168686, + "learning_rate": 0.0006, + "loss": 4.169734954833984, + "step": 996 + }, + { + "epoch": 13.852774137177807, + "grad_norm": 0.2362028956413269, + "learning_rate": 0.0006, + "loss": 4.175025939941406, + "step": 997 + }, + { + "epoch": 13.866754041065967, + "grad_norm": 0.2465490996837616, + "learning_rate": 0.0006, + "loss": 4.173909664154053, + "step": 998 + }, + { + "epoch": 13.880733944954128, + "grad_norm": 0.23449952900409698, + "learning_rate": 0.0006, + "loss": 4.173429489135742, + "step": 999 + }, + { + "epoch": 13.89471384884229, + "grad_norm": 0.2282160222530365, + "learning_rate": 0.0006, + "loss": 4.158538341522217, + "step": 1000 + }, + { + "epoch": 13.90869375273045, + "grad_norm": 0.21066738665103912, + "learning_rate": 0.0006, + "loss": 4.171584129333496, + "step": 1001 + }, + { + "epoch": 13.922673656618612, + "grad_norm": 0.18787573277950287, + "learning_rate": 0.0006, + "loss": 4.1837544441223145, + "step": 1002 + }, + { + "epoch": 13.936653560506771, + "grad_norm": 0.2001059353351593, + "learning_rate": 0.0006, + "loss": 4.160369873046875, + "step": 1003 + }, + { + "epoch": 13.950633464394933, + "grad_norm": 0.21644988656044006, + "learning_rate": 0.0006, + "loss": 4.221372604370117, + "step": 1004 + }, + { + "epoch": 13.964613368283093, + "grad_norm": 0.22083887457847595, + "learning_rate": 0.0006, + "loss": 4.149261474609375, + "step": 1005 + }, + { + "epoch": 13.978593272171254, + "grad_norm": 0.2201409637928009, + "learning_rate": 0.0006, + "loss": 4.192010879516602, + "step": 1006 + }, + { + "epoch": 13.992573176059414, + "grad_norm": 0.18888601660728455, + "learning_rate": 0.0006, + "loss": 4.17539119720459, + "step": 1007 + }, + { + "epoch": 14.0, + "grad_norm": 0.2073872834444046, + "learning_rate": 0.0006, + "loss": 4.145265579223633, + "step": 1008 + }, + { + "epoch": 14.0, + "eval_loss": 4.36876106262207, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 1008 + }, + { + "epoch": 14.013979903888162, + "grad_norm": 0.20773135125637054, + "learning_rate": 0.0006, + "loss": 4.132615089416504, + "step": 1009 + }, + { + "epoch": 14.027959807776321, + "grad_norm": 0.22409620881080627, + "learning_rate": 0.0006, + "loss": 4.172839164733887, + "step": 1010 + }, + { + "epoch": 14.041939711664483, + "grad_norm": 0.24046066403388977, + "learning_rate": 0.0006, + "loss": 4.126678943634033, + "step": 1011 + }, + { + "epoch": 14.055919615552643, + "grad_norm": 0.29185160994529724, + "learning_rate": 0.0006, + "loss": 4.177952766418457, + "step": 1012 + }, + { + "epoch": 14.069899519440805, + "grad_norm": 0.2984033226966858, + "learning_rate": 0.0006, + "loss": 4.155030250549316, + "step": 1013 + }, + { + "epoch": 14.083879423328964, + "grad_norm": 0.30262473225593567, + "learning_rate": 0.0006, + "loss": 4.145394325256348, + "step": 1014 + }, + { + "epoch": 14.097859327217126, + "grad_norm": 0.3278133273124695, + "learning_rate": 0.0006, + "loss": 4.172739028930664, + "step": 1015 + }, + { + "epoch": 14.111839231105286, + "grad_norm": 0.3285452425479889, + "learning_rate": 0.0006, + "loss": 4.153196334838867, + "step": 1016 + }, + { + "epoch": 14.125819134993447, + "grad_norm": 0.33912697434425354, + "learning_rate": 0.0006, + "loss": 4.098162651062012, + "step": 1017 + }, + { + "epoch": 14.139799038881607, + "grad_norm": 0.32080814242362976, + "learning_rate": 0.0006, + "loss": 4.157135009765625, + "step": 1018 + }, + { + "epoch": 14.153778942769769, + "grad_norm": 0.31288477778434753, + "learning_rate": 0.0006, + "loss": 4.142683029174805, + "step": 1019 + }, + { + "epoch": 14.167758846657929, + "grad_norm": 0.350289523601532, + "learning_rate": 0.0006, + "loss": 4.134700775146484, + "step": 1020 + }, + { + "epoch": 14.18173875054609, + "grad_norm": 0.34274575114250183, + "learning_rate": 0.0006, + "loss": 4.1578569412231445, + "step": 1021 + }, + { + "epoch": 14.19571865443425, + "grad_norm": 0.2843035161495209, + "learning_rate": 0.0006, + "loss": 4.13760232925415, + "step": 1022 + }, + { + "epoch": 14.209698558322412, + "grad_norm": 0.28235161304473877, + "learning_rate": 0.0006, + "loss": 4.1492462158203125, + "step": 1023 + }, + { + "epoch": 14.223678462210572, + "grad_norm": 0.24407248198986053, + "learning_rate": 0.0006, + "loss": 4.144372463226318, + "step": 1024 + }, + { + "epoch": 14.237658366098733, + "grad_norm": 0.2489742934703827, + "learning_rate": 0.0006, + "loss": 4.137950897216797, + "step": 1025 + }, + { + "epoch": 14.251638269986893, + "grad_norm": 0.26035651564598083, + "learning_rate": 0.0006, + "loss": 4.144070625305176, + "step": 1026 + }, + { + "epoch": 14.265618173875055, + "grad_norm": 0.2726516127586365, + "learning_rate": 0.0006, + "loss": 4.145204067230225, + "step": 1027 + }, + { + "epoch": 14.279598077763215, + "grad_norm": 0.2723483443260193, + "learning_rate": 0.0006, + "loss": 4.118407249450684, + "step": 1028 + }, + { + "epoch": 14.293577981651376, + "grad_norm": 0.27476269006729126, + "learning_rate": 0.0006, + "loss": 4.111325263977051, + "step": 1029 + }, + { + "epoch": 14.307557885539538, + "grad_norm": 0.26202502846717834, + "learning_rate": 0.0006, + "loss": 4.122248649597168, + "step": 1030 + }, + { + "epoch": 14.321537789427698, + "grad_norm": 0.2472032904624939, + "learning_rate": 0.0006, + "loss": 4.157790184020996, + "step": 1031 + }, + { + "epoch": 14.33551769331586, + "grad_norm": 0.2518343925476074, + "learning_rate": 0.0006, + "loss": 4.109132766723633, + "step": 1032 + }, + { + "epoch": 14.349497597204019, + "grad_norm": 0.2652401924133301, + "learning_rate": 0.0006, + "loss": 4.144079685211182, + "step": 1033 + }, + { + "epoch": 14.36347750109218, + "grad_norm": 0.2356770783662796, + "learning_rate": 0.0006, + "loss": 4.128426551818848, + "step": 1034 + }, + { + "epoch": 14.37745740498034, + "grad_norm": 0.2164214551448822, + "learning_rate": 0.0006, + "loss": 4.1644392013549805, + "step": 1035 + }, + { + "epoch": 14.391437308868502, + "grad_norm": 0.22383111715316772, + "learning_rate": 0.0006, + "loss": 4.165862083435059, + "step": 1036 + }, + { + "epoch": 14.405417212756662, + "grad_norm": 0.23152419924736023, + "learning_rate": 0.0006, + "loss": 4.140036582946777, + "step": 1037 + }, + { + "epoch": 14.419397116644824, + "grad_norm": 0.2387741357088089, + "learning_rate": 0.0006, + "loss": 4.130461692810059, + "step": 1038 + }, + { + "epoch": 14.433377020532983, + "grad_norm": 0.24018129706382751, + "learning_rate": 0.0006, + "loss": 4.148482322692871, + "step": 1039 + }, + { + "epoch": 14.447356924421145, + "grad_norm": 0.25487351417541504, + "learning_rate": 0.0006, + "loss": 4.158121109008789, + "step": 1040 + }, + { + "epoch": 14.461336828309305, + "grad_norm": 0.28220096230506897, + "learning_rate": 0.0006, + "loss": 4.160198211669922, + "step": 1041 + }, + { + "epoch": 14.475316732197467, + "grad_norm": 0.2574434280395508, + "learning_rate": 0.0006, + "loss": 4.168512344360352, + "step": 1042 + }, + { + "epoch": 14.489296636085626, + "grad_norm": 0.22569820284843445, + "learning_rate": 0.0006, + "loss": 4.1595001220703125, + "step": 1043 + }, + { + "epoch": 14.503276539973788, + "grad_norm": 0.2473423182964325, + "learning_rate": 0.0006, + "loss": 4.084580898284912, + "step": 1044 + }, + { + "epoch": 14.517256443861948, + "grad_norm": 0.24281060695648193, + "learning_rate": 0.0006, + "loss": 4.139714241027832, + "step": 1045 + }, + { + "epoch": 14.53123634775011, + "grad_norm": 0.24691344797611237, + "learning_rate": 0.0006, + "loss": 4.115398406982422, + "step": 1046 + }, + { + "epoch": 14.54521625163827, + "grad_norm": 0.2583645284175873, + "learning_rate": 0.0006, + "loss": 4.142148494720459, + "step": 1047 + }, + { + "epoch": 14.55919615552643, + "grad_norm": 0.23258574306964874, + "learning_rate": 0.0006, + "loss": 4.16251277923584, + "step": 1048 + }, + { + "epoch": 14.57317605941459, + "grad_norm": 0.22103039920330048, + "learning_rate": 0.0006, + "loss": 4.1308441162109375, + "step": 1049 + }, + { + "epoch": 14.587155963302752, + "grad_norm": 0.23713579773902893, + "learning_rate": 0.0006, + "loss": 4.1565985679626465, + "step": 1050 + }, + { + "epoch": 14.601135867190912, + "grad_norm": 0.24406634271144867, + "learning_rate": 0.0006, + "loss": 4.14628267288208, + "step": 1051 + }, + { + "epoch": 14.615115771079074, + "grad_norm": 0.26821228861808777, + "learning_rate": 0.0006, + "loss": 4.138063430786133, + "step": 1052 + }, + { + "epoch": 14.629095674967235, + "grad_norm": 0.25483864545822144, + "learning_rate": 0.0006, + "loss": 4.1311163902282715, + "step": 1053 + }, + { + "epoch": 14.643075578855395, + "grad_norm": 0.23937982320785522, + "learning_rate": 0.0006, + "loss": 4.150882244110107, + "step": 1054 + }, + { + "epoch": 14.657055482743557, + "grad_norm": 0.21896475553512573, + "learning_rate": 0.0006, + "loss": 4.114015102386475, + "step": 1055 + }, + { + "epoch": 14.671035386631717, + "grad_norm": 0.20821231603622437, + "learning_rate": 0.0006, + "loss": 4.139034271240234, + "step": 1056 + }, + { + "epoch": 14.685015290519878, + "grad_norm": 0.1978551596403122, + "learning_rate": 0.0006, + "loss": 4.1810503005981445, + "step": 1057 + }, + { + "epoch": 14.698995194408038, + "grad_norm": 0.1945771872997284, + "learning_rate": 0.0006, + "loss": 4.120734214782715, + "step": 1058 + }, + { + "epoch": 14.7129750982962, + "grad_norm": 0.19518673419952393, + "learning_rate": 0.0006, + "loss": 4.14264440536499, + "step": 1059 + }, + { + "epoch": 14.72695500218436, + "grad_norm": 0.202596515417099, + "learning_rate": 0.0006, + "loss": 4.151649475097656, + "step": 1060 + }, + { + "epoch": 14.740934906072521, + "grad_norm": 0.1904762089252472, + "learning_rate": 0.0006, + "loss": 4.127899169921875, + "step": 1061 + }, + { + "epoch": 14.754914809960681, + "grad_norm": 0.20685508847236633, + "learning_rate": 0.0006, + "loss": 4.093445777893066, + "step": 1062 + }, + { + "epoch": 14.768894713848843, + "grad_norm": 0.22678329050540924, + "learning_rate": 0.0006, + "loss": 4.132084369659424, + "step": 1063 + }, + { + "epoch": 14.782874617737003, + "grad_norm": 0.24631841480731964, + "learning_rate": 0.0006, + "loss": 4.154788970947266, + "step": 1064 + }, + { + "epoch": 14.796854521625164, + "grad_norm": 0.24445782601833344, + "learning_rate": 0.0006, + "loss": 4.144735336303711, + "step": 1065 + }, + { + "epoch": 14.810834425513324, + "grad_norm": 0.22330640256404877, + "learning_rate": 0.0006, + "loss": 4.159893989562988, + "step": 1066 + }, + { + "epoch": 14.824814329401486, + "grad_norm": 0.22422967851161957, + "learning_rate": 0.0006, + "loss": 4.104874610900879, + "step": 1067 + }, + { + "epoch": 14.838794233289645, + "grad_norm": 0.24583931267261505, + "learning_rate": 0.0006, + "loss": 4.139403820037842, + "step": 1068 + }, + { + "epoch": 14.852774137177807, + "grad_norm": 0.2917379140853882, + "learning_rate": 0.0006, + "loss": 4.168988227844238, + "step": 1069 + }, + { + "epoch": 14.866754041065967, + "grad_norm": 0.3171777129173279, + "learning_rate": 0.0006, + "loss": 4.131263732910156, + "step": 1070 + }, + { + "epoch": 14.880733944954128, + "grad_norm": 0.3039591312408447, + "learning_rate": 0.0006, + "loss": 4.149853706359863, + "step": 1071 + }, + { + "epoch": 14.89471384884229, + "grad_norm": 0.2690650522708893, + "learning_rate": 0.0006, + "loss": 4.154787540435791, + "step": 1072 + }, + { + "epoch": 14.90869375273045, + "grad_norm": 0.28683212399482727, + "learning_rate": 0.0006, + "loss": 4.12751579284668, + "step": 1073 + }, + { + "epoch": 14.922673656618612, + "grad_norm": 0.30022913217544556, + "learning_rate": 0.0006, + "loss": 4.141940116882324, + "step": 1074 + }, + { + "epoch": 14.936653560506771, + "grad_norm": 0.3312259316444397, + "learning_rate": 0.0006, + "loss": 4.141905784606934, + "step": 1075 + }, + { + "epoch": 14.950633464394933, + "grad_norm": 0.31159237027168274, + "learning_rate": 0.0006, + "loss": 4.160192966461182, + "step": 1076 + }, + { + "epoch": 14.964613368283093, + "grad_norm": 0.30093592405319214, + "learning_rate": 0.0006, + "loss": 4.1085076332092285, + "step": 1077 + }, + { + "epoch": 14.978593272171254, + "grad_norm": 0.2728535830974579, + "learning_rate": 0.0006, + "loss": 4.156959056854248, + "step": 1078 + }, + { + "epoch": 14.992573176059414, + "grad_norm": 0.24766813218593597, + "learning_rate": 0.0006, + "loss": 4.113999843597412, + "step": 1079 + }, + { + "epoch": 15.0, + "grad_norm": 0.2538154721260071, + "learning_rate": 0.0006, + "loss": 4.147134780883789, + "step": 1080 + }, + { + "epoch": 15.0, + "eval_loss": 4.323154926300049, + "eval_runtime": 44.8813, + "eval_samples_per_second": 54.41, + "eval_steps_per_second": 3.409, + "step": 1080 + }, + { + "epoch": 15.013979903888162, + "grad_norm": 0.22535280883312225, + "learning_rate": 0.0006, + "loss": 4.112179756164551, + "step": 1081 + }, + { + "epoch": 15.027959807776321, + "grad_norm": 0.24340929090976715, + "learning_rate": 0.0006, + "loss": 4.080923080444336, + "step": 1082 + }, + { + "epoch": 15.041939711664483, + "grad_norm": 0.23159465193748474, + "learning_rate": 0.0006, + "loss": 4.097067356109619, + "step": 1083 + }, + { + "epoch": 15.055919615552643, + "grad_norm": 0.22674769163131714, + "learning_rate": 0.0006, + "loss": 4.118601322174072, + "step": 1084 + }, + { + "epoch": 15.069899519440805, + "grad_norm": 0.2524292469024658, + "learning_rate": 0.0006, + "loss": 4.101109504699707, + "step": 1085 + }, + { + "epoch": 15.083879423328964, + "grad_norm": 0.2505405843257904, + "learning_rate": 0.0006, + "loss": 4.121405601501465, + "step": 1086 + }, + { + "epoch": 15.097859327217126, + "grad_norm": 0.2557983696460724, + "learning_rate": 0.0006, + "loss": 4.1063947677612305, + "step": 1087 + }, + { + "epoch": 15.111839231105286, + "grad_norm": 0.24452129006385803, + "learning_rate": 0.0006, + "loss": 4.086133003234863, + "step": 1088 + }, + { + "epoch": 15.125819134993447, + "grad_norm": 0.25821781158447266, + "learning_rate": 0.0006, + "loss": 4.076262950897217, + "step": 1089 + }, + { + "epoch": 15.139799038881607, + "grad_norm": 0.23650537431240082, + "learning_rate": 0.0006, + "loss": 4.101842880249023, + "step": 1090 + }, + { + "epoch": 15.153778942769769, + "grad_norm": 0.2206192910671234, + "learning_rate": 0.0006, + "loss": 4.11027193069458, + "step": 1091 + }, + { + "epoch": 15.167758846657929, + "grad_norm": 0.21843163669109344, + "learning_rate": 0.0006, + "loss": 4.098437309265137, + "step": 1092 + }, + { + "epoch": 15.18173875054609, + "grad_norm": 0.2528176009654999, + "learning_rate": 0.0006, + "loss": 4.108713150024414, + "step": 1093 + }, + { + "epoch": 15.19571865443425, + "grad_norm": 0.26697206497192383, + "learning_rate": 0.0006, + "loss": 4.113210201263428, + "step": 1094 + }, + { + "epoch": 15.209698558322412, + "grad_norm": 0.26480963826179504, + "learning_rate": 0.0006, + "loss": 4.1103620529174805, + "step": 1095 + }, + { + "epoch": 15.223678462210572, + "grad_norm": 0.24887347221374512, + "learning_rate": 0.0006, + "loss": 4.103529930114746, + "step": 1096 + }, + { + "epoch": 15.237658366098733, + "grad_norm": 0.2344668060541153, + "learning_rate": 0.0006, + "loss": 4.129784107208252, + "step": 1097 + }, + { + "epoch": 15.251638269986893, + "grad_norm": 0.22639742493629456, + "learning_rate": 0.0006, + "loss": 4.113495349884033, + "step": 1098 + }, + { + "epoch": 15.265618173875055, + "grad_norm": 0.22466333210468292, + "learning_rate": 0.0006, + "loss": 4.102309703826904, + "step": 1099 + }, + { + "epoch": 15.279598077763215, + "grad_norm": 0.25135037302970886, + "learning_rate": 0.0006, + "loss": 4.117668628692627, + "step": 1100 + }, + { + "epoch": 15.293577981651376, + "grad_norm": 0.2347089946269989, + "learning_rate": 0.0006, + "loss": 4.086637496948242, + "step": 1101 + }, + { + "epoch": 15.307557885539538, + "grad_norm": 0.2347242832183838, + "learning_rate": 0.0006, + "loss": 4.098714828491211, + "step": 1102 + }, + { + "epoch": 15.321537789427698, + "grad_norm": 0.23990283906459808, + "learning_rate": 0.0006, + "loss": 4.079837799072266, + "step": 1103 + }, + { + "epoch": 15.33551769331586, + "grad_norm": 0.22366675734519958, + "learning_rate": 0.0006, + "loss": 4.108136177062988, + "step": 1104 + }, + { + "epoch": 15.349497597204019, + "grad_norm": 0.21823780238628387, + "learning_rate": 0.0006, + "loss": 4.10054349899292, + "step": 1105 + }, + { + "epoch": 15.36347750109218, + "grad_norm": 0.23059198260307312, + "learning_rate": 0.0006, + "loss": 4.108620643615723, + "step": 1106 + }, + { + "epoch": 15.37745740498034, + "grad_norm": 0.2313755601644516, + "learning_rate": 0.0006, + "loss": 4.088565826416016, + "step": 1107 + }, + { + "epoch": 15.391437308868502, + "grad_norm": 0.2546829283237457, + "learning_rate": 0.0006, + "loss": 4.104948043823242, + "step": 1108 + }, + { + "epoch": 15.405417212756662, + "grad_norm": 0.23666726052761078, + "learning_rate": 0.0006, + "loss": 4.111965179443359, + "step": 1109 + }, + { + "epoch": 15.419397116644824, + "grad_norm": 0.21971021592617035, + "learning_rate": 0.0006, + "loss": 4.097846984863281, + "step": 1110 + }, + { + "epoch": 15.433377020532983, + "grad_norm": 0.20951911807060242, + "learning_rate": 0.0006, + "loss": 4.110099792480469, + "step": 1111 + }, + { + "epoch": 15.447356924421145, + "grad_norm": 0.19590918719768524, + "learning_rate": 0.0006, + "loss": 4.101154327392578, + "step": 1112 + }, + { + "epoch": 15.461336828309305, + "grad_norm": 0.21048946678638458, + "learning_rate": 0.0006, + "loss": 4.0986127853393555, + "step": 1113 + }, + { + "epoch": 15.475316732197467, + "grad_norm": 0.21423374116420746, + "learning_rate": 0.0006, + "loss": 4.082328796386719, + "step": 1114 + }, + { + "epoch": 15.489296636085626, + "grad_norm": 0.227146714925766, + "learning_rate": 0.0006, + "loss": 4.105281829833984, + "step": 1115 + }, + { + "epoch": 15.503276539973788, + "grad_norm": 0.2079153060913086, + "learning_rate": 0.0006, + "loss": 4.100836753845215, + "step": 1116 + }, + { + "epoch": 15.517256443861948, + "grad_norm": 0.21084675192832947, + "learning_rate": 0.0006, + "loss": 4.0934343338012695, + "step": 1117 + }, + { + "epoch": 15.53123634775011, + "grad_norm": 0.23863616585731506, + "learning_rate": 0.0006, + "loss": 4.101540565490723, + "step": 1118 + }, + { + "epoch": 15.54521625163827, + "grad_norm": 0.2518490254878998, + "learning_rate": 0.0006, + "loss": 4.12303352355957, + "step": 1119 + }, + { + "epoch": 15.55919615552643, + "grad_norm": 0.24282905459403992, + "learning_rate": 0.0006, + "loss": 4.080670356750488, + "step": 1120 + }, + { + "epoch": 15.57317605941459, + "grad_norm": 0.24171605706214905, + "learning_rate": 0.0006, + "loss": 4.117938041687012, + "step": 1121 + }, + { + "epoch": 15.587155963302752, + "grad_norm": 0.28453412652015686, + "learning_rate": 0.0006, + "loss": 4.080114364624023, + "step": 1122 + }, + { + "epoch": 15.601135867190912, + "grad_norm": 0.30322617292404175, + "learning_rate": 0.0006, + "loss": 4.079695701599121, + "step": 1123 + }, + { + "epoch": 15.615115771079074, + "grad_norm": 0.2657633125782013, + "learning_rate": 0.0006, + "loss": 4.0916290283203125, + "step": 1124 + }, + { + "epoch": 15.629095674967235, + "grad_norm": 0.2467080056667328, + "learning_rate": 0.0006, + "loss": 4.095594882965088, + "step": 1125 + }, + { + "epoch": 15.643075578855395, + "grad_norm": 0.21767394244670868, + "learning_rate": 0.0006, + "loss": 4.079174041748047, + "step": 1126 + }, + { + "epoch": 15.657055482743557, + "grad_norm": 0.2088327705860138, + "learning_rate": 0.0006, + "loss": 4.060707092285156, + "step": 1127 + }, + { + "epoch": 15.671035386631717, + "grad_norm": 0.1921205073595047, + "learning_rate": 0.0006, + "loss": 4.073911666870117, + "step": 1128 + }, + { + "epoch": 15.685015290519878, + "grad_norm": 0.209339901804924, + "learning_rate": 0.0006, + "loss": 4.089954376220703, + "step": 1129 + }, + { + "epoch": 15.698995194408038, + "grad_norm": 0.23513881862163544, + "learning_rate": 0.0006, + "loss": 4.084906578063965, + "step": 1130 + }, + { + "epoch": 15.7129750982962, + "grad_norm": 0.26140275597572327, + "learning_rate": 0.0006, + "loss": 4.086570739746094, + "step": 1131 + }, + { + "epoch": 15.72695500218436, + "grad_norm": 0.290431946516037, + "learning_rate": 0.0006, + "loss": 4.071229457855225, + "step": 1132 + }, + { + "epoch": 15.740934906072521, + "grad_norm": 0.3061376214027405, + "learning_rate": 0.0006, + "loss": 4.103148460388184, + "step": 1133 + }, + { + "epoch": 15.754914809960681, + "grad_norm": 0.26312482357025146, + "learning_rate": 0.0006, + "loss": 4.088448524475098, + "step": 1134 + }, + { + "epoch": 15.768894713848843, + "grad_norm": 0.22474883496761322, + "learning_rate": 0.0006, + "loss": 4.091766834259033, + "step": 1135 + }, + { + "epoch": 15.782874617737003, + "grad_norm": 0.2341146171092987, + "learning_rate": 0.0006, + "loss": 4.1222758293151855, + "step": 1136 + }, + { + "epoch": 15.796854521625164, + "grad_norm": 0.23556149005889893, + "learning_rate": 0.0006, + "loss": 4.094954013824463, + "step": 1137 + }, + { + "epoch": 15.810834425513324, + "grad_norm": 0.263315349817276, + "learning_rate": 0.0006, + "loss": 4.1065473556518555, + "step": 1138 + }, + { + "epoch": 15.824814329401486, + "grad_norm": 0.2700869143009186, + "learning_rate": 0.0006, + "loss": 4.0890045166015625, + "step": 1139 + }, + { + "epoch": 15.838794233289645, + "grad_norm": 0.28697484731674194, + "learning_rate": 0.0006, + "loss": 4.092496395111084, + "step": 1140 + }, + { + "epoch": 15.852774137177807, + "grad_norm": 0.2824092507362366, + "learning_rate": 0.0006, + "loss": 4.079615592956543, + "step": 1141 + }, + { + "epoch": 15.866754041065967, + "grad_norm": 0.24547280371189117, + "learning_rate": 0.0006, + "loss": 4.089683532714844, + "step": 1142 + }, + { + "epoch": 15.880733944954128, + "grad_norm": 0.23653888702392578, + "learning_rate": 0.0006, + "loss": 4.067309379577637, + "step": 1143 + }, + { + "epoch": 15.89471384884229, + "grad_norm": 0.23784421384334564, + "learning_rate": 0.0006, + "loss": 4.09156608581543, + "step": 1144 + }, + { + "epoch": 15.90869375273045, + "grad_norm": 0.22753281891345978, + "learning_rate": 0.0006, + "loss": 4.095428466796875, + "step": 1145 + }, + { + "epoch": 15.922673656618612, + "grad_norm": 0.2464212030172348, + "learning_rate": 0.0006, + "loss": 4.1036376953125, + "step": 1146 + }, + { + "epoch": 15.936653560506771, + "grad_norm": 0.25531601905822754, + "learning_rate": 0.0006, + "loss": 4.073996543884277, + "step": 1147 + }, + { + "epoch": 15.950633464394933, + "grad_norm": 0.24145905673503876, + "learning_rate": 0.0006, + "loss": 4.094479560852051, + "step": 1148 + }, + { + "epoch": 15.964613368283093, + "grad_norm": 0.24274317920207977, + "learning_rate": 0.0006, + "loss": 4.101981163024902, + "step": 1149 + }, + { + "epoch": 15.978593272171254, + "grad_norm": 0.2350679188966751, + "learning_rate": 0.0006, + "loss": 4.057965278625488, + "step": 1150 + }, + { + "epoch": 15.992573176059414, + "grad_norm": 0.24072253704071045, + "learning_rate": 0.0006, + "loss": 4.020050048828125, + "step": 1151 + }, + { + "epoch": 16.0, + "grad_norm": 0.253978967666626, + "learning_rate": 0.0006, + "loss": 4.061928749084473, + "step": 1152 + }, + { + "epoch": 16.0, + "eval_loss": 4.270665645599365, + "eval_runtime": 44.5063, + "eval_samples_per_second": 54.869, + "eval_steps_per_second": 3.438, + "step": 1152 + }, + { + "epoch": 16.01397990388816, + "grad_norm": 0.3265204131603241, + "learning_rate": 0.0006, + "loss": 4.059116363525391, + "step": 1153 + }, + { + "epoch": 16.027959807776323, + "grad_norm": 0.34139737486839294, + "learning_rate": 0.0006, + "loss": 4.062219619750977, + "step": 1154 + }, + { + "epoch": 16.041939711664483, + "grad_norm": 0.2849949598312378, + "learning_rate": 0.0006, + "loss": 4.032323837280273, + "step": 1155 + }, + { + "epoch": 16.055919615552643, + "grad_norm": 0.25031402707099915, + "learning_rate": 0.0006, + "loss": 4.075527191162109, + "step": 1156 + }, + { + "epoch": 16.069899519440803, + "grad_norm": 0.25207436084747314, + "learning_rate": 0.0006, + "loss": 4.0883097648620605, + "step": 1157 + }, + { + "epoch": 16.083879423328966, + "grad_norm": 0.28677356243133545, + "learning_rate": 0.0006, + "loss": 4.040797233581543, + "step": 1158 + }, + { + "epoch": 16.097859327217126, + "grad_norm": 0.30778825283050537, + "learning_rate": 0.0006, + "loss": 4.051504135131836, + "step": 1159 + }, + { + "epoch": 16.111839231105286, + "grad_norm": 0.3136911988258362, + "learning_rate": 0.0006, + "loss": 4.045449256896973, + "step": 1160 + }, + { + "epoch": 16.125819134993446, + "grad_norm": 0.34384530782699585, + "learning_rate": 0.0006, + "loss": 4.069897651672363, + "step": 1161 + }, + { + "epoch": 16.13979903888161, + "grad_norm": 0.3074268400669098, + "learning_rate": 0.0006, + "loss": 4.0621137619018555, + "step": 1162 + }, + { + "epoch": 16.15377894276977, + "grad_norm": 0.33090949058532715, + "learning_rate": 0.0006, + "loss": 4.084089279174805, + "step": 1163 + }, + { + "epoch": 16.16775884665793, + "grad_norm": 0.26358580589294434, + "learning_rate": 0.0006, + "loss": 4.066563606262207, + "step": 1164 + }, + { + "epoch": 16.18173875054609, + "grad_norm": 0.25586041808128357, + "learning_rate": 0.0006, + "loss": 4.08109188079834, + "step": 1165 + }, + { + "epoch": 16.195718654434252, + "grad_norm": 0.2966184616088867, + "learning_rate": 0.0006, + "loss": 4.039186477661133, + "step": 1166 + }, + { + "epoch": 16.209698558322412, + "grad_norm": 0.3064924478530884, + "learning_rate": 0.0006, + "loss": 4.08139705657959, + "step": 1167 + }, + { + "epoch": 16.22367846221057, + "grad_norm": 0.28671345114707947, + "learning_rate": 0.0006, + "loss": 4.04637336730957, + "step": 1168 + }, + { + "epoch": 16.23765836609873, + "grad_norm": 0.26209691166877747, + "learning_rate": 0.0006, + "loss": 4.052768707275391, + "step": 1169 + }, + { + "epoch": 16.251638269986895, + "grad_norm": 0.2758907079696655, + "learning_rate": 0.0006, + "loss": 4.064321517944336, + "step": 1170 + }, + { + "epoch": 16.265618173875055, + "grad_norm": 0.25961801409721375, + "learning_rate": 0.0006, + "loss": 4.057299613952637, + "step": 1171 + }, + { + "epoch": 16.279598077763215, + "grad_norm": 0.2513751685619354, + "learning_rate": 0.0006, + "loss": 4.064148902893066, + "step": 1172 + }, + { + "epoch": 16.293577981651374, + "grad_norm": 0.23920276761054993, + "learning_rate": 0.0006, + "loss": 4.101890563964844, + "step": 1173 + }, + { + "epoch": 16.307557885539538, + "grad_norm": 0.22746537625789642, + "learning_rate": 0.0006, + "loss": 4.086627006530762, + "step": 1174 + }, + { + "epoch": 16.321537789427698, + "grad_norm": 0.22633525729179382, + "learning_rate": 0.0006, + "loss": 4.04669189453125, + "step": 1175 + }, + { + "epoch": 16.335517693315857, + "grad_norm": 0.2654891610145569, + "learning_rate": 0.0006, + "loss": 4.086793422698975, + "step": 1176 + }, + { + "epoch": 16.34949759720402, + "grad_norm": 0.2872653007507324, + "learning_rate": 0.0006, + "loss": 4.077983856201172, + "step": 1177 + }, + { + "epoch": 16.36347750109218, + "grad_norm": 0.25726038217544556, + "learning_rate": 0.0006, + "loss": 4.066011428833008, + "step": 1178 + }, + { + "epoch": 16.37745740498034, + "grad_norm": 0.2592027485370636, + "learning_rate": 0.0006, + "loss": 4.0482988357543945, + "step": 1179 + }, + { + "epoch": 16.3914373088685, + "grad_norm": 0.2768886685371399, + "learning_rate": 0.0006, + "loss": 4.065151214599609, + "step": 1180 + }, + { + "epoch": 16.405417212756664, + "grad_norm": 0.2956002652645111, + "learning_rate": 0.0006, + "loss": 4.037791728973389, + "step": 1181 + }, + { + "epoch": 16.419397116644824, + "grad_norm": 0.3092120885848999, + "learning_rate": 0.0006, + "loss": 4.062164306640625, + "step": 1182 + }, + { + "epoch": 16.433377020532983, + "grad_norm": 0.29516810178756714, + "learning_rate": 0.0006, + "loss": 4.025505065917969, + "step": 1183 + }, + { + "epoch": 16.447356924421143, + "grad_norm": 0.2640177607536316, + "learning_rate": 0.0006, + "loss": 4.060182571411133, + "step": 1184 + }, + { + "epoch": 16.461336828309307, + "grad_norm": 0.2444908320903778, + "learning_rate": 0.0006, + "loss": 4.046144962310791, + "step": 1185 + }, + { + "epoch": 16.475316732197467, + "grad_norm": 0.23190705478191376, + "learning_rate": 0.0006, + "loss": 4.075569152832031, + "step": 1186 + }, + { + "epoch": 16.489296636085626, + "grad_norm": 0.2383626103401184, + "learning_rate": 0.0006, + "loss": 4.088897705078125, + "step": 1187 + }, + { + "epoch": 16.503276539973786, + "grad_norm": 0.20688803493976593, + "learning_rate": 0.0006, + "loss": 4.064517974853516, + "step": 1188 + }, + { + "epoch": 16.51725644386195, + "grad_norm": 0.22610054910182953, + "learning_rate": 0.0006, + "loss": 4.04502010345459, + "step": 1189 + }, + { + "epoch": 16.53123634775011, + "grad_norm": 0.2014893889427185, + "learning_rate": 0.0006, + "loss": 4.058279514312744, + "step": 1190 + }, + { + "epoch": 16.54521625163827, + "grad_norm": 0.21459777653217316, + "learning_rate": 0.0006, + "loss": 4.066389083862305, + "step": 1191 + }, + { + "epoch": 16.55919615552643, + "grad_norm": 0.22909940779209137, + "learning_rate": 0.0006, + "loss": 4.0557966232299805, + "step": 1192 + }, + { + "epoch": 16.573176059414592, + "grad_norm": 0.20039083063602448, + "learning_rate": 0.0006, + "loss": 4.092845916748047, + "step": 1193 + }, + { + "epoch": 16.587155963302752, + "grad_norm": 0.22651726007461548, + "learning_rate": 0.0006, + "loss": 4.034615516662598, + "step": 1194 + }, + { + "epoch": 16.601135867190912, + "grad_norm": 0.21901755034923553, + "learning_rate": 0.0006, + "loss": 4.035619735717773, + "step": 1195 + }, + { + "epoch": 16.615115771079076, + "grad_norm": 0.22930841147899628, + "learning_rate": 0.0006, + "loss": 4.080800533294678, + "step": 1196 + }, + { + "epoch": 16.629095674967235, + "grad_norm": 0.212818443775177, + "learning_rate": 0.0006, + "loss": 4.030189514160156, + "step": 1197 + }, + { + "epoch": 16.643075578855395, + "grad_norm": 0.2370826154947281, + "learning_rate": 0.0006, + "loss": 4.062643527984619, + "step": 1198 + }, + { + "epoch": 16.657055482743555, + "grad_norm": 0.24786995351314545, + "learning_rate": 0.0006, + "loss": 4.031761169433594, + "step": 1199 + }, + { + "epoch": 16.67103538663172, + "grad_norm": 0.2305847704410553, + "learning_rate": 0.0006, + "loss": 4.083752155303955, + "step": 1200 + }, + { + "epoch": 16.68501529051988, + "grad_norm": 0.23336584866046906, + "learning_rate": 0.0006, + "loss": 4.079145431518555, + "step": 1201 + }, + { + "epoch": 16.698995194408038, + "grad_norm": 0.23976293206214905, + "learning_rate": 0.0006, + "loss": 4.020473957061768, + "step": 1202 + }, + { + "epoch": 16.712975098296198, + "grad_norm": 0.222761869430542, + "learning_rate": 0.0006, + "loss": 4.065582752227783, + "step": 1203 + }, + { + "epoch": 16.72695500218436, + "grad_norm": 0.23725618422031403, + "learning_rate": 0.0006, + "loss": 4.0263776779174805, + "step": 1204 + }, + { + "epoch": 16.74093490607252, + "grad_norm": 0.23873984813690186, + "learning_rate": 0.0006, + "loss": 4.053092956542969, + "step": 1205 + }, + { + "epoch": 16.75491480996068, + "grad_norm": 0.21043002605438232, + "learning_rate": 0.0006, + "loss": 4.063965797424316, + "step": 1206 + }, + { + "epoch": 16.76889471384884, + "grad_norm": 0.19863522052764893, + "learning_rate": 0.0006, + "loss": 4.061187267303467, + "step": 1207 + }, + { + "epoch": 16.782874617737004, + "grad_norm": 0.1953752487897873, + "learning_rate": 0.0006, + "loss": 4.046016693115234, + "step": 1208 + }, + { + "epoch": 16.796854521625164, + "grad_norm": 0.2130361795425415, + "learning_rate": 0.0006, + "loss": 4.066933631896973, + "step": 1209 + }, + { + "epoch": 16.810834425513324, + "grad_norm": 0.19598130881786346, + "learning_rate": 0.0006, + "loss": 4.071558952331543, + "step": 1210 + }, + { + "epoch": 16.824814329401484, + "grad_norm": 0.20331116020679474, + "learning_rate": 0.0006, + "loss": 4.088632106781006, + "step": 1211 + }, + { + "epoch": 16.838794233289647, + "grad_norm": 0.20423150062561035, + "learning_rate": 0.0006, + "loss": 4.032224655151367, + "step": 1212 + }, + { + "epoch": 16.852774137177807, + "grad_norm": 0.2401197850704193, + "learning_rate": 0.0006, + "loss": 4.037393569946289, + "step": 1213 + }, + { + "epoch": 16.866754041065967, + "grad_norm": 0.26102620363235474, + "learning_rate": 0.0006, + "loss": 4.04738712310791, + "step": 1214 + }, + { + "epoch": 16.88073394495413, + "grad_norm": 0.2438521534204483, + "learning_rate": 0.0006, + "loss": 4.015673637390137, + "step": 1215 + }, + { + "epoch": 16.89471384884229, + "grad_norm": 0.20742061734199524, + "learning_rate": 0.0006, + "loss": 4.049060821533203, + "step": 1216 + }, + { + "epoch": 16.90869375273045, + "grad_norm": 0.22028608620166779, + "learning_rate": 0.0006, + "loss": 4.088971138000488, + "step": 1217 + }, + { + "epoch": 16.92267365661861, + "grad_norm": 0.21746744215488434, + "learning_rate": 0.0006, + "loss": 4.021710395812988, + "step": 1218 + }, + { + "epoch": 16.936653560506773, + "grad_norm": 0.2226102203130722, + "learning_rate": 0.0006, + "loss": 4.050119400024414, + "step": 1219 + }, + { + "epoch": 16.950633464394933, + "grad_norm": 0.23903657495975494, + "learning_rate": 0.0006, + "loss": 4.0570526123046875, + "step": 1220 + }, + { + "epoch": 16.964613368283093, + "grad_norm": 0.2556349039077759, + "learning_rate": 0.0006, + "loss": 4.0448808670043945, + "step": 1221 + }, + { + "epoch": 16.978593272171253, + "grad_norm": 0.28445592522621155, + "learning_rate": 0.0006, + "loss": 4.052034378051758, + "step": 1222 + }, + { + "epoch": 16.992573176059416, + "grad_norm": 0.273973673582077, + "learning_rate": 0.0006, + "loss": 4.02907657623291, + "step": 1223 + }, + { + "epoch": 17.0, + "grad_norm": 0.26125091314315796, + "learning_rate": 0.0006, + "loss": 4.10643196105957, + "step": 1224 + }, + { + "epoch": 17.0, + "eval_loss": 4.2585954666137695, + "eval_runtime": 44.8583, + "eval_samples_per_second": 54.438, + "eval_steps_per_second": 3.411, + "step": 1224 + }, + { + "epoch": 17.01397990388816, + "grad_norm": 0.2786196768283844, + "learning_rate": 0.0006, + "loss": 4.044719219207764, + "step": 1225 + }, + { + "epoch": 17.027959807776323, + "grad_norm": 0.2969571650028229, + "learning_rate": 0.0006, + "loss": 4.022037506103516, + "step": 1226 + }, + { + "epoch": 17.041939711664483, + "grad_norm": 0.32196253538131714, + "learning_rate": 0.0006, + "loss": 4.03636360168457, + "step": 1227 + }, + { + "epoch": 17.055919615552643, + "grad_norm": 0.28617000579833984, + "learning_rate": 0.0006, + "loss": 4.012125492095947, + "step": 1228 + }, + { + "epoch": 17.069899519440803, + "grad_norm": 0.26539644598960876, + "learning_rate": 0.0006, + "loss": 4.020190715789795, + "step": 1229 + }, + { + "epoch": 17.083879423328966, + "grad_norm": 0.24315394461154938, + "learning_rate": 0.0006, + "loss": 4.0553812980651855, + "step": 1230 + }, + { + "epoch": 17.097859327217126, + "grad_norm": 0.23798158764839172, + "learning_rate": 0.0006, + "loss": 4.004805088043213, + "step": 1231 + }, + { + "epoch": 17.111839231105286, + "grad_norm": 0.25723618268966675, + "learning_rate": 0.0006, + "loss": 4.00108003616333, + "step": 1232 + }, + { + "epoch": 17.125819134993446, + "grad_norm": 0.2669757604598999, + "learning_rate": 0.0006, + "loss": 4.00828742980957, + "step": 1233 + }, + { + "epoch": 17.13979903888161, + "grad_norm": 0.26421651244163513, + "learning_rate": 0.0006, + "loss": 3.995478391647339, + "step": 1234 + }, + { + "epoch": 17.15377894276977, + "grad_norm": 0.24745801091194153, + "learning_rate": 0.0006, + "loss": 4.0171027183532715, + "step": 1235 + }, + { + "epoch": 17.16775884665793, + "grad_norm": 0.27028775215148926, + "learning_rate": 0.0006, + "loss": 4.017108917236328, + "step": 1236 + }, + { + "epoch": 17.18173875054609, + "grad_norm": 0.27247968316078186, + "learning_rate": 0.0006, + "loss": 4.032601356506348, + "step": 1237 + }, + { + "epoch": 17.195718654434252, + "grad_norm": 0.24620869755744934, + "learning_rate": 0.0006, + "loss": 4.022171974182129, + "step": 1238 + }, + { + "epoch": 17.209698558322412, + "grad_norm": 0.23407386243343353, + "learning_rate": 0.0006, + "loss": 3.9946959018707275, + "step": 1239 + }, + { + "epoch": 17.22367846221057, + "grad_norm": 0.22559069097042084, + "learning_rate": 0.0006, + "loss": 4.013072490692139, + "step": 1240 + }, + { + "epoch": 17.23765836609873, + "grad_norm": 0.226687952876091, + "learning_rate": 0.0006, + "loss": 4.023543834686279, + "step": 1241 + }, + { + "epoch": 17.251638269986895, + "grad_norm": 0.24436360597610474, + "learning_rate": 0.0006, + "loss": 4.044206619262695, + "step": 1242 + }, + { + "epoch": 17.265618173875055, + "grad_norm": 0.25527626276016235, + "learning_rate": 0.0006, + "loss": 4.016424179077148, + "step": 1243 + }, + { + "epoch": 17.279598077763215, + "grad_norm": 0.26126864552497864, + "learning_rate": 0.0006, + "loss": 4.024394512176514, + "step": 1244 + }, + { + "epoch": 17.293577981651374, + "grad_norm": 0.25746744871139526, + "learning_rate": 0.0006, + "loss": 4.046844482421875, + "step": 1245 + }, + { + "epoch": 17.307557885539538, + "grad_norm": 0.26579564809799194, + "learning_rate": 0.0006, + "loss": 4.021010398864746, + "step": 1246 + }, + { + "epoch": 17.321537789427698, + "grad_norm": 0.2713971734046936, + "learning_rate": 0.0006, + "loss": 4.022331237792969, + "step": 1247 + }, + { + "epoch": 17.335517693315857, + "grad_norm": 0.24217180907726288, + "learning_rate": 0.0006, + "loss": 4.006353855133057, + "step": 1248 + }, + { + "epoch": 17.34949759720402, + "grad_norm": 0.26899752020835876, + "learning_rate": 0.0006, + "loss": 4.068023681640625, + "step": 1249 + }, + { + "epoch": 17.36347750109218, + "grad_norm": 0.26745253801345825, + "learning_rate": 0.0006, + "loss": 4.031207084655762, + "step": 1250 + }, + { + "epoch": 17.37745740498034, + "grad_norm": 0.21533764898777008, + "learning_rate": 0.0006, + "loss": 4.042410850524902, + "step": 1251 + }, + { + "epoch": 17.3914373088685, + "grad_norm": 0.21958027780056, + "learning_rate": 0.0006, + "loss": 4.02597713470459, + "step": 1252 + }, + { + "epoch": 17.405417212756664, + "grad_norm": 0.263068825006485, + "learning_rate": 0.0006, + "loss": 4.0035905838012695, + "step": 1253 + }, + { + "epoch": 17.419397116644824, + "grad_norm": 0.24044716358184814, + "learning_rate": 0.0006, + "loss": 4.005317687988281, + "step": 1254 + }, + { + "epoch": 17.433377020532983, + "grad_norm": 0.19142559170722961, + "learning_rate": 0.0006, + "loss": 3.9976844787597656, + "step": 1255 + }, + { + "epoch": 17.447356924421143, + "grad_norm": 0.18650250136852264, + "learning_rate": 0.0006, + "loss": 4.031353950500488, + "step": 1256 + }, + { + "epoch": 17.461336828309307, + "grad_norm": 0.1984022557735443, + "learning_rate": 0.0006, + "loss": 4.002097129821777, + "step": 1257 + }, + { + "epoch": 17.475316732197467, + "grad_norm": 0.20087844133377075, + "learning_rate": 0.0006, + "loss": 4.031151294708252, + "step": 1258 + }, + { + "epoch": 17.489296636085626, + "grad_norm": 0.20881228148937225, + "learning_rate": 0.0006, + "loss": 4.034793853759766, + "step": 1259 + }, + { + "epoch": 17.503276539973786, + "grad_norm": 0.23958556354045868, + "learning_rate": 0.0006, + "loss": 4.025238990783691, + "step": 1260 + }, + { + "epoch": 17.51725644386195, + "grad_norm": 0.23927845060825348, + "learning_rate": 0.0006, + "loss": 3.999828338623047, + "step": 1261 + }, + { + "epoch": 17.53123634775011, + "grad_norm": 0.20342715084552765, + "learning_rate": 0.0006, + "loss": 4.054262161254883, + "step": 1262 + }, + { + "epoch": 17.54521625163827, + "grad_norm": 0.21370555460453033, + "learning_rate": 0.0006, + "loss": 4.011582374572754, + "step": 1263 + }, + { + "epoch": 17.55919615552643, + "grad_norm": 0.23681946098804474, + "learning_rate": 0.0006, + "loss": 4.029694080352783, + "step": 1264 + }, + { + "epoch": 17.573176059414592, + "grad_norm": 0.24190311133861542, + "learning_rate": 0.0006, + "loss": 4.018783092498779, + "step": 1265 + }, + { + "epoch": 17.587155963302752, + "grad_norm": 0.23215509951114655, + "learning_rate": 0.0006, + "loss": 4.009703159332275, + "step": 1266 + }, + { + "epoch": 17.601135867190912, + "grad_norm": 0.21122977137565613, + "learning_rate": 0.0006, + "loss": 4.0345659255981445, + "step": 1267 + }, + { + "epoch": 17.615115771079076, + "grad_norm": 0.2075948715209961, + "learning_rate": 0.0006, + "loss": 4.070703506469727, + "step": 1268 + }, + { + "epoch": 17.629095674967235, + "grad_norm": 0.21667909622192383, + "learning_rate": 0.0006, + "loss": 4.020771503448486, + "step": 1269 + }, + { + "epoch": 17.643075578855395, + "grad_norm": 0.20960724353790283, + "learning_rate": 0.0006, + "loss": 4.026404857635498, + "step": 1270 + }, + { + "epoch": 17.657055482743555, + "grad_norm": 0.22575686872005463, + "learning_rate": 0.0006, + "loss": 4.01981258392334, + "step": 1271 + }, + { + "epoch": 17.67103538663172, + "grad_norm": 0.2565988302230835, + "learning_rate": 0.0006, + "loss": 4.015827178955078, + "step": 1272 + }, + { + "epoch": 17.68501529051988, + "grad_norm": 0.24831551313400269, + "learning_rate": 0.0006, + "loss": 4.012457847595215, + "step": 1273 + }, + { + "epoch": 17.698995194408038, + "grad_norm": 0.22595494985580444, + "learning_rate": 0.0006, + "loss": 4.031386375427246, + "step": 1274 + }, + { + "epoch": 17.712975098296198, + "grad_norm": 0.20687322318553925, + "learning_rate": 0.0006, + "loss": 4.014216423034668, + "step": 1275 + }, + { + "epoch": 17.72695500218436, + "grad_norm": 0.21916012465953827, + "learning_rate": 0.0006, + "loss": 4.037643909454346, + "step": 1276 + }, + { + "epoch": 17.74093490607252, + "grad_norm": 0.2243107706308365, + "learning_rate": 0.0006, + "loss": 4.033044815063477, + "step": 1277 + }, + { + "epoch": 17.75491480996068, + "grad_norm": 0.2402164787054062, + "learning_rate": 0.0006, + "loss": 4.026636123657227, + "step": 1278 + }, + { + "epoch": 17.76889471384884, + "grad_norm": 0.27957046031951904, + "learning_rate": 0.0006, + "loss": 4.0270867347717285, + "step": 1279 + }, + { + "epoch": 17.782874617737004, + "grad_norm": 0.27447596192359924, + "learning_rate": 0.0006, + "loss": 4.0120134353637695, + "step": 1280 + }, + { + "epoch": 17.796854521625164, + "grad_norm": 0.26926323771476746, + "learning_rate": 0.0006, + "loss": 4.027970314025879, + "step": 1281 + }, + { + "epoch": 17.810834425513324, + "grad_norm": 0.2535291314125061, + "learning_rate": 0.0006, + "loss": 4.002565383911133, + "step": 1282 + }, + { + "epoch": 17.824814329401484, + "grad_norm": 0.22639447450637817, + "learning_rate": 0.0006, + "loss": 4.032750606536865, + "step": 1283 + }, + { + "epoch": 17.838794233289647, + "grad_norm": 0.23384462296962738, + "learning_rate": 0.0006, + "loss": 4.03568172454834, + "step": 1284 + }, + { + "epoch": 17.852774137177807, + "grad_norm": 0.22971470654010773, + "learning_rate": 0.0006, + "loss": 4.031299591064453, + "step": 1285 + }, + { + "epoch": 17.866754041065967, + "grad_norm": 0.24540141224861145, + "learning_rate": 0.0006, + "loss": 4.0142669677734375, + "step": 1286 + }, + { + "epoch": 17.88073394495413, + "grad_norm": 0.2304888367652893, + "learning_rate": 0.0006, + "loss": 3.9964895248413086, + "step": 1287 + }, + { + "epoch": 17.89471384884229, + "grad_norm": 0.22082284092903137, + "learning_rate": 0.0006, + "loss": 4.024693489074707, + "step": 1288 + }, + { + "epoch": 17.90869375273045, + "grad_norm": 0.23677092790603638, + "learning_rate": 0.0006, + "loss": 4.002082347869873, + "step": 1289 + }, + { + "epoch": 17.92267365661861, + "grad_norm": 0.23122332990169525, + "learning_rate": 0.0006, + "loss": 4.025351524353027, + "step": 1290 + }, + { + "epoch": 17.936653560506773, + "grad_norm": 0.2548119127750397, + "learning_rate": 0.0006, + "loss": 3.9955825805664062, + "step": 1291 + }, + { + "epoch": 17.950633464394933, + "grad_norm": 0.26950931549072266, + "learning_rate": 0.0006, + "loss": 4.026151180267334, + "step": 1292 + }, + { + "epoch": 17.964613368283093, + "grad_norm": 0.3023233711719513, + "learning_rate": 0.0006, + "loss": 4.006035804748535, + "step": 1293 + }, + { + "epoch": 17.978593272171253, + "grad_norm": 0.3190958499908447, + "learning_rate": 0.0006, + "loss": 4.023565292358398, + "step": 1294 + }, + { + "epoch": 17.992573176059416, + "grad_norm": 0.28878068923950195, + "learning_rate": 0.0006, + "loss": 4.020973205566406, + "step": 1295 + }, + { + "epoch": 18.0, + "grad_norm": 0.27312418818473816, + "learning_rate": 0.0006, + "loss": 3.99906587600708, + "step": 1296 + }, + { + "epoch": 18.0, + "eval_loss": 4.224447250366211, + "eval_runtime": 52.5728, + "eval_samples_per_second": 46.45, + "eval_steps_per_second": 2.91, + "step": 1296 + }, + { + "epoch": 18.01397990388816, + "grad_norm": 0.2567712664604187, + "learning_rate": 0.0006, + "loss": 3.9755055904388428, + "step": 1297 + }, + { + "epoch": 18.027959807776323, + "grad_norm": 0.25048133730888367, + "learning_rate": 0.0006, + "loss": 4.009254455566406, + "step": 1298 + }, + { + "epoch": 18.041939711664483, + "grad_norm": 0.2556909918785095, + "learning_rate": 0.0006, + "loss": 4.001235008239746, + "step": 1299 + }, + { + "epoch": 18.055919615552643, + "grad_norm": 0.2501400113105774, + "learning_rate": 0.0006, + "loss": 3.980726480484009, + "step": 1300 + }, + { + "epoch": 18.069899519440803, + "grad_norm": 0.23977792263031006, + "learning_rate": 0.0006, + "loss": 3.964195728302002, + "step": 1301 + }, + { + "epoch": 18.083879423328966, + "grad_norm": 0.25650718808174133, + "learning_rate": 0.0006, + "loss": 4.015914440155029, + "step": 1302 + }, + { + "epoch": 18.097859327217126, + "grad_norm": 0.234053835272789, + "learning_rate": 0.0006, + "loss": 4.0159149169921875, + "step": 1303 + }, + { + "epoch": 18.111839231105286, + "grad_norm": 0.21967713534832, + "learning_rate": 0.0006, + "loss": 4.0055694580078125, + "step": 1304 + }, + { + "epoch": 18.125819134993446, + "grad_norm": 0.21790878474712372, + "learning_rate": 0.0006, + "loss": 3.986253261566162, + "step": 1305 + }, + { + "epoch": 18.13979903888161, + "grad_norm": 0.22955302894115448, + "learning_rate": 0.0006, + "loss": 3.959421157836914, + "step": 1306 + }, + { + "epoch": 18.15377894276977, + "grad_norm": 0.2559174597263336, + "learning_rate": 0.0006, + "loss": 4.0069756507873535, + "step": 1307 + }, + { + "epoch": 18.16775884665793, + "grad_norm": 0.26132866740226746, + "learning_rate": 0.0006, + "loss": 3.9874095916748047, + "step": 1308 + }, + { + "epoch": 18.18173875054609, + "grad_norm": 0.23258940875530243, + "learning_rate": 0.0006, + "loss": 3.9762492179870605, + "step": 1309 + }, + { + "epoch": 18.195718654434252, + "grad_norm": 0.22347190976142883, + "learning_rate": 0.0006, + "loss": 3.9923410415649414, + "step": 1310 + }, + { + "epoch": 18.209698558322412, + "grad_norm": 0.23095804452896118, + "learning_rate": 0.0006, + "loss": 4.019245624542236, + "step": 1311 + }, + { + "epoch": 18.22367846221057, + "grad_norm": 0.24817052483558655, + "learning_rate": 0.0006, + "loss": 3.9697511196136475, + "step": 1312 + }, + { + "epoch": 18.23765836609873, + "grad_norm": 0.2566024959087372, + "learning_rate": 0.0006, + "loss": 3.978804111480713, + "step": 1313 + }, + { + "epoch": 18.251638269986895, + "grad_norm": 0.2527952790260315, + "learning_rate": 0.0006, + "loss": 3.972018241882324, + "step": 1314 + }, + { + "epoch": 18.265618173875055, + "grad_norm": 0.2508150637149811, + "learning_rate": 0.0006, + "loss": 3.9971275329589844, + "step": 1315 + }, + { + "epoch": 18.279598077763215, + "grad_norm": 0.23242022097110748, + "learning_rate": 0.0006, + "loss": 3.9712045192718506, + "step": 1316 + }, + { + "epoch": 18.293577981651374, + "grad_norm": 0.23474404215812683, + "learning_rate": 0.0006, + "loss": 3.9926767349243164, + "step": 1317 + }, + { + "epoch": 18.307557885539538, + "grad_norm": 0.2417769432067871, + "learning_rate": 0.0006, + "loss": 3.9920949935913086, + "step": 1318 + }, + { + "epoch": 18.321537789427698, + "grad_norm": 0.23839452862739563, + "learning_rate": 0.0006, + "loss": 4.016645431518555, + "step": 1319 + }, + { + "epoch": 18.335517693315857, + "grad_norm": 0.2512452304363251, + "learning_rate": 0.0006, + "loss": 3.97586727142334, + "step": 1320 + }, + { + "epoch": 18.34949759720402, + "grad_norm": 0.27503693103790283, + "learning_rate": 0.0006, + "loss": 4.000148773193359, + "step": 1321 + }, + { + "epoch": 18.36347750109218, + "grad_norm": 0.27830836176872253, + "learning_rate": 0.0006, + "loss": 3.9972195625305176, + "step": 1322 + }, + { + "epoch": 18.37745740498034, + "grad_norm": 0.2571812570095062, + "learning_rate": 0.0006, + "loss": 3.9900810718536377, + "step": 1323 + }, + { + "epoch": 18.3914373088685, + "grad_norm": 0.2310052365064621, + "learning_rate": 0.0006, + "loss": 4.003000259399414, + "step": 1324 + }, + { + "epoch": 18.405417212756664, + "grad_norm": 0.19615735113620758, + "learning_rate": 0.0006, + "loss": 3.9536571502685547, + "step": 1325 + }, + { + "epoch": 18.419397116644824, + "grad_norm": 0.21323896944522858, + "learning_rate": 0.0006, + "loss": 3.977508068084717, + "step": 1326 + }, + { + "epoch": 18.433377020532983, + "grad_norm": 0.21404202282428741, + "learning_rate": 0.0006, + "loss": 4.015361785888672, + "step": 1327 + }, + { + "epoch": 18.447356924421143, + "grad_norm": 0.1991959661245346, + "learning_rate": 0.0006, + "loss": 4.000286102294922, + "step": 1328 + }, + { + "epoch": 18.461336828309307, + "grad_norm": 0.2073599398136139, + "learning_rate": 0.0006, + "loss": 3.973065137863159, + "step": 1329 + }, + { + "epoch": 18.475316732197467, + "grad_norm": 0.2096073031425476, + "learning_rate": 0.0006, + "loss": 3.987032890319824, + "step": 1330 + }, + { + "epoch": 18.489296636085626, + "grad_norm": 0.2380610853433609, + "learning_rate": 0.0006, + "loss": 4.035274505615234, + "step": 1331 + }, + { + "epoch": 18.503276539973786, + "grad_norm": 0.23570716381072998, + "learning_rate": 0.0006, + "loss": 4.010516166687012, + "step": 1332 + }, + { + "epoch": 18.51725644386195, + "grad_norm": 0.24805466830730438, + "learning_rate": 0.0006, + "loss": 3.9750983715057373, + "step": 1333 + }, + { + "epoch": 18.53123634775011, + "grad_norm": 0.25173231959342957, + "learning_rate": 0.0006, + "loss": 3.9742345809936523, + "step": 1334 + }, + { + "epoch": 18.54521625163827, + "grad_norm": 0.24590367078781128, + "learning_rate": 0.0006, + "loss": 4.0037312507629395, + "step": 1335 + }, + { + "epoch": 18.55919615552643, + "grad_norm": 0.24379394948482513, + "learning_rate": 0.0006, + "loss": 3.993858814239502, + "step": 1336 + }, + { + "epoch": 18.573176059414592, + "grad_norm": 0.21708883345127106, + "learning_rate": 0.0006, + "loss": 3.965670585632324, + "step": 1337 + }, + { + "epoch": 18.587155963302752, + "grad_norm": 0.21024051308631897, + "learning_rate": 0.0006, + "loss": 3.987551689147949, + "step": 1338 + }, + { + "epoch": 18.601135867190912, + "grad_norm": 0.23376783728599548, + "learning_rate": 0.0006, + "loss": 4.002841472625732, + "step": 1339 + }, + { + "epoch": 18.615115771079076, + "grad_norm": 0.25350701808929443, + "learning_rate": 0.0006, + "loss": 3.9881370067596436, + "step": 1340 + }, + { + "epoch": 18.629095674967235, + "grad_norm": 0.2542140483856201, + "learning_rate": 0.0006, + "loss": 4.003695964813232, + "step": 1341 + }, + { + "epoch": 18.643075578855395, + "grad_norm": 0.22932685911655426, + "learning_rate": 0.0006, + "loss": 4.0146002769470215, + "step": 1342 + }, + { + "epoch": 18.657055482743555, + "grad_norm": 0.21099458634853363, + "learning_rate": 0.0006, + "loss": 3.970472812652588, + "step": 1343 + }, + { + "epoch": 18.67103538663172, + "grad_norm": 0.2234615832567215, + "learning_rate": 0.0006, + "loss": 3.9821488857269287, + "step": 1344 + }, + { + "epoch": 18.68501529051988, + "grad_norm": 0.230327770113945, + "learning_rate": 0.0006, + "loss": 3.996274948120117, + "step": 1345 + }, + { + "epoch": 18.698995194408038, + "grad_norm": 0.23596233129501343, + "learning_rate": 0.0006, + "loss": 3.9747462272644043, + "step": 1346 + }, + { + "epoch": 18.712975098296198, + "grad_norm": 0.24173159897327423, + "learning_rate": 0.0006, + "loss": 4.011804103851318, + "step": 1347 + }, + { + "epoch": 18.72695500218436, + "grad_norm": 0.24087604880332947, + "learning_rate": 0.0006, + "loss": 4.008726119995117, + "step": 1348 + }, + { + "epoch": 18.74093490607252, + "grad_norm": 0.2457292526960373, + "learning_rate": 0.0006, + "loss": 3.990793228149414, + "step": 1349 + }, + { + "epoch": 18.75491480996068, + "grad_norm": 0.22946089506149292, + "learning_rate": 0.0006, + "loss": 3.980494260787964, + "step": 1350 + }, + { + "epoch": 18.76889471384884, + "grad_norm": 0.22986692190170288, + "learning_rate": 0.0006, + "loss": 3.97006893157959, + "step": 1351 + }, + { + "epoch": 18.782874617737004, + "grad_norm": 0.23358555138111115, + "learning_rate": 0.0006, + "loss": 4.008172035217285, + "step": 1352 + }, + { + "epoch": 18.796854521625164, + "grad_norm": 0.20183615386486053, + "learning_rate": 0.0006, + "loss": 3.9720888137817383, + "step": 1353 + }, + { + "epoch": 18.810834425513324, + "grad_norm": 0.19975653290748596, + "learning_rate": 0.0006, + "loss": 3.9783310890197754, + "step": 1354 + }, + { + "epoch": 18.824814329401484, + "grad_norm": 0.18911021947860718, + "learning_rate": 0.0006, + "loss": 3.985982894897461, + "step": 1355 + }, + { + "epoch": 18.838794233289647, + "grad_norm": 0.15984168648719788, + "learning_rate": 0.0006, + "loss": 3.9740548133850098, + "step": 1356 + }, + { + "epoch": 18.852774137177807, + "grad_norm": 0.1755436211824417, + "learning_rate": 0.0006, + "loss": 4.013090133666992, + "step": 1357 + }, + { + "epoch": 18.866754041065967, + "grad_norm": 0.1798417866230011, + "learning_rate": 0.0006, + "loss": 3.997880697250366, + "step": 1358 + }, + { + "epoch": 18.88073394495413, + "grad_norm": 0.20206265151500702, + "learning_rate": 0.0006, + "loss": 3.9892373085021973, + "step": 1359 + }, + { + "epoch": 18.89471384884229, + "grad_norm": 0.23685456812381744, + "learning_rate": 0.0006, + "loss": 3.9909186363220215, + "step": 1360 + }, + { + "epoch": 18.90869375273045, + "grad_norm": 0.26053836941719055, + "learning_rate": 0.0006, + "loss": 4.00327205657959, + "step": 1361 + }, + { + "epoch": 18.92267365661861, + "grad_norm": 0.26215845346450806, + "learning_rate": 0.0006, + "loss": 3.9714717864990234, + "step": 1362 + }, + { + "epoch": 18.936653560506773, + "grad_norm": 0.2433871030807495, + "learning_rate": 0.0006, + "loss": 3.949416160583496, + "step": 1363 + }, + { + "epoch": 18.950633464394933, + "grad_norm": 0.23331883549690247, + "learning_rate": 0.0006, + "loss": 3.980501413345337, + "step": 1364 + }, + { + "epoch": 18.964613368283093, + "grad_norm": 0.2346954047679901, + "learning_rate": 0.0006, + "loss": 3.9974493980407715, + "step": 1365 + }, + { + "epoch": 18.978593272171253, + "grad_norm": 0.25101345777511597, + "learning_rate": 0.0006, + "loss": 3.9800148010253906, + "step": 1366 + }, + { + "epoch": 18.992573176059416, + "grad_norm": 0.26811933517456055, + "learning_rate": 0.0006, + "loss": 4.0065741539001465, + "step": 1367 + }, + { + "epoch": 19.0, + "grad_norm": 0.2731736898422241, + "learning_rate": 0.0006, + "loss": 4.014575481414795, + "step": 1368 + }, + { + "epoch": 19.0, + "eval_loss": 4.200716972351074, + "eval_runtime": 44.6962, + "eval_samples_per_second": 54.636, + "eval_steps_per_second": 3.423, + "step": 1368 + }, + { + "epoch": 19.01397990388816, + "grad_norm": 0.2517746686935425, + "learning_rate": 0.0006, + "loss": 3.9486539363861084, + "step": 1369 + }, + { + "epoch": 19.027959807776323, + "grad_norm": 0.2482699453830719, + "learning_rate": 0.0006, + "loss": 3.95015287399292, + "step": 1370 + }, + { + "epoch": 19.041939711664483, + "grad_norm": 0.21693618595600128, + "learning_rate": 0.0006, + "loss": 3.970022201538086, + "step": 1371 + }, + { + "epoch": 19.055919615552643, + "grad_norm": 0.2035159319639206, + "learning_rate": 0.0006, + "loss": 3.941457748413086, + "step": 1372 + }, + { + "epoch": 19.069899519440803, + "grad_norm": 0.2201429009437561, + "learning_rate": 0.0006, + "loss": 3.946794033050537, + "step": 1373 + }, + { + "epoch": 19.083879423328966, + "grad_norm": 0.22910255193710327, + "learning_rate": 0.0006, + "loss": 3.94606876373291, + "step": 1374 + }, + { + "epoch": 19.097859327217126, + "grad_norm": 0.22378197312355042, + "learning_rate": 0.0006, + "loss": 3.957899570465088, + "step": 1375 + }, + { + "epoch": 19.111839231105286, + "grad_norm": 0.21728114783763885, + "learning_rate": 0.0006, + "loss": 3.9565982818603516, + "step": 1376 + }, + { + "epoch": 19.125819134993446, + "grad_norm": 0.21887634694576263, + "learning_rate": 0.0006, + "loss": 3.9649534225463867, + "step": 1377 + }, + { + "epoch": 19.13979903888161, + "grad_norm": 0.21892991662025452, + "learning_rate": 0.0006, + "loss": 3.971388101577759, + "step": 1378 + }, + { + "epoch": 19.15377894276977, + "grad_norm": 0.24582402408123016, + "learning_rate": 0.0006, + "loss": 3.9370944499969482, + "step": 1379 + }, + { + "epoch": 19.16775884665793, + "grad_norm": 0.27547118067741394, + "learning_rate": 0.0006, + "loss": 3.939406156539917, + "step": 1380 + }, + { + "epoch": 19.18173875054609, + "grad_norm": 0.3131563365459442, + "learning_rate": 0.0006, + "loss": 3.942620277404785, + "step": 1381 + }, + { + "epoch": 19.195718654434252, + "grad_norm": 0.3211703598499298, + "learning_rate": 0.0006, + "loss": 3.9388349056243896, + "step": 1382 + }, + { + "epoch": 19.209698558322412, + "grad_norm": 0.2791919410228729, + "learning_rate": 0.0006, + "loss": 3.9827399253845215, + "step": 1383 + }, + { + "epoch": 19.22367846221057, + "grad_norm": 0.2872016727924347, + "learning_rate": 0.0006, + "loss": 3.976715087890625, + "step": 1384 + }, + { + "epoch": 19.23765836609873, + "grad_norm": 0.2790389060974121, + "learning_rate": 0.0006, + "loss": 3.952850818634033, + "step": 1385 + }, + { + "epoch": 19.251638269986895, + "grad_norm": 0.31903740763664246, + "learning_rate": 0.0006, + "loss": 3.964506149291992, + "step": 1386 + }, + { + "epoch": 19.265618173875055, + "grad_norm": 0.31013646721839905, + "learning_rate": 0.0006, + "loss": 3.967219352722168, + "step": 1387 + }, + { + "epoch": 19.279598077763215, + "grad_norm": 0.2574339509010315, + "learning_rate": 0.0006, + "loss": 3.979168176651001, + "step": 1388 + }, + { + "epoch": 19.293577981651374, + "grad_norm": 0.24621108174324036, + "learning_rate": 0.0006, + "loss": 3.981734275817871, + "step": 1389 + }, + { + "epoch": 19.307557885539538, + "grad_norm": 0.25113818049430847, + "learning_rate": 0.0006, + "loss": 3.9787755012512207, + "step": 1390 + }, + { + "epoch": 19.321537789427698, + "grad_norm": 0.259971022605896, + "learning_rate": 0.0006, + "loss": 3.9648823738098145, + "step": 1391 + }, + { + "epoch": 19.335517693315857, + "grad_norm": 0.22580404579639435, + "learning_rate": 0.0006, + "loss": 3.9658002853393555, + "step": 1392 + }, + { + "epoch": 19.34949759720402, + "grad_norm": 0.2133680284023285, + "learning_rate": 0.0006, + "loss": 3.9615914821624756, + "step": 1393 + }, + { + "epoch": 19.36347750109218, + "grad_norm": 0.2387680858373642, + "learning_rate": 0.0006, + "loss": 3.993811845779419, + "step": 1394 + }, + { + "epoch": 19.37745740498034, + "grad_norm": 0.26086220145225525, + "learning_rate": 0.0006, + "loss": 3.932701826095581, + "step": 1395 + }, + { + "epoch": 19.3914373088685, + "grad_norm": 0.23255233466625214, + "learning_rate": 0.0006, + "loss": 3.8969321250915527, + "step": 1396 + }, + { + "epoch": 19.405417212756664, + "grad_norm": 0.22894541919231415, + "learning_rate": 0.0006, + "loss": 3.9569311141967773, + "step": 1397 + }, + { + "epoch": 19.419397116644824, + "grad_norm": 0.2254200130701065, + "learning_rate": 0.0006, + "loss": 3.953199863433838, + "step": 1398 + }, + { + "epoch": 19.433377020532983, + "grad_norm": 0.25802481174468994, + "learning_rate": 0.0006, + "loss": 3.9714815616607666, + "step": 1399 + }, + { + "epoch": 19.447356924421143, + "grad_norm": 0.24725162982940674, + "learning_rate": 0.0006, + "loss": 3.957339286804199, + "step": 1400 + }, + { + "epoch": 19.461336828309307, + "grad_norm": 0.2162018120288849, + "learning_rate": 0.0006, + "loss": 3.986801862716675, + "step": 1401 + }, + { + "epoch": 19.475316732197467, + "grad_norm": 0.21530906856060028, + "learning_rate": 0.0006, + "loss": 3.9766759872436523, + "step": 1402 + }, + { + "epoch": 19.489296636085626, + "grad_norm": 0.20260323584079742, + "learning_rate": 0.0006, + "loss": 3.9576425552368164, + "step": 1403 + }, + { + "epoch": 19.503276539973786, + "grad_norm": 0.188974529504776, + "learning_rate": 0.0006, + "loss": 3.9852395057678223, + "step": 1404 + }, + { + "epoch": 19.51725644386195, + "grad_norm": 0.19727374613285065, + "learning_rate": 0.0006, + "loss": 3.972484588623047, + "step": 1405 + }, + { + "epoch": 19.53123634775011, + "grad_norm": 0.23708008229732513, + "learning_rate": 0.0006, + "loss": 3.992471694946289, + "step": 1406 + }, + { + "epoch": 19.54521625163827, + "grad_norm": 0.23783449828624725, + "learning_rate": 0.0006, + "loss": 3.9788265228271484, + "step": 1407 + }, + { + "epoch": 19.55919615552643, + "grad_norm": 0.24744364619255066, + "learning_rate": 0.0006, + "loss": 3.9559011459350586, + "step": 1408 + }, + { + "epoch": 19.573176059414592, + "grad_norm": 0.24828094244003296, + "learning_rate": 0.0006, + "loss": 3.9663949012756348, + "step": 1409 + }, + { + "epoch": 19.587155963302752, + "grad_norm": 0.2681315541267395, + "learning_rate": 0.0006, + "loss": 3.9581191539764404, + "step": 1410 + }, + { + "epoch": 19.601135867190912, + "grad_norm": 0.2691532373428345, + "learning_rate": 0.0006, + "loss": 3.9832754135131836, + "step": 1411 + }, + { + "epoch": 19.615115771079076, + "grad_norm": 0.2900252640247345, + "learning_rate": 0.0006, + "loss": 3.984365940093994, + "step": 1412 + }, + { + "epoch": 19.629095674967235, + "grad_norm": 0.3194943070411682, + "learning_rate": 0.0006, + "loss": 3.9856505393981934, + "step": 1413 + }, + { + "epoch": 19.643075578855395, + "grad_norm": 0.3029029071331024, + "learning_rate": 0.0006, + "loss": 3.968992233276367, + "step": 1414 + }, + { + "epoch": 19.657055482743555, + "grad_norm": 0.2658176124095917, + "learning_rate": 0.0006, + "loss": 3.995187282562256, + "step": 1415 + }, + { + "epoch": 19.67103538663172, + "grad_norm": 0.26807504892349243, + "learning_rate": 0.0006, + "loss": 3.9756274223327637, + "step": 1416 + }, + { + "epoch": 19.68501529051988, + "grad_norm": 0.27718642354011536, + "learning_rate": 0.0006, + "loss": 3.9510018825531006, + "step": 1417 + }, + { + "epoch": 19.698995194408038, + "grad_norm": 0.26322051882743835, + "learning_rate": 0.0006, + "loss": 3.965155601501465, + "step": 1418 + }, + { + "epoch": 19.712975098296198, + "grad_norm": 0.2566570043563843, + "learning_rate": 0.0006, + "loss": 3.984218120574951, + "step": 1419 + }, + { + "epoch": 19.72695500218436, + "grad_norm": 0.2218743860721588, + "learning_rate": 0.0006, + "loss": 3.9338784217834473, + "step": 1420 + }, + { + "epoch": 19.74093490607252, + "grad_norm": 0.22894173860549927, + "learning_rate": 0.0006, + "loss": 3.9869046211242676, + "step": 1421 + }, + { + "epoch": 19.75491480996068, + "grad_norm": 0.26837027072906494, + "learning_rate": 0.0006, + "loss": 3.96799898147583, + "step": 1422 + }, + { + "epoch": 19.76889471384884, + "grad_norm": 0.2767876982688904, + "learning_rate": 0.0006, + "loss": 3.9431071281433105, + "step": 1423 + }, + { + "epoch": 19.782874617737004, + "grad_norm": 0.24402284622192383, + "learning_rate": 0.0006, + "loss": 3.9631881713867188, + "step": 1424 + }, + { + "epoch": 19.796854521625164, + "grad_norm": 0.23500724136829376, + "learning_rate": 0.0006, + "loss": 3.9943337440490723, + "step": 1425 + }, + { + "epoch": 19.810834425513324, + "grad_norm": 0.22509142756462097, + "learning_rate": 0.0006, + "loss": 3.961226224899292, + "step": 1426 + }, + { + "epoch": 19.824814329401484, + "grad_norm": 0.23524795472621918, + "learning_rate": 0.0006, + "loss": 3.9552102088928223, + "step": 1427 + }, + { + "epoch": 19.838794233289647, + "grad_norm": 0.22307050228118896, + "learning_rate": 0.0006, + "loss": 3.9623494148254395, + "step": 1428 + }, + { + "epoch": 19.852774137177807, + "grad_norm": 0.21144486963748932, + "learning_rate": 0.0006, + "loss": 3.9620237350463867, + "step": 1429 + }, + { + "epoch": 19.866754041065967, + "grad_norm": 0.20249812304973602, + "learning_rate": 0.0006, + "loss": 3.953911066055298, + "step": 1430 + }, + { + "epoch": 19.88073394495413, + "grad_norm": 0.2350354939699173, + "learning_rate": 0.0006, + "loss": 3.9616730213165283, + "step": 1431 + }, + { + "epoch": 19.89471384884229, + "grad_norm": 0.2566683292388916, + "learning_rate": 0.0006, + "loss": 3.9372501373291016, + "step": 1432 + }, + { + "epoch": 19.90869375273045, + "grad_norm": 0.2520846128463745, + "learning_rate": 0.0006, + "loss": 3.9814648628234863, + "step": 1433 + }, + { + "epoch": 19.92267365661861, + "grad_norm": 0.23989640176296234, + "learning_rate": 0.0006, + "loss": 3.9692864418029785, + "step": 1434 + }, + { + "epoch": 19.936653560506773, + "grad_norm": 0.20650425553321838, + "learning_rate": 0.0006, + "loss": 3.960256814956665, + "step": 1435 + }, + { + "epoch": 19.950633464394933, + "grad_norm": 0.20478376746177673, + "learning_rate": 0.0006, + "loss": 3.9585227966308594, + "step": 1436 + }, + { + "epoch": 19.964613368283093, + "grad_norm": 0.234436497092247, + "learning_rate": 0.0006, + "loss": 3.945631742477417, + "step": 1437 + }, + { + "epoch": 19.978593272171253, + "grad_norm": 0.19969749450683594, + "learning_rate": 0.0006, + "loss": 3.9646050930023193, + "step": 1438 + }, + { + "epoch": 19.992573176059416, + "grad_norm": 0.20638690888881683, + "learning_rate": 0.0006, + "loss": 3.9461846351623535, + "step": 1439 + }, + { + "epoch": 20.0, + "grad_norm": 0.2120274156332016, + "learning_rate": 0.0006, + "loss": 3.965153217315674, + "step": 1440 + }, + { + "epoch": 20.0, + "eval_loss": 4.168524742126465, + "eval_runtime": 44.2796, + "eval_samples_per_second": 55.15, + "eval_steps_per_second": 3.455, + "step": 1440 + }, + { + "epoch": 20.01397990388816, + "grad_norm": 0.19704894721508026, + "learning_rate": 0.0006, + "loss": 3.937016248703003, + "step": 1441 + }, + { + "epoch": 20.027959807776323, + "grad_norm": 0.18682368099689484, + "learning_rate": 0.0006, + "loss": 3.895922899246216, + "step": 1442 + }, + { + "epoch": 20.041939711664483, + "grad_norm": 0.18982571363449097, + "learning_rate": 0.0006, + "loss": 3.929841995239258, + "step": 1443 + }, + { + "epoch": 20.055919615552643, + "grad_norm": 0.20811910927295685, + "learning_rate": 0.0006, + "loss": 3.9498324394226074, + "step": 1444 + }, + { + "epoch": 20.069899519440803, + "grad_norm": 0.2149062603712082, + "learning_rate": 0.0006, + "loss": 3.929853916168213, + "step": 1445 + }, + { + "epoch": 20.083879423328966, + "grad_norm": 0.20016685128211975, + "learning_rate": 0.0006, + "loss": 3.9374136924743652, + "step": 1446 + }, + { + "epoch": 20.097859327217126, + "grad_norm": 0.19969616830348969, + "learning_rate": 0.0006, + "loss": 3.932447910308838, + "step": 1447 + }, + { + "epoch": 20.111839231105286, + "grad_norm": 0.2163356989622116, + "learning_rate": 0.0006, + "loss": 3.9325437545776367, + "step": 1448 + }, + { + "epoch": 20.125819134993446, + "grad_norm": 0.22026969492435455, + "learning_rate": 0.0006, + "loss": 3.9118852615356445, + "step": 1449 + }, + { + "epoch": 20.13979903888161, + "grad_norm": 0.23337116837501526, + "learning_rate": 0.0006, + "loss": 3.9416019916534424, + "step": 1450 + }, + { + "epoch": 20.15377894276977, + "grad_norm": 0.23971447348594666, + "learning_rate": 0.0006, + "loss": 3.9416871070861816, + "step": 1451 + }, + { + "epoch": 20.16775884665793, + "grad_norm": 0.25973960757255554, + "learning_rate": 0.0006, + "loss": 3.93826961517334, + "step": 1452 + }, + { + "epoch": 20.18173875054609, + "grad_norm": 0.2303445190191269, + "learning_rate": 0.0006, + "loss": 3.909383535385132, + "step": 1453 + }, + { + "epoch": 20.195718654434252, + "grad_norm": 0.21090206503868103, + "learning_rate": 0.0006, + "loss": 3.935939311981201, + "step": 1454 + }, + { + "epoch": 20.209698558322412, + "grad_norm": 0.2278691977262497, + "learning_rate": 0.0006, + "loss": 3.9623684883117676, + "step": 1455 + }, + { + "epoch": 20.22367846221057, + "grad_norm": 0.22291512787342072, + "learning_rate": 0.0006, + "loss": 3.9386210441589355, + "step": 1456 + }, + { + "epoch": 20.23765836609873, + "grad_norm": 0.2385793924331665, + "learning_rate": 0.0006, + "loss": 3.927365303039551, + "step": 1457 + }, + { + "epoch": 20.251638269986895, + "grad_norm": 0.23949867486953735, + "learning_rate": 0.0006, + "loss": 3.956698179244995, + "step": 1458 + }, + { + "epoch": 20.265618173875055, + "grad_norm": 0.2232269048690796, + "learning_rate": 0.0006, + "loss": 3.9465065002441406, + "step": 1459 + }, + { + "epoch": 20.279598077763215, + "grad_norm": 0.22286680340766907, + "learning_rate": 0.0006, + "loss": 3.9102284908294678, + "step": 1460 + }, + { + "epoch": 20.293577981651374, + "grad_norm": 0.24039050936698914, + "learning_rate": 0.0006, + "loss": 3.928055763244629, + "step": 1461 + }, + { + "epoch": 20.307557885539538, + "grad_norm": 0.2532738447189331, + "learning_rate": 0.0006, + "loss": 3.931753635406494, + "step": 1462 + }, + { + "epoch": 20.321537789427698, + "grad_norm": 0.2206273376941681, + "learning_rate": 0.0006, + "loss": 3.936119556427002, + "step": 1463 + }, + { + "epoch": 20.335517693315857, + "grad_norm": 0.20918945968151093, + "learning_rate": 0.0006, + "loss": 3.9228529930114746, + "step": 1464 + }, + { + "epoch": 20.34949759720402, + "grad_norm": 0.2324502319097519, + "learning_rate": 0.0006, + "loss": 3.9370768070220947, + "step": 1465 + }, + { + "epoch": 20.36347750109218, + "grad_norm": 0.26811033487319946, + "learning_rate": 0.0006, + "loss": 3.968515396118164, + "step": 1466 + }, + { + "epoch": 20.37745740498034, + "grad_norm": 0.2896045744419098, + "learning_rate": 0.0006, + "loss": 3.945124626159668, + "step": 1467 + }, + { + "epoch": 20.3914373088685, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 3.9399516582489014, + "step": 1468 + }, + { + "epoch": 20.405417212756664, + "grad_norm": 0.3076821565628052, + "learning_rate": 0.0006, + "loss": 3.9545583724975586, + "step": 1469 + }, + { + "epoch": 20.419397116644824, + "grad_norm": 0.3019449710845947, + "learning_rate": 0.0006, + "loss": 3.9502270221710205, + "step": 1470 + }, + { + "epoch": 20.433377020532983, + "grad_norm": 0.31832560896873474, + "learning_rate": 0.0006, + "loss": 3.940439224243164, + "step": 1471 + }, + { + "epoch": 20.447356924421143, + "grad_norm": 0.30303657054901123, + "learning_rate": 0.0006, + "loss": 3.9451770782470703, + "step": 1472 + }, + { + "epoch": 20.461336828309307, + "grad_norm": 0.28122979402542114, + "learning_rate": 0.0006, + "loss": 3.934508800506592, + "step": 1473 + }, + { + "epoch": 20.475316732197467, + "grad_norm": 0.27013441920280457, + "learning_rate": 0.0006, + "loss": 3.924323081970215, + "step": 1474 + }, + { + "epoch": 20.489296636085626, + "grad_norm": 0.29052063822746277, + "learning_rate": 0.0006, + "loss": 3.970916748046875, + "step": 1475 + }, + { + "epoch": 20.503276539973786, + "grad_norm": 0.2871626913547516, + "learning_rate": 0.0006, + "loss": 3.945425033569336, + "step": 1476 + }, + { + "epoch": 20.51725644386195, + "grad_norm": 0.2396184206008911, + "learning_rate": 0.0006, + "loss": 3.964290142059326, + "step": 1477 + }, + { + "epoch": 20.53123634775011, + "grad_norm": 0.21942107379436493, + "learning_rate": 0.0006, + "loss": 3.910101890563965, + "step": 1478 + }, + { + "epoch": 20.54521625163827, + "grad_norm": 0.22193685173988342, + "learning_rate": 0.0006, + "loss": 3.914005756378174, + "step": 1479 + }, + { + "epoch": 20.55919615552643, + "grad_norm": 0.20207515358924866, + "learning_rate": 0.0006, + "loss": 3.9575581550598145, + "step": 1480 + }, + { + "epoch": 20.573176059414592, + "grad_norm": 0.17855247855186462, + "learning_rate": 0.0006, + "loss": 3.941490411758423, + "step": 1481 + }, + { + "epoch": 20.587155963302752, + "grad_norm": 0.21268485486507416, + "learning_rate": 0.0006, + "loss": 3.94045352935791, + "step": 1482 + }, + { + "epoch": 20.601135867190912, + "grad_norm": 0.24890053272247314, + "learning_rate": 0.0006, + "loss": 3.932961940765381, + "step": 1483 + }, + { + "epoch": 20.615115771079076, + "grad_norm": 0.23771314322948456, + "learning_rate": 0.0006, + "loss": 3.9067630767822266, + "step": 1484 + }, + { + "epoch": 20.629095674967235, + "grad_norm": 0.20990237593650818, + "learning_rate": 0.0006, + "loss": 3.9476752281188965, + "step": 1485 + }, + { + "epoch": 20.643075578855395, + "grad_norm": 0.20058798789978027, + "learning_rate": 0.0006, + "loss": 3.9350547790527344, + "step": 1486 + }, + { + "epoch": 20.657055482743555, + "grad_norm": 0.1953001767396927, + "learning_rate": 0.0006, + "loss": 3.9437222480773926, + "step": 1487 + }, + { + "epoch": 20.67103538663172, + "grad_norm": 0.18748535215854645, + "learning_rate": 0.0006, + "loss": 3.9336047172546387, + "step": 1488 + }, + { + "epoch": 20.68501529051988, + "grad_norm": 0.18874801695346832, + "learning_rate": 0.0006, + "loss": 3.9042580127716064, + "step": 1489 + }, + { + "epoch": 20.698995194408038, + "grad_norm": 0.1844169795513153, + "learning_rate": 0.0006, + "loss": 3.9302420616149902, + "step": 1490 + }, + { + "epoch": 20.712975098296198, + "grad_norm": 0.18519413471221924, + "learning_rate": 0.0006, + "loss": 3.9527437686920166, + "step": 1491 + }, + { + "epoch": 20.72695500218436, + "grad_norm": 0.20084598660469055, + "learning_rate": 0.0006, + "loss": 3.9161760807037354, + "step": 1492 + }, + { + "epoch": 20.74093490607252, + "grad_norm": 0.2015734612941742, + "learning_rate": 0.0006, + "loss": 3.9466545581817627, + "step": 1493 + }, + { + "epoch": 20.75491480996068, + "grad_norm": 0.2210122048854828, + "learning_rate": 0.0006, + "loss": 3.8994693756103516, + "step": 1494 + }, + { + "epoch": 20.76889471384884, + "grad_norm": 0.23019762337207794, + "learning_rate": 0.0006, + "loss": 3.93685245513916, + "step": 1495 + }, + { + "epoch": 20.782874617737004, + "grad_norm": 0.21246281266212463, + "learning_rate": 0.0006, + "loss": 3.9499399662017822, + "step": 1496 + }, + { + "epoch": 20.796854521625164, + "grad_norm": 0.21142810583114624, + "learning_rate": 0.0006, + "loss": 3.9317150115966797, + "step": 1497 + }, + { + "epoch": 20.810834425513324, + "grad_norm": 0.20230524241924286, + "learning_rate": 0.0006, + "loss": 3.9389750957489014, + "step": 1498 + }, + { + "epoch": 20.824814329401484, + "grad_norm": 0.21096977591514587, + "learning_rate": 0.0006, + "loss": 3.9325194358825684, + "step": 1499 + }, + { + "epoch": 20.838794233289647, + "grad_norm": 0.2309989333152771, + "learning_rate": 0.0006, + "loss": 3.943641185760498, + "step": 1500 + }, + { + "epoch": 20.852774137177807, + "grad_norm": 0.2016306221485138, + "learning_rate": 0.0006, + "loss": 3.986043930053711, + "step": 1501 + }, + { + "epoch": 20.866754041065967, + "grad_norm": 0.2107970118522644, + "learning_rate": 0.0006, + "loss": 3.9219160079956055, + "step": 1502 + }, + { + "epoch": 20.88073394495413, + "grad_norm": 0.21580125391483307, + "learning_rate": 0.0006, + "loss": 3.942014694213867, + "step": 1503 + }, + { + "epoch": 20.89471384884229, + "grad_norm": 0.21348726749420166, + "learning_rate": 0.0006, + "loss": 3.9389920234680176, + "step": 1504 + }, + { + "epoch": 20.90869375273045, + "grad_norm": 0.23094943165779114, + "learning_rate": 0.0006, + "loss": 3.952993392944336, + "step": 1505 + }, + { + "epoch": 20.92267365661861, + "grad_norm": 0.22431740164756775, + "learning_rate": 0.0006, + "loss": 3.897671937942505, + "step": 1506 + }, + { + "epoch": 20.936653560506773, + "grad_norm": 0.20056353509426117, + "learning_rate": 0.0006, + "loss": 3.9100005626678467, + "step": 1507 + }, + { + "epoch": 20.950633464394933, + "grad_norm": 0.20604434609413147, + "learning_rate": 0.0006, + "loss": 3.9486045837402344, + "step": 1508 + }, + { + "epoch": 20.964613368283093, + "grad_norm": 0.22979380190372467, + "learning_rate": 0.0006, + "loss": 3.977163553237915, + "step": 1509 + }, + { + "epoch": 20.978593272171253, + "grad_norm": 0.2421523779630661, + "learning_rate": 0.0006, + "loss": 3.9216256141662598, + "step": 1510 + }, + { + "epoch": 20.992573176059416, + "grad_norm": 0.25776705145835876, + "learning_rate": 0.0006, + "loss": 3.9221739768981934, + "step": 1511 + }, + { + "epoch": 21.0, + "grad_norm": 0.2750694751739502, + "learning_rate": 0.0006, + "loss": 3.938098907470703, + "step": 1512 + }, + { + "epoch": 21.0, + "eval_loss": 4.159763336181641, + "eval_runtime": 44.8663, + "eval_samples_per_second": 54.428, + "eval_steps_per_second": 3.41, + "step": 1512 + }, + { + "epoch": 21.01397990388816, + "grad_norm": 0.24513043463230133, + "learning_rate": 0.0006, + "loss": 3.8939385414123535, + "step": 1513 + }, + { + "epoch": 21.027959807776323, + "grad_norm": 0.22209352254867554, + "learning_rate": 0.0006, + "loss": 3.9044857025146484, + "step": 1514 + }, + { + "epoch": 21.041939711664483, + "grad_norm": 0.22437648475170135, + "learning_rate": 0.0006, + "loss": 3.9325196743011475, + "step": 1515 + }, + { + "epoch": 21.055919615552643, + "grad_norm": 0.21168062090873718, + "learning_rate": 0.0006, + "loss": 3.882176637649536, + "step": 1516 + }, + { + "epoch": 21.069899519440803, + "grad_norm": 0.22334499657154083, + "learning_rate": 0.0006, + "loss": 3.8978934288024902, + "step": 1517 + }, + { + "epoch": 21.083879423328966, + "grad_norm": 0.21038010716438293, + "learning_rate": 0.0006, + "loss": 3.8807029724121094, + "step": 1518 + }, + { + "epoch": 21.097859327217126, + "grad_norm": 0.2243613600730896, + "learning_rate": 0.0006, + "loss": 3.924865961074829, + "step": 1519 + }, + { + "epoch": 21.111839231105286, + "grad_norm": 0.2535616159439087, + "learning_rate": 0.0006, + "loss": 3.9288227558135986, + "step": 1520 + }, + { + "epoch": 21.125819134993446, + "grad_norm": 0.2782756984233856, + "learning_rate": 0.0006, + "loss": 3.908233642578125, + "step": 1521 + }, + { + "epoch": 21.13979903888161, + "grad_norm": 0.2586214542388916, + "learning_rate": 0.0006, + "loss": 3.9151182174682617, + "step": 1522 + }, + { + "epoch": 21.15377894276977, + "grad_norm": 0.22465091943740845, + "learning_rate": 0.0006, + "loss": 3.9209084510803223, + "step": 1523 + }, + { + "epoch": 21.16775884665793, + "grad_norm": 0.2588018774986267, + "learning_rate": 0.0006, + "loss": 3.9295971393585205, + "step": 1524 + }, + { + "epoch": 21.18173875054609, + "grad_norm": 0.2637675702571869, + "learning_rate": 0.0006, + "loss": 3.9353199005126953, + "step": 1525 + }, + { + "epoch": 21.195718654434252, + "grad_norm": 0.2806383967399597, + "learning_rate": 0.0006, + "loss": 3.922337770462036, + "step": 1526 + }, + { + "epoch": 21.209698558322412, + "grad_norm": 0.27103501558303833, + "learning_rate": 0.0006, + "loss": 3.8811073303222656, + "step": 1527 + }, + { + "epoch": 21.22367846221057, + "grad_norm": 0.27203720808029175, + "learning_rate": 0.0006, + "loss": 3.9036178588867188, + "step": 1528 + }, + { + "epoch": 21.23765836609873, + "grad_norm": 0.2783355712890625, + "learning_rate": 0.0006, + "loss": 3.885456085205078, + "step": 1529 + }, + { + "epoch": 21.251638269986895, + "grad_norm": 0.2884930968284607, + "learning_rate": 0.0006, + "loss": 3.8936941623687744, + "step": 1530 + }, + { + "epoch": 21.265618173875055, + "grad_norm": 0.2829558849334717, + "learning_rate": 0.0006, + "loss": 3.927624225616455, + "step": 1531 + }, + { + "epoch": 21.279598077763215, + "grad_norm": 0.2809497117996216, + "learning_rate": 0.0006, + "loss": 3.8896753787994385, + "step": 1532 + }, + { + "epoch": 21.293577981651374, + "grad_norm": 0.27037671208381653, + "learning_rate": 0.0006, + "loss": 3.91316294670105, + "step": 1533 + }, + { + "epoch": 21.307557885539538, + "grad_norm": 0.310051292181015, + "learning_rate": 0.0006, + "loss": 3.9137332439422607, + "step": 1534 + }, + { + "epoch": 21.321537789427698, + "grad_norm": 0.30489876866340637, + "learning_rate": 0.0006, + "loss": 3.9088284969329834, + "step": 1535 + }, + { + "epoch": 21.335517693315857, + "grad_norm": 0.2607756555080414, + "learning_rate": 0.0006, + "loss": 3.9097847938537598, + "step": 1536 + }, + { + "epoch": 21.34949759720402, + "grad_norm": 0.2460775375366211, + "learning_rate": 0.0006, + "loss": 3.941211700439453, + "step": 1537 + }, + { + "epoch": 21.36347750109218, + "grad_norm": 0.24271734058856964, + "learning_rate": 0.0006, + "loss": 3.9140594005584717, + "step": 1538 + }, + { + "epoch": 21.37745740498034, + "grad_norm": 0.20012645423412323, + "learning_rate": 0.0006, + "loss": 3.888446807861328, + "step": 1539 + }, + { + "epoch": 21.3914373088685, + "grad_norm": 0.2196308672428131, + "learning_rate": 0.0006, + "loss": 3.9153785705566406, + "step": 1540 + }, + { + "epoch": 21.405417212756664, + "grad_norm": 0.22184589505195618, + "learning_rate": 0.0006, + "loss": 3.91996431350708, + "step": 1541 + }, + { + "epoch": 21.419397116644824, + "grad_norm": 0.22947315871715546, + "learning_rate": 0.0006, + "loss": 3.9268412590026855, + "step": 1542 + }, + { + "epoch": 21.433377020532983, + "grad_norm": 0.22275054454803467, + "learning_rate": 0.0006, + "loss": 3.909275531768799, + "step": 1543 + }, + { + "epoch": 21.447356924421143, + "grad_norm": 0.23103971779346466, + "learning_rate": 0.0006, + "loss": 3.925635814666748, + "step": 1544 + }, + { + "epoch": 21.461336828309307, + "grad_norm": 0.23379720747470856, + "learning_rate": 0.0006, + "loss": 3.926647186279297, + "step": 1545 + }, + { + "epoch": 21.475316732197467, + "grad_norm": 0.2244282215833664, + "learning_rate": 0.0006, + "loss": 3.9428000450134277, + "step": 1546 + }, + { + "epoch": 21.489296636085626, + "grad_norm": 0.22773298621177673, + "learning_rate": 0.0006, + "loss": 3.9378256797790527, + "step": 1547 + }, + { + "epoch": 21.503276539973786, + "grad_norm": 0.1918657273054123, + "learning_rate": 0.0006, + "loss": 3.904022216796875, + "step": 1548 + }, + { + "epoch": 21.51725644386195, + "grad_norm": 0.18415570259094238, + "learning_rate": 0.0006, + "loss": 3.9105122089385986, + "step": 1549 + }, + { + "epoch": 21.53123634775011, + "grad_norm": 0.22141380608081818, + "learning_rate": 0.0006, + "loss": 3.9153857231140137, + "step": 1550 + }, + { + "epoch": 21.54521625163827, + "grad_norm": 0.22533352673053741, + "learning_rate": 0.0006, + "loss": 3.9148974418640137, + "step": 1551 + }, + { + "epoch": 21.55919615552643, + "grad_norm": 0.2124762088060379, + "learning_rate": 0.0006, + "loss": 3.926311731338501, + "step": 1552 + }, + { + "epoch": 21.573176059414592, + "grad_norm": 0.239680215716362, + "learning_rate": 0.0006, + "loss": 3.9260334968566895, + "step": 1553 + }, + { + "epoch": 21.587155963302752, + "grad_norm": 0.24158740043640137, + "learning_rate": 0.0006, + "loss": 3.933223247528076, + "step": 1554 + }, + { + "epoch": 21.601135867190912, + "grad_norm": 0.2216576784849167, + "learning_rate": 0.0006, + "loss": 3.9065442085266113, + "step": 1555 + }, + { + "epoch": 21.615115771079076, + "grad_norm": 0.20099912583827972, + "learning_rate": 0.0006, + "loss": 3.923278570175171, + "step": 1556 + }, + { + "epoch": 21.629095674967235, + "grad_norm": 0.2337288111448288, + "learning_rate": 0.0006, + "loss": 3.92032527923584, + "step": 1557 + }, + { + "epoch": 21.643075578855395, + "grad_norm": 0.23574814200401306, + "learning_rate": 0.0006, + "loss": 3.896244525909424, + "step": 1558 + }, + { + "epoch": 21.657055482743555, + "grad_norm": 0.21338573098182678, + "learning_rate": 0.0006, + "loss": 3.930345058441162, + "step": 1559 + }, + { + "epoch": 21.67103538663172, + "grad_norm": 0.2375067174434662, + "learning_rate": 0.0006, + "loss": 3.864104986190796, + "step": 1560 + }, + { + "epoch": 21.68501529051988, + "grad_norm": 0.22490349411964417, + "learning_rate": 0.0006, + "loss": 3.883296012878418, + "step": 1561 + }, + { + "epoch": 21.698995194408038, + "grad_norm": 0.23021313548088074, + "learning_rate": 0.0006, + "loss": 3.915200710296631, + "step": 1562 + }, + { + "epoch": 21.712975098296198, + "grad_norm": 0.22590875625610352, + "learning_rate": 0.0006, + "loss": 3.903597354888916, + "step": 1563 + }, + { + "epoch": 21.72695500218436, + "grad_norm": 0.19066260755062103, + "learning_rate": 0.0006, + "loss": 3.9162631034851074, + "step": 1564 + }, + { + "epoch": 21.74093490607252, + "grad_norm": 0.18134327232837677, + "learning_rate": 0.0006, + "loss": 3.9167914390563965, + "step": 1565 + }, + { + "epoch": 21.75491480996068, + "grad_norm": 0.1782190054655075, + "learning_rate": 0.0006, + "loss": 3.900925636291504, + "step": 1566 + }, + { + "epoch": 21.76889471384884, + "grad_norm": 0.19034099578857422, + "learning_rate": 0.0006, + "loss": 3.896559238433838, + "step": 1567 + }, + { + "epoch": 21.782874617737004, + "grad_norm": 0.21509577333927155, + "learning_rate": 0.0006, + "loss": 3.891681671142578, + "step": 1568 + }, + { + "epoch": 21.796854521625164, + "grad_norm": 0.2370351105928421, + "learning_rate": 0.0006, + "loss": 3.886570453643799, + "step": 1569 + }, + { + "epoch": 21.810834425513324, + "grad_norm": 0.25546324253082275, + "learning_rate": 0.0006, + "loss": 3.9247193336486816, + "step": 1570 + }, + { + "epoch": 21.824814329401484, + "grad_norm": 0.2513384222984314, + "learning_rate": 0.0006, + "loss": 3.9120583534240723, + "step": 1571 + }, + { + "epoch": 21.838794233289647, + "grad_norm": 0.24691323935985565, + "learning_rate": 0.0006, + "loss": 3.9144935607910156, + "step": 1572 + }, + { + "epoch": 21.852774137177807, + "grad_norm": 0.2573968172073364, + "learning_rate": 0.0006, + "loss": 3.9517531394958496, + "step": 1573 + }, + { + "epoch": 21.866754041065967, + "grad_norm": 0.25461453199386597, + "learning_rate": 0.0006, + "loss": 3.93508243560791, + "step": 1574 + }, + { + "epoch": 21.88073394495413, + "grad_norm": 0.23756568133831024, + "learning_rate": 0.0006, + "loss": 3.8885269165039062, + "step": 1575 + }, + { + "epoch": 21.89471384884229, + "grad_norm": 0.2193172425031662, + "learning_rate": 0.0006, + "loss": 3.9103426933288574, + "step": 1576 + }, + { + "epoch": 21.90869375273045, + "grad_norm": 0.2350149303674698, + "learning_rate": 0.0006, + "loss": 3.9399590492248535, + "step": 1577 + }, + { + "epoch": 21.92267365661861, + "grad_norm": 0.23759333789348602, + "learning_rate": 0.0006, + "loss": 3.9433584213256836, + "step": 1578 + }, + { + "epoch": 21.936653560506773, + "grad_norm": 0.21108432114124298, + "learning_rate": 0.0006, + "loss": 3.9241819381713867, + "step": 1579 + }, + { + "epoch": 21.950633464394933, + "grad_norm": 0.22088949382305145, + "learning_rate": 0.0006, + "loss": 3.9231910705566406, + "step": 1580 + }, + { + "epoch": 21.964613368283093, + "grad_norm": 0.22125045955181122, + "learning_rate": 0.0006, + "loss": 3.896329164505005, + "step": 1581 + }, + { + "epoch": 21.978593272171253, + "grad_norm": 0.20745202898979187, + "learning_rate": 0.0006, + "loss": 3.8920536041259766, + "step": 1582 + }, + { + "epoch": 21.992573176059416, + "grad_norm": 0.2409721463918686, + "learning_rate": 0.0006, + "loss": 3.9061317443847656, + "step": 1583 + }, + { + "epoch": 22.0, + "grad_norm": 0.2669669985771179, + "learning_rate": 0.0006, + "loss": 3.922062397003174, + "step": 1584 + }, + { + "epoch": 22.0, + "eval_loss": 4.140966415405273, + "eval_runtime": 46.7132, + "eval_samples_per_second": 52.276, + "eval_steps_per_second": 3.275, + "step": 1584 + }, + { + "epoch": 22.01397990388816, + "grad_norm": 0.26155969500541687, + "learning_rate": 0.0006, + "loss": 3.888944625854492, + "step": 1585 + }, + { + "epoch": 22.027959807776323, + "grad_norm": 0.2579149007797241, + "learning_rate": 0.0006, + "loss": 3.8924355506896973, + "step": 1586 + }, + { + "epoch": 22.041939711664483, + "grad_norm": 0.2429896742105484, + "learning_rate": 0.0006, + "loss": 3.8714070320129395, + "step": 1587 + }, + { + "epoch": 22.055919615552643, + "grad_norm": 0.23497673869132996, + "learning_rate": 0.0006, + "loss": 3.905089855194092, + "step": 1588 + }, + { + "epoch": 22.069899519440803, + "grad_norm": 0.24074940383434296, + "learning_rate": 0.0006, + "loss": 3.886845111846924, + "step": 1589 + }, + { + "epoch": 22.083879423328966, + "grad_norm": 0.2226274162530899, + "learning_rate": 0.0006, + "loss": 3.8554329872131348, + "step": 1590 + }, + { + "epoch": 22.097859327217126, + "grad_norm": 0.22924423217773438, + "learning_rate": 0.0006, + "loss": 3.8914356231689453, + "step": 1591 + }, + { + "epoch": 22.111839231105286, + "grad_norm": 0.2459387183189392, + "learning_rate": 0.0006, + "loss": 3.902522087097168, + "step": 1592 + }, + { + "epoch": 22.125819134993446, + "grad_norm": 0.2704590857028961, + "learning_rate": 0.0006, + "loss": 3.896497964859009, + "step": 1593 + }, + { + "epoch": 22.13979903888161, + "grad_norm": 0.2848219871520996, + "learning_rate": 0.0006, + "loss": 3.88423228263855, + "step": 1594 + }, + { + "epoch": 22.15377894276977, + "grad_norm": 0.22996552288532257, + "learning_rate": 0.0006, + "loss": 3.9034953117370605, + "step": 1595 + }, + { + "epoch": 22.16775884665793, + "grad_norm": 0.2117270529270172, + "learning_rate": 0.0006, + "loss": 3.888279914855957, + "step": 1596 + }, + { + "epoch": 22.18173875054609, + "grad_norm": 0.19724160432815552, + "learning_rate": 0.0006, + "loss": 3.860525131225586, + "step": 1597 + }, + { + "epoch": 22.195718654434252, + "grad_norm": 0.2012624740600586, + "learning_rate": 0.0006, + "loss": 3.8930106163024902, + "step": 1598 + }, + { + "epoch": 22.209698558322412, + "grad_norm": 0.20243871212005615, + "learning_rate": 0.0006, + "loss": 3.8727619647979736, + "step": 1599 + }, + { + "epoch": 22.22367846221057, + "grad_norm": 0.21737465262413025, + "learning_rate": 0.0006, + "loss": 3.887969493865967, + "step": 1600 + }, + { + "epoch": 22.23765836609873, + "grad_norm": 0.23969845473766327, + "learning_rate": 0.0006, + "loss": 3.8629722595214844, + "step": 1601 + }, + { + "epoch": 22.251638269986895, + "grad_norm": 0.22874902188777924, + "learning_rate": 0.0006, + "loss": 3.9135584831237793, + "step": 1602 + }, + { + "epoch": 22.265618173875055, + "grad_norm": 0.209506556391716, + "learning_rate": 0.0006, + "loss": 3.8734190464019775, + "step": 1603 + }, + { + "epoch": 22.279598077763215, + "grad_norm": 0.22235789895057678, + "learning_rate": 0.0006, + "loss": 3.884854793548584, + "step": 1604 + }, + { + "epoch": 22.293577981651374, + "grad_norm": 0.21975041925907135, + "learning_rate": 0.0006, + "loss": 3.8860888481140137, + "step": 1605 + }, + { + "epoch": 22.307557885539538, + "grad_norm": 0.21474459767341614, + "learning_rate": 0.0006, + "loss": 3.9052200317382812, + "step": 1606 + }, + { + "epoch": 22.321537789427698, + "grad_norm": 0.2103329747915268, + "learning_rate": 0.0006, + "loss": 3.8516340255737305, + "step": 1607 + }, + { + "epoch": 22.335517693315857, + "grad_norm": 0.1981191635131836, + "learning_rate": 0.0006, + "loss": 3.9017434120178223, + "step": 1608 + }, + { + "epoch": 22.34949759720402, + "grad_norm": 0.20679591596126556, + "learning_rate": 0.0006, + "loss": 3.889885425567627, + "step": 1609 + }, + { + "epoch": 22.36347750109218, + "grad_norm": 0.20809867978096008, + "learning_rate": 0.0006, + "loss": 3.881868362426758, + "step": 1610 + }, + { + "epoch": 22.37745740498034, + "grad_norm": 0.21394680440425873, + "learning_rate": 0.0006, + "loss": 3.89980411529541, + "step": 1611 + }, + { + "epoch": 22.3914373088685, + "grad_norm": 0.2334284782409668, + "learning_rate": 0.0006, + "loss": 3.8672266006469727, + "step": 1612 + }, + { + "epoch": 22.405417212756664, + "grad_norm": 0.26521918177604675, + "learning_rate": 0.0006, + "loss": 3.8918118476867676, + "step": 1613 + }, + { + "epoch": 22.419397116644824, + "grad_norm": 0.2652994394302368, + "learning_rate": 0.0006, + "loss": 3.8683271408081055, + "step": 1614 + }, + { + "epoch": 22.433377020532983, + "grad_norm": 0.2568066716194153, + "learning_rate": 0.0006, + "loss": 3.892523765563965, + "step": 1615 + }, + { + "epoch": 22.447356924421143, + "grad_norm": 0.260052353143692, + "learning_rate": 0.0006, + "loss": 3.897305488586426, + "step": 1616 + }, + { + "epoch": 22.461336828309307, + "grad_norm": 0.2744271457195282, + "learning_rate": 0.0006, + "loss": 3.8962221145629883, + "step": 1617 + }, + { + "epoch": 22.475316732197467, + "grad_norm": 0.23755787312984467, + "learning_rate": 0.0006, + "loss": 3.888184070587158, + "step": 1618 + }, + { + "epoch": 22.489296636085626, + "grad_norm": 0.2515312135219574, + "learning_rate": 0.0006, + "loss": 3.8946003913879395, + "step": 1619 + }, + { + "epoch": 22.503276539973786, + "grad_norm": 0.24835044145584106, + "learning_rate": 0.0006, + "loss": 3.8711423873901367, + "step": 1620 + }, + { + "epoch": 22.51725644386195, + "grad_norm": 0.22615326941013336, + "learning_rate": 0.0006, + "loss": 3.8878846168518066, + "step": 1621 + }, + { + "epoch": 22.53123634775011, + "grad_norm": 0.20482423901557922, + "learning_rate": 0.0006, + "loss": 3.8782598972320557, + "step": 1622 + }, + { + "epoch": 22.54521625163827, + "grad_norm": 0.20436473190784454, + "learning_rate": 0.0006, + "loss": 3.9075279235839844, + "step": 1623 + }, + { + "epoch": 22.55919615552643, + "grad_norm": 0.2066277265548706, + "learning_rate": 0.0006, + "loss": 3.89908766746521, + "step": 1624 + }, + { + "epoch": 22.573176059414592, + "grad_norm": 0.20735307037830353, + "learning_rate": 0.0006, + "loss": 3.865204334259033, + "step": 1625 + }, + { + "epoch": 22.587155963302752, + "grad_norm": 0.20955748856067657, + "learning_rate": 0.0006, + "loss": 3.8835532665252686, + "step": 1626 + }, + { + "epoch": 22.601135867190912, + "grad_norm": 0.21354222297668457, + "learning_rate": 0.0006, + "loss": 3.9012551307678223, + "step": 1627 + }, + { + "epoch": 22.615115771079076, + "grad_norm": 0.2075091004371643, + "learning_rate": 0.0006, + "loss": 3.8733482360839844, + "step": 1628 + }, + { + "epoch": 22.629095674967235, + "grad_norm": 0.20207874476909637, + "learning_rate": 0.0006, + "loss": 3.9193859100341797, + "step": 1629 + }, + { + "epoch": 22.643075578855395, + "grad_norm": 0.21863923966884613, + "learning_rate": 0.0006, + "loss": 3.883518695831299, + "step": 1630 + }, + { + "epoch": 22.657055482743555, + "grad_norm": 0.22117522358894348, + "learning_rate": 0.0006, + "loss": 3.9163284301757812, + "step": 1631 + }, + { + "epoch": 22.67103538663172, + "grad_norm": 0.2078622728586197, + "learning_rate": 0.0006, + "loss": 3.868274688720703, + "step": 1632 + }, + { + "epoch": 22.68501529051988, + "grad_norm": 0.22745893895626068, + "learning_rate": 0.0006, + "loss": 3.9171340465545654, + "step": 1633 + }, + { + "epoch": 22.698995194408038, + "grad_norm": 0.2312736064195633, + "learning_rate": 0.0006, + "loss": 3.9487013816833496, + "step": 1634 + }, + { + "epoch": 22.712975098296198, + "grad_norm": 0.20491497218608856, + "learning_rate": 0.0006, + "loss": 3.91833758354187, + "step": 1635 + }, + { + "epoch": 22.72695500218436, + "grad_norm": 0.1899084597826004, + "learning_rate": 0.0006, + "loss": 3.876225709915161, + "step": 1636 + }, + { + "epoch": 22.74093490607252, + "grad_norm": 0.18581682443618774, + "learning_rate": 0.0006, + "loss": 3.8667988777160645, + "step": 1637 + }, + { + "epoch": 22.75491480996068, + "grad_norm": 0.19855599105358124, + "learning_rate": 0.0006, + "loss": 3.900789260864258, + "step": 1638 + }, + { + "epoch": 22.76889471384884, + "grad_norm": 0.19951458275318146, + "learning_rate": 0.0006, + "loss": 3.8850367069244385, + "step": 1639 + }, + { + "epoch": 22.782874617737004, + "grad_norm": 0.22802744805812836, + "learning_rate": 0.0006, + "loss": 3.9181363582611084, + "step": 1640 + }, + { + "epoch": 22.796854521625164, + "grad_norm": 0.24279919266700745, + "learning_rate": 0.0006, + "loss": 3.8843770027160645, + "step": 1641 + }, + { + "epoch": 22.810834425513324, + "grad_norm": 0.23554913699626923, + "learning_rate": 0.0006, + "loss": 3.8802413940429688, + "step": 1642 + }, + { + "epoch": 22.824814329401484, + "grad_norm": 0.22343270480632782, + "learning_rate": 0.0006, + "loss": 3.8524107933044434, + "step": 1643 + }, + { + "epoch": 22.838794233289647, + "grad_norm": 0.2185724526643753, + "learning_rate": 0.0006, + "loss": 3.9117047786712646, + "step": 1644 + }, + { + "epoch": 22.852774137177807, + "grad_norm": 0.2114841341972351, + "learning_rate": 0.0006, + "loss": 3.90325927734375, + "step": 1645 + }, + { + "epoch": 22.866754041065967, + "grad_norm": 0.21072550117969513, + "learning_rate": 0.0006, + "loss": 3.8988137245178223, + "step": 1646 + }, + { + "epoch": 22.88073394495413, + "grad_norm": 0.2250078171491623, + "learning_rate": 0.0006, + "loss": 3.9201531410217285, + "step": 1647 + }, + { + "epoch": 22.89471384884229, + "grad_norm": 0.20928071439266205, + "learning_rate": 0.0006, + "loss": 3.91666316986084, + "step": 1648 + }, + { + "epoch": 22.90869375273045, + "grad_norm": 0.24096311628818512, + "learning_rate": 0.0006, + "loss": 3.8797364234924316, + "step": 1649 + }, + { + "epoch": 22.92267365661861, + "grad_norm": 0.2591194212436676, + "learning_rate": 0.0006, + "loss": 3.883273124694824, + "step": 1650 + }, + { + "epoch": 22.936653560506773, + "grad_norm": 0.27342668175697327, + "learning_rate": 0.0006, + "loss": 3.8645026683807373, + "step": 1651 + }, + { + "epoch": 22.950633464394933, + "grad_norm": 0.2448573112487793, + "learning_rate": 0.0006, + "loss": 3.9093551635742188, + "step": 1652 + }, + { + "epoch": 22.964613368283093, + "grad_norm": 0.19899503886699677, + "learning_rate": 0.0006, + "loss": 3.9001057147979736, + "step": 1653 + }, + { + "epoch": 22.978593272171253, + "grad_norm": 0.2023746520280838, + "learning_rate": 0.0006, + "loss": 3.886474370956421, + "step": 1654 + }, + { + "epoch": 22.992573176059416, + "grad_norm": 0.19894269108772278, + "learning_rate": 0.0006, + "loss": 3.9004204273223877, + "step": 1655 + }, + { + "epoch": 23.0, + "grad_norm": 0.2401709407567978, + "learning_rate": 0.0006, + "loss": 3.8665566444396973, + "step": 1656 + }, + { + "epoch": 23.0, + "eval_loss": 4.112459659576416, + "eval_runtime": 44.8325, + "eval_samples_per_second": 54.469, + "eval_steps_per_second": 3.413, + "step": 1656 + }, + { + "epoch": 23.01397990388816, + "grad_norm": 0.22662921249866486, + "learning_rate": 0.0006, + "loss": 3.853271961212158, + "step": 1657 + }, + { + "epoch": 23.027959807776323, + "grad_norm": 0.24406856298446655, + "learning_rate": 0.0006, + "loss": 3.8691890239715576, + "step": 1658 + }, + { + "epoch": 23.041939711664483, + "grad_norm": 0.2266651839017868, + "learning_rate": 0.0006, + "loss": 3.838599681854248, + "step": 1659 + }, + { + "epoch": 23.055919615552643, + "grad_norm": 0.22303511202335358, + "learning_rate": 0.0006, + "loss": 3.8678267002105713, + "step": 1660 + }, + { + "epoch": 23.069899519440803, + "grad_norm": 0.2272164225578308, + "learning_rate": 0.0006, + "loss": 3.9045681953430176, + "step": 1661 + }, + { + "epoch": 23.083879423328966, + "grad_norm": 0.25004875659942627, + "learning_rate": 0.0006, + "loss": 3.856503963470459, + "step": 1662 + }, + { + "epoch": 23.097859327217126, + "grad_norm": 0.26016247272491455, + "learning_rate": 0.0006, + "loss": 3.878587007522583, + "step": 1663 + }, + { + "epoch": 23.111839231105286, + "grad_norm": 0.28539901971817017, + "learning_rate": 0.0006, + "loss": 3.864248514175415, + "step": 1664 + }, + { + "epoch": 23.125819134993446, + "grad_norm": 0.27504822611808777, + "learning_rate": 0.0006, + "loss": 3.821448802947998, + "step": 1665 + }, + { + "epoch": 23.13979903888161, + "grad_norm": 0.238910973072052, + "learning_rate": 0.0006, + "loss": 3.8635847568511963, + "step": 1666 + }, + { + "epoch": 23.15377894276977, + "grad_norm": 0.24179652333259583, + "learning_rate": 0.0006, + "loss": 3.8339638710021973, + "step": 1667 + }, + { + "epoch": 23.16775884665793, + "grad_norm": 0.2199544757604599, + "learning_rate": 0.0006, + "loss": 3.868396759033203, + "step": 1668 + }, + { + "epoch": 23.18173875054609, + "grad_norm": 0.1965002566576004, + "learning_rate": 0.0006, + "loss": 3.8761439323425293, + "step": 1669 + }, + { + "epoch": 23.195718654434252, + "grad_norm": 0.20426614582538605, + "learning_rate": 0.0006, + "loss": 3.822899580001831, + "step": 1670 + }, + { + "epoch": 23.209698558322412, + "grad_norm": 0.2197263389825821, + "learning_rate": 0.0006, + "loss": 3.887728452682495, + "step": 1671 + }, + { + "epoch": 23.22367846221057, + "grad_norm": 0.22844573855400085, + "learning_rate": 0.0006, + "loss": 3.8550517559051514, + "step": 1672 + }, + { + "epoch": 23.23765836609873, + "grad_norm": 0.2347746044397354, + "learning_rate": 0.0006, + "loss": 3.903310537338257, + "step": 1673 + }, + { + "epoch": 23.251638269986895, + "grad_norm": 0.24167625606060028, + "learning_rate": 0.0006, + "loss": 3.8397774696350098, + "step": 1674 + }, + { + "epoch": 23.265618173875055, + "grad_norm": 0.2691650688648224, + "learning_rate": 0.0006, + "loss": 3.853254795074463, + "step": 1675 + }, + { + "epoch": 23.279598077763215, + "grad_norm": 0.29421621561050415, + "learning_rate": 0.0006, + "loss": 3.86065411567688, + "step": 1676 + }, + { + "epoch": 23.293577981651374, + "grad_norm": 0.31074345111846924, + "learning_rate": 0.0006, + "loss": 3.8716742992401123, + "step": 1677 + }, + { + "epoch": 23.307557885539538, + "grad_norm": 0.3044569194316864, + "learning_rate": 0.0006, + "loss": 3.8738951683044434, + "step": 1678 + }, + { + "epoch": 23.321537789427698, + "grad_norm": 0.30496764183044434, + "learning_rate": 0.0006, + "loss": 3.884446620941162, + "step": 1679 + }, + { + "epoch": 23.335517693315857, + "grad_norm": 0.31122756004333496, + "learning_rate": 0.0006, + "loss": 3.878495693206787, + "step": 1680 + }, + { + "epoch": 23.34949759720402, + "grad_norm": 0.32268181443214417, + "learning_rate": 0.0006, + "loss": 3.8793649673461914, + "step": 1681 + }, + { + "epoch": 23.36347750109218, + "grad_norm": 0.3297140598297119, + "learning_rate": 0.0006, + "loss": 3.87484073638916, + "step": 1682 + }, + { + "epoch": 23.37745740498034, + "grad_norm": 0.26007479429244995, + "learning_rate": 0.0006, + "loss": 3.8510947227478027, + "step": 1683 + }, + { + "epoch": 23.3914373088685, + "grad_norm": 0.2627335786819458, + "learning_rate": 0.0006, + "loss": 3.8783209323883057, + "step": 1684 + }, + { + "epoch": 23.405417212756664, + "grad_norm": 0.256452739238739, + "learning_rate": 0.0006, + "loss": 3.8594281673431396, + "step": 1685 + }, + { + "epoch": 23.419397116644824, + "grad_norm": 0.23892226815223694, + "learning_rate": 0.0006, + "loss": 3.898951292037964, + "step": 1686 + }, + { + "epoch": 23.433377020532983, + "grad_norm": 0.21625587344169617, + "learning_rate": 0.0006, + "loss": 3.8679966926574707, + "step": 1687 + }, + { + "epoch": 23.447356924421143, + "grad_norm": 0.21924619376659393, + "learning_rate": 0.0006, + "loss": 3.8774075508117676, + "step": 1688 + }, + { + "epoch": 23.461336828309307, + "grad_norm": 0.21500127017498016, + "learning_rate": 0.0006, + "loss": 3.870619297027588, + "step": 1689 + }, + { + "epoch": 23.475316732197467, + "grad_norm": 0.22580556571483612, + "learning_rate": 0.0006, + "loss": 3.887722969055176, + "step": 1690 + }, + { + "epoch": 23.489296636085626, + "grad_norm": 0.2500104308128357, + "learning_rate": 0.0006, + "loss": 3.88789963722229, + "step": 1691 + }, + { + "epoch": 23.503276539973786, + "grad_norm": 0.22462762892246246, + "learning_rate": 0.0006, + "loss": 3.863997459411621, + "step": 1692 + }, + { + "epoch": 23.51725644386195, + "grad_norm": 0.21427781879901886, + "learning_rate": 0.0006, + "loss": 3.8827033042907715, + "step": 1693 + }, + { + "epoch": 23.53123634775011, + "grad_norm": 0.22278577089309692, + "learning_rate": 0.0006, + "loss": 3.8659563064575195, + "step": 1694 + }, + { + "epoch": 23.54521625163827, + "grad_norm": 0.22801144421100616, + "learning_rate": 0.0006, + "loss": 3.9031362533569336, + "step": 1695 + }, + { + "epoch": 23.55919615552643, + "grad_norm": 0.25071898102760315, + "learning_rate": 0.0006, + "loss": 3.887746810913086, + "step": 1696 + }, + { + "epoch": 23.573176059414592, + "grad_norm": 0.2564085125923157, + "learning_rate": 0.0006, + "loss": 3.8918356895446777, + "step": 1697 + }, + { + "epoch": 23.587155963302752, + "grad_norm": 0.24603120982646942, + "learning_rate": 0.0006, + "loss": 3.850416421890259, + "step": 1698 + }, + { + "epoch": 23.601135867190912, + "grad_norm": 0.20539002120494843, + "learning_rate": 0.0006, + "loss": 3.862060070037842, + "step": 1699 + }, + { + "epoch": 23.615115771079076, + "grad_norm": 0.2022249400615692, + "learning_rate": 0.0006, + "loss": 3.899008274078369, + "step": 1700 + }, + { + "epoch": 23.629095674967235, + "grad_norm": 0.2435392290353775, + "learning_rate": 0.0006, + "loss": 3.844388961791992, + "step": 1701 + }, + { + "epoch": 23.643075578855395, + "grad_norm": 0.21146756410598755, + "learning_rate": 0.0006, + "loss": 3.8972439765930176, + "step": 1702 + }, + { + "epoch": 23.657055482743555, + "grad_norm": 0.2025400996208191, + "learning_rate": 0.0006, + "loss": 3.865253448486328, + "step": 1703 + }, + { + "epoch": 23.67103538663172, + "grad_norm": 0.21129970252513885, + "learning_rate": 0.0006, + "loss": 3.8768205642700195, + "step": 1704 + }, + { + "epoch": 23.68501529051988, + "grad_norm": 0.22982284426689148, + "learning_rate": 0.0006, + "loss": 3.8792667388916016, + "step": 1705 + }, + { + "epoch": 23.698995194408038, + "grad_norm": 0.23013733327388763, + "learning_rate": 0.0006, + "loss": 3.880897045135498, + "step": 1706 + }, + { + "epoch": 23.712975098296198, + "grad_norm": 0.2277672290802002, + "learning_rate": 0.0006, + "loss": 3.8738410472869873, + "step": 1707 + }, + { + "epoch": 23.72695500218436, + "grad_norm": 0.2343369573354721, + "learning_rate": 0.0006, + "loss": 3.8587026596069336, + "step": 1708 + }, + { + "epoch": 23.74093490607252, + "grad_norm": 0.23159530758857727, + "learning_rate": 0.0006, + "loss": 3.856306552886963, + "step": 1709 + }, + { + "epoch": 23.75491480996068, + "grad_norm": 0.19541035592556, + "learning_rate": 0.0006, + "loss": 3.8294754028320312, + "step": 1710 + }, + { + "epoch": 23.76889471384884, + "grad_norm": 0.22999322414398193, + "learning_rate": 0.0006, + "loss": 3.882676124572754, + "step": 1711 + }, + { + "epoch": 23.782874617737004, + "grad_norm": 0.23442843556404114, + "learning_rate": 0.0006, + "loss": 3.8887529373168945, + "step": 1712 + }, + { + "epoch": 23.796854521625164, + "grad_norm": 0.22914239764213562, + "learning_rate": 0.0006, + "loss": 3.867673635482788, + "step": 1713 + }, + { + "epoch": 23.810834425513324, + "grad_norm": 0.20683827996253967, + "learning_rate": 0.0006, + "loss": 3.8999581336975098, + "step": 1714 + }, + { + "epoch": 23.824814329401484, + "grad_norm": 0.19281277060508728, + "learning_rate": 0.0006, + "loss": 3.8997726440429688, + "step": 1715 + }, + { + "epoch": 23.838794233289647, + "grad_norm": 0.20058563351631165, + "learning_rate": 0.0006, + "loss": 3.8583860397338867, + "step": 1716 + }, + { + "epoch": 23.852774137177807, + "grad_norm": 0.19856606423854828, + "learning_rate": 0.0006, + "loss": 3.88948392868042, + "step": 1717 + }, + { + "epoch": 23.866754041065967, + "grad_norm": 0.2099323868751526, + "learning_rate": 0.0006, + "loss": 3.878458261489868, + "step": 1718 + }, + { + "epoch": 23.88073394495413, + "grad_norm": 0.22945016622543335, + "learning_rate": 0.0006, + "loss": 3.84116268157959, + "step": 1719 + }, + { + "epoch": 23.89471384884229, + "grad_norm": 0.22646087408065796, + "learning_rate": 0.0006, + "loss": 3.9006617069244385, + "step": 1720 + }, + { + "epoch": 23.90869375273045, + "grad_norm": 0.20282860100269318, + "learning_rate": 0.0006, + "loss": 3.8781144618988037, + "step": 1721 + }, + { + "epoch": 23.92267365661861, + "grad_norm": 0.1918555349111557, + "learning_rate": 0.0006, + "loss": 3.8560891151428223, + "step": 1722 + }, + { + "epoch": 23.936653560506773, + "grad_norm": 0.19286513328552246, + "learning_rate": 0.0006, + "loss": 3.873220920562744, + "step": 1723 + }, + { + "epoch": 23.950633464394933, + "grad_norm": 0.21071338653564453, + "learning_rate": 0.0006, + "loss": 3.9147067070007324, + "step": 1724 + }, + { + "epoch": 23.964613368283093, + "grad_norm": 0.20956715941429138, + "learning_rate": 0.0006, + "loss": 3.8762729167938232, + "step": 1725 + }, + { + "epoch": 23.978593272171253, + "grad_norm": 0.23053105175495148, + "learning_rate": 0.0006, + "loss": 3.873781681060791, + "step": 1726 + }, + { + "epoch": 23.992573176059416, + "grad_norm": 0.2719029486179352, + "learning_rate": 0.0006, + "loss": 3.862342357635498, + "step": 1727 + }, + { + "epoch": 24.0, + "grad_norm": 0.2933610677719116, + "learning_rate": 0.0006, + "loss": 3.8657689094543457, + "step": 1728 + }, + { + "epoch": 24.0, + "eval_loss": 4.0959153175354, + "eval_runtime": 44.3631, + "eval_samples_per_second": 55.046, + "eval_steps_per_second": 3.449, + "step": 1728 + }, + { + "epoch": 24.01397990388816, + "grad_norm": 0.24905365705490112, + "learning_rate": 0.0006, + "loss": 3.838136911392212, + "step": 1729 + }, + { + "epoch": 24.027959807776323, + "grad_norm": 0.25948020815849304, + "learning_rate": 0.0006, + "loss": 3.8581268787384033, + "step": 1730 + }, + { + "epoch": 24.041939711664483, + "grad_norm": 0.24965140223503113, + "learning_rate": 0.0006, + "loss": 3.8628978729248047, + "step": 1731 + }, + { + "epoch": 24.055919615552643, + "grad_norm": 0.23428823053836823, + "learning_rate": 0.0006, + "loss": 3.8188819885253906, + "step": 1732 + }, + { + "epoch": 24.069899519440803, + "grad_norm": 0.22191211581230164, + "learning_rate": 0.0006, + "loss": 3.8616039752960205, + "step": 1733 + }, + { + "epoch": 24.083879423328966, + "grad_norm": 0.20257535576820374, + "learning_rate": 0.0006, + "loss": 3.8632802963256836, + "step": 1734 + }, + { + "epoch": 24.097859327217126, + "grad_norm": 0.20385196805000305, + "learning_rate": 0.0006, + "loss": 3.885817050933838, + "step": 1735 + }, + { + "epoch": 24.111839231105286, + "grad_norm": 0.19921693205833435, + "learning_rate": 0.0006, + "loss": 3.838515043258667, + "step": 1736 + }, + { + "epoch": 24.125819134993446, + "grad_norm": 0.20221556723117828, + "learning_rate": 0.0006, + "loss": 3.8585309982299805, + "step": 1737 + }, + { + "epoch": 24.13979903888161, + "grad_norm": 0.20124691724777222, + "learning_rate": 0.0006, + "loss": 3.81656551361084, + "step": 1738 + }, + { + "epoch": 24.15377894276977, + "grad_norm": 0.1810830533504486, + "learning_rate": 0.0006, + "loss": 3.841783046722412, + "step": 1739 + }, + { + "epoch": 24.16775884665793, + "grad_norm": 0.18414196372032166, + "learning_rate": 0.0006, + "loss": 3.8614797592163086, + "step": 1740 + }, + { + "epoch": 24.18173875054609, + "grad_norm": 0.18930725753307343, + "learning_rate": 0.0006, + "loss": 3.8382534980773926, + "step": 1741 + }, + { + "epoch": 24.195718654434252, + "grad_norm": 0.19658128917217255, + "learning_rate": 0.0006, + "loss": 3.881742477416992, + "step": 1742 + }, + { + "epoch": 24.209698558322412, + "grad_norm": 0.20175589621067047, + "learning_rate": 0.0006, + "loss": 3.8760581016540527, + "step": 1743 + }, + { + "epoch": 24.22367846221057, + "grad_norm": 0.19416265189647675, + "learning_rate": 0.0006, + "loss": 3.8373687267303467, + "step": 1744 + }, + { + "epoch": 24.23765836609873, + "grad_norm": 0.20206521451473236, + "learning_rate": 0.0006, + "loss": 3.8322830200195312, + "step": 1745 + }, + { + "epoch": 24.251638269986895, + "grad_norm": 0.21797429025173187, + "learning_rate": 0.0006, + "loss": 3.849905490875244, + "step": 1746 + }, + { + "epoch": 24.265618173875055, + "grad_norm": 0.21295784413814545, + "learning_rate": 0.0006, + "loss": 3.847714900970459, + "step": 1747 + }, + { + "epoch": 24.279598077763215, + "grad_norm": 0.22023876011371613, + "learning_rate": 0.0006, + "loss": 3.8221592903137207, + "step": 1748 + }, + { + "epoch": 24.293577981651374, + "grad_norm": 0.2125576138496399, + "learning_rate": 0.0006, + "loss": 3.8070976734161377, + "step": 1749 + }, + { + "epoch": 24.307557885539538, + "grad_norm": 0.18673811852931976, + "learning_rate": 0.0006, + "loss": 3.866878032684326, + "step": 1750 + }, + { + "epoch": 24.321537789427698, + "grad_norm": 0.1972627341747284, + "learning_rate": 0.0006, + "loss": 3.846404552459717, + "step": 1751 + }, + { + "epoch": 24.335517693315857, + "grad_norm": 0.21846632659435272, + "learning_rate": 0.0006, + "loss": 3.8528640270233154, + "step": 1752 + }, + { + "epoch": 24.34949759720402, + "grad_norm": 0.22234080731868744, + "learning_rate": 0.0006, + "loss": 3.8268141746520996, + "step": 1753 + }, + { + "epoch": 24.36347750109218, + "grad_norm": 0.23002761602401733, + "learning_rate": 0.0006, + "loss": 3.832444667816162, + "step": 1754 + }, + { + "epoch": 24.37745740498034, + "grad_norm": 0.22526559233665466, + "learning_rate": 0.0006, + "loss": 3.864406108856201, + "step": 1755 + }, + { + "epoch": 24.3914373088685, + "grad_norm": 0.2290039211511612, + "learning_rate": 0.0006, + "loss": 3.8449103832244873, + "step": 1756 + }, + { + "epoch": 24.405417212756664, + "grad_norm": 0.23145617544651031, + "learning_rate": 0.0006, + "loss": 3.8183751106262207, + "step": 1757 + }, + { + "epoch": 24.419397116644824, + "grad_norm": 0.24287554621696472, + "learning_rate": 0.0006, + "loss": 3.809481382369995, + "step": 1758 + }, + { + "epoch": 24.433377020532983, + "grad_norm": 0.2672404646873474, + "learning_rate": 0.0006, + "loss": 3.877800464630127, + "step": 1759 + }, + { + "epoch": 24.447356924421143, + "grad_norm": 0.26292186975479126, + "learning_rate": 0.0006, + "loss": 3.8329367637634277, + "step": 1760 + }, + { + "epoch": 24.461336828309307, + "grad_norm": 0.26235947012901306, + "learning_rate": 0.0006, + "loss": 3.8414158821105957, + "step": 1761 + }, + { + "epoch": 24.475316732197467, + "grad_norm": 0.2638382613658905, + "learning_rate": 0.0006, + "loss": 3.849188804626465, + "step": 1762 + }, + { + "epoch": 24.489296636085626, + "grad_norm": 0.2564602196216583, + "learning_rate": 0.0006, + "loss": 3.865501880645752, + "step": 1763 + }, + { + "epoch": 24.503276539973786, + "grad_norm": 0.21352271735668182, + "learning_rate": 0.0006, + "loss": 3.87910795211792, + "step": 1764 + }, + { + "epoch": 24.51725644386195, + "grad_norm": 0.2470584511756897, + "learning_rate": 0.0006, + "loss": 3.858750343322754, + "step": 1765 + }, + { + "epoch": 24.53123634775011, + "grad_norm": 0.24907536804676056, + "learning_rate": 0.0006, + "loss": 3.8532559871673584, + "step": 1766 + }, + { + "epoch": 24.54521625163827, + "grad_norm": 0.2426205575466156, + "learning_rate": 0.0006, + "loss": 3.8659827709198, + "step": 1767 + }, + { + "epoch": 24.55919615552643, + "grad_norm": 0.23481151461601257, + "learning_rate": 0.0006, + "loss": 3.863948345184326, + "step": 1768 + }, + { + "epoch": 24.573176059414592, + "grad_norm": 0.22717779874801636, + "learning_rate": 0.0006, + "loss": 3.848527193069458, + "step": 1769 + }, + { + "epoch": 24.587155963302752, + "grad_norm": 0.2267129123210907, + "learning_rate": 0.0006, + "loss": 3.8600735664367676, + "step": 1770 + }, + { + "epoch": 24.601135867190912, + "grad_norm": 0.24967710673809052, + "learning_rate": 0.0006, + "loss": 3.84291934967041, + "step": 1771 + }, + { + "epoch": 24.615115771079076, + "grad_norm": 0.25308957695961, + "learning_rate": 0.0006, + "loss": 3.846181631088257, + "step": 1772 + }, + { + "epoch": 24.629095674967235, + "grad_norm": 0.2689298391342163, + "learning_rate": 0.0006, + "loss": 3.8572893142700195, + "step": 1773 + }, + { + "epoch": 24.643075578855395, + "grad_norm": 0.26458555459976196, + "learning_rate": 0.0006, + "loss": 3.8583621978759766, + "step": 1774 + }, + { + "epoch": 24.657055482743555, + "grad_norm": 0.24416811764240265, + "learning_rate": 0.0006, + "loss": 3.8648223876953125, + "step": 1775 + }, + { + "epoch": 24.67103538663172, + "grad_norm": 0.22218526899814606, + "learning_rate": 0.0006, + "loss": 3.839395523071289, + "step": 1776 + }, + { + "epoch": 24.68501529051988, + "grad_norm": 0.2147492915391922, + "learning_rate": 0.0006, + "loss": 3.875734567642212, + "step": 1777 + }, + { + "epoch": 24.698995194408038, + "grad_norm": 0.2346794754266739, + "learning_rate": 0.0006, + "loss": 3.854768991470337, + "step": 1778 + }, + { + "epoch": 24.712975098296198, + "grad_norm": 0.21406520903110504, + "learning_rate": 0.0006, + "loss": 3.8269104957580566, + "step": 1779 + }, + { + "epoch": 24.72695500218436, + "grad_norm": 0.20716224610805511, + "learning_rate": 0.0006, + "loss": 3.8245768547058105, + "step": 1780 + }, + { + "epoch": 24.74093490607252, + "grad_norm": 0.21445901691913605, + "learning_rate": 0.0006, + "loss": 3.8877978324890137, + "step": 1781 + }, + { + "epoch": 24.75491480996068, + "grad_norm": 0.21964985132217407, + "learning_rate": 0.0006, + "loss": 3.8602452278137207, + "step": 1782 + }, + { + "epoch": 24.76889471384884, + "grad_norm": 0.209807351231575, + "learning_rate": 0.0006, + "loss": 3.853428602218628, + "step": 1783 + }, + { + "epoch": 24.782874617737004, + "grad_norm": 0.19564911723136902, + "learning_rate": 0.0006, + "loss": 3.832275867462158, + "step": 1784 + }, + { + "epoch": 24.796854521625164, + "grad_norm": 0.21394333243370056, + "learning_rate": 0.0006, + "loss": 3.8543171882629395, + "step": 1785 + }, + { + "epoch": 24.810834425513324, + "grad_norm": 0.23156948387622833, + "learning_rate": 0.0006, + "loss": 3.8539412021636963, + "step": 1786 + }, + { + "epoch": 24.824814329401484, + "grad_norm": 0.2378678321838379, + "learning_rate": 0.0006, + "loss": 3.8409833908081055, + "step": 1787 + }, + { + "epoch": 24.838794233289647, + "grad_norm": 0.23816189169883728, + "learning_rate": 0.0006, + "loss": 3.855379581451416, + "step": 1788 + }, + { + "epoch": 24.852774137177807, + "grad_norm": 0.23109886050224304, + "learning_rate": 0.0006, + "loss": 3.8689517974853516, + "step": 1789 + }, + { + "epoch": 24.866754041065967, + "grad_norm": 0.2042883038520813, + "learning_rate": 0.0006, + "loss": 3.8730404376983643, + "step": 1790 + }, + { + "epoch": 24.88073394495413, + "grad_norm": 0.2039479911327362, + "learning_rate": 0.0006, + "loss": 3.8474984169006348, + "step": 1791 + }, + { + "epoch": 24.89471384884229, + "grad_norm": 0.213027223944664, + "learning_rate": 0.0006, + "loss": 3.8539695739746094, + "step": 1792 + }, + { + "epoch": 24.90869375273045, + "grad_norm": 0.2280654013156891, + "learning_rate": 0.0006, + "loss": 3.8633079528808594, + "step": 1793 + }, + { + "epoch": 24.92267365661861, + "grad_norm": 0.20864921808242798, + "learning_rate": 0.0006, + "loss": 3.8110368251800537, + "step": 1794 + }, + { + "epoch": 24.936653560506773, + "grad_norm": 0.23002111911773682, + "learning_rate": 0.0006, + "loss": 3.8334741592407227, + "step": 1795 + }, + { + "epoch": 24.950633464394933, + "grad_norm": 0.232331782579422, + "learning_rate": 0.0006, + "loss": 3.871887683868408, + "step": 1796 + }, + { + "epoch": 24.964613368283093, + "grad_norm": 0.24141235649585724, + "learning_rate": 0.0006, + "loss": 3.8614959716796875, + "step": 1797 + }, + { + "epoch": 24.978593272171253, + "grad_norm": 0.2545177638530731, + "learning_rate": 0.0006, + "loss": 3.8563568592071533, + "step": 1798 + }, + { + "epoch": 24.992573176059416, + "grad_norm": 0.25186386704444885, + "learning_rate": 0.0006, + "loss": 3.882166862487793, + "step": 1799 + }, + { + "epoch": 25.0, + "grad_norm": 0.260195791721344, + "learning_rate": 0.0006, + "loss": 3.884554862976074, + "step": 1800 + }, + { + "epoch": 25.0, + "eval_loss": 4.08809757232666, + "eval_runtime": 44.7947, + "eval_samples_per_second": 54.515, + "eval_steps_per_second": 3.416, + "step": 1800 + }, + { + "epoch": 25.01397990388816, + "grad_norm": 0.25396403670310974, + "learning_rate": 0.0006, + "loss": 3.8217287063598633, + "step": 1801 + }, + { + "epoch": 25.027959807776323, + "grad_norm": 0.2773195207118988, + "learning_rate": 0.0006, + "loss": 3.809542417526245, + "step": 1802 + }, + { + "epoch": 25.041939711664483, + "grad_norm": 0.3073263168334961, + "learning_rate": 0.0006, + "loss": 3.825706958770752, + "step": 1803 + }, + { + "epoch": 25.055919615552643, + "grad_norm": 0.30885398387908936, + "learning_rate": 0.0006, + "loss": 3.8081188201904297, + "step": 1804 + }, + { + "epoch": 25.069899519440803, + "grad_norm": 0.27356019616127014, + "learning_rate": 0.0006, + "loss": 3.8538241386413574, + "step": 1805 + }, + { + "epoch": 25.083879423328966, + "grad_norm": 0.22830164432525635, + "learning_rate": 0.0006, + "loss": 3.8246965408325195, + "step": 1806 + }, + { + "epoch": 25.097859327217126, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.8552842140197754, + "step": 1807 + }, + { + "epoch": 25.111839231105286, + "grad_norm": 0.21718722581863403, + "learning_rate": 0.0006, + "loss": 3.8489418029785156, + "step": 1808 + }, + { + "epoch": 25.125819134993446, + "grad_norm": 0.2480861395597458, + "learning_rate": 0.0006, + "loss": 3.821455955505371, + "step": 1809 + }, + { + "epoch": 25.13979903888161, + "grad_norm": 0.2796635627746582, + "learning_rate": 0.0006, + "loss": 3.8202435970306396, + "step": 1810 + }, + { + "epoch": 25.15377894276977, + "grad_norm": 0.2829958200454712, + "learning_rate": 0.0006, + "loss": 3.8293306827545166, + "step": 1811 + }, + { + "epoch": 25.16775884665793, + "grad_norm": 0.2510125935077667, + "learning_rate": 0.0006, + "loss": 3.8342957496643066, + "step": 1812 + }, + { + "epoch": 25.18173875054609, + "grad_norm": 0.22923722863197327, + "learning_rate": 0.0006, + "loss": 3.8448352813720703, + "step": 1813 + }, + { + "epoch": 25.195718654434252, + "grad_norm": 0.21439228951931, + "learning_rate": 0.0006, + "loss": 3.8343517780303955, + "step": 1814 + }, + { + "epoch": 25.209698558322412, + "grad_norm": 0.1965373307466507, + "learning_rate": 0.0006, + "loss": 3.8163528442382812, + "step": 1815 + }, + { + "epoch": 25.22367846221057, + "grad_norm": 0.20121058821678162, + "learning_rate": 0.0006, + "loss": 3.8007280826568604, + "step": 1816 + }, + { + "epoch": 25.23765836609873, + "grad_norm": 0.21383272111415863, + "learning_rate": 0.0006, + "loss": 3.8200385570526123, + "step": 1817 + }, + { + "epoch": 25.251638269986895, + "grad_norm": 0.2066601663827896, + "learning_rate": 0.0006, + "loss": 3.8333921432495117, + "step": 1818 + }, + { + "epoch": 25.265618173875055, + "grad_norm": 0.2104874551296234, + "learning_rate": 0.0006, + "loss": 3.838012218475342, + "step": 1819 + }, + { + "epoch": 25.279598077763215, + "grad_norm": 0.19733119010925293, + "learning_rate": 0.0006, + "loss": 3.835139274597168, + "step": 1820 + }, + { + "epoch": 25.293577981651374, + "grad_norm": 0.2119498997926712, + "learning_rate": 0.0006, + "loss": 3.8099722862243652, + "step": 1821 + }, + { + "epoch": 25.307557885539538, + "grad_norm": 0.21863529086112976, + "learning_rate": 0.0006, + "loss": 3.7801573276519775, + "step": 1822 + }, + { + "epoch": 25.321537789427698, + "grad_norm": 0.2113322764635086, + "learning_rate": 0.0006, + "loss": 3.809903621673584, + "step": 1823 + }, + { + "epoch": 25.335517693315857, + "grad_norm": 0.21594023704528809, + "learning_rate": 0.0006, + "loss": 3.8485071659088135, + "step": 1824 + }, + { + "epoch": 25.34949759720402, + "grad_norm": 0.21475964784622192, + "learning_rate": 0.0006, + "loss": 3.7894768714904785, + "step": 1825 + }, + { + "epoch": 25.36347750109218, + "grad_norm": 0.21174900233745575, + "learning_rate": 0.0006, + "loss": 3.821711540222168, + "step": 1826 + }, + { + "epoch": 25.37745740498034, + "grad_norm": 0.2065584659576416, + "learning_rate": 0.0006, + "loss": 3.8439841270446777, + "step": 1827 + }, + { + "epoch": 25.3914373088685, + "grad_norm": 0.19157007336616516, + "learning_rate": 0.0006, + "loss": 3.864245891571045, + "step": 1828 + }, + { + "epoch": 25.405417212756664, + "grad_norm": 0.19983816146850586, + "learning_rate": 0.0006, + "loss": 3.8317415714263916, + "step": 1829 + }, + { + "epoch": 25.419397116644824, + "grad_norm": 0.20506152510643005, + "learning_rate": 0.0006, + "loss": 3.8009896278381348, + "step": 1830 + }, + { + "epoch": 25.433377020532983, + "grad_norm": 0.19056960940361023, + "learning_rate": 0.0006, + "loss": 3.8383498191833496, + "step": 1831 + }, + { + "epoch": 25.447356924421143, + "grad_norm": 0.19262190163135529, + "learning_rate": 0.0006, + "loss": 3.838902235031128, + "step": 1832 + }, + { + "epoch": 25.461336828309307, + "grad_norm": 0.19859355688095093, + "learning_rate": 0.0006, + "loss": 3.82452392578125, + "step": 1833 + }, + { + "epoch": 25.475316732197467, + "grad_norm": 0.2144225388765335, + "learning_rate": 0.0006, + "loss": 3.8110032081604004, + "step": 1834 + }, + { + "epoch": 25.489296636085626, + "grad_norm": 0.20566298067569733, + "learning_rate": 0.0006, + "loss": 3.8662471771240234, + "step": 1835 + }, + { + "epoch": 25.503276539973786, + "grad_norm": 0.2071852684020996, + "learning_rate": 0.0006, + "loss": 3.821134090423584, + "step": 1836 + }, + { + "epoch": 25.51725644386195, + "grad_norm": 0.2095036506652832, + "learning_rate": 0.0006, + "loss": 3.824092388153076, + "step": 1837 + }, + { + "epoch": 25.53123634775011, + "grad_norm": 0.20136208832263947, + "learning_rate": 0.0006, + "loss": 3.8669862747192383, + "step": 1838 + }, + { + "epoch": 25.54521625163827, + "grad_norm": 0.1983811855316162, + "learning_rate": 0.0006, + "loss": 3.8120107650756836, + "step": 1839 + }, + { + "epoch": 25.55919615552643, + "grad_norm": 0.22859714925289154, + "learning_rate": 0.0006, + "loss": 3.8519299030303955, + "step": 1840 + }, + { + "epoch": 25.573176059414592, + "grad_norm": 0.23672667145729065, + "learning_rate": 0.0006, + "loss": 3.8245458602905273, + "step": 1841 + }, + { + "epoch": 25.587155963302752, + "grad_norm": 0.22698380053043365, + "learning_rate": 0.0006, + "loss": 3.8406805992126465, + "step": 1842 + }, + { + "epoch": 25.601135867190912, + "grad_norm": 0.25684037804603577, + "learning_rate": 0.0006, + "loss": 3.8584351539611816, + "step": 1843 + }, + { + "epoch": 25.615115771079076, + "grad_norm": 0.28180673718452454, + "learning_rate": 0.0006, + "loss": 3.8085098266601562, + "step": 1844 + }, + { + "epoch": 25.629095674967235, + "grad_norm": 0.2814631462097168, + "learning_rate": 0.0006, + "loss": 3.845083236694336, + "step": 1845 + }, + { + "epoch": 25.643075578855395, + "grad_norm": 0.23630981147289276, + "learning_rate": 0.0006, + "loss": 3.847749710083008, + "step": 1846 + }, + { + "epoch": 25.657055482743555, + "grad_norm": 0.22463662922382355, + "learning_rate": 0.0006, + "loss": 3.8172082901000977, + "step": 1847 + }, + { + "epoch": 25.67103538663172, + "grad_norm": 0.26551681756973267, + "learning_rate": 0.0006, + "loss": 3.8205654621124268, + "step": 1848 + }, + { + "epoch": 25.68501529051988, + "grad_norm": 0.27824243903160095, + "learning_rate": 0.0006, + "loss": 3.846076011657715, + "step": 1849 + }, + { + "epoch": 25.698995194408038, + "grad_norm": 0.266998291015625, + "learning_rate": 0.0006, + "loss": 3.8543574810028076, + "step": 1850 + }, + { + "epoch": 25.712975098296198, + "grad_norm": 0.22980351746082306, + "learning_rate": 0.0006, + "loss": 3.855511426925659, + "step": 1851 + }, + { + "epoch": 25.72695500218436, + "grad_norm": 0.23482872545719147, + "learning_rate": 0.0006, + "loss": 3.8687663078308105, + "step": 1852 + }, + { + "epoch": 25.74093490607252, + "grad_norm": 0.21119585633277893, + "learning_rate": 0.0006, + "loss": 3.8147101402282715, + "step": 1853 + }, + { + "epoch": 25.75491480996068, + "grad_norm": 0.21200446784496307, + "learning_rate": 0.0006, + "loss": 3.858473777770996, + "step": 1854 + }, + { + "epoch": 25.76889471384884, + "grad_norm": 0.20497842133045197, + "learning_rate": 0.0006, + "loss": 3.8545501232147217, + "step": 1855 + }, + { + "epoch": 25.782874617737004, + "grad_norm": 0.19328081607818604, + "learning_rate": 0.0006, + "loss": 3.7941341400146484, + "step": 1856 + }, + { + "epoch": 25.796854521625164, + "grad_norm": 0.2191578894853592, + "learning_rate": 0.0006, + "loss": 3.8408665657043457, + "step": 1857 + }, + { + "epoch": 25.810834425513324, + "grad_norm": 0.2548826038837433, + "learning_rate": 0.0006, + "loss": 3.854130744934082, + "step": 1858 + }, + { + "epoch": 25.824814329401484, + "grad_norm": 0.2290351390838623, + "learning_rate": 0.0006, + "loss": 3.8680176734924316, + "step": 1859 + }, + { + "epoch": 25.838794233289647, + "grad_norm": 0.20760944485664368, + "learning_rate": 0.0006, + "loss": 3.83731746673584, + "step": 1860 + }, + { + "epoch": 25.852774137177807, + "grad_norm": 0.19587582349777222, + "learning_rate": 0.0006, + "loss": 3.8173444271087646, + "step": 1861 + }, + { + "epoch": 25.866754041065967, + "grad_norm": 0.20762693881988525, + "learning_rate": 0.0006, + "loss": 3.8479790687561035, + "step": 1862 + }, + { + "epoch": 25.88073394495413, + "grad_norm": 0.20633186399936676, + "learning_rate": 0.0006, + "loss": 3.852285385131836, + "step": 1863 + }, + { + "epoch": 25.89471384884229, + "grad_norm": 0.21484960615634918, + "learning_rate": 0.0006, + "loss": 3.832592725753784, + "step": 1864 + }, + { + "epoch": 25.90869375273045, + "grad_norm": 0.19569595158100128, + "learning_rate": 0.0006, + "loss": 3.838071584701538, + "step": 1865 + }, + { + "epoch": 25.92267365661861, + "grad_norm": 0.19532904028892517, + "learning_rate": 0.0006, + "loss": 3.854252815246582, + "step": 1866 + }, + { + "epoch": 25.936653560506773, + "grad_norm": 0.1909649819135666, + "learning_rate": 0.0006, + "loss": 3.8444578647613525, + "step": 1867 + }, + { + "epoch": 25.950633464394933, + "grad_norm": 0.17476283013820648, + "learning_rate": 0.0006, + "loss": 3.836519241333008, + "step": 1868 + }, + { + "epoch": 25.964613368283093, + "grad_norm": 0.1895206719636917, + "learning_rate": 0.0006, + "loss": 3.8282582759857178, + "step": 1869 + }, + { + "epoch": 25.978593272171253, + "grad_norm": 0.20038437843322754, + "learning_rate": 0.0006, + "loss": 3.80542254447937, + "step": 1870 + }, + { + "epoch": 25.992573176059416, + "grad_norm": 0.20728608965873718, + "learning_rate": 0.0006, + "loss": 3.8584811687469482, + "step": 1871 + }, + { + "epoch": 26.0, + "grad_norm": 0.22110891342163086, + "learning_rate": 0.0006, + "loss": 3.8020238876342773, + "step": 1872 + }, + { + "epoch": 26.0, + "eval_loss": 4.072164058685303, + "eval_runtime": 44.9089, + "eval_samples_per_second": 54.377, + "eval_steps_per_second": 3.407, + "step": 1872 + }, + { + "epoch": 26.01397990388816, + "grad_norm": 0.2222519814968109, + "learning_rate": 0.0006, + "loss": 3.8309168815612793, + "step": 1873 + }, + { + "epoch": 26.027959807776323, + "grad_norm": 0.2637656033039093, + "learning_rate": 0.0006, + "loss": 3.8025143146514893, + "step": 1874 + }, + { + "epoch": 26.041939711664483, + "grad_norm": 0.2665974795818329, + "learning_rate": 0.0006, + "loss": 3.8244004249572754, + "step": 1875 + }, + { + "epoch": 26.055919615552643, + "grad_norm": 0.22475720942020416, + "learning_rate": 0.0006, + "loss": 3.80039119720459, + "step": 1876 + }, + { + "epoch": 26.069899519440803, + "grad_norm": 0.22994336485862732, + "learning_rate": 0.0006, + "loss": 3.7700726985931396, + "step": 1877 + }, + { + "epoch": 26.083879423328966, + "grad_norm": 0.24214622378349304, + "learning_rate": 0.0006, + "loss": 3.818725109100342, + "step": 1878 + }, + { + "epoch": 26.097859327217126, + "grad_norm": 0.22701293230056763, + "learning_rate": 0.0006, + "loss": 3.833803176879883, + "step": 1879 + }, + { + "epoch": 26.111839231105286, + "grad_norm": 0.21452295780181885, + "learning_rate": 0.0006, + "loss": 3.8391427993774414, + "step": 1880 + }, + { + "epoch": 26.125819134993446, + "grad_norm": 0.20179636776447296, + "learning_rate": 0.0006, + "loss": 3.802957057952881, + "step": 1881 + }, + { + "epoch": 26.13979903888161, + "grad_norm": 0.2087477445602417, + "learning_rate": 0.0006, + "loss": 3.8339905738830566, + "step": 1882 + }, + { + "epoch": 26.15377894276977, + "grad_norm": 0.23583556711673737, + "learning_rate": 0.0006, + "loss": 3.802438259124756, + "step": 1883 + }, + { + "epoch": 26.16775884665793, + "grad_norm": 0.2504311501979828, + "learning_rate": 0.0006, + "loss": 3.80244517326355, + "step": 1884 + }, + { + "epoch": 26.18173875054609, + "grad_norm": 0.24903984367847443, + "learning_rate": 0.0006, + "loss": 3.788865566253662, + "step": 1885 + }, + { + "epoch": 26.195718654434252, + "grad_norm": 0.2707931101322174, + "learning_rate": 0.0006, + "loss": 3.800051212310791, + "step": 1886 + }, + { + "epoch": 26.209698558322412, + "grad_norm": 0.24902892112731934, + "learning_rate": 0.0006, + "loss": 3.8068337440490723, + "step": 1887 + }, + { + "epoch": 26.22367846221057, + "grad_norm": 0.22655536234378815, + "learning_rate": 0.0006, + "loss": 3.779439926147461, + "step": 1888 + }, + { + "epoch": 26.23765836609873, + "grad_norm": 0.24797996878623962, + "learning_rate": 0.0006, + "loss": 3.822831153869629, + "step": 1889 + }, + { + "epoch": 26.251638269986895, + "grad_norm": 0.2821420431137085, + "learning_rate": 0.0006, + "loss": 3.807954788208008, + "step": 1890 + }, + { + "epoch": 26.265618173875055, + "grad_norm": 0.30392691493034363, + "learning_rate": 0.0006, + "loss": 3.776951789855957, + "step": 1891 + }, + { + "epoch": 26.279598077763215, + "grad_norm": 0.32641273736953735, + "learning_rate": 0.0006, + "loss": 3.8216311931610107, + "step": 1892 + }, + { + "epoch": 26.293577981651374, + "grad_norm": 0.32674387097358704, + "learning_rate": 0.0006, + "loss": 3.815596580505371, + "step": 1893 + }, + { + "epoch": 26.307557885539538, + "grad_norm": 0.29137250781059265, + "learning_rate": 0.0006, + "loss": 3.8170812129974365, + "step": 1894 + }, + { + "epoch": 26.321537789427698, + "grad_norm": 0.24291734397411346, + "learning_rate": 0.0006, + "loss": 3.810352087020874, + "step": 1895 + }, + { + "epoch": 26.335517693315857, + "grad_norm": 0.24023209512233734, + "learning_rate": 0.0006, + "loss": 3.8075947761535645, + "step": 1896 + }, + { + "epoch": 26.34949759720402, + "grad_norm": 0.24334804713726044, + "learning_rate": 0.0006, + "loss": 3.831556797027588, + "step": 1897 + }, + { + "epoch": 26.36347750109218, + "grad_norm": 0.2109663337469101, + "learning_rate": 0.0006, + "loss": 3.838347911834717, + "step": 1898 + }, + { + "epoch": 26.37745740498034, + "grad_norm": 0.19668002426624298, + "learning_rate": 0.0006, + "loss": 3.774737596511841, + "step": 1899 + }, + { + "epoch": 26.3914373088685, + "grad_norm": 0.21329134702682495, + "learning_rate": 0.0006, + "loss": 3.8237252235412598, + "step": 1900 + }, + { + "epoch": 26.405417212756664, + "grad_norm": 0.20381781458854675, + "learning_rate": 0.0006, + "loss": 3.802569627761841, + "step": 1901 + }, + { + "epoch": 26.419397116644824, + "grad_norm": 0.19083160161972046, + "learning_rate": 0.0006, + "loss": 3.8301358222961426, + "step": 1902 + }, + { + "epoch": 26.433377020532983, + "grad_norm": 0.20012904703617096, + "learning_rate": 0.0006, + "loss": 3.7966408729553223, + "step": 1903 + }, + { + "epoch": 26.447356924421143, + "grad_norm": 0.19483457505702972, + "learning_rate": 0.0006, + "loss": 3.8431968688964844, + "step": 1904 + }, + { + "epoch": 26.461336828309307, + "grad_norm": 0.19946353137493134, + "learning_rate": 0.0006, + "loss": 3.8023815155029297, + "step": 1905 + }, + { + "epoch": 26.475316732197467, + "grad_norm": 0.1984100341796875, + "learning_rate": 0.0006, + "loss": 3.8283071517944336, + "step": 1906 + }, + { + "epoch": 26.489296636085626, + "grad_norm": 0.2148299664258957, + "learning_rate": 0.0006, + "loss": 3.8377504348754883, + "step": 1907 + }, + { + "epoch": 26.503276539973786, + "grad_norm": 0.22139184176921844, + "learning_rate": 0.0006, + "loss": 3.823051691055298, + "step": 1908 + }, + { + "epoch": 26.51725644386195, + "grad_norm": 0.18289034068584442, + "learning_rate": 0.0006, + "loss": 3.8027071952819824, + "step": 1909 + }, + { + "epoch": 26.53123634775011, + "grad_norm": 0.1816026121377945, + "learning_rate": 0.0006, + "loss": 3.823786735534668, + "step": 1910 + }, + { + "epoch": 26.54521625163827, + "grad_norm": 0.19074322283267975, + "learning_rate": 0.0006, + "loss": 3.813331127166748, + "step": 1911 + }, + { + "epoch": 26.55919615552643, + "grad_norm": 0.20301467180252075, + "learning_rate": 0.0006, + "loss": 3.8218350410461426, + "step": 1912 + }, + { + "epoch": 26.573176059414592, + "grad_norm": 0.25266432762145996, + "learning_rate": 0.0006, + "loss": 3.8455142974853516, + "step": 1913 + }, + { + "epoch": 26.587155963302752, + "grad_norm": 0.25804755091667175, + "learning_rate": 0.0006, + "loss": 3.799227476119995, + "step": 1914 + }, + { + "epoch": 26.601135867190912, + "grad_norm": 0.2555372416973114, + "learning_rate": 0.0006, + "loss": 3.8125686645507812, + "step": 1915 + }, + { + "epoch": 26.615115771079076, + "grad_norm": 0.2266194075345993, + "learning_rate": 0.0006, + "loss": 3.858363628387451, + "step": 1916 + }, + { + "epoch": 26.629095674967235, + "grad_norm": 0.1933048665523529, + "learning_rate": 0.0006, + "loss": 3.8078083992004395, + "step": 1917 + }, + { + "epoch": 26.643075578855395, + "grad_norm": 0.19936731457710266, + "learning_rate": 0.0006, + "loss": 3.81748628616333, + "step": 1918 + }, + { + "epoch": 26.657055482743555, + "grad_norm": 0.22041693329811096, + "learning_rate": 0.0006, + "loss": 3.833272933959961, + "step": 1919 + }, + { + "epoch": 26.67103538663172, + "grad_norm": 0.20679150521755219, + "learning_rate": 0.0006, + "loss": 3.8127288818359375, + "step": 1920 + }, + { + "epoch": 26.68501529051988, + "grad_norm": 0.21545100212097168, + "learning_rate": 0.0006, + "loss": 3.816051483154297, + "step": 1921 + }, + { + "epoch": 26.698995194408038, + "grad_norm": 0.23554518818855286, + "learning_rate": 0.0006, + "loss": 3.8180980682373047, + "step": 1922 + }, + { + "epoch": 26.712975098296198, + "grad_norm": 0.21942466497421265, + "learning_rate": 0.0006, + "loss": 3.803107976913452, + "step": 1923 + }, + { + "epoch": 26.72695500218436, + "grad_norm": 0.22335010766983032, + "learning_rate": 0.0006, + "loss": 3.847890853881836, + "step": 1924 + }, + { + "epoch": 26.74093490607252, + "grad_norm": 0.24731314182281494, + "learning_rate": 0.0006, + "loss": 3.7945008277893066, + "step": 1925 + }, + { + "epoch": 26.75491480996068, + "grad_norm": 0.2804568111896515, + "learning_rate": 0.0006, + "loss": 3.8400068283081055, + "step": 1926 + }, + { + "epoch": 26.76889471384884, + "grad_norm": 0.28787222504615784, + "learning_rate": 0.0006, + "loss": 3.839771270751953, + "step": 1927 + }, + { + "epoch": 26.782874617737004, + "grad_norm": 0.2949632406234741, + "learning_rate": 0.0006, + "loss": 3.8225326538085938, + "step": 1928 + }, + { + "epoch": 26.796854521625164, + "grad_norm": 0.31546032428741455, + "learning_rate": 0.0006, + "loss": 3.8182597160339355, + "step": 1929 + }, + { + "epoch": 26.810834425513324, + "grad_norm": 0.2956962585449219, + "learning_rate": 0.0006, + "loss": 3.8315680027008057, + "step": 1930 + }, + { + "epoch": 26.824814329401484, + "grad_norm": 0.26943835616111755, + "learning_rate": 0.0006, + "loss": 3.787720203399658, + "step": 1931 + }, + { + "epoch": 26.838794233289647, + "grad_norm": 0.24272359907627106, + "learning_rate": 0.0006, + "loss": 3.7973692417144775, + "step": 1932 + }, + { + "epoch": 26.852774137177807, + "grad_norm": 0.20553994178771973, + "learning_rate": 0.0006, + "loss": 3.8241593837738037, + "step": 1933 + }, + { + "epoch": 26.866754041065967, + "grad_norm": 0.21927912533283234, + "learning_rate": 0.0006, + "loss": 3.8608899116516113, + "step": 1934 + }, + { + "epoch": 26.88073394495413, + "grad_norm": 0.22878016531467438, + "learning_rate": 0.0006, + "loss": 3.8341972827911377, + "step": 1935 + }, + { + "epoch": 26.89471384884229, + "grad_norm": 0.2085554301738739, + "learning_rate": 0.0006, + "loss": 3.8261351585388184, + "step": 1936 + }, + { + "epoch": 26.90869375273045, + "grad_norm": 0.21259072422981262, + "learning_rate": 0.0006, + "loss": 3.862056255340576, + "step": 1937 + }, + { + "epoch": 26.92267365661861, + "grad_norm": 0.21354122459888458, + "learning_rate": 0.0006, + "loss": 3.80879545211792, + "step": 1938 + }, + { + "epoch": 26.936653560506773, + "grad_norm": 0.2350253462791443, + "learning_rate": 0.0006, + "loss": 3.817826271057129, + "step": 1939 + }, + { + "epoch": 26.950633464394933, + "grad_norm": 0.23833836615085602, + "learning_rate": 0.0006, + "loss": 3.8220884799957275, + "step": 1940 + }, + { + "epoch": 26.964613368283093, + "grad_norm": 0.2368069440126419, + "learning_rate": 0.0006, + "loss": 3.843264579772949, + "step": 1941 + }, + { + "epoch": 26.978593272171253, + "grad_norm": 0.22663559019565582, + "learning_rate": 0.0006, + "loss": 3.81339430809021, + "step": 1942 + }, + { + "epoch": 26.992573176059416, + "grad_norm": 0.2151402235031128, + "learning_rate": 0.0006, + "loss": 3.8262834548950195, + "step": 1943 + }, + { + "epoch": 27.0, + "grad_norm": 0.24320295453071594, + "learning_rate": 0.0006, + "loss": 3.858567237854004, + "step": 1944 + }, + { + "epoch": 27.0, + "eval_loss": 4.0613322257995605, + "eval_runtime": 44.766, + "eval_samples_per_second": 54.55, + "eval_steps_per_second": 3.418, + "step": 1944 + }, + { + "epoch": 27.01397990388816, + "grad_norm": 0.21188032627105713, + "learning_rate": 0.0006, + "loss": 3.7631278038024902, + "step": 1945 + }, + { + "epoch": 27.027959807776323, + "grad_norm": 0.22298137843608856, + "learning_rate": 0.0006, + "loss": 3.784029245376587, + "step": 1946 + }, + { + "epoch": 27.041939711664483, + "grad_norm": 0.26530158519744873, + "learning_rate": 0.0006, + "loss": 3.795860767364502, + "step": 1947 + }, + { + "epoch": 27.055919615552643, + "grad_norm": 0.24476729333400726, + "learning_rate": 0.0006, + "loss": 3.77512264251709, + "step": 1948 + }, + { + "epoch": 27.069899519440803, + "grad_norm": 0.1934421956539154, + "learning_rate": 0.0006, + "loss": 3.7797446250915527, + "step": 1949 + }, + { + "epoch": 27.083879423328966, + "grad_norm": 0.19777092337608337, + "learning_rate": 0.0006, + "loss": 3.798935890197754, + "step": 1950 + }, + { + "epoch": 27.097859327217126, + "grad_norm": 0.2071693390607834, + "learning_rate": 0.0006, + "loss": 3.763094425201416, + "step": 1951 + }, + { + "epoch": 27.111839231105286, + "grad_norm": 0.18394742906093597, + "learning_rate": 0.0006, + "loss": 3.7892322540283203, + "step": 1952 + }, + { + "epoch": 27.125819134993446, + "grad_norm": 0.17878273129463196, + "learning_rate": 0.0006, + "loss": 3.787968158721924, + "step": 1953 + }, + { + "epoch": 27.13979903888161, + "grad_norm": 0.18792171776294708, + "learning_rate": 0.0006, + "loss": 3.7719640731811523, + "step": 1954 + }, + { + "epoch": 27.15377894276977, + "grad_norm": 0.18718759715557098, + "learning_rate": 0.0006, + "loss": 3.791835308074951, + "step": 1955 + }, + { + "epoch": 27.16775884665793, + "grad_norm": 0.18716055154800415, + "learning_rate": 0.0006, + "loss": 3.7490220069885254, + "step": 1956 + }, + { + "epoch": 27.18173875054609, + "grad_norm": 0.18429182469844818, + "learning_rate": 0.0006, + "loss": 3.8020081520080566, + "step": 1957 + }, + { + "epoch": 27.195718654434252, + "grad_norm": 0.18571704626083374, + "learning_rate": 0.0006, + "loss": 3.8152215480804443, + "step": 1958 + }, + { + "epoch": 27.209698558322412, + "grad_norm": 0.1788843423128128, + "learning_rate": 0.0006, + "loss": 3.8173317909240723, + "step": 1959 + }, + { + "epoch": 27.22367846221057, + "grad_norm": 0.20459426939487457, + "learning_rate": 0.0006, + "loss": 3.7760040760040283, + "step": 1960 + }, + { + "epoch": 27.23765836609873, + "grad_norm": 0.22360935807228088, + "learning_rate": 0.0006, + "loss": 3.8140203952789307, + "step": 1961 + }, + { + "epoch": 27.251638269986895, + "grad_norm": 0.2062767595052719, + "learning_rate": 0.0006, + "loss": 3.792001247406006, + "step": 1962 + }, + { + "epoch": 27.265618173875055, + "grad_norm": 0.20628073811531067, + "learning_rate": 0.0006, + "loss": 3.7873167991638184, + "step": 1963 + }, + { + "epoch": 27.279598077763215, + "grad_norm": 0.19888348877429962, + "learning_rate": 0.0006, + "loss": 3.7903614044189453, + "step": 1964 + }, + { + "epoch": 27.293577981651374, + "grad_norm": 0.22033332288265228, + "learning_rate": 0.0006, + "loss": 3.802497148513794, + "step": 1965 + }, + { + "epoch": 27.307557885539538, + "grad_norm": 0.23476941883563995, + "learning_rate": 0.0006, + "loss": 3.794090986251831, + "step": 1966 + }, + { + "epoch": 27.321537789427698, + "grad_norm": 0.19639968872070312, + "learning_rate": 0.0006, + "loss": 3.831794023513794, + "step": 1967 + }, + { + "epoch": 27.335517693315857, + "grad_norm": 0.18169641494750977, + "learning_rate": 0.0006, + "loss": 3.7687768936157227, + "step": 1968 + }, + { + "epoch": 27.34949759720402, + "grad_norm": 0.17781762778759003, + "learning_rate": 0.0006, + "loss": 3.7868471145629883, + "step": 1969 + }, + { + "epoch": 27.36347750109218, + "grad_norm": 0.18990416824817657, + "learning_rate": 0.0006, + "loss": 3.8340392112731934, + "step": 1970 + }, + { + "epoch": 27.37745740498034, + "grad_norm": 0.2031438797712326, + "learning_rate": 0.0006, + "loss": 3.804513454437256, + "step": 1971 + }, + { + "epoch": 27.3914373088685, + "grad_norm": 0.21233421564102173, + "learning_rate": 0.0006, + "loss": 3.7908449172973633, + "step": 1972 + }, + { + "epoch": 27.405417212756664, + "grad_norm": 0.22480927407741547, + "learning_rate": 0.0006, + "loss": 3.7894086837768555, + "step": 1973 + }, + { + "epoch": 27.419397116644824, + "grad_norm": 0.22713422775268555, + "learning_rate": 0.0006, + "loss": 3.826005458831787, + "step": 1974 + }, + { + "epoch": 27.433377020532983, + "grad_norm": 0.21637366712093353, + "learning_rate": 0.0006, + "loss": 3.8232319355010986, + "step": 1975 + }, + { + "epoch": 27.447356924421143, + "grad_norm": 0.24092449247837067, + "learning_rate": 0.0006, + "loss": 3.813279628753662, + "step": 1976 + }, + { + "epoch": 27.461336828309307, + "grad_norm": 0.21143047511577606, + "learning_rate": 0.0006, + "loss": 3.811586856842041, + "step": 1977 + }, + { + "epoch": 27.475316732197467, + "grad_norm": 0.21049432456493378, + "learning_rate": 0.0006, + "loss": 3.8227009773254395, + "step": 1978 + }, + { + "epoch": 27.489296636085626, + "grad_norm": 0.21853850781917572, + "learning_rate": 0.0006, + "loss": 3.7992515563964844, + "step": 1979 + }, + { + "epoch": 27.503276539973786, + "grad_norm": 0.22405001521110535, + "learning_rate": 0.0006, + "loss": 3.8311715126037598, + "step": 1980 + }, + { + "epoch": 27.51725644386195, + "grad_norm": 0.24085809290409088, + "learning_rate": 0.0006, + "loss": 3.801962375640869, + "step": 1981 + }, + { + "epoch": 27.53123634775011, + "grad_norm": 0.2612341642379761, + "learning_rate": 0.0006, + "loss": 3.7867887020111084, + "step": 1982 + }, + { + "epoch": 27.54521625163827, + "grad_norm": 0.25136062502861023, + "learning_rate": 0.0006, + "loss": 3.8302273750305176, + "step": 1983 + }, + { + "epoch": 27.55919615552643, + "grad_norm": 0.2485426515340805, + "learning_rate": 0.0006, + "loss": 3.770616054534912, + "step": 1984 + }, + { + "epoch": 27.573176059414592, + "grad_norm": 0.28883907198905945, + "learning_rate": 0.0006, + "loss": 3.8152146339416504, + "step": 1985 + }, + { + "epoch": 27.587155963302752, + "grad_norm": 0.28177911043167114, + "learning_rate": 0.0006, + "loss": 3.7966861724853516, + "step": 1986 + }, + { + "epoch": 27.601135867190912, + "grad_norm": 0.2573191523551941, + "learning_rate": 0.0006, + "loss": 3.820788621902466, + "step": 1987 + }, + { + "epoch": 27.615115771079076, + "grad_norm": 0.22225657105445862, + "learning_rate": 0.0006, + "loss": 3.778477191925049, + "step": 1988 + }, + { + "epoch": 27.629095674967235, + "grad_norm": 0.20118530094623566, + "learning_rate": 0.0006, + "loss": 3.8416988849639893, + "step": 1989 + }, + { + "epoch": 27.643075578855395, + "grad_norm": 0.21168658137321472, + "learning_rate": 0.0006, + "loss": 3.798020839691162, + "step": 1990 + }, + { + "epoch": 27.657055482743555, + "grad_norm": 0.2460680454969406, + "learning_rate": 0.0006, + "loss": 3.805917263031006, + "step": 1991 + }, + { + "epoch": 27.67103538663172, + "grad_norm": 0.2700909674167633, + "learning_rate": 0.0006, + "loss": 3.8042726516723633, + "step": 1992 + }, + { + "epoch": 27.68501529051988, + "grad_norm": 0.25814294815063477, + "learning_rate": 0.0006, + "loss": 3.799159049987793, + "step": 1993 + }, + { + "epoch": 27.698995194408038, + "grad_norm": 0.2231985628604889, + "learning_rate": 0.0006, + "loss": 3.778750419616699, + "step": 1994 + }, + { + "epoch": 27.712975098296198, + "grad_norm": 0.20807890594005585, + "learning_rate": 0.0006, + "loss": 3.787919044494629, + "step": 1995 + }, + { + "epoch": 27.72695500218436, + "grad_norm": 0.19537150859832764, + "learning_rate": 0.0006, + "loss": 3.7917299270629883, + "step": 1996 + }, + { + "epoch": 27.74093490607252, + "grad_norm": 0.21057647466659546, + "learning_rate": 0.0006, + "loss": 3.8096866607666016, + "step": 1997 + }, + { + "epoch": 27.75491480996068, + "grad_norm": 0.18983247876167297, + "learning_rate": 0.0006, + "loss": 3.7881717681884766, + "step": 1998 + }, + { + "epoch": 27.76889471384884, + "grad_norm": 0.18701069056987762, + "learning_rate": 0.0006, + "loss": 3.810790538787842, + "step": 1999 + }, + { + "epoch": 27.782874617737004, + "grad_norm": 0.1920134723186493, + "learning_rate": 0.0006, + "loss": 3.8161087036132812, + "step": 2000 + }, + { + "epoch": 27.796854521625164, + "grad_norm": 0.20413947105407715, + "learning_rate": 0.0006, + "loss": 3.790499687194824, + "step": 2001 + }, + { + "epoch": 27.810834425513324, + "grad_norm": 0.1920027732849121, + "learning_rate": 0.0006, + "loss": 3.8194262981414795, + "step": 2002 + }, + { + "epoch": 27.824814329401484, + "grad_norm": 0.18630221486091614, + "learning_rate": 0.0006, + "loss": 3.8267152309417725, + "step": 2003 + }, + { + "epoch": 27.838794233289647, + "grad_norm": 0.1787925660610199, + "learning_rate": 0.0006, + "loss": 3.8147521018981934, + "step": 2004 + }, + { + "epoch": 27.852774137177807, + "grad_norm": 0.19187216460704803, + "learning_rate": 0.0006, + "loss": 3.7751095294952393, + "step": 2005 + }, + { + "epoch": 27.866754041065967, + "grad_norm": 0.18825744092464447, + "learning_rate": 0.0006, + "loss": 3.807401657104492, + "step": 2006 + }, + { + "epoch": 27.88073394495413, + "grad_norm": 0.1879836469888687, + "learning_rate": 0.0006, + "loss": 3.8302509784698486, + "step": 2007 + }, + { + "epoch": 27.89471384884229, + "grad_norm": 0.19136391580104828, + "learning_rate": 0.0006, + "loss": 3.7886242866516113, + "step": 2008 + }, + { + "epoch": 27.90869375273045, + "grad_norm": 0.18774119019508362, + "learning_rate": 0.0006, + "loss": 3.8202977180480957, + "step": 2009 + }, + { + "epoch": 27.92267365661861, + "grad_norm": 0.17794452607631683, + "learning_rate": 0.0006, + "loss": 3.813382387161255, + "step": 2010 + }, + { + "epoch": 27.936653560506773, + "grad_norm": 0.1876268833875656, + "learning_rate": 0.0006, + "loss": 3.810610294342041, + "step": 2011 + }, + { + "epoch": 27.950633464394933, + "grad_norm": 0.19262051582336426, + "learning_rate": 0.0006, + "loss": 3.8113245964050293, + "step": 2012 + }, + { + "epoch": 27.964613368283093, + "grad_norm": 0.19371771812438965, + "learning_rate": 0.0006, + "loss": 3.804790496826172, + "step": 2013 + }, + { + "epoch": 27.978593272171253, + "grad_norm": 0.1922861784696579, + "learning_rate": 0.0006, + "loss": 3.8278889656066895, + "step": 2014 + }, + { + "epoch": 27.992573176059416, + "grad_norm": 0.19748565554618835, + "learning_rate": 0.0006, + "loss": 3.8127200603485107, + "step": 2015 + }, + { + "epoch": 28.0, + "grad_norm": 0.25027501583099365, + "learning_rate": 0.0006, + "loss": 3.7899413108825684, + "step": 2016 + }, + { + "epoch": 28.0, + "eval_loss": 4.047704219818115, + "eval_runtime": 44.293, + "eval_samples_per_second": 55.133, + "eval_steps_per_second": 3.454, + "step": 2016 + }, + { + "epoch": 28.01397990388816, + "grad_norm": 0.25172367691993713, + "learning_rate": 0.0006, + "loss": 3.75449538230896, + "step": 2017 + }, + { + "epoch": 28.027959807776323, + "grad_norm": 0.23494598269462585, + "learning_rate": 0.0006, + "loss": 3.7609024047851562, + "step": 2018 + }, + { + "epoch": 28.041939711664483, + "grad_norm": 0.22459708154201508, + "learning_rate": 0.0006, + "loss": 3.7843551635742188, + "step": 2019 + }, + { + "epoch": 28.055919615552643, + "grad_norm": 0.2038632035255432, + "learning_rate": 0.0006, + "loss": 3.7818198204040527, + "step": 2020 + }, + { + "epoch": 28.069899519440803, + "grad_norm": 0.22050008177757263, + "learning_rate": 0.0006, + "loss": 3.787442684173584, + "step": 2021 + }, + { + "epoch": 28.083879423328966, + "grad_norm": 0.24645832180976868, + "learning_rate": 0.0006, + "loss": 3.768704414367676, + "step": 2022 + }, + { + "epoch": 28.097859327217126, + "grad_norm": 0.2440163493156433, + "learning_rate": 0.0006, + "loss": 3.7783756256103516, + "step": 2023 + }, + { + "epoch": 28.111839231105286, + "grad_norm": 0.2482181042432785, + "learning_rate": 0.0006, + "loss": 3.786881923675537, + "step": 2024 + }, + { + "epoch": 28.125819134993446, + "grad_norm": 0.23494760692119598, + "learning_rate": 0.0006, + "loss": 3.790039300918579, + "step": 2025 + }, + { + "epoch": 28.13979903888161, + "grad_norm": 0.2172182947397232, + "learning_rate": 0.0006, + "loss": 3.818756580352783, + "step": 2026 + }, + { + "epoch": 28.15377894276977, + "grad_norm": 0.2103179395198822, + "learning_rate": 0.0006, + "loss": 3.7768917083740234, + "step": 2027 + }, + { + "epoch": 28.16775884665793, + "grad_norm": 0.22322365641593933, + "learning_rate": 0.0006, + "loss": 3.8223648071289062, + "step": 2028 + }, + { + "epoch": 28.18173875054609, + "grad_norm": 0.24199382960796356, + "learning_rate": 0.0006, + "loss": 3.781357765197754, + "step": 2029 + }, + { + "epoch": 28.195718654434252, + "grad_norm": 0.2500663101673126, + "learning_rate": 0.0006, + "loss": 3.8061184883117676, + "step": 2030 + }, + { + "epoch": 28.209698558322412, + "grad_norm": 0.2439824491739273, + "learning_rate": 0.0006, + "loss": 3.7886464595794678, + "step": 2031 + }, + { + "epoch": 28.22367846221057, + "grad_norm": 0.24563106894493103, + "learning_rate": 0.0006, + "loss": 3.7901692390441895, + "step": 2032 + }, + { + "epoch": 28.23765836609873, + "grad_norm": 0.2287624627351761, + "learning_rate": 0.0006, + "loss": 3.789931058883667, + "step": 2033 + }, + { + "epoch": 28.251638269986895, + "grad_norm": 0.2231188714504242, + "learning_rate": 0.0006, + "loss": 3.7879133224487305, + "step": 2034 + }, + { + "epoch": 28.265618173875055, + "grad_norm": 0.23090387880802155, + "learning_rate": 0.0006, + "loss": 3.7826130390167236, + "step": 2035 + }, + { + "epoch": 28.279598077763215, + "grad_norm": 0.216018944978714, + "learning_rate": 0.0006, + "loss": 3.7764949798583984, + "step": 2036 + }, + { + "epoch": 28.293577981651374, + "grad_norm": 0.22649185359477997, + "learning_rate": 0.0006, + "loss": 3.7911291122436523, + "step": 2037 + }, + { + "epoch": 28.307557885539538, + "grad_norm": 0.2350836843252182, + "learning_rate": 0.0006, + "loss": 3.7668724060058594, + "step": 2038 + }, + { + "epoch": 28.321537789427698, + "grad_norm": 0.23206329345703125, + "learning_rate": 0.0006, + "loss": 3.782243251800537, + "step": 2039 + }, + { + "epoch": 28.335517693315857, + "grad_norm": 0.21896308660507202, + "learning_rate": 0.0006, + "loss": 3.7605721950531006, + "step": 2040 + }, + { + "epoch": 28.34949759720402, + "grad_norm": 0.20381200313568115, + "learning_rate": 0.0006, + "loss": 3.743945598602295, + "step": 2041 + }, + { + "epoch": 28.36347750109218, + "grad_norm": 0.19196000695228577, + "learning_rate": 0.0006, + "loss": 3.808107852935791, + "step": 2042 + }, + { + "epoch": 28.37745740498034, + "grad_norm": 0.19517889618873596, + "learning_rate": 0.0006, + "loss": 3.7906723022460938, + "step": 2043 + }, + { + "epoch": 28.3914373088685, + "grad_norm": 0.20455795526504517, + "learning_rate": 0.0006, + "loss": 3.7421011924743652, + "step": 2044 + }, + { + "epoch": 28.405417212756664, + "grad_norm": 0.1867467314004898, + "learning_rate": 0.0006, + "loss": 3.775509834289551, + "step": 2045 + }, + { + "epoch": 28.419397116644824, + "grad_norm": 0.2029324471950531, + "learning_rate": 0.0006, + "loss": 3.771353244781494, + "step": 2046 + }, + { + "epoch": 28.433377020532983, + "grad_norm": 0.19967497885227203, + "learning_rate": 0.0006, + "loss": 3.7821149826049805, + "step": 2047 + }, + { + "epoch": 28.447356924421143, + "grad_norm": 0.19440607726573944, + "learning_rate": 0.0006, + "loss": 3.8114213943481445, + "step": 2048 + }, + { + "epoch": 28.461336828309307, + "grad_norm": 0.19679802656173706, + "learning_rate": 0.0006, + "loss": 3.7699532508850098, + "step": 2049 + }, + { + "epoch": 28.475316732197467, + "grad_norm": 0.1939811110496521, + "learning_rate": 0.0006, + "loss": 3.7673027515411377, + "step": 2050 + }, + { + "epoch": 28.489296636085626, + "grad_norm": 0.18712401390075684, + "learning_rate": 0.0006, + "loss": 3.816699266433716, + "step": 2051 + }, + { + "epoch": 28.503276539973786, + "grad_norm": 0.202956885099411, + "learning_rate": 0.0006, + "loss": 3.7746071815490723, + "step": 2052 + }, + { + "epoch": 28.51725644386195, + "grad_norm": 0.19098156690597534, + "learning_rate": 0.0006, + "loss": 3.8065481185913086, + "step": 2053 + }, + { + "epoch": 28.53123634775011, + "grad_norm": 0.21144428849220276, + "learning_rate": 0.0006, + "loss": 3.7890982627868652, + "step": 2054 + }, + { + "epoch": 28.54521625163827, + "grad_norm": 0.21882614493370056, + "learning_rate": 0.0006, + "loss": 3.8168821334838867, + "step": 2055 + }, + { + "epoch": 28.55919615552643, + "grad_norm": 0.22200101613998413, + "learning_rate": 0.0006, + "loss": 3.804454803466797, + "step": 2056 + }, + { + "epoch": 28.573176059414592, + "grad_norm": 0.22404780983924866, + "learning_rate": 0.0006, + "loss": 3.808764934539795, + "step": 2057 + }, + { + "epoch": 28.587155963302752, + "grad_norm": 0.22770099341869354, + "learning_rate": 0.0006, + "loss": 3.74835467338562, + "step": 2058 + }, + { + "epoch": 28.601135867190912, + "grad_norm": 0.23214420676231384, + "learning_rate": 0.0006, + "loss": 3.7480111122131348, + "step": 2059 + }, + { + "epoch": 28.615115771079076, + "grad_norm": 0.21786348521709442, + "learning_rate": 0.0006, + "loss": 3.8095176219940186, + "step": 2060 + }, + { + "epoch": 28.629095674967235, + "grad_norm": 0.21004106104373932, + "learning_rate": 0.0006, + "loss": 3.792745590209961, + "step": 2061 + }, + { + "epoch": 28.643075578855395, + "grad_norm": 0.21076138317584991, + "learning_rate": 0.0006, + "loss": 3.7878952026367188, + "step": 2062 + }, + { + "epoch": 28.657055482743555, + "grad_norm": 0.2184346616268158, + "learning_rate": 0.0006, + "loss": 3.757188320159912, + "step": 2063 + }, + { + "epoch": 28.67103538663172, + "grad_norm": 0.22100569307804108, + "learning_rate": 0.0006, + "loss": 3.8131773471832275, + "step": 2064 + }, + { + "epoch": 28.68501529051988, + "grad_norm": 0.23257511854171753, + "learning_rate": 0.0006, + "loss": 3.793826103210449, + "step": 2065 + }, + { + "epoch": 28.698995194408038, + "grad_norm": 0.22312869131565094, + "learning_rate": 0.0006, + "loss": 3.782083749771118, + "step": 2066 + }, + { + "epoch": 28.712975098296198, + "grad_norm": 0.2318405956029892, + "learning_rate": 0.0006, + "loss": 3.7814879417419434, + "step": 2067 + }, + { + "epoch": 28.72695500218436, + "grad_norm": 0.23719379305839539, + "learning_rate": 0.0006, + "loss": 3.8320484161376953, + "step": 2068 + }, + { + "epoch": 28.74093490607252, + "grad_norm": 0.23100806772708893, + "learning_rate": 0.0006, + "loss": 3.7921783924102783, + "step": 2069 + }, + { + "epoch": 28.75491480996068, + "grad_norm": 0.21540866792201996, + "learning_rate": 0.0006, + "loss": 3.8325204849243164, + "step": 2070 + }, + { + "epoch": 28.76889471384884, + "grad_norm": 0.2698654532432556, + "learning_rate": 0.0006, + "loss": 3.7965879440307617, + "step": 2071 + }, + { + "epoch": 28.782874617737004, + "grad_norm": 0.3101225793361664, + "learning_rate": 0.0006, + "loss": 3.78842830657959, + "step": 2072 + }, + { + "epoch": 28.796854521625164, + "grad_norm": 0.2607600688934326, + "learning_rate": 0.0006, + "loss": 3.770064115524292, + "step": 2073 + }, + { + "epoch": 28.810834425513324, + "grad_norm": 0.20558302104473114, + "learning_rate": 0.0006, + "loss": 3.7448501586914062, + "step": 2074 + }, + { + "epoch": 28.824814329401484, + "grad_norm": 0.20030120015144348, + "learning_rate": 0.0006, + "loss": 3.7689406871795654, + "step": 2075 + }, + { + "epoch": 28.838794233289647, + "grad_norm": 0.21781118214130402, + "learning_rate": 0.0006, + "loss": 3.7682244777679443, + "step": 2076 + }, + { + "epoch": 28.852774137177807, + "grad_norm": 0.23543044924736023, + "learning_rate": 0.0006, + "loss": 3.8094193935394287, + "step": 2077 + }, + { + "epoch": 28.866754041065967, + "grad_norm": 0.21634669601917267, + "learning_rate": 0.0006, + "loss": 3.792099952697754, + "step": 2078 + }, + { + "epoch": 28.88073394495413, + "grad_norm": 0.2251661866903305, + "learning_rate": 0.0006, + "loss": 3.7849509716033936, + "step": 2079 + }, + { + "epoch": 28.89471384884229, + "grad_norm": 0.23872914910316467, + "learning_rate": 0.0006, + "loss": 3.8391621112823486, + "step": 2080 + }, + { + "epoch": 28.90869375273045, + "grad_norm": 0.22259248793125153, + "learning_rate": 0.0006, + "loss": 3.8272876739501953, + "step": 2081 + }, + { + "epoch": 28.92267365661861, + "grad_norm": 0.22052262723445892, + "learning_rate": 0.0006, + "loss": 3.7986836433410645, + "step": 2082 + }, + { + "epoch": 28.936653560506773, + "grad_norm": 0.24487647414207458, + "learning_rate": 0.0006, + "loss": 3.798004150390625, + "step": 2083 + }, + { + "epoch": 28.950633464394933, + "grad_norm": 0.22992238402366638, + "learning_rate": 0.0006, + "loss": 3.788522720336914, + "step": 2084 + }, + { + "epoch": 28.964613368283093, + "grad_norm": 0.22521597146987915, + "learning_rate": 0.0006, + "loss": 3.767259120941162, + "step": 2085 + }, + { + "epoch": 28.978593272171253, + "grad_norm": 0.2201499044895172, + "learning_rate": 0.0006, + "loss": 3.7850542068481445, + "step": 2086 + }, + { + "epoch": 28.992573176059416, + "grad_norm": 0.22226814925670624, + "learning_rate": 0.0006, + "loss": 3.8013534545898438, + "step": 2087 + }, + { + "epoch": 29.0, + "grad_norm": 0.27624809741973877, + "learning_rate": 0.0006, + "loss": 3.762004852294922, + "step": 2088 + }, + { + "epoch": 29.0, + "eval_loss": 4.034304618835449, + "eval_runtime": 44.6573, + "eval_samples_per_second": 54.683, + "eval_steps_per_second": 3.426, + "step": 2088 + }, + { + "epoch": 29.01397990388816, + "grad_norm": 0.2550967037677765, + "learning_rate": 0.0006, + "loss": 3.7724227905273438, + "step": 2089 + }, + { + "epoch": 29.027959807776323, + "grad_norm": 0.26730602979660034, + "learning_rate": 0.0006, + "loss": 3.7728946208953857, + "step": 2090 + }, + { + "epoch": 29.041939711664483, + "grad_norm": 0.2394205927848816, + "learning_rate": 0.0006, + "loss": 3.7737584114074707, + "step": 2091 + }, + { + "epoch": 29.055919615552643, + "grad_norm": 0.22488200664520264, + "learning_rate": 0.0006, + "loss": 3.761014938354492, + "step": 2092 + }, + { + "epoch": 29.069899519440803, + "grad_norm": 0.2389903962612152, + "learning_rate": 0.0006, + "loss": 3.766557216644287, + "step": 2093 + }, + { + "epoch": 29.083879423328966, + "grad_norm": 0.234152153134346, + "learning_rate": 0.0006, + "loss": 3.7447147369384766, + "step": 2094 + }, + { + "epoch": 29.097859327217126, + "grad_norm": 0.23123252391815186, + "learning_rate": 0.0006, + "loss": 3.77197527885437, + "step": 2095 + }, + { + "epoch": 29.111839231105286, + "grad_norm": 0.23263143002986908, + "learning_rate": 0.0006, + "loss": 3.7390198707580566, + "step": 2096 + }, + { + "epoch": 29.125819134993446, + "grad_norm": 0.23235775530338287, + "learning_rate": 0.0006, + "loss": 3.7675256729125977, + "step": 2097 + }, + { + "epoch": 29.13979903888161, + "grad_norm": 0.2208816260099411, + "learning_rate": 0.0006, + "loss": 3.7588067054748535, + "step": 2098 + }, + { + "epoch": 29.15377894276977, + "grad_norm": 0.21216371655464172, + "learning_rate": 0.0006, + "loss": 3.7370502948760986, + "step": 2099 + }, + { + "epoch": 29.16775884665793, + "grad_norm": 0.2210543155670166, + "learning_rate": 0.0006, + "loss": 3.767308473587036, + "step": 2100 + }, + { + "epoch": 29.18173875054609, + "grad_norm": 0.21628431975841522, + "learning_rate": 0.0006, + "loss": 3.7298972606658936, + "step": 2101 + }, + { + "epoch": 29.195718654434252, + "grad_norm": 0.21493588387966156, + "learning_rate": 0.0006, + "loss": 3.7806448936462402, + "step": 2102 + }, + { + "epoch": 29.209698558322412, + "grad_norm": 0.25978055596351624, + "learning_rate": 0.0006, + "loss": 3.7716293334960938, + "step": 2103 + }, + { + "epoch": 29.22367846221057, + "grad_norm": 0.2744791507720947, + "learning_rate": 0.0006, + "loss": 3.76897931098938, + "step": 2104 + }, + { + "epoch": 29.23765836609873, + "grad_norm": 0.22959400713443756, + "learning_rate": 0.0006, + "loss": 3.7545714378356934, + "step": 2105 + }, + { + "epoch": 29.251638269986895, + "grad_norm": 0.20369231700897217, + "learning_rate": 0.0006, + "loss": 3.7944722175598145, + "step": 2106 + }, + { + "epoch": 29.265618173875055, + "grad_norm": 0.21663758158683777, + "learning_rate": 0.0006, + "loss": 3.7564756870269775, + "step": 2107 + }, + { + "epoch": 29.279598077763215, + "grad_norm": 0.21862861514091492, + "learning_rate": 0.0006, + "loss": 3.7722725868225098, + "step": 2108 + }, + { + "epoch": 29.293577981651374, + "grad_norm": 0.2044878453016281, + "learning_rate": 0.0006, + "loss": 3.7471303939819336, + "step": 2109 + }, + { + "epoch": 29.307557885539538, + "grad_norm": 0.23015929758548737, + "learning_rate": 0.0006, + "loss": 3.7584962844848633, + "step": 2110 + }, + { + "epoch": 29.321537789427698, + "grad_norm": 0.22548329830169678, + "learning_rate": 0.0006, + "loss": 3.795933723449707, + "step": 2111 + }, + { + "epoch": 29.335517693315857, + "grad_norm": 0.2000468522310257, + "learning_rate": 0.0006, + "loss": 3.766310691833496, + "step": 2112 + }, + { + "epoch": 29.34949759720402, + "grad_norm": 0.19711551070213318, + "learning_rate": 0.0006, + "loss": 3.7296276092529297, + "step": 2113 + }, + { + "epoch": 29.36347750109218, + "grad_norm": 0.18838997185230255, + "learning_rate": 0.0006, + "loss": 3.7685282230377197, + "step": 2114 + }, + { + "epoch": 29.37745740498034, + "grad_norm": 0.1897876113653183, + "learning_rate": 0.0006, + "loss": 3.7280936241149902, + "step": 2115 + }, + { + "epoch": 29.3914373088685, + "grad_norm": 0.21697933971881866, + "learning_rate": 0.0006, + "loss": 3.7991929054260254, + "step": 2116 + }, + { + "epoch": 29.405417212756664, + "grad_norm": 0.23445849120616913, + "learning_rate": 0.0006, + "loss": 3.7857418060302734, + "step": 2117 + }, + { + "epoch": 29.419397116644824, + "grad_norm": 0.24155527353286743, + "learning_rate": 0.0006, + "loss": 3.7897872924804688, + "step": 2118 + }, + { + "epoch": 29.433377020532983, + "grad_norm": 0.2610265016555786, + "learning_rate": 0.0006, + "loss": 3.7867324352264404, + "step": 2119 + }, + { + "epoch": 29.447356924421143, + "grad_norm": 0.2809581160545349, + "learning_rate": 0.0006, + "loss": 3.783799648284912, + "step": 2120 + }, + { + "epoch": 29.461336828309307, + "grad_norm": 0.2621572017669678, + "learning_rate": 0.0006, + "loss": 3.7778549194335938, + "step": 2121 + }, + { + "epoch": 29.475316732197467, + "grad_norm": 0.26002970337867737, + "learning_rate": 0.0006, + "loss": 3.787945508956909, + "step": 2122 + }, + { + "epoch": 29.489296636085626, + "grad_norm": 0.24866686761379242, + "learning_rate": 0.0006, + "loss": 3.7406349182128906, + "step": 2123 + }, + { + "epoch": 29.503276539973786, + "grad_norm": 0.25588324666023254, + "learning_rate": 0.0006, + "loss": 3.785625457763672, + "step": 2124 + }, + { + "epoch": 29.51725644386195, + "grad_norm": 0.24724243581295013, + "learning_rate": 0.0006, + "loss": 3.7581701278686523, + "step": 2125 + }, + { + "epoch": 29.53123634775011, + "grad_norm": 0.23544734716415405, + "learning_rate": 0.0006, + "loss": 3.8163957595825195, + "step": 2126 + }, + { + "epoch": 29.54521625163827, + "grad_norm": 0.2108801156282425, + "learning_rate": 0.0006, + "loss": 3.7881739139556885, + "step": 2127 + }, + { + "epoch": 29.55919615552643, + "grad_norm": 0.20459668338298798, + "learning_rate": 0.0006, + "loss": 3.7641284465789795, + "step": 2128 + }, + { + "epoch": 29.573176059414592, + "grad_norm": 0.24020728468894958, + "learning_rate": 0.0006, + "loss": 3.7748730182647705, + "step": 2129 + }, + { + "epoch": 29.587155963302752, + "grad_norm": 0.256273478269577, + "learning_rate": 0.0006, + "loss": 3.8076486587524414, + "step": 2130 + }, + { + "epoch": 29.601135867190912, + "grad_norm": 0.23295973241329193, + "learning_rate": 0.0006, + "loss": 3.7687063217163086, + "step": 2131 + }, + { + "epoch": 29.615115771079076, + "grad_norm": 0.21554847061634064, + "learning_rate": 0.0006, + "loss": 3.781867027282715, + "step": 2132 + }, + { + "epoch": 29.629095674967235, + "grad_norm": 0.20645774900913239, + "learning_rate": 0.0006, + "loss": 3.7813425064086914, + "step": 2133 + }, + { + "epoch": 29.643075578855395, + "grad_norm": 0.2018265724182129, + "learning_rate": 0.0006, + "loss": 3.772895574569702, + "step": 2134 + }, + { + "epoch": 29.657055482743555, + "grad_norm": 0.20170100033283234, + "learning_rate": 0.0006, + "loss": 3.7819175720214844, + "step": 2135 + }, + { + "epoch": 29.67103538663172, + "grad_norm": 0.22640688717365265, + "learning_rate": 0.0006, + "loss": 3.7999017238616943, + "step": 2136 + }, + { + "epoch": 29.68501529051988, + "grad_norm": 0.23747675120830536, + "learning_rate": 0.0006, + "loss": 3.804999828338623, + "step": 2137 + }, + { + "epoch": 29.698995194408038, + "grad_norm": 0.20005857944488525, + "learning_rate": 0.0006, + "loss": 3.7815160751342773, + "step": 2138 + }, + { + "epoch": 29.712975098296198, + "grad_norm": 0.17901667952537537, + "learning_rate": 0.0006, + "loss": 3.7898688316345215, + "step": 2139 + }, + { + "epoch": 29.72695500218436, + "grad_norm": 0.1890905797481537, + "learning_rate": 0.0006, + "loss": 3.8001184463500977, + "step": 2140 + }, + { + "epoch": 29.74093490607252, + "grad_norm": 0.19565847516059875, + "learning_rate": 0.0006, + "loss": 3.7522482872009277, + "step": 2141 + }, + { + "epoch": 29.75491480996068, + "grad_norm": 0.19429196417331696, + "learning_rate": 0.0006, + "loss": 3.768972158432007, + "step": 2142 + }, + { + "epoch": 29.76889471384884, + "grad_norm": 0.23846636712551117, + "learning_rate": 0.0006, + "loss": 3.765216112136841, + "step": 2143 + }, + { + "epoch": 29.782874617737004, + "grad_norm": 0.23820780217647552, + "learning_rate": 0.0006, + "loss": 3.8027703762054443, + "step": 2144 + }, + { + "epoch": 29.796854521625164, + "grad_norm": 0.21104726195335388, + "learning_rate": 0.0006, + "loss": 3.7682833671569824, + "step": 2145 + }, + { + "epoch": 29.810834425513324, + "grad_norm": 0.1911051720380783, + "learning_rate": 0.0006, + "loss": 3.781782627105713, + "step": 2146 + }, + { + "epoch": 29.824814329401484, + "grad_norm": 0.18881288170814514, + "learning_rate": 0.0006, + "loss": 3.7703428268432617, + "step": 2147 + }, + { + "epoch": 29.838794233289647, + "grad_norm": 0.18292994797229767, + "learning_rate": 0.0006, + "loss": 3.769176721572876, + "step": 2148 + }, + { + "epoch": 29.852774137177807, + "grad_norm": 0.1777714639902115, + "learning_rate": 0.0006, + "loss": 3.7488298416137695, + "step": 2149 + }, + { + "epoch": 29.866754041065967, + "grad_norm": 0.2037898749113083, + "learning_rate": 0.0006, + "loss": 3.804396390914917, + "step": 2150 + }, + { + "epoch": 29.88073394495413, + "grad_norm": 0.2121828943490982, + "learning_rate": 0.0006, + "loss": 3.75870943069458, + "step": 2151 + }, + { + "epoch": 29.89471384884229, + "grad_norm": 0.23231184482574463, + "learning_rate": 0.0006, + "loss": 3.80178165435791, + "step": 2152 + }, + { + "epoch": 29.90869375273045, + "grad_norm": 0.24045611917972565, + "learning_rate": 0.0006, + "loss": 3.7690834999084473, + "step": 2153 + }, + { + "epoch": 29.92267365661861, + "grad_norm": 0.19830496609210968, + "learning_rate": 0.0006, + "loss": 3.764401912689209, + "step": 2154 + }, + { + "epoch": 29.936653560506773, + "grad_norm": 0.17704227566719055, + "learning_rate": 0.0006, + "loss": 3.7634594440460205, + "step": 2155 + }, + { + "epoch": 29.950633464394933, + "grad_norm": 0.17783164978027344, + "learning_rate": 0.0006, + "loss": 3.7856998443603516, + "step": 2156 + }, + { + "epoch": 29.964613368283093, + "grad_norm": 0.19684971868991852, + "learning_rate": 0.0006, + "loss": 3.805774211883545, + "step": 2157 + }, + { + "epoch": 29.978593272171253, + "grad_norm": 0.21662312746047974, + "learning_rate": 0.0006, + "loss": 3.757896661758423, + "step": 2158 + }, + { + "epoch": 29.992573176059416, + "grad_norm": 0.22000661492347717, + "learning_rate": 0.0006, + "loss": 3.7747678756713867, + "step": 2159 + }, + { + "epoch": 30.0, + "grad_norm": 0.21501901745796204, + "learning_rate": 0.0006, + "loss": 3.785585880279541, + "step": 2160 + }, + { + "epoch": 30.0, + "eval_loss": 4.034003734588623, + "eval_runtime": 44.9097, + "eval_samples_per_second": 54.376, + "eval_steps_per_second": 3.407, + "step": 2160 + }, + { + "epoch": 30.01397990388816, + "grad_norm": 0.19710904359817505, + "learning_rate": 0.0006, + "loss": 3.756235122680664, + "step": 2161 + }, + { + "epoch": 30.027959807776323, + "grad_norm": 0.19829736649990082, + "learning_rate": 0.0006, + "loss": 3.734067916870117, + "step": 2162 + }, + { + "epoch": 30.041939711664483, + "grad_norm": 0.21622520685195923, + "learning_rate": 0.0006, + "loss": 3.7329437732696533, + "step": 2163 + }, + { + "epoch": 30.055919615552643, + "grad_norm": 0.22544652223587036, + "learning_rate": 0.0006, + "loss": 3.748716354370117, + "step": 2164 + }, + { + "epoch": 30.069899519440803, + "grad_norm": 0.21098364889621735, + "learning_rate": 0.0006, + "loss": 3.779047727584839, + "step": 2165 + }, + { + "epoch": 30.083879423328966, + "grad_norm": 0.21309930086135864, + "learning_rate": 0.0006, + "loss": 3.7690274715423584, + "step": 2166 + }, + { + "epoch": 30.097859327217126, + "grad_norm": 0.23025690019130707, + "learning_rate": 0.0006, + "loss": 3.7500953674316406, + "step": 2167 + }, + { + "epoch": 30.111839231105286, + "grad_norm": 0.25107935070991516, + "learning_rate": 0.0006, + "loss": 3.745492458343506, + "step": 2168 + }, + { + "epoch": 30.125819134993446, + "grad_norm": 0.29873573780059814, + "learning_rate": 0.0006, + "loss": 3.759793758392334, + "step": 2169 + }, + { + "epoch": 30.13979903888161, + "grad_norm": 0.2810286283493042, + "learning_rate": 0.0006, + "loss": 3.772998809814453, + "step": 2170 + }, + { + "epoch": 30.15377894276977, + "grad_norm": 0.2102176398038864, + "learning_rate": 0.0006, + "loss": 3.740170955657959, + "step": 2171 + }, + { + "epoch": 30.16775884665793, + "grad_norm": 0.24143251776695251, + "learning_rate": 0.0006, + "loss": 3.7317001819610596, + "step": 2172 + }, + { + "epoch": 30.18173875054609, + "grad_norm": 0.2643064558506012, + "learning_rate": 0.0006, + "loss": 3.773263692855835, + "step": 2173 + }, + { + "epoch": 30.195718654434252, + "grad_norm": 0.27571243047714233, + "learning_rate": 0.0006, + "loss": 3.7619900703430176, + "step": 2174 + }, + { + "epoch": 30.209698558322412, + "grad_norm": 0.25359588861465454, + "learning_rate": 0.0006, + "loss": 3.7608513832092285, + "step": 2175 + }, + { + "epoch": 30.22367846221057, + "grad_norm": 0.2500684857368469, + "learning_rate": 0.0006, + "loss": 3.75856614112854, + "step": 2176 + }, + { + "epoch": 30.23765836609873, + "grad_norm": 0.23100309073925018, + "learning_rate": 0.0006, + "loss": 3.749786853790283, + "step": 2177 + }, + { + "epoch": 30.251638269986895, + "grad_norm": 0.24384984374046326, + "learning_rate": 0.0006, + "loss": 3.762244701385498, + "step": 2178 + }, + { + "epoch": 30.265618173875055, + "grad_norm": 0.24593998491764069, + "learning_rate": 0.0006, + "loss": 3.754594326019287, + "step": 2179 + }, + { + "epoch": 30.279598077763215, + "grad_norm": 0.2529342770576477, + "learning_rate": 0.0006, + "loss": 3.7641053199768066, + "step": 2180 + }, + { + "epoch": 30.293577981651374, + "grad_norm": 0.25954094529151917, + "learning_rate": 0.0006, + "loss": 3.810336112976074, + "step": 2181 + }, + { + "epoch": 30.307557885539538, + "grad_norm": 0.2249951958656311, + "learning_rate": 0.0006, + "loss": 3.7542617321014404, + "step": 2182 + }, + { + "epoch": 30.321537789427698, + "grad_norm": 0.19795064628124237, + "learning_rate": 0.0006, + "loss": 3.7734434604644775, + "step": 2183 + }, + { + "epoch": 30.335517693315857, + "grad_norm": 0.20744608342647552, + "learning_rate": 0.0006, + "loss": 3.7816128730773926, + "step": 2184 + }, + { + "epoch": 30.34949759720402, + "grad_norm": 0.19988055527210236, + "learning_rate": 0.0006, + "loss": 3.7631936073303223, + "step": 2185 + }, + { + "epoch": 30.36347750109218, + "grad_norm": 0.22226445376873016, + "learning_rate": 0.0006, + "loss": 3.762910842895508, + "step": 2186 + }, + { + "epoch": 30.37745740498034, + "grad_norm": 0.21986067295074463, + "learning_rate": 0.0006, + "loss": 3.733893394470215, + "step": 2187 + }, + { + "epoch": 30.3914373088685, + "grad_norm": 0.2170228660106659, + "learning_rate": 0.0006, + "loss": 3.726433515548706, + "step": 2188 + }, + { + "epoch": 30.405417212756664, + "grad_norm": 0.2179550975561142, + "learning_rate": 0.0006, + "loss": 3.792311668395996, + "step": 2189 + }, + { + "epoch": 30.419397116644824, + "grad_norm": 0.208037331700325, + "learning_rate": 0.0006, + "loss": 3.774639129638672, + "step": 2190 + }, + { + "epoch": 30.433377020532983, + "grad_norm": 0.20745441317558289, + "learning_rate": 0.0006, + "loss": 3.776130199432373, + "step": 2191 + }, + { + "epoch": 30.447356924421143, + "grad_norm": 0.1988024264574051, + "learning_rate": 0.0006, + "loss": 3.7453784942626953, + "step": 2192 + }, + { + "epoch": 30.461336828309307, + "grad_norm": 0.194968581199646, + "learning_rate": 0.0006, + "loss": 3.764653205871582, + "step": 2193 + }, + { + "epoch": 30.475316732197467, + "grad_norm": 0.20658300817012787, + "learning_rate": 0.0006, + "loss": 3.796513080596924, + "step": 2194 + }, + { + "epoch": 30.489296636085626, + "grad_norm": 0.2123410701751709, + "learning_rate": 0.0006, + "loss": 3.7630836963653564, + "step": 2195 + }, + { + "epoch": 30.503276539973786, + "grad_norm": 0.20894059538841248, + "learning_rate": 0.0006, + "loss": 3.7265470027923584, + "step": 2196 + }, + { + "epoch": 30.51725644386195, + "grad_norm": 0.2016828954219818, + "learning_rate": 0.0006, + "loss": 3.8083386421203613, + "step": 2197 + }, + { + "epoch": 30.53123634775011, + "grad_norm": 0.19584205746650696, + "learning_rate": 0.0006, + "loss": 3.7492105960845947, + "step": 2198 + }, + { + "epoch": 30.54521625163827, + "grad_norm": 0.18635272979736328, + "learning_rate": 0.0006, + "loss": 3.711009979248047, + "step": 2199 + }, + { + "epoch": 30.55919615552643, + "grad_norm": 0.1920594871044159, + "learning_rate": 0.0006, + "loss": 3.760801315307617, + "step": 2200 + }, + { + "epoch": 30.573176059414592, + "grad_norm": 0.1978331208229065, + "learning_rate": 0.0006, + "loss": 3.780529022216797, + "step": 2201 + }, + { + "epoch": 30.587155963302752, + "grad_norm": 0.20076943933963776, + "learning_rate": 0.0006, + "loss": 3.7767038345336914, + "step": 2202 + }, + { + "epoch": 30.601135867190912, + "grad_norm": 0.2067444622516632, + "learning_rate": 0.0006, + "loss": 3.7607920169830322, + "step": 2203 + }, + { + "epoch": 30.615115771079076, + "grad_norm": 0.2081940472126007, + "learning_rate": 0.0006, + "loss": 3.741936206817627, + "step": 2204 + }, + { + "epoch": 30.629095674967235, + "grad_norm": 0.21212869882583618, + "learning_rate": 0.0006, + "loss": 3.7597827911376953, + "step": 2205 + }, + { + "epoch": 30.643075578855395, + "grad_norm": 0.21539026498794556, + "learning_rate": 0.0006, + "loss": 3.764646053314209, + "step": 2206 + }, + { + "epoch": 30.657055482743555, + "grad_norm": 0.19788387417793274, + "learning_rate": 0.0006, + "loss": 3.7535128593444824, + "step": 2207 + }, + { + "epoch": 30.67103538663172, + "grad_norm": 0.20757688581943512, + "learning_rate": 0.0006, + "loss": 3.7414169311523438, + "step": 2208 + }, + { + "epoch": 30.68501529051988, + "grad_norm": 0.199361652135849, + "learning_rate": 0.0006, + "loss": 3.7578506469726562, + "step": 2209 + }, + { + "epoch": 30.698995194408038, + "grad_norm": 0.1909894198179245, + "learning_rate": 0.0006, + "loss": 3.736250400543213, + "step": 2210 + }, + { + "epoch": 30.712975098296198, + "grad_norm": 0.19766664505004883, + "learning_rate": 0.0006, + "loss": 3.7435379028320312, + "step": 2211 + }, + { + "epoch": 30.72695500218436, + "grad_norm": 0.21857766807079315, + "learning_rate": 0.0006, + "loss": 3.7478690147399902, + "step": 2212 + }, + { + "epoch": 30.74093490607252, + "grad_norm": 0.22385898232460022, + "learning_rate": 0.0006, + "loss": 3.7522530555725098, + "step": 2213 + }, + { + "epoch": 30.75491480996068, + "grad_norm": 0.2329241931438446, + "learning_rate": 0.0006, + "loss": 3.7568247318267822, + "step": 2214 + }, + { + "epoch": 30.76889471384884, + "grad_norm": 0.2218400090932846, + "learning_rate": 0.0006, + "loss": 3.7662744522094727, + "step": 2215 + }, + { + "epoch": 30.782874617737004, + "grad_norm": 0.21350212395191193, + "learning_rate": 0.0006, + "loss": 3.7683777809143066, + "step": 2216 + }, + { + "epoch": 30.796854521625164, + "grad_norm": 0.22357074916362762, + "learning_rate": 0.0006, + "loss": 3.763437032699585, + "step": 2217 + }, + { + "epoch": 30.810834425513324, + "grad_norm": 0.22268560528755188, + "learning_rate": 0.0006, + "loss": 3.772836685180664, + "step": 2218 + }, + { + "epoch": 30.824814329401484, + "grad_norm": 0.2434026449918747, + "learning_rate": 0.0006, + "loss": 3.752986431121826, + "step": 2219 + }, + { + "epoch": 30.838794233289647, + "grad_norm": 0.2298414409160614, + "learning_rate": 0.0006, + "loss": 3.7837061882019043, + "step": 2220 + }, + { + "epoch": 30.852774137177807, + "grad_norm": 0.227672278881073, + "learning_rate": 0.0006, + "loss": 3.746065378189087, + "step": 2221 + }, + { + "epoch": 30.866754041065967, + "grad_norm": 0.2562827169895172, + "learning_rate": 0.0006, + "loss": 3.7741947174072266, + "step": 2222 + }, + { + "epoch": 30.88073394495413, + "grad_norm": 0.23657815158367157, + "learning_rate": 0.0006, + "loss": 3.746457099914551, + "step": 2223 + }, + { + "epoch": 30.89471384884229, + "grad_norm": 0.2158907800912857, + "learning_rate": 0.0006, + "loss": 3.7821710109710693, + "step": 2224 + }, + { + "epoch": 30.90869375273045, + "grad_norm": 0.22501254081726074, + "learning_rate": 0.0006, + "loss": 3.7528274059295654, + "step": 2225 + }, + { + "epoch": 30.92267365661861, + "grad_norm": 0.20252224802970886, + "learning_rate": 0.0006, + "loss": 3.749418258666992, + "step": 2226 + }, + { + "epoch": 30.936653560506773, + "grad_norm": 0.2067883312702179, + "learning_rate": 0.0006, + "loss": 3.7560606002807617, + "step": 2227 + }, + { + "epoch": 30.950633464394933, + "grad_norm": 0.23104053735733032, + "learning_rate": 0.0006, + "loss": 3.7883846759796143, + "step": 2228 + }, + { + "epoch": 30.964613368283093, + "grad_norm": 0.21476604044437408, + "learning_rate": 0.0006, + "loss": 3.7976977825164795, + "step": 2229 + }, + { + "epoch": 30.978593272171253, + "grad_norm": 0.2130427062511444, + "learning_rate": 0.0006, + "loss": 3.7429304122924805, + "step": 2230 + }, + { + "epoch": 30.992573176059416, + "grad_norm": 0.2047216147184372, + "learning_rate": 0.0006, + "loss": 3.7669787406921387, + "step": 2231 + }, + { + "epoch": 31.0, + "grad_norm": 0.22254081070423126, + "learning_rate": 0.0006, + "loss": 3.7794251441955566, + "step": 2232 + }, + { + "epoch": 31.0, + "eval_loss": 4.039162635803223, + "eval_runtime": 44.9069, + "eval_samples_per_second": 54.379, + "eval_steps_per_second": 3.407, + "step": 2232 + }, + { + "epoch": 31.01397990388816, + "grad_norm": 0.2278132289648056, + "learning_rate": 0.0006, + "loss": 3.7363929748535156, + "step": 2233 + }, + { + "epoch": 31.027959807776323, + "grad_norm": 0.2377072274684906, + "learning_rate": 0.0006, + "loss": 3.72847318649292, + "step": 2234 + }, + { + "epoch": 31.041939711664483, + "grad_norm": 0.23790542781352997, + "learning_rate": 0.0006, + "loss": 3.767193078994751, + "step": 2235 + }, + { + "epoch": 31.055919615552643, + "grad_norm": 0.2587272524833679, + "learning_rate": 0.0006, + "loss": 3.7564640045166016, + "step": 2236 + }, + { + "epoch": 31.069899519440803, + "grad_norm": 0.27550312876701355, + "learning_rate": 0.0006, + "loss": 3.727578639984131, + "step": 2237 + }, + { + "epoch": 31.083879423328966, + "grad_norm": 0.2488662451505661, + "learning_rate": 0.0006, + "loss": 3.7420730590820312, + "step": 2238 + }, + { + "epoch": 31.097859327217126, + "grad_norm": 0.22699029743671417, + "learning_rate": 0.0006, + "loss": 3.7323155403137207, + "step": 2239 + }, + { + "epoch": 31.111839231105286, + "grad_norm": 0.23360148072242737, + "learning_rate": 0.0006, + "loss": 3.719024181365967, + "step": 2240 + }, + { + "epoch": 31.125819134993446, + "grad_norm": 0.24322988092899323, + "learning_rate": 0.0006, + "loss": 3.74485445022583, + "step": 2241 + }, + { + "epoch": 31.13979903888161, + "grad_norm": 0.2474174052476883, + "learning_rate": 0.0006, + "loss": 3.746826171875, + "step": 2242 + }, + { + "epoch": 31.15377894276977, + "grad_norm": 0.2417406439781189, + "learning_rate": 0.0006, + "loss": 3.7285032272338867, + "step": 2243 + }, + { + "epoch": 31.16775884665793, + "grad_norm": 0.2390318512916565, + "learning_rate": 0.0006, + "loss": 3.7464442253112793, + "step": 2244 + }, + { + "epoch": 31.18173875054609, + "grad_norm": 0.21819323301315308, + "learning_rate": 0.0006, + "loss": 3.735110282897949, + "step": 2245 + }, + { + "epoch": 31.195718654434252, + "grad_norm": 0.21953554451465607, + "learning_rate": 0.0006, + "loss": 3.7270030975341797, + "step": 2246 + }, + { + "epoch": 31.209698558322412, + "grad_norm": 0.1930384635925293, + "learning_rate": 0.0006, + "loss": 3.7519941329956055, + "step": 2247 + }, + { + "epoch": 31.22367846221057, + "grad_norm": 0.19799190759658813, + "learning_rate": 0.0006, + "loss": 3.7428221702575684, + "step": 2248 + }, + { + "epoch": 31.23765836609873, + "grad_norm": 0.20948201417922974, + "learning_rate": 0.0006, + "loss": 3.733120918273926, + "step": 2249 + }, + { + "epoch": 31.251638269986895, + "grad_norm": 0.23768769204616547, + "learning_rate": 0.0006, + "loss": 3.7059035301208496, + "step": 2250 + }, + { + "epoch": 31.265618173875055, + "grad_norm": 0.2808842957019806, + "learning_rate": 0.0006, + "loss": 3.7245287895202637, + "step": 2251 + }, + { + "epoch": 31.279598077763215, + "grad_norm": 0.27633124589920044, + "learning_rate": 0.0006, + "loss": 3.7436366081237793, + "step": 2252 + }, + { + "epoch": 31.293577981651374, + "grad_norm": 0.24137185513973236, + "learning_rate": 0.0006, + "loss": 3.7651219367980957, + "step": 2253 + }, + { + "epoch": 31.307557885539538, + "grad_norm": 0.22056810557842255, + "learning_rate": 0.0006, + "loss": 3.7417521476745605, + "step": 2254 + }, + { + "epoch": 31.321537789427698, + "grad_norm": 0.20137323439121246, + "learning_rate": 0.0006, + "loss": 3.750187397003174, + "step": 2255 + }, + { + "epoch": 31.335517693315857, + "grad_norm": 0.2142433375120163, + "learning_rate": 0.0006, + "loss": 3.7292675971984863, + "step": 2256 + }, + { + "epoch": 31.34949759720402, + "grad_norm": 0.21193967759609222, + "learning_rate": 0.0006, + "loss": 3.7459473609924316, + "step": 2257 + }, + { + "epoch": 31.36347750109218, + "grad_norm": 0.21418534219264984, + "learning_rate": 0.0006, + "loss": 3.754359722137451, + "step": 2258 + }, + { + "epoch": 31.37745740498034, + "grad_norm": 0.23507359623908997, + "learning_rate": 0.0006, + "loss": 3.763413906097412, + "step": 2259 + }, + { + "epoch": 31.3914373088685, + "grad_norm": 0.20393887162208557, + "learning_rate": 0.0006, + "loss": 3.73878812789917, + "step": 2260 + }, + { + "epoch": 31.405417212756664, + "grad_norm": 0.21752159297466278, + "learning_rate": 0.0006, + "loss": 3.750549793243408, + "step": 2261 + }, + { + "epoch": 31.419397116644824, + "grad_norm": 0.22629529237747192, + "learning_rate": 0.0006, + "loss": 3.7791430950164795, + "step": 2262 + }, + { + "epoch": 31.433377020532983, + "grad_norm": 0.2114613950252533, + "learning_rate": 0.0006, + "loss": 3.7709264755249023, + "step": 2263 + }, + { + "epoch": 31.447356924421143, + "grad_norm": 0.23241667449474335, + "learning_rate": 0.0006, + "loss": 3.745750665664673, + "step": 2264 + }, + { + "epoch": 31.461336828309307, + "grad_norm": 0.2434246987104416, + "learning_rate": 0.0006, + "loss": 3.769727945327759, + "step": 2265 + }, + { + "epoch": 31.475316732197467, + "grad_norm": 0.247820645570755, + "learning_rate": 0.0006, + "loss": 3.7528204917907715, + "step": 2266 + }, + { + "epoch": 31.489296636085626, + "grad_norm": 0.21287164092063904, + "learning_rate": 0.0006, + "loss": 3.728661060333252, + "step": 2267 + }, + { + "epoch": 31.503276539973786, + "grad_norm": 0.20983846485614777, + "learning_rate": 0.0006, + "loss": 3.7524428367614746, + "step": 2268 + }, + { + "epoch": 31.51725644386195, + "grad_norm": 0.23799288272857666, + "learning_rate": 0.0006, + "loss": 3.7276647090911865, + "step": 2269 + }, + { + "epoch": 31.53123634775011, + "grad_norm": 0.247065007686615, + "learning_rate": 0.0006, + "loss": 3.7506704330444336, + "step": 2270 + }, + { + "epoch": 31.54521625163827, + "grad_norm": 0.20670939981937408, + "learning_rate": 0.0006, + "loss": 3.71852445602417, + "step": 2271 + }, + { + "epoch": 31.55919615552643, + "grad_norm": 0.19463716447353363, + "learning_rate": 0.0006, + "loss": 3.732757568359375, + "step": 2272 + }, + { + "epoch": 31.573176059414592, + "grad_norm": 0.20368841290473938, + "learning_rate": 0.0006, + "loss": 3.746676445007324, + "step": 2273 + }, + { + "epoch": 31.587155963302752, + "grad_norm": 0.19691342115402222, + "learning_rate": 0.0006, + "loss": 3.7535760402679443, + "step": 2274 + }, + { + "epoch": 31.601135867190912, + "grad_norm": 0.2026553899049759, + "learning_rate": 0.0006, + "loss": 3.7406957149505615, + "step": 2275 + }, + { + "epoch": 31.615115771079076, + "grad_norm": 0.21494299173355103, + "learning_rate": 0.0006, + "loss": 3.735888957977295, + "step": 2276 + }, + { + "epoch": 31.629095674967235, + "grad_norm": 0.21644766628742218, + "learning_rate": 0.0006, + "loss": 3.723767042160034, + "step": 2277 + }, + { + "epoch": 31.643075578855395, + "grad_norm": 0.20087581872940063, + "learning_rate": 0.0006, + "loss": 3.7622008323669434, + "step": 2278 + }, + { + "epoch": 31.657055482743555, + "grad_norm": 0.1949695646762848, + "learning_rate": 0.0006, + "loss": 3.7726354598999023, + "step": 2279 + }, + { + "epoch": 31.67103538663172, + "grad_norm": 0.19120797514915466, + "learning_rate": 0.0006, + "loss": 3.7454679012298584, + "step": 2280 + }, + { + "epoch": 31.68501529051988, + "grad_norm": 0.19480115175247192, + "learning_rate": 0.0006, + "loss": 3.743934392929077, + "step": 2281 + }, + { + "epoch": 31.698995194408038, + "grad_norm": 0.1891610324382782, + "learning_rate": 0.0006, + "loss": 3.7724897861480713, + "step": 2282 + }, + { + "epoch": 31.712975098296198, + "grad_norm": 0.18533185124397278, + "learning_rate": 0.0006, + "loss": 3.7556838989257812, + "step": 2283 + }, + { + "epoch": 31.72695500218436, + "grad_norm": 0.20079447329044342, + "learning_rate": 0.0006, + "loss": 3.76758074760437, + "step": 2284 + }, + { + "epoch": 31.74093490607252, + "grad_norm": 0.2103433609008789, + "learning_rate": 0.0006, + "loss": 3.769477367401123, + "step": 2285 + }, + { + "epoch": 31.75491480996068, + "grad_norm": 0.21428923308849335, + "learning_rate": 0.0006, + "loss": 3.7317447662353516, + "step": 2286 + }, + { + "epoch": 31.76889471384884, + "grad_norm": 0.20154133439064026, + "learning_rate": 0.0006, + "loss": 3.749814987182617, + "step": 2287 + }, + { + "epoch": 31.782874617737004, + "grad_norm": 0.18998542428016663, + "learning_rate": 0.0006, + "loss": 3.7655510902404785, + "step": 2288 + }, + { + "epoch": 31.796854521625164, + "grad_norm": 0.2068665474653244, + "learning_rate": 0.0006, + "loss": 3.7375988960266113, + "step": 2289 + }, + { + "epoch": 31.810834425513324, + "grad_norm": 0.22979815304279327, + "learning_rate": 0.0006, + "loss": 3.728095531463623, + "step": 2290 + }, + { + "epoch": 31.824814329401484, + "grad_norm": 0.2378212958574295, + "learning_rate": 0.0006, + "loss": 3.73091459274292, + "step": 2291 + }, + { + "epoch": 31.838794233289647, + "grad_norm": 0.2353672832250595, + "learning_rate": 0.0006, + "loss": 3.7491769790649414, + "step": 2292 + }, + { + "epoch": 31.852774137177807, + "grad_norm": 0.22341586649417877, + "learning_rate": 0.0006, + "loss": 3.777111530303955, + "step": 2293 + }, + { + "epoch": 31.866754041065967, + "grad_norm": 0.20436930656433105, + "learning_rate": 0.0006, + "loss": 3.740997552871704, + "step": 2294 + }, + { + "epoch": 31.88073394495413, + "grad_norm": 0.20836040377616882, + "learning_rate": 0.0006, + "loss": 3.755582571029663, + "step": 2295 + }, + { + "epoch": 31.89471384884229, + "grad_norm": 0.2045193612575531, + "learning_rate": 0.0006, + "loss": 3.7583560943603516, + "step": 2296 + }, + { + "epoch": 31.90869375273045, + "grad_norm": 0.2025591880083084, + "learning_rate": 0.0006, + "loss": 3.773345470428467, + "step": 2297 + }, + { + "epoch": 31.92267365661861, + "grad_norm": 0.20309099555015564, + "learning_rate": 0.0006, + "loss": 3.7392163276672363, + "step": 2298 + }, + { + "epoch": 31.936653560506773, + "grad_norm": 0.2129351645708084, + "learning_rate": 0.0006, + "loss": 3.7801311016082764, + "step": 2299 + }, + { + "epoch": 31.950633464394933, + "grad_norm": 0.19950738549232483, + "learning_rate": 0.0006, + "loss": 3.779261589050293, + "step": 2300 + }, + { + "epoch": 31.964613368283093, + "grad_norm": 0.22837352752685547, + "learning_rate": 0.0006, + "loss": 3.782731294631958, + "step": 2301 + }, + { + "epoch": 31.978593272171253, + "grad_norm": 0.2576889097690582, + "learning_rate": 0.0006, + "loss": 3.7778096199035645, + "step": 2302 + }, + { + "epoch": 31.992573176059416, + "grad_norm": 0.2770138382911682, + "learning_rate": 0.0006, + "loss": 3.735755443572998, + "step": 2303 + }, + { + "epoch": 32.0, + "grad_norm": 0.2632865309715271, + "learning_rate": 0.0006, + "loss": 3.7562808990478516, + "step": 2304 + }, + { + "epoch": 32.0, + "eval_loss": 4.031628608703613, + "eval_runtime": 44.2115, + "eval_samples_per_second": 55.234, + "eval_steps_per_second": 3.461, + "step": 2304 + }, + { + "epoch": 32.01397990388816, + "grad_norm": 0.20234128832817078, + "learning_rate": 0.0006, + "loss": 3.734489917755127, + "step": 2305 + }, + { + "epoch": 32.02795980777632, + "grad_norm": 0.24983637034893036, + "learning_rate": 0.0006, + "loss": 3.7351019382476807, + "step": 2306 + }, + { + "epoch": 32.04193971166448, + "grad_norm": 0.27358478307724, + "learning_rate": 0.0006, + "loss": 3.708712100982666, + "step": 2307 + }, + { + "epoch": 32.05591961555265, + "grad_norm": 0.24693739414215088, + "learning_rate": 0.0006, + "loss": 3.731858491897583, + "step": 2308 + }, + { + "epoch": 32.0698995194408, + "grad_norm": 0.22751131653785706, + "learning_rate": 0.0006, + "loss": 3.7074670791625977, + "step": 2309 + }, + { + "epoch": 32.083879423328966, + "grad_norm": 0.23400720953941345, + "learning_rate": 0.0006, + "loss": 3.714092493057251, + "step": 2310 + }, + { + "epoch": 32.09785932721712, + "grad_norm": 0.20711684226989746, + "learning_rate": 0.0006, + "loss": 3.754727840423584, + "step": 2311 + }, + { + "epoch": 32.111839231105286, + "grad_norm": 0.21589399874210358, + "learning_rate": 0.0006, + "loss": 3.6953847408294678, + "step": 2312 + }, + { + "epoch": 32.12581913499345, + "grad_norm": 0.24575738608837128, + "learning_rate": 0.0006, + "loss": 3.7078802585601807, + "step": 2313 + }, + { + "epoch": 32.139799038881605, + "grad_norm": 0.23152033984661102, + "learning_rate": 0.0006, + "loss": 3.7402305603027344, + "step": 2314 + }, + { + "epoch": 32.15377894276977, + "grad_norm": 0.22639606893062592, + "learning_rate": 0.0006, + "loss": 3.7264223098754883, + "step": 2315 + }, + { + "epoch": 32.16775884665793, + "grad_norm": 0.24701760709285736, + "learning_rate": 0.0006, + "loss": 3.7497639656066895, + "step": 2316 + }, + { + "epoch": 32.18173875054609, + "grad_norm": 0.274832159280777, + "learning_rate": 0.0006, + "loss": 3.7557122707366943, + "step": 2317 + }, + { + "epoch": 32.19571865443425, + "grad_norm": 0.27472418546676636, + "learning_rate": 0.0006, + "loss": 3.6863393783569336, + "step": 2318 + }, + { + "epoch": 32.20969855832241, + "grad_norm": 0.2625530958175659, + "learning_rate": 0.0006, + "loss": 3.7203545570373535, + "step": 2319 + }, + { + "epoch": 32.22367846221057, + "grad_norm": 0.2576068341732025, + "learning_rate": 0.0006, + "loss": 3.734747886657715, + "step": 2320 + }, + { + "epoch": 32.237658366098735, + "grad_norm": 0.25946059823036194, + "learning_rate": 0.0006, + "loss": 3.7501730918884277, + "step": 2321 + }, + { + "epoch": 32.25163826998689, + "grad_norm": 0.2524135410785675, + "learning_rate": 0.0006, + "loss": 3.75177001953125, + "step": 2322 + }, + { + "epoch": 32.265618173875055, + "grad_norm": 0.2568551003932953, + "learning_rate": 0.0006, + "loss": 3.752450704574585, + "step": 2323 + }, + { + "epoch": 32.27959807776322, + "grad_norm": 0.2489749640226364, + "learning_rate": 0.0006, + "loss": 3.711735486984253, + "step": 2324 + }, + { + "epoch": 32.293577981651374, + "grad_norm": 0.2425498366355896, + "learning_rate": 0.0006, + "loss": 3.7004239559173584, + "step": 2325 + }, + { + "epoch": 32.30755788553954, + "grad_norm": 0.24359773099422455, + "learning_rate": 0.0006, + "loss": 3.733870029449463, + "step": 2326 + }, + { + "epoch": 32.3215377894277, + "grad_norm": 0.22314727306365967, + "learning_rate": 0.0006, + "loss": 3.699841022491455, + "step": 2327 + }, + { + "epoch": 32.33551769331586, + "grad_norm": 0.2047620266675949, + "learning_rate": 0.0006, + "loss": 3.732534170150757, + "step": 2328 + }, + { + "epoch": 32.34949759720402, + "grad_norm": 0.24393224716186523, + "learning_rate": 0.0006, + "loss": 3.7200770378112793, + "step": 2329 + }, + { + "epoch": 32.36347750109218, + "grad_norm": 0.23884256184101105, + "learning_rate": 0.0006, + "loss": 3.722318410873413, + "step": 2330 + }, + { + "epoch": 32.37745740498034, + "grad_norm": 0.23262189328670502, + "learning_rate": 0.0006, + "loss": 3.759033203125, + "step": 2331 + }, + { + "epoch": 32.391437308868504, + "grad_norm": 0.22542893886566162, + "learning_rate": 0.0006, + "loss": 3.729198694229126, + "step": 2332 + }, + { + "epoch": 32.40541721275666, + "grad_norm": 0.22479060292243958, + "learning_rate": 0.0006, + "loss": 3.7298169136047363, + "step": 2333 + }, + { + "epoch": 32.419397116644824, + "grad_norm": 0.21571804583072662, + "learning_rate": 0.0006, + "loss": 3.699937343597412, + "step": 2334 + }, + { + "epoch": 32.43337702053299, + "grad_norm": 0.20804545283317566, + "learning_rate": 0.0006, + "loss": 3.7495696544647217, + "step": 2335 + }, + { + "epoch": 32.44735692442114, + "grad_norm": 0.22751706838607788, + "learning_rate": 0.0006, + "loss": 3.7369821071624756, + "step": 2336 + }, + { + "epoch": 32.46133682830931, + "grad_norm": 0.2326795756816864, + "learning_rate": 0.0006, + "loss": 3.7636334896087646, + "step": 2337 + }, + { + "epoch": 32.47531673219746, + "grad_norm": 0.19971159100532532, + "learning_rate": 0.0006, + "loss": 3.72151517868042, + "step": 2338 + }, + { + "epoch": 32.489296636085626, + "grad_norm": 0.21078036725521088, + "learning_rate": 0.0006, + "loss": 3.7050065994262695, + "step": 2339 + }, + { + "epoch": 32.50327653997379, + "grad_norm": 0.22198088467121124, + "learning_rate": 0.0006, + "loss": 3.7654409408569336, + "step": 2340 + }, + { + "epoch": 32.517256443861946, + "grad_norm": 0.20995207130908966, + "learning_rate": 0.0006, + "loss": 3.7516250610351562, + "step": 2341 + }, + { + "epoch": 32.53123634775011, + "grad_norm": 0.20757141709327698, + "learning_rate": 0.0006, + "loss": 3.7412633895874023, + "step": 2342 + }, + { + "epoch": 32.54521625163827, + "grad_norm": 0.20053881406784058, + "learning_rate": 0.0006, + "loss": 3.7477493286132812, + "step": 2343 + }, + { + "epoch": 32.55919615552643, + "grad_norm": 0.20223091542720795, + "learning_rate": 0.0006, + "loss": 3.7149064540863037, + "step": 2344 + }, + { + "epoch": 32.57317605941459, + "grad_norm": 0.20179468393325806, + "learning_rate": 0.0006, + "loss": 3.70635724067688, + "step": 2345 + }, + { + "epoch": 32.58715596330275, + "grad_norm": 0.19670480489730835, + "learning_rate": 0.0006, + "loss": 3.7276744842529297, + "step": 2346 + }, + { + "epoch": 32.60113586719091, + "grad_norm": 0.1992012858390808, + "learning_rate": 0.0006, + "loss": 3.7659356594085693, + "step": 2347 + }, + { + "epoch": 32.615115771079076, + "grad_norm": 0.20124201476573944, + "learning_rate": 0.0006, + "loss": 3.722212791442871, + "step": 2348 + }, + { + "epoch": 32.62909567496723, + "grad_norm": 0.21972708404064178, + "learning_rate": 0.0006, + "loss": 3.751830577850342, + "step": 2349 + }, + { + "epoch": 32.643075578855395, + "grad_norm": 0.20454947650432587, + "learning_rate": 0.0006, + "loss": 3.7196669578552246, + "step": 2350 + }, + { + "epoch": 32.65705548274356, + "grad_norm": 0.1783330887556076, + "learning_rate": 0.0006, + "loss": 3.721461772918701, + "step": 2351 + }, + { + "epoch": 32.671035386631715, + "grad_norm": 0.2027900367975235, + "learning_rate": 0.0006, + "loss": 3.753718614578247, + "step": 2352 + }, + { + "epoch": 32.68501529051988, + "grad_norm": 0.21232381463050842, + "learning_rate": 0.0006, + "loss": 3.732736349105835, + "step": 2353 + }, + { + "epoch": 32.69899519440804, + "grad_norm": 0.2214568555355072, + "learning_rate": 0.0006, + "loss": 3.7250165939331055, + "step": 2354 + }, + { + "epoch": 32.7129750982962, + "grad_norm": 0.2626485228538513, + "learning_rate": 0.0006, + "loss": 3.72263503074646, + "step": 2355 + }, + { + "epoch": 32.72695500218436, + "grad_norm": 0.30096277594566345, + "learning_rate": 0.0006, + "loss": 3.7599854469299316, + "step": 2356 + }, + { + "epoch": 32.74093490607252, + "grad_norm": 0.3374342620372772, + "learning_rate": 0.0006, + "loss": 3.7493844032287598, + "step": 2357 + }, + { + "epoch": 32.75491480996068, + "grad_norm": 0.3051377534866333, + "learning_rate": 0.0006, + "loss": 3.7515692710876465, + "step": 2358 + }, + { + "epoch": 32.768894713848844, + "grad_norm": 0.2130587249994278, + "learning_rate": 0.0006, + "loss": 3.751307964324951, + "step": 2359 + }, + { + "epoch": 32.782874617737, + "grad_norm": 0.25198230147361755, + "learning_rate": 0.0006, + "loss": 3.7500064373016357, + "step": 2360 + }, + { + "epoch": 32.796854521625164, + "grad_norm": 0.27613863348960876, + "learning_rate": 0.0006, + "loss": 3.7257039546966553, + "step": 2361 + }, + { + "epoch": 32.81083442551333, + "grad_norm": 0.23749367892742157, + "learning_rate": 0.0006, + "loss": 3.778343439102173, + "step": 2362 + }, + { + "epoch": 32.824814329401484, + "grad_norm": 0.2063702642917633, + "learning_rate": 0.0006, + "loss": 3.7493772506713867, + "step": 2363 + }, + { + "epoch": 32.83879423328965, + "grad_norm": 0.21169374883174896, + "learning_rate": 0.0006, + "loss": 3.722567081451416, + "step": 2364 + }, + { + "epoch": 32.8527741371778, + "grad_norm": 0.23291490972042084, + "learning_rate": 0.0006, + "loss": 3.7555532455444336, + "step": 2365 + }, + { + "epoch": 32.86675404106597, + "grad_norm": 0.21486155688762665, + "learning_rate": 0.0006, + "loss": 3.7401528358459473, + "step": 2366 + }, + { + "epoch": 32.88073394495413, + "grad_norm": 0.2296247035264969, + "learning_rate": 0.0006, + "loss": 3.7867965698242188, + "step": 2367 + }, + { + "epoch": 32.89471384884229, + "grad_norm": 0.2335108071565628, + "learning_rate": 0.0006, + "loss": 3.768036365509033, + "step": 2368 + }, + { + "epoch": 32.90869375273045, + "grad_norm": 0.23921863734722137, + "learning_rate": 0.0006, + "loss": 3.725252151489258, + "step": 2369 + }, + { + "epoch": 32.92267365661861, + "grad_norm": 0.20303526520729065, + "learning_rate": 0.0006, + "loss": 3.7806248664855957, + "step": 2370 + }, + { + "epoch": 32.93665356050677, + "grad_norm": 0.19293150305747986, + "learning_rate": 0.0006, + "loss": 3.759281873703003, + "step": 2371 + }, + { + "epoch": 32.95063346439493, + "grad_norm": 0.20609107613563538, + "learning_rate": 0.0006, + "loss": 3.764190196990967, + "step": 2372 + }, + { + "epoch": 32.964613368283096, + "grad_norm": 0.2014189213514328, + "learning_rate": 0.0006, + "loss": 3.7365214824676514, + "step": 2373 + }, + { + "epoch": 32.97859327217125, + "grad_norm": 0.22045451402664185, + "learning_rate": 0.0006, + "loss": 3.7435812950134277, + "step": 2374 + }, + { + "epoch": 32.992573176059416, + "grad_norm": 0.24228639900684357, + "learning_rate": 0.0006, + "loss": 3.751309394836426, + "step": 2375 + }, + { + "epoch": 33.0, + "grad_norm": 0.2645106613636017, + "learning_rate": 0.0006, + "loss": 3.7629928588867188, + "step": 2376 + }, + { + "epoch": 33.0, + "eval_loss": 4.026789665222168, + "eval_runtime": 44.9957, + "eval_samples_per_second": 54.272, + "eval_steps_per_second": 3.4, + "step": 2376 + }, + { + "epoch": 33.01397990388816, + "grad_norm": 0.21402551233768463, + "learning_rate": 0.0006, + "loss": 3.72019100189209, + "step": 2377 + }, + { + "epoch": 33.02795980777632, + "grad_norm": 0.23886585235595703, + "learning_rate": 0.0006, + "loss": 3.687084674835205, + "step": 2378 + }, + { + "epoch": 33.04193971166448, + "grad_norm": 0.29936572909355164, + "learning_rate": 0.0006, + "loss": 3.697310447692871, + "step": 2379 + }, + { + "epoch": 33.05591961555265, + "grad_norm": 0.30007585883140564, + "learning_rate": 0.0006, + "loss": 3.6913352012634277, + "step": 2380 + }, + { + "epoch": 33.0698995194408, + "grad_norm": 0.26594656705856323, + "learning_rate": 0.0006, + "loss": 3.740802526473999, + "step": 2381 + }, + { + "epoch": 33.083879423328966, + "grad_norm": 0.2658730447292328, + "learning_rate": 0.0006, + "loss": 3.692746162414551, + "step": 2382 + }, + { + "epoch": 33.09785932721712, + "grad_norm": 0.26755523681640625, + "learning_rate": 0.0006, + "loss": 3.7534420490264893, + "step": 2383 + }, + { + "epoch": 33.111839231105286, + "grad_norm": 0.23070940375328064, + "learning_rate": 0.0006, + "loss": 3.717876672744751, + "step": 2384 + }, + { + "epoch": 33.12581913499345, + "grad_norm": 0.2476235181093216, + "learning_rate": 0.0006, + "loss": 3.7072248458862305, + "step": 2385 + }, + { + "epoch": 33.139799038881605, + "grad_norm": 0.2454477846622467, + "learning_rate": 0.0006, + "loss": 3.729762077331543, + "step": 2386 + }, + { + "epoch": 33.15377894276977, + "grad_norm": 0.24090935289859772, + "learning_rate": 0.0006, + "loss": 3.721374988555908, + "step": 2387 + }, + { + "epoch": 33.16775884665793, + "grad_norm": 0.2440263032913208, + "learning_rate": 0.0006, + "loss": 3.730433464050293, + "step": 2388 + }, + { + "epoch": 33.18173875054609, + "grad_norm": 0.21699118614196777, + "learning_rate": 0.0006, + "loss": 3.724730968475342, + "step": 2389 + }, + { + "epoch": 33.19571865443425, + "grad_norm": 0.2302001267671585, + "learning_rate": 0.0006, + "loss": 3.69376277923584, + "step": 2390 + }, + { + "epoch": 33.20969855832241, + "grad_norm": 0.24707409739494324, + "learning_rate": 0.0006, + "loss": 3.705653667449951, + "step": 2391 + }, + { + "epoch": 33.22367846221057, + "grad_norm": 0.22896641492843628, + "learning_rate": 0.0006, + "loss": 3.747000217437744, + "step": 2392 + }, + { + "epoch": 33.237658366098735, + "grad_norm": 0.2278730720281601, + "learning_rate": 0.0006, + "loss": 3.733464241027832, + "step": 2393 + }, + { + "epoch": 33.25163826998689, + "grad_norm": 0.23909862339496613, + "learning_rate": 0.0006, + "loss": 3.733661413192749, + "step": 2394 + }, + { + "epoch": 33.265618173875055, + "grad_norm": 0.2349950075149536, + "learning_rate": 0.0006, + "loss": 3.7337965965270996, + "step": 2395 + }, + { + "epoch": 33.27959807776322, + "grad_norm": 0.22655968368053436, + "learning_rate": 0.0006, + "loss": 3.70503306388855, + "step": 2396 + }, + { + "epoch": 33.293577981651374, + "grad_norm": 0.22167043387889862, + "learning_rate": 0.0006, + "loss": 3.738797903060913, + "step": 2397 + }, + { + "epoch": 33.30755788553954, + "grad_norm": 0.2278883010149002, + "learning_rate": 0.0006, + "loss": 3.712550640106201, + "step": 2398 + }, + { + "epoch": 33.3215377894277, + "grad_norm": 0.2220565229654312, + "learning_rate": 0.0006, + "loss": 3.7278006076812744, + "step": 2399 + }, + { + "epoch": 33.33551769331586, + "grad_norm": 0.21888740360736847, + "learning_rate": 0.0006, + "loss": 3.72243595123291, + "step": 2400 + }, + { + "epoch": 33.34949759720402, + "grad_norm": 0.21587581932544708, + "learning_rate": 0.0006, + "loss": 3.7177581787109375, + "step": 2401 + }, + { + "epoch": 33.36347750109218, + "grad_norm": 0.1923578530550003, + "learning_rate": 0.0006, + "loss": 3.711294651031494, + "step": 2402 + }, + { + "epoch": 33.37745740498034, + "grad_norm": 0.1994934380054474, + "learning_rate": 0.0006, + "loss": 3.762061595916748, + "step": 2403 + }, + { + "epoch": 33.391437308868504, + "grad_norm": 0.20074427127838135, + "learning_rate": 0.0006, + "loss": 3.708559036254883, + "step": 2404 + }, + { + "epoch": 33.40541721275666, + "grad_norm": 0.21349482238292694, + "learning_rate": 0.0006, + "loss": 3.7089147567749023, + "step": 2405 + }, + { + "epoch": 33.419397116644824, + "grad_norm": 0.25523608922958374, + "learning_rate": 0.0006, + "loss": 3.7241058349609375, + "step": 2406 + }, + { + "epoch": 33.43337702053299, + "grad_norm": 0.27654796838760376, + "learning_rate": 0.0006, + "loss": 3.723618984222412, + "step": 2407 + }, + { + "epoch": 33.44735692442114, + "grad_norm": 0.2651479244232178, + "learning_rate": 0.0006, + "loss": 3.7367782592773438, + "step": 2408 + }, + { + "epoch": 33.46133682830931, + "grad_norm": 0.23403556644916534, + "learning_rate": 0.0006, + "loss": 3.7198312282562256, + "step": 2409 + }, + { + "epoch": 33.47531673219746, + "grad_norm": 0.20970726013183594, + "learning_rate": 0.0006, + "loss": 3.7088186740875244, + "step": 2410 + }, + { + "epoch": 33.489296636085626, + "grad_norm": 0.18532544374465942, + "learning_rate": 0.0006, + "loss": 3.7162208557128906, + "step": 2411 + }, + { + "epoch": 33.50327653997379, + "grad_norm": 0.19590279459953308, + "learning_rate": 0.0006, + "loss": 3.766357898712158, + "step": 2412 + }, + { + "epoch": 33.517256443861946, + "grad_norm": 0.203349307179451, + "learning_rate": 0.0006, + "loss": 3.732177257537842, + "step": 2413 + }, + { + "epoch": 33.53123634775011, + "grad_norm": 0.2015952616930008, + "learning_rate": 0.0006, + "loss": 3.741609573364258, + "step": 2414 + }, + { + "epoch": 33.54521625163827, + "grad_norm": 0.20024161040782928, + "learning_rate": 0.0006, + "loss": 3.6894431114196777, + "step": 2415 + }, + { + "epoch": 33.55919615552643, + "grad_norm": 0.20932617783546448, + "learning_rate": 0.0006, + "loss": 3.721979856491089, + "step": 2416 + }, + { + "epoch": 33.57317605941459, + "grad_norm": 0.22069773077964783, + "learning_rate": 0.0006, + "loss": 3.712203025817871, + "step": 2417 + }, + { + "epoch": 33.58715596330275, + "grad_norm": 0.22341343760490417, + "learning_rate": 0.0006, + "loss": 3.7469263076782227, + "step": 2418 + }, + { + "epoch": 33.60113586719091, + "grad_norm": 0.21758507192134857, + "learning_rate": 0.0006, + "loss": 3.721778392791748, + "step": 2419 + }, + { + "epoch": 33.615115771079076, + "grad_norm": 0.20480088889598846, + "learning_rate": 0.0006, + "loss": 3.743570327758789, + "step": 2420 + }, + { + "epoch": 33.62909567496723, + "grad_norm": 0.23068399727344513, + "learning_rate": 0.0006, + "loss": 3.7203001976013184, + "step": 2421 + }, + { + "epoch": 33.643075578855395, + "grad_norm": 0.2526263892650604, + "learning_rate": 0.0006, + "loss": 3.7336440086364746, + "step": 2422 + }, + { + "epoch": 33.65705548274356, + "grad_norm": 0.218627467751503, + "learning_rate": 0.0006, + "loss": 3.730762243270874, + "step": 2423 + }, + { + "epoch": 33.671035386631715, + "grad_norm": 0.21883417665958405, + "learning_rate": 0.0006, + "loss": 3.749356508255005, + "step": 2424 + }, + { + "epoch": 33.68501529051988, + "grad_norm": 0.22885626554489136, + "learning_rate": 0.0006, + "loss": 3.7426199913024902, + "step": 2425 + }, + { + "epoch": 33.69899519440804, + "grad_norm": 0.23709580302238464, + "learning_rate": 0.0006, + "loss": 3.691652774810791, + "step": 2426 + }, + { + "epoch": 33.7129750982962, + "grad_norm": 0.2258225381374359, + "learning_rate": 0.0006, + "loss": 3.7368886470794678, + "step": 2427 + }, + { + "epoch": 33.72695500218436, + "grad_norm": 0.1993306577205658, + "learning_rate": 0.0006, + "loss": 3.722733497619629, + "step": 2428 + }, + { + "epoch": 33.74093490607252, + "grad_norm": 0.20307473838329315, + "learning_rate": 0.0006, + "loss": 3.7507500648498535, + "step": 2429 + }, + { + "epoch": 33.75491480996068, + "grad_norm": 0.20076696574687958, + "learning_rate": 0.0006, + "loss": 3.6896910667419434, + "step": 2430 + }, + { + "epoch": 33.768894713848844, + "grad_norm": 0.21118830144405365, + "learning_rate": 0.0006, + "loss": 3.7176647186279297, + "step": 2431 + }, + { + "epoch": 33.782874617737, + "grad_norm": 0.21605782210826874, + "learning_rate": 0.0006, + "loss": 3.7423641681671143, + "step": 2432 + }, + { + "epoch": 33.796854521625164, + "grad_norm": 0.22233152389526367, + "learning_rate": 0.0006, + "loss": 3.7296109199523926, + "step": 2433 + }, + { + "epoch": 33.81083442551333, + "grad_norm": 0.2253616899251938, + "learning_rate": 0.0006, + "loss": 3.7095072269439697, + "step": 2434 + }, + { + "epoch": 33.824814329401484, + "grad_norm": 0.2105807662010193, + "learning_rate": 0.0006, + "loss": 3.760921001434326, + "step": 2435 + }, + { + "epoch": 33.83879423328965, + "grad_norm": 0.20413213968276978, + "learning_rate": 0.0006, + "loss": 3.7356553077697754, + "step": 2436 + }, + { + "epoch": 33.8527741371778, + "grad_norm": 0.19781213998794556, + "learning_rate": 0.0006, + "loss": 3.726787567138672, + "step": 2437 + }, + { + "epoch": 33.86675404106597, + "grad_norm": 0.199616938829422, + "learning_rate": 0.0006, + "loss": 3.7200419902801514, + "step": 2438 + }, + { + "epoch": 33.88073394495413, + "grad_norm": 0.19702564179897308, + "learning_rate": 0.0006, + "loss": 3.714287281036377, + "step": 2439 + }, + { + "epoch": 33.89471384884229, + "grad_norm": 0.19456833600997925, + "learning_rate": 0.0006, + "loss": 3.739231586456299, + "step": 2440 + }, + { + "epoch": 33.90869375273045, + "grad_norm": 0.1890697181224823, + "learning_rate": 0.0006, + "loss": 3.7088429927825928, + "step": 2441 + }, + { + "epoch": 33.92267365661861, + "grad_norm": 0.1845911741256714, + "learning_rate": 0.0006, + "loss": 3.760782241821289, + "step": 2442 + }, + { + "epoch": 33.93665356050677, + "grad_norm": 0.19045902788639069, + "learning_rate": 0.0006, + "loss": 3.736957311630249, + "step": 2443 + }, + { + "epoch": 33.95063346439493, + "grad_norm": 0.1934187412261963, + "learning_rate": 0.0006, + "loss": 3.756351947784424, + "step": 2444 + }, + { + "epoch": 33.964613368283096, + "grad_norm": 0.19774580001831055, + "learning_rate": 0.0006, + "loss": 3.7332229614257812, + "step": 2445 + }, + { + "epoch": 33.97859327217125, + "grad_norm": 0.20653048157691956, + "learning_rate": 0.0006, + "loss": 3.7112321853637695, + "step": 2446 + }, + { + "epoch": 33.992573176059416, + "grad_norm": 0.18618541955947876, + "learning_rate": 0.0006, + "loss": 3.735710620880127, + "step": 2447 + }, + { + "epoch": 34.0, + "grad_norm": 0.22846414148807526, + "learning_rate": 0.0006, + "loss": 3.739706039428711, + "step": 2448 + }, + { + "epoch": 34.0, + "eval_loss": 4.0099663734436035, + "eval_runtime": 45.2096, + "eval_samples_per_second": 54.015, + "eval_steps_per_second": 3.384, + "step": 2448 + }, + { + "epoch": 34.01397990388816, + "grad_norm": 0.20987462997436523, + "learning_rate": 0.0006, + "loss": 3.6798832416534424, + "step": 2449 + }, + { + "epoch": 34.02795980777632, + "grad_norm": 0.2230423390865326, + "learning_rate": 0.0006, + "loss": 3.7157368659973145, + "step": 2450 + }, + { + "epoch": 34.04193971166448, + "grad_norm": 0.24115242063999176, + "learning_rate": 0.0006, + "loss": 3.696037769317627, + "step": 2451 + }, + { + "epoch": 34.05591961555265, + "grad_norm": 0.24499665200710297, + "learning_rate": 0.0006, + "loss": 3.695420742034912, + "step": 2452 + }, + { + "epoch": 34.0698995194408, + "grad_norm": 0.23336757719516754, + "learning_rate": 0.0006, + "loss": 3.7252023220062256, + "step": 2453 + }, + { + "epoch": 34.083879423328966, + "grad_norm": 0.23716159164905548, + "learning_rate": 0.0006, + "loss": 3.714542865753174, + "step": 2454 + }, + { + "epoch": 34.09785932721712, + "grad_norm": 0.2305644154548645, + "learning_rate": 0.0006, + "loss": 3.6989386081695557, + "step": 2455 + }, + { + "epoch": 34.111839231105286, + "grad_norm": 0.2281671017408371, + "learning_rate": 0.0006, + "loss": 3.6952829360961914, + "step": 2456 + }, + { + "epoch": 34.12581913499345, + "grad_norm": 0.21031132340431213, + "learning_rate": 0.0006, + "loss": 3.7337589263916016, + "step": 2457 + }, + { + "epoch": 34.139799038881605, + "grad_norm": 0.2233671098947525, + "learning_rate": 0.0006, + "loss": 3.6923675537109375, + "step": 2458 + }, + { + "epoch": 34.15377894276977, + "grad_norm": 0.22766625881195068, + "learning_rate": 0.0006, + "loss": 3.70849609375, + "step": 2459 + }, + { + "epoch": 34.16775884665793, + "grad_norm": 0.22433766722679138, + "learning_rate": 0.0006, + "loss": 3.718319892883301, + "step": 2460 + }, + { + "epoch": 34.18173875054609, + "grad_norm": 0.20621491968631744, + "learning_rate": 0.0006, + "loss": 3.6874704360961914, + "step": 2461 + }, + { + "epoch": 34.19571865443425, + "grad_norm": 0.21353304386138916, + "learning_rate": 0.0006, + "loss": 3.663358688354492, + "step": 2462 + }, + { + "epoch": 34.20969855832241, + "grad_norm": 0.20652951300144196, + "learning_rate": 0.0006, + "loss": 3.718107223510742, + "step": 2463 + }, + { + "epoch": 34.22367846221057, + "grad_norm": 0.19780176877975464, + "learning_rate": 0.0006, + "loss": 3.7255396842956543, + "step": 2464 + }, + { + "epoch": 34.237658366098735, + "grad_norm": 0.20636138319969177, + "learning_rate": 0.0006, + "loss": 3.696850538253784, + "step": 2465 + }, + { + "epoch": 34.25163826998689, + "grad_norm": 0.23691460490226746, + "learning_rate": 0.0006, + "loss": 3.687997341156006, + "step": 2466 + }, + { + "epoch": 34.265618173875055, + "grad_norm": 0.2380511611700058, + "learning_rate": 0.0006, + "loss": 3.716610908508301, + "step": 2467 + }, + { + "epoch": 34.27959807776322, + "grad_norm": 0.21508945524692535, + "learning_rate": 0.0006, + "loss": 3.6993470191955566, + "step": 2468 + }, + { + "epoch": 34.293577981651374, + "grad_norm": 0.20441125333309174, + "learning_rate": 0.0006, + "loss": 3.7194275856018066, + "step": 2469 + }, + { + "epoch": 34.30755788553954, + "grad_norm": 0.19704242050647736, + "learning_rate": 0.0006, + "loss": 3.675929546356201, + "step": 2470 + }, + { + "epoch": 34.3215377894277, + "grad_norm": 0.1918456256389618, + "learning_rate": 0.0006, + "loss": 3.7189574241638184, + "step": 2471 + }, + { + "epoch": 34.33551769331586, + "grad_norm": 0.19687092304229736, + "learning_rate": 0.0006, + "loss": 3.725809335708618, + "step": 2472 + }, + { + "epoch": 34.34949759720402, + "grad_norm": 0.2048639953136444, + "learning_rate": 0.0006, + "loss": 3.7461748123168945, + "step": 2473 + }, + { + "epoch": 34.36347750109218, + "grad_norm": 0.21086618304252625, + "learning_rate": 0.0006, + "loss": 3.6849746704101562, + "step": 2474 + }, + { + "epoch": 34.37745740498034, + "grad_norm": 0.2172154039144516, + "learning_rate": 0.0006, + "loss": 3.7379322052001953, + "step": 2475 + }, + { + "epoch": 34.391437308868504, + "grad_norm": 0.22725504636764526, + "learning_rate": 0.0006, + "loss": 3.7341527938842773, + "step": 2476 + }, + { + "epoch": 34.40541721275666, + "grad_norm": 0.22309242188930511, + "learning_rate": 0.0006, + "loss": 3.724946975708008, + "step": 2477 + }, + { + "epoch": 34.419397116644824, + "grad_norm": 0.25252285599708557, + "learning_rate": 0.0006, + "loss": 3.710257053375244, + "step": 2478 + }, + { + "epoch": 34.43337702053299, + "grad_norm": 0.2549746334552765, + "learning_rate": 0.0006, + "loss": 3.7105040550231934, + "step": 2479 + }, + { + "epoch": 34.44735692442114, + "grad_norm": 0.22544030845165253, + "learning_rate": 0.0006, + "loss": 3.7340707778930664, + "step": 2480 + }, + { + "epoch": 34.46133682830931, + "grad_norm": 0.22275063395500183, + "learning_rate": 0.0006, + "loss": 3.7141473293304443, + "step": 2481 + }, + { + "epoch": 34.47531673219746, + "grad_norm": 0.25373485684394836, + "learning_rate": 0.0006, + "loss": 3.7014691829681396, + "step": 2482 + }, + { + "epoch": 34.489296636085626, + "grad_norm": 0.2573327124118805, + "learning_rate": 0.0006, + "loss": 3.682562828063965, + "step": 2483 + }, + { + "epoch": 34.50327653997379, + "grad_norm": 0.2452341616153717, + "learning_rate": 0.0006, + "loss": 3.757261276245117, + "step": 2484 + }, + { + "epoch": 34.517256443861946, + "grad_norm": 0.2477131187915802, + "learning_rate": 0.0006, + "loss": 3.7216877937316895, + "step": 2485 + }, + { + "epoch": 34.53123634775011, + "grad_norm": 0.24740098416805267, + "learning_rate": 0.0006, + "loss": 3.705704927444458, + "step": 2486 + }, + { + "epoch": 34.54521625163827, + "grad_norm": 0.27306219935417175, + "learning_rate": 0.0006, + "loss": 3.7014641761779785, + "step": 2487 + }, + { + "epoch": 34.55919615552643, + "grad_norm": 0.26376286149024963, + "learning_rate": 0.0006, + "loss": 3.686056137084961, + "step": 2488 + }, + { + "epoch": 34.57317605941459, + "grad_norm": 0.2796899378299713, + "learning_rate": 0.0006, + "loss": 3.7171077728271484, + "step": 2489 + }, + { + "epoch": 34.58715596330275, + "grad_norm": 0.24279902875423431, + "learning_rate": 0.0006, + "loss": 3.7448348999023438, + "step": 2490 + }, + { + "epoch": 34.60113586719091, + "grad_norm": 0.22772833704948425, + "learning_rate": 0.0006, + "loss": 3.7028117179870605, + "step": 2491 + }, + { + "epoch": 34.615115771079076, + "grad_norm": 0.22157910466194153, + "learning_rate": 0.0006, + "loss": 3.750023603439331, + "step": 2492 + }, + { + "epoch": 34.62909567496723, + "grad_norm": 0.24342703819274902, + "learning_rate": 0.0006, + "loss": 3.7181010246276855, + "step": 2493 + }, + { + "epoch": 34.643075578855395, + "grad_norm": 0.2554340362548828, + "learning_rate": 0.0006, + "loss": 3.6994080543518066, + "step": 2494 + }, + { + "epoch": 34.65705548274356, + "grad_norm": 0.21296930313110352, + "learning_rate": 0.0006, + "loss": 3.7534523010253906, + "step": 2495 + }, + { + "epoch": 34.671035386631715, + "grad_norm": 0.19117674231529236, + "learning_rate": 0.0006, + "loss": 3.7267889976501465, + "step": 2496 + }, + { + "epoch": 34.68501529051988, + "grad_norm": 0.2306399643421173, + "learning_rate": 0.0006, + "loss": 3.723212242126465, + "step": 2497 + }, + { + "epoch": 34.69899519440804, + "grad_norm": 0.23063263297080994, + "learning_rate": 0.0006, + "loss": 3.730070114135742, + "step": 2498 + }, + { + "epoch": 34.7129750982962, + "grad_norm": 0.19422881305217743, + "learning_rate": 0.0006, + "loss": 3.694833755493164, + "step": 2499 + }, + { + "epoch": 34.72695500218436, + "grad_norm": 0.20246362686157227, + "learning_rate": 0.0006, + "loss": 3.71140718460083, + "step": 2500 + }, + { + "epoch": 34.74093490607252, + "grad_norm": 0.1942741572856903, + "learning_rate": 0.0006, + "loss": 3.7530534267425537, + "step": 2501 + }, + { + "epoch": 34.75491480996068, + "grad_norm": 0.19686029851436615, + "learning_rate": 0.0006, + "loss": 3.7059555053710938, + "step": 2502 + }, + { + "epoch": 34.768894713848844, + "grad_norm": 0.20120355486869812, + "learning_rate": 0.0006, + "loss": 3.7271084785461426, + "step": 2503 + }, + { + "epoch": 34.782874617737, + "grad_norm": 0.20880399644374847, + "learning_rate": 0.0006, + "loss": 3.712137460708618, + "step": 2504 + }, + { + "epoch": 34.796854521625164, + "grad_norm": 0.22139988839626312, + "learning_rate": 0.0006, + "loss": 3.731245517730713, + "step": 2505 + }, + { + "epoch": 34.81083442551333, + "grad_norm": 0.22756224870681763, + "learning_rate": 0.0006, + "loss": 3.708987236022949, + "step": 2506 + }, + { + "epoch": 34.824814329401484, + "grad_norm": 0.22332409024238586, + "learning_rate": 0.0006, + "loss": 3.7365565299987793, + "step": 2507 + }, + { + "epoch": 34.83879423328965, + "grad_norm": 0.19599054753780365, + "learning_rate": 0.0006, + "loss": 3.7266454696655273, + "step": 2508 + }, + { + "epoch": 34.8527741371778, + "grad_norm": 0.19843019545078278, + "learning_rate": 0.0006, + "loss": 3.7225422859191895, + "step": 2509 + }, + { + "epoch": 34.86675404106597, + "grad_norm": 0.20147928595542908, + "learning_rate": 0.0006, + "loss": 3.7282514572143555, + "step": 2510 + }, + { + "epoch": 34.88073394495413, + "grad_norm": 0.19489876925945282, + "learning_rate": 0.0006, + "loss": 3.694852113723755, + "step": 2511 + }, + { + "epoch": 34.89471384884229, + "grad_norm": 0.20680078864097595, + "learning_rate": 0.0006, + "loss": 3.74678635597229, + "step": 2512 + }, + { + "epoch": 34.90869375273045, + "grad_norm": 0.2233233004808426, + "learning_rate": 0.0006, + "loss": 3.726475238800049, + "step": 2513 + }, + { + "epoch": 34.92267365661861, + "grad_norm": 0.20702993869781494, + "learning_rate": 0.0006, + "loss": 3.6946351528167725, + "step": 2514 + }, + { + "epoch": 34.93665356050677, + "grad_norm": 0.2081725299358368, + "learning_rate": 0.0006, + "loss": 3.7101621627807617, + "step": 2515 + }, + { + "epoch": 34.95063346439493, + "grad_norm": 0.20551837980747223, + "learning_rate": 0.0006, + "loss": 3.7060177326202393, + "step": 2516 + }, + { + "epoch": 34.964613368283096, + "grad_norm": 0.2106839418411255, + "learning_rate": 0.0006, + "loss": 3.7460474967956543, + "step": 2517 + }, + { + "epoch": 34.97859327217125, + "grad_norm": 0.18512766063213348, + "learning_rate": 0.0006, + "loss": 3.719280242919922, + "step": 2518 + }, + { + "epoch": 34.992573176059416, + "grad_norm": 0.1802142709493637, + "learning_rate": 0.0006, + "loss": 3.698255777359009, + "step": 2519 + }, + { + "epoch": 35.0, + "grad_norm": 0.2028084248304367, + "learning_rate": 0.0006, + "loss": 3.711136817932129, + "step": 2520 + }, + { + "epoch": 35.0, + "eval_loss": 4.006688117980957, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 2520 + }, + { + "epoch": 35.01397990388816, + "grad_norm": 0.1973012387752533, + "learning_rate": 0.0006, + "loss": 3.7108325958251953, + "step": 2521 + }, + { + "epoch": 35.02795980777632, + "grad_norm": 0.23763646185398102, + "learning_rate": 0.0006, + "loss": 3.675785541534424, + "step": 2522 + }, + { + "epoch": 35.04193971166448, + "grad_norm": 0.24403199553489685, + "learning_rate": 0.0006, + "loss": 3.7034249305725098, + "step": 2523 + }, + { + "epoch": 35.05591961555265, + "grad_norm": 0.19050131738185883, + "learning_rate": 0.0006, + "loss": 3.6984221935272217, + "step": 2524 + }, + { + "epoch": 35.0698995194408, + "grad_norm": 0.21389710903167725, + "learning_rate": 0.0006, + "loss": 3.6641085147857666, + "step": 2525 + }, + { + "epoch": 35.083879423328966, + "grad_norm": 0.23103152215480804, + "learning_rate": 0.0006, + "loss": 3.722912311553955, + "step": 2526 + }, + { + "epoch": 35.09785932721712, + "grad_norm": 0.2197326272726059, + "learning_rate": 0.0006, + "loss": 3.696568727493286, + "step": 2527 + }, + { + "epoch": 35.111839231105286, + "grad_norm": 0.20877327024936676, + "learning_rate": 0.0006, + "loss": 3.666700601577759, + "step": 2528 + }, + { + "epoch": 35.12581913499345, + "grad_norm": 0.20904001593589783, + "learning_rate": 0.0006, + "loss": 3.6896979808807373, + "step": 2529 + }, + { + "epoch": 35.139799038881605, + "grad_norm": 0.1947423666715622, + "learning_rate": 0.0006, + "loss": 3.6647095680236816, + "step": 2530 + }, + { + "epoch": 35.15377894276977, + "grad_norm": 0.2134019434452057, + "learning_rate": 0.0006, + "loss": 3.696993589401245, + "step": 2531 + }, + { + "epoch": 35.16775884665793, + "grad_norm": 0.2299254685640335, + "learning_rate": 0.0006, + "loss": 3.7067925930023193, + "step": 2532 + }, + { + "epoch": 35.18173875054609, + "grad_norm": 0.219585582613945, + "learning_rate": 0.0006, + "loss": 3.6680960655212402, + "step": 2533 + }, + { + "epoch": 35.19571865443425, + "grad_norm": 0.2146025449037552, + "learning_rate": 0.0006, + "loss": 3.7185046672821045, + "step": 2534 + }, + { + "epoch": 35.20969855832241, + "grad_norm": 0.22748060524463654, + "learning_rate": 0.0006, + "loss": 3.659202814102173, + "step": 2535 + }, + { + "epoch": 35.22367846221057, + "grad_norm": 0.22272273898124695, + "learning_rate": 0.0006, + "loss": 3.7002370357513428, + "step": 2536 + }, + { + "epoch": 35.237658366098735, + "grad_norm": 0.23827379941940308, + "learning_rate": 0.0006, + "loss": 3.714664936065674, + "step": 2537 + }, + { + "epoch": 35.25163826998689, + "grad_norm": 0.2328156679868698, + "learning_rate": 0.0006, + "loss": 3.665173292160034, + "step": 2538 + }, + { + "epoch": 35.265618173875055, + "grad_norm": 0.2573475241661072, + "learning_rate": 0.0006, + "loss": 3.7073206901550293, + "step": 2539 + }, + { + "epoch": 35.27959807776322, + "grad_norm": 0.2411472052335739, + "learning_rate": 0.0006, + "loss": 3.697751045227051, + "step": 2540 + }, + { + "epoch": 35.293577981651374, + "grad_norm": 0.22836148738861084, + "learning_rate": 0.0006, + "loss": 3.7219419479370117, + "step": 2541 + }, + { + "epoch": 35.30755788553954, + "grad_norm": 0.2225421667098999, + "learning_rate": 0.0006, + "loss": 3.69516658782959, + "step": 2542 + }, + { + "epoch": 35.3215377894277, + "grad_norm": 0.2180362343788147, + "learning_rate": 0.0006, + "loss": 3.714043378829956, + "step": 2543 + }, + { + "epoch": 35.33551769331586, + "grad_norm": 0.23638299107551575, + "learning_rate": 0.0006, + "loss": 3.7449421882629395, + "step": 2544 + }, + { + "epoch": 35.34949759720402, + "grad_norm": 0.21792089939117432, + "learning_rate": 0.0006, + "loss": 3.7029948234558105, + "step": 2545 + }, + { + "epoch": 35.36347750109218, + "grad_norm": 0.23266112804412842, + "learning_rate": 0.0006, + "loss": 3.683509111404419, + "step": 2546 + }, + { + "epoch": 35.37745740498034, + "grad_norm": 0.24203059077262878, + "learning_rate": 0.0006, + "loss": 3.68572998046875, + "step": 2547 + }, + { + "epoch": 35.391437308868504, + "grad_norm": 0.2543564438819885, + "learning_rate": 0.0006, + "loss": 3.6902432441711426, + "step": 2548 + }, + { + "epoch": 35.40541721275666, + "grad_norm": 0.22990189492702484, + "learning_rate": 0.0006, + "loss": 3.708810329437256, + "step": 2549 + }, + { + "epoch": 35.419397116644824, + "grad_norm": 0.2594352662563324, + "learning_rate": 0.0006, + "loss": 3.7312886714935303, + "step": 2550 + }, + { + "epoch": 35.43337702053299, + "grad_norm": 0.27525269985198975, + "learning_rate": 0.0006, + "loss": 3.6963448524475098, + "step": 2551 + }, + { + "epoch": 35.44735692442114, + "grad_norm": 0.2436525970697403, + "learning_rate": 0.0006, + "loss": 3.6733713150024414, + "step": 2552 + }, + { + "epoch": 35.46133682830931, + "grad_norm": 0.25500908493995667, + "learning_rate": 0.0006, + "loss": 3.7104358673095703, + "step": 2553 + }, + { + "epoch": 35.47531673219746, + "grad_norm": 0.23504602909088135, + "learning_rate": 0.0006, + "loss": 3.7052388191223145, + "step": 2554 + }, + { + "epoch": 35.489296636085626, + "grad_norm": 0.2277563363313675, + "learning_rate": 0.0006, + "loss": 3.708714008331299, + "step": 2555 + }, + { + "epoch": 35.50327653997379, + "grad_norm": 0.25224778056144714, + "learning_rate": 0.0006, + "loss": 3.699676990509033, + "step": 2556 + }, + { + "epoch": 35.517256443861946, + "grad_norm": 0.28308045864105225, + "learning_rate": 0.0006, + "loss": 3.7005362510681152, + "step": 2557 + }, + { + "epoch": 35.53123634775011, + "grad_norm": 0.25858840346336365, + "learning_rate": 0.0006, + "loss": 3.689999580383301, + "step": 2558 + }, + { + "epoch": 35.54521625163827, + "grad_norm": 0.23497405648231506, + "learning_rate": 0.0006, + "loss": 3.695793867111206, + "step": 2559 + }, + { + "epoch": 35.55919615552643, + "grad_norm": 0.22375957667827606, + "learning_rate": 0.0006, + "loss": 3.7011494636535645, + "step": 2560 + }, + { + "epoch": 35.57317605941459, + "grad_norm": 0.21056118607521057, + "learning_rate": 0.0006, + "loss": 3.722623586654663, + "step": 2561 + }, + { + "epoch": 35.58715596330275, + "grad_norm": 0.22504374384880066, + "learning_rate": 0.0006, + "loss": 3.7211966514587402, + "step": 2562 + }, + { + "epoch": 35.60113586719091, + "grad_norm": 0.22349773347377777, + "learning_rate": 0.0006, + "loss": 3.6901848316192627, + "step": 2563 + }, + { + "epoch": 35.615115771079076, + "grad_norm": 0.219499409198761, + "learning_rate": 0.0006, + "loss": 3.709026575088501, + "step": 2564 + }, + { + "epoch": 35.62909567496723, + "grad_norm": 0.20461080968379974, + "learning_rate": 0.0006, + "loss": 3.72456693649292, + "step": 2565 + }, + { + "epoch": 35.643075578855395, + "grad_norm": 0.2083883285522461, + "learning_rate": 0.0006, + "loss": 3.6845502853393555, + "step": 2566 + }, + { + "epoch": 35.65705548274356, + "grad_norm": 0.19694562256336212, + "learning_rate": 0.0006, + "loss": 3.668515682220459, + "step": 2567 + }, + { + "epoch": 35.671035386631715, + "grad_norm": 0.2107984870672226, + "learning_rate": 0.0006, + "loss": 3.700723648071289, + "step": 2568 + }, + { + "epoch": 35.68501529051988, + "grad_norm": 0.18878720700740814, + "learning_rate": 0.0006, + "loss": 3.689150333404541, + "step": 2569 + }, + { + "epoch": 35.69899519440804, + "grad_norm": 0.20058824121952057, + "learning_rate": 0.0006, + "loss": 3.7048301696777344, + "step": 2570 + }, + { + "epoch": 35.7129750982962, + "grad_norm": 0.2200566679239273, + "learning_rate": 0.0006, + "loss": 3.6944580078125, + "step": 2571 + }, + { + "epoch": 35.72695500218436, + "grad_norm": 0.22200417518615723, + "learning_rate": 0.0006, + "loss": 3.715193510055542, + "step": 2572 + }, + { + "epoch": 35.74093490607252, + "grad_norm": 0.21011404693126678, + "learning_rate": 0.0006, + "loss": 3.737387180328369, + "step": 2573 + }, + { + "epoch": 35.75491480996068, + "grad_norm": 0.21139226853847504, + "learning_rate": 0.0006, + "loss": 3.695596694946289, + "step": 2574 + }, + { + "epoch": 35.768894713848844, + "grad_norm": 0.2112506479024887, + "learning_rate": 0.0006, + "loss": 3.7264227867126465, + "step": 2575 + }, + { + "epoch": 35.782874617737, + "grad_norm": 0.21528391540050507, + "learning_rate": 0.0006, + "loss": 3.7089385986328125, + "step": 2576 + }, + { + "epoch": 35.796854521625164, + "grad_norm": 0.2127804309129715, + "learning_rate": 0.0006, + "loss": 3.6995301246643066, + "step": 2577 + }, + { + "epoch": 35.81083442551333, + "grad_norm": 0.19839410483837128, + "learning_rate": 0.0006, + "loss": 3.7233223915100098, + "step": 2578 + }, + { + "epoch": 35.824814329401484, + "grad_norm": 0.19098423421382904, + "learning_rate": 0.0006, + "loss": 3.7108311653137207, + "step": 2579 + }, + { + "epoch": 35.83879423328965, + "grad_norm": 0.18697232007980347, + "learning_rate": 0.0006, + "loss": 3.725001811981201, + "step": 2580 + }, + { + "epoch": 35.8527741371778, + "grad_norm": 0.21051937341690063, + "learning_rate": 0.0006, + "loss": 3.7310993671417236, + "step": 2581 + }, + { + "epoch": 35.86675404106597, + "grad_norm": 0.2239079475402832, + "learning_rate": 0.0006, + "loss": 3.739056348800659, + "step": 2582 + }, + { + "epoch": 35.88073394495413, + "grad_norm": 0.2581230700016022, + "learning_rate": 0.0006, + "loss": 3.697061061859131, + "step": 2583 + }, + { + "epoch": 35.89471384884229, + "grad_norm": 0.25388655066490173, + "learning_rate": 0.0006, + "loss": 3.7173471450805664, + "step": 2584 + }, + { + "epoch": 35.90869375273045, + "grad_norm": 0.2557796537876129, + "learning_rate": 0.0006, + "loss": 3.7121596336364746, + "step": 2585 + }, + { + "epoch": 35.92267365661861, + "grad_norm": 0.21846474707126617, + "learning_rate": 0.0006, + "loss": 3.7342100143432617, + "step": 2586 + }, + { + "epoch": 35.93665356050677, + "grad_norm": 0.19810006022453308, + "learning_rate": 0.0006, + "loss": 3.7266340255737305, + "step": 2587 + }, + { + "epoch": 35.95063346439493, + "grad_norm": 0.28599923849105835, + "learning_rate": 0.0006, + "loss": 3.711876392364502, + "step": 2588 + }, + { + "epoch": 35.964613368283096, + "grad_norm": 0.3380447030067444, + "learning_rate": 0.0006, + "loss": 3.7611794471740723, + "step": 2589 + }, + { + "epoch": 35.97859327217125, + "grad_norm": 0.2946915328502655, + "learning_rate": 0.0006, + "loss": 3.7659358978271484, + "step": 2590 + }, + { + "epoch": 35.992573176059416, + "grad_norm": 0.2310202419757843, + "learning_rate": 0.0006, + "loss": 3.7124969959259033, + "step": 2591 + }, + { + "epoch": 36.0, + "grad_norm": 0.22294320166110992, + "learning_rate": 0.0006, + "loss": 3.725590705871582, + "step": 2592 + }, + { + "epoch": 36.0, + "eval_loss": 4.015472412109375, + "eval_runtime": 44.4903, + "eval_samples_per_second": 54.888, + "eval_steps_per_second": 3.439, + "step": 2592 + }, + { + "epoch": 36.01397990388816, + "grad_norm": 0.2442479431629181, + "learning_rate": 0.0006, + "loss": 3.6670360565185547, + "step": 2593 + }, + { + "epoch": 36.02795980777632, + "grad_norm": 0.27702075242996216, + "learning_rate": 0.0006, + "loss": 3.685915946960449, + "step": 2594 + }, + { + "epoch": 36.04193971166448, + "grad_norm": 0.22300852835178375, + "learning_rate": 0.0006, + "loss": 3.6993556022644043, + "step": 2595 + }, + { + "epoch": 36.05591961555265, + "grad_norm": 0.22456000745296478, + "learning_rate": 0.0006, + "loss": 3.6937754154205322, + "step": 2596 + }, + { + "epoch": 36.0698995194408, + "grad_norm": 0.23157717287540436, + "learning_rate": 0.0006, + "loss": 3.6573898792266846, + "step": 2597 + }, + { + "epoch": 36.083879423328966, + "grad_norm": 0.23002618551254272, + "learning_rate": 0.0006, + "loss": 3.6565046310424805, + "step": 2598 + }, + { + "epoch": 36.09785932721712, + "grad_norm": 0.223054900765419, + "learning_rate": 0.0006, + "loss": 3.6964457035064697, + "step": 2599 + }, + { + "epoch": 36.111839231105286, + "grad_norm": 0.21883328258991241, + "learning_rate": 0.0006, + "loss": 3.674757480621338, + "step": 2600 + }, + { + "epoch": 36.12581913499345, + "grad_norm": 0.21729037165641785, + "learning_rate": 0.0006, + "loss": 3.684323310852051, + "step": 2601 + }, + { + "epoch": 36.139799038881605, + "grad_norm": 0.21299415826797485, + "learning_rate": 0.0006, + "loss": 3.6554017066955566, + "step": 2602 + }, + { + "epoch": 36.15377894276977, + "grad_norm": 0.22723016142845154, + "learning_rate": 0.0006, + "loss": 3.666767120361328, + "step": 2603 + }, + { + "epoch": 36.16775884665793, + "grad_norm": 0.23663052916526794, + "learning_rate": 0.0006, + "loss": 3.692861557006836, + "step": 2604 + }, + { + "epoch": 36.18173875054609, + "grad_norm": 0.23544131219387054, + "learning_rate": 0.0006, + "loss": 3.6648998260498047, + "step": 2605 + }, + { + "epoch": 36.19571865443425, + "grad_norm": 0.24303849041461945, + "learning_rate": 0.0006, + "loss": 3.66096568107605, + "step": 2606 + }, + { + "epoch": 36.20969855832241, + "grad_norm": 0.23385047912597656, + "learning_rate": 0.0006, + "loss": 3.6636829376220703, + "step": 2607 + }, + { + "epoch": 36.22367846221057, + "grad_norm": 0.21988974511623383, + "learning_rate": 0.0006, + "loss": 3.685072660446167, + "step": 2608 + }, + { + "epoch": 36.237658366098735, + "grad_norm": 0.2365395724773407, + "learning_rate": 0.0006, + "loss": 3.7292234897613525, + "step": 2609 + }, + { + "epoch": 36.25163826998689, + "grad_norm": 0.23791152238845825, + "learning_rate": 0.0006, + "loss": 3.6870808601379395, + "step": 2610 + }, + { + "epoch": 36.265618173875055, + "grad_norm": 0.22954145073890686, + "learning_rate": 0.0006, + "loss": 3.705406904220581, + "step": 2611 + }, + { + "epoch": 36.27959807776322, + "grad_norm": 0.22748000919818878, + "learning_rate": 0.0006, + "loss": 3.680781841278076, + "step": 2612 + }, + { + "epoch": 36.293577981651374, + "grad_norm": 0.21827450394630432, + "learning_rate": 0.0006, + "loss": 3.6794490814208984, + "step": 2613 + }, + { + "epoch": 36.30755788553954, + "grad_norm": 0.2406153380870819, + "learning_rate": 0.0006, + "loss": 3.690225124359131, + "step": 2614 + }, + { + "epoch": 36.3215377894277, + "grad_norm": 0.2406231164932251, + "learning_rate": 0.0006, + "loss": 3.665867805480957, + "step": 2615 + }, + { + "epoch": 36.33551769331586, + "grad_norm": 0.20494551956653595, + "learning_rate": 0.0006, + "loss": 3.701937198638916, + "step": 2616 + }, + { + "epoch": 36.34949759720402, + "grad_norm": 0.1995103359222412, + "learning_rate": 0.0006, + "loss": 3.702033758163452, + "step": 2617 + }, + { + "epoch": 36.36347750109218, + "grad_norm": 0.1902446299791336, + "learning_rate": 0.0006, + "loss": 3.6809959411621094, + "step": 2618 + }, + { + "epoch": 36.37745740498034, + "grad_norm": 0.1810801923274994, + "learning_rate": 0.0006, + "loss": 3.689852714538574, + "step": 2619 + }, + { + "epoch": 36.391437308868504, + "grad_norm": 0.1882476955652237, + "learning_rate": 0.0006, + "loss": 3.710911273956299, + "step": 2620 + }, + { + "epoch": 36.40541721275666, + "grad_norm": 0.1912514567375183, + "learning_rate": 0.0006, + "loss": 3.7054009437561035, + "step": 2621 + }, + { + "epoch": 36.419397116644824, + "grad_norm": 0.19080901145935059, + "learning_rate": 0.0006, + "loss": 3.681145191192627, + "step": 2622 + }, + { + "epoch": 36.43337702053299, + "grad_norm": 0.193472221493721, + "learning_rate": 0.0006, + "loss": 3.661360740661621, + "step": 2623 + }, + { + "epoch": 36.44735692442114, + "grad_norm": 0.2034357339143753, + "learning_rate": 0.0006, + "loss": 3.706930160522461, + "step": 2624 + }, + { + "epoch": 36.46133682830931, + "grad_norm": 0.19924600422382355, + "learning_rate": 0.0006, + "loss": 3.6903364658355713, + "step": 2625 + }, + { + "epoch": 36.47531673219746, + "grad_norm": 0.20556052029132843, + "learning_rate": 0.0006, + "loss": 3.6974234580993652, + "step": 2626 + }, + { + "epoch": 36.489296636085626, + "grad_norm": 0.19628804922103882, + "learning_rate": 0.0006, + "loss": 3.6947717666625977, + "step": 2627 + }, + { + "epoch": 36.50327653997379, + "grad_norm": 0.18071836233139038, + "learning_rate": 0.0006, + "loss": 3.717582941055298, + "step": 2628 + }, + { + "epoch": 36.517256443861946, + "grad_norm": 0.20531553030014038, + "learning_rate": 0.0006, + "loss": 3.680610179901123, + "step": 2629 + }, + { + "epoch": 36.53123634775011, + "grad_norm": 0.23789429664611816, + "learning_rate": 0.0006, + "loss": 3.711493968963623, + "step": 2630 + }, + { + "epoch": 36.54521625163827, + "grad_norm": 0.23027348518371582, + "learning_rate": 0.0006, + "loss": 3.6827993392944336, + "step": 2631 + }, + { + "epoch": 36.55919615552643, + "grad_norm": 0.21941570937633514, + "learning_rate": 0.0006, + "loss": 3.682286262512207, + "step": 2632 + }, + { + "epoch": 36.57317605941459, + "grad_norm": 0.21213553845882416, + "learning_rate": 0.0006, + "loss": 3.6828765869140625, + "step": 2633 + }, + { + "epoch": 36.58715596330275, + "grad_norm": 0.21929772198200226, + "learning_rate": 0.0006, + "loss": 3.697030544281006, + "step": 2634 + }, + { + "epoch": 36.60113586719091, + "grad_norm": 0.2101750522851944, + "learning_rate": 0.0006, + "loss": 3.723201274871826, + "step": 2635 + }, + { + "epoch": 36.615115771079076, + "grad_norm": 0.19014132022857666, + "learning_rate": 0.0006, + "loss": 3.6989338397979736, + "step": 2636 + }, + { + "epoch": 36.62909567496723, + "grad_norm": 0.21566815674304962, + "learning_rate": 0.0006, + "loss": 3.6968226432800293, + "step": 2637 + }, + { + "epoch": 36.643075578855395, + "grad_norm": 0.20500224828720093, + "learning_rate": 0.0006, + "loss": 3.689640522003174, + "step": 2638 + }, + { + "epoch": 36.65705548274356, + "grad_norm": 0.210358127951622, + "learning_rate": 0.0006, + "loss": 3.6996328830718994, + "step": 2639 + }, + { + "epoch": 36.671035386631715, + "grad_norm": 0.2061213105916977, + "learning_rate": 0.0006, + "loss": 3.7019221782684326, + "step": 2640 + }, + { + "epoch": 36.68501529051988, + "grad_norm": 0.21494871377944946, + "learning_rate": 0.0006, + "loss": 3.6634578704833984, + "step": 2641 + }, + { + "epoch": 36.69899519440804, + "grad_norm": 0.19586549699306488, + "learning_rate": 0.0006, + "loss": 3.708131790161133, + "step": 2642 + }, + { + "epoch": 36.7129750982962, + "grad_norm": 0.22805732488632202, + "learning_rate": 0.0006, + "loss": 3.6977362632751465, + "step": 2643 + }, + { + "epoch": 36.72695500218436, + "grad_norm": 0.28397148847579956, + "learning_rate": 0.0006, + "loss": 3.6847963333129883, + "step": 2644 + }, + { + "epoch": 36.74093490607252, + "grad_norm": 0.28333187103271484, + "learning_rate": 0.0006, + "loss": 3.734257459640503, + "step": 2645 + }, + { + "epoch": 36.75491480996068, + "grad_norm": 0.22314953804016113, + "learning_rate": 0.0006, + "loss": 3.6871445178985596, + "step": 2646 + }, + { + "epoch": 36.768894713848844, + "grad_norm": 0.20580267906188965, + "learning_rate": 0.0006, + "loss": 3.692736864089966, + "step": 2647 + }, + { + "epoch": 36.782874617737, + "grad_norm": 0.22695036232471466, + "learning_rate": 0.0006, + "loss": 3.697096824645996, + "step": 2648 + }, + { + "epoch": 36.796854521625164, + "grad_norm": 0.25916165113449097, + "learning_rate": 0.0006, + "loss": 3.7099573612213135, + "step": 2649 + }, + { + "epoch": 36.81083442551333, + "grad_norm": 0.26024341583251953, + "learning_rate": 0.0006, + "loss": 3.7161359786987305, + "step": 2650 + }, + { + "epoch": 36.824814329401484, + "grad_norm": 0.2340802699327469, + "learning_rate": 0.0006, + "loss": 3.708864688873291, + "step": 2651 + }, + { + "epoch": 36.83879423328965, + "grad_norm": 0.23312288522720337, + "learning_rate": 0.0006, + "loss": 3.7351365089416504, + "step": 2652 + }, + { + "epoch": 36.8527741371778, + "grad_norm": 0.22953253984451294, + "learning_rate": 0.0006, + "loss": 3.735302209854126, + "step": 2653 + }, + { + "epoch": 36.86675404106597, + "grad_norm": 0.21928828954696655, + "learning_rate": 0.0006, + "loss": 3.72445011138916, + "step": 2654 + }, + { + "epoch": 36.88073394495413, + "grad_norm": 0.22865602374076843, + "learning_rate": 0.0006, + "loss": 3.714867115020752, + "step": 2655 + }, + { + "epoch": 36.89471384884229, + "grad_norm": 0.23255643248558044, + "learning_rate": 0.0006, + "loss": 3.695101261138916, + "step": 2656 + }, + { + "epoch": 36.90869375273045, + "grad_norm": 0.2491452544927597, + "learning_rate": 0.0006, + "loss": 3.70692777633667, + "step": 2657 + }, + { + "epoch": 36.92267365661861, + "grad_norm": 0.27367597818374634, + "learning_rate": 0.0006, + "loss": 3.6906654834747314, + "step": 2658 + }, + { + "epoch": 36.93665356050677, + "grad_norm": 0.26728564500808716, + "learning_rate": 0.0006, + "loss": 3.7092056274414062, + "step": 2659 + }, + { + "epoch": 36.95063346439493, + "grad_norm": 0.207070454955101, + "learning_rate": 0.0006, + "loss": 3.7152137756347656, + "step": 2660 + }, + { + "epoch": 36.964613368283096, + "grad_norm": 0.21671561896800995, + "learning_rate": 0.0006, + "loss": 3.7130112648010254, + "step": 2661 + }, + { + "epoch": 36.97859327217125, + "grad_norm": 0.2140914648771286, + "learning_rate": 0.0006, + "loss": 3.7286999225616455, + "step": 2662 + }, + { + "epoch": 36.992573176059416, + "grad_norm": 0.21324342489242554, + "learning_rate": 0.0006, + "loss": 3.6828715801239014, + "step": 2663 + }, + { + "epoch": 37.0, + "grad_norm": 0.22366146743297577, + "learning_rate": 0.0006, + "loss": 3.69199800491333, + "step": 2664 + }, + { + "epoch": 37.0, + "eval_loss": 4.011842727661133, + "eval_runtime": 44.7825, + "eval_samples_per_second": 54.53, + "eval_steps_per_second": 3.417, + "step": 2664 + }, + { + "epoch": 37.01397990388816, + "grad_norm": 0.22093228995800018, + "learning_rate": 0.0006, + "loss": 3.6940979957580566, + "step": 2665 + }, + { + "epoch": 37.02795980777632, + "grad_norm": 0.20821493864059448, + "learning_rate": 0.0006, + "loss": 3.670813798904419, + "step": 2666 + }, + { + "epoch": 37.04193971166448, + "grad_norm": 0.22330114245414734, + "learning_rate": 0.0006, + "loss": 3.6392664909362793, + "step": 2667 + }, + { + "epoch": 37.05591961555265, + "grad_norm": 0.2224634289741516, + "learning_rate": 0.0006, + "loss": 3.660856246948242, + "step": 2668 + }, + { + "epoch": 37.0698995194408, + "grad_norm": 0.2255052626132965, + "learning_rate": 0.0006, + "loss": 3.6393589973449707, + "step": 2669 + }, + { + "epoch": 37.083879423328966, + "grad_norm": 0.23462942242622375, + "learning_rate": 0.0006, + "loss": 3.684429168701172, + "step": 2670 + }, + { + "epoch": 37.09785932721712, + "grad_norm": 0.23743386566638947, + "learning_rate": 0.0006, + "loss": 3.67622709274292, + "step": 2671 + }, + { + "epoch": 37.111839231105286, + "grad_norm": 0.2276267409324646, + "learning_rate": 0.0006, + "loss": 3.6487984657287598, + "step": 2672 + }, + { + "epoch": 37.12581913499345, + "grad_norm": 0.24448423087596893, + "learning_rate": 0.0006, + "loss": 3.67645525932312, + "step": 2673 + }, + { + "epoch": 37.139799038881605, + "grad_norm": 0.2428973764181137, + "learning_rate": 0.0006, + "loss": 3.681497097015381, + "step": 2674 + }, + { + "epoch": 37.15377894276977, + "grad_norm": 0.21918512880802155, + "learning_rate": 0.0006, + "loss": 3.67134428024292, + "step": 2675 + }, + { + "epoch": 37.16775884665793, + "grad_norm": 0.2103680670261383, + "learning_rate": 0.0006, + "loss": 3.6508708000183105, + "step": 2676 + }, + { + "epoch": 37.18173875054609, + "grad_norm": 0.20674929022789001, + "learning_rate": 0.0006, + "loss": 3.6904029846191406, + "step": 2677 + }, + { + "epoch": 37.19571865443425, + "grad_norm": 0.21867282688617706, + "learning_rate": 0.0006, + "loss": 3.697535514831543, + "step": 2678 + }, + { + "epoch": 37.20969855832241, + "grad_norm": 0.22919587790966034, + "learning_rate": 0.0006, + "loss": 3.675565004348755, + "step": 2679 + }, + { + "epoch": 37.22367846221057, + "grad_norm": 0.22255578637123108, + "learning_rate": 0.0006, + "loss": 3.6830129623413086, + "step": 2680 + }, + { + "epoch": 37.237658366098735, + "grad_norm": 0.22460198402404785, + "learning_rate": 0.0006, + "loss": 3.6872951984405518, + "step": 2681 + }, + { + "epoch": 37.25163826998689, + "grad_norm": 0.23677165806293488, + "learning_rate": 0.0006, + "loss": 3.6779165267944336, + "step": 2682 + }, + { + "epoch": 37.265618173875055, + "grad_norm": 0.23231394588947296, + "learning_rate": 0.0006, + "loss": 3.6831178665161133, + "step": 2683 + }, + { + "epoch": 37.27959807776322, + "grad_norm": 0.22131343185901642, + "learning_rate": 0.0006, + "loss": 3.664295196533203, + "step": 2684 + }, + { + "epoch": 37.293577981651374, + "grad_norm": 0.23424340784549713, + "learning_rate": 0.0006, + "loss": 3.696678638458252, + "step": 2685 + }, + { + "epoch": 37.30755788553954, + "grad_norm": 0.22695423662662506, + "learning_rate": 0.0006, + "loss": 3.6697473526000977, + "step": 2686 + }, + { + "epoch": 37.3215377894277, + "grad_norm": 0.2165997475385666, + "learning_rate": 0.0006, + "loss": 3.6801891326904297, + "step": 2687 + }, + { + "epoch": 37.33551769331586, + "grad_norm": 0.2241077572107315, + "learning_rate": 0.0006, + "loss": 3.6957011222839355, + "step": 2688 + }, + { + "epoch": 37.34949759720402, + "grad_norm": 0.21191732585430145, + "learning_rate": 0.0006, + "loss": 3.6812620162963867, + "step": 2689 + }, + { + "epoch": 37.36347750109218, + "grad_norm": 0.1827201396226883, + "learning_rate": 0.0006, + "loss": 3.6797738075256348, + "step": 2690 + }, + { + "epoch": 37.37745740498034, + "grad_norm": 0.20793627202510834, + "learning_rate": 0.0006, + "loss": 3.672819137573242, + "step": 2691 + }, + { + "epoch": 37.391437308868504, + "grad_norm": 0.19737116992473602, + "learning_rate": 0.0006, + "loss": 3.667839527130127, + "step": 2692 + }, + { + "epoch": 37.40541721275666, + "grad_norm": 0.18670497834682465, + "learning_rate": 0.0006, + "loss": 3.651561737060547, + "step": 2693 + }, + { + "epoch": 37.419397116644824, + "grad_norm": 0.21385592222213745, + "learning_rate": 0.0006, + "loss": 3.717456340789795, + "step": 2694 + }, + { + "epoch": 37.43337702053299, + "grad_norm": 0.20590044558048248, + "learning_rate": 0.0006, + "loss": 3.6950271129608154, + "step": 2695 + }, + { + "epoch": 37.44735692442114, + "grad_norm": 0.1992103010416031, + "learning_rate": 0.0006, + "loss": 3.687854290008545, + "step": 2696 + }, + { + "epoch": 37.46133682830931, + "grad_norm": 0.2004154473543167, + "learning_rate": 0.0006, + "loss": 3.695838451385498, + "step": 2697 + }, + { + "epoch": 37.47531673219746, + "grad_norm": 0.2019810527563095, + "learning_rate": 0.0006, + "loss": 3.690431594848633, + "step": 2698 + }, + { + "epoch": 37.489296636085626, + "grad_norm": 0.2192547768354416, + "learning_rate": 0.0006, + "loss": 3.6743836402893066, + "step": 2699 + }, + { + "epoch": 37.50327653997379, + "grad_norm": 0.2568076550960541, + "learning_rate": 0.0006, + "loss": 3.6857337951660156, + "step": 2700 + }, + { + "epoch": 37.517256443861946, + "grad_norm": 0.20050311088562012, + "learning_rate": 0.0006, + "loss": 3.6811180114746094, + "step": 2701 + }, + { + "epoch": 37.53123634775011, + "grad_norm": 0.21008558571338654, + "learning_rate": 0.0006, + "loss": 3.700563907623291, + "step": 2702 + }, + { + "epoch": 37.54521625163827, + "grad_norm": 0.2393747717142105, + "learning_rate": 0.0006, + "loss": 3.679438591003418, + "step": 2703 + }, + { + "epoch": 37.55919615552643, + "grad_norm": 0.2531895041465759, + "learning_rate": 0.0006, + "loss": 3.682903289794922, + "step": 2704 + }, + { + "epoch": 37.57317605941459, + "grad_norm": 0.2372656762599945, + "learning_rate": 0.0006, + "loss": 3.7128796577453613, + "step": 2705 + }, + { + "epoch": 37.58715596330275, + "grad_norm": 0.20020034909248352, + "learning_rate": 0.0006, + "loss": 3.701916217803955, + "step": 2706 + }, + { + "epoch": 37.60113586719091, + "grad_norm": 0.20250852406024933, + "learning_rate": 0.0006, + "loss": 3.6761491298675537, + "step": 2707 + }, + { + "epoch": 37.615115771079076, + "grad_norm": 0.19259589910507202, + "learning_rate": 0.0006, + "loss": 3.715104579925537, + "step": 2708 + }, + { + "epoch": 37.62909567496723, + "grad_norm": 0.19649392366409302, + "learning_rate": 0.0006, + "loss": 3.687556266784668, + "step": 2709 + }, + { + "epoch": 37.643075578855395, + "grad_norm": 0.1909446269273758, + "learning_rate": 0.0006, + "loss": 3.684046745300293, + "step": 2710 + }, + { + "epoch": 37.65705548274356, + "grad_norm": 0.19589872658252716, + "learning_rate": 0.0006, + "loss": 3.707886219024658, + "step": 2711 + }, + { + "epoch": 37.671035386631715, + "grad_norm": 0.19472210109233856, + "learning_rate": 0.0006, + "loss": 3.6837692260742188, + "step": 2712 + }, + { + "epoch": 37.68501529051988, + "grad_norm": 0.22622711956501007, + "learning_rate": 0.0006, + "loss": 3.703619956970215, + "step": 2713 + }, + { + "epoch": 37.69899519440804, + "grad_norm": 0.24314729869365692, + "learning_rate": 0.0006, + "loss": 3.7345223426818848, + "step": 2714 + }, + { + "epoch": 37.7129750982962, + "grad_norm": 0.23934306204319, + "learning_rate": 0.0006, + "loss": 3.687809705734253, + "step": 2715 + }, + { + "epoch": 37.72695500218436, + "grad_norm": 0.24838587641716003, + "learning_rate": 0.0006, + "loss": 3.708613872528076, + "step": 2716 + }, + { + "epoch": 37.74093490607252, + "grad_norm": 0.23191452026367188, + "learning_rate": 0.0006, + "loss": 3.7090163230895996, + "step": 2717 + }, + { + "epoch": 37.75491480996068, + "grad_norm": 0.24574638903141022, + "learning_rate": 0.0006, + "loss": 3.68489146232605, + "step": 2718 + }, + { + "epoch": 37.768894713848844, + "grad_norm": 0.2706749439239502, + "learning_rate": 0.0006, + "loss": 3.687061309814453, + "step": 2719 + }, + { + "epoch": 37.782874617737, + "grad_norm": 0.25955191254615784, + "learning_rate": 0.0006, + "loss": 3.694173812866211, + "step": 2720 + }, + { + "epoch": 37.796854521625164, + "grad_norm": 0.22040610015392303, + "learning_rate": 0.0006, + "loss": 3.701871871948242, + "step": 2721 + }, + { + "epoch": 37.81083442551333, + "grad_norm": 0.22328512370586395, + "learning_rate": 0.0006, + "loss": 3.7082555294036865, + "step": 2722 + }, + { + "epoch": 37.824814329401484, + "grad_norm": 0.2290581911802292, + "learning_rate": 0.0006, + "loss": 3.7023987770080566, + "step": 2723 + }, + { + "epoch": 37.83879423328965, + "grad_norm": 0.23129472136497498, + "learning_rate": 0.0006, + "loss": 3.7101752758026123, + "step": 2724 + }, + { + "epoch": 37.8527741371778, + "grad_norm": 0.21203753352165222, + "learning_rate": 0.0006, + "loss": 3.712129592895508, + "step": 2725 + }, + { + "epoch": 37.86675404106597, + "grad_norm": 0.21938200294971466, + "learning_rate": 0.0006, + "loss": 3.7086095809936523, + "step": 2726 + }, + { + "epoch": 37.88073394495413, + "grad_norm": 0.2203572541475296, + "learning_rate": 0.0006, + "loss": 3.6789026260375977, + "step": 2727 + }, + { + "epoch": 37.89471384884229, + "grad_norm": 0.18146046996116638, + "learning_rate": 0.0006, + "loss": 3.666893243789673, + "step": 2728 + }, + { + "epoch": 37.90869375273045, + "grad_norm": 0.1879623532295227, + "learning_rate": 0.0006, + "loss": 3.69246768951416, + "step": 2729 + }, + { + "epoch": 37.92267365661861, + "grad_norm": 0.18311670422554016, + "learning_rate": 0.0006, + "loss": 3.682036876678467, + "step": 2730 + }, + { + "epoch": 37.93665356050677, + "grad_norm": 0.1898486614227295, + "learning_rate": 0.0006, + "loss": 3.6683125495910645, + "step": 2731 + }, + { + "epoch": 37.95063346439493, + "grad_norm": 0.1858556717634201, + "learning_rate": 0.0006, + "loss": 3.6879611015319824, + "step": 2732 + }, + { + "epoch": 37.964613368283096, + "grad_norm": 0.19914504885673523, + "learning_rate": 0.0006, + "loss": 3.690250873565674, + "step": 2733 + }, + { + "epoch": 37.97859327217125, + "grad_norm": 0.20406974852085114, + "learning_rate": 0.0006, + "loss": 3.6812171936035156, + "step": 2734 + }, + { + "epoch": 37.992573176059416, + "grad_norm": 0.2003912478685379, + "learning_rate": 0.0006, + "loss": 3.6852147579193115, + "step": 2735 + }, + { + "epoch": 38.0, + "grad_norm": 0.22644472122192383, + "learning_rate": 0.0006, + "loss": 3.645207405090332, + "step": 2736 + }, + { + "epoch": 38.0, + "eval_loss": 3.995000123977661, + "eval_runtime": 45.1644, + "eval_samples_per_second": 54.069, + "eval_steps_per_second": 3.388, + "step": 2736 + }, + { + "epoch": 38.01397990388816, + "grad_norm": 0.1989814043045044, + "learning_rate": 0.0006, + "loss": 3.6511387825012207, + "step": 2737 + }, + { + "epoch": 38.02795980777632, + "grad_norm": 0.203324094414711, + "learning_rate": 0.0006, + "loss": 3.6513094902038574, + "step": 2738 + }, + { + "epoch": 38.04193971166448, + "grad_norm": 0.21504290401935577, + "learning_rate": 0.0006, + "loss": 3.647711992263794, + "step": 2739 + }, + { + "epoch": 38.05591961555265, + "grad_norm": 0.23464815318584442, + "learning_rate": 0.0006, + "loss": 3.6418747901916504, + "step": 2740 + }, + { + "epoch": 38.0698995194408, + "grad_norm": 0.242184117436409, + "learning_rate": 0.0006, + "loss": 3.6741859912872314, + "step": 2741 + }, + { + "epoch": 38.083879423328966, + "grad_norm": 0.23488445580005646, + "learning_rate": 0.0006, + "loss": 3.6710941791534424, + "step": 2742 + }, + { + "epoch": 38.09785932721712, + "grad_norm": 0.20800170302391052, + "learning_rate": 0.0006, + "loss": 3.660001754760742, + "step": 2743 + }, + { + "epoch": 38.111839231105286, + "grad_norm": 0.19505052268505096, + "learning_rate": 0.0006, + "loss": 3.684129238128662, + "step": 2744 + }, + { + "epoch": 38.12581913499345, + "grad_norm": 0.2185833901166916, + "learning_rate": 0.0006, + "loss": 3.656033515930176, + "step": 2745 + }, + { + "epoch": 38.139799038881605, + "grad_norm": 0.21850253641605377, + "learning_rate": 0.0006, + "loss": 3.6818184852600098, + "step": 2746 + }, + { + "epoch": 38.15377894276977, + "grad_norm": 0.2109488695859909, + "learning_rate": 0.0006, + "loss": 3.6485435962677, + "step": 2747 + }, + { + "epoch": 38.16775884665793, + "grad_norm": 0.21059907972812653, + "learning_rate": 0.0006, + "loss": 3.6734395027160645, + "step": 2748 + }, + { + "epoch": 38.18173875054609, + "grad_norm": 0.20741555094718933, + "learning_rate": 0.0006, + "loss": 3.6672463417053223, + "step": 2749 + }, + { + "epoch": 38.19571865443425, + "grad_norm": 0.2130175530910492, + "learning_rate": 0.0006, + "loss": 3.692840576171875, + "step": 2750 + }, + { + "epoch": 38.20969855832241, + "grad_norm": 0.1899138242006302, + "learning_rate": 0.0006, + "loss": 3.675316333770752, + "step": 2751 + }, + { + "epoch": 38.22367846221057, + "grad_norm": 0.218918576836586, + "learning_rate": 0.0006, + "loss": 3.634105920791626, + "step": 2752 + }, + { + "epoch": 38.237658366098735, + "grad_norm": 0.23649370670318604, + "learning_rate": 0.0006, + "loss": 3.6526122093200684, + "step": 2753 + }, + { + "epoch": 38.25163826998689, + "grad_norm": 0.22011931240558624, + "learning_rate": 0.0006, + "loss": 3.6859593391418457, + "step": 2754 + }, + { + "epoch": 38.265618173875055, + "grad_norm": 0.2143620252609253, + "learning_rate": 0.0006, + "loss": 3.656838893890381, + "step": 2755 + }, + { + "epoch": 38.27959807776322, + "grad_norm": 0.24068567156791687, + "learning_rate": 0.0006, + "loss": 3.67006254196167, + "step": 2756 + }, + { + "epoch": 38.293577981651374, + "grad_norm": 0.25773152709007263, + "learning_rate": 0.0006, + "loss": 3.6648950576782227, + "step": 2757 + }, + { + "epoch": 38.30755788553954, + "grad_norm": 0.24213455617427826, + "learning_rate": 0.0006, + "loss": 3.6918864250183105, + "step": 2758 + }, + { + "epoch": 38.3215377894277, + "grad_norm": 0.22463668882846832, + "learning_rate": 0.0006, + "loss": 3.6662540435791016, + "step": 2759 + }, + { + "epoch": 38.33551769331586, + "grad_norm": 0.22541455924510956, + "learning_rate": 0.0006, + "loss": 3.6563215255737305, + "step": 2760 + }, + { + "epoch": 38.34949759720402, + "grad_norm": 0.21833783388137817, + "learning_rate": 0.0006, + "loss": 3.650446891784668, + "step": 2761 + }, + { + "epoch": 38.36347750109218, + "grad_norm": 0.22799745202064514, + "learning_rate": 0.0006, + "loss": 3.7007250785827637, + "step": 2762 + }, + { + "epoch": 38.37745740498034, + "grad_norm": 0.23739562928676605, + "learning_rate": 0.0006, + "loss": 3.667130708694458, + "step": 2763 + }, + { + "epoch": 38.391437308868504, + "grad_norm": 0.23744846880435944, + "learning_rate": 0.0006, + "loss": 3.678760528564453, + "step": 2764 + }, + { + "epoch": 38.40541721275666, + "grad_norm": 0.2677105963230133, + "learning_rate": 0.0006, + "loss": 3.6829030513763428, + "step": 2765 + }, + { + "epoch": 38.419397116644824, + "grad_norm": 0.24490566551685333, + "learning_rate": 0.0006, + "loss": 3.707911491394043, + "step": 2766 + }, + { + "epoch": 38.43337702053299, + "grad_norm": 0.23477254807949066, + "learning_rate": 0.0006, + "loss": 3.680157423019409, + "step": 2767 + }, + { + "epoch": 38.44735692442114, + "grad_norm": 0.26611173152923584, + "learning_rate": 0.0006, + "loss": 3.660834550857544, + "step": 2768 + }, + { + "epoch": 38.46133682830931, + "grad_norm": 0.24505069851875305, + "learning_rate": 0.0006, + "loss": 3.696178436279297, + "step": 2769 + }, + { + "epoch": 38.47531673219746, + "grad_norm": 0.22933335602283478, + "learning_rate": 0.0006, + "loss": 3.6506235599517822, + "step": 2770 + }, + { + "epoch": 38.489296636085626, + "grad_norm": 0.23662401735782623, + "learning_rate": 0.0006, + "loss": 3.680819511413574, + "step": 2771 + }, + { + "epoch": 38.50327653997379, + "grad_norm": 0.27774113416671753, + "learning_rate": 0.0006, + "loss": 3.699146270751953, + "step": 2772 + }, + { + "epoch": 38.517256443861946, + "grad_norm": 0.2881671190261841, + "learning_rate": 0.0006, + "loss": 3.6509652137756348, + "step": 2773 + }, + { + "epoch": 38.53123634775011, + "grad_norm": 0.26570361852645874, + "learning_rate": 0.0006, + "loss": 3.6808385848999023, + "step": 2774 + }, + { + "epoch": 38.54521625163827, + "grad_norm": 0.23043136298656464, + "learning_rate": 0.0006, + "loss": 3.7082371711730957, + "step": 2775 + }, + { + "epoch": 38.55919615552643, + "grad_norm": 0.23730400204658508, + "learning_rate": 0.0006, + "loss": 3.653615951538086, + "step": 2776 + }, + { + "epoch": 38.57317605941459, + "grad_norm": 0.2332635223865509, + "learning_rate": 0.0006, + "loss": 3.6869683265686035, + "step": 2777 + }, + { + "epoch": 38.58715596330275, + "grad_norm": 0.22913676500320435, + "learning_rate": 0.0006, + "loss": 3.6998367309570312, + "step": 2778 + }, + { + "epoch": 38.60113586719091, + "grad_norm": 0.226078599691391, + "learning_rate": 0.0006, + "loss": 3.7051444053649902, + "step": 2779 + }, + { + "epoch": 38.615115771079076, + "grad_norm": 0.2336396723985672, + "learning_rate": 0.0006, + "loss": 3.6964943408966064, + "step": 2780 + }, + { + "epoch": 38.62909567496723, + "grad_norm": 0.23270335793495178, + "learning_rate": 0.0006, + "loss": 3.6741909980773926, + "step": 2781 + }, + { + "epoch": 38.643075578855395, + "grad_norm": 0.19324959814548492, + "learning_rate": 0.0006, + "loss": 3.64506196975708, + "step": 2782 + }, + { + "epoch": 38.65705548274356, + "grad_norm": 0.18551453948020935, + "learning_rate": 0.0006, + "loss": 3.6834206581115723, + "step": 2783 + }, + { + "epoch": 38.671035386631715, + "grad_norm": 0.17392469942569733, + "learning_rate": 0.0006, + "loss": 3.67282772064209, + "step": 2784 + }, + { + "epoch": 38.68501529051988, + "grad_norm": 0.19093742966651917, + "learning_rate": 0.0006, + "loss": 3.6648201942443848, + "step": 2785 + }, + { + "epoch": 38.69899519440804, + "grad_norm": 0.2124558985233307, + "learning_rate": 0.0006, + "loss": 3.712191581726074, + "step": 2786 + }, + { + "epoch": 38.7129750982962, + "grad_norm": 0.2220139354467392, + "learning_rate": 0.0006, + "loss": 3.675504207611084, + "step": 2787 + }, + { + "epoch": 38.72695500218436, + "grad_norm": 0.17677755653858185, + "learning_rate": 0.0006, + "loss": 3.6693475246429443, + "step": 2788 + }, + { + "epoch": 38.74093490607252, + "grad_norm": 0.2002430409193039, + "learning_rate": 0.0006, + "loss": 3.6906018257141113, + "step": 2789 + }, + { + "epoch": 38.75491480996068, + "grad_norm": 0.18844179809093475, + "learning_rate": 0.0006, + "loss": 3.660121440887451, + "step": 2790 + }, + { + "epoch": 38.768894713848844, + "grad_norm": 0.19319336116313934, + "learning_rate": 0.0006, + "loss": 3.6592631340026855, + "step": 2791 + }, + { + "epoch": 38.782874617737, + "grad_norm": 0.18624325096607208, + "learning_rate": 0.0006, + "loss": 3.6935300827026367, + "step": 2792 + }, + { + "epoch": 38.796854521625164, + "grad_norm": 0.2049761712551117, + "learning_rate": 0.0006, + "loss": 3.6702702045440674, + "step": 2793 + }, + { + "epoch": 38.81083442551333, + "grad_norm": 0.2030584216117859, + "learning_rate": 0.0006, + "loss": 3.714639663696289, + "step": 2794 + }, + { + "epoch": 38.824814329401484, + "grad_norm": 0.18989548087120056, + "learning_rate": 0.0006, + "loss": 3.678253412246704, + "step": 2795 + }, + { + "epoch": 38.83879423328965, + "grad_norm": 0.19944126904010773, + "learning_rate": 0.0006, + "loss": 3.648367166519165, + "step": 2796 + }, + { + "epoch": 38.8527741371778, + "grad_norm": 0.2062688171863556, + "learning_rate": 0.0006, + "loss": 3.701514720916748, + "step": 2797 + }, + { + "epoch": 38.86675404106597, + "grad_norm": 0.21475110948085785, + "learning_rate": 0.0006, + "loss": 3.6725993156433105, + "step": 2798 + }, + { + "epoch": 38.88073394495413, + "grad_norm": 0.2240881323814392, + "learning_rate": 0.0006, + "loss": 3.6944539546966553, + "step": 2799 + }, + { + "epoch": 38.89471384884229, + "grad_norm": 0.23074312508106232, + "learning_rate": 0.0006, + "loss": 3.747671365737915, + "step": 2800 + }, + { + "epoch": 38.90869375273045, + "grad_norm": 0.2447938323020935, + "learning_rate": 0.0006, + "loss": 3.6856026649475098, + "step": 2801 + }, + { + "epoch": 38.92267365661861, + "grad_norm": 0.2136487364768982, + "learning_rate": 0.0006, + "loss": 3.710397720336914, + "step": 2802 + }, + { + "epoch": 38.93665356050677, + "grad_norm": 0.21676769852638245, + "learning_rate": 0.0006, + "loss": 3.6911189556121826, + "step": 2803 + }, + { + "epoch": 38.95063346439493, + "grad_norm": 0.2226478010416031, + "learning_rate": 0.0006, + "loss": 3.6902880668640137, + "step": 2804 + }, + { + "epoch": 38.964613368283096, + "grad_norm": 0.2071496546268463, + "learning_rate": 0.0006, + "loss": 3.6831371784210205, + "step": 2805 + }, + { + "epoch": 38.97859327217125, + "grad_norm": 0.19568349421024323, + "learning_rate": 0.0006, + "loss": 3.6897640228271484, + "step": 2806 + }, + { + "epoch": 38.992573176059416, + "grad_norm": 0.19067516922950745, + "learning_rate": 0.0006, + "loss": 3.7096242904663086, + "step": 2807 + }, + { + "epoch": 39.0, + "grad_norm": 0.22872281074523926, + "learning_rate": 0.0006, + "loss": 3.689342975616455, + "step": 2808 + }, + { + "epoch": 39.0, + "eval_loss": 4.001968860626221, + "eval_runtime": 44.8452, + "eval_samples_per_second": 54.454, + "eval_steps_per_second": 3.412, + "step": 2808 + }, + { + "epoch": 39.01397990388816, + "grad_norm": 0.21685896813869476, + "learning_rate": 0.0006, + "loss": 3.638145923614502, + "step": 2809 + }, + { + "epoch": 39.02795980777632, + "grad_norm": 0.20085014402866364, + "learning_rate": 0.0006, + "loss": 3.626654624938965, + "step": 2810 + }, + { + "epoch": 39.04193971166448, + "grad_norm": 0.20615799725055695, + "learning_rate": 0.0006, + "loss": 3.6280088424682617, + "step": 2811 + }, + { + "epoch": 39.05591961555265, + "grad_norm": 0.23471905291080475, + "learning_rate": 0.0006, + "loss": 3.6444239616394043, + "step": 2812 + }, + { + "epoch": 39.0698995194408, + "grad_norm": 0.22207780182361603, + "learning_rate": 0.0006, + "loss": 3.6276912689208984, + "step": 2813 + }, + { + "epoch": 39.083879423328966, + "grad_norm": 0.23354043066501617, + "learning_rate": 0.0006, + "loss": 3.7007269859313965, + "step": 2814 + }, + { + "epoch": 39.09785932721712, + "grad_norm": 0.22520557045936584, + "learning_rate": 0.0006, + "loss": 3.6487162113189697, + "step": 2815 + }, + { + "epoch": 39.111839231105286, + "grad_norm": 0.20489682257175446, + "learning_rate": 0.0006, + "loss": 3.6523492336273193, + "step": 2816 + }, + { + "epoch": 39.12581913499345, + "grad_norm": 0.20979270339012146, + "learning_rate": 0.0006, + "loss": 3.6574230194091797, + "step": 2817 + }, + { + "epoch": 39.139799038881605, + "grad_norm": 0.2256486713886261, + "learning_rate": 0.0006, + "loss": 3.6499013900756836, + "step": 2818 + }, + { + "epoch": 39.15377894276977, + "grad_norm": 0.1960437297821045, + "learning_rate": 0.0006, + "loss": 3.6780271530151367, + "step": 2819 + }, + { + "epoch": 39.16775884665793, + "grad_norm": 0.19279663264751434, + "learning_rate": 0.0006, + "loss": 3.623819589614868, + "step": 2820 + }, + { + "epoch": 39.18173875054609, + "grad_norm": 0.19151495397090912, + "learning_rate": 0.0006, + "loss": 3.612868070602417, + "step": 2821 + }, + { + "epoch": 39.19571865443425, + "grad_norm": 0.19399534165859222, + "learning_rate": 0.0006, + "loss": 3.6518092155456543, + "step": 2822 + }, + { + "epoch": 39.20969855832241, + "grad_norm": 0.21723251044750214, + "learning_rate": 0.0006, + "loss": 3.681509494781494, + "step": 2823 + }, + { + "epoch": 39.22367846221057, + "grad_norm": 0.2487006038427353, + "learning_rate": 0.0006, + "loss": 3.6569719314575195, + "step": 2824 + }, + { + "epoch": 39.237658366098735, + "grad_norm": 0.2640652656555176, + "learning_rate": 0.0006, + "loss": 3.680734634399414, + "step": 2825 + }, + { + "epoch": 39.25163826998689, + "grad_norm": 0.21862825751304626, + "learning_rate": 0.0006, + "loss": 3.6741840839385986, + "step": 2826 + }, + { + "epoch": 39.265618173875055, + "grad_norm": 0.19515705108642578, + "learning_rate": 0.0006, + "loss": 3.657750129699707, + "step": 2827 + }, + { + "epoch": 39.27959807776322, + "grad_norm": 0.1971602737903595, + "learning_rate": 0.0006, + "loss": 3.6524124145507812, + "step": 2828 + }, + { + "epoch": 39.293577981651374, + "grad_norm": 0.20822174847126007, + "learning_rate": 0.0006, + "loss": 3.69527006149292, + "step": 2829 + }, + { + "epoch": 39.30755788553954, + "grad_norm": 0.2566370368003845, + "learning_rate": 0.0006, + "loss": 3.6770880222320557, + "step": 2830 + }, + { + "epoch": 39.3215377894277, + "grad_norm": 0.24984225630760193, + "learning_rate": 0.0006, + "loss": 3.6733901500701904, + "step": 2831 + }, + { + "epoch": 39.33551769331586, + "grad_norm": 0.233322873711586, + "learning_rate": 0.0006, + "loss": 3.645519256591797, + "step": 2832 + }, + { + "epoch": 39.34949759720402, + "grad_norm": 0.21584749221801758, + "learning_rate": 0.0006, + "loss": 3.6211934089660645, + "step": 2833 + }, + { + "epoch": 39.36347750109218, + "grad_norm": 0.2188950479030609, + "learning_rate": 0.0006, + "loss": 3.6434195041656494, + "step": 2834 + }, + { + "epoch": 39.37745740498034, + "grad_norm": 0.21998439729213715, + "learning_rate": 0.0006, + "loss": 3.6720595359802246, + "step": 2835 + }, + { + "epoch": 39.391437308868504, + "grad_norm": 0.2459399700164795, + "learning_rate": 0.0006, + "loss": 3.667083740234375, + "step": 2836 + }, + { + "epoch": 39.40541721275666, + "grad_norm": 0.23579223453998566, + "learning_rate": 0.0006, + "loss": 3.665452480316162, + "step": 2837 + }, + { + "epoch": 39.419397116644824, + "grad_norm": 0.19401362538337708, + "learning_rate": 0.0006, + "loss": 3.684218406677246, + "step": 2838 + }, + { + "epoch": 39.43337702053299, + "grad_norm": 0.1894487738609314, + "learning_rate": 0.0006, + "loss": 3.670626163482666, + "step": 2839 + }, + { + "epoch": 39.44735692442114, + "grad_norm": 0.1936904937028885, + "learning_rate": 0.0006, + "loss": 3.6367318630218506, + "step": 2840 + }, + { + "epoch": 39.46133682830931, + "grad_norm": 0.1867629438638687, + "learning_rate": 0.0006, + "loss": 3.670098304748535, + "step": 2841 + }, + { + "epoch": 39.47531673219746, + "grad_norm": 0.18849903345108032, + "learning_rate": 0.0006, + "loss": 3.6877760887145996, + "step": 2842 + }, + { + "epoch": 39.489296636085626, + "grad_norm": 0.18247179687023163, + "learning_rate": 0.0006, + "loss": 3.7132980823516846, + "step": 2843 + }, + { + "epoch": 39.50327653997379, + "grad_norm": 0.19206349551677704, + "learning_rate": 0.0006, + "loss": 3.630319595336914, + "step": 2844 + }, + { + "epoch": 39.517256443861946, + "grad_norm": 0.21730613708496094, + "learning_rate": 0.0006, + "loss": 3.6818761825561523, + "step": 2845 + }, + { + "epoch": 39.53123634775011, + "grad_norm": 0.22482407093048096, + "learning_rate": 0.0006, + "loss": 3.6385269165039062, + "step": 2846 + }, + { + "epoch": 39.54521625163827, + "grad_norm": 0.24560105800628662, + "learning_rate": 0.0006, + "loss": 3.660067558288574, + "step": 2847 + }, + { + "epoch": 39.55919615552643, + "grad_norm": 0.23720617592334747, + "learning_rate": 0.0006, + "loss": 3.6811556816101074, + "step": 2848 + }, + { + "epoch": 39.57317605941459, + "grad_norm": 0.18990741670131683, + "learning_rate": 0.0006, + "loss": 3.6733779907226562, + "step": 2849 + }, + { + "epoch": 39.58715596330275, + "grad_norm": 0.2135438323020935, + "learning_rate": 0.0006, + "loss": 3.662020683288574, + "step": 2850 + }, + { + "epoch": 39.60113586719091, + "grad_norm": 0.24248908460140228, + "learning_rate": 0.0006, + "loss": 3.6794259548187256, + "step": 2851 + }, + { + "epoch": 39.615115771079076, + "grad_norm": 0.23115725815296173, + "learning_rate": 0.0006, + "loss": 3.6732406616210938, + "step": 2852 + }, + { + "epoch": 39.62909567496723, + "grad_norm": 0.23760166764259338, + "learning_rate": 0.0006, + "loss": 3.7062699794769287, + "step": 2853 + }, + { + "epoch": 39.643075578855395, + "grad_norm": 0.24670571088790894, + "learning_rate": 0.0006, + "loss": 3.692385673522949, + "step": 2854 + }, + { + "epoch": 39.65705548274356, + "grad_norm": 0.20983918011188507, + "learning_rate": 0.0006, + "loss": 3.691361427307129, + "step": 2855 + }, + { + "epoch": 39.671035386631715, + "grad_norm": 0.1915138065814972, + "learning_rate": 0.0006, + "loss": 3.6985888481140137, + "step": 2856 + }, + { + "epoch": 39.68501529051988, + "grad_norm": 0.23440803587436676, + "learning_rate": 0.0006, + "loss": 3.6484973430633545, + "step": 2857 + }, + { + "epoch": 39.69899519440804, + "grad_norm": 0.2483232468366623, + "learning_rate": 0.0006, + "loss": 3.6861510276794434, + "step": 2858 + }, + { + "epoch": 39.7129750982962, + "grad_norm": 0.21373426914215088, + "learning_rate": 0.0006, + "loss": 3.6528866291046143, + "step": 2859 + }, + { + "epoch": 39.72695500218436, + "grad_norm": 0.19849136471748352, + "learning_rate": 0.0006, + "loss": 3.6435961723327637, + "step": 2860 + }, + { + "epoch": 39.74093490607252, + "grad_norm": 0.21748292446136475, + "learning_rate": 0.0006, + "loss": 3.678481101989746, + "step": 2861 + }, + { + "epoch": 39.75491480996068, + "grad_norm": 0.22488188743591309, + "learning_rate": 0.0006, + "loss": 3.711717128753662, + "step": 2862 + }, + { + "epoch": 39.768894713848844, + "grad_norm": 0.22251835465431213, + "learning_rate": 0.0006, + "loss": 3.690516471862793, + "step": 2863 + }, + { + "epoch": 39.782874617737, + "grad_norm": 0.22101449966430664, + "learning_rate": 0.0006, + "loss": 3.6679611206054688, + "step": 2864 + }, + { + "epoch": 39.796854521625164, + "grad_norm": 0.20345936715602875, + "learning_rate": 0.0006, + "loss": 3.6935629844665527, + "step": 2865 + }, + { + "epoch": 39.81083442551333, + "grad_norm": 0.23772259056568146, + "learning_rate": 0.0006, + "loss": 3.697561264038086, + "step": 2866 + }, + { + "epoch": 39.824814329401484, + "grad_norm": 0.24446387588977814, + "learning_rate": 0.0006, + "loss": 3.696723461151123, + "step": 2867 + }, + { + "epoch": 39.83879423328965, + "grad_norm": 0.2365843653678894, + "learning_rate": 0.0006, + "loss": 3.6511402130126953, + "step": 2868 + }, + { + "epoch": 39.8527741371778, + "grad_norm": 0.25421974062919617, + "learning_rate": 0.0006, + "loss": 3.68449068069458, + "step": 2869 + }, + { + "epoch": 39.86675404106597, + "grad_norm": 0.2504308819770813, + "learning_rate": 0.0006, + "loss": 3.685884952545166, + "step": 2870 + }, + { + "epoch": 39.88073394495413, + "grad_norm": 0.24695490300655365, + "learning_rate": 0.0006, + "loss": 3.6667490005493164, + "step": 2871 + }, + { + "epoch": 39.89471384884229, + "grad_norm": 0.2633236348628998, + "learning_rate": 0.0006, + "loss": 3.6828866004943848, + "step": 2872 + }, + { + "epoch": 39.90869375273045, + "grad_norm": 0.2421039491891861, + "learning_rate": 0.0006, + "loss": 3.681187391281128, + "step": 2873 + }, + { + "epoch": 39.92267365661861, + "grad_norm": 0.21202950179576874, + "learning_rate": 0.0006, + "loss": 3.679069995880127, + "step": 2874 + }, + { + "epoch": 39.93665356050677, + "grad_norm": 0.2344917505979538, + "learning_rate": 0.0006, + "loss": 3.6810007095336914, + "step": 2875 + }, + { + "epoch": 39.95063346439493, + "grad_norm": 0.2115124762058258, + "learning_rate": 0.0006, + "loss": 3.653219223022461, + "step": 2876 + }, + { + "epoch": 39.964613368283096, + "grad_norm": 0.21588370203971863, + "learning_rate": 0.0006, + "loss": 3.6972861289978027, + "step": 2877 + }, + { + "epoch": 39.97859327217125, + "grad_norm": 0.26215407252311707, + "learning_rate": 0.0006, + "loss": 3.6796963214874268, + "step": 2878 + }, + { + "epoch": 39.992573176059416, + "grad_norm": 0.23645395040512085, + "learning_rate": 0.0006, + "loss": 3.696091413497925, + "step": 2879 + }, + { + "epoch": 40.0, + "grad_norm": 0.21817512810230255, + "learning_rate": 0.0006, + "loss": 3.668196678161621, + "step": 2880 + }, + { + "epoch": 40.0, + "eval_loss": 3.9873862266540527, + "eval_runtime": 44.1149, + "eval_samples_per_second": 55.355, + "eval_steps_per_second": 3.468, + "step": 2880 + }, + { + "epoch": 40.01397990388816, + "grad_norm": 0.2031477391719818, + "learning_rate": 0.0006, + "loss": 3.6494622230529785, + "step": 2881 + }, + { + "epoch": 40.02795980777632, + "grad_norm": 0.2223939746618271, + "learning_rate": 0.0006, + "loss": 3.6587047576904297, + "step": 2882 + }, + { + "epoch": 40.04193971166448, + "grad_norm": 0.21485820412635803, + "learning_rate": 0.0006, + "loss": 3.62253737449646, + "step": 2883 + }, + { + "epoch": 40.05591961555265, + "grad_norm": 0.23364055156707764, + "learning_rate": 0.0006, + "loss": 3.619035005569458, + "step": 2884 + }, + { + "epoch": 40.0698995194408, + "grad_norm": 0.23141583800315857, + "learning_rate": 0.0006, + "loss": 3.6650376319885254, + "step": 2885 + }, + { + "epoch": 40.083879423328966, + "grad_norm": 0.2131720930337906, + "learning_rate": 0.0006, + "loss": 3.646428108215332, + "step": 2886 + }, + { + "epoch": 40.09785932721712, + "grad_norm": 0.2337951511144638, + "learning_rate": 0.0006, + "loss": 3.6284823417663574, + "step": 2887 + }, + { + "epoch": 40.111839231105286, + "grad_norm": 0.2790892720222473, + "learning_rate": 0.0006, + "loss": 3.6558361053466797, + "step": 2888 + }, + { + "epoch": 40.12581913499345, + "grad_norm": 0.28444936871528625, + "learning_rate": 0.0006, + "loss": 3.644402503967285, + "step": 2889 + }, + { + "epoch": 40.139799038881605, + "grad_norm": 0.2550848126411438, + "learning_rate": 0.0006, + "loss": 3.671562671661377, + "step": 2890 + }, + { + "epoch": 40.15377894276977, + "grad_norm": 0.22960248589515686, + "learning_rate": 0.0006, + "loss": 3.6998534202575684, + "step": 2891 + }, + { + "epoch": 40.16775884665793, + "grad_norm": 0.23920369148254395, + "learning_rate": 0.0006, + "loss": 3.653874635696411, + "step": 2892 + }, + { + "epoch": 40.18173875054609, + "grad_norm": 0.24586012959480286, + "learning_rate": 0.0006, + "loss": 3.620765209197998, + "step": 2893 + }, + { + "epoch": 40.19571865443425, + "grad_norm": 0.26394739747047424, + "learning_rate": 0.0006, + "loss": 3.638437509536743, + "step": 2894 + }, + { + "epoch": 40.20969855832241, + "grad_norm": 0.27566927671432495, + "learning_rate": 0.0006, + "loss": 3.6684799194335938, + "step": 2895 + }, + { + "epoch": 40.22367846221057, + "grad_norm": 0.25469011068344116, + "learning_rate": 0.0006, + "loss": 3.6113009452819824, + "step": 2896 + }, + { + "epoch": 40.237658366098735, + "grad_norm": 0.2403056025505066, + "learning_rate": 0.0006, + "loss": 3.650771141052246, + "step": 2897 + }, + { + "epoch": 40.25163826998689, + "grad_norm": 0.262423038482666, + "learning_rate": 0.0006, + "loss": 3.635892391204834, + "step": 2898 + }, + { + "epoch": 40.265618173875055, + "grad_norm": 0.23696045577526093, + "learning_rate": 0.0006, + "loss": 3.6396005153656006, + "step": 2899 + }, + { + "epoch": 40.27959807776322, + "grad_norm": 0.208719402551651, + "learning_rate": 0.0006, + "loss": 3.6681132316589355, + "step": 2900 + }, + { + "epoch": 40.293577981651374, + "grad_norm": 0.21554480493068695, + "learning_rate": 0.0006, + "loss": 3.6417553424835205, + "step": 2901 + }, + { + "epoch": 40.30755788553954, + "grad_norm": 0.2290734499692917, + "learning_rate": 0.0006, + "loss": 3.6659927368164062, + "step": 2902 + }, + { + "epoch": 40.3215377894277, + "grad_norm": 0.20803220570087433, + "learning_rate": 0.0006, + "loss": 3.6443324089050293, + "step": 2903 + }, + { + "epoch": 40.33551769331586, + "grad_norm": 0.20334568619728088, + "learning_rate": 0.0006, + "loss": 3.6824207305908203, + "step": 2904 + }, + { + "epoch": 40.34949759720402, + "grad_norm": 0.2000233381986618, + "learning_rate": 0.0006, + "loss": 3.644399642944336, + "step": 2905 + }, + { + "epoch": 40.36347750109218, + "grad_norm": 0.21990752220153809, + "learning_rate": 0.0006, + "loss": 3.668160915374756, + "step": 2906 + }, + { + "epoch": 40.37745740498034, + "grad_norm": 0.24385249614715576, + "learning_rate": 0.0006, + "loss": 3.634392261505127, + "step": 2907 + }, + { + "epoch": 40.391437308868504, + "grad_norm": 0.21272684633731842, + "learning_rate": 0.0006, + "loss": 3.6504263877868652, + "step": 2908 + }, + { + "epoch": 40.40541721275666, + "grad_norm": 0.2003277838230133, + "learning_rate": 0.0006, + "loss": 3.6707763671875, + "step": 2909 + }, + { + "epoch": 40.419397116644824, + "grad_norm": 0.2086087465286255, + "learning_rate": 0.0006, + "loss": 3.66988468170166, + "step": 2910 + }, + { + "epoch": 40.43337702053299, + "grad_norm": 0.19706451892852783, + "learning_rate": 0.0006, + "loss": 3.662794828414917, + "step": 2911 + }, + { + "epoch": 40.44735692442114, + "grad_norm": 0.18795762956142426, + "learning_rate": 0.0006, + "loss": 3.628016233444214, + "step": 2912 + }, + { + "epoch": 40.46133682830931, + "grad_norm": 0.19931825995445251, + "learning_rate": 0.0006, + "loss": 3.6791915893554688, + "step": 2913 + }, + { + "epoch": 40.47531673219746, + "grad_norm": 0.21295934915542603, + "learning_rate": 0.0006, + "loss": 3.688632011413574, + "step": 2914 + }, + { + "epoch": 40.489296636085626, + "grad_norm": 0.2104834020137787, + "learning_rate": 0.0006, + "loss": 3.6270499229431152, + "step": 2915 + }, + { + "epoch": 40.50327653997379, + "grad_norm": 0.19942966103553772, + "learning_rate": 0.0006, + "loss": 3.651721477508545, + "step": 2916 + }, + { + "epoch": 40.517256443861946, + "grad_norm": 0.18890425562858582, + "learning_rate": 0.0006, + "loss": 3.6778619289398193, + "step": 2917 + }, + { + "epoch": 40.53123634775011, + "grad_norm": 0.19861607253551483, + "learning_rate": 0.0006, + "loss": 3.658832550048828, + "step": 2918 + }, + { + "epoch": 40.54521625163827, + "grad_norm": 0.21553616225719452, + "learning_rate": 0.0006, + "loss": 3.6566901206970215, + "step": 2919 + }, + { + "epoch": 40.55919615552643, + "grad_norm": 0.21698440611362457, + "learning_rate": 0.0006, + "loss": 3.6795129776000977, + "step": 2920 + }, + { + "epoch": 40.57317605941459, + "grad_norm": 0.20310913026332855, + "learning_rate": 0.0006, + "loss": 3.645244598388672, + "step": 2921 + }, + { + "epoch": 40.58715596330275, + "grad_norm": 0.2075812816619873, + "learning_rate": 0.0006, + "loss": 3.678452491760254, + "step": 2922 + }, + { + "epoch": 40.60113586719091, + "grad_norm": 0.20606619119644165, + "learning_rate": 0.0006, + "loss": 3.6150245666503906, + "step": 2923 + }, + { + "epoch": 40.615115771079076, + "grad_norm": 0.21511296927928925, + "learning_rate": 0.0006, + "loss": 3.6682112216949463, + "step": 2924 + }, + { + "epoch": 40.62909567496723, + "grad_norm": 0.19771839678287506, + "learning_rate": 0.0006, + "loss": 3.6639556884765625, + "step": 2925 + }, + { + "epoch": 40.643075578855395, + "grad_norm": 0.20419852435588837, + "learning_rate": 0.0006, + "loss": 3.664982318878174, + "step": 2926 + }, + { + "epoch": 40.65705548274356, + "grad_norm": 0.20119430124759674, + "learning_rate": 0.0006, + "loss": 3.661625385284424, + "step": 2927 + }, + { + "epoch": 40.671035386631715, + "grad_norm": 0.21590501070022583, + "learning_rate": 0.0006, + "loss": 3.673719644546509, + "step": 2928 + }, + { + "epoch": 40.68501529051988, + "grad_norm": 0.19165395200252533, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 2929 + }, + { + "epoch": 40.69899519440804, + "grad_norm": 0.19620473682880402, + "learning_rate": 0.0006, + "loss": 3.7008142471313477, + "step": 2930 + }, + { + "epoch": 40.7129750982962, + "grad_norm": 0.23002777993679047, + "learning_rate": 0.0006, + "loss": 3.654296875, + "step": 2931 + }, + { + "epoch": 40.72695500218436, + "grad_norm": 0.22007468342781067, + "learning_rate": 0.0006, + "loss": 3.688178539276123, + "step": 2932 + }, + { + "epoch": 40.74093490607252, + "grad_norm": 0.2030077874660492, + "learning_rate": 0.0006, + "loss": 3.6514129638671875, + "step": 2933 + }, + { + "epoch": 40.75491480996068, + "grad_norm": 0.20960700511932373, + "learning_rate": 0.0006, + "loss": 3.651864528656006, + "step": 2934 + }, + { + "epoch": 40.768894713848844, + "grad_norm": 0.2132565975189209, + "learning_rate": 0.0006, + "loss": 3.680915355682373, + "step": 2935 + }, + { + "epoch": 40.782874617737, + "grad_norm": 0.2411353588104248, + "learning_rate": 0.0006, + "loss": 3.647167682647705, + "step": 2936 + }, + { + "epoch": 40.796854521625164, + "grad_norm": 0.24621541798114777, + "learning_rate": 0.0006, + "loss": 3.6784768104553223, + "step": 2937 + }, + { + "epoch": 40.81083442551333, + "grad_norm": 0.23324407637119293, + "learning_rate": 0.0006, + "loss": 3.6855263710021973, + "step": 2938 + }, + { + "epoch": 40.824814329401484, + "grad_norm": 0.21749550104141235, + "learning_rate": 0.0006, + "loss": 3.672682285308838, + "step": 2939 + }, + { + "epoch": 40.83879423328965, + "grad_norm": 0.1957911103963852, + "learning_rate": 0.0006, + "loss": 3.635678291320801, + "step": 2940 + }, + { + "epoch": 40.8527741371778, + "grad_norm": 0.21262411773204803, + "learning_rate": 0.0006, + "loss": 3.6829824447631836, + "step": 2941 + }, + { + "epoch": 40.86675404106597, + "grad_norm": 0.19940680265426636, + "learning_rate": 0.0006, + "loss": 3.720932960510254, + "step": 2942 + }, + { + "epoch": 40.88073394495413, + "grad_norm": 0.1964999884366989, + "learning_rate": 0.0006, + "loss": 3.678405284881592, + "step": 2943 + }, + { + "epoch": 40.89471384884229, + "grad_norm": 0.21459022164344788, + "learning_rate": 0.0006, + "loss": 3.6788480281829834, + "step": 2944 + }, + { + "epoch": 40.90869375273045, + "grad_norm": 0.2251381129026413, + "learning_rate": 0.0006, + "loss": 3.679459571838379, + "step": 2945 + }, + { + "epoch": 40.92267365661861, + "grad_norm": 0.19951461255550385, + "learning_rate": 0.0006, + "loss": 3.6610841751098633, + "step": 2946 + }, + { + "epoch": 40.93665356050677, + "grad_norm": 0.2057943493127823, + "learning_rate": 0.0006, + "loss": 3.649491786956787, + "step": 2947 + }, + { + "epoch": 40.95063346439493, + "grad_norm": 0.19601917266845703, + "learning_rate": 0.0006, + "loss": 3.724552631378174, + "step": 2948 + }, + { + "epoch": 40.964613368283096, + "grad_norm": 0.20982769131660461, + "learning_rate": 0.0006, + "loss": 3.648465394973755, + "step": 2949 + }, + { + "epoch": 40.97859327217125, + "grad_norm": 0.21103954315185547, + "learning_rate": 0.0006, + "loss": 3.692239999771118, + "step": 2950 + }, + { + "epoch": 40.992573176059416, + "grad_norm": 0.2007385492324829, + "learning_rate": 0.0006, + "loss": 3.659999132156372, + "step": 2951 + }, + { + "epoch": 41.0, + "grad_norm": 0.22357431054115295, + "learning_rate": 0.0006, + "loss": 3.6461124420166016, + "step": 2952 + }, + { + "epoch": 41.0, + "eval_loss": 3.9891226291656494, + "eval_runtime": 44.65, + "eval_samples_per_second": 54.692, + "eval_steps_per_second": 3.427, + "step": 2952 + }, + { + "epoch": 41.01397990388816, + "grad_norm": 0.20387817919254303, + "learning_rate": 0.0006, + "loss": 3.643923282623291, + "step": 2953 + }, + { + "epoch": 41.02795980777632, + "grad_norm": 0.1988423764705658, + "learning_rate": 0.0006, + "loss": 3.6152570247650146, + "step": 2954 + }, + { + "epoch": 41.04193971166448, + "grad_norm": 0.19998641312122345, + "learning_rate": 0.0006, + "loss": 3.667520523071289, + "step": 2955 + }, + { + "epoch": 41.05591961555265, + "grad_norm": 0.18347714841365814, + "learning_rate": 0.0006, + "loss": 3.6289002895355225, + "step": 2956 + }, + { + "epoch": 41.0698995194408, + "grad_norm": 0.21235640347003937, + "learning_rate": 0.0006, + "loss": 3.6422951221466064, + "step": 2957 + }, + { + "epoch": 41.083879423328966, + "grad_norm": 0.1990172415971756, + "learning_rate": 0.0006, + "loss": 3.625697135925293, + "step": 2958 + }, + { + "epoch": 41.09785932721712, + "grad_norm": 0.18313643336296082, + "learning_rate": 0.0006, + "loss": 3.672356605529785, + "step": 2959 + }, + { + "epoch": 41.111839231105286, + "grad_norm": 0.17956401407718658, + "learning_rate": 0.0006, + "loss": 3.6093602180480957, + "step": 2960 + }, + { + "epoch": 41.12581913499345, + "grad_norm": 0.19487550854682922, + "learning_rate": 0.0006, + "loss": 3.6004128456115723, + "step": 2961 + }, + { + "epoch": 41.139799038881605, + "grad_norm": 0.2117495834827423, + "learning_rate": 0.0006, + "loss": 3.6468565464019775, + "step": 2962 + }, + { + "epoch": 41.15377894276977, + "grad_norm": 0.20602662861347198, + "learning_rate": 0.0006, + "loss": 3.6299140453338623, + "step": 2963 + }, + { + "epoch": 41.16775884665793, + "grad_norm": 0.21859265863895416, + "learning_rate": 0.0006, + "loss": 3.630052328109741, + "step": 2964 + }, + { + "epoch": 41.18173875054609, + "grad_norm": 0.22684140503406525, + "learning_rate": 0.0006, + "loss": 3.5995004177093506, + "step": 2965 + }, + { + "epoch": 41.19571865443425, + "grad_norm": 0.25682681798934937, + "learning_rate": 0.0006, + "loss": 3.613131523132324, + "step": 2966 + }, + { + "epoch": 41.20969855832241, + "grad_norm": 0.2508181631565094, + "learning_rate": 0.0006, + "loss": 3.644259452819824, + "step": 2967 + }, + { + "epoch": 41.22367846221057, + "grad_norm": 0.24200427532196045, + "learning_rate": 0.0006, + "loss": 3.6651816368103027, + "step": 2968 + }, + { + "epoch": 41.237658366098735, + "grad_norm": 0.21753790974617004, + "learning_rate": 0.0006, + "loss": 3.686199188232422, + "step": 2969 + }, + { + "epoch": 41.25163826998689, + "grad_norm": 0.19811955094337463, + "learning_rate": 0.0006, + "loss": 3.63014817237854, + "step": 2970 + }, + { + "epoch": 41.265618173875055, + "grad_norm": 0.19316327571868896, + "learning_rate": 0.0006, + "loss": 3.6532740592956543, + "step": 2971 + }, + { + "epoch": 41.27959807776322, + "grad_norm": 0.21440976858139038, + "learning_rate": 0.0006, + "loss": 3.6546850204467773, + "step": 2972 + }, + { + "epoch": 41.293577981651374, + "grad_norm": 0.2732681334018707, + "learning_rate": 0.0006, + "loss": 3.6135244369506836, + "step": 2973 + }, + { + "epoch": 41.30755788553954, + "grad_norm": 0.2588619589805603, + "learning_rate": 0.0006, + "loss": 3.657963275909424, + "step": 2974 + }, + { + "epoch": 41.3215377894277, + "grad_norm": 0.20054970681667328, + "learning_rate": 0.0006, + "loss": 3.6391024589538574, + "step": 2975 + }, + { + "epoch": 41.33551769331586, + "grad_norm": 0.23703549802303314, + "learning_rate": 0.0006, + "loss": 3.6609978675842285, + "step": 2976 + }, + { + "epoch": 41.34949759720402, + "grad_norm": 0.24222144484519958, + "learning_rate": 0.0006, + "loss": 3.659271478652954, + "step": 2977 + }, + { + "epoch": 41.36347750109218, + "grad_norm": 0.2228497713804245, + "learning_rate": 0.0006, + "loss": 3.607358455657959, + "step": 2978 + }, + { + "epoch": 41.37745740498034, + "grad_norm": 0.22105038166046143, + "learning_rate": 0.0006, + "loss": 3.64198899269104, + "step": 2979 + }, + { + "epoch": 41.391437308868504, + "grad_norm": 0.23753555119037628, + "learning_rate": 0.0006, + "loss": 3.63116455078125, + "step": 2980 + }, + { + "epoch": 41.40541721275666, + "grad_norm": 0.24492689967155457, + "learning_rate": 0.0006, + "loss": 3.636122465133667, + "step": 2981 + }, + { + "epoch": 41.419397116644824, + "grad_norm": 0.20610782504081726, + "learning_rate": 0.0006, + "loss": 3.656487226486206, + "step": 2982 + }, + { + "epoch": 41.43337702053299, + "grad_norm": 0.20781412720680237, + "learning_rate": 0.0006, + "loss": 3.669196605682373, + "step": 2983 + }, + { + "epoch": 41.44735692442114, + "grad_norm": 0.23892036080360413, + "learning_rate": 0.0006, + "loss": 3.6345765590667725, + "step": 2984 + }, + { + "epoch": 41.46133682830931, + "grad_norm": 0.2477712333202362, + "learning_rate": 0.0006, + "loss": 3.6599812507629395, + "step": 2985 + }, + { + "epoch": 41.47531673219746, + "grad_norm": 0.25314703583717346, + "learning_rate": 0.0006, + "loss": 3.6737258434295654, + "step": 2986 + }, + { + "epoch": 41.489296636085626, + "grad_norm": 0.2386070191860199, + "learning_rate": 0.0006, + "loss": 3.666586399078369, + "step": 2987 + }, + { + "epoch": 41.50327653997379, + "grad_norm": 0.27259722352027893, + "learning_rate": 0.0006, + "loss": 3.658761501312256, + "step": 2988 + }, + { + "epoch": 41.517256443861946, + "grad_norm": 0.3312860429286957, + "learning_rate": 0.0006, + "loss": 3.629699230194092, + "step": 2989 + }, + { + "epoch": 41.53123634775011, + "grad_norm": 0.3321581780910492, + "learning_rate": 0.0006, + "loss": 3.66628360748291, + "step": 2990 + }, + { + "epoch": 41.54521625163827, + "grad_norm": 0.2850016951560974, + "learning_rate": 0.0006, + "loss": 3.690005302429199, + "step": 2991 + }, + { + "epoch": 41.55919615552643, + "grad_norm": 0.2544100880622864, + "learning_rate": 0.0006, + "loss": 3.6554486751556396, + "step": 2992 + }, + { + "epoch": 41.57317605941459, + "grad_norm": 0.28541380167007446, + "learning_rate": 0.0006, + "loss": 3.672952175140381, + "step": 2993 + }, + { + "epoch": 41.58715596330275, + "grad_norm": 0.2909766435623169, + "learning_rate": 0.0006, + "loss": 3.6649627685546875, + "step": 2994 + }, + { + "epoch": 41.60113586719091, + "grad_norm": 0.26089969277381897, + "learning_rate": 0.0006, + "loss": 3.6512341499328613, + "step": 2995 + }, + { + "epoch": 41.615115771079076, + "grad_norm": 0.21815894544124603, + "learning_rate": 0.0006, + "loss": 3.612436056137085, + "step": 2996 + }, + { + "epoch": 41.62909567496723, + "grad_norm": 0.20712246000766754, + "learning_rate": 0.0006, + "loss": 3.6482479572296143, + "step": 2997 + }, + { + "epoch": 41.643075578855395, + "grad_norm": 0.23280103504657745, + "learning_rate": 0.0006, + "loss": 3.6648616790771484, + "step": 2998 + }, + { + "epoch": 41.65705548274356, + "grad_norm": 0.21623823046684265, + "learning_rate": 0.0006, + "loss": 3.6714487075805664, + "step": 2999 + }, + { + "epoch": 41.671035386631715, + "grad_norm": 0.2081632912158966, + "learning_rate": 0.0006, + "loss": 3.693014144897461, + "step": 3000 + }, + { + "epoch": 41.68501529051988, + "grad_norm": 0.23109425604343414, + "learning_rate": 0.0006, + "loss": 3.667262554168701, + "step": 3001 + }, + { + "epoch": 41.69899519440804, + "grad_norm": 0.2304934561252594, + "learning_rate": 0.0006, + "loss": 3.666405439376831, + "step": 3002 + }, + { + "epoch": 41.7129750982962, + "grad_norm": 0.23132432997226715, + "learning_rate": 0.0006, + "loss": 3.690964698791504, + "step": 3003 + }, + { + "epoch": 41.72695500218436, + "grad_norm": 0.2085159569978714, + "learning_rate": 0.0006, + "loss": 3.6620168685913086, + "step": 3004 + }, + { + "epoch": 41.74093490607252, + "grad_norm": 0.1919657438993454, + "learning_rate": 0.0006, + "loss": 3.67447566986084, + "step": 3005 + }, + { + "epoch": 41.75491480996068, + "grad_norm": 0.20189036428928375, + "learning_rate": 0.0006, + "loss": 3.6434998512268066, + "step": 3006 + }, + { + "epoch": 41.768894713848844, + "grad_norm": 0.23530980944633484, + "learning_rate": 0.0006, + "loss": 3.644280433654785, + "step": 3007 + }, + { + "epoch": 41.782874617737, + "grad_norm": 0.2550027370452881, + "learning_rate": 0.0006, + "loss": 3.6686060428619385, + "step": 3008 + }, + { + "epoch": 41.796854521625164, + "grad_norm": 0.2285512536764145, + "learning_rate": 0.0006, + "loss": 3.7013134956359863, + "step": 3009 + }, + { + "epoch": 41.81083442551333, + "grad_norm": 0.20538675785064697, + "learning_rate": 0.0006, + "loss": 3.6568830013275146, + "step": 3010 + }, + { + "epoch": 41.824814329401484, + "grad_norm": 0.2007976472377777, + "learning_rate": 0.0006, + "loss": 3.680250883102417, + "step": 3011 + }, + { + "epoch": 41.83879423328965, + "grad_norm": 0.20060500502586365, + "learning_rate": 0.0006, + "loss": 3.6565070152282715, + "step": 3012 + }, + { + "epoch": 41.8527741371778, + "grad_norm": 0.21055014431476593, + "learning_rate": 0.0006, + "loss": 3.661667823791504, + "step": 3013 + }, + { + "epoch": 41.86675404106597, + "grad_norm": 0.2201126217842102, + "learning_rate": 0.0006, + "loss": 3.650052070617676, + "step": 3014 + }, + { + "epoch": 41.88073394495413, + "grad_norm": 0.20397843420505524, + "learning_rate": 0.0006, + "loss": 3.6535415649414062, + "step": 3015 + }, + { + "epoch": 41.89471384884229, + "grad_norm": 0.1993463635444641, + "learning_rate": 0.0006, + "loss": 3.665696144104004, + "step": 3016 + }, + { + "epoch": 41.90869375273045, + "grad_norm": 0.20448797941207886, + "learning_rate": 0.0006, + "loss": 3.6448118686676025, + "step": 3017 + }, + { + "epoch": 41.92267365661861, + "grad_norm": 0.2064918726682663, + "learning_rate": 0.0006, + "loss": 3.6881537437438965, + "step": 3018 + }, + { + "epoch": 41.93665356050677, + "grad_norm": 0.20554372668266296, + "learning_rate": 0.0006, + "loss": 3.688559055328369, + "step": 3019 + }, + { + "epoch": 41.95063346439493, + "grad_norm": 0.1862783133983612, + "learning_rate": 0.0006, + "loss": 3.6713812351226807, + "step": 3020 + }, + { + "epoch": 41.964613368283096, + "grad_norm": 0.18139860033988953, + "learning_rate": 0.0006, + "loss": 3.6612548828125, + "step": 3021 + }, + { + "epoch": 41.97859327217125, + "grad_norm": 0.1844220608472824, + "learning_rate": 0.0006, + "loss": 3.641725540161133, + "step": 3022 + }, + { + "epoch": 41.992573176059416, + "grad_norm": 0.1885213702917099, + "learning_rate": 0.0006, + "loss": 3.663257122039795, + "step": 3023 + }, + { + "epoch": 42.0, + "grad_norm": 0.2250746339559555, + "learning_rate": 0.0006, + "loss": 3.6479320526123047, + "step": 3024 + }, + { + "epoch": 42.0, + "eval_loss": 3.993955135345459, + "eval_runtime": 44.4709, + "eval_samples_per_second": 54.912, + "eval_steps_per_second": 3.44, + "step": 3024 + }, + { + "epoch": 42.01397990388816, + "grad_norm": 0.21096517145633698, + "learning_rate": 0.0006, + "loss": 3.6729278564453125, + "step": 3025 + }, + { + "epoch": 42.02795980777632, + "grad_norm": 0.2106277495622635, + "learning_rate": 0.0006, + "loss": 3.629892349243164, + "step": 3026 + }, + { + "epoch": 42.04193971166448, + "grad_norm": 0.2673060894012451, + "learning_rate": 0.0006, + "loss": 3.643604040145874, + "step": 3027 + }, + { + "epoch": 42.05591961555265, + "grad_norm": 0.28180691599845886, + "learning_rate": 0.0006, + "loss": 3.596560478210449, + "step": 3028 + }, + { + "epoch": 42.0698995194408, + "grad_norm": 0.25607243180274963, + "learning_rate": 0.0006, + "loss": 3.597935199737549, + "step": 3029 + }, + { + "epoch": 42.083879423328966, + "grad_norm": 0.22120746970176697, + "learning_rate": 0.0006, + "loss": 3.6219305992126465, + "step": 3030 + }, + { + "epoch": 42.09785932721712, + "grad_norm": 0.2164907306432724, + "learning_rate": 0.0006, + "loss": 3.6220779418945312, + "step": 3031 + }, + { + "epoch": 42.111839231105286, + "grad_norm": 0.23800921440124512, + "learning_rate": 0.0006, + "loss": 3.63372540473938, + "step": 3032 + }, + { + "epoch": 42.12581913499345, + "grad_norm": 0.21812695264816284, + "learning_rate": 0.0006, + "loss": 3.636105537414551, + "step": 3033 + }, + { + "epoch": 42.139799038881605, + "grad_norm": 0.2027447372674942, + "learning_rate": 0.0006, + "loss": 3.6167502403259277, + "step": 3034 + }, + { + "epoch": 42.15377894276977, + "grad_norm": 0.20157714188098907, + "learning_rate": 0.0006, + "loss": 3.6141409873962402, + "step": 3035 + }, + { + "epoch": 42.16775884665793, + "grad_norm": 0.20780996978282928, + "learning_rate": 0.0006, + "loss": 3.6323471069335938, + "step": 3036 + }, + { + "epoch": 42.18173875054609, + "grad_norm": 0.20025081932544708, + "learning_rate": 0.0006, + "loss": 3.625446081161499, + "step": 3037 + }, + { + "epoch": 42.19571865443425, + "grad_norm": 0.20019082725048065, + "learning_rate": 0.0006, + "loss": 3.631418228149414, + "step": 3038 + }, + { + "epoch": 42.20969855832241, + "grad_norm": 0.21194526553153992, + "learning_rate": 0.0006, + "loss": 3.6180832386016846, + "step": 3039 + }, + { + "epoch": 42.22367846221057, + "grad_norm": 0.2016245573759079, + "learning_rate": 0.0006, + "loss": 3.6388602256774902, + "step": 3040 + }, + { + "epoch": 42.237658366098735, + "grad_norm": 0.1892252415418625, + "learning_rate": 0.0006, + "loss": 3.6086854934692383, + "step": 3041 + }, + { + "epoch": 42.25163826998689, + "grad_norm": 0.1878061145544052, + "learning_rate": 0.0006, + "loss": 3.599428176879883, + "step": 3042 + }, + { + "epoch": 42.265618173875055, + "grad_norm": 0.20258742570877075, + "learning_rate": 0.0006, + "loss": 3.6177172660827637, + "step": 3043 + }, + { + "epoch": 42.27959807776322, + "grad_norm": 0.2114444226026535, + "learning_rate": 0.0006, + "loss": 3.641916275024414, + "step": 3044 + }, + { + "epoch": 42.293577981651374, + "grad_norm": 0.19873645901679993, + "learning_rate": 0.0006, + "loss": 3.6585676670074463, + "step": 3045 + }, + { + "epoch": 42.30755788553954, + "grad_norm": 0.20361217856407166, + "learning_rate": 0.0006, + "loss": 3.648475170135498, + "step": 3046 + }, + { + "epoch": 42.3215377894277, + "grad_norm": 0.20227114856243134, + "learning_rate": 0.0006, + "loss": 3.63625431060791, + "step": 3047 + }, + { + "epoch": 42.33551769331586, + "grad_norm": 0.18246233463287354, + "learning_rate": 0.0006, + "loss": 3.6380200386047363, + "step": 3048 + }, + { + "epoch": 42.34949759720402, + "grad_norm": 0.17944976687431335, + "learning_rate": 0.0006, + "loss": 3.6325912475585938, + "step": 3049 + }, + { + "epoch": 42.36347750109218, + "grad_norm": 0.188584566116333, + "learning_rate": 0.0006, + "loss": 3.6418886184692383, + "step": 3050 + }, + { + "epoch": 42.37745740498034, + "grad_norm": 0.1917790323495865, + "learning_rate": 0.0006, + "loss": 3.664421558380127, + "step": 3051 + }, + { + "epoch": 42.391437308868504, + "grad_norm": 0.175637349486351, + "learning_rate": 0.0006, + "loss": 3.641819953918457, + "step": 3052 + }, + { + "epoch": 42.40541721275666, + "grad_norm": 0.18751518428325653, + "learning_rate": 0.0006, + "loss": 3.646697998046875, + "step": 3053 + }, + { + "epoch": 42.419397116644824, + "grad_norm": 0.1805887520313263, + "learning_rate": 0.0006, + "loss": 3.637866735458374, + "step": 3054 + }, + { + "epoch": 42.43337702053299, + "grad_norm": 0.19680845737457275, + "learning_rate": 0.0006, + "loss": 3.602511405944824, + "step": 3055 + }, + { + "epoch": 42.44735692442114, + "grad_norm": 0.20605766773223877, + "learning_rate": 0.0006, + "loss": 3.6472771167755127, + "step": 3056 + }, + { + "epoch": 42.46133682830931, + "grad_norm": 0.18083851039409637, + "learning_rate": 0.0006, + "loss": 3.6672325134277344, + "step": 3057 + }, + { + "epoch": 42.47531673219746, + "grad_norm": 0.19665084779262543, + "learning_rate": 0.0006, + "loss": 3.625300884246826, + "step": 3058 + }, + { + "epoch": 42.489296636085626, + "grad_norm": 0.22506165504455566, + "learning_rate": 0.0006, + "loss": 3.592872142791748, + "step": 3059 + }, + { + "epoch": 42.50327653997379, + "grad_norm": 0.2051578164100647, + "learning_rate": 0.0006, + "loss": 3.6302249431610107, + "step": 3060 + }, + { + "epoch": 42.517256443861946, + "grad_norm": 0.18957172334194183, + "learning_rate": 0.0006, + "loss": 3.6277074813842773, + "step": 3061 + }, + { + "epoch": 42.53123634775011, + "grad_norm": 0.21467208862304688, + "learning_rate": 0.0006, + "loss": 3.6121392250061035, + "step": 3062 + }, + { + "epoch": 42.54521625163827, + "grad_norm": 0.21618402004241943, + "learning_rate": 0.0006, + "loss": 3.664738655090332, + "step": 3063 + }, + { + "epoch": 42.55919615552643, + "grad_norm": 0.2259770780801773, + "learning_rate": 0.0006, + "loss": 3.652042865753174, + "step": 3064 + }, + { + "epoch": 42.57317605941459, + "grad_norm": 0.22667232155799866, + "learning_rate": 0.0006, + "loss": 3.6552934646606445, + "step": 3065 + }, + { + "epoch": 42.58715596330275, + "grad_norm": 0.21405228972434998, + "learning_rate": 0.0006, + "loss": 3.644043445587158, + "step": 3066 + }, + { + "epoch": 42.60113586719091, + "grad_norm": 0.20855450630187988, + "learning_rate": 0.0006, + "loss": 3.6534876823425293, + "step": 3067 + }, + { + "epoch": 42.615115771079076, + "grad_norm": 0.22474415600299835, + "learning_rate": 0.0006, + "loss": 3.656677484512329, + "step": 3068 + }, + { + "epoch": 42.62909567496723, + "grad_norm": 0.23401428759098053, + "learning_rate": 0.0006, + "loss": 3.6788997650146484, + "step": 3069 + }, + { + "epoch": 42.643075578855395, + "grad_norm": 0.21567967534065247, + "learning_rate": 0.0006, + "loss": 3.675379753112793, + "step": 3070 + }, + { + "epoch": 42.65705548274356, + "grad_norm": 0.21704941987991333, + "learning_rate": 0.0006, + "loss": 3.630707263946533, + "step": 3071 + }, + { + "epoch": 42.671035386631715, + "grad_norm": 0.2718963921070099, + "learning_rate": 0.0006, + "loss": 3.6653294563293457, + "step": 3072 + }, + { + "epoch": 42.68501529051988, + "grad_norm": 0.30198901891708374, + "learning_rate": 0.0006, + "loss": 3.6761326789855957, + "step": 3073 + }, + { + "epoch": 42.69899519440804, + "grad_norm": 0.27593618631362915, + "learning_rate": 0.0006, + "loss": 3.6610732078552246, + "step": 3074 + }, + { + "epoch": 42.7129750982962, + "grad_norm": 0.22495242953300476, + "learning_rate": 0.0006, + "loss": 3.656907320022583, + "step": 3075 + }, + { + "epoch": 42.72695500218436, + "grad_norm": 0.19872353971004486, + "learning_rate": 0.0006, + "loss": 3.6611597537994385, + "step": 3076 + }, + { + "epoch": 42.74093490607252, + "grad_norm": 0.21527111530303955, + "learning_rate": 0.0006, + "loss": 3.676821708679199, + "step": 3077 + }, + { + "epoch": 42.75491480996068, + "grad_norm": 0.22314463555812836, + "learning_rate": 0.0006, + "loss": 3.629460334777832, + "step": 3078 + }, + { + "epoch": 42.768894713848844, + "grad_norm": 0.23461024463176727, + "learning_rate": 0.0006, + "loss": 3.665390968322754, + "step": 3079 + }, + { + "epoch": 42.782874617737, + "grad_norm": 0.2582414448261261, + "learning_rate": 0.0006, + "loss": 3.6420979499816895, + "step": 3080 + }, + { + "epoch": 42.796854521625164, + "grad_norm": 0.2505052983760834, + "learning_rate": 0.0006, + "loss": 3.67236328125, + "step": 3081 + }, + { + "epoch": 42.81083442551333, + "grad_norm": 0.22617632150650024, + "learning_rate": 0.0006, + "loss": 3.654897689819336, + "step": 3082 + }, + { + "epoch": 42.824814329401484, + "grad_norm": 0.2340085208415985, + "learning_rate": 0.0006, + "loss": 3.6423635482788086, + "step": 3083 + }, + { + "epoch": 42.83879423328965, + "grad_norm": 0.26765671372413635, + "learning_rate": 0.0006, + "loss": 3.622769832611084, + "step": 3084 + }, + { + "epoch": 42.8527741371778, + "grad_norm": 0.29490381479263306, + "learning_rate": 0.0006, + "loss": 3.656053066253662, + "step": 3085 + }, + { + "epoch": 42.86675404106597, + "grad_norm": 0.29776132106781006, + "learning_rate": 0.0006, + "loss": 3.6454644203186035, + "step": 3086 + }, + { + "epoch": 42.88073394495413, + "grad_norm": 0.23994849622249603, + "learning_rate": 0.0006, + "loss": 3.674665927886963, + "step": 3087 + }, + { + "epoch": 42.89471384884229, + "grad_norm": 0.21456265449523926, + "learning_rate": 0.0006, + "loss": 3.670175790786743, + "step": 3088 + }, + { + "epoch": 42.90869375273045, + "grad_norm": 0.25727778673171997, + "learning_rate": 0.0006, + "loss": 3.6425390243530273, + "step": 3089 + }, + { + "epoch": 42.92267365661861, + "grad_norm": 0.30310627818107605, + "learning_rate": 0.0006, + "loss": 3.68511962890625, + "step": 3090 + }, + { + "epoch": 42.93665356050677, + "grad_norm": 0.2792291045188904, + "learning_rate": 0.0006, + "loss": 3.681732654571533, + "step": 3091 + }, + { + "epoch": 42.95063346439493, + "grad_norm": 0.23614276945590973, + "learning_rate": 0.0006, + "loss": 3.6417222023010254, + "step": 3092 + }, + { + "epoch": 42.964613368283096, + "grad_norm": 0.23602448403835297, + "learning_rate": 0.0006, + "loss": 3.6602869033813477, + "step": 3093 + }, + { + "epoch": 42.97859327217125, + "grad_norm": 0.21968287229537964, + "learning_rate": 0.0006, + "loss": 3.6618118286132812, + "step": 3094 + }, + { + "epoch": 42.992573176059416, + "grad_norm": 0.2177523374557495, + "learning_rate": 0.0006, + "loss": 3.666904926300049, + "step": 3095 + }, + { + "epoch": 43.0, + "grad_norm": 0.23960894346237183, + "learning_rate": 0.0006, + "loss": 3.710965633392334, + "step": 3096 + }, + { + "epoch": 43.0, + "eval_loss": 3.977475166320801, + "eval_runtime": 44.5209, + "eval_samples_per_second": 54.851, + "eval_steps_per_second": 3.437, + "step": 3096 + }, + { + "epoch": 43.01397990388816, + "grad_norm": 0.24180234968662262, + "learning_rate": 0.0006, + "loss": 3.5949223041534424, + "step": 3097 + }, + { + "epoch": 43.02795980777632, + "grad_norm": 0.3331127166748047, + "learning_rate": 0.0006, + "loss": 3.625802755355835, + "step": 3098 + }, + { + "epoch": 43.04193971166448, + "grad_norm": 0.38338130712509155, + "learning_rate": 0.0006, + "loss": 3.6390271186828613, + "step": 3099 + }, + { + "epoch": 43.05591961555265, + "grad_norm": 0.32292598485946655, + "learning_rate": 0.0006, + "loss": 3.630621910095215, + "step": 3100 + }, + { + "epoch": 43.0698995194408, + "grad_norm": 0.24179677665233612, + "learning_rate": 0.0006, + "loss": 3.6124491691589355, + "step": 3101 + }, + { + "epoch": 43.083879423328966, + "grad_norm": 0.2622842788696289, + "learning_rate": 0.0006, + "loss": 3.6207399368286133, + "step": 3102 + }, + { + "epoch": 43.09785932721712, + "grad_norm": 0.264297217130661, + "learning_rate": 0.0006, + "loss": 3.637218475341797, + "step": 3103 + }, + { + "epoch": 43.111839231105286, + "grad_norm": 0.25815117359161377, + "learning_rate": 0.0006, + "loss": 3.614841938018799, + "step": 3104 + }, + { + "epoch": 43.12581913499345, + "grad_norm": 0.2209406942129135, + "learning_rate": 0.0006, + "loss": 3.604722738265991, + "step": 3105 + }, + { + "epoch": 43.139799038881605, + "grad_norm": 0.22333410382270813, + "learning_rate": 0.0006, + "loss": 3.6388449668884277, + "step": 3106 + }, + { + "epoch": 43.15377894276977, + "grad_norm": 0.2194417119026184, + "learning_rate": 0.0006, + "loss": 3.611644744873047, + "step": 3107 + }, + { + "epoch": 43.16775884665793, + "grad_norm": 0.21270349621772766, + "learning_rate": 0.0006, + "loss": 3.6180214881896973, + "step": 3108 + }, + { + "epoch": 43.18173875054609, + "grad_norm": 0.21358032524585724, + "learning_rate": 0.0006, + "loss": 3.646512985229492, + "step": 3109 + }, + { + "epoch": 43.19571865443425, + "grad_norm": 0.2180788666009903, + "learning_rate": 0.0006, + "loss": 3.641981363296509, + "step": 3110 + }, + { + "epoch": 43.20969855832241, + "grad_norm": 0.21979685127735138, + "learning_rate": 0.0006, + "loss": 3.6251654624938965, + "step": 3111 + }, + { + "epoch": 43.22367846221057, + "grad_norm": 0.2072533220052719, + "learning_rate": 0.0006, + "loss": 3.665372371673584, + "step": 3112 + }, + { + "epoch": 43.237658366098735, + "grad_norm": 0.2085742950439453, + "learning_rate": 0.0006, + "loss": 3.647730827331543, + "step": 3113 + }, + { + "epoch": 43.25163826998689, + "grad_norm": 0.1934993416070938, + "learning_rate": 0.0006, + "loss": 3.6296567916870117, + "step": 3114 + }, + { + "epoch": 43.265618173875055, + "grad_norm": 0.1954783797264099, + "learning_rate": 0.0006, + "loss": 3.6412858963012695, + "step": 3115 + }, + { + "epoch": 43.27959807776322, + "grad_norm": 0.1932750642299652, + "learning_rate": 0.0006, + "loss": 3.6246860027313232, + "step": 3116 + }, + { + "epoch": 43.293577981651374, + "grad_norm": 0.19765302538871765, + "learning_rate": 0.0006, + "loss": 3.618922710418701, + "step": 3117 + }, + { + "epoch": 43.30755788553954, + "grad_norm": 0.1987425684928894, + "learning_rate": 0.0006, + "loss": 3.633185863494873, + "step": 3118 + }, + { + "epoch": 43.3215377894277, + "grad_norm": 0.1894739419221878, + "learning_rate": 0.0006, + "loss": 3.595709800720215, + "step": 3119 + }, + { + "epoch": 43.33551769331586, + "grad_norm": 0.19455872476100922, + "learning_rate": 0.0006, + "loss": 3.6309051513671875, + "step": 3120 + }, + { + "epoch": 43.34949759720402, + "grad_norm": 0.21448275446891785, + "learning_rate": 0.0006, + "loss": 3.6425981521606445, + "step": 3121 + }, + { + "epoch": 43.36347750109218, + "grad_norm": 0.24527893960475922, + "learning_rate": 0.0006, + "loss": 3.6497793197631836, + "step": 3122 + }, + { + "epoch": 43.37745740498034, + "grad_norm": 0.253231942653656, + "learning_rate": 0.0006, + "loss": 3.644453525543213, + "step": 3123 + }, + { + "epoch": 43.391437308868504, + "grad_norm": 0.2048978954553604, + "learning_rate": 0.0006, + "loss": 3.5963876247406006, + "step": 3124 + }, + { + "epoch": 43.40541721275666, + "grad_norm": 0.19951528310775757, + "learning_rate": 0.0006, + "loss": 3.6274406909942627, + "step": 3125 + }, + { + "epoch": 43.419397116644824, + "grad_norm": 0.2293875813484192, + "learning_rate": 0.0006, + "loss": 3.6482725143432617, + "step": 3126 + }, + { + "epoch": 43.43337702053299, + "grad_norm": 0.22379456460475922, + "learning_rate": 0.0006, + "loss": 3.6466073989868164, + "step": 3127 + }, + { + "epoch": 43.44735692442114, + "grad_norm": 0.2275441288948059, + "learning_rate": 0.0006, + "loss": 3.6529078483581543, + "step": 3128 + }, + { + "epoch": 43.46133682830931, + "grad_norm": 0.23014242947101593, + "learning_rate": 0.0006, + "loss": 3.6084837913513184, + "step": 3129 + }, + { + "epoch": 43.47531673219746, + "grad_norm": 0.22280924022197723, + "learning_rate": 0.0006, + "loss": 3.611320734024048, + "step": 3130 + }, + { + "epoch": 43.489296636085626, + "grad_norm": 0.19498756527900696, + "learning_rate": 0.0006, + "loss": 3.630185604095459, + "step": 3131 + }, + { + "epoch": 43.50327653997379, + "grad_norm": 0.21357767283916473, + "learning_rate": 0.0006, + "loss": 3.6509933471679688, + "step": 3132 + }, + { + "epoch": 43.517256443861946, + "grad_norm": 0.21775896847248077, + "learning_rate": 0.0006, + "loss": 3.635112762451172, + "step": 3133 + }, + { + "epoch": 43.53123634775011, + "grad_norm": 0.2035629004240036, + "learning_rate": 0.0006, + "loss": 3.658327102661133, + "step": 3134 + }, + { + "epoch": 43.54521625163827, + "grad_norm": 0.20083840191364288, + "learning_rate": 0.0006, + "loss": 3.632441997528076, + "step": 3135 + }, + { + "epoch": 43.55919615552643, + "grad_norm": 0.1922001987695694, + "learning_rate": 0.0006, + "loss": 3.6417734622955322, + "step": 3136 + }, + { + "epoch": 43.57317605941459, + "grad_norm": 0.21049264073371887, + "learning_rate": 0.0006, + "loss": 3.671274423599243, + "step": 3137 + }, + { + "epoch": 43.58715596330275, + "grad_norm": 0.21432001888751984, + "learning_rate": 0.0006, + "loss": 3.6216118335723877, + "step": 3138 + }, + { + "epoch": 43.60113586719091, + "grad_norm": 0.25448811054229736, + "learning_rate": 0.0006, + "loss": 3.658283233642578, + "step": 3139 + }, + { + "epoch": 43.615115771079076, + "grad_norm": 0.24313904345035553, + "learning_rate": 0.0006, + "loss": 3.6447594165802, + "step": 3140 + }, + { + "epoch": 43.62909567496723, + "grad_norm": 0.2332659363746643, + "learning_rate": 0.0006, + "loss": 3.625528573989868, + "step": 3141 + }, + { + "epoch": 43.643075578855395, + "grad_norm": 0.23222137987613678, + "learning_rate": 0.0006, + "loss": 3.6524429321289062, + "step": 3142 + }, + { + "epoch": 43.65705548274356, + "grad_norm": 0.2147051990032196, + "learning_rate": 0.0006, + "loss": 3.6517302989959717, + "step": 3143 + }, + { + "epoch": 43.671035386631715, + "grad_norm": 0.2464994341135025, + "learning_rate": 0.0006, + "loss": 3.654947519302368, + "step": 3144 + }, + { + "epoch": 43.68501529051988, + "grad_norm": 0.2365981936454773, + "learning_rate": 0.0006, + "loss": 3.638695240020752, + "step": 3145 + }, + { + "epoch": 43.69899519440804, + "grad_norm": 0.2325262874364853, + "learning_rate": 0.0006, + "loss": 3.6496055126190186, + "step": 3146 + }, + { + "epoch": 43.7129750982962, + "grad_norm": 0.2196085900068283, + "learning_rate": 0.0006, + "loss": 3.6323978900909424, + "step": 3147 + }, + { + "epoch": 43.72695500218436, + "grad_norm": 0.20404237508773804, + "learning_rate": 0.0006, + "loss": 3.6572763919830322, + "step": 3148 + }, + { + "epoch": 43.74093490607252, + "grad_norm": 0.2363257110118866, + "learning_rate": 0.0006, + "loss": 3.6347732543945312, + "step": 3149 + }, + { + "epoch": 43.75491480996068, + "grad_norm": 0.23671524226665497, + "learning_rate": 0.0006, + "loss": 3.650017023086548, + "step": 3150 + }, + { + "epoch": 43.768894713848844, + "grad_norm": 0.20892305672168732, + "learning_rate": 0.0006, + "loss": 3.638185977935791, + "step": 3151 + }, + { + "epoch": 43.782874617737, + "grad_norm": 0.18670055270195007, + "learning_rate": 0.0006, + "loss": 3.6647696495056152, + "step": 3152 + }, + { + "epoch": 43.796854521625164, + "grad_norm": 0.21818184852600098, + "learning_rate": 0.0006, + "loss": 3.663623332977295, + "step": 3153 + }, + { + "epoch": 43.81083442551333, + "grad_norm": 0.23472464084625244, + "learning_rate": 0.0006, + "loss": 3.650595188140869, + "step": 3154 + }, + { + "epoch": 43.824814329401484, + "grad_norm": 0.2266419678926468, + "learning_rate": 0.0006, + "loss": 3.6362059116363525, + "step": 3155 + }, + { + "epoch": 43.83879423328965, + "grad_norm": 0.2250787913799286, + "learning_rate": 0.0006, + "loss": 3.647970199584961, + "step": 3156 + }, + { + "epoch": 43.8527741371778, + "grad_norm": 0.21493776142597198, + "learning_rate": 0.0006, + "loss": 3.6510982513427734, + "step": 3157 + }, + { + "epoch": 43.86675404106597, + "grad_norm": 0.20783160626888275, + "learning_rate": 0.0006, + "loss": 3.654845714569092, + "step": 3158 + }, + { + "epoch": 43.88073394495413, + "grad_norm": 0.2222554087638855, + "learning_rate": 0.0006, + "loss": 3.6565685272216797, + "step": 3159 + }, + { + "epoch": 43.89471384884229, + "grad_norm": 0.2148049771785736, + "learning_rate": 0.0006, + "loss": 3.630779266357422, + "step": 3160 + }, + { + "epoch": 43.90869375273045, + "grad_norm": 0.2222086787223816, + "learning_rate": 0.0006, + "loss": 3.6312813758850098, + "step": 3161 + }, + { + "epoch": 43.92267365661861, + "grad_norm": 0.24049264192581177, + "learning_rate": 0.0006, + "loss": 3.6185736656188965, + "step": 3162 + }, + { + "epoch": 43.93665356050677, + "grad_norm": 0.2228843867778778, + "learning_rate": 0.0006, + "loss": 3.595583438873291, + "step": 3163 + }, + { + "epoch": 43.95063346439493, + "grad_norm": 0.20714408159255981, + "learning_rate": 0.0006, + "loss": 3.6649322509765625, + "step": 3164 + }, + { + "epoch": 43.964613368283096, + "grad_norm": 0.2048991471529007, + "learning_rate": 0.0006, + "loss": 3.6513710021972656, + "step": 3165 + }, + { + "epoch": 43.97859327217125, + "grad_norm": 0.21874114871025085, + "learning_rate": 0.0006, + "loss": 3.6471524238586426, + "step": 3166 + }, + { + "epoch": 43.992573176059416, + "grad_norm": 0.21309879422187805, + "learning_rate": 0.0006, + "loss": 3.647021770477295, + "step": 3167 + }, + { + "epoch": 44.0, + "grad_norm": 0.23717166483402252, + "learning_rate": 0.0006, + "loss": 3.6903820037841797, + "step": 3168 + }, + { + "epoch": 44.0, + "eval_loss": 3.9844837188720703, + "eval_runtime": 44.29, + "eval_samples_per_second": 55.137, + "eval_steps_per_second": 3.455, + "step": 3168 + }, + { + "epoch": 44.01397990388816, + "grad_norm": 0.21503832936286926, + "learning_rate": 0.0006, + "loss": 3.6054744720458984, + "step": 3169 + }, + { + "epoch": 44.02795980777632, + "grad_norm": 0.2289554923772812, + "learning_rate": 0.0006, + "loss": 3.6560556888580322, + "step": 3170 + }, + { + "epoch": 44.04193971166448, + "grad_norm": 0.24250416457653046, + "learning_rate": 0.0006, + "loss": 3.611820697784424, + "step": 3171 + }, + { + "epoch": 44.05591961555265, + "grad_norm": 0.2526668310165405, + "learning_rate": 0.0006, + "loss": 3.6273183822631836, + "step": 3172 + }, + { + "epoch": 44.0698995194408, + "grad_norm": 0.26702383160591125, + "learning_rate": 0.0006, + "loss": 3.5856852531433105, + "step": 3173 + }, + { + "epoch": 44.083879423328966, + "grad_norm": 0.2715195417404175, + "learning_rate": 0.0006, + "loss": 3.631045341491699, + "step": 3174 + }, + { + "epoch": 44.09785932721712, + "grad_norm": 0.3505614995956421, + "learning_rate": 0.0006, + "loss": 3.628720760345459, + "step": 3175 + }, + { + "epoch": 44.111839231105286, + "grad_norm": 0.2760702967643738, + "learning_rate": 0.0006, + "loss": 3.6283509731292725, + "step": 3176 + }, + { + "epoch": 44.12581913499345, + "grad_norm": 0.21105222404003143, + "learning_rate": 0.0006, + "loss": 3.6495566368103027, + "step": 3177 + }, + { + "epoch": 44.139799038881605, + "grad_norm": 0.2852860987186432, + "learning_rate": 0.0006, + "loss": 3.640768527984619, + "step": 3178 + }, + { + "epoch": 44.15377894276977, + "grad_norm": 0.2941005825996399, + "learning_rate": 0.0006, + "loss": 3.6303114891052246, + "step": 3179 + }, + { + "epoch": 44.16775884665793, + "grad_norm": 0.2792299687862396, + "learning_rate": 0.0006, + "loss": 3.6053574085235596, + "step": 3180 + }, + { + "epoch": 44.18173875054609, + "grad_norm": 0.23168638348579407, + "learning_rate": 0.0006, + "loss": 3.62430477142334, + "step": 3181 + }, + { + "epoch": 44.19571865443425, + "grad_norm": 0.23713921010494232, + "learning_rate": 0.0006, + "loss": 3.601106643676758, + "step": 3182 + }, + { + "epoch": 44.20969855832241, + "grad_norm": 0.23341049253940582, + "learning_rate": 0.0006, + "loss": 3.631762742996216, + "step": 3183 + }, + { + "epoch": 44.22367846221057, + "grad_norm": 0.23094508051872253, + "learning_rate": 0.0006, + "loss": 3.586683750152588, + "step": 3184 + }, + { + "epoch": 44.237658366098735, + "grad_norm": 0.24085712432861328, + "learning_rate": 0.0006, + "loss": 3.6251423358917236, + "step": 3185 + }, + { + "epoch": 44.25163826998689, + "grad_norm": 0.24999955296516418, + "learning_rate": 0.0006, + "loss": 3.6554198265075684, + "step": 3186 + }, + { + "epoch": 44.265618173875055, + "grad_norm": 0.21759621798992157, + "learning_rate": 0.0006, + "loss": 3.6249518394470215, + "step": 3187 + }, + { + "epoch": 44.27959807776322, + "grad_norm": 0.2490139901638031, + "learning_rate": 0.0006, + "loss": 3.6163341999053955, + "step": 3188 + }, + { + "epoch": 44.293577981651374, + "grad_norm": 0.23420892655849457, + "learning_rate": 0.0006, + "loss": 3.615469455718994, + "step": 3189 + }, + { + "epoch": 44.30755788553954, + "grad_norm": 0.2292138934135437, + "learning_rate": 0.0006, + "loss": 3.6085104942321777, + "step": 3190 + }, + { + "epoch": 44.3215377894277, + "grad_norm": 0.22595474123954773, + "learning_rate": 0.0006, + "loss": 3.6317405700683594, + "step": 3191 + }, + { + "epoch": 44.33551769331586, + "grad_norm": 0.22418338060379028, + "learning_rate": 0.0006, + "loss": 3.6287777423858643, + "step": 3192 + }, + { + "epoch": 44.34949759720402, + "grad_norm": 0.2453135848045349, + "learning_rate": 0.0006, + "loss": 3.6228437423706055, + "step": 3193 + }, + { + "epoch": 44.36347750109218, + "grad_norm": 0.2627771198749542, + "learning_rate": 0.0006, + "loss": 3.6581034660339355, + "step": 3194 + }, + { + "epoch": 44.37745740498034, + "grad_norm": 0.24114494025707245, + "learning_rate": 0.0006, + "loss": 3.653505563735962, + "step": 3195 + }, + { + "epoch": 44.391437308868504, + "grad_norm": 0.2103721648454666, + "learning_rate": 0.0006, + "loss": 3.5698580741882324, + "step": 3196 + }, + { + "epoch": 44.40541721275666, + "grad_norm": 0.21172291040420532, + "learning_rate": 0.0006, + "loss": 3.573453426361084, + "step": 3197 + }, + { + "epoch": 44.419397116644824, + "grad_norm": 0.20298106968402863, + "learning_rate": 0.0006, + "loss": 3.6350207328796387, + "step": 3198 + }, + { + "epoch": 44.43337702053299, + "grad_norm": 0.2029009759426117, + "learning_rate": 0.0006, + "loss": 3.6025917530059814, + "step": 3199 + }, + { + "epoch": 44.44735692442114, + "grad_norm": 0.18960542976856232, + "learning_rate": 0.0006, + "loss": 3.625028133392334, + "step": 3200 + }, + { + "epoch": 44.46133682830931, + "grad_norm": 0.20758579671382904, + "learning_rate": 0.0006, + "loss": 3.647071123123169, + "step": 3201 + }, + { + "epoch": 44.47531673219746, + "grad_norm": 0.21896769106388092, + "learning_rate": 0.0006, + "loss": 3.6481196880340576, + "step": 3202 + }, + { + "epoch": 44.489296636085626, + "grad_norm": 0.20817387104034424, + "learning_rate": 0.0006, + "loss": 3.629366874694824, + "step": 3203 + }, + { + "epoch": 44.50327653997379, + "grad_norm": 0.2099488228559494, + "learning_rate": 0.0006, + "loss": 3.6757798194885254, + "step": 3204 + }, + { + "epoch": 44.517256443861946, + "grad_norm": 0.21376627683639526, + "learning_rate": 0.0006, + "loss": 3.638324737548828, + "step": 3205 + }, + { + "epoch": 44.53123634775011, + "grad_norm": 0.19089072942733765, + "learning_rate": 0.0006, + "loss": 3.6497435569763184, + "step": 3206 + }, + { + "epoch": 44.54521625163827, + "grad_norm": 0.20489120483398438, + "learning_rate": 0.0006, + "loss": 3.634019374847412, + "step": 3207 + }, + { + "epoch": 44.55919615552643, + "grad_norm": 0.21991780400276184, + "learning_rate": 0.0006, + "loss": 3.6255834102630615, + "step": 3208 + }, + { + "epoch": 44.57317605941459, + "grad_norm": 0.23417581617832184, + "learning_rate": 0.0006, + "loss": 3.631927728652954, + "step": 3209 + }, + { + "epoch": 44.58715596330275, + "grad_norm": 0.22819049656391144, + "learning_rate": 0.0006, + "loss": 3.640167713165283, + "step": 3210 + }, + { + "epoch": 44.60113586719091, + "grad_norm": 0.21443316340446472, + "learning_rate": 0.0006, + "loss": 3.645709991455078, + "step": 3211 + }, + { + "epoch": 44.615115771079076, + "grad_norm": 0.19252653419971466, + "learning_rate": 0.0006, + "loss": 3.591294288635254, + "step": 3212 + }, + { + "epoch": 44.62909567496723, + "grad_norm": 0.18925397098064423, + "learning_rate": 0.0006, + "loss": 3.6163625717163086, + "step": 3213 + }, + { + "epoch": 44.643075578855395, + "grad_norm": 0.21605387330055237, + "learning_rate": 0.0006, + "loss": 3.6826887130737305, + "step": 3214 + }, + { + "epoch": 44.65705548274356, + "grad_norm": 0.21301978826522827, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 3215 + }, + { + "epoch": 44.671035386631715, + "grad_norm": 0.20065832138061523, + "learning_rate": 0.0006, + "loss": 3.648879289627075, + "step": 3216 + }, + { + "epoch": 44.68501529051988, + "grad_norm": 0.21413499116897583, + "learning_rate": 0.0006, + "loss": 3.6327264308929443, + "step": 3217 + }, + { + "epoch": 44.69899519440804, + "grad_norm": 0.22769849002361298, + "learning_rate": 0.0006, + "loss": 3.6486430168151855, + "step": 3218 + }, + { + "epoch": 44.7129750982962, + "grad_norm": 0.227064847946167, + "learning_rate": 0.0006, + "loss": 3.633342981338501, + "step": 3219 + }, + { + "epoch": 44.72695500218436, + "grad_norm": 0.21335656940937042, + "learning_rate": 0.0006, + "loss": 3.648621082305908, + "step": 3220 + }, + { + "epoch": 44.74093490607252, + "grad_norm": 0.2085563838481903, + "learning_rate": 0.0006, + "loss": 3.647826671600342, + "step": 3221 + }, + { + "epoch": 44.75491480996068, + "grad_norm": 0.19203904271125793, + "learning_rate": 0.0006, + "loss": 3.6296122074127197, + "step": 3222 + }, + { + "epoch": 44.768894713848844, + "grad_norm": 0.1969112604856491, + "learning_rate": 0.0006, + "loss": 3.6477179527282715, + "step": 3223 + }, + { + "epoch": 44.782874617737, + "grad_norm": 0.21630392968654633, + "learning_rate": 0.0006, + "loss": 3.628805637359619, + "step": 3224 + }, + { + "epoch": 44.796854521625164, + "grad_norm": 0.20641647279262543, + "learning_rate": 0.0006, + "loss": 3.650993824005127, + "step": 3225 + }, + { + "epoch": 44.81083442551333, + "grad_norm": 0.1954173892736435, + "learning_rate": 0.0006, + "loss": 3.6362831592559814, + "step": 3226 + }, + { + "epoch": 44.824814329401484, + "grad_norm": 0.20479747653007507, + "learning_rate": 0.0006, + "loss": 3.6467390060424805, + "step": 3227 + }, + { + "epoch": 44.83879423328965, + "grad_norm": 0.20502690970897675, + "learning_rate": 0.0006, + "loss": 3.6260130405426025, + "step": 3228 + }, + { + "epoch": 44.8527741371778, + "grad_norm": 0.20348094403743744, + "learning_rate": 0.0006, + "loss": 3.6836767196655273, + "step": 3229 + }, + { + "epoch": 44.86675404106597, + "grad_norm": 0.18748269975185394, + "learning_rate": 0.0006, + "loss": 3.610104560852051, + "step": 3230 + }, + { + "epoch": 44.88073394495413, + "grad_norm": 0.18822219967842102, + "learning_rate": 0.0006, + "loss": 3.61354398727417, + "step": 3231 + }, + { + "epoch": 44.89471384884229, + "grad_norm": 0.20972031354904175, + "learning_rate": 0.0006, + "loss": 3.644336700439453, + "step": 3232 + }, + { + "epoch": 44.90869375273045, + "grad_norm": 0.2013155072927475, + "learning_rate": 0.0006, + "loss": 3.659287929534912, + "step": 3233 + }, + { + "epoch": 44.92267365661861, + "grad_norm": 0.2056475579738617, + "learning_rate": 0.0006, + "loss": 3.6545677185058594, + "step": 3234 + }, + { + "epoch": 44.93665356050677, + "grad_norm": 0.2104482203722, + "learning_rate": 0.0006, + "loss": 3.6094017028808594, + "step": 3235 + }, + { + "epoch": 44.95063346439493, + "grad_norm": 0.1993035078048706, + "learning_rate": 0.0006, + "loss": 3.6209053993225098, + "step": 3236 + }, + { + "epoch": 44.964613368283096, + "grad_norm": 0.1883099526166916, + "learning_rate": 0.0006, + "loss": 3.6011457443237305, + "step": 3237 + }, + { + "epoch": 44.97859327217125, + "grad_norm": 0.1927674412727356, + "learning_rate": 0.0006, + "loss": 3.606609344482422, + "step": 3238 + }, + { + "epoch": 44.992573176059416, + "grad_norm": 0.1878899335861206, + "learning_rate": 0.0006, + "loss": 3.6701109409332275, + "step": 3239 + }, + { + "epoch": 45.0, + "grad_norm": 0.2237395942211151, + "learning_rate": 0.0006, + "loss": 3.6617302894592285, + "step": 3240 + }, + { + "epoch": 45.0, + "eval_loss": 3.9812564849853516, + "eval_runtime": 44.8635, + "eval_samples_per_second": 54.432, + "eval_steps_per_second": 3.41, + "step": 3240 + }, + { + "epoch": 45.01397990388816, + "grad_norm": 0.21368487179279327, + "learning_rate": 0.0006, + "loss": 3.599107265472412, + "step": 3241 + }, + { + "epoch": 45.02795980777632, + "grad_norm": 0.2234211564064026, + "learning_rate": 0.0006, + "loss": 3.5943236351013184, + "step": 3242 + }, + { + "epoch": 45.04193971166448, + "grad_norm": 0.2222544252872467, + "learning_rate": 0.0006, + "loss": 3.6152291297912598, + "step": 3243 + }, + { + "epoch": 45.05591961555265, + "grad_norm": 0.24686792492866516, + "learning_rate": 0.0006, + "loss": 3.6006085872650146, + "step": 3244 + }, + { + "epoch": 45.0698995194408, + "grad_norm": 0.24634984135627747, + "learning_rate": 0.0006, + "loss": 3.6023471355438232, + "step": 3245 + }, + { + "epoch": 45.083879423328966, + "grad_norm": 0.2150750756263733, + "learning_rate": 0.0006, + "loss": 3.5690598487854004, + "step": 3246 + }, + { + "epoch": 45.09785932721712, + "grad_norm": 0.196721151471138, + "learning_rate": 0.0006, + "loss": 3.592653751373291, + "step": 3247 + }, + { + "epoch": 45.111839231105286, + "grad_norm": 0.21874476969242096, + "learning_rate": 0.0006, + "loss": 3.586243152618408, + "step": 3248 + }, + { + "epoch": 45.12581913499345, + "grad_norm": 0.21021611988544464, + "learning_rate": 0.0006, + "loss": 3.599384307861328, + "step": 3249 + }, + { + "epoch": 45.139799038881605, + "grad_norm": 0.19754183292388916, + "learning_rate": 0.0006, + "loss": 3.623816967010498, + "step": 3250 + }, + { + "epoch": 45.15377894276977, + "grad_norm": 0.21218672394752502, + "learning_rate": 0.0006, + "loss": 3.5901236534118652, + "step": 3251 + }, + { + "epoch": 45.16775884665793, + "grad_norm": 0.23569360375404358, + "learning_rate": 0.0006, + "loss": 3.600029945373535, + "step": 3252 + }, + { + "epoch": 45.18173875054609, + "grad_norm": 0.25429826974868774, + "learning_rate": 0.0006, + "loss": 3.607773542404175, + "step": 3253 + }, + { + "epoch": 45.19571865443425, + "grad_norm": 0.23416805267333984, + "learning_rate": 0.0006, + "loss": 3.63248348236084, + "step": 3254 + }, + { + "epoch": 45.20969855832241, + "grad_norm": 0.20821864902973175, + "learning_rate": 0.0006, + "loss": 3.641927719116211, + "step": 3255 + }, + { + "epoch": 45.22367846221057, + "grad_norm": 0.21849380433559418, + "learning_rate": 0.0006, + "loss": 3.665098190307617, + "step": 3256 + }, + { + "epoch": 45.237658366098735, + "grad_norm": 0.22939491271972656, + "learning_rate": 0.0006, + "loss": 3.6106104850769043, + "step": 3257 + }, + { + "epoch": 45.25163826998689, + "grad_norm": 0.24144501984119415, + "learning_rate": 0.0006, + "loss": 3.5872416496276855, + "step": 3258 + }, + { + "epoch": 45.265618173875055, + "grad_norm": 0.21790480613708496, + "learning_rate": 0.0006, + "loss": 3.6268889904022217, + "step": 3259 + }, + { + "epoch": 45.27959807776322, + "grad_norm": 0.22702264785766602, + "learning_rate": 0.0006, + "loss": 3.5972542762756348, + "step": 3260 + }, + { + "epoch": 45.293577981651374, + "grad_norm": 0.22465437650680542, + "learning_rate": 0.0006, + "loss": 3.6339592933654785, + "step": 3261 + }, + { + "epoch": 45.30755788553954, + "grad_norm": 0.21804460883140564, + "learning_rate": 0.0006, + "loss": 3.6062779426574707, + "step": 3262 + }, + { + "epoch": 45.3215377894277, + "grad_norm": 0.1985616534948349, + "learning_rate": 0.0006, + "loss": 3.629815101623535, + "step": 3263 + }, + { + "epoch": 45.33551769331586, + "grad_norm": 0.22264975309371948, + "learning_rate": 0.0006, + "loss": 3.631214141845703, + "step": 3264 + }, + { + "epoch": 45.34949759720402, + "grad_norm": 0.22178539633750916, + "learning_rate": 0.0006, + "loss": 3.620854377746582, + "step": 3265 + }, + { + "epoch": 45.36347750109218, + "grad_norm": 0.22392240166664124, + "learning_rate": 0.0006, + "loss": 3.6611738204956055, + "step": 3266 + }, + { + "epoch": 45.37745740498034, + "grad_norm": 0.2178916484117508, + "learning_rate": 0.0006, + "loss": 3.639893054962158, + "step": 3267 + }, + { + "epoch": 45.391437308868504, + "grad_norm": 0.2173885703086853, + "learning_rate": 0.0006, + "loss": 3.611750364303589, + "step": 3268 + }, + { + "epoch": 45.40541721275666, + "grad_norm": 0.2107069045305252, + "learning_rate": 0.0006, + "loss": 3.595181465148926, + "step": 3269 + }, + { + "epoch": 45.419397116644824, + "grad_norm": 0.19623015820980072, + "learning_rate": 0.0006, + "loss": 3.6096351146698, + "step": 3270 + }, + { + "epoch": 45.43337702053299, + "grad_norm": 0.23091304302215576, + "learning_rate": 0.0006, + "loss": 3.603667974472046, + "step": 3271 + }, + { + "epoch": 45.44735692442114, + "grad_norm": 0.22909007966518402, + "learning_rate": 0.0006, + "loss": 3.62846040725708, + "step": 3272 + }, + { + "epoch": 45.46133682830931, + "grad_norm": 0.2104928195476532, + "learning_rate": 0.0006, + "loss": 3.6543164253234863, + "step": 3273 + }, + { + "epoch": 45.47531673219746, + "grad_norm": 0.22994203865528107, + "learning_rate": 0.0006, + "loss": 3.621878147125244, + "step": 3274 + }, + { + "epoch": 45.489296636085626, + "grad_norm": 0.21652749180793762, + "learning_rate": 0.0006, + "loss": 3.6095705032348633, + "step": 3275 + }, + { + "epoch": 45.50327653997379, + "grad_norm": 0.20125073194503784, + "learning_rate": 0.0006, + "loss": 3.6213903427124023, + "step": 3276 + }, + { + "epoch": 45.517256443861946, + "grad_norm": 0.19995734095573425, + "learning_rate": 0.0006, + "loss": 3.6526503562927246, + "step": 3277 + }, + { + "epoch": 45.53123634775011, + "grad_norm": 0.2071387618780136, + "learning_rate": 0.0006, + "loss": 3.626208782196045, + "step": 3278 + }, + { + "epoch": 45.54521625163827, + "grad_norm": 0.222015842795372, + "learning_rate": 0.0006, + "loss": 3.61144757270813, + "step": 3279 + }, + { + "epoch": 45.55919615552643, + "grad_norm": 0.20780639350414276, + "learning_rate": 0.0006, + "loss": 3.64092755317688, + "step": 3280 + }, + { + "epoch": 45.57317605941459, + "grad_norm": 0.19297364354133606, + "learning_rate": 0.0006, + "loss": 3.6308364868164062, + "step": 3281 + }, + { + "epoch": 45.58715596330275, + "grad_norm": 0.1928786337375641, + "learning_rate": 0.0006, + "loss": 3.6258254051208496, + "step": 3282 + }, + { + "epoch": 45.60113586719091, + "grad_norm": 0.1940007209777832, + "learning_rate": 0.0006, + "loss": 3.622849464416504, + "step": 3283 + }, + { + "epoch": 45.615115771079076, + "grad_norm": 0.19643044471740723, + "learning_rate": 0.0006, + "loss": 3.6461117267608643, + "step": 3284 + }, + { + "epoch": 45.62909567496723, + "grad_norm": 0.19996654987335205, + "learning_rate": 0.0006, + "loss": 3.61572265625, + "step": 3285 + }, + { + "epoch": 45.643075578855395, + "grad_norm": 0.20202603936195374, + "learning_rate": 0.0006, + "loss": 3.610734462738037, + "step": 3286 + }, + { + "epoch": 45.65705548274356, + "grad_norm": 0.19249361753463745, + "learning_rate": 0.0006, + "loss": 3.607048511505127, + "step": 3287 + }, + { + "epoch": 45.671035386631715, + "grad_norm": 0.1894780397415161, + "learning_rate": 0.0006, + "loss": 3.6450905799865723, + "step": 3288 + }, + { + "epoch": 45.68501529051988, + "grad_norm": 0.19901636242866516, + "learning_rate": 0.0006, + "loss": 3.6313018798828125, + "step": 3289 + }, + { + "epoch": 45.69899519440804, + "grad_norm": 0.1875065118074417, + "learning_rate": 0.0006, + "loss": 3.641326427459717, + "step": 3290 + }, + { + "epoch": 45.7129750982962, + "grad_norm": 0.19832095503807068, + "learning_rate": 0.0006, + "loss": 3.6612308025360107, + "step": 3291 + }, + { + "epoch": 45.72695500218436, + "grad_norm": 0.20353806018829346, + "learning_rate": 0.0006, + "loss": 3.623152017593384, + "step": 3292 + }, + { + "epoch": 45.74093490607252, + "grad_norm": 0.1984023153781891, + "learning_rate": 0.0006, + "loss": 3.627358913421631, + "step": 3293 + }, + { + "epoch": 45.75491480996068, + "grad_norm": 0.2002221643924713, + "learning_rate": 0.0006, + "loss": 3.6334757804870605, + "step": 3294 + }, + { + "epoch": 45.768894713848844, + "grad_norm": 0.21099092066287994, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3295 + }, + { + "epoch": 45.782874617737, + "grad_norm": 0.19109416007995605, + "learning_rate": 0.0006, + "loss": 3.62795352935791, + "step": 3296 + }, + { + "epoch": 45.796854521625164, + "grad_norm": 0.18424192070960999, + "learning_rate": 0.0006, + "loss": 3.6151700019836426, + "step": 3297 + }, + { + "epoch": 45.81083442551333, + "grad_norm": 0.20823849737644196, + "learning_rate": 0.0006, + "loss": 3.641907215118408, + "step": 3298 + }, + { + "epoch": 45.824814329401484, + "grad_norm": 0.21407285332679749, + "learning_rate": 0.0006, + "loss": 3.6430726051330566, + "step": 3299 + }, + { + "epoch": 45.83879423328965, + "grad_norm": 0.23493780195713043, + "learning_rate": 0.0006, + "loss": 3.610065460205078, + "step": 3300 + }, + { + "epoch": 45.8527741371778, + "grad_norm": 0.21910642087459564, + "learning_rate": 0.0006, + "loss": 3.630603313446045, + "step": 3301 + }, + { + "epoch": 45.86675404106597, + "grad_norm": 0.1838075965642929, + "learning_rate": 0.0006, + "loss": 3.634315013885498, + "step": 3302 + }, + { + "epoch": 45.88073394495413, + "grad_norm": 0.22131477296352386, + "learning_rate": 0.0006, + "loss": 3.6142020225524902, + "step": 3303 + }, + { + "epoch": 45.89471384884229, + "grad_norm": 0.2497209906578064, + "learning_rate": 0.0006, + "loss": 3.689103126525879, + "step": 3304 + }, + { + "epoch": 45.90869375273045, + "grad_norm": 0.24403175711631775, + "learning_rate": 0.0006, + "loss": 3.6321184635162354, + "step": 3305 + }, + { + "epoch": 45.92267365661861, + "grad_norm": 0.22527103126049042, + "learning_rate": 0.0006, + "loss": 3.6486921310424805, + "step": 3306 + }, + { + "epoch": 45.93665356050677, + "grad_norm": 0.20127955079078674, + "learning_rate": 0.0006, + "loss": 3.6109299659729004, + "step": 3307 + }, + { + "epoch": 45.95063346439493, + "grad_norm": 0.18997317552566528, + "learning_rate": 0.0006, + "loss": 3.6157617568969727, + "step": 3308 + }, + { + "epoch": 45.964613368283096, + "grad_norm": 0.19921870529651642, + "learning_rate": 0.0006, + "loss": 3.691776990890503, + "step": 3309 + }, + { + "epoch": 45.97859327217125, + "grad_norm": 0.2124646008014679, + "learning_rate": 0.0006, + "loss": 3.61795711517334, + "step": 3310 + }, + { + "epoch": 45.992573176059416, + "grad_norm": 0.20002500712871552, + "learning_rate": 0.0006, + "loss": 3.6266353130340576, + "step": 3311 + }, + { + "epoch": 46.0, + "grad_norm": 0.22992220520973206, + "learning_rate": 0.0006, + "loss": 3.647242784500122, + "step": 3312 + }, + { + "epoch": 46.0, + "eval_loss": 3.9855220317840576, + "eval_runtime": 44.9108, + "eval_samples_per_second": 54.374, + "eval_steps_per_second": 3.407, + "step": 3312 + }, + { + "epoch": 46.01397990388816, + "grad_norm": 0.1976146101951599, + "learning_rate": 0.0006, + "loss": 3.5675041675567627, + "step": 3313 + }, + { + "epoch": 46.02795980777632, + "grad_norm": 0.2238360494375229, + "learning_rate": 0.0006, + "loss": 3.6077466011047363, + "step": 3314 + }, + { + "epoch": 46.04193971166448, + "grad_norm": 0.288669228553772, + "learning_rate": 0.0006, + "loss": 3.589958667755127, + "step": 3315 + }, + { + "epoch": 46.05591961555265, + "grad_norm": 0.30626827478408813, + "learning_rate": 0.0006, + "loss": 3.604401111602783, + "step": 3316 + }, + { + "epoch": 46.0698995194408, + "grad_norm": 0.2721095681190491, + "learning_rate": 0.0006, + "loss": 3.620197296142578, + "step": 3317 + }, + { + "epoch": 46.083879423328966, + "grad_norm": 0.2152107059955597, + "learning_rate": 0.0006, + "loss": 3.607327938079834, + "step": 3318 + }, + { + "epoch": 46.09785932721712, + "grad_norm": 0.2205267995595932, + "learning_rate": 0.0006, + "loss": 3.6020898818969727, + "step": 3319 + }, + { + "epoch": 46.111839231105286, + "grad_norm": 0.25419551134109497, + "learning_rate": 0.0006, + "loss": 3.59277606010437, + "step": 3320 + }, + { + "epoch": 46.12581913499345, + "grad_norm": 0.2379811704158783, + "learning_rate": 0.0006, + "loss": 3.560422897338867, + "step": 3321 + }, + { + "epoch": 46.139799038881605, + "grad_norm": 0.20928747951984406, + "learning_rate": 0.0006, + "loss": 3.6373965740203857, + "step": 3322 + }, + { + "epoch": 46.15377894276977, + "grad_norm": 0.21654292941093445, + "learning_rate": 0.0006, + "loss": 3.620784282684326, + "step": 3323 + }, + { + "epoch": 46.16775884665793, + "grad_norm": 0.22994576394557953, + "learning_rate": 0.0006, + "loss": 3.589960813522339, + "step": 3324 + }, + { + "epoch": 46.18173875054609, + "grad_norm": 0.24989335238933563, + "learning_rate": 0.0006, + "loss": 3.599091053009033, + "step": 3325 + }, + { + "epoch": 46.19571865443425, + "grad_norm": 0.27068355679512024, + "learning_rate": 0.0006, + "loss": 3.5933146476745605, + "step": 3326 + }, + { + "epoch": 46.20969855832241, + "grad_norm": 0.2581503391265869, + "learning_rate": 0.0006, + "loss": 3.5935447216033936, + "step": 3327 + }, + { + "epoch": 46.22367846221057, + "grad_norm": 0.23368583619594574, + "learning_rate": 0.0006, + "loss": 3.6120412349700928, + "step": 3328 + }, + { + "epoch": 46.237658366098735, + "grad_norm": 0.21808452904224396, + "learning_rate": 0.0006, + "loss": 3.6155190467834473, + "step": 3329 + }, + { + "epoch": 46.25163826998689, + "grad_norm": 0.2152830809354782, + "learning_rate": 0.0006, + "loss": 3.6039974689483643, + "step": 3330 + }, + { + "epoch": 46.265618173875055, + "grad_norm": 0.20902983844280243, + "learning_rate": 0.0006, + "loss": 3.586416721343994, + "step": 3331 + }, + { + "epoch": 46.27959807776322, + "grad_norm": 0.21693682670593262, + "learning_rate": 0.0006, + "loss": 3.601595401763916, + "step": 3332 + }, + { + "epoch": 46.293577981651374, + "grad_norm": 0.21157346665859222, + "learning_rate": 0.0006, + "loss": 3.619825601577759, + "step": 3333 + }, + { + "epoch": 46.30755788553954, + "grad_norm": 0.19628529250621796, + "learning_rate": 0.0006, + "loss": 3.5845298767089844, + "step": 3334 + }, + { + "epoch": 46.3215377894277, + "grad_norm": 0.19599373638629913, + "learning_rate": 0.0006, + "loss": 3.614483594894409, + "step": 3335 + }, + { + "epoch": 46.33551769331586, + "grad_norm": 0.21777382493019104, + "learning_rate": 0.0006, + "loss": 3.5865678787231445, + "step": 3336 + }, + { + "epoch": 46.34949759720402, + "grad_norm": 0.24697323143482208, + "learning_rate": 0.0006, + "loss": 3.6168298721313477, + "step": 3337 + }, + { + "epoch": 46.36347750109218, + "grad_norm": 0.29521632194519043, + "learning_rate": 0.0006, + "loss": 3.627875804901123, + "step": 3338 + }, + { + "epoch": 46.37745740498034, + "grad_norm": 0.2548002004623413, + "learning_rate": 0.0006, + "loss": 3.6286001205444336, + "step": 3339 + }, + { + "epoch": 46.391437308868504, + "grad_norm": 0.20501002669334412, + "learning_rate": 0.0006, + "loss": 3.625035524368286, + "step": 3340 + }, + { + "epoch": 46.40541721275666, + "grad_norm": 0.21849584579467773, + "learning_rate": 0.0006, + "loss": 3.621872901916504, + "step": 3341 + }, + { + "epoch": 46.419397116644824, + "grad_norm": 0.22302033007144928, + "learning_rate": 0.0006, + "loss": 3.6088266372680664, + "step": 3342 + }, + { + "epoch": 46.43337702053299, + "grad_norm": 0.21138787269592285, + "learning_rate": 0.0006, + "loss": 3.6211094856262207, + "step": 3343 + }, + { + "epoch": 46.44735692442114, + "grad_norm": 0.22372713685035706, + "learning_rate": 0.0006, + "loss": 3.5799427032470703, + "step": 3344 + }, + { + "epoch": 46.46133682830931, + "grad_norm": 0.22019316256046295, + "learning_rate": 0.0006, + "loss": 3.616044044494629, + "step": 3345 + }, + { + "epoch": 46.47531673219746, + "grad_norm": 0.21947625279426575, + "learning_rate": 0.0006, + "loss": 3.613643169403076, + "step": 3346 + }, + { + "epoch": 46.489296636085626, + "grad_norm": 0.21935684978961945, + "learning_rate": 0.0006, + "loss": 3.6255440711975098, + "step": 3347 + }, + { + "epoch": 46.50327653997379, + "grad_norm": 0.20366479456424713, + "learning_rate": 0.0006, + "loss": 3.613892078399658, + "step": 3348 + }, + { + "epoch": 46.517256443861946, + "grad_norm": 0.21755267679691315, + "learning_rate": 0.0006, + "loss": 3.617886543273926, + "step": 3349 + }, + { + "epoch": 46.53123634775011, + "grad_norm": 0.20023910701274872, + "learning_rate": 0.0006, + "loss": 3.6172280311584473, + "step": 3350 + }, + { + "epoch": 46.54521625163827, + "grad_norm": 0.20375007390975952, + "learning_rate": 0.0006, + "loss": 3.595829486846924, + "step": 3351 + }, + { + "epoch": 46.55919615552643, + "grad_norm": 0.21125391125679016, + "learning_rate": 0.0006, + "loss": 3.632533550262451, + "step": 3352 + }, + { + "epoch": 46.57317605941459, + "grad_norm": 0.2359670102596283, + "learning_rate": 0.0006, + "loss": 3.597811222076416, + "step": 3353 + }, + { + "epoch": 46.58715596330275, + "grad_norm": 0.21696777641773224, + "learning_rate": 0.0006, + "loss": 3.627127170562744, + "step": 3354 + }, + { + "epoch": 46.60113586719091, + "grad_norm": 0.21501564979553223, + "learning_rate": 0.0006, + "loss": 3.630887985229492, + "step": 3355 + }, + { + "epoch": 46.615115771079076, + "grad_norm": 0.21446822583675385, + "learning_rate": 0.0006, + "loss": 3.6075234413146973, + "step": 3356 + }, + { + "epoch": 46.62909567496723, + "grad_norm": 0.21508967876434326, + "learning_rate": 0.0006, + "loss": 3.626603603363037, + "step": 3357 + }, + { + "epoch": 46.643075578855395, + "grad_norm": 0.19969215989112854, + "learning_rate": 0.0006, + "loss": 3.6160733699798584, + "step": 3358 + }, + { + "epoch": 46.65705548274356, + "grad_norm": 0.19982007145881653, + "learning_rate": 0.0006, + "loss": 3.632960319519043, + "step": 3359 + }, + { + "epoch": 46.671035386631715, + "grad_norm": 0.1981230527162552, + "learning_rate": 0.0006, + "loss": 3.608591079711914, + "step": 3360 + }, + { + "epoch": 46.68501529051988, + "grad_norm": 0.19948643445968628, + "learning_rate": 0.0006, + "loss": 3.6100947856903076, + "step": 3361 + }, + { + "epoch": 46.69899519440804, + "grad_norm": 0.18967196345329285, + "learning_rate": 0.0006, + "loss": 3.6203439235687256, + "step": 3362 + }, + { + "epoch": 46.7129750982962, + "grad_norm": 0.20035311579704285, + "learning_rate": 0.0006, + "loss": 3.64508056640625, + "step": 3363 + }, + { + "epoch": 46.72695500218436, + "grad_norm": 0.21049824357032776, + "learning_rate": 0.0006, + "loss": 3.620095729827881, + "step": 3364 + }, + { + "epoch": 46.74093490607252, + "grad_norm": 0.21411995589733124, + "learning_rate": 0.0006, + "loss": 3.650815963745117, + "step": 3365 + }, + { + "epoch": 46.75491480996068, + "grad_norm": 0.18666061758995056, + "learning_rate": 0.0006, + "loss": 3.625699758529663, + "step": 3366 + }, + { + "epoch": 46.768894713848844, + "grad_norm": 0.1927071362733841, + "learning_rate": 0.0006, + "loss": 3.6165151596069336, + "step": 3367 + }, + { + "epoch": 46.782874617737, + "grad_norm": 0.2063879817724228, + "learning_rate": 0.0006, + "loss": 3.6182332038879395, + "step": 3368 + }, + { + "epoch": 46.796854521625164, + "grad_norm": 0.19215327501296997, + "learning_rate": 0.0006, + "loss": 3.607239246368408, + "step": 3369 + }, + { + "epoch": 46.81083442551333, + "grad_norm": 0.2074592262506485, + "learning_rate": 0.0006, + "loss": 3.624856948852539, + "step": 3370 + }, + { + "epoch": 46.824814329401484, + "grad_norm": 0.2184106856584549, + "learning_rate": 0.0006, + "loss": 3.628757953643799, + "step": 3371 + }, + { + "epoch": 46.83879423328965, + "grad_norm": 0.2203136682510376, + "learning_rate": 0.0006, + "loss": 3.625958204269409, + "step": 3372 + }, + { + "epoch": 46.8527741371778, + "grad_norm": 0.21920061111450195, + "learning_rate": 0.0006, + "loss": 3.6060733795166016, + "step": 3373 + }, + { + "epoch": 46.86675404106597, + "grad_norm": 0.2122412472963333, + "learning_rate": 0.0006, + "loss": 3.6126952171325684, + "step": 3374 + }, + { + "epoch": 46.88073394495413, + "grad_norm": 0.1971784383058548, + "learning_rate": 0.0006, + "loss": 3.637129783630371, + "step": 3375 + }, + { + "epoch": 46.89471384884229, + "grad_norm": 0.20824873447418213, + "learning_rate": 0.0006, + "loss": 3.62868070602417, + "step": 3376 + }, + { + "epoch": 46.90869375273045, + "grad_norm": 0.20157678425312042, + "learning_rate": 0.0006, + "loss": 3.6321873664855957, + "step": 3377 + }, + { + "epoch": 46.92267365661861, + "grad_norm": 0.1958925426006317, + "learning_rate": 0.0006, + "loss": 3.6513354778289795, + "step": 3378 + }, + { + "epoch": 46.93665356050677, + "grad_norm": 0.1969553828239441, + "learning_rate": 0.0006, + "loss": 3.6346323490142822, + "step": 3379 + }, + { + "epoch": 46.95063346439493, + "grad_norm": 0.19311924278736115, + "learning_rate": 0.0006, + "loss": 3.6673245429992676, + "step": 3380 + }, + { + "epoch": 46.964613368283096, + "grad_norm": 0.20341862738132477, + "learning_rate": 0.0006, + "loss": 3.680025339126587, + "step": 3381 + }, + { + "epoch": 46.97859327217125, + "grad_norm": 0.20667442679405212, + "learning_rate": 0.0006, + "loss": 3.632290840148926, + "step": 3382 + }, + { + "epoch": 46.992573176059416, + "grad_norm": 0.19141609966754913, + "learning_rate": 0.0006, + "loss": 3.659360647201538, + "step": 3383 + }, + { + "epoch": 47.0, + "grad_norm": 0.20981188118457794, + "learning_rate": 0.0006, + "loss": 3.653548240661621, + "step": 3384 + }, + { + "epoch": 47.0, + "eval_loss": 3.9833984375, + "eval_runtime": 44.4693, + "eval_samples_per_second": 54.914, + "eval_steps_per_second": 3.441, + "step": 3384 + }, + { + "epoch": 47.01397990388816, + "grad_norm": 0.1958128660917282, + "learning_rate": 0.0006, + "loss": 3.5778727531433105, + "step": 3385 + }, + { + "epoch": 47.02795980777632, + "grad_norm": 0.19728390872478485, + "learning_rate": 0.0006, + "loss": 3.5827393531799316, + "step": 3386 + }, + { + "epoch": 47.04193971166448, + "grad_norm": 0.18564026057720184, + "learning_rate": 0.0006, + "loss": 3.573071002960205, + "step": 3387 + }, + { + "epoch": 47.05591961555265, + "grad_norm": 0.20563258230686188, + "learning_rate": 0.0006, + "loss": 3.564330577850342, + "step": 3388 + }, + { + "epoch": 47.0698995194408, + "grad_norm": 0.21382158994674683, + "learning_rate": 0.0006, + "loss": 3.5976946353912354, + "step": 3389 + }, + { + "epoch": 47.083879423328966, + "grad_norm": 0.2383693903684616, + "learning_rate": 0.0006, + "loss": 3.5970897674560547, + "step": 3390 + }, + { + "epoch": 47.09785932721712, + "grad_norm": 0.24709449708461761, + "learning_rate": 0.0006, + "loss": 3.613409996032715, + "step": 3391 + }, + { + "epoch": 47.111839231105286, + "grad_norm": 0.2329784333705902, + "learning_rate": 0.0006, + "loss": 3.571023464202881, + "step": 3392 + }, + { + "epoch": 47.12581913499345, + "grad_norm": 0.2096954584121704, + "learning_rate": 0.0006, + "loss": 3.573697090148926, + "step": 3393 + }, + { + "epoch": 47.139799038881605, + "grad_norm": 0.21630050241947174, + "learning_rate": 0.0006, + "loss": 3.6085095405578613, + "step": 3394 + }, + { + "epoch": 47.15377894276977, + "grad_norm": 0.22828878462314606, + "learning_rate": 0.0006, + "loss": 3.605466842651367, + "step": 3395 + }, + { + "epoch": 47.16775884665793, + "grad_norm": 0.24957625567913055, + "learning_rate": 0.0006, + "loss": 3.588324546813965, + "step": 3396 + }, + { + "epoch": 47.18173875054609, + "grad_norm": 0.25446194410324097, + "learning_rate": 0.0006, + "loss": 3.6161458492279053, + "step": 3397 + }, + { + "epoch": 47.19571865443425, + "grad_norm": 0.24938438832759857, + "learning_rate": 0.0006, + "loss": 3.6017847061157227, + "step": 3398 + }, + { + "epoch": 47.20969855832241, + "grad_norm": 0.23318032920360565, + "learning_rate": 0.0006, + "loss": 3.6077046394348145, + "step": 3399 + }, + { + "epoch": 47.22367846221057, + "grad_norm": 0.2179042547941208, + "learning_rate": 0.0006, + "loss": 3.598104953765869, + "step": 3400 + }, + { + "epoch": 47.237658366098735, + "grad_norm": 0.213354229927063, + "learning_rate": 0.0006, + "loss": 3.6328814029693604, + "step": 3401 + }, + { + "epoch": 47.25163826998689, + "grad_norm": 0.23104089498519897, + "learning_rate": 0.0006, + "loss": 3.6161890029907227, + "step": 3402 + }, + { + "epoch": 47.265618173875055, + "grad_norm": 0.22219021618366241, + "learning_rate": 0.0006, + "loss": 3.620314121246338, + "step": 3403 + }, + { + "epoch": 47.27959807776322, + "grad_norm": 0.21618683636188507, + "learning_rate": 0.0006, + "loss": 3.5955371856689453, + "step": 3404 + }, + { + "epoch": 47.293577981651374, + "grad_norm": 0.22280243039131165, + "learning_rate": 0.0006, + "loss": 3.618302345275879, + "step": 3405 + }, + { + "epoch": 47.30755788553954, + "grad_norm": 0.2268427014350891, + "learning_rate": 0.0006, + "loss": 3.6035101413726807, + "step": 3406 + }, + { + "epoch": 47.3215377894277, + "grad_norm": 0.20324429869651794, + "learning_rate": 0.0006, + "loss": 3.612598419189453, + "step": 3407 + }, + { + "epoch": 47.33551769331586, + "grad_norm": 0.19353045523166656, + "learning_rate": 0.0006, + "loss": 3.5951499938964844, + "step": 3408 + }, + { + "epoch": 47.34949759720402, + "grad_norm": 0.19008080661296844, + "learning_rate": 0.0006, + "loss": 3.6177732944488525, + "step": 3409 + }, + { + "epoch": 47.36347750109218, + "grad_norm": 0.19530250132083893, + "learning_rate": 0.0006, + "loss": 3.597903251647949, + "step": 3410 + }, + { + "epoch": 47.37745740498034, + "grad_norm": 0.2083505541086197, + "learning_rate": 0.0006, + "loss": 3.6062350273132324, + "step": 3411 + }, + { + "epoch": 47.391437308868504, + "grad_norm": 0.2241518199443817, + "learning_rate": 0.0006, + "loss": 3.6084704399108887, + "step": 3412 + }, + { + "epoch": 47.40541721275666, + "grad_norm": 0.25763124227523804, + "learning_rate": 0.0006, + "loss": 3.600295066833496, + "step": 3413 + }, + { + "epoch": 47.419397116644824, + "grad_norm": 0.2689114212989807, + "learning_rate": 0.0006, + "loss": 3.648848533630371, + "step": 3414 + }, + { + "epoch": 47.43337702053299, + "grad_norm": 0.30106639862060547, + "learning_rate": 0.0006, + "loss": 3.6248483657836914, + "step": 3415 + }, + { + "epoch": 47.44735692442114, + "grad_norm": 0.31840384006500244, + "learning_rate": 0.0006, + "loss": 3.6256890296936035, + "step": 3416 + }, + { + "epoch": 47.46133682830931, + "grad_norm": 0.2603468894958496, + "learning_rate": 0.0006, + "loss": 3.6225175857543945, + "step": 3417 + }, + { + "epoch": 47.47531673219746, + "grad_norm": 0.33408305048942566, + "learning_rate": 0.0006, + "loss": 3.590303897857666, + "step": 3418 + }, + { + "epoch": 47.489296636085626, + "grad_norm": 0.3677918612957001, + "learning_rate": 0.0006, + "loss": 3.6005120277404785, + "step": 3419 + }, + { + "epoch": 47.50327653997379, + "grad_norm": 0.23077215254306793, + "learning_rate": 0.0006, + "loss": 3.6093883514404297, + "step": 3420 + }, + { + "epoch": 47.517256443861946, + "grad_norm": 0.27272120118141174, + "learning_rate": 0.0006, + "loss": 3.580151081085205, + "step": 3421 + }, + { + "epoch": 47.53123634775011, + "grad_norm": 0.22629371285438538, + "learning_rate": 0.0006, + "loss": 3.6375746726989746, + "step": 3422 + }, + { + "epoch": 47.54521625163827, + "grad_norm": 0.2376468926668167, + "learning_rate": 0.0006, + "loss": 3.6492481231689453, + "step": 3423 + }, + { + "epoch": 47.55919615552643, + "grad_norm": 0.21200433373451233, + "learning_rate": 0.0006, + "loss": 3.6258158683776855, + "step": 3424 + }, + { + "epoch": 47.57317605941459, + "grad_norm": 0.2246236652135849, + "learning_rate": 0.0006, + "loss": 3.6199564933776855, + "step": 3425 + }, + { + "epoch": 47.58715596330275, + "grad_norm": 0.21713437139987946, + "learning_rate": 0.0006, + "loss": 3.638197898864746, + "step": 3426 + }, + { + "epoch": 47.60113586719091, + "grad_norm": 0.1964627057313919, + "learning_rate": 0.0006, + "loss": 3.6334147453308105, + "step": 3427 + }, + { + "epoch": 47.615115771079076, + "grad_norm": 0.21705810725688934, + "learning_rate": 0.0006, + "loss": 3.6298668384552, + "step": 3428 + }, + { + "epoch": 47.62909567496723, + "grad_norm": 0.20376256108283997, + "learning_rate": 0.0006, + "loss": 3.6127166748046875, + "step": 3429 + }, + { + "epoch": 47.643075578855395, + "grad_norm": 0.20046672224998474, + "learning_rate": 0.0006, + "loss": 3.633683681488037, + "step": 3430 + }, + { + "epoch": 47.65705548274356, + "grad_norm": 0.21494409441947937, + "learning_rate": 0.0006, + "loss": 3.635828971862793, + "step": 3431 + }, + { + "epoch": 47.671035386631715, + "grad_norm": 0.24550487101078033, + "learning_rate": 0.0006, + "loss": 3.6056854724884033, + "step": 3432 + }, + { + "epoch": 47.68501529051988, + "grad_norm": 0.24416600167751312, + "learning_rate": 0.0006, + "loss": 3.618785858154297, + "step": 3433 + }, + { + "epoch": 47.69899519440804, + "grad_norm": 0.22872993350028992, + "learning_rate": 0.0006, + "loss": 3.6189026832580566, + "step": 3434 + }, + { + "epoch": 47.7129750982962, + "grad_norm": 0.23609530925750732, + "learning_rate": 0.0006, + "loss": 3.623661518096924, + "step": 3435 + }, + { + "epoch": 47.72695500218436, + "grad_norm": 0.22905564308166504, + "learning_rate": 0.0006, + "loss": 3.6155691146850586, + "step": 3436 + }, + { + "epoch": 47.74093490607252, + "grad_norm": 0.25507304072380066, + "learning_rate": 0.0006, + "loss": 3.5848331451416016, + "step": 3437 + }, + { + "epoch": 47.75491480996068, + "grad_norm": 0.24594344198703766, + "learning_rate": 0.0006, + "loss": 3.588374614715576, + "step": 3438 + }, + { + "epoch": 47.768894713848844, + "grad_norm": 0.23131750524044037, + "learning_rate": 0.0006, + "loss": 3.6164474487304688, + "step": 3439 + }, + { + "epoch": 47.782874617737, + "grad_norm": 0.21967829763889313, + "learning_rate": 0.0006, + "loss": 3.619150161743164, + "step": 3440 + }, + { + "epoch": 47.796854521625164, + "grad_norm": 0.226309135556221, + "learning_rate": 0.0006, + "loss": 3.5946340560913086, + "step": 3441 + }, + { + "epoch": 47.81083442551333, + "grad_norm": 0.23141087591648102, + "learning_rate": 0.0006, + "loss": 3.614711046218872, + "step": 3442 + }, + { + "epoch": 47.824814329401484, + "grad_norm": 0.20917707681655884, + "learning_rate": 0.0006, + "loss": 3.610058307647705, + "step": 3443 + }, + { + "epoch": 47.83879423328965, + "grad_norm": 0.22864583134651184, + "learning_rate": 0.0006, + "loss": 3.6396052837371826, + "step": 3444 + }, + { + "epoch": 47.8527741371778, + "grad_norm": 0.22201144695281982, + "learning_rate": 0.0006, + "loss": 3.6462526321411133, + "step": 3445 + }, + { + "epoch": 47.86675404106597, + "grad_norm": 0.21199125051498413, + "learning_rate": 0.0006, + "loss": 3.6090314388275146, + "step": 3446 + }, + { + "epoch": 47.88073394495413, + "grad_norm": 0.2236194908618927, + "learning_rate": 0.0006, + "loss": 3.6308231353759766, + "step": 3447 + }, + { + "epoch": 47.89471384884229, + "grad_norm": 0.21571075916290283, + "learning_rate": 0.0006, + "loss": 3.5899293422698975, + "step": 3448 + }, + { + "epoch": 47.90869375273045, + "grad_norm": 0.2320997267961502, + "learning_rate": 0.0006, + "loss": 3.6360764503479004, + "step": 3449 + }, + { + "epoch": 47.92267365661861, + "grad_norm": 0.2304147630929947, + "learning_rate": 0.0006, + "loss": 3.61220121383667, + "step": 3450 + }, + { + "epoch": 47.93665356050677, + "grad_norm": 0.2321154624223709, + "learning_rate": 0.0006, + "loss": 3.6104419231414795, + "step": 3451 + }, + { + "epoch": 47.95063346439493, + "grad_norm": 0.20895935595035553, + "learning_rate": 0.0006, + "loss": 3.6372952461242676, + "step": 3452 + }, + { + "epoch": 47.964613368283096, + "grad_norm": 0.19926418364048004, + "learning_rate": 0.0006, + "loss": 3.652947425842285, + "step": 3453 + }, + { + "epoch": 47.97859327217125, + "grad_norm": 0.22443149983882904, + "learning_rate": 0.0006, + "loss": 3.6005635261535645, + "step": 3454 + }, + { + "epoch": 47.992573176059416, + "grad_norm": 0.2361244559288025, + "learning_rate": 0.0006, + "loss": 3.626563549041748, + "step": 3455 + }, + { + "epoch": 48.0, + "grad_norm": 0.2542579174041748, + "learning_rate": 0.0006, + "loss": 3.619098663330078, + "step": 3456 + }, + { + "epoch": 48.0, + "eval_loss": 3.9787564277648926, + "eval_runtime": 44.3429, + "eval_samples_per_second": 55.071, + "eval_steps_per_second": 3.45, + "step": 3456 + }, + { + "epoch": 48.01397990388816, + "grad_norm": 0.21771088242530823, + "learning_rate": 0.0006, + "loss": 3.538780927658081, + "step": 3457 + }, + { + "epoch": 48.02795980777632, + "grad_norm": 0.23467740416526794, + "learning_rate": 0.0006, + "loss": 3.5875978469848633, + "step": 3458 + }, + { + "epoch": 48.04193971166448, + "grad_norm": 0.2527692914009094, + "learning_rate": 0.0006, + "loss": 3.5939159393310547, + "step": 3459 + }, + { + "epoch": 48.05591961555265, + "grad_norm": 0.21477685868740082, + "learning_rate": 0.0006, + "loss": 3.600374698638916, + "step": 3460 + }, + { + "epoch": 48.0698995194408, + "grad_norm": 0.22008976340293884, + "learning_rate": 0.0006, + "loss": 3.6058406829833984, + "step": 3461 + }, + { + "epoch": 48.083879423328966, + "grad_norm": 0.23344817757606506, + "learning_rate": 0.0006, + "loss": 3.5864410400390625, + "step": 3462 + }, + { + "epoch": 48.09785932721712, + "grad_norm": 0.24451610445976257, + "learning_rate": 0.0006, + "loss": 3.5827221870422363, + "step": 3463 + }, + { + "epoch": 48.111839231105286, + "grad_norm": 0.24536925554275513, + "learning_rate": 0.0006, + "loss": 3.566275119781494, + "step": 3464 + }, + { + "epoch": 48.12581913499345, + "grad_norm": 0.24060940742492676, + "learning_rate": 0.0006, + "loss": 3.575841188430786, + "step": 3465 + }, + { + "epoch": 48.139799038881605, + "grad_norm": 0.24829573929309845, + "learning_rate": 0.0006, + "loss": 3.6215152740478516, + "step": 3466 + }, + { + "epoch": 48.15377894276977, + "grad_norm": 0.2651045024394989, + "learning_rate": 0.0006, + "loss": 3.604381561279297, + "step": 3467 + }, + { + "epoch": 48.16775884665793, + "grad_norm": 0.2654518187046051, + "learning_rate": 0.0006, + "loss": 3.5989198684692383, + "step": 3468 + }, + { + "epoch": 48.18173875054609, + "grad_norm": 0.25179797410964966, + "learning_rate": 0.0006, + "loss": 3.596402168273926, + "step": 3469 + }, + { + "epoch": 48.19571865443425, + "grad_norm": 0.24018050730228424, + "learning_rate": 0.0006, + "loss": 3.6376051902770996, + "step": 3470 + }, + { + "epoch": 48.20969855832241, + "grad_norm": 0.22079682350158691, + "learning_rate": 0.0006, + "loss": 3.5990993976593018, + "step": 3471 + }, + { + "epoch": 48.22367846221057, + "grad_norm": 0.23267143964767456, + "learning_rate": 0.0006, + "loss": 3.614759683609009, + "step": 3472 + }, + { + "epoch": 48.237658366098735, + "grad_norm": 0.21822260320186615, + "learning_rate": 0.0006, + "loss": 3.6057262420654297, + "step": 3473 + }, + { + "epoch": 48.25163826998689, + "grad_norm": 0.23391997814178467, + "learning_rate": 0.0006, + "loss": 3.581972599029541, + "step": 3474 + }, + { + "epoch": 48.265618173875055, + "grad_norm": 0.22634121775627136, + "learning_rate": 0.0006, + "loss": 3.592149496078491, + "step": 3475 + }, + { + "epoch": 48.27959807776322, + "grad_norm": 0.2142419070005417, + "learning_rate": 0.0006, + "loss": 3.616722583770752, + "step": 3476 + }, + { + "epoch": 48.293577981651374, + "grad_norm": 0.227144256234169, + "learning_rate": 0.0006, + "loss": 3.6018447875976562, + "step": 3477 + }, + { + "epoch": 48.30755788553954, + "grad_norm": 0.25466978549957275, + "learning_rate": 0.0006, + "loss": 3.5795769691467285, + "step": 3478 + }, + { + "epoch": 48.3215377894277, + "grad_norm": 0.2409234344959259, + "learning_rate": 0.0006, + "loss": 3.5845530033111572, + "step": 3479 + }, + { + "epoch": 48.33551769331586, + "grad_norm": 0.22001305222511292, + "learning_rate": 0.0006, + "loss": 3.5861806869506836, + "step": 3480 + }, + { + "epoch": 48.34949759720402, + "grad_norm": 0.24980100989341736, + "learning_rate": 0.0006, + "loss": 3.6032233238220215, + "step": 3481 + }, + { + "epoch": 48.36347750109218, + "grad_norm": 0.28788816928863525, + "learning_rate": 0.0006, + "loss": 3.5876364707946777, + "step": 3482 + }, + { + "epoch": 48.37745740498034, + "grad_norm": 0.26172295212745667, + "learning_rate": 0.0006, + "loss": 3.5711276531219482, + "step": 3483 + }, + { + "epoch": 48.391437308868504, + "grad_norm": 0.23881542682647705, + "learning_rate": 0.0006, + "loss": 3.57108473777771, + "step": 3484 + }, + { + "epoch": 48.40541721275666, + "grad_norm": 0.22385981678962708, + "learning_rate": 0.0006, + "loss": 3.6197509765625, + "step": 3485 + }, + { + "epoch": 48.419397116644824, + "grad_norm": 0.21007859706878662, + "learning_rate": 0.0006, + "loss": 3.609449625015259, + "step": 3486 + }, + { + "epoch": 48.43337702053299, + "grad_norm": 0.21170279383659363, + "learning_rate": 0.0006, + "loss": 3.5981619358062744, + "step": 3487 + }, + { + "epoch": 48.44735692442114, + "grad_norm": 0.2100721150636673, + "learning_rate": 0.0006, + "loss": 3.606505870819092, + "step": 3488 + }, + { + "epoch": 48.46133682830931, + "grad_norm": 0.20408287644386292, + "learning_rate": 0.0006, + "loss": 3.6033859252929688, + "step": 3489 + }, + { + "epoch": 48.47531673219746, + "grad_norm": 0.20343686640262604, + "learning_rate": 0.0006, + "loss": 3.6249616146087646, + "step": 3490 + }, + { + "epoch": 48.489296636085626, + "grad_norm": 0.20570123195648193, + "learning_rate": 0.0006, + "loss": 3.5700693130493164, + "step": 3491 + }, + { + "epoch": 48.50327653997379, + "grad_norm": 0.2511707544326782, + "learning_rate": 0.0006, + "loss": 3.6432406902313232, + "step": 3492 + }, + { + "epoch": 48.517256443861946, + "grad_norm": 0.265960693359375, + "learning_rate": 0.0006, + "loss": 3.6329426765441895, + "step": 3493 + }, + { + "epoch": 48.53123634775011, + "grad_norm": 0.25830161571502686, + "learning_rate": 0.0006, + "loss": 3.593940258026123, + "step": 3494 + }, + { + "epoch": 48.54521625163827, + "grad_norm": 0.2232893705368042, + "learning_rate": 0.0006, + "loss": 3.623812198638916, + "step": 3495 + }, + { + "epoch": 48.55919615552643, + "grad_norm": 0.20818902552127838, + "learning_rate": 0.0006, + "loss": 3.5982813835144043, + "step": 3496 + }, + { + "epoch": 48.57317605941459, + "grad_norm": 0.2756865918636322, + "learning_rate": 0.0006, + "loss": 3.617436170578003, + "step": 3497 + }, + { + "epoch": 48.58715596330275, + "grad_norm": 0.2361520677804947, + "learning_rate": 0.0006, + "loss": 3.598113536834717, + "step": 3498 + }, + { + "epoch": 48.60113586719091, + "grad_norm": 0.1956835240125656, + "learning_rate": 0.0006, + "loss": 3.581003189086914, + "step": 3499 + }, + { + "epoch": 48.615115771079076, + "grad_norm": 0.2863931953907013, + "learning_rate": 0.0006, + "loss": 3.596768379211426, + "step": 3500 + }, + { + "epoch": 48.62909567496723, + "grad_norm": 0.29865020513534546, + "learning_rate": 0.0006, + "loss": 3.576995372772217, + "step": 3501 + }, + { + "epoch": 48.643075578855395, + "grad_norm": 0.23084872961044312, + "learning_rate": 0.0006, + "loss": 3.6431074142456055, + "step": 3502 + }, + { + "epoch": 48.65705548274356, + "grad_norm": 0.2081640362739563, + "learning_rate": 0.0006, + "loss": 3.6002132892608643, + "step": 3503 + }, + { + "epoch": 48.671035386631715, + "grad_norm": 0.20566335320472717, + "learning_rate": 0.0006, + "loss": 3.62365460395813, + "step": 3504 + }, + { + "epoch": 48.68501529051988, + "grad_norm": 0.2066725790500641, + "learning_rate": 0.0006, + "loss": 3.6063363552093506, + "step": 3505 + }, + { + "epoch": 48.69899519440804, + "grad_norm": 0.19830003380775452, + "learning_rate": 0.0006, + "loss": 3.617750883102417, + "step": 3506 + }, + { + "epoch": 48.7129750982962, + "grad_norm": 0.20409031212329865, + "learning_rate": 0.0006, + "loss": 3.6110005378723145, + "step": 3507 + }, + { + "epoch": 48.72695500218436, + "grad_norm": 0.20836064219474792, + "learning_rate": 0.0006, + "loss": 3.6148147583007812, + "step": 3508 + }, + { + "epoch": 48.74093490607252, + "grad_norm": 0.21660791337490082, + "learning_rate": 0.0006, + "loss": 3.641488790512085, + "step": 3509 + }, + { + "epoch": 48.75491480996068, + "grad_norm": 0.21075023710727692, + "learning_rate": 0.0006, + "loss": 3.6327688694000244, + "step": 3510 + }, + { + "epoch": 48.768894713848844, + "grad_norm": 0.19346074759960175, + "learning_rate": 0.0006, + "loss": 3.6025185585021973, + "step": 3511 + }, + { + "epoch": 48.782874617737, + "grad_norm": 0.20215240120887756, + "learning_rate": 0.0006, + "loss": 3.595707416534424, + "step": 3512 + }, + { + "epoch": 48.796854521625164, + "grad_norm": 0.1913122832775116, + "learning_rate": 0.0006, + "loss": 3.618406295776367, + "step": 3513 + }, + { + "epoch": 48.81083442551333, + "grad_norm": 0.18517033755779266, + "learning_rate": 0.0006, + "loss": 3.6212055683135986, + "step": 3514 + }, + { + "epoch": 48.824814329401484, + "grad_norm": 0.20453064143657684, + "learning_rate": 0.0006, + "loss": 3.5941221714019775, + "step": 3515 + }, + { + "epoch": 48.83879423328965, + "grad_norm": 0.20777031779289246, + "learning_rate": 0.0006, + "loss": 3.630701780319214, + "step": 3516 + }, + { + "epoch": 48.8527741371778, + "grad_norm": 0.23713789880275726, + "learning_rate": 0.0006, + "loss": 3.629256248474121, + "step": 3517 + }, + { + "epoch": 48.86675404106597, + "grad_norm": 0.1945258378982544, + "learning_rate": 0.0006, + "loss": 3.607020854949951, + "step": 3518 + }, + { + "epoch": 48.88073394495413, + "grad_norm": 0.19601863622665405, + "learning_rate": 0.0006, + "loss": 3.6200907230377197, + "step": 3519 + }, + { + "epoch": 48.89471384884229, + "grad_norm": 0.20068836212158203, + "learning_rate": 0.0006, + "loss": 3.58575701713562, + "step": 3520 + }, + { + "epoch": 48.90869375273045, + "grad_norm": 0.21790200471878052, + "learning_rate": 0.0006, + "loss": 3.6451416015625, + "step": 3521 + }, + { + "epoch": 48.92267365661861, + "grad_norm": 0.22265756130218506, + "learning_rate": 0.0006, + "loss": 3.621331214904785, + "step": 3522 + }, + { + "epoch": 48.93665356050677, + "grad_norm": 0.20316730439662933, + "learning_rate": 0.0006, + "loss": 3.614537239074707, + "step": 3523 + }, + { + "epoch": 48.95063346439493, + "grad_norm": 0.20275238156318665, + "learning_rate": 0.0006, + "loss": 3.5913281440734863, + "step": 3524 + }, + { + "epoch": 48.964613368283096, + "grad_norm": 0.20239883661270142, + "learning_rate": 0.0006, + "loss": 3.608638286590576, + "step": 3525 + }, + { + "epoch": 48.97859327217125, + "grad_norm": 0.21154041588306427, + "learning_rate": 0.0006, + "loss": 3.6233115196228027, + "step": 3526 + }, + { + "epoch": 48.992573176059416, + "grad_norm": 0.22368352115154266, + "learning_rate": 0.0006, + "loss": 3.599665880203247, + "step": 3527 + }, + { + "epoch": 49.0, + "grad_norm": 0.2675703763961792, + "learning_rate": 0.0006, + "loss": 3.637458086013794, + "step": 3528 + }, + { + "epoch": 49.0, + "eval_loss": 3.985574245452881, + "eval_runtime": 44.55, + "eval_samples_per_second": 54.815, + "eval_steps_per_second": 3.434, + "step": 3528 + }, + { + "epoch": 49.01397990388816, + "grad_norm": 0.2911863625049591, + "learning_rate": 0.0006, + "loss": 3.606170654296875, + "step": 3529 + }, + { + "epoch": 49.02795980777632, + "grad_norm": 0.26640036702156067, + "learning_rate": 0.0006, + "loss": 3.5662899017333984, + "step": 3530 + }, + { + "epoch": 49.04193971166448, + "grad_norm": 0.23250512778759003, + "learning_rate": 0.0006, + "loss": 3.5928688049316406, + "step": 3531 + }, + { + "epoch": 49.05591961555265, + "grad_norm": 0.2603093385696411, + "learning_rate": 0.0006, + "loss": 3.5702433586120605, + "step": 3532 + }, + { + "epoch": 49.0698995194408, + "grad_norm": 0.2711663246154785, + "learning_rate": 0.0006, + "loss": 3.591977596282959, + "step": 3533 + }, + { + "epoch": 49.083879423328966, + "grad_norm": 0.2536148130893707, + "learning_rate": 0.0006, + "loss": 3.5924272537231445, + "step": 3534 + }, + { + "epoch": 49.09785932721712, + "grad_norm": 0.22995208203792572, + "learning_rate": 0.0006, + "loss": 3.5760092735290527, + "step": 3535 + }, + { + "epoch": 49.111839231105286, + "grad_norm": 0.22327162325382233, + "learning_rate": 0.0006, + "loss": 3.6072137355804443, + "step": 3536 + }, + { + "epoch": 49.12581913499345, + "grad_norm": 0.2256365567445755, + "learning_rate": 0.0006, + "loss": 3.6156117916107178, + "step": 3537 + }, + { + "epoch": 49.139799038881605, + "grad_norm": 0.23647814989089966, + "learning_rate": 0.0006, + "loss": 3.5862512588500977, + "step": 3538 + }, + { + "epoch": 49.15377894276977, + "grad_norm": 0.23442648351192474, + "learning_rate": 0.0006, + "loss": 3.606386184692383, + "step": 3539 + }, + { + "epoch": 49.16775884665793, + "grad_norm": 0.22148385643959045, + "learning_rate": 0.0006, + "loss": 3.5564064979553223, + "step": 3540 + }, + { + "epoch": 49.18173875054609, + "grad_norm": 0.24589644372463226, + "learning_rate": 0.0006, + "loss": 3.5625576972961426, + "step": 3541 + }, + { + "epoch": 49.19571865443425, + "grad_norm": 0.23955261707305908, + "learning_rate": 0.0006, + "loss": 3.617833137512207, + "step": 3542 + }, + { + "epoch": 49.20969855832241, + "grad_norm": 0.2781425416469574, + "learning_rate": 0.0006, + "loss": 3.6153502464294434, + "step": 3543 + }, + { + "epoch": 49.22367846221057, + "grad_norm": 0.2622034549713135, + "learning_rate": 0.0006, + "loss": 3.608530044555664, + "step": 3544 + }, + { + "epoch": 49.237658366098735, + "grad_norm": 0.28407761454582214, + "learning_rate": 0.0006, + "loss": 3.572207450866699, + "step": 3545 + }, + { + "epoch": 49.25163826998689, + "grad_norm": 0.2722281217575073, + "learning_rate": 0.0006, + "loss": 3.591392755508423, + "step": 3546 + }, + { + "epoch": 49.265618173875055, + "grad_norm": 0.20608903467655182, + "learning_rate": 0.0006, + "loss": 3.598421573638916, + "step": 3547 + }, + { + "epoch": 49.27959807776322, + "grad_norm": 0.27233049273490906, + "learning_rate": 0.0006, + "loss": 3.5819201469421387, + "step": 3548 + }, + { + "epoch": 49.293577981651374, + "grad_norm": 0.26182129979133606, + "learning_rate": 0.0006, + "loss": 3.5855109691619873, + "step": 3549 + }, + { + "epoch": 49.30755788553954, + "grad_norm": 0.20255911350250244, + "learning_rate": 0.0006, + "loss": 3.569438934326172, + "step": 3550 + }, + { + "epoch": 49.3215377894277, + "grad_norm": 0.20045310258865356, + "learning_rate": 0.0006, + "loss": 3.5888795852661133, + "step": 3551 + }, + { + "epoch": 49.33551769331586, + "grad_norm": 0.18505392968654633, + "learning_rate": 0.0006, + "loss": 3.565467596054077, + "step": 3552 + }, + { + "epoch": 49.34949759720402, + "grad_norm": 0.2057398110628128, + "learning_rate": 0.0006, + "loss": 3.5850436687469482, + "step": 3553 + }, + { + "epoch": 49.36347750109218, + "grad_norm": 0.20007790625095367, + "learning_rate": 0.0006, + "loss": 3.5963945388793945, + "step": 3554 + }, + { + "epoch": 49.37745740498034, + "grad_norm": 0.179341122508049, + "learning_rate": 0.0006, + "loss": 3.5747077465057373, + "step": 3555 + }, + { + "epoch": 49.391437308868504, + "grad_norm": 0.1978122442960739, + "learning_rate": 0.0006, + "loss": 3.605037212371826, + "step": 3556 + }, + { + "epoch": 49.40541721275666, + "grad_norm": 0.1936761885881424, + "learning_rate": 0.0006, + "loss": 3.6293420791625977, + "step": 3557 + }, + { + "epoch": 49.419397116644824, + "grad_norm": 0.20393748581409454, + "learning_rate": 0.0006, + "loss": 3.5616302490234375, + "step": 3558 + }, + { + "epoch": 49.43337702053299, + "grad_norm": 0.19082997739315033, + "learning_rate": 0.0006, + "loss": 3.605088472366333, + "step": 3559 + }, + { + "epoch": 49.44735692442114, + "grad_norm": 0.19642551243305206, + "learning_rate": 0.0006, + "loss": 3.610870361328125, + "step": 3560 + }, + { + "epoch": 49.46133682830931, + "grad_norm": 0.21815423667430878, + "learning_rate": 0.0006, + "loss": 3.60211181640625, + "step": 3561 + }, + { + "epoch": 49.47531673219746, + "grad_norm": 0.20342762768268585, + "learning_rate": 0.0006, + "loss": 3.597529411315918, + "step": 3562 + }, + { + "epoch": 49.489296636085626, + "grad_norm": 0.19032546877861023, + "learning_rate": 0.0006, + "loss": 3.5728795528411865, + "step": 3563 + }, + { + "epoch": 49.50327653997379, + "grad_norm": 0.18237556517124176, + "learning_rate": 0.0006, + "loss": 3.5983595848083496, + "step": 3564 + }, + { + "epoch": 49.517256443861946, + "grad_norm": 0.20585589110851288, + "learning_rate": 0.0006, + "loss": 3.578320264816284, + "step": 3565 + }, + { + "epoch": 49.53123634775011, + "grad_norm": 0.20158857107162476, + "learning_rate": 0.0006, + "loss": 3.5918798446655273, + "step": 3566 + }, + { + "epoch": 49.54521625163827, + "grad_norm": 0.20195038616657257, + "learning_rate": 0.0006, + "loss": 3.605422258377075, + "step": 3567 + }, + { + "epoch": 49.55919615552643, + "grad_norm": 0.19884084165096283, + "learning_rate": 0.0006, + "loss": 3.5964083671569824, + "step": 3568 + }, + { + "epoch": 49.57317605941459, + "grad_norm": 0.21243083477020264, + "learning_rate": 0.0006, + "loss": 3.5885486602783203, + "step": 3569 + }, + { + "epoch": 49.58715596330275, + "grad_norm": 0.21059481799602509, + "learning_rate": 0.0006, + "loss": 3.572526454925537, + "step": 3570 + }, + { + "epoch": 49.60113586719091, + "grad_norm": 0.20644313097000122, + "learning_rate": 0.0006, + "loss": 3.583679676055908, + "step": 3571 + }, + { + "epoch": 49.615115771079076, + "grad_norm": 0.21343673765659332, + "learning_rate": 0.0006, + "loss": 3.6211650371551514, + "step": 3572 + }, + { + "epoch": 49.62909567496723, + "grad_norm": 0.23395343124866486, + "learning_rate": 0.0006, + "loss": 3.6003336906433105, + "step": 3573 + }, + { + "epoch": 49.643075578855395, + "grad_norm": 0.19978424906730652, + "learning_rate": 0.0006, + "loss": 3.6066763401031494, + "step": 3574 + }, + { + "epoch": 49.65705548274356, + "grad_norm": 0.21529823541641235, + "learning_rate": 0.0006, + "loss": 3.601284980773926, + "step": 3575 + }, + { + "epoch": 49.671035386631715, + "grad_norm": 0.21672746539115906, + "learning_rate": 0.0006, + "loss": 3.6084227561950684, + "step": 3576 + }, + { + "epoch": 49.68501529051988, + "grad_norm": 0.20889638364315033, + "learning_rate": 0.0006, + "loss": 3.591568946838379, + "step": 3577 + }, + { + "epoch": 49.69899519440804, + "grad_norm": 0.1960221230983734, + "learning_rate": 0.0006, + "loss": 3.6180830001831055, + "step": 3578 + }, + { + "epoch": 49.7129750982962, + "grad_norm": 0.19712410867214203, + "learning_rate": 0.0006, + "loss": 3.6197333335876465, + "step": 3579 + }, + { + "epoch": 49.72695500218436, + "grad_norm": 0.20665284991264343, + "learning_rate": 0.0006, + "loss": 3.6251301765441895, + "step": 3580 + }, + { + "epoch": 49.74093490607252, + "grad_norm": 0.21018871665000916, + "learning_rate": 0.0006, + "loss": 3.621973991394043, + "step": 3581 + }, + { + "epoch": 49.75491480996068, + "grad_norm": 0.20777495205402374, + "learning_rate": 0.0006, + "loss": 3.5826358795166016, + "step": 3582 + }, + { + "epoch": 49.768894713848844, + "grad_norm": 0.18880195915699005, + "learning_rate": 0.0006, + "loss": 3.5946998596191406, + "step": 3583 + }, + { + "epoch": 49.782874617737, + "grad_norm": 0.19894644618034363, + "learning_rate": 0.0006, + "loss": 3.5912184715270996, + "step": 3584 + }, + { + "epoch": 49.796854521625164, + "grad_norm": 0.20128944516181946, + "learning_rate": 0.0006, + "loss": 3.6370394229888916, + "step": 3585 + }, + { + "epoch": 49.81083442551333, + "grad_norm": 0.19332024455070496, + "learning_rate": 0.0006, + "loss": 3.619018077850342, + "step": 3586 + }, + { + "epoch": 49.824814329401484, + "grad_norm": 0.19303865730762482, + "learning_rate": 0.0006, + "loss": 3.578667163848877, + "step": 3587 + }, + { + "epoch": 49.83879423328965, + "grad_norm": 0.20154757797718048, + "learning_rate": 0.0006, + "loss": 3.61959171295166, + "step": 3588 + }, + { + "epoch": 49.8527741371778, + "grad_norm": 0.19653639197349548, + "learning_rate": 0.0006, + "loss": 3.6437559127807617, + "step": 3589 + }, + { + "epoch": 49.86675404106597, + "grad_norm": 0.21873407065868378, + "learning_rate": 0.0006, + "loss": 3.6131112575531006, + "step": 3590 + }, + { + "epoch": 49.88073394495413, + "grad_norm": 0.20130383968353271, + "learning_rate": 0.0006, + "loss": 3.624028444290161, + "step": 3591 + }, + { + "epoch": 49.89471384884229, + "grad_norm": 0.20206475257873535, + "learning_rate": 0.0006, + "loss": 3.5997328758239746, + "step": 3592 + }, + { + "epoch": 49.90869375273045, + "grad_norm": 0.20393261313438416, + "learning_rate": 0.0006, + "loss": 3.596066474914551, + "step": 3593 + }, + { + "epoch": 49.92267365661861, + "grad_norm": 0.19703544676303864, + "learning_rate": 0.0006, + "loss": 3.624542713165283, + "step": 3594 + }, + { + "epoch": 49.93665356050677, + "grad_norm": 0.2102314680814743, + "learning_rate": 0.0006, + "loss": 3.6082515716552734, + "step": 3595 + }, + { + "epoch": 49.95063346439493, + "grad_norm": 0.23791316151618958, + "learning_rate": 0.0006, + "loss": 3.6185569763183594, + "step": 3596 + }, + { + "epoch": 49.964613368283096, + "grad_norm": 0.24536125361919403, + "learning_rate": 0.0006, + "loss": 3.599207878112793, + "step": 3597 + }, + { + "epoch": 49.97859327217125, + "grad_norm": 0.23160327970981598, + "learning_rate": 0.0006, + "loss": 3.600921869277954, + "step": 3598 + }, + { + "epoch": 49.992573176059416, + "grad_norm": 0.22740362584590912, + "learning_rate": 0.0006, + "loss": 3.6112914085388184, + "step": 3599 + }, + { + "epoch": 50.0, + "grad_norm": 0.24303272366523743, + "learning_rate": 0.0006, + "loss": 3.6385838985443115, + "step": 3600 + }, + { + "epoch": 50.0, + "eval_loss": 3.9811089038848877, + "eval_runtime": 44.9913, + "eval_samples_per_second": 54.277, + "eval_steps_per_second": 3.401, + "step": 3600 + }, + { + "epoch": 50.01397990388816, + "grad_norm": 0.20118683576583862, + "learning_rate": 0.0006, + "loss": 3.561751127243042, + "step": 3601 + }, + { + "epoch": 50.02795980777632, + "grad_norm": 0.18722538650035858, + "learning_rate": 0.0006, + "loss": 3.5742180347442627, + "step": 3602 + }, + { + "epoch": 50.04193971166448, + "grad_norm": 0.21248385310173035, + "learning_rate": 0.0006, + "loss": 3.5759401321411133, + "step": 3603 + }, + { + "epoch": 50.05591961555265, + "grad_norm": 0.21006572246551514, + "learning_rate": 0.0006, + "loss": 3.5737462043762207, + "step": 3604 + }, + { + "epoch": 50.0698995194408, + "grad_norm": 0.20671233534812927, + "learning_rate": 0.0006, + "loss": 3.548205852508545, + "step": 3605 + }, + { + "epoch": 50.083879423328966, + "grad_norm": 0.20704609155654907, + "learning_rate": 0.0006, + "loss": 3.5862209796905518, + "step": 3606 + }, + { + "epoch": 50.09785932721712, + "grad_norm": 0.20611345767974854, + "learning_rate": 0.0006, + "loss": 3.5696640014648438, + "step": 3607 + }, + { + "epoch": 50.111839231105286, + "grad_norm": 0.20986805856227875, + "learning_rate": 0.0006, + "loss": 3.5755579471588135, + "step": 3608 + }, + { + "epoch": 50.12581913499345, + "grad_norm": 0.21727709472179413, + "learning_rate": 0.0006, + "loss": 3.5967745780944824, + "step": 3609 + }, + { + "epoch": 50.139799038881605, + "grad_norm": 0.21854986250400543, + "learning_rate": 0.0006, + "loss": 3.6115779876708984, + "step": 3610 + }, + { + "epoch": 50.15377894276977, + "grad_norm": 0.22904936969280243, + "learning_rate": 0.0006, + "loss": 3.5639889240264893, + "step": 3611 + }, + { + "epoch": 50.16775884665793, + "grad_norm": 0.23774254322052002, + "learning_rate": 0.0006, + "loss": 3.6023900508880615, + "step": 3612 + }, + { + "epoch": 50.18173875054609, + "grad_norm": 0.21548497676849365, + "learning_rate": 0.0006, + "loss": 3.5722856521606445, + "step": 3613 + }, + { + "epoch": 50.19571865443425, + "grad_norm": 0.20503196120262146, + "learning_rate": 0.0006, + "loss": 3.5899252891540527, + "step": 3614 + }, + { + "epoch": 50.20969855832241, + "grad_norm": 0.22084423899650574, + "learning_rate": 0.0006, + "loss": 3.56020450592041, + "step": 3615 + }, + { + "epoch": 50.22367846221057, + "grad_norm": 0.24276728928089142, + "learning_rate": 0.0006, + "loss": 3.585695743560791, + "step": 3616 + }, + { + "epoch": 50.237658366098735, + "grad_norm": 0.23182106018066406, + "learning_rate": 0.0006, + "loss": 3.580676555633545, + "step": 3617 + }, + { + "epoch": 50.25163826998689, + "grad_norm": 0.2341945767402649, + "learning_rate": 0.0006, + "loss": 3.579713821411133, + "step": 3618 + }, + { + "epoch": 50.265618173875055, + "grad_norm": 0.27971863746643066, + "learning_rate": 0.0006, + "loss": 3.568251371383667, + "step": 3619 + }, + { + "epoch": 50.27959807776322, + "grad_norm": 0.24740517139434814, + "learning_rate": 0.0006, + "loss": 3.5798869132995605, + "step": 3620 + }, + { + "epoch": 50.293577981651374, + "grad_norm": 0.20561005175113678, + "learning_rate": 0.0006, + "loss": 3.5610039234161377, + "step": 3621 + }, + { + "epoch": 50.30755788553954, + "grad_norm": 0.2085379660129547, + "learning_rate": 0.0006, + "loss": 3.5620288848876953, + "step": 3622 + }, + { + "epoch": 50.3215377894277, + "grad_norm": 0.20868757367134094, + "learning_rate": 0.0006, + "loss": 3.6090598106384277, + "step": 3623 + }, + { + "epoch": 50.33551769331586, + "grad_norm": 0.18991491198539734, + "learning_rate": 0.0006, + "loss": 3.55255126953125, + "step": 3624 + }, + { + "epoch": 50.34949759720402, + "grad_norm": 0.24742646515369415, + "learning_rate": 0.0006, + "loss": 3.60585880279541, + "step": 3625 + }, + { + "epoch": 50.36347750109218, + "grad_norm": 0.26971301436424255, + "learning_rate": 0.0006, + "loss": 3.5913054943084717, + "step": 3626 + }, + { + "epoch": 50.37745740498034, + "grad_norm": 0.24294881522655487, + "learning_rate": 0.0006, + "loss": 3.5570878982543945, + "step": 3627 + }, + { + "epoch": 50.391437308868504, + "grad_norm": 0.2194664478302002, + "learning_rate": 0.0006, + "loss": 3.5800397396087646, + "step": 3628 + }, + { + "epoch": 50.40541721275666, + "grad_norm": 0.2148507982492447, + "learning_rate": 0.0006, + "loss": 3.6182782649993896, + "step": 3629 + }, + { + "epoch": 50.419397116644824, + "grad_norm": 0.22235016524791718, + "learning_rate": 0.0006, + "loss": 3.5784103870391846, + "step": 3630 + }, + { + "epoch": 50.43337702053299, + "grad_norm": 0.23176309466362, + "learning_rate": 0.0006, + "loss": 3.559011459350586, + "step": 3631 + }, + { + "epoch": 50.44735692442114, + "grad_norm": 0.2267913520336151, + "learning_rate": 0.0006, + "loss": 3.5854780673980713, + "step": 3632 + }, + { + "epoch": 50.46133682830931, + "grad_norm": 0.22565901279449463, + "learning_rate": 0.0006, + "loss": 3.5891294479370117, + "step": 3633 + }, + { + "epoch": 50.47531673219746, + "grad_norm": 0.23724839091300964, + "learning_rate": 0.0006, + "loss": 3.575702428817749, + "step": 3634 + }, + { + "epoch": 50.489296636085626, + "grad_norm": 0.23679722845554352, + "learning_rate": 0.0006, + "loss": 3.588639259338379, + "step": 3635 + }, + { + "epoch": 50.50327653997379, + "grad_norm": 0.23909232020378113, + "learning_rate": 0.0006, + "loss": 3.5828709602355957, + "step": 3636 + }, + { + "epoch": 50.517256443861946, + "grad_norm": 0.24186119437217712, + "learning_rate": 0.0006, + "loss": 3.596708059310913, + "step": 3637 + }, + { + "epoch": 50.53123634775011, + "grad_norm": 0.2325516790151596, + "learning_rate": 0.0006, + "loss": 3.610769510269165, + "step": 3638 + }, + { + "epoch": 50.54521625163827, + "grad_norm": 0.205137237906456, + "learning_rate": 0.0006, + "loss": 3.612844228744507, + "step": 3639 + }, + { + "epoch": 50.55919615552643, + "grad_norm": 0.20860300958156586, + "learning_rate": 0.0006, + "loss": 3.623669147491455, + "step": 3640 + }, + { + "epoch": 50.57317605941459, + "grad_norm": 0.20029069483280182, + "learning_rate": 0.0006, + "loss": 3.6108334064483643, + "step": 3641 + }, + { + "epoch": 50.58715596330275, + "grad_norm": 0.18841931223869324, + "learning_rate": 0.0006, + "loss": 3.6073007583618164, + "step": 3642 + }, + { + "epoch": 50.60113586719091, + "grad_norm": 0.20113889873027802, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3643 + }, + { + "epoch": 50.615115771079076, + "grad_norm": 0.23595206439495087, + "learning_rate": 0.0006, + "loss": 3.634650707244873, + "step": 3644 + }, + { + "epoch": 50.62909567496723, + "grad_norm": 0.24625661969184875, + "learning_rate": 0.0006, + "loss": 3.593716621398926, + "step": 3645 + }, + { + "epoch": 50.643075578855395, + "grad_norm": 0.2182614505290985, + "learning_rate": 0.0006, + "loss": 3.6006946563720703, + "step": 3646 + }, + { + "epoch": 50.65705548274356, + "grad_norm": 0.20867182314395905, + "learning_rate": 0.0006, + "loss": 3.6249008178710938, + "step": 3647 + }, + { + "epoch": 50.671035386631715, + "grad_norm": 0.20451945066452026, + "learning_rate": 0.0006, + "loss": 3.5870985984802246, + "step": 3648 + }, + { + "epoch": 50.68501529051988, + "grad_norm": 0.19160118699073792, + "learning_rate": 0.0006, + "loss": 3.6104488372802734, + "step": 3649 + }, + { + "epoch": 50.69899519440804, + "grad_norm": 0.18884453177452087, + "learning_rate": 0.0006, + "loss": 3.607893943786621, + "step": 3650 + }, + { + "epoch": 50.7129750982962, + "grad_norm": 0.19570060074329376, + "learning_rate": 0.0006, + "loss": 3.5938732624053955, + "step": 3651 + }, + { + "epoch": 50.72695500218436, + "grad_norm": 0.21978189051151276, + "learning_rate": 0.0006, + "loss": 3.5894908905029297, + "step": 3652 + }, + { + "epoch": 50.74093490607252, + "grad_norm": 0.19930903613567352, + "learning_rate": 0.0006, + "loss": 3.6067557334899902, + "step": 3653 + }, + { + "epoch": 50.75491480996068, + "grad_norm": 0.19450204074382782, + "learning_rate": 0.0006, + "loss": 3.5989646911621094, + "step": 3654 + }, + { + "epoch": 50.768894713848844, + "grad_norm": 0.1925407201051712, + "learning_rate": 0.0006, + "loss": 3.604339599609375, + "step": 3655 + }, + { + "epoch": 50.782874617737, + "grad_norm": 0.19232864677906036, + "learning_rate": 0.0006, + "loss": 3.5789241790771484, + "step": 3656 + }, + { + "epoch": 50.796854521625164, + "grad_norm": 0.1937529742717743, + "learning_rate": 0.0006, + "loss": 3.6060590744018555, + "step": 3657 + }, + { + "epoch": 50.81083442551333, + "grad_norm": 0.19863007962703705, + "learning_rate": 0.0006, + "loss": 3.5944440364837646, + "step": 3658 + }, + { + "epoch": 50.824814329401484, + "grad_norm": 0.18879804015159607, + "learning_rate": 0.0006, + "loss": 3.6017069816589355, + "step": 3659 + }, + { + "epoch": 50.83879423328965, + "grad_norm": 0.20111720263957977, + "learning_rate": 0.0006, + "loss": 3.593327522277832, + "step": 3660 + }, + { + "epoch": 50.8527741371778, + "grad_norm": 0.22593358159065247, + "learning_rate": 0.0006, + "loss": 3.5856096744537354, + "step": 3661 + }, + { + "epoch": 50.86675404106597, + "grad_norm": 0.22624441981315613, + "learning_rate": 0.0006, + "loss": 3.6144661903381348, + "step": 3662 + }, + { + "epoch": 50.88073394495413, + "grad_norm": 0.22052904963493347, + "learning_rate": 0.0006, + "loss": 3.5895116329193115, + "step": 3663 + }, + { + "epoch": 50.89471384884229, + "grad_norm": 0.2248559594154358, + "learning_rate": 0.0006, + "loss": 3.6400208473205566, + "step": 3664 + }, + { + "epoch": 50.90869375273045, + "grad_norm": 0.20209142565727234, + "learning_rate": 0.0006, + "loss": 3.6059279441833496, + "step": 3665 + }, + { + "epoch": 50.92267365661861, + "grad_norm": 0.2075854390859604, + "learning_rate": 0.0006, + "loss": 3.590074062347412, + "step": 3666 + }, + { + "epoch": 50.93665356050677, + "grad_norm": 0.20524698495864868, + "learning_rate": 0.0006, + "loss": 3.600741147994995, + "step": 3667 + }, + { + "epoch": 50.95063346439493, + "grad_norm": 0.1922466903924942, + "learning_rate": 0.0006, + "loss": 3.5984225273132324, + "step": 3668 + }, + { + "epoch": 50.964613368283096, + "grad_norm": 0.18852637708187103, + "learning_rate": 0.0006, + "loss": 3.6204333305358887, + "step": 3669 + }, + { + "epoch": 50.97859327217125, + "grad_norm": 0.22050459682941437, + "learning_rate": 0.0006, + "loss": 3.6371538639068604, + "step": 3670 + }, + { + "epoch": 50.992573176059416, + "grad_norm": 0.21477681398391724, + "learning_rate": 0.0006, + "loss": 3.608738899230957, + "step": 3671 + }, + { + "epoch": 51.0, + "grad_norm": 0.22061094641685486, + "learning_rate": 0.0006, + "loss": 3.6209959983825684, + "step": 3672 + }, + { + "epoch": 51.0, + "eval_loss": 3.9762842655181885, + "eval_runtime": 44.8353, + "eval_samples_per_second": 54.466, + "eval_steps_per_second": 3.412, + "step": 3672 + }, + { + "epoch": 51.01397990388816, + "grad_norm": 0.19009192287921906, + "learning_rate": 0.0006, + "loss": 3.5604426860809326, + "step": 3673 + }, + { + "epoch": 51.02795980777632, + "grad_norm": 0.2217264175415039, + "learning_rate": 0.0006, + "loss": 3.5595664978027344, + "step": 3674 + }, + { + "epoch": 51.04193971166448, + "grad_norm": 0.2747595012187958, + "learning_rate": 0.0006, + "loss": 3.5800085067749023, + "step": 3675 + }, + { + "epoch": 51.05591961555265, + "grad_norm": 0.26963043212890625, + "learning_rate": 0.0006, + "loss": 3.5529065132141113, + "step": 3676 + }, + { + "epoch": 51.0698995194408, + "grad_norm": 0.2304207682609558, + "learning_rate": 0.0006, + "loss": 3.585238456726074, + "step": 3677 + }, + { + "epoch": 51.083879423328966, + "grad_norm": 0.22073867917060852, + "learning_rate": 0.0006, + "loss": 3.542267322540283, + "step": 3678 + }, + { + "epoch": 51.09785932721712, + "grad_norm": 0.22550931572914124, + "learning_rate": 0.0006, + "loss": 3.5693743228912354, + "step": 3679 + }, + { + "epoch": 51.111839231105286, + "grad_norm": 0.2347114384174347, + "learning_rate": 0.0006, + "loss": 3.5830154418945312, + "step": 3680 + }, + { + "epoch": 51.12581913499345, + "grad_norm": 0.24889813363552094, + "learning_rate": 0.0006, + "loss": 3.581010341644287, + "step": 3681 + }, + { + "epoch": 51.139799038881605, + "grad_norm": 0.2401021122932434, + "learning_rate": 0.0006, + "loss": 3.619450092315674, + "step": 3682 + }, + { + "epoch": 51.15377894276977, + "grad_norm": 0.22221142053604126, + "learning_rate": 0.0006, + "loss": 3.573624610900879, + "step": 3683 + }, + { + "epoch": 51.16775884665793, + "grad_norm": 0.2429024577140808, + "learning_rate": 0.0006, + "loss": 3.548610210418701, + "step": 3684 + }, + { + "epoch": 51.18173875054609, + "grad_norm": 0.26470765471458435, + "learning_rate": 0.0006, + "loss": 3.5582218170166016, + "step": 3685 + }, + { + "epoch": 51.19571865443425, + "grad_norm": 0.2632715404033661, + "learning_rate": 0.0006, + "loss": 3.5976979732513428, + "step": 3686 + }, + { + "epoch": 51.20969855832241, + "grad_norm": 0.2567448616027832, + "learning_rate": 0.0006, + "loss": 3.592031478881836, + "step": 3687 + }, + { + "epoch": 51.22367846221057, + "grad_norm": 0.25299885869026184, + "learning_rate": 0.0006, + "loss": 3.579765796661377, + "step": 3688 + }, + { + "epoch": 51.237658366098735, + "grad_norm": 0.22765189409255981, + "learning_rate": 0.0006, + "loss": 3.5677521228790283, + "step": 3689 + }, + { + "epoch": 51.25163826998689, + "grad_norm": 0.23369887471199036, + "learning_rate": 0.0006, + "loss": 3.585879325866699, + "step": 3690 + }, + { + "epoch": 51.265618173875055, + "grad_norm": 0.21358822286128998, + "learning_rate": 0.0006, + "loss": 3.568866729736328, + "step": 3691 + }, + { + "epoch": 51.27959807776322, + "grad_norm": 0.2127659171819687, + "learning_rate": 0.0006, + "loss": 3.614520311355591, + "step": 3692 + }, + { + "epoch": 51.293577981651374, + "grad_norm": 0.22829636931419373, + "learning_rate": 0.0006, + "loss": 3.6004438400268555, + "step": 3693 + }, + { + "epoch": 51.30755788553954, + "grad_norm": 0.223104789853096, + "learning_rate": 0.0006, + "loss": 3.5791001319885254, + "step": 3694 + }, + { + "epoch": 51.3215377894277, + "grad_norm": 0.2084331065416336, + "learning_rate": 0.0006, + "loss": 3.572514295578003, + "step": 3695 + }, + { + "epoch": 51.33551769331586, + "grad_norm": 0.21115142107009888, + "learning_rate": 0.0006, + "loss": 3.5736331939697266, + "step": 3696 + }, + { + "epoch": 51.34949759720402, + "grad_norm": 0.2158546894788742, + "learning_rate": 0.0006, + "loss": 3.587161064147949, + "step": 3697 + }, + { + "epoch": 51.36347750109218, + "grad_norm": 0.2478281408548355, + "learning_rate": 0.0006, + "loss": 3.5879693031311035, + "step": 3698 + }, + { + "epoch": 51.37745740498034, + "grad_norm": 0.25137850642204285, + "learning_rate": 0.0006, + "loss": 3.58297061920166, + "step": 3699 + }, + { + "epoch": 51.391437308868504, + "grad_norm": 0.22961364686489105, + "learning_rate": 0.0006, + "loss": 3.5556459426879883, + "step": 3700 + }, + { + "epoch": 51.40541721275666, + "grad_norm": 0.22561277449131012, + "learning_rate": 0.0006, + "loss": 3.60197114944458, + "step": 3701 + }, + { + "epoch": 51.419397116644824, + "grad_norm": 0.20331767201423645, + "learning_rate": 0.0006, + "loss": 3.5815134048461914, + "step": 3702 + }, + { + "epoch": 51.43337702053299, + "grad_norm": 0.1941518634557724, + "learning_rate": 0.0006, + "loss": 3.6055145263671875, + "step": 3703 + }, + { + "epoch": 51.44735692442114, + "grad_norm": 0.19306789338588715, + "learning_rate": 0.0006, + "loss": 3.6101536750793457, + "step": 3704 + }, + { + "epoch": 51.46133682830931, + "grad_norm": 0.1830628365278244, + "learning_rate": 0.0006, + "loss": 3.5978426933288574, + "step": 3705 + }, + { + "epoch": 51.47531673219746, + "grad_norm": 0.19231490790843964, + "learning_rate": 0.0006, + "loss": 3.54502534866333, + "step": 3706 + }, + { + "epoch": 51.489296636085626, + "grad_norm": 0.19109117984771729, + "learning_rate": 0.0006, + "loss": 3.5957441329956055, + "step": 3707 + }, + { + "epoch": 51.50327653997379, + "grad_norm": 0.2032860815525055, + "learning_rate": 0.0006, + "loss": 3.5626730918884277, + "step": 3708 + }, + { + "epoch": 51.517256443861946, + "grad_norm": 0.19685189425945282, + "learning_rate": 0.0006, + "loss": 3.580399990081787, + "step": 3709 + }, + { + "epoch": 51.53123634775011, + "grad_norm": 0.19273017346858978, + "learning_rate": 0.0006, + "loss": 3.5428152084350586, + "step": 3710 + }, + { + "epoch": 51.54521625163827, + "grad_norm": 0.20198430120944977, + "learning_rate": 0.0006, + "loss": 3.607492446899414, + "step": 3711 + }, + { + "epoch": 51.55919615552643, + "grad_norm": 0.2267402559518814, + "learning_rate": 0.0006, + "loss": 3.580479621887207, + "step": 3712 + }, + { + "epoch": 51.57317605941459, + "grad_norm": 0.2247764617204666, + "learning_rate": 0.0006, + "loss": 3.5921316146850586, + "step": 3713 + }, + { + "epoch": 51.58715596330275, + "grad_norm": 0.23907902836799622, + "learning_rate": 0.0006, + "loss": 3.6014928817749023, + "step": 3714 + }, + { + "epoch": 51.60113586719091, + "grad_norm": 0.25907906889915466, + "learning_rate": 0.0006, + "loss": 3.5900192260742188, + "step": 3715 + }, + { + "epoch": 51.615115771079076, + "grad_norm": 0.26282405853271484, + "learning_rate": 0.0006, + "loss": 3.5727553367614746, + "step": 3716 + }, + { + "epoch": 51.62909567496723, + "grad_norm": 0.2541179060935974, + "learning_rate": 0.0006, + "loss": 3.5835776329040527, + "step": 3717 + }, + { + "epoch": 51.643075578855395, + "grad_norm": 0.23372016847133636, + "learning_rate": 0.0006, + "loss": 3.5902652740478516, + "step": 3718 + }, + { + "epoch": 51.65705548274356, + "grad_norm": 0.22827622294425964, + "learning_rate": 0.0006, + "loss": 3.6048200130462646, + "step": 3719 + }, + { + "epoch": 51.671035386631715, + "grad_norm": 0.21026845276355743, + "learning_rate": 0.0006, + "loss": 3.5587573051452637, + "step": 3720 + }, + { + "epoch": 51.68501529051988, + "grad_norm": 0.23485958576202393, + "learning_rate": 0.0006, + "loss": 3.6212477684020996, + "step": 3721 + }, + { + "epoch": 51.69899519440804, + "grad_norm": 0.2676871120929718, + "learning_rate": 0.0006, + "loss": 3.597837448120117, + "step": 3722 + }, + { + "epoch": 51.7129750982962, + "grad_norm": 0.23661476373672485, + "learning_rate": 0.0006, + "loss": 3.616079330444336, + "step": 3723 + }, + { + "epoch": 51.72695500218436, + "grad_norm": 0.2212267816066742, + "learning_rate": 0.0006, + "loss": 3.6103296279907227, + "step": 3724 + }, + { + "epoch": 51.74093490607252, + "grad_norm": 0.22888682782649994, + "learning_rate": 0.0006, + "loss": 3.6099889278411865, + "step": 3725 + }, + { + "epoch": 51.75491480996068, + "grad_norm": 0.21740387380123138, + "learning_rate": 0.0006, + "loss": 3.5859200954437256, + "step": 3726 + }, + { + "epoch": 51.768894713848844, + "grad_norm": 0.20819106698036194, + "learning_rate": 0.0006, + "loss": 3.5875396728515625, + "step": 3727 + }, + { + "epoch": 51.782874617737, + "grad_norm": 0.21574485301971436, + "learning_rate": 0.0006, + "loss": 3.6203761100769043, + "step": 3728 + }, + { + "epoch": 51.796854521625164, + "grad_norm": 0.21275651454925537, + "learning_rate": 0.0006, + "loss": 3.6066012382507324, + "step": 3729 + }, + { + "epoch": 51.81083442551333, + "grad_norm": 0.2043808251619339, + "learning_rate": 0.0006, + "loss": 3.571417808532715, + "step": 3730 + }, + { + "epoch": 51.824814329401484, + "grad_norm": 0.2082396298646927, + "learning_rate": 0.0006, + "loss": 3.6076579093933105, + "step": 3731 + }, + { + "epoch": 51.83879423328965, + "grad_norm": 0.23331953585147858, + "learning_rate": 0.0006, + "loss": 3.621837615966797, + "step": 3732 + }, + { + "epoch": 51.8527741371778, + "grad_norm": 0.25569960474967957, + "learning_rate": 0.0006, + "loss": 3.602004051208496, + "step": 3733 + }, + { + "epoch": 51.86675404106597, + "grad_norm": 0.230540469288826, + "learning_rate": 0.0006, + "loss": 3.5829110145568848, + "step": 3734 + }, + { + "epoch": 51.88073394495413, + "grad_norm": 0.20307230949401855, + "learning_rate": 0.0006, + "loss": 3.5572190284729004, + "step": 3735 + }, + { + "epoch": 51.89471384884229, + "grad_norm": 0.20902153849601746, + "learning_rate": 0.0006, + "loss": 3.5939853191375732, + "step": 3736 + }, + { + "epoch": 51.90869375273045, + "grad_norm": 0.20433510839939117, + "learning_rate": 0.0006, + "loss": 3.6104702949523926, + "step": 3737 + }, + { + "epoch": 51.92267365661861, + "grad_norm": 0.2285638302564621, + "learning_rate": 0.0006, + "loss": 3.5588834285736084, + "step": 3738 + }, + { + "epoch": 51.93665356050677, + "grad_norm": 0.2388262301683426, + "learning_rate": 0.0006, + "loss": 3.6203103065490723, + "step": 3739 + }, + { + "epoch": 51.95063346439493, + "grad_norm": 0.22572419047355652, + "learning_rate": 0.0006, + "loss": 3.6191892623901367, + "step": 3740 + }, + { + "epoch": 51.964613368283096, + "grad_norm": 0.21060727536678314, + "learning_rate": 0.0006, + "loss": 3.620879650115967, + "step": 3741 + }, + { + "epoch": 51.97859327217125, + "grad_norm": 0.2045326828956604, + "learning_rate": 0.0006, + "loss": 3.5959091186523438, + "step": 3742 + }, + { + "epoch": 51.992573176059416, + "grad_norm": 0.21882471442222595, + "learning_rate": 0.0006, + "loss": 3.6504573822021484, + "step": 3743 + }, + { + "epoch": 52.0, + "grad_norm": 0.24379056692123413, + "learning_rate": 0.0006, + "loss": 3.6293625831604004, + "step": 3744 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 1.5955019177845064e+18, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3744/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4032/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4032/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4032/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4032/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..9c9fbf87479b127afc65180820146a740842797b --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c81a9c5589a8b5388ceeb87bec140b8fd3140ce8f449a204541abadec2dd1f9 +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4032/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..cf0665291298e00388a4fef0e7740f3b39dd320d --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f44f2fac9183ff94d3b130d32cf412fd516999b738ca5cee8242f29e963d30ab +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4032/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..191668dcbcc047b2ce56e1375bf04f20c10dfe47 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8563e76c06d23e5032c6929f65003a38d7bacf615690ad595b215b45009a0599 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4032/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..1c1cb1190322ff4da7e9bd78231ef29d0aad3236 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43a1cfbe46ac066c6a8b25092e857cf2ac280a800b30445fb8376622afbcc536 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4032/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..5da96a3852815ab990f23f4b91093acc83e76469 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dd17660f6a4c270971d4c998ea51235588dc2ab05504036a1351d00b0a57d2c +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4032/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4032/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4032/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..b61060791db92bb535c3a50f90824682c0a9af0f --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/trainer_state.json @@ -0,0 +1,28698 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 56.0, + "eval_steps": 500, + "global_step": 4032, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + }, + { + "epoch": 8.0, + "eval_loss": 5.100707530975342, + "eval_runtime": 44.2493, + "eval_samples_per_second": 55.187, + "eval_steps_per_second": 3.458, + "step": 576 + }, + { + "epoch": 8.013979903888162, + "grad_norm": 0.3658510148525238, + "learning_rate": 0.0006, + "loss": 4.759055137634277, + "step": 577 + }, + { + "epoch": 8.027959807776321, + "grad_norm": 0.41794446110725403, + "learning_rate": 0.0006, + "loss": 4.737661838531494, + "step": 578 + }, + { + "epoch": 8.041939711664483, + "grad_norm": 0.43284085392951965, + "learning_rate": 0.0006, + "loss": 4.775538444519043, + "step": 579 + }, + { + "epoch": 8.055919615552643, + "grad_norm": 0.4716675281524658, + "learning_rate": 0.0006, + "loss": 4.762231826782227, + "step": 580 + }, + { + "epoch": 8.069899519440805, + "grad_norm": 0.3849579393863678, + "learning_rate": 0.0006, + "loss": 4.753598690032959, + "step": 581 + }, + { + "epoch": 8.083879423328964, + "grad_norm": 0.3721151053905487, + "learning_rate": 0.0006, + "loss": 4.728978157043457, + "step": 582 + }, + { + "epoch": 8.097859327217126, + "grad_norm": 0.37009572982788086, + "learning_rate": 0.0006, + "loss": 4.759153366088867, + "step": 583 + }, + { + "epoch": 8.111839231105286, + "grad_norm": 0.37051302194595337, + "learning_rate": 0.0006, + "loss": 4.744197368621826, + "step": 584 + }, + { + "epoch": 8.125819134993447, + "grad_norm": 0.331238329410553, + "learning_rate": 0.0006, + "loss": 4.7338385581970215, + "step": 585 + }, + { + "epoch": 8.139799038881607, + "grad_norm": 0.3737713694572449, + "learning_rate": 0.0006, + "loss": 4.719110488891602, + "step": 586 + }, + { + "epoch": 8.153778942769769, + "grad_norm": 0.3713214695453644, + "learning_rate": 0.0006, + "loss": 4.734012126922607, + "step": 587 + }, + { + "epoch": 8.167758846657929, + "grad_norm": 0.4060780107975006, + "learning_rate": 0.0006, + "loss": 4.746830940246582, + "step": 588 + }, + { + "epoch": 8.18173875054609, + "grad_norm": 0.39814314246177673, + "learning_rate": 0.0006, + "loss": 4.722851753234863, + "step": 589 + }, + { + "epoch": 8.19571865443425, + "grad_norm": 0.3175652325153351, + "learning_rate": 0.0006, + "loss": 4.745110034942627, + "step": 590 + }, + { + "epoch": 8.209698558322412, + "grad_norm": 0.37214916944503784, + "learning_rate": 0.0006, + "loss": 4.7362775802612305, + "step": 591 + }, + { + "epoch": 8.223678462210572, + "grad_norm": 0.3873472809791565, + "learning_rate": 0.0006, + "loss": 4.738964557647705, + "step": 592 + }, + { + "epoch": 8.237658366098733, + "grad_norm": 0.3299207091331482, + "learning_rate": 0.0006, + "loss": 4.713451385498047, + "step": 593 + }, + { + "epoch": 8.251638269986893, + "grad_norm": 0.32445064187049866, + "learning_rate": 0.0006, + "loss": 4.725602149963379, + "step": 594 + }, + { + "epoch": 8.265618173875055, + "grad_norm": 0.32903164625167847, + "learning_rate": 0.0006, + "loss": 4.732064247131348, + "step": 595 + }, + { + "epoch": 8.279598077763215, + "grad_norm": 0.3166804313659668, + "learning_rate": 0.0006, + "loss": 4.678950786590576, + "step": 596 + }, + { + "epoch": 8.293577981651376, + "grad_norm": 0.2750290334224701, + "learning_rate": 0.0006, + "loss": 4.719513416290283, + "step": 597 + }, + { + "epoch": 8.307557885539538, + "grad_norm": 0.291029691696167, + "learning_rate": 0.0006, + "loss": 4.715405464172363, + "step": 598 + }, + { + "epoch": 8.321537789427698, + "grad_norm": 0.34105145931243896, + "learning_rate": 0.0006, + "loss": 4.722611427307129, + "step": 599 + }, + { + "epoch": 8.33551769331586, + "grad_norm": 0.3078882694244385, + "learning_rate": 0.0006, + "loss": 4.668856620788574, + "step": 600 + }, + { + "epoch": 8.349497597204019, + "grad_norm": 0.3218833804130554, + "learning_rate": 0.0006, + "loss": 4.719579696655273, + "step": 601 + }, + { + "epoch": 8.36347750109218, + "grad_norm": 0.35716721415519714, + "learning_rate": 0.0006, + "loss": 4.690774440765381, + "step": 602 + }, + { + "epoch": 8.37745740498034, + "grad_norm": 0.3045452833175659, + "learning_rate": 0.0006, + "loss": 4.696503639221191, + "step": 603 + }, + { + "epoch": 8.391437308868502, + "grad_norm": 0.3127244710922241, + "learning_rate": 0.0006, + "loss": 4.701899528503418, + "step": 604 + }, + { + "epoch": 8.405417212756662, + "grad_norm": 0.34988710284233093, + "learning_rate": 0.0006, + "loss": 4.677641868591309, + "step": 605 + }, + { + "epoch": 8.419397116644824, + "grad_norm": 0.34035569429397583, + "learning_rate": 0.0006, + "loss": 4.707778453826904, + "step": 606 + }, + { + "epoch": 8.433377020532983, + "grad_norm": 0.3341112732887268, + "learning_rate": 0.0006, + "loss": 4.724853038787842, + "step": 607 + }, + { + "epoch": 8.447356924421145, + "grad_norm": 0.41744324564933777, + "learning_rate": 0.0006, + "loss": 4.680908203125, + "step": 608 + }, + { + "epoch": 8.461336828309305, + "grad_norm": 0.40402331948280334, + "learning_rate": 0.0006, + "loss": 4.726455211639404, + "step": 609 + }, + { + "epoch": 8.475316732197467, + "grad_norm": 0.4727570414543152, + "learning_rate": 0.0006, + "loss": 4.6793084144592285, + "step": 610 + }, + { + "epoch": 8.489296636085626, + "grad_norm": 0.43002694845199585, + "learning_rate": 0.0006, + "loss": 4.663918972015381, + "step": 611 + }, + { + "epoch": 8.503276539973788, + "grad_norm": 0.36124858260154724, + "learning_rate": 0.0006, + "loss": 4.657375335693359, + "step": 612 + }, + { + "epoch": 8.517256443861948, + "grad_norm": 0.37644803524017334, + "learning_rate": 0.0006, + "loss": 4.676977157592773, + "step": 613 + }, + { + "epoch": 8.53123634775011, + "grad_norm": 0.32347747683525085, + "learning_rate": 0.0006, + "loss": 4.708547115325928, + "step": 614 + }, + { + "epoch": 8.54521625163827, + "grad_norm": 0.3071717619895935, + "learning_rate": 0.0006, + "loss": 4.650189399719238, + "step": 615 + }, + { + "epoch": 8.55919615552643, + "grad_norm": 0.30222490429878235, + "learning_rate": 0.0006, + "loss": 4.647942543029785, + "step": 616 + }, + { + "epoch": 8.57317605941459, + "grad_norm": 0.31545212864875793, + "learning_rate": 0.0006, + "loss": 4.660242080688477, + "step": 617 + }, + { + "epoch": 8.587155963302752, + "grad_norm": 0.31644752621650696, + "learning_rate": 0.0006, + "loss": 4.666710376739502, + "step": 618 + }, + { + "epoch": 8.601135867190912, + "grad_norm": 0.26057198643684387, + "learning_rate": 0.0006, + "loss": 4.668096542358398, + "step": 619 + }, + { + "epoch": 8.615115771079074, + "grad_norm": 0.25473910570144653, + "learning_rate": 0.0006, + "loss": 4.641562461853027, + "step": 620 + }, + { + "epoch": 8.629095674967235, + "grad_norm": 0.2456732839345932, + "learning_rate": 0.0006, + "loss": 4.6545281410217285, + "step": 621 + }, + { + "epoch": 8.643075578855395, + "grad_norm": 0.25180476903915405, + "learning_rate": 0.0006, + "loss": 4.6506524085998535, + "step": 622 + }, + { + "epoch": 8.657055482743557, + "grad_norm": 0.21761579811573029, + "learning_rate": 0.0006, + "loss": 4.638909339904785, + "step": 623 + }, + { + "epoch": 8.671035386631717, + "grad_norm": 0.23590542376041412, + "learning_rate": 0.0006, + "loss": 4.6572747230529785, + "step": 624 + }, + { + "epoch": 8.685015290519878, + "grad_norm": 0.23870624601840973, + "learning_rate": 0.0006, + "loss": 4.643742084503174, + "step": 625 + }, + { + "epoch": 8.698995194408038, + "grad_norm": 0.2191203385591507, + "learning_rate": 0.0006, + "loss": 4.632617950439453, + "step": 626 + }, + { + "epoch": 8.7129750982962, + "grad_norm": 0.22107063233852386, + "learning_rate": 0.0006, + "loss": 4.625616073608398, + "step": 627 + }, + { + "epoch": 8.72695500218436, + "grad_norm": 0.20833902060985565, + "learning_rate": 0.0006, + "loss": 4.609896659851074, + "step": 628 + }, + { + "epoch": 8.740934906072521, + "grad_norm": 0.254967600107193, + "learning_rate": 0.0006, + "loss": 4.651735782623291, + "step": 629 + }, + { + "epoch": 8.754914809960681, + "grad_norm": 0.31587523221969604, + "learning_rate": 0.0006, + "loss": 4.6404032707214355, + "step": 630 + }, + { + "epoch": 8.768894713848843, + "grad_norm": 0.28598251938819885, + "learning_rate": 0.0006, + "loss": 4.602679252624512, + "step": 631 + }, + { + "epoch": 8.782874617737003, + "grad_norm": 0.23216590285301208, + "learning_rate": 0.0006, + "loss": 4.610319137573242, + "step": 632 + }, + { + "epoch": 8.796854521625164, + "grad_norm": 0.29212239384651184, + "learning_rate": 0.0006, + "loss": 4.600744247436523, + "step": 633 + }, + { + "epoch": 8.810834425513324, + "grad_norm": 0.3375801146030426, + "learning_rate": 0.0006, + "loss": 4.627819061279297, + "step": 634 + }, + { + "epoch": 8.824814329401486, + "grad_norm": 0.4207753837108612, + "learning_rate": 0.0006, + "loss": 4.634505271911621, + "step": 635 + }, + { + "epoch": 8.838794233289645, + "grad_norm": 0.4640173614025116, + "learning_rate": 0.0006, + "loss": 4.636714935302734, + "step": 636 + }, + { + "epoch": 8.852774137177807, + "grad_norm": 0.5255663990974426, + "learning_rate": 0.0006, + "loss": 4.659462928771973, + "step": 637 + }, + { + "epoch": 8.866754041065967, + "grad_norm": 0.5108268857002258, + "learning_rate": 0.0006, + "loss": 4.633192539215088, + "step": 638 + }, + { + "epoch": 8.880733944954128, + "grad_norm": 0.3821936845779419, + "learning_rate": 0.0006, + "loss": 4.621200084686279, + "step": 639 + }, + { + "epoch": 8.89471384884229, + "grad_norm": 0.3918485939502716, + "learning_rate": 0.0006, + "loss": 4.632599830627441, + "step": 640 + }, + { + "epoch": 8.90869375273045, + "grad_norm": 0.3416556119918823, + "learning_rate": 0.0006, + "loss": 4.620438098907471, + "step": 641 + }, + { + "epoch": 8.922673656618612, + "grad_norm": 0.3191553056240082, + "learning_rate": 0.0006, + "loss": 4.617823600769043, + "step": 642 + }, + { + "epoch": 8.936653560506771, + "grad_norm": 0.3368529677391052, + "learning_rate": 0.0006, + "loss": 4.617222785949707, + "step": 643 + }, + { + "epoch": 8.950633464394933, + "grad_norm": 0.3255428969860077, + "learning_rate": 0.0006, + "loss": 4.633878707885742, + "step": 644 + }, + { + "epoch": 8.964613368283093, + "grad_norm": 0.31394779682159424, + "learning_rate": 0.0006, + "loss": 4.642603874206543, + "step": 645 + }, + { + "epoch": 8.978593272171254, + "grad_norm": 0.29999351501464844, + "learning_rate": 0.0006, + "loss": 4.5925211906433105, + "step": 646 + }, + { + "epoch": 8.992573176059414, + "grad_norm": 0.309154748916626, + "learning_rate": 0.0006, + "loss": 4.61745023727417, + "step": 647 + }, + { + "epoch": 9.0, + "grad_norm": 0.2660452425479889, + "learning_rate": 0.0006, + "loss": 4.575107097625732, + "step": 648 + }, + { + "epoch": 9.0, + "eval_loss": 4.8804192543029785, + "eval_runtime": 45.0015, + "eval_samples_per_second": 54.265, + "eval_steps_per_second": 3.4, + "step": 648 + }, + { + "epoch": 9.013979903888162, + "grad_norm": 0.24159297347068787, + "learning_rate": 0.0006, + "loss": 4.571323871612549, + "step": 649 + }, + { + "epoch": 9.027959807776321, + "grad_norm": 0.2835831046104431, + "learning_rate": 0.0006, + "loss": 4.614255905151367, + "step": 650 + }, + { + "epoch": 9.041939711664483, + "grad_norm": 0.2646859288215637, + "learning_rate": 0.0006, + "loss": 4.578947067260742, + "step": 651 + }, + { + "epoch": 9.055919615552643, + "grad_norm": 0.28868553042411804, + "learning_rate": 0.0006, + "loss": 4.575977325439453, + "step": 652 + }, + { + "epoch": 9.069899519440805, + "grad_norm": 0.2899586856365204, + "learning_rate": 0.0006, + "loss": 4.541798114776611, + "step": 653 + }, + { + "epoch": 9.083879423328964, + "grad_norm": 0.32786068320274353, + "learning_rate": 0.0006, + "loss": 4.575140953063965, + "step": 654 + }, + { + "epoch": 9.097859327217126, + "grad_norm": 0.35675594210624695, + "learning_rate": 0.0006, + "loss": 4.58184814453125, + "step": 655 + }, + { + "epoch": 9.111839231105286, + "grad_norm": 0.3380381166934967, + "learning_rate": 0.0006, + "loss": 4.546271324157715, + "step": 656 + }, + { + "epoch": 9.125819134993447, + "grad_norm": 0.3035511374473572, + "learning_rate": 0.0006, + "loss": 4.591629981994629, + "step": 657 + }, + { + "epoch": 9.139799038881607, + "grad_norm": 0.2733091711997986, + "learning_rate": 0.0006, + "loss": 4.559020042419434, + "step": 658 + }, + { + "epoch": 9.153778942769769, + "grad_norm": 0.2870676815509796, + "learning_rate": 0.0006, + "loss": 4.552787780761719, + "step": 659 + }, + { + "epoch": 9.167758846657929, + "grad_norm": 0.37471064925193787, + "learning_rate": 0.0006, + "loss": 4.572757244110107, + "step": 660 + }, + { + "epoch": 9.18173875054609, + "grad_norm": 0.37889063358306885, + "learning_rate": 0.0006, + "loss": 4.573302268981934, + "step": 661 + }, + { + "epoch": 9.19571865443425, + "grad_norm": 0.29983851313591003, + "learning_rate": 0.0006, + "loss": 4.571202754974365, + "step": 662 + }, + { + "epoch": 9.209698558322412, + "grad_norm": 0.27595147490501404, + "learning_rate": 0.0006, + "loss": 4.529508590698242, + "step": 663 + }, + { + "epoch": 9.223678462210572, + "grad_norm": 0.22693437337875366, + "learning_rate": 0.0006, + "loss": 4.572267532348633, + "step": 664 + }, + { + "epoch": 9.237658366098733, + "grad_norm": 0.27147138118743896, + "learning_rate": 0.0006, + "loss": 4.529747009277344, + "step": 665 + }, + { + "epoch": 9.251638269986893, + "grad_norm": 0.24952703714370728, + "learning_rate": 0.0006, + "loss": 4.553647994995117, + "step": 666 + }, + { + "epoch": 9.265618173875055, + "grad_norm": 0.3086707592010498, + "learning_rate": 0.0006, + "loss": 4.494636058807373, + "step": 667 + }, + { + "epoch": 9.279598077763215, + "grad_norm": 0.3265218138694763, + "learning_rate": 0.0006, + "loss": 4.522481918334961, + "step": 668 + }, + { + "epoch": 9.293577981651376, + "grad_norm": 0.2744608223438263, + "learning_rate": 0.0006, + "loss": 4.544595241546631, + "step": 669 + }, + { + "epoch": 9.307557885539538, + "grad_norm": 0.26698485016822815, + "learning_rate": 0.0006, + "loss": 4.506407260894775, + "step": 670 + }, + { + "epoch": 9.321537789427698, + "grad_norm": 0.2775942087173462, + "learning_rate": 0.0006, + "loss": 4.534619331359863, + "step": 671 + }, + { + "epoch": 9.33551769331586, + "grad_norm": 0.2421862781047821, + "learning_rate": 0.0006, + "loss": 4.523318290710449, + "step": 672 + }, + { + "epoch": 9.349497597204019, + "grad_norm": 0.2756497263908386, + "learning_rate": 0.0006, + "loss": 4.517561912536621, + "step": 673 + }, + { + "epoch": 9.36347750109218, + "grad_norm": 0.28845369815826416, + "learning_rate": 0.0006, + "loss": 4.530844688415527, + "step": 674 + }, + { + "epoch": 9.37745740498034, + "grad_norm": 0.32285866141319275, + "learning_rate": 0.0006, + "loss": 4.55369758605957, + "step": 675 + }, + { + "epoch": 9.391437308868502, + "grad_norm": 0.3726065754890442, + "learning_rate": 0.0006, + "loss": 4.524348258972168, + "step": 676 + }, + { + "epoch": 9.405417212756662, + "grad_norm": 0.39524078369140625, + "learning_rate": 0.0006, + "loss": 4.535778045654297, + "step": 677 + }, + { + "epoch": 9.419397116644824, + "grad_norm": 0.3859797716140747, + "learning_rate": 0.0006, + "loss": 4.538474082946777, + "step": 678 + }, + { + "epoch": 9.433377020532983, + "grad_norm": 0.36151406168937683, + "learning_rate": 0.0006, + "loss": 4.54434061050415, + "step": 679 + }, + { + "epoch": 9.447356924421145, + "grad_norm": 0.40345999598503113, + "learning_rate": 0.0006, + "loss": 4.532961845397949, + "step": 680 + }, + { + "epoch": 9.461336828309305, + "grad_norm": 0.38864144682884216, + "learning_rate": 0.0006, + "loss": 4.567630767822266, + "step": 681 + }, + { + "epoch": 9.475316732197467, + "grad_norm": 0.3816355764865875, + "learning_rate": 0.0006, + "loss": 4.535771369934082, + "step": 682 + }, + { + "epoch": 9.489296636085626, + "grad_norm": 0.38756558299064636, + "learning_rate": 0.0006, + "loss": 4.4971089363098145, + "step": 683 + }, + { + "epoch": 9.503276539973788, + "grad_norm": 0.4572933614253998, + "learning_rate": 0.0006, + "loss": 4.534860134124756, + "step": 684 + }, + { + "epoch": 9.517256443861948, + "grad_norm": 0.42368650436401367, + "learning_rate": 0.0006, + "loss": 4.542638301849365, + "step": 685 + }, + { + "epoch": 9.53123634775011, + "grad_norm": 0.36939486861228943, + "learning_rate": 0.0006, + "loss": 4.571430206298828, + "step": 686 + }, + { + "epoch": 9.54521625163827, + "grad_norm": 0.3900398313999176, + "learning_rate": 0.0006, + "loss": 4.544435501098633, + "step": 687 + }, + { + "epoch": 9.55919615552643, + "grad_norm": 0.37829288840293884, + "learning_rate": 0.0006, + "loss": 4.564268112182617, + "step": 688 + }, + { + "epoch": 9.57317605941459, + "grad_norm": 0.3553886115550995, + "learning_rate": 0.0006, + "loss": 4.5373430252075195, + "step": 689 + }, + { + "epoch": 9.587155963302752, + "grad_norm": 0.3613419532775879, + "learning_rate": 0.0006, + "loss": 4.559074401855469, + "step": 690 + }, + { + "epoch": 9.601135867190912, + "grad_norm": 0.32644546031951904, + "learning_rate": 0.0006, + "loss": 4.533667087554932, + "step": 691 + }, + { + "epoch": 9.615115771079074, + "grad_norm": 0.3264399468898773, + "learning_rate": 0.0006, + "loss": 4.508299350738525, + "step": 692 + }, + { + "epoch": 9.629095674967235, + "grad_norm": 0.3534526526927948, + "learning_rate": 0.0006, + "loss": 4.542442798614502, + "step": 693 + }, + { + "epoch": 9.643075578855395, + "grad_norm": 0.3333452343940735, + "learning_rate": 0.0006, + "loss": 4.497692584991455, + "step": 694 + }, + { + "epoch": 9.657055482743557, + "grad_norm": 0.3214292526245117, + "learning_rate": 0.0006, + "loss": 4.512363433837891, + "step": 695 + }, + { + "epoch": 9.671035386631717, + "grad_norm": 0.2805672585964203, + "learning_rate": 0.0006, + "loss": 4.496874809265137, + "step": 696 + }, + { + "epoch": 9.685015290519878, + "grad_norm": 0.2618725895881653, + "learning_rate": 0.0006, + "loss": 4.51375675201416, + "step": 697 + }, + { + "epoch": 9.698995194408038, + "grad_norm": 0.2556597888469696, + "learning_rate": 0.0006, + "loss": 4.512338638305664, + "step": 698 + }, + { + "epoch": 9.7129750982962, + "grad_norm": 0.23784305155277252, + "learning_rate": 0.0006, + "loss": 4.486503601074219, + "step": 699 + }, + { + "epoch": 9.72695500218436, + "grad_norm": 0.2240338921546936, + "learning_rate": 0.0006, + "loss": 4.486850261688232, + "step": 700 + }, + { + "epoch": 9.740934906072521, + "grad_norm": 0.24686725437641144, + "learning_rate": 0.0006, + "loss": 4.501359462738037, + "step": 701 + }, + { + "epoch": 9.754914809960681, + "grad_norm": 0.20819595456123352, + "learning_rate": 0.0006, + "loss": 4.495186805725098, + "step": 702 + }, + { + "epoch": 9.768894713848843, + "grad_norm": 0.21858957409858704, + "learning_rate": 0.0006, + "loss": 4.475093364715576, + "step": 703 + }, + { + "epoch": 9.782874617737003, + "grad_norm": 0.22676466405391693, + "learning_rate": 0.0006, + "loss": 4.4702534675598145, + "step": 704 + }, + { + "epoch": 9.796854521625164, + "grad_norm": 0.18317611515522003, + "learning_rate": 0.0006, + "loss": 4.471231937408447, + "step": 705 + }, + { + "epoch": 9.810834425513324, + "grad_norm": 0.20979148149490356, + "learning_rate": 0.0006, + "loss": 4.454103946685791, + "step": 706 + }, + { + "epoch": 9.824814329401486, + "grad_norm": 0.2146051526069641, + "learning_rate": 0.0006, + "loss": 4.505178928375244, + "step": 707 + }, + { + "epoch": 9.838794233289645, + "grad_norm": 0.2344852089881897, + "learning_rate": 0.0006, + "loss": 4.437984943389893, + "step": 708 + }, + { + "epoch": 9.852774137177807, + "grad_norm": 0.26532089710235596, + "learning_rate": 0.0006, + "loss": 4.477126121520996, + "step": 709 + }, + { + "epoch": 9.866754041065967, + "grad_norm": 0.2737913131713867, + "learning_rate": 0.0006, + "loss": 4.498421669006348, + "step": 710 + }, + { + "epoch": 9.880733944954128, + "grad_norm": 0.26651278138160706, + "learning_rate": 0.0006, + "loss": 4.480839729309082, + "step": 711 + }, + { + "epoch": 9.89471384884229, + "grad_norm": 0.26576584577560425, + "learning_rate": 0.0006, + "loss": 4.490936279296875, + "step": 712 + }, + { + "epoch": 9.90869375273045, + "grad_norm": 0.22483965754508972, + "learning_rate": 0.0006, + "loss": 4.477953910827637, + "step": 713 + }, + { + "epoch": 9.922673656618612, + "grad_norm": 0.23576045036315918, + "learning_rate": 0.0006, + "loss": 4.4731292724609375, + "step": 714 + }, + { + "epoch": 9.936653560506771, + "grad_norm": 0.2731139361858368, + "learning_rate": 0.0006, + "loss": 4.441622734069824, + "step": 715 + }, + { + "epoch": 9.950633464394933, + "grad_norm": 0.2677643597126007, + "learning_rate": 0.0006, + "loss": 4.49604606628418, + "step": 716 + }, + { + "epoch": 9.964613368283093, + "grad_norm": 0.21940895915031433, + "learning_rate": 0.0006, + "loss": 4.485573768615723, + "step": 717 + }, + { + "epoch": 9.978593272171254, + "grad_norm": 0.2060987651348114, + "learning_rate": 0.0006, + "loss": 4.482657432556152, + "step": 718 + }, + { + "epoch": 9.992573176059414, + "grad_norm": 0.22163978219032288, + "learning_rate": 0.0006, + "loss": 4.478459358215332, + "step": 719 + }, + { + "epoch": 10.0, + "grad_norm": 0.2505086064338684, + "learning_rate": 0.0006, + "loss": 4.4393510818481445, + "step": 720 + }, + { + "epoch": 10.0, + "eval_loss": 4.695676803588867, + "eval_runtime": 49.0751, + "eval_samples_per_second": 49.76, + "eval_steps_per_second": 3.118, + "step": 720 + }, + { + "epoch": 10.013979903888162, + "grad_norm": 0.23820190131664276, + "learning_rate": 0.0006, + "loss": 4.437685489654541, + "step": 721 + }, + { + "epoch": 10.027959807776321, + "grad_norm": 0.2220371812582016, + "learning_rate": 0.0006, + "loss": 4.449873924255371, + "step": 722 + }, + { + "epoch": 10.041939711664483, + "grad_norm": 0.20369848608970642, + "learning_rate": 0.0006, + "loss": 4.448882579803467, + "step": 723 + }, + { + "epoch": 10.055919615552643, + "grad_norm": 0.2360001504421234, + "learning_rate": 0.0006, + "loss": 4.399251937866211, + "step": 724 + }, + { + "epoch": 10.069899519440805, + "grad_norm": 0.23537491261959076, + "learning_rate": 0.0006, + "loss": 4.442960739135742, + "step": 725 + }, + { + "epoch": 10.083879423328964, + "grad_norm": 0.24433870613574982, + "learning_rate": 0.0006, + "loss": 4.44808292388916, + "step": 726 + }, + { + "epoch": 10.097859327217126, + "grad_norm": 0.3406696021556854, + "learning_rate": 0.0006, + "loss": 4.443426132202148, + "step": 727 + }, + { + "epoch": 10.111839231105286, + "grad_norm": 0.4102286100387573, + "learning_rate": 0.0006, + "loss": 4.424919605255127, + "step": 728 + }, + { + "epoch": 10.125819134993447, + "grad_norm": 0.36462604999542236, + "learning_rate": 0.0006, + "loss": 4.45366907119751, + "step": 729 + }, + { + "epoch": 10.139799038881607, + "grad_norm": 0.4374827444553375, + "learning_rate": 0.0006, + "loss": 4.415630340576172, + "step": 730 + }, + { + "epoch": 10.153778942769769, + "grad_norm": 0.45248138904571533, + "learning_rate": 0.0006, + "loss": 4.448849678039551, + "step": 731 + }, + { + "epoch": 10.167758846657929, + "grad_norm": 0.3806457221508026, + "learning_rate": 0.0006, + "loss": 4.443390846252441, + "step": 732 + }, + { + "epoch": 10.18173875054609, + "grad_norm": 0.3491523861885071, + "learning_rate": 0.0006, + "loss": 4.4648637771606445, + "step": 733 + }, + { + "epoch": 10.19571865443425, + "grad_norm": 0.3327210247516632, + "learning_rate": 0.0006, + "loss": 4.460919380187988, + "step": 734 + }, + { + "epoch": 10.209698558322412, + "grad_norm": 0.29772236943244934, + "learning_rate": 0.0006, + "loss": 4.45159912109375, + "step": 735 + }, + { + "epoch": 10.223678462210572, + "grad_norm": 0.33083397150039673, + "learning_rate": 0.0006, + "loss": 4.463382720947266, + "step": 736 + }, + { + "epoch": 10.237658366098733, + "grad_norm": 0.3930598795413971, + "learning_rate": 0.0006, + "loss": 4.434510231018066, + "step": 737 + }, + { + "epoch": 10.251638269986893, + "grad_norm": 0.4342896044254303, + "learning_rate": 0.0006, + "loss": 4.451700210571289, + "step": 738 + }, + { + "epoch": 10.265618173875055, + "grad_norm": 0.4544043242931366, + "learning_rate": 0.0006, + "loss": 4.437224388122559, + "step": 739 + }, + { + "epoch": 10.279598077763215, + "grad_norm": 0.4487038254737854, + "learning_rate": 0.0006, + "loss": 4.46157693862915, + "step": 740 + }, + { + "epoch": 10.293577981651376, + "grad_norm": 0.4420500695705414, + "learning_rate": 0.0006, + "loss": 4.399561405181885, + "step": 741 + }, + { + "epoch": 10.307557885539538, + "grad_norm": 0.4167289435863495, + "learning_rate": 0.0006, + "loss": 4.41792106628418, + "step": 742 + }, + { + "epoch": 10.321537789427698, + "grad_norm": 0.3186971843242645, + "learning_rate": 0.0006, + "loss": 4.435683250427246, + "step": 743 + }, + { + "epoch": 10.33551769331586, + "grad_norm": 0.3077184855937958, + "learning_rate": 0.0006, + "loss": 4.481947898864746, + "step": 744 + }, + { + "epoch": 10.349497597204019, + "grad_norm": 0.26811280846595764, + "learning_rate": 0.0006, + "loss": 4.4339447021484375, + "step": 745 + }, + { + "epoch": 10.36347750109218, + "grad_norm": 0.28448057174682617, + "learning_rate": 0.0006, + "loss": 4.441644668579102, + "step": 746 + }, + { + "epoch": 10.37745740498034, + "grad_norm": 0.30731502175331116, + "learning_rate": 0.0006, + "loss": 4.428773880004883, + "step": 747 + }, + { + "epoch": 10.391437308868502, + "grad_norm": 0.28036001324653625, + "learning_rate": 0.0006, + "loss": 4.4433135986328125, + "step": 748 + }, + { + "epoch": 10.405417212756662, + "grad_norm": 0.2882847189903259, + "learning_rate": 0.0006, + "loss": 4.433401107788086, + "step": 749 + }, + { + "epoch": 10.419397116644824, + "grad_norm": 0.23622776567935944, + "learning_rate": 0.0006, + "loss": 4.444611549377441, + "step": 750 + }, + { + "epoch": 10.433377020532983, + "grad_norm": 0.2306167632341385, + "learning_rate": 0.0006, + "loss": 4.397875785827637, + "step": 751 + }, + { + "epoch": 10.447356924421145, + "grad_norm": 0.22725090384483337, + "learning_rate": 0.0006, + "loss": 4.429759502410889, + "step": 752 + }, + { + "epoch": 10.461336828309305, + "grad_norm": 0.250709593296051, + "learning_rate": 0.0006, + "loss": 4.415618896484375, + "step": 753 + }, + { + "epoch": 10.475316732197467, + "grad_norm": 0.22341276705265045, + "learning_rate": 0.0006, + "loss": 4.389362335205078, + "step": 754 + }, + { + "epoch": 10.489296636085626, + "grad_norm": 0.22595296800136566, + "learning_rate": 0.0006, + "loss": 4.383584022521973, + "step": 755 + }, + { + "epoch": 10.503276539973788, + "grad_norm": 0.24277575314044952, + "learning_rate": 0.0006, + "loss": 4.403777599334717, + "step": 756 + }, + { + "epoch": 10.517256443861948, + "grad_norm": 0.2670708894729614, + "learning_rate": 0.0006, + "loss": 4.398499011993408, + "step": 757 + }, + { + "epoch": 10.53123634775011, + "grad_norm": 0.2640696167945862, + "learning_rate": 0.0006, + "loss": 4.426726818084717, + "step": 758 + }, + { + "epoch": 10.54521625163827, + "grad_norm": 0.2248653769493103, + "learning_rate": 0.0006, + "loss": 4.400103569030762, + "step": 759 + }, + { + "epoch": 10.55919615552643, + "grad_norm": 0.21466240286827087, + "learning_rate": 0.0006, + "loss": 4.404158592224121, + "step": 760 + }, + { + "epoch": 10.57317605941459, + "grad_norm": 0.236923947930336, + "learning_rate": 0.0006, + "loss": 4.37059211730957, + "step": 761 + }, + { + "epoch": 10.587155963302752, + "grad_norm": 0.2515387535095215, + "learning_rate": 0.0006, + "loss": 4.415055274963379, + "step": 762 + }, + { + "epoch": 10.601135867190912, + "grad_norm": 0.23461885750293732, + "learning_rate": 0.0006, + "loss": 4.375036239624023, + "step": 763 + }, + { + "epoch": 10.615115771079074, + "grad_norm": 0.20975761115550995, + "learning_rate": 0.0006, + "loss": 4.3903398513793945, + "step": 764 + }, + { + "epoch": 10.629095674967235, + "grad_norm": 0.19859997928142548, + "learning_rate": 0.0006, + "loss": 4.379380226135254, + "step": 765 + }, + { + "epoch": 10.643075578855395, + "grad_norm": 0.22310325503349304, + "learning_rate": 0.0006, + "loss": 4.382110595703125, + "step": 766 + }, + { + "epoch": 10.657055482743557, + "grad_norm": 0.23940646648406982, + "learning_rate": 0.0006, + "loss": 4.393403053283691, + "step": 767 + }, + { + "epoch": 10.671035386631717, + "grad_norm": 0.2230468988418579, + "learning_rate": 0.0006, + "loss": 4.391970634460449, + "step": 768 + }, + { + "epoch": 10.685015290519878, + "grad_norm": 0.18139775097370148, + "learning_rate": 0.0006, + "loss": 4.399993896484375, + "step": 769 + }, + { + "epoch": 10.698995194408038, + "grad_norm": 0.19936902821063995, + "learning_rate": 0.0006, + "loss": 4.373854160308838, + "step": 770 + }, + { + "epoch": 10.7129750982962, + "grad_norm": 0.22132465243339539, + "learning_rate": 0.0006, + "loss": 4.377530097961426, + "step": 771 + }, + { + "epoch": 10.72695500218436, + "grad_norm": 0.24254944920539856, + "learning_rate": 0.0006, + "loss": 4.398683547973633, + "step": 772 + }, + { + "epoch": 10.740934906072521, + "grad_norm": 0.2666397988796234, + "learning_rate": 0.0006, + "loss": 4.3879899978637695, + "step": 773 + }, + { + "epoch": 10.754914809960681, + "grad_norm": 0.24728631973266602, + "learning_rate": 0.0006, + "loss": 4.356976509094238, + "step": 774 + }, + { + "epoch": 10.768894713848843, + "grad_norm": 0.2612453103065491, + "learning_rate": 0.0006, + "loss": 4.391525745391846, + "step": 775 + }, + { + "epoch": 10.782874617737003, + "grad_norm": 0.24060510098934174, + "learning_rate": 0.0006, + "loss": 4.376985549926758, + "step": 776 + }, + { + "epoch": 10.796854521625164, + "grad_norm": 0.22708238661289215, + "learning_rate": 0.0006, + "loss": 4.368545055389404, + "step": 777 + }, + { + "epoch": 10.810834425513324, + "grad_norm": 0.26931291818618774, + "learning_rate": 0.0006, + "loss": 4.369227409362793, + "step": 778 + }, + { + "epoch": 10.824814329401486, + "grad_norm": 0.265288770198822, + "learning_rate": 0.0006, + "loss": 4.378131866455078, + "step": 779 + }, + { + "epoch": 10.838794233289645, + "grad_norm": 0.3015305697917938, + "learning_rate": 0.0006, + "loss": 4.376267910003662, + "step": 780 + }, + { + "epoch": 10.852774137177807, + "grad_norm": 0.3345746099948883, + "learning_rate": 0.0006, + "loss": 4.3751420974731445, + "step": 781 + }, + { + "epoch": 10.866754041065967, + "grad_norm": 0.32446005940437317, + "learning_rate": 0.0006, + "loss": 4.370899200439453, + "step": 782 + }, + { + "epoch": 10.880733944954128, + "grad_norm": 0.27070069313049316, + "learning_rate": 0.0006, + "loss": 4.391958236694336, + "step": 783 + }, + { + "epoch": 10.89471384884229, + "grad_norm": 0.25584667921066284, + "learning_rate": 0.0006, + "loss": 4.407493591308594, + "step": 784 + }, + { + "epoch": 10.90869375273045, + "grad_norm": 0.2710244655609131, + "learning_rate": 0.0006, + "loss": 4.374400615692139, + "step": 785 + }, + { + "epoch": 10.922673656618612, + "grad_norm": 0.32413622736930847, + "learning_rate": 0.0006, + "loss": 4.379607200622559, + "step": 786 + }, + { + "epoch": 10.936653560506771, + "grad_norm": 0.3253782391548157, + "learning_rate": 0.0006, + "loss": 4.376441955566406, + "step": 787 + }, + { + "epoch": 10.950633464394933, + "grad_norm": 0.30534613132476807, + "learning_rate": 0.0006, + "loss": 4.382739067077637, + "step": 788 + }, + { + "epoch": 10.964613368283093, + "grad_norm": 0.35726621747016907, + "learning_rate": 0.0006, + "loss": 4.3765869140625, + "step": 789 + }, + { + "epoch": 10.978593272171254, + "grad_norm": 0.32763028144836426, + "learning_rate": 0.0006, + "loss": 4.391537189483643, + "step": 790 + }, + { + "epoch": 10.992573176059414, + "grad_norm": 0.31811195611953735, + "learning_rate": 0.0006, + "loss": 4.371829032897949, + "step": 791 + }, + { + "epoch": 11.0, + "grad_norm": 0.37317267060279846, + "learning_rate": 0.0006, + "loss": 4.381916522979736, + "step": 792 + }, + { + "epoch": 11.0, + "eval_loss": 4.588687896728516, + "eval_runtime": 44.8041, + "eval_samples_per_second": 54.504, + "eval_steps_per_second": 3.415, + "step": 792 + }, + { + "epoch": 11.013979903888162, + "grad_norm": 0.37882938981056213, + "learning_rate": 0.0006, + "loss": 4.3463640213012695, + "step": 793 + }, + { + "epoch": 11.027959807776321, + "grad_norm": 0.34719496965408325, + "learning_rate": 0.0006, + "loss": 4.329861640930176, + "step": 794 + }, + { + "epoch": 11.041939711664483, + "grad_norm": 0.36161214113235474, + "learning_rate": 0.0006, + "loss": 4.3287835121154785, + "step": 795 + }, + { + "epoch": 11.055919615552643, + "grad_norm": 0.3743649125099182, + "learning_rate": 0.0006, + "loss": 4.334251403808594, + "step": 796 + }, + { + "epoch": 11.069899519440805, + "grad_norm": 0.32266443967819214, + "learning_rate": 0.0006, + "loss": 4.364782810211182, + "step": 797 + }, + { + "epoch": 11.083879423328964, + "grad_norm": 0.27460047602653503, + "learning_rate": 0.0006, + "loss": 4.348380088806152, + "step": 798 + }, + { + "epoch": 11.097859327217126, + "grad_norm": 0.30498892068862915, + "learning_rate": 0.0006, + "loss": 4.347856521606445, + "step": 799 + }, + { + "epoch": 11.111839231105286, + "grad_norm": 0.29740771651268005, + "learning_rate": 0.0006, + "loss": 4.343471050262451, + "step": 800 + }, + { + "epoch": 11.125819134993447, + "grad_norm": 0.3004681169986725, + "learning_rate": 0.0006, + "loss": 4.337590217590332, + "step": 801 + }, + { + "epoch": 11.139799038881607, + "grad_norm": 0.3000192642211914, + "learning_rate": 0.0006, + "loss": 4.349949836730957, + "step": 802 + }, + { + "epoch": 11.153778942769769, + "grad_norm": 0.27461889386177063, + "learning_rate": 0.0006, + "loss": 4.338934898376465, + "step": 803 + }, + { + "epoch": 11.167758846657929, + "grad_norm": 0.2856169641017914, + "learning_rate": 0.0006, + "loss": 4.320754051208496, + "step": 804 + }, + { + "epoch": 11.18173875054609, + "grad_norm": 0.29822713136672974, + "learning_rate": 0.0006, + "loss": 4.357949733734131, + "step": 805 + }, + { + "epoch": 11.19571865443425, + "grad_norm": 0.34061339497566223, + "learning_rate": 0.0006, + "loss": 4.327282905578613, + "step": 806 + }, + { + "epoch": 11.209698558322412, + "grad_norm": 0.3379063010215759, + "learning_rate": 0.0006, + "loss": 4.355471611022949, + "step": 807 + }, + { + "epoch": 11.223678462210572, + "grad_norm": 0.2859216630458832, + "learning_rate": 0.0006, + "loss": 4.352344989776611, + "step": 808 + }, + { + "epoch": 11.237658366098733, + "grad_norm": 0.29522669315338135, + "learning_rate": 0.0006, + "loss": 4.349186897277832, + "step": 809 + }, + { + "epoch": 11.251638269986893, + "grad_norm": 0.273798406124115, + "learning_rate": 0.0006, + "loss": 4.342379570007324, + "step": 810 + }, + { + "epoch": 11.265618173875055, + "grad_norm": 0.25298982858657837, + "learning_rate": 0.0006, + "loss": 4.358835220336914, + "step": 811 + }, + { + "epoch": 11.279598077763215, + "grad_norm": 0.2170463651418686, + "learning_rate": 0.0006, + "loss": 4.3422017097473145, + "step": 812 + }, + { + "epoch": 11.293577981651376, + "grad_norm": 0.24855731427669525, + "learning_rate": 0.0006, + "loss": 4.322849750518799, + "step": 813 + }, + { + "epoch": 11.307557885539538, + "grad_norm": 0.22564345598220825, + "learning_rate": 0.0006, + "loss": 4.316864967346191, + "step": 814 + }, + { + "epoch": 11.321537789427698, + "grad_norm": 0.21532197296619415, + "learning_rate": 0.0006, + "loss": 4.326743125915527, + "step": 815 + }, + { + "epoch": 11.33551769331586, + "grad_norm": 0.20514146983623505, + "learning_rate": 0.0006, + "loss": 4.326531887054443, + "step": 816 + }, + { + "epoch": 11.349497597204019, + "grad_norm": 0.19035090506076813, + "learning_rate": 0.0006, + "loss": 4.318154335021973, + "step": 817 + }, + { + "epoch": 11.36347750109218, + "grad_norm": 0.17889662086963654, + "learning_rate": 0.0006, + "loss": 4.35410213470459, + "step": 818 + }, + { + "epoch": 11.37745740498034, + "grad_norm": 0.20564863085746765, + "learning_rate": 0.0006, + "loss": 4.350226879119873, + "step": 819 + }, + { + "epoch": 11.391437308868502, + "grad_norm": 0.2412603348493576, + "learning_rate": 0.0006, + "loss": 4.325137138366699, + "step": 820 + }, + { + "epoch": 11.405417212756662, + "grad_norm": 0.2603496015071869, + "learning_rate": 0.0006, + "loss": 4.335752487182617, + "step": 821 + }, + { + "epoch": 11.419397116644824, + "grad_norm": 0.2968119978904724, + "learning_rate": 0.0006, + "loss": 4.3317670822143555, + "step": 822 + }, + { + "epoch": 11.433377020532983, + "grad_norm": 0.3280937969684601, + "learning_rate": 0.0006, + "loss": 4.322279453277588, + "step": 823 + }, + { + "epoch": 11.447356924421145, + "grad_norm": 0.3598847985267639, + "learning_rate": 0.0006, + "loss": 4.312255859375, + "step": 824 + }, + { + "epoch": 11.461336828309305, + "grad_norm": 0.3996485471725464, + "learning_rate": 0.0006, + "loss": 4.327103614807129, + "step": 825 + }, + { + "epoch": 11.475316732197467, + "grad_norm": 0.4352041780948639, + "learning_rate": 0.0006, + "loss": 4.368639945983887, + "step": 826 + }, + { + "epoch": 11.489296636085626, + "grad_norm": 0.4451918601989746, + "learning_rate": 0.0006, + "loss": 4.335113048553467, + "step": 827 + }, + { + "epoch": 11.503276539973788, + "grad_norm": 0.4403933584690094, + "learning_rate": 0.0006, + "loss": 4.369889259338379, + "step": 828 + }, + { + "epoch": 11.517256443861948, + "grad_norm": 0.34862443804740906, + "learning_rate": 0.0006, + "loss": 4.316292762756348, + "step": 829 + }, + { + "epoch": 11.53123634775011, + "grad_norm": 0.3240634500980377, + "learning_rate": 0.0006, + "loss": 4.328078746795654, + "step": 830 + }, + { + "epoch": 11.54521625163827, + "grad_norm": 0.2445751428604126, + "learning_rate": 0.0006, + "loss": 4.291940689086914, + "step": 831 + }, + { + "epoch": 11.55919615552643, + "grad_norm": 0.24376554787158966, + "learning_rate": 0.0006, + "loss": 4.339217662811279, + "step": 832 + }, + { + "epoch": 11.57317605941459, + "grad_norm": 0.22419725358486176, + "learning_rate": 0.0006, + "loss": 4.2887468338012695, + "step": 833 + }, + { + "epoch": 11.587155963302752, + "grad_norm": 0.22318261861801147, + "learning_rate": 0.0006, + "loss": 4.298492908477783, + "step": 834 + }, + { + "epoch": 11.601135867190912, + "grad_norm": 0.2357342392206192, + "learning_rate": 0.0006, + "loss": 4.328692436218262, + "step": 835 + }, + { + "epoch": 11.615115771079074, + "grad_norm": 0.25450602173805237, + "learning_rate": 0.0006, + "loss": 4.360058784484863, + "step": 836 + }, + { + "epoch": 11.629095674967235, + "grad_norm": 0.24540965259075165, + "learning_rate": 0.0006, + "loss": 4.311890602111816, + "step": 837 + }, + { + "epoch": 11.643075578855395, + "grad_norm": 0.2535638213157654, + "learning_rate": 0.0006, + "loss": 4.327730178833008, + "step": 838 + }, + { + "epoch": 11.657055482743557, + "grad_norm": 0.23063556849956512, + "learning_rate": 0.0006, + "loss": 4.303299903869629, + "step": 839 + }, + { + "epoch": 11.671035386631717, + "grad_norm": 0.21813632547855377, + "learning_rate": 0.0006, + "loss": 4.315352439880371, + "step": 840 + }, + { + "epoch": 11.685015290519878, + "grad_norm": 0.2170359194278717, + "learning_rate": 0.0006, + "loss": 4.278632164001465, + "step": 841 + }, + { + "epoch": 11.698995194408038, + "grad_norm": 0.21059377491474152, + "learning_rate": 0.0006, + "loss": 4.306049346923828, + "step": 842 + }, + { + "epoch": 11.7129750982962, + "grad_norm": 0.19872888922691345, + "learning_rate": 0.0006, + "loss": 4.3091535568237305, + "step": 843 + }, + { + "epoch": 11.72695500218436, + "grad_norm": 0.20059862732887268, + "learning_rate": 0.0006, + "loss": 4.2884063720703125, + "step": 844 + }, + { + "epoch": 11.740934906072521, + "grad_norm": 0.19952483475208282, + "learning_rate": 0.0006, + "loss": 4.293610572814941, + "step": 845 + }, + { + "epoch": 11.754914809960681, + "grad_norm": 0.19794537127017975, + "learning_rate": 0.0006, + "loss": 4.288822174072266, + "step": 846 + }, + { + "epoch": 11.768894713848843, + "grad_norm": 0.213914692401886, + "learning_rate": 0.0006, + "loss": 4.320849418640137, + "step": 847 + }, + { + "epoch": 11.782874617737003, + "grad_norm": 0.18500955402851105, + "learning_rate": 0.0006, + "loss": 4.29300594329834, + "step": 848 + }, + { + "epoch": 11.796854521625164, + "grad_norm": 0.19446656107902527, + "learning_rate": 0.0006, + "loss": 4.3079352378845215, + "step": 849 + }, + { + "epoch": 11.810834425513324, + "grad_norm": 0.22191768884658813, + "learning_rate": 0.0006, + "loss": 4.295967102050781, + "step": 850 + }, + { + "epoch": 11.824814329401486, + "grad_norm": 0.20748084783554077, + "learning_rate": 0.0006, + "loss": 4.332365989685059, + "step": 851 + }, + { + "epoch": 11.838794233289645, + "grad_norm": 0.20993955433368683, + "learning_rate": 0.0006, + "loss": 4.294618129730225, + "step": 852 + }, + { + "epoch": 11.852774137177807, + "grad_norm": 0.23506952822208405, + "learning_rate": 0.0006, + "loss": 4.313426971435547, + "step": 853 + }, + { + "epoch": 11.866754041065967, + "grad_norm": 0.2379443347454071, + "learning_rate": 0.0006, + "loss": 4.297664642333984, + "step": 854 + }, + { + "epoch": 11.880733944954128, + "grad_norm": 0.2127852737903595, + "learning_rate": 0.0006, + "loss": 4.2807698249816895, + "step": 855 + }, + { + "epoch": 11.89471384884229, + "grad_norm": 0.2125532180070877, + "learning_rate": 0.0006, + "loss": 4.310990333557129, + "step": 856 + }, + { + "epoch": 11.90869375273045, + "grad_norm": 0.1996062994003296, + "learning_rate": 0.0006, + "loss": 4.253237724304199, + "step": 857 + }, + { + "epoch": 11.922673656618612, + "grad_norm": 0.20747603476047516, + "learning_rate": 0.0006, + "loss": 4.294193267822266, + "step": 858 + }, + { + "epoch": 11.936653560506771, + "grad_norm": 0.24082425236701965, + "learning_rate": 0.0006, + "loss": 4.269967079162598, + "step": 859 + }, + { + "epoch": 11.950633464394933, + "grad_norm": 0.28993573784828186, + "learning_rate": 0.0006, + "loss": 4.294550895690918, + "step": 860 + }, + { + "epoch": 11.964613368283093, + "grad_norm": 0.29576948285102844, + "learning_rate": 0.0006, + "loss": 4.3188252449035645, + "step": 861 + }, + { + "epoch": 11.978593272171254, + "grad_norm": 0.2754935026168823, + "learning_rate": 0.0006, + "loss": 4.312817573547363, + "step": 862 + }, + { + "epoch": 11.992573176059414, + "grad_norm": 0.3062523305416107, + "learning_rate": 0.0006, + "loss": 4.288214683532715, + "step": 863 + }, + { + "epoch": 12.0, + "grad_norm": 0.3367644250392914, + "learning_rate": 0.0006, + "loss": 4.314888954162598, + "step": 864 + }, + { + "epoch": 12.0, + "eval_loss": 4.516861438751221, + "eval_runtime": 44.2584, + "eval_samples_per_second": 55.176, + "eval_steps_per_second": 3.457, + "step": 864 + }, + { + "epoch": 12.013979903888162, + "grad_norm": 0.2976512014865875, + "learning_rate": 0.0006, + "loss": 4.278797149658203, + "step": 865 + }, + { + "epoch": 12.027959807776321, + "grad_norm": 0.32217127084732056, + "learning_rate": 0.0006, + "loss": 4.2823615074157715, + "step": 866 + }, + { + "epoch": 12.041939711664483, + "grad_norm": 0.31538400053977966, + "learning_rate": 0.0006, + "loss": 4.252805709838867, + "step": 867 + }, + { + "epoch": 12.055919615552643, + "grad_norm": 0.3501375913619995, + "learning_rate": 0.0006, + "loss": 4.276501655578613, + "step": 868 + }, + { + "epoch": 12.069899519440805, + "grad_norm": 0.3452056646347046, + "learning_rate": 0.0006, + "loss": 4.275739669799805, + "step": 869 + }, + { + "epoch": 12.083879423328964, + "grad_norm": 0.36963316798210144, + "learning_rate": 0.0006, + "loss": 4.3215227127075195, + "step": 870 + }, + { + "epoch": 12.097859327217126, + "grad_norm": 0.41605016589164734, + "learning_rate": 0.0006, + "loss": 4.28739595413208, + "step": 871 + }, + { + "epoch": 12.111839231105286, + "grad_norm": 0.37700653076171875, + "learning_rate": 0.0006, + "loss": 4.291154861450195, + "step": 872 + }, + { + "epoch": 12.125819134993447, + "grad_norm": 0.3194253444671631, + "learning_rate": 0.0006, + "loss": 4.259326934814453, + "step": 873 + }, + { + "epoch": 12.139799038881607, + "grad_norm": 0.31770631670951843, + "learning_rate": 0.0006, + "loss": 4.270082473754883, + "step": 874 + }, + { + "epoch": 12.153778942769769, + "grad_norm": 0.3748120069503784, + "learning_rate": 0.0006, + "loss": 4.2727274894714355, + "step": 875 + }, + { + "epoch": 12.167758846657929, + "grad_norm": 0.3821348547935486, + "learning_rate": 0.0006, + "loss": 4.2848286628723145, + "step": 876 + }, + { + "epoch": 12.18173875054609, + "grad_norm": 0.31894201040267944, + "learning_rate": 0.0006, + "loss": 4.289551258087158, + "step": 877 + }, + { + "epoch": 12.19571865443425, + "grad_norm": 0.2695826292037964, + "learning_rate": 0.0006, + "loss": 4.2797346115112305, + "step": 878 + }, + { + "epoch": 12.209698558322412, + "grad_norm": 0.23966269195079803, + "learning_rate": 0.0006, + "loss": 4.24021577835083, + "step": 879 + }, + { + "epoch": 12.223678462210572, + "grad_norm": 0.24342599511146545, + "learning_rate": 0.0006, + "loss": 4.277721881866455, + "step": 880 + }, + { + "epoch": 12.237658366098733, + "grad_norm": 0.2522958815097809, + "learning_rate": 0.0006, + "loss": 4.263946533203125, + "step": 881 + }, + { + "epoch": 12.251638269986893, + "grad_norm": 0.2708299458026886, + "learning_rate": 0.0006, + "loss": 4.274540901184082, + "step": 882 + }, + { + "epoch": 12.265618173875055, + "grad_norm": 0.2978788912296295, + "learning_rate": 0.0006, + "loss": 4.2674970626831055, + "step": 883 + }, + { + "epoch": 12.279598077763215, + "grad_norm": 0.2898774743080139, + "learning_rate": 0.0006, + "loss": 4.235060691833496, + "step": 884 + }, + { + "epoch": 12.293577981651376, + "grad_norm": 0.27941837906837463, + "learning_rate": 0.0006, + "loss": 4.284140586853027, + "step": 885 + }, + { + "epoch": 12.307557885539538, + "grad_norm": 0.25050559639930725, + "learning_rate": 0.0006, + "loss": 4.270134925842285, + "step": 886 + }, + { + "epoch": 12.321537789427698, + "grad_norm": 0.21867156028747559, + "learning_rate": 0.0006, + "loss": 4.241571426391602, + "step": 887 + }, + { + "epoch": 12.33551769331586, + "grad_norm": 0.24735847115516663, + "learning_rate": 0.0006, + "loss": 4.253087997436523, + "step": 888 + }, + { + "epoch": 12.349497597204019, + "grad_norm": 0.23069104552268982, + "learning_rate": 0.0006, + "loss": 4.258606910705566, + "step": 889 + }, + { + "epoch": 12.36347750109218, + "grad_norm": 0.2594369947910309, + "learning_rate": 0.0006, + "loss": 4.307351112365723, + "step": 890 + }, + { + "epoch": 12.37745740498034, + "grad_norm": 0.25349098443984985, + "learning_rate": 0.0006, + "loss": 4.264268398284912, + "step": 891 + }, + { + "epoch": 12.391437308868502, + "grad_norm": 0.2550840675830841, + "learning_rate": 0.0006, + "loss": 4.247092247009277, + "step": 892 + }, + { + "epoch": 12.405417212756662, + "grad_norm": 0.2107602059841156, + "learning_rate": 0.0006, + "loss": 4.240527153015137, + "step": 893 + }, + { + "epoch": 12.419397116644824, + "grad_norm": 0.2025548368692398, + "learning_rate": 0.0006, + "loss": 4.244686126708984, + "step": 894 + }, + { + "epoch": 12.433377020532983, + "grad_norm": 0.22061701118946075, + "learning_rate": 0.0006, + "loss": 4.233231544494629, + "step": 895 + }, + { + "epoch": 12.447356924421145, + "grad_norm": 0.19503085315227509, + "learning_rate": 0.0006, + "loss": 4.23851203918457, + "step": 896 + }, + { + "epoch": 12.461336828309305, + "grad_norm": 0.19313643872737885, + "learning_rate": 0.0006, + "loss": 4.190886497497559, + "step": 897 + }, + { + "epoch": 12.475316732197467, + "grad_norm": 0.21094176173210144, + "learning_rate": 0.0006, + "loss": 4.277888298034668, + "step": 898 + }, + { + "epoch": 12.489296636085626, + "grad_norm": 0.1980651170015335, + "learning_rate": 0.0006, + "loss": 4.251066207885742, + "step": 899 + }, + { + "epoch": 12.503276539973788, + "grad_norm": 0.179737389087677, + "learning_rate": 0.0006, + "loss": 4.194703102111816, + "step": 900 + }, + { + "epoch": 12.517256443861948, + "grad_norm": 0.19069281220436096, + "learning_rate": 0.0006, + "loss": 4.242412567138672, + "step": 901 + }, + { + "epoch": 12.53123634775011, + "grad_norm": 0.191154345870018, + "learning_rate": 0.0006, + "loss": 4.2432780265808105, + "step": 902 + }, + { + "epoch": 12.54521625163827, + "grad_norm": 0.19760103523731232, + "learning_rate": 0.0006, + "loss": 4.23294734954834, + "step": 903 + }, + { + "epoch": 12.55919615552643, + "grad_norm": 0.19982324540615082, + "learning_rate": 0.0006, + "loss": 4.249764442443848, + "step": 904 + }, + { + "epoch": 12.57317605941459, + "grad_norm": 0.1986108422279358, + "learning_rate": 0.0006, + "loss": 4.213435649871826, + "step": 905 + }, + { + "epoch": 12.587155963302752, + "grad_norm": 0.19727319478988647, + "learning_rate": 0.0006, + "loss": 4.247962951660156, + "step": 906 + }, + { + "epoch": 12.601135867190912, + "grad_norm": 0.23404482007026672, + "learning_rate": 0.0006, + "loss": 4.237396240234375, + "step": 907 + }, + { + "epoch": 12.615115771079074, + "grad_norm": 0.21136441826820374, + "learning_rate": 0.0006, + "loss": 4.236040115356445, + "step": 908 + }, + { + "epoch": 12.629095674967235, + "grad_norm": 0.2209048718214035, + "learning_rate": 0.0006, + "loss": 4.234212875366211, + "step": 909 + }, + { + "epoch": 12.643075578855395, + "grad_norm": 0.22120307385921478, + "learning_rate": 0.0006, + "loss": 4.2711076736450195, + "step": 910 + }, + { + "epoch": 12.657055482743557, + "grad_norm": 0.22733066976070404, + "learning_rate": 0.0006, + "loss": 4.231651306152344, + "step": 911 + }, + { + "epoch": 12.671035386631717, + "grad_norm": 0.2435602843761444, + "learning_rate": 0.0006, + "loss": 4.249372482299805, + "step": 912 + }, + { + "epoch": 12.685015290519878, + "grad_norm": 0.28881654143333435, + "learning_rate": 0.0006, + "loss": 4.2626051902771, + "step": 913 + }, + { + "epoch": 12.698995194408038, + "grad_norm": 0.3211199641227722, + "learning_rate": 0.0006, + "loss": 4.254220485687256, + "step": 914 + }, + { + "epoch": 12.7129750982962, + "grad_norm": 0.3118100166320801, + "learning_rate": 0.0006, + "loss": 4.233747959136963, + "step": 915 + }, + { + "epoch": 12.72695500218436, + "grad_norm": 0.33411866426467896, + "learning_rate": 0.0006, + "loss": 4.270386219024658, + "step": 916 + }, + { + "epoch": 12.740934906072521, + "grad_norm": 0.2968253195285797, + "learning_rate": 0.0006, + "loss": 4.242254257202148, + "step": 917 + }, + { + "epoch": 12.754914809960681, + "grad_norm": 0.2959132194519043, + "learning_rate": 0.0006, + "loss": 4.232100486755371, + "step": 918 + }, + { + "epoch": 12.768894713848843, + "grad_norm": 0.2729283273220062, + "learning_rate": 0.0006, + "loss": 4.233869552612305, + "step": 919 + }, + { + "epoch": 12.782874617737003, + "grad_norm": 0.2669033408164978, + "learning_rate": 0.0006, + "loss": 4.261008262634277, + "step": 920 + }, + { + "epoch": 12.796854521625164, + "grad_norm": 0.2738507091999054, + "learning_rate": 0.0006, + "loss": 4.2286763191223145, + "step": 921 + }, + { + "epoch": 12.810834425513324, + "grad_norm": 0.29105183482170105, + "learning_rate": 0.0006, + "loss": 4.281410217285156, + "step": 922 + }, + { + "epoch": 12.824814329401486, + "grad_norm": 0.31330201029777527, + "learning_rate": 0.0006, + "loss": 4.264181613922119, + "step": 923 + }, + { + "epoch": 12.838794233289645, + "grad_norm": 0.31324025988578796, + "learning_rate": 0.0006, + "loss": 4.250385284423828, + "step": 924 + }, + { + "epoch": 12.852774137177807, + "grad_norm": 0.2727925181388855, + "learning_rate": 0.0006, + "loss": 4.24821138381958, + "step": 925 + }, + { + "epoch": 12.866754041065967, + "grad_norm": 0.27350082993507385, + "learning_rate": 0.0006, + "loss": 4.230215072631836, + "step": 926 + }, + { + "epoch": 12.880733944954128, + "grad_norm": 0.2269950658082962, + "learning_rate": 0.0006, + "loss": 4.210305213928223, + "step": 927 + }, + { + "epoch": 12.89471384884229, + "grad_norm": 0.24667619168758392, + "learning_rate": 0.0006, + "loss": 4.239969253540039, + "step": 928 + }, + { + "epoch": 12.90869375273045, + "grad_norm": 0.22510501742362976, + "learning_rate": 0.0006, + "loss": 4.192750930786133, + "step": 929 + }, + { + "epoch": 12.922673656618612, + "grad_norm": 0.22887611389160156, + "learning_rate": 0.0006, + "loss": 4.264463424682617, + "step": 930 + }, + { + "epoch": 12.936653560506771, + "grad_norm": 0.22195978462696075, + "learning_rate": 0.0006, + "loss": 4.205256938934326, + "step": 931 + }, + { + "epoch": 12.950633464394933, + "grad_norm": 0.23184578120708466, + "learning_rate": 0.0006, + "loss": 4.214578628540039, + "step": 932 + }, + { + "epoch": 12.964613368283093, + "grad_norm": 0.2186676561832428, + "learning_rate": 0.0006, + "loss": 4.227711200714111, + "step": 933 + }, + { + "epoch": 12.978593272171254, + "grad_norm": 0.2160426527261734, + "learning_rate": 0.0006, + "loss": 4.221796989440918, + "step": 934 + }, + { + "epoch": 12.992573176059414, + "grad_norm": 0.21562792360782623, + "learning_rate": 0.0006, + "loss": 4.21957540512085, + "step": 935 + }, + { + "epoch": 13.0, + "grad_norm": 0.22538058459758759, + "learning_rate": 0.0006, + "loss": 4.2353973388671875, + "step": 936 + }, + { + "epoch": 13.0, + "eval_loss": 4.426600933074951, + "eval_runtime": 44.8138, + "eval_samples_per_second": 54.492, + "eval_steps_per_second": 3.414, + "step": 936 + }, + { + "epoch": 13.013979903888162, + "grad_norm": 0.24888049066066742, + "learning_rate": 0.0006, + "loss": 4.18648624420166, + "step": 937 + }, + { + "epoch": 13.027959807776321, + "grad_norm": 0.28330180048942566, + "learning_rate": 0.0006, + "loss": 4.188892364501953, + "step": 938 + }, + { + "epoch": 13.041939711664483, + "grad_norm": 0.31152188777923584, + "learning_rate": 0.0006, + "loss": 4.2053399085998535, + "step": 939 + }, + { + "epoch": 13.055919615552643, + "grad_norm": 0.2842433452606201, + "learning_rate": 0.0006, + "loss": 4.191902160644531, + "step": 940 + }, + { + "epoch": 13.069899519440805, + "grad_norm": 0.23664532601833344, + "learning_rate": 0.0006, + "loss": 4.1831865310668945, + "step": 941 + }, + { + "epoch": 13.083879423328964, + "grad_norm": 0.24204140901565552, + "learning_rate": 0.0006, + "loss": 4.202641487121582, + "step": 942 + }, + { + "epoch": 13.097859327217126, + "grad_norm": 0.235311359167099, + "learning_rate": 0.0006, + "loss": 4.174511909484863, + "step": 943 + }, + { + "epoch": 13.111839231105286, + "grad_norm": 0.27127715945243835, + "learning_rate": 0.0006, + "loss": 4.201844215393066, + "step": 944 + }, + { + "epoch": 13.125819134993447, + "grad_norm": 0.2722373604774475, + "learning_rate": 0.0006, + "loss": 4.157383918762207, + "step": 945 + }, + { + "epoch": 13.139799038881607, + "grad_norm": 0.25446659326553345, + "learning_rate": 0.0006, + "loss": 4.221236228942871, + "step": 946 + }, + { + "epoch": 13.153778942769769, + "grad_norm": 0.273017019033432, + "learning_rate": 0.0006, + "loss": 4.195512771606445, + "step": 947 + }, + { + "epoch": 13.167758846657929, + "grad_norm": 0.24766312539577484, + "learning_rate": 0.0006, + "loss": 4.220959663391113, + "step": 948 + }, + { + "epoch": 13.18173875054609, + "grad_norm": 0.24636317789554596, + "learning_rate": 0.0006, + "loss": 4.214302062988281, + "step": 949 + }, + { + "epoch": 13.19571865443425, + "grad_norm": 0.3177756667137146, + "learning_rate": 0.0006, + "loss": 4.213500022888184, + "step": 950 + }, + { + "epoch": 13.209698558322412, + "grad_norm": 0.44579195976257324, + "learning_rate": 0.0006, + "loss": 4.227644920349121, + "step": 951 + }, + { + "epoch": 13.223678462210572, + "grad_norm": 0.4217414855957031, + "learning_rate": 0.0006, + "loss": 4.180937767028809, + "step": 952 + }, + { + "epoch": 13.237658366098733, + "grad_norm": 0.30148059129714966, + "learning_rate": 0.0006, + "loss": 4.207760810852051, + "step": 953 + }, + { + "epoch": 13.251638269986893, + "grad_norm": 0.3192492127418518, + "learning_rate": 0.0006, + "loss": 4.197999000549316, + "step": 954 + }, + { + "epoch": 13.265618173875055, + "grad_norm": 0.37334588170051575, + "learning_rate": 0.0006, + "loss": 4.208001136779785, + "step": 955 + }, + { + "epoch": 13.279598077763215, + "grad_norm": 0.4059637784957886, + "learning_rate": 0.0006, + "loss": 4.211322784423828, + "step": 956 + }, + { + "epoch": 13.293577981651376, + "grad_norm": 0.3389599323272705, + "learning_rate": 0.0006, + "loss": 4.204404354095459, + "step": 957 + }, + { + "epoch": 13.307557885539538, + "grad_norm": 0.2675766050815582, + "learning_rate": 0.0006, + "loss": 4.245941162109375, + "step": 958 + }, + { + "epoch": 13.321537789427698, + "grad_norm": 0.2730264365673065, + "learning_rate": 0.0006, + "loss": 4.2221221923828125, + "step": 959 + }, + { + "epoch": 13.33551769331586, + "grad_norm": 0.26458224654197693, + "learning_rate": 0.0006, + "loss": 4.205596923828125, + "step": 960 + }, + { + "epoch": 13.349497597204019, + "grad_norm": 0.2872551381587982, + "learning_rate": 0.0006, + "loss": 4.196977615356445, + "step": 961 + }, + { + "epoch": 13.36347750109218, + "grad_norm": 0.2954796850681305, + "learning_rate": 0.0006, + "loss": 4.202796936035156, + "step": 962 + }, + { + "epoch": 13.37745740498034, + "grad_norm": 0.2619425654411316, + "learning_rate": 0.0006, + "loss": 4.196845054626465, + "step": 963 + }, + { + "epoch": 13.391437308868502, + "grad_norm": 0.30088478326797485, + "learning_rate": 0.0006, + "loss": 4.219697952270508, + "step": 964 + }, + { + "epoch": 13.405417212756662, + "grad_norm": 0.30388689041137695, + "learning_rate": 0.0006, + "loss": 4.187566757202148, + "step": 965 + }, + { + "epoch": 13.419397116644824, + "grad_norm": 0.27918127179145813, + "learning_rate": 0.0006, + "loss": 4.223600387573242, + "step": 966 + }, + { + "epoch": 13.433377020532983, + "grad_norm": 0.27634528279304504, + "learning_rate": 0.0006, + "loss": 4.165332317352295, + "step": 967 + }, + { + "epoch": 13.447356924421145, + "grad_norm": 0.28830021619796753, + "learning_rate": 0.0006, + "loss": 4.204029560089111, + "step": 968 + }, + { + "epoch": 13.461336828309305, + "grad_norm": 0.29220864176750183, + "learning_rate": 0.0006, + "loss": 4.218057155609131, + "step": 969 + }, + { + "epoch": 13.475316732197467, + "grad_norm": 0.3089624345302582, + "learning_rate": 0.0006, + "loss": 4.200654983520508, + "step": 970 + }, + { + "epoch": 13.489296636085626, + "grad_norm": 0.36479851603507996, + "learning_rate": 0.0006, + "loss": 4.182811737060547, + "step": 971 + }, + { + "epoch": 13.503276539973788, + "grad_norm": 0.37561097741127014, + "learning_rate": 0.0006, + "loss": 4.190266132354736, + "step": 972 + }, + { + "epoch": 13.517256443861948, + "grad_norm": 0.3263583183288574, + "learning_rate": 0.0006, + "loss": 4.214815616607666, + "step": 973 + }, + { + "epoch": 13.53123634775011, + "grad_norm": 0.21552999317646027, + "learning_rate": 0.0006, + "loss": 4.171380043029785, + "step": 974 + }, + { + "epoch": 13.54521625163827, + "grad_norm": 0.247328519821167, + "learning_rate": 0.0006, + "loss": 4.175377368927002, + "step": 975 + }, + { + "epoch": 13.55919615552643, + "grad_norm": 0.23740540444850922, + "learning_rate": 0.0006, + "loss": 4.212357997894287, + "step": 976 + }, + { + "epoch": 13.57317605941459, + "grad_norm": 0.21533876657485962, + "learning_rate": 0.0006, + "loss": 4.203285217285156, + "step": 977 + }, + { + "epoch": 13.587155963302752, + "grad_norm": 0.21462024748325348, + "learning_rate": 0.0006, + "loss": 4.178012371063232, + "step": 978 + }, + { + "epoch": 13.601135867190912, + "grad_norm": 0.2279169261455536, + "learning_rate": 0.0006, + "loss": 4.193912982940674, + "step": 979 + }, + { + "epoch": 13.615115771079074, + "grad_norm": 0.2202417552471161, + "learning_rate": 0.0006, + "loss": 4.167629718780518, + "step": 980 + }, + { + "epoch": 13.629095674967235, + "grad_norm": 0.20586472749710083, + "learning_rate": 0.0006, + "loss": 4.159290313720703, + "step": 981 + }, + { + "epoch": 13.643075578855395, + "grad_norm": 0.20200690627098083, + "learning_rate": 0.0006, + "loss": 4.210315227508545, + "step": 982 + }, + { + "epoch": 13.657055482743557, + "grad_norm": 0.21710257232189178, + "learning_rate": 0.0006, + "loss": 4.21730375289917, + "step": 983 + }, + { + "epoch": 13.671035386631717, + "grad_norm": 0.22058045864105225, + "learning_rate": 0.0006, + "loss": 4.1996073722839355, + "step": 984 + }, + { + "epoch": 13.685015290519878, + "grad_norm": 0.21549592912197113, + "learning_rate": 0.0006, + "loss": 4.209203720092773, + "step": 985 + }, + { + "epoch": 13.698995194408038, + "grad_norm": 0.22274717688560486, + "learning_rate": 0.0006, + "loss": 4.220660209655762, + "step": 986 + }, + { + "epoch": 13.7129750982962, + "grad_norm": 0.22791637480258942, + "learning_rate": 0.0006, + "loss": 4.158679962158203, + "step": 987 + }, + { + "epoch": 13.72695500218436, + "grad_norm": 0.216218963265419, + "learning_rate": 0.0006, + "loss": 4.188124656677246, + "step": 988 + }, + { + "epoch": 13.740934906072521, + "grad_norm": 0.19149383902549744, + "learning_rate": 0.0006, + "loss": 4.181729316711426, + "step": 989 + }, + { + "epoch": 13.754914809960681, + "grad_norm": 0.18964019417762756, + "learning_rate": 0.0006, + "loss": 4.184767246246338, + "step": 990 + }, + { + "epoch": 13.768894713848843, + "grad_norm": 0.1778000295162201, + "learning_rate": 0.0006, + "loss": 4.1802263259887695, + "step": 991 + }, + { + "epoch": 13.782874617737003, + "grad_norm": 0.18277616798877716, + "learning_rate": 0.0006, + "loss": 4.1657867431640625, + "step": 992 + }, + { + "epoch": 13.796854521625164, + "grad_norm": 0.18610034883022308, + "learning_rate": 0.0006, + "loss": 4.156744956970215, + "step": 993 + }, + { + "epoch": 13.810834425513324, + "grad_norm": 0.19332963228225708, + "learning_rate": 0.0006, + "loss": 4.143558502197266, + "step": 994 + }, + { + "epoch": 13.824814329401486, + "grad_norm": 0.19758112728595734, + "learning_rate": 0.0006, + "loss": 4.195793151855469, + "step": 995 + }, + { + "epoch": 13.838794233289645, + "grad_norm": 0.1933647245168686, + "learning_rate": 0.0006, + "loss": 4.169734954833984, + "step": 996 + }, + { + "epoch": 13.852774137177807, + "grad_norm": 0.2362028956413269, + "learning_rate": 0.0006, + "loss": 4.175025939941406, + "step": 997 + }, + { + "epoch": 13.866754041065967, + "grad_norm": 0.2465490996837616, + "learning_rate": 0.0006, + "loss": 4.173909664154053, + "step": 998 + }, + { + "epoch": 13.880733944954128, + "grad_norm": 0.23449952900409698, + "learning_rate": 0.0006, + "loss": 4.173429489135742, + "step": 999 + }, + { + "epoch": 13.89471384884229, + "grad_norm": 0.2282160222530365, + "learning_rate": 0.0006, + "loss": 4.158538341522217, + "step": 1000 + }, + { + "epoch": 13.90869375273045, + "grad_norm": 0.21066738665103912, + "learning_rate": 0.0006, + "loss": 4.171584129333496, + "step": 1001 + }, + { + "epoch": 13.922673656618612, + "grad_norm": 0.18787573277950287, + "learning_rate": 0.0006, + "loss": 4.1837544441223145, + "step": 1002 + }, + { + "epoch": 13.936653560506771, + "grad_norm": 0.2001059353351593, + "learning_rate": 0.0006, + "loss": 4.160369873046875, + "step": 1003 + }, + { + "epoch": 13.950633464394933, + "grad_norm": 0.21644988656044006, + "learning_rate": 0.0006, + "loss": 4.221372604370117, + "step": 1004 + }, + { + "epoch": 13.964613368283093, + "grad_norm": 0.22083887457847595, + "learning_rate": 0.0006, + "loss": 4.149261474609375, + "step": 1005 + }, + { + "epoch": 13.978593272171254, + "grad_norm": 0.2201409637928009, + "learning_rate": 0.0006, + "loss": 4.192010879516602, + "step": 1006 + }, + { + "epoch": 13.992573176059414, + "grad_norm": 0.18888601660728455, + "learning_rate": 0.0006, + "loss": 4.17539119720459, + "step": 1007 + }, + { + "epoch": 14.0, + "grad_norm": 0.2073872834444046, + "learning_rate": 0.0006, + "loss": 4.145265579223633, + "step": 1008 + }, + { + "epoch": 14.0, + "eval_loss": 4.36876106262207, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 1008 + }, + { + "epoch": 14.013979903888162, + "grad_norm": 0.20773135125637054, + "learning_rate": 0.0006, + "loss": 4.132615089416504, + "step": 1009 + }, + { + "epoch": 14.027959807776321, + "grad_norm": 0.22409620881080627, + "learning_rate": 0.0006, + "loss": 4.172839164733887, + "step": 1010 + }, + { + "epoch": 14.041939711664483, + "grad_norm": 0.24046066403388977, + "learning_rate": 0.0006, + "loss": 4.126678943634033, + "step": 1011 + }, + { + "epoch": 14.055919615552643, + "grad_norm": 0.29185160994529724, + "learning_rate": 0.0006, + "loss": 4.177952766418457, + "step": 1012 + }, + { + "epoch": 14.069899519440805, + "grad_norm": 0.2984033226966858, + "learning_rate": 0.0006, + "loss": 4.155030250549316, + "step": 1013 + }, + { + "epoch": 14.083879423328964, + "grad_norm": 0.30262473225593567, + "learning_rate": 0.0006, + "loss": 4.145394325256348, + "step": 1014 + }, + { + "epoch": 14.097859327217126, + "grad_norm": 0.3278133273124695, + "learning_rate": 0.0006, + "loss": 4.172739028930664, + "step": 1015 + }, + { + "epoch": 14.111839231105286, + "grad_norm": 0.3285452425479889, + "learning_rate": 0.0006, + "loss": 4.153196334838867, + "step": 1016 + }, + { + "epoch": 14.125819134993447, + "grad_norm": 0.33912697434425354, + "learning_rate": 0.0006, + "loss": 4.098162651062012, + "step": 1017 + }, + { + "epoch": 14.139799038881607, + "grad_norm": 0.32080814242362976, + "learning_rate": 0.0006, + "loss": 4.157135009765625, + "step": 1018 + }, + { + "epoch": 14.153778942769769, + "grad_norm": 0.31288477778434753, + "learning_rate": 0.0006, + "loss": 4.142683029174805, + "step": 1019 + }, + { + "epoch": 14.167758846657929, + "grad_norm": 0.350289523601532, + "learning_rate": 0.0006, + "loss": 4.134700775146484, + "step": 1020 + }, + { + "epoch": 14.18173875054609, + "grad_norm": 0.34274575114250183, + "learning_rate": 0.0006, + "loss": 4.1578569412231445, + "step": 1021 + }, + { + "epoch": 14.19571865443425, + "grad_norm": 0.2843035161495209, + "learning_rate": 0.0006, + "loss": 4.13760232925415, + "step": 1022 + }, + { + "epoch": 14.209698558322412, + "grad_norm": 0.28235161304473877, + "learning_rate": 0.0006, + "loss": 4.1492462158203125, + "step": 1023 + }, + { + "epoch": 14.223678462210572, + "grad_norm": 0.24407248198986053, + "learning_rate": 0.0006, + "loss": 4.144372463226318, + "step": 1024 + }, + { + "epoch": 14.237658366098733, + "grad_norm": 0.2489742934703827, + "learning_rate": 0.0006, + "loss": 4.137950897216797, + "step": 1025 + }, + { + "epoch": 14.251638269986893, + "grad_norm": 0.26035651564598083, + "learning_rate": 0.0006, + "loss": 4.144070625305176, + "step": 1026 + }, + { + "epoch": 14.265618173875055, + "grad_norm": 0.2726516127586365, + "learning_rate": 0.0006, + "loss": 4.145204067230225, + "step": 1027 + }, + { + "epoch": 14.279598077763215, + "grad_norm": 0.2723483443260193, + "learning_rate": 0.0006, + "loss": 4.118407249450684, + "step": 1028 + }, + { + "epoch": 14.293577981651376, + "grad_norm": 0.27476269006729126, + "learning_rate": 0.0006, + "loss": 4.111325263977051, + "step": 1029 + }, + { + "epoch": 14.307557885539538, + "grad_norm": 0.26202502846717834, + "learning_rate": 0.0006, + "loss": 4.122248649597168, + "step": 1030 + }, + { + "epoch": 14.321537789427698, + "grad_norm": 0.2472032904624939, + "learning_rate": 0.0006, + "loss": 4.157790184020996, + "step": 1031 + }, + { + "epoch": 14.33551769331586, + "grad_norm": 0.2518343925476074, + "learning_rate": 0.0006, + "loss": 4.109132766723633, + "step": 1032 + }, + { + "epoch": 14.349497597204019, + "grad_norm": 0.2652401924133301, + "learning_rate": 0.0006, + "loss": 4.144079685211182, + "step": 1033 + }, + { + "epoch": 14.36347750109218, + "grad_norm": 0.2356770783662796, + "learning_rate": 0.0006, + "loss": 4.128426551818848, + "step": 1034 + }, + { + "epoch": 14.37745740498034, + "grad_norm": 0.2164214551448822, + "learning_rate": 0.0006, + "loss": 4.1644392013549805, + "step": 1035 + }, + { + "epoch": 14.391437308868502, + "grad_norm": 0.22383111715316772, + "learning_rate": 0.0006, + "loss": 4.165862083435059, + "step": 1036 + }, + { + "epoch": 14.405417212756662, + "grad_norm": 0.23152419924736023, + "learning_rate": 0.0006, + "loss": 4.140036582946777, + "step": 1037 + }, + { + "epoch": 14.419397116644824, + "grad_norm": 0.2387741357088089, + "learning_rate": 0.0006, + "loss": 4.130461692810059, + "step": 1038 + }, + { + "epoch": 14.433377020532983, + "grad_norm": 0.24018129706382751, + "learning_rate": 0.0006, + "loss": 4.148482322692871, + "step": 1039 + }, + { + "epoch": 14.447356924421145, + "grad_norm": 0.25487351417541504, + "learning_rate": 0.0006, + "loss": 4.158121109008789, + "step": 1040 + }, + { + "epoch": 14.461336828309305, + "grad_norm": 0.28220096230506897, + "learning_rate": 0.0006, + "loss": 4.160198211669922, + "step": 1041 + }, + { + "epoch": 14.475316732197467, + "grad_norm": 0.2574434280395508, + "learning_rate": 0.0006, + "loss": 4.168512344360352, + "step": 1042 + }, + { + "epoch": 14.489296636085626, + "grad_norm": 0.22569820284843445, + "learning_rate": 0.0006, + "loss": 4.1595001220703125, + "step": 1043 + }, + { + "epoch": 14.503276539973788, + "grad_norm": 0.2473423182964325, + "learning_rate": 0.0006, + "loss": 4.084580898284912, + "step": 1044 + }, + { + "epoch": 14.517256443861948, + "grad_norm": 0.24281060695648193, + "learning_rate": 0.0006, + "loss": 4.139714241027832, + "step": 1045 + }, + { + "epoch": 14.53123634775011, + "grad_norm": 0.24691344797611237, + "learning_rate": 0.0006, + "loss": 4.115398406982422, + "step": 1046 + }, + { + "epoch": 14.54521625163827, + "grad_norm": 0.2583645284175873, + "learning_rate": 0.0006, + "loss": 4.142148494720459, + "step": 1047 + }, + { + "epoch": 14.55919615552643, + "grad_norm": 0.23258574306964874, + "learning_rate": 0.0006, + "loss": 4.16251277923584, + "step": 1048 + }, + { + "epoch": 14.57317605941459, + "grad_norm": 0.22103039920330048, + "learning_rate": 0.0006, + "loss": 4.1308441162109375, + "step": 1049 + }, + { + "epoch": 14.587155963302752, + "grad_norm": 0.23713579773902893, + "learning_rate": 0.0006, + "loss": 4.1565985679626465, + "step": 1050 + }, + { + "epoch": 14.601135867190912, + "grad_norm": 0.24406634271144867, + "learning_rate": 0.0006, + "loss": 4.14628267288208, + "step": 1051 + }, + { + "epoch": 14.615115771079074, + "grad_norm": 0.26821228861808777, + "learning_rate": 0.0006, + "loss": 4.138063430786133, + "step": 1052 + }, + { + "epoch": 14.629095674967235, + "grad_norm": 0.25483864545822144, + "learning_rate": 0.0006, + "loss": 4.1311163902282715, + "step": 1053 + }, + { + "epoch": 14.643075578855395, + "grad_norm": 0.23937982320785522, + "learning_rate": 0.0006, + "loss": 4.150882244110107, + "step": 1054 + }, + { + "epoch": 14.657055482743557, + "grad_norm": 0.21896475553512573, + "learning_rate": 0.0006, + "loss": 4.114015102386475, + "step": 1055 + }, + { + "epoch": 14.671035386631717, + "grad_norm": 0.20821231603622437, + "learning_rate": 0.0006, + "loss": 4.139034271240234, + "step": 1056 + }, + { + "epoch": 14.685015290519878, + "grad_norm": 0.1978551596403122, + "learning_rate": 0.0006, + "loss": 4.1810503005981445, + "step": 1057 + }, + { + "epoch": 14.698995194408038, + "grad_norm": 0.1945771872997284, + "learning_rate": 0.0006, + "loss": 4.120734214782715, + "step": 1058 + }, + { + "epoch": 14.7129750982962, + "grad_norm": 0.19518673419952393, + "learning_rate": 0.0006, + "loss": 4.14264440536499, + "step": 1059 + }, + { + "epoch": 14.72695500218436, + "grad_norm": 0.202596515417099, + "learning_rate": 0.0006, + "loss": 4.151649475097656, + "step": 1060 + }, + { + "epoch": 14.740934906072521, + "grad_norm": 0.1904762089252472, + "learning_rate": 0.0006, + "loss": 4.127899169921875, + "step": 1061 + }, + { + "epoch": 14.754914809960681, + "grad_norm": 0.20685508847236633, + "learning_rate": 0.0006, + "loss": 4.093445777893066, + "step": 1062 + }, + { + "epoch": 14.768894713848843, + "grad_norm": 0.22678329050540924, + "learning_rate": 0.0006, + "loss": 4.132084369659424, + "step": 1063 + }, + { + "epoch": 14.782874617737003, + "grad_norm": 0.24631841480731964, + "learning_rate": 0.0006, + "loss": 4.154788970947266, + "step": 1064 + }, + { + "epoch": 14.796854521625164, + "grad_norm": 0.24445782601833344, + "learning_rate": 0.0006, + "loss": 4.144735336303711, + "step": 1065 + }, + { + "epoch": 14.810834425513324, + "grad_norm": 0.22330640256404877, + "learning_rate": 0.0006, + "loss": 4.159893989562988, + "step": 1066 + }, + { + "epoch": 14.824814329401486, + "grad_norm": 0.22422967851161957, + "learning_rate": 0.0006, + "loss": 4.104874610900879, + "step": 1067 + }, + { + "epoch": 14.838794233289645, + "grad_norm": 0.24583931267261505, + "learning_rate": 0.0006, + "loss": 4.139403820037842, + "step": 1068 + }, + { + "epoch": 14.852774137177807, + "grad_norm": 0.2917379140853882, + "learning_rate": 0.0006, + "loss": 4.168988227844238, + "step": 1069 + }, + { + "epoch": 14.866754041065967, + "grad_norm": 0.3171777129173279, + "learning_rate": 0.0006, + "loss": 4.131263732910156, + "step": 1070 + }, + { + "epoch": 14.880733944954128, + "grad_norm": 0.3039591312408447, + "learning_rate": 0.0006, + "loss": 4.149853706359863, + "step": 1071 + }, + { + "epoch": 14.89471384884229, + "grad_norm": 0.2690650522708893, + "learning_rate": 0.0006, + "loss": 4.154787540435791, + "step": 1072 + }, + { + "epoch": 14.90869375273045, + "grad_norm": 0.28683212399482727, + "learning_rate": 0.0006, + "loss": 4.12751579284668, + "step": 1073 + }, + { + "epoch": 14.922673656618612, + "grad_norm": 0.30022913217544556, + "learning_rate": 0.0006, + "loss": 4.141940116882324, + "step": 1074 + }, + { + "epoch": 14.936653560506771, + "grad_norm": 0.3312259316444397, + "learning_rate": 0.0006, + "loss": 4.141905784606934, + "step": 1075 + }, + { + "epoch": 14.950633464394933, + "grad_norm": 0.31159237027168274, + "learning_rate": 0.0006, + "loss": 4.160192966461182, + "step": 1076 + }, + { + "epoch": 14.964613368283093, + "grad_norm": 0.30093592405319214, + "learning_rate": 0.0006, + "loss": 4.1085076332092285, + "step": 1077 + }, + { + "epoch": 14.978593272171254, + "grad_norm": 0.2728535830974579, + "learning_rate": 0.0006, + "loss": 4.156959056854248, + "step": 1078 + }, + { + "epoch": 14.992573176059414, + "grad_norm": 0.24766813218593597, + "learning_rate": 0.0006, + "loss": 4.113999843597412, + "step": 1079 + }, + { + "epoch": 15.0, + "grad_norm": 0.2538154721260071, + "learning_rate": 0.0006, + "loss": 4.147134780883789, + "step": 1080 + }, + { + "epoch": 15.0, + "eval_loss": 4.323154926300049, + "eval_runtime": 44.8813, + "eval_samples_per_second": 54.41, + "eval_steps_per_second": 3.409, + "step": 1080 + }, + { + "epoch": 15.013979903888162, + "grad_norm": 0.22535280883312225, + "learning_rate": 0.0006, + "loss": 4.112179756164551, + "step": 1081 + }, + { + "epoch": 15.027959807776321, + "grad_norm": 0.24340929090976715, + "learning_rate": 0.0006, + "loss": 4.080923080444336, + "step": 1082 + }, + { + "epoch": 15.041939711664483, + "grad_norm": 0.23159465193748474, + "learning_rate": 0.0006, + "loss": 4.097067356109619, + "step": 1083 + }, + { + "epoch": 15.055919615552643, + "grad_norm": 0.22674769163131714, + "learning_rate": 0.0006, + "loss": 4.118601322174072, + "step": 1084 + }, + { + "epoch": 15.069899519440805, + "grad_norm": 0.2524292469024658, + "learning_rate": 0.0006, + "loss": 4.101109504699707, + "step": 1085 + }, + { + "epoch": 15.083879423328964, + "grad_norm": 0.2505405843257904, + "learning_rate": 0.0006, + "loss": 4.121405601501465, + "step": 1086 + }, + { + "epoch": 15.097859327217126, + "grad_norm": 0.2557983696460724, + "learning_rate": 0.0006, + "loss": 4.1063947677612305, + "step": 1087 + }, + { + "epoch": 15.111839231105286, + "grad_norm": 0.24452129006385803, + "learning_rate": 0.0006, + "loss": 4.086133003234863, + "step": 1088 + }, + { + "epoch": 15.125819134993447, + "grad_norm": 0.25821781158447266, + "learning_rate": 0.0006, + "loss": 4.076262950897217, + "step": 1089 + }, + { + "epoch": 15.139799038881607, + "grad_norm": 0.23650537431240082, + "learning_rate": 0.0006, + "loss": 4.101842880249023, + "step": 1090 + }, + { + "epoch": 15.153778942769769, + "grad_norm": 0.2206192910671234, + "learning_rate": 0.0006, + "loss": 4.11027193069458, + "step": 1091 + }, + { + "epoch": 15.167758846657929, + "grad_norm": 0.21843163669109344, + "learning_rate": 0.0006, + "loss": 4.098437309265137, + "step": 1092 + }, + { + "epoch": 15.18173875054609, + "grad_norm": 0.2528176009654999, + "learning_rate": 0.0006, + "loss": 4.108713150024414, + "step": 1093 + }, + { + "epoch": 15.19571865443425, + "grad_norm": 0.26697206497192383, + "learning_rate": 0.0006, + "loss": 4.113210201263428, + "step": 1094 + }, + { + "epoch": 15.209698558322412, + "grad_norm": 0.26480963826179504, + "learning_rate": 0.0006, + "loss": 4.1103620529174805, + "step": 1095 + }, + { + "epoch": 15.223678462210572, + "grad_norm": 0.24887347221374512, + "learning_rate": 0.0006, + "loss": 4.103529930114746, + "step": 1096 + }, + { + "epoch": 15.237658366098733, + "grad_norm": 0.2344668060541153, + "learning_rate": 0.0006, + "loss": 4.129784107208252, + "step": 1097 + }, + { + "epoch": 15.251638269986893, + "grad_norm": 0.22639742493629456, + "learning_rate": 0.0006, + "loss": 4.113495349884033, + "step": 1098 + }, + { + "epoch": 15.265618173875055, + "grad_norm": 0.22466333210468292, + "learning_rate": 0.0006, + "loss": 4.102309703826904, + "step": 1099 + }, + { + "epoch": 15.279598077763215, + "grad_norm": 0.25135037302970886, + "learning_rate": 0.0006, + "loss": 4.117668628692627, + "step": 1100 + }, + { + "epoch": 15.293577981651376, + "grad_norm": 0.2347089946269989, + "learning_rate": 0.0006, + "loss": 4.086637496948242, + "step": 1101 + }, + { + "epoch": 15.307557885539538, + "grad_norm": 0.2347242832183838, + "learning_rate": 0.0006, + "loss": 4.098714828491211, + "step": 1102 + }, + { + "epoch": 15.321537789427698, + "grad_norm": 0.23990283906459808, + "learning_rate": 0.0006, + "loss": 4.079837799072266, + "step": 1103 + }, + { + "epoch": 15.33551769331586, + "grad_norm": 0.22366675734519958, + "learning_rate": 0.0006, + "loss": 4.108136177062988, + "step": 1104 + }, + { + "epoch": 15.349497597204019, + "grad_norm": 0.21823780238628387, + "learning_rate": 0.0006, + "loss": 4.10054349899292, + "step": 1105 + }, + { + "epoch": 15.36347750109218, + "grad_norm": 0.23059198260307312, + "learning_rate": 0.0006, + "loss": 4.108620643615723, + "step": 1106 + }, + { + "epoch": 15.37745740498034, + "grad_norm": 0.2313755601644516, + "learning_rate": 0.0006, + "loss": 4.088565826416016, + "step": 1107 + }, + { + "epoch": 15.391437308868502, + "grad_norm": 0.2546829283237457, + "learning_rate": 0.0006, + "loss": 4.104948043823242, + "step": 1108 + }, + { + "epoch": 15.405417212756662, + "grad_norm": 0.23666726052761078, + "learning_rate": 0.0006, + "loss": 4.111965179443359, + "step": 1109 + }, + { + "epoch": 15.419397116644824, + "grad_norm": 0.21971021592617035, + "learning_rate": 0.0006, + "loss": 4.097846984863281, + "step": 1110 + }, + { + "epoch": 15.433377020532983, + "grad_norm": 0.20951911807060242, + "learning_rate": 0.0006, + "loss": 4.110099792480469, + "step": 1111 + }, + { + "epoch": 15.447356924421145, + "grad_norm": 0.19590918719768524, + "learning_rate": 0.0006, + "loss": 4.101154327392578, + "step": 1112 + }, + { + "epoch": 15.461336828309305, + "grad_norm": 0.21048946678638458, + "learning_rate": 0.0006, + "loss": 4.0986127853393555, + "step": 1113 + }, + { + "epoch": 15.475316732197467, + "grad_norm": 0.21423374116420746, + "learning_rate": 0.0006, + "loss": 4.082328796386719, + "step": 1114 + }, + { + "epoch": 15.489296636085626, + "grad_norm": 0.227146714925766, + "learning_rate": 0.0006, + "loss": 4.105281829833984, + "step": 1115 + }, + { + "epoch": 15.503276539973788, + "grad_norm": 0.2079153060913086, + "learning_rate": 0.0006, + "loss": 4.100836753845215, + "step": 1116 + }, + { + "epoch": 15.517256443861948, + "grad_norm": 0.21084675192832947, + "learning_rate": 0.0006, + "loss": 4.0934343338012695, + "step": 1117 + }, + { + "epoch": 15.53123634775011, + "grad_norm": 0.23863616585731506, + "learning_rate": 0.0006, + "loss": 4.101540565490723, + "step": 1118 + }, + { + "epoch": 15.54521625163827, + "grad_norm": 0.2518490254878998, + "learning_rate": 0.0006, + "loss": 4.12303352355957, + "step": 1119 + }, + { + "epoch": 15.55919615552643, + "grad_norm": 0.24282905459403992, + "learning_rate": 0.0006, + "loss": 4.080670356750488, + "step": 1120 + }, + { + "epoch": 15.57317605941459, + "grad_norm": 0.24171605706214905, + "learning_rate": 0.0006, + "loss": 4.117938041687012, + "step": 1121 + }, + { + "epoch": 15.587155963302752, + "grad_norm": 0.28453412652015686, + "learning_rate": 0.0006, + "loss": 4.080114364624023, + "step": 1122 + }, + { + "epoch": 15.601135867190912, + "grad_norm": 0.30322617292404175, + "learning_rate": 0.0006, + "loss": 4.079695701599121, + "step": 1123 + }, + { + "epoch": 15.615115771079074, + "grad_norm": 0.2657633125782013, + "learning_rate": 0.0006, + "loss": 4.0916290283203125, + "step": 1124 + }, + { + "epoch": 15.629095674967235, + "grad_norm": 0.2467080056667328, + "learning_rate": 0.0006, + "loss": 4.095594882965088, + "step": 1125 + }, + { + "epoch": 15.643075578855395, + "grad_norm": 0.21767394244670868, + "learning_rate": 0.0006, + "loss": 4.079174041748047, + "step": 1126 + }, + { + "epoch": 15.657055482743557, + "grad_norm": 0.2088327705860138, + "learning_rate": 0.0006, + "loss": 4.060707092285156, + "step": 1127 + }, + { + "epoch": 15.671035386631717, + "grad_norm": 0.1921205073595047, + "learning_rate": 0.0006, + "loss": 4.073911666870117, + "step": 1128 + }, + { + "epoch": 15.685015290519878, + "grad_norm": 0.209339901804924, + "learning_rate": 0.0006, + "loss": 4.089954376220703, + "step": 1129 + }, + { + "epoch": 15.698995194408038, + "grad_norm": 0.23513881862163544, + "learning_rate": 0.0006, + "loss": 4.084906578063965, + "step": 1130 + }, + { + "epoch": 15.7129750982962, + "grad_norm": 0.26140275597572327, + "learning_rate": 0.0006, + "loss": 4.086570739746094, + "step": 1131 + }, + { + "epoch": 15.72695500218436, + "grad_norm": 0.290431946516037, + "learning_rate": 0.0006, + "loss": 4.071229457855225, + "step": 1132 + }, + { + "epoch": 15.740934906072521, + "grad_norm": 0.3061376214027405, + "learning_rate": 0.0006, + "loss": 4.103148460388184, + "step": 1133 + }, + { + "epoch": 15.754914809960681, + "grad_norm": 0.26312482357025146, + "learning_rate": 0.0006, + "loss": 4.088448524475098, + "step": 1134 + }, + { + "epoch": 15.768894713848843, + "grad_norm": 0.22474883496761322, + "learning_rate": 0.0006, + "loss": 4.091766834259033, + "step": 1135 + }, + { + "epoch": 15.782874617737003, + "grad_norm": 0.2341146171092987, + "learning_rate": 0.0006, + "loss": 4.1222758293151855, + "step": 1136 + }, + { + "epoch": 15.796854521625164, + "grad_norm": 0.23556149005889893, + "learning_rate": 0.0006, + "loss": 4.094954013824463, + "step": 1137 + }, + { + "epoch": 15.810834425513324, + "grad_norm": 0.263315349817276, + "learning_rate": 0.0006, + "loss": 4.1065473556518555, + "step": 1138 + }, + { + "epoch": 15.824814329401486, + "grad_norm": 0.2700869143009186, + "learning_rate": 0.0006, + "loss": 4.0890045166015625, + "step": 1139 + }, + { + "epoch": 15.838794233289645, + "grad_norm": 0.28697484731674194, + "learning_rate": 0.0006, + "loss": 4.092496395111084, + "step": 1140 + }, + { + "epoch": 15.852774137177807, + "grad_norm": 0.2824092507362366, + "learning_rate": 0.0006, + "loss": 4.079615592956543, + "step": 1141 + }, + { + "epoch": 15.866754041065967, + "grad_norm": 0.24547280371189117, + "learning_rate": 0.0006, + "loss": 4.089683532714844, + "step": 1142 + }, + { + "epoch": 15.880733944954128, + "grad_norm": 0.23653888702392578, + "learning_rate": 0.0006, + "loss": 4.067309379577637, + "step": 1143 + }, + { + "epoch": 15.89471384884229, + "grad_norm": 0.23784421384334564, + "learning_rate": 0.0006, + "loss": 4.09156608581543, + "step": 1144 + }, + { + "epoch": 15.90869375273045, + "grad_norm": 0.22753281891345978, + "learning_rate": 0.0006, + "loss": 4.095428466796875, + "step": 1145 + }, + { + "epoch": 15.922673656618612, + "grad_norm": 0.2464212030172348, + "learning_rate": 0.0006, + "loss": 4.1036376953125, + "step": 1146 + }, + { + "epoch": 15.936653560506771, + "grad_norm": 0.25531601905822754, + "learning_rate": 0.0006, + "loss": 4.073996543884277, + "step": 1147 + }, + { + "epoch": 15.950633464394933, + "grad_norm": 0.24145905673503876, + "learning_rate": 0.0006, + "loss": 4.094479560852051, + "step": 1148 + }, + { + "epoch": 15.964613368283093, + "grad_norm": 0.24274317920207977, + "learning_rate": 0.0006, + "loss": 4.101981163024902, + "step": 1149 + }, + { + "epoch": 15.978593272171254, + "grad_norm": 0.2350679188966751, + "learning_rate": 0.0006, + "loss": 4.057965278625488, + "step": 1150 + }, + { + "epoch": 15.992573176059414, + "grad_norm": 0.24072253704071045, + "learning_rate": 0.0006, + "loss": 4.020050048828125, + "step": 1151 + }, + { + "epoch": 16.0, + "grad_norm": 0.253978967666626, + "learning_rate": 0.0006, + "loss": 4.061928749084473, + "step": 1152 + }, + { + "epoch": 16.0, + "eval_loss": 4.270665645599365, + "eval_runtime": 44.5063, + "eval_samples_per_second": 54.869, + "eval_steps_per_second": 3.438, + "step": 1152 + }, + { + "epoch": 16.01397990388816, + "grad_norm": 0.3265204131603241, + "learning_rate": 0.0006, + "loss": 4.059116363525391, + "step": 1153 + }, + { + "epoch": 16.027959807776323, + "grad_norm": 0.34139737486839294, + "learning_rate": 0.0006, + "loss": 4.062219619750977, + "step": 1154 + }, + { + "epoch": 16.041939711664483, + "grad_norm": 0.2849949598312378, + "learning_rate": 0.0006, + "loss": 4.032323837280273, + "step": 1155 + }, + { + "epoch": 16.055919615552643, + "grad_norm": 0.25031402707099915, + "learning_rate": 0.0006, + "loss": 4.075527191162109, + "step": 1156 + }, + { + "epoch": 16.069899519440803, + "grad_norm": 0.25207436084747314, + "learning_rate": 0.0006, + "loss": 4.0883097648620605, + "step": 1157 + }, + { + "epoch": 16.083879423328966, + "grad_norm": 0.28677356243133545, + "learning_rate": 0.0006, + "loss": 4.040797233581543, + "step": 1158 + }, + { + "epoch": 16.097859327217126, + "grad_norm": 0.30778825283050537, + "learning_rate": 0.0006, + "loss": 4.051504135131836, + "step": 1159 + }, + { + "epoch": 16.111839231105286, + "grad_norm": 0.3136911988258362, + "learning_rate": 0.0006, + "loss": 4.045449256896973, + "step": 1160 + }, + { + "epoch": 16.125819134993446, + "grad_norm": 0.34384530782699585, + "learning_rate": 0.0006, + "loss": 4.069897651672363, + "step": 1161 + }, + { + "epoch": 16.13979903888161, + "grad_norm": 0.3074268400669098, + "learning_rate": 0.0006, + "loss": 4.0621137619018555, + "step": 1162 + }, + { + "epoch": 16.15377894276977, + "grad_norm": 0.33090949058532715, + "learning_rate": 0.0006, + "loss": 4.084089279174805, + "step": 1163 + }, + { + "epoch": 16.16775884665793, + "grad_norm": 0.26358580589294434, + "learning_rate": 0.0006, + "loss": 4.066563606262207, + "step": 1164 + }, + { + "epoch": 16.18173875054609, + "grad_norm": 0.25586041808128357, + "learning_rate": 0.0006, + "loss": 4.08109188079834, + "step": 1165 + }, + { + "epoch": 16.195718654434252, + "grad_norm": 0.2966184616088867, + "learning_rate": 0.0006, + "loss": 4.039186477661133, + "step": 1166 + }, + { + "epoch": 16.209698558322412, + "grad_norm": 0.3064924478530884, + "learning_rate": 0.0006, + "loss": 4.08139705657959, + "step": 1167 + }, + { + "epoch": 16.22367846221057, + "grad_norm": 0.28671345114707947, + "learning_rate": 0.0006, + "loss": 4.04637336730957, + "step": 1168 + }, + { + "epoch": 16.23765836609873, + "grad_norm": 0.26209691166877747, + "learning_rate": 0.0006, + "loss": 4.052768707275391, + "step": 1169 + }, + { + "epoch": 16.251638269986895, + "grad_norm": 0.2758907079696655, + "learning_rate": 0.0006, + "loss": 4.064321517944336, + "step": 1170 + }, + { + "epoch": 16.265618173875055, + "grad_norm": 0.25961801409721375, + "learning_rate": 0.0006, + "loss": 4.057299613952637, + "step": 1171 + }, + { + "epoch": 16.279598077763215, + "grad_norm": 0.2513751685619354, + "learning_rate": 0.0006, + "loss": 4.064148902893066, + "step": 1172 + }, + { + "epoch": 16.293577981651374, + "grad_norm": 0.23920276761054993, + "learning_rate": 0.0006, + "loss": 4.101890563964844, + "step": 1173 + }, + { + "epoch": 16.307557885539538, + "grad_norm": 0.22746537625789642, + "learning_rate": 0.0006, + "loss": 4.086627006530762, + "step": 1174 + }, + { + "epoch": 16.321537789427698, + "grad_norm": 0.22633525729179382, + "learning_rate": 0.0006, + "loss": 4.04669189453125, + "step": 1175 + }, + { + "epoch": 16.335517693315857, + "grad_norm": 0.2654891610145569, + "learning_rate": 0.0006, + "loss": 4.086793422698975, + "step": 1176 + }, + { + "epoch": 16.34949759720402, + "grad_norm": 0.2872653007507324, + "learning_rate": 0.0006, + "loss": 4.077983856201172, + "step": 1177 + }, + { + "epoch": 16.36347750109218, + "grad_norm": 0.25726038217544556, + "learning_rate": 0.0006, + "loss": 4.066011428833008, + "step": 1178 + }, + { + "epoch": 16.37745740498034, + "grad_norm": 0.2592027485370636, + "learning_rate": 0.0006, + "loss": 4.0482988357543945, + "step": 1179 + }, + { + "epoch": 16.3914373088685, + "grad_norm": 0.2768886685371399, + "learning_rate": 0.0006, + "loss": 4.065151214599609, + "step": 1180 + }, + { + "epoch": 16.405417212756664, + "grad_norm": 0.2956002652645111, + "learning_rate": 0.0006, + "loss": 4.037791728973389, + "step": 1181 + }, + { + "epoch": 16.419397116644824, + "grad_norm": 0.3092120885848999, + "learning_rate": 0.0006, + "loss": 4.062164306640625, + "step": 1182 + }, + { + "epoch": 16.433377020532983, + "grad_norm": 0.29516810178756714, + "learning_rate": 0.0006, + "loss": 4.025505065917969, + "step": 1183 + }, + { + "epoch": 16.447356924421143, + "grad_norm": 0.2640177607536316, + "learning_rate": 0.0006, + "loss": 4.060182571411133, + "step": 1184 + }, + { + "epoch": 16.461336828309307, + "grad_norm": 0.2444908320903778, + "learning_rate": 0.0006, + "loss": 4.046144962310791, + "step": 1185 + }, + { + "epoch": 16.475316732197467, + "grad_norm": 0.23190705478191376, + "learning_rate": 0.0006, + "loss": 4.075569152832031, + "step": 1186 + }, + { + "epoch": 16.489296636085626, + "grad_norm": 0.2383626103401184, + "learning_rate": 0.0006, + "loss": 4.088897705078125, + "step": 1187 + }, + { + "epoch": 16.503276539973786, + "grad_norm": 0.20688803493976593, + "learning_rate": 0.0006, + "loss": 4.064517974853516, + "step": 1188 + }, + { + "epoch": 16.51725644386195, + "grad_norm": 0.22610054910182953, + "learning_rate": 0.0006, + "loss": 4.04502010345459, + "step": 1189 + }, + { + "epoch": 16.53123634775011, + "grad_norm": 0.2014893889427185, + "learning_rate": 0.0006, + "loss": 4.058279514312744, + "step": 1190 + }, + { + "epoch": 16.54521625163827, + "grad_norm": 0.21459777653217316, + "learning_rate": 0.0006, + "loss": 4.066389083862305, + "step": 1191 + }, + { + "epoch": 16.55919615552643, + "grad_norm": 0.22909940779209137, + "learning_rate": 0.0006, + "loss": 4.0557966232299805, + "step": 1192 + }, + { + "epoch": 16.573176059414592, + "grad_norm": 0.20039083063602448, + "learning_rate": 0.0006, + "loss": 4.092845916748047, + "step": 1193 + }, + { + "epoch": 16.587155963302752, + "grad_norm": 0.22651726007461548, + "learning_rate": 0.0006, + "loss": 4.034615516662598, + "step": 1194 + }, + { + "epoch": 16.601135867190912, + "grad_norm": 0.21901755034923553, + "learning_rate": 0.0006, + "loss": 4.035619735717773, + "step": 1195 + }, + { + "epoch": 16.615115771079076, + "grad_norm": 0.22930841147899628, + "learning_rate": 0.0006, + "loss": 4.080800533294678, + "step": 1196 + }, + { + "epoch": 16.629095674967235, + "grad_norm": 0.212818443775177, + "learning_rate": 0.0006, + "loss": 4.030189514160156, + "step": 1197 + }, + { + "epoch": 16.643075578855395, + "grad_norm": 0.2370826154947281, + "learning_rate": 0.0006, + "loss": 4.062643527984619, + "step": 1198 + }, + { + "epoch": 16.657055482743555, + "grad_norm": 0.24786995351314545, + "learning_rate": 0.0006, + "loss": 4.031761169433594, + "step": 1199 + }, + { + "epoch": 16.67103538663172, + "grad_norm": 0.2305847704410553, + "learning_rate": 0.0006, + "loss": 4.083752155303955, + "step": 1200 + }, + { + "epoch": 16.68501529051988, + "grad_norm": 0.23336584866046906, + "learning_rate": 0.0006, + "loss": 4.079145431518555, + "step": 1201 + }, + { + "epoch": 16.698995194408038, + "grad_norm": 0.23976293206214905, + "learning_rate": 0.0006, + "loss": 4.020473957061768, + "step": 1202 + }, + { + "epoch": 16.712975098296198, + "grad_norm": 0.222761869430542, + "learning_rate": 0.0006, + "loss": 4.065582752227783, + "step": 1203 + }, + { + "epoch": 16.72695500218436, + "grad_norm": 0.23725618422031403, + "learning_rate": 0.0006, + "loss": 4.0263776779174805, + "step": 1204 + }, + { + "epoch": 16.74093490607252, + "grad_norm": 0.23873984813690186, + "learning_rate": 0.0006, + "loss": 4.053092956542969, + "step": 1205 + }, + { + "epoch": 16.75491480996068, + "grad_norm": 0.21043002605438232, + "learning_rate": 0.0006, + "loss": 4.063965797424316, + "step": 1206 + }, + { + "epoch": 16.76889471384884, + "grad_norm": 0.19863522052764893, + "learning_rate": 0.0006, + "loss": 4.061187267303467, + "step": 1207 + }, + { + "epoch": 16.782874617737004, + "grad_norm": 0.1953752487897873, + "learning_rate": 0.0006, + "loss": 4.046016693115234, + "step": 1208 + }, + { + "epoch": 16.796854521625164, + "grad_norm": 0.2130361795425415, + "learning_rate": 0.0006, + "loss": 4.066933631896973, + "step": 1209 + }, + { + "epoch": 16.810834425513324, + "grad_norm": 0.19598130881786346, + "learning_rate": 0.0006, + "loss": 4.071558952331543, + "step": 1210 + }, + { + "epoch": 16.824814329401484, + "grad_norm": 0.20331116020679474, + "learning_rate": 0.0006, + "loss": 4.088632106781006, + "step": 1211 + }, + { + "epoch": 16.838794233289647, + "grad_norm": 0.20423150062561035, + "learning_rate": 0.0006, + "loss": 4.032224655151367, + "step": 1212 + }, + { + "epoch": 16.852774137177807, + "grad_norm": 0.2401197850704193, + "learning_rate": 0.0006, + "loss": 4.037393569946289, + "step": 1213 + }, + { + "epoch": 16.866754041065967, + "grad_norm": 0.26102620363235474, + "learning_rate": 0.0006, + "loss": 4.04738712310791, + "step": 1214 + }, + { + "epoch": 16.88073394495413, + "grad_norm": 0.2438521534204483, + "learning_rate": 0.0006, + "loss": 4.015673637390137, + "step": 1215 + }, + { + "epoch": 16.89471384884229, + "grad_norm": 0.20742061734199524, + "learning_rate": 0.0006, + "loss": 4.049060821533203, + "step": 1216 + }, + { + "epoch": 16.90869375273045, + "grad_norm": 0.22028608620166779, + "learning_rate": 0.0006, + "loss": 4.088971138000488, + "step": 1217 + }, + { + "epoch": 16.92267365661861, + "grad_norm": 0.21746744215488434, + "learning_rate": 0.0006, + "loss": 4.021710395812988, + "step": 1218 + }, + { + "epoch": 16.936653560506773, + "grad_norm": 0.2226102203130722, + "learning_rate": 0.0006, + "loss": 4.050119400024414, + "step": 1219 + }, + { + "epoch": 16.950633464394933, + "grad_norm": 0.23903657495975494, + "learning_rate": 0.0006, + "loss": 4.0570526123046875, + "step": 1220 + }, + { + "epoch": 16.964613368283093, + "grad_norm": 0.2556349039077759, + "learning_rate": 0.0006, + "loss": 4.0448808670043945, + "step": 1221 + }, + { + "epoch": 16.978593272171253, + "grad_norm": 0.28445592522621155, + "learning_rate": 0.0006, + "loss": 4.052034378051758, + "step": 1222 + }, + { + "epoch": 16.992573176059416, + "grad_norm": 0.273973673582077, + "learning_rate": 0.0006, + "loss": 4.02907657623291, + "step": 1223 + }, + { + "epoch": 17.0, + "grad_norm": 0.26125091314315796, + "learning_rate": 0.0006, + "loss": 4.10643196105957, + "step": 1224 + }, + { + "epoch": 17.0, + "eval_loss": 4.2585954666137695, + "eval_runtime": 44.8583, + "eval_samples_per_second": 54.438, + "eval_steps_per_second": 3.411, + "step": 1224 + }, + { + "epoch": 17.01397990388816, + "grad_norm": 0.2786196768283844, + "learning_rate": 0.0006, + "loss": 4.044719219207764, + "step": 1225 + }, + { + "epoch": 17.027959807776323, + "grad_norm": 0.2969571650028229, + "learning_rate": 0.0006, + "loss": 4.022037506103516, + "step": 1226 + }, + { + "epoch": 17.041939711664483, + "grad_norm": 0.32196253538131714, + "learning_rate": 0.0006, + "loss": 4.03636360168457, + "step": 1227 + }, + { + "epoch": 17.055919615552643, + "grad_norm": 0.28617000579833984, + "learning_rate": 0.0006, + "loss": 4.012125492095947, + "step": 1228 + }, + { + "epoch": 17.069899519440803, + "grad_norm": 0.26539644598960876, + "learning_rate": 0.0006, + "loss": 4.020190715789795, + "step": 1229 + }, + { + "epoch": 17.083879423328966, + "grad_norm": 0.24315394461154938, + "learning_rate": 0.0006, + "loss": 4.0553812980651855, + "step": 1230 + }, + { + "epoch": 17.097859327217126, + "grad_norm": 0.23798158764839172, + "learning_rate": 0.0006, + "loss": 4.004805088043213, + "step": 1231 + }, + { + "epoch": 17.111839231105286, + "grad_norm": 0.25723618268966675, + "learning_rate": 0.0006, + "loss": 4.00108003616333, + "step": 1232 + }, + { + "epoch": 17.125819134993446, + "grad_norm": 0.2669757604598999, + "learning_rate": 0.0006, + "loss": 4.00828742980957, + "step": 1233 + }, + { + "epoch": 17.13979903888161, + "grad_norm": 0.26421651244163513, + "learning_rate": 0.0006, + "loss": 3.995478391647339, + "step": 1234 + }, + { + "epoch": 17.15377894276977, + "grad_norm": 0.24745801091194153, + "learning_rate": 0.0006, + "loss": 4.0171027183532715, + "step": 1235 + }, + { + "epoch": 17.16775884665793, + "grad_norm": 0.27028775215148926, + "learning_rate": 0.0006, + "loss": 4.017108917236328, + "step": 1236 + }, + { + "epoch": 17.18173875054609, + "grad_norm": 0.27247968316078186, + "learning_rate": 0.0006, + "loss": 4.032601356506348, + "step": 1237 + }, + { + "epoch": 17.195718654434252, + "grad_norm": 0.24620869755744934, + "learning_rate": 0.0006, + "loss": 4.022171974182129, + "step": 1238 + }, + { + "epoch": 17.209698558322412, + "grad_norm": 0.23407386243343353, + "learning_rate": 0.0006, + "loss": 3.9946959018707275, + "step": 1239 + }, + { + "epoch": 17.22367846221057, + "grad_norm": 0.22559069097042084, + "learning_rate": 0.0006, + "loss": 4.013072490692139, + "step": 1240 + }, + { + "epoch": 17.23765836609873, + "grad_norm": 0.226687952876091, + "learning_rate": 0.0006, + "loss": 4.023543834686279, + "step": 1241 + }, + { + "epoch": 17.251638269986895, + "grad_norm": 0.24436360597610474, + "learning_rate": 0.0006, + "loss": 4.044206619262695, + "step": 1242 + }, + { + "epoch": 17.265618173875055, + "grad_norm": 0.25527626276016235, + "learning_rate": 0.0006, + "loss": 4.016424179077148, + "step": 1243 + }, + { + "epoch": 17.279598077763215, + "grad_norm": 0.26126864552497864, + "learning_rate": 0.0006, + "loss": 4.024394512176514, + "step": 1244 + }, + { + "epoch": 17.293577981651374, + "grad_norm": 0.25746744871139526, + "learning_rate": 0.0006, + "loss": 4.046844482421875, + "step": 1245 + }, + { + "epoch": 17.307557885539538, + "grad_norm": 0.26579564809799194, + "learning_rate": 0.0006, + "loss": 4.021010398864746, + "step": 1246 + }, + { + "epoch": 17.321537789427698, + "grad_norm": 0.2713971734046936, + "learning_rate": 0.0006, + "loss": 4.022331237792969, + "step": 1247 + }, + { + "epoch": 17.335517693315857, + "grad_norm": 0.24217180907726288, + "learning_rate": 0.0006, + "loss": 4.006353855133057, + "step": 1248 + }, + { + "epoch": 17.34949759720402, + "grad_norm": 0.26899752020835876, + "learning_rate": 0.0006, + "loss": 4.068023681640625, + "step": 1249 + }, + { + "epoch": 17.36347750109218, + "grad_norm": 0.26745253801345825, + "learning_rate": 0.0006, + "loss": 4.031207084655762, + "step": 1250 + }, + { + "epoch": 17.37745740498034, + "grad_norm": 0.21533764898777008, + "learning_rate": 0.0006, + "loss": 4.042410850524902, + "step": 1251 + }, + { + "epoch": 17.3914373088685, + "grad_norm": 0.21958027780056, + "learning_rate": 0.0006, + "loss": 4.02597713470459, + "step": 1252 + }, + { + "epoch": 17.405417212756664, + "grad_norm": 0.263068825006485, + "learning_rate": 0.0006, + "loss": 4.0035905838012695, + "step": 1253 + }, + { + "epoch": 17.419397116644824, + "grad_norm": 0.24044716358184814, + "learning_rate": 0.0006, + "loss": 4.005317687988281, + "step": 1254 + }, + { + "epoch": 17.433377020532983, + "grad_norm": 0.19142559170722961, + "learning_rate": 0.0006, + "loss": 3.9976844787597656, + "step": 1255 + }, + { + "epoch": 17.447356924421143, + "grad_norm": 0.18650250136852264, + "learning_rate": 0.0006, + "loss": 4.031353950500488, + "step": 1256 + }, + { + "epoch": 17.461336828309307, + "grad_norm": 0.1984022557735443, + "learning_rate": 0.0006, + "loss": 4.002097129821777, + "step": 1257 + }, + { + "epoch": 17.475316732197467, + "grad_norm": 0.20087844133377075, + "learning_rate": 0.0006, + "loss": 4.031151294708252, + "step": 1258 + }, + { + "epoch": 17.489296636085626, + "grad_norm": 0.20881228148937225, + "learning_rate": 0.0006, + "loss": 4.034793853759766, + "step": 1259 + }, + { + "epoch": 17.503276539973786, + "grad_norm": 0.23958556354045868, + "learning_rate": 0.0006, + "loss": 4.025238990783691, + "step": 1260 + }, + { + "epoch": 17.51725644386195, + "grad_norm": 0.23927845060825348, + "learning_rate": 0.0006, + "loss": 3.999828338623047, + "step": 1261 + }, + { + "epoch": 17.53123634775011, + "grad_norm": 0.20342715084552765, + "learning_rate": 0.0006, + "loss": 4.054262161254883, + "step": 1262 + }, + { + "epoch": 17.54521625163827, + "grad_norm": 0.21370555460453033, + "learning_rate": 0.0006, + "loss": 4.011582374572754, + "step": 1263 + }, + { + "epoch": 17.55919615552643, + "grad_norm": 0.23681946098804474, + "learning_rate": 0.0006, + "loss": 4.029694080352783, + "step": 1264 + }, + { + "epoch": 17.573176059414592, + "grad_norm": 0.24190311133861542, + "learning_rate": 0.0006, + "loss": 4.018783092498779, + "step": 1265 + }, + { + "epoch": 17.587155963302752, + "grad_norm": 0.23215509951114655, + "learning_rate": 0.0006, + "loss": 4.009703159332275, + "step": 1266 + }, + { + "epoch": 17.601135867190912, + "grad_norm": 0.21122977137565613, + "learning_rate": 0.0006, + "loss": 4.0345659255981445, + "step": 1267 + }, + { + "epoch": 17.615115771079076, + "grad_norm": 0.2075948715209961, + "learning_rate": 0.0006, + "loss": 4.070703506469727, + "step": 1268 + }, + { + "epoch": 17.629095674967235, + "grad_norm": 0.21667909622192383, + "learning_rate": 0.0006, + "loss": 4.020771503448486, + "step": 1269 + }, + { + "epoch": 17.643075578855395, + "grad_norm": 0.20960724353790283, + "learning_rate": 0.0006, + "loss": 4.026404857635498, + "step": 1270 + }, + { + "epoch": 17.657055482743555, + "grad_norm": 0.22575686872005463, + "learning_rate": 0.0006, + "loss": 4.01981258392334, + "step": 1271 + }, + { + "epoch": 17.67103538663172, + "grad_norm": 0.2565988302230835, + "learning_rate": 0.0006, + "loss": 4.015827178955078, + "step": 1272 + }, + { + "epoch": 17.68501529051988, + "grad_norm": 0.24831551313400269, + "learning_rate": 0.0006, + "loss": 4.012457847595215, + "step": 1273 + }, + { + "epoch": 17.698995194408038, + "grad_norm": 0.22595494985580444, + "learning_rate": 0.0006, + "loss": 4.031386375427246, + "step": 1274 + }, + { + "epoch": 17.712975098296198, + "grad_norm": 0.20687322318553925, + "learning_rate": 0.0006, + "loss": 4.014216423034668, + "step": 1275 + }, + { + "epoch": 17.72695500218436, + "grad_norm": 0.21916012465953827, + "learning_rate": 0.0006, + "loss": 4.037643909454346, + "step": 1276 + }, + { + "epoch": 17.74093490607252, + "grad_norm": 0.2243107706308365, + "learning_rate": 0.0006, + "loss": 4.033044815063477, + "step": 1277 + }, + { + "epoch": 17.75491480996068, + "grad_norm": 0.2402164787054062, + "learning_rate": 0.0006, + "loss": 4.026636123657227, + "step": 1278 + }, + { + "epoch": 17.76889471384884, + "grad_norm": 0.27957046031951904, + "learning_rate": 0.0006, + "loss": 4.0270867347717285, + "step": 1279 + }, + { + "epoch": 17.782874617737004, + "grad_norm": 0.27447596192359924, + "learning_rate": 0.0006, + "loss": 4.0120134353637695, + "step": 1280 + }, + { + "epoch": 17.796854521625164, + "grad_norm": 0.26926323771476746, + "learning_rate": 0.0006, + "loss": 4.027970314025879, + "step": 1281 + }, + { + "epoch": 17.810834425513324, + "grad_norm": 0.2535291314125061, + "learning_rate": 0.0006, + "loss": 4.002565383911133, + "step": 1282 + }, + { + "epoch": 17.824814329401484, + "grad_norm": 0.22639447450637817, + "learning_rate": 0.0006, + "loss": 4.032750606536865, + "step": 1283 + }, + { + "epoch": 17.838794233289647, + "grad_norm": 0.23384462296962738, + "learning_rate": 0.0006, + "loss": 4.03568172454834, + "step": 1284 + }, + { + "epoch": 17.852774137177807, + "grad_norm": 0.22971470654010773, + "learning_rate": 0.0006, + "loss": 4.031299591064453, + "step": 1285 + }, + { + "epoch": 17.866754041065967, + "grad_norm": 0.24540141224861145, + "learning_rate": 0.0006, + "loss": 4.0142669677734375, + "step": 1286 + }, + { + "epoch": 17.88073394495413, + "grad_norm": 0.2304888367652893, + "learning_rate": 0.0006, + "loss": 3.9964895248413086, + "step": 1287 + }, + { + "epoch": 17.89471384884229, + "grad_norm": 0.22082284092903137, + "learning_rate": 0.0006, + "loss": 4.024693489074707, + "step": 1288 + }, + { + "epoch": 17.90869375273045, + "grad_norm": 0.23677092790603638, + "learning_rate": 0.0006, + "loss": 4.002082347869873, + "step": 1289 + }, + { + "epoch": 17.92267365661861, + "grad_norm": 0.23122332990169525, + "learning_rate": 0.0006, + "loss": 4.025351524353027, + "step": 1290 + }, + { + "epoch": 17.936653560506773, + "grad_norm": 0.2548119127750397, + "learning_rate": 0.0006, + "loss": 3.9955825805664062, + "step": 1291 + }, + { + "epoch": 17.950633464394933, + "grad_norm": 0.26950931549072266, + "learning_rate": 0.0006, + "loss": 4.026151180267334, + "step": 1292 + }, + { + "epoch": 17.964613368283093, + "grad_norm": 0.3023233711719513, + "learning_rate": 0.0006, + "loss": 4.006035804748535, + "step": 1293 + }, + { + "epoch": 17.978593272171253, + "grad_norm": 0.3190958499908447, + "learning_rate": 0.0006, + "loss": 4.023565292358398, + "step": 1294 + }, + { + "epoch": 17.992573176059416, + "grad_norm": 0.28878068923950195, + "learning_rate": 0.0006, + "loss": 4.020973205566406, + "step": 1295 + }, + { + "epoch": 18.0, + "grad_norm": 0.27312418818473816, + "learning_rate": 0.0006, + "loss": 3.99906587600708, + "step": 1296 + }, + { + "epoch": 18.0, + "eval_loss": 4.224447250366211, + "eval_runtime": 52.5728, + "eval_samples_per_second": 46.45, + "eval_steps_per_second": 2.91, + "step": 1296 + }, + { + "epoch": 18.01397990388816, + "grad_norm": 0.2567712664604187, + "learning_rate": 0.0006, + "loss": 3.9755055904388428, + "step": 1297 + }, + { + "epoch": 18.027959807776323, + "grad_norm": 0.25048133730888367, + "learning_rate": 0.0006, + "loss": 4.009254455566406, + "step": 1298 + }, + { + "epoch": 18.041939711664483, + "grad_norm": 0.2556909918785095, + "learning_rate": 0.0006, + "loss": 4.001235008239746, + "step": 1299 + }, + { + "epoch": 18.055919615552643, + "grad_norm": 0.2501400113105774, + "learning_rate": 0.0006, + "loss": 3.980726480484009, + "step": 1300 + }, + { + "epoch": 18.069899519440803, + "grad_norm": 0.23977792263031006, + "learning_rate": 0.0006, + "loss": 3.964195728302002, + "step": 1301 + }, + { + "epoch": 18.083879423328966, + "grad_norm": 0.25650718808174133, + "learning_rate": 0.0006, + "loss": 4.015914440155029, + "step": 1302 + }, + { + "epoch": 18.097859327217126, + "grad_norm": 0.234053835272789, + "learning_rate": 0.0006, + "loss": 4.0159149169921875, + "step": 1303 + }, + { + "epoch": 18.111839231105286, + "grad_norm": 0.21967713534832, + "learning_rate": 0.0006, + "loss": 4.0055694580078125, + "step": 1304 + }, + { + "epoch": 18.125819134993446, + "grad_norm": 0.21790878474712372, + "learning_rate": 0.0006, + "loss": 3.986253261566162, + "step": 1305 + }, + { + "epoch": 18.13979903888161, + "grad_norm": 0.22955302894115448, + "learning_rate": 0.0006, + "loss": 3.959421157836914, + "step": 1306 + }, + { + "epoch": 18.15377894276977, + "grad_norm": 0.2559174597263336, + "learning_rate": 0.0006, + "loss": 4.0069756507873535, + "step": 1307 + }, + { + "epoch": 18.16775884665793, + "grad_norm": 0.26132866740226746, + "learning_rate": 0.0006, + "loss": 3.9874095916748047, + "step": 1308 + }, + { + "epoch": 18.18173875054609, + "grad_norm": 0.23258940875530243, + "learning_rate": 0.0006, + "loss": 3.9762492179870605, + "step": 1309 + }, + { + "epoch": 18.195718654434252, + "grad_norm": 0.22347190976142883, + "learning_rate": 0.0006, + "loss": 3.9923410415649414, + "step": 1310 + }, + { + "epoch": 18.209698558322412, + "grad_norm": 0.23095804452896118, + "learning_rate": 0.0006, + "loss": 4.019245624542236, + "step": 1311 + }, + { + "epoch": 18.22367846221057, + "grad_norm": 0.24817052483558655, + "learning_rate": 0.0006, + "loss": 3.9697511196136475, + "step": 1312 + }, + { + "epoch": 18.23765836609873, + "grad_norm": 0.2566024959087372, + "learning_rate": 0.0006, + "loss": 3.978804111480713, + "step": 1313 + }, + { + "epoch": 18.251638269986895, + "grad_norm": 0.2527952790260315, + "learning_rate": 0.0006, + "loss": 3.972018241882324, + "step": 1314 + }, + { + "epoch": 18.265618173875055, + "grad_norm": 0.2508150637149811, + "learning_rate": 0.0006, + "loss": 3.9971275329589844, + "step": 1315 + }, + { + "epoch": 18.279598077763215, + "grad_norm": 0.23242022097110748, + "learning_rate": 0.0006, + "loss": 3.9712045192718506, + "step": 1316 + }, + { + "epoch": 18.293577981651374, + "grad_norm": 0.23474404215812683, + "learning_rate": 0.0006, + "loss": 3.9926767349243164, + "step": 1317 + }, + { + "epoch": 18.307557885539538, + "grad_norm": 0.2417769432067871, + "learning_rate": 0.0006, + "loss": 3.9920949935913086, + "step": 1318 + }, + { + "epoch": 18.321537789427698, + "grad_norm": 0.23839452862739563, + "learning_rate": 0.0006, + "loss": 4.016645431518555, + "step": 1319 + }, + { + "epoch": 18.335517693315857, + "grad_norm": 0.2512452304363251, + "learning_rate": 0.0006, + "loss": 3.97586727142334, + "step": 1320 + }, + { + "epoch": 18.34949759720402, + "grad_norm": 0.27503693103790283, + "learning_rate": 0.0006, + "loss": 4.000148773193359, + "step": 1321 + }, + { + "epoch": 18.36347750109218, + "grad_norm": 0.27830836176872253, + "learning_rate": 0.0006, + "loss": 3.9972195625305176, + "step": 1322 + }, + { + "epoch": 18.37745740498034, + "grad_norm": 0.2571812570095062, + "learning_rate": 0.0006, + "loss": 3.9900810718536377, + "step": 1323 + }, + { + "epoch": 18.3914373088685, + "grad_norm": 0.2310052365064621, + "learning_rate": 0.0006, + "loss": 4.003000259399414, + "step": 1324 + }, + { + "epoch": 18.405417212756664, + "grad_norm": 0.19615735113620758, + "learning_rate": 0.0006, + "loss": 3.9536571502685547, + "step": 1325 + }, + { + "epoch": 18.419397116644824, + "grad_norm": 0.21323896944522858, + "learning_rate": 0.0006, + "loss": 3.977508068084717, + "step": 1326 + }, + { + "epoch": 18.433377020532983, + "grad_norm": 0.21404202282428741, + "learning_rate": 0.0006, + "loss": 4.015361785888672, + "step": 1327 + }, + { + "epoch": 18.447356924421143, + "grad_norm": 0.1991959661245346, + "learning_rate": 0.0006, + "loss": 4.000286102294922, + "step": 1328 + }, + { + "epoch": 18.461336828309307, + "grad_norm": 0.2073599398136139, + "learning_rate": 0.0006, + "loss": 3.973065137863159, + "step": 1329 + }, + { + "epoch": 18.475316732197467, + "grad_norm": 0.2096073031425476, + "learning_rate": 0.0006, + "loss": 3.987032890319824, + "step": 1330 + }, + { + "epoch": 18.489296636085626, + "grad_norm": 0.2380610853433609, + "learning_rate": 0.0006, + "loss": 4.035274505615234, + "step": 1331 + }, + { + "epoch": 18.503276539973786, + "grad_norm": 0.23570716381072998, + "learning_rate": 0.0006, + "loss": 4.010516166687012, + "step": 1332 + }, + { + "epoch": 18.51725644386195, + "grad_norm": 0.24805466830730438, + "learning_rate": 0.0006, + "loss": 3.9750983715057373, + "step": 1333 + }, + { + "epoch": 18.53123634775011, + "grad_norm": 0.25173231959342957, + "learning_rate": 0.0006, + "loss": 3.9742345809936523, + "step": 1334 + }, + { + "epoch": 18.54521625163827, + "grad_norm": 0.24590367078781128, + "learning_rate": 0.0006, + "loss": 4.0037312507629395, + "step": 1335 + }, + { + "epoch": 18.55919615552643, + "grad_norm": 0.24379394948482513, + "learning_rate": 0.0006, + "loss": 3.993858814239502, + "step": 1336 + }, + { + "epoch": 18.573176059414592, + "grad_norm": 0.21708883345127106, + "learning_rate": 0.0006, + "loss": 3.965670585632324, + "step": 1337 + }, + { + "epoch": 18.587155963302752, + "grad_norm": 0.21024051308631897, + "learning_rate": 0.0006, + "loss": 3.987551689147949, + "step": 1338 + }, + { + "epoch": 18.601135867190912, + "grad_norm": 0.23376783728599548, + "learning_rate": 0.0006, + "loss": 4.002841472625732, + "step": 1339 + }, + { + "epoch": 18.615115771079076, + "grad_norm": 0.25350701808929443, + "learning_rate": 0.0006, + "loss": 3.9881370067596436, + "step": 1340 + }, + { + "epoch": 18.629095674967235, + "grad_norm": 0.2542140483856201, + "learning_rate": 0.0006, + "loss": 4.003695964813232, + "step": 1341 + }, + { + "epoch": 18.643075578855395, + "grad_norm": 0.22932685911655426, + "learning_rate": 0.0006, + "loss": 4.0146002769470215, + "step": 1342 + }, + { + "epoch": 18.657055482743555, + "grad_norm": 0.21099458634853363, + "learning_rate": 0.0006, + "loss": 3.970472812652588, + "step": 1343 + }, + { + "epoch": 18.67103538663172, + "grad_norm": 0.2234615832567215, + "learning_rate": 0.0006, + "loss": 3.9821488857269287, + "step": 1344 + }, + { + "epoch": 18.68501529051988, + "grad_norm": 0.230327770113945, + "learning_rate": 0.0006, + "loss": 3.996274948120117, + "step": 1345 + }, + { + "epoch": 18.698995194408038, + "grad_norm": 0.23596233129501343, + "learning_rate": 0.0006, + "loss": 3.9747462272644043, + "step": 1346 + }, + { + "epoch": 18.712975098296198, + "grad_norm": 0.24173159897327423, + "learning_rate": 0.0006, + "loss": 4.011804103851318, + "step": 1347 + }, + { + "epoch": 18.72695500218436, + "grad_norm": 0.24087604880332947, + "learning_rate": 0.0006, + "loss": 4.008726119995117, + "step": 1348 + }, + { + "epoch": 18.74093490607252, + "grad_norm": 0.2457292526960373, + "learning_rate": 0.0006, + "loss": 3.990793228149414, + "step": 1349 + }, + { + "epoch": 18.75491480996068, + "grad_norm": 0.22946089506149292, + "learning_rate": 0.0006, + "loss": 3.980494260787964, + "step": 1350 + }, + { + "epoch": 18.76889471384884, + "grad_norm": 0.22986692190170288, + "learning_rate": 0.0006, + "loss": 3.97006893157959, + "step": 1351 + }, + { + "epoch": 18.782874617737004, + "grad_norm": 0.23358555138111115, + "learning_rate": 0.0006, + "loss": 4.008172035217285, + "step": 1352 + }, + { + "epoch": 18.796854521625164, + "grad_norm": 0.20183615386486053, + "learning_rate": 0.0006, + "loss": 3.9720888137817383, + "step": 1353 + }, + { + "epoch": 18.810834425513324, + "grad_norm": 0.19975653290748596, + "learning_rate": 0.0006, + "loss": 3.9783310890197754, + "step": 1354 + }, + { + "epoch": 18.824814329401484, + "grad_norm": 0.18911021947860718, + "learning_rate": 0.0006, + "loss": 3.985982894897461, + "step": 1355 + }, + { + "epoch": 18.838794233289647, + "grad_norm": 0.15984168648719788, + "learning_rate": 0.0006, + "loss": 3.9740548133850098, + "step": 1356 + }, + { + "epoch": 18.852774137177807, + "grad_norm": 0.1755436211824417, + "learning_rate": 0.0006, + "loss": 4.013090133666992, + "step": 1357 + }, + { + "epoch": 18.866754041065967, + "grad_norm": 0.1798417866230011, + "learning_rate": 0.0006, + "loss": 3.997880697250366, + "step": 1358 + }, + { + "epoch": 18.88073394495413, + "grad_norm": 0.20206265151500702, + "learning_rate": 0.0006, + "loss": 3.9892373085021973, + "step": 1359 + }, + { + "epoch": 18.89471384884229, + "grad_norm": 0.23685456812381744, + "learning_rate": 0.0006, + "loss": 3.9909186363220215, + "step": 1360 + }, + { + "epoch": 18.90869375273045, + "grad_norm": 0.26053836941719055, + "learning_rate": 0.0006, + "loss": 4.00327205657959, + "step": 1361 + }, + { + "epoch": 18.92267365661861, + "grad_norm": 0.26215845346450806, + "learning_rate": 0.0006, + "loss": 3.9714717864990234, + "step": 1362 + }, + { + "epoch": 18.936653560506773, + "grad_norm": 0.2433871030807495, + "learning_rate": 0.0006, + "loss": 3.949416160583496, + "step": 1363 + }, + { + "epoch": 18.950633464394933, + "grad_norm": 0.23331883549690247, + "learning_rate": 0.0006, + "loss": 3.980501413345337, + "step": 1364 + }, + { + "epoch": 18.964613368283093, + "grad_norm": 0.2346954047679901, + "learning_rate": 0.0006, + "loss": 3.9974493980407715, + "step": 1365 + }, + { + "epoch": 18.978593272171253, + "grad_norm": 0.25101345777511597, + "learning_rate": 0.0006, + "loss": 3.9800148010253906, + "step": 1366 + }, + { + "epoch": 18.992573176059416, + "grad_norm": 0.26811933517456055, + "learning_rate": 0.0006, + "loss": 4.0065741539001465, + "step": 1367 + }, + { + "epoch": 19.0, + "grad_norm": 0.2731736898422241, + "learning_rate": 0.0006, + "loss": 4.014575481414795, + "step": 1368 + }, + { + "epoch": 19.0, + "eval_loss": 4.200716972351074, + "eval_runtime": 44.6962, + "eval_samples_per_second": 54.636, + "eval_steps_per_second": 3.423, + "step": 1368 + }, + { + "epoch": 19.01397990388816, + "grad_norm": 0.2517746686935425, + "learning_rate": 0.0006, + "loss": 3.9486539363861084, + "step": 1369 + }, + { + "epoch": 19.027959807776323, + "grad_norm": 0.2482699453830719, + "learning_rate": 0.0006, + "loss": 3.95015287399292, + "step": 1370 + }, + { + "epoch": 19.041939711664483, + "grad_norm": 0.21693618595600128, + "learning_rate": 0.0006, + "loss": 3.970022201538086, + "step": 1371 + }, + { + "epoch": 19.055919615552643, + "grad_norm": 0.2035159319639206, + "learning_rate": 0.0006, + "loss": 3.941457748413086, + "step": 1372 + }, + { + "epoch": 19.069899519440803, + "grad_norm": 0.2201429009437561, + "learning_rate": 0.0006, + "loss": 3.946794033050537, + "step": 1373 + }, + { + "epoch": 19.083879423328966, + "grad_norm": 0.22910255193710327, + "learning_rate": 0.0006, + "loss": 3.94606876373291, + "step": 1374 + }, + { + "epoch": 19.097859327217126, + "grad_norm": 0.22378197312355042, + "learning_rate": 0.0006, + "loss": 3.957899570465088, + "step": 1375 + }, + { + "epoch": 19.111839231105286, + "grad_norm": 0.21728114783763885, + "learning_rate": 0.0006, + "loss": 3.9565982818603516, + "step": 1376 + }, + { + "epoch": 19.125819134993446, + "grad_norm": 0.21887634694576263, + "learning_rate": 0.0006, + "loss": 3.9649534225463867, + "step": 1377 + }, + { + "epoch": 19.13979903888161, + "grad_norm": 0.21892991662025452, + "learning_rate": 0.0006, + "loss": 3.971388101577759, + "step": 1378 + }, + { + "epoch": 19.15377894276977, + "grad_norm": 0.24582402408123016, + "learning_rate": 0.0006, + "loss": 3.9370944499969482, + "step": 1379 + }, + { + "epoch": 19.16775884665793, + "grad_norm": 0.27547118067741394, + "learning_rate": 0.0006, + "loss": 3.939406156539917, + "step": 1380 + }, + { + "epoch": 19.18173875054609, + "grad_norm": 0.3131563365459442, + "learning_rate": 0.0006, + "loss": 3.942620277404785, + "step": 1381 + }, + { + "epoch": 19.195718654434252, + "grad_norm": 0.3211703598499298, + "learning_rate": 0.0006, + "loss": 3.9388349056243896, + "step": 1382 + }, + { + "epoch": 19.209698558322412, + "grad_norm": 0.2791919410228729, + "learning_rate": 0.0006, + "loss": 3.9827399253845215, + "step": 1383 + }, + { + "epoch": 19.22367846221057, + "grad_norm": 0.2872016727924347, + "learning_rate": 0.0006, + "loss": 3.976715087890625, + "step": 1384 + }, + { + "epoch": 19.23765836609873, + "grad_norm": 0.2790389060974121, + "learning_rate": 0.0006, + "loss": 3.952850818634033, + "step": 1385 + }, + { + "epoch": 19.251638269986895, + "grad_norm": 0.31903740763664246, + "learning_rate": 0.0006, + "loss": 3.964506149291992, + "step": 1386 + }, + { + "epoch": 19.265618173875055, + "grad_norm": 0.31013646721839905, + "learning_rate": 0.0006, + "loss": 3.967219352722168, + "step": 1387 + }, + { + "epoch": 19.279598077763215, + "grad_norm": 0.2574339509010315, + "learning_rate": 0.0006, + "loss": 3.979168176651001, + "step": 1388 + }, + { + "epoch": 19.293577981651374, + "grad_norm": 0.24621108174324036, + "learning_rate": 0.0006, + "loss": 3.981734275817871, + "step": 1389 + }, + { + "epoch": 19.307557885539538, + "grad_norm": 0.25113818049430847, + "learning_rate": 0.0006, + "loss": 3.9787755012512207, + "step": 1390 + }, + { + "epoch": 19.321537789427698, + "grad_norm": 0.259971022605896, + "learning_rate": 0.0006, + "loss": 3.9648823738098145, + "step": 1391 + }, + { + "epoch": 19.335517693315857, + "grad_norm": 0.22580404579639435, + "learning_rate": 0.0006, + "loss": 3.9658002853393555, + "step": 1392 + }, + { + "epoch": 19.34949759720402, + "grad_norm": 0.2133680284023285, + "learning_rate": 0.0006, + "loss": 3.9615914821624756, + "step": 1393 + }, + { + "epoch": 19.36347750109218, + "grad_norm": 0.2387680858373642, + "learning_rate": 0.0006, + "loss": 3.993811845779419, + "step": 1394 + }, + { + "epoch": 19.37745740498034, + "grad_norm": 0.26086220145225525, + "learning_rate": 0.0006, + "loss": 3.932701826095581, + "step": 1395 + }, + { + "epoch": 19.3914373088685, + "grad_norm": 0.23255233466625214, + "learning_rate": 0.0006, + "loss": 3.8969321250915527, + "step": 1396 + }, + { + "epoch": 19.405417212756664, + "grad_norm": 0.22894541919231415, + "learning_rate": 0.0006, + "loss": 3.9569311141967773, + "step": 1397 + }, + { + "epoch": 19.419397116644824, + "grad_norm": 0.2254200130701065, + "learning_rate": 0.0006, + "loss": 3.953199863433838, + "step": 1398 + }, + { + "epoch": 19.433377020532983, + "grad_norm": 0.25802481174468994, + "learning_rate": 0.0006, + "loss": 3.9714815616607666, + "step": 1399 + }, + { + "epoch": 19.447356924421143, + "grad_norm": 0.24725162982940674, + "learning_rate": 0.0006, + "loss": 3.957339286804199, + "step": 1400 + }, + { + "epoch": 19.461336828309307, + "grad_norm": 0.2162018120288849, + "learning_rate": 0.0006, + "loss": 3.986801862716675, + "step": 1401 + }, + { + "epoch": 19.475316732197467, + "grad_norm": 0.21530906856060028, + "learning_rate": 0.0006, + "loss": 3.9766759872436523, + "step": 1402 + }, + { + "epoch": 19.489296636085626, + "grad_norm": 0.20260323584079742, + "learning_rate": 0.0006, + "loss": 3.9576425552368164, + "step": 1403 + }, + { + "epoch": 19.503276539973786, + "grad_norm": 0.188974529504776, + "learning_rate": 0.0006, + "loss": 3.9852395057678223, + "step": 1404 + }, + { + "epoch": 19.51725644386195, + "grad_norm": 0.19727374613285065, + "learning_rate": 0.0006, + "loss": 3.972484588623047, + "step": 1405 + }, + { + "epoch": 19.53123634775011, + "grad_norm": 0.23708008229732513, + "learning_rate": 0.0006, + "loss": 3.992471694946289, + "step": 1406 + }, + { + "epoch": 19.54521625163827, + "grad_norm": 0.23783449828624725, + "learning_rate": 0.0006, + "loss": 3.9788265228271484, + "step": 1407 + }, + { + "epoch": 19.55919615552643, + "grad_norm": 0.24744364619255066, + "learning_rate": 0.0006, + "loss": 3.9559011459350586, + "step": 1408 + }, + { + "epoch": 19.573176059414592, + "grad_norm": 0.24828094244003296, + "learning_rate": 0.0006, + "loss": 3.9663949012756348, + "step": 1409 + }, + { + "epoch": 19.587155963302752, + "grad_norm": 0.2681315541267395, + "learning_rate": 0.0006, + "loss": 3.9581191539764404, + "step": 1410 + }, + { + "epoch": 19.601135867190912, + "grad_norm": 0.2691532373428345, + "learning_rate": 0.0006, + "loss": 3.9832754135131836, + "step": 1411 + }, + { + "epoch": 19.615115771079076, + "grad_norm": 0.2900252640247345, + "learning_rate": 0.0006, + "loss": 3.984365940093994, + "step": 1412 + }, + { + "epoch": 19.629095674967235, + "grad_norm": 0.3194943070411682, + "learning_rate": 0.0006, + "loss": 3.9856505393981934, + "step": 1413 + }, + { + "epoch": 19.643075578855395, + "grad_norm": 0.3029029071331024, + "learning_rate": 0.0006, + "loss": 3.968992233276367, + "step": 1414 + }, + { + "epoch": 19.657055482743555, + "grad_norm": 0.2658176124095917, + "learning_rate": 0.0006, + "loss": 3.995187282562256, + "step": 1415 + }, + { + "epoch": 19.67103538663172, + "grad_norm": 0.26807504892349243, + "learning_rate": 0.0006, + "loss": 3.9756274223327637, + "step": 1416 + }, + { + "epoch": 19.68501529051988, + "grad_norm": 0.27718642354011536, + "learning_rate": 0.0006, + "loss": 3.9510018825531006, + "step": 1417 + }, + { + "epoch": 19.698995194408038, + "grad_norm": 0.26322051882743835, + "learning_rate": 0.0006, + "loss": 3.965155601501465, + "step": 1418 + }, + { + "epoch": 19.712975098296198, + "grad_norm": 0.2566570043563843, + "learning_rate": 0.0006, + "loss": 3.984218120574951, + "step": 1419 + }, + { + "epoch": 19.72695500218436, + "grad_norm": 0.2218743860721588, + "learning_rate": 0.0006, + "loss": 3.9338784217834473, + "step": 1420 + }, + { + "epoch": 19.74093490607252, + "grad_norm": 0.22894173860549927, + "learning_rate": 0.0006, + "loss": 3.9869046211242676, + "step": 1421 + }, + { + "epoch": 19.75491480996068, + "grad_norm": 0.26837027072906494, + "learning_rate": 0.0006, + "loss": 3.96799898147583, + "step": 1422 + }, + { + "epoch": 19.76889471384884, + "grad_norm": 0.2767876982688904, + "learning_rate": 0.0006, + "loss": 3.9431071281433105, + "step": 1423 + }, + { + "epoch": 19.782874617737004, + "grad_norm": 0.24402284622192383, + "learning_rate": 0.0006, + "loss": 3.9631881713867188, + "step": 1424 + }, + { + "epoch": 19.796854521625164, + "grad_norm": 0.23500724136829376, + "learning_rate": 0.0006, + "loss": 3.9943337440490723, + "step": 1425 + }, + { + "epoch": 19.810834425513324, + "grad_norm": 0.22509142756462097, + "learning_rate": 0.0006, + "loss": 3.961226224899292, + "step": 1426 + }, + { + "epoch": 19.824814329401484, + "grad_norm": 0.23524795472621918, + "learning_rate": 0.0006, + "loss": 3.9552102088928223, + "step": 1427 + }, + { + "epoch": 19.838794233289647, + "grad_norm": 0.22307050228118896, + "learning_rate": 0.0006, + "loss": 3.9623494148254395, + "step": 1428 + }, + { + "epoch": 19.852774137177807, + "grad_norm": 0.21144486963748932, + "learning_rate": 0.0006, + "loss": 3.9620237350463867, + "step": 1429 + }, + { + "epoch": 19.866754041065967, + "grad_norm": 0.20249812304973602, + "learning_rate": 0.0006, + "loss": 3.953911066055298, + "step": 1430 + }, + { + "epoch": 19.88073394495413, + "grad_norm": 0.2350354939699173, + "learning_rate": 0.0006, + "loss": 3.9616730213165283, + "step": 1431 + }, + { + "epoch": 19.89471384884229, + "grad_norm": 0.2566683292388916, + "learning_rate": 0.0006, + "loss": 3.9372501373291016, + "step": 1432 + }, + { + "epoch": 19.90869375273045, + "grad_norm": 0.2520846128463745, + "learning_rate": 0.0006, + "loss": 3.9814648628234863, + "step": 1433 + }, + { + "epoch": 19.92267365661861, + "grad_norm": 0.23989640176296234, + "learning_rate": 0.0006, + "loss": 3.9692864418029785, + "step": 1434 + }, + { + "epoch": 19.936653560506773, + "grad_norm": 0.20650425553321838, + "learning_rate": 0.0006, + "loss": 3.960256814956665, + "step": 1435 + }, + { + "epoch": 19.950633464394933, + "grad_norm": 0.20478376746177673, + "learning_rate": 0.0006, + "loss": 3.9585227966308594, + "step": 1436 + }, + { + "epoch": 19.964613368283093, + "grad_norm": 0.234436497092247, + "learning_rate": 0.0006, + "loss": 3.945631742477417, + "step": 1437 + }, + { + "epoch": 19.978593272171253, + "grad_norm": 0.19969749450683594, + "learning_rate": 0.0006, + "loss": 3.9646050930023193, + "step": 1438 + }, + { + "epoch": 19.992573176059416, + "grad_norm": 0.20638690888881683, + "learning_rate": 0.0006, + "loss": 3.9461846351623535, + "step": 1439 + }, + { + "epoch": 20.0, + "grad_norm": 0.2120274156332016, + "learning_rate": 0.0006, + "loss": 3.965153217315674, + "step": 1440 + }, + { + "epoch": 20.0, + "eval_loss": 4.168524742126465, + "eval_runtime": 44.2796, + "eval_samples_per_second": 55.15, + "eval_steps_per_second": 3.455, + "step": 1440 + }, + { + "epoch": 20.01397990388816, + "grad_norm": 0.19704894721508026, + "learning_rate": 0.0006, + "loss": 3.937016248703003, + "step": 1441 + }, + { + "epoch": 20.027959807776323, + "grad_norm": 0.18682368099689484, + "learning_rate": 0.0006, + "loss": 3.895922899246216, + "step": 1442 + }, + { + "epoch": 20.041939711664483, + "grad_norm": 0.18982571363449097, + "learning_rate": 0.0006, + "loss": 3.929841995239258, + "step": 1443 + }, + { + "epoch": 20.055919615552643, + "grad_norm": 0.20811910927295685, + "learning_rate": 0.0006, + "loss": 3.9498324394226074, + "step": 1444 + }, + { + "epoch": 20.069899519440803, + "grad_norm": 0.2149062603712082, + "learning_rate": 0.0006, + "loss": 3.929853916168213, + "step": 1445 + }, + { + "epoch": 20.083879423328966, + "grad_norm": 0.20016685128211975, + "learning_rate": 0.0006, + "loss": 3.9374136924743652, + "step": 1446 + }, + { + "epoch": 20.097859327217126, + "grad_norm": 0.19969616830348969, + "learning_rate": 0.0006, + "loss": 3.932447910308838, + "step": 1447 + }, + { + "epoch": 20.111839231105286, + "grad_norm": 0.2163356989622116, + "learning_rate": 0.0006, + "loss": 3.9325437545776367, + "step": 1448 + }, + { + "epoch": 20.125819134993446, + "grad_norm": 0.22026969492435455, + "learning_rate": 0.0006, + "loss": 3.9118852615356445, + "step": 1449 + }, + { + "epoch": 20.13979903888161, + "grad_norm": 0.23337116837501526, + "learning_rate": 0.0006, + "loss": 3.9416019916534424, + "step": 1450 + }, + { + "epoch": 20.15377894276977, + "grad_norm": 0.23971447348594666, + "learning_rate": 0.0006, + "loss": 3.9416871070861816, + "step": 1451 + }, + { + "epoch": 20.16775884665793, + "grad_norm": 0.25973960757255554, + "learning_rate": 0.0006, + "loss": 3.93826961517334, + "step": 1452 + }, + { + "epoch": 20.18173875054609, + "grad_norm": 0.2303445190191269, + "learning_rate": 0.0006, + "loss": 3.909383535385132, + "step": 1453 + }, + { + "epoch": 20.195718654434252, + "grad_norm": 0.21090206503868103, + "learning_rate": 0.0006, + "loss": 3.935939311981201, + "step": 1454 + }, + { + "epoch": 20.209698558322412, + "grad_norm": 0.2278691977262497, + "learning_rate": 0.0006, + "loss": 3.9623684883117676, + "step": 1455 + }, + { + "epoch": 20.22367846221057, + "grad_norm": 0.22291512787342072, + "learning_rate": 0.0006, + "loss": 3.9386210441589355, + "step": 1456 + }, + { + "epoch": 20.23765836609873, + "grad_norm": 0.2385793924331665, + "learning_rate": 0.0006, + "loss": 3.927365303039551, + "step": 1457 + }, + { + "epoch": 20.251638269986895, + "grad_norm": 0.23949867486953735, + "learning_rate": 0.0006, + "loss": 3.956698179244995, + "step": 1458 + }, + { + "epoch": 20.265618173875055, + "grad_norm": 0.2232269048690796, + "learning_rate": 0.0006, + "loss": 3.9465065002441406, + "step": 1459 + }, + { + "epoch": 20.279598077763215, + "grad_norm": 0.22286680340766907, + "learning_rate": 0.0006, + "loss": 3.9102284908294678, + "step": 1460 + }, + { + "epoch": 20.293577981651374, + "grad_norm": 0.24039050936698914, + "learning_rate": 0.0006, + "loss": 3.928055763244629, + "step": 1461 + }, + { + "epoch": 20.307557885539538, + "grad_norm": 0.2532738447189331, + "learning_rate": 0.0006, + "loss": 3.931753635406494, + "step": 1462 + }, + { + "epoch": 20.321537789427698, + "grad_norm": 0.2206273376941681, + "learning_rate": 0.0006, + "loss": 3.936119556427002, + "step": 1463 + }, + { + "epoch": 20.335517693315857, + "grad_norm": 0.20918945968151093, + "learning_rate": 0.0006, + "loss": 3.9228529930114746, + "step": 1464 + }, + { + "epoch": 20.34949759720402, + "grad_norm": 0.2324502319097519, + "learning_rate": 0.0006, + "loss": 3.9370768070220947, + "step": 1465 + }, + { + "epoch": 20.36347750109218, + "grad_norm": 0.26811033487319946, + "learning_rate": 0.0006, + "loss": 3.968515396118164, + "step": 1466 + }, + { + "epoch": 20.37745740498034, + "grad_norm": 0.2896045744419098, + "learning_rate": 0.0006, + "loss": 3.945124626159668, + "step": 1467 + }, + { + "epoch": 20.3914373088685, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 3.9399516582489014, + "step": 1468 + }, + { + "epoch": 20.405417212756664, + "grad_norm": 0.3076821565628052, + "learning_rate": 0.0006, + "loss": 3.9545583724975586, + "step": 1469 + }, + { + "epoch": 20.419397116644824, + "grad_norm": 0.3019449710845947, + "learning_rate": 0.0006, + "loss": 3.9502270221710205, + "step": 1470 + }, + { + "epoch": 20.433377020532983, + "grad_norm": 0.31832560896873474, + "learning_rate": 0.0006, + "loss": 3.940439224243164, + "step": 1471 + }, + { + "epoch": 20.447356924421143, + "grad_norm": 0.30303657054901123, + "learning_rate": 0.0006, + "loss": 3.9451770782470703, + "step": 1472 + }, + { + "epoch": 20.461336828309307, + "grad_norm": 0.28122979402542114, + "learning_rate": 0.0006, + "loss": 3.934508800506592, + "step": 1473 + }, + { + "epoch": 20.475316732197467, + "grad_norm": 0.27013441920280457, + "learning_rate": 0.0006, + "loss": 3.924323081970215, + "step": 1474 + }, + { + "epoch": 20.489296636085626, + "grad_norm": 0.29052063822746277, + "learning_rate": 0.0006, + "loss": 3.970916748046875, + "step": 1475 + }, + { + "epoch": 20.503276539973786, + "grad_norm": 0.2871626913547516, + "learning_rate": 0.0006, + "loss": 3.945425033569336, + "step": 1476 + }, + { + "epoch": 20.51725644386195, + "grad_norm": 0.2396184206008911, + "learning_rate": 0.0006, + "loss": 3.964290142059326, + "step": 1477 + }, + { + "epoch": 20.53123634775011, + "grad_norm": 0.21942107379436493, + "learning_rate": 0.0006, + "loss": 3.910101890563965, + "step": 1478 + }, + { + "epoch": 20.54521625163827, + "grad_norm": 0.22193685173988342, + "learning_rate": 0.0006, + "loss": 3.914005756378174, + "step": 1479 + }, + { + "epoch": 20.55919615552643, + "grad_norm": 0.20207515358924866, + "learning_rate": 0.0006, + "loss": 3.9575581550598145, + "step": 1480 + }, + { + "epoch": 20.573176059414592, + "grad_norm": 0.17855247855186462, + "learning_rate": 0.0006, + "loss": 3.941490411758423, + "step": 1481 + }, + { + "epoch": 20.587155963302752, + "grad_norm": 0.21268485486507416, + "learning_rate": 0.0006, + "loss": 3.94045352935791, + "step": 1482 + }, + { + "epoch": 20.601135867190912, + "grad_norm": 0.24890053272247314, + "learning_rate": 0.0006, + "loss": 3.932961940765381, + "step": 1483 + }, + { + "epoch": 20.615115771079076, + "grad_norm": 0.23771314322948456, + "learning_rate": 0.0006, + "loss": 3.9067630767822266, + "step": 1484 + }, + { + "epoch": 20.629095674967235, + "grad_norm": 0.20990237593650818, + "learning_rate": 0.0006, + "loss": 3.9476752281188965, + "step": 1485 + }, + { + "epoch": 20.643075578855395, + "grad_norm": 0.20058798789978027, + "learning_rate": 0.0006, + "loss": 3.9350547790527344, + "step": 1486 + }, + { + "epoch": 20.657055482743555, + "grad_norm": 0.1953001767396927, + "learning_rate": 0.0006, + "loss": 3.9437222480773926, + "step": 1487 + }, + { + "epoch": 20.67103538663172, + "grad_norm": 0.18748535215854645, + "learning_rate": 0.0006, + "loss": 3.9336047172546387, + "step": 1488 + }, + { + "epoch": 20.68501529051988, + "grad_norm": 0.18874801695346832, + "learning_rate": 0.0006, + "loss": 3.9042580127716064, + "step": 1489 + }, + { + "epoch": 20.698995194408038, + "grad_norm": 0.1844169795513153, + "learning_rate": 0.0006, + "loss": 3.9302420616149902, + "step": 1490 + }, + { + "epoch": 20.712975098296198, + "grad_norm": 0.18519413471221924, + "learning_rate": 0.0006, + "loss": 3.9527437686920166, + "step": 1491 + }, + { + "epoch": 20.72695500218436, + "grad_norm": 0.20084598660469055, + "learning_rate": 0.0006, + "loss": 3.9161760807037354, + "step": 1492 + }, + { + "epoch": 20.74093490607252, + "grad_norm": 0.2015734612941742, + "learning_rate": 0.0006, + "loss": 3.9466545581817627, + "step": 1493 + }, + { + "epoch": 20.75491480996068, + "grad_norm": 0.2210122048854828, + "learning_rate": 0.0006, + "loss": 3.8994693756103516, + "step": 1494 + }, + { + "epoch": 20.76889471384884, + "grad_norm": 0.23019762337207794, + "learning_rate": 0.0006, + "loss": 3.93685245513916, + "step": 1495 + }, + { + "epoch": 20.782874617737004, + "grad_norm": 0.21246281266212463, + "learning_rate": 0.0006, + "loss": 3.9499399662017822, + "step": 1496 + }, + { + "epoch": 20.796854521625164, + "grad_norm": 0.21142810583114624, + "learning_rate": 0.0006, + "loss": 3.9317150115966797, + "step": 1497 + }, + { + "epoch": 20.810834425513324, + "grad_norm": 0.20230524241924286, + "learning_rate": 0.0006, + "loss": 3.9389750957489014, + "step": 1498 + }, + { + "epoch": 20.824814329401484, + "grad_norm": 0.21096977591514587, + "learning_rate": 0.0006, + "loss": 3.9325194358825684, + "step": 1499 + }, + { + "epoch": 20.838794233289647, + "grad_norm": 0.2309989333152771, + "learning_rate": 0.0006, + "loss": 3.943641185760498, + "step": 1500 + }, + { + "epoch": 20.852774137177807, + "grad_norm": 0.2016306221485138, + "learning_rate": 0.0006, + "loss": 3.986043930053711, + "step": 1501 + }, + { + "epoch": 20.866754041065967, + "grad_norm": 0.2107970118522644, + "learning_rate": 0.0006, + "loss": 3.9219160079956055, + "step": 1502 + }, + { + "epoch": 20.88073394495413, + "grad_norm": 0.21580125391483307, + "learning_rate": 0.0006, + "loss": 3.942014694213867, + "step": 1503 + }, + { + "epoch": 20.89471384884229, + "grad_norm": 0.21348726749420166, + "learning_rate": 0.0006, + "loss": 3.9389920234680176, + "step": 1504 + }, + { + "epoch": 20.90869375273045, + "grad_norm": 0.23094943165779114, + "learning_rate": 0.0006, + "loss": 3.952993392944336, + "step": 1505 + }, + { + "epoch": 20.92267365661861, + "grad_norm": 0.22431740164756775, + "learning_rate": 0.0006, + "loss": 3.897671937942505, + "step": 1506 + }, + { + "epoch": 20.936653560506773, + "grad_norm": 0.20056353509426117, + "learning_rate": 0.0006, + "loss": 3.9100005626678467, + "step": 1507 + }, + { + "epoch": 20.950633464394933, + "grad_norm": 0.20604434609413147, + "learning_rate": 0.0006, + "loss": 3.9486045837402344, + "step": 1508 + }, + { + "epoch": 20.964613368283093, + "grad_norm": 0.22979380190372467, + "learning_rate": 0.0006, + "loss": 3.977163553237915, + "step": 1509 + }, + { + "epoch": 20.978593272171253, + "grad_norm": 0.2421523779630661, + "learning_rate": 0.0006, + "loss": 3.9216256141662598, + "step": 1510 + }, + { + "epoch": 20.992573176059416, + "grad_norm": 0.25776705145835876, + "learning_rate": 0.0006, + "loss": 3.9221739768981934, + "step": 1511 + }, + { + "epoch": 21.0, + "grad_norm": 0.2750694751739502, + "learning_rate": 0.0006, + "loss": 3.938098907470703, + "step": 1512 + }, + { + "epoch": 21.0, + "eval_loss": 4.159763336181641, + "eval_runtime": 44.8663, + "eval_samples_per_second": 54.428, + "eval_steps_per_second": 3.41, + "step": 1512 + }, + { + "epoch": 21.01397990388816, + "grad_norm": 0.24513043463230133, + "learning_rate": 0.0006, + "loss": 3.8939385414123535, + "step": 1513 + }, + { + "epoch": 21.027959807776323, + "grad_norm": 0.22209352254867554, + "learning_rate": 0.0006, + "loss": 3.9044857025146484, + "step": 1514 + }, + { + "epoch": 21.041939711664483, + "grad_norm": 0.22437648475170135, + "learning_rate": 0.0006, + "loss": 3.9325196743011475, + "step": 1515 + }, + { + "epoch": 21.055919615552643, + "grad_norm": 0.21168062090873718, + "learning_rate": 0.0006, + "loss": 3.882176637649536, + "step": 1516 + }, + { + "epoch": 21.069899519440803, + "grad_norm": 0.22334499657154083, + "learning_rate": 0.0006, + "loss": 3.8978934288024902, + "step": 1517 + }, + { + "epoch": 21.083879423328966, + "grad_norm": 0.21038010716438293, + "learning_rate": 0.0006, + "loss": 3.8807029724121094, + "step": 1518 + }, + { + "epoch": 21.097859327217126, + "grad_norm": 0.2243613600730896, + "learning_rate": 0.0006, + "loss": 3.924865961074829, + "step": 1519 + }, + { + "epoch": 21.111839231105286, + "grad_norm": 0.2535616159439087, + "learning_rate": 0.0006, + "loss": 3.9288227558135986, + "step": 1520 + }, + { + "epoch": 21.125819134993446, + "grad_norm": 0.2782756984233856, + "learning_rate": 0.0006, + "loss": 3.908233642578125, + "step": 1521 + }, + { + "epoch": 21.13979903888161, + "grad_norm": 0.2586214542388916, + "learning_rate": 0.0006, + "loss": 3.9151182174682617, + "step": 1522 + }, + { + "epoch": 21.15377894276977, + "grad_norm": 0.22465091943740845, + "learning_rate": 0.0006, + "loss": 3.9209084510803223, + "step": 1523 + }, + { + "epoch": 21.16775884665793, + "grad_norm": 0.2588018774986267, + "learning_rate": 0.0006, + "loss": 3.9295971393585205, + "step": 1524 + }, + { + "epoch": 21.18173875054609, + "grad_norm": 0.2637675702571869, + "learning_rate": 0.0006, + "loss": 3.9353199005126953, + "step": 1525 + }, + { + "epoch": 21.195718654434252, + "grad_norm": 0.2806383967399597, + "learning_rate": 0.0006, + "loss": 3.922337770462036, + "step": 1526 + }, + { + "epoch": 21.209698558322412, + "grad_norm": 0.27103501558303833, + "learning_rate": 0.0006, + "loss": 3.8811073303222656, + "step": 1527 + }, + { + "epoch": 21.22367846221057, + "grad_norm": 0.27203720808029175, + "learning_rate": 0.0006, + "loss": 3.9036178588867188, + "step": 1528 + }, + { + "epoch": 21.23765836609873, + "grad_norm": 0.2783355712890625, + "learning_rate": 0.0006, + "loss": 3.885456085205078, + "step": 1529 + }, + { + "epoch": 21.251638269986895, + "grad_norm": 0.2884930968284607, + "learning_rate": 0.0006, + "loss": 3.8936941623687744, + "step": 1530 + }, + { + "epoch": 21.265618173875055, + "grad_norm": 0.2829558849334717, + "learning_rate": 0.0006, + "loss": 3.927624225616455, + "step": 1531 + }, + { + "epoch": 21.279598077763215, + "grad_norm": 0.2809497117996216, + "learning_rate": 0.0006, + "loss": 3.8896753787994385, + "step": 1532 + }, + { + "epoch": 21.293577981651374, + "grad_norm": 0.27037671208381653, + "learning_rate": 0.0006, + "loss": 3.91316294670105, + "step": 1533 + }, + { + "epoch": 21.307557885539538, + "grad_norm": 0.310051292181015, + "learning_rate": 0.0006, + "loss": 3.9137332439422607, + "step": 1534 + }, + { + "epoch": 21.321537789427698, + "grad_norm": 0.30489876866340637, + "learning_rate": 0.0006, + "loss": 3.9088284969329834, + "step": 1535 + }, + { + "epoch": 21.335517693315857, + "grad_norm": 0.2607756555080414, + "learning_rate": 0.0006, + "loss": 3.9097847938537598, + "step": 1536 + }, + { + "epoch": 21.34949759720402, + "grad_norm": 0.2460775375366211, + "learning_rate": 0.0006, + "loss": 3.941211700439453, + "step": 1537 + }, + { + "epoch": 21.36347750109218, + "grad_norm": 0.24271734058856964, + "learning_rate": 0.0006, + "loss": 3.9140594005584717, + "step": 1538 + }, + { + "epoch": 21.37745740498034, + "grad_norm": 0.20012645423412323, + "learning_rate": 0.0006, + "loss": 3.888446807861328, + "step": 1539 + }, + { + "epoch": 21.3914373088685, + "grad_norm": 0.2196308672428131, + "learning_rate": 0.0006, + "loss": 3.9153785705566406, + "step": 1540 + }, + { + "epoch": 21.405417212756664, + "grad_norm": 0.22184589505195618, + "learning_rate": 0.0006, + "loss": 3.91996431350708, + "step": 1541 + }, + { + "epoch": 21.419397116644824, + "grad_norm": 0.22947315871715546, + "learning_rate": 0.0006, + "loss": 3.9268412590026855, + "step": 1542 + }, + { + "epoch": 21.433377020532983, + "grad_norm": 0.22275054454803467, + "learning_rate": 0.0006, + "loss": 3.909275531768799, + "step": 1543 + }, + { + "epoch": 21.447356924421143, + "grad_norm": 0.23103971779346466, + "learning_rate": 0.0006, + "loss": 3.925635814666748, + "step": 1544 + }, + { + "epoch": 21.461336828309307, + "grad_norm": 0.23379720747470856, + "learning_rate": 0.0006, + "loss": 3.926647186279297, + "step": 1545 + }, + { + "epoch": 21.475316732197467, + "grad_norm": 0.2244282215833664, + "learning_rate": 0.0006, + "loss": 3.9428000450134277, + "step": 1546 + }, + { + "epoch": 21.489296636085626, + "grad_norm": 0.22773298621177673, + "learning_rate": 0.0006, + "loss": 3.9378256797790527, + "step": 1547 + }, + { + "epoch": 21.503276539973786, + "grad_norm": 0.1918657273054123, + "learning_rate": 0.0006, + "loss": 3.904022216796875, + "step": 1548 + }, + { + "epoch": 21.51725644386195, + "grad_norm": 0.18415570259094238, + "learning_rate": 0.0006, + "loss": 3.9105122089385986, + "step": 1549 + }, + { + "epoch": 21.53123634775011, + "grad_norm": 0.22141380608081818, + "learning_rate": 0.0006, + "loss": 3.9153857231140137, + "step": 1550 + }, + { + "epoch": 21.54521625163827, + "grad_norm": 0.22533352673053741, + "learning_rate": 0.0006, + "loss": 3.9148974418640137, + "step": 1551 + }, + { + "epoch": 21.55919615552643, + "grad_norm": 0.2124762088060379, + "learning_rate": 0.0006, + "loss": 3.926311731338501, + "step": 1552 + }, + { + "epoch": 21.573176059414592, + "grad_norm": 0.239680215716362, + "learning_rate": 0.0006, + "loss": 3.9260334968566895, + "step": 1553 + }, + { + "epoch": 21.587155963302752, + "grad_norm": 0.24158740043640137, + "learning_rate": 0.0006, + "loss": 3.933223247528076, + "step": 1554 + }, + { + "epoch": 21.601135867190912, + "grad_norm": 0.2216576784849167, + "learning_rate": 0.0006, + "loss": 3.9065442085266113, + "step": 1555 + }, + { + "epoch": 21.615115771079076, + "grad_norm": 0.20099912583827972, + "learning_rate": 0.0006, + "loss": 3.923278570175171, + "step": 1556 + }, + { + "epoch": 21.629095674967235, + "grad_norm": 0.2337288111448288, + "learning_rate": 0.0006, + "loss": 3.92032527923584, + "step": 1557 + }, + { + "epoch": 21.643075578855395, + "grad_norm": 0.23574814200401306, + "learning_rate": 0.0006, + "loss": 3.896244525909424, + "step": 1558 + }, + { + "epoch": 21.657055482743555, + "grad_norm": 0.21338573098182678, + "learning_rate": 0.0006, + "loss": 3.930345058441162, + "step": 1559 + }, + { + "epoch": 21.67103538663172, + "grad_norm": 0.2375067174434662, + "learning_rate": 0.0006, + "loss": 3.864104986190796, + "step": 1560 + }, + { + "epoch": 21.68501529051988, + "grad_norm": 0.22490349411964417, + "learning_rate": 0.0006, + "loss": 3.883296012878418, + "step": 1561 + }, + { + "epoch": 21.698995194408038, + "grad_norm": 0.23021313548088074, + "learning_rate": 0.0006, + "loss": 3.915200710296631, + "step": 1562 + }, + { + "epoch": 21.712975098296198, + "grad_norm": 0.22590875625610352, + "learning_rate": 0.0006, + "loss": 3.903597354888916, + "step": 1563 + }, + { + "epoch": 21.72695500218436, + "grad_norm": 0.19066260755062103, + "learning_rate": 0.0006, + "loss": 3.9162631034851074, + "step": 1564 + }, + { + "epoch": 21.74093490607252, + "grad_norm": 0.18134327232837677, + "learning_rate": 0.0006, + "loss": 3.9167914390563965, + "step": 1565 + }, + { + "epoch": 21.75491480996068, + "grad_norm": 0.1782190054655075, + "learning_rate": 0.0006, + "loss": 3.900925636291504, + "step": 1566 + }, + { + "epoch": 21.76889471384884, + "grad_norm": 0.19034099578857422, + "learning_rate": 0.0006, + "loss": 3.896559238433838, + "step": 1567 + }, + { + "epoch": 21.782874617737004, + "grad_norm": 0.21509577333927155, + "learning_rate": 0.0006, + "loss": 3.891681671142578, + "step": 1568 + }, + { + "epoch": 21.796854521625164, + "grad_norm": 0.2370351105928421, + "learning_rate": 0.0006, + "loss": 3.886570453643799, + "step": 1569 + }, + { + "epoch": 21.810834425513324, + "grad_norm": 0.25546324253082275, + "learning_rate": 0.0006, + "loss": 3.9247193336486816, + "step": 1570 + }, + { + "epoch": 21.824814329401484, + "grad_norm": 0.2513384222984314, + "learning_rate": 0.0006, + "loss": 3.9120583534240723, + "step": 1571 + }, + { + "epoch": 21.838794233289647, + "grad_norm": 0.24691323935985565, + "learning_rate": 0.0006, + "loss": 3.9144935607910156, + "step": 1572 + }, + { + "epoch": 21.852774137177807, + "grad_norm": 0.2573968172073364, + "learning_rate": 0.0006, + "loss": 3.9517531394958496, + "step": 1573 + }, + { + "epoch": 21.866754041065967, + "grad_norm": 0.25461453199386597, + "learning_rate": 0.0006, + "loss": 3.93508243560791, + "step": 1574 + }, + { + "epoch": 21.88073394495413, + "grad_norm": 0.23756568133831024, + "learning_rate": 0.0006, + "loss": 3.8885269165039062, + "step": 1575 + }, + { + "epoch": 21.89471384884229, + "grad_norm": 0.2193172425031662, + "learning_rate": 0.0006, + "loss": 3.9103426933288574, + "step": 1576 + }, + { + "epoch": 21.90869375273045, + "grad_norm": 0.2350149303674698, + "learning_rate": 0.0006, + "loss": 3.9399590492248535, + "step": 1577 + }, + { + "epoch": 21.92267365661861, + "grad_norm": 0.23759333789348602, + "learning_rate": 0.0006, + "loss": 3.9433584213256836, + "step": 1578 + }, + { + "epoch": 21.936653560506773, + "grad_norm": 0.21108432114124298, + "learning_rate": 0.0006, + "loss": 3.9241819381713867, + "step": 1579 + }, + { + "epoch": 21.950633464394933, + "grad_norm": 0.22088949382305145, + "learning_rate": 0.0006, + "loss": 3.9231910705566406, + "step": 1580 + }, + { + "epoch": 21.964613368283093, + "grad_norm": 0.22125045955181122, + "learning_rate": 0.0006, + "loss": 3.896329164505005, + "step": 1581 + }, + { + "epoch": 21.978593272171253, + "grad_norm": 0.20745202898979187, + "learning_rate": 0.0006, + "loss": 3.8920536041259766, + "step": 1582 + }, + { + "epoch": 21.992573176059416, + "grad_norm": 0.2409721463918686, + "learning_rate": 0.0006, + "loss": 3.9061317443847656, + "step": 1583 + }, + { + "epoch": 22.0, + "grad_norm": 0.2669669985771179, + "learning_rate": 0.0006, + "loss": 3.922062397003174, + "step": 1584 + }, + { + "epoch": 22.0, + "eval_loss": 4.140966415405273, + "eval_runtime": 46.7132, + "eval_samples_per_second": 52.276, + "eval_steps_per_second": 3.275, + "step": 1584 + }, + { + "epoch": 22.01397990388816, + "grad_norm": 0.26155969500541687, + "learning_rate": 0.0006, + "loss": 3.888944625854492, + "step": 1585 + }, + { + "epoch": 22.027959807776323, + "grad_norm": 0.2579149007797241, + "learning_rate": 0.0006, + "loss": 3.8924355506896973, + "step": 1586 + }, + { + "epoch": 22.041939711664483, + "grad_norm": 0.2429896742105484, + "learning_rate": 0.0006, + "loss": 3.8714070320129395, + "step": 1587 + }, + { + "epoch": 22.055919615552643, + "grad_norm": 0.23497673869132996, + "learning_rate": 0.0006, + "loss": 3.905089855194092, + "step": 1588 + }, + { + "epoch": 22.069899519440803, + "grad_norm": 0.24074940383434296, + "learning_rate": 0.0006, + "loss": 3.886845111846924, + "step": 1589 + }, + { + "epoch": 22.083879423328966, + "grad_norm": 0.2226274162530899, + "learning_rate": 0.0006, + "loss": 3.8554329872131348, + "step": 1590 + }, + { + "epoch": 22.097859327217126, + "grad_norm": 0.22924423217773438, + "learning_rate": 0.0006, + "loss": 3.8914356231689453, + "step": 1591 + }, + { + "epoch": 22.111839231105286, + "grad_norm": 0.2459387183189392, + "learning_rate": 0.0006, + "loss": 3.902522087097168, + "step": 1592 + }, + { + "epoch": 22.125819134993446, + "grad_norm": 0.2704590857028961, + "learning_rate": 0.0006, + "loss": 3.896497964859009, + "step": 1593 + }, + { + "epoch": 22.13979903888161, + "grad_norm": 0.2848219871520996, + "learning_rate": 0.0006, + "loss": 3.88423228263855, + "step": 1594 + }, + { + "epoch": 22.15377894276977, + "grad_norm": 0.22996552288532257, + "learning_rate": 0.0006, + "loss": 3.9034953117370605, + "step": 1595 + }, + { + "epoch": 22.16775884665793, + "grad_norm": 0.2117270529270172, + "learning_rate": 0.0006, + "loss": 3.888279914855957, + "step": 1596 + }, + { + "epoch": 22.18173875054609, + "grad_norm": 0.19724160432815552, + "learning_rate": 0.0006, + "loss": 3.860525131225586, + "step": 1597 + }, + { + "epoch": 22.195718654434252, + "grad_norm": 0.2012624740600586, + "learning_rate": 0.0006, + "loss": 3.8930106163024902, + "step": 1598 + }, + { + "epoch": 22.209698558322412, + "grad_norm": 0.20243871212005615, + "learning_rate": 0.0006, + "loss": 3.8727619647979736, + "step": 1599 + }, + { + "epoch": 22.22367846221057, + "grad_norm": 0.21737465262413025, + "learning_rate": 0.0006, + "loss": 3.887969493865967, + "step": 1600 + }, + { + "epoch": 22.23765836609873, + "grad_norm": 0.23969845473766327, + "learning_rate": 0.0006, + "loss": 3.8629722595214844, + "step": 1601 + }, + { + "epoch": 22.251638269986895, + "grad_norm": 0.22874902188777924, + "learning_rate": 0.0006, + "loss": 3.9135584831237793, + "step": 1602 + }, + { + "epoch": 22.265618173875055, + "grad_norm": 0.209506556391716, + "learning_rate": 0.0006, + "loss": 3.8734190464019775, + "step": 1603 + }, + { + "epoch": 22.279598077763215, + "grad_norm": 0.22235789895057678, + "learning_rate": 0.0006, + "loss": 3.884854793548584, + "step": 1604 + }, + { + "epoch": 22.293577981651374, + "grad_norm": 0.21975041925907135, + "learning_rate": 0.0006, + "loss": 3.8860888481140137, + "step": 1605 + }, + { + "epoch": 22.307557885539538, + "grad_norm": 0.21474459767341614, + "learning_rate": 0.0006, + "loss": 3.9052200317382812, + "step": 1606 + }, + { + "epoch": 22.321537789427698, + "grad_norm": 0.2103329747915268, + "learning_rate": 0.0006, + "loss": 3.8516340255737305, + "step": 1607 + }, + { + "epoch": 22.335517693315857, + "grad_norm": 0.1981191635131836, + "learning_rate": 0.0006, + "loss": 3.9017434120178223, + "step": 1608 + }, + { + "epoch": 22.34949759720402, + "grad_norm": 0.20679591596126556, + "learning_rate": 0.0006, + "loss": 3.889885425567627, + "step": 1609 + }, + { + "epoch": 22.36347750109218, + "grad_norm": 0.20809867978096008, + "learning_rate": 0.0006, + "loss": 3.881868362426758, + "step": 1610 + }, + { + "epoch": 22.37745740498034, + "grad_norm": 0.21394680440425873, + "learning_rate": 0.0006, + "loss": 3.89980411529541, + "step": 1611 + }, + { + "epoch": 22.3914373088685, + "grad_norm": 0.2334284782409668, + "learning_rate": 0.0006, + "loss": 3.8672266006469727, + "step": 1612 + }, + { + "epoch": 22.405417212756664, + "grad_norm": 0.26521918177604675, + "learning_rate": 0.0006, + "loss": 3.8918118476867676, + "step": 1613 + }, + { + "epoch": 22.419397116644824, + "grad_norm": 0.2652994394302368, + "learning_rate": 0.0006, + "loss": 3.8683271408081055, + "step": 1614 + }, + { + "epoch": 22.433377020532983, + "grad_norm": 0.2568066716194153, + "learning_rate": 0.0006, + "loss": 3.892523765563965, + "step": 1615 + }, + { + "epoch": 22.447356924421143, + "grad_norm": 0.260052353143692, + "learning_rate": 0.0006, + "loss": 3.897305488586426, + "step": 1616 + }, + { + "epoch": 22.461336828309307, + "grad_norm": 0.2744271457195282, + "learning_rate": 0.0006, + "loss": 3.8962221145629883, + "step": 1617 + }, + { + "epoch": 22.475316732197467, + "grad_norm": 0.23755787312984467, + "learning_rate": 0.0006, + "loss": 3.888184070587158, + "step": 1618 + }, + { + "epoch": 22.489296636085626, + "grad_norm": 0.2515312135219574, + "learning_rate": 0.0006, + "loss": 3.8946003913879395, + "step": 1619 + }, + { + "epoch": 22.503276539973786, + "grad_norm": 0.24835044145584106, + "learning_rate": 0.0006, + "loss": 3.8711423873901367, + "step": 1620 + }, + { + "epoch": 22.51725644386195, + "grad_norm": 0.22615326941013336, + "learning_rate": 0.0006, + "loss": 3.8878846168518066, + "step": 1621 + }, + { + "epoch": 22.53123634775011, + "grad_norm": 0.20482423901557922, + "learning_rate": 0.0006, + "loss": 3.8782598972320557, + "step": 1622 + }, + { + "epoch": 22.54521625163827, + "grad_norm": 0.20436473190784454, + "learning_rate": 0.0006, + "loss": 3.9075279235839844, + "step": 1623 + }, + { + "epoch": 22.55919615552643, + "grad_norm": 0.2066277265548706, + "learning_rate": 0.0006, + "loss": 3.89908766746521, + "step": 1624 + }, + { + "epoch": 22.573176059414592, + "grad_norm": 0.20735307037830353, + "learning_rate": 0.0006, + "loss": 3.865204334259033, + "step": 1625 + }, + { + "epoch": 22.587155963302752, + "grad_norm": 0.20955748856067657, + "learning_rate": 0.0006, + "loss": 3.8835532665252686, + "step": 1626 + }, + { + "epoch": 22.601135867190912, + "grad_norm": 0.21354222297668457, + "learning_rate": 0.0006, + "loss": 3.9012551307678223, + "step": 1627 + }, + { + "epoch": 22.615115771079076, + "grad_norm": 0.2075091004371643, + "learning_rate": 0.0006, + "loss": 3.8733482360839844, + "step": 1628 + }, + { + "epoch": 22.629095674967235, + "grad_norm": 0.20207874476909637, + "learning_rate": 0.0006, + "loss": 3.9193859100341797, + "step": 1629 + }, + { + "epoch": 22.643075578855395, + "grad_norm": 0.21863923966884613, + "learning_rate": 0.0006, + "loss": 3.883518695831299, + "step": 1630 + }, + { + "epoch": 22.657055482743555, + "grad_norm": 0.22117522358894348, + "learning_rate": 0.0006, + "loss": 3.9163284301757812, + "step": 1631 + }, + { + "epoch": 22.67103538663172, + "grad_norm": 0.2078622728586197, + "learning_rate": 0.0006, + "loss": 3.868274688720703, + "step": 1632 + }, + { + "epoch": 22.68501529051988, + "grad_norm": 0.22745893895626068, + "learning_rate": 0.0006, + "loss": 3.9171340465545654, + "step": 1633 + }, + { + "epoch": 22.698995194408038, + "grad_norm": 0.2312736064195633, + "learning_rate": 0.0006, + "loss": 3.9487013816833496, + "step": 1634 + }, + { + "epoch": 22.712975098296198, + "grad_norm": 0.20491497218608856, + "learning_rate": 0.0006, + "loss": 3.91833758354187, + "step": 1635 + }, + { + "epoch": 22.72695500218436, + "grad_norm": 0.1899084597826004, + "learning_rate": 0.0006, + "loss": 3.876225709915161, + "step": 1636 + }, + { + "epoch": 22.74093490607252, + "grad_norm": 0.18581682443618774, + "learning_rate": 0.0006, + "loss": 3.8667988777160645, + "step": 1637 + }, + { + "epoch": 22.75491480996068, + "grad_norm": 0.19855599105358124, + "learning_rate": 0.0006, + "loss": 3.900789260864258, + "step": 1638 + }, + { + "epoch": 22.76889471384884, + "grad_norm": 0.19951458275318146, + "learning_rate": 0.0006, + "loss": 3.8850367069244385, + "step": 1639 + }, + { + "epoch": 22.782874617737004, + "grad_norm": 0.22802744805812836, + "learning_rate": 0.0006, + "loss": 3.9181363582611084, + "step": 1640 + }, + { + "epoch": 22.796854521625164, + "grad_norm": 0.24279919266700745, + "learning_rate": 0.0006, + "loss": 3.8843770027160645, + "step": 1641 + }, + { + "epoch": 22.810834425513324, + "grad_norm": 0.23554913699626923, + "learning_rate": 0.0006, + "loss": 3.8802413940429688, + "step": 1642 + }, + { + "epoch": 22.824814329401484, + "grad_norm": 0.22343270480632782, + "learning_rate": 0.0006, + "loss": 3.8524107933044434, + "step": 1643 + }, + { + "epoch": 22.838794233289647, + "grad_norm": 0.2185724526643753, + "learning_rate": 0.0006, + "loss": 3.9117047786712646, + "step": 1644 + }, + { + "epoch": 22.852774137177807, + "grad_norm": 0.2114841341972351, + "learning_rate": 0.0006, + "loss": 3.90325927734375, + "step": 1645 + }, + { + "epoch": 22.866754041065967, + "grad_norm": 0.21072550117969513, + "learning_rate": 0.0006, + "loss": 3.8988137245178223, + "step": 1646 + }, + { + "epoch": 22.88073394495413, + "grad_norm": 0.2250078171491623, + "learning_rate": 0.0006, + "loss": 3.9201531410217285, + "step": 1647 + }, + { + "epoch": 22.89471384884229, + "grad_norm": 0.20928071439266205, + "learning_rate": 0.0006, + "loss": 3.91666316986084, + "step": 1648 + }, + { + "epoch": 22.90869375273045, + "grad_norm": 0.24096311628818512, + "learning_rate": 0.0006, + "loss": 3.8797364234924316, + "step": 1649 + }, + { + "epoch": 22.92267365661861, + "grad_norm": 0.2591194212436676, + "learning_rate": 0.0006, + "loss": 3.883273124694824, + "step": 1650 + }, + { + "epoch": 22.936653560506773, + "grad_norm": 0.27342668175697327, + "learning_rate": 0.0006, + "loss": 3.8645026683807373, + "step": 1651 + }, + { + "epoch": 22.950633464394933, + "grad_norm": 0.2448573112487793, + "learning_rate": 0.0006, + "loss": 3.9093551635742188, + "step": 1652 + }, + { + "epoch": 22.964613368283093, + "grad_norm": 0.19899503886699677, + "learning_rate": 0.0006, + "loss": 3.9001057147979736, + "step": 1653 + }, + { + "epoch": 22.978593272171253, + "grad_norm": 0.2023746520280838, + "learning_rate": 0.0006, + "loss": 3.886474370956421, + "step": 1654 + }, + { + "epoch": 22.992573176059416, + "grad_norm": 0.19894269108772278, + "learning_rate": 0.0006, + "loss": 3.9004204273223877, + "step": 1655 + }, + { + "epoch": 23.0, + "grad_norm": 0.2401709407567978, + "learning_rate": 0.0006, + "loss": 3.8665566444396973, + "step": 1656 + }, + { + "epoch": 23.0, + "eval_loss": 4.112459659576416, + "eval_runtime": 44.8325, + "eval_samples_per_second": 54.469, + "eval_steps_per_second": 3.413, + "step": 1656 + }, + { + "epoch": 23.01397990388816, + "grad_norm": 0.22662921249866486, + "learning_rate": 0.0006, + "loss": 3.853271961212158, + "step": 1657 + }, + { + "epoch": 23.027959807776323, + "grad_norm": 0.24406856298446655, + "learning_rate": 0.0006, + "loss": 3.8691890239715576, + "step": 1658 + }, + { + "epoch": 23.041939711664483, + "grad_norm": 0.2266651839017868, + "learning_rate": 0.0006, + "loss": 3.838599681854248, + "step": 1659 + }, + { + "epoch": 23.055919615552643, + "grad_norm": 0.22303511202335358, + "learning_rate": 0.0006, + "loss": 3.8678267002105713, + "step": 1660 + }, + { + "epoch": 23.069899519440803, + "grad_norm": 0.2272164225578308, + "learning_rate": 0.0006, + "loss": 3.9045681953430176, + "step": 1661 + }, + { + "epoch": 23.083879423328966, + "grad_norm": 0.25004875659942627, + "learning_rate": 0.0006, + "loss": 3.856503963470459, + "step": 1662 + }, + { + "epoch": 23.097859327217126, + "grad_norm": 0.26016247272491455, + "learning_rate": 0.0006, + "loss": 3.878587007522583, + "step": 1663 + }, + { + "epoch": 23.111839231105286, + "grad_norm": 0.28539901971817017, + "learning_rate": 0.0006, + "loss": 3.864248514175415, + "step": 1664 + }, + { + "epoch": 23.125819134993446, + "grad_norm": 0.27504822611808777, + "learning_rate": 0.0006, + "loss": 3.821448802947998, + "step": 1665 + }, + { + "epoch": 23.13979903888161, + "grad_norm": 0.238910973072052, + "learning_rate": 0.0006, + "loss": 3.8635847568511963, + "step": 1666 + }, + { + "epoch": 23.15377894276977, + "grad_norm": 0.24179652333259583, + "learning_rate": 0.0006, + "loss": 3.8339638710021973, + "step": 1667 + }, + { + "epoch": 23.16775884665793, + "grad_norm": 0.2199544757604599, + "learning_rate": 0.0006, + "loss": 3.868396759033203, + "step": 1668 + }, + { + "epoch": 23.18173875054609, + "grad_norm": 0.1965002566576004, + "learning_rate": 0.0006, + "loss": 3.8761439323425293, + "step": 1669 + }, + { + "epoch": 23.195718654434252, + "grad_norm": 0.20426614582538605, + "learning_rate": 0.0006, + "loss": 3.822899580001831, + "step": 1670 + }, + { + "epoch": 23.209698558322412, + "grad_norm": 0.2197263389825821, + "learning_rate": 0.0006, + "loss": 3.887728452682495, + "step": 1671 + }, + { + "epoch": 23.22367846221057, + "grad_norm": 0.22844573855400085, + "learning_rate": 0.0006, + "loss": 3.8550517559051514, + "step": 1672 + }, + { + "epoch": 23.23765836609873, + "grad_norm": 0.2347746044397354, + "learning_rate": 0.0006, + "loss": 3.903310537338257, + "step": 1673 + }, + { + "epoch": 23.251638269986895, + "grad_norm": 0.24167625606060028, + "learning_rate": 0.0006, + "loss": 3.8397774696350098, + "step": 1674 + }, + { + "epoch": 23.265618173875055, + "grad_norm": 0.2691650688648224, + "learning_rate": 0.0006, + "loss": 3.853254795074463, + "step": 1675 + }, + { + "epoch": 23.279598077763215, + "grad_norm": 0.29421621561050415, + "learning_rate": 0.0006, + "loss": 3.86065411567688, + "step": 1676 + }, + { + "epoch": 23.293577981651374, + "grad_norm": 0.31074345111846924, + "learning_rate": 0.0006, + "loss": 3.8716742992401123, + "step": 1677 + }, + { + "epoch": 23.307557885539538, + "grad_norm": 0.3044569194316864, + "learning_rate": 0.0006, + "loss": 3.8738951683044434, + "step": 1678 + }, + { + "epoch": 23.321537789427698, + "grad_norm": 0.30496764183044434, + "learning_rate": 0.0006, + "loss": 3.884446620941162, + "step": 1679 + }, + { + "epoch": 23.335517693315857, + "grad_norm": 0.31122756004333496, + "learning_rate": 0.0006, + "loss": 3.878495693206787, + "step": 1680 + }, + { + "epoch": 23.34949759720402, + "grad_norm": 0.32268181443214417, + "learning_rate": 0.0006, + "loss": 3.8793649673461914, + "step": 1681 + }, + { + "epoch": 23.36347750109218, + "grad_norm": 0.3297140598297119, + "learning_rate": 0.0006, + "loss": 3.87484073638916, + "step": 1682 + }, + { + "epoch": 23.37745740498034, + "grad_norm": 0.26007479429244995, + "learning_rate": 0.0006, + "loss": 3.8510947227478027, + "step": 1683 + }, + { + "epoch": 23.3914373088685, + "grad_norm": 0.2627335786819458, + "learning_rate": 0.0006, + "loss": 3.8783209323883057, + "step": 1684 + }, + { + "epoch": 23.405417212756664, + "grad_norm": 0.256452739238739, + "learning_rate": 0.0006, + "loss": 3.8594281673431396, + "step": 1685 + }, + { + "epoch": 23.419397116644824, + "grad_norm": 0.23892226815223694, + "learning_rate": 0.0006, + "loss": 3.898951292037964, + "step": 1686 + }, + { + "epoch": 23.433377020532983, + "grad_norm": 0.21625587344169617, + "learning_rate": 0.0006, + "loss": 3.8679966926574707, + "step": 1687 + }, + { + "epoch": 23.447356924421143, + "grad_norm": 0.21924619376659393, + "learning_rate": 0.0006, + "loss": 3.8774075508117676, + "step": 1688 + }, + { + "epoch": 23.461336828309307, + "grad_norm": 0.21500127017498016, + "learning_rate": 0.0006, + "loss": 3.870619297027588, + "step": 1689 + }, + { + "epoch": 23.475316732197467, + "grad_norm": 0.22580556571483612, + "learning_rate": 0.0006, + "loss": 3.887722969055176, + "step": 1690 + }, + { + "epoch": 23.489296636085626, + "grad_norm": 0.2500104308128357, + "learning_rate": 0.0006, + "loss": 3.88789963722229, + "step": 1691 + }, + { + "epoch": 23.503276539973786, + "grad_norm": 0.22462762892246246, + "learning_rate": 0.0006, + "loss": 3.863997459411621, + "step": 1692 + }, + { + "epoch": 23.51725644386195, + "grad_norm": 0.21427781879901886, + "learning_rate": 0.0006, + "loss": 3.8827033042907715, + "step": 1693 + }, + { + "epoch": 23.53123634775011, + "grad_norm": 0.22278577089309692, + "learning_rate": 0.0006, + "loss": 3.8659563064575195, + "step": 1694 + }, + { + "epoch": 23.54521625163827, + "grad_norm": 0.22801144421100616, + "learning_rate": 0.0006, + "loss": 3.9031362533569336, + "step": 1695 + }, + { + "epoch": 23.55919615552643, + "grad_norm": 0.25071898102760315, + "learning_rate": 0.0006, + "loss": 3.887746810913086, + "step": 1696 + }, + { + "epoch": 23.573176059414592, + "grad_norm": 0.2564085125923157, + "learning_rate": 0.0006, + "loss": 3.8918356895446777, + "step": 1697 + }, + { + "epoch": 23.587155963302752, + "grad_norm": 0.24603120982646942, + "learning_rate": 0.0006, + "loss": 3.850416421890259, + "step": 1698 + }, + { + "epoch": 23.601135867190912, + "grad_norm": 0.20539002120494843, + "learning_rate": 0.0006, + "loss": 3.862060070037842, + "step": 1699 + }, + { + "epoch": 23.615115771079076, + "grad_norm": 0.2022249400615692, + "learning_rate": 0.0006, + "loss": 3.899008274078369, + "step": 1700 + }, + { + "epoch": 23.629095674967235, + "grad_norm": 0.2435392290353775, + "learning_rate": 0.0006, + "loss": 3.844388961791992, + "step": 1701 + }, + { + "epoch": 23.643075578855395, + "grad_norm": 0.21146756410598755, + "learning_rate": 0.0006, + "loss": 3.8972439765930176, + "step": 1702 + }, + { + "epoch": 23.657055482743555, + "grad_norm": 0.2025400996208191, + "learning_rate": 0.0006, + "loss": 3.865253448486328, + "step": 1703 + }, + { + "epoch": 23.67103538663172, + "grad_norm": 0.21129970252513885, + "learning_rate": 0.0006, + "loss": 3.8768205642700195, + "step": 1704 + }, + { + "epoch": 23.68501529051988, + "grad_norm": 0.22982284426689148, + "learning_rate": 0.0006, + "loss": 3.8792667388916016, + "step": 1705 + }, + { + "epoch": 23.698995194408038, + "grad_norm": 0.23013733327388763, + "learning_rate": 0.0006, + "loss": 3.880897045135498, + "step": 1706 + }, + { + "epoch": 23.712975098296198, + "grad_norm": 0.2277672290802002, + "learning_rate": 0.0006, + "loss": 3.8738410472869873, + "step": 1707 + }, + { + "epoch": 23.72695500218436, + "grad_norm": 0.2343369573354721, + "learning_rate": 0.0006, + "loss": 3.8587026596069336, + "step": 1708 + }, + { + "epoch": 23.74093490607252, + "grad_norm": 0.23159530758857727, + "learning_rate": 0.0006, + "loss": 3.856306552886963, + "step": 1709 + }, + { + "epoch": 23.75491480996068, + "grad_norm": 0.19541035592556, + "learning_rate": 0.0006, + "loss": 3.8294754028320312, + "step": 1710 + }, + { + "epoch": 23.76889471384884, + "grad_norm": 0.22999322414398193, + "learning_rate": 0.0006, + "loss": 3.882676124572754, + "step": 1711 + }, + { + "epoch": 23.782874617737004, + "grad_norm": 0.23442843556404114, + "learning_rate": 0.0006, + "loss": 3.8887529373168945, + "step": 1712 + }, + { + "epoch": 23.796854521625164, + "grad_norm": 0.22914239764213562, + "learning_rate": 0.0006, + "loss": 3.867673635482788, + "step": 1713 + }, + { + "epoch": 23.810834425513324, + "grad_norm": 0.20683827996253967, + "learning_rate": 0.0006, + "loss": 3.8999581336975098, + "step": 1714 + }, + { + "epoch": 23.824814329401484, + "grad_norm": 0.19281277060508728, + "learning_rate": 0.0006, + "loss": 3.8997726440429688, + "step": 1715 + }, + { + "epoch": 23.838794233289647, + "grad_norm": 0.20058563351631165, + "learning_rate": 0.0006, + "loss": 3.8583860397338867, + "step": 1716 + }, + { + "epoch": 23.852774137177807, + "grad_norm": 0.19856606423854828, + "learning_rate": 0.0006, + "loss": 3.88948392868042, + "step": 1717 + }, + { + "epoch": 23.866754041065967, + "grad_norm": 0.2099323868751526, + "learning_rate": 0.0006, + "loss": 3.878458261489868, + "step": 1718 + }, + { + "epoch": 23.88073394495413, + "grad_norm": 0.22945016622543335, + "learning_rate": 0.0006, + "loss": 3.84116268157959, + "step": 1719 + }, + { + "epoch": 23.89471384884229, + "grad_norm": 0.22646087408065796, + "learning_rate": 0.0006, + "loss": 3.9006617069244385, + "step": 1720 + }, + { + "epoch": 23.90869375273045, + "grad_norm": 0.20282860100269318, + "learning_rate": 0.0006, + "loss": 3.8781144618988037, + "step": 1721 + }, + { + "epoch": 23.92267365661861, + "grad_norm": 0.1918555349111557, + "learning_rate": 0.0006, + "loss": 3.8560891151428223, + "step": 1722 + }, + { + "epoch": 23.936653560506773, + "grad_norm": 0.19286513328552246, + "learning_rate": 0.0006, + "loss": 3.873220920562744, + "step": 1723 + }, + { + "epoch": 23.950633464394933, + "grad_norm": 0.21071338653564453, + "learning_rate": 0.0006, + "loss": 3.9147067070007324, + "step": 1724 + }, + { + "epoch": 23.964613368283093, + "grad_norm": 0.20956715941429138, + "learning_rate": 0.0006, + "loss": 3.8762729167938232, + "step": 1725 + }, + { + "epoch": 23.978593272171253, + "grad_norm": 0.23053105175495148, + "learning_rate": 0.0006, + "loss": 3.873781681060791, + "step": 1726 + }, + { + "epoch": 23.992573176059416, + "grad_norm": 0.2719029486179352, + "learning_rate": 0.0006, + "loss": 3.862342357635498, + "step": 1727 + }, + { + "epoch": 24.0, + "grad_norm": 0.2933610677719116, + "learning_rate": 0.0006, + "loss": 3.8657689094543457, + "step": 1728 + }, + { + "epoch": 24.0, + "eval_loss": 4.0959153175354, + "eval_runtime": 44.3631, + "eval_samples_per_second": 55.046, + "eval_steps_per_second": 3.449, + "step": 1728 + }, + { + "epoch": 24.01397990388816, + "grad_norm": 0.24905365705490112, + "learning_rate": 0.0006, + "loss": 3.838136911392212, + "step": 1729 + }, + { + "epoch": 24.027959807776323, + "grad_norm": 0.25948020815849304, + "learning_rate": 0.0006, + "loss": 3.8581268787384033, + "step": 1730 + }, + { + "epoch": 24.041939711664483, + "grad_norm": 0.24965140223503113, + "learning_rate": 0.0006, + "loss": 3.8628978729248047, + "step": 1731 + }, + { + "epoch": 24.055919615552643, + "grad_norm": 0.23428823053836823, + "learning_rate": 0.0006, + "loss": 3.8188819885253906, + "step": 1732 + }, + { + "epoch": 24.069899519440803, + "grad_norm": 0.22191211581230164, + "learning_rate": 0.0006, + "loss": 3.8616039752960205, + "step": 1733 + }, + { + "epoch": 24.083879423328966, + "grad_norm": 0.20257535576820374, + "learning_rate": 0.0006, + "loss": 3.8632802963256836, + "step": 1734 + }, + { + "epoch": 24.097859327217126, + "grad_norm": 0.20385196805000305, + "learning_rate": 0.0006, + "loss": 3.885817050933838, + "step": 1735 + }, + { + "epoch": 24.111839231105286, + "grad_norm": 0.19921693205833435, + "learning_rate": 0.0006, + "loss": 3.838515043258667, + "step": 1736 + }, + { + "epoch": 24.125819134993446, + "grad_norm": 0.20221556723117828, + "learning_rate": 0.0006, + "loss": 3.8585309982299805, + "step": 1737 + }, + { + "epoch": 24.13979903888161, + "grad_norm": 0.20124691724777222, + "learning_rate": 0.0006, + "loss": 3.81656551361084, + "step": 1738 + }, + { + "epoch": 24.15377894276977, + "grad_norm": 0.1810830533504486, + "learning_rate": 0.0006, + "loss": 3.841783046722412, + "step": 1739 + }, + { + "epoch": 24.16775884665793, + "grad_norm": 0.18414196372032166, + "learning_rate": 0.0006, + "loss": 3.8614797592163086, + "step": 1740 + }, + { + "epoch": 24.18173875054609, + "grad_norm": 0.18930725753307343, + "learning_rate": 0.0006, + "loss": 3.8382534980773926, + "step": 1741 + }, + { + "epoch": 24.195718654434252, + "grad_norm": 0.19658128917217255, + "learning_rate": 0.0006, + "loss": 3.881742477416992, + "step": 1742 + }, + { + "epoch": 24.209698558322412, + "grad_norm": 0.20175589621067047, + "learning_rate": 0.0006, + "loss": 3.8760581016540527, + "step": 1743 + }, + { + "epoch": 24.22367846221057, + "grad_norm": 0.19416265189647675, + "learning_rate": 0.0006, + "loss": 3.8373687267303467, + "step": 1744 + }, + { + "epoch": 24.23765836609873, + "grad_norm": 0.20206521451473236, + "learning_rate": 0.0006, + "loss": 3.8322830200195312, + "step": 1745 + }, + { + "epoch": 24.251638269986895, + "grad_norm": 0.21797429025173187, + "learning_rate": 0.0006, + "loss": 3.849905490875244, + "step": 1746 + }, + { + "epoch": 24.265618173875055, + "grad_norm": 0.21295784413814545, + "learning_rate": 0.0006, + "loss": 3.847714900970459, + "step": 1747 + }, + { + "epoch": 24.279598077763215, + "grad_norm": 0.22023876011371613, + "learning_rate": 0.0006, + "loss": 3.8221592903137207, + "step": 1748 + }, + { + "epoch": 24.293577981651374, + "grad_norm": 0.2125576138496399, + "learning_rate": 0.0006, + "loss": 3.8070976734161377, + "step": 1749 + }, + { + "epoch": 24.307557885539538, + "grad_norm": 0.18673811852931976, + "learning_rate": 0.0006, + "loss": 3.866878032684326, + "step": 1750 + }, + { + "epoch": 24.321537789427698, + "grad_norm": 0.1972627341747284, + "learning_rate": 0.0006, + "loss": 3.846404552459717, + "step": 1751 + }, + { + "epoch": 24.335517693315857, + "grad_norm": 0.21846632659435272, + "learning_rate": 0.0006, + "loss": 3.8528640270233154, + "step": 1752 + }, + { + "epoch": 24.34949759720402, + "grad_norm": 0.22234080731868744, + "learning_rate": 0.0006, + "loss": 3.8268141746520996, + "step": 1753 + }, + { + "epoch": 24.36347750109218, + "grad_norm": 0.23002761602401733, + "learning_rate": 0.0006, + "loss": 3.832444667816162, + "step": 1754 + }, + { + "epoch": 24.37745740498034, + "grad_norm": 0.22526559233665466, + "learning_rate": 0.0006, + "loss": 3.864406108856201, + "step": 1755 + }, + { + "epoch": 24.3914373088685, + "grad_norm": 0.2290039211511612, + "learning_rate": 0.0006, + "loss": 3.8449103832244873, + "step": 1756 + }, + { + "epoch": 24.405417212756664, + "grad_norm": 0.23145617544651031, + "learning_rate": 0.0006, + "loss": 3.8183751106262207, + "step": 1757 + }, + { + "epoch": 24.419397116644824, + "grad_norm": 0.24287554621696472, + "learning_rate": 0.0006, + "loss": 3.809481382369995, + "step": 1758 + }, + { + "epoch": 24.433377020532983, + "grad_norm": 0.2672404646873474, + "learning_rate": 0.0006, + "loss": 3.877800464630127, + "step": 1759 + }, + { + "epoch": 24.447356924421143, + "grad_norm": 0.26292186975479126, + "learning_rate": 0.0006, + "loss": 3.8329367637634277, + "step": 1760 + }, + { + "epoch": 24.461336828309307, + "grad_norm": 0.26235947012901306, + "learning_rate": 0.0006, + "loss": 3.8414158821105957, + "step": 1761 + }, + { + "epoch": 24.475316732197467, + "grad_norm": 0.2638382613658905, + "learning_rate": 0.0006, + "loss": 3.849188804626465, + "step": 1762 + }, + { + "epoch": 24.489296636085626, + "grad_norm": 0.2564602196216583, + "learning_rate": 0.0006, + "loss": 3.865501880645752, + "step": 1763 + }, + { + "epoch": 24.503276539973786, + "grad_norm": 0.21352271735668182, + "learning_rate": 0.0006, + "loss": 3.87910795211792, + "step": 1764 + }, + { + "epoch": 24.51725644386195, + "grad_norm": 0.2470584511756897, + "learning_rate": 0.0006, + "loss": 3.858750343322754, + "step": 1765 + }, + { + "epoch": 24.53123634775011, + "grad_norm": 0.24907536804676056, + "learning_rate": 0.0006, + "loss": 3.8532559871673584, + "step": 1766 + }, + { + "epoch": 24.54521625163827, + "grad_norm": 0.2426205575466156, + "learning_rate": 0.0006, + "loss": 3.8659827709198, + "step": 1767 + }, + { + "epoch": 24.55919615552643, + "grad_norm": 0.23481151461601257, + "learning_rate": 0.0006, + "loss": 3.863948345184326, + "step": 1768 + }, + { + "epoch": 24.573176059414592, + "grad_norm": 0.22717779874801636, + "learning_rate": 0.0006, + "loss": 3.848527193069458, + "step": 1769 + }, + { + "epoch": 24.587155963302752, + "grad_norm": 0.2267129123210907, + "learning_rate": 0.0006, + "loss": 3.8600735664367676, + "step": 1770 + }, + { + "epoch": 24.601135867190912, + "grad_norm": 0.24967710673809052, + "learning_rate": 0.0006, + "loss": 3.84291934967041, + "step": 1771 + }, + { + "epoch": 24.615115771079076, + "grad_norm": 0.25308957695961, + "learning_rate": 0.0006, + "loss": 3.846181631088257, + "step": 1772 + }, + { + "epoch": 24.629095674967235, + "grad_norm": 0.2689298391342163, + "learning_rate": 0.0006, + "loss": 3.8572893142700195, + "step": 1773 + }, + { + "epoch": 24.643075578855395, + "grad_norm": 0.26458555459976196, + "learning_rate": 0.0006, + "loss": 3.8583621978759766, + "step": 1774 + }, + { + "epoch": 24.657055482743555, + "grad_norm": 0.24416811764240265, + "learning_rate": 0.0006, + "loss": 3.8648223876953125, + "step": 1775 + }, + { + "epoch": 24.67103538663172, + "grad_norm": 0.22218526899814606, + "learning_rate": 0.0006, + "loss": 3.839395523071289, + "step": 1776 + }, + { + "epoch": 24.68501529051988, + "grad_norm": 0.2147492915391922, + "learning_rate": 0.0006, + "loss": 3.875734567642212, + "step": 1777 + }, + { + "epoch": 24.698995194408038, + "grad_norm": 0.2346794754266739, + "learning_rate": 0.0006, + "loss": 3.854768991470337, + "step": 1778 + }, + { + "epoch": 24.712975098296198, + "grad_norm": 0.21406520903110504, + "learning_rate": 0.0006, + "loss": 3.8269104957580566, + "step": 1779 + }, + { + "epoch": 24.72695500218436, + "grad_norm": 0.20716224610805511, + "learning_rate": 0.0006, + "loss": 3.8245768547058105, + "step": 1780 + }, + { + "epoch": 24.74093490607252, + "grad_norm": 0.21445901691913605, + "learning_rate": 0.0006, + "loss": 3.8877978324890137, + "step": 1781 + }, + { + "epoch": 24.75491480996068, + "grad_norm": 0.21964985132217407, + "learning_rate": 0.0006, + "loss": 3.8602452278137207, + "step": 1782 + }, + { + "epoch": 24.76889471384884, + "grad_norm": 0.209807351231575, + "learning_rate": 0.0006, + "loss": 3.853428602218628, + "step": 1783 + }, + { + "epoch": 24.782874617737004, + "grad_norm": 0.19564911723136902, + "learning_rate": 0.0006, + "loss": 3.832275867462158, + "step": 1784 + }, + { + "epoch": 24.796854521625164, + "grad_norm": 0.21394333243370056, + "learning_rate": 0.0006, + "loss": 3.8543171882629395, + "step": 1785 + }, + { + "epoch": 24.810834425513324, + "grad_norm": 0.23156948387622833, + "learning_rate": 0.0006, + "loss": 3.8539412021636963, + "step": 1786 + }, + { + "epoch": 24.824814329401484, + "grad_norm": 0.2378678321838379, + "learning_rate": 0.0006, + "loss": 3.8409833908081055, + "step": 1787 + }, + { + "epoch": 24.838794233289647, + "grad_norm": 0.23816189169883728, + "learning_rate": 0.0006, + "loss": 3.855379581451416, + "step": 1788 + }, + { + "epoch": 24.852774137177807, + "grad_norm": 0.23109886050224304, + "learning_rate": 0.0006, + "loss": 3.8689517974853516, + "step": 1789 + }, + { + "epoch": 24.866754041065967, + "grad_norm": 0.2042883038520813, + "learning_rate": 0.0006, + "loss": 3.8730404376983643, + "step": 1790 + }, + { + "epoch": 24.88073394495413, + "grad_norm": 0.2039479911327362, + "learning_rate": 0.0006, + "loss": 3.8474984169006348, + "step": 1791 + }, + { + "epoch": 24.89471384884229, + "grad_norm": 0.213027223944664, + "learning_rate": 0.0006, + "loss": 3.8539695739746094, + "step": 1792 + }, + { + "epoch": 24.90869375273045, + "grad_norm": 0.2280654013156891, + "learning_rate": 0.0006, + "loss": 3.8633079528808594, + "step": 1793 + }, + { + "epoch": 24.92267365661861, + "grad_norm": 0.20864921808242798, + "learning_rate": 0.0006, + "loss": 3.8110368251800537, + "step": 1794 + }, + { + "epoch": 24.936653560506773, + "grad_norm": 0.23002111911773682, + "learning_rate": 0.0006, + "loss": 3.8334741592407227, + "step": 1795 + }, + { + "epoch": 24.950633464394933, + "grad_norm": 0.232331782579422, + "learning_rate": 0.0006, + "loss": 3.871887683868408, + "step": 1796 + }, + { + "epoch": 24.964613368283093, + "grad_norm": 0.24141235649585724, + "learning_rate": 0.0006, + "loss": 3.8614959716796875, + "step": 1797 + }, + { + "epoch": 24.978593272171253, + "grad_norm": 0.2545177638530731, + "learning_rate": 0.0006, + "loss": 3.8563568592071533, + "step": 1798 + }, + { + "epoch": 24.992573176059416, + "grad_norm": 0.25186386704444885, + "learning_rate": 0.0006, + "loss": 3.882166862487793, + "step": 1799 + }, + { + "epoch": 25.0, + "grad_norm": 0.260195791721344, + "learning_rate": 0.0006, + "loss": 3.884554862976074, + "step": 1800 + }, + { + "epoch": 25.0, + "eval_loss": 4.08809757232666, + "eval_runtime": 44.7947, + "eval_samples_per_second": 54.515, + "eval_steps_per_second": 3.416, + "step": 1800 + }, + { + "epoch": 25.01397990388816, + "grad_norm": 0.25396403670310974, + "learning_rate": 0.0006, + "loss": 3.8217287063598633, + "step": 1801 + }, + { + "epoch": 25.027959807776323, + "grad_norm": 0.2773195207118988, + "learning_rate": 0.0006, + "loss": 3.809542417526245, + "step": 1802 + }, + { + "epoch": 25.041939711664483, + "grad_norm": 0.3073263168334961, + "learning_rate": 0.0006, + "loss": 3.825706958770752, + "step": 1803 + }, + { + "epoch": 25.055919615552643, + "grad_norm": 0.30885398387908936, + "learning_rate": 0.0006, + "loss": 3.8081188201904297, + "step": 1804 + }, + { + "epoch": 25.069899519440803, + "grad_norm": 0.27356019616127014, + "learning_rate": 0.0006, + "loss": 3.8538241386413574, + "step": 1805 + }, + { + "epoch": 25.083879423328966, + "grad_norm": 0.22830164432525635, + "learning_rate": 0.0006, + "loss": 3.8246965408325195, + "step": 1806 + }, + { + "epoch": 25.097859327217126, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.8552842140197754, + "step": 1807 + }, + { + "epoch": 25.111839231105286, + "grad_norm": 0.21718722581863403, + "learning_rate": 0.0006, + "loss": 3.8489418029785156, + "step": 1808 + }, + { + "epoch": 25.125819134993446, + "grad_norm": 0.2480861395597458, + "learning_rate": 0.0006, + "loss": 3.821455955505371, + "step": 1809 + }, + { + "epoch": 25.13979903888161, + "grad_norm": 0.2796635627746582, + "learning_rate": 0.0006, + "loss": 3.8202435970306396, + "step": 1810 + }, + { + "epoch": 25.15377894276977, + "grad_norm": 0.2829958200454712, + "learning_rate": 0.0006, + "loss": 3.8293306827545166, + "step": 1811 + }, + { + "epoch": 25.16775884665793, + "grad_norm": 0.2510125935077667, + "learning_rate": 0.0006, + "loss": 3.8342957496643066, + "step": 1812 + }, + { + "epoch": 25.18173875054609, + "grad_norm": 0.22923722863197327, + "learning_rate": 0.0006, + "loss": 3.8448352813720703, + "step": 1813 + }, + { + "epoch": 25.195718654434252, + "grad_norm": 0.21439228951931, + "learning_rate": 0.0006, + "loss": 3.8343517780303955, + "step": 1814 + }, + { + "epoch": 25.209698558322412, + "grad_norm": 0.1965373307466507, + "learning_rate": 0.0006, + "loss": 3.8163528442382812, + "step": 1815 + }, + { + "epoch": 25.22367846221057, + "grad_norm": 0.20121058821678162, + "learning_rate": 0.0006, + "loss": 3.8007280826568604, + "step": 1816 + }, + { + "epoch": 25.23765836609873, + "grad_norm": 0.21383272111415863, + "learning_rate": 0.0006, + "loss": 3.8200385570526123, + "step": 1817 + }, + { + "epoch": 25.251638269986895, + "grad_norm": 0.2066601663827896, + "learning_rate": 0.0006, + "loss": 3.8333921432495117, + "step": 1818 + }, + { + "epoch": 25.265618173875055, + "grad_norm": 0.2104874551296234, + "learning_rate": 0.0006, + "loss": 3.838012218475342, + "step": 1819 + }, + { + "epoch": 25.279598077763215, + "grad_norm": 0.19733119010925293, + "learning_rate": 0.0006, + "loss": 3.835139274597168, + "step": 1820 + }, + { + "epoch": 25.293577981651374, + "grad_norm": 0.2119498997926712, + "learning_rate": 0.0006, + "loss": 3.8099722862243652, + "step": 1821 + }, + { + "epoch": 25.307557885539538, + "grad_norm": 0.21863529086112976, + "learning_rate": 0.0006, + "loss": 3.7801573276519775, + "step": 1822 + }, + { + "epoch": 25.321537789427698, + "grad_norm": 0.2113322764635086, + "learning_rate": 0.0006, + "loss": 3.809903621673584, + "step": 1823 + }, + { + "epoch": 25.335517693315857, + "grad_norm": 0.21594023704528809, + "learning_rate": 0.0006, + "loss": 3.8485071659088135, + "step": 1824 + }, + { + "epoch": 25.34949759720402, + "grad_norm": 0.21475964784622192, + "learning_rate": 0.0006, + "loss": 3.7894768714904785, + "step": 1825 + }, + { + "epoch": 25.36347750109218, + "grad_norm": 0.21174900233745575, + "learning_rate": 0.0006, + "loss": 3.821711540222168, + "step": 1826 + }, + { + "epoch": 25.37745740498034, + "grad_norm": 0.2065584659576416, + "learning_rate": 0.0006, + "loss": 3.8439841270446777, + "step": 1827 + }, + { + "epoch": 25.3914373088685, + "grad_norm": 0.19157007336616516, + "learning_rate": 0.0006, + "loss": 3.864245891571045, + "step": 1828 + }, + { + "epoch": 25.405417212756664, + "grad_norm": 0.19983816146850586, + "learning_rate": 0.0006, + "loss": 3.8317415714263916, + "step": 1829 + }, + { + "epoch": 25.419397116644824, + "grad_norm": 0.20506152510643005, + "learning_rate": 0.0006, + "loss": 3.8009896278381348, + "step": 1830 + }, + { + "epoch": 25.433377020532983, + "grad_norm": 0.19056960940361023, + "learning_rate": 0.0006, + "loss": 3.8383498191833496, + "step": 1831 + }, + { + "epoch": 25.447356924421143, + "grad_norm": 0.19262190163135529, + "learning_rate": 0.0006, + "loss": 3.838902235031128, + "step": 1832 + }, + { + "epoch": 25.461336828309307, + "grad_norm": 0.19859355688095093, + "learning_rate": 0.0006, + "loss": 3.82452392578125, + "step": 1833 + }, + { + "epoch": 25.475316732197467, + "grad_norm": 0.2144225388765335, + "learning_rate": 0.0006, + "loss": 3.8110032081604004, + "step": 1834 + }, + { + "epoch": 25.489296636085626, + "grad_norm": 0.20566298067569733, + "learning_rate": 0.0006, + "loss": 3.8662471771240234, + "step": 1835 + }, + { + "epoch": 25.503276539973786, + "grad_norm": 0.2071852684020996, + "learning_rate": 0.0006, + "loss": 3.821134090423584, + "step": 1836 + }, + { + "epoch": 25.51725644386195, + "grad_norm": 0.2095036506652832, + "learning_rate": 0.0006, + "loss": 3.824092388153076, + "step": 1837 + }, + { + "epoch": 25.53123634775011, + "grad_norm": 0.20136208832263947, + "learning_rate": 0.0006, + "loss": 3.8669862747192383, + "step": 1838 + }, + { + "epoch": 25.54521625163827, + "grad_norm": 0.1983811855316162, + "learning_rate": 0.0006, + "loss": 3.8120107650756836, + "step": 1839 + }, + { + "epoch": 25.55919615552643, + "grad_norm": 0.22859714925289154, + "learning_rate": 0.0006, + "loss": 3.8519299030303955, + "step": 1840 + }, + { + "epoch": 25.573176059414592, + "grad_norm": 0.23672667145729065, + "learning_rate": 0.0006, + "loss": 3.8245458602905273, + "step": 1841 + }, + { + "epoch": 25.587155963302752, + "grad_norm": 0.22698380053043365, + "learning_rate": 0.0006, + "loss": 3.8406805992126465, + "step": 1842 + }, + { + "epoch": 25.601135867190912, + "grad_norm": 0.25684037804603577, + "learning_rate": 0.0006, + "loss": 3.8584351539611816, + "step": 1843 + }, + { + "epoch": 25.615115771079076, + "grad_norm": 0.28180673718452454, + "learning_rate": 0.0006, + "loss": 3.8085098266601562, + "step": 1844 + }, + { + "epoch": 25.629095674967235, + "grad_norm": 0.2814631462097168, + "learning_rate": 0.0006, + "loss": 3.845083236694336, + "step": 1845 + }, + { + "epoch": 25.643075578855395, + "grad_norm": 0.23630981147289276, + "learning_rate": 0.0006, + "loss": 3.847749710083008, + "step": 1846 + }, + { + "epoch": 25.657055482743555, + "grad_norm": 0.22463662922382355, + "learning_rate": 0.0006, + "loss": 3.8172082901000977, + "step": 1847 + }, + { + "epoch": 25.67103538663172, + "grad_norm": 0.26551681756973267, + "learning_rate": 0.0006, + "loss": 3.8205654621124268, + "step": 1848 + }, + { + "epoch": 25.68501529051988, + "grad_norm": 0.27824243903160095, + "learning_rate": 0.0006, + "loss": 3.846076011657715, + "step": 1849 + }, + { + "epoch": 25.698995194408038, + "grad_norm": 0.266998291015625, + "learning_rate": 0.0006, + "loss": 3.8543574810028076, + "step": 1850 + }, + { + "epoch": 25.712975098296198, + "grad_norm": 0.22980351746082306, + "learning_rate": 0.0006, + "loss": 3.855511426925659, + "step": 1851 + }, + { + "epoch": 25.72695500218436, + "grad_norm": 0.23482872545719147, + "learning_rate": 0.0006, + "loss": 3.8687663078308105, + "step": 1852 + }, + { + "epoch": 25.74093490607252, + "grad_norm": 0.21119585633277893, + "learning_rate": 0.0006, + "loss": 3.8147101402282715, + "step": 1853 + }, + { + "epoch": 25.75491480996068, + "grad_norm": 0.21200446784496307, + "learning_rate": 0.0006, + "loss": 3.858473777770996, + "step": 1854 + }, + { + "epoch": 25.76889471384884, + "grad_norm": 0.20497842133045197, + "learning_rate": 0.0006, + "loss": 3.8545501232147217, + "step": 1855 + }, + { + "epoch": 25.782874617737004, + "grad_norm": 0.19328081607818604, + "learning_rate": 0.0006, + "loss": 3.7941341400146484, + "step": 1856 + }, + { + "epoch": 25.796854521625164, + "grad_norm": 0.2191578894853592, + "learning_rate": 0.0006, + "loss": 3.8408665657043457, + "step": 1857 + }, + { + "epoch": 25.810834425513324, + "grad_norm": 0.2548826038837433, + "learning_rate": 0.0006, + "loss": 3.854130744934082, + "step": 1858 + }, + { + "epoch": 25.824814329401484, + "grad_norm": 0.2290351390838623, + "learning_rate": 0.0006, + "loss": 3.8680176734924316, + "step": 1859 + }, + { + "epoch": 25.838794233289647, + "grad_norm": 0.20760944485664368, + "learning_rate": 0.0006, + "loss": 3.83731746673584, + "step": 1860 + }, + { + "epoch": 25.852774137177807, + "grad_norm": 0.19587582349777222, + "learning_rate": 0.0006, + "loss": 3.8173444271087646, + "step": 1861 + }, + { + "epoch": 25.866754041065967, + "grad_norm": 0.20762693881988525, + "learning_rate": 0.0006, + "loss": 3.8479790687561035, + "step": 1862 + }, + { + "epoch": 25.88073394495413, + "grad_norm": 0.20633186399936676, + "learning_rate": 0.0006, + "loss": 3.852285385131836, + "step": 1863 + }, + { + "epoch": 25.89471384884229, + "grad_norm": 0.21484960615634918, + "learning_rate": 0.0006, + "loss": 3.832592725753784, + "step": 1864 + }, + { + "epoch": 25.90869375273045, + "grad_norm": 0.19569595158100128, + "learning_rate": 0.0006, + "loss": 3.838071584701538, + "step": 1865 + }, + { + "epoch": 25.92267365661861, + "grad_norm": 0.19532904028892517, + "learning_rate": 0.0006, + "loss": 3.854252815246582, + "step": 1866 + }, + { + "epoch": 25.936653560506773, + "grad_norm": 0.1909649819135666, + "learning_rate": 0.0006, + "loss": 3.8444578647613525, + "step": 1867 + }, + { + "epoch": 25.950633464394933, + "grad_norm": 0.17476283013820648, + "learning_rate": 0.0006, + "loss": 3.836519241333008, + "step": 1868 + }, + { + "epoch": 25.964613368283093, + "grad_norm": 0.1895206719636917, + "learning_rate": 0.0006, + "loss": 3.8282582759857178, + "step": 1869 + }, + { + "epoch": 25.978593272171253, + "grad_norm": 0.20038437843322754, + "learning_rate": 0.0006, + "loss": 3.80542254447937, + "step": 1870 + }, + { + "epoch": 25.992573176059416, + "grad_norm": 0.20728608965873718, + "learning_rate": 0.0006, + "loss": 3.8584811687469482, + "step": 1871 + }, + { + "epoch": 26.0, + "grad_norm": 0.22110891342163086, + "learning_rate": 0.0006, + "loss": 3.8020238876342773, + "step": 1872 + }, + { + "epoch": 26.0, + "eval_loss": 4.072164058685303, + "eval_runtime": 44.9089, + "eval_samples_per_second": 54.377, + "eval_steps_per_second": 3.407, + "step": 1872 + }, + { + "epoch": 26.01397990388816, + "grad_norm": 0.2222519814968109, + "learning_rate": 0.0006, + "loss": 3.8309168815612793, + "step": 1873 + }, + { + "epoch": 26.027959807776323, + "grad_norm": 0.2637656033039093, + "learning_rate": 0.0006, + "loss": 3.8025143146514893, + "step": 1874 + }, + { + "epoch": 26.041939711664483, + "grad_norm": 0.2665974795818329, + "learning_rate": 0.0006, + "loss": 3.8244004249572754, + "step": 1875 + }, + { + "epoch": 26.055919615552643, + "grad_norm": 0.22475720942020416, + "learning_rate": 0.0006, + "loss": 3.80039119720459, + "step": 1876 + }, + { + "epoch": 26.069899519440803, + "grad_norm": 0.22994336485862732, + "learning_rate": 0.0006, + "loss": 3.7700726985931396, + "step": 1877 + }, + { + "epoch": 26.083879423328966, + "grad_norm": 0.24214622378349304, + "learning_rate": 0.0006, + "loss": 3.818725109100342, + "step": 1878 + }, + { + "epoch": 26.097859327217126, + "grad_norm": 0.22701293230056763, + "learning_rate": 0.0006, + "loss": 3.833803176879883, + "step": 1879 + }, + { + "epoch": 26.111839231105286, + "grad_norm": 0.21452295780181885, + "learning_rate": 0.0006, + "loss": 3.8391427993774414, + "step": 1880 + }, + { + "epoch": 26.125819134993446, + "grad_norm": 0.20179636776447296, + "learning_rate": 0.0006, + "loss": 3.802957057952881, + "step": 1881 + }, + { + "epoch": 26.13979903888161, + "grad_norm": 0.2087477445602417, + "learning_rate": 0.0006, + "loss": 3.8339905738830566, + "step": 1882 + }, + { + "epoch": 26.15377894276977, + "grad_norm": 0.23583556711673737, + "learning_rate": 0.0006, + "loss": 3.802438259124756, + "step": 1883 + }, + { + "epoch": 26.16775884665793, + "grad_norm": 0.2504311501979828, + "learning_rate": 0.0006, + "loss": 3.80244517326355, + "step": 1884 + }, + { + "epoch": 26.18173875054609, + "grad_norm": 0.24903984367847443, + "learning_rate": 0.0006, + "loss": 3.788865566253662, + "step": 1885 + }, + { + "epoch": 26.195718654434252, + "grad_norm": 0.2707931101322174, + "learning_rate": 0.0006, + "loss": 3.800051212310791, + "step": 1886 + }, + { + "epoch": 26.209698558322412, + "grad_norm": 0.24902892112731934, + "learning_rate": 0.0006, + "loss": 3.8068337440490723, + "step": 1887 + }, + { + "epoch": 26.22367846221057, + "grad_norm": 0.22655536234378815, + "learning_rate": 0.0006, + "loss": 3.779439926147461, + "step": 1888 + }, + { + "epoch": 26.23765836609873, + "grad_norm": 0.24797996878623962, + "learning_rate": 0.0006, + "loss": 3.822831153869629, + "step": 1889 + }, + { + "epoch": 26.251638269986895, + "grad_norm": 0.2821420431137085, + "learning_rate": 0.0006, + "loss": 3.807954788208008, + "step": 1890 + }, + { + "epoch": 26.265618173875055, + "grad_norm": 0.30392691493034363, + "learning_rate": 0.0006, + "loss": 3.776951789855957, + "step": 1891 + }, + { + "epoch": 26.279598077763215, + "grad_norm": 0.32641273736953735, + "learning_rate": 0.0006, + "loss": 3.8216311931610107, + "step": 1892 + }, + { + "epoch": 26.293577981651374, + "grad_norm": 0.32674387097358704, + "learning_rate": 0.0006, + "loss": 3.815596580505371, + "step": 1893 + }, + { + "epoch": 26.307557885539538, + "grad_norm": 0.29137250781059265, + "learning_rate": 0.0006, + "loss": 3.8170812129974365, + "step": 1894 + }, + { + "epoch": 26.321537789427698, + "grad_norm": 0.24291734397411346, + "learning_rate": 0.0006, + "loss": 3.810352087020874, + "step": 1895 + }, + { + "epoch": 26.335517693315857, + "grad_norm": 0.24023209512233734, + "learning_rate": 0.0006, + "loss": 3.8075947761535645, + "step": 1896 + }, + { + "epoch": 26.34949759720402, + "grad_norm": 0.24334804713726044, + "learning_rate": 0.0006, + "loss": 3.831556797027588, + "step": 1897 + }, + { + "epoch": 26.36347750109218, + "grad_norm": 0.2109663337469101, + "learning_rate": 0.0006, + "loss": 3.838347911834717, + "step": 1898 + }, + { + "epoch": 26.37745740498034, + "grad_norm": 0.19668002426624298, + "learning_rate": 0.0006, + "loss": 3.774737596511841, + "step": 1899 + }, + { + "epoch": 26.3914373088685, + "grad_norm": 0.21329134702682495, + "learning_rate": 0.0006, + "loss": 3.8237252235412598, + "step": 1900 + }, + { + "epoch": 26.405417212756664, + "grad_norm": 0.20381781458854675, + "learning_rate": 0.0006, + "loss": 3.802569627761841, + "step": 1901 + }, + { + "epoch": 26.419397116644824, + "grad_norm": 0.19083160161972046, + "learning_rate": 0.0006, + "loss": 3.8301358222961426, + "step": 1902 + }, + { + "epoch": 26.433377020532983, + "grad_norm": 0.20012904703617096, + "learning_rate": 0.0006, + "loss": 3.7966408729553223, + "step": 1903 + }, + { + "epoch": 26.447356924421143, + "grad_norm": 0.19483457505702972, + "learning_rate": 0.0006, + "loss": 3.8431968688964844, + "step": 1904 + }, + { + "epoch": 26.461336828309307, + "grad_norm": 0.19946353137493134, + "learning_rate": 0.0006, + "loss": 3.8023815155029297, + "step": 1905 + }, + { + "epoch": 26.475316732197467, + "grad_norm": 0.1984100341796875, + "learning_rate": 0.0006, + "loss": 3.8283071517944336, + "step": 1906 + }, + { + "epoch": 26.489296636085626, + "grad_norm": 0.2148299664258957, + "learning_rate": 0.0006, + "loss": 3.8377504348754883, + "step": 1907 + }, + { + "epoch": 26.503276539973786, + "grad_norm": 0.22139184176921844, + "learning_rate": 0.0006, + "loss": 3.823051691055298, + "step": 1908 + }, + { + "epoch": 26.51725644386195, + "grad_norm": 0.18289034068584442, + "learning_rate": 0.0006, + "loss": 3.8027071952819824, + "step": 1909 + }, + { + "epoch": 26.53123634775011, + "grad_norm": 0.1816026121377945, + "learning_rate": 0.0006, + "loss": 3.823786735534668, + "step": 1910 + }, + { + "epoch": 26.54521625163827, + "grad_norm": 0.19074322283267975, + "learning_rate": 0.0006, + "loss": 3.813331127166748, + "step": 1911 + }, + { + "epoch": 26.55919615552643, + "grad_norm": 0.20301467180252075, + "learning_rate": 0.0006, + "loss": 3.8218350410461426, + "step": 1912 + }, + { + "epoch": 26.573176059414592, + "grad_norm": 0.25266432762145996, + "learning_rate": 0.0006, + "loss": 3.8455142974853516, + "step": 1913 + }, + { + "epoch": 26.587155963302752, + "grad_norm": 0.25804755091667175, + "learning_rate": 0.0006, + "loss": 3.799227476119995, + "step": 1914 + }, + { + "epoch": 26.601135867190912, + "grad_norm": 0.2555372416973114, + "learning_rate": 0.0006, + "loss": 3.8125686645507812, + "step": 1915 + }, + { + "epoch": 26.615115771079076, + "grad_norm": 0.2266194075345993, + "learning_rate": 0.0006, + "loss": 3.858363628387451, + "step": 1916 + }, + { + "epoch": 26.629095674967235, + "grad_norm": 0.1933048665523529, + "learning_rate": 0.0006, + "loss": 3.8078083992004395, + "step": 1917 + }, + { + "epoch": 26.643075578855395, + "grad_norm": 0.19936731457710266, + "learning_rate": 0.0006, + "loss": 3.81748628616333, + "step": 1918 + }, + { + "epoch": 26.657055482743555, + "grad_norm": 0.22041693329811096, + "learning_rate": 0.0006, + "loss": 3.833272933959961, + "step": 1919 + }, + { + "epoch": 26.67103538663172, + "grad_norm": 0.20679150521755219, + "learning_rate": 0.0006, + "loss": 3.8127288818359375, + "step": 1920 + }, + { + "epoch": 26.68501529051988, + "grad_norm": 0.21545100212097168, + "learning_rate": 0.0006, + "loss": 3.816051483154297, + "step": 1921 + }, + { + "epoch": 26.698995194408038, + "grad_norm": 0.23554518818855286, + "learning_rate": 0.0006, + "loss": 3.8180980682373047, + "step": 1922 + }, + { + "epoch": 26.712975098296198, + "grad_norm": 0.21942466497421265, + "learning_rate": 0.0006, + "loss": 3.803107976913452, + "step": 1923 + }, + { + "epoch": 26.72695500218436, + "grad_norm": 0.22335010766983032, + "learning_rate": 0.0006, + "loss": 3.847890853881836, + "step": 1924 + }, + { + "epoch": 26.74093490607252, + "grad_norm": 0.24731314182281494, + "learning_rate": 0.0006, + "loss": 3.7945008277893066, + "step": 1925 + }, + { + "epoch": 26.75491480996068, + "grad_norm": 0.2804568111896515, + "learning_rate": 0.0006, + "loss": 3.8400068283081055, + "step": 1926 + }, + { + "epoch": 26.76889471384884, + "grad_norm": 0.28787222504615784, + "learning_rate": 0.0006, + "loss": 3.839771270751953, + "step": 1927 + }, + { + "epoch": 26.782874617737004, + "grad_norm": 0.2949632406234741, + "learning_rate": 0.0006, + "loss": 3.8225326538085938, + "step": 1928 + }, + { + "epoch": 26.796854521625164, + "grad_norm": 0.31546032428741455, + "learning_rate": 0.0006, + "loss": 3.8182597160339355, + "step": 1929 + }, + { + "epoch": 26.810834425513324, + "grad_norm": 0.2956962585449219, + "learning_rate": 0.0006, + "loss": 3.8315680027008057, + "step": 1930 + }, + { + "epoch": 26.824814329401484, + "grad_norm": 0.26943835616111755, + "learning_rate": 0.0006, + "loss": 3.787720203399658, + "step": 1931 + }, + { + "epoch": 26.838794233289647, + "grad_norm": 0.24272359907627106, + "learning_rate": 0.0006, + "loss": 3.7973692417144775, + "step": 1932 + }, + { + "epoch": 26.852774137177807, + "grad_norm": 0.20553994178771973, + "learning_rate": 0.0006, + "loss": 3.8241593837738037, + "step": 1933 + }, + { + "epoch": 26.866754041065967, + "grad_norm": 0.21927912533283234, + "learning_rate": 0.0006, + "loss": 3.8608899116516113, + "step": 1934 + }, + { + "epoch": 26.88073394495413, + "grad_norm": 0.22878016531467438, + "learning_rate": 0.0006, + "loss": 3.8341972827911377, + "step": 1935 + }, + { + "epoch": 26.89471384884229, + "grad_norm": 0.2085554301738739, + "learning_rate": 0.0006, + "loss": 3.8261351585388184, + "step": 1936 + }, + { + "epoch": 26.90869375273045, + "grad_norm": 0.21259072422981262, + "learning_rate": 0.0006, + "loss": 3.862056255340576, + "step": 1937 + }, + { + "epoch": 26.92267365661861, + "grad_norm": 0.21354122459888458, + "learning_rate": 0.0006, + "loss": 3.80879545211792, + "step": 1938 + }, + { + "epoch": 26.936653560506773, + "grad_norm": 0.2350253462791443, + "learning_rate": 0.0006, + "loss": 3.817826271057129, + "step": 1939 + }, + { + "epoch": 26.950633464394933, + "grad_norm": 0.23833836615085602, + "learning_rate": 0.0006, + "loss": 3.8220884799957275, + "step": 1940 + }, + { + "epoch": 26.964613368283093, + "grad_norm": 0.2368069440126419, + "learning_rate": 0.0006, + "loss": 3.843264579772949, + "step": 1941 + }, + { + "epoch": 26.978593272171253, + "grad_norm": 0.22663559019565582, + "learning_rate": 0.0006, + "loss": 3.81339430809021, + "step": 1942 + }, + { + "epoch": 26.992573176059416, + "grad_norm": 0.2151402235031128, + "learning_rate": 0.0006, + "loss": 3.8262834548950195, + "step": 1943 + }, + { + "epoch": 27.0, + "grad_norm": 0.24320295453071594, + "learning_rate": 0.0006, + "loss": 3.858567237854004, + "step": 1944 + }, + { + "epoch": 27.0, + "eval_loss": 4.0613322257995605, + "eval_runtime": 44.766, + "eval_samples_per_second": 54.55, + "eval_steps_per_second": 3.418, + "step": 1944 + }, + { + "epoch": 27.01397990388816, + "grad_norm": 0.21188032627105713, + "learning_rate": 0.0006, + "loss": 3.7631278038024902, + "step": 1945 + }, + { + "epoch": 27.027959807776323, + "grad_norm": 0.22298137843608856, + "learning_rate": 0.0006, + "loss": 3.784029245376587, + "step": 1946 + }, + { + "epoch": 27.041939711664483, + "grad_norm": 0.26530158519744873, + "learning_rate": 0.0006, + "loss": 3.795860767364502, + "step": 1947 + }, + { + "epoch": 27.055919615552643, + "grad_norm": 0.24476729333400726, + "learning_rate": 0.0006, + "loss": 3.77512264251709, + "step": 1948 + }, + { + "epoch": 27.069899519440803, + "grad_norm": 0.1934421956539154, + "learning_rate": 0.0006, + "loss": 3.7797446250915527, + "step": 1949 + }, + { + "epoch": 27.083879423328966, + "grad_norm": 0.19777092337608337, + "learning_rate": 0.0006, + "loss": 3.798935890197754, + "step": 1950 + }, + { + "epoch": 27.097859327217126, + "grad_norm": 0.2071693390607834, + "learning_rate": 0.0006, + "loss": 3.763094425201416, + "step": 1951 + }, + { + "epoch": 27.111839231105286, + "grad_norm": 0.18394742906093597, + "learning_rate": 0.0006, + "loss": 3.7892322540283203, + "step": 1952 + }, + { + "epoch": 27.125819134993446, + "grad_norm": 0.17878273129463196, + "learning_rate": 0.0006, + "loss": 3.787968158721924, + "step": 1953 + }, + { + "epoch": 27.13979903888161, + "grad_norm": 0.18792171776294708, + "learning_rate": 0.0006, + "loss": 3.7719640731811523, + "step": 1954 + }, + { + "epoch": 27.15377894276977, + "grad_norm": 0.18718759715557098, + "learning_rate": 0.0006, + "loss": 3.791835308074951, + "step": 1955 + }, + { + "epoch": 27.16775884665793, + "grad_norm": 0.18716055154800415, + "learning_rate": 0.0006, + "loss": 3.7490220069885254, + "step": 1956 + }, + { + "epoch": 27.18173875054609, + "grad_norm": 0.18429182469844818, + "learning_rate": 0.0006, + "loss": 3.8020081520080566, + "step": 1957 + }, + { + "epoch": 27.195718654434252, + "grad_norm": 0.18571704626083374, + "learning_rate": 0.0006, + "loss": 3.8152215480804443, + "step": 1958 + }, + { + "epoch": 27.209698558322412, + "grad_norm": 0.1788843423128128, + "learning_rate": 0.0006, + "loss": 3.8173317909240723, + "step": 1959 + }, + { + "epoch": 27.22367846221057, + "grad_norm": 0.20459426939487457, + "learning_rate": 0.0006, + "loss": 3.7760040760040283, + "step": 1960 + }, + { + "epoch": 27.23765836609873, + "grad_norm": 0.22360935807228088, + "learning_rate": 0.0006, + "loss": 3.8140203952789307, + "step": 1961 + }, + { + "epoch": 27.251638269986895, + "grad_norm": 0.2062767595052719, + "learning_rate": 0.0006, + "loss": 3.792001247406006, + "step": 1962 + }, + { + "epoch": 27.265618173875055, + "grad_norm": 0.20628073811531067, + "learning_rate": 0.0006, + "loss": 3.7873167991638184, + "step": 1963 + }, + { + "epoch": 27.279598077763215, + "grad_norm": 0.19888348877429962, + "learning_rate": 0.0006, + "loss": 3.7903614044189453, + "step": 1964 + }, + { + "epoch": 27.293577981651374, + "grad_norm": 0.22033332288265228, + "learning_rate": 0.0006, + "loss": 3.802497148513794, + "step": 1965 + }, + { + "epoch": 27.307557885539538, + "grad_norm": 0.23476941883563995, + "learning_rate": 0.0006, + "loss": 3.794090986251831, + "step": 1966 + }, + { + "epoch": 27.321537789427698, + "grad_norm": 0.19639968872070312, + "learning_rate": 0.0006, + "loss": 3.831794023513794, + "step": 1967 + }, + { + "epoch": 27.335517693315857, + "grad_norm": 0.18169641494750977, + "learning_rate": 0.0006, + "loss": 3.7687768936157227, + "step": 1968 + }, + { + "epoch": 27.34949759720402, + "grad_norm": 0.17781762778759003, + "learning_rate": 0.0006, + "loss": 3.7868471145629883, + "step": 1969 + }, + { + "epoch": 27.36347750109218, + "grad_norm": 0.18990416824817657, + "learning_rate": 0.0006, + "loss": 3.8340392112731934, + "step": 1970 + }, + { + "epoch": 27.37745740498034, + "grad_norm": 0.2031438797712326, + "learning_rate": 0.0006, + "loss": 3.804513454437256, + "step": 1971 + }, + { + "epoch": 27.3914373088685, + "grad_norm": 0.21233421564102173, + "learning_rate": 0.0006, + "loss": 3.7908449172973633, + "step": 1972 + }, + { + "epoch": 27.405417212756664, + "grad_norm": 0.22480927407741547, + "learning_rate": 0.0006, + "loss": 3.7894086837768555, + "step": 1973 + }, + { + "epoch": 27.419397116644824, + "grad_norm": 0.22713422775268555, + "learning_rate": 0.0006, + "loss": 3.826005458831787, + "step": 1974 + }, + { + "epoch": 27.433377020532983, + "grad_norm": 0.21637366712093353, + "learning_rate": 0.0006, + "loss": 3.8232319355010986, + "step": 1975 + }, + { + "epoch": 27.447356924421143, + "grad_norm": 0.24092449247837067, + "learning_rate": 0.0006, + "loss": 3.813279628753662, + "step": 1976 + }, + { + "epoch": 27.461336828309307, + "grad_norm": 0.21143047511577606, + "learning_rate": 0.0006, + "loss": 3.811586856842041, + "step": 1977 + }, + { + "epoch": 27.475316732197467, + "grad_norm": 0.21049432456493378, + "learning_rate": 0.0006, + "loss": 3.8227009773254395, + "step": 1978 + }, + { + "epoch": 27.489296636085626, + "grad_norm": 0.21853850781917572, + "learning_rate": 0.0006, + "loss": 3.7992515563964844, + "step": 1979 + }, + { + "epoch": 27.503276539973786, + "grad_norm": 0.22405001521110535, + "learning_rate": 0.0006, + "loss": 3.8311715126037598, + "step": 1980 + }, + { + "epoch": 27.51725644386195, + "grad_norm": 0.24085809290409088, + "learning_rate": 0.0006, + "loss": 3.801962375640869, + "step": 1981 + }, + { + "epoch": 27.53123634775011, + "grad_norm": 0.2612341642379761, + "learning_rate": 0.0006, + "loss": 3.7867887020111084, + "step": 1982 + }, + { + "epoch": 27.54521625163827, + "grad_norm": 0.25136062502861023, + "learning_rate": 0.0006, + "loss": 3.8302273750305176, + "step": 1983 + }, + { + "epoch": 27.55919615552643, + "grad_norm": 0.2485426515340805, + "learning_rate": 0.0006, + "loss": 3.770616054534912, + "step": 1984 + }, + { + "epoch": 27.573176059414592, + "grad_norm": 0.28883907198905945, + "learning_rate": 0.0006, + "loss": 3.8152146339416504, + "step": 1985 + }, + { + "epoch": 27.587155963302752, + "grad_norm": 0.28177911043167114, + "learning_rate": 0.0006, + "loss": 3.7966861724853516, + "step": 1986 + }, + { + "epoch": 27.601135867190912, + "grad_norm": 0.2573191523551941, + "learning_rate": 0.0006, + "loss": 3.820788621902466, + "step": 1987 + }, + { + "epoch": 27.615115771079076, + "grad_norm": 0.22225657105445862, + "learning_rate": 0.0006, + "loss": 3.778477191925049, + "step": 1988 + }, + { + "epoch": 27.629095674967235, + "grad_norm": 0.20118530094623566, + "learning_rate": 0.0006, + "loss": 3.8416988849639893, + "step": 1989 + }, + { + "epoch": 27.643075578855395, + "grad_norm": 0.21168658137321472, + "learning_rate": 0.0006, + "loss": 3.798020839691162, + "step": 1990 + }, + { + "epoch": 27.657055482743555, + "grad_norm": 0.2460680454969406, + "learning_rate": 0.0006, + "loss": 3.805917263031006, + "step": 1991 + }, + { + "epoch": 27.67103538663172, + "grad_norm": 0.2700909674167633, + "learning_rate": 0.0006, + "loss": 3.8042726516723633, + "step": 1992 + }, + { + "epoch": 27.68501529051988, + "grad_norm": 0.25814294815063477, + "learning_rate": 0.0006, + "loss": 3.799159049987793, + "step": 1993 + }, + { + "epoch": 27.698995194408038, + "grad_norm": 0.2231985628604889, + "learning_rate": 0.0006, + "loss": 3.778750419616699, + "step": 1994 + }, + { + "epoch": 27.712975098296198, + "grad_norm": 0.20807890594005585, + "learning_rate": 0.0006, + "loss": 3.787919044494629, + "step": 1995 + }, + { + "epoch": 27.72695500218436, + "grad_norm": 0.19537150859832764, + "learning_rate": 0.0006, + "loss": 3.7917299270629883, + "step": 1996 + }, + { + "epoch": 27.74093490607252, + "grad_norm": 0.21057647466659546, + "learning_rate": 0.0006, + "loss": 3.8096866607666016, + "step": 1997 + }, + { + "epoch": 27.75491480996068, + "grad_norm": 0.18983247876167297, + "learning_rate": 0.0006, + "loss": 3.7881717681884766, + "step": 1998 + }, + { + "epoch": 27.76889471384884, + "grad_norm": 0.18701069056987762, + "learning_rate": 0.0006, + "loss": 3.810790538787842, + "step": 1999 + }, + { + "epoch": 27.782874617737004, + "grad_norm": 0.1920134723186493, + "learning_rate": 0.0006, + "loss": 3.8161087036132812, + "step": 2000 + }, + { + "epoch": 27.796854521625164, + "grad_norm": 0.20413947105407715, + "learning_rate": 0.0006, + "loss": 3.790499687194824, + "step": 2001 + }, + { + "epoch": 27.810834425513324, + "grad_norm": 0.1920027732849121, + "learning_rate": 0.0006, + "loss": 3.8194262981414795, + "step": 2002 + }, + { + "epoch": 27.824814329401484, + "grad_norm": 0.18630221486091614, + "learning_rate": 0.0006, + "loss": 3.8267152309417725, + "step": 2003 + }, + { + "epoch": 27.838794233289647, + "grad_norm": 0.1787925660610199, + "learning_rate": 0.0006, + "loss": 3.8147521018981934, + "step": 2004 + }, + { + "epoch": 27.852774137177807, + "grad_norm": 0.19187216460704803, + "learning_rate": 0.0006, + "loss": 3.7751095294952393, + "step": 2005 + }, + { + "epoch": 27.866754041065967, + "grad_norm": 0.18825744092464447, + "learning_rate": 0.0006, + "loss": 3.807401657104492, + "step": 2006 + }, + { + "epoch": 27.88073394495413, + "grad_norm": 0.1879836469888687, + "learning_rate": 0.0006, + "loss": 3.8302509784698486, + "step": 2007 + }, + { + "epoch": 27.89471384884229, + "grad_norm": 0.19136391580104828, + "learning_rate": 0.0006, + "loss": 3.7886242866516113, + "step": 2008 + }, + { + "epoch": 27.90869375273045, + "grad_norm": 0.18774119019508362, + "learning_rate": 0.0006, + "loss": 3.8202977180480957, + "step": 2009 + }, + { + "epoch": 27.92267365661861, + "grad_norm": 0.17794452607631683, + "learning_rate": 0.0006, + "loss": 3.813382387161255, + "step": 2010 + }, + { + "epoch": 27.936653560506773, + "grad_norm": 0.1876268833875656, + "learning_rate": 0.0006, + "loss": 3.810610294342041, + "step": 2011 + }, + { + "epoch": 27.950633464394933, + "grad_norm": 0.19262051582336426, + "learning_rate": 0.0006, + "loss": 3.8113245964050293, + "step": 2012 + }, + { + "epoch": 27.964613368283093, + "grad_norm": 0.19371771812438965, + "learning_rate": 0.0006, + "loss": 3.804790496826172, + "step": 2013 + }, + { + "epoch": 27.978593272171253, + "grad_norm": 0.1922861784696579, + "learning_rate": 0.0006, + "loss": 3.8278889656066895, + "step": 2014 + }, + { + "epoch": 27.992573176059416, + "grad_norm": 0.19748565554618835, + "learning_rate": 0.0006, + "loss": 3.8127200603485107, + "step": 2015 + }, + { + "epoch": 28.0, + "grad_norm": 0.25027501583099365, + "learning_rate": 0.0006, + "loss": 3.7899413108825684, + "step": 2016 + }, + { + "epoch": 28.0, + "eval_loss": 4.047704219818115, + "eval_runtime": 44.293, + "eval_samples_per_second": 55.133, + "eval_steps_per_second": 3.454, + "step": 2016 + }, + { + "epoch": 28.01397990388816, + "grad_norm": 0.25172367691993713, + "learning_rate": 0.0006, + "loss": 3.75449538230896, + "step": 2017 + }, + { + "epoch": 28.027959807776323, + "grad_norm": 0.23494598269462585, + "learning_rate": 0.0006, + "loss": 3.7609024047851562, + "step": 2018 + }, + { + "epoch": 28.041939711664483, + "grad_norm": 0.22459708154201508, + "learning_rate": 0.0006, + "loss": 3.7843551635742188, + "step": 2019 + }, + { + "epoch": 28.055919615552643, + "grad_norm": 0.2038632035255432, + "learning_rate": 0.0006, + "loss": 3.7818198204040527, + "step": 2020 + }, + { + "epoch": 28.069899519440803, + "grad_norm": 0.22050008177757263, + "learning_rate": 0.0006, + "loss": 3.787442684173584, + "step": 2021 + }, + { + "epoch": 28.083879423328966, + "grad_norm": 0.24645832180976868, + "learning_rate": 0.0006, + "loss": 3.768704414367676, + "step": 2022 + }, + { + "epoch": 28.097859327217126, + "grad_norm": 0.2440163493156433, + "learning_rate": 0.0006, + "loss": 3.7783756256103516, + "step": 2023 + }, + { + "epoch": 28.111839231105286, + "grad_norm": 0.2482181042432785, + "learning_rate": 0.0006, + "loss": 3.786881923675537, + "step": 2024 + }, + { + "epoch": 28.125819134993446, + "grad_norm": 0.23494760692119598, + "learning_rate": 0.0006, + "loss": 3.790039300918579, + "step": 2025 + }, + { + "epoch": 28.13979903888161, + "grad_norm": 0.2172182947397232, + "learning_rate": 0.0006, + "loss": 3.818756580352783, + "step": 2026 + }, + { + "epoch": 28.15377894276977, + "grad_norm": 0.2103179395198822, + "learning_rate": 0.0006, + "loss": 3.7768917083740234, + "step": 2027 + }, + { + "epoch": 28.16775884665793, + "grad_norm": 0.22322365641593933, + "learning_rate": 0.0006, + "loss": 3.8223648071289062, + "step": 2028 + }, + { + "epoch": 28.18173875054609, + "grad_norm": 0.24199382960796356, + "learning_rate": 0.0006, + "loss": 3.781357765197754, + "step": 2029 + }, + { + "epoch": 28.195718654434252, + "grad_norm": 0.2500663101673126, + "learning_rate": 0.0006, + "loss": 3.8061184883117676, + "step": 2030 + }, + { + "epoch": 28.209698558322412, + "grad_norm": 0.2439824491739273, + "learning_rate": 0.0006, + "loss": 3.7886464595794678, + "step": 2031 + }, + { + "epoch": 28.22367846221057, + "grad_norm": 0.24563106894493103, + "learning_rate": 0.0006, + "loss": 3.7901692390441895, + "step": 2032 + }, + { + "epoch": 28.23765836609873, + "grad_norm": 0.2287624627351761, + "learning_rate": 0.0006, + "loss": 3.789931058883667, + "step": 2033 + }, + { + "epoch": 28.251638269986895, + "grad_norm": 0.2231188714504242, + "learning_rate": 0.0006, + "loss": 3.7879133224487305, + "step": 2034 + }, + { + "epoch": 28.265618173875055, + "grad_norm": 0.23090387880802155, + "learning_rate": 0.0006, + "loss": 3.7826130390167236, + "step": 2035 + }, + { + "epoch": 28.279598077763215, + "grad_norm": 0.216018944978714, + "learning_rate": 0.0006, + "loss": 3.7764949798583984, + "step": 2036 + }, + { + "epoch": 28.293577981651374, + "grad_norm": 0.22649185359477997, + "learning_rate": 0.0006, + "loss": 3.7911291122436523, + "step": 2037 + }, + { + "epoch": 28.307557885539538, + "grad_norm": 0.2350836843252182, + "learning_rate": 0.0006, + "loss": 3.7668724060058594, + "step": 2038 + }, + { + "epoch": 28.321537789427698, + "grad_norm": 0.23206329345703125, + "learning_rate": 0.0006, + "loss": 3.782243251800537, + "step": 2039 + }, + { + "epoch": 28.335517693315857, + "grad_norm": 0.21896308660507202, + "learning_rate": 0.0006, + "loss": 3.7605721950531006, + "step": 2040 + }, + { + "epoch": 28.34949759720402, + "grad_norm": 0.20381200313568115, + "learning_rate": 0.0006, + "loss": 3.743945598602295, + "step": 2041 + }, + { + "epoch": 28.36347750109218, + "grad_norm": 0.19196000695228577, + "learning_rate": 0.0006, + "loss": 3.808107852935791, + "step": 2042 + }, + { + "epoch": 28.37745740498034, + "grad_norm": 0.19517889618873596, + "learning_rate": 0.0006, + "loss": 3.7906723022460938, + "step": 2043 + }, + { + "epoch": 28.3914373088685, + "grad_norm": 0.20455795526504517, + "learning_rate": 0.0006, + "loss": 3.7421011924743652, + "step": 2044 + }, + { + "epoch": 28.405417212756664, + "grad_norm": 0.1867467314004898, + "learning_rate": 0.0006, + "loss": 3.775509834289551, + "step": 2045 + }, + { + "epoch": 28.419397116644824, + "grad_norm": 0.2029324471950531, + "learning_rate": 0.0006, + "loss": 3.771353244781494, + "step": 2046 + }, + { + "epoch": 28.433377020532983, + "grad_norm": 0.19967497885227203, + "learning_rate": 0.0006, + "loss": 3.7821149826049805, + "step": 2047 + }, + { + "epoch": 28.447356924421143, + "grad_norm": 0.19440607726573944, + "learning_rate": 0.0006, + "loss": 3.8114213943481445, + "step": 2048 + }, + { + "epoch": 28.461336828309307, + "grad_norm": 0.19679802656173706, + "learning_rate": 0.0006, + "loss": 3.7699532508850098, + "step": 2049 + }, + { + "epoch": 28.475316732197467, + "grad_norm": 0.1939811110496521, + "learning_rate": 0.0006, + "loss": 3.7673027515411377, + "step": 2050 + }, + { + "epoch": 28.489296636085626, + "grad_norm": 0.18712401390075684, + "learning_rate": 0.0006, + "loss": 3.816699266433716, + "step": 2051 + }, + { + "epoch": 28.503276539973786, + "grad_norm": 0.202956885099411, + "learning_rate": 0.0006, + "loss": 3.7746071815490723, + "step": 2052 + }, + { + "epoch": 28.51725644386195, + "grad_norm": 0.19098156690597534, + "learning_rate": 0.0006, + "loss": 3.8065481185913086, + "step": 2053 + }, + { + "epoch": 28.53123634775011, + "grad_norm": 0.21144428849220276, + "learning_rate": 0.0006, + "loss": 3.7890982627868652, + "step": 2054 + }, + { + "epoch": 28.54521625163827, + "grad_norm": 0.21882614493370056, + "learning_rate": 0.0006, + "loss": 3.8168821334838867, + "step": 2055 + }, + { + "epoch": 28.55919615552643, + "grad_norm": 0.22200101613998413, + "learning_rate": 0.0006, + "loss": 3.804454803466797, + "step": 2056 + }, + { + "epoch": 28.573176059414592, + "grad_norm": 0.22404780983924866, + "learning_rate": 0.0006, + "loss": 3.808764934539795, + "step": 2057 + }, + { + "epoch": 28.587155963302752, + "grad_norm": 0.22770099341869354, + "learning_rate": 0.0006, + "loss": 3.74835467338562, + "step": 2058 + }, + { + "epoch": 28.601135867190912, + "grad_norm": 0.23214420676231384, + "learning_rate": 0.0006, + "loss": 3.7480111122131348, + "step": 2059 + }, + { + "epoch": 28.615115771079076, + "grad_norm": 0.21786348521709442, + "learning_rate": 0.0006, + "loss": 3.8095176219940186, + "step": 2060 + }, + { + "epoch": 28.629095674967235, + "grad_norm": 0.21004106104373932, + "learning_rate": 0.0006, + "loss": 3.792745590209961, + "step": 2061 + }, + { + "epoch": 28.643075578855395, + "grad_norm": 0.21076138317584991, + "learning_rate": 0.0006, + "loss": 3.7878952026367188, + "step": 2062 + }, + { + "epoch": 28.657055482743555, + "grad_norm": 0.2184346616268158, + "learning_rate": 0.0006, + "loss": 3.757188320159912, + "step": 2063 + }, + { + "epoch": 28.67103538663172, + "grad_norm": 0.22100569307804108, + "learning_rate": 0.0006, + "loss": 3.8131773471832275, + "step": 2064 + }, + { + "epoch": 28.68501529051988, + "grad_norm": 0.23257511854171753, + "learning_rate": 0.0006, + "loss": 3.793826103210449, + "step": 2065 + }, + { + "epoch": 28.698995194408038, + "grad_norm": 0.22312869131565094, + "learning_rate": 0.0006, + "loss": 3.782083749771118, + "step": 2066 + }, + { + "epoch": 28.712975098296198, + "grad_norm": 0.2318405956029892, + "learning_rate": 0.0006, + "loss": 3.7814879417419434, + "step": 2067 + }, + { + "epoch": 28.72695500218436, + "grad_norm": 0.23719379305839539, + "learning_rate": 0.0006, + "loss": 3.8320484161376953, + "step": 2068 + }, + { + "epoch": 28.74093490607252, + "grad_norm": 0.23100806772708893, + "learning_rate": 0.0006, + "loss": 3.7921783924102783, + "step": 2069 + }, + { + "epoch": 28.75491480996068, + "grad_norm": 0.21540866792201996, + "learning_rate": 0.0006, + "loss": 3.8325204849243164, + "step": 2070 + }, + { + "epoch": 28.76889471384884, + "grad_norm": 0.2698654532432556, + "learning_rate": 0.0006, + "loss": 3.7965879440307617, + "step": 2071 + }, + { + "epoch": 28.782874617737004, + "grad_norm": 0.3101225793361664, + "learning_rate": 0.0006, + "loss": 3.78842830657959, + "step": 2072 + }, + { + "epoch": 28.796854521625164, + "grad_norm": 0.2607600688934326, + "learning_rate": 0.0006, + "loss": 3.770064115524292, + "step": 2073 + }, + { + "epoch": 28.810834425513324, + "grad_norm": 0.20558302104473114, + "learning_rate": 0.0006, + "loss": 3.7448501586914062, + "step": 2074 + }, + { + "epoch": 28.824814329401484, + "grad_norm": 0.20030120015144348, + "learning_rate": 0.0006, + "loss": 3.7689406871795654, + "step": 2075 + }, + { + "epoch": 28.838794233289647, + "grad_norm": 0.21781118214130402, + "learning_rate": 0.0006, + "loss": 3.7682244777679443, + "step": 2076 + }, + { + "epoch": 28.852774137177807, + "grad_norm": 0.23543044924736023, + "learning_rate": 0.0006, + "loss": 3.8094193935394287, + "step": 2077 + }, + { + "epoch": 28.866754041065967, + "grad_norm": 0.21634669601917267, + "learning_rate": 0.0006, + "loss": 3.792099952697754, + "step": 2078 + }, + { + "epoch": 28.88073394495413, + "grad_norm": 0.2251661866903305, + "learning_rate": 0.0006, + "loss": 3.7849509716033936, + "step": 2079 + }, + { + "epoch": 28.89471384884229, + "grad_norm": 0.23872914910316467, + "learning_rate": 0.0006, + "loss": 3.8391621112823486, + "step": 2080 + }, + { + "epoch": 28.90869375273045, + "grad_norm": 0.22259248793125153, + "learning_rate": 0.0006, + "loss": 3.8272876739501953, + "step": 2081 + }, + { + "epoch": 28.92267365661861, + "grad_norm": 0.22052262723445892, + "learning_rate": 0.0006, + "loss": 3.7986836433410645, + "step": 2082 + }, + { + "epoch": 28.936653560506773, + "grad_norm": 0.24487647414207458, + "learning_rate": 0.0006, + "loss": 3.798004150390625, + "step": 2083 + }, + { + "epoch": 28.950633464394933, + "grad_norm": 0.22992238402366638, + "learning_rate": 0.0006, + "loss": 3.788522720336914, + "step": 2084 + }, + { + "epoch": 28.964613368283093, + "grad_norm": 0.22521597146987915, + "learning_rate": 0.0006, + "loss": 3.767259120941162, + "step": 2085 + }, + { + "epoch": 28.978593272171253, + "grad_norm": 0.2201499044895172, + "learning_rate": 0.0006, + "loss": 3.7850542068481445, + "step": 2086 + }, + { + "epoch": 28.992573176059416, + "grad_norm": 0.22226814925670624, + "learning_rate": 0.0006, + "loss": 3.8013534545898438, + "step": 2087 + }, + { + "epoch": 29.0, + "grad_norm": 0.27624809741973877, + "learning_rate": 0.0006, + "loss": 3.762004852294922, + "step": 2088 + }, + { + "epoch": 29.0, + "eval_loss": 4.034304618835449, + "eval_runtime": 44.6573, + "eval_samples_per_second": 54.683, + "eval_steps_per_second": 3.426, + "step": 2088 + }, + { + "epoch": 29.01397990388816, + "grad_norm": 0.2550967037677765, + "learning_rate": 0.0006, + "loss": 3.7724227905273438, + "step": 2089 + }, + { + "epoch": 29.027959807776323, + "grad_norm": 0.26730602979660034, + "learning_rate": 0.0006, + "loss": 3.7728946208953857, + "step": 2090 + }, + { + "epoch": 29.041939711664483, + "grad_norm": 0.2394205927848816, + "learning_rate": 0.0006, + "loss": 3.7737584114074707, + "step": 2091 + }, + { + "epoch": 29.055919615552643, + "grad_norm": 0.22488200664520264, + "learning_rate": 0.0006, + "loss": 3.761014938354492, + "step": 2092 + }, + { + "epoch": 29.069899519440803, + "grad_norm": 0.2389903962612152, + "learning_rate": 0.0006, + "loss": 3.766557216644287, + "step": 2093 + }, + { + "epoch": 29.083879423328966, + "grad_norm": 0.234152153134346, + "learning_rate": 0.0006, + "loss": 3.7447147369384766, + "step": 2094 + }, + { + "epoch": 29.097859327217126, + "grad_norm": 0.23123252391815186, + "learning_rate": 0.0006, + "loss": 3.77197527885437, + "step": 2095 + }, + { + "epoch": 29.111839231105286, + "grad_norm": 0.23263143002986908, + "learning_rate": 0.0006, + "loss": 3.7390198707580566, + "step": 2096 + }, + { + "epoch": 29.125819134993446, + "grad_norm": 0.23235775530338287, + "learning_rate": 0.0006, + "loss": 3.7675256729125977, + "step": 2097 + }, + { + "epoch": 29.13979903888161, + "grad_norm": 0.2208816260099411, + "learning_rate": 0.0006, + "loss": 3.7588067054748535, + "step": 2098 + }, + { + "epoch": 29.15377894276977, + "grad_norm": 0.21216371655464172, + "learning_rate": 0.0006, + "loss": 3.7370502948760986, + "step": 2099 + }, + { + "epoch": 29.16775884665793, + "grad_norm": 0.2210543155670166, + "learning_rate": 0.0006, + "loss": 3.767308473587036, + "step": 2100 + }, + { + "epoch": 29.18173875054609, + "grad_norm": 0.21628431975841522, + "learning_rate": 0.0006, + "loss": 3.7298972606658936, + "step": 2101 + }, + { + "epoch": 29.195718654434252, + "grad_norm": 0.21493588387966156, + "learning_rate": 0.0006, + "loss": 3.7806448936462402, + "step": 2102 + }, + { + "epoch": 29.209698558322412, + "grad_norm": 0.25978055596351624, + "learning_rate": 0.0006, + "loss": 3.7716293334960938, + "step": 2103 + }, + { + "epoch": 29.22367846221057, + "grad_norm": 0.2744791507720947, + "learning_rate": 0.0006, + "loss": 3.76897931098938, + "step": 2104 + }, + { + "epoch": 29.23765836609873, + "grad_norm": 0.22959400713443756, + "learning_rate": 0.0006, + "loss": 3.7545714378356934, + "step": 2105 + }, + { + "epoch": 29.251638269986895, + "grad_norm": 0.20369231700897217, + "learning_rate": 0.0006, + "loss": 3.7944722175598145, + "step": 2106 + }, + { + "epoch": 29.265618173875055, + "grad_norm": 0.21663758158683777, + "learning_rate": 0.0006, + "loss": 3.7564756870269775, + "step": 2107 + }, + { + "epoch": 29.279598077763215, + "grad_norm": 0.21862861514091492, + "learning_rate": 0.0006, + "loss": 3.7722725868225098, + "step": 2108 + }, + { + "epoch": 29.293577981651374, + "grad_norm": 0.2044878453016281, + "learning_rate": 0.0006, + "loss": 3.7471303939819336, + "step": 2109 + }, + { + "epoch": 29.307557885539538, + "grad_norm": 0.23015929758548737, + "learning_rate": 0.0006, + "loss": 3.7584962844848633, + "step": 2110 + }, + { + "epoch": 29.321537789427698, + "grad_norm": 0.22548329830169678, + "learning_rate": 0.0006, + "loss": 3.795933723449707, + "step": 2111 + }, + { + "epoch": 29.335517693315857, + "grad_norm": 0.2000468522310257, + "learning_rate": 0.0006, + "loss": 3.766310691833496, + "step": 2112 + }, + { + "epoch": 29.34949759720402, + "grad_norm": 0.19711551070213318, + "learning_rate": 0.0006, + "loss": 3.7296276092529297, + "step": 2113 + }, + { + "epoch": 29.36347750109218, + "grad_norm": 0.18838997185230255, + "learning_rate": 0.0006, + "loss": 3.7685282230377197, + "step": 2114 + }, + { + "epoch": 29.37745740498034, + "grad_norm": 0.1897876113653183, + "learning_rate": 0.0006, + "loss": 3.7280936241149902, + "step": 2115 + }, + { + "epoch": 29.3914373088685, + "grad_norm": 0.21697933971881866, + "learning_rate": 0.0006, + "loss": 3.7991929054260254, + "step": 2116 + }, + { + "epoch": 29.405417212756664, + "grad_norm": 0.23445849120616913, + "learning_rate": 0.0006, + "loss": 3.7857418060302734, + "step": 2117 + }, + { + "epoch": 29.419397116644824, + "grad_norm": 0.24155527353286743, + "learning_rate": 0.0006, + "loss": 3.7897872924804688, + "step": 2118 + }, + { + "epoch": 29.433377020532983, + "grad_norm": 0.2610265016555786, + "learning_rate": 0.0006, + "loss": 3.7867324352264404, + "step": 2119 + }, + { + "epoch": 29.447356924421143, + "grad_norm": 0.2809581160545349, + "learning_rate": 0.0006, + "loss": 3.783799648284912, + "step": 2120 + }, + { + "epoch": 29.461336828309307, + "grad_norm": 0.2621572017669678, + "learning_rate": 0.0006, + "loss": 3.7778549194335938, + "step": 2121 + }, + { + "epoch": 29.475316732197467, + "grad_norm": 0.26002970337867737, + "learning_rate": 0.0006, + "loss": 3.787945508956909, + "step": 2122 + }, + { + "epoch": 29.489296636085626, + "grad_norm": 0.24866686761379242, + "learning_rate": 0.0006, + "loss": 3.7406349182128906, + "step": 2123 + }, + { + "epoch": 29.503276539973786, + "grad_norm": 0.25588324666023254, + "learning_rate": 0.0006, + "loss": 3.785625457763672, + "step": 2124 + }, + { + "epoch": 29.51725644386195, + "grad_norm": 0.24724243581295013, + "learning_rate": 0.0006, + "loss": 3.7581701278686523, + "step": 2125 + }, + { + "epoch": 29.53123634775011, + "grad_norm": 0.23544734716415405, + "learning_rate": 0.0006, + "loss": 3.8163957595825195, + "step": 2126 + }, + { + "epoch": 29.54521625163827, + "grad_norm": 0.2108801156282425, + "learning_rate": 0.0006, + "loss": 3.7881739139556885, + "step": 2127 + }, + { + "epoch": 29.55919615552643, + "grad_norm": 0.20459668338298798, + "learning_rate": 0.0006, + "loss": 3.7641284465789795, + "step": 2128 + }, + { + "epoch": 29.573176059414592, + "grad_norm": 0.24020728468894958, + "learning_rate": 0.0006, + "loss": 3.7748730182647705, + "step": 2129 + }, + { + "epoch": 29.587155963302752, + "grad_norm": 0.256273478269577, + "learning_rate": 0.0006, + "loss": 3.8076486587524414, + "step": 2130 + }, + { + "epoch": 29.601135867190912, + "grad_norm": 0.23295973241329193, + "learning_rate": 0.0006, + "loss": 3.7687063217163086, + "step": 2131 + }, + { + "epoch": 29.615115771079076, + "grad_norm": 0.21554847061634064, + "learning_rate": 0.0006, + "loss": 3.781867027282715, + "step": 2132 + }, + { + "epoch": 29.629095674967235, + "grad_norm": 0.20645774900913239, + "learning_rate": 0.0006, + "loss": 3.7813425064086914, + "step": 2133 + }, + { + "epoch": 29.643075578855395, + "grad_norm": 0.2018265724182129, + "learning_rate": 0.0006, + "loss": 3.772895574569702, + "step": 2134 + }, + { + "epoch": 29.657055482743555, + "grad_norm": 0.20170100033283234, + "learning_rate": 0.0006, + "loss": 3.7819175720214844, + "step": 2135 + }, + { + "epoch": 29.67103538663172, + "grad_norm": 0.22640688717365265, + "learning_rate": 0.0006, + "loss": 3.7999017238616943, + "step": 2136 + }, + { + "epoch": 29.68501529051988, + "grad_norm": 0.23747675120830536, + "learning_rate": 0.0006, + "loss": 3.804999828338623, + "step": 2137 + }, + { + "epoch": 29.698995194408038, + "grad_norm": 0.20005857944488525, + "learning_rate": 0.0006, + "loss": 3.7815160751342773, + "step": 2138 + }, + { + "epoch": 29.712975098296198, + "grad_norm": 0.17901667952537537, + "learning_rate": 0.0006, + "loss": 3.7898688316345215, + "step": 2139 + }, + { + "epoch": 29.72695500218436, + "grad_norm": 0.1890905797481537, + "learning_rate": 0.0006, + "loss": 3.8001184463500977, + "step": 2140 + }, + { + "epoch": 29.74093490607252, + "grad_norm": 0.19565847516059875, + "learning_rate": 0.0006, + "loss": 3.7522482872009277, + "step": 2141 + }, + { + "epoch": 29.75491480996068, + "grad_norm": 0.19429196417331696, + "learning_rate": 0.0006, + "loss": 3.768972158432007, + "step": 2142 + }, + { + "epoch": 29.76889471384884, + "grad_norm": 0.23846636712551117, + "learning_rate": 0.0006, + "loss": 3.765216112136841, + "step": 2143 + }, + { + "epoch": 29.782874617737004, + "grad_norm": 0.23820780217647552, + "learning_rate": 0.0006, + "loss": 3.8027703762054443, + "step": 2144 + }, + { + "epoch": 29.796854521625164, + "grad_norm": 0.21104726195335388, + "learning_rate": 0.0006, + "loss": 3.7682833671569824, + "step": 2145 + }, + { + "epoch": 29.810834425513324, + "grad_norm": 0.1911051720380783, + "learning_rate": 0.0006, + "loss": 3.781782627105713, + "step": 2146 + }, + { + "epoch": 29.824814329401484, + "grad_norm": 0.18881288170814514, + "learning_rate": 0.0006, + "loss": 3.7703428268432617, + "step": 2147 + }, + { + "epoch": 29.838794233289647, + "grad_norm": 0.18292994797229767, + "learning_rate": 0.0006, + "loss": 3.769176721572876, + "step": 2148 + }, + { + "epoch": 29.852774137177807, + "grad_norm": 0.1777714639902115, + "learning_rate": 0.0006, + "loss": 3.7488298416137695, + "step": 2149 + }, + { + "epoch": 29.866754041065967, + "grad_norm": 0.2037898749113083, + "learning_rate": 0.0006, + "loss": 3.804396390914917, + "step": 2150 + }, + { + "epoch": 29.88073394495413, + "grad_norm": 0.2121828943490982, + "learning_rate": 0.0006, + "loss": 3.75870943069458, + "step": 2151 + }, + { + "epoch": 29.89471384884229, + "grad_norm": 0.23231184482574463, + "learning_rate": 0.0006, + "loss": 3.80178165435791, + "step": 2152 + }, + { + "epoch": 29.90869375273045, + "grad_norm": 0.24045611917972565, + "learning_rate": 0.0006, + "loss": 3.7690834999084473, + "step": 2153 + }, + { + "epoch": 29.92267365661861, + "grad_norm": 0.19830496609210968, + "learning_rate": 0.0006, + "loss": 3.764401912689209, + "step": 2154 + }, + { + "epoch": 29.936653560506773, + "grad_norm": 0.17704227566719055, + "learning_rate": 0.0006, + "loss": 3.7634594440460205, + "step": 2155 + }, + { + "epoch": 29.950633464394933, + "grad_norm": 0.17783164978027344, + "learning_rate": 0.0006, + "loss": 3.7856998443603516, + "step": 2156 + }, + { + "epoch": 29.964613368283093, + "grad_norm": 0.19684971868991852, + "learning_rate": 0.0006, + "loss": 3.805774211883545, + "step": 2157 + }, + { + "epoch": 29.978593272171253, + "grad_norm": 0.21662312746047974, + "learning_rate": 0.0006, + "loss": 3.757896661758423, + "step": 2158 + }, + { + "epoch": 29.992573176059416, + "grad_norm": 0.22000661492347717, + "learning_rate": 0.0006, + "loss": 3.7747678756713867, + "step": 2159 + }, + { + "epoch": 30.0, + "grad_norm": 0.21501901745796204, + "learning_rate": 0.0006, + "loss": 3.785585880279541, + "step": 2160 + }, + { + "epoch": 30.0, + "eval_loss": 4.034003734588623, + "eval_runtime": 44.9097, + "eval_samples_per_second": 54.376, + "eval_steps_per_second": 3.407, + "step": 2160 + }, + { + "epoch": 30.01397990388816, + "grad_norm": 0.19710904359817505, + "learning_rate": 0.0006, + "loss": 3.756235122680664, + "step": 2161 + }, + { + "epoch": 30.027959807776323, + "grad_norm": 0.19829736649990082, + "learning_rate": 0.0006, + "loss": 3.734067916870117, + "step": 2162 + }, + { + "epoch": 30.041939711664483, + "grad_norm": 0.21622520685195923, + "learning_rate": 0.0006, + "loss": 3.7329437732696533, + "step": 2163 + }, + { + "epoch": 30.055919615552643, + "grad_norm": 0.22544652223587036, + "learning_rate": 0.0006, + "loss": 3.748716354370117, + "step": 2164 + }, + { + "epoch": 30.069899519440803, + "grad_norm": 0.21098364889621735, + "learning_rate": 0.0006, + "loss": 3.779047727584839, + "step": 2165 + }, + { + "epoch": 30.083879423328966, + "grad_norm": 0.21309930086135864, + "learning_rate": 0.0006, + "loss": 3.7690274715423584, + "step": 2166 + }, + { + "epoch": 30.097859327217126, + "grad_norm": 0.23025690019130707, + "learning_rate": 0.0006, + "loss": 3.7500953674316406, + "step": 2167 + }, + { + "epoch": 30.111839231105286, + "grad_norm": 0.25107935070991516, + "learning_rate": 0.0006, + "loss": 3.745492458343506, + "step": 2168 + }, + { + "epoch": 30.125819134993446, + "grad_norm": 0.29873573780059814, + "learning_rate": 0.0006, + "loss": 3.759793758392334, + "step": 2169 + }, + { + "epoch": 30.13979903888161, + "grad_norm": 0.2810286283493042, + "learning_rate": 0.0006, + "loss": 3.772998809814453, + "step": 2170 + }, + { + "epoch": 30.15377894276977, + "grad_norm": 0.2102176398038864, + "learning_rate": 0.0006, + "loss": 3.740170955657959, + "step": 2171 + }, + { + "epoch": 30.16775884665793, + "grad_norm": 0.24143251776695251, + "learning_rate": 0.0006, + "loss": 3.7317001819610596, + "step": 2172 + }, + { + "epoch": 30.18173875054609, + "grad_norm": 0.2643064558506012, + "learning_rate": 0.0006, + "loss": 3.773263692855835, + "step": 2173 + }, + { + "epoch": 30.195718654434252, + "grad_norm": 0.27571243047714233, + "learning_rate": 0.0006, + "loss": 3.7619900703430176, + "step": 2174 + }, + { + "epoch": 30.209698558322412, + "grad_norm": 0.25359588861465454, + "learning_rate": 0.0006, + "loss": 3.7608513832092285, + "step": 2175 + }, + { + "epoch": 30.22367846221057, + "grad_norm": 0.2500684857368469, + "learning_rate": 0.0006, + "loss": 3.75856614112854, + "step": 2176 + }, + { + "epoch": 30.23765836609873, + "grad_norm": 0.23100309073925018, + "learning_rate": 0.0006, + "loss": 3.749786853790283, + "step": 2177 + }, + { + "epoch": 30.251638269986895, + "grad_norm": 0.24384984374046326, + "learning_rate": 0.0006, + "loss": 3.762244701385498, + "step": 2178 + }, + { + "epoch": 30.265618173875055, + "grad_norm": 0.24593998491764069, + "learning_rate": 0.0006, + "loss": 3.754594326019287, + "step": 2179 + }, + { + "epoch": 30.279598077763215, + "grad_norm": 0.2529342770576477, + "learning_rate": 0.0006, + "loss": 3.7641053199768066, + "step": 2180 + }, + { + "epoch": 30.293577981651374, + "grad_norm": 0.25954094529151917, + "learning_rate": 0.0006, + "loss": 3.810336112976074, + "step": 2181 + }, + { + "epoch": 30.307557885539538, + "grad_norm": 0.2249951958656311, + "learning_rate": 0.0006, + "loss": 3.7542617321014404, + "step": 2182 + }, + { + "epoch": 30.321537789427698, + "grad_norm": 0.19795064628124237, + "learning_rate": 0.0006, + "loss": 3.7734434604644775, + "step": 2183 + }, + { + "epoch": 30.335517693315857, + "grad_norm": 0.20744608342647552, + "learning_rate": 0.0006, + "loss": 3.7816128730773926, + "step": 2184 + }, + { + "epoch": 30.34949759720402, + "grad_norm": 0.19988055527210236, + "learning_rate": 0.0006, + "loss": 3.7631936073303223, + "step": 2185 + }, + { + "epoch": 30.36347750109218, + "grad_norm": 0.22226445376873016, + "learning_rate": 0.0006, + "loss": 3.762910842895508, + "step": 2186 + }, + { + "epoch": 30.37745740498034, + "grad_norm": 0.21986067295074463, + "learning_rate": 0.0006, + "loss": 3.733893394470215, + "step": 2187 + }, + { + "epoch": 30.3914373088685, + "grad_norm": 0.2170228660106659, + "learning_rate": 0.0006, + "loss": 3.726433515548706, + "step": 2188 + }, + { + "epoch": 30.405417212756664, + "grad_norm": 0.2179550975561142, + "learning_rate": 0.0006, + "loss": 3.792311668395996, + "step": 2189 + }, + { + "epoch": 30.419397116644824, + "grad_norm": 0.208037331700325, + "learning_rate": 0.0006, + "loss": 3.774639129638672, + "step": 2190 + }, + { + "epoch": 30.433377020532983, + "grad_norm": 0.20745441317558289, + "learning_rate": 0.0006, + "loss": 3.776130199432373, + "step": 2191 + }, + { + "epoch": 30.447356924421143, + "grad_norm": 0.1988024264574051, + "learning_rate": 0.0006, + "loss": 3.7453784942626953, + "step": 2192 + }, + { + "epoch": 30.461336828309307, + "grad_norm": 0.194968581199646, + "learning_rate": 0.0006, + "loss": 3.764653205871582, + "step": 2193 + }, + { + "epoch": 30.475316732197467, + "grad_norm": 0.20658300817012787, + "learning_rate": 0.0006, + "loss": 3.796513080596924, + "step": 2194 + }, + { + "epoch": 30.489296636085626, + "grad_norm": 0.2123410701751709, + "learning_rate": 0.0006, + "loss": 3.7630836963653564, + "step": 2195 + }, + { + "epoch": 30.503276539973786, + "grad_norm": 0.20894059538841248, + "learning_rate": 0.0006, + "loss": 3.7265470027923584, + "step": 2196 + }, + { + "epoch": 30.51725644386195, + "grad_norm": 0.2016828954219818, + "learning_rate": 0.0006, + "loss": 3.8083386421203613, + "step": 2197 + }, + { + "epoch": 30.53123634775011, + "grad_norm": 0.19584205746650696, + "learning_rate": 0.0006, + "loss": 3.7492105960845947, + "step": 2198 + }, + { + "epoch": 30.54521625163827, + "grad_norm": 0.18635272979736328, + "learning_rate": 0.0006, + "loss": 3.711009979248047, + "step": 2199 + }, + { + "epoch": 30.55919615552643, + "grad_norm": 0.1920594871044159, + "learning_rate": 0.0006, + "loss": 3.760801315307617, + "step": 2200 + }, + { + "epoch": 30.573176059414592, + "grad_norm": 0.1978331208229065, + "learning_rate": 0.0006, + "loss": 3.780529022216797, + "step": 2201 + }, + { + "epoch": 30.587155963302752, + "grad_norm": 0.20076943933963776, + "learning_rate": 0.0006, + "loss": 3.7767038345336914, + "step": 2202 + }, + { + "epoch": 30.601135867190912, + "grad_norm": 0.2067444622516632, + "learning_rate": 0.0006, + "loss": 3.7607920169830322, + "step": 2203 + }, + { + "epoch": 30.615115771079076, + "grad_norm": 0.2081940472126007, + "learning_rate": 0.0006, + "loss": 3.741936206817627, + "step": 2204 + }, + { + "epoch": 30.629095674967235, + "grad_norm": 0.21212869882583618, + "learning_rate": 0.0006, + "loss": 3.7597827911376953, + "step": 2205 + }, + { + "epoch": 30.643075578855395, + "grad_norm": 0.21539026498794556, + "learning_rate": 0.0006, + "loss": 3.764646053314209, + "step": 2206 + }, + { + "epoch": 30.657055482743555, + "grad_norm": 0.19788387417793274, + "learning_rate": 0.0006, + "loss": 3.7535128593444824, + "step": 2207 + }, + { + "epoch": 30.67103538663172, + "grad_norm": 0.20757688581943512, + "learning_rate": 0.0006, + "loss": 3.7414169311523438, + "step": 2208 + }, + { + "epoch": 30.68501529051988, + "grad_norm": 0.199361652135849, + "learning_rate": 0.0006, + "loss": 3.7578506469726562, + "step": 2209 + }, + { + "epoch": 30.698995194408038, + "grad_norm": 0.1909894198179245, + "learning_rate": 0.0006, + "loss": 3.736250400543213, + "step": 2210 + }, + { + "epoch": 30.712975098296198, + "grad_norm": 0.19766664505004883, + "learning_rate": 0.0006, + "loss": 3.7435379028320312, + "step": 2211 + }, + { + "epoch": 30.72695500218436, + "grad_norm": 0.21857766807079315, + "learning_rate": 0.0006, + "loss": 3.7478690147399902, + "step": 2212 + }, + { + "epoch": 30.74093490607252, + "grad_norm": 0.22385898232460022, + "learning_rate": 0.0006, + "loss": 3.7522530555725098, + "step": 2213 + }, + { + "epoch": 30.75491480996068, + "grad_norm": 0.2329241931438446, + "learning_rate": 0.0006, + "loss": 3.7568247318267822, + "step": 2214 + }, + { + "epoch": 30.76889471384884, + "grad_norm": 0.2218400090932846, + "learning_rate": 0.0006, + "loss": 3.7662744522094727, + "step": 2215 + }, + { + "epoch": 30.782874617737004, + "grad_norm": 0.21350212395191193, + "learning_rate": 0.0006, + "loss": 3.7683777809143066, + "step": 2216 + }, + { + "epoch": 30.796854521625164, + "grad_norm": 0.22357074916362762, + "learning_rate": 0.0006, + "loss": 3.763437032699585, + "step": 2217 + }, + { + "epoch": 30.810834425513324, + "grad_norm": 0.22268560528755188, + "learning_rate": 0.0006, + "loss": 3.772836685180664, + "step": 2218 + }, + { + "epoch": 30.824814329401484, + "grad_norm": 0.2434026449918747, + "learning_rate": 0.0006, + "loss": 3.752986431121826, + "step": 2219 + }, + { + "epoch": 30.838794233289647, + "grad_norm": 0.2298414409160614, + "learning_rate": 0.0006, + "loss": 3.7837061882019043, + "step": 2220 + }, + { + "epoch": 30.852774137177807, + "grad_norm": 0.227672278881073, + "learning_rate": 0.0006, + "loss": 3.746065378189087, + "step": 2221 + }, + { + "epoch": 30.866754041065967, + "grad_norm": 0.2562827169895172, + "learning_rate": 0.0006, + "loss": 3.7741947174072266, + "step": 2222 + }, + { + "epoch": 30.88073394495413, + "grad_norm": 0.23657815158367157, + "learning_rate": 0.0006, + "loss": 3.746457099914551, + "step": 2223 + }, + { + "epoch": 30.89471384884229, + "grad_norm": 0.2158907800912857, + "learning_rate": 0.0006, + "loss": 3.7821710109710693, + "step": 2224 + }, + { + "epoch": 30.90869375273045, + "grad_norm": 0.22501254081726074, + "learning_rate": 0.0006, + "loss": 3.7528274059295654, + "step": 2225 + }, + { + "epoch": 30.92267365661861, + "grad_norm": 0.20252224802970886, + "learning_rate": 0.0006, + "loss": 3.749418258666992, + "step": 2226 + }, + { + "epoch": 30.936653560506773, + "grad_norm": 0.2067883312702179, + "learning_rate": 0.0006, + "loss": 3.7560606002807617, + "step": 2227 + }, + { + "epoch": 30.950633464394933, + "grad_norm": 0.23104053735733032, + "learning_rate": 0.0006, + "loss": 3.7883846759796143, + "step": 2228 + }, + { + "epoch": 30.964613368283093, + "grad_norm": 0.21476604044437408, + "learning_rate": 0.0006, + "loss": 3.7976977825164795, + "step": 2229 + }, + { + "epoch": 30.978593272171253, + "grad_norm": 0.2130427062511444, + "learning_rate": 0.0006, + "loss": 3.7429304122924805, + "step": 2230 + }, + { + "epoch": 30.992573176059416, + "grad_norm": 0.2047216147184372, + "learning_rate": 0.0006, + "loss": 3.7669787406921387, + "step": 2231 + }, + { + "epoch": 31.0, + "grad_norm": 0.22254081070423126, + "learning_rate": 0.0006, + "loss": 3.7794251441955566, + "step": 2232 + }, + { + "epoch": 31.0, + "eval_loss": 4.039162635803223, + "eval_runtime": 44.9069, + "eval_samples_per_second": 54.379, + "eval_steps_per_second": 3.407, + "step": 2232 + }, + { + "epoch": 31.01397990388816, + "grad_norm": 0.2278132289648056, + "learning_rate": 0.0006, + "loss": 3.7363929748535156, + "step": 2233 + }, + { + "epoch": 31.027959807776323, + "grad_norm": 0.2377072274684906, + "learning_rate": 0.0006, + "loss": 3.72847318649292, + "step": 2234 + }, + { + "epoch": 31.041939711664483, + "grad_norm": 0.23790542781352997, + "learning_rate": 0.0006, + "loss": 3.767193078994751, + "step": 2235 + }, + { + "epoch": 31.055919615552643, + "grad_norm": 0.2587272524833679, + "learning_rate": 0.0006, + "loss": 3.7564640045166016, + "step": 2236 + }, + { + "epoch": 31.069899519440803, + "grad_norm": 0.27550312876701355, + "learning_rate": 0.0006, + "loss": 3.727578639984131, + "step": 2237 + }, + { + "epoch": 31.083879423328966, + "grad_norm": 0.2488662451505661, + "learning_rate": 0.0006, + "loss": 3.7420730590820312, + "step": 2238 + }, + { + "epoch": 31.097859327217126, + "grad_norm": 0.22699029743671417, + "learning_rate": 0.0006, + "loss": 3.7323155403137207, + "step": 2239 + }, + { + "epoch": 31.111839231105286, + "grad_norm": 0.23360148072242737, + "learning_rate": 0.0006, + "loss": 3.719024181365967, + "step": 2240 + }, + { + "epoch": 31.125819134993446, + "grad_norm": 0.24322988092899323, + "learning_rate": 0.0006, + "loss": 3.74485445022583, + "step": 2241 + }, + { + "epoch": 31.13979903888161, + "grad_norm": 0.2474174052476883, + "learning_rate": 0.0006, + "loss": 3.746826171875, + "step": 2242 + }, + { + "epoch": 31.15377894276977, + "grad_norm": 0.2417406439781189, + "learning_rate": 0.0006, + "loss": 3.7285032272338867, + "step": 2243 + }, + { + "epoch": 31.16775884665793, + "grad_norm": 0.2390318512916565, + "learning_rate": 0.0006, + "loss": 3.7464442253112793, + "step": 2244 + }, + { + "epoch": 31.18173875054609, + "grad_norm": 0.21819323301315308, + "learning_rate": 0.0006, + "loss": 3.735110282897949, + "step": 2245 + }, + { + "epoch": 31.195718654434252, + "grad_norm": 0.21953554451465607, + "learning_rate": 0.0006, + "loss": 3.7270030975341797, + "step": 2246 + }, + { + "epoch": 31.209698558322412, + "grad_norm": 0.1930384635925293, + "learning_rate": 0.0006, + "loss": 3.7519941329956055, + "step": 2247 + }, + { + "epoch": 31.22367846221057, + "grad_norm": 0.19799190759658813, + "learning_rate": 0.0006, + "loss": 3.7428221702575684, + "step": 2248 + }, + { + "epoch": 31.23765836609873, + "grad_norm": 0.20948201417922974, + "learning_rate": 0.0006, + "loss": 3.733120918273926, + "step": 2249 + }, + { + "epoch": 31.251638269986895, + "grad_norm": 0.23768769204616547, + "learning_rate": 0.0006, + "loss": 3.7059035301208496, + "step": 2250 + }, + { + "epoch": 31.265618173875055, + "grad_norm": 0.2808842957019806, + "learning_rate": 0.0006, + "loss": 3.7245287895202637, + "step": 2251 + }, + { + "epoch": 31.279598077763215, + "grad_norm": 0.27633124589920044, + "learning_rate": 0.0006, + "loss": 3.7436366081237793, + "step": 2252 + }, + { + "epoch": 31.293577981651374, + "grad_norm": 0.24137185513973236, + "learning_rate": 0.0006, + "loss": 3.7651219367980957, + "step": 2253 + }, + { + "epoch": 31.307557885539538, + "grad_norm": 0.22056810557842255, + "learning_rate": 0.0006, + "loss": 3.7417521476745605, + "step": 2254 + }, + { + "epoch": 31.321537789427698, + "grad_norm": 0.20137323439121246, + "learning_rate": 0.0006, + "loss": 3.750187397003174, + "step": 2255 + }, + { + "epoch": 31.335517693315857, + "grad_norm": 0.2142433375120163, + "learning_rate": 0.0006, + "loss": 3.7292675971984863, + "step": 2256 + }, + { + "epoch": 31.34949759720402, + "grad_norm": 0.21193967759609222, + "learning_rate": 0.0006, + "loss": 3.7459473609924316, + "step": 2257 + }, + { + "epoch": 31.36347750109218, + "grad_norm": 0.21418534219264984, + "learning_rate": 0.0006, + "loss": 3.754359722137451, + "step": 2258 + }, + { + "epoch": 31.37745740498034, + "grad_norm": 0.23507359623908997, + "learning_rate": 0.0006, + "loss": 3.763413906097412, + "step": 2259 + }, + { + "epoch": 31.3914373088685, + "grad_norm": 0.20393887162208557, + "learning_rate": 0.0006, + "loss": 3.73878812789917, + "step": 2260 + }, + { + "epoch": 31.405417212756664, + "grad_norm": 0.21752159297466278, + "learning_rate": 0.0006, + "loss": 3.750549793243408, + "step": 2261 + }, + { + "epoch": 31.419397116644824, + "grad_norm": 0.22629529237747192, + "learning_rate": 0.0006, + "loss": 3.7791430950164795, + "step": 2262 + }, + { + "epoch": 31.433377020532983, + "grad_norm": 0.2114613950252533, + "learning_rate": 0.0006, + "loss": 3.7709264755249023, + "step": 2263 + }, + { + "epoch": 31.447356924421143, + "grad_norm": 0.23241667449474335, + "learning_rate": 0.0006, + "loss": 3.745750665664673, + "step": 2264 + }, + { + "epoch": 31.461336828309307, + "grad_norm": 0.2434246987104416, + "learning_rate": 0.0006, + "loss": 3.769727945327759, + "step": 2265 + }, + { + "epoch": 31.475316732197467, + "grad_norm": 0.247820645570755, + "learning_rate": 0.0006, + "loss": 3.7528204917907715, + "step": 2266 + }, + { + "epoch": 31.489296636085626, + "grad_norm": 0.21287164092063904, + "learning_rate": 0.0006, + "loss": 3.728661060333252, + "step": 2267 + }, + { + "epoch": 31.503276539973786, + "grad_norm": 0.20983846485614777, + "learning_rate": 0.0006, + "loss": 3.7524428367614746, + "step": 2268 + }, + { + "epoch": 31.51725644386195, + "grad_norm": 0.23799288272857666, + "learning_rate": 0.0006, + "loss": 3.7276647090911865, + "step": 2269 + }, + { + "epoch": 31.53123634775011, + "grad_norm": 0.247065007686615, + "learning_rate": 0.0006, + "loss": 3.7506704330444336, + "step": 2270 + }, + { + "epoch": 31.54521625163827, + "grad_norm": 0.20670939981937408, + "learning_rate": 0.0006, + "loss": 3.71852445602417, + "step": 2271 + }, + { + "epoch": 31.55919615552643, + "grad_norm": 0.19463716447353363, + "learning_rate": 0.0006, + "loss": 3.732757568359375, + "step": 2272 + }, + { + "epoch": 31.573176059414592, + "grad_norm": 0.20368841290473938, + "learning_rate": 0.0006, + "loss": 3.746676445007324, + "step": 2273 + }, + { + "epoch": 31.587155963302752, + "grad_norm": 0.19691342115402222, + "learning_rate": 0.0006, + "loss": 3.7535760402679443, + "step": 2274 + }, + { + "epoch": 31.601135867190912, + "grad_norm": 0.2026553899049759, + "learning_rate": 0.0006, + "loss": 3.7406957149505615, + "step": 2275 + }, + { + "epoch": 31.615115771079076, + "grad_norm": 0.21494299173355103, + "learning_rate": 0.0006, + "loss": 3.735888957977295, + "step": 2276 + }, + { + "epoch": 31.629095674967235, + "grad_norm": 0.21644766628742218, + "learning_rate": 0.0006, + "loss": 3.723767042160034, + "step": 2277 + }, + { + "epoch": 31.643075578855395, + "grad_norm": 0.20087581872940063, + "learning_rate": 0.0006, + "loss": 3.7622008323669434, + "step": 2278 + }, + { + "epoch": 31.657055482743555, + "grad_norm": 0.1949695646762848, + "learning_rate": 0.0006, + "loss": 3.7726354598999023, + "step": 2279 + }, + { + "epoch": 31.67103538663172, + "grad_norm": 0.19120797514915466, + "learning_rate": 0.0006, + "loss": 3.7454679012298584, + "step": 2280 + }, + { + "epoch": 31.68501529051988, + "grad_norm": 0.19480115175247192, + "learning_rate": 0.0006, + "loss": 3.743934392929077, + "step": 2281 + }, + { + "epoch": 31.698995194408038, + "grad_norm": 0.1891610324382782, + "learning_rate": 0.0006, + "loss": 3.7724897861480713, + "step": 2282 + }, + { + "epoch": 31.712975098296198, + "grad_norm": 0.18533185124397278, + "learning_rate": 0.0006, + "loss": 3.7556838989257812, + "step": 2283 + }, + { + "epoch": 31.72695500218436, + "grad_norm": 0.20079447329044342, + "learning_rate": 0.0006, + "loss": 3.76758074760437, + "step": 2284 + }, + { + "epoch": 31.74093490607252, + "grad_norm": 0.2103433609008789, + "learning_rate": 0.0006, + "loss": 3.769477367401123, + "step": 2285 + }, + { + "epoch": 31.75491480996068, + "grad_norm": 0.21428923308849335, + "learning_rate": 0.0006, + "loss": 3.7317447662353516, + "step": 2286 + }, + { + "epoch": 31.76889471384884, + "grad_norm": 0.20154133439064026, + "learning_rate": 0.0006, + "loss": 3.749814987182617, + "step": 2287 + }, + { + "epoch": 31.782874617737004, + "grad_norm": 0.18998542428016663, + "learning_rate": 0.0006, + "loss": 3.7655510902404785, + "step": 2288 + }, + { + "epoch": 31.796854521625164, + "grad_norm": 0.2068665474653244, + "learning_rate": 0.0006, + "loss": 3.7375988960266113, + "step": 2289 + }, + { + "epoch": 31.810834425513324, + "grad_norm": 0.22979815304279327, + "learning_rate": 0.0006, + "loss": 3.728095531463623, + "step": 2290 + }, + { + "epoch": 31.824814329401484, + "grad_norm": 0.2378212958574295, + "learning_rate": 0.0006, + "loss": 3.73091459274292, + "step": 2291 + }, + { + "epoch": 31.838794233289647, + "grad_norm": 0.2353672832250595, + "learning_rate": 0.0006, + "loss": 3.7491769790649414, + "step": 2292 + }, + { + "epoch": 31.852774137177807, + "grad_norm": 0.22341586649417877, + "learning_rate": 0.0006, + "loss": 3.777111530303955, + "step": 2293 + }, + { + "epoch": 31.866754041065967, + "grad_norm": 0.20436930656433105, + "learning_rate": 0.0006, + "loss": 3.740997552871704, + "step": 2294 + }, + { + "epoch": 31.88073394495413, + "grad_norm": 0.20836040377616882, + "learning_rate": 0.0006, + "loss": 3.755582571029663, + "step": 2295 + }, + { + "epoch": 31.89471384884229, + "grad_norm": 0.2045193612575531, + "learning_rate": 0.0006, + "loss": 3.7583560943603516, + "step": 2296 + }, + { + "epoch": 31.90869375273045, + "grad_norm": 0.2025591880083084, + "learning_rate": 0.0006, + "loss": 3.773345470428467, + "step": 2297 + }, + { + "epoch": 31.92267365661861, + "grad_norm": 0.20309099555015564, + "learning_rate": 0.0006, + "loss": 3.7392163276672363, + "step": 2298 + }, + { + "epoch": 31.936653560506773, + "grad_norm": 0.2129351645708084, + "learning_rate": 0.0006, + "loss": 3.7801311016082764, + "step": 2299 + }, + { + "epoch": 31.950633464394933, + "grad_norm": 0.19950738549232483, + "learning_rate": 0.0006, + "loss": 3.779261589050293, + "step": 2300 + }, + { + "epoch": 31.964613368283093, + "grad_norm": 0.22837352752685547, + "learning_rate": 0.0006, + "loss": 3.782731294631958, + "step": 2301 + }, + { + "epoch": 31.978593272171253, + "grad_norm": 0.2576889097690582, + "learning_rate": 0.0006, + "loss": 3.7778096199035645, + "step": 2302 + }, + { + "epoch": 31.992573176059416, + "grad_norm": 0.2770138382911682, + "learning_rate": 0.0006, + "loss": 3.735755443572998, + "step": 2303 + }, + { + "epoch": 32.0, + "grad_norm": 0.2632865309715271, + "learning_rate": 0.0006, + "loss": 3.7562808990478516, + "step": 2304 + }, + { + "epoch": 32.0, + "eval_loss": 4.031628608703613, + "eval_runtime": 44.2115, + "eval_samples_per_second": 55.234, + "eval_steps_per_second": 3.461, + "step": 2304 + }, + { + "epoch": 32.01397990388816, + "grad_norm": 0.20234128832817078, + "learning_rate": 0.0006, + "loss": 3.734489917755127, + "step": 2305 + }, + { + "epoch": 32.02795980777632, + "grad_norm": 0.24983637034893036, + "learning_rate": 0.0006, + "loss": 3.7351019382476807, + "step": 2306 + }, + { + "epoch": 32.04193971166448, + "grad_norm": 0.27358478307724, + "learning_rate": 0.0006, + "loss": 3.708712100982666, + "step": 2307 + }, + { + "epoch": 32.05591961555265, + "grad_norm": 0.24693739414215088, + "learning_rate": 0.0006, + "loss": 3.731858491897583, + "step": 2308 + }, + { + "epoch": 32.0698995194408, + "grad_norm": 0.22751131653785706, + "learning_rate": 0.0006, + "loss": 3.7074670791625977, + "step": 2309 + }, + { + "epoch": 32.083879423328966, + "grad_norm": 0.23400720953941345, + "learning_rate": 0.0006, + "loss": 3.714092493057251, + "step": 2310 + }, + { + "epoch": 32.09785932721712, + "grad_norm": 0.20711684226989746, + "learning_rate": 0.0006, + "loss": 3.754727840423584, + "step": 2311 + }, + { + "epoch": 32.111839231105286, + "grad_norm": 0.21589399874210358, + "learning_rate": 0.0006, + "loss": 3.6953847408294678, + "step": 2312 + }, + { + "epoch": 32.12581913499345, + "grad_norm": 0.24575738608837128, + "learning_rate": 0.0006, + "loss": 3.7078802585601807, + "step": 2313 + }, + { + "epoch": 32.139799038881605, + "grad_norm": 0.23152033984661102, + "learning_rate": 0.0006, + "loss": 3.7402305603027344, + "step": 2314 + }, + { + "epoch": 32.15377894276977, + "grad_norm": 0.22639606893062592, + "learning_rate": 0.0006, + "loss": 3.7264223098754883, + "step": 2315 + }, + { + "epoch": 32.16775884665793, + "grad_norm": 0.24701760709285736, + "learning_rate": 0.0006, + "loss": 3.7497639656066895, + "step": 2316 + }, + { + "epoch": 32.18173875054609, + "grad_norm": 0.274832159280777, + "learning_rate": 0.0006, + "loss": 3.7557122707366943, + "step": 2317 + }, + { + "epoch": 32.19571865443425, + "grad_norm": 0.27472418546676636, + "learning_rate": 0.0006, + "loss": 3.6863393783569336, + "step": 2318 + }, + { + "epoch": 32.20969855832241, + "grad_norm": 0.2625530958175659, + "learning_rate": 0.0006, + "loss": 3.7203545570373535, + "step": 2319 + }, + { + "epoch": 32.22367846221057, + "grad_norm": 0.2576068341732025, + "learning_rate": 0.0006, + "loss": 3.734747886657715, + "step": 2320 + }, + { + "epoch": 32.237658366098735, + "grad_norm": 0.25946059823036194, + "learning_rate": 0.0006, + "loss": 3.7501730918884277, + "step": 2321 + }, + { + "epoch": 32.25163826998689, + "grad_norm": 0.2524135410785675, + "learning_rate": 0.0006, + "loss": 3.75177001953125, + "step": 2322 + }, + { + "epoch": 32.265618173875055, + "grad_norm": 0.2568551003932953, + "learning_rate": 0.0006, + "loss": 3.752450704574585, + "step": 2323 + }, + { + "epoch": 32.27959807776322, + "grad_norm": 0.2489749640226364, + "learning_rate": 0.0006, + "loss": 3.711735486984253, + "step": 2324 + }, + { + "epoch": 32.293577981651374, + "grad_norm": 0.2425498366355896, + "learning_rate": 0.0006, + "loss": 3.7004239559173584, + "step": 2325 + }, + { + "epoch": 32.30755788553954, + "grad_norm": 0.24359773099422455, + "learning_rate": 0.0006, + "loss": 3.733870029449463, + "step": 2326 + }, + { + "epoch": 32.3215377894277, + "grad_norm": 0.22314727306365967, + "learning_rate": 0.0006, + "loss": 3.699841022491455, + "step": 2327 + }, + { + "epoch": 32.33551769331586, + "grad_norm": 0.2047620266675949, + "learning_rate": 0.0006, + "loss": 3.732534170150757, + "step": 2328 + }, + { + "epoch": 32.34949759720402, + "grad_norm": 0.24393224716186523, + "learning_rate": 0.0006, + "loss": 3.7200770378112793, + "step": 2329 + }, + { + "epoch": 32.36347750109218, + "grad_norm": 0.23884256184101105, + "learning_rate": 0.0006, + "loss": 3.722318410873413, + "step": 2330 + }, + { + "epoch": 32.37745740498034, + "grad_norm": 0.23262189328670502, + "learning_rate": 0.0006, + "loss": 3.759033203125, + "step": 2331 + }, + { + "epoch": 32.391437308868504, + "grad_norm": 0.22542893886566162, + "learning_rate": 0.0006, + "loss": 3.729198694229126, + "step": 2332 + }, + { + "epoch": 32.40541721275666, + "grad_norm": 0.22479060292243958, + "learning_rate": 0.0006, + "loss": 3.7298169136047363, + "step": 2333 + }, + { + "epoch": 32.419397116644824, + "grad_norm": 0.21571804583072662, + "learning_rate": 0.0006, + "loss": 3.699937343597412, + "step": 2334 + }, + { + "epoch": 32.43337702053299, + "grad_norm": 0.20804545283317566, + "learning_rate": 0.0006, + "loss": 3.7495696544647217, + "step": 2335 + }, + { + "epoch": 32.44735692442114, + "grad_norm": 0.22751706838607788, + "learning_rate": 0.0006, + "loss": 3.7369821071624756, + "step": 2336 + }, + { + "epoch": 32.46133682830931, + "grad_norm": 0.2326795756816864, + "learning_rate": 0.0006, + "loss": 3.7636334896087646, + "step": 2337 + }, + { + "epoch": 32.47531673219746, + "grad_norm": 0.19971159100532532, + "learning_rate": 0.0006, + "loss": 3.72151517868042, + "step": 2338 + }, + { + "epoch": 32.489296636085626, + "grad_norm": 0.21078036725521088, + "learning_rate": 0.0006, + "loss": 3.7050065994262695, + "step": 2339 + }, + { + "epoch": 32.50327653997379, + "grad_norm": 0.22198088467121124, + "learning_rate": 0.0006, + "loss": 3.7654409408569336, + "step": 2340 + }, + { + "epoch": 32.517256443861946, + "grad_norm": 0.20995207130908966, + "learning_rate": 0.0006, + "loss": 3.7516250610351562, + "step": 2341 + }, + { + "epoch": 32.53123634775011, + "grad_norm": 0.20757141709327698, + "learning_rate": 0.0006, + "loss": 3.7412633895874023, + "step": 2342 + }, + { + "epoch": 32.54521625163827, + "grad_norm": 0.20053881406784058, + "learning_rate": 0.0006, + "loss": 3.7477493286132812, + "step": 2343 + }, + { + "epoch": 32.55919615552643, + "grad_norm": 0.20223091542720795, + "learning_rate": 0.0006, + "loss": 3.7149064540863037, + "step": 2344 + }, + { + "epoch": 32.57317605941459, + "grad_norm": 0.20179468393325806, + "learning_rate": 0.0006, + "loss": 3.70635724067688, + "step": 2345 + }, + { + "epoch": 32.58715596330275, + "grad_norm": 0.19670480489730835, + "learning_rate": 0.0006, + "loss": 3.7276744842529297, + "step": 2346 + }, + { + "epoch": 32.60113586719091, + "grad_norm": 0.1992012858390808, + "learning_rate": 0.0006, + "loss": 3.7659356594085693, + "step": 2347 + }, + { + "epoch": 32.615115771079076, + "grad_norm": 0.20124201476573944, + "learning_rate": 0.0006, + "loss": 3.722212791442871, + "step": 2348 + }, + { + "epoch": 32.62909567496723, + "grad_norm": 0.21972708404064178, + "learning_rate": 0.0006, + "loss": 3.751830577850342, + "step": 2349 + }, + { + "epoch": 32.643075578855395, + "grad_norm": 0.20454947650432587, + "learning_rate": 0.0006, + "loss": 3.7196669578552246, + "step": 2350 + }, + { + "epoch": 32.65705548274356, + "grad_norm": 0.1783330887556076, + "learning_rate": 0.0006, + "loss": 3.721461772918701, + "step": 2351 + }, + { + "epoch": 32.671035386631715, + "grad_norm": 0.2027900367975235, + "learning_rate": 0.0006, + "loss": 3.753718614578247, + "step": 2352 + }, + { + "epoch": 32.68501529051988, + "grad_norm": 0.21232381463050842, + "learning_rate": 0.0006, + "loss": 3.732736349105835, + "step": 2353 + }, + { + "epoch": 32.69899519440804, + "grad_norm": 0.2214568555355072, + "learning_rate": 0.0006, + "loss": 3.7250165939331055, + "step": 2354 + }, + { + "epoch": 32.7129750982962, + "grad_norm": 0.2626485228538513, + "learning_rate": 0.0006, + "loss": 3.72263503074646, + "step": 2355 + }, + { + "epoch": 32.72695500218436, + "grad_norm": 0.30096277594566345, + "learning_rate": 0.0006, + "loss": 3.7599854469299316, + "step": 2356 + }, + { + "epoch": 32.74093490607252, + "grad_norm": 0.3374342620372772, + "learning_rate": 0.0006, + "loss": 3.7493844032287598, + "step": 2357 + }, + { + "epoch": 32.75491480996068, + "grad_norm": 0.3051377534866333, + "learning_rate": 0.0006, + "loss": 3.7515692710876465, + "step": 2358 + }, + { + "epoch": 32.768894713848844, + "grad_norm": 0.2130587249994278, + "learning_rate": 0.0006, + "loss": 3.751307964324951, + "step": 2359 + }, + { + "epoch": 32.782874617737, + "grad_norm": 0.25198230147361755, + "learning_rate": 0.0006, + "loss": 3.7500064373016357, + "step": 2360 + }, + { + "epoch": 32.796854521625164, + "grad_norm": 0.27613863348960876, + "learning_rate": 0.0006, + "loss": 3.7257039546966553, + "step": 2361 + }, + { + "epoch": 32.81083442551333, + "grad_norm": 0.23749367892742157, + "learning_rate": 0.0006, + "loss": 3.778343439102173, + "step": 2362 + }, + { + "epoch": 32.824814329401484, + "grad_norm": 0.2063702642917633, + "learning_rate": 0.0006, + "loss": 3.7493772506713867, + "step": 2363 + }, + { + "epoch": 32.83879423328965, + "grad_norm": 0.21169374883174896, + "learning_rate": 0.0006, + "loss": 3.722567081451416, + "step": 2364 + }, + { + "epoch": 32.8527741371778, + "grad_norm": 0.23291490972042084, + "learning_rate": 0.0006, + "loss": 3.7555532455444336, + "step": 2365 + }, + { + "epoch": 32.86675404106597, + "grad_norm": 0.21486155688762665, + "learning_rate": 0.0006, + "loss": 3.7401528358459473, + "step": 2366 + }, + { + "epoch": 32.88073394495413, + "grad_norm": 0.2296247035264969, + "learning_rate": 0.0006, + "loss": 3.7867965698242188, + "step": 2367 + }, + { + "epoch": 32.89471384884229, + "grad_norm": 0.2335108071565628, + "learning_rate": 0.0006, + "loss": 3.768036365509033, + "step": 2368 + }, + { + "epoch": 32.90869375273045, + "grad_norm": 0.23921863734722137, + "learning_rate": 0.0006, + "loss": 3.725252151489258, + "step": 2369 + }, + { + "epoch": 32.92267365661861, + "grad_norm": 0.20303526520729065, + "learning_rate": 0.0006, + "loss": 3.7806248664855957, + "step": 2370 + }, + { + "epoch": 32.93665356050677, + "grad_norm": 0.19293150305747986, + "learning_rate": 0.0006, + "loss": 3.759281873703003, + "step": 2371 + }, + { + "epoch": 32.95063346439493, + "grad_norm": 0.20609107613563538, + "learning_rate": 0.0006, + "loss": 3.764190196990967, + "step": 2372 + }, + { + "epoch": 32.964613368283096, + "grad_norm": 0.2014189213514328, + "learning_rate": 0.0006, + "loss": 3.7365214824676514, + "step": 2373 + }, + { + "epoch": 32.97859327217125, + "grad_norm": 0.22045451402664185, + "learning_rate": 0.0006, + "loss": 3.7435812950134277, + "step": 2374 + }, + { + "epoch": 32.992573176059416, + "grad_norm": 0.24228639900684357, + "learning_rate": 0.0006, + "loss": 3.751309394836426, + "step": 2375 + }, + { + "epoch": 33.0, + "grad_norm": 0.2645106613636017, + "learning_rate": 0.0006, + "loss": 3.7629928588867188, + "step": 2376 + }, + { + "epoch": 33.0, + "eval_loss": 4.026789665222168, + "eval_runtime": 44.9957, + "eval_samples_per_second": 54.272, + "eval_steps_per_second": 3.4, + "step": 2376 + }, + { + "epoch": 33.01397990388816, + "grad_norm": 0.21402551233768463, + "learning_rate": 0.0006, + "loss": 3.72019100189209, + "step": 2377 + }, + { + "epoch": 33.02795980777632, + "grad_norm": 0.23886585235595703, + "learning_rate": 0.0006, + "loss": 3.687084674835205, + "step": 2378 + }, + { + "epoch": 33.04193971166448, + "grad_norm": 0.29936572909355164, + "learning_rate": 0.0006, + "loss": 3.697310447692871, + "step": 2379 + }, + { + "epoch": 33.05591961555265, + "grad_norm": 0.30007585883140564, + "learning_rate": 0.0006, + "loss": 3.6913352012634277, + "step": 2380 + }, + { + "epoch": 33.0698995194408, + "grad_norm": 0.26594656705856323, + "learning_rate": 0.0006, + "loss": 3.740802526473999, + "step": 2381 + }, + { + "epoch": 33.083879423328966, + "grad_norm": 0.2658730447292328, + "learning_rate": 0.0006, + "loss": 3.692746162414551, + "step": 2382 + }, + { + "epoch": 33.09785932721712, + "grad_norm": 0.26755523681640625, + "learning_rate": 0.0006, + "loss": 3.7534420490264893, + "step": 2383 + }, + { + "epoch": 33.111839231105286, + "grad_norm": 0.23070940375328064, + "learning_rate": 0.0006, + "loss": 3.717876672744751, + "step": 2384 + }, + { + "epoch": 33.12581913499345, + "grad_norm": 0.2476235181093216, + "learning_rate": 0.0006, + "loss": 3.7072248458862305, + "step": 2385 + }, + { + "epoch": 33.139799038881605, + "grad_norm": 0.2454477846622467, + "learning_rate": 0.0006, + "loss": 3.729762077331543, + "step": 2386 + }, + { + "epoch": 33.15377894276977, + "grad_norm": 0.24090935289859772, + "learning_rate": 0.0006, + "loss": 3.721374988555908, + "step": 2387 + }, + { + "epoch": 33.16775884665793, + "grad_norm": 0.2440263032913208, + "learning_rate": 0.0006, + "loss": 3.730433464050293, + "step": 2388 + }, + { + "epoch": 33.18173875054609, + "grad_norm": 0.21699118614196777, + "learning_rate": 0.0006, + "loss": 3.724730968475342, + "step": 2389 + }, + { + "epoch": 33.19571865443425, + "grad_norm": 0.2302001267671585, + "learning_rate": 0.0006, + "loss": 3.69376277923584, + "step": 2390 + }, + { + "epoch": 33.20969855832241, + "grad_norm": 0.24707409739494324, + "learning_rate": 0.0006, + "loss": 3.705653667449951, + "step": 2391 + }, + { + "epoch": 33.22367846221057, + "grad_norm": 0.22896641492843628, + "learning_rate": 0.0006, + "loss": 3.747000217437744, + "step": 2392 + }, + { + "epoch": 33.237658366098735, + "grad_norm": 0.2278730720281601, + "learning_rate": 0.0006, + "loss": 3.733464241027832, + "step": 2393 + }, + { + "epoch": 33.25163826998689, + "grad_norm": 0.23909862339496613, + "learning_rate": 0.0006, + "loss": 3.733661413192749, + "step": 2394 + }, + { + "epoch": 33.265618173875055, + "grad_norm": 0.2349950075149536, + "learning_rate": 0.0006, + "loss": 3.7337965965270996, + "step": 2395 + }, + { + "epoch": 33.27959807776322, + "grad_norm": 0.22655968368053436, + "learning_rate": 0.0006, + "loss": 3.70503306388855, + "step": 2396 + }, + { + "epoch": 33.293577981651374, + "grad_norm": 0.22167043387889862, + "learning_rate": 0.0006, + "loss": 3.738797903060913, + "step": 2397 + }, + { + "epoch": 33.30755788553954, + "grad_norm": 0.2278883010149002, + "learning_rate": 0.0006, + "loss": 3.712550640106201, + "step": 2398 + }, + { + "epoch": 33.3215377894277, + "grad_norm": 0.2220565229654312, + "learning_rate": 0.0006, + "loss": 3.7278006076812744, + "step": 2399 + }, + { + "epoch": 33.33551769331586, + "grad_norm": 0.21888740360736847, + "learning_rate": 0.0006, + "loss": 3.72243595123291, + "step": 2400 + }, + { + "epoch": 33.34949759720402, + "grad_norm": 0.21587581932544708, + "learning_rate": 0.0006, + "loss": 3.7177581787109375, + "step": 2401 + }, + { + "epoch": 33.36347750109218, + "grad_norm": 0.1923578530550003, + "learning_rate": 0.0006, + "loss": 3.711294651031494, + "step": 2402 + }, + { + "epoch": 33.37745740498034, + "grad_norm": 0.1994934380054474, + "learning_rate": 0.0006, + "loss": 3.762061595916748, + "step": 2403 + }, + { + "epoch": 33.391437308868504, + "grad_norm": 0.20074427127838135, + "learning_rate": 0.0006, + "loss": 3.708559036254883, + "step": 2404 + }, + { + "epoch": 33.40541721275666, + "grad_norm": 0.21349482238292694, + "learning_rate": 0.0006, + "loss": 3.7089147567749023, + "step": 2405 + }, + { + "epoch": 33.419397116644824, + "grad_norm": 0.25523608922958374, + "learning_rate": 0.0006, + "loss": 3.7241058349609375, + "step": 2406 + }, + { + "epoch": 33.43337702053299, + "grad_norm": 0.27654796838760376, + "learning_rate": 0.0006, + "loss": 3.723618984222412, + "step": 2407 + }, + { + "epoch": 33.44735692442114, + "grad_norm": 0.2651479244232178, + "learning_rate": 0.0006, + "loss": 3.7367782592773438, + "step": 2408 + }, + { + "epoch": 33.46133682830931, + "grad_norm": 0.23403556644916534, + "learning_rate": 0.0006, + "loss": 3.7198312282562256, + "step": 2409 + }, + { + "epoch": 33.47531673219746, + "grad_norm": 0.20970726013183594, + "learning_rate": 0.0006, + "loss": 3.7088186740875244, + "step": 2410 + }, + { + "epoch": 33.489296636085626, + "grad_norm": 0.18532544374465942, + "learning_rate": 0.0006, + "loss": 3.7162208557128906, + "step": 2411 + }, + { + "epoch": 33.50327653997379, + "grad_norm": 0.19590279459953308, + "learning_rate": 0.0006, + "loss": 3.766357898712158, + "step": 2412 + }, + { + "epoch": 33.517256443861946, + "grad_norm": 0.203349307179451, + "learning_rate": 0.0006, + "loss": 3.732177257537842, + "step": 2413 + }, + { + "epoch": 33.53123634775011, + "grad_norm": 0.2015952616930008, + "learning_rate": 0.0006, + "loss": 3.741609573364258, + "step": 2414 + }, + { + "epoch": 33.54521625163827, + "grad_norm": 0.20024161040782928, + "learning_rate": 0.0006, + "loss": 3.6894431114196777, + "step": 2415 + }, + { + "epoch": 33.55919615552643, + "grad_norm": 0.20932617783546448, + "learning_rate": 0.0006, + "loss": 3.721979856491089, + "step": 2416 + }, + { + "epoch": 33.57317605941459, + "grad_norm": 0.22069773077964783, + "learning_rate": 0.0006, + "loss": 3.712203025817871, + "step": 2417 + }, + { + "epoch": 33.58715596330275, + "grad_norm": 0.22341343760490417, + "learning_rate": 0.0006, + "loss": 3.7469263076782227, + "step": 2418 + }, + { + "epoch": 33.60113586719091, + "grad_norm": 0.21758507192134857, + "learning_rate": 0.0006, + "loss": 3.721778392791748, + "step": 2419 + }, + { + "epoch": 33.615115771079076, + "grad_norm": 0.20480088889598846, + "learning_rate": 0.0006, + "loss": 3.743570327758789, + "step": 2420 + }, + { + "epoch": 33.62909567496723, + "grad_norm": 0.23068399727344513, + "learning_rate": 0.0006, + "loss": 3.7203001976013184, + "step": 2421 + }, + { + "epoch": 33.643075578855395, + "grad_norm": 0.2526263892650604, + "learning_rate": 0.0006, + "loss": 3.7336440086364746, + "step": 2422 + }, + { + "epoch": 33.65705548274356, + "grad_norm": 0.218627467751503, + "learning_rate": 0.0006, + "loss": 3.730762243270874, + "step": 2423 + }, + { + "epoch": 33.671035386631715, + "grad_norm": 0.21883417665958405, + "learning_rate": 0.0006, + "loss": 3.749356508255005, + "step": 2424 + }, + { + "epoch": 33.68501529051988, + "grad_norm": 0.22885626554489136, + "learning_rate": 0.0006, + "loss": 3.7426199913024902, + "step": 2425 + }, + { + "epoch": 33.69899519440804, + "grad_norm": 0.23709580302238464, + "learning_rate": 0.0006, + "loss": 3.691652774810791, + "step": 2426 + }, + { + "epoch": 33.7129750982962, + "grad_norm": 0.2258225381374359, + "learning_rate": 0.0006, + "loss": 3.7368886470794678, + "step": 2427 + }, + { + "epoch": 33.72695500218436, + "grad_norm": 0.1993306577205658, + "learning_rate": 0.0006, + "loss": 3.722733497619629, + "step": 2428 + }, + { + "epoch": 33.74093490607252, + "grad_norm": 0.20307473838329315, + "learning_rate": 0.0006, + "loss": 3.7507500648498535, + "step": 2429 + }, + { + "epoch": 33.75491480996068, + "grad_norm": 0.20076696574687958, + "learning_rate": 0.0006, + "loss": 3.6896910667419434, + "step": 2430 + }, + { + "epoch": 33.768894713848844, + "grad_norm": 0.21118830144405365, + "learning_rate": 0.0006, + "loss": 3.7176647186279297, + "step": 2431 + }, + { + "epoch": 33.782874617737, + "grad_norm": 0.21605782210826874, + "learning_rate": 0.0006, + "loss": 3.7423641681671143, + "step": 2432 + }, + { + "epoch": 33.796854521625164, + "grad_norm": 0.22233152389526367, + "learning_rate": 0.0006, + "loss": 3.7296109199523926, + "step": 2433 + }, + { + "epoch": 33.81083442551333, + "grad_norm": 0.2253616899251938, + "learning_rate": 0.0006, + "loss": 3.7095072269439697, + "step": 2434 + }, + { + "epoch": 33.824814329401484, + "grad_norm": 0.2105807662010193, + "learning_rate": 0.0006, + "loss": 3.760921001434326, + "step": 2435 + }, + { + "epoch": 33.83879423328965, + "grad_norm": 0.20413213968276978, + "learning_rate": 0.0006, + "loss": 3.7356553077697754, + "step": 2436 + }, + { + "epoch": 33.8527741371778, + "grad_norm": 0.19781213998794556, + "learning_rate": 0.0006, + "loss": 3.726787567138672, + "step": 2437 + }, + { + "epoch": 33.86675404106597, + "grad_norm": 0.199616938829422, + "learning_rate": 0.0006, + "loss": 3.7200419902801514, + "step": 2438 + }, + { + "epoch": 33.88073394495413, + "grad_norm": 0.19702564179897308, + "learning_rate": 0.0006, + "loss": 3.714287281036377, + "step": 2439 + }, + { + "epoch": 33.89471384884229, + "grad_norm": 0.19456833600997925, + "learning_rate": 0.0006, + "loss": 3.739231586456299, + "step": 2440 + }, + { + "epoch": 33.90869375273045, + "grad_norm": 0.1890697181224823, + "learning_rate": 0.0006, + "loss": 3.7088429927825928, + "step": 2441 + }, + { + "epoch": 33.92267365661861, + "grad_norm": 0.1845911741256714, + "learning_rate": 0.0006, + "loss": 3.760782241821289, + "step": 2442 + }, + { + "epoch": 33.93665356050677, + "grad_norm": 0.19045902788639069, + "learning_rate": 0.0006, + "loss": 3.736957311630249, + "step": 2443 + }, + { + "epoch": 33.95063346439493, + "grad_norm": 0.1934187412261963, + "learning_rate": 0.0006, + "loss": 3.756351947784424, + "step": 2444 + }, + { + "epoch": 33.964613368283096, + "grad_norm": 0.19774580001831055, + "learning_rate": 0.0006, + "loss": 3.7332229614257812, + "step": 2445 + }, + { + "epoch": 33.97859327217125, + "grad_norm": 0.20653048157691956, + "learning_rate": 0.0006, + "loss": 3.7112321853637695, + "step": 2446 + }, + { + "epoch": 33.992573176059416, + "grad_norm": 0.18618541955947876, + "learning_rate": 0.0006, + "loss": 3.735710620880127, + "step": 2447 + }, + { + "epoch": 34.0, + "grad_norm": 0.22846414148807526, + "learning_rate": 0.0006, + "loss": 3.739706039428711, + "step": 2448 + }, + { + "epoch": 34.0, + "eval_loss": 4.0099663734436035, + "eval_runtime": 45.2096, + "eval_samples_per_second": 54.015, + "eval_steps_per_second": 3.384, + "step": 2448 + }, + { + "epoch": 34.01397990388816, + "grad_norm": 0.20987462997436523, + "learning_rate": 0.0006, + "loss": 3.6798832416534424, + "step": 2449 + }, + { + "epoch": 34.02795980777632, + "grad_norm": 0.2230423390865326, + "learning_rate": 0.0006, + "loss": 3.7157368659973145, + "step": 2450 + }, + { + "epoch": 34.04193971166448, + "grad_norm": 0.24115242063999176, + "learning_rate": 0.0006, + "loss": 3.696037769317627, + "step": 2451 + }, + { + "epoch": 34.05591961555265, + "grad_norm": 0.24499665200710297, + "learning_rate": 0.0006, + "loss": 3.695420742034912, + "step": 2452 + }, + { + "epoch": 34.0698995194408, + "grad_norm": 0.23336757719516754, + "learning_rate": 0.0006, + "loss": 3.7252023220062256, + "step": 2453 + }, + { + "epoch": 34.083879423328966, + "grad_norm": 0.23716159164905548, + "learning_rate": 0.0006, + "loss": 3.714542865753174, + "step": 2454 + }, + { + "epoch": 34.09785932721712, + "grad_norm": 0.2305644154548645, + "learning_rate": 0.0006, + "loss": 3.6989386081695557, + "step": 2455 + }, + { + "epoch": 34.111839231105286, + "grad_norm": 0.2281671017408371, + "learning_rate": 0.0006, + "loss": 3.6952829360961914, + "step": 2456 + }, + { + "epoch": 34.12581913499345, + "grad_norm": 0.21031132340431213, + "learning_rate": 0.0006, + "loss": 3.7337589263916016, + "step": 2457 + }, + { + "epoch": 34.139799038881605, + "grad_norm": 0.2233671098947525, + "learning_rate": 0.0006, + "loss": 3.6923675537109375, + "step": 2458 + }, + { + "epoch": 34.15377894276977, + "grad_norm": 0.22766625881195068, + "learning_rate": 0.0006, + "loss": 3.70849609375, + "step": 2459 + }, + { + "epoch": 34.16775884665793, + "grad_norm": 0.22433766722679138, + "learning_rate": 0.0006, + "loss": 3.718319892883301, + "step": 2460 + }, + { + "epoch": 34.18173875054609, + "grad_norm": 0.20621491968631744, + "learning_rate": 0.0006, + "loss": 3.6874704360961914, + "step": 2461 + }, + { + "epoch": 34.19571865443425, + "grad_norm": 0.21353304386138916, + "learning_rate": 0.0006, + "loss": 3.663358688354492, + "step": 2462 + }, + { + "epoch": 34.20969855832241, + "grad_norm": 0.20652951300144196, + "learning_rate": 0.0006, + "loss": 3.718107223510742, + "step": 2463 + }, + { + "epoch": 34.22367846221057, + "grad_norm": 0.19780176877975464, + "learning_rate": 0.0006, + "loss": 3.7255396842956543, + "step": 2464 + }, + { + "epoch": 34.237658366098735, + "grad_norm": 0.20636138319969177, + "learning_rate": 0.0006, + "loss": 3.696850538253784, + "step": 2465 + }, + { + "epoch": 34.25163826998689, + "grad_norm": 0.23691460490226746, + "learning_rate": 0.0006, + "loss": 3.687997341156006, + "step": 2466 + }, + { + "epoch": 34.265618173875055, + "grad_norm": 0.2380511611700058, + "learning_rate": 0.0006, + "loss": 3.716610908508301, + "step": 2467 + }, + { + "epoch": 34.27959807776322, + "grad_norm": 0.21508945524692535, + "learning_rate": 0.0006, + "loss": 3.6993470191955566, + "step": 2468 + }, + { + "epoch": 34.293577981651374, + "grad_norm": 0.20441125333309174, + "learning_rate": 0.0006, + "loss": 3.7194275856018066, + "step": 2469 + }, + { + "epoch": 34.30755788553954, + "grad_norm": 0.19704242050647736, + "learning_rate": 0.0006, + "loss": 3.675929546356201, + "step": 2470 + }, + { + "epoch": 34.3215377894277, + "grad_norm": 0.1918456256389618, + "learning_rate": 0.0006, + "loss": 3.7189574241638184, + "step": 2471 + }, + { + "epoch": 34.33551769331586, + "grad_norm": 0.19687092304229736, + "learning_rate": 0.0006, + "loss": 3.725809335708618, + "step": 2472 + }, + { + "epoch": 34.34949759720402, + "grad_norm": 0.2048639953136444, + "learning_rate": 0.0006, + "loss": 3.7461748123168945, + "step": 2473 + }, + { + "epoch": 34.36347750109218, + "grad_norm": 0.21086618304252625, + "learning_rate": 0.0006, + "loss": 3.6849746704101562, + "step": 2474 + }, + { + "epoch": 34.37745740498034, + "grad_norm": 0.2172154039144516, + "learning_rate": 0.0006, + "loss": 3.7379322052001953, + "step": 2475 + }, + { + "epoch": 34.391437308868504, + "grad_norm": 0.22725504636764526, + "learning_rate": 0.0006, + "loss": 3.7341527938842773, + "step": 2476 + }, + { + "epoch": 34.40541721275666, + "grad_norm": 0.22309242188930511, + "learning_rate": 0.0006, + "loss": 3.724946975708008, + "step": 2477 + }, + { + "epoch": 34.419397116644824, + "grad_norm": 0.25252285599708557, + "learning_rate": 0.0006, + "loss": 3.710257053375244, + "step": 2478 + }, + { + "epoch": 34.43337702053299, + "grad_norm": 0.2549746334552765, + "learning_rate": 0.0006, + "loss": 3.7105040550231934, + "step": 2479 + }, + { + "epoch": 34.44735692442114, + "grad_norm": 0.22544030845165253, + "learning_rate": 0.0006, + "loss": 3.7340707778930664, + "step": 2480 + }, + { + "epoch": 34.46133682830931, + "grad_norm": 0.22275063395500183, + "learning_rate": 0.0006, + "loss": 3.7141473293304443, + "step": 2481 + }, + { + "epoch": 34.47531673219746, + "grad_norm": 0.25373485684394836, + "learning_rate": 0.0006, + "loss": 3.7014691829681396, + "step": 2482 + }, + { + "epoch": 34.489296636085626, + "grad_norm": 0.2573327124118805, + "learning_rate": 0.0006, + "loss": 3.682562828063965, + "step": 2483 + }, + { + "epoch": 34.50327653997379, + "grad_norm": 0.2452341616153717, + "learning_rate": 0.0006, + "loss": 3.757261276245117, + "step": 2484 + }, + { + "epoch": 34.517256443861946, + "grad_norm": 0.2477131187915802, + "learning_rate": 0.0006, + "loss": 3.7216877937316895, + "step": 2485 + }, + { + "epoch": 34.53123634775011, + "grad_norm": 0.24740098416805267, + "learning_rate": 0.0006, + "loss": 3.705704927444458, + "step": 2486 + }, + { + "epoch": 34.54521625163827, + "grad_norm": 0.27306219935417175, + "learning_rate": 0.0006, + "loss": 3.7014641761779785, + "step": 2487 + }, + { + "epoch": 34.55919615552643, + "grad_norm": 0.26376286149024963, + "learning_rate": 0.0006, + "loss": 3.686056137084961, + "step": 2488 + }, + { + "epoch": 34.57317605941459, + "grad_norm": 0.2796899378299713, + "learning_rate": 0.0006, + "loss": 3.7171077728271484, + "step": 2489 + }, + { + "epoch": 34.58715596330275, + "grad_norm": 0.24279902875423431, + "learning_rate": 0.0006, + "loss": 3.7448348999023438, + "step": 2490 + }, + { + "epoch": 34.60113586719091, + "grad_norm": 0.22772833704948425, + "learning_rate": 0.0006, + "loss": 3.7028117179870605, + "step": 2491 + }, + { + "epoch": 34.615115771079076, + "grad_norm": 0.22157910466194153, + "learning_rate": 0.0006, + "loss": 3.750023603439331, + "step": 2492 + }, + { + "epoch": 34.62909567496723, + "grad_norm": 0.24342703819274902, + "learning_rate": 0.0006, + "loss": 3.7181010246276855, + "step": 2493 + }, + { + "epoch": 34.643075578855395, + "grad_norm": 0.2554340362548828, + "learning_rate": 0.0006, + "loss": 3.6994080543518066, + "step": 2494 + }, + { + "epoch": 34.65705548274356, + "grad_norm": 0.21296930313110352, + "learning_rate": 0.0006, + "loss": 3.7534523010253906, + "step": 2495 + }, + { + "epoch": 34.671035386631715, + "grad_norm": 0.19117674231529236, + "learning_rate": 0.0006, + "loss": 3.7267889976501465, + "step": 2496 + }, + { + "epoch": 34.68501529051988, + "grad_norm": 0.2306399643421173, + "learning_rate": 0.0006, + "loss": 3.723212242126465, + "step": 2497 + }, + { + "epoch": 34.69899519440804, + "grad_norm": 0.23063263297080994, + "learning_rate": 0.0006, + "loss": 3.730070114135742, + "step": 2498 + }, + { + "epoch": 34.7129750982962, + "grad_norm": 0.19422881305217743, + "learning_rate": 0.0006, + "loss": 3.694833755493164, + "step": 2499 + }, + { + "epoch": 34.72695500218436, + "grad_norm": 0.20246362686157227, + "learning_rate": 0.0006, + "loss": 3.71140718460083, + "step": 2500 + }, + { + "epoch": 34.74093490607252, + "grad_norm": 0.1942741572856903, + "learning_rate": 0.0006, + "loss": 3.7530534267425537, + "step": 2501 + }, + { + "epoch": 34.75491480996068, + "grad_norm": 0.19686029851436615, + "learning_rate": 0.0006, + "loss": 3.7059555053710938, + "step": 2502 + }, + { + "epoch": 34.768894713848844, + "grad_norm": 0.20120355486869812, + "learning_rate": 0.0006, + "loss": 3.7271084785461426, + "step": 2503 + }, + { + "epoch": 34.782874617737, + "grad_norm": 0.20880399644374847, + "learning_rate": 0.0006, + "loss": 3.712137460708618, + "step": 2504 + }, + { + "epoch": 34.796854521625164, + "grad_norm": 0.22139988839626312, + "learning_rate": 0.0006, + "loss": 3.731245517730713, + "step": 2505 + }, + { + "epoch": 34.81083442551333, + "grad_norm": 0.22756224870681763, + "learning_rate": 0.0006, + "loss": 3.708987236022949, + "step": 2506 + }, + { + "epoch": 34.824814329401484, + "grad_norm": 0.22332409024238586, + "learning_rate": 0.0006, + "loss": 3.7365565299987793, + "step": 2507 + }, + { + "epoch": 34.83879423328965, + "grad_norm": 0.19599054753780365, + "learning_rate": 0.0006, + "loss": 3.7266454696655273, + "step": 2508 + }, + { + "epoch": 34.8527741371778, + "grad_norm": 0.19843019545078278, + "learning_rate": 0.0006, + "loss": 3.7225422859191895, + "step": 2509 + }, + { + "epoch": 34.86675404106597, + "grad_norm": 0.20147928595542908, + "learning_rate": 0.0006, + "loss": 3.7282514572143555, + "step": 2510 + }, + { + "epoch": 34.88073394495413, + "grad_norm": 0.19489876925945282, + "learning_rate": 0.0006, + "loss": 3.694852113723755, + "step": 2511 + }, + { + "epoch": 34.89471384884229, + "grad_norm": 0.20680078864097595, + "learning_rate": 0.0006, + "loss": 3.74678635597229, + "step": 2512 + }, + { + "epoch": 34.90869375273045, + "grad_norm": 0.2233233004808426, + "learning_rate": 0.0006, + "loss": 3.726475238800049, + "step": 2513 + }, + { + "epoch": 34.92267365661861, + "grad_norm": 0.20702993869781494, + "learning_rate": 0.0006, + "loss": 3.6946351528167725, + "step": 2514 + }, + { + "epoch": 34.93665356050677, + "grad_norm": 0.2081725299358368, + "learning_rate": 0.0006, + "loss": 3.7101621627807617, + "step": 2515 + }, + { + "epoch": 34.95063346439493, + "grad_norm": 0.20551837980747223, + "learning_rate": 0.0006, + "loss": 3.7060177326202393, + "step": 2516 + }, + { + "epoch": 34.964613368283096, + "grad_norm": 0.2106839418411255, + "learning_rate": 0.0006, + "loss": 3.7460474967956543, + "step": 2517 + }, + { + "epoch": 34.97859327217125, + "grad_norm": 0.18512766063213348, + "learning_rate": 0.0006, + "loss": 3.719280242919922, + "step": 2518 + }, + { + "epoch": 34.992573176059416, + "grad_norm": 0.1802142709493637, + "learning_rate": 0.0006, + "loss": 3.698255777359009, + "step": 2519 + }, + { + "epoch": 35.0, + "grad_norm": 0.2028084248304367, + "learning_rate": 0.0006, + "loss": 3.711136817932129, + "step": 2520 + }, + { + "epoch": 35.0, + "eval_loss": 4.006688117980957, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 2520 + }, + { + "epoch": 35.01397990388816, + "grad_norm": 0.1973012387752533, + "learning_rate": 0.0006, + "loss": 3.7108325958251953, + "step": 2521 + }, + { + "epoch": 35.02795980777632, + "grad_norm": 0.23763646185398102, + "learning_rate": 0.0006, + "loss": 3.675785541534424, + "step": 2522 + }, + { + "epoch": 35.04193971166448, + "grad_norm": 0.24403199553489685, + "learning_rate": 0.0006, + "loss": 3.7034249305725098, + "step": 2523 + }, + { + "epoch": 35.05591961555265, + "grad_norm": 0.19050131738185883, + "learning_rate": 0.0006, + "loss": 3.6984221935272217, + "step": 2524 + }, + { + "epoch": 35.0698995194408, + "grad_norm": 0.21389710903167725, + "learning_rate": 0.0006, + "loss": 3.6641085147857666, + "step": 2525 + }, + { + "epoch": 35.083879423328966, + "grad_norm": 0.23103152215480804, + "learning_rate": 0.0006, + "loss": 3.722912311553955, + "step": 2526 + }, + { + "epoch": 35.09785932721712, + "grad_norm": 0.2197326272726059, + "learning_rate": 0.0006, + "loss": 3.696568727493286, + "step": 2527 + }, + { + "epoch": 35.111839231105286, + "grad_norm": 0.20877327024936676, + "learning_rate": 0.0006, + "loss": 3.666700601577759, + "step": 2528 + }, + { + "epoch": 35.12581913499345, + "grad_norm": 0.20904001593589783, + "learning_rate": 0.0006, + "loss": 3.6896979808807373, + "step": 2529 + }, + { + "epoch": 35.139799038881605, + "grad_norm": 0.1947423666715622, + "learning_rate": 0.0006, + "loss": 3.6647095680236816, + "step": 2530 + }, + { + "epoch": 35.15377894276977, + "grad_norm": 0.2134019434452057, + "learning_rate": 0.0006, + "loss": 3.696993589401245, + "step": 2531 + }, + { + "epoch": 35.16775884665793, + "grad_norm": 0.2299254685640335, + "learning_rate": 0.0006, + "loss": 3.7067925930023193, + "step": 2532 + }, + { + "epoch": 35.18173875054609, + "grad_norm": 0.219585582613945, + "learning_rate": 0.0006, + "loss": 3.6680960655212402, + "step": 2533 + }, + { + "epoch": 35.19571865443425, + "grad_norm": 0.2146025449037552, + "learning_rate": 0.0006, + "loss": 3.7185046672821045, + "step": 2534 + }, + { + "epoch": 35.20969855832241, + "grad_norm": 0.22748060524463654, + "learning_rate": 0.0006, + "loss": 3.659202814102173, + "step": 2535 + }, + { + "epoch": 35.22367846221057, + "grad_norm": 0.22272273898124695, + "learning_rate": 0.0006, + "loss": 3.7002370357513428, + "step": 2536 + }, + { + "epoch": 35.237658366098735, + "grad_norm": 0.23827379941940308, + "learning_rate": 0.0006, + "loss": 3.714664936065674, + "step": 2537 + }, + { + "epoch": 35.25163826998689, + "grad_norm": 0.2328156679868698, + "learning_rate": 0.0006, + "loss": 3.665173292160034, + "step": 2538 + }, + { + "epoch": 35.265618173875055, + "grad_norm": 0.2573475241661072, + "learning_rate": 0.0006, + "loss": 3.7073206901550293, + "step": 2539 + }, + { + "epoch": 35.27959807776322, + "grad_norm": 0.2411472052335739, + "learning_rate": 0.0006, + "loss": 3.697751045227051, + "step": 2540 + }, + { + "epoch": 35.293577981651374, + "grad_norm": 0.22836148738861084, + "learning_rate": 0.0006, + "loss": 3.7219419479370117, + "step": 2541 + }, + { + "epoch": 35.30755788553954, + "grad_norm": 0.2225421667098999, + "learning_rate": 0.0006, + "loss": 3.69516658782959, + "step": 2542 + }, + { + "epoch": 35.3215377894277, + "grad_norm": 0.2180362343788147, + "learning_rate": 0.0006, + "loss": 3.714043378829956, + "step": 2543 + }, + { + "epoch": 35.33551769331586, + "grad_norm": 0.23638299107551575, + "learning_rate": 0.0006, + "loss": 3.7449421882629395, + "step": 2544 + }, + { + "epoch": 35.34949759720402, + "grad_norm": 0.21792089939117432, + "learning_rate": 0.0006, + "loss": 3.7029948234558105, + "step": 2545 + }, + { + "epoch": 35.36347750109218, + "grad_norm": 0.23266112804412842, + "learning_rate": 0.0006, + "loss": 3.683509111404419, + "step": 2546 + }, + { + "epoch": 35.37745740498034, + "grad_norm": 0.24203059077262878, + "learning_rate": 0.0006, + "loss": 3.68572998046875, + "step": 2547 + }, + { + "epoch": 35.391437308868504, + "grad_norm": 0.2543564438819885, + "learning_rate": 0.0006, + "loss": 3.6902432441711426, + "step": 2548 + }, + { + "epoch": 35.40541721275666, + "grad_norm": 0.22990189492702484, + "learning_rate": 0.0006, + "loss": 3.708810329437256, + "step": 2549 + }, + { + "epoch": 35.419397116644824, + "grad_norm": 0.2594352662563324, + "learning_rate": 0.0006, + "loss": 3.7312886714935303, + "step": 2550 + }, + { + "epoch": 35.43337702053299, + "grad_norm": 0.27525269985198975, + "learning_rate": 0.0006, + "loss": 3.6963448524475098, + "step": 2551 + }, + { + "epoch": 35.44735692442114, + "grad_norm": 0.2436525970697403, + "learning_rate": 0.0006, + "loss": 3.6733713150024414, + "step": 2552 + }, + { + "epoch": 35.46133682830931, + "grad_norm": 0.25500908493995667, + "learning_rate": 0.0006, + "loss": 3.7104358673095703, + "step": 2553 + }, + { + "epoch": 35.47531673219746, + "grad_norm": 0.23504602909088135, + "learning_rate": 0.0006, + "loss": 3.7052388191223145, + "step": 2554 + }, + { + "epoch": 35.489296636085626, + "grad_norm": 0.2277563363313675, + "learning_rate": 0.0006, + "loss": 3.708714008331299, + "step": 2555 + }, + { + "epoch": 35.50327653997379, + "grad_norm": 0.25224778056144714, + "learning_rate": 0.0006, + "loss": 3.699676990509033, + "step": 2556 + }, + { + "epoch": 35.517256443861946, + "grad_norm": 0.28308045864105225, + "learning_rate": 0.0006, + "loss": 3.7005362510681152, + "step": 2557 + }, + { + "epoch": 35.53123634775011, + "grad_norm": 0.25858840346336365, + "learning_rate": 0.0006, + "loss": 3.689999580383301, + "step": 2558 + }, + { + "epoch": 35.54521625163827, + "grad_norm": 0.23497405648231506, + "learning_rate": 0.0006, + "loss": 3.695793867111206, + "step": 2559 + }, + { + "epoch": 35.55919615552643, + "grad_norm": 0.22375957667827606, + "learning_rate": 0.0006, + "loss": 3.7011494636535645, + "step": 2560 + }, + { + "epoch": 35.57317605941459, + "grad_norm": 0.21056118607521057, + "learning_rate": 0.0006, + "loss": 3.722623586654663, + "step": 2561 + }, + { + "epoch": 35.58715596330275, + "grad_norm": 0.22504374384880066, + "learning_rate": 0.0006, + "loss": 3.7211966514587402, + "step": 2562 + }, + { + "epoch": 35.60113586719091, + "grad_norm": 0.22349773347377777, + "learning_rate": 0.0006, + "loss": 3.6901848316192627, + "step": 2563 + }, + { + "epoch": 35.615115771079076, + "grad_norm": 0.219499409198761, + "learning_rate": 0.0006, + "loss": 3.709026575088501, + "step": 2564 + }, + { + "epoch": 35.62909567496723, + "grad_norm": 0.20461080968379974, + "learning_rate": 0.0006, + "loss": 3.72456693649292, + "step": 2565 + }, + { + "epoch": 35.643075578855395, + "grad_norm": 0.2083883285522461, + "learning_rate": 0.0006, + "loss": 3.6845502853393555, + "step": 2566 + }, + { + "epoch": 35.65705548274356, + "grad_norm": 0.19694562256336212, + "learning_rate": 0.0006, + "loss": 3.668515682220459, + "step": 2567 + }, + { + "epoch": 35.671035386631715, + "grad_norm": 0.2107984870672226, + "learning_rate": 0.0006, + "loss": 3.700723648071289, + "step": 2568 + }, + { + "epoch": 35.68501529051988, + "grad_norm": 0.18878720700740814, + "learning_rate": 0.0006, + "loss": 3.689150333404541, + "step": 2569 + }, + { + "epoch": 35.69899519440804, + "grad_norm": 0.20058824121952057, + "learning_rate": 0.0006, + "loss": 3.7048301696777344, + "step": 2570 + }, + { + "epoch": 35.7129750982962, + "grad_norm": 0.2200566679239273, + "learning_rate": 0.0006, + "loss": 3.6944580078125, + "step": 2571 + }, + { + "epoch": 35.72695500218436, + "grad_norm": 0.22200417518615723, + "learning_rate": 0.0006, + "loss": 3.715193510055542, + "step": 2572 + }, + { + "epoch": 35.74093490607252, + "grad_norm": 0.21011404693126678, + "learning_rate": 0.0006, + "loss": 3.737387180328369, + "step": 2573 + }, + { + "epoch": 35.75491480996068, + "grad_norm": 0.21139226853847504, + "learning_rate": 0.0006, + "loss": 3.695596694946289, + "step": 2574 + }, + { + "epoch": 35.768894713848844, + "grad_norm": 0.2112506479024887, + "learning_rate": 0.0006, + "loss": 3.7264227867126465, + "step": 2575 + }, + { + "epoch": 35.782874617737, + "grad_norm": 0.21528391540050507, + "learning_rate": 0.0006, + "loss": 3.7089385986328125, + "step": 2576 + }, + { + "epoch": 35.796854521625164, + "grad_norm": 0.2127804309129715, + "learning_rate": 0.0006, + "loss": 3.6995301246643066, + "step": 2577 + }, + { + "epoch": 35.81083442551333, + "grad_norm": 0.19839410483837128, + "learning_rate": 0.0006, + "loss": 3.7233223915100098, + "step": 2578 + }, + { + "epoch": 35.824814329401484, + "grad_norm": 0.19098423421382904, + "learning_rate": 0.0006, + "loss": 3.7108311653137207, + "step": 2579 + }, + { + "epoch": 35.83879423328965, + "grad_norm": 0.18697232007980347, + "learning_rate": 0.0006, + "loss": 3.725001811981201, + "step": 2580 + }, + { + "epoch": 35.8527741371778, + "grad_norm": 0.21051937341690063, + "learning_rate": 0.0006, + "loss": 3.7310993671417236, + "step": 2581 + }, + { + "epoch": 35.86675404106597, + "grad_norm": 0.2239079475402832, + "learning_rate": 0.0006, + "loss": 3.739056348800659, + "step": 2582 + }, + { + "epoch": 35.88073394495413, + "grad_norm": 0.2581230700016022, + "learning_rate": 0.0006, + "loss": 3.697061061859131, + "step": 2583 + }, + { + "epoch": 35.89471384884229, + "grad_norm": 0.25388655066490173, + "learning_rate": 0.0006, + "loss": 3.7173471450805664, + "step": 2584 + }, + { + "epoch": 35.90869375273045, + "grad_norm": 0.2557796537876129, + "learning_rate": 0.0006, + "loss": 3.7121596336364746, + "step": 2585 + }, + { + "epoch": 35.92267365661861, + "grad_norm": 0.21846474707126617, + "learning_rate": 0.0006, + "loss": 3.7342100143432617, + "step": 2586 + }, + { + "epoch": 35.93665356050677, + "grad_norm": 0.19810006022453308, + "learning_rate": 0.0006, + "loss": 3.7266340255737305, + "step": 2587 + }, + { + "epoch": 35.95063346439493, + "grad_norm": 0.28599923849105835, + "learning_rate": 0.0006, + "loss": 3.711876392364502, + "step": 2588 + }, + { + "epoch": 35.964613368283096, + "grad_norm": 0.3380447030067444, + "learning_rate": 0.0006, + "loss": 3.7611794471740723, + "step": 2589 + }, + { + "epoch": 35.97859327217125, + "grad_norm": 0.2946915328502655, + "learning_rate": 0.0006, + "loss": 3.7659358978271484, + "step": 2590 + }, + { + "epoch": 35.992573176059416, + "grad_norm": 0.2310202419757843, + "learning_rate": 0.0006, + "loss": 3.7124969959259033, + "step": 2591 + }, + { + "epoch": 36.0, + "grad_norm": 0.22294320166110992, + "learning_rate": 0.0006, + "loss": 3.725590705871582, + "step": 2592 + }, + { + "epoch": 36.0, + "eval_loss": 4.015472412109375, + "eval_runtime": 44.4903, + "eval_samples_per_second": 54.888, + "eval_steps_per_second": 3.439, + "step": 2592 + }, + { + "epoch": 36.01397990388816, + "grad_norm": 0.2442479431629181, + "learning_rate": 0.0006, + "loss": 3.6670360565185547, + "step": 2593 + }, + { + "epoch": 36.02795980777632, + "grad_norm": 0.27702075242996216, + "learning_rate": 0.0006, + "loss": 3.685915946960449, + "step": 2594 + }, + { + "epoch": 36.04193971166448, + "grad_norm": 0.22300852835178375, + "learning_rate": 0.0006, + "loss": 3.6993556022644043, + "step": 2595 + }, + { + "epoch": 36.05591961555265, + "grad_norm": 0.22456000745296478, + "learning_rate": 0.0006, + "loss": 3.6937754154205322, + "step": 2596 + }, + { + "epoch": 36.0698995194408, + "grad_norm": 0.23157717287540436, + "learning_rate": 0.0006, + "loss": 3.6573898792266846, + "step": 2597 + }, + { + "epoch": 36.083879423328966, + "grad_norm": 0.23002618551254272, + "learning_rate": 0.0006, + "loss": 3.6565046310424805, + "step": 2598 + }, + { + "epoch": 36.09785932721712, + "grad_norm": 0.223054900765419, + "learning_rate": 0.0006, + "loss": 3.6964457035064697, + "step": 2599 + }, + { + "epoch": 36.111839231105286, + "grad_norm": 0.21883328258991241, + "learning_rate": 0.0006, + "loss": 3.674757480621338, + "step": 2600 + }, + { + "epoch": 36.12581913499345, + "grad_norm": 0.21729037165641785, + "learning_rate": 0.0006, + "loss": 3.684323310852051, + "step": 2601 + }, + { + "epoch": 36.139799038881605, + "grad_norm": 0.21299415826797485, + "learning_rate": 0.0006, + "loss": 3.6554017066955566, + "step": 2602 + }, + { + "epoch": 36.15377894276977, + "grad_norm": 0.22723016142845154, + "learning_rate": 0.0006, + "loss": 3.666767120361328, + "step": 2603 + }, + { + "epoch": 36.16775884665793, + "grad_norm": 0.23663052916526794, + "learning_rate": 0.0006, + "loss": 3.692861557006836, + "step": 2604 + }, + { + "epoch": 36.18173875054609, + "grad_norm": 0.23544131219387054, + "learning_rate": 0.0006, + "loss": 3.6648998260498047, + "step": 2605 + }, + { + "epoch": 36.19571865443425, + "grad_norm": 0.24303849041461945, + "learning_rate": 0.0006, + "loss": 3.66096568107605, + "step": 2606 + }, + { + "epoch": 36.20969855832241, + "grad_norm": 0.23385047912597656, + "learning_rate": 0.0006, + "loss": 3.6636829376220703, + "step": 2607 + }, + { + "epoch": 36.22367846221057, + "grad_norm": 0.21988974511623383, + "learning_rate": 0.0006, + "loss": 3.685072660446167, + "step": 2608 + }, + { + "epoch": 36.237658366098735, + "grad_norm": 0.2365395724773407, + "learning_rate": 0.0006, + "loss": 3.7292234897613525, + "step": 2609 + }, + { + "epoch": 36.25163826998689, + "grad_norm": 0.23791152238845825, + "learning_rate": 0.0006, + "loss": 3.6870808601379395, + "step": 2610 + }, + { + "epoch": 36.265618173875055, + "grad_norm": 0.22954145073890686, + "learning_rate": 0.0006, + "loss": 3.705406904220581, + "step": 2611 + }, + { + "epoch": 36.27959807776322, + "grad_norm": 0.22748000919818878, + "learning_rate": 0.0006, + "loss": 3.680781841278076, + "step": 2612 + }, + { + "epoch": 36.293577981651374, + "grad_norm": 0.21827450394630432, + "learning_rate": 0.0006, + "loss": 3.6794490814208984, + "step": 2613 + }, + { + "epoch": 36.30755788553954, + "grad_norm": 0.2406153380870819, + "learning_rate": 0.0006, + "loss": 3.690225124359131, + "step": 2614 + }, + { + "epoch": 36.3215377894277, + "grad_norm": 0.2406231164932251, + "learning_rate": 0.0006, + "loss": 3.665867805480957, + "step": 2615 + }, + { + "epoch": 36.33551769331586, + "grad_norm": 0.20494551956653595, + "learning_rate": 0.0006, + "loss": 3.701937198638916, + "step": 2616 + }, + { + "epoch": 36.34949759720402, + "grad_norm": 0.1995103359222412, + "learning_rate": 0.0006, + "loss": 3.702033758163452, + "step": 2617 + }, + { + "epoch": 36.36347750109218, + "grad_norm": 0.1902446299791336, + "learning_rate": 0.0006, + "loss": 3.6809959411621094, + "step": 2618 + }, + { + "epoch": 36.37745740498034, + "grad_norm": 0.1810801923274994, + "learning_rate": 0.0006, + "loss": 3.689852714538574, + "step": 2619 + }, + { + "epoch": 36.391437308868504, + "grad_norm": 0.1882476955652237, + "learning_rate": 0.0006, + "loss": 3.710911273956299, + "step": 2620 + }, + { + "epoch": 36.40541721275666, + "grad_norm": 0.1912514567375183, + "learning_rate": 0.0006, + "loss": 3.7054009437561035, + "step": 2621 + }, + { + "epoch": 36.419397116644824, + "grad_norm": 0.19080901145935059, + "learning_rate": 0.0006, + "loss": 3.681145191192627, + "step": 2622 + }, + { + "epoch": 36.43337702053299, + "grad_norm": 0.193472221493721, + "learning_rate": 0.0006, + "loss": 3.661360740661621, + "step": 2623 + }, + { + "epoch": 36.44735692442114, + "grad_norm": 0.2034357339143753, + "learning_rate": 0.0006, + "loss": 3.706930160522461, + "step": 2624 + }, + { + "epoch": 36.46133682830931, + "grad_norm": 0.19924600422382355, + "learning_rate": 0.0006, + "loss": 3.6903364658355713, + "step": 2625 + }, + { + "epoch": 36.47531673219746, + "grad_norm": 0.20556052029132843, + "learning_rate": 0.0006, + "loss": 3.6974234580993652, + "step": 2626 + }, + { + "epoch": 36.489296636085626, + "grad_norm": 0.19628804922103882, + "learning_rate": 0.0006, + "loss": 3.6947717666625977, + "step": 2627 + }, + { + "epoch": 36.50327653997379, + "grad_norm": 0.18071836233139038, + "learning_rate": 0.0006, + "loss": 3.717582941055298, + "step": 2628 + }, + { + "epoch": 36.517256443861946, + "grad_norm": 0.20531553030014038, + "learning_rate": 0.0006, + "loss": 3.680610179901123, + "step": 2629 + }, + { + "epoch": 36.53123634775011, + "grad_norm": 0.23789429664611816, + "learning_rate": 0.0006, + "loss": 3.711493968963623, + "step": 2630 + }, + { + "epoch": 36.54521625163827, + "grad_norm": 0.23027348518371582, + "learning_rate": 0.0006, + "loss": 3.6827993392944336, + "step": 2631 + }, + { + "epoch": 36.55919615552643, + "grad_norm": 0.21941570937633514, + "learning_rate": 0.0006, + "loss": 3.682286262512207, + "step": 2632 + }, + { + "epoch": 36.57317605941459, + "grad_norm": 0.21213553845882416, + "learning_rate": 0.0006, + "loss": 3.6828765869140625, + "step": 2633 + }, + { + "epoch": 36.58715596330275, + "grad_norm": 0.21929772198200226, + "learning_rate": 0.0006, + "loss": 3.697030544281006, + "step": 2634 + }, + { + "epoch": 36.60113586719091, + "grad_norm": 0.2101750522851944, + "learning_rate": 0.0006, + "loss": 3.723201274871826, + "step": 2635 + }, + { + "epoch": 36.615115771079076, + "grad_norm": 0.19014132022857666, + "learning_rate": 0.0006, + "loss": 3.6989338397979736, + "step": 2636 + }, + { + "epoch": 36.62909567496723, + "grad_norm": 0.21566815674304962, + "learning_rate": 0.0006, + "loss": 3.6968226432800293, + "step": 2637 + }, + { + "epoch": 36.643075578855395, + "grad_norm": 0.20500224828720093, + "learning_rate": 0.0006, + "loss": 3.689640522003174, + "step": 2638 + }, + { + "epoch": 36.65705548274356, + "grad_norm": 0.210358127951622, + "learning_rate": 0.0006, + "loss": 3.6996328830718994, + "step": 2639 + }, + { + "epoch": 36.671035386631715, + "grad_norm": 0.2061213105916977, + "learning_rate": 0.0006, + "loss": 3.7019221782684326, + "step": 2640 + }, + { + "epoch": 36.68501529051988, + "grad_norm": 0.21494871377944946, + "learning_rate": 0.0006, + "loss": 3.6634578704833984, + "step": 2641 + }, + { + "epoch": 36.69899519440804, + "grad_norm": 0.19586549699306488, + "learning_rate": 0.0006, + "loss": 3.708131790161133, + "step": 2642 + }, + { + "epoch": 36.7129750982962, + "grad_norm": 0.22805732488632202, + "learning_rate": 0.0006, + "loss": 3.6977362632751465, + "step": 2643 + }, + { + "epoch": 36.72695500218436, + "grad_norm": 0.28397148847579956, + "learning_rate": 0.0006, + "loss": 3.6847963333129883, + "step": 2644 + }, + { + "epoch": 36.74093490607252, + "grad_norm": 0.28333187103271484, + "learning_rate": 0.0006, + "loss": 3.734257459640503, + "step": 2645 + }, + { + "epoch": 36.75491480996068, + "grad_norm": 0.22314953804016113, + "learning_rate": 0.0006, + "loss": 3.6871445178985596, + "step": 2646 + }, + { + "epoch": 36.768894713848844, + "grad_norm": 0.20580267906188965, + "learning_rate": 0.0006, + "loss": 3.692736864089966, + "step": 2647 + }, + { + "epoch": 36.782874617737, + "grad_norm": 0.22695036232471466, + "learning_rate": 0.0006, + "loss": 3.697096824645996, + "step": 2648 + }, + { + "epoch": 36.796854521625164, + "grad_norm": 0.25916165113449097, + "learning_rate": 0.0006, + "loss": 3.7099573612213135, + "step": 2649 + }, + { + "epoch": 36.81083442551333, + "grad_norm": 0.26024341583251953, + "learning_rate": 0.0006, + "loss": 3.7161359786987305, + "step": 2650 + }, + { + "epoch": 36.824814329401484, + "grad_norm": 0.2340802699327469, + "learning_rate": 0.0006, + "loss": 3.708864688873291, + "step": 2651 + }, + { + "epoch": 36.83879423328965, + "grad_norm": 0.23312288522720337, + "learning_rate": 0.0006, + "loss": 3.7351365089416504, + "step": 2652 + }, + { + "epoch": 36.8527741371778, + "grad_norm": 0.22953253984451294, + "learning_rate": 0.0006, + "loss": 3.735302209854126, + "step": 2653 + }, + { + "epoch": 36.86675404106597, + "grad_norm": 0.21928828954696655, + "learning_rate": 0.0006, + "loss": 3.72445011138916, + "step": 2654 + }, + { + "epoch": 36.88073394495413, + "grad_norm": 0.22865602374076843, + "learning_rate": 0.0006, + "loss": 3.714867115020752, + "step": 2655 + }, + { + "epoch": 36.89471384884229, + "grad_norm": 0.23255643248558044, + "learning_rate": 0.0006, + "loss": 3.695101261138916, + "step": 2656 + }, + { + "epoch": 36.90869375273045, + "grad_norm": 0.2491452544927597, + "learning_rate": 0.0006, + "loss": 3.70692777633667, + "step": 2657 + }, + { + "epoch": 36.92267365661861, + "grad_norm": 0.27367597818374634, + "learning_rate": 0.0006, + "loss": 3.6906654834747314, + "step": 2658 + }, + { + "epoch": 36.93665356050677, + "grad_norm": 0.26728564500808716, + "learning_rate": 0.0006, + "loss": 3.7092056274414062, + "step": 2659 + }, + { + "epoch": 36.95063346439493, + "grad_norm": 0.207070454955101, + "learning_rate": 0.0006, + "loss": 3.7152137756347656, + "step": 2660 + }, + { + "epoch": 36.964613368283096, + "grad_norm": 0.21671561896800995, + "learning_rate": 0.0006, + "loss": 3.7130112648010254, + "step": 2661 + }, + { + "epoch": 36.97859327217125, + "grad_norm": 0.2140914648771286, + "learning_rate": 0.0006, + "loss": 3.7286999225616455, + "step": 2662 + }, + { + "epoch": 36.992573176059416, + "grad_norm": 0.21324342489242554, + "learning_rate": 0.0006, + "loss": 3.6828715801239014, + "step": 2663 + }, + { + "epoch": 37.0, + "grad_norm": 0.22366146743297577, + "learning_rate": 0.0006, + "loss": 3.69199800491333, + "step": 2664 + }, + { + "epoch": 37.0, + "eval_loss": 4.011842727661133, + "eval_runtime": 44.7825, + "eval_samples_per_second": 54.53, + "eval_steps_per_second": 3.417, + "step": 2664 + }, + { + "epoch": 37.01397990388816, + "grad_norm": 0.22093228995800018, + "learning_rate": 0.0006, + "loss": 3.6940979957580566, + "step": 2665 + }, + { + "epoch": 37.02795980777632, + "grad_norm": 0.20821493864059448, + "learning_rate": 0.0006, + "loss": 3.670813798904419, + "step": 2666 + }, + { + "epoch": 37.04193971166448, + "grad_norm": 0.22330114245414734, + "learning_rate": 0.0006, + "loss": 3.6392664909362793, + "step": 2667 + }, + { + "epoch": 37.05591961555265, + "grad_norm": 0.2224634289741516, + "learning_rate": 0.0006, + "loss": 3.660856246948242, + "step": 2668 + }, + { + "epoch": 37.0698995194408, + "grad_norm": 0.2255052626132965, + "learning_rate": 0.0006, + "loss": 3.6393589973449707, + "step": 2669 + }, + { + "epoch": 37.083879423328966, + "grad_norm": 0.23462942242622375, + "learning_rate": 0.0006, + "loss": 3.684429168701172, + "step": 2670 + }, + { + "epoch": 37.09785932721712, + "grad_norm": 0.23743386566638947, + "learning_rate": 0.0006, + "loss": 3.67622709274292, + "step": 2671 + }, + { + "epoch": 37.111839231105286, + "grad_norm": 0.2276267409324646, + "learning_rate": 0.0006, + "loss": 3.6487984657287598, + "step": 2672 + }, + { + "epoch": 37.12581913499345, + "grad_norm": 0.24448423087596893, + "learning_rate": 0.0006, + "loss": 3.67645525932312, + "step": 2673 + }, + { + "epoch": 37.139799038881605, + "grad_norm": 0.2428973764181137, + "learning_rate": 0.0006, + "loss": 3.681497097015381, + "step": 2674 + }, + { + "epoch": 37.15377894276977, + "grad_norm": 0.21918512880802155, + "learning_rate": 0.0006, + "loss": 3.67134428024292, + "step": 2675 + }, + { + "epoch": 37.16775884665793, + "grad_norm": 0.2103680670261383, + "learning_rate": 0.0006, + "loss": 3.6508708000183105, + "step": 2676 + }, + { + "epoch": 37.18173875054609, + "grad_norm": 0.20674929022789001, + "learning_rate": 0.0006, + "loss": 3.6904029846191406, + "step": 2677 + }, + { + "epoch": 37.19571865443425, + "grad_norm": 0.21867282688617706, + "learning_rate": 0.0006, + "loss": 3.697535514831543, + "step": 2678 + }, + { + "epoch": 37.20969855832241, + "grad_norm": 0.22919587790966034, + "learning_rate": 0.0006, + "loss": 3.675565004348755, + "step": 2679 + }, + { + "epoch": 37.22367846221057, + "grad_norm": 0.22255578637123108, + "learning_rate": 0.0006, + "loss": 3.6830129623413086, + "step": 2680 + }, + { + "epoch": 37.237658366098735, + "grad_norm": 0.22460198402404785, + "learning_rate": 0.0006, + "loss": 3.6872951984405518, + "step": 2681 + }, + { + "epoch": 37.25163826998689, + "grad_norm": 0.23677165806293488, + "learning_rate": 0.0006, + "loss": 3.6779165267944336, + "step": 2682 + }, + { + "epoch": 37.265618173875055, + "grad_norm": 0.23231394588947296, + "learning_rate": 0.0006, + "loss": 3.6831178665161133, + "step": 2683 + }, + { + "epoch": 37.27959807776322, + "grad_norm": 0.22131343185901642, + "learning_rate": 0.0006, + "loss": 3.664295196533203, + "step": 2684 + }, + { + "epoch": 37.293577981651374, + "grad_norm": 0.23424340784549713, + "learning_rate": 0.0006, + "loss": 3.696678638458252, + "step": 2685 + }, + { + "epoch": 37.30755788553954, + "grad_norm": 0.22695423662662506, + "learning_rate": 0.0006, + "loss": 3.6697473526000977, + "step": 2686 + }, + { + "epoch": 37.3215377894277, + "grad_norm": 0.2165997475385666, + "learning_rate": 0.0006, + "loss": 3.6801891326904297, + "step": 2687 + }, + { + "epoch": 37.33551769331586, + "grad_norm": 0.2241077572107315, + "learning_rate": 0.0006, + "loss": 3.6957011222839355, + "step": 2688 + }, + { + "epoch": 37.34949759720402, + "grad_norm": 0.21191732585430145, + "learning_rate": 0.0006, + "loss": 3.6812620162963867, + "step": 2689 + }, + { + "epoch": 37.36347750109218, + "grad_norm": 0.1827201396226883, + "learning_rate": 0.0006, + "loss": 3.6797738075256348, + "step": 2690 + }, + { + "epoch": 37.37745740498034, + "grad_norm": 0.20793627202510834, + "learning_rate": 0.0006, + "loss": 3.672819137573242, + "step": 2691 + }, + { + "epoch": 37.391437308868504, + "grad_norm": 0.19737116992473602, + "learning_rate": 0.0006, + "loss": 3.667839527130127, + "step": 2692 + }, + { + "epoch": 37.40541721275666, + "grad_norm": 0.18670497834682465, + "learning_rate": 0.0006, + "loss": 3.651561737060547, + "step": 2693 + }, + { + "epoch": 37.419397116644824, + "grad_norm": 0.21385592222213745, + "learning_rate": 0.0006, + "loss": 3.717456340789795, + "step": 2694 + }, + { + "epoch": 37.43337702053299, + "grad_norm": 0.20590044558048248, + "learning_rate": 0.0006, + "loss": 3.6950271129608154, + "step": 2695 + }, + { + "epoch": 37.44735692442114, + "grad_norm": 0.1992103010416031, + "learning_rate": 0.0006, + "loss": 3.687854290008545, + "step": 2696 + }, + { + "epoch": 37.46133682830931, + "grad_norm": 0.2004154473543167, + "learning_rate": 0.0006, + "loss": 3.695838451385498, + "step": 2697 + }, + { + "epoch": 37.47531673219746, + "grad_norm": 0.2019810527563095, + "learning_rate": 0.0006, + "loss": 3.690431594848633, + "step": 2698 + }, + { + "epoch": 37.489296636085626, + "grad_norm": 0.2192547768354416, + "learning_rate": 0.0006, + "loss": 3.6743836402893066, + "step": 2699 + }, + { + "epoch": 37.50327653997379, + "grad_norm": 0.2568076550960541, + "learning_rate": 0.0006, + "loss": 3.6857337951660156, + "step": 2700 + }, + { + "epoch": 37.517256443861946, + "grad_norm": 0.20050311088562012, + "learning_rate": 0.0006, + "loss": 3.6811180114746094, + "step": 2701 + }, + { + "epoch": 37.53123634775011, + "grad_norm": 0.21008558571338654, + "learning_rate": 0.0006, + "loss": 3.700563907623291, + "step": 2702 + }, + { + "epoch": 37.54521625163827, + "grad_norm": 0.2393747717142105, + "learning_rate": 0.0006, + "loss": 3.679438591003418, + "step": 2703 + }, + { + "epoch": 37.55919615552643, + "grad_norm": 0.2531895041465759, + "learning_rate": 0.0006, + "loss": 3.682903289794922, + "step": 2704 + }, + { + "epoch": 37.57317605941459, + "grad_norm": 0.2372656762599945, + "learning_rate": 0.0006, + "loss": 3.7128796577453613, + "step": 2705 + }, + { + "epoch": 37.58715596330275, + "grad_norm": 0.20020034909248352, + "learning_rate": 0.0006, + "loss": 3.701916217803955, + "step": 2706 + }, + { + "epoch": 37.60113586719091, + "grad_norm": 0.20250852406024933, + "learning_rate": 0.0006, + "loss": 3.6761491298675537, + "step": 2707 + }, + { + "epoch": 37.615115771079076, + "grad_norm": 0.19259589910507202, + "learning_rate": 0.0006, + "loss": 3.715104579925537, + "step": 2708 + }, + { + "epoch": 37.62909567496723, + "grad_norm": 0.19649392366409302, + "learning_rate": 0.0006, + "loss": 3.687556266784668, + "step": 2709 + }, + { + "epoch": 37.643075578855395, + "grad_norm": 0.1909446269273758, + "learning_rate": 0.0006, + "loss": 3.684046745300293, + "step": 2710 + }, + { + "epoch": 37.65705548274356, + "grad_norm": 0.19589872658252716, + "learning_rate": 0.0006, + "loss": 3.707886219024658, + "step": 2711 + }, + { + "epoch": 37.671035386631715, + "grad_norm": 0.19472210109233856, + "learning_rate": 0.0006, + "loss": 3.6837692260742188, + "step": 2712 + }, + { + "epoch": 37.68501529051988, + "grad_norm": 0.22622711956501007, + "learning_rate": 0.0006, + "loss": 3.703619956970215, + "step": 2713 + }, + { + "epoch": 37.69899519440804, + "grad_norm": 0.24314729869365692, + "learning_rate": 0.0006, + "loss": 3.7345223426818848, + "step": 2714 + }, + { + "epoch": 37.7129750982962, + "grad_norm": 0.23934306204319, + "learning_rate": 0.0006, + "loss": 3.687809705734253, + "step": 2715 + }, + { + "epoch": 37.72695500218436, + "grad_norm": 0.24838587641716003, + "learning_rate": 0.0006, + "loss": 3.708613872528076, + "step": 2716 + }, + { + "epoch": 37.74093490607252, + "grad_norm": 0.23191452026367188, + "learning_rate": 0.0006, + "loss": 3.7090163230895996, + "step": 2717 + }, + { + "epoch": 37.75491480996068, + "grad_norm": 0.24574638903141022, + "learning_rate": 0.0006, + "loss": 3.68489146232605, + "step": 2718 + }, + { + "epoch": 37.768894713848844, + "grad_norm": 0.2706749439239502, + "learning_rate": 0.0006, + "loss": 3.687061309814453, + "step": 2719 + }, + { + "epoch": 37.782874617737, + "grad_norm": 0.25955191254615784, + "learning_rate": 0.0006, + "loss": 3.694173812866211, + "step": 2720 + }, + { + "epoch": 37.796854521625164, + "grad_norm": 0.22040610015392303, + "learning_rate": 0.0006, + "loss": 3.701871871948242, + "step": 2721 + }, + { + "epoch": 37.81083442551333, + "grad_norm": 0.22328512370586395, + "learning_rate": 0.0006, + "loss": 3.7082555294036865, + "step": 2722 + }, + { + "epoch": 37.824814329401484, + "grad_norm": 0.2290581911802292, + "learning_rate": 0.0006, + "loss": 3.7023987770080566, + "step": 2723 + }, + { + "epoch": 37.83879423328965, + "grad_norm": 0.23129472136497498, + "learning_rate": 0.0006, + "loss": 3.7101752758026123, + "step": 2724 + }, + { + "epoch": 37.8527741371778, + "grad_norm": 0.21203753352165222, + "learning_rate": 0.0006, + "loss": 3.712129592895508, + "step": 2725 + }, + { + "epoch": 37.86675404106597, + "grad_norm": 0.21938200294971466, + "learning_rate": 0.0006, + "loss": 3.7086095809936523, + "step": 2726 + }, + { + "epoch": 37.88073394495413, + "grad_norm": 0.2203572541475296, + "learning_rate": 0.0006, + "loss": 3.6789026260375977, + "step": 2727 + }, + { + "epoch": 37.89471384884229, + "grad_norm": 0.18146046996116638, + "learning_rate": 0.0006, + "loss": 3.666893243789673, + "step": 2728 + }, + { + "epoch": 37.90869375273045, + "grad_norm": 0.1879623532295227, + "learning_rate": 0.0006, + "loss": 3.69246768951416, + "step": 2729 + }, + { + "epoch": 37.92267365661861, + "grad_norm": 0.18311670422554016, + "learning_rate": 0.0006, + "loss": 3.682036876678467, + "step": 2730 + }, + { + "epoch": 37.93665356050677, + "grad_norm": 0.1898486614227295, + "learning_rate": 0.0006, + "loss": 3.6683125495910645, + "step": 2731 + }, + { + "epoch": 37.95063346439493, + "grad_norm": 0.1858556717634201, + "learning_rate": 0.0006, + "loss": 3.6879611015319824, + "step": 2732 + }, + { + "epoch": 37.964613368283096, + "grad_norm": 0.19914504885673523, + "learning_rate": 0.0006, + "loss": 3.690250873565674, + "step": 2733 + }, + { + "epoch": 37.97859327217125, + "grad_norm": 0.20406974852085114, + "learning_rate": 0.0006, + "loss": 3.6812171936035156, + "step": 2734 + }, + { + "epoch": 37.992573176059416, + "grad_norm": 0.2003912478685379, + "learning_rate": 0.0006, + "loss": 3.6852147579193115, + "step": 2735 + }, + { + "epoch": 38.0, + "grad_norm": 0.22644472122192383, + "learning_rate": 0.0006, + "loss": 3.645207405090332, + "step": 2736 + }, + { + "epoch": 38.0, + "eval_loss": 3.995000123977661, + "eval_runtime": 45.1644, + "eval_samples_per_second": 54.069, + "eval_steps_per_second": 3.388, + "step": 2736 + }, + { + "epoch": 38.01397990388816, + "grad_norm": 0.1989814043045044, + "learning_rate": 0.0006, + "loss": 3.6511387825012207, + "step": 2737 + }, + { + "epoch": 38.02795980777632, + "grad_norm": 0.203324094414711, + "learning_rate": 0.0006, + "loss": 3.6513094902038574, + "step": 2738 + }, + { + "epoch": 38.04193971166448, + "grad_norm": 0.21504290401935577, + "learning_rate": 0.0006, + "loss": 3.647711992263794, + "step": 2739 + }, + { + "epoch": 38.05591961555265, + "grad_norm": 0.23464815318584442, + "learning_rate": 0.0006, + "loss": 3.6418747901916504, + "step": 2740 + }, + { + "epoch": 38.0698995194408, + "grad_norm": 0.242184117436409, + "learning_rate": 0.0006, + "loss": 3.6741859912872314, + "step": 2741 + }, + { + "epoch": 38.083879423328966, + "grad_norm": 0.23488445580005646, + "learning_rate": 0.0006, + "loss": 3.6710941791534424, + "step": 2742 + }, + { + "epoch": 38.09785932721712, + "grad_norm": 0.20800170302391052, + "learning_rate": 0.0006, + "loss": 3.660001754760742, + "step": 2743 + }, + { + "epoch": 38.111839231105286, + "grad_norm": 0.19505052268505096, + "learning_rate": 0.0006, + "loss": 3.684129238128662, + "step": 2744 + }, + { + "epoch": 38.12581913499345, + "grad_norm": 0.2185833901166916, + "learning_rate": 0.0006, + "loss": 3.656033515930176, + "step": 2745 + }, + { + "epoch": 38.139799038881605, + "grad_norm": 0.21850253641605377, + "learning_rate": 0.0006, + "loss": 3.6818184852600098, + "step": 2746 + }, + { + "epoch": 38.15377894276977, + "grad_norm": 0.2109488695859909, + "learning_rate": 0.0006, + "loss": 3.6485435962677, + "step": 2747 + }, + { + "epoch": 38.16775884665793, + "grad_norm": 0.21059907972812653, + "learning_rate": 0.0006, + "loss": 3.6734395027160645, + "step": 2748 + }, + { + "epoch": 38.18173875054609, + "grad_norm": 0.20741555094718933, + "learning_rate": 0.0006, + "loss": 3.6672463417053223, + "step": 2749 + }, + { + "epoch": 38.19571865443425, + "grad_norm": 0.2130175530910492, + "learning_rate": 0.0006, + "loss": 3.692840576171875, + "step": 2750 + }, + { + "epoch": 38.20969855832241, + "grad_norm": 0.1899138242006302, + "learning_rate": 0.0006, + "loss": 3.675316333770752, + "step": 2751 + }, + { + "epoch": 38.22367846221057, + "grad_norm": 0.218918576836586, + "learning_rate": 0.0006, + "loss": 3.634105920791626, + "step": 2752 + }, + { + "epoch": 38.237658366098735, + "grad_norm": 0.23649370670318604, + "learning_rate": 0.0006, + "loss": 3.6526122093200684, + "step": 2753 + }, + { + "epoch": 38.25163826998689, + "grad_norm": 0.22011931240558624, + "learning_rate": 0.0006, + "loss": 3.6859593391418457, + "step": 2754 + }, + { + "epoch": 38.265618173875055, + "grad_norm": 0.2143620252609253, + "learning_rate": 0.0006, + "loss": 3.656838893890381, + "step": 2755 + }, + { + "epoch": 38.27959807776322, + "grad_norm": 0.24068567156791687, + "learning_rate": 0.0006, + "loss": 3.67006254196167, + "step": 2756 + }, + { + "epoch": 38.293577981651374, + "grad_norm": 0.25773152709007263, + "learning_rate": 0.0006, + "loss": 3.6648950576782227, + "step": 2757 + }, + { + "epoch": 38.30755788553954, + "grad_norm": 0.24213455617427826, + "learning_rate": 0.0006, + "loss": 3.6918864250183105, + "step": 2758 + }, + { + "epoch": 38.3215377894277, + "grad_norm": 0.22463668882846832, + "learning_rate": 0.0006, + "loss": 3.6662540435791016, + "step": 2759 + }, + { + "epoch": 38.33551769331586, + "grad_norm": 0.22541455924510956, + "learning_rate": 0.0006, + "loss": 3.6563215255737305, + "step": 2760 + }, + { + "epoch": 38.34949759720402, + "grad_norm": 0.21833783388137817, + "learning_rate": 0.0006, + "loss": 3.650446891784668, + "step": 2761 + }, + { + "epoch": 38.36347750109218, + "grad_norm": 0.22799745202064514, + "learning_rate": 0.0006, + "loss": 3.7007250785827637, + "step": 2762 + }, + { + "epoch": 38.37745740498034, + "grad_norm": 0.23739562928676605, + "learning_rate": 0.0006, + "loss": 3.667130708694458, + "step": 2763 + }, + { + "epoch": 38.391437308868504, + "grad_norm": 0.23744846880435944, + "learning_rate": 0.0006, + "loss": 3.678760528564453, + "step": 2764 + }, + { + "epoch": 38.40541721275666, + "grad_norm": 0.2677105963230133, + "learning_rate": 0.0006, + "loss": 3.6829030513763428, + "step": 2765 + }, + { + "epoch": 38.419397116644824, + "grad_norm": 0.24490566551685333, + "learning_rate": 0.0006, + "loss": 3.707911491394043, + "step": 2766 + }, + { + "epoch": 38.43337702053299, + "grad_norm": 0.23477254807949066, + "learning_rate": 0.0006, + "loss": 3.680157423019409, + "step": 2767 + }, + { + "epoch": 38.44735692442114, + "grad_norm": 0.26611173152923584, + "learning_rate": 0.0006, + "loss": 3.660834550857544, + "step": 2768 + }, + { + "epoch": 38.46133682830931, + "grad_norm": 0.24505069851875305, + "learning_rate": 0.0006, + "loss": 3.696178436279297, + "step": 2769 + }, + { + "epoch": 38.47531673219746, + "grad_norm": 0.22933335602283478, + "learning_rate": 0.0006, + "loss": 3.6506235599517822, + "step": 2770 + }, + { + "epoch": 38.489296636085626, + "grad_norm": 0.23662401735782623, + "learning_rate": 0.0006, + "loss": 3.680819511413574, + "step": 2771 + }, + { + "epoch": 38.50327653997379, + "grad_norm": 0.27774113416671753, + "learning_rate": 0.0006, + "loss": 3.699146270751953, + "step": 2772 + }, + { + "epoch": 38.517256443861946, + "grad_norm": 0.2881671190261841, + "learning_rate": 0.0006, + "loss": 3.6509652137756348, + "step": 2773 + }, + { + "epoch": 38.53123634775011, + "grad_norm": 0.26570361852645874, + "learning_rate": 0.0006, + "loss": 3.6808385848999023, + "step": 2774 + }, + { + "epoch": 38.54521625163827, + "grad_norm": 0.23043136298656464, + "learning_rate": 0.0006, + "loss": 3.7082371711730957, + "step": 2775 + }, + { + "epoch": 38.55919615552643, + "grad_norm": 0.23730400204658508, + "learning_rate": 0.0006, + "loss": 3.653615951538086, + "step": 2776 + }, + { + "epoch": 38.57317605941459, + "grad_norm": 0.2332635223865509, + "learning_rate": 0.0006, + "loss": 3.6869683265686035, + "step": 2777 + }, + { + "epoch": 38.58715596330275, + "grad_norm": 0.22913676500320435, + "learning_rate": 0.0006, + "loss": 3.6998367309570312, + "step": 2778 + }, + { + "epoch": 38.60113586719091, + "grad_norm": 0.226078599691391, + "learning_rate": 0.0006, + "loss": 3.7051444053649902, + "step": 2779 + }, + { + "epoch": 38.615115771079076, + "grad_norm": 0.2336396723985672, + "learning_rate": 0.0006, + "loss": 3.6964943408966064, + "step": 2780 + }, + { + "epoch": 38.62909567496723, + "grad_norm": 0.23270335793495178, + "learning_rate": 0.0006, + "loss": 3.6741909980773926, + "step": 2781 + }, + { + "epoch": 38.643075578855395, + "grad_norm": 0.19324959814548492, + "learning_rate": 0.0006, + "loss": 3.64506196975708, + "step": 2782 + }, + { + "epoch": 38.65705548274356, + "grad_norm": 0.18551453948020935, + "learning_rate": 0.0006, + "loss": 3.6834206581115723, + "step": 2783 + }, + { + "epoch": 38.671035386631715, + "grad_norm": 0.17392469942569733, + "learning_rate": 0.0006, + "loss": 3.67282772064209, + "step": 2784 + }, + { + "epoch": 38.68501529051988, + "grad_norm": 0.19093742966651917, + "learning_rate": 0.0006, + "loss": 3.6648201942443848, + "step": 2785 + }, + { + "epoch": 38.69899519440804, + "grad_norm": 0.2124558985233307, + "learning_rate": 0.0006, + "loss": 3.712191581726074, + "step": 2786 + }, + { + "epoch": 38.7129750982962, + "grad_norm": 0.2220139354467392, + "learning_rate": 0.0006, + "loss": 3.675504207611084, + "step": 2787 + }, + { + "epoch": 38.72695500218436, + "grad_norm": 0.17677755653858185, + "learning_rate": 0.0006, + "loss": 3.6693475246429443, + "step": 2788 + }, + { + "epoch": 38.74093490607252, + "grad_norm": 0.2002430409193039, + "learning_rate": 0.0006, + "loss": 3.6906018257141113, + "step": 2789 + }, + { + "epoch": 38.75491480996068, + "grad_norm": 0.18844179809093475, + "learning_rate": 0.0006, + "loss": 3.660121440887451, + "step": 2790 + }, + { + "epoch": 38.768894713848844, + "grad_norm": 0.19319336116313934, + "learning_rate": 0.0006, + "loss": 3.6592631340026855, + "step": 2791 + }, + { + "epoch": 38.782874617737, + "grad_norm": 0.18624325096607208, + "learning_rate": 0.0006, + "loss": 3.6935300827026367, + "step": 2792 + }, + { + "epoch": 38.796854521625164, + "grad_norm": 0.2049761712551117, + "learning_rate": 0.0006, + "loss": 3.6702702045440674, + "step": 2793 + }, + { + "epoch": 38.81083442551333, + "grad_norm": 0.2030584216117859, + "learning_rate": 0.0006, + "loss": 3.714639663696289, + "step": 2794 + }, + { + "epoch": 38.824814329401484, + "grad_norm": 0.18989548087120056, + "learning_rate": 0.0006, + "loss": 3.678253412246704, + "step": 2795 + }, + { + "epoch": 38.83879423328965, + "grad_norm": 0.19944126904010773, + "learning_rate": 0.0006, + "loss": 3.648367166519165, + "step": 2796 + }, + { + "epoch": 38.8527741371778, + "grad_norm": 0.2062688171863556, + "learning_rate": 0.0006, + "loss": 3.701514720916748, + "step": 2797 + }, + { + "epoch": 38.86675404106597, + "grad_norm": 0.21475110948085785, + "learning_rate": 0.0006, + "loss": 3.6725993156433105, + "step": 2798 + }, + { + "epoch": 38.88073394495413, + "grad_norm": 0.2240881323814392, + "learning_rate": 0.0006, + "loss": 3.6944539546966553, + "step": 2799 + }, + { + "epoch": 38.89471384884229, + "grad_norm": 0.23074312508106232, + "learning_rate": 0.0006, + "loss": 3.747671365737915, + "step": 2800 + }, + { + "epoch": 38.90869375273045, + "grad_norm": 0.2447938323020935, + "learning_rate": 0.0006, + "loss": 3.6856026649475098, + "step": 2801 + }, + { + "epoch": 38.92267365661861, + "grad_norm": 0.2136487364768982, + "learning_rate": 0.0006, + "loss": 3.710397720336914, + "step": 2802 + }, + { + "epoch": 38.93665356050677, + "grad_norm": 0.21676769852638245, + "learning_rate": 0.0006, + "loss": 3.6911189556121826, + "step": 2803 + }, + { + "epoch": 38.95063346439493, + "grad_norm": 0.2226478010416031, + "learning_rate": 0.0006, + "loss": 3.6902880668640137, + "step": 2804 + }, + { + "epoch": 38.964613368283096, + "grad_norm": 0.2071496546268463, + "learning_rate": 0.0006, + "loss": 3.6831371784210205, + "step": 2805 + }, + { + "epoch": 38.97859327217125, + "grad_norm": 0.19568349421024323, + "learning_rate": 0.0006, + "loss": 3.6897640228271484, + "step": 2806 + }, + { + "epoch": 38.992573176059416, + "grad_norm": 0.19067516922950745, + "learning_rate": 0.0006, + "loss": 3.7096242904663086, + "step": 2807 + }, + { + "epoch": 39.0, + "grad_norm": 0.22872281074523926, + "learning_rate": 0.0006, + "loss": 3.689342975616455, + "step": 2808 + }, + { + "epoch": 39.0, + "eval_loss": 4.001968860626221, + "eval_runtime": 44.8452, + "eval_samples_per_second": 54.454, + "eval_steps_per_second": 3.412, + "step": 2808 + }, + { + "epoch": 39.01397990388816, + "grad_norm": 0.21685896813869476, + "learning_rate": 0.0006, + "loss": 3.638145923614502, + "step": 2809 + }, + { + "epoch": 39.02795980777632, + "grad_norm": 0.20085014402866364, + "learning_rate": 0.0006, + "loss": 3.626654624938965, + "step": 2810 + }, + { + "epoch": 39.04193971166448, + "grad_norm": 0.20615799725055695, + "learning_rate": 0.0006, + "loss": 3.6280088424682617, + "step": 2811 + }, + { + "epoch": 39.05591961555265, + "grad_norm": 0.23471905291080475, + "learning_rate": 0.0006, + "loss": 3.6444239616394043, + "step": 2812 + }, + { + "epoch": 39.0698995194408, + "grad_norm": 0.22207780182361603, + "learning_rate": 0.0006, + "loss": 3.6276912689208984, + "step": 2813 + }, + { + "epoch": 39.083879423328966, + "grad_norm": 0.23354043066501617, + "learning_rate": 0.0006, + "loss": 3.7007269859313965, + "step": 2814 + }, + { + "epoch": 39.09785932721712, + "grad_norm": 0.22520557045936584, + "learning_rate": 0.0006, + "loss": 3.6487162113189697, + "step": 2815 + }, + { + "epoch": 39.111839231105286, + "grad_norm": 0.20489682257175446, + "learning_rate": 0.0006, + "loss": 3.6523492336273193, + "step": 2816 + }, + { + "epoch": 39.12581913499345, + "grad_norm": 0.20979270339012146, + "learning_rate": 0.0006, + "loss": 3.6574230194091797, + "step": 2817 + }, + { + "epoch": 39.139799038881605, + "grad_norm": 0.2256486713886261, + "learning_rate": 0.0006, + "loss": 3.6499013900756836, + "step": 2818 + }, + { + "epoch": 39.15377894276977, + "grad_norm": 0.1960437297821045, + "learning_rate": 0.0006, + "loss": 3.6780271530151367, + "step": 2819 + }, + { + "epoch": 39.16775884665793, + "grad_norm": 0.19279663264751434, + "learning_rate": 0.0006, + "loss": 3.623819589614868, + "step": 2820 + }, + { + "epoch": 39.18173875054609, + "grad_norm": 0.19151495397090912, + "learning_rate": 0.0006, + "loss": 3.612868070602417, + "step": 2821 + }, + { + "epoch": 39.19571865443425, + "grad_norm": 0.19399534165859222, + "learning_rate": 0.0006, + "loss": 3.6518092155456543, + "step": 2822 + }, + { + "epoch": 39.20969855832241, + "grad_norm": 0.21723251044750214, + "learning_rate": 0.0006, + "loss": 3.681509494781494, + "step": 2823 + }, + { + "epoch": 39.22367846221057, + "grad_norm": 0.2487006038427353, + "learning_rate": 0.0006, + "loss": 3.6569719314575195, + "step": 2824 + }, + { + "epoch": 39.237658366098735, + "grad_norm": 0.2640652656555176, + "learning_rate": 0.0006, + "loss": 3.680734634399414, + "step": 2825 + }, + { + "epoch": 39.25163826998689, + "grad_norm": 0.21862825751304626, + "learning_rate": 0.0006, + "loss": 3.6741840839385986, + "step": 2826 + }, + { + "epoch": 39.265618173875055, + "grad_norm": 0.19515705108642578, + "learning_rate": 0.0006, + "loss": 3.657750129699707, + "step": 2827 + }, + { + "epoch": 39.27959807776322, + "grad_norm": 0.1971602737903595, + "learning_rate": 0.0006, + "loss": 3.6524124145507812, + "step": 2828 + }, + { + "epoch": 39.293577981651374, + "grad_norm": 0.20822174847126007, + "learning_rate": 0.0006, + "loss": 3.69527006149292, + "step": 2829 + }, + { + "epoch": 39.30755788553954, + "grad_norm": 0.2566370368003845, + "learning_rate": 0.0006, + "loss": 3.6770880222320557, + "step": 2830 + }, + { + "epoch": 39.3215377894277, + "grad_norm": 0.24984225630760193, + "learning_rate": 0.0006, + "loss": 3.6733901500701904, + "step": 2831 + }, + { + "epoch": 39.33551769331586, + "grad_norm": 0.233322873711586, + "learning_rate": 0.0006, + "loss": 3.645519256591797, + "step": 2832 + }, + { + "epoch": 39.34949759720402, + "grad_norm": 0.21584749221801758, + "learning_rate": 0.0006, + "loss": 3.6211934089660645, + "step": 2833 + }, + { + "epoch": 39.36347750109218, + "grad_norm": 0.2188950479030609, + "learning_rate": 0.0006, + "loss": 3.6434195041656494, + "step": 2834 + }, + { + "epoch": 39.37745740498034, + "grad_norm": 0.21998439729213715, + "learning_rate": 0.0006, + "loss": 3.6720595359802246, + "step": 2835 + }, + { + "epoch": 39.391437308868504, + "grad_norm": 0.2459399700164795, + "learning_rate": 0.0006, + "loss": 3.667083740234375, + "step": 2836 + }, + { + "epoch": 39.40541721275666, + "grad_norm": 0.23579223453998566, + "learning_rate": 0.0006, + "loss": 3.665452480316162, + "step": 2837 + }, + { + "epoch": 39.419397116644824, + "grad_norm": 0.19401362538337708, + "learning_rate": 0.0006, + "loss": 3.684218406677246, + "step": 2838 + }, + { + "epoch": 39.43337702053299, + "grad_norm": 0.1894487738609314, + "learning_rate": 0.0006, + "loss": 3.670626163482666, + "step": 2839 + }, + { + "epoch": 39.44735692442114, + "grad_norm": 0.1936904937028885, + "learning_rate": 0.0006, + "loss": 3.6367318630218506, + "step": 2840 + }, + { + "epoch": 39.46133682830931, + "grad_norm": 0.1867629438638687, + "learning_rate": 0.0006, + "loss": 3.670098304748535, + "step": 2841 + }, + { + "epoch": 39.47531673219746, + "grad_norm": 0.18849903345108032, + "learning_rate": 0.0006, + "loss": 3.6877760887145996, + "step": 2842 + }, + { + "epoch": 39.489296636085626, + "grad_norm": 0.18247179687023163, + "learning_rate": 0.0006, + "loss": 3.7132980823516846, + "step": 2843 + }, + { + "epoch": 39.50327653997379, + "grad_norm": 0.19206349551677704, + "learning_rate": 0.0006, + "loss": 3.630319595336914, + "step": 2844 + }, + { + "epoch": 39.517256443861946, + "grad_norm": 0.21730613708496094, + "learning_rate": 0.0006, + "loss": 3.6818761825561523, + "step": 2845 + }, + { + "epoch": 39.53123634775011, + "grad_norm": 0.22482407093048096, + "learning_rate": 0.0006, + "loss": 3.6385269165039062, + "step": 2846 + }, + { + "epoch": 39.54521625163827, + "grad_norm": 0.24560105800628662, + "learning_rate": 0.0006, + "loss": 3.660067558288574, + "step": 2847 + }, + { + "epoch": 39.55919615552643, + "grad_norm": 0.23720617592334747, + "learning_rate": 0.0006, + "loss": 3.6811556816101074, + "step": 2848 + }, + { + "epoch": 39.57317605941459, + "grad_norm": 0.18990741670131683, + "learning_rate": 0.0006, + "loss": 3.6733779907226562, + "step": 2849 + }, + { + "epoch": 39.58715596330275, + "grad_norm": 0.2135438323020935, + "learning_rate": 0.0006, + "loss": 3.662020683288574, + "step": 2850 + }, + { + "epoch": 39.60113586719091, + "grad_norm": 0.24248908460140228, + "learning_rate": 0.0006, + "loss": 3.6794259548187256, + "step": 2851 + }, + { + "epoch": 39.615115771079076, + "grad_norm": 0.23115725815296173, + "learning_rate": 0.0006, + "loss": 3.6732406616210938, + "step": 2852 + }, + { + "epoch": 39.62909567496723, + "grad_norm": 0.23760166764259338, + "learning_rate": 0.0006, + "loss": 3.7062699794769287, + "step": 2853 + }, + { + "epoch": 39.643075578855395, + "grad_norm": 0.24670571088790894, + "learning_rate": 0.0006, + "loss": 3.692385673522949, + "step": 2854 + }, + { + "epoch": 39.65705548274356, + "grad_norm": 0.20983918011188507, + "learning_rate": 0.0006, + "loss": 3.691361427307129, + "step": 2855 + }, + { + "epoch": 39.671035386631715, + "grad_norm": 0.1915138065814972, + "learning_rate": 0.0006, + "loss": 3.6985888481140137, + "step": 2856 + }, + { + "epoch": 39.68501529051988, + "grad_norm": 0.23440803587436676, + "learning_rate": 0.0006, + "loss": 3.6484973430633545, + "step": 2857 + }, + { + "epoch": 39.69899519440804, + "grad_norm": 0.2483232468366623, + "learning_rate": 0.0006, + "loss": 3.6861510276794434, + "step": 2858 + }, + { + "epoch": 39.7129750982962, + "grad_norm": 0.21373426914215088, + "learning_rate": 0.0006, + "loss": 3.6528866291046143, + "step": 2859 + }, + { + "epoch": 39.72695500218436, + "grad_norm": 0.19849136471748352, + "learning_rate": 0.0006, + "loss": 3.6435961723327637, + "step": 2860 + }, + { + "epoch": 39.74093490607252, + "grad_norm": 0.21748292446136475, + "learning_rate": 0.0006, + "loss": 3.678481101989746, + "step": 2861 + }, + { + "epoch": 39.75491480996068, + "grad_norm": 0.22488188743591309, + "learning_rate": 0.0006, + "loss": 3.711717128753662, + "step": 2862 + }, + { + "epoch": 39.768894713848844, + "grad_norm": 0.22251835465431213, + "learning_rate": 0.0006, + "loss": 3.690516471862793, + "step": 2863 + }, + { + "epoch": 39.782874617737, + "grad_norm": 0.22101449966430664, + "learning_rate": 0.0006, + "loss": 3.6679611206054688, + "step": 2864 + }, + { + "epoch": 39.796854521625164, + "grad_norm": 0.20345936715602875, + "learning_rate": 0.0006, + "loss": 3.6935629844665527, + "step": 2865 + }, + { + "epoch": 39.81083442551333, + "grad_norm": 0.23772259056568146, + "learning_rate": 0.0006, + "loss": 3.697561264038086, + "step": 2866 + }, + { + "epoch": 39.824814329401484, + "grad_norm": 0.24446387588977814, + "learning_rate": 0.0006, + "loss": 3.696723461151123, + "step": 2867 + }, + { + "epoch": 39.83879423328965, + "grad_norm": 0.2365843653678894, + "learning_rate": 0.0006, + "loss": 3.6511402130126953, + "step": 2868 + }, + { + "epoch": 39.8527741371778, + "grad_norm": 0.25421974062919617, + "learning_rate": 0.0006, + "loss": 3.68449068069458, + "step": 2869 + }, + { + "epoch": 39.86675404106597, + "grad_norm": 0.2504308819770813, + "learning_rate": 0.0006, + "loss": 3.685884952545166, + "step": 2870 + }, + { + "epoch": 39.88073394495413, + "grad_norm": 0.24695490300655365, + "learning_rate": 0.0006, + "loss": 3.6667490005493164, + "step": 2871 + }, + { + "epoch": 39.89471384884229, + "grad_norm": 0.2633236348628998, + "learning_rate": 0.0006, + "loss": 3.6828866004943848, + "step": 2872 + }, + { + "epoch": 39.90869375273045, + "grad_norm": 0.2421039491891861, + "learning_rate": 0.0006, + "loss": 3.681187391281128, + "step": 2873 + }, + { + "epoch": 39.92267365661861, + "grad_norm": 0.21202950179576874, + "learning_rate": 0.0006, + "loss": 3.679069995880127, + "step": 2874 + }, + { + "epoch": 39.93665356050677, + "grad_norm": 0.2344917505979538, + "learning_rate": 0.0006, + "loss": 3.6810007095336914, + "step": 2875 + }, + { + "epoch": 39.95063346439493, + "grad_norm": 0.2115124762058258, + "learning_rate": 0.0006, + "loss": 3.653219223022461, + "step": 2876 + }, + { + "epoch": 39.964613368283096, + "grad_norm": 0.21588370203971863, + "learning_rate": 0.0006, + "loss": 3.6972861289978027, + "step": 2877 + }, + { + "epoch": 39.97859327217125, + "grad_norm": 0.26215407252311707, + "learning_rate": 0.0006, + "loss": 3.6796963214874268, + "step": 2878 + }, + { + "epoch": 39.992573176059416, + "grad_norm": 0.23645395040512085, + "learning_rate": 0.0006, + "loss": 3.696091413497925, + "step": 2879 + }, + { + "epoch": 40.0, + "grad_norm": 0.21817512810230255, + "learning_rate": 0.0006, + "loss": 3.668196678161621, + "step": 2880 + }, + { + "epoch": 40.0, + "eval_loss": 3.9873862266540527, + "eval_runtime": 44.1149, + "eval_samples_per_second": 55.355, + "eval_steps_per_second": 3.468, + "step": 2880 + }, + { + "epoch": 40.01397990388816, + "grad_norm": 0.2031477391719818, + "learning_rate": 0.0006, + "loss": 3.6494622230529785, + "step": 2881 + }, + { + "epoch": 40.02795980777632, + "grad_norm": 0.2223939746618271, + "learning_rate": 0.0006, + "loss": 3.6587047576904297, + "step": 2882 + }, + { + "epoch": 40.04193971166448, + "grad_norm": 0.21485820412635803, + "learning_rate": 0.0006, + "loss": 3.62253737449646, + "step": 2883 + }, + { + "epoch": 40.05591961555265, + "grad_norm": 0.23364055156707764, + "learning_rate": 0.0006, + "loss": 3.619035005569458, + "step": 2884 + }, + { + "epoch": 40.0698995194408, + "grad_norm": 0.23141583800315857, + "learning_rate": 0.0006, + "loss": 3.6650376319885254, + "step": 2885 + }, + { + "epoch": 40.083879423328966, + "grad_norm": 0.2131720930337906, + "learning_rate": 0.0006, + "loss": 3.646428108215332, + "step": 2886 + }, + { + "epoch": 40.09785932721712, + "grad_norm": 0.2337951511144638, + "learning_rate": 0.0006, + "loss": 3.6284823417663574, + "step": 2887 + }, + { + "epoch": 40.111839231105286, + "grad_norm": 0.2790892720222473, + "learning_rate": 0.0006, + "loss": 3.6558361053466797, + "step": 2888 + }, + { + "epoch": 40.12581913499345, + "grad_norm": 0.28444936871528625, + "learning_rate": 0.0006, + "loss": 3.644402503967285, + "step": 2889 + }, + { + "epoch": 40.139799038881605, + "grad_norm": 0.2550848126411438, + "learning_rate": 0.0006, + "loss": 3.671562671661377, + "step": 2890 + }, + { + "epoch": 40.15377894276977, + "grad_norm": 0.22960248589515686, + "learning_rate": 0.0006, + "loss": 3.6998534202575684, + "step": 2891 + }, + { + "epoch": 40.16775884665793, + "grad_norm": 0.23920369148254395, + "learning_rate": 0.0006, + "loss": 3.653874635696411, + "step": 2892 + }, + { + "epoch": 40.18173875054609, + "grad_norm": 0.24586012959480286, + "learning_rate": 0.0006, + "loss": 3.620765209197998, + "step": 2893 + }, + { + "epoch": 40.19571865443425, + "grad_norm": 0.26394739747047424, + "learning_rate": 0.0006, + "loss": 3.638437509536743, + "step": 2894 + }, + { + "epoch": 40.20969855832241, + "grad_norm": 0.27566927671432495, + "learning_rate": 0.0006, + "loss": 3.6684799194335938, + "step": 2895 + }, + { + "epoch": 40.22367846221057, + "grad_norm": 0.25469011068344116, + "learning_rate": 0.0006, + "loss": 3.6113009452819824, + "step": 2896 + }, + { + "epoch": 40.237658366098735, + "grad_norm": 0.2403056025505066, + "learning_rate": 0.0006, + "loss": 3.650771141052246, + "step": 2897 + }, + { + "epoch": 40.25163826998689, + "grad_norm": 0.262423038482666, + "learning_rate": 0.0006, + "loss": 3.635892391204834, + "step": 2898 + }, + { + "epoch": 40.265618173875055, + "grad_norm": 0.23696045577526093, + "learning_rate": 0.0006, + "loss": 3.6396005153656006, + "step": 2899 + }, + { + "epoch": 40.27959807776322, + "grad_norm": 0.208719402551651, + "learning_rate": 0.0006, + "loss": 3.6681132316589355, + "step": 2900 + }, + { + "epoch": 40.293577981651374, + "grad_norm": 0.21554480493068695, + "learning_rate": 0.0006, + "loss": 3.6417553424835205, + "step": 2901 + }, + { + "epoch": 40.30755788553954, + "grad_norm": 0.2290734499692917, + "learning_rate": 0.0006, + "loss": 3.6659927368164062, + "step": 2902 + }, + { + "epoch": 40.3215377894277, + "grad_norm": 0.20803220570087433, + "learning_rate": 0.0006, + "loss": 3.6443324089050293, + "step": 2903 + }, + { + "epoch": 40.33551769331586, + "grad_norm": 0.20334568619728088, + "learning_rate": 0.0006, + "loss": 3.6824207305908203, + "step": 2904 + }, + { + "epoch": 40.34949759720402, + "grad_norm": 0.2000233381986618, + "learning_rate": 0.0006, + "loss": 3.644399642944336, + "step": 2905 + }, + { + "epoch": 40.36347750109218, + "grad_norm": 0.21990752220153809, + "learning_rate": 0.0006, + "loss": 3.668160915374756, + "step": 2906 + }, + { + "epoch": 40.37745740498034, + "grad_norm": 0.24385249614715576, + "learning_rate": 0.0006, + "loss": 3.634392261505127, + "step": 2907 + }, + { + "epoch": 40.391437308868504, + "grad_norm": 0.21272684633731842, + "learning_rate": 0.0006, + "loss": 3.6504263877868652, + "step": 2908 + }, + { + "epoch": 40.40541721275666, + "grad_norm": 0.2003277838230133, + "learning_rate": 0.0006, + "loss": 3.6707763671875, + "step": 2909 + }, + { + "epoch": 40.419397116644824, + "grad_norm": 0.2086087465286255, + "learning_rate": 0.0006, + "loss": 3.66988468170166, + "step": 2910 + }, + { + "epoch": 40.43337702053299, + "grad_norm": 0.19706451892852783, + "learning_rate": 0.0006, + "loss": 3.662794828414917, + "step": 2911 + }, + { + "epoch": 40.44735692442114, + "grad_norm": 0.18795762956142426, + "learning_rate": 0.0006, + "loss": 3.628016233444214, + "step": 2912 + }, + { + "epoch": 40.46133682830931, + "grad_norm": 0.19931825995445251, + "learning_rate": 0.0006, + "loss": 3.6791915893554688, + "step": 2913 + }, + { + "epoch": 40.47531673219746, + "grad_norm": 0.21295934915542603, + "learning_rate": 0.0006, + "loss": 3.688632011413574, + "step": 2914 + }, + { + "epoch": 40.489296636085626, + "grad_norm": 0.2104834020137787, + "learning_rate": 0.0006, + "loss": 3.6270499229431152, + "step": 2915 + }, + { + "epoch": 40.50327653997379, + "grad_norm": 0.19942966103553772, + "learning_rate": 0.0006, + "loss": 3.651721477508545, + "step": 2916 + }, + { + "epoch": 40.517256443861946, + "grad_norm": 0.18890425562858582, + "learning_rate": 0.0006, + "loss": 3.6778619289398193, + "step": 2917 + }, + { + "epoch": 40.53123634775011, + "grad_norm": 0.19861607253551483, + "learning_rate": 0.0006, + "loss": 3.658832550048828, + "step": 2918 + }, + { + "epoch": 40.54521625163827, + "grad_norm": 0.21553616225719452, + "learning_rate": 0.0006, + "loss": 3.6566901206970215, + "step": 2919 + }, + { + "epoch": 40.55919615552643, + "grad_norm": 0.21698440611362457, + "learning_rate": 0.0006, + "loss": 3.6795129776000977, + "step": 2920 + }, + { + "epoch": 40.57317605941459, + "grad_norm": 0.20310913026332855, + "learning_rate": 0.0006, + "loss": 3.645244598388672, + "step": 2921 + }, + { + "epoch": 40.58715596330275, + "grad_norm": 0.2075812816619873, + "learning_rate": 0.0006, + "loss": 3.678452491760254, + "step": 2922 + }, + { + "epoch": 40.60113586719091, + "grad_norm": 0.20606619119644165, + "learning_rate": 0.0006, + "loss": 3.6150245666503906, + "step": 2923 + }, + { + "epoch": 40.615115771079076, + "grad_norm": 0.21511296927928925, + "learning_rate": 0.0006, + "loss": 3.6682112216949463, + "step": 2924 + }, + { + "epoch": 40.62909567496723, + "grad_norm": 0.19771839678287506, + "learning_rate": 0.0006, + "loss": 3.6639556884765625, + "step": 2925 + }, + { + "epoch": 40.643075578855395, + "grad_norm": 0.20419852435588837, + "learning_rate": 0.0006, + "loss": 3.664982318878174, + "step": 2926 + }, + { + "epoch": 40.65705548274356, + "grad_norm": 0.20119430124759674, + "learning_rate": 0.0006, + "loss": 3.661625385284424, + "step": 2927 + }, + { + "epoch": 40.671035386631715, + "grad_norm": 0.21590501070022583, + "learning_rate": 0.0006, + "loss": 3.673719644546509, + "step": 2928 + }, + { + "epoch": 40.68501529051988, + "grad_norm": 0.19165395200252533, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 2929 + }, + { + "epoch": 40.69899519440804, + "grad_norm": 0.19620473682880402, + "learning_rate": 0.0006, + "loss": 3.7008142471313477, + "step": 2930 + }, + { + "epoch": 40.7129750982962, + "grad_norm": 0.23002777993679047, + "learning_rate": 0.0006, + "loss": 3.654296875, + "step": 2931 + }, + { + "epoch": 40.72695500218436, + "grad_norm": 0.22007468342781067, + "learning_rate": 0.0006, + "loss": 3.688178539276123, + "step": 2932 + }, + { + "epoch": 40.74093490607252, + "grad_norm": 0.2030077874660492, + "learning_rate": 0.0006, + "loss": 3.6514129638671875, + "step": 2933 + }, + { + "epoch": 40.75491480996068, + "grad_norm": 0.20960700511932373, + "learning_rate": 0.0006, + "loss": 3.651864528656006, + "step": 2934 + }, + { + "epoch": 40.768894713848844, + "grad_norm": 0.2132565975189209, + "learning_rate": 0.0006, + "loss": 3.680915355682373, + "step": 2935 + }, + { + "epoch": 40.782874617737, + "grad_norm": 0.2411353588104248, + "learning_rate": 0.0006, + "loss": 3.647167682647705, + "step": 2936 + }, + { + "epoch": 40.796854521625164, + "grad_norm": 0.24621541798114777, + "learning_rate": 0.0006, + "loss": 3.6784768104553223, + "step": 2937 + }, + { + "epoch": 40.81083442551333, + "grad_norm": 0.23324407637119293, + "learning_rate": 0.0006, + "loss": 3.6855263710021973, + "step": 2938 + }, + { + "epoch": 40.824814329401484, + "grad_norm": 0.21749550104141235, + "learning_rate": 0.0006, + "loss": 3.672682285308838, + "step": 2939 + }, + { + "epoch": 40.83879423328965, + "grad_norm": 0.1957911103963852, + "learning_rate": 0.0006, + "loss": 3.635678291320801, + "step": 2940 + }, + { + "epoch": 40.8527741371778, + "grad_norm": 0.21262411773204803, + "learning_rate": 0.0006, + "loss": 3.6829824447631836, + "step": 2941 + }, + { + "epoch": 40.86675404106597, + "grad_norm": 0.19940680265426636, + "learning_rate": 0.0006, + "loss": 3.720932960510254, + "step": 2942 + }, + { + "epoch": 40.88073394495413, + "grad_norm": 0.1964999884366989, + "learning_rate": 0.0006, + "loss": 3.678405284881592, + "step": 2943 + }, + { + "epoch": 40.89471384884229, + "grad_norm": 0.21459022164344788, + "learning_rate": 0.0006, + "loss": 3.6788480281829834, + "step": 2944 + }, + { + "epoch": 40.90869375273045, + "grad_norm": 0.2251381129026413, + "learning_rate": 0.0006, + "loss": 3.679459571838379, + "step": 2945 + }, + { + "epoch": 40.92267365661861, + "grad_norm": 0.19951461255550385, + "learning_rate": 0.0006, + "loss": 3.6610841751098633, + "step": 2946 + }, + { + "epoch": 40.93665356050677, + "grad_norm": 0.2057943493127823, + "learning_rate": 0.0006, + "loss": 3.649491786956787, + "step": 2947 + }, + { + "epoch": 40.95063346439493, + "grad_norm": 0.19601917266845703, + "learning_rate": 0.0006, + "loss": 3.724552631378174, + "step": 2948 + }, + { + "epoch": 40.964613368283096, + "grad_norm": 0.20982769131660461, + "learning_rate": 0.0006, + "loss": 3.648465394973755, + "step": 2949 + }, + { + "epoch": 40.97859327217125, + "grad_norm": 0.21103954315185547, + "learning_rate": 0.0006, + "loss": 3.692239999771118, + "step": 2950 + }, + { + "epoch": 40.992573176059416, + "grad_norm": 0.2007385492324829, + "learning_rate": 0.0006, + "loss": 3.659999132156372, + "step": 2951 + }, + { + "epoch": 41.0, + "grad_norm": 0.22357431054115295, + "learning_rate": 0.0006, + "loss": 3.6461124420166016, + "step": 2952 + }, + { + "epoch": 41.0, + "eval_loss": 3.9891226291656494, + "eval_runtime": 44.65, + "eval_samples_per_second": 54.692, + "eval_steps_per_second": 3.427, + "step": 2952 + }, + { + "epoch": 41.01397990388816, + "grad_norm": 0.20387817919254303, + "learning_rate": 0.0006, + "loss": 3.643923282623291, + "step": 2953 + }, + { + "epoch": 41.02795980777632, + "grad_norm": 0.1988423764705658, + "learning_rate": 0.0006, + "loss": 3.6152570247650146, + "step": 2954 + }, + { + "epoch": 41.04193971166448, + "grad_norm": 0.19998641312122345, + "learning_rate": 0.0006, + "loss": 3.667520523071289, + "step": 2955 + }, + { + "epoch": 41.05591961555265, + "grad_norm": 0.18347714841365814, + "learning_rate": 0.0006, + "loss": 3.6289002895355225, + "step": 2956 + }, + { + "epoch": 41.0698995194408, + "grad_norm": 0.21235640347003937, + "learning_rate": 0.0006, + "loss": 3.6422951221466064, + "step": 2957 + }, + { + "epoch": 41.083879423328966, + "grad_norm": 0.1990172415971756, + "learning_rate": 0.0006, + "loss": 3.625697135925293, + "step": 2958 + }, + { + "epoch": 41.09785932721712, + "grad_norm": 0.18313643336296082, + "learning_rate": 0.0006, + "loss": 3.672356605529785, + "step": 2959 + }, + { + "epoch": 41.111839231105286, + "grad_norm": 0.17956401407718658, + "learning_rate": 0.0006, + "loss": 3.6093602180480957, + "step": 2960 + }, + { + "epoch": 41.12581913499345, + "grad_norm": 0.19487550854682922, + "learning_rate": 0.0006, + "loss": 3.6004128456115723, + "step": 2961 + }, + { + "epoch": 41.139799038881605, + "grad_norm": 0.2117495834827423, + "learning_rate": 0.0006, + "loss": 3.6468565464019775, + "step": 2962 + }, + { + "epoch": 41.15377894276977, + "grad_norm": 0.20602662861347198, + "learning_rate": 0.0006, + "loss": 3.6299140453338623, + "step": 2963 + }, + { + "epoch": 41.16775884665793, + "grad_norm": 0.21859265863895416, + "learning_rate": 0.0006, + "loss": 3.630052328109741, + "step": 2964 + }, + { + "epoch": 41.18173875054609, + "grad_norm": 0.22684140503406525, + "learning_rate": 0.0006, + "loss": 3.5995004177093506, + "step": 2965 + }, + { + "epoch": 41.19571865443425, + "grad_norm": 0.25682681798934937, + "learning_rate": 0.0006, + "loss": 3.613131523132324, + "step": 2966 + }, + { + "epoch": 41.20969855832241, + "grad_norm": 0.2508181631565094, + "learning_rate": 0.0006, + "loss": 3.644259452819824, + "step": 2967 + }, + { + "epoch": 41.22367846221057, + "grad_norm": 0.24200427532196045, + "learning_rate": 0.0006, + "loss": 3.6651816368103027, + "step": 2968 + }, + { + "epoch": 41.237658366098735, + "grad_norm": 0.21753790974617004, + "learning_rate": 0.0006, + "loss": 3.686199188232422, + "step": 2969 + }, + { + "epoch": 41.25163826998689, + "grad_norm": 0.19811955094337463, + "learning_rate": 0.0006, + "loss": 3.63014817237854, + "step": 2970 + }, + { + "epoch": 41.265618173875055, + "grad_norm": 0.19316327571868896, + "learning_rate": 0.0006, + "loss": 3.6532740592956543, + "step": 2971 + }, + { + "epoch": 41.27959807776322, + "grad_norm": 0.21440976858139038, + "learning_rate": 0.0006, + "loss": 3.6546850204467773, + "step": 2972 + }, + { + "epoch": 41.293577981651374, + "grad_norm": 0.2732681334018707, + "learning_rate": 0.0006, + "loss": 3.6135244369506836, + "step": 2973 + }, + { + "epoch": 41.30755788553954, + "grad_norm": 0.2588619589805603, + "learning_rate": 0.0006, + "loss": 3.657963275909424, + "step": 2974 + }, + { + "epoch": 41.3215377894277, + "grad_norm": 0.20054970681667328, + "learning_rate": 0.0006, + "loss": 3.6391024589538574, + "step": 2975 + }, + { + "epoch": 41.33551769331586, + "grad_norm": 0.23703549802303314, + "learning_rate": 0.0006, + "loss": 3.6609978675842285, + "step": 2976 + }, + { + "epoch": 41.34949759720402, + "grad_norm": 0.24222144484519958, + "learning_rate": 0.0006, + "loss": 3.659271478652954, + "step": 2977 + }, + { + "epoch": 41.36347750109218, + "grad_norm": 0.2228497713804245, + "learning_rate": 0.0006, + "loss": 3.607358455657959, + "step": 2978 + }, + { + "epoch": 41.37745740498034, + "grad_norm": 0.22105038166046143, + "learning_rate": 0.0006, + "loss": 3.64198899269104, + "step": 2979 + }, + { + "epoch": 41.391437308868504, + "grad_norm": 0.23753555119037628, + "learning_rate": 0.0006, + "loss": 3.63116455078125, + "step": 2980 + }, + { + "epoch": 41.40541721275666, + "grad_norm": 0.24492689967155457, + "learning_rate": 0.0006, + "loss": 3.636122465133667, + "step": 2981 + }, + { + "epoch": 41.419397116644824, + "grad_norm": 0.20610782504081726, + "learning_rate": 0.0006, + "loss": 3.656487226486206, + "step": 2982 + }, + { + "epoch": 41.43337702053299, + "grad_norm": 0.20781412720680237, + "learning_rate": 0.0006, + "loss": 3.669196605682373, + "step": 2983 + }, + { + "epoch": 41.44735692442114, + "grad_norm": 0.23892036080360413, + "learning_rate": 0.0006, + "loss": 3.6345765590667725, + "step": 2984 + }, + { + "epoch": 41.46133682830931, + "grad_norm": 0.2477712333202362, + "learning_rate": 0.0006, + "loss": 3.6599812507629395, + "step": 2985 + }, + { + "epoch": 41.47531673219746, + "grad_norm": 0.25314703583717346, + "learning_rate": 0.0006, + "loss": 3.6737258434295654, + "step": 2986 + }, + { + "epoch": 41.489296636085626, + "grad_norm": 0.2386070191860199, + "learning_rate": 0.0006, + "loss": 3.666586399078369, + "step": 2987 + }, + { + "epoch": 41.50327653997379, + "grad_norm": 0.27259722352027893, + "learning_rate": 0.0006, + "loss": 3.658761501312256, + "step": 2988 + }, + { + "epoch": 41.517256443861946, + "grad_norm": 0.3312860429286957, + "learning_rate": 0.0006, + "loss": 3.629699230194092, + "step": 2989 + }, + { + "epoch": 41.53123634775011, + "grad_norm": 0.3321581780910492, + "learning_rate": 0.0006, + "loss": 3.66628360748291, + "step": 2990 + }, + { + "epoch": 41.54521625163827, + "grad_norm": 0.2850016951560974, + "learning_rate": 0.0006, + "loss": 3.690005302429199, + "step": 2991 + }, + { + "epoch": 41.55919615552643, + "grad_norm": 0.2544100880622864, + "learning_rate": 0.0006, + "loss": 3.6554486751556396, + "step": 2992 + }, + { + "epoch": 41.57317605941459, + "grad_norm": 0.28541380167007446, + "learning_rate": 0.0006, + "loss": 3.672952175140381, + "step": 2993 + }, + { + "epoch": 41.58715596330275, + "grad_norm": 0.2909766435623169, + "learning_rate": 0.0006, + "loss": 3.6649627685546875, + "step": 2994 + }, + { + "epoch": 41.60113586719091, + "grad_norm": 0.26089969277381897, + "learning_rate": 0.0006, + "loss": 3.6512341499328613, + "step": 2995 + }, + { + "epoch": 41.615115771079076, + "grad_norm": 0.21815894544124603, + "learning_rate": 0.0006, + "loss": 3.612436056137085, + "step": 2996 + }, + { + "epoch": 41.62909567496723, + "grad_norm": 0.20712246000766754, + "learning_rate": 0.0006, + "loss": 3.6482479572296143, + "step": 2997 + }, + { + "epoch": 41.643075578855395, + "grad_norm": 0.23280103504657745, + "learning_rate": 0.0006, + "loss": 3.6648616790771484, + "step": 2998 + }, + { + "epoch": 41.65705548274356, + "grad_norm": 0.21623823046684265, + "learning_rate": 0.0006, + "loss": 3.6714487075805664, + "step": 2999 + }, + { + "epoch": 41.671035386631715, + "grad_norm": 0.2081632912158966, + "learning_rate": 0.0006, + "loss": 3.693014144897461, + "step": 3000 + }, + { + "epoch": 41.68501529051988, + "grad_norm": 0.23109425604343414, + "learning_rate": 0.0006, + "loss": 3.667262554168701, + "step": 3001 + }, + { + "epoch": 41.69899519440804, + "grad_norm": 0.2304934561252594, + "learning_rate": 0.0006, + "loss": 3.666405439376831, + "step": 3002 + }, + { + "epoch": 41.7129750982962, + "grad_norm": 0.23132432997226715, + "learning_rate": 0.0006, + "loss": 3.690964698791504, + "step": 3003 + }, + { + "epoch": 41.72695500218436, + "grad_norm": 0.2085159569978714, + "learning_rate": 0.0006, + "loss": 3.6620168685913086, + "step": 3004 + }, + { + "epoch": 41.74093490607252, + "grad_norm": 0.1919657438993454, + "learning_rate": 0.0006, + "loss": 3.67447566986084, + "step": 3005 + }, + { + "epoch": 41.75491480996068, + "grad_norm": 0.20189036428928375, + "learning_rate": 0.0006, + "loss": 3.6434998512268066, + "step": 3006 + }, + { + "epoch": 41.768894713848844, + "grad_norm": 0.23530980944633484, + "learning_rate": 0.0006, + "loss": 3.644280433654785, + "step": 3007 + }, + { + "epoch": 41.782874617737, + "grad_norm": 0.2550027370452881, + "learning_rate": 0.0006, + "loss": 3.6686060428619385, + "step": 3008 + }, + { + "epoch": 41.796854521625164, + "grad_norm": 0.2285512536764145, + "learning_rate": 0.0006, + "loss": 3.7013134956359863, + "step": 3009 + }, + { + "epoch": 41.81083442551333, + "grad_norm": 0.20538675785064697, + "learning_rate": 0.0006, + "loss": 3.6568830013275146, + "step": 3010 + }, + { + "epoch": 41.824814329401484, + "grad_norm": 0.2007976472377777, + "learning_rate": 0.0006, + "loss": 3.680250883102417, + "step": 3011 + }, + { + "epoch": 41.83879423328965, + "grad_norm": 0.20060500502586365, + "learning_rate": 0.0006, + "loss": 3.6565070152282715, + "step": 3012 + }, + { + "epoch": 41.8527741371778, + "grad_norm": 0.21055014431476593, + "learning_rate": 0.0006, + "loss": 3.661667823791504, + "step": 3013 + }, + { + "epoch": 41.86675404106597, + "grad_norm": 0.2201126217842102, + "learning_rate": 0.0006, + "loss": 3.650052070617676, + "step": 3014 + }, + { + "epoch": 41.88073394495413, + "grad_norm": 0.20397843420505524, + "learning_rate": 0.0006, + "loss": 3.6535415649414062, + "step": 3015 + }, + { + "epoch": 41.89471384884229, + "grad_norm": 0.1993463635444641, + "learning_rate": 0.0006, + "loss": 3.665696144104004, + "step": 3016 + }, + { + "epoch": 41.90869375273045, + "grad_norm": 0.20448797941207886, + "learning_rate": 0.0006, + "loss": 3.6448118686676025, + "step": 3017 + }, + { + "epoch": 41.92267365661861, + "grad_norm": 0.2064918726682663, + "learning_rate": 0.0006, + "loss": 3.6881537437438965, + "step": 3018 + }, + { + "epoch": 41.93665356050677, + "grad_norm": 0.20554372668266296, + "learning_rate": 0.0006, + "loss": 3.688559055328369, + "step": 3019 + }, + { + "epoch": 41.95063346439493, + "grad_norm": 0.1862783133983612, + "learning_rate": 0.0006, + "loss": 3.6713812351226807, + "step": 3020 + }, + { + "epoch": 41.964613368283096, + "grad_norm": 0.18139860033988953, + "learning_rate": 0.0006, + "loss": 3.6612548828125, + "step": 3021 + }, + { + "epoch": 41.97859327217125, + "grad_norm": 0.1844220608472824, + "learning_rate": 0.0006, + "loss": 3.641725540161133, + "step": 3022 + }, + { + "epoch": 41.992573176059416, + "grad_norm": 0.1885213702917099, + "learning_rate": 0.0006, + "loss": 3.663257122039795, + "step": 3023 + }, + { + "epoch": 42.0, + "grad_norm": 0.2250746339559555, + "learning_rate": 0.0006, + "loss": 3.6479320526123047, + "step": 3024 + }, + { + "epoch": 42.0, + "eval_loss": 3.993955135345459, + "eval_runtime": 44.4709, + "eval_samples_per_second": 54.912, + "eval_steps_per_second": 3.44, + "step": 3024 + }, + { + "epoch": 42.01397990388816, + "grad_norm": 0.21096517145633698, + "learning_rate": 0.0006, + "loss": 3.6729278564453125, + "step": 3025 + }, + { + "epoch": 42.02795980777632, + "grad_norm": 0.2106277495622635, + "learning_rate": 0.0006, + "loss": 3.629892349243164, + "step": 3026 + }, + { + "epoch": 42.04193971166448, + "grad_norm": 0.2673060894012451, + "learning_rate": 0.0006, + "loss": 3.643604040145874, + "step": 3027 + }, + { + "epoch": 42.05591961555265, + "grad_norm": 0.28180691599845886, + "learning_rate": 0.0006, + "loss": 3.596560478210449, + "step": 3028 + }, + { + "epoch": 42.0698995194408, + "grad_norm": 0.25607243180274963, + "learning_rate": 0.0006, + "loss": 3.597935199737549, + "step": 3029 + }, + { + "epoch": 42.083879423328966, + "grad_norm": 0.22120746970176697, + "learning_rate": 0.0006, + "loss": 3.6219305992126465, + "step": 3030 + }, + { + "epoch": 42.09785932721712, + "grad_norm": 0.2164907306432724, + "learning_rate": 0.0006, + "loss": 3.6220779418945312, + "step": 3031 + }, + { + "epoch": 42.111839231105286, + "grad_norm": 0.23800921440124512, + "learning_rate": 0.0006, + "loss": 3.63372540473938, + "step": 3032 + }, + { + "epoch": 42.12581913499345, + "grad_norm": 0.21812695264816284, + "learning_rate": 0.0006, + "loss": 3.636105537414551, + "step": 3033 + }, + { + "epoch": 42.139799038881605, + "grad_norm": 0.2027447372674942, + "learning_rate": 0.0006, + "loss": 3.6167502403259277, + "step": 3034 + }, + { + "epoch": 42.15377894276977, + "grad_norm": 0.20157714188098907, + "learning_rate": 0.0006, + "loss": 3.6141409873962402, + "step": 3035 + }, + { + "epoch": 42.16775884665793, + "grad_norm": 0.20780996978282928, + "learning_rate": 0.0006, + "loss": 3.6323471069335938, + "step": 3036 + }, + { + "epoch": 42.18173875054609, + "grad_norm": 0.20025081932544708, + "learning_rate": 0.0006, + "loss": 3.625446081161499, + "step": 3037 + }, + { + "epoch": 42.19571865443425, + "grad_norm": 0.20019082725048065, + "learning_rate": 0.0006, + "loss": 3.631418228149414, + "step": 3038 + }, + { + "epoch": 42.20969855832241, + "grad_norm": 0.21194526553153992, + "learning_rate": 0.0006, + "loss": 3.6180832386016846, + "step": 3039 + }, + { + "epoch": 42.22367846221057, + "grad_norm": 0.2016245573759079, + "learning_rate": 0.0006, + "loss": 3.6388602256774902, + "step": 3040 + }, + { + "epoch": 42.237658366098735, + "grad_norm": 0.1892252415418625, + "learning_rate": 0.0006, + "loss": 3.6086854934692383, + "step": 3041 + }, + { + "epoch": 42.25163826998689, + "grad_norm": 0.1878061145544052, + "learning_rate": 0.0006, + "loss": 3.599428176879883, + "step": 3042 + }, + { + "epoch": 42.265618173875055, + "grad_norm": 0.20258742570877075, + "learning_rate": 0.0006, + "loss": 3.6177172660827637, + "step": 3043 + }, + { + "epoch": 42.27959807776322, + "grad_norm": 0.2114444226026535, + "learning_rate": 0.0006, + "loss": 3.641916275024414, + "step": 3044 + }, + { + "epoch": 42.293577981651374, + "grad_norm": 0.19873645901679993, + "learning_rate": 0.0006, + "loss": 3.6585676670074463, + "step": 3045 + }, + { + "epoch": 42.30755788553954, + "grad_norm": 0.20361217856407166, + "learning_rate": 0.0006, + "loss": 3.648475170135498, + "step": 3046 + }, + { + "epoch": 42.3215377894277, + "grad_norm": 0.20227114856243134, + "learning_rate": 0.0006, + "loss": 3.63625431060791, + "step": 3047 + }, + { + "epoch": 42.33551769331586, + "grad_norm": 0.18246233463287354, + "learning_rate": 0.0006, + "loss": 3.6380200386047363, + "step": 3048 + }, + { + "epoch": 42.34949759720402, + "grad_norm": 0.17944976687431335, + "learning_rate": 0.0006, + "loss": 3.6325912475585938, + "step": 3049 + }, + { + "epoch": 42.36347750109218, + "grad_norm": 0.188584566116333, + "learning_rate": 0.0006, + "loss": 3.6418886184692383, + "step": 3050 + }, + { + "epoch": 42.37745740498034, + "grad_norm": 0.1917790323495865, + "learning_rate": 0.0006, + "loss": 3.664421558380127, + "step": 3051 + }, + { + "epoch": 42.391437308868504, + "grad_norm": 0.175637349486351, + "learning_rate": 0.0006, + "loss": 3.641819953918457, + "step": 3052 + }, + { + "epoch": 42.40541721275666, + "grad_norm": 0.18751518428325653, + "learning_rate": 0.0006, + "loss": 3.646697998046875, + "step": 3053 + }, + { + "epoch": 42.419397116644824, + "grad_norm": 0.1805887520313263, + "learning_rate": 0.0006, + "loss": 3.637866735458374, + "step": 3054 + }, + { + "epoch": 42.43337702053299, + "grad_norm": 0.19680845737457275, + "learning_rate": 0.0006, + "loss": 3.602511405944824, + "step": 3055 + }, + { + "epoch": 42.44735692442114, + "grad_norm": 0.20605766773223877, + "learning_rate": 0.0006, + "loss": 3.6472771167755127, + "step": 3056 + }, + { + "epoch": 42.46133682830931, + "grad_norm": 0.18083851039409637, + "learning_rate": 0.0006, + "loss": 3.6672325134277344, + "step": 3057 + }, + { + "epoch": 42.47531673219746, + "grad_norm": 0.19665084779262543, + "learning_rate": 0.0006, + "loss": 3.625300884246826, + "step": 3058 + }, + { + "epoch": 42.489296636085626, + "grad_norm": 0.22506165504455566, + "learning_rate": 0.0006, + "loss": 3.592872142791748, + "step": 3059 + }, + { + "epoch": 42.50327653997379, + "grad_norm": 0.2051578164100647, + "learning_rate": 0.0006, + "loss": 3.6302249431610107, + "step": 3060 + }, + { + "epoch": 42.517256443861946, + "grad_norm": 0.18957172334194183, + "learning_rate": 0.0006, + "loss": 3.6277074813842773, + "step": 3061 + }, + { + "epoch": 42.53123634775011, + "grad_norm": 0.21467208862304688, + "learning_rate": 0.0006, + "loss": 3.6121392250061035, + "step": 3062 + }, + { + "epoch": 42.54521625163827, + "grad_norm": 0.21618402004241943, + "learning_rate": 0.0006, + "loss": 3.664738655090332, + "step": 3063 + }, + { + "epoch": 42.55919615552643, + "grad_norm": 0.2259770780801773, + "learning_rate": 0.0006, + "loss": 3.652042865753174, + "step": 3064 + }, + { + "epoch": 42.57317605941459, + "grad_norm": 0.22667232155799866, + "learning_rate": 0.0006, + "loss": 3.6552934646606445, + "step": 3065 + }, + { + "epoch": 42.58715596330275, + "grad_norm": 0.21405228972434998, + "learning_rate": 0.0006, + "loss": 3.644043445587158, + "step": 3066 + }, + { + "epoch": 42.60113586719091, + "grad_norm": 0.20855450630187988, + "learning_rate": 0.0006, + "loss": 3.6534876823425293, + "step": 3067 + }, + { + "epoch": 42.615115771079076, + "grad_norm": 0.22474415600299835, + "learning_rate": 0.0006, + "loss": 3.656677484512329, + "step": 3068 + }, + { + "epoch": 42.62909567496723, + "grad_norm": 0.23401428759098053, + "learning_rate": 0.0006, + "loss": 3.6788997650146484, + "step": 3069 + }, + { + "epoch": 42.643075578855395, + "grad_norm": 0.21567967534065247, + "learning_rate": 0.0006, + "loss": 3.675379753112793, + "step": 3070 + }, + { + "epoch": 42.65705548274356, + "grad_norm": 0.21704941987991333, + "learning_rate": 0.0006, + "loss": 3.630707263946533, + "step": 3071 + }, + { + "epoch": 42.671035386631715, + "grad_norm": 0.2718963921070099, + "learning_rate": 0.0006, + "loss": 3.6653294563293457, + "step": 3072 + }, + { + "epoch": 42.68501529051988, + "grad_norm": 0.30198901891708374, + "learning_rate": 0.0006, + "loss": 3.6761326789855957, + "step": 3073 + }, + { + "epoch": 42.69899519440804, + "grad_norm": 0.27593618631362915, + "learning_rate": 0.0006, + "loss": 3.6610732078552246, + "step": 3074 + }, + { + "epoch": 42.7129750982962, + "grad_norm": 0.22495242953300476, + "learning_rate": 0.0006, + "loss": 3.656907320022583, + "step": 3075 + }, + { + "epoch": 42.72695500218436, + "grad_norm": 0.19872353971004486, + "learning_rate": 0.0006, + "loss": 3.6611597537994385, + "step": 3076 + }, + { + "epoch": 42.74093490607252, + "grad_norm": 0.21527111530303955, + "learning_rate": 0.0006, + "loss": 3.676821708679199, + "step": 3077 + }, + { + "epoch": 42.75491480996068, + "grad_norm": 0.22314463555812836, + "learning_rate": 0.0006, + "loss": 3.629460334777832, + "step": 3078 + }, + { + "epoch": 42.768894713848844, + "grad_norm": 0.23461024463176727, + "learning_rate": 0.0006, + "loss": 3.665390968322754, + "step": 3079 + }, + { + "epoch": 42.782874617737, + "grad_norm": 0.2582414448261261, + "learning_rate": 0.0006, + "loss": 3.6420979499816895, + "step": 3080 + }, + { + "epoch": 42.796854521625164, + "grad_norm": 0.2505052983760834, + "learning_rate": 0.0006, + "loss": 3.67236328125, + "step": 3081 + }, + { + "epoch": 42.81083442551333, + "grad_norm": 0.22617632150650024, + "learning_rate": 0.0006, + "loss": 3.654897689819336, + "step": 3082 + }, + { + "epoch": 42.824814329401484, + "grad_norm": 0.2340085208415985, + "learning_rate": 0.0006, + "loss": 3.6423635482788086, + "step": 3083 + }, + { + "epoch": 42.83879423328965, + "grad_norm": 0.26765671372413635, + "learning_rate": 0.0006, + "loss": 3.622769832611084, + "step": 3084 + }, + { + "epoch": 42.8527741371778, + "grad_norm": 0.29490381479263306, + "learning_rate": 0.0006, + "loss": 3.656053066253662, + "step": 3085 + }, + { + "epoch": 42.86675404106597, + "grad_norm": 0.29776132106781006, + "learning_rate": 0.0006, + "loss": 3.6454644203186035, + "step": 3086 + }, + { + "epoch": 42.88073394495413, + "grad_norm": 0.23994849622249603, + "learning_rate": 0.0006, + "loss": 3.674665927886963, + "step": 3087 + }, + { + "epoch": 42.89471384884229, + "grad_norm": 0.21456265449523926, + "learning_rate": 0.0006, + "loss": 3.670175790786743, + "step": 3088 + }, + { + "epoch": 42.90869375273045, + "grad_norm": 0.25727778673171997, + "learning_rate": 0.0006, + "loss": 3.6425390243530273, + "step": 3089 + }, + { + "epoch": 42.92267365661861, + "grad_norm": 0.30310627818107605, + "learning_rate": 0.0006, + "loss": 3.68511962890625, + "step": 3090 + }, + { + "epoch": 42.93665356050677, + "grad_norm": 0.2792291045188904, + "learning_rate": 0.0006, + "loss": 3.681732654571533, + "step": 3091 + }, + { + "epoch": 42.95063346439493, + "grad_norm": 0.23614276945590973, + "learning_rate": 0.0006, + "loss": 3.6417222023010254, + "step": 3092 + }, + { + "epoch": 42.964613368283096, + "grad_norm": 0.23602448403835297, + "learning_rate": 0.0006, + "loss": 3.6602869033813477, + "step": 3093 + }, + { + "epoch": 42.97859327217125, + "grad_norm": 0.21968287229537964, + "learning_rate": 0.0006, + "loss": 3.6618118286132812, + "step": 3094 + }, + { + "epoch": 42.992573176059416, + "grad_norm": 0.2177523374557495, + "learning_rate": 0.0006, + "loss": 3.666904926300049, + "step": 3095 + }, + { + "epoch": 43.0, + "grad_norm": 0.23960894346237183, + "learning_rate": 0.0006, + "loss": 3.710965633392334, + "step": 3096 + }, + { + "epoch": 43.0, + "eval_loss": 3.977475166320801, + "eval_runtime": 44.5209, + "eval_samples_per_second": 54.851, + "eval_steps_per_second": 3.437, + "step": 3096 + }, + { + "epoch": 43.01397990388816, + "grad_norm": 0.24180234968662262, + "learning_rate": 0.0006, + "loss": 3.5949223041534424, + "step": 3097 + }, + { + "epoch": 43.02795980777632, + "grad_norm": 0.3331127166748047, + "learning_rate": 0.0006, + "loss": 3.625802755355835, + "step": 3098 + }, + { + "epoch": 43.04193971166448, + "grad_norm": 0.38338130712509155, + "learning_rate": 0.0006, + "loss": 3.6390271186828613, + "step": 3099 + }, + { + "epoch": 43.05591961555265, + "grad_norm": 0.32292598485946655, + "learning_rate": 0.0006, + "loss": 3.630621910095215, + "step": 3100 + }, + { + "epoch": 43.0698995194408, + "grad_norm": 0.24179677665233612, + "learning_rate": 0.0006, + "loss": 3.6124491691589355, + "step": 3101 + }, + { + "epoch": 43.083879423328966, + "grad_norm": 0.2622842788696289, + "learning_rate": 0.0006, + "loss": 3.6207399368286133, + "step": 3102 + }, + { + "epoch": 43.09785932721712, + "grad_norm": 0.264297217130661, + "learning_rate": 0.0006, + "loss": 3.637218475341797, + "step": 3103 + }, + { + "epoch": 43.111839231105286, + "grad_norm": 0.25815117359161377, + "learning_rate": 0.0006, + "loss": 3.614841938018799, + "step": 3104 + }, + { + "epoch": 43.12581913499345, + "grad_norm": 0.2209406942129135, + "learning_rate": 0.0006, + "loss": 3.604722738265991, + "step": 3105 + }, + { + "epoch": 43.139799038881605, + "grad_norm": 0.22333410382270813, + "learning_rate": 0.0006, + "loss": 3.6388449668884277, + "step": 3106 + }, + { + "epoch": 43.15377894276977, + "grad_norm": 0.2194417119026184, + "learning_rate": 0.0006, + "loss": 3.611644744873047, + "step": 3107 + }, + { + "epoch": 43.16775884665793, + "grad_norm": 0.21270349621772766, + "learning_rate": 0.0006, + "loss": 3.6180214881896973, + "step": 3108 + }, + { + "epoch": 43.18173875054609, + "grad_norm": 0.21358032524585724, + "learning_rate": 0.0006, + "loss": 3.646512985229492, + "step": 3109 + }, + { + "epoch": 43.19571865443425, + "grad_norm": 0.2180788666009903, + "learning_rate": 0.0006, + "loss": 3.641981363296509, + "step": 3110 + }, + { + "epoch": 43.20969855832241, + "grad_norm": 0.21979685127735138, + "learning_rate": 0.0006, + "loss": 3.6251654624938965, + "step": 3111 + }, + { + "epoch": 43.22367846221057, + "grad_norm": 0.2072533220052719, + "learning_rate": 0.0006, + "loss": 3.665372371673584, + "step": 3112 + }, + { + "epoch": 43.237658366098735, + "grad_norm": 0.2085742950439453, + "learning_rate": 0.0006, + "loss": 3.647730827331543, + "step": 3113 + }, + { + "epoch": 43.25163826998689, + "grad_norm": 0.1934993416070938, + "learning_rate": 0.0006, + "loss": 3.6296567916870117, + "step": 3114 + }, + { + "epoch": 43.265618173875055, + "grad_norm": 0.1954783797264099, + "learning_rate": 0.0006, + "loss": 3.6412858963012695, + "step": 3115 + }, + { + "epoch": 43.27959807776322, + "grad_norm": 0.1932750642299652, + "learning_rate": 0.0006, + "loss": 3.6246860027313232, + "step": 3116 + }, + { + "epoch": 43.293577981651374, + "grad_norm": 0.19765302538871765, + "learning_rate": 0.0006, + "loss": 3.618922710418701, + "step": 3117 + }, + { + "epoch": 43.30755788553954, + "grad_norm": 0.1987425684928894, + "learning_rate": 0.0006, + "loss": 3.633185863494873, + "step": 3118 + }, + { + "epoch": 43.3215377894277, + "grad_norm": 0.1894739419221878, + "learning_rate": 0.0006, + "loss": 3.595709800720215, + "step": 3119 + }, + { + "epoch": 43.33551769331586, + "grad_norm": 0.19455872476100922, + "learning_rate": 0.0006, + "loss": 3.6309051513671875, + "step": 3120 + }, + { + "epoch": 43.34949759720402, + "grad_norm": 0.21448275446891785, + "learning_rate": 0.0006, + "loss": 3.6425981521606445, + "step": 3121 + }, + { + "epoch": 43.36347750109218, + "grad_norm": 0.24527893960475922, + "learning_rate": 0.0006, + "loss": 3.6497793197631836, + "step": 3122 + }, + { + "epoch": 43.37745740498034, + "grad_norm": 0.253231942653656, + "learning_rate": 0.0006, + "loss": 3.644453525543213, + "step": 3123 + }, + { + "epoch": 43.391437308868504, + "grad_norm": 0.2048978954553604, + "learning_rate": 0.0006, + "loss": 3.5963876247406006, + "step": 3124 + }, + { + "epoch": 43.40541721275666, + "grad_norm": 0.19951528310775757, + "learning_rate": 0.0006, + "loss": 3.6274406909942627, + "step": 3125 + }, + { + "epoch": 43.419397116644824, + "grad_norm": 0.2293875813484192, + "learning_rate": 0.0006, + "loss": 3.6482725143432617, + "step": 3126 + }, + { + "epoch": 43.43337702053299, + "grad_norm": 0.22379456460475922, + "learning_rate": 0.0006, + "loss": 3.6466073989868164, + "step": 3127 + }, + { + "epoch": 43.44735692442114, + "grad_norm": 0.2275441288948059, + "learning_rate": 0.0006, + "loss": 3.6529078483581543, + "step": 3128 + }, + { + "epoch": 43.46133682830931, + "grad_norm": 0.23014242947101593, + "learning_rate": 0.0006, + "loss": 3.6084837913513184, + "step": 3129 + }, + { + "epoch": 43.47531673219746, + "grad_norm": 0.22280924022197723, + "learning_rate": 0.0006, + "loss": 3.611320734024048, + "step": 3130 + }, + { + "epoch": 43.489296636085626, + "grad_norm": 0.19498756527900696, + "learning_rate": 0.0006, + "loss": 3.630185604095459, + "step": 3131 + }, + { + "epoch": 43.50327653997379, + "grad_norm": 0.21357767283916473, + "learning_rate": 0.0006, + "loss": 3.6509933471679688, + "step": 3132 + }, + { + "epoch": 43.517256443861946, + "grad_norm": 0.21775896847248077, + "learning_rate": 0.0006, + "loss": 3.635112762451172, + "step": 3133 + }, + { + "epoch": 43.53123634775011, + "grad_norm": 0.2035629004240036, + "learning_rate": 0.0006, + "loss": 3.658327102661133, + "step": 3134 + }, + { + "epoch": 43.54521625163827, + "grad_norm": 0.20083840191364288, + "learning_rate": 0.0006, + "loss": 3.632441997528076, + "step": 3135 + }, + { + "epoch": 43.55919615552643, + "grad_norm": 0.1922001987695694, + "learning_rate": 0.0006, + "loss": 3.6417734622955322, + "step": 3136 + }, + { + "epoch": 43.57317605941459, + "grad_norm": 0.21049264073371887, + "learning_rate": 0.0006, + "loss": 3.671274423599243, + "step": 3137 + }, + { + "epoch": 43.58715596330275, + "grad_norm": 0.21432001888751984, + "learning_rate": 0.0006, + "loss": 3.6216118335723877, + "step": 3138 + }, + { + "epoch": 43.60113586719091, + "grad_norm": 0.25448811054229736, + "learning_rate": 0.0006, + "loss": 3.658283233642578, + "step": 3139 + }, + { + "epoch": 43.615115771079076, + "grad_norm": 0.24313904345035553, + "learning_rate": 0.0006, + "loss": 3.6447594165802, + "step": 3140 + }, + { + "epoch": 43.62909567496723, + "grad_norm": 0.2332659363746643, + "learning_rate": 0.0006, + "loss": 3.625528573989868, + "step": 3141 + }, + { + "epoch": 43.643075578855395, + "grad_norm": 0.23222137987613678, + "learning_rate": 0.0006, + "loss": 3.6524429321289062, + "step": 3142 + }, + { + "epoch": 43.65705548274356, + "grad_norm": 0.2147051990032196, + "learning_rate": 0.0006, + "loss": 3.6517302989959717, + "step": 3143 + }, + { + "epoch": 43.671035386631715, + "grad_norm": 0.2464994341135025, + "learning_rate": 0.0006, + "loss": 3.654947519302368, + "step": 3144 + }, + { + "epoch": 43.68501529051988, + "grad_norm": 0.2365981936454773, + "learning_rate": 0.0006, + "loss": 3.638695240020752, + "step": 3145 + }, + { + "epoch": 43.69899519440804, + "grad_norm": 0.2325262874364853, + "learning_rate": 0.0006, + "loss": 3.6496055126190186, + "step": 3146 + }, + { + "epoch": 43.7129750982962, + "grad_norm": 0.2196085900068283, + "learning_rate": 0.0006, + "loss": 3.6323978900909424, + "step": 3147 + }, + { + "epoch": 43.72695500218436, + "grad_norm": 0.20404237508773804, + "learning_rate": 0.0006, + "loss": 3.6572763919830322, + "step": 3148 + }, + { + "epoch": 43.74093490607252, + "grad_norm": 0.2363257110118866, + "learning_rate": 0.0006, + "loss": 3.6347732543945312, + "step": 3149 + }, + { + "epoch": 43.75491480996068, + "grad_norm": 0.23671524226665497, + "learning_rate": 0.0006, + "loss": 3.650017023086548, + "step": 3150 + }, + { + "epoch": 43.768894713848844, + "grad_norm": 0.20892305672168732, + "learning_rate": 0.0006, + "loss": 3.638185977935791, + "step": 3151 + }, + { + "epoch": 43.782874617737, + "grad_norm": 0.18670055270195007, + "learning_rate": 0.0006, + "loss": 3.6647696495056152, + "step": 3152 + }, + { + "epoch": 43.796854521625164, + "grad_norm": 0.21818184852600098, + "learning_rate": 0.0006, + "loss": 3.663623332977295, + "step": 3153 + }, + { + "epoch": 43.81083442551333, + "grad_norm": 0.23472464084625244, + "learning_rate": 0.0006, + "loss": 3.650595188140869, + "step": 3154 + }, + { + "epoch": 43.824814329401484, + "grad_norm": 0.2266419678926468, + "learning_rate": 0.0006, + "loss": 3.6362059116363525, + "step": 3155 + }, + { + "epoch": 43.83879423328965, + "grad_norm": 0.2250787913799286, + "learning_rate": 0.0006, + "loss": 3.647970199584961, + "step": 3156 + }, + { + "epoch": 43.8527741371778, + "grad_norm": 0.21493776142597198, + "learning_rate": 0.0006, + "loss": 3.6510982513427734, + "step": 3157 + }, + { + "epoch": 43.86675404106597, + "grad_norm": 0.20783160626888275, + "learning_rate": 0.0006, + "loss": 3.654845714569092, + "step": 3158 + }, + { + "epoch": 43.88073394495413, + "grad_norm": 0.2222554087638855, + "learning_rate": 0.0006, + "loss": 3.6565685272216797, + "step": 3159 + }, + { + "epoch": 43.89471384884229, + "grad_norm": 0.2148049771785736, + "learning_rate": 0.0006, + "loss": 3.630779266357422, + "step": 3160 + }, + { + "epoch": 43.90869375273045, + "grad_norm": 0.2222086787223816, + "learning_rate": 0.0006, + "loss": 3.6312813758850098, + "step": 3161 + }, + { + "epoch": 43.92267365661861, + "grad_norm": 0.24049264192581177, + "learning_rate": 0.0006, + "loss": 3.6185736656188965, + "step": 3162 + }, + { + "epoch": 43.93665356050677, + "grad_norm": 0.2228843867778778, + "learning_rate": 0.0006, + "loss": 3.595583438873291, + "step": 3163 + }, + { + "epoch": 43.95063346439493, + "grad_norm": 0.20714408159255981, + "learning_rate": 0.0006, + "loss": 3.6649322509765625, + "step": 3164 + }, + { + "epoch": 43.964613368283096, + "grad_norm": 0.2048991471529007, + "learning_rate": 0.0006, + "loss": 3.6513710021972656, + "step": 3165 + }, + { + "epoch": 43.97859327217125, + "grad_norm": 0.21874114871025085, + "learning_rate": 0.0006, + "loss": 3.6471524238586426, + "step": 3166 + }, + { + "epoch": 43.992573176059416, + "grad_norm": 0.21309879422187805, + "learning_rate": 0.0006, + "loss": 3.647021770477295, + "step": 3167 + }, + { + "epoch": 44.0, + "grad_norm": 0.23717166483402252, + "learning_rate": 0.0006, + "loss": 3.6903820037841797, + "step": 3168 + }, + { + "epoch": 44.0, + "eval_loss": 3.9844837188720703, + "eval_runtime": 44.29, + "eval_samples_per_second": 55.137, + "eval_steps_per_second": 3.455, + "step": 3168 + }, + { + "epoch": 44.01397990388816, + "grad_norm": 0.21503832936286926, + "learning_rate": 0.0006, + "loss": 3.6054744720458984, + "step": 3169 + }, + { + "epoch": 44.02795980777632, + "grad_norm": 0.2289554923772812, + "learning_rate": 0.0006, + "loss": 3.6560556888580322, + "step": 3170 + }, + { + "epoch": 44.04193971166448, + "grad_norm": 0.24250416457653046, + "learning_rate": 0.0006, + "loss": 3.611820697784424, + "step": 3171 + }, + { + "epoch": 44.05591961555265, + "grad_norm": 0.2526668310165405, + "learning_rate": 0.0006, + "loss": 3.6273183822631836, + "step": 3172 + }, + { + "epoch": 44.0698995194408, + "grad_norm": 0.26702383160591125, + "learning_rate": 0.0006, + "loss": 3.5856852531433105, + "step": 3173 + }, + { + "epoch": 44.083879423328966, + "grad_norm": 0.2715195417404175, + "learning_rate": 0.0006, + "loss": 3.631045341491699, + "step": 3174 + }, + { + "epoch": 44.09785932721712, + "grad_norm": 0.3505614995956421, + "learning_rate": 0.0006, + "loss": 3.628720760345459, + "step": 3175 + }, + { + "epoch": 44.111839231105286, + "grad_norm": 0.2760702967643738, + "learning_rate": 0.0006, + "loss": 3.6283509731292725, + "step": 3176 + }, + { + "epoch": 44.12581913499345, + "grad_norm": 0.21105222404003143, + "learning_rate": 0.0006, + "loss": 3.6495566368103027, + "step": 3177 + }, + { + "epoch": 44.139799038881605, + "grad_norm": 0.2852860987186432, + "learning_rate": 0.0006, + "loss": 3.640768527984619, + "step": 3178 + }, + { + "epoch": 44.15377894276977, + "grad_norm": 0.2941005825996399, + "learning_rate": 0.0006, + "loss": 3.6303114891052246, + "step": 3179 + }, + { + "epoch": 44.16775884665793, + "grad_norm": 0.2792299687862396, + "learning_rate": 0.0006, + "loss": 3.6053574085235596, + "step": 3180 + }, + { + "epoch": 44.18173875054609, + "grad_norm": 0.23168638348579407, + "learning_rate": 0.0006, + "loss": 3.62430477142334, + "step": 3181 + }, + { + "epoch": 44.19571865443425, + "grad_norm": 0.23713921010494232, + "learning_rate": 0.0006, + "loss": 3.601106643676758, + "step": 3182 + }, + { + "epoch": 44.20969855832241, + "grad_norm": 0.23341049253940582, + "learning_rate": 0.0006, + "loss": 3.631762742996216, + "step": 3183 + }, + { + "epoch": 44.22367846221057, + "grad_norm": 0.23094508051872253, + "learning_rate": 0.0006, + "loss": 3.586683750152588, + "step": 3184 + }, + { + "epoch": 44.237658366098735, + "grad_norm": 0.24085712432861328, + "learning_rate": 0.0006, + "loss": 3.6251423358917236, + "step": 3185 + }, + { + "epoch": 44.25163826998689, + "grad_norm": 0.24999955296516418, + "learning_rate": 0.0006, + "loss": 3.6554198265075684, + "step": 3186 + }, + { + "epoch": 44.265618173875055, + "grad_norm": 0.21759621798992157, + "learning_rate": 0.0006, + "loss": 3.6249518394470215, + "step": 3187 + }, + { + "epoch": 44.27959807776322, + "grad_norm": 0.2490139901638031, + "learning_rate": 0.0006, + "loss": 3.6163341999053955, + "step": 3188 + }, + { + "epoch": 44.293577981651374, + "grad_norm": 0.23420892655849457, + "learning_rate": 0.0006, + "loss": 3.615469455718994, + "step": 3189 + }, + { + "epoch": 44.30755788553954, + "grad_norm": 0.2292138934135437, + "learning_rate": 0.0006, + "loss": 3.6085104942321777, + "step": 3190 + }, + { + "epoch": 44.3215377894277, + "grad_norm": 0.22595474123954773, + "learning_rate": 0.0006, + "loss": 3.6317405700683594, + "step": 3191 + }, + { + "epoch": 44.33551769331586, + "grad_norm": 0.22418338060379028, + "learning_rate": 0.0006, + "loss": 3.6287777423858643, + "step": 3192 + }, + { + "epoch": 44.34949759720402, + "grad_norm": 0.2453135848045349, + "learning_rate": 0.0006, + "loss": 3.6228437423706055, + "step": 3193 + }, + { + "epoch": 44.36347750109218, + "grad_norm": 0.2627771198749542, + "learning_rate": 0.0006, + "loss": 3.6581034660339355, + "step": 3194 + }, + { + "epoch": 44.37745740498034, + "grad_norm": 0.24114494025707245, + "learning_rate": 0.0006, + "loss": 3.653505563735962, + "step": 3195 + }, + { + "epoch": 44.391437308868504, + "grad_norm": 0.2103721648454666, + "learning_rate": 0.0006, + "loss": 3.5698580741882324, + "step": 3196 + }, + { + "epoch": 44.40541721275666, + "grad_norm": 0.21172291040420532, + "learning_rate": 0.0006, + "loss": 3.573453426361084, + "step": 3197 + }, + { + "epoch": 44.419397116644824, + "grad_norm": 0.20298106968402863, + "learning_rate": 0.0006, + "loss": 3.6350207328796387, + "step": 3198 + }, + { + "epoch": 44.43337702053299, + "grad_norm": 0.2029009759426117, + "learning_rate": 0.0006, + "loss": 3.6025917530059814, + "step": 3199 + }, + { + "epoch": 44.44735692442114, + "grad_norm": 0.18960542976856232, + "learning_rate": 0.0006, + "loss": 3.625028133392334, + "step": 3200 + }, + { + "epoch": 44.46133682830931, + "grad_norm": 0.20758579671382904, + "learning_rate": 0.0006, + "loss": 3.647071123123169, + "step": 3201 + }, + { + "epoch": 44.47531673219746, + "grad_norm": 0.21896769106388092, + "learning_rate": 0.0006, + "loss": 3.6481196880340576, + "step": 3202 + }, + { + "epoch": 44.489296636085626, + "grad_norm": 0.20817387104034424, + "learning_rate": 0.0006, + "loss": 3.629366874694824, + "step": 3203 + }, + { + "epoch": 44.50327653997379, + "grad_norm": 0.2099488228559494, + "learning_rate": 0.0006, + "loss": 3.6757798194885254, + "step": 3204 + }, + { + "epoch": 44.517256443861946, + "grad_norm": 0.21376627683639526, + "learning_rate": 0.0006, + "loss": 3.638324737548828, + "step": 3205 + }, + { + "epoch": 44.53123634775011, + "grad_norm": 0.19089072942733765, + "learning_rate": 0.0006, + "loss": 3.6497435569763184, + "step": 3206 + }, + { + "epoch": 44.54521625163827, + "grad_norm": 0.20489120483398438, + "learning_rate": 0.0006, + "loss": 3.634019374847412, + "step": 3207 + }, + { + "epoch": 44.55919615552643, + "grad_norm": 0.21991780400276184, + "learning_rate": 0.0006, + "loss": 3.6255834102630615, + "step": 3208 + }, + { + "epoch": 44.57317605941459, + "grad_norm": 0.23417581617832184, + "learning_rate": 0.0006, + "loss": 3.631927728652954, + "step": 3209 + }, + { + "epoch": 44.58715596330275, + "grad_norm": 0.22819049656391144, + "learning_rate": 0.0006, + "loss": 3.640167713165283, + "step": 3210 + }, + { + "epoch": 44.60113586719091, + "grad_norm": 0.21443316340446472, + "learning_rate": 0.0006, + "loss": 3.645709991455078, + "step": 3211 + }, + { + "epoch": 44.615115771079076, + "grad_norm": 0.19252653419971466, + "learning_rate": 0.0006, + "loss": 3.591294288635254, + "step": 3212 + }, + { + "epoch": 44.62909567496723, + "grad_norm": 0.18925397098064423, + "learning_rate": 0.0006, + "loss": 3.6163625717163086, + "step": 3213 + }, + { + "epoch": 44.643075578855395, + "grad_norm": 0.21605387330055237, + "learning_rate": 0.0006, + "loss": 3.6826887130737305, + "step": 3214 + }, + { + "epoch": 44.65705548274356, + "grad_norm": 0.21301978826522827, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 3215 + }, + { + "epoch": 44.671035386631715, + "grad_norm": 0.20065832138061523, + "learning_rate": 0.0006, + "loss": 3.648879289627075, + "step": 3216 + }, + { + "epoch": 44.68501529051988, + "grad_norm": 0.21413499116897583, + "learning_rate": 0.0006, + "loss": 3.6327264308929443, + "step": 3217 + }, + { + "epoch": 44.69899519440804, + "grad_norm": 0.22769849002361298, + "learning_rate": 0.0006, + "loss": 3.6486430168151855, + "step": 3218 + }, + { + "epoch": 44.7129750982962, + "grad_norm": 0.227064847946167, + "learning_rate": 0.0006, + "loss": 3.633342981338501, + "step": 3219 + }, + { + "epoch": 44.72695500218436, + "grad_norm": 0.21335656940937042, + "learning_rate": 0.0006, + "loss": 3.648621082305908, + "step": 3220 + }, + { + "epoch": 44.74093490607252, + "grad_norm": 0.2085563838481903, + "learning_rate": 0.0006, + "loss": 3.647826671600342, + "step": 3221 + }, + { + "epoch": 44.75491480996068, + "grad_norm": 0.19203904271125793, + "learning_rate": 0.0006, + "loss": 3.6296122074127197, + "step": 3222 + }, + { + "epoch": 44.768894713848844, + "grad_norm": 0.1969112604856491, + "learning_rate": 0.0006, + "loss": 3.6477179527282715, + "step": 3223 + }, + { + "epoch": 44.782874617737, + "grad_norm": 0.21630392968654633, + "learning_rate": 0.0006, + "loss": 3.628805637359619, + "step": 3224 + }, + { + "epoch": 44.796854521625164, + "grad_norm": 0.20641647279262543, + "learning_rate": 0.0006, + "loss": 3.650993824005127, + "step": 3225 + }, + { + "epoch": 44.81083442551333, + "grad_norm": 0.1954173892736435, + "learning_rate": 0.0006, + "loss": 3.6362831592559814, + "step": 3226 + }, + { + "epoch": 44.824814329401484, + "grad_norm": 0.20479747653007507, + "learning_rate": 0.0006, + "loss": 3.6467390060424805, + "step": 3227 + }, + { + "epoch": 44.83879423328965, + "grad_norm": 0.20502690970897675, + "learning_rate": 0.0006, + "loss": 3.6260130405426025, + "step": 3228 + }, + { + "epoch": 44.8527741371778, + "grad_norm": 0.20348094403743744, + "learning_rate": 0.0006, + "loss": 3.6836767196655273, + "step": 3229 + }, + { + "epoch": 44.86675404106597, + "grad_norm": 0.18748269975185394, + "learning_rate": 0.0006, + "loss": 3.610104560852051, + "step": 3230 + }, + { + "epoch": 44.88073394495413, + "grad_norm": 0.18822219967842102, + "learning_rate": 0.0006, + "loss": 3.61354398727417, + "step": 3231 + }, + { + "epoch": 44.89471384884229, + "grad_norm": 0.20972031354904175, + "learning_rate": 0.0006, + "loss": 3.644336700439453, + "step": 3232 + }, + { + "epoch": 44.90869375273045, + "grad_norm": 0.2013155072927475, + "learning_rate": 0.0006, + "loss": 3.659287929534912, + "step": 3233 + }, + { + "epoch": 44.92267365661861, + "grad_norm": 0.2056475579738617, + "learning_rate": 0.0006, + "loss": 3.6545677185058594, + "step": 3234 + }, + { + "epoch": 44.93665356050677, + "grad_norm": 0.2104482203722, + "learning_rate": 0.0006, + "loss": 3.6094017028808594, + "step": 3235 + }, + { + "epoch": 44.95063346439493, + "grad_norm": 0.1993035078048706, + "learning_rate": 0.0006, + "loss": 3.6209053993225098, + "step": 3236 + }, + { + "epoch": 44.964613368283096, + "grad_norm": 0.1883099526166916, + "learning_rate": 0.0006, + "loss": 3.6011457443237305, + "step": 3237 + }, + { + "epoch": 44.97859327217125, + "grad_norm": 0.1927674412727356, + "learning_rate": 0.0006, + "loss": 3.606609344482422, + "step": 3238 + }, + { + "epoch": 44.992573176059416, + "grad_norm": 0.1878899335861206, + "learning_rate": 0.0006, + "loss": 3.6701109409332275, + "step": 3239 + }, + { + "epoch": 45.0, + "grad_norm": 0.2237395942211151, + "learning_rate": 0.0006, + "loss": 3.6617302894592285, + "step": 3240 + }, + { + "epoch": 45.0, + "eval_loss": 3.9812564849853516, + "eval_runtime": 44.8635, + "eval_samples_per_second": 54.432, + "eval_steps_per_second": 3.41, + "step": 3240 + }, + { + "epoch": 45.01397990388816, + "grad_norm": 0.21368487179279327, + "learning_rate": 0.0006, + "loss": 3.599107265472412, + "step": 3241 + }, + { + "epoch": 45.02795980777632, + "grad_norm": 0.2234211564064026, + "learning_rate": 0.0006, + "loss": 3.5943236351013184, + "step": 3242 + }, + { + "epoch": 45.04193971166448, + "grad_norm": 0.2222544252872467, + "learning_rate": 0.0006, + "loss": 3.6152291297912598, + "step": 3243 + }, + { + "epoch": 45.05591961555265, + "grad_norm": 0.24686792492866516, + "learning_rate": 0.0006, + "loss": 3.6006085872650146, + "step": 3244 + }, + { + "epoch": 45.0698995194408, + "grad_norm": 0.24634984135627747, + "learning_rate": 0.0006, + "loss": 3.6023471355438232, + "step": 3245 + }, + { + "epoch": 45.083879423328966, + "grad_norm": 0.2150750756263733, + "learning_rate": 0.0006, + "loss": 3.5690598487854004, + "step": 3246 + }, + { + "epoch": 45.09785932721712, + "grad_norm": 0.196721151471138, + "learning_rate": 0.0006, + "loss": 3.592653751373291, + "step": 3247 + }, + { + "epoch": 45.111839231105286, + "grad_norm": 0.21874476969242096, + "learning_rate": 0.0006, + "loss": 3.586243152618408, + "step": 3248 + }, + { + "epoch": 45.12581913499345, + "grad_norm": 0.21021611988544464, + "learning_rate": 0.0006, + "loss": 3.599384307861328, + "step": 3249 + }, + { + "epoch": 45.139799038881605, + "grad_norm": 0.19754183292388916, + "learning_rate": 0.0006, + "loss": 3.623816967010498, + "step": 3250 + }, + { + "epoch": 45.15377894276977, + "grad_norm": 0.21218672394752502, + "learning_rate": 0.0006, + "loss": 3.5901236534118652, + "step": 3251 + }, + { + "epoch": 45.16775884665793, + "grad_norm": 0.23569360375404358, + "learning_rate": 0.0006, + "loss": 3.600029945373535, + "step": 3252 + }, + { + "epoch": 45.18173875054609, + "grad_norm": 0.25429826974868774, + "learning_rate": 0.0006, + "loss": 3.607773542404175, + "step": 3253 + }, + { + "epoch": 45.19571865443425, + "grad_norm": 0.23416805267333984, + "learning_rate": 0.0006, + "loss": 3.63248348236084, + "step": 3254 + }, + { + "epoch": 45.20969855832241, + "grad_norm": 0.20821864902973175, + "learning_rate": 0.0006, + "loss": 3.641927719116211, + "step": 3255 + }, + { + "epoch": 45.22367846221057, + "grad_norm": 0.21849380433559418, + "learning_rate": 0.0006, + "loss": 3.665098190307617, + "step": 3256 + }, + { + "epoch": 45.237658366098735, + "grad_norm": 0.22939491271972656, + "learning_rate": 0.0006, + "loss": 3.6106104850769043, + "step": 3257 + }, + { + "epoch": 45.25163826998689, + "grad_norm": 0.24144501984119415, + "learning_rate": 0.0006, + "loss": 3.5872416496276855, + "step": 3258 + }, + { + "epoch": 45.265618173875055, + "grad_norm": 0.21790480613708496, + "learning_rate": 0.0006, + "loss": 3.6268889904022217, + "step": 3259 + }, + { + "epoch": 45.27959807776322, + "grad_norm": 0.22702264785766602, + "learning_rate": 0.0006, + "loss": 3.5972542762756348, + "step": 3260 + }, + { + "epoch": 45.293577981651374, + "grad_norm": 0.22465437650680542, + "learning_rate": 0.0006, + "loss": 3.6339592933654785, + "step": 3261 + }, + { + "epoch": 45.30755788553954, + "grad_norm": 0.21804460883140564, + "learning_rate": 0.0006, + "loss": 3.6062779426574707, + "step": 3262 + }, + { + "epoch": 45.3215377894277, + "grad_norm": 0.1985616534948349, + "learning_rate": 0.0006, + "loss": 3.629815101623535, + "step": 3263 + }, + { + "epoch": 45.33551769331586, + "grad_norm": 0.22264975309371948, + "learning_rate": 0.0006, + "loss": 3.631214141845703, + "step": 3264 + }, + { + "epoch": 45.34949759720402, + "grad_norm": 0.22178539633750916, + "learning_rate": 0.0006, + "loss": 3.620854377746582, + "step": 3265 + }, + { + "epoch": 45.36347750109218, + "grad_norm": 0.22392240166664124, + "learning_rate": 0.0006, + "loss": 3.6611738204956055, + "step": 3266 + }, + { + "epoch": 45.37745740498034, + "grad_norm": 0.2178916484117508, + "learning_rate": 0.0006, + "loss": 3.639893054962158, + "step": 3267 + }, + { + "epoch": 45.391437308868504, + "grad_norm": 0.2173885703086853, + "learning_rate": 0.0006, + "loss": 3.611750364303589, + "step": 3268 + }, + { + "epoch": 45.40541721275666, + "grad_norm": 0.2107069045305252, + "learning_rate": 0.0006, + "loss": 3.595181465148926, + "step": 3269 + }, + { + "epoch": 45.419397116644824, + "grad_norm": 0.19623015820980072, + "learning_rate": 0.0006, + "loss": 3.6096351146698, + "step": 3270 + }, + { + "epoch": 45.43337702053299, + "grad_norm": 0.23091304302215576, + "learning_rate": 0.0006, + "loss": 3.603667974472046, + "step": 3271 + }, + { + "epoch": 45.44735692442114, + "grad_norm": 0.22909007966518402, + "learning_rate": 0.0006, + "loss": 3.62846040725708, + "step": 3272 + }, + { + "epoch": 45.46133682830931, + "grad_norm": 0.2104928195476532, + "learning_rate": 0.0006, + "loss": 3.6543164253234863, + "step": 3273 + }, + { + "epoch": 45.47531673219746, + "grad_norm": 0.22994203865528107, + "learning_rate": 0.0006, + "loss": 3.621878147125244, + "step": 3274 + }, + { + "epoch": 45.489296636085626, + "grad_norm": 0.21652749180793762, + "learning_rate": 0.0006, + "loss": 3.6095705032348633, + "step": 3275 + }, + { + "epoch": 45.50327653997379, + "grad_norm": 0.20125073194503784, + "learning_rate": 0.0006, + "loss": 3.6213903427124023, + "step": 3276 + }, + { + "epoch": 45.517256443861946, + "grad_norm": 0.19995734095573425, + "learning_rate": 0.0006, + "loss": 3.6526503562927246, + "step": 3277 + }, + { + "epoch": 45.53123634775011, + "grad_norm": 0.2071387618780136, + "learning_rate": 0.0006, + "loss": 3.626208782196045, + "step": 3278 + }, + { + "epoch": 45.54521625163827, + "grad_norm": 0.222015842795372, + "learning_rate": 0.0006, + "loss": 3.61144757270813, + "step": 3279 + }, + { + "epoch": 45.55919615552643, + "grad_norm": 0.20780639350414276, + "learning_rate": 0.0006, + "loss": 3.64092755317688, + "step": 3280 + }, + { + "epoch": 45.57317605941459, + "grad_norm": 0.19297364354133606, + "learning_rate": 0.0006, + "loss": 3.6308364868164062, + "step": 3281 + }, + { + "epoch": 45.58715596330275, + "grad_norm": 0.1928786337375641, + "learning_rate": 0.0006, + "loss": 3.6258254051208496, + "step": 3282 + }, + { + "epoch": 45.60113586719091, + "grad_norm": 0.1940007209777832, + "learning_rate": 0.0006, + "loss": 3.622849464416504, + "step": 3283 + }, + { + "epoch": 45.615115771079076, + "grad_norm": 0.19643044471740723, + "learning_rate": 0.0006, + "loss": 3.6461117267608643, + "step": 3284 + }, + { + "epoch": 45.62909567496723, + "grad_norm": 0.19996654987335205, + "learning_rate": 0.0006, + "loss": 3.61572265625, + "step": 3285 + }, + { + "epoch": 45.643075578855395, + "grad_norm": 0.20202603936195374, + "learning_rate": 0.0006, + "loss": 3.610734462738037, + "step": 3286 + }, + { + "epoch": 45.65705548274356, + "grad_norm": 0.19249361753463745, + "learning_rate": 0.0006, + "loss": 3.607048511505127, + "step": 3287 + }, + { + "epoch": 45.671035386631715, + "grad_norm": 0.1894780397415161, + "learning_rate": 0.0006, + "loss": 3.6450905799865723, + "step": 3288 + }, + { + "epoch": 45.68501529051988, + "grad_norm": 0.19901636242866516, + "learning_rate": 0.0006, + "loss": 3.6313018798828125, + "step": 3289 + }, + { + "epoch": 45.69899519440804, + "grad_norm": 0.1875065118074417, + "learning_rate": 0.0006, + "loss": 3.641326427459717, + "step": 3290 + }, + { + "epoch": 45.7129750982962, + "grad_norm": 0.19832095503807068, + "learning_rate": 0.0006, + "loss": 3.6612308025360107, + "step": 3291 + }, + { + "epoch": 45.72695500218436, + "grad_norm": 0.20353806018829346, + "learning_rate": 0.0006, + "loss": 3.623152017593384, + "step": 3292 + }, + { + "epoch": 45.74093490607252, + "grad_norm": 0.1984023153781891, + "learning_rate": 0.0006, + "loss": 3.627358913421631, + "step": 3293 + }, + { + "epoch": 45.75491480996068, + "grad_norm": 0.2002221643924713, + "learning_rate": 0.0006, + "loss": 3.6334757804870605, + "step": 3294 + }, + { + "epoch": 45.768894713848844, + "grad_norm": 0.21099092066287994, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3295 + }, + { + "epoch": 45.782874617737, + "grad_norm": 0.19109416007995605, + "learning_rate": 0.0006, + "loss": 3.62795352935791, + "step": 3296 + }, + { + "epoch": 45.796854521625164, + "grad_norm": 0.18424192070960999, + "learning_rate": 0.0006, + "loss": 3.6151700019836426, + "step": 3297 + }, + { + "epoch": 45.81083442551333, + "grad_norm": 0.20823849737644196, + "learning_rate": 0.0006, + "loss": 3.641907215118408, + "step": 3298 + }, + { + "epoch": 45.824814329401484, + "grad_norm": 0.21407285332679749, + "learning_rate": 0.0006, + "loss": 3.6430726051330566, + "step": 3299 + }, + { + "epoch": 45.83879423328965, + "grad_norm": 0.23493780195713043, + "learning_rate": 0.0006, + "loss": 3.610065460205078, + "step": 3300 + }, + { + "epoch": 45.8527741371778, + "grad_norm": 0.21910642087459564, + "learning_rate": 0.0006, + "loss": 3.630603313446045, + "step": 3301 + }, + { + "epoch": 45.86675404106597, + "grad_norm": 0.1838075965642929, + "learning_rate": 0.0006, + "loss": 3.634315013885498, + "step": 3302 + }, + { + "epoch": 45.88073394495413, + "grad_norm": 0.22131477296352386, + "learning_rate": 0.0006, + "loss": 3.6142020225524902, + "step": 3303 + }, + { + "epoch": 45.89471384884229, + "grad_norm": 0.2497209906578064, + "learning_rate": 0.0006, + "loss": 3.689103126525879, + "step": 3304 + }, + { + "epoch": 45.90869375273045, + "grad_norm": 0.24403175711631775, + "learning_rate": 0.0006, + "loss": 3.6321184635162354, + "step": 3305 + }, + { + "epoch": 45.92267365661861, + "grad_norm": 0.22527103126049042, + "learning_rate": 0.0006, + "loss": 3.6486921310424805, + "step": 3306 + }, + { + "epoch": 45.93665356050677, + "grad_norm": 0.20127955079078674, + "learning_rate": 0.0006, + "loss": 3.6109299659729004, + "step": 3307 + }, + { + "epoch": 45.95063346439493, + "grad_norm": 0.18997317552566528, + "learning_rate": 0.0006, + "loss": 3.6157617568969727, + "step": 3308 + }, + { + "epoch": 45.964613368283096, + "grad_norm": 0.19921870529651642, + "learning_rate": 0.0006, + "loss": 3.691776990890503, + "step": 3309 + }, + { + "epoch": 45.97859327217125, + "grad_norm": 0.2124646008014679, + "learning_rate": 0.0006, + "loss": 3.61795711517334, + "step": 3310 + }, + { + "epoch": 45.992573176059416, + "grad_norm": 0.20002500712871552, + "learning_rate": 0.0006, + "loss": 3.6266353130340576, + "step": 3311 + }, + { + "epoch": 46.0, + "grad_norm": 0.22992220520973206, + "learning_rate": 0.0006, + "loss": 3.647242784500122, + "step": 3312 + }, + { + "epoch": 46.0, + "eval_loss": 3.9855220317840576, + "eval_runtime": 44.9108, + "eval_samples_per_second": 54.374, + "eval_steps_per_second": 3.407, + "step": 3312 + }, + { + "epoch": 46.01397990388816, + "grad_norm": 0.1976146101951599, + "learning_rate": 0.0006, + "loss": 3.5675041675567627, + "step": 3313 + }, + { + "epoch": 46.02795980777632, + "grad_norm": 0.2238360494375229, + "learning_rate": 0.0006, + "loss": 3.6077466011047363, + "step": 3314 + }, + { + "epoch": 46.04193971166448, + "grad_norm": 0.288669228553772, + "learning_rate": 0.0006, + "loss": 3.589958667755127, + "step": 3315 + }, + { + "epoch": 46.05591961555265, + "grad_norm": 0.30626827478408813, + "learning_rate": 0.0006, + "loss": 3.604401111602783, + "step": 3316 + }, + { + "epoch": 46.0698995194408, + "grad_norm": 0.2721095681190491, + "learning_rate": 0.0006, + "loss": 3.620197296142578, + "step": 3317 + }, + { + "epoch": 46.083879423328966, + "grad_norm": 0.2152107059955597, + "learning_rate": 0.0006, + "loss": 3.607327938079834, + "step": 3318 + }, + { + "epoch": 46.09785932721712, + "grad_norm": 0.2205267995595932, + "learning_rate": 0.0006, + "loss": 3.6020898818969727, + "step": 3319 + }, + { + "epoch": 46.111839231105286, + "grad_norm": 0.25419551134109497, + "learning_rate": 0.0006, + "loss": 3.59277606010437, + "step": 3320 + }, + { + "epoch": 46.12581913499345, + "grad_norm": 0.2379811704158783, + "learning_rate": 0.0006, + "loss": 3.560422897338867, + "step": 3321 + }, + { + "epoch": 46.139799038881605, + "grad_norm": 0.20928747951984406, + "learning_rate": 0.0006, + "loss": 3.6373965740203857, + "step": 3322 + }, + { + "epoch": 46.15377894276977, + "grad_norm": 0.21654292941093445, + "learning_rate": 0.0006, + "loss": 3.620784282684326, + "step": 3323 + }, + { + "epoch": 46.16775884665793, + "grad_norm": 0.22994576394557953, + "learning_rate": 0.0006, + "loss": 3.589960813522339, + "step": 3324 + }, + { + "epoch": 46.18173875054609, + "grad_norm": 0.24989335238933563, + "learning_rate": 0.0006, + "loss": 3.599091053009033, + "step": 3325 + }, + { + "epoch": 46.19571865443425, + "grad_norm": 0.27068355679512024, + "learning_rate": 0.0006, + "loss": 3.5933146476745605, + "step": 3326 + }, + { + "epoch": 46.20969855832241, + "grad_norm": 0.2581503391265869, + "learning_rate": 0.0006, + "loss": 3.5935447216033936, + "step": 3327 + }, + { + "epoch": 46.22367846221057, + "grad_norm": 0.23368583619594574, + "learning_rate": 0.0006, + "loss": 3.6120412349700928, + "step": 3328 + }, + { + "epoch": 46.237658366098735, + "grad_norm": 0.21808452904224396, + "learning_rate": 0.0006, + "loss": 3.6155190467834473, + "step": 3329 + }, + { + "epoch": 46.25163826998689, + "grad_norm": 0.2152830809354782, + "learning_rate": 0.0006, + "loss": 3.6039974689483643, + "step": 3330 + }, + { + "epoch": 46.265618173875055, + "grad_norm": 0.20902983844280243, + "learning_rate": 0.0006, + "loss": 3.586416721343994, + "step": 3331 + }, + { + "epoch": 46.27959807776322, + "grad_norm": 0.21693682670593262, + "learning_rate": 0.0006, + "loss": 3.601595401763916, + "step": 3332 + }, + { + "epoch": 46.293577981651374, + "grad_norm": 0.21157346665859222, + "learning_rate": 0.0006, + "loss": 3.619825601577759, + "step": 3333 + }, + { + "epoch": 46.30755788553954, + "grad_norm": 0.19628529250621796, + "learning_rate": 0.0006, + "loss": 3.5845298767089844, + "step": 3334 + }, + { + "epoch": 46.3215377894277, + "grad_norm": 0.19599373638629913, + "learning_rate": 0.0006, + "loss": 3.614483594894409, + "step": 3335 + }, + { + "epoch": 46.33551769331586, + "grad_norm": 0.21777382493019104, + "learning_rate": 0.0006, + "loss": 3.5865678787231445, + "step": 3336 + }, + { + "epoch": 46.34949759720402, + "grad_norm": 0.24697323143482208, + "learning_rate": 0.0006, + "loss": 3.6168298721313477, + "step": 3337 + }, + { + "epoch": 46.36347750109218, + "grad_norm": 0.29521632194519043, + "learning_rate": 0.0006, + "loss": 3.627875804901123, + "step": 3338 + }, + { + "epoch": 46.37745740498034, + "grad_norm": 0.2548002004623413, + "learning_rate": 0.0006, + "loss": 3.6286001205444336, + "step": 3339 + }, + { + "epoch": 46.391437308868504, + "grad_norm": 0.20501002669334412, + "learning_rate": 0.0006, + "loss": 3.625035524368286, + "step": 3340 + }, + { + "epoch": 46.40541721275666, + "grad_norm": 0.21849584579467773, + "learning_rate": 0.0006, + "loss": 3.621872901916504, + "step": 3341 + }, + { + "epoch": 46.419397116644824, + "grad_norm": 0.22302033007144928, + "learning_rate": 0.0006, + "loss": 3.6088266372680664, + "step": 3342 + }, + { + "epoch": 46.43337702053299, + "grad_norm": 0.21138787269592285, + "learning_rate": 0.0006, + "loss": 3.6211094856262207, + "step": 3343 + }, + { + "epoch": 46.44735692442114, + "grad_norm": 0.22372713685035706, + "learning_rate": 0.0006, + "loss": 3.5799427032470703, + "step": 3344 + }, + { + "epoch": 46.46133682830931, + "grad_norm": 0.22019316256046295, + "learning_rate": 0.0006, + "loss": 3.616044044494629, + "step": 3345 + }, + { + "epoch": 46.47531673219746, + "grad_norm": 0.21947625279426575, + "learning_rate": 0.0006, + "loss": 3.613643169403076, + "step": 3346 + }, + { + "epoch": 46.489296636085626, + "grad_norm": 0.21935684978961945, + "learning_rate": 0.0006, + "loss": 3.6255440711975098, + "step": 3347 + }, + { + "epoch": 46.50327653997379, + "grad_norm": 0.20366479456424713, + "learning_rate": 0.0006, + "loss": 3.613892078399658, + "step": 3348 + }, + { + "epoch": 46.517256443861946, + "grad_norm": 0.21755267679691315, + "learning_rate": 0.0006, + "loss": 3.617886543273926, + "step": 3349 + }, + { + "epoch": 46.53123634775011, + "grad_norm": 0.20023910701274872, + "learning_rate": 0.0006, + "loss": 3.6172280311584473, + "step": 3350 + }, + { + "epoch": 46.54521625163827, + "grad_norm": 0.20375007390975952, + "learning_rate": 0.0006, + "loss": 3.595829486846924, + "step": 3351 + }, + { + "epoch": 46.55919615552643, + "grad_norm": 0.21125391125679016, + "learning_rate": 0.0006, + "loss": 3.632533550262451, + "step": 3352 + }, + { + "epoch": 46.57317605941459, + "grad_norm": 0.2359670102596283, + "learning_rate": 0.0006, + "loss": 3.597811222076416, + "step": 3353 + }, + { + "epoch": 46.58715596330275, + "grad_norm": 0.21696777641773224, + "learning_rate": 0.0006, + "loss": 3.627127170562744, + "step": 3354 + }, + { + "epoch": 46.60113586719091, + "grad_norm": 0.21501564979553223, + "learning_rate": 0.0006, + "loss": 3.630887985229492, + "step": 3355 + }, + { + "epoch": 46.615115771079076, + "grad_norm": 0.21446822583675385, + "learning_rate": 0.0006, + "loss": 3.6075234413146973, + "step": 3356 + }, + { + "epoch": 46.62909567496723, + "grad_norm": 0.21508967876434326, + "learning_rate": 0.0006, + "loss": 3.626603603363037, + "step": 3357 + }, + { + "epoch": 46.643075578855395, + "grad_norm": 0.19969215989112854, + "learning_rate": 0.0006, + "loss": 3.6160733699798584, + "step": 3358 + }, + { + "epoch": 46.65705548274356, + "grad_norm": 0.19982007145881653, + "learning_rate": 0.0006, + "loss": 3.632960319519043, + "step": 3359 + }, + { + "epoch": 46.671035386631715, + "grad_norm": 0.1981230527162552, + "learning_rate": 0.0006, + "loss": 3.608591079711914, + "step": 3360 + }, + { + "epoch": 46.68501529051988, + "grad_norm": 0.19948643445968628, + "learning_rate": 0.0006, + "loss": 3.6100947856903076, + "step": 3361 + }, + { + "epoch": 46.69899519440804, + "grad_norm": 0.18967196345329285, + "learning_rate": 0.0006, + "loss": 3.6203439235687256, + "step": 3362 + }, + { + "epoch": 46.7129750982962, + "grad_norm": 0.20035311579704285, + "learning_rate": 0.0006, + "loss": 3.64508056640625, + "step": 3363 + }, + { + "epoch": 46.72695500218436, + "grad_norm": 0.21049824357032776, + "learning_rate": 0.0006, + "loss": 3.620095729827881, + "step": 3364 + }, + { + "epoch": 46.74093490607252, + "grad_norm": 0.21411995589733124, + "learning_rate": 0.0006, + "loss": 3.650815963745117, + "step": 3365 + }, + { + "epoch": 46.75491480996068, + "grad_norm": 0.18666061758995056, + "learning_rate": 0.0006, + "loss": 3.625699758529663, + "step": 3366 + }, + { + "epoch": 46.768894713848844, + "grad_norm": 0.1927071362733841, + "learning_rate": 0.0006, + "loss": 3.6165151596069336, + "step": 3367 + }, + { + "epoch": 46.782874617737, + "grad_norm": 0.2063879817724228, + "learning_rate": 0.0006, + "loss": 3.6182332038879395, + "step": 3368 + }, + { + "epoch": 46.796854521625164, + "grad_norm": 0.19215327501296997, + "learning_rate": 0.0006, + "loss": 3.607239246368408, + "step": 3369 + }, + { + "epoch": 46.81083442551333, + "grad_norm": 0.2074592262506485, + "learning_rate": 0.0006, + "loss": 3.624856948852539, + "step": 3370 + }, + { + "epoch": 46.824814329401484, + "grad_norm": 0.2184106856584549, + "learning_rate": 0.0006, + "loss": 3.628757953643799, + "step": 3371 + }, + { + "epoch": 46.83879423328965, + "grad_norm": 0.2203136682510376, + "learning_rate": 0.0006, + "loss": 3.625958204269409, + "step": 3372 + }, + { + "epoch": 46.8527741371778, + "grad_norm": 0.21920061111450195, + "learning_rate": 0.0006, + "loss": 3.6060733795166016, + "step": 3373 + }, + { + "epoch": 46.86675404106597, + "grad_norm": 0.2122412472963333, + "learning_rate": 0.0006, + "loss": 3.6126952171325684, + "step": 3374 + }, + { + "epoch": 46.88073394495413, + "grad_norm": 0.1971784383058548, + "learning_rate": 0.0006, + "loss": 3.637129783630371, + "step": 3375 + }, + { + "epoch": 46.89471384884229, + "grad_norm": 0.20824873447418213, + "learning_rate": 0.0006, + "loss": 3.62868070602417, + "step": 3376 + }, + { + "epoch": 46.90869375273045, + "grad_norm": 0.20157678425312042, + "learning_rate": 0.0006, + "loss": 3.6321873664855957, + "step": 3377 + }, + { + "epoch": 46.92267365661861, + "grad_norm": 0.1958925426006317, + "learning_rate": 0.0006, + "loss": 3.6513354778289795, + "step": 3378 + }, + { + "epoch": 46.93665356050677, + "grad_norm": 0.1969553828239441, + "learning_rate": 0.0006, + "loss": 3.6346323490142822, + "step": 3379 + }, + { + "epoch": 46.95063346439493, + "grad_norm": 0.19311924278736115, + "learning_rate": 0.0006, + "loss": 3.6673245429992676, + "step": 3380 + }, + { + "epoch": 46.964613368283096, + "grad_norm": 0.20341862738132477, + "learning_rate": 0.0006, + "loss": 3.680025339126587, + "step": 3381 + }, + { + "epoch": 46.97859327217125, + "grad_norm": 0.20667442679405212, + "learning_rate": 0.0006, + "loss": 3.632290840148926, + "step": 3382 + }, + { + "epoch": 46.992573176059416, + "grad_norm": 0.19141609966754913, + "learning_rate": 0.0006, + "loss": 3.659360647201538, + "step": 3383 + }, + { + "epoch": 47.0, + "grad_norm": 0.20981188118457794, + "learning_rate": 0.0006, + "loss": 3.653548240661621, + "step": 3384 + }, + { + "epoch": 47.0, + "eval_loss": 3.9833984375, + "eval_runtime": 44.4693, + "eval_samples_per_second": 54.914, + "eval_steps_per_second": 3.441, + "step": 3384 + }, + { + "epoch": 47.01397990388816, + "grad_norm": 0.1958128660917282, + "learning_rate": 0.0006, + "loss": 3.5778727531433105, + "step": 3385 + }, + { + "epoch": 47.02795980777632, + "grad_norm": 0.19728390872478485, + "learning_rate": 0.0006, + "loss": 3.5827393531799316, + "step": 3386 + }, + { + "epoch": 47.04193971166448, + "grad_norm": 0.18564026057720184, + "learning_rate": 0.0006, + "loss": 3.573071002960205, + "step": 3387 + }, + { + "epoch": 47.05591961555265, + "grad_norm": 0.20563258230686188, + "learning_rate": 0.0006, + "loss": 3.564330577850342, + "step": 3388 + }, + { + "epoch": 47.0698995194408, + "grad_norm": 0.21382158994674683, + "learning_rate": 0.0006, + "loss": 3.5976946353912354, + "step": 3389 + }, + { + "epoch": 47.083879423328966, + "grad_norm": 0.2383693903684616, + "learning_rate": 0.0006, + "loss": 3.5970897674560547, + "step": 3390 + }, + { + "epoch": 47.09785932721712, + "grad_norm": 0.24709449708461761, + "learning_rate": 0.0006, + "loss": 3.613409996032715, + "step": 3391 + }, + { + "epoch": 47.111839231105286, + "grad_norm": 0.2329784333705902, + "learning_rate": 0.0006, + "loss": 3.571023464202881, + "step": 3392 + }, + { + "epoch": 47.12581913499345, + "grad_norm": 0.2096954584121704, + "learning_rate": 0.0006, + "loss": 3.573697090148926, + "step": 3393 + }, + { + "epoch": 47.139799038881605, + "grad_norm": 0.21630050241947174, + "learning_rate": 0.0006, + "loss": 3.6085095405578613, + "step": 3394 + }, + { + "epoch": 47.15377894276977, + "grad_norm": 0.22828878462314606, + "learning_rate": 0.0006, + "loss": 3.605466842651367, + "step": 3395 + }, + { + "epoch": 47.16775884665793, + "grad_norm": 0.24957625567913055, + "learning_rate": 0.0006, + "loss": 3.588324546813965, + "step": 3396 + }, + { + "epoch": 47.18173875054609, + "grad_norm": 0.25446194410324097, + "learning_rate": 0.0006, + "loss": 3.6161458492279053, + "step": 3397 + }, + { + "epoch": 47.19571865443425, + "grad_norm": 0.24938438832759857, + "learning_rate": 0.0006, + "loss": 3.6017847061157227, + "step": 3398 + }, + { + "epoch": 47.20969855832241, + "grad_norm": 0.23318032920360565, + "learning_rate": 0.0006, + "loss": 3.6077046394348145, + "step": 3399 + }, + { + "epoch": 47.22367846221057, + "grad_norm": 0.2179042547941208, + "learning_rate": 0.0006, + "loss": 3.598104953765869, + "step": 3400 + }, + { + "epoch": 47.237658366098735, + "grad_norm": 0.213354229927063, + "learning_rate": 0.0006, + "loss": 3.6328814029693604, + "step": 3401 + }, + { + "epoch": 47.25163826998689, + "grad_norm": 0.23104089498519897, + "learning_rate": 0.0006, + "loss": 3.6161890029907227, + "step": 3402 + }, + { + "epoch": 47.265618173875055, + "grad_norm": 0.22219021618366241, + "learning_rate": 0.0006, + "loss": 3.620314121246338, + "step": 3403 + }, + { + "epoch": 47.27959807776322, + "grad_norm": 0.21618683636188507, + "learning_rate": 0.0006, + "loss": 3.5955371856689453, + "step": 3404 + }, + { + "epoch": 47.293577981651374, + "grad_norm": 0.22280243039131165, + "learning_rate": 0.0006, + "loss": 3.618302345275879, + "step": 3405 + }, + { + "epoch": 47.30755788553954, + "grad_norm": 0.2268427014350891, + "learning_rate": 0.0006, + "loss": 3.6035101413726807, + "step": 3406 + }, + { + "epoch": 47.3215377894277, + "grad_norm": 0.20324429869651794, + "learning_rate": 0.0006, + "loss": 3.612598419189453, + "step": 3407 + }, + { + "epoch": 47.33551769331586, + "grad_norm": 0.19353045523166656, + "learning_rate": 0.0006, + "loss": 3.5951499938964844, + "step": 3408 + }, + { + "epoch": 47.34949759720402, + "grad_norm": 0.19008080661296844, + "learning_rate": 0.0006, + "loss": 3.6177732944488525, + "step": 3409 + }, + { + "epoch": 47.36347750109218, + "grad_norm": 0.19530250132083893, + "learning_rate": 0.0006, + "loss": 3.597903251647949, + "step": 3410 + }, + { + "epoch": 47.37745740498034, + "grad_norm": 0.2083505541086197, + "learning_rate": 0.0006, + "loss": 3.6062350273132324, + "step": 3411 + }, + { + "epoch": 47.391437308868504, + "grad_norm": 0.2241518199443817, + "learning_rate": 0.0006, + "loss": 3.6084704399108887, + "step": 3412 + }, + { + "epoch": 47.40541721275666, + "grad_norm": 0.25763124227523804, + "learning_rate": 0.0006, + "loss": 3.600295066833496, + "step": 3413 + }, + { + "epoch": 47.419397116644824, + "grad_norm": 0.2689114212989807, + "learning_rate": 0.0006, + "loss": 3.648848533630371, + "step": 3414 + }, + { + "epoch": 47.43337702053299, + "grad_norm": 0.30106639862060547, + "learning_rate": 0.0006, + "loss": 3.6248483657836914, + "step": 3415 + }, + { + "epoch": 47.44735692442114, + "grad_norm": 0.31840384006500244, + "learning_rate": 0.0006, + "loss": 3.6256890296936035, + "step": 3416 + }, + { + "epoch": 47.46133682830931, + "grad_norm": 0.2603468894958496, + "learning_rate": 0.0006, + "loss": 3.6225175857543945, + "step": 3417 + }, + { + "epoch": 47.47531673219746, + "grad_norm": 0.33408305048942566, + "learning_rate": 0.0006, + "loss": 3.590303897857666, + "step": 3418 + }, + { + "epoch": 47.489296636085626, + "grad_norm": 0.3677918612957001, + "learning_rate": 0.0006, + "loss": 3.6005120277404785, + "step": 3419 + }, + { + "epoch": 47.50327653997379, + "grad_norm": 0.23077215254306793, + "learning_rate": 0.0006, + "loss": 3.6093883514404297, + "step": 3420 + }, + { + "epoch": 47.517256443861946, + "grad_norm": 0.27272120118141174, + "learning_rate": 0.0006, + "loss": 3.580151081085205, + "step": 3421 + }, + { + "epoch": 47.53123634775011, + "grad_norm": 0.22629371285438538, + "learning_rate": 0.0006, + "loss": 3.6375746726989746, + "step": 3422 + }, + { + "epoch": 47.54521625163827, + "grad_norm": 0.2376468926668167, + "learning_rate": 0.0006, + "loss": 3.6492481231689453, + "step": 3423 + }, + { + "epoch": 47.55919615552643, + "grad_norm": 0.21200433373451233, + "learning_rate": 0.0006, + "loss": 3.6258158683776855, + "step": 3424 + }, + { + "epoch": 47.57317605941459, + "grad_norm": 0.2246236652135849, + "learning_rate": 0.0006, + "loss": 3.6199564933776855, + "step": 3425 + }, + { + "epoch": 47.58715596330275, + "grad_norm": 0.21713437139987946, + "learning_rate": 0.0006, + "loss": 3.638197898864746, + "step": 3426 + }, + { + "epoch": 47.60113586719091, + "grad_norm": 0.1964627057313919, + "learning_rate": 0.0006, + "loss": 3.6334147453308105, + "step": 3427 + }, + { + "epoch": 47.615115771079076, + "grad_norm": 0.21705810725688934, + "learning_rate": 0.0006, + "loss": 3.6298668384552, + "step": 3428 + }, + { + "epoch": 47.62909567496723, + "grad_norm": 0.20376256108283997, + "learning_rate": 0.0006, + "loss": 3.6127166748046875, + "step": 3429 + }, + { + "epoch": 47.643075578855395, + "grad_norm": 0.20046672224998474, + "learning_rate": 0.0006, + "loss": 3.633683681488037, + "step": 3430 + }, + { + "epoch": 47.65705548274356, + "grad_norm": 0.21494409441947937, + "learning_rate": 0.0006, + "loss": 3.635828971862793, + "step": 3431 + }, + { + "epoch": 47.671035386631715, + "grad_norm": 0.24550487101078033, + "learning_rate": 0.0006, + "loss": 3.6056854724884033, + "step": 3432 + }, + { + "epoch": 47.68501529051988, + "grad_norm": 0.24416600167751312, + "learning_rate": 0.0006, + "loss": 3.618785858154297, + "step": 3433 + }, + { + "epoch": 47.69899519440804, + "grad_norm": 0.22872993350028992, + "learning_rate": 0.0006, + "loss": 3.6189026832580566, + "step": 3434 + }, + { + "epoch": 47.7129750982962, + "grad_norm": 0.23609530925750732, + "learning_rate": 0.0006, + "loss": 3.623661518096924, + "step": 3435 + }, + { + "epoch": 47.72695500218436, + "grad_norm": 0.22905564308166504, + "learning_rate": 0.0006, + "loss": 3.6155691146850586, + "step": 3436 + }, + { + "epoch": 47.74093490607252, + "grad_norm": 0.25507304072380066, + "learning_rate": 0.0006, + "loss": 3.5848331451416016, + "step": 3437 + }, + { + "epoch": 47.75491480996068, + "grad_norm": 0.24594344198703766, + "learning_rate": 0.0006, + "loss": 3.588374614715576, + "step": 3438 + }, + { + "epoch": 47.768894713848844, + "grad_norm": 0.23131750524044037, + "learning_rate": 0.0006, + "loss": 3.6164474487304688, + "step": 3439 + }, + { + "epoch": 47.782874617737, + "grad_norm": 0.21967829763889313, + "learning_rate": 0.0006, + "loss": 3.619150161743164, + "step": 3440 + }, + { + "epoch": 47.796854521625164, + "grad_norm": 0.226309135556221, + "learning_rate": 0.0006, + "loss": 3.5946340560913086, + "step": 3441 + }, + { + "epoch": 47.81083442551333, + "grad_norm": 0.23141087591648102, + "learning_rate": 0.0006, + "loss": 3.614711046218872, + "step": 3442 + }, + { + "epoch": 47.824814329401484, + "grad_norm": 0.20917707681655884, + "learning_rate": 0.0006, + "loss": 3.610058307647705, + "step": 3443 + }, + { + "epoch": 47.83879423328965, + "grad_norm": 0.22864583134651184, + "learning_rate": 0.0006, + "loss": 3.6396052837371826, + "step": 3444 + }, + { + "epoch": 47.8527741371778, + "grad_norm": 0.22201144695281982, + "learning_rate": 0.0006, + "loss": 3.6462526321411133, + "step": 3445 + }, + { + "epoch": 47.86675404106597, + "grad_norm": 0.21199125051498413, + "learning_rate": 0.0006, + "loss": 3.6090314388275146, + "step": 3446 + }, + { + "epoch": 47.88073394495413, + "grad_norm": 0.2236194908618927, + "learning_rate": 0.0006, + "loss": 3.6308231353759766, + "step": 3447 + }, + { + "epoch": 47.89471384884229, + "grad_norm": 0.21571075916290283, + "learning_rate": 0.0006, + "loss": 3.5899293422698975, + "step": 3448 + }, + { + "epoch": 47.90869375273045, + "grad_norm": 0.2320997267961502, + "learning_rate": 0.0006, + "loss": 3.6360764503479004, + "step": 3449 + }, + { + "epoch": 47.92267365661861, + "grad_norm": 0.2304147630929947, + "learning_rate": 0.0006, + "loss": 3.61220121383667, + "step": 3450 + }, + { + "epoch": 47.93665356050677, + "grad_norm": 0.2321154624223709, + "learning_rate": 0.0006, + "loss": 3.6104419231414795, + "step": 3451 + }, + { + "epoch": 47.95063346439493, + "grad_norm": 0.20895935595035553, + "learning_rate": 0.0006, + "loss": 3.6372952461242676, + "step": 3452 + }, + { + "epoch": 47.964613368283096, + "grad_norm": 0.19926418364048004, + "learning_rate": 0.0006, + "loss": 3.652947425842285, + "step": 3453 + }, + { + "epoch": 47.97859327217125, + "grad_norm": 0.22443149983882904, + "learning_rate": 0.0006, + "loss": 3.6005635261535645, + "step": 3454 + }, + { + "epoch": 47.992573176059416, + "grad_norm": 0.2361244559288025, + "learning_rate": 0.0006, + "loss": 3.626563549041748, + "step": 3455 + }, + { + "epoch": 48.0, + "grad_norm": 0.2542579174041748, + "learning_rate": 0.0006, + "loss": 3.619098663330078, + "step": 3456 + }, + { + "epoch": 48.0, + "eval_loss": 3.9787564277648926, + "eval_runtime": 44.3429, + "eval_samples_per_second": 55.071, + "eval_steps_per_second": 3.45, + "step": 3456 + }, + { + "epoch": 48.01397990388816, + "grad_norm": 0.21771088242530823, + "learning_rate": 0.0006, + "loss": 3.538780927658081, + "step": 3457 + }, + { + "epoch": 48.02795980777632, + "grad_norm": 0.23467740416526794, + "learning_rate": 0.0006, + "loss": 3.5875978469848633, + "step": 3458 + }, + { + "epoch": 48.04193971166448, + "grad_norm": 0.2527692914009094, + "learning_rate": 0.0006, + "loss": 3.5939159393310547, + "step": 3459 + }, + { + "epoch": 48.05591961555265, + "grad_norm": 0.21477685868740082, + "learning_rate": 0.0006, + "loss": 3.600374698638916, + "step": 3460 + }, + { + "epoch": 48.0698995194408, + "grad_norm": 0.22008976340293884, + "learning_rate": 0.0006, + "loss": 3.6058406829833984, + "step": 3461 + }, + { + "epoch": 48.083879423328966, + "grad_norm": 0.23344817757606506, + "learning_rate": 0.0006, + "loss": 3.5864410400390625, + "step": 3462 + }, + { + "epoch": 48.09785932721712, + "grad_norm": 0.24451610445976257, + "learning_rate": 0.0006, + "loss": 3.5827221870422363, + "step": 3463 + }, + { + "epoch": 48.111839231105286, + "grad_norm": 0.24536925554275513, + "learning_rate": 0.0006, + "loss": 3.566275119781494, + "step": 3464 + }, + { + "epoch": 48.12581913499345, + "grad_norm": 0.24060940742492676, + "learning_rate": 0.0006, + "loss": 3.575841188430786, + "step": 3465 + }, + { + "epoch": 48.139799038881605, + "grad_norm": 0.24829573929309845, + "learning_rate": 0.0006, + "loss": 3.6215152740478516, + "step": 3466 + }, + { + "epoch": 48.15377894276977, + "grad_norm": 0.2651045024394989, + "learning_rate": 0.0006, + "loss": 3.604381561279297, + "step": 3467 + }, + { + "epoch": 48.16775884665793, + "grad_norm": 0.2654518187046051, + "learning_rate": 0.0006, + "loss": 3.5989198684692383, + "step": 3468 + }, + { + "epoch": 48.18173875054609, + "grad_norm": 0.25179797410964966, + "learning_rate": 0.0006, + "loss": 3.596402168273926, + "step": 3469 + }, + { + "epoch": 48.19571865443425, + "grad_norm": 0.24018050730228424, + "learning_rate": 0.0006, + "loss": 3.6376051902770996, + "step": 3470 + }, + { + "epoch": 48.20969855832241, + "grad_norm": 0.22079682350158691, + "learning_rate": 0.0006, + "loss": 3.5990993976593018, + "step": 3471 + }, + { + "epoch": 48.22367846221057, + "grad_norm": 0.23267143964767456, + "learning_rate": 0.0006, + "loss": 3.614759683609009, + "step": 3472 + }, + { + "epoch": 48.237658366098735, + "grad_norm": 0.21822260320186615, + "learning_rate": 0.0006, + "loss": 3.6057262420654297, + "step": 3473 + }, + { + "epoch": 48.25163826998689, + "grad_norm": 0.23391997814178467, + "learning_rate": 0.0006, + "loss": 3.581972599029541, + "step": 3474 + }, + { + "epoch": 48.265618173875055, + "grad_norm": 0.22634121775627136, + "learning_rate": 0.0006, + "loss": 3.592149496078491, + "step": 3475 + }, + { + "epoch": 48.27959807776322, + "grad_norm": 0.2142419070005417, + "learning_rate": 0.0006, + "loss": 3.616722583770752, + "step": 3476 + }, + { + "epoch": 48.293577981651374, + "grad_norm": 0.227144256234169, + "learning_rate": 0.0006, + "loss": 3.6018447875976562, + "step": 3477 + }, + { + "epoch": 48.30755788553954, + "grad_norm": 0.25466978549957275, + "learning_rate": 0.0006, + "loss": 3.5795769691467285, + "step": 3478 + }, + { + "epoch": 48.3215377894277, + "grad_norm": 0.2409234344959259, + "learning_rate": 0.0006, + "loss": 3.5845530033111572, + "step": 3479 + }, + { + "epoch": 48.33551769331586, + "grad_norm": 0.22001305222511292, + "learning_rate": 0.0006, + "loss": 3.5861806869506836, + "step": 3480 + }, + { + "epoch": 48.34949759720402, + "grad_norm": 0.24980100989341736, + "learning_rate": 0.0006, + "loss": 3.6032233238220215, + "step": 3481 + }, + { + "epoch": 48.36347750109218, + "grad_norm": 0.28788816928863525, + "learning_rate": 0.0006, + "loss": 3.5876364707946777, + "step": 3482 + }, + { + "epoch": 48.37745740498034, + "grad_norm": 0.26172295212745667, + "learning_rate": 0.0006, + "loss": 3.5711276531219482, + "step": 3483 + }, + { + "epoch": 48.391437308868504, + "grad_norm": 0.23881542682647705, + "learning_rate": 0.0006, + "loss": 3.57108473777771, + "step": 3484 + }, + { + "epoch": 48.40541721275666, + "grad_norm": 0.22385981678962708, + "learning_rate": 0.0006, + "loss": 3.6197509765625, + "step": 3485 + }, + { + "epoch": 48.419397116644824, + "grad_norm": 0.21007859706878662, + "learning_rate": 0.0006, + "loss": 3.609449625015259, + "step": 3486 + }, + { + "epoch": 48.43337702053299, + "grad_norm": 0.21170279383659363, + "learning_rate": 0.0006, + "loss": 3.5981619358062744, + "step": 3487 + }, + { + "epoch": 48.44735692442114, + "grad_norm": 0.2100721150636673, + "learning_rate": 0.0006, + "loss": 3.606505870819092, + "step": 3488 + }, + { + "epoch": 48.46133682830931, + "grad_norm": 0.20408287644386292, + "learning_rate": 0.0006, + "loss": 3.6033859252929688, + "step": 3489 + }, + { + "epoch": 48.47531673219746, + "grad_norm": 0.20343686640262604, + "learning_rate": 0.0006, + "loss": 3.6249616146087646, + "step": 3490 + }, + { + "epoch": 48.489296636085626, + "grad_norm": 0.20570123195648193, + "learning_rate": 0.0006, + "loss": 3.5700693130493164, + "step": 3491 + }, + { + "epoch": 48.50327653997379, + "grad_norm": 0.2511707544326782, + "learning_rate": 0.0006, + "loss": 3.6432406902313232, + "step": 3492 + }, + { + "epoch": 48.517256443861946, + "grad_norm": 0.265960693359375, + "learning_rate": 0.0006, + "loss": 3.6329426765441895, + "step": 3493 + }, + { + "epoch": 48.53123634775011, + "grad_norm": 0.25830161571502686, + "learning_rate": 0.0006, + "loss": 3.593940258026123, + "step": 3494 + }, + { + "epoch": 48.54521625163827, + "grad_norm": 0.2232893705368042, + "learning_rate": 0.0006, + "loss": 3.623812198638916, + "step": 3495 + }, + { + "epoch": 48.55919615552643, + "grad_norm": 0.20818902552127838, + "learning_rate": 0.0006, + "loss": 3.5982813835144043, + "step": 3496 + }, + { + "epoch": 48.57317605941459, + "grad_norm": 0.2756865918636322, + "learning_rate": 0.0006, + "loss": 3.617436170578003, + "step": 3497 + }, + { + "epoch": 48.58715596330275, + "grad_norm": 0.2361520677804947, + "learning_rate": 0.0006, + "loss": 3.598113536834717, + "step": 3498 + }, + { + "epoch": 48.60113586719091, + "grad_norm": 0.1956835240125656, + "learning_rate": 0.0006, + "loss": 3.581003189086914, + "step": 3499 + }, + { + "epoch": 48.615115771079076, + "grad_norm": 0.2863931953907013, + "learning_rate": 0.0006, + "loss": 3.596768379211426, + "step": 3500 + }, + { + "epoch": 48.62909567496723, + "grad_norm": 0.29865020513534546, + "learning_rate": 0.0006, + "loss": 3.576995372772217, + "step": 3501 + }, + { + "epoch": 48.643075578855395, + "grad_norm": 0.23084872961044312, + "learning_rate": 0.0006, + "loss": 3.6431074142456055, + "step": 3502 + }, + { + "epoch": 48.65705548274356, + "grad_norm": 0.2081640362739563, + "learning_rate": 0.0006, + "loss": 3.6002132892608643, + "step": 3503 + }, + { + "epoch": 48.671035386631715, + "grad_norm": 0.20566335320472717, + "learning_rate": 0.0006, + "loss": 3.62365460395813, + "step": 3504 + }, + { + "epoch": 48.68501529051988, + "grad_norm": 0.2066725790500641, + "learning_rate": 0.0006, + "loss": 3.6063363552093506, + "step": 3505 + }, + { + "epoch": 48.69899519440804, + "grad_norm": 0.19830003380775452, + "learning_rate": 0.0006, + "loss": 3.617750883102417, + "step": 3506 + }, + { + "epoch": 48.7129750982962, + "grad_norm": 0.20409031212329865, + "learning_rate": 0.0006, + "loss": 3.6110005378723145, + "step": 3507 + }, + { + "epoch": 48.72695500218436, + "grad_norm": 0.20836064219474792, + "learning_rate": 0.0006, + "loss": 3.6148147583007812, + "step": 3508 + }, + { + "epoch": 48.74093490607252, + "grad_norm": 0.21660791337490082, + "learning_rate": 0.0006, + "loss": 3.641488790512085, + "step": 3509 + }, + { + "epoch": 48.75491480996068, + "grad_norm": 0.21075023710727692, + "learning_rate": 0.0006, + "loss": 3.6327688694000244, + "step": 3510 + }, + { + "epoch": 48.768894713848844, + "grad_norm": 0.19346074759960175, + "learning_rate": 0.0006, + "loss": 3.6025185585021973, + "step": 3511 + }, + { + "epoch": 48.782874617737, + "grad_norm": 0.20215240120887756, + "learning_rate": 0.0006, + "loss": 3.595707416534424, + "step": 3512 + }, + { + "epoch": 48.796854521625164, + "grad_norm": 0.1913122832775116, + "learning_rate": 0.0006, + "loss": 3.618406295776367, + "step": 3513 + }, + { + "epoch": 48.81083442551333, + "grad_norm": 0.18517033755779266, + "learning_rate": 0.0006, + "loss": 3.6212055683135986, + "step": 3514 + }, + { + "epoch": 48.824814329401484, + "grad_norm": 0.20453064143657684, + "learning_rate": 0.0006, + "loss": 3.5941221714019775, + "step": 3515 + }, + { + "epoch": 48.83879423328965, + "grad_norm": 0.20777031779289246, + "learning_rate": 0.0006, + "loss": 3.630701780319214, + "step": 3516 + }, + { + "epoch": 48.8527741371778, + "grad_norm": 0.23713789880275726, + "learning_rate": 0.0006, + "loss": 3.629256248474121, + "step": 3517 + }, + { + "epoch": 48.86675404106597, + "grad_norm": 0.1945258378982544, + "learning_rate": 0.0006, + "loss": 3.607020854949951, + "step": 3518 + }, + { + "epoch": 48.88073394495413, + "grad_norm": 0.19601863622665405, + "learning_rate": 0.0006, + "loss": 3.6200907230377197, + "step": 3519 + }, + { + "epoch": 48.89471384884229, + "grad_norm": 0.20068836212158203, + "learning_rate": 0.0006, + "loss": 3.58575701713562, + "step": 3520 + }, + { + "epoch": 48.90869375273045, + "grad_norm": 0.21790200471878052, + "learning_rate": 0.0006, + "loss": 3.6451416015625, + "step": 3521 + }, + { + "epoch": 48.92267365661861, + "grad_norm": 0.22265756130218506, + "learning_rate": 0.0006, + "loss": 3.621331214904785, + "step": 3522 + }, + { + "epoch": 48.93665356050677, + "grad_norm": 0.20316730439662933, + "learning_rate": 0.0006, + "loss": 3.614537239074707, + "step": 3523 + }, + { + "epoch": 48.95063346439493, + "grad_norm": 0.20275238156318665, + "learning_rate": 0.0006, + "loss": 3.5913281440734863, + "step": 3524 + }, + { + "epoch": 48.964613368283096, + "grad_norm": 0.20239883661270142, + "learning_rate": 0.0006, + "loss": 3.608638286590576, + "step": 3525 + }, + { + "epoch": 48.97859327217125, + "grad_norm": 0.21154041588306427, + "learning_rate": 0.0006, + "loss": 3.6233115196228027, + "step": 3526 + }, + { + "epoch": 48.992573176059416, + "grad_norm": 0.22368352115154266, + "learning_rate": 0.0006, + "loss": 3.599665880203247, + "step": 3527 + }, + { + "epoch": 49.0, + "grad_norm": 0.2675703763961792, + "learning_rate": 0.0006, + "loss": 3.637458086013794, + "step": 3528 + }, + { + "epoch": 49.0, + "eval_loss": 3.985574245452881, + "eval_runtime": 44.55, + "eval_samples_per_second": 54.815, + "eval_steps_per_second": 3.434, + "step": 3528 + }, + { + "epoch": 49.01397990388816, + "grad_norm": 0.2911863625049591, + "learning_rate": 0.0006, + "loss": 3.606170654296875, + "step": 3529 + }, + { + "epoch": 49.02795980777632, + "grad_norm": 0.26640036702156067, + "learning_rate": 0.0006, + "loss": 3.5662899017333984, + "step": 3530 + }, + { + "epoch": 49.04193971166448, + "grad_norm": 0.23250512778759003, + "learning_rate": 0.0006, + "loss": 3.5928688049316406, + "step": 3531 + }, + { + "epoch": 49.05591961555265, + "grad_norm": 0.2603093385696411, + "learning_rate": 0.0006, + "loss": 3.5702433586120605, + "step": 3532 + }, + { + "epoch": 49.0698995194408, + "grad_norm": 0.2711663246154785, + "learning_rate": 0.0006, + "loss": 3.591977596282959, + "step": 3533 + }, + { + "epoch": 49.083879423328966, + "grad_norm": 0.2536148130893707, + "learning_rate": 0.0006, + "loss": 3.5924272537231445, + "step": 3534 + }, + { + "epoch": 49.09785932721712, + "grad_norm": 0.22995208203792572, + "learning_rate": 0.0006, + "loss": 3.5760092735290527, + "step": 3535 + }, + { + "epoch": 49.111839231105286, + "grad_norm": 0.22327162325382233, + "learning_rate": 0.0006, + "loss": 3.6072137355804443, + "step": 3536 + }, + { + "epoch": 49.12581913499345, + "grad_norm": 0.2256365567445755, + "learning_rate": 0.0006, + "loss": 3.6156117916107178, + "step": 3537 + }, + { + "epoch": 49.139799038881605, + "grad_norm": 0.23647814989089966, + "learning_rate": 0.0006, + "loss": 3.5862512588500977, + "step": 3538 + }, + { + "epoch": 49.15377894276977, + "grad_norm": 0.23442648351192474, + "learning_rate": 0.0006, + "loss": 3.606386184692383, + "step": 3539 + }, + { + "epoch": 49.16775884665793, + "grad_norm": 0.22148385643959045, + "learning_rate": 0.0006, + "loss": 3.5564064979553223, + "step": 3540 + }, + { + "epoch": 49.18173875054609, + "grad_norm": 0.24589644372463226, + "learning_rate": 0.0006, + "loss": 3.5625576972961426, + "step": 3541 + }, + { + "epoch": 49.19571865443425, + "grad_norm": 0.23955261707305908, + "learning_rate": 0.0006, + "loss": 3.617833137512207, + "step": 3542 + }, + { + "epoch": 49.20969855832241, + "grad_norm": 0.2781425416469574, + "learning_rate": 0.0006, + "loss": 3.6153502464294434, + "step": 3543 + }, + { + "epoch": 49.22367846221057, + "grad_norm": 0.2622034549713135, + "learning_rate": 0.0006, + "loss": 3.608530044555664, + "step": 3544 + }, + { + "epoch": 49.237658366098735, + "grad_norm": 0.28407761454582214, + "learning_rate": 0.0006, + "loss": 3.572207450866699, + "step": 3545 + }, + { + "epoch": 49.25163826998689, + "grad_norm": 0.2722281217575073, + "learning_rate": 0.0006, + "loss": 3.591392755508423, + "step": 3546 + }, + { + "epoch": 49.265618173875055, + "grad_norm": 0.20608903467655182, + "learning_rate": 0.0006, + "loss": 3.598421573638916, + "step": 3547 + }, + { + "epoch": 49.27959807776322, + "grad_norm": 0.27233049273490906, + "learning_rate": 0.0006, + "loss": 3.5819201469421387, + "step": 3548 + }, + { + "epoch": 49.293577981651374, + "grad_norm": 0.26182129979133606, + "learning_rate": 0.0006, + "loss": 3.5855109691619873, + "step": 3549 + }, + { + "epoch": 49.30755788553954, + "grad_norm": 0.20255911350250244, + "learning_rate": 0.0006, + "loss": 3.569438934326172, + "step": 3550 + }, + { + "epoch": 49.3215377894277, + "grad_norm": 0.20045310258865356, + "learning_rate": 0.0006, + "loss": 3.5888795852661133, + "step": 3551 + }, + { + "epoch": 49.33551769331586, + "grad_norm": 0.18505392968654633, + "learning_rate": 0.0006, + "loss": 3.565467596054077, + "step": 3552 + }, + { + "epoch": 49.34949759720402, + "grad_norm": 0.2057398110628128, + "learning_rate": 0.0006, + "loss": 3.5850436687469482, + "step": 3553 + }, + { + "epoch": 49.36347750109218, + "grad_norm": 0.20007790625095367, + "learning_rate": 0.0006, + "loss": 3.5963945388793945, + "step": 3554 + }, + { + "epoch": 49.37745740498034, + "grad_norm": 0.179341122508049, + "learning_rate": 0.0006, + "loss": 3.5747077465057373, + "step": 3555 + }, + { + "epoch": 49.391437308868504, + "grad_norm": 0.1978122442960739, + "learning_rate": 0.0006, + "loss": 3.605037212371826, + "step": 3556 + }, + { + "epoch": 49.40541721275666, + "grad_norm": 0.1936761885881424, + "learning_rate": 0.0006, + "loss": 3.6293420791625977, + "step": 3557 + }, + { + "epoch": 49.419397116644824, + "grad_norm": 0.20393748581409454, + "learning_rate": 0.0006, + "loss": 3.5616302490234375, + "step": 3558 + }, + { + "epoch": 49.43337702053299, + "grad_norm": 0.19082997739315033, + "learning_rate": 0.0006, + "loss": 3.605088472366333, + "step": 3559 + }, + { + "epoch": 49.44735692442114, + "grad_norm": 0.19642551243305206, + "learning_rate": 0.0006, + "loss": 3.610870361328125, + "step": 3560 + }, + { + "epoch": 49.46133682830931, + "grad_norm": 0.21815423667430878, + "learning_rate": 0.0006, + "loss": 3.60211181640625, + "step": 3561 + }, + { + "epoch": 49.47531673219746, + "grad_norm": 0.20342762768268585, + "learning_rate": 0.0006, + "loss": 3.597529411315918, + "step": 3562 + }, + { + "epoch": 49.489296636085626, + "grad_norm": 0.19032546877861023, + "learning_rate": 0.0006, + "loss": 3.5728795528411865, + "step": 3563 + }, + { + "epoch": 49.50327653997379, + "grad_norm": 0.18237556517124176, + "learning_rate": 0.0006, + "loss": 3.5983595848083496, + "step": 3564 + }, + { + "epoch": 49.517256443861946, + "grad_norm": 0.20585589110851288, + "learning_rate": 0.0006, + "loss": 3.578320264816284, + "step": 3565 + }, + { + "epoch": 49.53123634775011, + "grad_norm": 0.20158857107162476, + "learning_rate": 0.0006, + "loss": 3.5918798446655273, + "step": 3566 + }, + { + "epoch": 49.54521625163827, + "grad_norm": 0.20195038616657257, + "learning_rate": 0.0006, + "loss": 3.605422258377075, + "step": 3567 + }, + { + "epoch": 49.55919615552643, + "grad_norm": 0.19884084165096283, + "learning_rate": 0.0006, + "loss": 3.5964083671569824, + "step": 3568 + }, + { + "epoch": 49.57317605941459, + "grad_norm": 0.21243083477020264, + "learning_rate": 0.0006, + "loss": 3.5885486602783203, + "step": 3569 + }, + { + "epoch": 49.58715596330275, + "grad_norm": 0.21059481799602509, + "learning_rate": 0.0006, + "loss": 3.572526454925537, + "step": 3570 + }, + { + "epoch": 49.60113586719091, + "grad_norm": 0.20644313097000122, + "learning_rate": 0.0006, + "loss": 3.583679676055908, + "step": 3571 + }, + { + "epoch": 49.615115771079076, + "grad_norm": 0.21343673765659332, + "learning_rate": 0.0006, + "loss": 3.6211650371551514, + "step": 3572 + }, + { + "epoch": 49.62909567496723, + "grad_norm": 0.23395343124866486, + "learning_rate": 0.0006, + "loss": 3.6003336906433105, + "step": 3573 + }, + { + "epoch": 49.643075578855395, + "grad_norm": 0.19978424906730652, + "learning_rate": 0.0006, + "loss": 3.6066763401031494, + "step": 3574 + }, + { + "epoch": 49.65705548274356, + "grad_norm": 0.21529823541641235, + "learning_rate": 0.0006, + "loss": 3.601284980773926, + "step": 3575 + }, + { + "epoch": 49.671035386631715, + "grad_norm": 0.21672746539115906, + "learning_rate": 0.0006, + "loss": 3.6084227561950684, + "step": 3576 + }, + { + "epoch": 49.68501529051988, + "grad_norm": 0.20889638364315033, + "learning_rate": 0.0006, + "loss": 3.591568946838379, + "step": 3577 + }, + { + "epoch": 49.69899519440804, + "grad_norm": 0.1960221230983734, + "learning_rate": 0.0006, + "loss": 3.6180830001831055, + "step": 3578 + }, + { + "epoch": 49.7129750982962, + "grad_norm": 0.19712410867214203, + "learning_rate": 0.0006, + "loss": 3.6197333335876465, + "step": 3579 + }, + { + "epoch": 49.72695500218436, + "grad_norm": 0.20665284991264343, + "learning_rate": 0.0006, + "loss": 3.6251301765441895, + "step": 3580 + }, + { + "epoch": 49.74093490607252, + "grad_norm": 0.21018871665000916, + "learning_rate": 0.0006, + "loss": 3.621973991394043, + "step": 3581 + }, + { + "epoch": 49.75491480996068, + "grad_norm": 0.20777495205402374, + "learning_rate": 0.0006, + "loss": 3.5826358795166016, + "step": 3582 + }, + { + "epoch": 49.768894713848844, + "grad_norm": 0.18880195915699005, + "learning_rate": 0.0006, + "loss": 3.5946998596191406, + "step": 3583 + }, + { + "epoch": 49.782874617737, + "grad_norm": 0.19894644618034363, + "learning_rate": 0.0006, + "loss": 3.5912184715270996, + "step": 3584 + }, + { + "epoch": 49.796854521625164, + "grad_norm": 0.20128944516181946, + "learning_rate": 0.0006, + "loss": 3.6370394229888916, + "step": 3585 + }, + { + "epoch": 49.81083442551333, + "grad_norm": 0.19332024455070496, + "learning_rate": 0.0006, + "loss": 3.619018077850342, + "step": 3586 + }, + { + "epoch": 49.824814329401484, + "grad_norm": 0.19303865730762482, + "learning_rate": 0.0006, + "loss": 3.578667163848877, + "step": 3587 + }, + { + "epoch": 49.83879423328965, + "grad_norm": 0.20154757797718048, + "learning_rate": 0.0006, + "loss": 3.61959171295166, + "step": 3588 + }, + { + "epoch": 49.8527741371778, + "grad_norm": 0.19653639197349548, + "learning_rate": 0.0006, + "loss": 3.6437559127807617, + "step": 3589 + }, + { + "epoch": 49.86675404106597, + "grad_norm": 0.21873407065868378, + "learning_rate": 0.0006, + "loss": 3.6131112575531006, + "step": 3590 + }, + { + "epoch": 49.88073394495413, + "grad_norm": 0.20130383968353271, + "learning_rate": 0.0006, + "loss": 3.624028444290161, + "step": 3591 + }, + { + "epoch": 49.89471384884229, + "grad_norm": 0.20206475257873535, + "learning_rate": 0.0006, + "loss": 3.5997328758239746, + "step": 3592 + }, + { + "epoch": 49.90869375273045, + "grad_norm": 0.20393261313438416, + "learning_rate": 0.0006, + "loss": 3.596066474914551, + "step": 3593 + }, + { + "epoch": 49.92267365661861, + "grad_norm": 0.19703544676303864, + "learning_rate": 0.0006, + "loss": 3.624542713165283, + "step": 3594 + }, + { + "epoch": 49.93665356050677, + "grad_norm": 0.2102314680814743, + "learning_rate": 0.0006, + "loss": 3.6082515716552734, + "step": 3595 + }, + { + "epoch": 49.95063346439493, + "grad_norm": 0.23791316151618958, + "learning_rate": 0.0006, + "loss": 3.6185569763183594, + "step": 3596 + }, + { + "epoch": 49.964613368283096, + "grad_norm": 0.24536125361919403, + "learning_rate": 0.0006, + "loss": 3.599207878112793, + "step": 3597 + }, + { + "epoch": 49.97859327217125, + "grad_norm": 0.23160327970981598, + "learning_rate": 0.0006, + "loss": 3.600921869277954, + "step": 3598 + }, + { + "epoch": 49.992573176059416, + "grad_norm": 0.22740362584590912, + "learning_rate": 0.0006, + "loss": 3.6112914085388184, + "step": 3599 + }, + { + "epoch": 50.0, + "grad_norm": 0.24303272366523743, + "learning_rate": 0.0006, + "loss": 3.6385838985443115, + "step": 3600 + }, + { + "epoch": 50.0, + "eval_loss": 3.9811089038848877, + "eval_runtime": 44.9913, + "eval_samples_per_second": 54.277, + "eval_steps_per_second": 3.401, + "step": 3600 + }, + { + "epoch": 50.01397990388816, + "grad_norm": 0.20118683576583862, + "learning_rate": 0.0006, + "loss": 3.561751127243042, + "step": 3601 + }, + { + "epoch": 50.02795980777632, + "grad_norm": 0.18722538650035858, + "learning_rate": 0.0006, + "loss": 3.5742180347442627, + "step": 3602 + }, + { + "epoch": 50.04193971166448, + "grad_norm": 0.21248385310173035, + "learning_rate": 0.0006, + "loss": 3.5759401321411133, + "step": 3603 + }, + { + "epoch": 50.05591961555265, + "grad_norm": 0.21006572246551514, + "learning_rate": 0.0006, + "loss": 3.5737462043762207, + "step": 3604 + }, + { + "epoch": 50.0698995194408, + "grad_norm": 0.20671233534812927, + "learning_rate": 0.0006, + "loss": 3.548205852508545, + "step": 3605 + }, + { + "epoch": 50.083879423328966, + "grad_norm": 0.20704609155654907, + "learning_rate": 0.0006, + "loss": 3.5862209796905518, + "step": 3606 + }, + { + "epoch": 50.09785932721712, + "grad_norm": 0.20611345767974854, + "learning_rate": 0.0006, + "loss": 3.5696640014648438, + "step": 3607 + }, + { + "epoch": 50.111839231105286, + "grad_norm": 0.20986805856227875, + "learning_rate": 0.0006, + "loss": 3.5755579471588135, + "step": 3608 + }, + { + "epoch": 50.12581913499345, + "grad_norm": 0.21727709472179413, + "learning_rate": 0.0006, + "loss": 3.5967745780944824, + "step": 3609 + }, + { + "epoch": 50.139799038881605, + "grad_norm": 0.21854986250400543, + "learning_rate": 0.0006, + "loss": 3.6115779876708984, + "step": 3610 + }, + { + "epoch": 50.15377894276977, + "grad_norm": 0.22904936969280243, + "learning_rate": 0.0006, + "loss": 3.5639889240264893, + "step": 3611 + }, + { + "epoch": 50.16775884665793, + "grad_norm": 0.23774254322052002, + "learning_rate": 0.0006, + "loss": 3.6023900508880615, + "step": 3612 + }, + { + "epoch": 50.18173875054609, + "grad_norm": 0.21548497676849365, + "learning_rate": 0.0006, + "loss": 3.5722856521606445, + "step": 3613 + }, + { + "epoch": 50.19571865443425, + "grad_norm": 0.20503196120262146, + "learning_rate": 0.0006, + "loss": 3.5899252891540527, + "step": 3614 + }, + { + "epoch": 50.20969855832241, + "grad_norm": 0.22084423899650574, + "learning_rate": 0.0006, + "loss": 3.56020450592041, + "step": 3615 + }, + { + "epoch": 50.22367846221057, + "grad_norm": 0.24276728928089142, + "learning_rate": 0.0006, + "loss": 3.585695743560791, + "step": 3616 + }, + { + "epoch": 50.237658366098735, + "grad_norm": 0.23182106018066406, + "learning_rate": 0.0006, + "loss": 3.580676555633545, + "step": 3617 + }, + { + "epoch": 50.25163826998689, + "grad_norm": 0.2341945767402649, + "learning_rate": 0.0006, + "loss": 3.579713821411133, + "step": 3618 + }, + { + "epoch": 50.265618173875055, + "grad_norm": 0.27971863746643066, + "learning_rate": 0.0006, + "loss": 3.568251371383667, + "step": 3619 + }, + { + "epoch": 50.27959807776322, + "grad_norm": 0.24740517139434814, + "learning_rate": 0.0006, + "loss": 3.5798869132995605, + "step": 3620 + }, + { + "epoch": 50.293577981651374, + "grad_norm": 0.20561005175113678, + "learning_rate": 0.0006, + "loss": 3.5610039234161377, + "step": 3621 + }, + { + "epoch": 50.30755788553954, + "grad_norm": 0.2085379660129547, + "learning_rate": 0.0006, + "loss": 3.5620288848876953, + "step": 3622 + }, + { + "epoch": 50.3215377894277, + "grad_norm": 0.20868757367134094, + "learning_rate": 0.0006, + "loss": 3.6090598106384277, + "step": 3623 + }, + { + "epoch": 50.33551769331586, + "grad_norm": 0.18991491198539734, + "learning_rate": 0.0006, + "loss": 3.55255126953125, + "step": 3624 + }, + { + "epoch": 50.34949759720402, + "grad_norm": 0.24742646515369415, + "learning_rate": 0.0006, + "loss": 3.60585880279541, + "step": 3625 + }, + { + "epoch": 50.36347750109218, + "grad_norm": 0.26971301436424255, + "learning_rate": 0.0006, + "loss": 3.5913054943084717, + "step": 3626 + }, + { + "epoch": 50.37745740498034, + "grad_norm": 0.24294881522655487, + "learning_rate": 0.0006, + "loss": 3.5570878982543945, + "step": 3627 + }, + { + "epoch": 50.391437308868504, + "grad_norm": 0.2194664478302002, + "learning_rate": 0.0006, + "loss": 3.5800397396087646, + "step": 3628 + }, + { + "epoch": 50.40541721275666, + "grad_norm": 0.2148507982492447, + "learning_rate": 0.0006, + "loss": 3.6182782649993896, + "step": 3629 + }, + { + "epoch": 50.419397116644824, + "grad_norm": 0.22235016524791718, + "learning_rate": 0.0006, + "loss": 3.5784103870391846, + "step": 3630 + }, + { + "epoch": 50.43337702053299, + "grad_norm": 0.23176309466362, + "learning_rate": 0.0006, + "loss": 3.559011459350586, + "step": 3631 + }, + { + "epoch": 50.44735692442114, + "grad_norm": 0.2267913520336151, + "learning_rate": 0.0006, + "loss": 3.5854780673980713, + "step": 3632 + }, + { + "epoch": 50.46133682830931, + "grad_norm": 0.22565901279449463, + "learning_rate": 0.0006, + "loss": 3.5891294479370117, + "step": 3633 + }, + { + "epoch": 50.47531673219746, + "grad_norm": 0.23724839091300964, + "learning_rate": 0.0006, + "loss": 3.575702428817749, + "step": 3634 + }, + { + "epoch": 50.489296636085626, + "grad_norm": 0.23679722845554352, + "learning_rate": 0.0006, + "loss": 3.588639259338379, + "step": 3635 + }, + { + "epoch": 50.50327653997379, + "grad_norm": 0.23909232020378113, + "learning_rate": 0.0006, + "loss": 3.5828709602355957, + "step": 3636 + }, + { + "epoch": 50.517256443861946, + "grad_norm": 0.24186119437217712, + "learning_rate": 0.0006, + "loss": 3.596708059310913, + "step": 3637 + }, + { + "epoch": 50.53123634775011, + "grad_norm": 0.2325516790151596, + "learning_rate": 0.0006, + "loss": 3.610769510269165, + "step": 3638 + }, + { + "epoch": 50.54521625163827, + "grad_norm": 0.205137237906456, + "learning_rate": 0.0006, + "loss": 3.612844228744507, + "step": 3639 + }, + { + "epoch": 50.55919615552643, + "grad_norm": 0.20860300958156586, + "learning_rate": 0.0006, + "loss": 3.623669147491455, + "step": 3640 + }, + { + "epoch": 50.57317605941459, + "grad_norm": 0.20029069483280182, + "learning_rate": 0.0006, + "loss": 3.6108334064483643, + "step": 3641 + }, + { + "epoch": 50.58715596330275, + "grad_norm": 0.18841931223869324, + "learning_rate": 0.0006, + "loss": 3.6073007583618164, + "step": 3642 + }, + { + "epoch": 50.60113586719091, + "grad_norm": 0.20113889873027802, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3643 + }, + { + "epoch": 50.615115771079076, + "grad_norm": 0.23595206439495087, + "learning_rate": 0.0006, + "loss": 3.634650707244873, + "step": 3644 + }, + { + "epoch": 50.62909567496723, + "grad_norm": 0.24625661969184875, + "learning_rate": 0.0006, + "loss": 3.593716621398926, + "step": 3645 + }, + { + "epoch": 50.643075578855395, + "grad_norm": 0.2182614505290985, + "learning_rate": 0.0006, + "loss": 3.6006946563720703, + "step": 3646 + }, + { + "epoch": 50.65705548274356, + "grad_norm": 0.20867182314395905, + "learning_rate": 0.0006, + "loss": 3.6249008178710938, + "step": 3647 + }, + { + "epoch": 50.671035386631715, + "grad_norm": 0.20451945066452026, + "learning_rate": 0.0006, + "loss": 3.5870985984802246, + "step": 3648 + }, + { + "epoch": 50.68501529051988, + "grad_norm": 0.19160118699073792, + "learning_rate": 0.0006, + "loss": 3.6104488372802734, + "step": 3649 + }, + { + "epoch": 50.69899519440804, + "grad_norm": 0.18884453177452087, + "learning_rate": 0.0006, + "loss": 3.607893943786621, + "step": 3650 + }, + { + "epoch": 50.7129750982962, + "grad_norm": 0.19570060074329376, + "learning_rate": 0.0006, + "loss": 3.5938732624053955, + "step": 3651 + }, + { + "epoch": 50.72695500218436, + "grad_norm": 0.21978189051151276, + "learning_rate": 0.0006, + "loss": 3.5894908905029297, + "step": 3652 + }, + { + "epoch": 50.74093490607252, + "grad_norm": 0.19930903613567352, + "learning_rate": 0.0006, + "loss": 3.6067557334899902, + "step": 3653 + }, + { + "epoch": 50.75491480996068, + "grad_norm": 0.19450204074382782, + "learning_rate": 0.0006, + "loss": 3.5989646911621094, + "step": 3654 + }, + { + "epoch": 50.768894713848844, + "grad_norm": 0.1925407201051712, + "learning_rate": 0.0006, + "loss": 3.604339599609375, + "step": 3655 + }, + { + "epoch": 50.782874617737, + "grad_norm": 0.19232864677906036, + "learning_rate": 0.0006, + "loss": 3.5789241790771484, + "step": 3656 + }, + { + "epoch": 50.796854521625164, + "grad_norm": 0.1937529742717743, + "learning_rate": 0.0006, + "loss": 3.6060590744018555, + "step": 3657 + }, + { + "epoch": 50.81083442551333, + "grad_norm": 0.19863007962703705, + "learning_rate": 0.0006, + "loss": 3.5944440364837646, + "step": 3658 + }, + { + "epoch": 50.824814329401484, + "grad_norm": 0.18879804015159607, + "learning_rate": 0.0006, + "loss": 3.6017069816589355, + "step": 3659 + }, + { + "epoch": 50.83879423328965, + "grad_norm": 0.20111720263957977, + "learning_rate": 0.0006, + "loss": 3.593327522277832, + "step": 3660 + }, + { + "epoch": 50.8527741371778, + "grad_norm": 0.22593358159065247, + "learning_rate": 0.0006, + "loss": 3.5856096744537354, + "step": 3661 + }, + { + "epoch": 50.86675404106597, + "grad_norm": 0.22624441981315613, + "learning_rate": 0.0006, + "loss": 3.6144661903381348, + "step": 3662 + }, + { + "epoch": 50.88073394495413, + "grad_norm": 0.22052904963493347, + "learning_rate": 0.0006, + "loss": 3.5895116329193115, + "step": 3663 + }, + { + "epoch": 50.89471384884229, + "grad_norm": 0.2248559594154358, + "learning_rate": 0.0006, + "loss": 3.6400208473205566, + "step": 3664 + }, + { + "epoch": 50.90869375273045, + "grad_norm": 0.20209142565727234, + "learning_rate": 0.0006, + "loss": 3.6059279441833496, + "step": 3665 + }, + { + "epoch": 50.92267365661861, + "grad_norm": 0.2075854390859604, + "learning_rate": 0.0006, + "loss": 3.590074062347412, + "step": 3666 + }, + { + "epoch": 50.93665356050677, + "grad_norm": 0.20524698495864868, + "learning_rate": 0.0006, + "loss": 3.600741147994995, + "step": 3667 + }, + { + "epoch": 50.95063346439493, + "grad_norm": 0.1922466903924942, + "learning_rate": 0.0006, + "loss": 3.5984225273132324, + "step": 3668 + }, + { + "epoch": 50.964613368283096, + "grad_norm": 0.18852637708187103, + "learning_rate": 0.0006, + "loss": 3.6204333305358887, + "step": 3669 + }, + { + "epoch": 50.97859327217125, + "grad_norm": 0.22050459682941437, + "learning_rate": 0.0006, + "loss": 3.6371538639068604, + "step": 3670 + }, + { + "epoch": 50.992573176059416, + "grad_norm": 0.21477681398391724, + "learning_rate": 0.0006, + "loss": 3.608738899230957, + "step": 3671 + }, + { + "epoch": 51.0, + "grad_norm": 0.22061094641685486, + "learning_rate": 0.0006, + "loss": 3.6209959983825684, + "step": 3672 + }, + { + "epoch": 51.0, + "eval_loss": 3.9762842655181885, + "eval_runtime": 44.8353, + "eval_samples_per_second": 54.466, + "eval_steps_per_second": 3.412, + "step": 3672 + }, + { + "epoch": 51.01397990388816, + "grad_norm": 0.19009192287921906, + "learning_rate": 0.0006, + "loss": 3.5604426860809326, + "step": 3673 + }, + { + "epoch": 51.02795980777632, + "grad_norm": 0.2217264175415039, + "learning_rate": 0.0006, + "loss": 3.5595664978027344, + "step": 3674 + }, + { + "epoch": 51.04193971166448, + "grad_norm": 0.2747595012187958, + "learning_rate": 0.0006, + "loss": 3.5800085067749023, + "step": 3675 + }, + { + "epoch": 51.05591961555265, + "grad_norm": 0.26963043212890625, + "learning_rate": 0.0006, + "loss": 3.5529065132141113, + "step": 3676 + }, + { + "epoch": 51.0698995194408, + "grad_norm": 0.2304207682609558, + "learning_rate": 0.0006, + "loss": 3.585238456726074, + "step": 3677 + }, + { + "epoch": 51.083879423328966, + "grad_norm": 0.22073867917060852, + "learning_rate": 0.0006, + "loss": 3.542267322540283, + "step": 3678 + }, + { + "epoch": 51.09785932721712, + "grad_norm": 0.22550931572914124, + "learning_rate": 0.0006, + "loss": 3.5693743228912354, + "step": 3679 + }, + { + "epoch": 51.111839231105286, + "grad_norm": 0.2347114384174347, + "learning_rate": 0.0006, + "loss": 3.5830154418945312, + "step": 3680 + }, + { + "epoch": 51.12581913499345, + "grad_norm": 0.24889813363552094, + "learning_rate": 0.0006, + "loss": 3.581010341644287, + "step": 3681 + }, + { + "epoch": 51.139799038881605, + "grad_norm": 0.2401021122932434, + "learning_rate": 0.0006, + "loss": 3.619450092315674, + "step": 3682 + }, + { + "epoch": 51.15377894276977, + "grad_norm": 0.22221142053604126, + "learning_rate": 0.0006, + "loss": 3.573624610900879, + "step": 3683 + }, + { + "epoch": 51.16775884665793, + "grad_norm": 0.2429024577140808, + "learning_rate": 0.0006, + "loss": 3.548610210418701, + "step": 3684 + }, + { + "epoch": 51.18173875054609, + "grad_norm": 0.26470765471458435, + "learning_rate": 0.0006, + "loss": 3.5582218170166016, + "step": 3685 + }, + { + "epoch": 51.19571865443425, + "grad_norm": 0.2632715404033661, + "learning_rate": 0.0006, + "loss": 3.5976979732513428, + "step": 3686 + }, + { + "epoch": 51.20969855832241, + "grad_norm": 0.2567448616027832, + "learning_rate": 0.0006, + "loss": 3.592031478881836, + "step": 3687 + }, + { + "epoch": 51.22367846221057, + "grad_norm": 0.25299885869026184, + "learning_rate": 0.0006, + "loss": 3.579765796661377, + "step": 3688 + }, + { + "epoch": 51.237658366098735, + "grad_norm": 0.22765189409255981, + "learning_rate": 0.0006, + "loss": 3.5677521228790283, + "step": 3689 + }, + { + "epoch": 51.25163826998689, + "grad_norm": 0.23369887471199036, + "learning_rate": 0.0006, + "loss": 3.585879325866699, + "step": 3690 + }, + { + "epoch": 51.265618173875055, + "grad_norm": 0.21358822286128998, + "learning_rate": 0.0006, + "loss": 3.568866729736328, + "step": 3691 + }, + { + "epoch": 51.27959807776322, + "grad_norm": 0.2127659171819687, + "learning_rate": 0.0006, + "loss": 3.614520311355591, + "step": 3692 + }, + { + "epoch": 51.293577981651374, + "grad_norm": 0.22829636931419373, + "learning_rate": 0.0006, + "loss": 3.6004438400268555, + "step": 3693 + }, + { + "epoch": 51.30755788553954, + "grad_norm": 0.223104789853096, + "learning_rate": 0.0006, + "loss": 3.5791001319885254, + "step": 3694 + }, + { + "epoch": 51.3215377894277, + "grad_norm": 0.2084331065416336, + "learning_rate": 0.0006, + "loss": 3.572514295578003, + "step": 3695 + }, + { + "epoch": 51.33551769331586, + "grad_norm": 0.21115142107009888, + "learning_rate": 0.0006, + "loss": 3.5736331939697266, + "step": 3696 + }, + { + "epoch": 51.34949759720402, + "grad_norm": 0.2158546894788742, + "learning_rate": 0.0006, + "loss": 3.587161064147949, + "step": 3697 + }, + { + "epoch": 51.36347750109218, + "grad_norm": 0.2478281408548355, + "learning_rate": 0.0006, + "loss": 3.5879693031311035, + "step": 3698 + }, + { + "epoch": 51.37745740498034, + "grad_norm": 0.25137850642204285, + "learning_rate": 0.0006, + "loss": 3.58297061920166, + "step": 3699 + }, + { + "epoch": 51.391437308868504, + "grad_norm": 0.22961364686489105, + "learning_rate": 0.0006, + "loss": 3.5556459426879883, + "step": 3700 + }, + { + "epoch": 51.40541721275666, + "grad_norm": 0.22561277449131012, + "learning_rate": 0.0006, + "loss": 3.60197114944458, + "step": 3701 + }, + { + "epoch": 51.419397116644824, + "grad_norm": 0.20331767201423645, + "learning_rate": 0.0006, + "loss": 3.5815134048461914, + "step": 3702 + }, + { + "epoch": 51.43337702053299, + "grad_norm": 0.1941518634557724, + "learning_rate": 0.0006, + "loss": 3.6055145263671875, + "step": 3703 + }, + { + "epoch": 51.44735692442114, + "grad_norm": 0.19306789338588715, + "learning_rate": 0.0006, + "loss": 3.6101536750793457, + "step": 3704 + }, + { + "epoch": 51.46133682830931, + "grad_norm": 0.1830628365278244, + "learning_rate": 0.0006, + "loss": 3.5978426933288574, + "step": 3705 + }, + { + "epoch": 51.47531673219746, + "grad_norm": 0.19231490790843964, + "learning_rate": 0.0006, + "loss": 3.54502534866333, + "step": 3706 + }, + { + "epoch": 51.489296636085626, + "grad_norm": 0.19109117984771729, + "learning_rate": 0.0006, + "loss": 3.5957441329956055, + "step": 3707 + }, + { + "epoch": 51.50327653997379, + "grad_norm": 0.2032860815525055, + "learning_rate": 0.0006, + "loss": 3.5626730918884277, + "step": 3708 + }, + { + "epoch": 51.517256443861946, + "grad_norm": 0.19685189425945282, + "learning_rate": 0.0006, + "loss": 3.580399990081787, + "step": 3709 + }, + { + "epoch": 51.53123634775011, + "grad_norm": 0.19273017346858978, + "learning_rate": 0.0006, + "loss": 3.5428152084350586, + "step": 3710 + }, + { + "epoch": 51.54521625163827, + "grad_norm": 0.20198430120944977, + "learning_rate": 0.0006, + "loss": 3.607492446899414, + "step": 3711 + }, + { + "epoch": 51.55919615552643, + "grad_norm": 0.2267402559518814, + "learning_rate": 0.0006, + "loss": 3.580479621887207, + "step": 3712 + }, + { + "epoch": 51.57317605941459, + "grad_norm": 0.2247764617204666, + "learning_rate": 0.0006, + "loss": 3.5921316146850586, + "step": 3713 + }, + { + "epoch": 51.58715596330275, + "grad_norm": 0.23907902836799622, + "learning_rate": 0.0006, + "loss": 3.6014928817749023, + "step": 3714 + }, + { + "epoch": 51.60113586719091, + "grad_norm": 0.25907906889915466, + "learning_rate": 0.0006, + "loss": 3.5900192260742188, + "step": 3715 + }, + { + "epoch": 51.615115771079076, + "grad_norm": 0.26282405853271484, + "learning_rate": 0.0006, + "loss": 3.5727553367614746, + "step": 3716 + }, + { + "epoch": 51.62909567496723, + "grad_norm": 0.2541179060935974, + "learning_rate": 0.0006, + "loss": 3.5835776329040527, + "step": 3717 + }, + { + "epoch": 51.643075578855395, + "grad_norm": 0.23372016847133636, + "learning_rate": 0.0006, + "loss": 3.5902652740478516, + "step": 3718 + }, + { + "epoch": 51.65705548274356, + "grad_norm": 0.22827622294425964, + "learning_rate": 0.0006, + "loss": 3.6048200130462646, + "step": 3719 + }, + { + "epoch": 51.671035386631715, + "grad_norm": 0.21026845276355743, + "learning_rate": 0.0006, + "loss": 3.5587573051452637, + "step": 3720 + }, + { + "epoch": 51.68501529051988, + "grad_norm": 0.23485958576202393, + "learning_rate": 0.0006, + "loss": 3.6212477684020996, + "step": 3721 + }, + { + "epoch": 51.69899519440804, + "grad_norm": 0.2676871120929718, + "learning_rate": 0.0006, + "loss": 3.597837448120117, + "step": 3722 + }, + { + "epoch": 51.7129750982962, + "grad_norm": 0.23661476373672485, + "learning_rate": 0.0006, + "loss": 3.616079330444336, + "step": 3723 + }, + { + "epoch": 51.72695500218436, + "grad_norm": 0.2212267816066742, + "learning_rate": 0.0006, + "loss": 3.6103296279907227, + "step": 3724 + }, + { + "epoch": 51.74093490607252, + "grad_norm": 0.22888682782649994, + "learning_rate": 0.0006, + "loss": 3.6099889278411865, + "step": 3725 + }, + { + "epoch": 51.75491480996068, + "grad_norm": 0.21740387380123138, + "learning_rate": 0.0006, + "loss": 3.5859200954437256, + "step": 3726 + }, + { + "epoch": 51.768894713848844, + "grad_norm": 0.20819106698036194, + "learning_rate": 0.0006, + "loss": 3.5875396728515625, + "step": 3727 + }, + { + "epoch": 51.782874617737, + "grad_norm": 0.21574485301971436, + "learning_rate": 0.0006, + "loss": 3.6203761100769043, + "step": 3728 + }, + { + "epoch": 51.796854521625164, + "grad_norm": 0.21275651454925537, + "learning_rate": 0.0006, + "loss": 3.6066012382507324, + "step": 3729 + }, + { + "epoch": 51.81083442551333, + "grad_norm": 0.2043808251619339, + "learning_rate": 0.0006, + "loss": 3.571417808532715, + "step": 3730 + }, + { + "epoch": 51.824814329401484, + "grad_norm": 0.2082396298646927, + "learning_rate": 0.0006, + "loss": 3.6076579093933105, + "step": 3731 + }, + { + "epoch": 51.83879423328965, + "grad_norm": 0.23331953585147858, + "learning_rate": 0.0006, + "loss": 3.621837615966797, + "step": 3732 + }, + { + "epoch": 51.8527741371778, + "grad_norm": 0.25569960474967957, + "learning_rate": 0.0006, + "loss": 3.602004051208496, + "step": 3733 + }, + { + "epoch": 51.86675404106597, + "grad_norm": 0.230540469288826, + "learning_rate": 0.0006, + "loss": 3.5829110145568848, + "step": 3734 + }, + { + "epoch": 51.88073394495413, + "grad_norm": 0.20307230949401855, + "learning_rate": 0.0006, + "loss": 3.5572190284729004, + "step": 3735 + }, + { + "epoch": 51.89471384884229, + "grad_norm": 0.20902153849601746, + "learning_rate": 0.0006, + "loss": 3.5939853191375732, + "step": 3736 + }, + { + "epoch": 51.90869375273045, + "grad_norm": 0.20433510839939117, + "learning_rate": 0.0006, + "loss": 3.6104702949523926, + "step": 3737 + }, + { + "epoch": 51.92267365661861, + "grad_norm": 0.2285638302564621, + "learning_rate": 0.0006, + "loss": 3.5588834285736084, + "step": 3738 + }, + { + "epoch": 51.93665356050677, + "grad_norm": 0.2388262301683426, + "learning_rate": 0.0006, + "loss": 3.6203103065490723, + "step": 3739 + }, + { + "epoch": 51.95063346439493, + "grad_norm": 0.22572419047355652, + "learning_rate": 0.0006, + "loss": 3.6191892623901367, + "step": 3740 + }, + { + "epoch": 51.964613368283096, + "grad_norm": 0.21060727536678314, + "learning_rate": 0.0006, + "loss": 3.620879650115967, + "step": 3741 + }, + { + "epoch": 51.97859327217125, + "grad_norm": 0.2045326828956604, + "learning_rate": 0.0006, + "loss": 3.5959091186523438, + "step": 3742 + }, + { + "epoch": 51.992573176059416, + "grad_norm": 0.21882471442222595, + "learning_rate": 0.0006, + "loss": 3.6504573822021484, + "step": 3743 + }, + { + "epoch": 52.0, + "grad_norm": 0.24379056692123413, + "learning_rate": 0.0006, + "loss": 3.6293625831604004, + "step": 3744 + }, + { + "epoch": 52.0, + "eval_loss": 3.9772427082061768, + "eval_runtime": 44.248, + "eval_samples_per_second": 55.189, + "eval_steps_per_second": 3.458, + "step": 3744 + }, + { + "epoch": 52.01397990388816, + "grad_norm": 0.19682207703590393, + "learning_rate": 0.0006, + "loss": 3.604281425476074, + "step": 3745 + }, + { + "epoch": 52.02795980777632, + "grad_norm": 0.23003028333187103, + "learning_rate": 0.0006, + "loss": 3.588266372680664, + "step": 3746 + }, + { + "epoch": 52.04193971166448, + "grad_norm": 0.2458166778087616, + "learning_rate": 0.0006, + "loss": 3.59077787399292, + "step": 3747 + }, + { + "epoch": 52.05591961555265, + "grad_norm": 0.23873521387577057, + "learning_rate": 0.0006, + "loss": 3.556537628173828, + "step": 3748 + }, + { + "epoch": 52.0698995194408, + "grad_norm": 0.21737053990364075, + "learning_rate": 0.0006, + "loss": 3.5758891105651855, + "step": 3749 + }, + { + "epoch": 52.083879423328966, + "grad_norm": 0.22239601612091064, + "learning_rate": 0.0006, + "loss": 3.552678346633911, + "step": 3750 + }, + { + "epoch": 52.09785932721712, + "grad_norm": 0.21818044781684875, + "learning_rate": 0.0006, + "loss": 3.577249526977539, + "step": 3751 + }, + { + "epoch": 52.111839231105286, + "grad_norm": 0.24513746798038483, + "learning_rate": 0.0006, + "loss": 3.569178581237793, + "step": 3752 + }, + { + "epoch": 52.12581913499345, + "grad_norm": 0.2801238000392914, + "learning_rate": 0.0006, + "loss": 3.556199073791504, + "step": 3753 + }, + { + "epoch": 52.139799038881605, + "grad_norm": 0.2722291648387909, + "learning_rate": 0.0006, + "loss": 3.5571072101593018, + "step": 3754 + }, + { + "epoch": 52.15377894276977, + "grad_norm": 0.2146541327238083, + "learning_rate": 0.0006, + "loss": 3.5831902027130127, + "step": 3755 + }, + { + "epoch": 52.16775884665793, + "grad_norm": 0.21040776371955872, + "learning_rate": 0.0006, + "loss": 3.6021504402160645, + "step": 3756 + }, + { + "epoch": 52.18173875054609, + "grad_norm": 0.24059702455997467, + "learning_rate": 0.0006, + "loss": 3.57401704788208, + "step": 3757 + }, + { + "epoch": 52.19571865443425, + "grad_norm": 0.25043657422065735, + "learning_rate": 0.0006, + "loss": 3.5776405334472656, + "step": 3758 + }, + { + "epoch": 52.20969855832241, + "grad_norm": 0.24292849004268646, + "learning_rate": 0.0006, + "loss": 3.5602574348449707, + "step": 3759 + }, + { + "epoch": 52.22367846221057, + "grad_norm": 0.2159980833530426, + "learning_rate": 0.0006, + "loss": 3.552079200744629, + "step": 3760 + }, + { + "epoch": 52.237658366098735, + "grad_norm": 0.19305892288684845, + "learning_rate": 0.0006, + "loss": 3.581195831298828, + "step": 3761 + }, + { + "epoch": 52.25163826998689, + "grad_norm": 0.2115706503391266, + "learning_rate": 0.0006, + "loss": 3.5689306259155273, + "step": 3762 + }, + { + "epoch": 52.265618173875055, + "grad_norm": 0.21885409951210022, + "learning_rate": 0.0006, + "loss": 3.5549206733703613, + "step": 3763 + }, + { + "epoch": 52.27959807776322, + "grad_norm": 0.2069413661956787, + "learning_rate": 0.0006, + "loss": 3.5743770599365234, + "step": 3764 + }, + { + "epoch": 52.293577981651374, + "grad_norm": 0.21922551095485687, + "learning_rate": 0.0006, + "loss": 3.5780110359191895, + "step": 3765 + }, + { + "epoch": 52.30755788553954, + "grad_norm": 0.21675541996955872, + "learning_rate": 0.0006, + "loss": 3.575730800628662, + "step": 3766 + }, + { + "epoch": 52.3215377894277, + "grad_norm": 0.21250510215759277, + "learning_rate": 0.0006, + "loss": 3.546060085296631, + "step": 3767 + }, + { + "epoch": 52.33551769331586, + "grad_norm": 0.23665618896484375, + "learning_rate": 0.0006, + "loss": 3.5887606143951416, + "step": 3768 + }, + { + "epoch": 52.34949759720402, + "grad_norm": 0.2525961399078369, + "learning_rate": 0.0006, + "loss": 3.5885281562805176, + "step": 3769 + }, + { + "epoch": 52.36347750109218, + "grad_norm": 0.26285895705223083, + "learning_rate": 0.0006, + "loss": 3.5880684852600098, + "step": 3770 + }, + { + "epoch": 52.37745740498034, + "grad_norm": 0.24714398384094238, + "learning_rate": 0.0006, + "loss": 3.548165798187256, + "step": 3771 + }, + { + "epoch": 52.391437308868504, + "grad_norm": 0.2234657257795334, + "learning_rate": 0.0006, + "loss": 3.56547212600708, + "step": 3772 + }, + { + "epoch": 52.40541721275666, + "grad_norm": 0.20636901259422302, + "learning_rate": 0.0006, + "loss": 3.5702133178710938, + "step": 3773 + }, + { + "epoch": 52.419397116644824, + "grad_norm": 0.20656965672969818, + "learning_rate": 0.0006, + "loss": 3.614602565765381, + "step": 3774 + }, + { + "epoch": 52.43337702053299, + "grad_norm": 0.20018167793750763, + "learning_rate": 0.0006, + "loss": 3.6063036918640137, + "step": 3775 + }, + { + "epoch": 52.44735692442114, + "grad_norm": 0.21859782934188843, + "learning_rate": 0.0006, + "loss": 3.5728869438171387, + "step": 3776 + }, + { + "epoch": 52.46133682830931, + "grad_norm": 0.21622174978256226, + "learning_rate": 0.0006, + "loss": 3.5657505989074707, + "step": 3777 + }, + { + "epoch": 52.47531673219746, + "grad_norm": 0.19779632985591888, + "learning_rate": 0.0006, + "loss": 3.5841145515441895, + "step": 3778 + }, + { + "epoch": 52.489296636085626, + "grad_norm": 0.21635952591896057, + "learning_rate": 0.0006, + "loss": 3.582096576690674, + "step": 3779 + }, + { + "epoch": 52.50327653997379, + "grad_norm": 0.21348397433757782, + "learning_rate": 0.0006, + "loss": 3.5654468536376953, + "step": 3780 + }, + { + "epoch": 52.517256443861946, + "grad_norm": 0.19572246074676514, + "learning_rate": 0.0006, + "loss": 3.5806241035461426, + "step": 3781 + }, + { + "epoch": 52.53123634775011, + "grad_norm": 0.1887553185224533, + "learning_rate": 0.0006, + "loss": 3.5752944946289062, + "step": 3782 + }, + { + "epoch": 52.54521625163827, + "grad_norm": 0.2192932814359665, + "learning_rate": 0.0006, + "loss": 3.5846266746520996, + "step": 3783 + }, + { + "epoch": 52.55919615552643, + "grad_norm": 0.23833444714546204, + "learning_rate": 0.0006, + "loss": 3.563093900680542, + "step": 3784 + }, + { + "epoch": 52.57317605941459, + "grad_norm": 0.26471760869026184, + "learning_rate": 0.0006, + "loss": 3.5582051277160645, + "step": 3785 + }, + { + "epoch": 52.58715596330275, + "grad_norm": 0.2767478823661804, + "learning_rate": 0.0006, + "loss": 3.5650997161865234, + "step": 3786 + }, + { + "epoch": 52.60113586719091, + "grad_norm": 0.26556241512298584, + "learning_rate": 0.0006, + "loss": 3.5944058895111084, + "step": 3787 + }, + { + "epoch": 52.615115771079076, + "grad_norm": 0.2733243405818939, + "learning_rate": 0.0006, + "loss": 3.5781195163726807, + "step": 3788 + }, + { + "epoch": 52.62909567496723, + "grad_norm": 0.24836041033267975, + "learning_rate": 0.0006, + "loss": 3.582634687423706, + "step": 3789 + }, + { + "epoch": 52.643075578855395, + "grad_norm": 0.2119593471288681, + "learning_rate": 0.0006, + "loss": 3.5851502418518066, + "step": 3790 + }, + { + "epoch": 52.65705548274356, + "grad_norm": 0.23237599432468414, + "learning_rate": 0.0006, + "loss": 3.5877747535705566, + "step": 3791 + }, + { + "epoch": 52.671035386631715, + "grad_norm": 0.21037372946739197, + "learning_rate": 0.0006, + "loss": 3.579045295715332, + "step": 3792 + }, + { + "epoch": 52.68501529051988, + "grad_norm": 0.19258099794387817, + "learning_rate": 0.0006, + "loss": 3.599151611328125, + "step": 3793 + }, + { + "epoch": 52.69899519440804, + "grad_norm": 0.18808242678642273, + "learning_rate": 0.0006, + "loss": 3.580679416656494, + "step": 3794 + }, + { + "epoch": 52.7129750982962, + "grad_norm": 0.18208397924900055, + "learning_rate": 0.0006, + "loss": 3.5940206050872803, + "step": 3795 + }, + { + "epoch": 52.72695500218436, + "grad_norm": 0.18173424899578094, + "learning_rate": 0.0006, + "loss": 3.5997331142425537, + "step": 3796 + }, + { + "epoch": 52.74093490607252, + "grad_norm": 0.1868390142917633, + "learning_rate": 0.0006, + "loss": 3.60007905960083, + "step": 3797 + }, + { + "epoch": 52.75491480996068, + "grad_norm": 0.1859273761510849, + "learning_rate": 0.0006, + "loss": 3.602668285369873, + "step": 3798 + }, + { + "epoch": 52.768894713848844, + "grad_norm": 0.18063156306743622, + "learning_rate": 0.0006, + "loss": 3.579869270324707, + "step": 3799 + }, + { + "epoch": 52.782874617737, + "grad_norm": 0.18920548260211945, + "learning_rate": 0.0006, + "loss": 3.6056337356567383, + "step": 3800 + }, + { + "epoch": 52.796854521625164, + "grad_norm": 0.20110033452510834, + "learning_rate": 0.0006, + "loss": 3.5694475173950195, + "step": 3801 + }, + { + "epoch": 52.81083442551333, + "grad_norm": 0.20331093668937683, + "learning_rate": 0.0006, + "loss": 3.5940358638763428, + "step": 3802 + }, + { + "epoch": 52.824814329401484, + "grad_norm": 0.2035607248544693, + "learning_rate": 0.0006, + "loss": 3.621305465698242, + "step": 3803 + }, + { + "epoch": 52.83879423328965, + "grad_norm": 0.1974431872367859, + "learning_rate": 0.0006, + "loss": 3.5959153175354004, + "step": 3804 + }, + { + "epoch": 52.8527741371778, + "grad_norm": 0.1832808405160904, + "learning_rate": 0.0006, + "loss": 3.582113265991211, + "step": 3805 + }, + { + "epoch": 52.86675404106597, + "grad_norm": 0.20269927382469177, + "learning_rate": 0.0006, + "loss": 3.5923209190368652, + "step": 3806 + }, + { + "epoch": 52.88073394495413, + "grad_norm": 0.20628313720226288, + "learning_rate": 0.0006, + "loss": 3.599729537963867, + "step": 3807 + }, + { + "epoch": 52.89471384884229, + "grad_norm": 0.2144002914428711, + "learning_rate": 0.0006, + "loss": 3.601041793823242, + "step": 3808 + }, + { + "epoch": 52.90869375273045, + "grad_norm": 0.215015709400177, + "learning_rate": 0.0006, + "loss": 3.5873360633850098, + "step": 3809 + }, + { + "epoch": 52.92267365661861, + "grad_norm": 0.23122714459896088, + "learning_rate": 0.0006, + "loss": 3.5839362144470215, + "step": 3810 + }, + { + "epoch": 52.93665356050677, + "grad_norm": 0.2381119281053543, + "learning_rate": 0.0006, + "loss": 3.564755439758301, + "step": 3811 + }, + { + "epoch": 52.95063346439493, + "grad_norm": 0.22975024580955505, + "learning_rate": 0.0006, + "loss": 3.594020128250122, + "step": 3812 + }, + { + "epoch": 52.964613368283096, + "grad_norm": 0.2419184148311615, + "learning_rate": 0.0006, + "loss": 3.5917205810546875, + "step": 3813 + }, + { + "epoch": 52.97859327217125, + "grad_norm": 0.21143122017383575, + "learning_rate": 0.0006, + "loss": 3.626842975616455, + "step": 3814 + }, + { + "epoch": 52.992573176059416, + "grad_norm": 0.195548415184021, + "learning_rate": 0.0006, + "loss": 3.5798377990722656, + "step": 3815 + }, + { + "epoch": 53.0, + "grad_norm": 0.22441816329956055, + "learning_rate": 0.0006, + "loss": 3.5652856826782227, + "step": 3816 + }, + { + "epoch": 53.0, + "eval_loss": 3.9635632038116455, + "eval_runtime": 44.772, + "eval_samples_per_second": 54.543, + "eval_steps_per_second": 3.417, + "step": 3816 + }, + { + "epoch": 53.01397990388816, + "grad_norm": 0.2547561228275299, + "learning_rate": 0.0006, + "loss": 3.562561511993408, + "step": 3817 + }, + { + "epoch": 53.02795980777632, + "grad_norm": 0.36890196800231934, + "learning_rate": 0.0006, + "loss": 3.534581184387207, + "step": 3818 + }, + { + "epoch": 53.04193971166448, + "grad_norm": 0.42631810903549194, + "learning_rate": 0.0006, + "loss": 3.5438239574432373, + "step": 3819 + }, + { + "epoch": 53.05591961555265, + "grad_norm": 0.29458126425743103, + "learning_rate": 0.0006, + "loss": 3.5594735145568848, + "step": 3820 + }, + { + "epoch": 53.0698995194408, + "grad_norm": 0.24320989847183228, + "learning_rate": 0.0006, + "loss": 3.5715155601501465, + "step": 3821 + }, + { + "epoch": 53.083879423328966, + "grad_norm": 0.3012531101703644, + "learning_rate": 0.0006, + "loss": 3.5324978828430176, + "step": 3822 + }, + { + "epoch": 53.09785932721712, + "grad_norm": 0.2789555788040161, + "learning_rate": 0.0006, + "loss": 3.5848183631896973, + "step": 3823 + }, + { + "epoch": 53.111839231105286, + "grad_norm": 0.2488897293806076, + "learning_rate": 0.0006, + "loss": 3.5853679180145264, + "step": 3824 + }, + { + "epoch": 53.12581913499345, + "grad_norm": 0.3016898036003113, + "learning_rate": 0.0006, + "loss": 3.585637092590332, + "step": 3825 + }, + { + "epoch": 53.139799038881605, + "grad_norm": 0.30293571949005127, + "learning_rate": 0.0006, + "loss": 3.5745015144348145, + "step": 3826 + }, + { + "epoch": 53.15377894276977, + "grad_norm": 0.24611566960811615, + "learning_rate": 0.0006, + "loss": 3.5761728286743164, + "step": 3827 + }, + { + "epoch": 53.16775884665793, + "grad_norm": 0.23852500319480896, + "learning_rate": 0.0006, + "loss": 3.59317946434021, + "step": 3828 + }, + { + "epoch": 53.18173875054609, + "grad_norm": 0.27882838249206543, + "learning_rate": 0.0006, + "loss": 3.589779853820801, + "step": 3829 + }, + { + "epoch": 53.19571865443425, + "grad_norm": 0.3252250552177429, + "learning_rate": 0.0006, + "loss": 3.564526081085205, + "step": 3830 + }, + { + "epoch": 53.20969855832241, + "grad_norm": 0.29635530710220337, + "learning_rate": 0.0006, + "loss": 3.5309946537017822, + "step": 3831 + }, + { + "epoch": 53.22367846221057, + "grad_norm": 0.25211700797080994, + "learning_rate": 0.0006, + "loss": 3.5795631408691406, + "step": 3832 + }, + { + "epoch": 53.237658366098735, + "grad_norm": 0.20772705972194672, + "learning_rate": 0.0006, + "loss": 3.5649163722991943, + "step": 3833 + }, + { + "epoch": 53.25163826998689, + "grad_norm": 0.2460525780916214, + "learning_rate": 0.0006, + "loss": 3.5484111309051514, + "step": 3834 + }, + { + "epoch": 53.265618173875055, + "grad_norm": 0.24652884900569916, + "learning_rate": 0.0006, + "loss": 3.5631136894226074, + "step": 3835 + }, + { + "epoch": 53.27959807776322, + "grad_norm": 0.23740890622138977, + "learning_rate": 0.0006, + "loss": 3.6234607696533203, + "step": 3836 + }, + { + "epoch": 53.293577981651374, + "grad_norm": 0.2463800311088562, + "learning_rate": 0.0006, + "loss": 3.5578083992004395, + "step": 3837 + }, + { + "epoch": 53.30755788553954, + "grad_norm": 0.23402568697929382, + "learning_rate": 0.0006, + "loss": 3.559845209121704, + "step": 3838 + }, + { + "epoch": 53.3215377894277, + "grad_norm": 0.2539580762386322, + "learning_rate": 0.0006, + "loss": 3.5863685607910156, + "step": 3839 + }, + { + "epoch": 53.33551769331586, + "grad_norm": 0.24994857609272003, + "learning_rate": 0.0006, + "loss": 3.5758700370788574, + "step": 3840 + }, + { + "epoch": 53.34949759720402, + "grad_norm": 0.21340647339820862, + "learning_rate": 0.0006, + "loss": 3.588602066040039, + "step": 3841 + }, + { + "epoch": 53.36347750109218, + "grad_norm": 0.2029065042734146, + "learning_rate": 0.0006, + "loss": 3.58594012260437, + "step": 3842 + }, + { + "epoch": 53.37745740498034, + "grad_norm": 0.20266403257846832, + "learning_rate": 0.0006, + "loss": 3.5906057357788086, + "step": 3843 + }, + { + "epoch": 53.391437308868504, + "grad_norm": 0.19940714538097382, + "learning_rate": 0.0006, + "loss": 3.5458335876464844, + "step": 3844 + }, + { + "epoch": 53.40541721275666, + "grad_norm": 0.21295064687728882, + "learning_rate": 0.0006, + "loss": 3.5589025020599365, + "step": 3845 + }, + { + "epoch": 53.419397116644824, + "grad_norm": 0.2150672823190689, + "learning_rate": 0.0006, + "loss": 3.5907669067382812, + "step": 3846 + }, + { + "epoch": 53.43337702053299, + "grad_norm": 0.21469077467918396, + "learning_rate": 0.0006, + "loss": 3.5403499603271484, + "step": 3847 + }, + { + "epoch": 53.44735692442114, + "grad_norm": 0.20485323667526245, + "learning_rate": 0.0006, + "loss": 3.5634326934814453, + "step": 3848 + }, + { + "epoch": 53.46133682830931, + "grad_norm": 0.1981327086687088, + "learning_rate": 0.0006, + "loss": 3.579385280609131, + "step": 3849 + }, + { + "epoch": 53.47531673219746, + "grad_norm": 0.1898331642150879, + "learning_rate": 0.0006, + "loss": 3.5824122428894043, + "step": 3850 + }, + { + "epoch": 53.489296636085626, + "grad_norm": 0.18228355050086975, + "learning_rate": 0.0006, + "loss": 3.533255100250244, + "step": 3851 + }, + { + "epoch": 53.50327653997379, + "grad_norm": 0.1803922951221466, + "learning_rate": 0.0006, + "loss": 3.589881420135498, + "step": 3852 + }, + { + "epoch": 53.517256443861946, + "grad_norm": 0.19590361416339874, + "learning_rate": 0.0006, + "loss": 3.599487066268921, + "step": 3853 + }, + { + "epoch": 53.53123634775011, + "grad_norm": 0.1935775727033615, + "learning_rate": 0.0006, + "loss": 3.5769765377044678, + "step": 3854 + }, + { + "epoch": 53.54521625163827, + "grad_norm": 0.1790810525417328, + "learning_rate": 0.0006, + "loss": 3.594104290008545, + "step": 3855 + }, + { + "epoch": 53.55919615552643, + "grad_norm": 0.17993320524692535, + "learning_rate": 0.0006, + "loss": 3.555650234222412, + "step": 3856 + }, + { + "epoch": 53.57317605941459, + "grad_norm": 0.19114883244037628, + "learning_rate": 0.0006, + "loss": 3.599574089050293, + "step": 3857 + }, + { + "epoch": 53.58715596330275, + "grad_norm": 0.18493886291980743, + "learning_rate": 0.0006, + "loss": 3.555177927017212, + "step": 3858 + }, + { + "epoch": 53.60113586719091, + "grad_norm": 0.19346027076244354, + "learning_rate": 0.0006, + "loss": 3.601219654083252, + "step": 3859 + }, + { + "epoch": 53.615115771079076, + "grad_norm": 0.2002234011888504, + "learning_rate": 0.0006, + "loss": 3.5614418983459473, + "step": 3860 + }, + { + "epoch": 53.62909567496723, + "grad_norm": 0.17705366015434265, + "learning_rate": 0.0006, + "loss": 3.587432384490967, + "step": 3861 + }, + { + "epoch": 53.643075578855395, + "grad_norm": 0.19825726747512817, + "learning_rate": 0.0006, + "loss": 3.570539951324463, + "step": 3862 + }, + { + "epoch": 53.65705548274356, + "grad_norm": 0.2038952112197876, + "learning_rate": 0.0006, + "loss": 3.575758934020996, + "step": 3863 + }, + { + "epoch": 53.671035386631715, + "grad_norm": 0.21109119057655334, + "learning_rate": 0.0006, + "loss": 3.6013951301574707, + "step": 3864 + }, + { + "epoch": 53.68501529051988, + "grad_norm": 0.21738514304161072, + "learning_rate": 0.0006, + "loss": 3.567424774169922, + "step": 3865 + }, + { + "epoch": 53.69899519440804, + "grad_norm": 0.214813694357872, + "learning_rate": 0.0006, + "loss": 3.599733352661133, + "step": 3866 + }, + { + "epoch": 53.7129750982962, + "grad_norm": 0.20838409662246704, + "learning_rate": 0.0006, + "loss": 3.595839738845825, + "step": 3867 + }, + { + "epoch": 53.72695500218436, + "grad_norm": 0.2088911384344101, + "learning_rate": 0.0006, + "loss": 3.6030569076538086, + "step": 3868 + }, + { + "epoch": 53.74093490607252, + "grad_norm": 0.22705569863319397, + "learning_rate": 0.0006, + "loss": 3.5876665115356445, + "step": 3869 + }, + { + "epoch": 53.75491480996068, + "grad_norm": 0.22327932715415955, + "learning_rate": 0.0006, + "loss": 3.5555529594421387, + "step": 3870 + }, + { + "epoch": 53.768894713848844, + "grad_norm": 0.2092375010251999, + "learning_rate": 0.0006, + "loss": 3.599871873855591, + "step": 3871 + }, + { + "epoch": 53.782874617737, + "grad_norm": 0.20672307908535004, + "learning_rate": 0.0006, + "loss": 3.598846435546875, + "step": 3872 + }, + { + "epoch": 53.796854521625164, + "grad_norm": 0.2090507596731186, + "learning_rate": 0.0006, + "loss": 3.564012050628662, + "step": 3873 + }, + { + "epoch": 53.81083442551333, + "grad_norm": 0.2044386863708496, + "learning_rate": 0.0006, + "loss": 3.585221529006958, + "step": 3874 + }, + { + "epoch": 53.824814329401484, + "grad_norm": 0.2065548598766327, + "learning_rate": 0.0006, + "loss": 3.595351457595825, + "step": 3875 + }, + { + "epoch": 53.83879423328965, + "grad_norm": 0.22895927727222443, + "learning_rate": 0.0006, + "loss": 3.5720505714416504, + "step": 3876 + }, + { + "epoch": 53.8527741371778, + "grad_norm": 0.22099260985851288, + "learning_rate": 0.0006, + "loss": 3.572587251663208, + "step": 3877 + }, + { + "epoch": 53.86675404106597, + "grad_norm": 0.19928759336471558, + "learning_rate": 0.0006, + "loss": 3.5641839504241943, + "step": 3878 + }, + { + "epoch": 53.88073394495413, + "grad_norm": 0.2735077440738678, + "learning_rate": 0.0006, + "loss": 3.575535774230957, + "step": 3879 + }, + { + "epoch": 53.89471384884229, + "grad_norm": 0.2642554044723511, + "learning_rate": 0.0006, + "loss": 3.5993123054504395, + "step": 3880 + }, + { + "epoch": 53.90869375273045, + "grad_norm": 0.22406205534934998, + "learning_rate": 0.0006, + "loss": 3.5968177318573, + "step": 3881 + }, + { + "epoch": 53.92267365661861, + "grad_norm": 0.22148431837558746, + "learning_rate": 0.0006, + "loss": 3.5668797492980957, + "step": 3882 + }, + { + "epoch": 53.93665356050677, + "grad_norm": 0.20805056393146515, + "learning_rate": 0.0006, + "loss": 3.60849666595459, + "step": 3883 + }, + { + "epoch": 53.95063346439493, + "grad_norm": 0.18656247854232788, + "learning_rate": 0.0006, + "loss": 3.5883405208587646, + "step": 3884 + }, + { + "epoch": 53.964613368283096, + "grad_norm": 0.19937767088413239, + "learning_rate": 0.0006, + "loss": 3.5897698402404785, + "step": 3885 + }, + { + "epoch": 53.97859327217125, + "grad_norm": 0.19680732488632202, + "learning_rate": 0.0006, + "loss": 3.568530559539795, + "step": 3886 + }, + { + "epoch": 53.992573176059416, + "grad_norm": 0.218981072306633, + "learning_rate": 0.0006, + "loss": 3.6194474697113037, + "step": 3887 + }, + { + "epoch": 54.0, + "grad_norm": 0.26408281922340393, + "learning_rate": 0.0006, + "loss": 3.5224976539611816, + "step": 3888 + }, + { + "epoch": 54.0, + "eval_loss": 3.983997106552124, + "eval_runtime": 44.9507, + "eval_samples_per_second": 54.326, + "eval_steps_per_second": 3.404, + "step": 3888 + }, + { + "epoch": 54.01397990388816, + "grad_norm": 0.2230917066335678, + "learning_rate": 0.0006, + "loss": 3.578058958053589, + "step": 3889 + }, + { + "epoch": 54.02795980777632, + "grad_norm": 0.23055201768875122, + "learning_rate": 0.0006, + "loss": 3.549612283706665, + "step": 3890 + }, + { + "epoch": 54.04193971166448, + "grad_norm": 0.23317518830299377, + "learning_rate": 0.0006, + "loss": 3.5662591457366943, + "step": 3891 + }, + { + "epoch": 54.05591961555265, + "grad_norm": 0.27022141218185425, + "learning_rate": 0.0006, + "loss": 3.547062873840332, + "step": 3892 + }, + { + "epoch": 54.0698995194408, + "grad_norm": 0.2665329873561859, + "learning_rate": 0.0006, + "loss": 3.540881633758545, + "step": 3893 + }, + { + "epoch": 54.083879423328966, + "grad_norm": 0.23968365788459778, + "learning_rate": 0.0006, + "loss": 3.574781894683838, + "step": 3894 + }, + { + "epoch": 54.09785932721712, + "grad_norm": 0.22174887359142303, + "learning_rate": 0.0006, + "loss": 3.514077663421631, + "step": 3895 + }, + { + "epoch": 54.111839231105286, + "grad_norm": 0.24605485796928406, + "learning_rate": 0.0006, + "loss": 3.534174919128418, + "step": 3896 + }, + { + "epoch": 54.12581913499345, + "grad_norm": 0.22874566912651062, + "learning_rate": 0.0006, + "loss": 3.574282169342041, + "step": 3897 + }, + { + "epoch": 54.139799038881605, + "grad_norm": 0.2113833874464035, + "learning_rate": 0.0006, + "loss": 3.548687696456909, + "step": 3898 + }, + { + "epoch": 54.15377894276977, + "grad_norm": 0.20756855607032776, + "learning_rate": 0.0006, + "loss": 3.556060791015625, + "step": 3899 + }, + { + "epoch": 54.16775884665793, + "grad_norm": 0.2070261538028717, + "learning_rate": 0.0006, + "loss": 3.5585689544677734, + "step": 3900 + }, + { + "epoch": 54.18173875054609, + "grad_norm": 0.20014794170856476, + "learning_rate": 0.0006, + "loss": 3.5898427963256836, + "step": 3901 + }, + { + "epoch": 54.19571865443425, + "grad_norm": 0.19851888716220856, + "learning_rate": 0.0006, + "loss": 3.564826011657715, + "step": 3902 + }, + { + "epoch": 54.20969855832241, + "grad_norm": 0.20333127677440643, + "learning_rate": 0.0006, + "loss": 3.540660858154297, + "step": 3903 + }, + { + "epoch": 54.22367846221057, + "grad_norm": 0.20291075110435486, + "learning_rate": 0.0006, + "loss": 3.544628143310547, + "step": 3904 + }, + { + "epoch": 54.237658366098735, + "grad_norm": 0.2055949866771698, + "learning_rate": 0.0006, + "loss": 3.547478675842285, + "step": 3905 + }, + { + "epoch": 54.25163826998689, + "grad_norm": 0.20305688679218292, + "learning_rate": 0.0006, + "loss": 3.5793099403381348, + "step": 3906 + }, + { + "epoch": 54.265618173875055, + "grad_norm": 0.21053043007850647, + "learning_rate": 0.0006, + "loss": 3.529263973236084, + "step": 3907 + }, + { + "epoch": 54.27959807776322, + "grad_norm": 0.2461051046848297, + "learning_rate": 0.0006, + "loss": 3.598266124725342, + "step": 3908 + }, + { + "epoch": 54.293577981651374, + "grad_norm": 0.25074276328086853, + "learning_rate": 0.0006, + "loss": 3.557170867919922, + "step": 3909 + }, + { + "epoch": 54.30755788553954, + "grad_norm": 0.23321498930454254, + "learning_rate": 0.0006, + "loss": 3.5532279014587402, + "step": 3910 + }, + { + "epoch": 54.3215377894277, + "grad_norm": 0.19062374532222748, + "learning_rate": 0.0006, + "loss": 3.5718722343444824, + "step": 3911 + }, + { + "epoch": 54.33551769331586, + "grad_norm": 0.22571852803230286, + "learning_rate": 0.0006, + "loss": 3.539036750793457, + "step": 3912 + }, + { + "epoch": 54.34949759720402, + "grad_norm": 0.23314784467220306, + "learning_rate": 0.0006, + "loss": 3.5444631576538086, + "step": 3913 + }, + { + "epoch": 54.36347750109218, + "grad_norm": 0.22334037721157074, + "learning_rate": 0.0006, + "loss": 3.5567970275878906, + "step": 3914 + }, + { + "epoch": 54.37745740498034, + "grad_norm": 0.21900276839733124, + "learning_rate": 0.0006, + "loss": 3.600113868713379, + "step": 3915 + }, + { + "epoch": 54.391437308868504, + "grad_norm": 0.20166733860969543, + "learning_rate": 0.0006, + "loss": 3.54038667678833, + "step": 3916 + }, + { + "epoch": 54.40541721275666, + "grad_norm": 0.21886761486530304, + "learning_rate": 0.0006, + "loss": 3.5708651542663574, + "step": 3917 + }, + { + "epoch": 54.419397116644824, + "grad_norm": 0.26383060216903687, + "learning_rate": 0.0006, + "loss": 3.5572509765625, + "step": 3918 + }, + { + "epoch": 54.43337702053299, + "grad_norm": 0.26116663217544556, + "learning_rate": 0.0006, + "loss": 3.528968334197998, + "step": 3919 + }, + { + "epoch": 54.44735692442114, + "grad_norm": 0.20640771090984344, + "learning_rate": 0.0006, + "loss": 3.587789535522461, + "step": 3920 + }, + { + "epoch": 54.46133682830931, + "grad_norm": 0.23454350233078003, + "learning_rate": 0.0006, + "loss": 3.586834192276001, + "step": 3921 + }, + { + "epoch": 54.47531673219746, + "grad_norm": 0.24828442931175232, + "learning_rate": 0.0006, + "loss": 3.5884881019592285, + "step": 3922 + }, + { + "epoch": 54.489296636085626, + "grad_norm": 0.23654282093048096, + "learning_rate": 0.0006, + "loss": 3.5754570960998535, + "step": 3923 + }, + { + "epoch": 54.50327653997379, + "grad_norm": 0.22721099853515625, + "learning_rate": 0.0006, + "loss": 3.5575859546661377, + "step": 3924 + }, + { + "epoch": 54.517256443861946, + "grad_norm": 0.2157498002052307, + "learning_rate": 0.0006, + "loss": 3.5929436683654785, + "step": 3925 + }, + { + "epoch": 54.53123634775011, + "grad_norm": 0.21604257822036743, + "learning_rate": 0.0006, + "loss": 3.5788726806640625, + "step": 3926 + }, + { + "epoch": 54.54521625163827, + "grad_norm": 0.22310106456279755, + "learning_rate": 0.0006, + "loss": 3.5873899459838867, + "step": 3927 + }, + { + "epoch": 54.55919615552643, + "grad_norm": 0.2121969312429428, + "learning_rate": 0.0006, + "loss": 3.575186252593994, + "step": 3928 + }, + { + "epoch": 54.57317605941459, + "grad_norm": 0.19073615968227386, + "learning_rate": 0.0006, + "loss": 3.5963356494903564, + "step": 3929 + }, + { + "epoch": 54.58715596330275, + "grad_norm": 0.18745607137680054, + "learning_rate": 0.0006, + "loss": 3.593679428100586, + "step": 3930 + }, + { + "epoch": 54.60113586719091, + "grad_norm": 0.19518259167671204, + "learning_rate": 0.0006, + "loss": 3.5730791091918945, + "step": 3931 + }, + { + "epoch": 54.615115771079076, + "grad_norm": 0.20948481559753418, + "learning_rate": 0.0006, + "loss": 3.5646820068359375, + "step": 3932 + }, + { + "epoch": 54.62909567496723, + "grad_norm": 0.1929631531238556, + "learning_rate": 0.0006, + "loss": 3.5550060272216797, + "step": 3933 + }, + { + "epoch": 54.643075578855395, + "grad_norm": 0.2104327380657196, + "learning_rate": 0.0006, + "loss": 3.5774357318878174, + "step": 3934 + }, + { + "epoch": 54.65705548274356, + "grad_norm": 0.1952148675918579, + "learning_rate": 0.0006, + "loss": 3.58856201171875, + "step": 3935 + }, + { + "epoch": 54.671035386631715, + "grad_norm": 0.17762340605258942, + "learning_rate": 0.0006, + "loss": 3.5324528217315674, + "step": 3936 + }, + { + "epoch": 54.68501529051988, + "grad_norm": 0.18349695205688477, + "learning_rate": 0.0006, + "loss": 3.5663890838623047, + "step": 3937 + }, + { + "epoch": 54.69899519440804, + "grad_norm": 0.2038232684135437, + "learning_rate": 0.0006, + "loss": 3.5811679363250732, + "step": 3938 + }, + { + "epoch": 54.7129750982962, + "grad_norm": 0.2431754469871521, + "learning_rate": 0.0006, + "loss": 3.56833553314209, + "step": 3939 + }, + { + "epoch": 54.72695500218436, + "grad_norm": 0.27498456835746765, + "learning_rate": 0.0006, + "loss": 3.5977981090545654, + "step": 3940 + }, + { + "epoch": 54.74093490607252, + "grad_norm": 0.20809921622276306, + "learning_rate": 0.0006, + "loss": 3.57193922996521, + "step": 3941 + }, + { + "epoch": 54.75491480996068, + "grad_norm": 0.18073450028896332, + "learning_rate": 0.0006, + "loss": 3.5610151290893555, + "step": 3942 + }, + { + "epoch": 54.768894713848844, + "grad_norm": 0.194604754447937, + "learning_rate": 0.0006, + "loss": 3.5716047286987305, + "step": 3943 + }, + { + "epoch": 54.782874617737, + "grad_norm": 0.20566268265247345, + "learning_rate": 0.0006, + "loss": 3.578401565551758, + "step": 3944 + }, + { + "epoch": 54.796854521625164, + "grad_norm": 0.21028153598308563, + "learning_rate": 0.0006, + "loss": 3.610511064529419, + "step": 3945 + }, + { + "epoch": 54.81083442551333, + "grad_norm": 0.21413563191890717, + "learning_rate": 0.0006, + "loss": 3.601574659347534, + "step": 3946 + }, + { + "epoch": 54.824814329401484, + "grad_norm": 0.2137378603219986, + "learning_rate": 0.0006, + "loss": 3.603997230529785, + "step": 3947 + }, + { + "epoch": 54.83879423328965, + "grad_norm": 0.2162058800458908, + "learning_rate": 0.0006, + "loss": 3.5829391479492188, + "step": 3948 + }, + { + "epoch": 54.8527741371778, + "grad_norm": 0.21700997650623322, + "learning_rate": 0.0006, + "loss": 3.595317840576172, + "step": 3949 + }, + { + "epoch": 54.86675404106597, + "grad_norm": 0.20864669978618622, + "learning_rate": 0.0006, + "loss": 3.601891040802002, + "step": 3950 + }, + { + "epoch": 54.88073394495413, + "grad_norm": 0.19780485332012177, + "learning_rate": 0.0006, + "loss": 3.567460775375366, + "step": 3951 + }, + { + "epoch": 54.89471384884229, + "grad_norm": 0.2017168402671814, + "learning_rate": 0.0006, + "loss": 3.5737192630767822, + "step": 3952 + }, + { + "epoch": 54.90869375273045, + "grad_norm": 0.22847825288772583, + "learning_rate": 0.0006, + "loss": 3.60937762260437, + "step": 3953 + }, + { + "epoch": 54.92267365661861, + "grad_norm": 0.23698270320892334, + "learning_rate": 0.0006, + "loss": 3.6013574600219727, + "step": 3954 + }, + { + "epoch": 54.93665356050677, + "grad_norm": 0.238611102104187, + "learning_rate": 0.0006, + "loss": 3.5689988136291504, + "step": 3955 + }, + { + "epoch": 54.95063346439493, + "grad_norm": 0.2680057883262634, + "learning_rate": 0.0006, + "loss": 3.5650172233581543, + "step": 3956 + }, + { + "epoch": 54.964613368283096, + "grad_norm": 0.25712481141090393, + "learning_rate": 0.0006, + "loss": 3.576777935028076, + "step": 3957 + }, + { + "epoch": 54.97859327217125, + "grad_norm": 0.2232409566640854, + "learning_rate": 0.0006, + "loss": 3.583169937133789, + "step": 3958 + }, + { + "epoch": 54.992573176059416, + "grad_norm": 0.21233153343200684, + "learning_rate": 0.0006, + "loss": 3.602219581604004, + "step": 3959 + }, + { + "epoch": 55.0, + "grad_norm": 0.24345774948596954, + "learning_rate": 0.0006, + "loss": 3.5118026733398438, + "step": 3960 + }, + { + "epoch": 55.0, + "eval_loss": 3.9819064140319824, + "eval_runtime": 44.6627, + "eval_samples_per_second": 54.677, + "eval_steps_per_second": 3.426, + "step": 3960 + }, + { + "epoch": 55.01397990388816, + "grad_norm": 0.229562908411026, + "learning_rate": 0.0006, + "loss": 3.5591073036193848, + "step": 3961 + }, + { + "epoch": 55.02795980777632, + "grad_norm": 0.21731624007225037, + "learning_rate": 0.0006, + "loss": 3.5544848442077637, + "step": 3962 + }, + { + "epoch": 55.04193971166448, + "grad_norm": 0.23528429865837097, + "learning_rate": 0.0006, + "loss": 3.5654311180114746, + "step": 3963 + }, + { + "epoch": 55.05591961555265, + "grad_norm": 0.23147839307785034, + "learning_rate": 0.0006, + "loss": 3.537006378173828, + "step": 3964 + }, + { + "epoch": 55.0698995194408, + "grad_norm": 0.22218112647533417, + "learning_rate": 0.0006, + "loss": 3.5218982696533203, + "step": 3965 + }, + { + "epoch": 55.083879423328966, + "grad_norm": 0.20697443187236786, + "learning_rate": 0.0006, + "loss": 3.5623579025268555, + "step": 3966 + }, + { + "epoch": 55.09785932721712, + "grad_norm": 0.2108476608991623, + "learning_rate": 0.0006, + "loss": 3.528214454650879, + "step": 3967 + }, + { + "epoch": 55.111839231105286, + "grad_norm": 0.21664242446422577, + "learning_rate": 0.0006, + "loss": 3.5429646968841553, + "step": 3968 + }, + { + "epoch": 55.12581913499345, + "grad_norm": 0.21359260380268097, + "learning_rate": 0.0006, + "loss": 3.5873513221740723, + "step": 3969 + }, + { + "epoch": 55.139799038881605, + "grad_norm": 0.23289452493190765, + "learning_rate": 0.0006, + "loss": 3.5551905632019043, + "step": 3970 + }, + { + "epoch": 55.15377894276977, + "grad_norm": 0.25835689902305603, + "learning_rate": 0.0006, + "loss": 3.5380427837371826, + "step": 3971 + }, + { + "epoch": 55.16775884665793, + "grad_norm": 0.25449255108833313, + "learning_rate": 0.0006, + "loss": 3.5276808738708496, + "step": 3972 + }, + { + "epoch": 55.18173875054609, + "grad_norm": 0.2472638338804245, + "learning_rate": 0.0006, + "loss": 3.539194107055664, + "step": 3973 + }, + { + "epoch": 55.19571865443425, + "grad_norm": 0.21743768453598022, + "learning_rate": 0.0006, + "loss": 3.557185173034668, + "step": 3974 + }, + { + "epoch": 55.20969855832241, + "grad_norm": 0.22787386178970337, + "learning_rate": 0.0006, + "loss": 3.581993579864502, + "step": 3975 + }, + { + "epoch": 55.22367846221057, + "grad_norm": 0.2332824170589447, + "learning_rate": 0.0006, + "loss": 3.5439846515655518, + "step": 3976 + }, + { + "epoch": 55.237658366098735, + "grad_norm": 0.2054908573627472, + "learning_rate": 0.0006, + "loss": 3.5528793334960938, + "step": 3977 + }, + { + "epoch": 55.25163826998689, + "grad_norm": 0.2087554633617401, + "learning_rate": 0.0006, + "loss": 3.536464214324951, + "step": 3978 + }, + { + "epoch": 55.265618173875055, + "grad_norm": 0.22214409708976746, + "learning_rate": 0.0006, + "loss": 3.56184458732605, + "step": 3979 + }, + { + "epoch": 55.27959807776322, + "grad_norm": 0.23214097321033478, + "learning_rate": 0.0006, + "loss": 3.5560522079467773, + "step": 3980 + }, + { + "epoch": 55.293577981651374, + "grad_norm": 0.23317331075668335, + "learning_rate": 0.0006, + "loss": 3.5433850288391113, + "step": 3981 + }, + { + "epoch": 55.30755788553954, + "grad_norm": 0.2303774058818817, + "learning_rate": 0.0006, + "loss": 3.5505576133728027, + "step": 3982 + }, + { + "epoch": 55.3215377894277, + "grad_norm": 0.2400730401277542, + "learning_rate": 0.0006, + "loss": 3.557952404022217, + "step": 3983 + }, + { + "epoch": 55.33551769331586, + "grad_norm": 0.23933538794517517, + "learning_rate": 0.0006, + "loss": 3.536656141281128, + "step": 3984 + }, + { + "epoch": 55.34949759720402, + "grad_norm": 0.23796266317367554, + "learning_rate": 0.0006, + "loss": 3.5777554512023926, + "step": 3985 + }, + { + "epoch": 55.36347750109218, + "grad_norm": 0.26078858971595764, + "learning_rate": 0.0006, + "loss": 3.549121379852295, + "step": 3986 + }, + { + "epoch": 55.37745740498034, + "grad_norm": 0.22726459801197052, + "learning_rate": 0.0006, + "loss": 3.605684518814087, + "step": 3987 + }, + { + "epoch": 55.391437308868504, + "grad_norm": 0.19872179627418518, + "learning_rate": 0.0006, + "loss": 3.5501739978790283, + "step": 3988 + }, + { + "epoch": 55.40541721275666, + "grad_norm": 0.2027827352285385, + "learning_rate": 0.0006, + "loss": 3.625922441482544, + "step": 3989 + }, + { + "epoch": 55.419397116644824, + "grad_norm": 0.24207144975662231, + "learning_rate": 0.0006, + "loss": 3.595451831817627, + "step": 3990 + }, + { + "epoch": 55.43337702053299, + "grad_norm": 0.23449009656906128, + "learning_rate": 0.0006, + "loss": 3.577167510986328, + "step": 3991 + }, + { + "epoch": 55.44735692442114, + "grad_norm": 0.22529540956020355, + "learning_rate": 0.0006, + "loss": 3.5585317611694336, + "step": 3992 + }, + { + "epoch": 55.46133682830931, + "grad_norm": 0.2354331612586975, + "learning_rate": 0.0006, + "loss": 3.574819564819336, + "step": 3993 + }, + { + "epoch": 55.47531673219746, + "grad_norm": 0.2251061201095581, + "learning_rate": 0.0006, + "loss": 3.580498695373535, + "step": 3994 + }, + { + "epoch": 55.489296636085626, + "grad_norm": 0.22107349336147308, + "learning_rate": 0.0006, + "loss": 3.578591823577881, + "step": 3995 + }, + { + "epoch": 55.50327653997379, + "grad_norm": 0.24686408042907715, + "learning_rate": 0.0006, + "loss": 3.541625499725342, + "step": 3996 + }, + { + "epoch": 55.517256443861946, + "grad_norm": 0.23731260001659393, + "learning_rate": 0.0006, + "loss": 3.5508079528808594, + "step": 3997 + }, + { + "epoch": 55.53123634775011, + "grad_norm": 0.21246901154518127, + "learning_rate": 0.0006, + "loss": 3.569500207901001, + "step": 3998 + }, + { + "epoch": 55.54521625163827, + "grad_norm": 0.21369415521621704, + "learning_rate": 0.0006, + "loss": 3.546938896179199, + "step": 3999 + }, + { + "epoch": 55.55919615552643, + "grad_norm": 0.2102644443511963, + "learning_rate": 0.0006, + "loss": 3.5842084884643555, + "step": 4000 + }, + { + "epoch": 55.57317605941459, + "grad_norm": 0.2355998456478119, + "learning_rate": 0.0006, + "loss": 3.5493381023406982, + "step": 4001 + }, + { + "epoch": 55.58715596330275, + "grad_norm": 0.2670288681983948, + "learning_rate": 0.0006, + "loss": 3.5909032821655273, + "step": 4002 + }, + { + "epoch": 55.60113586719091, + "grad_norm": 0.2958407998085022, + "learning_rate": 0.0006, + "loss": 3.624906063079834, + "step": 4003 + }, + { + "epoch": 55.615115771079076, + "grad_norm": 0.2948441505432129, + "learning_rate": 0.0006, + "loss": 3.553528070449829, + "step": 4004 + }, + { + "epoch": 55.62909567496723, + "grad_norm": 0.24873173236846924, + "learning_rate": 0.0006, + "loss": 3.5851495265960693, + "step": 4005 + }, + { + "epoch": 55.643075578855395, + "grad_norm": 0.22191756963729858, + "learning_rate": 0.0006, + "loss": 3.556459903717041, + "step": 4006 + }, + { + "epoch": 55.65705548274356, + "grad_norm": 0.22677776217460632, + "learning_rate": 0.0006, + "loss": 3.579428195953369, + "step": 4007 + }, + { + "epoch": 55.671035386631715, + "grad_norm": 0.22263763844966888, + "learning_rate": 0.0006, + "loss": 3.5878806114196777, + "step": 4008 + }, + { + "epoch": 55.68501529051988, + "grad_norm": 0.24498602747917175, + "learning_rate": 0.0006, + "loss": 3.5989317893981934, + "step": 4009 + }, + { + "epoch": 55.69899519440804, + "grad_norm": 0.26294007897377014, + "learning_rate": 0.0006, + "loss": 3.5866756439208984, + "step": 4010 + }, + { + "epoch": 55.7129750982962, + "grad_norm": 0.22105370461940765, + "learning_rate": 0.0006, + "loss": 3.594365119934082, + "step": 4011 + }, + { + "epoch": 55.72695500218436, + "grad_norm": 0.20973286032676697, + "learning_rate": 0.0006, + "loss": 3.551156997680664, + "step": 4012 + }, + { + "epoch": 55.74093490607252, + "grad_norm": 0.2123304158449173, + "learning_rate": 0.0006, + "loss": 3.587405204772949, + "step": 4013 + }, + { + "epoch": 55.75491480996068, + "grad_norm": 0.22134795784950256, + "learning_rate": 0.0006, + "loss": 3.59114146232605, + "step": 4014 + }, + { + "epoch": 55.768894713848844, + "grad_norm": 0.20822957158088684, + "learning_rate": 0.0006, + "loss": 3.5910749435424805, + "step": 4015 + }, + { + "epoch": 55.782874617737, + "grad_norm": 0.22392229735851288, + "learning_rate": 0.0006, + "loss": 3.5800669193267822, + "step": 4016 + }, + { + "epoch": 55.796854521625164, + "grad_norm": 0.2214914709329605, + "learning_rate": 0.0006, + "loss": 3.5553741455078125, + "step": 4017 + }, + { + "epoch": 55.81083442551333, + "grad_norm": 0.1993025690317154, + "learning_rate": 0.0006, + "loss": 3.567298412322998, + "step": 4018 + }, + { + "epoch": 55.824814329401484, + "grad_norm": 0.21043774485588074, + "learning_rate": 0.0006, + "loss": 3.537358045578003, + "step": 4019 + }, + { + "epoch": 55.83879423328965, + "grad_norm": 0.18501818180084229, + "learning_rate": 0.0006, + "loss": 3.5971930027008057, + "step": 4020 + }, + { + "epoch": 55.8527741371778, + "grad_norm": 0.19626867771148682, + "learning_rate": 0.0006, + "loss": 3.563570976257324, + "step": 4021 + }, + { + "epoch": 55.86675404106597, + "grad_norm": 0.19328820705413818, + "learning_rate": 0.0006, + "loss": 3.600377082824707, + "step": 4022 + }, + { + "epoch": 55.88073394495413, + "grad_norm": 0.2013237327337265, + "learning_rate": 0.0006, + "loss": 3.5916812419891357, + "step": 4023 + }, + { + "epoch": 55.89471384884229, + "grad_norm": 0.22775673866271973, + "learning_rate": 0.0006, + "loss": 3.5572638511657715, + "step": 4024 + }, + { + "epoch": 55.90869375273045, + "grad_norm": 0.2452211230993271, + "learning_rate": 0.0006, + "loss": 3.54378080368042, + "step": 4025 + }, + { + "epoch": 55.92267365661861, + "grad_norm": 0.23337189853191376, + "learning_rate": 0.0006, + "loss": 3.5853466987609863, + "step": 4026 + }, + { + "epoch": 55.93665356050677, + "grad_norm": 0.20073719322681427, + "learning_rate": 0.0006, + "loss": 3.5793843269348145, + "step": 4027 + }, + { + "epoch": 55.95063346439493, + "grad_norm": 0.1963811218738556, + "learning_rate": 0.0006, + "loss": 3.5783073902130127, + "step": 4028 + }, + { + "epoch": 55.964613368283096, + "grad_norm": 0.19921033084392548, + "learning_rate": 0.0006, + "loss": 3.5455331802368164, + "step": 4029 + }, + { + "epoch": 55.97859327217125, + "grad_norm": 0.22151921689510345, + "learning_rate": 0.0006, + "loss": 3.551476001739502, + "step": 4030 + }, + { + "epoch": 55.992573176059416, + "grad_norm": 0.2636640965938568, + "learning_rate": 0.0006, + "loss": 3.5859174728393555, + "step": 4031 + }, + { + "epoch": 56.0, + "grad_norm": 0.282680869102478, + "learning_rate": 0.0006, + "loss": 3.5818469524383545, + "step": 4032 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 1.7182328345371607e+18, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4032/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4320/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4320/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4320/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4320/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..773e9b660f4edf8b07b2f58a97d5ceac6fee8e43 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4646e17ad34e1ea9c1b01362dbdfb83124cc26aa50b2c97b86f6884daddb0e28 +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4320/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..814075674b2323245606e1a2264ff09d4c0fb676 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8e7d33f6e6a89083821b589a9b4b35eaf55a7a2f6ce8487906546b1c55fb5c4 +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4320/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..c256005493a3df894a240f1b9c8a9bda4f77c4b5 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4678cd6c9cd6c2f064975a6e9935a8800be1e8ade4385f744bc4743a61e0ecf9 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4320/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..a9f42fa043d740c01faded73fffce6c7f27d7749 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7d0d396878f9276df58e7b671ae6792f519596b0bbe33226b130cfeb14fc366 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4320/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..8304bf8d1ccccae077ecc7e6e66bba8073475ac5 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c504cbc081ac24362a030317097aa4f7d2e9075cfc12b05dc64f4ee58e8558c +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4320/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4320/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4320/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..47f9a465e2b05b336f5291db883f75c1d436861d --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/trainer_state.json @@ -0,0 +1,30746 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 60.0, + "eval_steps": 500, + "global_step": 4320, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + }, + { + "epoch": 8.0, + "eval_loss": 5.100707530975342, + "eval_runtime": 44.2493, + "eval_samples_per_second": 55.187, + "eval_steps_per_second": 3.458, + "step": 576 + }, + { + "epoch": 8.013979903888162, + "grad_norm": 0.3658510148525238, + "learning_rate": 0.0006, + "loss": 4.759055137634277, + "step": 577 + }, + { + "epoch": 8.027959807776321, + "grad_norm": 0.41794446110725403, + "learning_rate": 0.0006, + "loss": 4.737661838531494, + "step": 578 + }, + { + "epoch": 8.041939711664483, + "grad_norm": 0.43284085392951965, + "learning_rate": 0.0006, + "loss": 4.775538444519043, + "step": 579 + }, + { + "epoch": 8.055919615552643, + "grad_norm": 0.4716675281524658, + "learning_rate": 0.0006, + "loss": 4.762231826782227, + "step": 580 + }, + { + "epoch": 8.069899519440805, + "grad_norm": 0.3849579393863678, + "learning_rate": 0.0006, + "loss": 4.753598690032959, + "step": 581 + }, + { + "epoch": 8.083879423328964, + "grad_norm": 0.3721151053905487, + "learning_rate": 0.0006, + "loss": 4.728978157043457, + "step": 582 + }, + { + "epoch": 8.097859327217126, + "grad_norm": 0.37009572982788086, + "learning_rate": 0.0006, + "loss": 4.759153366088867, + "step": 583 + }, + { + "epoch": 8.111839231105286, + "grad_norm": 0.37051302194595337, + "learning_rate": 0.0006, + "loss": 4.744197368621826, + "step": 584 + }, + { + "epoch": 8.125819134993447, + "grad_norm": 0.331238329410553, + "learning_rate": 0.0006, + "loss": 4.7338385581970215, + "step": 585 + }, + { + "epoch": 8.139799038881607, + "grad_norm": 0.3737713694572449, + "learning_rate": 0.0006, + "loss": 4.719110488891602, + "step": 586 + }, + { + "epoch": 8.153778942769769, + "grad_norm": 0.3713214695453644, + "learning_rate": 0.0006, + "loss": 4.734012126922607, + "step": 587 + }, + { + "epoch": 8.167758846657929, + "grad_norm": 0.4060780107975006, + "learning_rate": 0.0006, + "loss": 4.746830940246582, + "step": 588 + }, + { + "epoch": 8.18173875054609, + "grad_norm": 0.39814314246177673, + "learning_rate": 0.0006, + "loss": 4.722851753234863, + "step": 589 + }, + { + "epoch": 8.19571865443425, + "grad_norm": 0.3175652325153351, + "learning_rate": 0.0006, + "loss": 4.745110034942627, + "step": 590 + }, + { + "epoch": 8.209698558322412, + "grad_norm": 0.37214916944503784, + "learning_rate": 0.0006, + "loss": 4.7362775802612305, + "step": 591 + }, + { + "epoch": 8.223678462210572, + "grad_norm": 0.3873472809791565, + "learning_rate": 0.0006, + "loss": 4.738964557647705, + "step": 592 + }, + { + "epoch": 8.237658366098733, + "grad_norm": 0.3299207091331482, + "learning_rate": 0.0006, + "loss": 4.713451385498047, + "step": 593 + }, + { + "epoch": 8.251638269986893, + "grad_norm": 0.32445064187049866, + "learning_rate": 0.0006, + "loss": 4.725602149963379, + "step": 594 + }, + { + "epoch": 8.265618173875055, + "grad_norm": 0.32903164625167847, + "learning_rate": 0.0006, + "loss": 4.732064247131348, + "step": 595 + }, + { + "epoch": 8.279598077763215, + "grad_norm": 0.3166804313659668, + "learning_rate": 0.0006, + "loss": 4.678950786590576, + "step": 596 + }, + { + "epoch": 8.293577981651376, + "grad_norm": 0.2750290334224701, + "learning_rate": 0.0006, + "loss": 4.719513416290283, + "step": 597 + }, + { + "epoch": 8.307557885539538, + "grad_norm": 0.291029691696167, + "learning_rate": 0.0006, + "loss": 4.715405464172363, + "step": 598 + }, + { + "epoch": 8.321537789427698, + "grad_norm": 0.34105145931243896, + "learning_rate": 0.0006, + "loss": 4.722611427307129, + "step": 599 + }, + { + "epoch": 8.33551769331586, + "grad_norm": 0.3078882694244385, + "learning_rate": 0.0006, + "loss": 4.668856620788574, + "step": 600 + }, + { + "epoch": 8.349497597204019, + "grad_norm": 0.3218833804130554, + "learning_rate": 0.0006, + "loss": 4.719579696655273, + "step": 601 + }, + { + "epoch": 8.36347750109218, + "grad_norm": 0.35716721415519714, + "learning_rate": 0.0006, + "loss": 4.690774440765381, + "step": 602 + }, + { + "epoch": 8.37745740498034, + "grad_norm": 0.3045452833175659, + "learning_rate": 0.0006, + "loss": 4.696503639221191, + "step": 603 + }, + { + "epoch": 8.391437308868502, + "grad_norm": 0.3127244710922241, + "learning_rate": 0.0006, + "loss": 4.701899528503418, + "step": 604 + }, + { + "epoch": 8.405417212756662, + "grad_norm": 0.34988710284233093, + "learning_rate": 0.0006, + "loss": 4.677641868591309, + "step": 605 + }, + { + "epoch": 8.419397116644824, + "grad_norm": 0.34035569429397583, + "learning_rate": 0.0006, + "loss": 4.707778453826904, + "step": 606 + }, + { + "epoch": 8.433377020532983, + "grad_norm": 0.3341112732887268, + "learning_rate": 0.0006, + "loss": 4.724853038787842, + "step": 607 + }, + { + "epoch": 8.447356924421145, + "grad_norm": 0.41744324564933777, + "learning_rate": 0.0006, + "loss": 4.680908203125, + "step": 608 + }, + { + "epoch": 8.461336828309305, + "grad_norm": 0.40402331948280334, + "learning_rate": 0.0006, + "loss": 4.726455211639404, + "step": 609 + }, + { + "epoch": 8.475316732197467, + "grad_norm": 0.4727570414543152, + "learning_rate": 0.0006, + "loss": 4.6793084144592285, + "step": 610 + }, + { + "epoch": 8.489296636085626, + "grad_norm": 0.43002694845199585, + "learning_rate": 0.0006, + "loss": 4.663918972015381, + "step": 611 + }, + { + "epoch": 8.503276539973788, + "grad_norm": 0.36124858260154724, + "learning_rate": 0.0006, + "loss": 4.657375335693359, + "step": 612 + }, + { + "epoch": 8.517256443861948, + "grad_norm": 0.37644803524017334, + "learning_rate": 0.0006, + "loss": 4.676977157592773, + "step": 613 + }, + { + "epoch": 8.53123634775011, + "grad_norm": 0.32347747683525085, + "learning_rate": 0.0006, + "loss": 4.708547115325928, + "step": 614 + }, + { + "epoch": 8.54521625163827, + "grad_norm": 0.3071717619895935, + "learning_rate": 0.0006, + "loss": 4.650189399719238, + "step": 615 + }, + { + "epoch": 8.55919615552643, + "grad_norm": 0.30222490429878235, + "learning_rate": 0.0006, + "loss": 4.647942543029785, + "step": 616 + }, + { + "epoch": 8.57317605941459, + "grad_norm": 0.31545212864875793, + "learning_rate": 0.0006, + "loss": 4.660242080688477, + "step": 617 + }, + { + "epoch": 8.587155963302752, + "grad_norm": 0.31644752621650696, + "learning_rate": 0.0006, + "loss": 4.666710376739502, + "step": 618 + }, + { + "epoch": 8.601135867190912, + "grad_norm": 0.26057198643684387, + "learning_rate": 0.0006, + "loss": 4.668096542358398, + "step": 619 + }, + { + "epoch": 8.615115771079074, + "grad_norm": 0.25473910570144653, + "learning_rate": 0.0006, + "loss": 4.641562461853027, + "step": 620 + }, + { + "epoch": 8.629095674967235, + "grad_norm": 0.2456732839345932, + "learning_rate": 0.0006, + "loss": 4.6545281410217285, + "step": 621 + }, + { + "epoch": 8.643075578855395, + "grad_norm": 0.25180476903915405, + "learning_rate": 0.0006, + "loss": 4.6506524085998535, + "step": 622 + }, + { + "epoch": 8.657055482743557, + "grad_norm": 0.21761579811573029, + "learning_rate": 0.0006, + "loss": 4.638909339904785, + "step": 623 + }, + { + "epoch": 8.671035386631717, + "grad_norm": 0.23590542376041412, + "learning_rate": 0.0006, + "loss": 4.6572747230529785, + "step": 624 + }, + { + "epoch": 8.685015290519878, + "grad_norm": 0.23870624601840973, + "learning_rate": 0.0006, + "loss": 4.643742084503174, + "step": 625 + }, + { + "epoch": 8.698995194408038, + "grad_norm": 0.2191203385591507, + "learning_rate": 0.0006, + "loss": 4.632617950439453, + "step": 626 + }, + { + "epoch": 8.7129750982962, + "grad_norm": 0.22107063233852386, + "learning_rate": 0.0006, + "loss": 4.625616073608398, + "step": 627 + }, + { + "epoch": 8.72695500218436, + "grad_norm": 0.20833902060985565, + "learning_rate": 0.0006, + "loss": 4.609896659851074, + "step": 628 + }, + { + "epoch": 8.740934906072521, + "grad_norm": 0.254967600107193, + "learning_rate": 0.0006, + "loss": 4.651735782623291, + "step": 629 + }, + { + "epoch": 8.754914809960681, + "grad_norm": 0.31587523221969604, + "learning_rate": 0.0006, + "loss": 4.6404032707214355, + "step": 630 + }, + { + "epoch": 8.768894713848843, + "grad_norm": 0.28598251938819885, + "learning_rate": 0.0006, + "loss": 4.602679252624512, + "step": 631 + }, + { + "epoch": 8.782874617737003, + "grad_norm": 0.23216590285301208, + "learning_rate": 0.0006, + "loss": 4.610319137573242, + "step": 632 + }, + { + "epoch": 8.796854521625164, + "grad_norm": 0.29212239384651184, + "learning_rate": 0.0006, + "loss": 4.600744247436523, + "step": 633 + }, + { + "epoch": 8.810834425513324, + "grad_norm": 0.3375801146030426, + "learning_rate": 0.0006, + "loss": 4.627819061279297, + "step": 634 + }, + { + "epoch": 8.824814329401486, + "grad_norm": 0.4207753837108612, + "learning_rate": 0.0006, + "loss": 4.634505271911621, + "step": 635 + }, + { + "epoch": 8.838794233289645, + "grad_norm": 0.4640173614025116, + "learning_rate": 0.0006, + "loss": 4.636714935302734, + "step": 636 + }, + { + "epoch": 8.852774137177807, + "grad_norm": 0.5255663990974426, + "learning_rate": 0.0006, + "loss": 4.659462928771973, + "step": 637 + }, + { + "epoch": 8.866754041065967, + "grad_norm": 0.5108268857002258, + "learning_rate": 0.0006, + "loss": 4.633192539215088, + "step": 638 + }, + { + "epoch": 8.880733944954128, + "grad_norm": 0.3821936845779419, + "learning_rate": 0.0006, + "loss": 4.621200084686279, + "step": 639 + }, + { + "epoch": 8.89471384884229, + "grad_norm": 0.3918485939502716, + "learning_rate": 0.0006, + "loss": 4.632599830627441, + "step": 640 + }, + { + "epoch": 8.90869375273045, + "grad_norm": 0.3416556119918823, + "learning_rate": 0.0006, + "loss": 4.620438098907471, + "step": 641 + }, + { + "epoch": 8.922673656618612, + "grad_norm": 0.3191553056240082, + "learning_rate": 0.0006, + "loss": 4.617823600769043, + "step": 642 + }, + { + "epoch": 8.936653560506771, + "grad_norm": 0.3368529677391052, + "learning_rate": 0.0006, + "loss": 4.617222785949707, + "step": 643 + }, + { + "epoch": 8.950633464394933, + "grad_norm": 0.3255428969860077, + "learning_rate": 0.0006, + "loss": 4.633878707885742, + "step": 644 + }, + { + "epoch": 8.964613368283093, + "grad_norm": 0.31394779682159424, + "learning_rate": 0.0006, + "loss": 4.642603874206543, + "step": 645 + }, + { + "epoch": 8.978593272171254, + "grad_norm": 0.29999351501464844, + "learning_rate": 0.0006, + "loss": 4.5925211906433105, + "step": 646 + }, + { + "epoch": 8.992573176059414, + "grad_norm": 0.309154748916626, + "learning_rate": 0.0006, + "loss": 4.61745023727417, + "step": 647 + }, + { + "epoch": 9.0, + "grad_norm": 0.2660452425479889, + "learning_rate": 0.0006, + "loss": 4.575107097625732, + "step": 648 + }, + { + "epoch": 9.0, + "eval_loss": 4.8804192543029785, + "eval_runtime": 45.0015, + "eval_samples_per_second": 54.265, + "eval_steps_per_second": 3.4, + "step": 648 + }, + { + "epoch": 9.013979903888162, + "grad_norm": 0.24159297347068787, + "learning_rate": 0.0006, + "loss": 4.571323871612549, + "step": 649 + }, + { + "epoch": 9.027959807776321, + "grad_norm": 0.2835831046104431, + "learning_rate": 0.0006, + "loss": 4.614255905151367, + "step": 650 + }, + { + "epoch": 9.041939711664483, + "grad_norm": 0.2646859288215637, + "learning_rate": 0.0006, + "loss": 4.578947067260742, + "step": 651 + }, + { + "epoch": 9.055919615552643, + "grad_norm": 0.28868553042411804, + "learning_rate": 0.0006, + "loss": 4.575977325439453, + "step": 652 + }, + { + "epoch": 9.069899519440805, + "grad_norm": 0.2899586856365204, + "learning_rate": 0.0006, + "loss": 4.541798114776611, + "step": 653 + }, + { + "epoch": 9.083879423328964, + "grad_norm": 0.32786068320274353, + "learning_rate": 0.0006, + "loss": 4.575140953063965, + "step": 654 + }, + { + "epoch": 9.097859327217126, + "grad_norm": 0.35675594210624695, + "learning_rate": 0.0006, + "loss": 4.58184814453125, + "step": 655 + }, + { + "epoch": 9.111839231105286, + "grad_norm": 0.3380381166934967, + "learning_rate": 0.0006, + "loss": 4.546271324157715, + "step": 656 + }, + { + "epoch": 9.125819134993447, + "grad_norm": 0.3035511374473572, + "learning_rate": 0.0006, + "loss": 4.591629981994629, + "step": 657 + }, + { + "epoch": 9.139799038881607, + "grad_norm": 0.2733091711997986, + "learning_rate": 0.0006, + "loss": 4.559020042419434, + "step": 658 + }, + { + "epoch": 9.153778942769769, + "grad_norm": 0.2870676815509796, + "learning_rate": 0.0006, + "loss": 4.552787780761719, + "step": 659 + }, + { + "epoch": 9.167758846657929, + "grad_norm": 0.37471064925193787, + "learning_rate": 0.0006, + "loss": 4.572757244110107, + "step": 660 + }, + { + "epoch": 9.18173875054609, + "grad_norm": 0.37889063358306885, + "learning_rate": 0.0006, + "loss": 4.573302268981934, + "step": 661 + }, + { + "epoch": 9.19571865443425, + "grad_norm": 0.29983851313591003, + "learning_rate": 0.0006, + "loss": 4.571202754974365, + "step": 662 + }, + { + "epoch": 9.209698558322412, + "grad_norm": 0.27595147490501404, + "learning_rate": 0.0006, + "loss": 4.529508590698242, + "step": 663 + }, + { + "epoch": 9.223678462210572, + "grad_norm": 0.22693437337875366, + "learning_rate": 0.0006, + "loss": 4.572267532348633, + "step": 664 + }, + { + "epoch": 9.237658366098733, + "grad_norm": 0.27147138118743896, + "learning_rate": 0.0006, + "loss": 4.529747009277344, + "step": 665 + }, + { + "epoch": 9.251638269986893, + "grad_norm": 0.24952703714370728, + "learning_rate": 0.0006, + "loss": 4.553647994995117, + "step": 666 + }, + { + "epoch": 9.265618173875055, + "grad_norm": 0.3086707592010498, + "learning_rate": 0.0006, + "loss": 4.494636058807373, + "step": 667 + }, + { + "epoch": 9.279598077763215, + "grad_norm": 0.3265218138694763, + "learning_rate": 0.0006, + "loss": 4.522481918334961, + "step": 668 + }, + { + "epoch": 9.293577981651376, + "grad_norm": 0.2744608223438263, + "learning_rate": 0.0006, + "loss": 4.544595241546631, + "step": 669 + }, + { + "epoch": 9.307557885539538, + "grad_norm": 0.26698485016822815, + "learning_rate": 0.0006, + "loss": 4.506407260894775, + "step": 670 + }, + { + "epoch": 9.321537789427698, + "grad_norm": 0.2775942087173462, + "learning_rate": 0.0006, + "loss": 4.534619331359863, + "step": 671 + }, + { + "epoch": 9.33551769331586, + "grad_norm": 0.2421862781047821, + "learning_rate": 0.0006, + "loss": 4.523318290710449, + "step": 672 + }, + { + "epoch": 9.349497597204019, + "grad_norm": 0.2756497263908386, + "learning_rate": 0.0006, + "loss": 4.517561912536621, + "step": 673 + }, + { + "epoch": 9.36347750109218, + "grad_norm": 0.28845369815826416, + "learning_rate": 0.0006, + "loss": 4.530844688415527, + "step": 674 + }, + { + "epoch": 9.37745740498034, + "grad_norm": 0.32285866141319275, + "learning_rate": 0.0006, + "loss": 4.55369758605957, + "step": 675 + }, + { + "epoch": 9.391437308868502, + "grad_norm": 0.3726065754890442, + "learning_rate": 0.0006, + "loss": 4.524348258972168, + "step": 676 + }, + { + "epoch": 9.405417212756662, + "grad_norm": 0.39524078369140625, + "learning_rate": 0.0006, + "loss": 4.535778045654297, + "step": 677 + }, + { + "epoch": 9.419397116644824, + "grad_norm": 0.3859797716140747, + "learning_rate": 0.0006, + "loss": 4.538474082946777, + "step": 678 + }, + { + "epoch": 9.433377020532983, + "grad_norm": 0.36151406168937683, + "learning_rate": 0.0006, + "loss": 4.54434061050415, + "step": 679 + }, + { + "epoch": 9.447356924421145, + "grad_norm": 0.40345999598503113, + "learning_rate": 0.0006, + "loss": 4.532961845397949, + "step": 680 + }, + { + "epoch": 9.461336828309305, + "grad_norm": 0.38864144682884216, + "learning_rate": 0.0006, + "loss": 4.567630767822266, + "step": 681 + }, + { + "epoch": 9.475316732197467, + "grad_norm": 0.3816355764865875, + "learning_rate": 0.0006, + "loss": 4.535771369934082, + "step": 682 + }, + { + "epoch": 9.489296636085626, + "grad_norm": 0.38756558299064636, + "learning_rate": 0.0006, + "loss": 4.4971089363098145, + "step": 683 + }, + { + "epoch": 9.503276539973788, + "grad_norm": 0.4572933614253998, + "learning_rate": 0.0006, + "loss": 4.534860134124756, + "step": 684 + }, + { + "epoch": 9.517256443861948, + "grad_norm": 0.42368650436401367, + "learning_rate": 0.0006, + "loss": 4.542638301849365, + "step": 685 + }, + { + "epoch": 9.53123634775011, + "grad_norm": 0.36939486861228943, + "learning_rate": 0.0006, + "loss": 4.571430206298828, + "step": 686 + }, + { + "epoch": 9.54521625163827, + "grad_norm": 0.3900398313999176, + "learning_rate": 0.0006, + "loss": 4.544435501098633, + "step": 687 + }, + { + "epoch": 9.55919615552643, + "grad_norm": 0.37829288840293884, + "learning_rate": 0.0006, + "loss": 4.564268112182617, + "step": 688 + }, + { + "epoch": 9.57317605941459, + "grad_norm": 0.3553886115550995, + "learning_rate": 0.0006, + "loss": 4.5373430252075195, + "step": 689 + }, + { + "epoch": 9.587155963302752, + "grad_norm": 0.3613419532775879, + "learning_rate": 0.0006, + "loss": 4.559074401855469, + "step": 690 + }, + { + "epoch": 9.601135867190912, + "grad_norm": 0.32644546031951904, + "learning_rate": 0.0006, + "loss": 4.533667087554932, + "step": 691 + }, + { + "epoch": 9.615115771079074, + "grad_norm": 0.3264399468898773, + "learning_rate": 0.0006, + "loss": 4.508299350738525, + "step": 692 + }, + { + "epoch": 9.629095674967235, + "grad_norm": 0.3534526526927948, + "learning_rate": 0.0006, + "loss": 4.542442798614502, + "step": 693 + }, + { + "epoch": 9.643075578855395, + "grad_norm": 0.3333452343940735, + "learning_rate": 0.0006, + "loss": 4.497692584991455, + "step": 694 + }, + { + "epoch": 9.657055482743557, + "grad_norm": 0.3214292526245117, + "learning_rate": 0.0006, + "loss": 4.512363433837891, + "step": 695 + }, + { + "epoch": 9.671035386631717, + "grad_norm": 0.2805672585964203, + "learning_rate": 0.0006, + "loss": 4.496874809265137, + "step": 696 + }, + { + "epoch": 9.685015290519878, + "grad_norm": 0.2618725895881653, + "learning_rate": 0.0006, + "loss": 4.51375675201416, + "step": 697 + }, + { + "epoch": 9.698995194408038, + "grad_norm": 0.2556597888469696, + "learning_rate": 0.0006, + "loss": 4.512338638305664, + "step": 698 + }, + { + "epoch": 9.7129750982962, + "grad_norm": 0.23784305155277252, + "learning_rate": 0.0006, + "loss": 4.486503601074219, + "step": 699 + }, + { + "epoch": 9.72695500218436, + "grad_norm": 0.2240338921546936, + "learning_rate": 0.0006, + "loss": 4.486850261688232, + "step": 700 + }, + { + "epoch": 9.740934906072521, + "grad_norm": 0.24686725437641144, + "learning_rate": 0.0006, + "loss": 4.501359462738037, + "step": 701 + }, + { + "epoch": 9.754914809960681, + "grad_norm": 0.20819595456123352, + "learning_rate": 0.0006, + "loss": 4.495186805725098, + "step": 702 + }, + { + "epoch": 9.768894713848843, + "grad_norm": 0.21858957409858704, + "learning_rate": 0.0006, + "loss": 4.475093364715576, + "step": 703 + }, + { + "epoch": 9.782874617737003, + "grad_norm": 0.22676466405391693, + "learning_rate": 0.0006, + "loss": 4.4702534675598145, + "step": 704 + }, + { + "epoch": 9.796854521625164, + "grad_norm": 0.18317611515522003, + "learning_rate": 0.0006, + "loss": 4.471231937408447, + "step": 705 + }, + { + "epoch": 9.810834425513324, + "grad_norm": 0.20979148149490356, + "learning_rate": 0.0006, + "loss": 4.454103946685791, + "step": 706 + }, + { + "epoch": 9.824814329401486, + "grad_norm": 0.2146051526069641, + "learning_rate": 0.0006, + "loss": 4.505178928375244, + "step": 707 + }, + { + "epoch": 9.838794233289645, + "grad_norm": 0.2344852089881897, + "learning_rate": 0.0006, + "loss": 4.437984943389893, + "step": 708 + }, + { + "epoch": 9.852774137177807, + "grad_norm": 0.26532089710235596, + "learning_rate": 0.0006, + "loss": 4.477126121520996, + "step": 709 + }, + { + "epoch": 9.866754041065967, + "grad_norm": 0.2737913131713867, + "learning_rate": 0.0006, + "loss": 4.498421669006348, + "step": 710 + }, + { + "epoch": 9.880733944954128, + "grad_norm": 0.26651278138160706, + "learning_rate": 0.0006, + "loss": 4.480839729309082, + "step": 711 + }, + { + "epoch": 9.89471384884229, + "grad_norm": 0.26576584577560425, + "learning_rate": 0.0006, + "loss": 4.490936279296875, + "step": 712 + }, + { + "epoch": 9.90869375273045, + "grad_norm": 0.22483965754508972, + "learning_rate": 0.0006, + "loss": 4.477953910827637, + "step": 713 + }, + { + "epoch": 9.922673656618612, + "grad_norm": 0.23576045036315918, + "learning_rate": 0.0006, + "loss": 4.4731292724609375, + "step": 714 + }, + { + "epoch": 9.936653560506771, + "grad_norm": 0.2731139361858368, + "learning_rate": 0.0006, + "loss": 4.441622734069824, + "step": 715 + }, + { + "epoch": 9.950633464394933, + "grad_norm": 0.2677643597126007, + "learning_rate": 0.0006, + "loss": 4.49604606628418, + "step": 716 + }, + { + "epoch": 9.964613368283093, + "grad_norm": 0.21940895915031433, + "learning_rate": 0.0006, + "loss": 4.485573768615723, + "step": 717 + }, + { + "epoch": 9.978593272171254, + "grad_norm": 0.2060987651348114, + "learning_rate": 0.0006, + "loss": 4.482657432556152, + "step": 718 + }, + { + "epoch": 9.992573176059414, + "grad_norm": 0.22163978219032288, + "learning_rate": 0.0006, + "loss": 4.478459358215332, + "step": 719 + }, + { + "epoch": 10.0, + "grad_norm": 0.2505086064338684, + "learning_rate": 0.0006, + "loss": 4.4393510818481445, + "step": 720 + }, + { + "epoch": 10.0, + "eval_loss": 4.695676803588867, + "eval_runtime": 49.0751, + "eval_samples_per_second": 49.76, + "eval_steps_per_second": 3.118, + "step": 720 + }, + { + "epoch": 10.013979903888162, + "grad_norm": 0.23820190131664276, + "learning_rate": 0.0006, + "loss": 4.437685489654541, + "step": 721 + }, + { + "epoch": 10.027959807776321, + "grad_norm": 0.2220371812582016, + "learning_rate": 0.0006, + "loss": 4.449873924255371, + "step": 722 + }, + { + "epoch": 10.041939711664483, + "grad_norm": 0.20369848608970642, + "learning_rate": 0.0006, + "loss": 4.448882579803467, + "step": 723 + }, + { + "epoch": 10.055919615552643, + "grad_norm": 0.2360001504421234, + "learning_rate": 0.0006, + "loss": 4.399251937866211, + "step": 724 + }, + { + "epoch": 10.069899519440805, + "grad_norm": 0.23537491261959076, + "learning_rate": 0.0006, + "loss": 4.442960739135742, + "step": 725 + }, + { + "epoch": 10.083879423328964, + "grad_norm": 0.24433870613574982, + "learning_rate": 0.0006, + "loss": 4.44808292388916, + "step": 726 + }, + { + "epoch": 10.097859327217126, + "grad_norm": 0.3406696021556854, + "learning_rate": 0.0006, + "loss": 4.443426132202148, + "step": 727 + }, + { + "epoch": 10.111839231105286, + "grad_norm": 0.4102286100387573, + "learning_rate": 0.0006, + "loss": 4.424919605255127, + "step": 728 + }, + { + "epoch": 10.125819134993447, + "grad_norm": 0.36462604999542236, + "learning_rate": 0.0006, + "loss": 4.45366907119751, + "step": 729 + }, + { + "epoch": 10.139799038881607, + "grad_norm": 0.4374827444553375, + "learning_rate": 0.0006, + "loss": 4.415630340576172, + "step": 730 + }, + { + "epoch": 10.153778942769769, + "grad_norm": 0.45248138904571533, + "learning_rate": 0.0006, + "loss": 4.448849678039551, + "step": 731 + }, + { + "epoch": 10.167758846657929, + "grad_norm": 0.3806457221508026, + "learning_rate": 0.0006, + "loss": 4.443390846252441, + "step": 732 + }, + { + "epoch": 10.18173875054609, + "grad_norm": 0.3491523861885071, + "learning_rate": 0.0006, + "loss": 4.4648637771606445, + "step": 733 + }, + { + "epoch": 10.19571865443425, + "grad_norm": 0.3327210247516632, + "learning_rate": 0.0006, + "loss": 4.460919380187988, + "step": 734 + }, + { + "epoch": 10.209698558322412, + "grad_norm": 0.29772236943244934, + "learning_rate": 0.0006, + "loss": 4.45159912109375, + "step": 735 + }, + { + "epoch": 10.223678462210572, + "grad_norm": 0.33083397150039673, + "learning_rate": 0.0006, + "loss": 4.463382720947266, + "step": 736 + }, + { + "epoch": 10.237658366098733, + "grad_norm": 0.3930598795413971, + "learning_rate": 0.0006, + "loss": 4.434510231018066, + "step": 737 + }, + { + "epoch": 10.251638269986893, + "grad_norm": 0.4342896044254303, + "learning_rate": 0.0006, + "loss": 4.451700210571289, + "step": 738 + }, + { + "epoch": 10.265618173875055, + "grad_norm": 0.4544043242931366, + "learning_rate": 0.0006, + "loss": 4.437224388122559, + "step": 739 + }, + { + "epoch": 10.279598077763215, + "grad_norm": 0.4487038254737854, + "learning_rate": 0.0006, + "loss": 4.46157693862915, + "step": 740 + }, + { + "epoch": 10.293577981651376, + "grad_norm": 0.4420500695705414, + "learning_rate": 0.0006, + "loss": 4.399561405181885, + "step": 741 + }, + { + "epoch": 10.307557885539538, + "grad_norm": 0.4167289435863495, + "learning_rate": 0.0006, + "loss": 4.41792106628418, + "step": 742 + }, + { + "epoch": 10.321537789427698, + "grad_norm": 0.3186971843242645, + "learning_rate": 0.0006, + "loss": 4.435683250427246, + "step": 743 + }, + { + "epoch": 10.33551769331586, + "grad_norm": 0.3077184855937958, + "learning_rate": 0.0006, + "loss": 4.481947898864746, + "step": 744 + }, + { + "epoch": 10.349497597204019, + "grad_norm": 0.26811280846595764, + "learning_rate": 0.0006, + "loss": 4.4339447021484375, + "step": 745 + }, + { + "epoch": 10.36347750109218, + "grad_norm": 0.28448057174682617, + "learning_rate": 0.0006, + "loss": 4.441644668579102, + "step": 746 + }, + { + "epoch": 10.37745740498034, + "grad_norm": 0.30731502175331116, + "learning_rate": 0.0006, + "loss": 4.428773880004883, + "step": 747 + }, + { + "epoch": 10.391437308868502, + "grad_norm": 0.28036001324653625, + "learning_rate": 0.0006, + "loss": 4.4433135986328125, + "step": 748 + }, + { + "epoch": 10.405417212756662, + "grad_norm": 0.2882847189903259, + "learning_rate": 0.0006, + "loss": 4.433401107788086, + "step": 749 + }, + { + "epoch": 10.419397116644824, + "grad_norm": 0.23622776567935944, + "learning_rate": 0.0006, + "loss": 4.444611549377441, + "step": 750 + }, + { + "epoch": 10.433377020532983, + "grad_norm": 0.2306167632341385, + "learning_rate": 0.0006, + "loss": 4.397875785827637, + "step": 751 + }, + { + "epoch": 10.447356924421145, + "grad_norm": 0.22725090384483337, + "learning_rate": 0.0006, + "loss": 4.429759502410889, + "step": 752 + }, + { + "epoch": 10.461336828309305, + "grad_norm": 0.250709593296051, + "learning_rate": 0.0006, + "loss": 4.415618896484375, + "step": 753 + }, + { + "epoch": 10.475316732197467, + "grad_norm": 0.22341276705265045, + "learning_rate": 0.0006, + "loss": 4.389362335205078, + "step": 754 + }, + { + "epoch": 10.489296636085626, + "grad_norm": 0.22595296800136566, + "learning_rate": 0.0006, + "loss": 4.383584022521973, + "step": 755 + }, + { + "epoch": 10.503276539973788, + "grad_norm": 0.24277575314044952, + "learning_rate": 0.0006, + "loss": 4.403777599334717, + "step": 756 + }, + { + "epoch": 10.517256443861948, + "grad_norm": 0.2670708894729614, + "learning_rate": 0.0006, + "loss": 4.398499011993408, + "step": 757 + }, + { + "epoch": 10.53123634775011, + "grad_norm": 0.2640696167945862, + "learning_rate": 0.0006, + "loss": 4.426726818084717, + "step": 758 + }, + { + "epoch": 10.54521625163827, + "grad_norm": 0.2248653769493103, + "learning_rate": 0.0006, + "loss": 4.400103569030762, + "step": 759 + }, + { + "epoch": 10.55919615552643, + "grad_norm": 0.21466240286827087, + "learning_rate": 0.0006, + "loss": 4.404158592224121, + "step": 760 + }, + { + "epoch": 10.57317605941459, + "grad_norm": 0.236923947930336, + "learning_rate": 0.0006, + "loss": 4.37059211730957, + "step": 761 + }, + { + "epoch": 10.587155963302752, + "grad_norm": 0.2515387535095215, + "learning_rate": 0.0006, + "loss": 4.415055274963379, + "step": 762 + }, + { + "epoch": 10.601135867190912, + "grad_norm": 0.23461885750293732, + "learning_rate": 0.0006, + "loss": 4.375036239624023, + "step": 763 + }, + { + "epoch": 10.615115771079074, + "grad_norm": 0.20975761115550995, + "learning_rate": 0.0006, + "loss": 4.3903398513793945, + "step": 764 + }, + { + "epoch": 10.629095674967235, + "grad_norm": 0.19859997928142548, + "learning_rate": 0.0006, + "loss": 4.379380226135254, + "step": 765 + }, + { + "epoch": 10.643075578855395, + "grad_norm": 0.22310325503349304, + "learning_rate": 0.0006, + "loss": 4.382110595703125, + "step": 766 + }, + { + "epoch": 10.657055482743557, + "grad_norm": 0.23940646648406982, + "learning_rate": 0.0006, + "loss": 4.393403053283691, + "step": 767 + }, + { + "epoch": 10.671035386631717, + "grad_norm": 0.2230468988418579, + "learning_rate": 0.0006, + "loss": 4.391970634460449, + "step": 768 + }, + { + "epoch": 10.685015290519878, + "grad_norm": 0.18139775097370148, + "learning_rate": 0.0006, + "loss": 4.399993896484375, + "step": 769 + }, + { + "epoch": 10.698995194408038, + "grad_norm": 0.19936902821063995, + "learning_rate": 0.0006, + "loss": 4.373854160308838, + "step": 770 + }, + { + "epoch": 10.7129750982962, + "grad_norm": 0.22132465243339539, + "learning_rate": 0.0006, + "loss": 4.377530097961426, + "step": 771 + }, + { + "epoch": 10.72695500218436, + "grad_norm": 0.24254944920539856, + "learning_rate": 0.0006, + "loss": 4.398683547973633, + "step": 772 + }, + { + "epoch": 10.740934906072521, + "grad_norm": 0.2666397988796234, + "learning_rate": 0.0006, + "loss": 4.3879899978637695, + "step": 773 + }, + { + "epoch": 10.754914809960681, + "grad_norm": 0.24728631973266602, + "learning_rate": 0.0006, + "loss": 4.356976509094238, + "step": 774 + }, + { + "epoch": 10.768894713848843, + "grad_norm": 0.2612453103065491, + "learning_rate": 0.0006, + "loss": 4.391525745391846, + "step": 775 + }, + { + "epoch": 10.782874617737003, + "grad_norm": 0.24060510098934174, + "learning_rate": 0.0006, + "loss": 4.376985549926758, + "step": 776 + }, + { + "epoch": 10.796854521625164, + "grad_norm": 0.22708238661289215, + "learning_rate": 0.0006, + "loss": 4.368545055389404, + "step": 777 + }, + { + "epoch": 10.810834425513324, + "grad_norm": 0.26931291818618774, + "learning_rate": 0.0006, + "loss": 4.369227409362793, + "step": 778 + }, + { + "epoch": 10.824814329401486, + "grad_norm": 0.265288770198822, + "learning_rate": 0.0006, + "loss": 4.378131866455078, + "step": 779 + }, + { + "epoch": 10.838794233289645, + "grad_norm": 0.3015305697917938, + "learning_rate": 0.0006, + "loss": 4.376267910003662, + "step": 780 + }, + { + "epoch": 10.852774137177807, + "grad_norm": 0.3345746099948883, + "learning_rate": 0.0006, + "loss": 4.3751420974731445, + "step": 781 + }, + { + "epoch": 10.866754041065967, + "grad_norm": 0.32446005940437317, + "learning_rate": 0.0006, + "loss": 4.370899200439453, + "step": 782 + }, + { + "epoch": 10.880733944954128, + "grad_norm": 0.27070069313049316, + "learning_rate": 0.0006, + "loss": 4.391958236694336, + "step": 783 + }, + { + "epoch": 10.89471384884229, + "grad_norm": 0.25584667921066284, + "learning_rate": 0.0006, + "loss": 4.407493591308594, + "step": 784 + }, + { + "epoch": 10.90869375273045, + "grad_norm": 0.2710244655609131, + "learning_rate": 0.0006, + "loss": 4.374400615692139, + "step": 785 + }, + { + "epoch": 10.922673656618612, + "grad_norm": 0.32413622736930847, + "learning_rate": 0.0006, + "loss": 4.379607200622559, + "step": 786 + }, + { + "epoch": 10.936653560506771, + "grad_norm": 0.3253782391548157, + "learning_rate": 0.0006, + "loss": 4.376441955566406, + "step": 787 + }, + { + "epoch": 10.950633464394933, + "grad_norm": 0.30534613132476807, + "learning_rate": 0.0006, + "loss": 4.382739067077637, + "step": 788 + }, + { + "epoch": 10.964613368283093, + "grad_norm": 0.35726621747016907, + "learning_rate": 0.0006, + "loss": 4.3765869140625, + "step": 789 + }, + { + "epoch": 10.978593272171254, + "grad_norm": 0.32763028144836426, + "learning_rate": 0.0006, + "loss": 4.391537189483643, + "step": 790 + }, + { + "epoch": 10.992573176059414, + "grad_norm": 0.31811195611953735, + "learning_rate": 0.0006, + "loss": 4.371829032897949, + "step": 791 + }, + { + "epoch": 11.0, + "grad_norm": 0.37317267060279846, + "learning_rate": 0.0006, + "loss": 4.381916522979736, + "step": 792 + }, + { + "epoch": 11.0, + "eval_loss": 4.588687896728516, + "eval_runtime": 44.8041, + "eval_samples_per_second": 54.504, + "eval_steps_per_second": 3.415, + "step": 792 + }, + { + "epoch": 11.013979903888162, + "grad_norm": 0.37882938981056213, + "learning_rate": 0.0006, + "loss": 4.3463640213012695, + "step": 793 + }, + { + "epoch": 11.027959807776321, + "grad_norm": 0.34719496965408325, + "learning_rate": 0.0006, + "loss": 4.329861640930176, + "step": 794 + }, + { + "epoch": 11.041939711664483, + "grad_norm": 0.36161214113235474, + "learning_rate": 0.0006, + "loss": 4.3287835121154785, + "step": 795 + }, + { + "epoch": 11.055919615552643, + "grad_norm": 0.3743649125099182, + "learning_rate": 0.0006, + "loss": 4.334251403808594, + "step": 796 + }, + { + "epoch": 11.069899519440805, + "grad_norm": 0.32266443967819214, + "learning_rate": 0.0006, + "loss": 4.364782810211182, + "step": 797 + }, + { + "epoch": 11.083879423328964, + "grad_norm": 0.27460047602653503, + "learning_rate": 0.0006, + "loss": 4.348380088806152, + "step": 798 + }, + { + "epoch": 11.097859327217126, + "grad_norm": 0.30498892068862915, + "learning_rate": 0.0006, + "loss": 4.347856521606445, + "step": 799 + }, + { + "epoch": 11.111839231105286, + "grad_norm": 0.29740771651268005, + "learning_rate": 0.0006, + "loss": 4.343471050262451, + "step": 800 + }, + { + "epoch": 11.125819134993447, + "grad_norm": 0.3004681169986725, + "learning_rate": 0.0006, + "loss": 4.337590217590332, + "step": 801 + }, + { + "epoch": 11.139799038881607, + "grad_norm": 0.3000192642211914, + "learning_rate": 0.0006, + "loss": 4.349949836730957, + "step": 802 + }, + { + "epoch": 11.153778942769769, + "grad_norm": 0.27461889386177063, + "learning_rate": 0.0006, + "loss": 4.338934898376465, + "step": 803 + }, + { + "epoch": 11.167758846657929, + "grad_norm": 0.2856169641017914, + "learning_rate": 0.0006, + "loss": 4.320754051208496, + "step": 804 + }, + { + "epoch": 11.18173875054609, + "grad_norm": 0.29822713136672974, + "learning_rate": 0.0006, + "loss": 4.357949733734131, + "step": 805 + }, + { + "epoch": 11.19571865443425, + "grad_norm": 0.34061339497566223, + "learning_rate": 0.0006, + "loss": 4.327282905578613, + "step": 806 + }, + { + "epoch": 11.209698558322412, + "grad_norm": 0.3379063010215759, + "learning_rate": 0.0006, + "loss": 4.355471611022949, + "step": 807 + }, + { + "epoch": 11.223678462210572, + "grad_norm": 0.2859216630458832, + "learning_rate": 0.0006, + "loss": 4.352344989776611, + "step": 808 + }, + { + "epoch": 11.237658366098733, + "grad_norm": 0.29522669315338135, + "learning_rate": 0.0006, + "loss": 4.349186897277832, + "step": 809 + }, + { + "epoch": 11.251638269986893, + "grad_norm": 0.273798406124115, + "learning_rate": 0.0006, + "loss": 4.342379570007324, + "step": 810 + }, + { + "epoch": 11.265618173875055, + "grad_norm": 0.25298982858657837, + "learning_rate": 0.0006, + "loss": 4.358835220336914, + "step": 811 + }, + { + "epoch": 11.279598077763215, + "grad_norm": 0.2170463651418686, + "learning_rate": 0.0006, + "loss": 4.3422017097473145, + "step": 812 + }, + { + "epoch": 11.293577981651376, + "grad_norm": 0.24855731427669525, + "learning_rate": 0.0006, + "loss": 4.322849750518799, + "step": 813 + }, + { + "epoch": 11.307557885539538, + "grad_norm": 0.22564345598220825, + "learning_rate": 0.0006, + "loss": 4.316864967346191, + "step": 814 + }, + { + "epoch": 11.321537789427698, + "grad_norm": 0.21532197296619415, + "learning_rate": 0.0006, + "loss": 4.326743125915527, + "step": 815 + }, + { + "epoch": 11.33551769331586, + "grad_norm": 0.20514146983623505, + "learning_rate": 0.0006, + "loss": 4.326531887054443, + "step": 816 + }, + { + "epoch": 11.349497597204019, + "grad_norm": 0.19035090506076813, + "learning_rate": 0.0006, + "loss": 4.318154335021973, + "step": 817 + }, + { + "epoch": 11.36347750109218, + "grad_norm": 0.17889662086963654, + "learning_rate": 0.0006, + "loss": 4.35410213470459, + "step": 818 + }, + { + "epoch": 11.37745740498034, + "grad_norm": 0.20564863085746765, + "learning_rate": 0.0006, + "loss": 4.350226879119873, + "step": 819 + }, + { + "epoch": 11.391437308868502, + "grad_norm": 0.2412603348493576, + "learning_rate": 0.0006, + "loss": 4.325137138366699, + "step": 820 + }, + { + "epoch": 11.405417212756662, + "grad_norm": 0.2603496015071869, + "learning_rate": 0.0006, + "loss": 4.335752487182617, + "step": 821 + }, + { + "epoch": 11.419397116644824, + "grad_norm": 0.2968119978904724, + "learning_rate": 0.0006, + "loss": 4.3317670822143555, + "step": 822 + }, + { + "epoch": 11.433377020532983, + "grad_norm": 0.3280937969684601, + "learning_rate": 0.0006, + "loss": 4.322279453277588, + "step": 823 + }, + { + "epoch": 11.447356924421145, + "grad_norm": 0.3598847985267639, + "learning_rate": 0.0006, + "loss": 4.312255859375, + "step": 824 + }, + { + "epoch": 11.461336828309305, + "grad_norm": 0.3996485471725464, + "learning_rate": 0.0006, + "loss": 4.327103614807129, + "step": 825 + }, + { + "epoch": 11.475316732197467, + "grad_norm": 0.4352041780948639, + "learning_rate": 0.0006, + "loss": 4.368639945983887, + "step": 826 + }, + { + "epoch": 11.489296636085626, + "grad_norm": 0.4451918601989746, + "learning_rate": 0.0006, + "loss": 4.335113048553467, + "step": 827 + }, + { + "epoch": 11.503276539973788, + "grad_norm": 0.4403933584690094, + "learning_rate": 0.0006, + "loss": 4.369889259338379, + "step": 828 + }, + { + "epoch": 11.517256443861948, + "grad_norm": 0.34862443804740906, + "learning_rate": 0.0006, + "loss": 4.316292762756348, + "step": 829 + }, + { + "epoch": 11.53123634775011, + "grad_norm": 0.3240634500980377, + "learning_rate": 0.0006, + "loss": 4.328078746795654, + "step": 830 + }, + { + "epoch": 11.54521625163827, + "grad_norm": 0.2445751428604126, + "learning_rate": 0.0006, + "loss": 4.291940689086914, + "step": 831 + }, + { + "epoch": 11.55919615552643, + "grad_norm": 0.24376554787158966, + "learning_rate": 0.0006, + "loss": 4.339217662811279, + "step": 832 + }, + { + "epoch": 11.57317605941459, + "grad_norm": 0.22419725358486176, + "learning_rate": 0.0006, + "loss": 4.2887468338012695, + "step": 833 + }, + { + "epoch": 11.587155963302752, + "grad_norm": 0.22318261861801147, + "learning_rate": 0.0006, + "loss": 4.298492908477783, + "step": 834 + }, + { + "epoch": 11.601135867190912, + "grad_norm": 0.2357342392206192, + "learning_rate": 0.0006, + "loss": 4.328692436218262, + "step": 835 + }, + { + "epoch": 11.615115771079074, + "grad_norm": 0.25450602173805237, + "learning_rate": 0.0006, + "loss": 4.360058784484863, + "step": 836 + }, + { + "epoch": 11.629095674967235, + "grad_norm": 0.24540965259075165, + "learning_rate": 0.0006, + "loss": 4.311890602111816, + "step": 837 + }, + { + "epoch": 11.643075578855395, + "grad_norm": 0.2535638213157654, + "learning_rate": 0.0006, + "loss": 4.327730178833008, + "step": 838 + }, + { + "epoch": 11.657055482743557, + "grad_norm": 0.23063556849956512, + "learning_rate": 0.0006, + "loss": 4.303299903869629, + "step": 839 + }, + { + "epoch": 11.671035386631717, + "grad_norm": 0.21813632547855377, + "learning_rate": 0.0006, + "loss": 4.315352439880371, + "step": 840 + }, + { + "epoch": 11.685015290519878, + "grad_norm": 0.2170359194278717, + "learning_rate": 0.0006, + "loss": 4.278632164001465, + "step": 841 + }, + { + "epoch": 11.698995194408038, + "grad_norm": 0.21059377491474152, + "learning_rate": 0.0006, + "loss": 4.306049346923828, + "step": 842 + }, + { + "epoch": 11.7129750982962, + "grad_norm": 0.19872888922691345, + "learning_rate": 0.0006, + "loss": 4.3091535568237305, + "step": 843 + }, + { + "epoch": 11.72695500218436, + "grad_norm": 0.20059862732887268, + "learning_rate": 0.0006, + "loss": 4.2884063720703125, + "step": 844 + }, + { + "epoch": 11.740934906072521, + "grad_norm": 0.19952483475208282, + "learning_rate": 0.0006, + "loss": 4.293610572814941, + "step": 845 + }, + { + "epoch": 11.754914809960681, + "grad_norm": 0.19794537127017975, + "learning_rate": 0.0006, + "loss": 4.288822174072266, + "step": 846 + }, + { + "epoch": 11.768894713848843, + "grad_norm": 0.213914692401886, + "learning_rate": 0.0006, + "loss": 4.320849418640137, + "step": 847 + }, + { + "epoch": 11.782874617737003, + "grad_norm": 0.18500955402851105, + "learning_rate": 0.0006, + "loss": 4.29300594329834, + "step": 848 + }, + { + "epoch": 11.796854521625164, + "grad_norm": 0.19446656107902527, + "learning_rate": 0.0006, + "loss": 4.3079352378845215, + "step": 849 + }, + { + "epoch": 11.810834425513324, + "grad_norm": 0.22191768884658813, + "learning_rate": 0.0006, + "loss": 4.295967102050781, + "step": 850 + }, + { + "epoch": 11.824814329401486, + "grad_norm": 0.20748084783554077, + "learning_rate": 0.0006, + "loss": 4.332365989685059, + "step": 851 + }, + { + "epoch": 11.838794233289645, + "grad_norm": 0.20993955433368683, + "learning_rate": 0.0006, + "loss": 4.294618129730225, + "step": 852 + }, + { + "epoch": 11.852774137177807, + "grad_norm": 0.23506952822208405, + "learning_rate": 0.0006, + "loss": 4.313426971435547, + "step": 853 + }, + { + "epoch": 11.866754041065967, + "grad_norm": 0.2379443347454071, + "learning_rate": 0.0006, + "loss": 4.297664642333984, + "step": 854 + }, + { + "epoch": 11.880733944954128, + "grad_norm": 0.2127852737903595, + "learning_rate": 0.0006, + "loss": 4.2807698249816895, + "step": 855 + }, + { + "epoch": 11.89471384884229, + "grad_norm": 0.2125532180070877, + "learning_rate": 0.0006, + "loss": 4.310990333557129, + "step": 856 + }, + { + "epoch": 11.90869375273045, + "grad_norm": 0.1996062994003296, + "learning_rate": 0.0006, + "loss": 4.253237724304199, + "step": 857 + }, + { + "epoch": 11.922673656618612, + "grad_norm": 0.20747603476047516, + "learning_rate": 0.0006, + "loss": 4.294193267822266, + "step": 858 + }, + { + "epoch": 11.936653560506771, + "grad_norm": 0.24082425236701965, + "learning_rate": 0.0006, + "loss": 4.269967079162598, + "step": 859 + }, + { + "epoch": 11.950633464394933, + "grad_norm": 0.28993573784828186, + "learning_rate": 0.0006, + "loss": 4.294550895690918, + "step": 860 + }, + { + "epoch": 11.964613368283093, + "grad_norm": 0.29576948285102844, + "learning_rate": 0.0006, + "loss": 4.3188252449035645, + "step": 861 + }, + { + "epoch": 11.978593272171254, + "grad_norm": 0.2754935026168823, + "learning_rate": 0.0006, + "loss": 4.312817573547363, + "step": 862 + }, + { + "epoch": 11.992573176059414, + "grad_norm": 0.3062523305416107, + "learning_rate": 0.0006, + "loss": 4.288214683532715, + "step": 863 + }, + { + "epoch": 12.0, + "grad_norm": 0.3367644250392914, + "learning_rate": 0.0006, + "loss": 4.314888954162598, + "step": 864 + }, + { + "epoch": 12.0, + "eval_loss": 4.516861438751221, + "eval_runtime": 44.2584, + "eval_samples_per_second": 55.176, + "eval_steps_per_second": 3.457, + "step": 864 + }, + { + "epoch": 12.013979903888162, + "grad_norm": 0.2976512014865875, + "learning_rate": 0.0006, + "loss": 4.278797149658203, + "step": 865 + }, + { + "epoch": 12.027959807776321, + "grad_norm": 0.32217127084732056, + "learning_rate": 0.0006, + "loss": 4.2823615074157715, + "step": 866 + }, + { + "epoch": 12.041939711664483, + "grad_norm": 0.31538400053977966, + "learning_rate": 0.0006, + "loss": 4.252805709838867, + "step": 867 + }, + { + "epoch": 12.055919615552643, + "grad_norm": 0.3501375913619995, + "learning_rate": 0.0006, + "loss": 4.276501655578613, + "step": 868 + }, + { + "epoch": 12.069899519440805, + "grad_norm": 0.3452056646347046, + "learning_rate": 0.0006, + "loss": 4.275739669799805, + "step": 869 + }, + { + "epoch": 12.083879423328964, + "grad_norm": 0.36963316798210144, + "learning_rate": 0.0006, + "loss": 4.3215227127075195, + "step": 870 + }, + { + "epoch": 12.097859327217126, + "grad_norm": 0.41605016589164734, + "learning_rate": 0.0006, + "loss": 4.28739595413208, + "step": 871 + }, + { + "epoch": 12.111839231105286, + "grad_norm": 0.37700653076171875, + "learning_rate": 0.0006, + "loss": 4.291154861450195, + "step": 872 + }, + { + "epoch": 12.125819134993447, + "grad_norm": 0.3194253444671631, + "learning_rate": 0.0006, + "loss": 4.259326934814453, + "step": 873 + }, + { + "epoch": 12.139799038881607, + "grad_norm": 0.31770631670951843, + "learning_rate": 0.0006, + "loss": 4.270082473754883, + "step": 874 + }, + { + "epoch": 12.153778942769769, + "grad_norm": 0.3748120069503784, + "learning_rate": 0.0006, + "loss": 4.2727274894714355, + "step": 875 + }, + { + "epoch": 12.167758846657929, + "grad_norm": 0.3821348547935486, + "learning_rate": 0.0006, + "loss": 4.2848286628723145, + "step": 876 + }, + { + "epoch": 12.18173875054609, + "grad_norm": 0.31894201040267944, + "learning_rate": 0.0006, + "loss": 4.289551258087158, + "step": 877 + }, + { + "epoch": 12.19571865443425, + "grad_norm": 0.2695826292037964, + "learning_rate": 0.0006, + "loss": 4.2797346115112305, + "step": 878 + }, + { + "epoch": 12.209698558322412, + "grad_norm": 0.23966269195079803, + "learning_rate": 0.0006, + "loss": 4.24021577835083, + "step": 879 + }, + { + "epoch": 12.223678462210572, + "grad_norm": 0.24342599511146545, + "learning_rate": 0.0006, + "loss": 4.277721881866455, + "step": 880 + }, + { + "epoch": 12.237658366098733, + "grad_norm": 0.2522958815097809, + "learning_rate": 0.0006, + "loss": 4.263946533203125, + "step": 881 + }, + { + "epoch": 12.251638269986893, + "grad_norm": 0.2708299458026886, + "learning_rate": 0.0006, + "loss": 4.274540901184082, + "step": 882 + }, + { + "epoch": 12.265618173875055, + "grad_norm": 0.2978788912296295, + "learning_rate": 0.0006, + "loss": 4.2674970626831055, + "step": 883 + }, + { + "epoch": 12.279598077763215, + "grad_norm": 0.2898774743080139, + "learning_rate": 0.0006, + "loss": 4.235060691833496, + "step": 884 + }, + { + "epoch": 12.293577981651376, + "grad_norm": 0.27941837906837463, + "learning_rate": 0.0006, + "loss": 4.284140586853027, + "step": 885 + }, + { + "epoch": 12.307557885539538, + "grad_norm": 0.25050559639930725, + "learning_rate": 0.0006, + "loss": 4.270134925842285, + "step": 886 + }, + { + "epoch": 12.321537789427698, + "grad_norm": 0.21867156028747559, + "learning_rate": 0.0006, + "loss": 4.241571426391602, + "step": 887 + }, + { + "epoch": 12.33551769331586, + "grad_norm": 0.24735847115516663, + "learning_rate": 0.0006, + "loss": 4.253087997436523, + "step": 888 + }, + { + "epoch": 12.349497597204019, + "grad_norm": 0.23069104552268982, + "learning_rate": 0.0006, + "loss": 4.258606910705566, + "step": 889 + }, + { + "epoch": 12.36347750109218, + "grad_norm": 0.2594369947910309, + "learning_rate": 0.0006, + "loss": 4.307351112365723, + "step": 890 + }, + { + "epoch": 12.37745740498034, + "grad_norm": 0.25349098443984985, + "learning_rate": 0.0006, + "loss": 4.264268398284912, + "step": 891 + }, + { + "epoch": 12.391437308868502, + "grad_norm": 0.2550840675830841, + "learning_rate": 0.0006, + "loss": 4.247092247009277, + "step": 892 + }, + { + "epoch": 12.405417212756662, + "grad_norm": 0.2107602059841156, + "learning_rate": 0.0006, + "loss": 4.240527153015137, + "step": 893 + }, + { + "epoch": 12.419397116644824, + "grad_norm": 0.2025548368692398, + "learning_rate": 0.0006, + "loss": 4.244686126708984, + "step": 894 + }, + { + "epoch": 12.433377020532983, + "grad_norm": 0.22061701118946075, + "learning_rate": 0.0006, + "loss": 4.233231544494629, + "step": 895 + }, + { + "epoch": 12.447356924421145, + "grad_norm": 0.19503085315227509, + "learning_rate": 0.0006, + "loss": 4.23851203918457, + "step": 896 + }, + { + "epoch": 12.461336828309305, + "grad_norm": 0.19313643872737885, + "learning_rate": 0.0006, + "loss": 4.190886497497559, + "step": 897 + }, + { + "epoch": 12.475316732197467, + "grad_norm": 0.21094176173210144, + "learning_rate": 0.0006, + "loss": 4.277888298034668, + "step": 898 + }, + { + "epoch": 12.489296636085626, + "grad_norm": 0.1980651170015335, + "learning_rate": 0.0006, + "loss": 4.251066207885742, + "step": 899 + }, + { + "epoch": 12.503276539973788, + "grad_norm": 0.179737389087677, + "learning_rate": 0.0006, + "loss": 4.194703102111816, + "step": 900 + }, + { + "epoch": 12.517256443861948, + "grad_norm": 0.19069281220436096, + "learning_rate": 0.0006, + "loss": 4.242412567138672, + "step": 901 + }, + { + "epoch": 12.53123634775011, + "grad_norm": 0.191154345870018, + "learning_rate": 0.0006, + "loss": 4.2432780265808105, + "step": 902 + }, + { + "epoch": 12.54521625163827, + "grad_norm": 0.19760103523731232, + "learning_rate": 0.0006, + "loss": 4.23294734954834, + "step": 903 + }, + { + "epoch": 12.55919615552643, + "grad_norm": 0.19982324540615082, + "learning_rate": 0.0006, + "loss": 4.249764442443848, + "step": 904 + }, + { + "epoch": 12.57317605941459, + "grad_norm": 0.1986108422279358, + "learning_rate": 0.0006, + "loss": 4.213435649871826, + "step": 905 + }, + { + "epoch": 12.587155963302752, + "grad_norm": 0.19727319478988647, + "learning_rate": 0.0006, + "loss": 4.247962951660156, + "step": 906 + }, + { + "epoch": 12.601135867190912, + "grad_norm": 0.23404482007026672, + "learning_rate": 0.0006, + "loss": 4.237396240234375, + "step": 907 + }, + { + "epoch": 12.615115771079074, + "grad_norm": 0.21136441826820374, + "learning_rate": 0.0006, + "loss": 4.236040115356445, + "step": 908 + }, + { + "epoch": 12.629095674967235, + "grad_norm": 0.2209048718214035, + "learning_rate": 0.0006, + "loss": 4.234212875366211, + "step": 909 + }, + { + "epoch": 12.643075578855395, + "grad_norm": 0.22120307385921478, + "learning_rate": 0.0006, + "loss": 4.2711076736450195, + "step": 910 + }, + { + "epoch": 12.657055482743557, + "grad_norm": 0.22733066976070404, + "learning_rate": 0.0006, + "loss": 4.231651306152344, + "step": 911 + }, + { + "epoch": 12.671035386631717, + "grad_norm": 0.2435602843761444, + "learning_rate": 0.0006, + "loss": 4.249372482299805, + "step": 912 + }, + { + "epoch": 12.685015290519878, + "grad_norm": 0.28881654143333435, + "learning_rate": 0.0006, + "loss": 4.2626051902771, + "step": 913 + }, + { + "epoch": 12.698995194408038, + "grad_norm": 0.3211199641227722, + "learning_rate": 0.0006, + "loss": 4.254220485687256, + "step": 914 + }, + { + "epoch": 12.7129750982962, + "grad_norm": 0.3118100166320801, + "learning_rate": 0.0006, + "loss": 4.233747959136963, + "step": 915 + }, + { + "epoch": 12.72695500218436, + "grad_norm": 0.33411866426467896, + "learning_rate": 0.0006, + "loss": 4.270386219024658, + "step": 916 + }, + { + "epoch": 12.740934906072521, + "grad_norm": 0.2968253195285797, + "learning_rate": 0.0006, + "loss": 4.242254257202148, + "step": 917 + }, + { + "epoch": 12.754914809960681, + "grad_norm": 0.2959132194519043, + "learning_rate": 0.0006, + "loss": 4.232100486755371, + "step": 918 + }, + { + "epoch": 12.768894713848843, + "grad_norm": 0.2729283273220062, + "learning_rate": 0.0006, + "loss": 4.233869552612305, + "step": 919 + }, + { + "epoch": 12.782874617737003, + "grad_norm": 0.2669033408164978, + "learning_rate": 0.0006, + "loss": 4.261008262634277, + "step": 920 + }, + { + "epoch": 12.796854521625164, + "grad_norm": 0.2738507091999054, + "learning_rate": 0.0006, + "loss": 4.2286763191223145, + "step": 921 + }, + { + "epoch": 12.810834425513324, + "grad_norm": 0.29105183482170105, + "learning_rate": 0.0006, + "loss": 4.281410217285156, + "step": 922 + }, + { + "epoch": 12.824814329401486, + "grad_norm": 0.31330201029777527, + "learning_rate": 0.0006, + "loss": 4.264181613922119, + "step": 923 + }, + { + "epoch": 12.838794233289645, + "grad_norm": 0.31324025988578796, + "learning_rate": 0.0006, + "loss": 4.250385284423828, + "step": 924 + }, + { + "epoch": 12.852774137177807, + "grad_norm": 0.2727925181388855, + "learning_rate": 0.0006, + "loss": 4.24821138381958, + "step": 925 + }, + { + "epoch": 12.866754041065967, + "grad_norm": 0.27350082993507385, + "learning_rate": 0.0006, + "loss": 4.230215072631836, + "step": 926 + }, + { + "epoch": 12.880733944954128, + "grad_norm": 0.2269950658082962, + "learning_rate": 0.0006, + "loss": 4.210305213928223, + "step": 927 + }, + { + "epoch": 12.89471384884229, + "grad_norm": 0.24667619168758392, + "learning_rate": 0.0006, + "loss": 4.239969253540039, + "step": 928 + }, + { + "epoch": 12.90869375273045, + "grad_norm": 0.22510501742362976, + "learning_rate": 0.0006, + "loss": 4.192750930786133, + "step": 929 + }, + { + "epoch": 12.922673656618612, + "grad_norm": 0.22887611389160156, + "learning_rate": 0.0006, + "loss": 4.264463424682617, + "step": 930 + }, + { + "epoch": 12.936653560506771, + "grad_norm": 0.22195978462696075, + "learning_rate": 0.0006, + "loss": 4.205256938934326, + "step": 931 + }, + { + "epoch": 12.950633464394933, + "grad_norm": 0.23184578120708466, + "learning_rate": 0.0006, + "loss": 4.214578628540039, + "step": 932 + }, + { + "epoch": 12.964613368283093, + "grad_norm": 0.2186676561832428, + "learning_rate": 0.0006, + "loss": 4.227711200714111, + "step": 933 + }, + { + "epoch": 12.978593272171254, + "grad_norm": 0.2160426527261734, + "learning_rate": 0.0006, + "loss": 4.221796989440918, + "step": 934 + }, + { + "epoch": 12.992573176059414, + "grad_norm": 0.21562792360782623, + "learning_rate": 0.0006, + "loss": 4.21957540512085, + "step": 935 + }, + { + "epoch": 13.0, + "grad_norm": 0.22538058459758759, + "learning_rate": 0.0006, + "loss": 4.2353973388671875, + "step": 936 + }, + { + "epoch": 13.0, + "eval_loss": 4.426600933074951, + "eval_runtime": 44.8138, + "eval_samples_per_second": 54.492, + "eval_steps_per_second": 3.414, + "step": 936 + }, + { + "epoch": 13.013979903888162, + "grad_norm": 0.24888049066066742, + "learning_rate": 0.0006, + "loss": 4.18648624420166, + "step": 937 + }, + { + "epoch": 13.027959807776321, + "grad_norm": 0.28330180048942566, + "learning_rate": 0.0006, + "loss": 4.188892364501953, + "step": 938 + }, + { + "epoch": 13.041939711664483, + "grad_norm": 0.31152188777923584, + "learning_rate": 0.0006, + "loss": 4.2053399085998535, + "step": 939 + }, + { + "epoch": 13.055919615552643, + "grad_norm": 0.2842433452606201, + "learning_rate": 0.0006, + "loss": 4.191902160644531, + "step": 940 + }, + { + "epoch": 13.069899519440805, + "grad_norm": 0.23664532601833344, + "learning_rate": 0.0006, + "loss": 4.1831865310668945, + "step": 941 + }, + { + "epoch": 13.083879423328964, + "grad_norm": 0.24204140901565552, + "learning_rate": 0.0006, + "loss": 4.202641487121582, + "step": 942 + }, + { + "epoch": 13.097859327217126, + "grad_norm": 0.235311359167099, + "learning_rate": 0.0006, + "loss": 4.174511909484863, + "step": 943 + }, + { + "epoch": 13.111839231105286, + "grad_norm": 0.27127715945243835, + "learning_rate": 0.0006, + "loss": 4.201844215393066, + "step": 944 + }, + { + "epoch": 13.125819134993447, + "grad_norm": 0.2722373604774475, + "learning_rate": 0.0006, + "loss": 4.157383918762207, + "step": 945 + }, + { + "epoch": 13.139799038881607, + "grad_norm": 0.25446659326553345, + "learning_rate": 0.0006, + "loss": 4.221236228942871, + "step": 946 + }, + { + "epoch": 13.153778942769769, + "grad_norm": 0.273017019033432, + "learning_rate": 0.0006, + "loss": 4.195512771606445, + "step": 947 + }, + { + "epoch": 13.167758846657929, + "grad_norm": 0.24766312539577484, + "learning_rate": 0.0006, + "loss": 4.220959663391113, + "step": 948 + }, + { + "epoch": 13.18173875054609, + "grad_norm": 0.24636317789554596, + "learning_rate": 0.0006, + "loss": 4.214302062988281, + "step": 949 + }, + { + "epoch": 13.19571865443425, + "grad_norm": 0.3177756667137146, + "learning_rate": 0.0006, + "loss": 4.213500022888184, + "step": 950 + }, + { + "epoch": 13.209698558322412, + "grad_norm": 0.44579195976257324, + "learning_rate": 0.0006, + "loss": 4.227644920349121, + "step": 951 + }, + { + "epoch": 13.223678462210572, + "grad_norm": 0.4217414855957031, + "learning_rate": 0.0006, + "loss": 4.180937767028809, + "step": 952 + }, + { + "epoch": 13.237658366098733, + "grad_norm": 0.30148059129714966, + "learning_rate": 0.0006, + "loss": 4.207760810852051, + "step": 953 + }, + { + "epoch": 13.251638269986893, + "grad_norm": 0.3192492127418518, + "learning_rate": 0.0006, + "loss": 4.197999000549316, + "step": 954 + }, + { + "epoch": 13.265618173875055, + "grad_norm": 0.37334588170051575, + "learning_rate": 0.0006, + "loss": 4.208001136779785, + "step": 955 + }, + { + "epoch": 13.279598077763215, + "grad_norm": 0.4059637784957886, + "learning_rate": 0.0006, + "loss": 4.211322784423828, + "step": 956 + }, + { + "epoch": 13.293577981651376, + "grad_norm": 0.3389599323272705, + "learning_rate": 0.0006, + "loss": 4.204404354095459, + "step": 957 + }, + { + "epoch": 13.307557885539538, + "grad_norm": 0.2675766050815582, + "learning_rate": 0.0006, + "loss": 4.245941162109375, + "step": 958 + }, + { + "epoch": 13.321537789427698, + "grad_norm": 0.2730264365673065, + "learning_rate": 0.0006, + "loss": 4.2221221923828125, + "step": 959 + }, + { + "epoch": 13.33551769331586, + "grad_norm": 0.26458224654197693, + "learning_rate": 0.0006, + "loss": 4.205596923828125, + "step": 960 + }, + { + "epoch": 13.349497597204019, + "grad_norm": 0.2872551381587982, + "learning_rate": 0.0006, + "loss": 4.196977615356445, + "step": 961 + }, + { + "epoch": 13.36347750109218, + "grad_norm": 0.2954796850681305, + "learning_rate": 0.0006, + "loss": 4.202796936035156, + "step": 962 + }, + { + "epoch": 13.37745740498034, + "grad_norm": 0.2619425654411316, + "learning_rate": 0.0006, + "loss": 4.196845054626465, + "step": 963 + }, + { + "epoch": 13.391437308868502, + "grad_norm": 0.30088478326797485, + "learning_rate": 0.0006, + "loss": 4.219697952270508, + "step": 964 + }, + { + "epoch": 13.405417212756662, + "grad_norm": 0.30388689041137695, + "learning_rate": 0.0006, + "loss": 4.187566757202148, + "step": 965 + }, + { + "epoch": 13.419397116644824, + "grad_norm": 0.27918127179145813, + "learning_rate": 0.0006, + "loss": 4.223600387573242, + "step": 966 + }, + { + "epoch": 13.433377020532983, + "grad_norm": 0.27634528279304504, + "learning_rate": 0.0006, + "loss": 4.165332317352295, + "step": 967 + }, + { + "epoch": 13.447356924421145, + "grad_norm": 0.28830021619796753, + "learning_rate": 0.0006, + "loss": 4.204029560089111, + "step": 968 + }, + { + "epoch": 13.461336828309305, + "grad_norm": 0.29220864176750183, + "learning_rate": 0.0006, + "loss": 4.218057155609131, + "step": 969 + }, + { + "epoch": 13.475316732197467, + "grad_norm": 0.3089624345302582, + "learning_rate": 0.0006, + "loss": 4.200654983520508, + "step": 970 + }, + { + "epoch": 13.489296636085626, + "grad_norm": 0.36479851603507996, + "learning_rate": 0.0006, + "loss": 4.182811737060547, + "step": 971 + }, + { + "epoch": 13.503276539973788, + "grad_norm": 0.37561097741127014, + "learning_rate": 0.0006, + "loss": 4.190266132354736, + "step": 972 + }, + { + "epoch": 13.517256443861948, + "grad_norm": 0.3263583183288574, + "learning_rate": 0.0006, + "loss": 4.214815616607666, + "step": 973 + }, + { + "epoch": 13.53123634775011, + "grad_norm": 0.21552999317646027, + "learning_rate": 0.0006, + "loss": 4.171380043029785, + "step": 974 + }, + { + "epoch": 13.54521625163827, + "grad_norm": 0.247328519821167, + "learning_rate": 0.0006, + "loss": 4.175377368927002, + "step": 975 + }, + { + "epoch": 13.55919615552643, + "grad_norm": 0.23740540444850922, + "learning_rate": 0.0006, + "loss": 4.212357997894287, + "step": 976 + }, + { + "epoch": 13.57317605941459, + "grad_norm": 0.21533876657485962, + "learning_rate": 0.0006, + "loss": 4.203285217285156, + "step": 977 + }, + { + "epoch": 13.587155963302752, + "grad_norm": 0.21462024748325348, + "learning_rate": 0.0006, + "loss": 4.178012371063232, + "step": 978 + }, + { + "epoch": 13.601135867190912, + "grad_norm": 0.2279169261455536, + "learning_rate": 0.0006, + "loss": 4.193912982940674, + "step": 979 + }, + { + "epoch": 13.615115771079074, + "grad_norm": 0.2202417552471161, + "learning_rate": 0.0006, + "loss": 4.167629718780518, + "step": 980 + }, + { + "epoch": 13.629095674967235, + "grad_norm": 0.20586472749710083, + "learning_rate": 0.0006, + "loss": 4.159290313720703, + "step": 981 + }, + { + "epoch": 13.643075578855395, + "grad_norm": 0.20200690627098083, + "learning_rate": 0.0006, + "loss": 4.210315227508545, + "step": 982 + }, + { + "epoch": 13.657055482743557, + "grad_norm": 0.21710257232189178, + "learning_rate": 0.0006, + "loss": 4.21730375289917, + "step": 983 + }, + { + "epoch": 13.671035386631717, + "grad_norm": 0.22058045864105225, + "learning_rate": 0.0006, + "loss": 4.1996073722839355, + "step": 984 + }, + { + "epoch": 13.685015290519878, + "grad_norm": 0.21549592912197113, + "learning_rate": 0.0006, + "loss": 4.209203720092773, + "step": 985 + }, + { + "epoch": 13.698995194408038, + "grad_norm": 0.22274717688560486, + "learning_rate": 0.0006, + "loss": 4.220660209655762, + "step": 986 + }, + { + "epoch": 13.7129750982962, + "grad_norm": 0.22791637480258942, + "learning_rate": 0.0006, + "loss": 4.158679962158203, + "step": 987 + }, + { + "epoch": 13.72695500218436, + "grad_norm": 0.216218963265419, + "learning_rate": 0.0006, + "loss": 4.188124656677246, + "step": 988 + }, + { + "epoch": 13.740934906072521, + "grad_norm": 0.19149383902549744, + "learning_rate": 0.0006, + "loss": 4.181729316711426, + "step": 989 + }, + { + "epoch": 13.754914809960681, + "grad_norm": 0.18964019417762756, + "learning_rate": 0.0006, + "loss": 4.184767246246338, + "step": 990 + }, + { + "epoch": 13.768894713848843, + "grad_norm": 0.1778000295162201, + "learning_rate": 0.0006, + "loss": 4.1802263259887695, + "step": 991 + }, + { + "epoch": 13.782874617737003, + "grad_norm": 0.18277616798877716, + "learning_rate": 0.0006, + "loss": 4.1657867431640625, + "step": 992 + }, + { + "epoch": 13.796854521625164, + "grad_norm": 0.18610034883022308, + "learning_rate": 0.0006, + "loss": 4.156744956970215, + "step": 993 + }, + { + "epoch": 13.810834425513324, + "grad_norm": 0.19332963228225708, + "learning_rate": 0.0006, + "loss": 4.143558502197266, + "step": 994 + }, + { + "epoch": 13.824814329401486, + "grad_norm": 0.19758112728595734, + "learning_rate": 0.0006, + "loss": 4.195793151855469, + "step": 995 + }, + { + "epoch": 13.838794233289645, + "grad_norm": 0.1933647245168686, + "learning_rate": 0.0006, + "loss": 4.169734954833984, + "step": 996 + }, + { + "epoch": 13.852774137177807, + "grad_norm": 0.2362028956413269, + "learning_rate": 0.0006, + "loss": 4.175025939941406, + "step": 997 + }, + { + "epoch": 13.866754041065967, + "grad_norm": 0.2465490996837616, + "learning_rate": 0.0006, + "loss": 4.173909664154053, + "step": 998 + }, + { + "epoch": 13.880733944954128, + "grad_norm": 0.23449952900409698, + "learning_rate": 0.0006, + "loss": 4.173429489135742, + "step": 999 + }, + { + "epoch": 13.89471384884229, + "grad_norm": 0.2282160222530365, + "learning_rate": 0.0006, + "loss": 4.158538341522217, + "step": 1000 + }, + { + "epoch": 13.90869375273045, + "grad_norm": 0.21066738665103912, + "learning_rate": 0.0006, + "loss": 4.171584129333496, + "step": 1001 + }, + { + "epoch": 13.922673656618612, + "grad_norm": 0.18787573277950287, + "learning_rate": 0.0006, + "loss": 4.1837544441223145, + "step": 1002 + }, + { + "epoch": 13.936653560506771, + "grad_norm": 0.2001059353351593, + "learning_rate": 0.0006, + "loss": 4.160369873046875, + "step": 1003 + }, + { + "epoch": 13.950633464394933, + "grad_norm": 0.21644988656044006, + "learning_rate": 0.0006, + "loss": 4.221372604370117, + "step": 1004 + }, + { + "epoch": 13.964613368283093, + "grad_norm": 0.22083887457847595, + "learning_rate": 0.0006, + "loss": 4.149261474609375, + "step": 1005 + }, + { + "epoch": 13.978593272171254, + "grad_norm": 0.2201409637928009, + "learning_rate": 0.0006, + "loss": 4.192010879516602, + "step": 1006 + }, + { + "epoch": 13.992573176059414, + "grad_norm": 0.18888601660728455, + "learning_rate": 0.0006, + "loss": 4.17539119720459, + "step": 1007 + }, + { + "epoch": 14.0, + "grad_norm": 0.2073872834444046, + "learning_rate": 0.0006, + "loss": 4.145265579223633, + "step": 1008 + }, + { + "epoch": 14.0, + "eval_loss": 4.36876106262207, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 1008 + }, + { + "epoch": 14.013979903888162, + "grad_norm": 0.20773135125637054, + "learning_rate": 0.0006, + "loss": 4.132615089416504, + "step": 1009 + }, + { + "epoch": 14.027959807776321, + "grad_norm": 0.22409620881080627, + "learning_rate": 0.0006, + "loss": 4.172839164733887, + "step": 1010 + }, + { + "epoch": 14.041939711664483, + "grad_norm": 0.24046066403388977, + "learning_rate": 0.0006, + "loss": 4.126678943634033, + "step": 1011 + }, + { + "epoch": 14.055919615552643, + "grad_norm": 0.29185160994529724, + "learning_rate": 0.0006, + "loss": 4.177952766418457, + "step": 1012 + }, + { + "epoch": 14.069899519440805, + "grad_norm": 0.2984033226966858, + "learning_rate": 0.0006, + "loss": 4.155030250549316, + "step": 1013 + }, + { + "epoch": 14.083879423328964, + "grad_norm": 0.30262473225593567, + "learning_rate": 0.0006, + "loss": 4.145394325256348, + "step": 1014 + }, + { + "epoch": 14.097859327217126, + "grad_norm": 0.3278133273124695, + "learning_rate": 0.0006, + "loss": 4.172739028930664, + "step": 1015 + }, + { + "epoch": 14.111839231105286, + "grad_norm": 0.3285452425479889, + "learning_rate": 0.0006, + "loss": 4.153196334838867, + "step": 1016 + }, + { + "epoch": 14.125819134993447, + "grad_norm": 0.33912697434425354, + "learning_rate": 0.0006, + "loss": 4.098162651062012, + "step": 1017 + }, + { + "epoch": 14.139799038881607, + "grad_norm": 0.32080814242362976, + "learning_rate": 0.0006, + "loss": 4.157135009765625, + "step": 1018 + }, + { + "epoch": 14.153778942769769, + "grad_norm": 0.31288477778434753, + "learning_rate": 0.0006, + "loss": 4.142683029174805, + "step": 1019 + }, + { + "epoch": 14.167758846657929, + "grad_norm": 0.350289523601532, + "learning_rate": 0.0006, + "loss": 4.134700775146484, + "step": 1020 + }, + { + "epoch": 14.18173875054609, + "grad_norm": 0.34274575114250183, + "learning_rate": 0.0006, + "loss": 4.1578569412231445, + "step": 1021 + }, + { + "epoch": 14.19571865443425, + "grad_norm": 0.2843035161495209, + "learning_rate": 0.0006, + "loss": 4.13760232925415, + "step": 1022 + }, + { + "epoch": 14.209698558322412, + "grad_norm": 0.28235161304473877, + "learning_rate": 0.0006, + "loss": 4.1492462158203125, + "step": 1023 + }, + { + "epoch": 14.223678462210572, + "grad_norm": 0.24407248198986053, + "learning_rate": 0.0006, + "loss": 4.144372463226318, + "step": 1024 + }, + { + "epoch": 14.237658366098733, + "grad_norm": 0.2489742934703827, + "learning_rate": 0.0006, + "loss": 4.137950897216797, + "step": 1025 + }, + { + "epoch": 14.251638269986893, + "grad_norm": 0.26035651564598083, + "learning_rate": 0.0006, + "loss": 4.144070625305176, + "step": 1026 + }, + { + "epoch": 14.265618173875055, + "grad_norm": 0.2726516127586365, + "learning_rate": 0.0006, + "loss": 4.145204067230225, + "step": 1027 + }, + { + "epoch": 14.279598077763215, + "grad_norm": 0.2723483443260193, + "learning_rate": 0.0006, + "loss": 4.118407249450684, + "step": 1028 + }, + { + "epoch": 14.293577981651376, + "grad_norm": 0.27476269006729126, + "learning_rate": 0.0006, + "loss": 4.111325263977051, + "step": 1029 + }, + { + "epoch": 14.307557885539538, + "grad_norm": 0.26202502846717834, + "learning_rate": 0.0006, + "loss": 4.122248649597168, + "step": 1030 + }, + { + "epoch": 14.321537789427698, + "grad_norm": 0.2472032904624939, + "learning_rate": 0.0006, + "loss": 4.157790184020996, + "step": 1031 + }, + { + "epoch": 14.33551769331586, + "grad_norm": 0.2518343925476074, + "learning_rate": 0.0006, + "loss": 4.109132766723633, + "step": 1032 + }, + { + "epoch": 14.349497597204019, + "grad_norm": 0.2652401924133301, + "learning_rate": 0.0006, + "loss": 4.144079685211182, + "step": 1033 + }, + { + "epoch": 14.36347750109218, + "grad_norm": 0.2356770783662796, + "learning_rate": 0.0006, + "loss": 4.128426551818848, + "step": 1034 + }, + { + "epoch": 14.37745740498034, + "grad_norm": 0.2164214551448822, + "learning_rate": 0.0006, + "loss": 4.1644392013549805, + "step": 1035 + }, + { + "epoch": 14.391437308868502, + "grad_norm": 0.22383111715316772, + "learning_rate": 0.0006, + "loss": 4.165862083435059, + "step": 1036 + }, + { + "epoch": 14.405417212756662, + "grad_norm": 0.23152419924736023, + "learning_rate": 0.0006, + "loss": 4.140036582946777, + "step": 1037 + }, + { + "epoch": 14.419397116644824, + "grad_norm": 0.2387741357088089, + "learning_rate": 0.0006, + "loss": 4.130461692810059, + "step": 1038 + }, + { + "epoch": 14.433377020532983, + "grad_norm": 0.24018129706382751, + "learning_rate": 0.0006, + "loss": 4.148482322692871, + "step": 1039 + }, + { + "epoch": 14.447356924421145, + "grad_norm": 0.25487351417541504, + "learning_rate": 0.0006, + "loss": 4.158121109008789, + "step": 1040 + }, + { + "epoch": 14.461336828309305, + "grad_norm": 0.28220096230506897, + "learning_rate": 0.0006, + "loss": 4.160198211669922, + "step": 1041 + }, + { + "epoch": 14.475316732197467, + "grad_norm": 0.2574434280395508, + "learning_rate": 0.0006, + "loss": 4.168512344360352, + "step": 1042 + }, + { + "epoch": 14.489296636085626, + "grad_norm": 0.22569820284843445, + "learning_rate": 0.0006, + "loss": 4.1595001220703125, + "step": 1043 + }, + { + "epoch": 14.503276539973788, + "grad_norm": 0.2473423182964325, + "learning_rate": 0.0006, + "loss": 4.084580898284912, + "step": 1044 + }, + { + "epoch": 14.517256443861948, + "grad_norm": 0.24281060695648193, + "learning_rate": 0.0006, + "loss": 4.139714241027832, + "step": 1045 + }, + { + "epoch": 14.53123634775011, + "grad_norm": 0.24691344797611237, + "learning_rate": 0.0006, + "loss": 4.115398406982422, + "step": 1046 + }, + { + "epoch": 14.54521625163827, + "grad_norm": 0.2583645284175873, + "learning_rate": 0.0006, + "loss": 4.142148494720459, + "step": 1047 + }, + { + "epoch": 14.55919615552643, + "grad_norm": 0.23258574306964874, + "learning_rate": 0.0006, + "loss": 4.16251277923584, + "step": 1048 + }, + { + "epoch": 14.57317605941459, + "grad_norm": 0.22103039920330048, + "learning_rate": 0.0006, + "loss": 4.1308441162109375, + "step": 1049 + }, + { + "epoch": 14.587155963302752, + "grad_norm": 0.23713579773902893, + "learning_rate": 0.0006, + "loss": 4.1565985679626465, + "step": 1050 + }, + { + "epoch": 14.601135867190912, + "grad_norm": 0.24406634271144867, + "learning_rate": 0.0006, + "loss": 4.14628267288208, + "step": 1051 + }, + { + "epoch": 14.615115771079074, + "grad_norm": 0.26821228861808777, + "learning_rate": 0.0006, + "loss": 4.138063430786133, + "step": 1052 + }, + { + "epoch": 14.629095674967235, + "grad_norm": 0.25483864545822144, + "learning_rate": 0.0006, + "loss": 4.1311163902282715, + "step": 1053 + }, + { + "epoch": 14.643075578855395, + "grad_norm": 0.23937982320785522, + "learning_rate": 0.0006, + "loss": 4.150882244110107, + "step": 1054 + }, + { + "epoch": 14.657055482743557, + "grad_norm": 0.21896475553512573, + "learning_rate": 0.0006, + "loss": 4.114015102386475, + "step": 1055 + }, + { + "epoch": 14.671035386631717, + "grad_norm": 0.20821231603622437, + "learning_rate": 0.0006, + "loss": 4.139034271240234, + "step": 1056 + }, + { + "epoch": 14.685015290519878, + "grad_norm": 0.1978551596403122, + "learning_rate": 0.0006, + "loss": 4.1810503005981445, + "step": 1057 + }, + { + "epoch": 14.698995194408038, + "grad_norm": 0.1945771872997284, + "learning_rate": 0.0006, + "loss": 4.120734214782715, + "step": 1058 + }, + { + "epoch": 14.7129750982962, + "grad_norm": 0.19518673419952393, + "learning_rate": 0.0006, + "loss": 4.14264440536499, + "step": 1059 + }, + { + "epoch": 14.72695500218436, + "grad_norm": 0.202596515417099, + "learning_rate": 0.0006, + "loss": 4.151649475097656, + "step": 1060 + }, + { + "epoch": 14.740934906072521, + "grad_norm": 0.1904762089252472, + "learning_rate": 0.0006, + "loss": 4.127899169921875, + "step": 1061 + }, + { + "epoch": 14.754914809960681, + "grad_norm": 0.20685508847236633, + "learning_rate": 0.0006, + "loss": 4.093445777893066, + "step": 1062 + }, + { + "epoch": 14.768894713848843, + "grad_norm": 0.22678329050540924, + "learning_rate": 0.0006, + "loss": 4.132084369659424, + "step": 1063 + }, + { + "epoch": 14.782874617737003, + "grad_norm": 0.24631841480731964, + "learning_rate": 0.0006, + "loss": 4.154788970947266, + "step": 1064 + }, + { + "epoch": 14.796854521625164, + "grad_norm": 0.24445782601833344, + "learning_rate": 0.0006, + "loss": 4.144735336303711, + "step": 1065 + }, + { + "epoch": 14.810834425513324, + "grad_norm": 0.22330640256404877, + "learning_rate": 0.0006, + "loss": 4.159893989562988, + "step": 1066 + }, + { + "epoch": 14.824814329401486, + "grad_norm": 0.22422967851161957, + "learning_rate": 0.0006, + "loss": 4.104874610900879, + "step": 1067 + }, + { + "epoch": 14.838794233289645, + "grad_norm": 0.24583931267261505, + "learning_rate": 0.0006, + "loss": 4.139403820037842, + "step": 1068 + }, + { + "epoch": 14.852774137177807, + "grad_norm": 0.2917379140853882, + "learning_rate": 0.0006, + "loss": 4.168988227844238, + "step": 1069 + }, + { + "epoch": 14.866754041065967, + "grad_norm": 0.3171777129173279, + "learning_rate": 0.0006, + "loss": 4.131263732910156, + "step": 1070 + }, + { + "epoch": 14.880733944954128, + "grad_norm": 0.3039591312408447, + "learning_rate": 0.0006, + "loss": 4.149853706359863, + "step": 1071 + }, + { + "epoch": 14.89471384884229, + "grad_norm": 0.2690650522708893, + "learning_rate": 0.0006, + "loss": 4.154787540435791, + "step": 1072 + }, + { + "epoch": 14.90869375273045, + "grad_norm": 0.28683212399482727, + "learning_rate": 0.0006, + "loss": 4.12751579284668, + "step": 1073 + }, + { + "epoch": 14.922673656618612, + "grad_norm": 0.30022913217544556, + "learning_rate": 0.0006, + "loss": 4.141940116882324, + "step": 1074 + }, + { + "epoch": 14.936653560506771, + "grad_norm": 0.3312259316444397, + "learning_rate": 0.0006, + "loss": 4.141905784606934, + "step": 1075 + }, + { + "epoch": 14.950633464394933, + "grad_norm": 0.31159237027168274, + "learning_rate": 0.0006, + "loss": 4.160192966461182, + "step": 1076 + }, + { + "epoch": 14.964613368283093, + "grad_norm": 0.30093592405319214, + "learning_rate": 0.0006, + "loss": 4.1085076332092285, + "step": 1077 + }, + { + "epoch": 14.978593272171254, + "grad_norm": 0.2728535830974579, + "learning_rate": 0.0006, + "loss": 4.156959056854248, + "step": 1078 + }, + { + "epoch": 14.992573176059414, + "grad_norm": 0.24766813218593597, + "learning_rate": 0.0006, + "loss": 4.113999843597412, + "step": 1079 + }, + { + "epoch": 15.0, + "grad_norm": 0.2538154721260071, + "learning_rate": 0.0006, + "loss": 4.147134780883789, + "step": 1080 + }, + { + "epoch": 15.0, + "eval_loss": 4.323154926300049, + "eval_runtime": 44.8813, + "eval_samples_per_second": 54.41, + "eval_steps_per_second": 3.409, + "step": 1080 + }, + { + "epoch": 15.013979903888162, + "grad_norm": 0.22535280883312225, + "learning_rate": 0.0006, + "loss": 4.112179756164551, + "step": 1081 + }, + { + "epoch": 15.027959807776321, + "grad_norm": 0.24340929090976715, + "learning_rate": 0.0006, + "loss": 4.080923080444336, + "step": 1082 + }, + { + "epoch": 15.041939711664483, + "grad_norm": 0.23159465193748474, + "learning_rate": 0.0006, + "loss": 4.097067356109619, + "step": 1083 + }, + { + "epoch": 15.055919615552643, + "grad_norm": 0.22674769163131714, + "learning_rate": 0.0006, + "loss": 4.118601322174072, + "step": 1084 + }, + { + "epoch": 15.069899519440805, + "grad_norm": 0.2524292469024658, + "learning_rate": 0.0006, + "loss": 4.101109504699707, + "step": 1085 + }, + { + "epoch": 15.083879423328964, + "grad_norm": 0.2505405843257904, + "learning_rate": 0.0006, + "loss": 4.121405601501465, + "step": 1086 + }, + { + "epoch": 15.097859327217126, + "grad_norm": 0.2557983696460724, + "learning_rate": 0.0006, + "loss": 4.1063947677612305, + "step": 1087 + }, + { + "epoch": 15.111839231105286, + "grad_norm": 0.24452129006385803, + "learning_rate": 0.0006, + "loss": 4.086133003234863, + "step": 1088 + }, + { + "epoch": 15.125819134993447, + "grad_norm": 0.25821781158447266, + "learning_rate": 0.0006, + "loss": 4.076262950897217, + "step": 1089 + }, + { + "epoch": 15.139799038881607, + "grad_norm": 0.23650537431240082, + "learning_rate": 0.0006, + "loss": 4.101842880249023, + "step": 1090 + }, + { + "epoch": 15.153778942769769, + "grad_norm": 0.2206192910671234, + "learning_rate": 0.0006, + "loss": 4.11027193069458, + "step": 1091 + }, + { + "epoch": 15.167758846657929, + "grad_norm": 0.21843163669109344, + "learning_rate": 0.0006, + "loss": 4.098437309265137, + "step": 1092 + }, + { + "epoch": 15.18173875054609, + "grad_norm": 0.2528176009654999, + "learning_rate": 0.0006, + "loss": 4.108713150024414, + "step": 1093 + }, + { + "epoch": 15.19571865443425, + "grad_norm": 0.26697206497192383, + "learning_rate": 0.0006, + "loss": 4.113210201263428, + "step": 1094 + }, + { + "epoch": 15.209698558322412, + "grad_norm": 0.26480963826179504, + "learning_rate": 0.0006, + "loss": 4.1103620529174805, + "step": 1095 + }, + { + "epoch": 15.223678462210572, + "grad_norm": 0.24887347221374512, + "learning_rate": 0.0006, + "loss": 4.103529930114746, + "step": 1096 + }, + { + "epoch": 15.237658366098733, + "grad_norm": 0.2344668060541153, + "learning_rate": 0.0006, + "loss": 4.129784107208252, + "step": 1097 + }, + { + "epoch": 15.251638269986893, + "grad_norm": 0.22639742493629456, + "learning_rate": 0.0006, + "loss": 4.113495349884033, + "step": 1098 + }, + { + "epoch": 15.265618173875055, + "grad_norm": 0.22466333210468292, + "learning_rate": 0.0006, + "loss": 4.102309703826904, + "step": 1099 + }, + { + "epoch": 15.279598077763215, + "grad_norm": 0.25135037302970886, + "learning_rate": 0.0006, + "loss": 4.117668628692627, + "step": 1100 + }, + { + "epoch": 15.293577981651376, + "grad_norm": 0.2347089946269989, + "learning_rate": 0.0006, + "loss": 4.086637496948242, + "step": 1101 + }, + { + "epoch": 15.307557885539538, + "grad_norm": 0.2347242832183838, + "learning_rate": 0.0006, + "loss": 4.098714828491211, + "step": 1102 + }, + { + "epoch": 15.321537789427698, + "grad_norm": 0.23990283906459808, + "learning_rate": 0.0006, + "loss": 4.079837799072266, + "step": 1103 + }, + { + "epoch": 15.33551769331586, + "grad_norm": 0.22366675734519958, + "learning_rate": 0.0006, + "loss": 4.108136177062988, + "step": 1104 + }, + { + "epoch": 15.349497597204019, + "grad_norm": 0.21823780238628387, + "learning_rate": 0.0006, + "loss": 4.10054349899292, + "step": 1105 + }, + { + "epoch": 15.36347750109218, + "grad_norm": 0.23059198260307312, + "learning_rate": 0.0006, + "loss": 4.108620643615723, + "step": 1106 + }, + { + "epoch": 15.37745740498034, + "grad_norm": 0.2313755601644516, + "learning_rate": 0.0006, + "loss": 4.088565826416016, + "step": 1107 + }, + { + "epoch": 15.391437308868502, + "grad_norm": 0.2546829283237457, + "learning_rate": 0.0006, + "loss": 4.104948043823242, + "step": 1108 + }, + { + "epoch": 15.405417212756662, + "grad_norm": 0.23666726052761078, + "learning_rate": 0.0006, + "loss": 4.111965179443359, + "step": 1109 + }, + { + "epoch": 15.419397116644824, + "grad_norm": 0.21971021592617035, + "learning_rate": 0.0006, + "loss": 4.097846984863281, + "step": 1110 + }, + { + "epoch": 15.433377020532983, + "grad_norm": 0.20951911807060242, + "learning_rate": 0.0006, + "loss": 4.110099792480469, + "step": 1111 + }, + { + "epoch": 15.447356924421145, + "grad_norm": 0.19590918719768524, + "learning_rate": 0.0006, + "loss": 4.101154327392578, + "step": 1112 + }, + { + "epoch": 15.461336828309305, + "grad_norm": 0.21048946678638458, + "learning_rate": 0.0006, + "loss": 4.0986127853393555, + "step": 1113 + }, + { + "epoch": 15.475316732197467, + "grad_norm": 0.21423374116420746, + "learning_rate": 0.0006, + "loss": 4.082328796386719, + "step": 1114 + }, + { + "epoch": 15.489296636085626, + "grad_norm": 0.227146714925766, + "learning_rate": 0.0006, + "loss": 4.105281829833984, + "step": 1115 + }, + { + "epoch": 15.503276539973788, + "grad_norm": 0.2079153060913086, + "learning_rate": 0.0006, + "loss": 4.100836753845215, + "step": 1116 + }, + { + "epoch": 15.517256443861948, + "grad_norm": 0.21084675192832947, + "learning_rate": 0.0006, + "loss": 4.0934343338012695, + "step": 1117 + }, + { + "epoch": 15.53123634775011, + "grad_norm": 0.23863616585731506, + "learning_rate": 0.0006, + "loss": 4.101540565490723, + "step": 1118 + }, + { + "epoch": 15.54521625163827, + "grad_norm": 0.2518490254878998, + "learning_rate": 0.0006, + "loss": 4.12303352355957, + "step": 1119 + }, + { + "epoch": 15.55919615552643, + "grad_norm": 0.24282905459403992, + "learning_rate": 0.0006, + "loss": 4.080670356750488, + "step": 1120 + }, + { + "epoch": 15.57317605941459, + "grad_norm": 0.24171605706214905, + "learning_rate": 0.0006, + "loss": 4.117938041687012, + "step": 1121 + }, + { + "epoch": 15.587155963302752, + "grad_norm": 0.28453412652015686, + "learning_rate": 0.0006, + "loss": 4.080114364624023, + "step": 1122 + }, + { + "epoch": 15.601135867190912, + "grad_norm": 0.30322617292404175, + "learning_rate": 0.0006, + "loss": 4.079695701599121, + "step": 1123 + }, + { + "epoch": 15.615115771079074, + "grad_norm": 0.2657633125782013, + "learning_rate": 0.0006, + "loss": 4.0916290283203125, + "step": 1124 + }, + { + "epoch": 15.629095674967235, + "grad_norm": 0.2467080056667328, + "learning_rate": 0.0006, + "loss": 4.095594882965088, + "step": 1125 + }, + { + "epoch": 15.643075578855395, + "grad_norm": 0.21767394244670868, + "learning_rate": 0.0006, + "loss": 4.079174041748047, + "step": 1126 + }, + { + "epoch": 15.657055482743557, + "grad_norm": 0.2088327705860138, + "learning_rate": 0.0006, + "loss": 4.060707092285156, + "step": 1127 + }, + { + "epoch": 15.671035386631717, + "grad_norm": 0.1921205073595047, + "learning_rate": 0.0006, + "loss": 4.073911666870117, + "step": 1128 + }, + { + "epoch": 15.685015290519878, + "grad_norm": 0.209339901804924, + "learning_rate": 0.0006, + "loss": 4.089954376220703, + "step": 1129 + }, + { + "epoch": 15.698995194408038, + "grad_norm": 0.23513881862163544, + "learning_rate": 0.0006, + "loss": 4.084906578063965, + "step": 1130 + }, + { + "epoch": 15.7129750982962, + "grad_norm": 0.26140275597572327, + "learning_rate": 0.0006, + "loss": 4.086570739746094, + "step": 1131 + }, + { + "epoch": 15.72695500218436, + "grad_norm": 0.290431946516037, + "learning_rate": 0.0006, + "loss": 4.071229457855225, + "step": 1132 + }, + { + "epoch": 15.740934906072521, + "grad_norm": 0.3061376214027405, + "learning_rate": 0.0006, + "loss": 4.103148460388184, + "step": 1133 + }, + { + "epoch": 15.754914809960681, + "grad_norm": 0.26312482357025146, + "learning_rate": 0.0006, + "loss": 4.088448524475098, + "step": 1134 + }, + { + "epoch": 15.768894713848843, + "grad_norm": 0.22474883496761322, + "learning_rate": 0.0006, + "loss": 4.091766834259033, + "step": 1135 + }, + { + "epoch": 15.782874617737003, + "grad_norm": 0.2341146171092987, + "learning_rate": 0.0006, + "loss": 4.1222758293151855, + "step": 1136 + }, + { + "epoch": 15.796854521625164, + "grad_norm": 0.23556149005889893, + "learning_rate": 0.0006, + "loss": 4.094954013824463, + "step": 1137 + }, + { + "epoch": 15.810834425513324, + "grad_norm": 0.263315349817276, + "learning_rate": 0.0006, + "loss": 4.1065473556518555, + "step": 1138 + }, + { + "epoch": 15.824814329401486, + "grad_norm": 0.2700869143009186, + "learning_rate": 0.0006, + "loss": 4.0890045166015625, + "step": 1139 + }, + { + "epoch": 15.838794233289645, + "grad_norm": 0.28697484731674194, + "learning_rate": 0.0006, + "loss": 4.092496395111084, + "step": 1140 + }, + { + "epoch": 15.852774137177807, + "grad_norm": 0.2824092507362366, + "learning_rate": 0.0006, + "loss": 4.079615592956543, + "step": 1141 + }, + { + "epoch": 15.866754041065967, + "grad_norm": 0.24547280371189117, + "learning_rate": 0.0006, + "loss": 4.089683532714844, + "step": 1142 + }, + { + "epoch": 15.880733944954128, + "grad_norm": 0.23653888702392578, + "learning_rate": 0.0006, + "loss": 4.067309379577637, + "step": 1143 + }, + { + "epoch": 15.89471384884229, + "grad_norm": 0.23784421384334564, + "learning_rate": 0.0006, + "loss": 4.09156608581543, + "step": 1144 + }, + { + "epoch": 15.90869375273045, + "grad_norm": 0.22753281891345978, + "learning_rate": 0.0006, + "loss": 4.095428466796875, + "step": 1145 + }, + { + "epoch": 15.922673656618612, + "grad_norm": 0.2464212030172348, + "learning_rate": 0.0006, + "loss": 4.1036376953125, + "step": 1146 + }, + { + "epoch": 15.936653560506771, + "grad_norm": 0.25531601905822754, + "learning_rate": 0.0006, + "loss": 4.073996543884277, + "step": 1147 + }, + { + "epoch": 15.950633464394933, + "grad_norm": 0.24145905673503876, + "learning_rate": 0.0006, + "loss": 4.094479560852051, + "step": 1148 + }, + { + "epoch": 15.964613368283093, + "grad_norm": 0.24274317920207977, + "learning_rate": 0.0006, + "loss": 4.101981163024902, + "step": 1149 + }, + { + "epoch": 15.978593272171254, + "grad_norm": 0.2350679188966751, + "learning_rate": 0.0006, + "loss": 4.057965278625488, + "step": 1150 + }, + { + "epoch": 15.992573176059414, + "grad_norm": 0.24072253704071045, + "learning_rate": 0.0006, + "loss": 4.020050048828125, + "step": 1151 + }, + { + "epoch": 16.0, + "grad_norm": 0.253978967666626, + "learning_rate": 0.0006, + "loss": 4.061928749084473, + "step": 1152 + }, + { + "epoch": 16.0, + "eval_loss": 4.270665645599365, + "eval_runtime": 44.5063, + "eval_samples_per_second": 54.869, + "eval_steps_per_second": 3.438, + "step": 1152 + }, + { + "epoch": 16.01397990388816, + "grad_norm": 0.3265204131603241, + "learning_rate": 0.0006, + "loss": 4.059116363525391, + "step": 1153 + }, + { + "epoch": 16.027959807776323, + "grad_norm": 0.34139737486839294, + "learning_rate": 0.0006, + "loss": 4.062219619750977, + "step": 1154 + }, + { + "epoch": 16.041939711664483, + "grad_norm": 0.2849949598312378, + "learning_rate": 0.0006, + "loss": 4.032323837280273, + "step": 1155 + }, + { + "epoch": 16.055919615552643, + "grad_norm": 0.25031402707099915, + "learning_rate": 0.0006, + "loss": 4.075527191162109, + "step": 1156 + }, + { + "epoch": 16.069899519440803, + "grad_norm": 0.25207436084747314, + "learning_rate": 0.0006, + "loss": 4.0883097648620605, + "step": 1157 + }, + { + "epoch": 16.083879423328966, + "grad_norm": 0.28677356243133545, + "learning_rate": 0.0006, + "loss": 4.040797233581543, + "step": 1158 + }, + { + "epoch": 16.097859327217126, + "grad_norm": 0.30778825283050537, + "learning_rate": 0.0006, + "loss": 4.051504135131836, + "step": 1159 + }, + { + "epoch": 16.111839231105286, + "grad_norm": 0.3136911988258362, + "learning_rate": 0.0006, + "loss": 4.045449256896973, + "step": 1160 + }, + { + "epoch": 16.125819134993446, + "grad_norm": 0.34384530782699585, + "learning_rate": 0.0006, + "loss": 4.069897651672363, + "step": 1161 + }, + { + "epoch": 16.13979903888161, + "grad_norm": 0.3074268400669098, + "learning_rate": 0.0006, + "loss": 4.0621137619018555, + "step": 1162 + }, + { + "epoch": 16.15377894276977, + "grad_norm": 0.33090949058532715, + "learning_rate": 0.0006, + "loss": 4.084089279174805, + "step": 1163 + }, + { + "epoch": 16.16775884665793, + "grad_norm": 0.26358580589294434, + "learning_rate": 0.0006, + "loss": 4.066563606262207, + "step": 1164 + }, + { + "epoch": 16.18173875054609, + "grad_norm": 0.25586041808128357, + "learning_rate": 0.0006, + "loss": 4.08109188079834, + "step": 1165 + }, + { + "epoch": 16.195718654434252, + "grad_norm": 0.2966184616088867, + "learning_rate": 0.0006, + "loss": 4.039186477661133, + "step": 1166 + }, + { + "epoch": 16.209698558322412, + "grad_norm": 0.3064924478530884, + "learning_rate": 0.0006, + "loss": 4.08139705657959, + "step": 1167 + }, + { + "epoch": 16.22367846221057, + "grad_norm": 0.28671345114707947, + "learning_rate": 0.0006, + "loss": 4.04637336730957, + "step": 1168 + }, + { + "epoch": 16.23765836609873, + "grad_norm": 0.26209691166877747, + "learning_rate": 0.0006, + "loss": 4.052768707275391, + "step": 1169 + }, + { + "epoch": 16.251638269986895, + "grad_norm": 0.2758907079696655, + "learning_rate": 0.0006, + "loss": 4.064321517944336, + "step": 1170 + }, + { + "epoch": 16.265618173875055, + "grad_norm": 0.25961801409721375, + "learning_rate": 0.0006, + "loss": 4.057299613952637, + "step": 1171 + }, + { + "epoch": 16.279598077763215, + "grad_norm": 0.2513751685619354, + "learning_rate": 0.0006, + "loss": 4.064148902893066, + "step": 1172 + }, + { + "epoch": 16.293577981651374, + "grad_norm": 0.23920276761054993, + "learning_rate": 0.0006, + "loss": 4.101890563964844, + "step": 1173 + }, + { + "epoch": 16.307557885539538, + "grad_norm": 0.22746537625789642, + "learning_rate": 0.0006, + "loss": 4.086627006530762, + "step": 1174 + }, + { + "epoch": 16.321537789427698, + "grad_norm": 0.22633525729179382, + "learning_rate": 0.0006, + "loss": 4.04669189453125, + "step": 1175 + }, + { + "epoch": 16.335517693315857, + "grad_norm": 0.2654891610145569, + "learning_rate": 0.0006, + "loss": 4.086793422698975, + "step": 1176 + }, + { + "epoch": 16.34949759720402, + "grad_norm": 0.2872653007507324, + "learning_rate": 0.0006, + "loss": 4.077983856201172, + "step": 1177 + }, + { + "epoch": 16.36347750109218, + "grad_norm": 0.25726038217544556, + "learning_rate": 0.0006, + "loss": 4.066011428833008, + "step": 1178 + }, + { + "epoch": 16.37745740498034, + "grad_norm": 0.2592027485370636, + "learning_rate": 0.0006, + "loss": 4.0482988357543945, + "step": 1179 + }, + { + "epoch": 16.3914373088685, + "grad_norm": 0.2768886685371399, + "learning_rate": 0.0006, + "loss": 4.065151214599609, + "step": 1180 + }, + { + "epoch": 16.405417212756664, + "grad_norm": 0.2956002652645111, + "learning_rate": 0.0006, + "loss": 4.037791728973389, + "step": 1181 + }, + { + "epoch": 16.419397116644824, + "grad_norm": 0.3092120885848999, + "learning_rate": 0.0006, + "loss": 4.062164306640625, + "step": 1182 + }, + { + "epoch": 16.433377020532983, + "grad_norm": 0.29516810178756714, + "learning_rate": 0.0006, + "loss": 4.025505065917969, + "step": 1183 + }, + { + "epoch": 16.447356924421143, + "grad_norm": 0.2640177607536316, + "learning_rate": 0.0006, + "loss": 4.060182571411133, + "step": 1184 + }, + { + "epoch": 16.461336828309307, + "grad_norm": 0.2444908320903778, + "learning_rate": 0.0006, + "loss": 4.046144962310791, + "step": 1185 + }, + { + "epoch": 16.475316732197467, + "grad_norm": 0.23190705478191376, + "learning_rate": 0.0006, + "loss": 4.075569152832031, + "step": 1186 + }, + { + "epoch": 16.489296636085626, + "grad_norm": 0.2383626103401184, + "learning_rate": 0.0006, + "loss": 4.088897705078125, + "step": 1187 + }, + { + "epoch": 16.503276539973786, + "grad_norm": 0.20688803493976593, + "learning_rate": 0.0006, + "loss": 4.064517974853516, + "step": 1188 + }, + { + "epoch": 16.51725644386195, + "grad_norm": 0.22610054910182953, + "learning_rate": 0.0006, + "loss": 4.04502010345459, + "step": 1189 + }, + { + "epoch": 16.53123634775011, + "grad_norm": 0.2014893889427185, + "learning_rate": 0.0006, + "loss": 4.058279514312744, + "step": 1190 + }, + { + "epoch": 16.54521625163827, + "grad_norm": 0.21459777653217316, + "learning_rate": 0.0006, + "loss": 4.066389083862305, + "step": 1191 + }, + { + "epoch": 16.55919615552643, + "grad_norm": 0.22909940779209137, + "learning_rate": 0.0006, + "loss": 4.0557966232299805, + "step": 1192 + }, + { + "epoch": 16.573176059414592, + "grad_norm": 0.20039083063602448, + "learning_rate": 0.0006, + "loss": 4.092845916748047, + "step": 1193 + }, + { + "epoch": 16.587155963302752, + "grad_norm": 0.22651726007461548, + "learning_rate": 0.0006, + "loss": 4.034615516662598, + "step": 1194 + }, + { + "epoch": 16.601135867190912, + "grad_norm": 0.21901755034923553, + "learning_rate": 0.0006, + "loss": 4.035619735717773, + "step": 1195 + }, + { + "epoch": 16.615115771079076, + "grad_norm": 0.22930841147899628, + "learning_rate": 0.0006, + "loss": 4.080800533294678, + "step": 1196 + }, + { + "epoch": 16.629095674967235, + "grad_norm": 0.212818443775177, + "learning_rate": 0.0006, + "loss": 4.030189514160156, + "step": 1197 + }, + { + "epoch": 16.643075578855395, + "grad_norm": 0.2370826154947281, + "learning_rate": 0.0006, + "loss": 4.062643527984619, + "step": 1198 + }, + { + "epoch": 16.657055482743555, + "grad_norm": 0.24786995351314545, + "learning_rate": 0.0006, + "loss": 4.031761169433594, + "step": 1199 + }, + { + "epoch": 16.67103538663172, + "grad_norm": 0.2305847704410553, + "learning_rate": 0.0006, + "loss": 4.083752155303955, + "step": 1200 + }, + { + "epoch": 16.68501529051988, + "grad_norm": 0.23336584866046906, + "learning_rate": 0.0006, + "loss": 4.079145431518555, + "step": 1201 + }, + { + "epoch": 16.698995194408038, + "grad_norm": 0.23976293206214905, + "learning_rate": 0.0006, + "loss": 4.020473957061768, + "step": 1202 + }, + { + "epoch": 16.712975098296198, + "grad_norm": 0.222761869430542, + "learning_rate": 0.0006, + "loss": 4.065582752227783, + "step": 1203 + }, + { + "epoch": 16.72695500218436, + "grad_norm": 0.23725618422031403, + "learning_rate": 0.0006, + "loss": 4.0263776779174805, + "step": 1204 + }, + { + "epoch": 16.74093490607252, + "grad_norm": 0.23873984813690186, + "learning_rate": 0.0006, + "loss": 4.053092956542969, + "step": 1205 + }, + { + "epoch": 16.75491480996068, + "grad_norm": 0.21043002605438232, + "learning_rate": 0.0006, + "loss": 4.063965797424316, + "step": 1206 + }, + { + "epoch": 16.76889471384884, + "grad_norm": 0.19863522052764893, + "learning_rate": 0.0006, + "loss": 4.061187267303467, + "step": 1207 + }, + { + "epoch": 16.782874617737004, + "grad_norm": 0.1953752487897873, + "learning_rate": 0.0006, + "loss": 4.046016693115234, + "step": 1208 + }, + { + "epoch": 16.796854521625164, + "grad_norm": 0.2130361795425415, + "learning_rate": 0.0006, + "loss": 4.066933631896973, + "step": 1209 + }, + { + "epoch": 16.810834425513324, + "grad_norm": 0.19598130881786346, + "learning_rate": 0.0006, + "loss": 4.071558952331543, + "step": 1210 + }, + { + "epoch": 16.824814329401484, + "grad_norm": 0.20331116020679474, + "learning_rate": 0.0006, + "loss": 4.088632106781006, + "step": 1211 + }, + { + "epoch": 16.838794233289647, + "grad_norm": 0.20423150062561035, + "learning_rate": 0.0006, + "loss": 4.032224655151367, + "step": 1212 + }, + { + "epoch": 16.852774137177807, + "grad_norm": 0.2401197850704193, + "learning_rate": 0.0006, + "loss": 4.037393569946289, + "step": 1213 + }, + { + "epoch": 16.866754041065967, + "grad_norm": 0.26102620363235474, + "learning_rate": 0.0006, + "loss": 4.04738712310791, + "step": 1214 + }, + { + "epoch": 16.88073394495413, + "grad_norm": 0.2438521534204483, + "learning_rate": 0.0006, + "loss": 4.015673637390137, + "step": 1215 + }, + { + "epoch": 16.89471384884229, + "grad_norm": 0.20742061734199524, + "learning_rate": 0.0006, + "loss": 4.049060821533203, + "step": 1216 + }, + { + "epoch": 16.90869375273045, + "grad_norm": 0.22028608620166779, + "learning_rate": 0.0006, + "loss": 4.088971138000488, + "step": 1217 + }, + { + "epoch": 16.92267365661861, + "grad_norm": 0.21746744215488434, + "learning_rate": 0.0006, + "loss": 4.021710395812988, + "step": 1218 + }, + { + "epoch": 16.936653560506773, + "grad_norm": 0.2226102203130722, + "learning_rate": 0.0006, + "loss": 4.050119400024414, + "step": 1219 + }, + { + "epoch": 16.950633464394933, + "grad_norm": 0.23903657495975494, + "learning_rate": 0.0006, + "loss": 4.0570526123046875, + "step": 1220 + }, + { + "epoch": 16.964613368283093, + "grad_norm": 0.2556349039077759, + "learning_rate": 0.0006, + "loss": 4.0448808670043945, + "step": 1221 + }, + { + "epoch": 16.978593272171253, + "grad_norm": 0.28445592522621155, + "learning_rate": 0.0006, + "loss": 4.052034378051758, + "step": 1222 + }, + { + "epoch": 16.992573176059416, + "grad_norm": 0.273973673582077, + "learning_rate": 0.0006, + "loss": 4.02907657623291, + "step": 1223 + }, + { + "epoch": 17.0, + "grad_norm": 0.26125091314315796, + "learning_rate": 0.0006, + "loss": 4.10643196105957, + "step": 1224 + }, + { + "epoch": 17.0, + "eval_loss": 4.2585954666137695, + "eval_runtime": 44.8583, + "eval_samples_per_second": 54.438, + "eval_steps_per_second": 3.411, + "step": 1224 + }, + { + "epoch": 17.01397990388816, + "grad_norm": 0.2786196768283844, + "learning_rate": 0.0006, + "loss": 4.044719219207764, + "step": 1225 + }, + { + "epoch": 17.027959807776323, + "grad_norm": 0.2969571650028229, + "learning_rate": 0.0006, + "loss": 4.022037506103516, + "step": 1226 + }, + { + "epoch": 17.041939711664483, + "grad_norm": 0.32196253538131714, + "learning_rate": 0.0006, + "loss": 4.03636360168457, + "step": 1227 + }, + { + "epoch": 17.055919615552643, + "grad_norm": 0.28617000579833984, + "learning_rate": 0.0006, + "loss": 4.012125492095947, + "step": 1228 + }, + { + "epoch": 17.069899519440803, + "grad_norm": 0.26539644598960876, + "learning_rate": 0.0006, + "loss": 4.020190715789795, + "step": 1229 + }, + { + "epoch": 17.083879423328966, + "grad_norm": 0.24315394461154938, + "learning_rate": 0.0006, + "loss": 4.0553812980651855, + "step": 1230 + }, + { + "epoch": 17.097859327217126, + "grad_norm": 0.23798158764839172, + "learning_rate": 0.0006, + "loss": 4.004805088043213, + "step": 1231 + }, + { + "epoch": 17.111839231105286, + "grad_norm": 0.25723618268966675, + "learning_rate": 0.0006, + "loss": 4.00108003616333, + "step": 1232 + }, + { + "epoch": 17.125819134993446, + "grad_norm": 0.2669757604598999, + "learning_rate": 0.0006, + "loss": 4.00828742980957, + "step": 1233 + }, + { + "epoch": 17.13979903888161, + "grad_norm": 0.26421651244163513, + "learning_rate": 0.0006, + "loss": 3.995478391647339, + "step": 1234 + }, + { + "epoch": 17.15377894276977, + "grad_norm": 0.24745801091194153, + "learning_rate": 0.0006, + "loss": 4.0171027183532715, + "step": 1235 + }, + { + "epoch": 17.16775884665793, + "grad_norm": 0.27028775215148926, + "learning_rate": 0.0006, + "loss": 4.017108917236328, + "step": 1236 + }, + { + "epoch": 17.18173875054609, + "grad_norm": 0.27247968316078186, + "learning_rate": 0.0006, + "loss": 4.032601356506348, + "step": 1237 + }, + { + "epoch": 17.195718654434252, + "grad_norm": 0.24620869755744934, + "learning_rate": 0.0006, + "loss": 4.022171974182129, + "step": 1238 + }, + { + "epoch": 17.209698558322412, + "grad_norm": 0.23407386243343353, + "learning_rate": 0.0006, + "loss": 3.9946959018707275, + "step": 1239 + }, + { + "epoch": 17.22367846221057, + "grad_norm": 0.22559069097042084, + "learning_rate": 0.0006, + "loss": 4.013072490692139, + "step": 1240 + }, + { + "epoch": 17.23765836609873, + "grad_norm": 0.226687952876091, + "learning_rate": 0.0006, + "loss": 4.023543834686279, + "step": 1241 + }, + { + "epoch": 17.251638269986895, + "grad_norm": 0.24436360597610474, + "learning_rate": 0.0006, + "loss": 4.044206619262695, + "step": 1242 + }, + { + "epoch": 17.265618173875055, + "grad_norm": 0.25527626276016235, + "learning_rate": 0.0006, + "loss": 4.016424179077148, + "step": 1243 + }, + { + "epoch": 17.279598077763215, + "grad_norm": 0.26126864552497864, + "learning_rate": 0.0006, + "loss": 4.024394512176514, + "step": 1244 + }, + { + "epoch": 17.293577981651374, + "grad_norm": 0.25746744871139526, + "learning_rate": 0.0006, + "loss": 4.046844482421875, + "step": 1245 + }, + { + "epoch": 17.307557885539538, + "grad_norm": 0.26579564809799194, + "learning_rate": 0.0006, + "loss": 4.021010398864746, + "step": 1246 + }, + { + "epoch": 17.321537789427698, + "grad_norm": 0.2713971734046936, + "learning_rate": 0.0006, + "loss": 4.022331237792969, + "step": 1247 + }, + { + "epoch": 17.335517693315857, + "grad_norm": 0.24217180907726288, + "learning_rate": 0.0006, + "loss": 4.006353855133057, + "step": 1248 + }, + { + "epoch": 17.34949759720402, + "grad_norm": 0.26899752020835876, + "learning_rate": 0.0006, + "loss": 4.068023681640625, + "step": 1249 + }, + { + "epoch": 17.36347750109218, + "grad_norm": 0.26745253801345825, + "learning_rate": 0.0006, + "loss": 4.031207084655762, + "step": 1250 + }, + { + "epoch": 17.37745740498034, + "grad_norm": 0.21533764898777008, + "learning_rate": 0.0006, + "loss": 4.042410850524902, + "step": 1251 + }, + { + "epoch": 17.3914373088685, + "grad_norm": 0.21958027780056, + "learning_rate": 0.0006, + "loss": 4.02597713470459, + "step": 1252 + }, + { + "epoch": 17.405417212756664, + "grad_norm": 0.263068825006485, + "learning_rate": 0.0006, + "loss": 4.0035905838012695, + "step": 1253 + }, + { + "epoch": 17.419397116644824, + "grad_norm": 0.24044716358184814, + "learning_rate": 0.0006, + "loss": 4.005317687988281, + "step": 1254 + }, + { + "epoch": 17.433377020532983, + "grad_norm": 0.19142559170722961, + "learning_rate": 0.0006, + "loss": 3.9976844787597656, + "step": 1255 + }, + { + "epoch": 17.447356924421143, + "grad_norm": 0.18650250136852264, + "learning_rate": 0.0006, + "loss": 4.031353950500488, + "step": 1256 + }, + { + "epoch": 17.461336828309307, + "grad_norm": 0.1984022557735443, + "learning_rate": 0.0006, + "loss": 4.002097129821777, + "step": 1257 + }, + { + "epoch": 17.475316732197467, + "grad_norm": 0.20087844133377075, + "learning_rate": 0.0006, + "loss": 4.031151294708252, + "step": 1258 + }, + { + "epoch": 17.489296636085626, + "grad_norm": 0.20881228148937225, + "learning_rate": 0.0006, + "loss": 4.034793853759766, + "step": 1259 + }, + { + "epoch": 17.503276539973786, + "grad_norm": 0.23958556354045868, + "learning_rate": 0.0006, + "loss": 4.025238990783691, + "step": 1260 + }, + { + "epoch": 17.51725644386195, + "grad_norm": 0.23927845060825348, + "learning_rate": 0.0006, + "loss": 3.999828338623047, + "step": 1261 + }, + { + "epoch": 17.53123634775011, + "grad_norm": 0.20342715084552765, + "learning_rate": 0.0006, + "loss": 4.054262161254883, + "step": 1262 + }, + { + "epoch": 17.54521625163827, + "grad_norm": 0.21370555460453033, + "learning_rate": 0.0006, + "loss": 4.011582374572754, + "step": 1263 + }, + { + "epoch": 17.55919615552643, + "grad_norm": 0.23681946098804474, + "learning_rate": 0.0006, + "loss": 4.029694080352783, + "step": 1264 + }, + { + "epoch": 17.573176059414592, + "grad_norm": 0.24190311133861542, + "learning_rate": 0.0006, + "loss": 4.018783092498779, + "step": 1265 + }, + { + "epoch": 17.587155963302752, + "grad_norm": 0.23215509951114655, + "learning_rate": 0.0006, + "loss": 4.009703159332275, + "step": 1266 + }, + { + "epoch": 17.601135867190912, + "grad_norm": 0.21122977137565613, + "learning_rate": 0.0006, + "loss": 4.0345659255981445, + "step": 1267 + }, + { + "epoch": 17.615115771079076, + "grad_norm": 0.2075948715209961, + "learning_rate": 0.0006, + "loss": 4.070703506469727, + "step": 1268 + }, + { + "epoch": 17.629095674967235, + "grad_norm": 0.21667909622192383, + "learning_rate": 0.0006, + "loss": 4.020771503448486, + "step": 1269 + }, + { + "epoch": 17.643075578855395, + "grad_norm": 0.20960724353790283, + "learning_rate": 0.0006, + "loss": 4.026404857635498, + "step": 1270 + }, + { + "epoch": 17.657055482743555, + "grad_norm": 0.22575686872005463, + "learning_rate": 0.0006, + "loss": 4.01981258392334, + "step": 1271 + }, + { + "epoch": 17.67103538663172, + "grad_norm": 0.2565988302230835, + "learning_rate": 0.0006, + "loss": 4.015827178955078, + "step": 1272 + }, + { + "epoch": 17.68501529051988, + "grad_norm": 0.24831551313400269, + "learning_rate": 0.0006, + "loss": 4.012457847595215, + "step": 1273 + }, + { + "epoch": 17.698995194408038, + "grad_norm": 0.22595494985580444, + "learning_rate": 0.0006, + "loss": 4.031386375427246, + "step": 1274 + }, + { + "epoch": 17.712975098296198, + "grad_norm": 0.20687322318553925, + "learning_rate": 0.0006, + "loss": 4.014216423034668, + "step": 1275 + }, + { + "epoch": 17.72695500218436, + "grad_norm": 0.21916012465953827, + "learning_rate": 0.0006, + "loss": 4.037643909454346, + "step": 1276 + }, + { + "epoch": 17.74093490607252, + "grad_norm": 0.2243107706308365, + "learning_rate": 0.0006, + "loss": 4.033044815063477, + "step": 1277 + }, + { + "epoch": 17.75491480996068, + "grad_norm": 0.2402164787054062, + "learning_rate": 0.0006, + "loss": 4.026636123657227, + "step": 1278 + }, + { + "epoch": 17.76889471384884, + "grad_norm": 0.27957046031951904, + "learning_rate": 0.0006, + "loss": 4.0270867347717285, + "step": 1279 + }, + { + "epoch": 17.782874617737004, + "grad_norm": 0.27447596192359924, + "learning_rate": 0.0006, + "loss": 4.0120134353637695, + "step": 1280 + }, + { + "epoch": 17.796854521625164, + "grad_norm": 0.26926323771476746, + "learning_rate": 0.0006, + "loss": 4.027970314025879, + "step": 1281 + }, + { + "epoch": 17.810834425513324, + "grad_norm": 0.2535291314125061, + "learning_rate": 0.0006, + "loss": 4.002565383911133, + "step": 1282 + }, + { + "epoch": 17.824814329401484, + "grad_norm": 0.22639447450637817, + "learning_rate": 0.0006, + "loss": 4.032750606536865, + "step": 1283 + }, + { + "epoch": 17.838794233289647, + "grad_norm": 0.23384462296962738, + "learning_rate": 0.0006, + "loss": 4.03568172454834, + "step": 1284 + }, + { + "epoch": 17.852774137177807, + "grad_norm": 0.22971470654010773, + "learning_rate": 0.0006, + "loss": 4.031299591064453, + "step": 1285 + }, + { + "epoch": 17.866754041065967, + "grad_norm": 0.24540141224861145, + "learning_rate": 0.0006, + "loss": 4.0142669677734375, + "step": 1286 + }, + { + "epoch": 17.88073394495413, + "grad_norm": 0.2304888367652893, + "learning_rate": 0.0006, + "loss": 3.9964895248413086, + "step": 1287 + }, + { + "epoch": 17.89471384884229, + "grad_norm": 0.22082284092903137, + "learning_rate": 0.0006, + "loss": 4.024693489074707, + "step": 1288 + }, + { + "epoch": 17.90869375273045, + "grad_norm": 0.23677092790603638, + "learning_rate": 0.0006, + "loss": 4.002082347869873, + "step": 1289 + }, + { + "epoch": 17.92267365661861, + "grad_norm": 0.23122332990169525, + "learning_rate": 0.0006, + "loss": 4.025351524353027, + "step": 1290 + }, + { + "epoch": 17.936653560506773, + "grad_norm": 0.2548119127750397, + "learning_rate": 0.0006, + "loss": 3.9955825805664062, + "step": 1291 + }, + { + "epoch": 17.950633464394933, + "grad_norm": 0.26950931549072266, + "learning_rate": 0.0006, + "loss": 4.026151180267334, + "step": 1292 + }, + { + "epoch": 17.964613368283093, + "grad_norm": 0.3023233711719513, + "learning_rate": 0.0006, + "loss": 4.006035804748535, + "step": 1293 + }, + { + "epoch": 17.978593272171253, + "grad_norm": 0.3190958499908447, + "learning_rate": 0.0006, + "loss": 4.023565292358398, + "step": 1294 + }, + { + "epoch": 17.992573176059416, + "grad_norm": 0.28878068923950195, + "learning_rate": 0.0006, + "loss": 4.020973205566406, + "step": 1295 + }, + { + "epoch": 18.0, + "grad_norm": 0.27312418818473816, + "learning_rate": 0.0006, + "loss": 3.99906587600708, + "step": 1296 + }, + { + "epoch": 18.0, + "eval_loss": 4.224447250366211, + "eval_runtime": 52.5728, + "eval_samples_per_second": 46.45, + "eval_steps_per_second": 2.91, + "step": 1296 + }, + { + "epoch": 18.01397990388816, + "grad_norm": 0.2567712664604187, + "learning_rate": 0.0006, + "loss": 3.9755055904388428, + "step": 1297 + }, + { + "epoch": 18.027959807776323, + "grad_norm": 0.25048133730888367, + "learning_rate": 0.0006, + "loss": 4.009254455566406, + "step": 1298 + }, + { + "epoch": 18.041939711664483, + "grad_norm": 0.2556909918785095, + "learning_rate": 0.0006, + "loss": 4.001235008239746, + "step": 1299 + }, + { + "epoch": 18.055919615552643, + "grad_norm": 0.2501400113105774, + "learning_rate": 0.0006, + "loss": 3.980726480484009, + "step": 1300 + }, + { + "epoch": 18.069899519440803, + "grad_norm": 0.23977792263031006, + "learning_rate": 0.0006, + "loss": 3.964195728302002, + "step": 1301 + }, + { + "epoch": 18.083879423328966, + "grad_norm": 0.25650718808174133, + "learning_rate": 0.0006, + "loss": 4.015914440155029, + "step": 1302 + }, + { + "epoch": 18.097859327217126, + "grad_norm": 0.234053835272789, + "learning_rate": 0.0006, + "loss": 4.0159149169921875, + "step": 1303 + }, + { + "epoch": 18.111839231105286, + "grad_norm": 0.21967713534832, + "learning_rate": 0.0006, + "loss": 4.0055694580078125, + "step": 1304 + }, + { + "epoch": 18.125819134993446, + "grad_norm": 0.21790878474712372, + "learning_rate": 0.0006, + "loss": 3.986253261566162, + "step": 1305 + }, + { + "epoch": 18.13979903888161, + "grad_norm": 0.22955302894115448, + "learning_rate": 0.0006, + "loss": 3.959421157836914, + "step": 1306 + }, + { + "epoch": 18.15377894276977, + "grad_norm": 0.2559174597263336, + "learning_rate": 0.0006, + "loss": 4.0069756507873535, + "step": 1307 + }, + { + "epoch": 18.16775884665793, + "grad_norm": 0.26132866740226746, + "learning_rate": 0.0006, + "loss": 3.9874095916748047, + "step": 1308 + }, + { + "epoch": 18.18173875054609, + "grad_norm": 0.23258940875530243, + "learning_rate": 0.0006, + "loss": 3.9762492179870605, + "step": 1309 + }, + { + "epoch": 18.195718654434252, + "grad_norm": 0.22347190976142883, + "learning_rate": 0.0006, + "loss": 3.9923410415649414, + "step": 1310 + }, + { + "epoch": 18.209698558322412, + "grad_norm": 0.23095804452896118, + "learning_rate": 0.0006, + "loss": 4.019245624542236, + "step": 1311 + }, + { + "epoch": 18.22367846221057, + "grad_norm": 0.24817052483558655, + "learning_rate": 0.0006, + "loss": 3.9697511196136475, + "step": 1312 + }, + { + "epoch": 18.23765836609873, + "grad_norm": 0.2566024959087372, + "learning_rate": 0.0006, + "loss": 3.978804111480713, + "step": 1313 + }, + { + "epoch": 18.251638269986895, + "grad_norm": 0.2527952790260315, + "learning_rate": 0.0006, + "loss": 3.972018241882324, + "step": 1314 + }, + { + "epoch": 18.265618173875055, + "grad_norm": 0.2508150637149811, + "learning_rate": 0.0006, + "loss": 3.9971275329589844, + "step": 1315 + }, + { + "epoch": 18.279598077763215, + "grad_norm": 0.23242022097110748, + "learning_rate": 0.0006, + "loss": 3.9712045192718506, + "step": 1316 + }, + { + "epoch": 18.293577981651374, + "grad_norm": 0.23474404215812683, + "learning_rate": 0.0006, + "loss": 3.9926767349243164, + "step": 1317 + }, + { + "epoch": 18.307557885539538, + "grad_norm": 0.2417769432067871, + "learning_rate": 0.0006, + "loss": 3.9920949935913086, + "step": 1318 + }, + { + "epoch": 18.321537789427698, + "grad_norm": 0.23839452862739563, + "learning_rate": 0.0006, + "loss": 4.016645431518555, + "step": 1319 + }, + { + "epoch": 18.335517693315857, + "grad_norm": 0.2512452304363251, + "learning_rate": 0.0006, + "loss": 3.97586727142334, + "step": 1320 + }, + { + "epoch": 18.34949759720402, + "grad_norm": 0.27503693103790283, + "learning_rate": 0.0006, + "loss": 4.000148773193359, + "step": 1321 + }, + { + "epoch": 18.36347750109218, + "grad_norm": 0.27830836176872253, + "learning_rate": 0.0006, + "loss": 3.9972195625305176, + "step": 1322 + }, + { + "epoch": 18.37745740498034, + "grad_norm": 0.2571812570095062, + "learning_rate": 0.0006, + "loss": 3.9900810718536377, + "step": 1323 + }, + { + "epoch": 18.3914373088685, + "grad_norm": 0.2310052365064621, + "learning_rate": 0.0006, + "loss": 4.003000259399414, + "step": 1324 + }, + { + "epoch": 18.405417212756664, + "grad_norm": 0.19615735113620758, + "learning_rate": 0.0006, + "loss": 3.9536571502685547, + "step": 1325 + }, + { + "epoch": 18.419397116644824, + "grad_norm": 0.21323896944522858, + "learning_rate": 0.0006, + "loss": 3.977508068084717, + "step": 1326 + }, + { + "epoch": 18.433377020532983, + "grad_norm": 0.21404202282428741, + "learning_rate": 0.0006, + "loss": 4.015361785888672, + "step": 1327 + }, + { + "epoch": 18.447356924421143, + "grad_norm": 0.1991959661245346, + "learning_rate": 0.0006, + "loss": 4.000286102294922, + "step": 1328 + }, + { + "epoch": 18.461336828309307, + "grad_norm": 0.2073599398136139, + "learning_rate": 0.0006, + "loss": 3.973065137863159, + "step": 1329 + }, + { + "epoch": 18.475316732197467, + "grad_norm": 0.2096073031425476, + "learning_rate": 0.0006, + "loss": 3.987032890319824, + "step": 1330 + }, + { + "epoch": 18.489296636085626, + "grad_norm": 0.2380610853433609, + "learning_rate": 0.0006, + "loss": 4.035274505615234, + "step": 1331 + }, + { + "epoch": 18.503276539973786, + "grad_norm": 0.23570716381072998, + "learning_rate": 0.0006, + "loss": 4.010516166687012, + "step": 1332 + }, + { + "epoch": 18.51725644386195, + "grad_norm": 0.24805466830730438, + "learning_rate": 0.0006, + "loss": 3.9750983715057373, + "step": 1333 + }, + { + "epoch": 18.53123634775011, + "grad_norm": 0.25173231959342957, + "learning_rate": 0.0006, + "loss": 3.9742345809936523, + "step": 1334 + }, + { + "epoch": 18.54521625163827, + "grad_norm": 0.24590367078781128, + "learning_rate": 0.0006, + "loss": 4.0037312507629395, + "step": 1335 + }, + { + "epoch": 18.55919615552643, + "grad_norm": 0.24379394948482513, + "learning_rate": 0.0006, + "loss": 3.993858814239502, + "step": 1336 + }, + { + "epoch": 18.573176059414592, + "grad_norm": 0.21708883345127106, + "learning_rate": 0.0006, + "loss": 3.965670585632324, + "step": 1337 + }, + { + "epoch": 18.587155963302752, + "grad_norm": 0.21024051308631897, + "learning_rate": 0.0006, + "loss": 3.987551689147949, + "step": 1338 + }, + { + "epoch": 18.601135867190912, + "grad_norm": 0.23376783728599548, + "learning_rate": 0.0006, + "loss": 4.002841472625732, + "step": 1339 + }, + { + "epoch": 18.615115771079076, + "grad_norm": 0.25350701808929443, + "learning_rate": 0.0006, + "loss": 3.9881370067596436, + "step": 1340 + }, + { + "epoch": 18.629095674967235, + "grad_norm": 0.2542140483856201, + "learning_rate": 0.0006, + "loss": 4.003695964813232, + "step": 1341 + }, + { + "epoch": 18.643075578855395, + "grad_norm": 0.22932685911655426, + "learning_rate": 0.0006, + "loss": 4.0146002769470215, + "step": 1342 + }, + { + "epoch": 18.657055482743555, + "grad_norm": 0.21099458634853363, + "learning_rate": 0.0006, + "loss": 3.970472812652588, + "step": 1343 + }, + { + "epoch": 18.67103538663172, + "grad_norm": 0.2234615832567215, + "learning_rate": 0.0006, + "loss": 3.9821488857269287, + "step": 1344 + }, + { + "epoch": 18.68501529051988, + "grad_norm": 0.230327770113945, + "learning_rate": 0.0006, + "loss": 3.996274948120117, + "step": 1345 + }, + { + "epoch": 18.698995194408038, + "grad_norm": 0.23596233129501343, + "learning_rate": 0.0006, + "loss": 3.9747462272644043, + "step": 1346 + }, + { + "epoch": 18.712975098296198, + "grad_norm": 0.24173159897327423, + "learning_rate": 0.0006, + "loss": 4.011804103851318, + "step": 1347 + }, + { + "epoch": 18.72695500218436, + "grad_norm": 0.24087604880332947, + "learning_rate": 0.0006, + "loss": 4.008726119995117, + "step": 1348 + }, + { + "epoch": 18.74093490607252, + "grad_norm": 0.2457292526960373, + "learning_rate": 0.0006, + "loss": 3.990793228149414, + "step": 1349 + }, + { + "epoch": 18.75491480996068, + "grad_norm": 0.22946089506149292, + "learning_rate": 0.0006, + "loss": 3.980494260787964, + "step": 1350 + }, + { + "epoch": 18.76889471384884, + "grad_norm": 0.22986692190170288, + "learning_rate": 0.0006, + "loss": 3.97006893157959, + "step": 1351 + }, + { + "epoch": 18.782874617737004, + "grad_norm": 0.23358555138111115, + "learning_rate": 0.0006, + "loss": 4.008172035217285, + "step": 1352 + }, + { + "epoch": 18.796854521625164, + "grad_norm": 0.20183615386486053, + "learning_rate": 0.0006, + "loss": 3.9720888137817383, + "step": 1353 + }, + { + "epoch": 18.810834425513324, + "grad_norm": 0.19975653290748596, + "learning_rate": 0.0006, + "loss": 3.9783310890197754, + "step": 1354 + }, + { + "epoch": 18.824814329401484, + "grad_norm": 0.18911021947860718, + "learning_rate": 0.0006, + "loss": 3.985982894897461, + "step": 1355 + }, + { + "epoch": 18.838794233289647, + "grad_norm": 0.15984168648719788, + "learning_rate": 0.0006, + "loss": 3.9740548133850098, + "step": 1356 + }, + { + "epoch": 18.852774137177807, + "grad_norm": 0.1755436211824417, + "learning_rate": 0.0006, + "loss": 4.013090133666992, + "step": 1357 + }, + { + "epoch": 18.866754041065967, + "grad_norm": 0.1798417866230011, + "learning_rate": 0.0006, + "loss": 3.997880697250366, + "step": 1358 + }, + { + "epoch": 18.88073394495413, + "grad_norm": 0.20206265151500702, + "learning_rate": 0.0006, + "loss": 3.9892373085021973, + "step": 1359 + }, + { + "epoch": 18.89471384884229, + "grad_norm": 0.23685456812381744, + "learning_rate": 0.0006, + "loss": 3.9909186363220215, + "step": 1360 + }, + { + "epoch": 18.90869375273045, + "grad_norm": 0.26053836941719055, + "learning_rate": 0.0006, + "loss": 4.00327205657959, + "step": 1361 + }, + { + "epoch": 18.92267365661861, + "grad_norm": 0.26215845346450806, + "learning_rate": 0.0006, + "loss": 3.9714717864990234, + "step": 1362 + }, + { + "epoch": 18.936653560506773, + "grad_norm": 0.2433871030807495, + "learning_rate": 0.0006, + "loss": 3.949416160583496, + "step": 1363 + }, + { + "epoch": 18.950633464394933, + "grad_norm": 0.23331883549690247, + "learning_rate": 0.0006, + "loss": 3.980501413345337, + "step": 1364 + }, + { + "epoch": 18.964613368283093, + "grad_norm": 0.2346954047679901, + "learning_rate": 0.0006, + "loss": 3.9974493980407715, + "step": 1365 + }, + { + "epoch": 18.978593272171253, + "grad_norm": 0.25101345777511597, + "learning_rate": 0.0006, + "loss": 3.9800148010253906, + "step": 1366 + }, + { + "epoch": 18.992573176059416, + "grad_norm": 0.26811933517456055, + "learning_rate": 0.0006, + "loss": 4.0065741539001465, + "step": 1367 + }, + { + "epoch": 19.0, + "grad_norm": 0.2731736898422241, + "learning_rate": 0.0006, + "loss": 4.014575481414795, + "step": 1368 + }, + { + "epoch": 19.0, + "eval_loss": 4.200716972351074, + "eval_runtime": 44.6962, + "eval_samples_per_second": 54.636, + "eval_steps_per_second": 3.423, + "step": 1368 + }, + { + "epoch": 19.01397990388816, + "grad_norm": 0.2517746686935425, + "learning_rate": 0.0006, + "loss": 3.9486539363861084, + "step": 1369 + }, + { + "epoch": 19.027959807776323, + "grad_norm": 0.2482699453830719, + "learning_rate": 0.0006, + "loss": 3.95015287399292, + "step": 1370 + }, + { + "epoch": 19.041939711664483, + "grad_norm": 0.21693618595600128, + "learning_rate": 0.0006, + "loss": 3.970022201538086, + "step": 1371 + }, + { + "epoch": 19.055919615552643, + "grad_norm": 0.2035159319639206, + "learning_rate": 0.0006, + "loss": 3.941457748413086, + "step": 1372 + }, + { + "epoch": 19.069899519440803, + "grad_norm": 0.2201429009437561, + "learning_rate": 0.0006, + "loss": 3.946794033050537, + "step": 1373 + }, + { + "epoch": 19.083879423328966, + "grad_norm": 0.22910255193710327, + "learning_rate": 0.0006, + "loss": 3.94606876373291, + "step": 1374 + }, + { + "epoch": 19.097859327217126, + "grad_norm": 0.22378197312355042, + "learning_rate": 0.0006, + "loss": 3.957899570465088, + "step": 1375 + }, + { + "epoch": 19.111839231105286, + "grad_norm": 0.21728114783763885, + "learning_rate": 0.0006, + "loss": 3.9565982818603516, + "step": 1376 + }, + { + "epoch": 19.125819134993446, + "grad_norm": 0.21887634694576263, + "learning_rate": 0.0006, + "loss": 3.9649534225463867, + "step": 1377 + }, + { + "epoch": 19.13979903888161, + "grad_norm": 0.21892991662025452, + "learning_rate": 0.0006, + "loss": 3.971388101577759, + "step": 1378 + }, + { + "epoch": 19.15377894276977, + "grad_norm": 0.24582402408123016, + "learning_rate": 0.0006, + "loss": 3.9370944499969482, + "step": 1379 + }, + { + "epoch": 19.16775884665793, + "grad_norm": 0.27547118067741394, + "learning_rate": 0.0006, + "loss": 3.939406156539917, + "step": 1380 + }, + { + "epoch": 19.18173875054609, + "grad_norm": 0.3131563365459442, + "learning_rate": 0.0006, + "loss": 3.942620277404785, + "step": 1381 + }, + { + "epoch": 19.195718654434252, + "grad_norm": 0.3211703598499298, + "learning_rate": 0.0006, + "loss": 3.9388349056243896, + "step": 1382 + }, + { + "epoch": 19.209698558322412, + "grad_norm": 0.2791919410228729, + "learning_rate": 0.0006, + "loss": 3.9827399253845215, + "step": 1383 + }, + { + "epoch": 19.22367846221057, + "grad_norm": 0.2872016727924347, + "learning_rate": 0.0006, + "loss": 3.976715087890625, + "step": 1384 + }, + { + "epoch": 19.23765836609873, + "grad_norm": 0.2790389060974121, + "learning_rate": 0.0006, + "loss": 3.952850818634033, + "step": 1385 + }, + { + "epoch": 19.251638269986895, + "grad_norm": 0.31903740763664246, + "learning_rate": 0.0006, + "loss": 3.964506149291992, + "step": 1386 + }, + { + "epoch": 19.265618173875055, + "grad_norm": 0.31013646721839905, + "learning_rate": 0.0006, + "loss": 3.967219352722168, + "step": 1387 + }, + { + "epoch": 19.279598077763215, + "grad_norm": 0.2574339509010315, + "learning_rate": 0.0006, + "loss": 3.979168176651001, + "step": 1388 + }, + { + "epoch": 19.293577981651374, + "grad_norm": 0.24621108174324036, + "learning_rate": 0.0006, + "loss": 3.981734275817871, + "step": 1389 + }, + { + "epoch": 19.307557885539538, + "grad_norm": 0.25113818049430847, + "learning_rate": 0.0006, + "loss": 3.9787755012512207, + "step": 1390 + }, + { + "epoch": 19.321537789427698, + "grad_norm": 0.259971022605896, + "learning_rate": 0.0006, + "loss": 3.9648823738098145, + "step": 1391 + }, + { + "epoch": 19.335517693315857, + "grad_norm": 0.22580404579639435, + "learning_rate": 0.0006, + "loss": 3.9658002853393555, + "step": 1392 + }, + { + "epoch": 19.34949759720402, + "grad_norm": 0.2133680284023285, + "learning_rate": 0.0006, + "loss": 3.9615914821624756, + "step": 1393 + }, + { + "epoch": 19.36347750109218, + "grad_norm": 0.2387680858373642, + "learning_rate": 0.0006, + "loss": 3.993811845779419, + "step": 1394 + }, + { + "epoch": 19.37745740498034, + "grad_norm": 0.26086220145225525, + "learning_rate": 0.0006, + "loss": 3.932701826095581, + "step": 1395 + }, + { + "epoch": 19.3914373088685, + "grad_norm": 0.23255233466625214, + "learning_rate": 0.0006, + "loss": 3.8969321250915527, + "step": 1396 + }, + { + "epoch": 19.405417212756664, + "grad_norm": 0.22894541919231415, + "learning_rate": 0.0006, + "loss": 3.9569311141967773, + "step": 1397 + }, + { + "epoch": 19.419397116644824, + "grad_norm": 0.2254200130701065, + "learning_rate": 0.0006, + "loss": 3.953199863433838, + "step": 1398 + }, + { + "epoch": 19.433377020532983, + "grad_norm": 0.25802481174468994, + "learning_rate": 0.0006, + "loss": 3.9714815616607666, + "step": 1399 + }, + { + "epoch": 19.447356924421143, + "grad_norm": 0.24725162982940674, + "learning_rate": 0.0006, + "loss": 3.957339286804199, + "step": 1400 + }, + { + "epoch": 19.461336828309307, + "grad_norm": 0.2162018120288849, + "learning_rate": 0.0006, + "loss": 3.986801862716675, + "step": 1401 + }, + { + "epoch": 19.475316732197467, + "grad_norm": 0.21530906856060028, + "learning_rate": 0.0006, + "loss": 3.9766759872436523, + "step": 1402 + }, + { + "epoch": 19.489296636085626, + "grad_norm": 0.20260323584079742, + "learning_rate": 0.0006, + "loss": 3.9576425552368164, + "step": 1403 + }, + { + "epoch": 19.503276539973786, + "grad_norm": 0.188974529504776, + "learning_rate": 0.0006, + "loss": 3.9852395057678223, + "step": 1404 + }, + { + "epoch": 19.51725644386195, + "grad_norm": 0.19727374613285065, + "learning_rate": 0.0006, + "loss": 3.972484588623047, + "step": 1405 + }, + { + "epoch": 19.53123634775011, + "grad_norm": 0.23708008229732513, + "learning_rate": 0.0006, + "loss": 3.992471694946289, + "step": 1406 + }, + { + "epoch": 19.54521625163827, + "grad_norm": 0.23783449828624725, + "learning_rate": 0.0006, + "loss": 3.9788265228271484, + "step": 1407 + }, + { + "epoch": 19.55919615552643, + "grad_norm": 0.24744364619255066, + "learning_rate": 0.0006, + "loss": 3.9559011459350586, + "step": 1408 + }, + { + "epoch": 19.573176059414592, + "grad_norm": 0.24828094244003296, + "learning_rate": 0.0006, + "loss": 3.9663949012756348, + "step": 1409 + }, + { + "epoch": 19.587155963302752, + "grad_norm": 0.2681315541267395, + "learning_rate": 0.0006, + "loss": 3.9581191539764404, + "step": 1410 + }, + { + "epoch": 19.601135867190912, + "grad_norm": 0.2691532373428345, + "learning_rate": 0.0006, + "loss": 3.9832754135131836, + "step": 1411 + }, + { + "epoch": 19.615115771079076, + "grad_norm": 0.2900252640247345, + "learning_rate": 0.0006, + "loss": 3.984365940093994, + "step": 1412 + }, + { + "epoch": 19.629095674967235, + "grad_norm": 0.3194943070411682, + "learning_rate": 0.0006, + "loss": 3.9856505393981934, + "step": 1413 + }, + { + "epoch": 19.643075578855395, + "grad_norm": 0.3029029071331024, + "learning_rate": 0.0006, + "loss": 3.968992233276367, + "step": 1414 + }, + { + "epoch": 19.657055482743555, + "grad_norm": 0.2658176124095917, + "learning_rate": 0.0006, + "loss": 3.995187282562256, + "step": 1415 + }, + { + "epoch": 19.67103538663172, + "grad_norm": 0.26807504892349243, + "learning_rate": 0.0006, + "loss": 3.9756274223327637, + "step": 1416 + }, + { + "epoch": 19.68501529051988, + "grad_norm": 0.27718642354011536, + "learning_rate": 0.0006, + "loss": 3.9510018825531006, + "step": 1417 + }, + { + "epoch": 19.698995194408038, + "grad_norm": 0.26322051882743835, + "learning_rate": 0.0006, + "loss": 3.965155601501465, + "step": 1418 + }, + { + "epoch": 19.712975098296198, + "grad_norm": 0.2566570043563843, + "learning_rate": 0.0006, + "loss": 3.984218120574951, + "step": 1419 + }, + { + "epoch": 19.72695500218436, + "grad_norm": 0.2218743860721588, + "learning_rate": 0.0006, + "loss": 3.9338784217834473, + "step": 1420 + }, + { + "epoch": 19.74093490607252, + "grad_norm": 0.22894173860549927, + "learning_rate": 0.0006, + "loss": 3.9869046211242676, + "step": 1421 + }, + { + "epoch": 19.75491480996068, + "grad_norm": 0.26837027072906494, + "learning_rate": 0.0006, + "loss": 3.96799898147583, + "step": 1422 + }, + { + "epoch": 19.76889471384884, + "grad_norm": 0.2767876982688904, + "learning_rate": 0.0006, + "loss": 3.9431071281433105, + "step": 1423 + }, + { + "epoch": 19.782874617737004, + "grad_norm": 0.24402284622192383, + "learning_rate": 0.0006, + "loss": 3.9631881713867188, + "step": 1424 + }, + { + "epoch": 19.796854521625164, + "grad_norm": 0.23500724136829376, + "learning_rate": 0.0006, + "loss": 3.9943337440490723, + "step": 1425 + }, + { + "epoch": 19.810834425513324, + "grad_norm": 0.22509142756462097, + "learning_rate": 0.0006, + "loss": 3.961226224899292, + "step": 1426 + }, + { + "epoch": 19.824814329401484, + "grad_norm": 0.23524795472621918, + "learning_rate": 0.0006, + "loss": 3.9552102088928223, + "step": 1427 + }, + { + "epoch": 19.838794233289647, + "grad_norm": 0.22307050228118896, + "learning_rate": 0.0006, + "loss": 3.9623494148254395, + "step": 1428 + }, + { + "epoch": 19.852774137177807, + "grad_norm": 0.21144486963748932, + "learning_rate": 0.0006, + "loss": 3.9620237350463867, + "step": 1429 + }, + { + "epoch": 19.866754041065967, + "grad_norm": 0.20249812304973602, + "learning_rate": 0.0006, + "loss": 3.953911066055298, + "step": 1430 + }, + { + "epoch": 19.88073394495413, + "grad_norm": 0.2350354939699173, + "learning_rate": 0.0006, + "loss": 3.9616730213165283, + "step": 1431 + }, + { + "epoch": 19.89471384884229, + "grad_norm": 0.2566683292388916, + "learning_rate": 0.0006, + "loss": 3.9372501373291016, + "step": 1432 + }, + { + "epoch": 19.90869375273045, + "grad_norm": 0.2520846128463745, + "learning_rate": 0.0006, + "loss": 3.9814648628234863, + "step": 1433 + }, + { + "epoch": 19.92267365661861, + "grad_norm": 0.23989640176296234, + "learning_rate": 0.0006, + "loss": 3.9692864418029785, + "step": 1434 + }, + { + "epoch": 19.936653560506773, + "grad_norm": 0.20650425553321838, + "learning_rate": 0.0006, + "loss": 3.960256814956665, + "step": 1435 + }, + { + "epoch": 19.950633464394933, + "grad_norm": 0.20478376746177673, + "learning_rate": 0.0006, + "loss": 3.9585227966308594, + "step": 1436 + }, + { + "epoch": 19.964613368283093, + "grad_norm": 0.234436497092247, + "learning_rate": 0.0006, + "loss": 3.945631742477417, + "step": 1437 + }, + { + "epoch": 19.978593272171253, + "grad_norm": 0.19969749450683594, + "learning_rate": 0.0006, + "loss": 3.9646050930023193, + "step": 1438 + }, + { + "epoch": 19.992573176059416, + "grad_norm": 0.20638690888881683, + "learning_rate": 0.0006, + "loss": 3.9461846351623535, + "step": 1439 + }, + { + "epoch": 20.0, + "grad_norm": 0.2120274156332016, + "learning_rate": 0.0006, + "loss": 3.965153217315674, + "step": 1440 + }, + { + "epoch": 20.0, + "eval_loss": 4.168524742126465, + "eval_runtime": 44.2796, + "eval_samples_per_second": 55.15, + "eval_steps_per_second": 3.455, + "step": 1440 + }, + { + "epoch": 20.01397990388816, + "grad_norm": 0.19704894721508026, + "learning_rate": 0.0006, + "loss": 3.937016248703003, + "step": 1441 + }, + { + "epoch": 20.027959807776323, + "grad_norm": 0.18682368099689484, + "learning_rate": 0.0006, + "loss": 3.895922899246216, + "step": 1442 + }, + { + "epoch": 20.041939711664483, + "grad_norm": 0.18982571363449097, + "learning_rate": 0.0006, + "loss": 3.929841995239258, + "step": 1443 + }, + { + "epoch": 20.055919615552643, + "grad_norm": 0.20811910927295685, + "learning_rate": 0.0006, + "loss": 3.9498324394226074, + "step": 1444 + }, + { + "epoch": 20.069899519440803, + "grad_norm": 0.2149062603712082, + "learning_rate": 0.0006, + "loss": 3.929853916168213, + "step": 1445 + }, + { + "epoch": 20.083879423328966, + "grad_norm": 0.20016685128211975, + "learning_rate": 0.0006, + "loss": 3.9374136924743652, + "step": 1446 + }, + { + "epoch": 20.097859327217126, + "grad_norm": 0.19969616830348969, + "learning_rate": 0.0006, + "loss": 3.932447910308838, + "step": 1447 + }, + { + "epoch": 20.111839231105286, + "grad_norm": 0.2163356989622116, + "learning_rate": 0.0006, + "loss": 3.9325437545776367, + "step": 1448 + }, + { + "epoch": 20.125819134993446, + "grad_norm": 0.22026969492435455, + "learning_rate": 0.0006, + "loss": 3.9118852615356445, + "step": 1449 + }, + { + "epoch": 20.13979903888161, + "grad_norm": 0.23337116837501526, + "learning_rate": 0.0006, + "loss": 3.9416019916534424, + "step": 1450 + }, + { + "epoch": 20.15377894276977, + "grad_norm": 0.23971447348594666, + "learning_rate": 0.0006, + "loss": 3.9416871070861816, + "step": 1451 + }, + { + "epoch": 20.16775884665793, + "grad_norm": 0.25973960757255554, + "learning_rate": 0.0006, + "loss": 3.93826961517334, + "step": 1452 + }, + { + "epoch": 20.18173875054609, + "grad_norm": 0.2303445190191269, + "learning_rate": 0.0006, + "loss": 3.909383535385132, + "step": 1453 + }, + { + "epoch": 20.195718654434252, + "grad_norm": 0.21090206503868103, + "learning_rate": 0.0006, + "loss": 3.935939311981201, + "step": 1454 + }, + { + "epoch": 20.209698558322412, + "grad_norm": 0.2278691977262497, + "learning_rate": 0.0006, + "loss": 3.9623684883117676, + "step": 1455 + }, + { + "epoch": 20.22367846221057, + "grad_norm": 0.22291512787342072, + "learning_rate": 0.0006, + "loss": 3.9386210441589355, + "step": 1456 + }, + { + "epoch": 20.23765836609873, + "grad_norm": 0.2385793924331665, + "learning_rate": 0.0006, + "loss": 3.927365303039551, + "step": 1457 + }, + { + "epoch": 20.251638269986895, + "grad_norm": 0.23949867486953735, + "learning_rate": 0.0006, + "loss": 3.956698179244995, + "step": 1458 + }, + { + "epoch": 20.265618173875055, + "grad_norm": 0.2232269048690796, + "learning_rate": 0.0006, + "loss": 3.9465065002441406, + "step": 1459 + }, + { + "epoch": 20.279598077763215, + "grad_norm": 0.22286680340766907, + "learning_rate": 0.0006, + "loss": 3.9102284908294678, + "step": 1460 + }, + { + "epoch": 20.293577981651374, + "grad_norm": 0.24039050936698914, + "learning_rate": 0.0006, + "loss": 3.928055763244629, + "step": 1461 + }, + { + "epoch": 20.307557885539538, + "grad_norm": 0.2532738447189331, + "learning_rate": 0.0006, + "loss": 3.931753635406494, + "step": 1462 + }, + { + "epoch": 20.321537789427698, + "grad_norm": 0.2206273376941681, + "learning_rate": 0.0006, + "loss": 3.936119556427002, + "step": 1463 + }, + { + "epoch": 20.335517693315857, + "grad_norm": 0.20918945968151093, + "learning_rate": 0.0006, + "loss": 3.9228529930114746, + "step": 1464 + }, + { + "epoch": 20.34949759720402, + "grad_norm": 0.2324502319097519, + "learning_rate": 0.0006, + "loss": 3.9370768070220947, + "step": 1465 + }, + { + "epoch": 20.36347750109218, + "grad_norm": 0.26811033487319946, + "learning_rate": 0.0006, + "loss": 3.968515396118164, + "step": 1466 + }, + { + "epoch": 20.37745740498034, + "grad_norm": 0.2896045744419098, + "learning_rate": 0.0006, + "loss": 3.945124626159668, + "step": 1467 + }, + { + "epoch": 20.3914373088685, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 3.9399516582489014, + "step": 1468 + }, + { + "epoch": 20.405417212756664, + "grad_norm": 0.3076821565628052, + "learning_rate": 0.0006, + "loss": 3.9545583724975586, + "step": 1469 + }, + { + "epoch": 20.419397116644824, + "grad_norm": 0.3019449710845947, + "learning_rate": 0.0006, + "loss": 3.9502270221710205, + "step": 1470 + }, + { + "epoch": 20.433377020532983, + "grad_norm": 0.31832560896873474, + "learning_rate": 0.0006, + "loss": 3.940439224243164, + "step": 1471 + }, + { + "epoch": 20.447356924421143, + "grad_norm": 0.30303657054901123, + "learning_rate": 0.0006, + "loss": 3.9451770782470703, + "step": 1472 + }, + { + "epoch": 20.461336828309307, + "grad_norm": 0.28122979402542114, + "learning_rate": 0.0006, + "loss": 3.934508800506592, + "step": 1473 + }, + { + "epoch": 20.475316732197467, + "grad_norm": 0.27013441920280457, + "learning_rate": 0.0006, + "loss": 3.924323081970215, + "step": 1474 + }, + { + "epoch": 20.489296636085626, + "grad_norm": 0.29052063822746277, + "learning_rate": 0.0006, + "loss": 3.970916748046875, + "step": 1475 + }, + { + "epoch": 20.503276539973786, + "grad_norm": 0.2871626913547516, + "learning_rate": 0.0006, + "loss": 3.945425033569336, + "step": 1476 + }, + { + "epoch": 20.51725644386195, + "grad_norm": 0.2396184206008911, + "learning_rate": 0.0006, + "loss": 3.964290142059326, + "step": 1477 + }, + { + "epoch": 20.53123634775011, + "grad_norm": 0.21942107379436493, + "learning_rate": 0.0006, + "loss": 3.910101890563965, + "step": 1478 + }, + { + "epoch": 20.54521625163827, + "grad_norm": 0.22193685173988342, + "learning_rate": 0.0006, + "loss": 3.914005756378174, + "step": 1479 + }, + { + "epoch": 20.55919615552643, + "grad_norm": 0.20207515358924866, + "learning_rate": 0.0006, + "loss": 3.9575581550598145, + "step": 1480 + }, + { + "epoch": 20.573176059414592, + "grad_norm": 0.17855247855186462, + "learning_rate": 0.0006, + "loss": 3.941490411758423, + "step": 1481 + }, + { + "epoch": 20.587155963302752, + "grad_norm": 0.21268485486507416, + "learning_rate": 0.0006, + "loss": 3.94045352935791, + "step": 1482 + }, + { + "epoch": 20.601135867190912, + "grad_norm": 0.24890053272247314, + "learning_rate": 0.0006, + "loss": 3.932961940765381, + "step": 1483 + }, + { + "epoch": 20.615115771079076, + "grad_norm": 0.23771314322948456, + "learning_rate": 0.0006, + "loss": 3.9067630767822266, + "step": 1484 + }, + { + "epoch": 20.629095674967235, + "grad_norm": 0.20990237593650818, + "learning_rate": 0.0006, + "loss": 3.9476752281188965, + "step": 1485 + }, + { + "epoch": 20.643075578855395, + "grad_norm": 0.20058798789978027, + "learning_rate": 0.0006, + "loss": 3.9350547790527344, + "step": 1486 + }, + { + "epoch": 20.657055482743555, + "grad_norm": 0.1953001767396927, + "learning_rate": 0.0006, + "loss": 3.9437222480773926, + "step": 1487 + }, + { + "epoch": 20.67103538663172, + "grad_norm": 0.18748535215854645, + "learning_rate": 0.0006, + "loss": 3.9336047172546387, + "step": 1488 + }, + { + "epoch": 20.68501529051988, + "grad_norm": 0.18874801695346832, + "learning_rate": 0.0006, + "loss": 3.9042580127716064, + "step": 1489 + }, + { + "epoch": 20.698995194408038, + "grad_norm": 0.1844169795513153, + "learning_rate": 0.0006, + "loss": 3.9302420616149902, + "step": 1490 + }, + { + "epoch": 20.712975098296198, + "grad_norm": 0.18519413471221924, + "learning_rate": 0.0006, + "loss": 3.9527437686920166, + "step": 1491 + }, + { + "epoch": 20.72695500218436, + "grad_norm": 0.20084598660469055, + "learning_rate": 0.0006, + "loss": 3.9161760807037354, + "step": 1492 + }, + { + "epoch": 20.74093490607252, + "grad_norm": 0.2015734612941742, + "learning_rate": 0.0006, + "loss": 3.9466545581817627, + "step": 1493 + }, + { + "epoch": 20.75491480996068, + "grad_norm": 0.2210122048854828, + "learning_rate": 0.0006, + "loss": 3.8994693756103516, + "step": 1494 + }, + { + "epoch": 20.76889471384884, + "grad_norm": 0.23019762337207794, + "learning_rate": 0.0006, + "loss": 3.93685245513916, + "step": 1495 + }, + { + "epoch": 20.782874617737004, + "grad_norm": 0.21246281266212463, + "learning_rate": 0.0006, + "loss": 3.9499399662017822, + "step": 1496 + }, + { + "epoch": 20.796854521625164, + "grad_norm": 0.21142810583114624, + "learning_rate": 0.0006, + "loss": 3.9317150115966797, + "step": 1497 + }, + { + "epoch": 20.810834425513324, + "grad_norm": 0.20230524241924286, + "learning_rate": 0.0006, + "loss": 3.9389750957489014, + "step": 1498 + }, + { + "epoch": 20.824814329401484, + "grad_norm": 0.21096977591514587, + "learning_rate": 0.0006, + "loss": 3.9325194358825684, + "step": 1499 + }, + { + "epoch": 20.838794233289647, + "grad_norm": 0.2309989333152771, + "learning_rate": 0.0006, + "loss": 3.943641185760498, + "step": 1500 + }, + { + "epoch": 20.852774137177807, + "grad_norm": 0.2016306221485138, + "learning_rate": 0.0006, + "loss": 3.986043930053711, + "step": 1501 + }, + { + "epoch": 20.866754041065967, + "grad_norm": 0.2107970118522644, + "learning_rate": 0.0006, + "loss": 3.9219160079956055, + "step": 1502 + }, + { + "epoch": 20.88073394495413, + "grad_norm": 0.21580125391483307, + "learning_rate": 0.0006, + "loss": 3.942014694213867, + "step": 1503 + }, + { + "epoch": 20.89471384884229, + "grad_norm": 0.21348726749420166, + "learning_rate": 0.0006, + "loss": 3.9389920234680176, + "step": 1504 + }, + { + "epoch": 20.90869375273045, + "grad_norm": 0.23094943165779114, + "learning_rate": 0.0006, + "loss": 3.952993392944336, + "step": 1505 + }, + { + "epoch": 20.92267365661861, + "grad_norm": 0.22431740164756775, + "learning_rate": 0.0006, + "loss": 3.897671937942505, + "step": 1506 + }, + { + "epoch": 20.936653560506773, + "grad_norm": 0.20056353509426117, + "learning_rate": 0.0006, + "loss": 3.9100005626678467, + "step": 1507 + }, + { + "epoch": 20.950633464394933, + "grad_norm": 0.20604434609413147, + "learning_rate": 0.0006, + "loss": 3.9486045837402344, + "step": 1508 + }, + { + "epoch": 20.964613368283093, + "grad_norm": 0.22979380190372467, + "learning_rate": 0.0006, + "loss": 3.977163553237915, + "step": 1509 + }, + { + "epoch": 20.978593272171253, + "grad_norm": 0.2421523779630661, + "learning_rate": 0.0006, + "loss": 3.9216256141662598, + "step": 1510 + }, + { + "epoch": 20.992573176059416, + "grad_norm": 0.25776705145835876, + "learning_rate": 0.0006, + "loss": 3.9221739768981934, + "step": 1511 + }, + { + "epoch": 21.0, + "grad_norm": 0.2750694751739502, + "learning_rate": 0.0006, + "loss": 3.938098907470703, + "step": 1512 + }, + { + "epoch": 21.0, + "eval_loss": 4.159763336181641, + "eval_runtime": 44.8663, + "eval_samples_per_second": 54.428, + "eval_steps_per_second": 3.41, + "step": 1512 + }, + { + "epoch": 21.01397990388816, + "grad_norm": 0.24513043463230133, + "learning_rate": 0.0006, + "loss": 3.8939385414123535, + "step": 1513 + }, + { + "epoch": 21.027959807776323, + "grad_norm": 0.22209352254867554, + "learning_rate": 0.0006, + "loss": 3.9044857025146484, + "step": 1514 + }, + { + "epoch": 21.041939711664483, + "grad_norm": 0.22437648475170135, + "learning_rate": 0.0006, + "loss": 3.9325196743011475, + "step": 1515 + }, + { + "epoch": 21.055919615552643, + "grad_norm": 0.21168062090873718, + "learning_rate": 0.0006, + "loss": 3.882176637649536, + "step": 1516 + }, + { + "epoch": 21.069899519440803, + "grad_norm": 0.22334499657154083, + "learning_rate": 0.0006, + "loss": 3.8978934288024902, + "step": 1517 + }, + { + "epoch": 21.083879423328966, + "grad_norm": 0.21038010716438293, + "learning_rate": 0.0006, + "loss": 3.8807029724121094, + "step": 1518 + }, + { + "epoch": 21.097859327217126, + "grad_norm": 0.2243613600730896, + "learning_rate": 0.0006, + "loss": 3.924865961074829, + "step": 1519 + }, + { + "epoch": 21.111839231105286, + "grad_norm": 0.2535616159439087, + "learning_rate": 0.0006, + "loss": 3.9288227558135986, + "step": 1520 + }, + { + "epoch": 21.125819134993446, + "grad_norm": 0.2782756984233856, + "learning_rate": 0.0006, + "loss": 3.908233642578125, + "step": 1521 + }, + { + "epoch": 21.13979903888161, + "grad_norm": 0.2586214542388916, + "learning_rate": 0.0006, + "loss": 3.9151182174682617, + "step": 1522 + }, + { + "epoch": 21.15377894276977, + "grad_norm": 0.22465091943740845, + "learning_rate": 0.0006, + "loss": 3.9209084510803223, + "step": 1523 + }, + { + "epoch": 21.16775884665793, + "grad_norm": 0.2588018774986267, + "learning_rate": 0.0006, + "loss": 3.9295971393585205, + "step": 1524 + }, + { + "epoch": 21.18173875054609, + "grad_norm": 0.2637675702571869, + "learning_rate": 0.0006, + "loss": 3.9353199005126953, + "step": 1525 + }, + { + "epoch": 21.195718654434252, + "grad_norm": 0.2806383967399597, + "learning_rate": 0.0006, + "loss": 3.922337770462036, + "step": 1526 + }, + { + "epoch": 21.209698558322412, + "grad_norm": 0.27103501558303833, + "learning_rate": 0.0006, + "loss": 3.8811073303222656, + "step": 1527 + }, + { + "epoch": 21.22367846221057, + "grad_norm": 0.27203720808029175, + "learning_rate": 0.0006, + "loss": 3.9036178588867188, + "step": 1528 + }, + { + "epoch": 21.23765836609873, + "grad_norm": 0.2783355712890625, + "learning_rate": 0.0006, + "loss": 3.885456085205078, + "step": 1529 + }, + { + "epoch": 21.251638269986895, + "grad_norm": 0.2884930968284607, + "learning_rate": 0.0006, + "loss": 3.8936941623687744, + "step": 1530 + }, + { + "epoch": 21.265618173875055, + "grad_norm": 0.2829558849334717, + "learning_rate": 0.0006, + "loss": 3.927624225616455, + "step": 1531 + }, + { + "epoch": 21.279598077763215, + "grad_norm": 0.2809497117996216, + "learning_rate": 0.0006, + "loss": 3.8896753787994385, + "step": 1532 + }, + { + "epoch": 21.293577981651374, + "grad_norm": 0.27037671208381653, + "learning_rate": 0.0006, + "loss": 3.91316294670105, + "step": 1533 + }, + { + "epoch": 21.307557885539538, + "grad_norm": 0.310051292181015, + "learning_rate": 0.0006, + "loss": 3.9137332439422607, + "step": 1534 + }, + { + "epoch": 21.321537789427698, + "grad_norm": 0.30489876866340637, + "learning_rate": 0.0006, + "loss": 3.9088284969329834, + "step": 1535 + }, + { + "epoch": 21.335517693315857, + "grad_norm": 0.2607756555080414, + "learning_rate": 0.0006, + "loss": 3.9097847938537598, + "step": 1536 + }, + { + "epoch": 21.34949759720402, + "grad_norm": 0.2460775375366211, + "learning_rate": 0.0006, + "loss": 3.941211700439453, + "step": 1537 + }, + { + "epoch": 21.36347750109218, + "grad_norm": 0.24271734058856964, + "learning_rate": 0.0006, + "loss": 3.9140594005584717, + "step": 1538 + }, + { + "epoch": 21.37745740498034, + "grad_norm": 0.20012645423412323, + "learning_rate": 0.0006, + "loss": 3.888446807861328, + "step": 1539 + }, + { + "epoch": 21.3914373088685, + "grad_norm": 0.2196308672428131, + "learning_rate": 0.0006, + "loss": 3.9153785705566406, + "step": 1540 + }, + { + "epoch": 21.405417212756664, + "grad_norm": 0.22184589505195618, + "learning_rate": 0.0006, + "loss": 3.91996431350708, + "step": 1541 + }, + { + "epoch": 21.419397116644824, + "grad_norm": 0.22947315871715546, + "learning_rate": 0.0006, + "loss": 3.9268412590026855, + "step": 1542 + }, + { + "epoch": 21.433377020532983, + "grad_norm": 0.22275054454803467, + "learning_rate": 0.0006, + "loss": 3.909275531768799, + "step": 1543 + }, + { + "epoch": 21.447356924421143, + "grad_norm": 0.23103971779346466, + "learning_rate": 0.0006, + "loss": 3.925635814666748, + "step": 1544 + }, + { + "epoch": 21.461336828309307, + "grad_norm": 0.23379720747470856, + "learning_rate": 0.0006, + "loss": 3.926647186279297, + "step": 1545 + }, + { + "epoch": 21.475316732197467, + "grad_norm": 0.2244282215833664, + "learning_rate": 0.0006, + "loss": 3.9428000450134277, + "step": 1546 + }, + { + "epoch": 21.489296636085626, + "grad_norm": 0.22773298621177673, + "learning_rate": 0.0006, + "loss": 3.9378256797790527, + "step": 1547 + }, + { + "epoch": 21.503276539973786, + "grad_norm": 0.1918657273054123, + "learning_rate": 0.0006, + "loss": 3.904022216796875, + "step": 1548 + }, + { + "epoch": 21.51725644386195, + "grad_norm": 0.18415570259094238, + "learning_rate": 0.0006, + "loss": 3.9105122089385986, + "step": 1549 + }, + { + "epoch": 21.53123634775011, + "grad_norm": 0.22141380608081818, + "learning_rate": 0.0006, + "loss": 3.9153857231140137, + "step": 1550 + }, + { + "epoch": 21.54521625163827, + "grad_norm": 0.22533352673053741, + "learning_rate": 0.0006, + "loss": 3.9148974418640137, + "step": 1551 + }, + { + "epoch": 21.55919615552643, + "grad_norm": 0.2124762088060379, + "learning_rate": 0.0006, + "loss": 3.926311731338501, + "step": 1552 + }, + { + "epoch": 21.573176059414592, + "grad_norm": 0.239680215716362, + "learning_rate": 0.0006, + "loss": 3.9260334968566895, + "step": 1553 + }, + { + "epoch": 21.587155963302752, + "grad_norm": 0.24158740043640137, + "learning_rate": 0.0006, + "loss": 3.933223247528076, + "step": 1554 + }, + { + "epoch": 21.601135867190912, + "grad_norm": 0.2216576784849167, + "learning_rate": 0.0006, + "loss": 3.9065442085266113, + "step": 1555 + }, + { + "epoch": 21.615115771079076, + "grad_norm": 0.20099912583827972, + "learning_rate": 0.0006, + "loss": 3.923278570175171, + "step": 1556 + }, + { + "epoch": 21.629095674967235, + "grad_norm": 0.2337288111448288, + "learning_rate": 0.0006, + "loss": 3.92032527923584, + "step": 1557 + }, + { + "epoch": 21.643075578855395, + "grad_norm": 0.23574814200401306, + "learning_rate": 0.0006, + "loss": 3.896244525909424, + "step": 1558 + }, + { + "epoch": 21.657055482743555, + "grad_norm": 0.21338573098182678, + "learning_rate": 0.0006, + "loss": 3.930345058441162, + "step": 1559 + }, + { + "epoch": 21.67103538663172, + "grad_norm": 0.2375067174434662, + "learning_rate": 0.0006, + "loss": 3.864104986190796, + "step": 1560 + }, + { + "epoch": 21.68501529051988, + "grad_norm": 0.22490349411964417, + "learning_rate": 0.0006, + "loss": 3.883296012878418, + "step": 1561 + }, + { + "epoch": 21.698995194408038, + "grad_norm": 0.23021313548088074, + "learning_rate": 0.0006, + "loss": 3.915200710296631, + "step": 1562 + }, + { + "epoch": 21.712975098296198, + "grad_norm": 0.22590875625610352, + "learning_rate": 0.0006, + "loss": 3.903597354888916, + "step": 1563 + }, + { + "epoch": 21.72695500218436, + "grad_norm": 0.19066260755062103, + "learning_rate": 0.0006, + "loss": 3.9162631034851074, + "step": 1564 + }, + { + "epoch": 21.74093490607252, + "grad_norm": 0.18134327232837677, + "learning_rate": 0.0006, + "loss": 3.9167914390563965, + "step": 1565 + }, + { + "epoch": 21.75491480996068, + "grad_norm": 0.1782190054655075, + "learning_rate": 0.0006, + "loss": 3.900925636291504, + "step": 1566 + }, + { + "epoch": 21.76889471384884, + "grad_norm": 0.19034099578857422, + "learning_rate": 0.0006, + "loss": 3.896559238433838, + "step": 1567 + }, + { + "epoch": 21.782874617737004, + "grad_norm": 0.21509577333927155, + "learning_rate": 0.0006, + "loss": 3.891681671142578, + "step": 1568 + }, + { + "epoch": 21.796854521625164, + "grad_norm": 0.2370351105928421, + "learning_rate": 0.0006, + "loss": 3.886570453643799, + "step": 1569 + }, + { + "epoch": 21.810834425513324, + "grad_norm": 0.25546324253082275, + "learning_rate": 0.0006, + "loss": 3.9247193336486816, + "step": 1570 + }, + { + "epoch": 21.824814329401484, + "grad_norm": 0.2513384222984314, + "learning_rate": 0.0006, + "loss": 3.9120583534240723, + "step": 1571 + }, + { + "epoch": 21.838794233289647, + "grad_norm": 0.24691323935985565, + "learning_rate": 0.0006, + "loss": 3.9144935607910156, + "step": 1572 + }, + { + "epoch": 21.852774137177807, + "grad_norm": 0.2573968172073364, + "learning_rate": 0.0006, + "loss": 3.9517531394958496, + "step": 1573 + }, + { + "epoch": 21.866754041065967, + "grad_norm": 0.25461453199386597, + "learning_rate": 0.0006, + "loss": 3.93508243560791, + "step": 1574 + }, + { + "epoch": 21.88073394495413, + "grad_norm": 0.23756568133831024, + "learning_rate": 0.0006, + "loss": 3.8885269165039062, + "step": 1575 + }, + { + "epoch": 21.89471384884229, + "grad_norm": 0.2193172425031662, + "learning_rate": 0.0006, + "loss": 3.9103426933288574, + "step": 1576 + }, + { + "epoch": 21.90869375273045, + "grad_norm": 0.2350149303674698, + "learning_rate": 0.0006, + "loss": 3.9399590492248535, + "step": 1577 + }, + { + "epoch": 21.92267365661861, + "grad_norm": 0.23759333789348602, + "learning_rate": 0.0006, + "loss": 3.9433584213256836, + "step": 1578 + }, + { + "epoch": 21.936653560506773, + "grad_norm": 0.21108432114124298, + "learning_rate": 0.0006, + "loss": 3.9241819381713867, + "step": 1579 + }, + { + "epoch": 21.950633464394933, + "grad_norm": 0.22088949382305145, + "learning_rate": 0.0006, + "loss": 3.9231910705566406, + "step": 1580 + }, + { + "epoch": 21.964613368283093, + "grad_norm": 0.22125045955181122, + "learning_rate": 0.0006, + "loss": 3.896329164505005, + "step": 1581 + }, + { + "epoch": 21.978593272171253, + "grad_norm": 0.20745202898979187, + "learning_rate": 0.0006, + "loss": 3.8920536041259766, + "step": 1582 + }, + { + "epoch": 21.992573176059416, + "grad_norm": 0.2409721463918686, + "learning_rate": 0.0006, + "loss": 3.9061317443847656, + "step": 1583 + }, + { + "epoch": 22.0, + "grad_norm": 0.2669669985771179, + "learning_rate": 0.0006, + "loss": 3.922062397003174, + "step": 1584 + }, + { + "epoch": 22.0, + "eval_loss": 4.140966415405273, + "eval_runtime": 46.7132, + "eval_samples_per_second": 52.276, + "eval_steps_per_second": 3.275, + "step": 1584 + }, + { + "epoch": 22.01397990388816, + "grad_norm": 0.26155969500541687, + "learning_rate": 0.0006, + "loss": 3.888944625854492, + "step": 1585 + }, + { + "epoch": 22.027959807776323, + "grad_norm": 0.2579149007797241, + "learning_rate": 0.0006, + "loss": 3.8924355506896973, + "step": 1586 + }, + { + "epoch": 22.041939711664483, + "grad_norm": 0.2429896742105484, + "learning_rate": 0.0006, + "loss": 3.8714070320129395, + "step": 1587 + }, + { + "epoch": 22.055919615552643, + "grad_norm": 0.23497673869132996, + "learning_rate": 0.0006, + "loss": 3.905089855194092, + "step": 1588 + }, + { + "epoch": 22.069899519440803, + "grad_norm": 0.24074940383434296, + "learning_rate": 0.0006, + "loss": 3.886845111846924, + "step": 1589 + }, + { + "epoch": 22.083879423328966, + "grad_norm": 0.2226274162530899, + "learning_rate": 0.0006, + "loss": 3.8554329872131348, + "step": 1590 + }, + { + "epoch": 22.097859327217126, + "grad_norm": 0.22924423217773438, + "learning_rate": 0.0006, + "loss": 3.8914356231689453, + "step": 1591 + }, + { + "epoch": 22.111839231105286, + "grad_norm": 0.2459387183189392, + "learning_rate": 0.0006, + "loss": 3.902522087097168, + "step": 1592 + }, + { + "epoch": 22.125819134993446, + "grad_norm": 0.2704590857028961, + "learning_rate": 0.0006, + "loss": 3.896497964859009, + "step": 1593 + }, + { + "epoch": 22.13979903888161, + "grad_norm": 0.2848219871520996, + "learning_rate": 0.0006, + "loss": 3.88423228263855, + "step": 1594 + }, + { + "epoch": 22.15377894276977, + "grad_norm": 0.22996552288532257, + "learning_rate": 0.0006, + "loss": 3.9034953117370605, + "step": 1595 + }, + { + "epoch": 22.16775884665793, + "grad_norm": 0.2117270529270172, + "learning_rate": 0.0006, + "loss": 3.888279914855957, + "step": 1596 + }, + { + "epoch": 22.18173875054609, + "grad_norm": 0.19724160432815552, + "learning_rate": 0.0006, + "loss": 3.860525131225586, + "step": 1597 + }, + { + "epoch": 22.195718654434252, + "grad_norm": 0.2012624740600586, + "learning_rate": 0.0006, + "loss": 3.8930106163024902, + "step": 1598 + }, + { + "epoch": 22.209698558322412, + "grad_norm": 0.20243871212005615, + "learning_rate": 0.0006, + "loss": 3.8727619647979736, + "step": 1599 + }, + { + "epoch": 22.22367846221057, + "grad_norm": 0.21737465262413025, + "learning_rate": 0.0006, + "loss": 3.887969493865967, + "step": 1600 + }, + { + "epoch": 22.23765836609873, + "grad_norm": 0.23969845473766327, + "learning_rate": 0.0006, + "loss": 3.8629722595214844, + "step": 1601 + }, + { + "epoch": 22.251638269986895, + "grad_norm": 0.22874902188777924, + "learning_rate": 0.0006, + "loss": 3.9135584831237793, + "step": 1602 + }, + { + "epoch": 22.265618173875055, + "grad_norm": 0.209506556391716, + "learning_rate": 0.0006, + "loss": 3.8734190464019775, + "step": 1603 + }, + { + "epoch": 22.279598077763215, + "grad_norm": 0.22235789895057678, + "learning_rate": 0.0006, + "loss": 3.884854793548584, + "step": 1604 + }, + { + "epoch": 22.293577981651374, + "grad_norm": 0.21975041925907135, + "learning_rate": 0.0006, + "loss": 3.8860888481140137, + "step": 1605 + }, + { + "epoch": 22.307557885539538, + "grad_norm": 0.21474459767341614, + "learning_rate": 0.0006, + "loss": 3.9052200317382812, + "step": 1606 + }, + { + "epoch": 22.321537789427698, + "grad_norm": 0.2103329747915268, + "learning_rate": 0.0006, + "loss": 3.8516340255737305, + "step": 1607 + }, + { + "epoch": 22.335517693315857, + "grad_norm": 0.1981191635131836, + "learning_rate": 0.0006, + "loss": 3.9017434120178223, + "step": 1608 + }, + { + "epoch": 22.34949759720402, + "grad_norm": 0.20679591596126556, + "learning_rate": 0.0006, + "loss": 3.889885425567627, + "step": 1609 + }, + { + "epoch": 22.36347750109218, + "grad_norm": 0.20809867978096008, + "learning_rate": 0.0006, + "loss": 3.881868362426758, + "step": 1610 + }, + { + "epoch": 22.37745740498034, + "grad_norm": 0.21394680440425873, + "learning_rate": 0.0006, + "loss": 3.89980411529541, + "step": 1611 + }, + { + "epoch": 22.3914373088685, + "grad_norm": 0.2334284782409668, + "learning_rate": 0.0006, + "loss": 3.8672266006469727, + "step": 1612 + }, + { + "epoch": 22.405417212756664, + "grad_norm": 0.26521918177604675, + "learning_rate": 0.0006, + "loss": 3.8918118476867676, + "step": 1613 + }, + { + "epoch": 22.419397116644824, + "grad_norm": 0.2652994394302368, + "learning_rate": 0.0006, + "loss": 3.8683271408081055, + "step": 1614 + }, + { + "epoch": 22.433377020532983, + "grad_norm": 0.2568066716194153, + "learning_rate": 0.0006, + "loss": 3.892523765563965, + "step": 1615 + }, + { + "epoch": 22.447356924421143, + "grad_norm": 0.260052353143692, + "learning_rate": 0.0006, + "loss": 3.897305488586426, + "step": 1616 + }, + { + "epoch": 22.461336828309307, + "grad_norm": 0.2744271457195282, + "learning_rate": 0.0006, + "loss": 3.8962221145629883, + "step": 1617 + }, + { + "epoch": 22.475316732197467, + "grad_norm": 0.23755787312984467, + "learning_rate": 0.0006, + "loss": 3.888184070587158, + "step": 1618 + }, + { + "epoch": 22.489296636085626, + "grad_norm": 0.2515312135219574, + "learning_rate": 0.0006, + "loss": 3.8946003913879395, + "step": 1619 + }, + { + "epoch": 22.503276539973786, + "grad_norm": 0.24835044145584106, + "learning_rate": 0.0006, + "loss": 3.8711423873901367, + "step": 1620 + }, + { + "epoch": 22.51725644386195, + "grad_norm": 0.22615326941013336, + "learning_rate": 0.0006, + "loss": 3.8878846168518066, + "step": 1621 + }, + { + "epoch": 22.53123634775011, + "grad_norm": 0.20482423901557922, + "learning_rate": 0.0006, + "loss": 3.8782598972320557, + "step": 1622 + }, + { + "epoch": 22.54521625163827, + "grad_norm": 0.20436473190784454, + "learning_rate": 0.0006, + "loss": 3.9075279235839844, + "step": 1623 + }, + { + "epoch": 22.55919615552643, + "grad_norm": 0.2066277265548706, + "learning_rate": 0.0006, + "loss": 3.89908766746521, + "step": 1624 + }, + { + "epoch": 22.573176059414592, + "grad_norm": 0.20735307037830353, + "learning_rate": 0.0006, + "loss": 3.865204334259033, + "step": 1625 + }, + { + "epoch": 22.587155963302752, + "grad_norm": 0.20955748856067657, + "learning_rate": 0.0006, + "loss": 3.8835532665252686, + "step": 1626 + }, + { + "epoch": 22.601135867190912, + "grad_norm": 0.21354222297668457, + "learning_rate": 0.0006, + "loss": 3.9012551307678223, + "step": 1627 + }, + { + "epoch": 22.615115771079076, + "grad_norm": 0.2075091004371643, + "learning_rate": 0.0006, + "loss": 3.8733482360839844, + "step": 1628 + }, + { + "epoch": 22.629095674967235, + "grad_norm": 0.20207874476909637, + "learning_rate": 0.0006, + "loss": 3.9193859100341797, + "step": 1629 + }, + { + "epoch": 22.643075578855395, + "grad_norm": 0.21863923966884613, + "learning_rate": 0.0006, + "loss": 3.883518695831299, + "step": 1630 + }, + { + "epoch": 22.657055482743555, + "grad_norm": 0.22117522358894348, + "learning_rate": 0.0006, + "loss": 3.9163284301757812, + "step": 1631 + }, + { + "epoch": 22.67103538663172, + "grad_norm": 0.2078622728586197, + "learning_rate": 0.0006, + "loss": 3.868274688720703, + "step": 1632 + }, + { + "epoch": 22.68501529051988, + "grad_norm": 0.22745893895626068, + "learning_rate": 0.0006, + "loss": 3.9171340465545654, + "step": 1633 + }, + { + "epoch": 22.698995194408038, + "grad_norm": 0.2312736064195633, + "learning_rate": 0.0006, + "loss": 3.9487013816833496, + "step": 1634 + }, + { + "epoch": 22.712975098296198, + "grad_norm": 0.20491497218608856, + "learning_rate": 0.0006, + "loss": 3.91833758354187, + "step": 1635 + }, + { + "epoch": 22.72695500218436, + "grad_norm": 0.1899084597826004, + "learning_rate": 0.0006, + "loss": 3.876225709915161, + "step": 1636 + }, + { + "epoch": 22.74093490607252, + "grad_norm": 0.18581682443618774, + "learning_rate": 0.0006, + "loss": 3.8667988777160645, + "step": 1637 + }, + { + "epoch": 22.75491480996068, + "grad_norm": 0.19855599105358124, + "learning_rate": 0.0006, + "loss": 3.900789260864258, + "step": 1638 + }, + { + "epoch": 22.76889471384884, + "grad_norm": 0.19951458275318146, + "learning_rate": 0.0006, + "loss": 3.8850367069244385, + "step": 1639 + }, + { + "epoch": 22.782874617737004, + "grad_norm": 0.22802744805812836, + "learning_rate": 0.0006, + "loss": 3.9181363582611084, + "step": 1640 + }, + { + "epoch": 22.796854521625164, + "grad_norm": 0.24279919266700745, + "learning_rate": 0.0006, + "loss": 3.8843770027160645, + "step": 1641 + }, + { + "epoch": 22.810834425513324, + "grad_norm": 0.23554913699626923, + "learning_rate": 0.0006, + "loss": 3.8802413940429688, + "step": 1642 + }, + { + "epoch": 22.824814329401484, + "grad_norm": 0.22343270480632782, + "learning_rate": 0.0006, + "loss": 3.8524107933044434, + "step": 1643 + }, + { + "epoch": 22.838794233289647, + "grad_norm": 0.2185724526643753, + "learning_rate": 0.0006, + "loss": 3.9117047786712646, + "step": 1644 + }, + { + "epoch": 22.852774137177807, + "grad_norm": 0.2114841341972351, + "learning_rate": 0.0006, + "loss": 3.90325927734375, + "step": 1645 + }, + { + "epoch": 22.866754041065967, + "grad_norm": 0.21072550117969513, + "learning_rate": 0.0006, + "loss": 3.8988137245178223, + "step": 1646 + }, + { + "epoch": 22.88073394495413, + "grad_norm": 0.2250078171491623, + "learning_rate": 0.0006, + "loss": 3.9201531410217285, + "step": 1647 + }, + { + "epoch": 22.89471384884229, + "grad_norm": 0.20928071439266205, + "learning_rate": 0.0006, + "loss": 3.91666316986084, + "step": 1648 + }, + { + "epoch": 22.90869375273045, + "grad_norm": 0.24096311628818512, + "learning_rate": 0.0006, + "loss": 3.8797364234924316, + "step": 1649 + }, + { + "epoch": 22.92267365661861, + "grad_norm": 0.2591194212436676, + "learning_rate": 0.0006, + "loss": 3.883273124694824, + "step": 1650 + }, + { + "epoch": 22.936653560506773, + "grad_norm": 0.27342668175697327, + "learning_rate": 0.0006, + "loss": 3.8645026683807373, + "step": 1651 + }, + { + "epoch": 22.950633464394933, + "grad_norm": 0.2448573112487793, + "learning_rate": 0.0006, + "loss": 3.9093551635742188, + "step": 1652 + }, + { + "epoch": 22.964613368283093, + "grad_norm": 0.19899503886699677, + "learning_rate": 0.0006, + "loss": 3.9001057147979736, + "step": 1653 + }, + { + "epoch": 22.978593272171253, + "grad_norm": 0.2023746520280838, + "learning_rate": 0.0006, + "loss": 3.886474370956421, + "step": 1654 + }, + { + "epoch": 22.992573176059416, + "grad_norm": 0.19894269108772278, + "learning_rate": 0.0006, + "loss": 3.9004204273223877, + "step": 1655 + }, + { + "epoch": 23.0, + "grad_norm": 0.2401709407567978, + "learning_rate": 0.0006, + "loss": 3.8665566444396973, + "step": 1656 + }, + { + "epoch": 23.0, + "eval_loss": 4.112459659576416, + "eval_runtime": 44.8325, + "eval_samples_per_second": 54.469, + "eval_steps_per_second": 3.413, + "step": 1656 + }, + { + "epoch": 23.01397990388816, + "grad_norm": 0.22662921249866486, + "learning_rate": 0.0006, + "loss": 3.853271961212158, + "step": 1657 + }, + { + "epoch": 23.027959807776323, + "grad_norm": 0.24406856298446655, + "learning_rate": 0.0006, + "loss": 3.8691890239715576, + "step": 1658 + }, + { + "epoch": 23.041939711664483, + "grad_norm": 0.2266651839017868, + "learning_rate": 0.0006, + "loss": 3.838599681854248, + "step": 1659 + }, + { + "epoch": 23.055919615552643, + "grad_norm": 0.22303511202335358, + "learning_rate": 0.0006, + "loss": 3.8678267002105713, + "step": 1660 + }, + { + "epoch": 23.069899519440803, + "grad_norm": 0.2272164225578308, + "learning_rate": 0.0006, + "loss": 3.9045681953430176, + "step": 1661 + }, + { + "epoch": 23.083879423328966, + "grad_norm": 0.25004875659942627, + "learning_rate": 0.0006, + "loss": 3.856503963470459, + "step": 1662 + }, + { + "epoch": 23.097859327217126, + "grad_norm": 0.26016247272491455, + "learning_rate": 0.0006, + "loss": 3.878587007522583, + "step": 1663 + }, + { + "epoch": 23.111839231105286, + "grad_norm": 0.28539901971817017, + "learning_rate": 0.0006, + "loss": 3.864248514175415, + "step": 1664 + }, + { + "epoch": 23.125819134993446, + "grad_norm": 0.27504822611808777, + "learning_rate": 0.0006, + "loss": 3.821448802947998, + "step": 1665 + }, + { + "epoch": 23.13979903888161, + "grad_norm": 0.238910973072052, + "learning_rate": 0.0006, + "loss": 3.8635847568511963, + "step": 1666 + }, + { + "epoch": 23.15377894276977, + "grad_norm": 0.24179652333259583, + "learning_rate": 0.0006, + "loss": 3.8339638710021973, + "step": 1667 + }, + { + "epoch": 23.16775884665793, + "grad_norm": 0.2199544757604599, + "learning_rate": 0.0006, + "loss": 3.868396759033203, + "step": 1668 + }, + { + "epoch": 23.18173875054609, + "grad_norm": 0.1965002566576004, + "learning_rate": 0.0006, + "loss": 3.8761439323425293, + "step": 1669 + }, + { + "epoch": 23.195718654434252, + "grad_norm": 0.20426614582538605, + "learning_rate": 0.0006, + "loss": 3.822899580001831, + "step": 1670 + }, + { + "epoch": 23.209698558322412, + "grad_norm": 0.2197263389825821, + "learning_rate": 0.0006, + "loss": 3.887728452682495, + "step": 1671 + }, + { + "epoch": 23.22367846221057, + "grad_norm": 0.22844573855400085, + "learning_rate": 0.0006, + "loss": 3.8550517559051514, + "step": 1672 + }, + { + "epoch": 23.23765836609873, + "grad_norm": 0.2347746044397354, + "learning_rate": 0.0006, + "loss": 3.903310537338257, + "step": 1673 + }, + { + "epoch": 23.251638269986895, + "grad_norm": 0.24167625606060028, + "learning_rate": 0.0006, + "loss": 3.8397774696350098, + "step": 1674 + }, + { + "epoch": 23.265618173875055, + "grad_norm": 0.2691650688648224, + "learning_rate": 0.0006, + "loss": 3.853254795074463, + "step": 1675 + }, + { + "epoch": 23.279598077763215, + "grad_norm": 0.29421621561050415, + "learning_rate": 0.0006, + "loss": 3.86065411567688, + "step": 1676 + }, + { + "epoch": 23.293577981651374, + "grad_norm": 0.31074345111846924, + "learning_rate": 0.0006, + "loss": 3.8716742992401123, + "step": 1677 + }, + { + "epoch": 23.307557885539538, + "grad_norm": 0.3044569194316864, + "learning_rate": 0.0006, + "loss": 3.8738951683044434, + "step": 1678 + }, + { + "epoch": 23.321537789427698, + "grad_norm": 0.30496764183044434, + "learning_rate": 0.0006, + "loss": 3.884446620941162, + "step": 1679 + }, + { + "epoch": 23.335517693315857, + "grad_norm": 0.31122756004333496, + "learning_rate": 0.0006, + "loss": 3.878495693206787, + "step": 1680 + }, + { + "epoch": 23.34949759720402, + "grad_norm": 0.32268181443214417, + "learning_rate": 0.0006, + "loss": 3.8793649673461914, + "step": 1681 + }, + { + "epoch": 23.36347750109218, + "grad_norm": 0.3297140598297119, + "learning_rate": 0.0006, + "loss": 3.87484073638916, + "step": 1682 + }, + { + "epoch": 23.37745740498034, + "grad_norm": 0.26007479429244995, + "learning_rate": 0.0006, + "loss": 3.8510947227478027, + "step": 1683 + }, + { + "epoch": 23.3914373088685, + "grad_norm": 0.2627335786819458, + "learning_rate": 0.0006, + "loss": 3.8783209323883057, + "step": 1684 + }, + { + "epoch": 23.405417212756664, + "grad_norm": 0.256452739238739, + "learning_rate": 0.0006, + "loss": 3.8594281673431396, + "step": 1685 + }, + { + "epoch": 23.419397116644824, + "grad_norm": 0.23892226815223694, + "learning_rate": 0.0006, + "loss": 3.898951292037964, + "step": 1686 + }, + { + "epoch": 23.433377020532983, + "grad_norm": 0.21625587344169617, + "learning_rate": 0.0006, + "loss": 3.8679966926574707, + "step": 1687 + }, + { + "epoch": 23.447356924421143, + "grad_norm": 0.21924619376659393, + "learning_rate": 0.0006, + "loss": 3.8774075508117676, + "step": 1688 + }, + { + "epoch": 23.461336828309307, + "grad_norm": 0.21500127017498016, + "learning_rate": 0.0006, + "loss": 3.870619297027588, + "step": 1689 + }, + { + "epoch": 23.475316732197467, + "grad_norm": 0.22580556571483612, + "learning_rate": 0.0006, + "loss": 3.887722969055176, + "step": 1690 + }, + { + "epoch": 23.489296636085626, + "grad_norm": 0.2500104308128357, + "learning_rate": 0.0006, + "loss": 3.88789963722229, + "step": 1691 + }, + { + "epoch": 23.503276539973786, + "grad_norm": 0.22462762892246246, + "learning_rate": 0.0006, + "loss": 3.863997459411621, + "step": 1692 + }, + { + "epoch": 23.51725644386195, + "grad_norm": 0.21427781879901886, + "learning_rate": 0.0006, + "loss": 3.8827033042907715, + "step": 1693 + }, + { + "epoch": 23.53123634775011, + "grad_norm": 0.22278577089309692, + "learning_rate": 0.0006, + "loss": 3.8659563064575195, + "step": 1694 + }, + { + "epoch": 23.54521625163827, + "grad_norm": 0.22801144421100616, + "learning_rate": 0.0006, + "loss": 3.9031362533569336, + "step": 1695 + }, + { + "epoch": 23.55919615552643, + "grad_norm": 0.25071898102760315, + "learning_rate": 0.0006, + "loss": 3.887746810913086, + "step": 1696 + }, + { + "epoch": 23.573176059414592, + "grad_norm": 0.2564085125923157, + "learning_rate": 0.0006, + "loss": 3.8918356895446777, + "step": 1697 + }, + { + "epoch": 23.587155963302752, + "grad_norm": 0.24603120982646942, + "learning_rate": 0.0006, + "loss": 3.850416421890259, + "step": 1698 + }, + { + "epoch": 23.601135867190912, + "grad_norm": 0.20539002120494843, + "learning_rate": 0.0006, + "loss": 3.862060070037842, + "step": 1699 + }, + { + "epoch": 23.615115771079076, + "grad_norm": 0.2022249400615692, + "learning_rate": 0.0006, + "loss": 3.899008274078369, + "step": 1700 + }, + { + "epoch": 23.629095674967235, + "grad_norm": 0.2435392290353775, + "learning_rate": 0.0006, + "loss": 3.844388961791992, + "step": 1701 + }, + { + "epoch": 23.643075578855395, + "grad_norm": 0.21146756410598755, + "learning_rate": 0.0006, + "loss": 3.8972439765930176, + "step": 1702 + }, + { + "epoch": 23.657055482743555, + "grad_norm": 0.2025400996208191, + "learning_rate": 0.0006, + "loss": 3.865253448486328, + "step": 1703 + }, + { + "epoch": 23.67103538663172, + "grad_norm": 0.21129970252513885, + "learning_rate": 0.0006, + "loss": 3.8768205642700195, + "step": 1704 + }, + { + "epoch": 23.68501529051988, + "grad_norm": 0.22982284426689148, + "learning_rate": 0.0006, + "loss": 3.8792667388916016, + "step": 1705 + }, + { + "epoch": 23.698995194408038, + "grad_norm": 0.23013733327388763, + "learning_rate": 0.0006, + "loss": 3.880897045135498, + "step": 1706 + }, + { + "epoch": 23.712975098296198, + "grad_norm": 0.2277672290802002, + "learning_rate": 0.0006, + "loss": 3.8738410472869873, + "step": 1707 + }, + { + "epoch": 23.72695500218436, + "grad_norm": 0.2343369573354721, + "learning_rate": 0.0006, + "loss": 3.8587026596069336, + "step": 1708 + }, + { + "epoch": 23.74093490607252, + "grad_norm": 0.23159530758857727, + "learning_rate": 0.0006, + "loss": 3.856306552886963, + "step": 1709 + }, + { + "epoch": 23.75491480996068, + "grad_norm": 0.19541035592556, + "learning_rate": 0.0006, + "loss": 3.8294754028320312, + "step": 1710 + }, + { + "epoch": 23.76889471384884, + "grad_norm": 0.22999322414398193, + "learning_rate": 0.0006, + "loss": 3.882676124572754, + "step": 1711 + }, + { + "epoch": 23.782874617737004, + "grad_norm": 0.23442843556404114, + "learning_rate": 0.0006, + "loss": 3.8887529373168945, + "step": 1712 + }, + { + "epoch": 23.796854521625164, + "grad_norm": 0.22914239764213562, + "learning_rate": 0.0006, + "loss": 3.867673635482788, + "step": 1713 + }, + { + "epoch": 23.810834425513324, + "grad_norm": 0.20683827996253967, + "learning_rate": 0.0006, + "loss": 3.8999581336975098, + "step": 1714 + }, + { + "epoch": 23.824814329401484, + "grad_norm": 0.19281277060508728, + "learning_rate": 0.0006, + "loss": 3.8997726440429688, + "step": 1715 + }, + { + "epoch": 23.838794233289647, + "grad_norm": 0.20058563351631165, + "learning_rate": 0.0006, + "loss": 3.8583860397338867, + "step": 1716 + }, + { + "epoch": 23.852774137177807, + "grad_norm": 0.19856606423854828, + "learning_rate": 0.0006, + "loss": 3.88948392868042, + "step": 1717 + }, + { + "epoch": 23.866754041065967, + "grad_norm": 0.2099323868751526, + "learning_rate": 0.0006, + "loss": 3.878458261489868, + "step": 1718 + }, + { + "epoch": 23.88073394495413, + "grad_norm": 0.22945016622543335, + "learning_rate": 0.0006, + "loss": 3.84116268157959, + "step": 1719 + }, + { + "epoch": 23.89471384884229, + "grad_norm": 0.22646087408065796, + "learning_rate": 0.0006, + "loss": 3.9006617069244385, + "step": 1720 + }, + { + "epoch": 23.90869375273045, + "grad_norm": 0.20282860100269318, + "learning_rate": 0.0006, + "loss": 3.8781144618988037, + "step": 1721 + }, + { + "epoch": 23.92267365661861, + "grad_norm": 0.1918555349111557, + "learning_rate": 0.0006, + "loss": 3.8560891151428223, + "step": 1722 + }, + { + "epoch": 23.936653560506773, + "grad_norm": 0.19286513328552246, + "learning_rate": 0.0006, + "loss": 3.873220920562744, + "step": 1723 + }, + { + "epoch": 23.950633464394933, + "grad_norm": 0.21071338653564453, + "learning_rate": 0.0006, + "loss": 3.9147067070007324, + "step": 1724 + }, + { + "epoch": 23.964613368283093, + "grad_norm": 0.20956715941429138, + "learning_rate": 0.0006, + "loss": 3.8762729167938232, + "step": 1725 + }, + { + "epoch": 23.978593272171253, + "grad_norm": 0.23053105175495148, + "learning_rate": 0.0006, + "loss": 3.873781681060791, + "step": 1726 + }, + { + "epoch": 23.992573176059416, + "grad_norm": 0.2719029486179352, + "learning_rate": 0.0006, + "loss": 3.862342357635498, + "step": 1727 + }, + { + "epoch": 24.0, + "grad_norm": 0.2933610677719116, + "learning_rate": 0.0006, + "loss": 3.8657689094543457, + "step": 1728 + }, + { + "epoch": 24.0, + "eval_loss": 4.0959153175354, + "eval_runtime": 44.3631, + "eval_samples_per_second": 55.046, + "eval_steps_per_second": 3.449, + "step": 1728 + }, + { + "epoch": 24.01397990388816, + "grad_norm": 0.24905365705490112, + "learning_rate": 0.0006, + "loss": 3.838136911392212, + "step": 1729 + }, + { + "epoch": 24.027959807776323, + "grad_norm": 0.25948020815849304, + "learning_rate": 0.0006, + "loss": 3.8581268787384033, + "step": 1730 + }, + { + "epoch": 24.041939711664483, + "grad_norm": 0.24965140223503113, + "learning_rate": 0.0006, + "loss": 3.8628978729248047, + "step": 1731 + }, + { + "epoch": 24.055919615552643, + "grad_norm": 0.23428823053836823, + "learning_rate": 0.0006, + "loss": 3.8188819885253906, + "step": 1732 + }, + { + "epoch": 24.069899519440803, + "grad_norm": 0.22191211581230164, + "learning_rate": 0.0006, + "loss": 3.8616039752960205, + "step": 1733 + }, + { + "epoch": 24.083879423328966, + "grad_norm": 0.20257535576820374, + "learning_rate": 0.0006, + "loss": 3.8632802963256836, + "step": 1734 + }, + { + "epoch": 24.097859327217126, + "grad_norm": 0.20385196805000305, + "learning_rate": 0.0006, + "loss": 3.885817050933838, + "step": 1735 + }, + { + "epoch": 24.111839231105286, + "grad_norm": 0.19921693205833435, + "learning_rate": 0.0006, + "loss": 3.838515043258667, + "step": 1736 + }, + { + "epoch": 24.125819134993446, + "grad_norm": 0.20221556723117828, + "learning_rate": 0.0006, + "loss": 3.8585309982299805, + "step": 1737 + }, + { + "epoch": 24.13979903888161, + "grad_norm": 0.20124691724777222, + "learning_rate": 0.0006, + "loss": 3.81656551361084, + "step": 1738 + }, + { + "epoch": 24.15377894276977, + "grad_norm": 0.1810830533504486, + "learning_rate": 0.0006, + "loss": 3.841783046722412, + "step": 1739 + }, + { + "epoch": 24.16775884665793, + "grad_norm": 0.18414196372032166, + "learning_rate": 0.0006, + "loss": 3.8614797592163086, + "step": 1740 + }, + { + "epoch": 24.18173875054609, + "grad_norm": 0.18930725753307343, + "learning_rate": 0.0006, + "loss": 3.8382534980773926, + "step": 1741 + }, + { + "epoch": 24.195718654434252, + "grad_norm": 0.19658128917217255, + "learning_rate": 0.0006, + "loss": 3.881742477416992, + "step": 1742 + }, + { + "epoch": 24.209698558322412, + "grad_norm": 0.20175589621067047, + "learning_rate": 0.0006, + "loss": 3.8760581016540527, + "step": 1743 + }, + { + "epoch": 24.22367846221057, + "grad_norm": 0.19416265189647675, + "learning_rate": 0.0006, + "loss": 3.8373687267303467, + "step": 1744 + }, + { + "epoch": 24.23765836609873, + "grad_norm": 0.20206521451473236, + "learning_rate": 0.0006, + "loss": 3.8322830200195312, + "step": 1745 + }, + { + "epoch": 24.251638269986895, + "grad_norm": 0.21797429025173187, + "learning_rate": 0.0006, + "loss": 3.849905490875244, + "step": 1746 + }, + { + "epoch": 24.265618173875055, + "grad_norm": 0.21295784413814545, + "learning_rate": 0.0006, + "loss": 3.847714900970459, + "step": 1747 + }, + { + "epoch": 24.279598077763215, + "grad_norm": 0.22023876011371613, + "learning_rate": 0.0006, + "loss": 3.8221592903137207, + "step": 1748 + }, + { + "epoch": 24.293577981651374, + "grad_norm": 0.2125576138496399, + "learning_rate": 0.0006, + "loss": 3.8070976734161377, + "step": 1749 + }, + { + "epoch": 24.307557885539538, + "grad_norm": 0.18673811852931976, + "learning_rate": 0.0006, + "loss": 3.866878032684326, + "step": 1750 + }, + { + "epoch": 24.321537789427698, + "grad_norm": 0.1972627341747284, + "learning_rate": 0.0006, + "loss": 3.846404552459717, + "step": 1751 + }, + { + "epoch": 24.335517693315857, + "grad_norm": 0.21846632659435272, + "learning_rate": 0.0006, + "loss": 3.8528640270233154, + "step": 1752 + }, + { + "epoch": 24.34949759720402, + "grad_norm": 0.22234080731868744, + "learning_rate": 0.0006, + "loss": 3.8268141746520996, + "step": 1753 + }, + { + "epoch": 24.36347750109218, + "grad_norm": 0.23002761602401733, + "learning_rate": 0.0006, + "loss": 3.832444667816162, + "step": 1754 + }, + { + "epoch": 24.37745740498034, + "grad_norm": 0.22526559233665466, + "learning_rate": 0.0006, + "loss": 3.864406108856201, + "step": 1755 + }, + { + "epoch": 24.3914373088685, + "grad_norm": 0.2290039211511612, + "learning_rate": 0.0006, + "loss": 3.8449103832244873, + "step": 1756 + }, + { + "epoch": 24.405417212756664, + "grad_norm": 0.23145617544651031, + "learning_rate": 0.0006, + "loss": 3.8183751106262207, + "step": 1757 + }, + { + "epoch": 24.419397116644824, + "grad_norm": 0.24287554621696472, + "learning_rate": 0.0006, + "loss": 3.809481382369995, + "step": 1758 + }, + { + "epoch": 24.433377020532983, + "grad_norm": 0.2672404646873474, + "learning_rate": 0.0006, + "loss": 3.877800464630127, + "step": 1759 + }, + { + "epoch": 24.447356924421143, + "grad_norm": 0.26292186975479126, + "learning_rate": 0.0006, + "loss": 3.8329367637634277, + "step": 1760 + }, + { + "epoch": 24.461336828309307, + "grad_norm": 0.26235947012901306, + "learning_rate": 0.0006, + "loss": 3.8414158821105957, + "step": 1761 + }, + { + "epoch": 24.475316732197467, + "grad_norm": 0.2638382613658905, + "learning_rate": 0.0006, + "loss": 3.849188804626465, + "step": 1762 + }, + { + "epoch": 24.489296636085626, + "grad_norm": 0.2564602196216583, + "learning_rate": 0.0006, + "loss": 3.865501880645752, + "step": 1763 + }, + { + "epoch": 24.503276539973786, + "grad_norm": 0.21352271735668182, + "learning_rate": 0.0006, + "loss": 3.87910795211792, + "step": 1764 + }, + { + "epoch": 24.51725644386195, + "grad_norm": 0.2470584511756897, + "learning_rate": 0.0006, + "loss": 3.858750343322754, + "step": 1765 + }, + { + "epoch": 24.53123634775011, + "grad_norm": 0.24907536804676056, + "learning_rate": 0.0006, + "loss": 3.8532559871673584, + "step": 1766 + }, + { + "epoch": 24.54521625163827, + "grad_norm": 0.2426205575466156, + "learning_rate": 0.0006, + "loss": 3.8659827709198, + "step": 1767 + }, + { + "epoch": 24.55919615552643, + "grad_norm": 0.23481151461601257, + "learning_rate": 0.0006, + "loss": 3.863948345184326, + "step": 1768 + }, + { + "epoch": 24.573176059414592, + "grad_norm": 0.22717779874801636, + "learning_rate": 0.0006, + "loss": 3.848527193069458, + "step": 1769 + }, + { + "epoch": 24.587155963302752, + "grad_norm": 0.2267129123210907, + "learning_rate": 0.0006, + "loss": 3.8600735664367676, + "step": 1770 + }, + { + "epoch": 24.601135867190912, + "grad_norm": 0.24967710673809052, + "learning_rate": 0.0006, + "loss": 3.84291934967041, + "step": 1771 + }, + { + "epoch": 24.615115771079076, + "grad_norm": 0.25308957695961, + "learning_rate": 0.0006, + "loss": 3.846181631088257, + "step": 1772 + }, + { + "epoch": 24.629095674967235, + "grad_norm": 0.2689298391342163, + "learning_rate": 0.0006, + "loss": 3.8572893142700195, + "step": 1773 + }, + { + "epoch": 24.643075578855395, + "grad_norm": 0.26458555459976196, + "learning_rate": 0.0006, + "loss": 3.8583621978759766, + "step": 1774 + }, + { + "epoch": 24.657055482743555, + "grad_norm": 0.24416811764240265, + "learning_rate": 0.0006, + "loss": 3.8648223876953125, + "step": 1775 + }, + { + "epoch": 24.67103538663172, + "grad_norm": 0.22218526899814606, + "learning_rate": 0.0006, + "loss": 3.839395523071289, + "step": 1776 + }, + { + "epoch": 24.68501529051988, + "grad_norm": 0.2147492915391922, + "learning_rate": 0.0006, + "loss": 3.875734567642212, + "step": 1777 + }, + { + "epoch": 24.698995194408038, + "grad_norm": 0.2346794754266739, + "learning_rate": 0.0006, + "loss": 3.854768991470337, + "step": 1778 + }, + { + "epoch": 24.712975098296198, + "grad_norm": 0.21406520903110504, + "learning_rate": 0.0006, + "loss": 3.8269104957580566, + "step": 1779 + }, + { + "epoch": 24.72695500218436, + "grad_norm": 0.20716224610805511, + "learning_rate": 0.0006, + "loss": 3.8245768547058105, + "step": 1780 + }, + { + "epoch": 24.74093490607252, + "grad_norm": 0.21445901691913605, + "learning_rate": 0.0006, + "loss": 3.8877978324890137, + "step": 1781 + }, + { + "epoch": 24.75491480996068, + "grad_norm": 0.21964985132217407, + "learning_rate": 0.0006, + "loss": 3.8602452278137207, + "step": 1782 + }, + { + "epoch": 24.76889471384884, + "grad_norm": 0.209807351231575, + "learning_rate": 0.0006, + "loss": 3.853428602218628, + "step": 1783 + }, + { + "epoch": 24.782874617737004, + "grad_norm": 0.19564911723136902, + "learning_rate": 0.0006, + "loss": 3.832275867462158, + "step": 1784 + }, + { + "epoch": 24.796854521625164, + "grad_norm": 0.21394333243370056, + "learning_rate": 0.0006, + "loss": 3.8543171882629395, + "step": 1785 + }, + { + "epoch": 24.810834425513324, + "grad_norm": 0.23156948387622833, + "learning_rate": 0.0006, + "loss": 3.8539412021636963, + "step": 1786 + }, + { + "epoch": 24.824814329401484, + "grad_norm": 0.2378678321838379, + "learning_rate": 0.0006, + "loss": 3.8409833908081055, + "step": 1787 + }, + { + "epoch": 24.838794233289647, + "grad_norm": 0.23816189169883728, + "learning_rate": 0.0006, + "loss": 3.855379581451416, + "step": 1788 + }, + { + "epoch": 24.852774137177807, + "grad_norm": 0.23109886050224304, + "learning_rate": 0.0006, + "loss": 3.8689517974853516, + "step": 1789 + }, + { + "epoch": 24.866754041065967, + "grad_norm": 0.2042883038520813, + "learning_rate": 0.0006, + "loss": 3.8730404376983643, + "step": 1790 + }, + { + "epoch": 24.88073394495413, + "grad_norm": 0.2039479911327362, + "learning_rate": 0.0006, + "loss": 3.8474984169006348, + "step": 1791 + }, + { + "epoch": 24.89471384884229, + "grad_norm": 0.213027223944664, + "learning_rate": 0.0006, + "loss": 3.8539695739746094, + "step": 1792 + }, + { + "epoch": 24.90869375273045, + "grad_norm": 0.2280654013156891, + "learning_rate": 0.0006, + "loss": 3.8633079528808594, + "step": 1793 + }, + { + "epoch": 24.92267365661861, + "grad_norm": 0.20864921808242798, + "learning_rate": 0.0006, + "loss": 3.8110368251800537, + "step": 1794 + }, + { + "epoch": 24.936653560506773, + "grad_norm": 0.23002111911773682, + "learning_rate": 0.0006, + "loss": 3.8334741592407227, + "step": 1795 + }, + { + "epoch": 24.950633464394933, + "grad_norm": 0.232331782579422, + "learning_rate": 0.0006, + "loss": 3.871887683868408, + "step": 1796 + }, + { + "epoch": 24.964613368283093, + "grad_norm": 0.24141235649585724, + "learning_rate": 0.0006, + "loss": 3.8614959716796875, + "step": 1797 + }, + { + "epoch": 24.978593272171253, + "grad_norm": 0.2545177638530731, + "learning_rate": 0.0006, + "loss": 3.8563568592071533, + "step": 1798 + }, + { + "epoch": 24.992573176059416, + "grad_norm": 0.25186386704444885, + "learning_rate": 0.0006, + "loss": 3.882166862487793, + "step": 1799 + }, + { + "epoch": 25.0, + "grad_norm": 0.260195791721344, + "learning_rate": 0.0006, + "loss": 3.884554862976074, + "step": 1800 + }, + { + "epoch": 25.0, + "eval_loss": 4.08809757232666, + "eval_runtime": 44.7947, + "eval_samples_per_second": 54.515, + "eval_steps_per_second": 3.416, + "step": 1800 + }, + { + "epoch": 25.01397990388816, + "grad_norm": 0.25396403670310974, + "learning_rate": 0.0006, + "loss": 3.8217287063598633, + "step": 1801 + }, + { + "epoch": 25.027959807776323, + "grad_norm": 0.2773195207118988, + "learning_rate": 0.0006, + "loss": 3.809542417526245, + "step": 1802 + }, + { + "epoch": 25.041939711664483, + "grad_norm": 0.3073263168334961, + "learning_rate": 0.0006, + "loss": 3.825706958770752, + "step": 1803 + }, + { + "epoch": 25.055919615552643, + "grad_norm": 0.30885398387908936, + "learning_rate": 0.0006, + "loss": 3.8081188201904297, + "step": 1804 + }, + { + "epoch": 25.069899519440803, + "grad_norm": 0.27356019616127014, + "learning_rate": 0.0006, + "loss": 3.8538241386413574, + "step": 1805 + }, + { + "epoch": 25.083879423328966, + "grad_norm": 0.22830164432525635, + "learning_rate": 0.0006, + "loss": 3.8246965408325195, + "step": 1806 + }, + { + "epoch": 25.097859327217126, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.8552842140197754, + "step": 1807 + }, + { + "epoch": 25.111839231105286, + "grad_norm": 0.21718722581863403, + "learning_rate": 0.0006, + "loss": 3.8489418029785156, + "step": 1808 + }, + { + "epoch": 25.125819134993446, + "grad_norm": 0.2480861395597458, + "learning_rate": 0.0006, + "loss": 3.821455955505371, + "step": 1809 + }, + { + "epoch": 25.13979903888161, + "grad_norm": 0.2796635627746582, + "learning_rate": 0.0006, + "loss": 3.8202435970306396, + "step": 1810 + }, + { + "epoch": 25.15377894276977, + "grad_norm": 0.2829958200454712, + "learning_rate": 0.0006, + "loss": 3.8293306827545166, + "step": 1811 + }, + { + "epoch": 25.16775884665793, + "grad_norm": 0.2510125935077667, + "learning_rate": 0.0006, + "loss": 3.8342957496643066, + "step": 1812 + }, + { + "epoch": 25.18173875054609, + "grad_norm": 0.22923722863197327, + "learning_rate": 0.0006, + "loss": 3.8448352813720703, + "step": 1813 + }, + { + "epoch": 25.195718654434252, + "grad_norm": 0.21439228951931, + "learning_rate": 0.0006, + "loss": 3.8343517780303955, + "step": 1814 + }, + { + "epoch": 25.209698558322412, + "grad_norm": 0.1965373307466507, + "learning_rate": 0.0006, + "loss": 3.8163528442382812, + "step": 1815 + }, + { + "epoch": 25.22367846221057, + "grad_norm": 0.20121058821678162, + "learning_rate": 0.0006, + "loss": 3.8007280826568604, + "step": 1816 + }, + { + "epoch": 25.23765836609873, + "grad_norm": 0.21383272111415863, + "learning_rate": 0.0006, + "loss": 3.8200385570526123, + "step": 1817 + }, + { + "epoch": 25.251638269986895, + "grad_norm": 0.2066601663827896, + "learning_rate": 0.0006, + "loss": 3.8333921432495117, + "step": 1818 + }, + { + "epoch": 25.265618173875055, + "grad_norm": 0.2104874551296234, + "learning_rate": 0.0006, + "loss": 3.838012218475342, + "step": 1819 + }, + { + "epoch": 25.279598077763215, + "grad_norm": 0.19733119010925293, + "learning_rate": 0.0006, + "loss": 3.835139274597168, + "step": 1820 + }, + { + "epoch": 25.293577981651374, + "grad_norm": 0.2119498997926712, + "learning_rate": 0.0006, + "loss": 3.8099722862243652, + "step": 1821 + }, + { + "epoch": 25.307557885539538, + "grad_norm": 0.21863529086112976, + "learning_rate": 0.0006, + "loss": 3.7801573276519775, + "step": 1822 + }, + { + "epoch": 25.321537789427698, + "grad_norm": 0.2113322764635086, + "learning_rate": 0.0006, + "loss": 3.809903621673584, + "step": 1823 + }, + { + "epoch": 25.335517693315857, + "grad_norm": 0.21594023704528809, + "learning_rate": 0.0006, + "loss": 3.8485071659088135, + "step": 1824 + }, + { + "epoch": 25.34949759720402, + "grad_norm": 0.21475964784622192, + "learning_rate": 0.0006, + "loss": 3.7894768714904785, + "step": 1825 + }, + { + "epoch": 25.36347750109218, + "grad_norm": 0.21174900233745575, + "learning_rate": 0.0006, + "loss": 3.821711540222168, + "step": 1826 + }, + { + "epoch": 25.37745740498034, + "grad_norm": 0.2065584659576416, + "learning_rate": 0.0006, + "loss": 3.8439841270446777, + "step": 1827 + }, + { + "epoch": 25.3914373088685, + "grad_norm": 0.19157007336616516, + "learning_rate": 0.0006, + "loss": 3.864245891571045, + "step": 1828 + }, + { + "epoch": 25.405417212756664, + "grad_norm": 0.19983816146850586, + "learning_rate": 0.0006, + "loss": 3.8317415714263916, + "step": 1829 + }, + { + "epoch": 25.419397116644824, + "grad_norm": 0.20506152510643005, + "learning_rate": 0.0006, + "loss": 3.8009896278381348, + "step": 1830 + }, + { + "epoch": 25.433377020532983, + "grad_norm": 0.19056960940361023, + "learning_rate": 0.0006, + "loss": 3.8383498191833496, + "step": 1831 + }, + { + "epoch": 25.447356924421143, + "grad_norm": 0.19262190163135529, + "learning_rate": 0.0006, + "loss": 3.838902235031128, + "step": 1832 + }, + { + "epoch": 25.461336828309307, + "grad_norm": 0.19859355688095093, + "learning_rate": 0.0006, + "loss": 3.82452392578125, + "step": 1833 + }, + { + "epoch": 25.475316732197467, + "grad_norm": 0.2144225388765335, + "learning_rate": 0.0006, + "loss": 3.8110032081604004, + "step": 1834 + }, + { + "epoch": 25.489296636085626, + "grad_norm": 0.20566298067569733, + "learning_rate": 0.0006, + "loss": 3.8662471771240234, + "step": 1835 + }, + { + "epoch": 25.503276539973786, + "grad_norm": 0.2071852684020996, + "learning_rate": 0.0006, + "loss": 3.821134090423584, + "step": 1836 + }, + { + "epoch": 25.51725644386195, + "grad_norm": 0.2095036506652832, + "learning_rate": 0.0006, + "loss": 3.824092388153076, + "step": 1837 + }, + { + "epoch": 25.53123634775011, + "grad_norm": 0.20136208832263947, + "learning_rate": 0.0006, + "loss": 3.8669862747192383, + "step": 1838 + }, + { + "epoch": 25.54521625163827, + "grad_norm": 0.1983811855316162, + "learning_rate": 0.0006, + "loss": 3.8120107650756836, + "step": 1839 + }, + { + "epoch": 25.55919615552643, + "grad_norm": 0.22859714925289154, + "learning_rate": 0.0006, + "loss": 3.8519299030303955, + "step": 1840 + }, + { + "epoch": 25.573176059414592, + "grad_norm": 0.23672667145729065, + "learning_rate": 0.0006, + "loss": 3.8245458602905273, + "step": 1841 + }, + { + "epoch": 25.587155963302752, + "grad_norm": 0.22698380053043365, + "learning_rate": 0.0006, + "loss": 3.8406805992126465, + "step": 1842 + }, + { + "epoch": 25.601135867190912, + "grad_norm": 0.25684037804603577, + "learning_rate": 0.0006, + "loss": 3.8584351539611816, + "step": 1843 + }, + { + "epoch": 25.615115771079076, + "grad_norm": 0.28180673718452454, + "learning_rate": 0.0006, + "loss": 3.8085098266601562, + "step": 1844 + }, + { + "epoch": 25.629095674967235, + "grad_norm": 0.2814631462097168, + "learning_rate": 0.0006, + "loss": 3.845083236694336, + "step": 1845 + }, + { + "epoch": 25.643075578855395, + "grad_norm": 0.23630981147289276, + "learning_rate": 0.0006, + "loss": 3.847749710083008, + "step": 1846 + }, + { + "epoch": 25.657055482743555, + "grad_norm": 0.22463662922382355, + "learning_rate": 0.0006, + "loss": 3.8172082901000977, + "step": 1847 + }, + { + "epoch": 25.67103538663172, + "grad_norm": 0.26551681756973267, + "learning_rate": 0.0006, + "loss": 3.8205654621124268, + "step": 1848 + }, + { + "epoch": 25.68501529051988, + "grad_norm": 0.27824243903160095, + "learning_rate": 0.0006, + "loss": 3.846076011657715, + "step": 1849 + }, + { + "epoch": 25.698995194408038, + "grad_norm": 0.266998291015625, + "learning_rate": 0.0006, + "loss": 3.8543574810028076, + "step": 1850 + }, + { + "epoch": 25.712975098296198, + "grad_norm": 0.22980351746082306, + "learning_rate": 0.0006, + "loss": 3.855511426925659, + "step": 1851 + }, + { + "epoch": 25.72695500218436, + "grad_norm": 0.23482872545719147, + "learning_rate": 0.0006, + "loss": 3.8687663078308105, + "step": 1852 + }, + { + "epoch": 25.74093490607252, + "grad_norm": 0.21119585633277893, + "learning_rate": 0.0006, + "loss": 3.8147101402282715, + "step": 1853 + }, + { + "epoch": 25.75491480996068, + "grad_norm": 0.21200446784496307, + "learning_rate": 0.0006, + "loss": 3.858473777770996, + "step": 1854 + }, + { + "epoch": 25.76889471384884, + "grad_norm": 0.20497842133045197, + "learning_rate": 0.0006, + "loss": 3.8545501232147217, + "step": 1855 + }, + { + "epoch": 25.782874617737004, + "grad_norm": 0.19328081607818604, + "learning_rate": 0.0006, + "loss": 3.7941341400146484, + "step": 1856 + }, + { + "epoch": 25.796854521625164, + "grad_norm": 0.2191578894853592, + "learning_rate": 0.0006, + "loss": 3.8408665657043457, + "step": 1857 + }, + { + "epoch": 25.810834425513324, + "grad_norm": 0.2548826038837433, + "learning_rate": 0.0006, + "loss": 3.854130744934082, + "step": 1858 + }, + { + "epoch": 25.824814329401484, + "grad_norm": 0.2290351390838623, + "learning_rate": 0.0006, + "loss": 3.8680176734924316, + "step": 1859 + }, + { + "epoch": 25.838794233289647, + "grad_norm": 0.20760944485664368, + "learning_rate": 0.0006, + "loss": 3.83731746673584, + "step": 1860 + }, + { + "epoch": 25.852774137177807, + "grad_norm": 0.19587582349777222, + "learning_rate": 0.0006, + "loss": 3.8173444271087646, + "step": 1861 + }, + { + "epoch": 25.866754041065967, + "grad_norm": 0.20762693881988525, + "learning_rate": 0.0006, + "loss": 3.8479790687561035, + "step": 1862 + }, + { + "epoch": 25.88073394495413, + "grad_norm": 0.20633186399936676, + "learning_rate": 0.0006, + "loss": 3.852285385131836, + "step": 1863 + }, + { + "epoch": 25.89471384884229, + "grad_norm": 0.21484960615634918, + "learning_rate": 0.0006, + "loss": 3.832592725753784, + "step": 1864 + }, + { + "epoch": 25.90869375273045, + "grad_norm": 0.19569595158100128, + "learning_rate": 0.0006, + "loss": 3.838071584701538, + "step": 1865 + }, + { + "epoch": 25.92267365661861, + "grad_norm": 0.19532904028892517, + "learning_rate": 0.0006, + "loss": 3.854252815246582, + "step": 1866 + }, + { + "epoch": 25.936653560506773, + "grad_norm": 0.1909649819135666, + "learning_rate": 0.0006, + "loss": 3.8444578647613525, + "step": 1867 + }, + { + "epoch": 25.950633464394933, + "grad_norm": 0.17476283013820648, + "learning_rate": 0.0006, + "loss": 3.836519241333008, + "step": 1868 + }, + { + "epoch": 25.964613368283093, + "grad_norm": 0.1895206719636917, + "learning_rate": 0.0006, + "loss": 3.8282582759857178, + "step": 1869 + }, + { + "epoch": 25.978593272171253, + "grad_norm": 0.20038437843322754, + "learning_rate": 0.0006, + "loss": 3.80542254447937, + "step": 1870 + }, + { + "epoch": 25.992573176059416, + "grad_norm": 0.20728608965873718, + "learning_rate": 0.0006, + "loss": 3.8584811687469482, + "step": 1871 + }, + { + "epoch": 26.0, + "grad_norm": 0.22110891342163086, + "learning_rate": 0.0006, + "loss": 3.8020238876342773, + "step": 1872 + }, + { + "epoch": 26.0, + "eval_loss": 4.072164058685303, + "eval_runtime": 44.9089, + "eval_samples_per_second": 54.377, + "eval_steps_per_second": 3.407, + "step": 1872 + }, + { + "epoch": 26.01397990388816, + "grad_norm": 0.2222519814968109, + "learning_rate": 0.0006, + "loss": 3.8309168815612793, + "step": 1873 + }, + { + "epoch": 26.027959807776323, + "grad_norm": 0.2637656033039093, + "learning_rate": 0.0006, + "loss": 3.8025143146514893, + "step": 1874 + }, + { + "epoch": 26.041939711664483, + "grad_norm": 0.2665974795818329, + "learning_rate": 0.0006, + "loss": 3.8244004249572754, + "step": 1875 + }, + { + "epoch": 26.055919615552643, + "grad_norm": 0.22475720942020416, + "learning_rate": 0.0006, + "loss": 3.80039119720459, + "step": 1876 + }, + { + "epoch": 26.069899519440803, + "grad_norm": 0.22994336485862732, + "learning_rate": 0.0006, + "loss": 3.7700726985931396, + "step": 1877 + }, + { + "epoch": 26.083879423328966, + "grad_norm": 0.24214622378349304, + "learning_rate": 0.0006, + "loss": 3.818725109100342, + "step": 1878 + }, + { + "epoch": 26.097859327217126, + "grad_norm": 0.22701293230056763, + "learning_rate": 0.0006, + "loss": 3.833803176879883, + "step": 1879 + }, + { + "epoch": 26.111839231105286, + "grad_norm": 0.21452295780181885, + "learning_rate": 0.0006, + "loss": 3.8391427993774414, + "step": 1880 + }, + { + "epoch": 26.125819134993446, + "grad_norm": 0.20179636776447296, + "learning_rate": 0.0006, + "loss": 3.802957057952881, + "step": 1881 + }, + { + "epoch": 26.13979903888161, + "grad_norm": 0.2087477445602417, + "learning_rate": 0.0006, + "loss": 3.8339905738830566, + "step": 1882 + }, + { + "epoch": 26.15377894276977, + "grad_norm": 0.23583556711673737, + "learning_rate": 0.0006, + "loss": 3.802438259124756, + "step": 1883 + }, + { + "epoch": 26.16775884665793, + "grad_norm": 0.2504311501979828, + "learning_rate": 0.0006, + "loss": 3.80244517326355, + "step": 1884 + }, + { + "epoch": 26.18173875054609, + "grad_norm": 0.24903984367847443, + "learning_rate": 0.0006, + "loss": 3.788865566253662, + "step": 1885 + }, + { + "epoch": 26.195718654434252, + "grad_norm": 0.2707931101322174, + "learning_rate": 0.0006, + "loss": 3.800051212310791, + "step": 1886 + }, + { + "epoch": 26.209698558322412, + "grad_norm": 0.24902892112731934, + "learning_rate": 0.0006, + "loss": 3.8068337440490723, + "step": 1887 + }, + { + "epoch": 26.22367846221057, + "grad_norm": 0.22655536234378815, + "learning_rate": 0.0006, + "loss": 3.779439926147461, + "step": 1888 + }, + { + "epoch": 26.23765836609873, + "grad_norm": 0.24797996878623962, + "learning_rate": 0.0006, + "loss": 3.822831153869629, + "step": 1889 + }, + { + "epoch": 26.251638269986895, + "grad_norm": 0.2821420431137085, + "learning_rate": 0.0006, + "loss": 3.807954788208008, + "step": 1890 + }, + { + "epoch": 26.265618173875055, + "grad_norm": 0.30392691493034363, + "learning_rate": 0.0006, + "loss": 3.776951789855957, + "step": 1891 + }, + { + "epoch": 26.279598077763215, + "grad_norm": 0.32641273736953735, + "learning_rate": 0.0006, + "loss": 3.8216311931610107, + "step": 1892 + }, + { + "epoch": 26.293577981651374, + "grad_norm": 0.32674387097358704, + "learning_rate": 0.0006, + "loss": 3.815596580505371, + "step": 1893 + }, + { + "epoch": 26.307557885539538, + "grad_norm": 0.29137250781059265, + "learning_rate": 0.0006, + "loss": 3.8170812129974365, + "step": 1894 + }, + { + "epoch": 26.321537789427698, + "grad_norm": 0.24291734397411346, + "learning_rate": 0.0006, + "loss": 3.810352087020874, + "step": 1895 + }, + { + "epoch": 26.335517693315857, + "grad_norm": 0.24023209512233734, + "learning_rate": 0.0006, + "loss": 3.8075947761535645, + "step": 1896 + }, + { + "epoch": 26.34949759720402, + "grad_norm": 0.24334804713726044, + "learning_rate": 0.0006, + "loss": 3.831556797027588, + "step": 1897 + }, + { + "epoch": 26.36347750109218, + "grad_norm": 0.2109663337469101, + "learning_rate": 0.0006, + "loss": 3.838347911834717, + "step": 1898 + }, + { + "epoch": 26.37745740498034, + "grad_norm": 0.19668002426624298, + "learning_rate": 0.0006, + "loss": 3.774737596511841, + "step": 1899 + }, + { + "epoch": 26.3914373088685, + "grad_norm": 0.21329134702682495, + "learning_rate": 0.0006, + "loss": 3.8237252235412598, + "step": 1900 + }, + { + "epoch": 26.405417212756664, + "grad_norm": 0.20381781458854675, + "learning_rate": 0.0006, + "loss": 3.802569627761841, + "step": 1901 + }, + { + "epoch": 26.419397116644824, + "grad_norm": 0.19083160161972046, + "learning_rate": 0.0006, + "loss": 3.8301358222961426, + "step": 1902 + }, + { + "epoch": 26.433377020532983, + "grad_norm": 0.20012904703617096, + "learning_rate": 0.0006, + "loss": 3.7966408729553223, + "step": 1903 + }, + { + "epoch": 26.447356924421143, + "grad_norm": 0.19483457505702972, + "learning_rate": 0.0006, + "loss": 3.8431968688964844, + "step": 1904 + }, + { + "epoch": 26.461336828309307, + "grad_norm": 0.19946353137493134, + "learning_rate": 0.0006, + "loss": 3.8023815155029297, + "step": 1905 + }, + { + "epoch": 26.475316732197467, + "grad_norm": 0.1984100341796875, + "learning_rate": 0.0006, + "loss": 3.8283071517944336, + "step": 1906 + }, + { + "epoch": 26.489296636085626, + "grad_norm": 0.2148299664258957, + "learning_rate": 0.0006, + "loss": 3.8377504348754883, + "step": 1907 + }, + { + "epoch": 26.503276539973786, + "grad_norm": 0.22139184176921844, + "learning_rate": 0.0006, + "loss": 3.823051691055298, + "step": 1908 + }, + { + "epoch": 26.51725644386195, + "grad_norm": 0.18289034068584442, + "learning_rate": 0.0006, + "loss": 3.8027071952819824, + "step": 1909 + }, + { + "epoch": 26.53123634775011, + "grad_norm": 0.1816026121377945, + "learning_rate": 0.0006, + "loss": 3.823786735534668, + "step": 1910 + }, + { + "epoch": 26.54521625163827, + "grad_norm": 0.19074322283267975, + "learning_rate": 0.0006, + "loss": 3.813331127166748, + "step": 1911 + }, + { + "epoch": 26.55919615552643, + "grad_norm": 0.20301467180252075, + "learning_rate": 0.0006, + "loss": 3.8218350410461426, + "step": 1912 + }, + { + "epoch": 26.573176059414592, + "grad_norm": 0.25266432762145996, + "learning_rate": 0.0006, + "loss": 3.8455142974853516, + "step": 1913 + }, + { + "epoch": 26.587155963302752, + "grad_norm": 0.25804755091667175, + "learning_rate": 0.0006, + "loss": 3.799227476119995, + "step": 1914 + }, + { + "epoch": 26.601135867190912, + "grad_norm": 0.2555372416973114, + "learning_rate": 0.0006, + "loss": 3.8125686645507812, + "step": 1915 + }, + { + "epoch": 26.615115771079076, + "grad_norm": 0.2266194075345993, + "learning_rate": 0.0006, + "loss": 3.858363628387451, + "step": 1916 + }, + { + "epoch": 26.629095674967235, + "grad_norm": 0.1933048665523529, + "learning_rate": 0.0006, + "loss": 3.8078083992004395, + "step": 1917 + }, + { + "epoch": 26.643075578855395, + "grad_norm": 0.19936731457710266, + "learning_rate": 0.0006, + "loss": 3.81748628616333, + "step": 1918 + }, + { + "epoch": 26.657055482743555, + "grad_norm": 0.22041693329811096, + "learning_rate": 0.0006, + "loss": 3.833272933959961, + "step": 1919 + }, + { + "epoch": 26.67103538663172, + "grad_norm": 0.20679150521755219, + "learning_rate": 0.0006, + "loss": 3.8127288818359375, + "step": 1920 + }, + { + "epoch": 26.68501529051988, + "grad_norm": 0.21545100212097168, + "learning_rate": 0.0006, + "loss": 3.816051483154297, + "step": 1921 + }, + { + "epoch": 26.698995194408038, + "grad_norm": 0.23554518818855286, + "learning_rate": 0.0006, + "loss": 3.8180980682373047, + "step": 1922 + }, + { + "epoch": 26.712975098296198, + "grad_norm": 0.21942466497421265, + "learning_rate": 0.0006, + "loss": 3.803107976913452, + "step": 1923 + }, + { + "epoch": 26.72695500218436, + "grad_norm": 0.22335010766983032, + "learning_rate": 0.0006, + "loss": 3.847890853881836, + "step": 1924 + }, + { + "epoch": 26.74093490607252, + "grad_norm": 0.24731314182281494, + "learning_rate": 0.0006, + "loss": 3.7945008277893066, + "step": 1925 + }, + { + "epoch": 26.75491480996068, + "grad_norm": 0.2804568111896515, + "learning_rate": 0.0006, + "loss": 3.8400068283081055, + "step": 1926 + }, + { + "epoch": 26.76889471384884, + "grad_norm": 0.28787222504615784, + "learning_rate": 0.0006, + "loss": 3.839771270751953, + "step": 1927 + }, + { + "epoch": 26.782874617737004, + "grad_norm": 0.2949632406234741, + "learning_rate": 0.0006, + "loss": 3.8225326538085938, + "step": 1928 + }, + { + "epoch": 26.796854521625164, + "grad_norm": 0.31546032428741455, + "learning_rate": 0.0006, + "loss": 3.8182597160339355, + "step": 1929 + }, + { + "epoch": 26.810834425513324, + "grad_norm": 0.2956962585449219, + "learning_rate": 0.0006, + "loss": 3.8315680027008057, + "step": 1930 + }, + { + "epoch": 26.824814329401484, + "grad_norm": 0.26943835616111755, + "learning_rate": 0.0006, + "loss": 3.787720203399658, + "step": 1931 + }, + { + "epoch": 26.838794233289647, + "grad_norm": 0.24272359907627106, + "learning_rate": 0.0006, + "loss": 3.7973692417144775, + "step": 1932 + }, + { + "epoch": 26.852774137177807, + "grad_norm": 0.20553994178771973, + "learning_rate": 0.0006, + "loss": 3.8241593837738037, + "step": 1933 + }, + { + "epoch": 26.866754041065967, + "grad_norm": 0.21927912533283234, + "learning_rate": 0.0006, + "loss": 3.8608899116516113, + "step": 1934 + }, + { + "epoch": 26.88073394495413, + "grad_norm": 0.22878016531467438, + "learning_rate": 0.0006, + "loss": 3.8341972827911377, + "step": 1935 + }, + { + "epoch": 26.89471384884229, + "grad_norm": 0.2085554301738739, + "learning_rate": 0.0006, + "loss": 3.8261351585388184, + "step": 1936 + }, + { + "epoch": 26.90869375273045, + "grad_norm": 0.21259072422981262, + "learning_rate": 0.0006, + "loss": 3.862056255340576, + "step": 1937 + }, + { + "epoch": 26.92267365661861, + "grad_norm": 0.21354122459888458, + "learning_rate": 0.0006, + "loss": 3.80879545211792, + "step": 1938 + }, + { + "epoch": 26.936653560506773, + "grad_norm": 0.2350253462791443, + "learning_rate": 0.0006, + "loss": 3.817826271057129, + "step": 1939 + }, + { + "epoch": 26.950633464394933, + "grad_norm": 0.23833836615085602, + "learning_rate": 0.0006, + "loss": 3.8220884799957275, + "step": 1940 + }, + { + "epoch": 26.964613368283093, + "grad_norm": 0.2368069440126419, + "learning_rate": 0.0006, + "loss": 3.843264579772949, + "step": 1941 + }, + { + "epoch": 26.978593272171253, + "grad_norm": 0.22663559019565582, + "learning_rate": 0.0006, + "loss": 3.81339430809021, + "step": 1942 + }, + { + "epoch": 26.992573176059416, + "grad_norm": 0.2151402235031128, + "learning_rate": 0.0006, + "loss": 3.8262834548950195, + "step": 1943 + }, + { + "epoch": 27.0, + "grad_norm": 0.24320295453071594, + "learning_rate": 0.0006, + "loss": 3.858567237854004, + "step": 1944 + }, + { + "epoch": 27.0, + "eval_loss": 4.0613322257995605, + "eval_runtime": 44.766, + "eval_samples_per_second": 54.55, + "eval_steps_per_second": 3.418, + "step": 1944 + }, + { + "epoch": 27.01397990388816, + "grad_norm": 0.21188032627105713, + "learning_rate": 0.0006, + "loss": 3.7631278038024902, + "step": 1945 + }, + { + "epoch": 27.027959807776323, + "grad_norm": 0.22298137843608856, + "learning_rate": 0.0006, + "loss": 3.784029245376587, + "step": 1946 + }, + { + "epoch": 27.041939711664483, + "grad_norm": 0.26530158519744873, + "learning_rate": 0.0006, + "loss": 3.795860767364502, + "step": 1947 + }, + { + "epoch": 27.055919615552643, + "grad_norm": 0.24476729333400726, + "learning_rate": 0.0006, + "loss": 3.77512264251709, + "step": 1948 + }, + { + "epoch": 27.069899519440803, + "grad_norm": 0.1934421956539154, + "learning_rate": 0.0006, + "loss": 3.7797446250915527, + "step": 1949 + }, + { + "epoch": 27.083879423328966, + "grad_norm": 0.19777092337608337, + "learning_rate": 0.0006, + "loss": 3.798935890197754, + "step": 1950 + }, + { + "epoch": 27.097859327217126, + "grad_norm": 0.2071693390607834, + "learning_rate": 0.0006, + "loss": 3.763094425201416, + "step": 1951 + }, + { + "epoch": 27.111839231105286, + "grad_norm": 0.18394742906093597, + "learning_rate": 0.0006, + "loss": 3.7892322540283203, + "step": 1952 + }, + { + "epoch": 27.125819134993446, + "grad_norm": 0.17878273129463196, + "learning_rate": 0.0006, + "loss": 3.787968158721924, + "step": 1953 + }, + { + "epoch": 27.13979903888161, + "grad_norm": 0.18792171776294708, + "learning_rate": 0.0006, + "loss": 3.7719640731811523, + "step": 1954 + }, + { + "epoch": 27.15377894276977, + "grad_norm": 0.18718759715557098, + "learning_rate": 0.0006, + "loss": 3.791835308074951, + "step": 1955 + }, + { + "epoch": 27.16775884665793, + "grad_norm": 0.18716055154800415, + "learning_rate": 0.0006, + "loss": 3.7490220069885254, + "step": 1956 + }, + { + "epoch": 27.18173875054609, + "grad_norm": 0.18429182469844818, + "learning_rate": 0.0006, + "loss": 3.8020081520080566, + "step": 1957 + }, + { + "epoch": 27.195718654434252, + "grad_norm": 0.18571704626083374, + "learning_rate": 0.0006, + "loss": 3.8152215480804443, + "step": 1958 + }, + { + "epoch": 27.209698558322412, + "grad_norm": 0.1788843423128128, + "learning_rate": 0.0006, + "loss": 3.8173317909240723, + "step": 1959 + }, + { + "epoch": 27.22367846221057, + "grad_norm": 0.20459426939487457, + "learning_rate": 0.0006, + "loss": 3.7760040760040283, + "step": 1960 + }, + { + "epoch": 27.23765836609873, + "grad_norm": 0.22360935807228088, + "learning_rate": 0.0006, + "loss": 3.8140203952789307, + "step": 1961 + }, + { + "epoch": 27.251638269986895, + "grad_norm": 0.2062767595052719, + "learning_rate": 0.0006, + "loss": 3.792001247406006, + "step": 1962 + }, + { + "epoch": 27.265618173875055, + "grad_norm": 0.20628073811531067, + "learning_rate": 0.0006, + "loss": 3.7873167991638184, + "step": 1963 + }, + { + "epoch": 27.279598077763215, + "grad_norm": 0.19888348877429962, + "learning_rate": 0.0006, + "loss": 3.7903614044189453, + "step": 1964 + }, + { + "epoch": 27.293577981651374, + "grad_norm": 0.22033332288265228, + "learning_rate": 0.0006, + "loss": 3.802497148513794, + "step": 1965 + }, + { + "epoch": 27.307557885539538, + "grad_norm": 0.23476941883563995, + "learning_rate": 0.0006, + "loss": 3.794090986251831, + "step": 1966 + }, + { + "epoch": 27.321537789427698, + "grad_norm": 0.19639968872070312, + "learning_rate": 0.0006, + "loss": 3.831794023513794, + "step": 1967 + }, + { + "epoch": 27.335517693315857, + "grad_norm": 0.18169641494750977, + "learning_rate": 0.0006, + "loss": 3.7687768936157227, + "step": 1968 + }, + { + "epoch": 27.34949759720402, + "grad_norm": 0.17781762778759003, + "learning_rate": 0.0006, + "loss": 3.7868471145629883, + "step": 1969 + }, + { + "epoch": 27.36347750109218, + "grad_norm": 0.18990416824817657, + "learning_rate": 0.0006, + "loss": 3.8340392112731934, + "step": 1970 + }, + { + "epoch": 27.37745740498034, + "grad_norm": 0.2031438797712326, + "learning_rate": 0.0006, + "loss": 3.804513454437256, + "step": 1971 + }, + { + "epoch": 27.3914373088685, + "grad_norm": 0.21233421564102173, + "learning_rate": 0.0006, + "loss": 3.7908449172973633, + "step": 1972 + }, + { + "epoch": 27.405417212756664, + "grad_norm": 0.22480927407741547, + "learning_rate": 0.0006, + "loss": 3.7894086837768555, + "step": 1973 + }, + { + "epoch": 27.419397116644824, + "grad_norm": 0.22713422775268555, + "learning_rate": 0.0006, + "loss": 3.826005458831787, + "step": 1974 + }, + { + "epoch": 27.433377020532983, + "grad_norm": 0.21637366712093353, + "learning_rate": 0.0006, + "loss": 3.8232319355010986, + "step": 1975 + }, + { + "epoch": 27.447356924421143, + "grad_norm": 0.24092449247837067, + "learning_rate": 0.0006, + "loss": 3.813279628753662, + "step": 1976 + }, + { + "epoch": 27.461336828309307, + "grad_norm": 0.21143047511577606, + "learning_rate": 0.0006, + "loss": 3.811586856842041, + "step": 1977 + }, + { + "epoch": 27.475316732197467, + "grad_norm": 0.21049432456493378, + "learning_rate": 0.0006, + "loss": 3.8227009773254395, + "step": 1978 + }, + { + "epoch": 27.489296636085626, + "grad_norm": 0.21853850781917572, + "learning_rate": 0.0006, + "loss": 3.7992515563964844, + "step": 1979 + }, + { + "epoch": 27.503276539973786, + "grad_norm": 0.22405001521110535, + "learning_rate": 0.0006, + "loss": 3.8311715126037598, + "step": 1980 + }, + { + "epoch": 27.51725644386195, + "grad_norm": 0.24085809290409088, + "learning_rate": 0.0006, + "loss": 3.801962375640869, + "step": 1981 + }, + { + "epoch": 27.53123634775011, + "grad_norm": 0.2612341642379761, + "learning_rate": 0.0006, + "loss": 3.7867887020111084, + "step": 1982 + }, + { + "epoch": 27.54521625163827, + "grad_norm": 0.25136062502861023, + "learning_rate": 0.0006, + "loss": 3.8302273750305176, + "step": 1983 + }, + { + "epoch": 27.55919615552643, + "grad_norm": 0.2485426515340805, + "learning_rate": 0.0006, + "loss": 3.770616054534912, + "step": 1984 + }, + { + "epoch": 27.573176059414592, + "grad_norm": 0.28883907198905945, + "learning_rate": 0.0006, + "loss": 3.8152146339416504, + "step": 1985 + }, + { + "epoch": 27.587155963302752, + "grad_norm": 0.28177911043167114, + "learning_rate": 0.0006, + "loss": 3.7966861724853516, + "step": 1986 + }, + { + "epoch": 27.601135867190912, + "grad_norm": 0.2573191523551941, + "learning_rate": 0.0006, + "loss": 3.820788621902466, + "step": 1987 + }, + { + "epoch": 27.615115771079076, + "grad_norm": 0.22225657105445862, + "learning_rate": 0.0006, + "loss": 3.778477191925049, + "step": 1988 + }, + { + "epoch": 27.629095674967235, + "grad_norm": 0.20118530094623566, + "learning_rate": 0.0006, + "loss": 3.8416988849639893, + "step": 1989 + }, + { + "epoch": 27.643075578855395, + "grad_norm": 0.21168658137321472, + "learning_rate": 0.0006, + "loss": 3.798020839691162, + "step": 1990 + }, + { + "epoch": 27.657055482743555, + "grad_norm": 0.2460680454969406, + "learning_rate": 0.0006, + "loss": 3.805917263031006, + "step": 1991 + }, + { + "epoch": 27.67103538663172, + "grad_norm": 0.2700909674167633, + "learning_rate": 0.0006, + "loss": 3.8042726516723633, + "step": 1992 + }, + { + "epoch": 27.68501529051988, + "grad_norm": 0.25814294815063477, + "learning_rate": 0.0006, + "loss": 3.799159049987793, + "step": 1993 + }, + { + "epoch": 27.698995194408038, + "grad_norm": 0.2231985628604889, + "learning_rate": 0.0006, + "loss": 3.778750419616699, + "step": 1994 + }, + { + "epoch": 27.712975098296198, + "grad_norm": 0.20807890594005585, + "learning_rate": 0.0006, + "loss": 3.787919044494629, + "step": 1995 + }, + { + "epoch": 27.72695500218436, + "grad_norm": 0.19537150859832764, + "learning_rate": 0.0006, + "loss": 3.7917299270629883, + "step": 1996 + }, + { + "epoch": 27.74093490607252, + "grad_norm": 0.21057647466659546, + "learning_rate": 0.0006, + "loss": 3.8096866607666016, + "step": 1997 + }, + { + "epoch": 27.75491480996068, + "grad_norm": 0.18983247876167297, + "learning_rate": 0.0006, + "loss": 3.7881717681884766, + "step": 1998 + }, + { + "epoch": 27.76889471384884, + "grad_norm": 0.18701069056987762, + "learning_rate": 0.0006, + "loss": 3.810790538787842, + "step": 1999 + }, + { + "epoch": 27.782874617737004, + "grad_norm": 0.1920134723186493, + "learning_rate": 0.0006, + "loss": 3.8161087036132812, + "step": 2000 + }, + { + "epoch": 27.796854521625164, + "grad_norm": 0.20413947105407715, + "learning_rate": 0.0006, + "loss": 3.790499687194824, + "step": 2001 + }, + { + "epoch": 27.810834425513324, + "grad_norm": 0.1920027732849121, + "learning_rate": 0.0006, + "loss": 3.8194262981414795, + "step": 2002 + }, + { + "epoch": 27.824814329401484, + "grad_norm": 0.18630221486091614, + "learning_rate": 0.0006, + "loss": 3.8267152309417725, + "step": 2003 + }, + { + "epoch": 27.838794233289647, + "grad_norm": 0.1787925660610199, + "learning_rate": 0.0006, + "loss": 3.8147521018981934, + "step": 2004 + }, + { + "epoch": 27.852774137177807, + "grad_norm": 0.19187216460704803, + "learning_rate": 0.0006, + "loss": 3.7751095294952393, + "step": 2005 + }, + { + "epoch": 27.866754041065967, + "grad_norm": 0.18825744092464447, + "learning_rate": 0.0006, + "loss": 3.807401657104492, + "step": 2006 + }, + { + "epoch": 27.88073394495413, + "grad_norm": 0.1879836469888687, + "learning_rate": 0.0006, + "loss": 3.8302509784698486, + "step": 2007 + }, + { + "epoch": 27.89471384884229, + "grad_norm": 0.19136391580104828, + "learning_rate": 0.0006, + "loss": 3.7886242866516113, + "step": 2008 + }, + { + "epoch": 27.90869375273045, + "grad_norm": 0.18774119019508362, + "learning_rate": 0.0006, + "loss": 3.8202977180480957, + "step": 2009 + }, + { + "epoch": 27.92267365661861, + "grad_norm": 0.17794452607631683, + "learning_rate": 0.0006, + "loss": 3.813382387161255, + "step": 2010 + }, + { + "epoch": 27.936653560506773, + "grad_norm": 0.1876268833875656, + "learning_rate": 0.0006, + "loss": 3.810610294342041, + "step": 2011 + }, + { + "epoch": 27.950633464394933, + "grad_norm": 0.19262051582336426, + "learning_rate": 0.0006, + "loss": 3.8113245964050293, + "step": 2012 + }, + { + "epoch": 27.964613368283093, + "grad_norm": 0.19371771812438965, + "learning_rate": 0.0006, + "loss": 3.804790496826172, + "step": 2013 + }, + { + "epoch": 27.978593272171253, + "grad_norm": 0.1922861784696579, + "learning_rate": 0.0006, + "loss": 3.8278889656066895, + "step": 2014 + }, + { + "epoch": 27.992573176059416, + "grad_norm": 0.19748565554618835, + "learning_rate": 0.0006, + "loss": 3.8127200603485107, + "step": 2015 + }, + { + "epoch": 28.0, + "grad_norm": 0.25027501583099365, + "learning_rate": 0.0006, + "loss": 3.7899413108825684, + "step": 2016 + }, + { + "epoch": 28.0, + "eval_loss": 4.047704219818115, + "eval_runtime": 44.293, + "eval_samples_per_second": 55.133, + "eval_steps_per_second": 3.454, + "step": 2016 + }, + { + "epoch": 28.01397990388816, + "grad_norm": 0.25172367691993713, + "learning_rate": 0.0006, + "loss": 3.75449538230896, + "step": 2017 + }, + { + "epoch": 28.027959807776323, + "grad_norm": 0.23494598269462585, + "learning_rate": 0.0006, + "loss": 3.7609024047851562, + "step": 2018 + }, + { + "epoch": 28.041939711664483, + "grad_norm": 0.22459708154201508, + "learning_rate": 0.0006, + "loss": 3.7843551635742188, + "step": 2019 + }, + { + "epoch": 28.055919615552643, + "grad_norm": 0.2038632035255432, + "learning_rate": 0.0006, + "loss": 3.7818198204040527, + "step": 2020 + }, + { + "epoch": 28.069899519440803, + "grad_norm": 0.22050008177757263, + "learning_rate": 0.0006, + "loss": 3.787442684173584, + "step": 2021 + }, + { + "epoch": 28.083879423328966, + "grad_norm": 0.24645832180976868, + "learning_rate": 0.0006, + "loss": 3.768704414367676, + "step": 2022 + }, + { + "epoch": 28.097859327217126, + "grad_norm": 0.2440163493156433, + "learning_rate": 0.0006, + "loss": 3.7783756256103516, + "step": 2023 + }, + { + "epoch": 28.111839231105286, + "grad_norm": 0.2482181042432785, + "learning_rate": 0.0006, + "loss": 3.786881923675537, + "step": 2024 + }, + { + "epoch": 28.125819134993446, + "grad_norm": 0.23494760692119598, + "learning_rate": 0.0006, + "loss": 3.790039300918579, + "step": 2025 + }, + { + "epoch": 28.13979903888161, + "grad_norm": 0.2172182947397232, + "learning_rate": 0.0006, + "loss": 3.818756580352783, + "step": 2026 + }, + { + "epoch": 28.15377894276977, + "grad_norm": 0.2103179395198822, + "learning_rate": 0.0006, + "loss": 3.7768917083740234, + "step": 2027 + }, + { + "epoch": 28.16775884665793, + "grad_norm": 0.22322365641593933, + "learning_rate": 0.0006, + "loss": 3.8223648071289062, + "step": 2028 + }, + { + "epoch": 28.18173875054609, + "grad_norm": 0.24199382960796356, + "learning_rate": 0.0006, + "loss": 3.781357765197754, + "step": 2029 + }, + { + "epoch": 28.195718654434252, + "grad_norm": 0.2500663101673126, + "learning_rate": 0.0006, + "loss": 3.8061184883117676, + "step": 2030 + }, + { + "epoch": 28.209698558322412, + "grad_norm": 0.2439824491739273, + "learning_rate": 0.0006, + "loss": 3.7886464595794678, + "step": 2031 + }, + { + "epoch": 28.22367846221057, + "grad_norm": 0.24563106894493103, + "learning_rate": 0.0006, + "loss": 3.7901692390441895, + "step": 2032 + }, + { + "epoch": 28.23765836609873, + "grad_norm": 0.2287624627351761, + "learning_rate": 0.0006, + "loss": 3.789931058883667, + "step": 2033 + }, + { + "epoch": 28.251638269986895, + "grad_norm": 0.2231188714504242, + "learning_rate": 0.0006, + "loss": 3.7879133224487305, + "step": 2034 + }, + { + "epoch": 28.265618173875055, + "grad_norm": 0.23090387880802155, + "learning_rate": 0.0006, + "loss": 3.7826130390167236, + "step": 2035 + }, + { + "epoch": 28.279598077763215, + "grad_norm": 0.216018944978714, + "learning_rate": 0.0006, + "loss": 3.7764949798583984, + "step": 2036 + }, + { + "epoch": 28.293577981651374, + "grad_norm": 0.22649185359477997, + "learning_rate": 0.0006, + "loss": 3.7911291122436523, + "step": 2037 + }, + { + "epoch": 28.307557885539538, + "grad_norm": 0.2350836843252182, + "learning_rate": 0.0006, + "loss": 3.7668724060058594, + "step": 2038 + }, + { + "epoch": 28.321537789427698, + "grad_norm": 0.23206329345703125, + "learning_rate": 0.0006, + "loss": 3.782243251800537, + "step": 2039 + }, + { + "epoch": 28.335517693315857, + "grad_norm": 0.21896308660507202, + "learning_rate": 0.0006, + "loss": 3.7605721950531006, + "step": 2040 + }, + { + "epoch": 28.34949759720402, + "grad_norm": 0.20381200313568115, + "learning_rate": 0.0006, + "loss": 3.743945598602295, + "step": 2041 + }, + { + "epoch": 28.36347750109218, + "grad_norm": 0.19196000695228577, + "learning_rate": 0.0006, + "loss": 3.808107852935791, + "step": 2042 + }, + { + "epoch": 28.37745740498034, + "grad_norm": 0.19517889618873596, + "learning_rate": 0.0006, + "loss": 3.7906723022460938, + "step": 2043 + }, + { + "epoch": 28.3914373088685, + "grad_norm": 0.20455795526504517, + "learning_rate": 0.0006, + "loss": 3.7421011924743652, + "step": 2044 + }, + { + "epoch": 28.405417212756664, + "grad_norm": 0.1867467314004898, + "learning_rate": 0.0006, + "loss": 3.775509834289551, + "step": 2045 + }, + { + "epoch": 28.419397116644824, + "grad_norm": 0.2029324471950531, + "learning_rate": 0.0006, + "loss": 3.771353244781494, + "step": 2046 + }, + { + "epoch": 28.433377020532983, + "grad_norm": 0.19967497885227203, + "learning_rate": 0.0006, + "loss": 3.7821149826049805, + "step": 2047 + }, + { + "epoch": 28.447356924421143, + "grad_norm": 0.19440607726573944, + "learning_rate": 0.0006, + "loss": 3.8114213943481445, + "step": 2048 + }, + { + "epoch": 28.461336828309307, + "grad_norm": 0.19679802656173706, + "learning_rate": 0.0006, + "loss": 3.7699532508850098, + "step": 2049 + }, + { + "epoch": 28.475316732197467, + "grad_norm": 0.1939811110496521, + "learning_rate": 0.0006, + "loss": 3.7673027515411377, + "step": 2050 + }, + { + "epoch": 28.489296636085626, + "grad_norm": 0.18712401390075684, + "learning_rate": 0.0006, + "loss": 3.816699266433716, + "step": 2051 + }, + { + "epoch": 28.503276539973786, + "grad_norm": 0.202956885099411, + "learning_rate": 0.0006, + "loss": 3.7746071815490723, + "step": 2052 + }, + { + "epoch": 28.51725644386195, + "grad_norm": 0.19098156690597534, + "learning_rate": 0.0006, + "loss": 3.8065481185913086, + "step": 2053 + }, + { + "epoch": 28.53123634775011, + "grad_norm": 0.21144428849220276, + "learning_rate": 0.0006, + "loss": 3.7890982627868652, + "step": 2054 + }, + { + "epoch": 28.54521625163827, + "grad_norm": 0.21882614493370056, + "learning_rate": 0.0006, + "loss": 3.8168821334838867, + "step": 2055 + }, + { + "epoch": 28.55919615552643, + "grad_norm": 0.22200101613998413, + "learning_rate": 0.0006, + "loss": 3.804454803466797, + "step": 2056 + }, + { + "epoch": 28.573176059414592, + "grad_norm": 0.22404780983924866, + "learning_rate": 0.0006, + "loss": 3.808764934539795, + "step": 2057 + }, + { + "epoch": 28.587155963302752, + "grad_norm": 0.22770099341869354, + "learning_rate": 0.0006, + "loss": 3.74835467338562, + "step": 2058 + }, + { + "epoch": 28.601135867190912, + "grad_norm": 0.23214420676231384, + "learning_rate": 0.0006, + "loss": 3.7480111122131348, + "step": 2059 + }, + { + "epoch": 28.615115771079076, + "grad_norm": 0.21786348521709442, + "learning_rate": 0.0006, + "loss": 3.8095176219940186, + "step": 2060 + }, + { + "epoch": 28.629095674967235, + "grad_norm": 0.21004106104373932, + "learning_rate": 0.0006, + "loss": 3.792745590209961, + "step": 2061 + }, + { + "epoch": 28.643075578855395, + "grad_norm": 0.21076138317584991, + "learning_rate": 0.0006, + "loss": 3.7878952026367188, + "step": 2062 + }, + { + "epoch": 28.657055482743555, + "grad_norm": 0.2184346616268158, + "learning_rate": 0.0006, + "loss": 3.757188320159912, + "step": 2063 + }, + { + "epoch": 28.67103538663172, + "grad_norm": 0.22100569307804108, + "learning_rate": 0.0006, + "loss": 3.8131773471832275, + "step": 2064 + }, + { + "epoch": 28.68501529051988, + "grad_norm": 0.23257511854171753, + "learning_rate": 0.0006, + "loss": 3.793826103210449, + "step": 2065 + }, + { + "epoch": 28.698995194408038, + "grad_norm": 0.22312869131565094, + "learning_rate": 0.0006, + "loss": 3.782083749771118, + "step": 2066 + }, + { + "epoch": 28.712975098296198, + "grad_norm": 0.2318405956029892, + "learning_rate": 0.0006, + "loss": 3.7814879417419434, + "step": 2067 + }, + { + "epoch": 28.72695500218436, + "grad_norm": 0.23719379305839539, + "learning_rate": 0.0006, + "loss": 3.8320484161376953, + "step": 2068 + }, + { + "epoch": 28.74093490607252, + "grad_norm": 0.23100806772708893, + "learning_rate": 0.0006, + "loss": 3.7921783924102783, + "step": 2069 + }, + { + "epoch": 28.75491480996068, + "grad_norm": 0.21540866792201996, + "learning_rate": 0.0006, + "loss": 3.8325204849243164, + "step": 2070 + }, + { + "epoch": 28.76889471384884, + "grad_norm": 0.2698654532432556, + "learning_rate": 0.0006, + "loss": 3.7965879440307617, + "step": 2071 + }, + { + "epoch": 28.782874617737004, + "grad_norm": 0.3101225793361664, + "learning_rate": 0.0006, + "loss": 3.78842830657959, + "step": 2072 + }, + { + "epoch": 28.796854521625164, + "grad_norm": 0.2607600688934326, + "learning_rate": 0.0006, + "loss": 3.770064115524292, + "step": 2073 + }, + { + "epoch": 28.810834425513324, + "grad_norm": 0.20558302104473114, + "learning_rate": 0.0006, + "loss": 3.7448501586914062, + "step": 2074 + }, + { + "epoch": 28.824814329401484, + "grad_norm": 0.20030120015144348, + "learning_rate": 0.0006, + "loss": 3.7689406871795654, + "step": 2075 + }, + { + "epoch": 28.838794233289647, + "grad_norm": 0.21781118214130402, + "learning_rate": 0.0006, + "loss": 3.7682244777679443, + "step": 2076 + }, + { + "epoch": 28.852774137177807, + "grad_norm": 0.23543044924736023, + "learning_rate": 0.0006, + "loss": 3.8094193935394287, + "step": 2077 + }, + { + "epoch": 28.866754041065967, + "grad_norm": 0.21634669601917267, + "learning_rate": 0.0006, + "loss": 3.792099952697754, + "step": 2078 + }, + { + "epoch": 28.88073394495413, + "grad_norm": 0.2251661866903305, + "learning_rate": 0.0006, + "loss": 3.7849509716033936, + "step": 2079 + }, + { + "epoch": 28.89471384884229, + "grad_norm": 0.23872914910316467, + "learning_rate": 0.0006, + "loss": 3.8391621112823486, + "step": 2080 + }, + { + "epoch": 28.90869375273045, + "grad_norm": 0.22259248793125153, + "learning_rate": 0.0006, + "loss": 3.8272876739501953, + "step": 2081 + }, + { + "epoch": 28.92267365661861, + "grad_norm": 0.22052262723445892, + "learning_rate": 0.0006, + "loss": 3.7986836433410645, + "step": 2082 + }, + { + "epoch": 28.936653560506773, + "grad_norm": 0.24487647414207458, + "learning_rate": 0.0006, + "loss": 3.798004150390625, + "step": 2083 + }, + { + "epoch": 28.950633464394933, + "grad_norm": 0.22992238402366638, + "learning_rate": 0.0006, + "loss": 3.788522720336914, + "step": 2084 + }, + { + "epoch": 28.964613368283093, + "grad_norm": 0.22521597146987915, + "learning_rate": 0.0006, + "loss": 3.767259120941162, + "step": 2085 + }, + { + "epoch": 28.978593272171253, + "grad_norm": 0.2201499044895172, + "learning_rate": 0.0006, + "loss": 3.7850542068481445, + "step": 2086 + }, + { + "epoch": 28.992573176059416, + "grad_norm": 0.22226814925670624, + "learning_rate": 0.0006, + "loss": 3.8013534545898438, + "step": 2087 + }, + { + "epoch": 29.0, + "grad_norm": 0.27624809741973877, + "learning_rate": 0.0006, + "loss": 3.762004852294922, + "step": 2088 + }, + { + "epoch": 29.0, + "eval_loss": 4.034304618835449, + "eval_runtime": 44.6573, + "eval_samples_per_second": 54.683, + "eval_steps_per_second": 3.426, + "step": 2088 + }, + { + "epoch": 29.01397990388816, + "grad_norm": 0.2550967037677765, + "learning_rate": 0.0006, + "loss": 3.7724227905273438, + "step": 2089 + }, + { + "epoch": 29.027959807776323, + "grad_norm": 0.26730602979660034, + "learning_rate": 0.0006, + "loss": 3.7728946208953857, + "step": 2090 + }, + { + "epoch": 29.041939711664483, + "grad_norm": 0.2394205927848816, + "learning_rate": 0.0006, + "loss": 3.7737584114074707, + "step": 2091 + }, + { + "epoch": 29.055919615552643, + "grad_norm": 0.22488200664520264, + "learning_rate": 0.0006, + "loss": 3.761014938354492, + "step": 2092 + }, + { + "epoch": 29.069899519440803, + "grad_norm": 0.2389903962612152, + "learning_rate": 0.0006, + "loss": 3.766557216644287, + "step": 2093 + }, + { + "epoch": 29.083879423328966, + "grad_norm": 0.234152153134346, + "learning_rate": 0.0006, + "loss": 3.7447147369384766, + "step": 2094 + }, + { + "epoch": 29.097859327217126, + "grad_norm": 0.23123252391815186, + "learning_rate": 0.0006, + "loss": 3.77197527885437, + "step": 2095 + }, + { + "epoch": 29.111839231105286, + "grad_norm": 0.23263143002986908, + "learning_rate": 0.0006, + "loss": 3.7390198707580566, + "step": 2096 + }, + { + "epoch": 29.125819134993446, + "grad_norm": 0.23235775530338287, + "learning_rate": 0.0006, + "loss": 3.7675256729125977, + "step": 2097 + }, + { + "epoch": 29.13979903888161, + "grad_norm": 0.2208816260099411, + "learning_rate": 0.0006, + "loss": 3.7588067054748535, + "step": 2098 + }, + { + "epoch": 29.15377894276977, + "grad_norm": 0.21216371655464172, + "learning_rate": 0.0006, + "loss": 3.7370502948760986, + "step": 2099 + }, + { + "epoch": 29.16775884665793, + "grad_norm": 0.2210543155670166, + "learning_rate": 0.0006, + "loss": 3.767308473587036, + "step": 2100 + }, + { + "epoch": 29.18173875054609, + "grad_norm": 0.21628431975841522, + "learning_rate": 0.0006, + "loss": 3.7298972606658936, + "step": 2101 + }, + { + "epoch": 29.195718654434252, + "grad_norm": 0.21493588387966156, + "learning_rate": 0.0006, + "loss": 3.7806448936462402, + "step": 2102 + }, + { + "epoch": 29.209698558322412, + "grad_norm": 0.25978055596351624, + "learning_rate": 0.0006, + "loss": 3.7716293334960938, + "step": 2103 + }, + { + "epoch": 29.22367846221057, + "grad_norm": 0.2744791507720947, + "learning_rate": 0.0006, + "loss": 3.76897931098938, + "step": 2104 + }, + { + "epoch": 29.23765836609873, + "grad_norm": 0.22959400713443756, + "learning_rate": 0.0006, + "loss": 3.7545714378356934, + "step": 2105 + }, + { + "epoch": 29.251638269986895, + "grad_norm": 0.20369231700897217, + "learning_rate": 0.0006, + "loss": 3.7944722175598145, + "step": 2106 + }, + { + "epoch": 29.265618173875055, + "grad_norm": 0.21663758158683777, + "learning_rate": 0.0006, + "loss": 3.7564756870269775, + "step": 2107 + }, + { + "epoch": 29.279598077763215, + "grad_norm": 0.21862861514091492, + "learning_rate": 0.0006, + "loss": 3.7722725868225098, + "step": 2108 + }, + { + "epoch": 29.293577981651374, + "grad_norm": 0.2044878453016281, + "learning_rate": 0.0006, + "loss": 3.7471303939819336, + "step": 2109 + }, + { + "epoch": 29.307557885539538, + "grad_norm": 0.23015929758548737, + "learning_rate": 0.0006, + "loss": 3.7584962844848633, + "step": 2110 + }, + { + "epoch": 29.321537789427698, + "grad_norm": 0.22548329830169678, + "learning_rate": 0.0006, + "loss": 3.795933723449707, + "step": 2111 + }, + { + "epoch": 29.335517693315857, + "grad_norm": 0.2000468522310257, + "learning_rate": 0.0006, + "loss": 3.766310691833496, + "step": 2112 + }, + { + "epoch": 29.34949759720402, + "grad_norm": 0.19711551070213318, + "learning_rate": 0.0006, + "loss": 3.7296276092529297, + "step": 2113 + }, + { + "epoch": 29.36347750109218, + "grad_norm": 0.18838997185230255, + "learning_rate": 0.0006, + "loss": 3.7685282230377197, + "step": 2114 + }, + { + "epoch": 29.37745740498034, + "grad_norm": 0.1897876113653183, + "learning_rate": 0.0006, + "loss": 3.7280936241149902, + "step": 2115 + }, + { + "epoch": 29.3914373088685, + "grad_norm": 0.21697933971881866, + "learning_rate": 0.0006, + "loss": 3.7991929054260254, + "step": 2116 + }, + { + "epoch": 29.405417212756664, + "grad_norm": 0.23445849120616913, + "learning_rate": 0.0006, + "loss": 3.7857418060302734, + "step": 2117 + }, + { + "epoch": 29.419397116644824, + "grad_norm": 0.24155527353286743, + "learning_rate": 0.0006, + "loss": 3.7897872924804688, + "step": 2118 + }, + { + "epoch": 29.433377020532983, + "grad_norm": 0.2610265016555786, + "learning_rate": 0.0006, + "loss": 3.7867324352264404, + "step": 2119 + }, + { + "epoch": 29.447356924421143, + "grad_norm": 0.2809581160545349, + "learning_rate": 0.0006, + "loss": 3.783799648284912, + "step": 2120 + }, + { + "epoch": 29.461336828309307, + "grad_norm": 0.2621572017669678, + "learning_rate": 0.0006, + "loss": 3.7778549194335938, + "step": 2121 + }, + { + "epoch": 29.475316732197467, + "grad_norm": 0.26002970337867737, + "learning_rate": 0.0006, + "loss": 3.787945508956909, + "step": 2122 + }, + { + "epoch": 29.489296636085626, + "grad_norm": 0.24866686761379242, + "learning_rate": 0.0006, + "loss": 3.7406349182128906, + "step": 2123 + }, + { + "epoch": 29.503276539973786, + "grad_norm": 0.25588324666023254, + "learning_rate": 0.0006, + "loss": 3.785625457763672, + "step": 2124 + }, + { + "epoch": 29.51725644386195, + "grad_norm": 0.24724243581295013, + "learning_rate": 0.0006, + "loss": 3.7581701278686523, + "step": 2125 + }, + { + "epoch": 29.53123634775011, + "grad_norm": 0.23544734716415405, + "learning_rate": 0.0006, + "loss": 3.8163957595825195, + "step": 2126 + }, + { + "epoch": 29.54521625163827, + "grad_norm": 0.2108801156282425, + "learning_rate": 0.0006, + "loss": 3.7881739139556885, + "step": 2127 + }, + { + "epoch": 29.55919615552643, + "grad_norm": 0.20459668338298798, + "learning_rate": 0.0006, + "loss": 3.7641284465789795, + "step": 2128 + }, + { + "epoch": 29.573176059414592, + "grad_norm": 0.24020728468894958, + "learning_rate": 0.0006, + "loss": 3.7748730182647705, + "step": 2129 + }, + { + "epoch": 29.587155963302752, + "grad_norm": 0.256273478269577, + "learning_rate": 0.0006, + "loss": 3.8076486587524414, + "step": 2130 + }, + { + "epoch": 29.601135867190912, + "grad_norm": 0.23295973241329193, + "learning_rate": 0.0006, + "loss": 3.7687063217163086, + "step": 2131 + }, + { + "epoch": 29.615115771079076, + "grad_norm": 0.21554847061634064, + "learning_rate": 0.0006, + "loss": 3.781867027282715, + "step": 2132 + }, + { + "epoch": 29.629095674967235, + "grad_norm": 0.20645774900913239, + "learning_rate": 0.0006, + "loss": 3.7813425064086914, + "step": 2133 + }, + { + "epoch": 29.643075578855395, + "grad_norm": 0.2018265724182129, + "learning_rate": 0.0006, + "loss": 3.772895574569702, + "step": 2134 + }, + { + "epoch": 29.657055482743555, + "grad_norm": 0.20170100033283234, + "learning_rate": 0.0006, + "loss": 3.7819175720214844, + "step": 2135 + }, + { + "epoch": 29.67103538663172, + "grad_norm": 0.22640688717365265, + "learning_rate": 0.0006, + "loss": 3.7999017238616943, + "step": 2136 + }, + { + "epoch": 29.68501529051988, + "grad_norm": 0.23747675120830536, + "learning_rate": 0.0006, + "loss": 3.804999828338623, + "step": 2137 + }, + { + "epoch": 29.698995194408038, + "grad_norm": 0.20005857944488525, + "learning_rate": 0.0006, + "loss": 3.7815160751342773, + "step": 2138 + }, + { + "epoch": 29.712975098296198, + "grad_norm": 0.17901667952537537, + "learning_rate": 0.0006, + "loss": 3.7898688316345215, + "step": 2139 + }, + { + "epoch": 29.72695500218436, + "grad_norm": 0.1890905797481537, + "learning_rate": 0.0006, + "loss": 3.8001184463500977, + "step": 2140 + }, + { + "epoch": 29.74093490607252, + "grad_norm": 0.19565847516059875, + "learning_rate": 0.0006, + "loss": 3.7522482872009277, + "step": 2141 + }, + { + "epoch": 29.75491480996068, + "grad_norm": 0.19429196417331696, + "learning_rate": 0.0006, + "loss": 3.768972158432007, + "step": 2142 + }, + { + "epoch": 29.76889471384884, + "grad_norm": 0.23846636712551117, + "learning_rate": 0.0006, + "loss": 3.765216112136841, + "step": 2143 + }, + { + "epoch": 29.782874617737004, + "grad_norm": 0.23820780217647552, + "learning_rate": 0.0006, + "loss": 3.8027703762054443, + "step": 2144 + }, + { + "epoch": 29.796854521625164, + "grad_norm": 0.21104726195335388, + "learning_rate": 0.0006, + "loss": 3.7682833671569824, + "step": 2145 + }, + { + "epoch": 29.810834425513324, + "grad_norm": 0.1911051720380783, + "learning_rate": 0.0006, + "loss": 3.781782627105713, + "step": 2146 + }, + { + "epoch": 29.824814329401484, + "grad_norm": 0.18881288170814514, + "learning_rate": 0.0006, + "loss": 3.7703428268432617, + "step": 2147 + }, + { + "epoch": 29.838794233289647, + "grad_norm": 0.18292994797229767, + "learning_rate": 0.0006, + "loss": 3.769176721572876, + "step": 2148 + }, + { + "epoch": 29.852774137177807, + "grad_norm": 0.1777714639902115, + "learning_rate": 0.0006, + "loss": 3.7488298416137695, + "step": 2149 + }, + { + "epoch": 29.866754041065967, + "grad_norm": 0.2037898749113083, + "learning_rate": 0.0006, + "loss": 3.804396390914917, + "step": 2150 + }, + { + "epoch": 29.88073394495413, + "grad_norm": 0.2121828943490982, + "learning_rate": 0.0006, + "loss": 3.75870943069458, + "step": 2151 + }, + { + "epoch": 29.89471384884229, + "grad_norm": 0.23231184482574463, + "learning_rate": 0.0006, + "loss": 3.80178165435791, + "step": 2152 + }, + { + "epoch": 29.90869375273045, + "grad_norm": 0.24045611917972565, + "learning_rate": 0.0006, + "loss": 3.7690834999084473, + "step": 2153 + }, + { + "epoch": 29.92267365661861, + "grad_norm": 0.19830496609210968, + "learning_rate": 0.0006, + "loss": 3.764401912689209, + "step": 2154 + }, + { + "epoch": 29.936653560506773, + "grad_norm": 0.17704227566719055, + "learning_rate": 0.0006, + "loss": 3.7634594440460205, + "step": 2155 + }, + { + "epoch": 29.950633464394933, + "grad_norm": 0.17783164978027344, + "learning_rate": 0.0006, + "loss": 3.7856998443603516, + "step": 2156 + }, + { + "epoch": 29.964613368283093, + "grad_norm": 0.19684971868991852, + "learning_rate": 0.0006, + "loss": 3.805774211883545, + "step": 2157 + }, + { + "epoch": 29.978593272171253, + "grad_norm": 0.21662312746047974, + "learning_rate": 0.0006, + "loss": 3.757896661758423, + "step": 2158 + }, + { + "epoch": 29.992573176059416, + "grad_norm": 0.22000661492347717, + "learning_rate": 0.0006, + "loss": 3.7747678756713867, + "step": 2159 + }, + { + "epoch": 30.0, + "grad_norm": 0.21501901745796204, + "learning_rate": 0.0006, + "loss": 3.785585880279541, + "step": 2160 + }, + { + "epoch": 30.0, + "eval_loss": 4.034003734588623, + "eval_runtime": 44.9097, + "eval_samples_per_second": 54.376, + "eval_steps_per_second": 3.407, + "step": 2160 + }, + { + "epoch": 30.01397990388816, + "grad_norm": 0.19710904359817505, + "learning_rate": 0.0006, + "loss": 3.756235122680664, + "step": 2161 + }, + { + "epoch": 30.027959807776323, + "grad_norm": 0.19829736649990082, + "learning_rate": 0.0006, + "loss": 3.734067916870117, + "step": 2162 + }, + { + "epoch": 30.041939711664483, + "grad_norm": 0.21622520685195923, + "learning_rate": 0.0006, + "loss": 3.7329437732696533, + "step": 2163 + }, + { + "epoch": 30.055919615552643, + "grad_norm": 0.22544652223587036, + "learning_rate": 0.0006, + "loss": 3.748716354370117, + "step": 2164 + }, + { + "epoch": 30.069899519440803, + "grad_norm": 0.21098364889621735, + "learning_rate": 0.0006, + "loss": 3.779047727584839, + "step": 2165 + }, + { + "epoch": 30.083879423328966, + "grad_norm": 0.21309930086135864, + "learning_rate": 0.0006, + "loss": 3.7690274715423584, + "step": 2166 + }, + { + "epoch": 30.097859327217126, + "grad_norm": 0.23025690019130707, + "learning_rate": 0.0006, + "loss": 3.7500953674316406, + "step": 2167 + }, + { + "epoch": 30.111839231105286, + "grad_norm": 0.25107935070991516, + "learning_rate": 0.0006, + "loss": 3.745492458343506, + "step": 2168 + }, + { + "epoch": 30.125819134993446, + "grad_norm": 0.29873573780059814, + "learning_rate": 0.0006, + "loss": 3.759793758392334, + "step": 2169 + }, + { + "epoch": 30.13979903888161, + "grad_norm": 0.2810286283493042, + "learning_rate": 0.0006, + "loss": 3.772998809814453, + "step": 2170 + }, + { + "epoch": 30.15377894276977, + "grad_norm": 0.2102176398038864, + "learning_rate": 0.0006, + "loss": 3.740170955657959, + "step": 2171 + }, + { + "epoch": 30.16775884665793, + "grad_norm": 0.24143251776695251, + "learning_rate": 0.0006, + "loss": 3.7317001819610596, + "step": 2172 + }, + { + "epoch": 30.18173875054609, + "grad_norm": 0.2643064558506012, + "learning_rate": 0.0006, + "loss": 3.773263692855835, + "step": 2173 + }, + { + "epoch": 30.195718654434252, + "grad_norm": 0.27571243047714233, + "learning_rate": 0.0006, + "loss": 3.7619900703430176, + "step": 2174 + }, + { + "epoch": 30.209698558322412, + "grad_norm": 0.25359588861465454, + "learning_rate": 0.0006, + "loss": 3.7608513832092285, + "step": 2175 + }, + { + "epoch": 30.22367846221057, + "grad_norm": 0.2500684857368469, + "learning_rate": 0.0006, + "loss": 3.75856614112854, + "step": 2176 + }, + { + "epoch": 30.23765836609873, + "grad_norm": 0.23100309073925018, + "learning_rate": 0.0006, + "loss": 3.749786853790283, + "step": 2177 + }, + { + "epoch": 30.251638269986895, + "grad_norm": 0.24384984374046326, + "learning_rate": 0.0006, + "loss": 3.762244701385498, + "step": 2178 + }, + { + "epoch": 30.265618173875055, + "grad_norm": 0.24593998491764069, + "learning_rate": 0.0006, + "loss": 3.754594326019287, + "step": 2179 + }, + { + "epoch": 30.279598077763215, + "grad_norm": 0.2529342770576477, + "learning_rate": 0.0006, + "loss": 3.7641053199768066, + "step": 2180 + }, + { + "epoch": 30.293577981651374, + "grad_norm": 0.25954094529151917, + "learning_rate": 0.0006, + "loss": 3.810336112976074, + "step": 2181 + }, + { + "epoch": 30.307557885539538, + "grad_norm": 0.2249951958656311, + "learning_rate": 0.0006, + "loss": 3.7542617321014404, + "step": 2182 + }, + { + "epoch": 30.321537789427698, + "grad_norm": 0.19795064628124237, + "learning_rate": 0.0006, + "loss": 3.7734434604644775, + "step": 2183 + }, + { + "epoch": 30.335517693315857, + "grad_norm": 0.20744608342647552, + "learning_rate": 0.0006, + "loss": 3.7816128730773926, + "step": 2184 + }, + { + "epoch": 30.34949759720402, + "grad_norm": 0.19988055527210236, + "learning_rate": 0.0006, + "loss": 3.7631936073303223, + "step": 2185 + }, + { + "epoch": 30.36347750109218, + "grad_norm": 0.22226445376873016, + "learning_rate": 0.0006, + "loss": 3.762910842895508, + "step": 2186 + }, + { + "epoch": 30.37745740498034, + "grad_norm": 0.21986067295074463, + "learning_rate": 0.0006, + "loss": 3.733893394470215, + "step": 2187 + }, + { + "epoch": 30.3914373088685, + "grad_norm": 0.2170228660106659, + "learning_rate": 0.0006, + "loss": 3.726433515548706, + "step": 2188 + }, + { + "epoch": 30.405417212756664, + "grad_norm": 0.2179550975561142, + "learning_rate": 0.0006, + "loss": 3.792311668395996, + "step": 2189 + }, + { + "epoch": 30.419397116644824, + "grad_norm": 0.208037331700325, + "learning_rate": 0.0006, + "loss": 3.774639129638672, + "step": 2190 + }, + { + "epoch": 30.433377020532983, + "grad_norm": 0.20745441317558289, + "learning_rate": 0.0006, + "loss": 3.776130199432373, + "step": 2191 + }, + { + "epoch": 30.447356924421143, + "grad_norm": 0.1988024264574051, + "learning_rate": 0.0006, + "loss": 3.7453784942626953, + "step": 2192 + }, + { + "epoch": 30.461336828309307, + "grad_norm": 0.194968581199646, + "learning_rate": 0.0006, + "loss": 3.764653205871582, + "step": 2193 + }, + { + "epoch": 30.475316732197467, + "grad_norm": 0.20658300817012787, + "learning_rate": 0.0006, + "loss": 3.796513080596924, + "step": 2194 + }, + { + "epoch": 30.489296636085626, + "grad_norm": 0.2123410701751709, + "learning_rate": 0.0006, + "loss": 3.7630836963653564, + "step": 2195 + }, + { + "epoch": 30.503276539973786, + "grad_norm": 0.20894059538841248, + "learning_rate": 0.0006, + "loss": 3.7265470027923584, + "step": 2196 + }, + { + "epoch": 30.51725644386195, + "grad_norm": 0.2016828954219818, + "learning_rate": 0.0006, + "loss": 3.8083386421203613, + "step": 2197 + }, + { + "epoch": 30.53123634775011, + "grad_norm": 0.19584205746650696, + "learning_rate": 0.0006, + "loss": 3.7492105960845947, + "step": 2198 + }, + { + "epoch": 30.54521625163827, + "grad_norm": 0.18635272979736328, + "learning_rate": 0.0006, + "loss": 3.711009979248047, + "step": 2199 + }, + { + "epoch": 30.55919615552643, + "grad_norm": 0.1920594871044159, + "learning_rate": 0.0006, + "loss": 3.760801315307617, + "step": 2200 + }, + { + "epoch": 30.573176059414592, + "grad_norm": 0.1978331208229065, + "learning_rate": 0.0006, + "loss": 3.780529022216797, + "step": 2201 + }, + { + "epoch": 30.587155963302752, + "grad_norm": 0.20076943933963776, + "learning_rate": 0.0006, + "loss": 3.7767038345336914, + "step": 2202 + }, + { + "epoch": 30.601135867190912, + "grad_norm": 0.2067444622516632, + "learning_rate": 0.0006, + "loss": 3.7607920169830322, + "step": 2203 + }, + { + "epoch": 30.615115771079076, + "grad_norm": 0.2081940472126007, + "learning_rate": 0.0006, + "loss": 3.741936206817627, + "step": 2204 + }, + { + "epoch": 30.629095674967235, + "grad_norm": 0.21212869882583618, + "learning_rate": 0.0006, + "loss": 3.7597827911376953, + "step": 2205 + }, + { + "epoch": 30.643075578855395, + "grad_norm": 0.21539026498794556, + "learning_rate": 0.0006, + "loss": 3.764646053314209, + "step": 2206 + }, + { + "epoch": 30.657055482743555, + "grad_norm": 0.19788387417793274, + "learning_rate": 0.0006, + "loss": 3.7535128593444824, + "step": 2207 + }, + { + "epoch": 30.67103538663172, + "grad_norm": 0.20757688581943512, + "learning_rate": 0.0006, + "loss": 3.7414169311523438, + "step": 2208 + }, + { + "epoch": 30.68501529051988, + "grad_norm": 0.199361652135849, + "learning_rate": 0.0006, + "loss": 3.7578506469726562, + "step": 2209 + }, + { + "epoch": 30.698995194408038, + "grad_norm": 0.1909894198179245, + "learning_rate": 0.0006, + "loss": 3.736250400543213, + "step": 2210 + }, + { + "epoch": 30.712975098296198, + "grad_norm": 0.19766664505004883, + "learning_rate": 0.0006, + "loss": 3.7435379028320312, + "step": 2211 + }, + { + "epoch": 30.72695500218436, + "grad_norm": 0.21857766807079315, + "learning_rate": 0.0006, + "loss": 3.7478690147399902, + "step": 2212 + }, + { + "epoch": 30.74093490607252, + "grad_norm": 0.22385898232460022, + "learning_rate": 0.0006, + "loss": 3.7522530555725098, + "step": 2213 + }, + { + "epoch": 30.75491480996068, + "grad_norm": 0.2329241931438446, + "learning_rate": 0.0006, + "loss": 3.7568247318267822, + "step": 2214 + }, + { + "epoch": 30.76889471384884, + "grad_norm": 0.2218400090932846, + "learning_rate": 0.0006, + "loss": 3.7662744522094727, + "step": 2215 + }, + { + "epoch": 30.782874617737004, + "grad_norm": 0.21350212395191193, + "learning_rate": 0.0006, + "loss": 3.7683777809143066, + "step": 2216 + }, + { + "epoch": 30.796854521625164, + "grad_norm": 0.22357074916362762, + "learning_rate": 0.0006, + "loss": 3.763437032699585, + "step": 2217 + }, + { + "epoch": 30.810834425513324, + "grad_norm": 0.22268560528755188, + "learning_rate": 0.0006, + "loss": 3.772836685180664, + "step": 2218 + }, + { + "epoch": 30.824814329401484, + "grad_norm": 0.2434026449918747, + "learning_rate": 0.0006, + "loss": 3.752986431121826, + "step": 2219 + }, + { + "epoch": 30.838794233289647, + "grad_norm": 0.2298414409160614, + "learning_rate": 0.0006, + "loss": 3.7837061882019043, + "step": 2220 + }, + { + "epoch": 30.852774137177807, + "grad_norm": 0.227672278881073, + "learning_rate": 0.0006, + "loss": 3.746065378189087, + "step": 2221 + }, + { + "epoch": 30.866754041065967, + "grad_norm": 0.2562827169895172, + "learning_rate": 0.0006, + "loss": 3.7741947174072266, + "step": 2222 + }, + { + "epoch": 30.88073394495413, + "grad_norm": 0.23657815158367157, + "learning_rate": 0.0006, + "loss": 3.746457099914551, + "step": 2223 + }, + { + "epoch": 30.89471384884229, + "grad_norm": 0.2158907800912857, + "learning_rate": 0.0006, + "loss": 3.7821710109710693, + "step": 2224 + }, + { + "epoch": 30.90869375273045, + "grad_norm": 0.22501254081726074, + "learning_rate": 0.0006, + "loss": 3.7528274059295654, + "step": 2225 + }, + { + "epoch": 30.92267365661861, + "grad_norm": 0.20252224802970886, + "learning_rate": 0.0006, + "loss": 3.749418258666992, + "step": 2226 + }, + { + "epoch": 30.936653560506773, + "grad_norm": 0.2067883312702179, + "learning_rate": 0.0006, + "loss": 3.7560606002807617, + "step": 2227 + }, + { + "epoch": 30.950633464394933, + "grad_norm": 0.23104053735733032, + "learning_rate": 0.0006, + "loss": 3.7883846759796143, + "step": 2228 + }, + { + "epoch": 30.964613368283093, + "grad_norm": 0.21476604044437408, + "learning_rate": 0.0006, + "loss": 3.7976977825164795, + "step": 2229 + }, + { + "epoch": 30.978593272171253, + "grad_norm": 0.2130427062511444, + "learning_rate": 0.0006, + "loss": 3.7429304122924805, + "step": 2230 + }, + { + "epoch": 30.992573176059416, + "grad_norm": 0.2047216147184372, + "learning_rate": 0.0006, + "loss": 3.7669787406921387, + "step": 2231 + }, + { + "epoch": 31.0, + "grad_norm": 0.22254081070423126, + "learning_rate": 0.0006, + "loss": 3.7794251441955566, + "step": 2232 + }, + { + "epoch": 31.0, + "eval_loss": 4.039162635803223, + "eval_runtime": 44.9069, + "eval_samples_per_second": 54.379, + "eval_steps_per_second": 3.407, + "step": 2232 + }, + { + "epoch": 31.01397990388816, + "grad_norm": 0.2278132289648056, + "learning_rate": 0.0006, + "loss": 3.7363929748535156, + "step": 2233 + }, + { + "epoch": 31.027959807776323, + "grad_norm": 0.2377072274684906, + "learning_rate": 0.0006, + "loss": 3.72847318649292, + "step": 2234 + }, + { + "epoch": 31.041939711664483, + "grad_norm": 0.23790542781352997, + "learning_rate": 0.0006, + "loss": 3.767193078994751, + "step": 2235 + }, + { + "epoch": 31.055919615552643, + "grad_norm": 0.2587272524833679, + "learning_rate": 0.0006, + "loss": 3.7564640045166016, + "step": 2236 + }, + { + "epoch": 31.069899519440803, + "grad_norm": 0.27550312876701355, + "learning_rate": 0.0006, + "loss": 3.727578639984131, + "step": 2237 + }, + { + "epoch": 31.083879423328966, + "grad_norm": 0.2488662451505661, + "learning_rate": 0.0006, + "loss": 3.7420730590820312, + "step": 2238 + }, + { + "epoch": 31.097859327217126, + "grad_norm": 0.22699029743671417, + "learning_rate": 0.0006, + "loss": 3.7323155403137207, + "step": 2239 + }, + { + "epoch": 31.111839231105286, + "grad_norm": 0.23360148072242737, + "learning_rate": 0.0006, + "loss": 3.719024181365967, + "step": 2240 + }, + { + "epoch": 31.125819134993446, + "grad_norm": 0.24322988092899323, + "learning_rate": 0.0006, + "loss": 3.74485445022583, + "step": 2241 + }, + { + "epoch": 31.13979903888161, + "grad_norm": 0.2474174052476883, + "learning_rate": 0.0006, + "loss": 3.746826171875, + "step": 2242 + }, + { + "epoch": 31.15377894276977, + "grad_norm": 0.2417406439781189, + "learning_rate": 0.0006, + "loss": 3.7285032272338867, + "step": 2243 + }, + { + "epoch": 31.16775884665793, + "grad_norm": 0.2390318512916565, + "learning_rate": 0.0006, + "loss": 3.7464442253112793, + "step": 2244 + }, + { + "epoch": 31.18173875054609, + "grad_norm": 0.21819323301315308, + "learning_rate": 0.0006, + "loss": 3.735110282897949, + "step": 2245 + }, + { + "epoch": 31.195718654434252, + "grad_norm": 0.21953554451465607, + "learning_rate": 0.0006, + "loss": 3.7270030975341797, + "step": 2246 + }, + { + "epoch": 31.209698558322412, + "grad_norm": 0.1930384635925293, + "learning_rate": 0.0006, + "loss": 3.7519941329956055, + "step": 2247 + }, + { + "epoch": 31.22367846221057, + "grad_norm": 0.19799190759658813, + "learning_rate": 0.0006, + "loss": 3.7428221702575684, + "step": 2248 + }, + { + "epoch": 31.23765836609873, + "grad_norm": 0.20948201417922974, + "learning_rate": 0.0006, + "loss": 3.733120918273926, + "step": 2249 + }, + { + "epoch": 31.251638269986895, + "grad_norm": 0.23768769204616547, + "learning_rate": 0.0006, + "loss": 3.7059035301208496, + "step": 2250 + }, + { + "epoch": 31.265618173875055, + "grad_norm": 0.2808842957019806, + "learning_rate": 0.0006, + "loss": 3.7245287895202637, + "step": 2251 + }, + { + "epoch": 31.279598077763215, + "grad_norm": 0.27633124589920044, + "learning_rate": 0.0006, + "loss": 3.7436366081237793, + "step": 2252 + }, + { + "epoch": 31.293577981651374, + "grad_norm": 0.24137185513973236, + "learning_rate": 0.0006, + "loss": 3.7651219367980957, + "step": 2253 + }, + { + "epoch": 31.307557885539538, + "grad_norm": 0.22056810557842255, + "learning_rate": 0.0006, + "loss": 3.7417521476745605, + "step": 2254 + }, + { + "epoch": 31.321537789427698, + "grad_norm": 0.20137323439121246, + "learning_rate": 0.0006, + "loss": 3.750187397003174, + "step": 2255 + }, + { + "epoch": 31.335517693315857, + "grad_norm": 0.2142433375120163, + "learning_rate": 0.0006, + "loss": 3.7292675971984863, + "step": 2256 + }, + { + "epoch": 31.34949759720402, + "grad_norm": 0.21193967759609222, + "learning_rate": 0.0006, + "loss": 3.7459473609924316, + "step": 2257 + }, + { + "epoch": 31.36347750109218, + "grad_norm": 0.21418534219264984, + "learning_rate": 0.0006, + "loss": 3.754359722137451, + "step": 2258 + }, + { + "epoch": 31.37745740498034, + "grad_norm": 0.23507359623908997, + "learning_rate": 0.0006, + "loss": 3.763413906097412, + "step": 2259 + }, + { + "epoch": 31.3914373088685, + "grad_norm": 0.20393887162208557, + "learning_rate": 0.0006, + "loss": 3.73878812789917, + "step": 2260 + }, + { + "epoch": 31.405417212756664, + "grad_norm": 0.21752159297466278, + "learning_rate": 0.0006, + "loss": 3.750549793243408, + "step": 2261 + }, + { + "epoch": 31.419397116644824, + "grad_norm": 0.22629529237747192, + "learning_rate": 0.0006, + "loss": 3.7791430950164795, + "step": 2262 + }, + { + "epoch": 31.433377020532983, + "grad_norm": 0.2114613950252533, + "learning_rate": 0.0006, + "loss": 3.7709264755249023, + "step": 2263 + }, + { + "epoch": 31.447356924421143, + "grad_norm": 0.23241667449474335, + "learning_rate": 0.0006, + "loss": 3.745750665664673, + "step": 2264 + }, + { + "epoch": 31.461336828309307, + "grad_norm": 0.2434246987104416, + "learning_rate": 0.0006, + "loss": 3.769727945327759, + "step": 2265 + }, + { + "epoch": 31.475316732197467, + "grad_norm": 0.247820645570755, + "learning_rate": 0.0006, + "loss": 3.7528204917907715, + "step": 2266 + }, + { + "epoch": 31.489296636085626, + "grad_norm": 0.21287164092063904, + "learning_rate": 0.0006, + "loss": 3.728661060333252, + "step": 2267 + }, + { + "epoch": 31.503276539973786, + "grad_norm": 0.20983846485614777, + "learning_rate": 0.0006, + "loss": 3.7524428367614746, + "step": 2268 + }, + { + "epoch": 31.51725644386195, + "grad_norm": 0.23799288272857666, + "learning_rate": 0.0006, + "loss": 3.7276647090911865, + "step": 2269 + }, + { + "epoch": 31.53123634775011, + "grad_norm": 0.247065007686615, + "learning_rate": 0.0006, + "loss": 3.7506704330444336, + "step": 2270 + }, + { + "epoch": 31.54521625163827, + "grad_norm": 0.20670939981937408, + "learning_rate": 0.0006, + "loss": 3.71852445602417, + "step": 2271 + }, + { + "epoch": 31.55919615552643, + "grad_norm": 0.19463716447353363, + "learning_rate": 0.0006, + "loss": 3.732757568359375, + "step": 2272 + }, + { + "epoch": 31.573176059414592, + "grad_norm": 0.20368841290473938, + "learning_rate": 0.0006, + "loss": 3.746676445007324, + "step": 2273 + }, + { + "epoch": 31.587155963302752, + "grad_norm": 0.19691342115402222, + "learning_rate": 0.0006, + "loss": 3.7535760402679443, + "step": 2274 + }, + { + "epoch": 31.601135867190912, + "grad_norm": 0.2026553899049759, + "learning_rate": 0.0006, + "loss": 3.7406957149505615, + "step": 2275 + }, + { + "epoch": 31.615115771079076, + "grad_norm": 0.21494299173355103, + "learning_rate": 0.0006, + "loss": 3.735888957977295, + "step": 2276 + }, + { + "epoch": 31.629095674967235, + "grad_norm": 0.21644766628742218, + "learning_rate": 0.0006, + "loss": 3.723767042160034, + "step": 2277 + }, + { + "epoch": 31.643075578855395, + "grad_norm": 0.20087581872940063, + "learning_rate": 0.0006, + "loss": 3.7622008323669434, + "step": 2278 + }, + { + "epoch": 31.657055482743555, + "grad_norm": 0.1949695646762848, + "learning_rate": 0.0006, + "loss": 3.7726354598999023, + "step": 2279 + }, + { + "epoch": 31.67103538663172, + "grad_norm": 0.19120797514915466, + "learning_rate": 0.0006, + "loss": 3.7454679012298584, + "step": 2280 + }, + { + "epoch": 31.68501529051988, + "grad_norm": 0.19480115175247192, + "learning_rate": 0.0006, + "loss": 3.743934392929077, + "step": 2281 + }, + { + "epoch": 31.698995194408038, + "grad_norm": 0.1891610324382782, + "learning_rate": 0.0006, + "loss": 3.7724897861480713, + "step": 2282 + }, + { + "epoch": 31.712975098296198, + "grad_norm": 0.18533185124397278, + "learning_rate": 0.0006, + "loss": 3.7556838989257812, + "step": 2283 + }, + { + "epoch": 31.72695500218436, + "grad_norm": 0.20079447329044342, + "learning_rate": 0.0006, + "loss": 3.76758074760437, + "step": 2284 + }, + { + "epoch": 31.74093490607252, + "grad_norm": 0.2103433609008789, + "learning_rate": 0.0006, + "loss": 3.769477367401123, + "step": 2285 + }, + { + "epoch": 31.75491480996068, + "grad_norm": 0.21428923308849335, + "learning_rate": 0.0006, + "loss": 3.7317447662353516, + "step": 2286 + }, + { + "epoch": 31.76889471384884, + "grad_norm": 0.20154133439064026, + "learning_rate": 0.0006, + "loss": 3.749814987182617, + "step": 2287 + }, + { + "epoch": 31.782874617737004, + "grad_norm": 0.18998542428016663, + "learning_rate": 0.0006, + "loss": 3.7655510902404785, + "step": 2288 + }, + { + "epoch": 31.796854521625164, + "grad_norm": 0.2068665474653244, + "learning_rate": 0.0006, + "loss": 3.7375988960266113, + "step": 2289 + }, + { + "epoch": 31.810834425513324, + "grad_norm": 0.22979815304279327, + "learning_rate": 0.0006, + "loss": 3.728095531463623, + "step": 2290 + }, + { + "epoch": 31.824814329401484, + "grad_norm": 0.2378212958574295, + "learning_rate": 0.0006, + "loss": 3.73091459274292, + "step": 2291 + }, + { + "epoch": 31.838794233289647, + "grad_norm": 0.2353672832250595, + "learning_rate": 0.0006, + "loss": 3.7491769790649414, + "step": 2292 + }, + { + "epoch": 31.852774137177807, + "grad_norm": 0.22341586649417877, + "learning_rate": 0.0006, + "loss": 3.777111530303955, + "step": 2293 + }, + { + "epoch": 31.866754041065967, + "grad_norm": 0.20436930656433105, + "learning_rate": 0.0006, + "loss": 3.740997552871704, + "step": 2294 + }, + { + "epoch": 31.88073394495413, + "grad_norm": 0.20836040377616882, + "learning_rate": 0.0006, + "loss": 3.755582571029663, + "step": 2295 + }, + { + "epoch": 31.89471384884229, + "grad_norm": 0.2045193612575531, + "learning_rate": 0.0006, + "loss": 3.7583560943603516, + "step": 2296 + }, + { + "epoch": 31.90869375273045, + "grad_norm": 0.2025591880083084, + "learning_rate": 0.0006, + "loss": 3.773345470428467, + "step": 2297 + }, + { + "epoch": 31.92267365661861, + "grad_norm": 0.20309099555015564, + "learning_rate": 0.0006, + "loss": 3.7392163276672363, + "step": 2298 + }, + { + "epoch": 31.936653560506773, + "grad_norm": 0.2129351645708084, + "learning_rate": 0.0006, + "loss": 3.7801311016082764, + "step": 2299 + }, + { + "epoch": 31.950633464394933, + "grad_norm": 0.19950738549232483, + "learning_rate": 0.0006, + "loss": 3.779261589050293, + "step": 2300 + }, + { + "epoch": 31.964613368283093, + "grad_norm": 0.22837352752685547, + "learning_rate": 0.0006, + "loss": 3.782731294631958, + "step": 2301 + }, + { + "epoch": 31.978593272171253, + "grad_norm": 0.2576889097690582, + "learning_rate": 0.0006, + "loss": 3.7778096199035645, + "step": 2302 + }, + { + "epoch": 31.992573176059416, + "grad_norm": 0.2770138382911682, + "learning_rate": 0.0006, + "loss": 3.735755443572998, + "step": 2303 + }, + { + "epoch": 32.0, + "grad_norm": 0.2632865309715271, + "learning_rate": 0.0006, + "loss": 3.7562808990478516, + "step": 2304 + }, + { + "epoch": 32.0, + "eval_loss": 4.031628608703613, + "eval_runtime": 44.2115, + "eval_samples_per_second": 55.234, + "eval_steps_per_second": 3.461, + "step": 2304 + }, + { + "epoch": 32.01397990388816, + "grad_norm": 0.20234128832817078, + "learning_rate": 0.0006, + "loss": 3.734489917755127, + "step": 2305 + }, + { + "epoch": 32.02795980777632, + "grad_norm": 0.24983637034893036, + "learning_rate": 0.0006, + "loss": 3.7351019382476807, + "step": 2306 + }, + { + "epoch": 32.04193971166448, + "grad_norm": 0.27358478307724, + "learning_rate": 0.0006, + "loss": 3.708712100982666, + "step": 2307 + }, + { + "epoch": 32.05591961555265, + "grad_norm": 0.24693739414215088, + "learning_rate": 0.0006, + "loss": 3.731858491897583, + "step": 2308 + }, + { + "epoch": 32.0698995194408, + "grad_norm": 0.22751131653785706, + "learning_rate": 0.0006, + "loss": 3.7074670791625977, + "step": 2309 + }, + { + "epoch": 32.083879423328966, + "grad_norm": 0.23400720953941345, + "learning_rate": 0.0006, + "loss": 3.714092493057251, + "step": 2310 + }, + { + "epoch": 32.09785932721712, + "grad_norm": 0.20711684226989746, + "learning_rate": 0.0006, + "loss": 3.754727840423584, + "step": 2311 + }, + { + "epoch": 32.111839231105286, + "grad_norm": 0.21589399874210358, + "learning_rate": 0.0006, + "loss": 3.6953847408294678, + "step": 2312 + }, + { + "epoch": 32.12581913499345, + "grad_norm": 0.24575738608837128, + "learning_rate": 0.0006, + "loss": 3.7078802585601807, + "step": 2313 + }, + { + "epoch": 32.139799038881605, + "grad_norm": 0.23152033984661102, + "learning_rate": 0.0006, + "loss": 3.7402305603027344, + "step": 2314 + }, + { + "epoch": 32.15377894276977, + "grad_norm": 0.22639606893062592, + "learning_rate": 0.0006, + "loss": 3.7264223098754883, + "step": 2315 + }, + { + "epoch": 32.16775884665793, + "grad_norm": 0.24701760709285736, + "learning_rate": 0.0006, + "loss": 3.7497639656066895, + "step": 2316 + }, + { + "epoch": 32.18173875054609, + "grad_norm": 0.274832159280777, + "learning_rate": 0.0006, + "loss": 3.7557122707366943, + "step": 2317 + }, + { + "epoch": 32.19571865443425, + "grad_norm": 0.27472418546676636, + "learning_rate": 0.0006, + "loss": 3.6863393783569336, + "step": 2318 + }, + { + "epoch": 32.20969855832241, + "grad_norm": 0.2625530958175659, + "learning_rate": 0.0006, + "loss": 3.7203545570373535, + "step": 2319 + }, + { + "epoch": 32.22367846221057, + "grad_norm": 0.2576068341732025, + "learning_rate": 0.0006, + "loss": 3.734747886657715, + "step": 2320 + }, + { + "epoch": 32.237658366098735, + "grad_norm": 0.25946059823036194, + "learning_rate": 0.0006, + "loss": 3.7501730918884277, + "step": 2321 + }, + { + "epoch": 32.25163826998689, + "grad_norm": 0.2524135410785675, + "learning_rate": 0.0006, + "loss": 3.75177001953125, + "step": 2322 + }, + { + "epoch": 32.265618173875055, + "grad_norm": 0.2568551003932953, + "learning_rate": 0.0006, + "loss": 3.752450704574585, + "step": 2323 + }, + { + "epoch": 32.27959807776322, + "grad_norm": 0.2489749640226364, + "learning_rate": 0.0006, + "loss": 3.711735486984253, + "step": 2324 + }, + { + "epoch": 32.293577981651374, + "grad_norm": 0.2425498366355896, + "learning_rate": 0.0006, + "loss": 3.7004239559173584, + "step": 2325 + }, + { + "epoch": 32.30755788553954, + "grad_norm": 0.24359773099422455, + "learning_rate": 0.0006, + "loss": 3.733870029449463, + "step": 2326 + }, + { + "epoch": 32.3215377894277, + "grad_norm": 0.22314727306365967, + "learning_rate": 0.0006, + "loss": 3.699841022491455, + "step": 2327 + }, + { + "epoch": 32.33551769331586, + "grad_norm": 0.2047620266675949, + "learning_rate": 0.0006, + "loss": 3.732534170150757, + "step": 2328 + }, + { + "epoch": 32.34949759720402, + "grad_norm": 0.24393224716186523, + "learning_rate": 0.0006, + "loss": 3.7200770378112793, + "step": 2329 + }, + { + "epoch": 32.36347750109218, + "grad_norm": 0.23884256184101105, + "learning_rate": 0.0006, + "loss": 3.722318410873413, + "step": 2330 + }, + { + "epoch": 32.37745740498034, + "grad_norm": 0.23262189328670502, + "learning_rate": 0.0006, + "loss": 3.759033203125, + "step": 2331 + }, + { + "epoch": 32.391437308868504, + "grad_norm": 0.22542893886566162, + "learning_rate": 0.0006, + "loss": 3.729198694229126, + "step": 2332 + }, + { + "epoch": 32.40541721275666, + "grad_norm": 0.22479060292243958, + "learning_rate": 0.0006, + "loss": 3.7298169136047363, + "step": 2333 + }, + { + "epoch": 32.419397116644824, + "grad_norm": 0.21571804583072662, + "learning_rate": 0.0006, + "loss": 3.699937343597412, + "step": 2334 + }, + { + "epoch": 32.43337702053299, + "grad_norm": 0.20804545283317566, + "learning_rate": 0.0006, + "loss": 3.7495696544647217, + "step": 2335 + }, + { + "epoch": 32.44735692442114, + "grad_norm": 0.22751706838607788, + "learning_rate": 0.0006, + "loss": 3.7369821071624756, + "step": 2336 + }, + { + "epoch": 32.46133682830931, + "grad_norm": 0.2326795756816864, + "learning_rate": 0.0006, + "loss": 3.7636334896087646, + "step": 2337 + }, + { + "epoch": 32.47531673219746, + "grad_norm": 0.19971159100532532, + "learning_rate": 0.0006, + "loss": 3.72151517868042, + "step": 2338 + }, + { + "epoch": 32.489296636085626, + "grad_norm": 0.21078036725521088, + "learning_rate": 0.0006, + "loss": 3.7050065994262695, + "step": 2339 + }, + { + "epoch": 32.50327653997379, + "grad_norm": 0.22198088467121124, + "learning_rate": 0.0006, + "loss": 3.7654409408569336, + "step": 2340 + }, + { + "epoch": 32.517256443861946, + "grad_norm": 0.20995207130908966, + "learning_rate": 0.0006, + "loss": 3.7516250610351562, + "step": 2341 + }, + { + "epoch": 32.53123634775011, + "grad_norm": 0.20757141709327698, + "learning_rate": 0.0006, + "loss": 3.7412633895874023, + "step": 2342 + }, + { + "epoch": 32.54521625163827, + "grad_norm": 0.20053881406784058, + "learning_rate": 0.0006, + "loss": 3.7477493286132812, + "step": 2343 + }, + { + "epoch": 32.55919615552643, + "grad_norm": 0.20223091542720795, + "learning_rate": 0.0006, + "loss": 3.7149064540863037, + "step": 2344 + }, + { + "epoch": 32.57317605941459, + "grad_norm": 0.20179468393325806, + "learning_rate": 0.0006, + "loss": 3.70635724067688, + "step": 2345 + }, + { + "epoch": 32.58715596330275, + "grad_norm": 0.19670480489730835, + "learning_rate": 0.0006, + "loss": 3.7276744842529297, + "step": 2346 + }, + { + "epoch": 32.60113586719091, + "grad_norm": 0.1992012858390808, + "learning_rate": 0.0006, + "loss": 3.7659356594085693, + "step": 2347 + }, + { + "epoch": 32.615115771079076, + "grad_norm": 0.20124201476573944, + "learning_rate": 0.0006, + "loss": 3.722212791442871, + "step": 2348 + }, + { + "epoch": 32.62909567496723, + "grad_norm": 0.21972708404064178, + "learning_rate": 0.0006, + "loss": 3.751830577850342, + "step": 2349 + }, + { + "epoch": 32.643075578855395, + "grad_norm": 0.20454947650432587, + "learning_rate": 0.0006, + "loss": 3.7196669578552246, + "step": 2350 + }, + { + "epoch": 32.65705548274356, + "grad_norm": 0.1783330887556076, + "learning_rate": 0.0006, + "loss": 3.721461772918701, + "step": 2351 + }, + { + "epoch": 32.671035386631715, + "grad_norm": 0.2027900367975235, + "learning_rate": 0.0006, + "loss": 3.753718614578247, + "step": 2352 + }, + { + "epoch": 32.68501529051988, + "grad_norm": 0.21232381463050842, + "learning_rate": 0.0006, + "loss": 3.732736349105835, + "step": 2353 + }, + { + "epoch": 32.69899519440804, + "grad_norm": 0.2214568555355072, + "learning_rate": 0.0006, + "loss": 3.7250165939331055, + "step": 2354 + }, + { + "epoch": 32.7129750982962, + "grad_norm": 0.2626485228538513, + "learning_rate": 0.0006, + "loss": 3.72263503074646, + "step": 2355 + }, + { + "epoch": 32.72695500218436, + "grad_norm": 0.30096277594566345, + "learning_rate": 0.0006, + "loss": 3.7599854469299316, + "step": 2356 + }, + { + "epoch": 32.74093490607252, + "grad_norm": 0.3374342620372772, + "learning_rate": 0.0006, + "loss": 3.7493844032287598, + "step": 2357 + }, + { + "epoch": 32.75491480996068, + "grad_norm": 0.3051377534866333, + "learning_rate": 0.0006, + "loss": 3.7515692710876465, + "step": 2358 + }, + { + "epoch": 32.768894713848844, + "grad_norm": 0.2130587249994278, + "learning_rate": 0.0006, + "loss": 3.751307964324951, + "step": 2359 + }, + { + "epoch": 32.782874617737, + "grad_norm": 0.25198230147361755, + "learning_rate": 0.0006, + "loss": 3.7500064373016357, + "step": 2360 + }, + { + "epoch": 32.796854521625164, + "grad_norm": 0.27613863348960876, + "learning_rate": 0.0006, + "loss": 3.7257039546966553, + "step": 2361 + }, + { + "epoch": 32.81083442551333, + "grad_norm": 0.23749367892742157, + "learning_rate": 0.0006, + "loss": 3.778343439102173, + "step": 2362 + }, + { + "epoch": 32.824814329401484, + "grad_norm": 0.2063702642917633, + "learning_rate": 0.0006, + "loss": 3.7493772506713867, + "step": 2363 + }, + { + "epoch": 32.83879423328965, + "grad_norm": 0.21169374883174896, + "learning_rate": 0.0006, + "loss": 3.722567081451416, + "step": 2364 + }, + { + "epoch": 32.8527741371778, + "grad_norm": 0.23291490972042084, + "learning_rate": 0.0006, + "loss": 3.7555532455444336, + "step": 2365 + }, + { + "epoch": 32.86675404106597, + "grad_norm": 0.21486155688762665, + "learning_rate": 0.0006, + "loss": 3.7401528358459473, + "step": 2366 + }, + { + "epoch": 32.88073394495413, + "grad_norm": 0.2296247035264969, + "learning_rate": 0.0006, + "loss": 3.7867965698242188, + "step": 2367 + }, + { + "epoch": 32.89471384884229, + "grad_norm": 0.2335108071565628, + "learning_rate": 0.0006, + "loss": 3.768036365509033, + "step": 2368 + }, + { + "epoch": 32.90869375273045, + "grad_norm": 0.23921863734722137, + "learning_rate": 0.0006, + "loss": 3.725252151489258, + "step": 2369 + }, + { + "epoch": 32.92267365661861, + "grad_norm": 0.20303526520729065, + "learning_rate": 0.0006, + "loss": 3.7806248664855957, + "step": 2370 + }, + { + "epoch": 32.93665356050677, + "grad_norm": 0.19293150305747986, + "learning_rate": 0.0006, + "loss": 3.759281873703003, + "step": 2371 + }, + { + "epoch": 32.95063346439493, + "grad_norm": 0.20609107613563538, + "learning_rate": 0.0006, + "loss": 3.764190196990967, + "step": 2372 + }, + { + "epoch": 32.964613368283096, + "grad_norm": 0.2014189213514328, + "learning_rate": 0.0006, + "loss": 3.7365214824676514, + "step": 2373 + }, + { + "epoch": 32.97859327217125, + "grad_norm": 0.22045451402664185, + "learning_rate": 0.0006, + "loss": 3.7435812950134277, + "step": 2374 + }, + { + "epoch": 32.992573176059416, + "grad_norm": 0.24228639900684357, + "learning_rate": 0.0006, + "loss": 3.751309394836426, + "step": 2375 + }, + { + "epoch": 33.0, + "grad_norm": 0.2645106613636017, + "learning_rate": 0.0006, + "loss": 3.7629928588867188, + "step": 2376 + }, + { + "epoch": 33.0, + "eval_loss": 4.026789665222168, + "eval_runtime": 44.9957, + "eval_samples_per_second": 54.272, + "eval_steps_per_second": 3.4, + "step": 2376 + }, + { + "epoch": 33.01397990388816, + "grad_norm": 0.21402551233768463, + "learning_rate": 0.0006, + "loss": 3.72019100189209, + "step": 2377 + }, + { + "epoch": 33.02795980777632, + "grad_norm": 0.23886585235595703, + "learning_rate": 0.0006, + "loss": 3.687084674835205, + "step": 2378 + }, + { + "epoch": 33.04193971166448, + "grad_norm": 0.29936572909355164, + "learning_rate": 0.0006, + "loss": 3.697310447692871, + "step": 2379 + }, + { + "epoch": 33.05591961555265, + "grad_norm": 0.30007585883140564, + "learning_rate": 0.0006, + "loss": 3.6913352012634277, + "step": 2380 + }, + { + "epoch": 33.0698995194408, + "grad_norm": 0.26594656705856323, + "learning_rate": 0.0006, + "loss": 3.740802526473999, + "step": 2381 + }, + { + "epoch": 33.083879423328966, + "grad_norm": 0.2658730447292328, + "learning_rate": 0.0006, + "loss": 3.692746162414551, + "step": 2382 + }, + { + "epoch": 33.09785932721712, + "grad_norm": 0.26755523681640625, + "learning_rate": 0.0006, + "loss": 3.7534420490264893, + "step": 2383 + }, + { + "epoch": 33.111839231105286, + "grad_norm": 0.23070940375328064, + "learning_rate": 0.0006, + "loss": 3.717876672744751, + "step": 2384 + }, + { + "epoch": 33.12581913499345, + "grad_norm": 0.2476235181093216, + "learning_rate": 0.0006, + "loss": 3.7072248458862305, + "step": 2385 + }, + { + "epoch": 33.139799038881605, + "grad_norm": 0.2454477846622467, + "learning_rate": 0.0006, + "loss": 3.729762077331543, + "step": 2386 + }, + { + "epoch": 33.15377894276977, + "grad_norm": 0.24090935289859772, + "learning_rate": 0.0006, + "loss": 3.721374988555908, + "step": 2387 + }, + { + "epoch": 33.16775884665793, + "grad_norm": 0.2440263032913208, + "learning_rate": 0.0006, + "loss": 3.730433464050293, + "step": 2388 + }, + { + "epoch": 33.18173875054609, + "grad_norm": 0.21699118614196777, + "learning_rate": 0.0006, + "loss": 3.724730968475342, + "step": 2389 + }, + { + "epoch": 33.19571865443425, + "grad_norm": 0.2302001267671585, + "learning_rate": 0.0006, + "loss": 3.69376277923584, + "step": 2390 + }, + { + "epoch": 33.20969855832241, + "grad_norm": 0.24707409739494324, + "learning_rate": 0.0006, + "loss": 3.705653667449951, + "step": 2391 + }, + { + "epoch": 33.22367846221057, + "grad_norm": 0.22896641492843628, + "learning_rate": 0.0006, + "loss": 3.747000217437744, + "step": 2392 + }, + { + "epoch": 33.237658366098735, + "grad_norm": 0.2278730720281601, + "learning_rate": 0.0006, + "loss": 3.733464241027832, + "step": 2393 + }, + { + "epoch": 33.25163826998689, + "grad_norm": 0.23909862339496613, + "learning_rate": 0.0006, + "loss": 3.733661413192749, + "step": 2394 + }, + { + "epoch": 33.265618173875055, + "grad_norm": 0.2349950075149536, + "learning_rate": 0.0006, + "loss": 3.7337965965270996, + "step": 2395 + }, + { + "epoch": 33.27959807776322, + "grad_norm": 0.22655968368053436, + "learning_rate": 0.0006, + "loss": 3.70503306388855, + "step": 2396 + }, + { + "epoch": 33.293577981651374, + "grad_norm": 0.22167043387889862, + "learning_rate": 0.0006, + "loss": 3.738797903060913, + "step": 2397 + }, + { + "epoch": 33.30755788553954, + "grad_norm": 0.2278883010149002, + "learning_rate": 0.0006, + "loss": 3.712550640106201, + "step": 2398 + }, + { + "epoch": 33.3215377894277, + "grad_norm": 0.2220565229654312, + "learning_rate": 0.0006, + "loss": 3.7278006076812744, + "step": 2399 + }, + { + "epoch": 33.33551769331586, + "grad_norm": 0.21888740360736847, + "learning_rate": 0.0006, + "loss": 3.72243595123291, + "step": 2400 + }, + { + "epoch": 33.34949759720402, + "grad_norm": 0.21587581932544708, + "learning_rate": 0.0006, + "loss": 3.7177581787109375, + "step": 2401 + }, + { + "epoch": 33.36347750109218, + "grad_norm": 0.1923578530550003, + "learning_rate": 0.0006, + "loss": 3.711294651031494, + "step": 2402 + }, + { + "epoch": 33.37745740498034, + "grad_norm": 0.1994934380054474, + "learning_rate": 0.0006, + "loss": 3.762061595916748, + "step": 2403 + }, + { + "epoch": 33.391437308868504, + "grad_norm": 0.20074427127838135, + "learning_rate": 0.0006, + "loss": 3.708559036254883, + "step": 2404 + }, + { + "epoch": 33.40541721275666, + "grad_norm": 0.21349482238292694, + "learning_rate": 0.0006, + "loss": 3.7089147567749023, + "step": 2405 + }, + { + "epoch": 33.419397116644824, + "grad_norm": 0.25523608922958374, + "learning_rate": 0.0006, + "loss": 3.7241058349609375, + "step": 2406 + }, + { + "epoch": 33.43337702053299, + "grad_norm": 0.27654796838760376, + "learning_rate": 0.0006, + "loss": 3.723618984222412, + "step": 2407 + }, + { + "epoch": 33.44735692442114, + "grad_norm": 0.2651479244232178, + "learning_rate": 0.0006, + "loss": 3.7367782592773438, + "step": 2408 + }, + { + "epoch": 33.46133682830931, + "grad_norm": 0.23403556644916534, + "learning_rate": 0.0006, + "loss": 3.7198312282562256, + "step": 2409 + }, + { + "epoch": 33.47531673219746, + "grad_norm": 0.20970726013183594, + "learning_rate": 0.0006, + "loss": 3.7088186740875244, + "step": 2410 + }, + { + "epoch": 33.489296636085626, + "grad_norm": 0.18532544374465942, + "learning_rate": 0.0006, + "loss": 3.7162208557128906, + "step": 2411 + }, + { + "epoch": 33.50327653997379, + "grad_norm": 0.19590279459953308, + "learning_rate": 0.0006, + "loss": 3.766357898712158, + "step": 2412 + }, + { + "epoch": 33.517256443861946, + "grad_norm": 0.203349307179451, + "learning_rate": 0.0006, + "loss": 3.732177257537842, + "step": 2413 + }, + { + "epoch": 33.53123634775011, + "grad_norm": 0.2015952616930008, + "learning_rate": 0.0006, + "loss": 3.741609573364258, + "step": 2414 + }, + { + "epoch": 33.54521625163827, + "grad_norm": 0.20024161040782928, + "learning_rate": 0.0006, + "loss": 3.6894431114196777, + "step": 2415 + }, + { + "epoch": 33.55919615552643, + "grad_norm": 0.20932617783546448, + "learning_rate": 0.0006, + "loss": 3.721979856491089, + "step": 2416 + }, + { + "epoch": 33.57317605941459, + "grad_norm": 0.22069773077964783, + "learning_rate": 0.0006, + "loss": 3.712203025817871, + "step": 2417 + }, + { + "epoch": 33.58715596330275, + "grad_norm": 0.22341343760490417, + "learning_rate": 0.0006, + "loss": 3.7469263076782227, + "step": 2418 + }, + { + "epoch": 33.60113586719091, + "grad_norm": 0.21758507192134857, + "learning_rate": 0.0006, + "loss": 3.721778392791748, + "step": 2419 + }, + { + "epoch": 33.615115771079076, + "grad_norm": 0.20480088889598846, + "learning_rate": 0.0006, + "loss": 3.743570327758789, + "step": 2420 + }, + { + "epoch": 33.62909567496723, + "grad_norm": 0.23068399727344513, + "learning_rate": 0.0006, + "loss": 3.7203001976013184, + "step": 2421 + }, + { + "epoch": 33.643075578855395, + "grad_norm": 0.2526263892650604, + "learning_rate": 0.0006, + "loss": 3.7336440086364746, + "step": 2422 + }, + { + "epoch": 33.65705548274356, + "grad_norm": 0.218627467751503, + "learning_rate": 0.0006, + "loss": 3.730762243270874, + "step": 2423 + }, + { + "epoch": 33.671035386631715, + "grad_norm": 0.21883417665958405, + "learning_rate": 0.0006, + "loss": 3.749356508255005, + "step": 2424 + }, + { + "epoch": 33.68501529051988, + "grad_norm": 0.22885626554489136, + "learning_rate": 0.0006, + "loss": 3.7426199913024902, + "step": 2425 + }, + { + "epoch": 33.69899519440804, + "grad_norm": 0.23709580302238464, + "learning_rate": 0.0006, + "loss": 3.691652774810791, + "step": 2426 + }, + { + "epoch": 33.7129750982962, + "grad_norm": 0.2258225381374359, + "learning_rate": 0.0006, + "loss": 3.7368886470794678, + "step": 2427 + }, + { + "epoch": 33.72695500218436, + "grad_norm": 0.1993306577205658, + "learning_rate": 0.0006, + "loss": 3.722733497619629, + "step": 2428 + }, + { + "epoch": 33.74093490607252, + "grad_norm": 0.20307473838329315, + "learning_rate": 0.0006, + "loss": 3.7507500648498535, + "step": 2429 + }, + { + "epoch": 33.75491480996068, + "grad_norm": 0.20076696574687958, + "learning_rate": 0.0006, + "loss": 3.6896910667419434, + "step": 2430 + }, + { + "epoch": 33.768894713848844, + "grad_norm": 0.21118830144405365, + "learning_rate": 0.0006, + "loss": 3.7176647186279297, + "step": 2431 + }, + { + "epoch": 33.782874617737, + "grad_norm": 0.21605782210826874, + "learning_rate": 0.0006, + "loss": 3.7423641681671143, + "step": 2432 + }, + { + "epoch": 33.796854521625164, + "grad_norm": 0.22233152389526367, + "learning_rate": 0.0006, + "loss": 3.7296109199523926, + "step": 2433 + }, + { + "epoch": 33.81083442551333, + "grad_norm": 0.2253616899251938, + "learning_rate": 0.0006, + "loss": 3.7095072269439697, + "step": 2434 + }, + { + "epoch": 33.824814329401484, + "grad_norm": 0.2105807662010193, + "learning_rate": 0.0006, + "loss": 3.760921001434326, + "step": 2435 + }, + { + "epoch": 33.83879423328965, + "grad_norm": 0.20413213968276978, + "learning_rate": 0.0006, + "loss": 3.7356553077697754, + "step": 2436 + }, + { + "epoch": 33.8527741371778, + "grad_norm": 0.19781213998794556, + "learning_rate": 0.0006, + "loss": 3.726787567138672, + "step": 2437 + }, + { + "epoch": 33.86675404106597, + "grad_norm": 0.199616938829422, + "learning_rate": 0.0006, + "loss": 3.7200419902801514, + "step": 2438 + }, + { + "epoch": 33.88073394495413, + "grad_norm": 0.19702564179897308, + "learning_rate": 0.0006, + "loss": 3.714287281036377, + "step": 2439 + }, + { + "epoch": 33.89471384884229, + "grad_norm": 0.19456833600997925, + "learning_rate": 0.0006, + "loss": 3.739231586456299, + "step": 2440 + }, + { + "epoch": 33.90869375273045, + "grad_norm": 0.1890697181224823, + "learning_rate": 0.0006, + "loss": 3.7088429927825928, + "step": 2441 + }, + { + "epoch": 33.92267365661861, + "grad_norm": 0.1845911741256714, + "learning_rate": 0.0006, + "loss": 3.760782241821289, + "step": 2442 + }, + { + "epoch": 33.93665356050677, + "grad_norm": 0.19045902788639069, + "learning_rate": 0.0006, + "loss": 3.736957311630249, + "step": 2443 + }, + { + "epoch": 33.95063346439493, + "grad_norm": 0.1934187412261963, + "learning_rate": 0.0006, + "loss": 3.756351947784424, + "step": 2444 + }, + { + "epoch": 33.964613368283096, + "grad_norm": 0.19774580001831055, + "learning_rate": 0.0006, + "loss": 3.7332229614257812, + "step": 2445 + }, + { + "epoch": 33.97859327217125, + "grad_norm": 0.20653048157691956, + "learning_rate": 0.0006, + "loss": 3.7112321853637695, + "step": 2446 + }, + { + "epoch": 33.992573176059416, + "grad_norm": 0.18618541955947876, + "learning_rate": 0.0006, + "loss": 3.735710620880127, + "step": 2447 + }, + { + "epoch": 34.0, + "grad_norm": 0.22846414148807526, + "learning_rate": 0.0006, + "loss": 3.739706039428711, + "step": 2448 + }, + { + "epoch": 34.0, + "eval_loss": 4.0099663734436035, + "eval_runtime": 45.2096, + "eval_samples_per_second": 54.015, + "eval_steps_per_second": 3.384, + "step": 2448 + }, + { + "epoch": 34.01397990388816, + "grad_norm": 0.20987462997436523, + "learning_rate": 0.0006, + "loss": 3.6798832416534424, + "step": 2449 + }, + { + "epoch": 34.02795980777632, + "grad_norm": 0.2230423390865326, + "learning_rate": 0.0006, + "loss": 3.7157368659973145, + "step": 2450 + }, + { + "epoch": 34.04193971166448, + "grad_norm": 0.24115242063999176, + "learning_rate": 0.0006, + "loss": 3.696037769317627, + "step": 2451 + }, + { + "epoch": 34.05591961555265, + "grad_norm": 0.24499665200710297, + "learning_rate": 0.0006, + "loss": 3.695420742034912, + "step": 2452 + }, + { + "epoch": 34.0698995194408, + "grad_norm": 0.23336757719516754, + "learning_rate": 0.0006, + "loss": 3.7252023220062256, + "step": 2453 + }, + { + "epoch": 34.083879423328966, + "grad_norm": 0.23716159164905548, + "learning_rate": 0.0006, + "loss": 3.714542865753174, + "step": 2454 + }, + { + "epoch": 34.09785932721712, + "grad_norm": 0.2305644154548645, + "learning_rate": 0.0006, + "loss": 3.6989386081695557, + "step": 2455 + }, + { + "epoch": 34.111839231105286, + "grad_norm": 0.2281671017408371, + "learning_rate": 0.0006, + "loss": 3.6952829360961914, + "step": 2456 + }, + { + "epoch": 34.12581913499345, + "grad_norm": 0.21031132340431213, + "learning_rate": 0.0006, + "loss": 3.7337589263916016, + "step": 2457 + }, + { + "epoch": 34.139799038881605, + "grad_norm": 0.2233671098947525, + "learning_rate": 0.0006, + "loss": 3.6923675537109375, + "step": 2458 + }, + { + "epoch": 34.15377894276977, + "grad_norm": 0.22766625881195068, + "learning_rate": 0.0006, + "loss": 3.70849609375, + "step": 2459 + }, + { + "epoch": 34.16775884665793, + "grad_norm": 0.22433766722679138, + "learning_rate": 0.0006, + "loss": 3.718319892883301, + "step": 2460 + }, + { + "epoch": 34.18173875054609, + "grad_norm": 0.20621491968631744, + "learning_rate": 0.0006, + "loss": 3.6874704360961914, + "step": 2461 + }, + { + "epoch": 34.19571865443425, + "grad_norm": 0.21353304386138916, + "learning_rate": 0.0006, + "loss": 3.663358688354492, + "step": 2462 + }, + { + "epoch": 34.20969855832241, + "grad_norm": 0.20652951300144196, + "learning_rate": 0.0006, + "loss": 3.718107223510742, + "step": 2463 + }, + { + "epoch": 34.22367846221057, + "grad_norm": 0.19780176877975464, + "learning_rate": 0.0006, + "loss": 3.7255396842956543, + "step": 2464 + }, + { + "epoch": 34.237658366098735, + "grad_norm": 0.20636138319969177, + "learning_rate": 0.0006, + "loss": 3.696850538253784, + "step": 2465 + }, + { + "epoch": 34.25163826998689, + "grad_norm": 0.23691460490226746, + "learning_rate": 0.0006, + "loss": 3.687997341156006, + "step": 2466 + }, + { + "epoch": 34.265618173875055, + "grad_norm": 0.2380511611700058, + "learning_rate": 0.0006, + "loss": 3.716610908508301, + "step": 2467 + }, + { + "epoch": 34.27959807776322, + "grad_norm": 0.21508945524692535, + "learning_rate": 0.0006, + "loss": 3.6993470191955566, + "step": 2468 + }, + { + "epoch": 34.293577981651374, + "grad_norm": 0.20441125333309174, + "learning_rate": 0.0006, + "loss": 3.7194275856018066, + "step": 2469 + }, + { + "epoch": 34.30755788553954, + "grad_norm": 0.19704242050647736, + "learning_rate": 0.0006, + "loss": 3.675929546356201, + "step": 2470 + }, + { + "epoch": 34.3215377894277, + "grad_norm": 0.1918456256389618, + "learning_rate": 0.0006, + "loss": 3.7189574241638184, + "step": 2471 + }, + { + "epoch": 34.33551769331586, + "grad_norm": 0.19687092304229736, + "learning_rate": 0.0006, + "loss": 3.725809335708618, + "step": 2472 + }, + { + "epoch": 34.34949759720402, + "grad_norm": 0.2048639953136444, + "learning_rate": 0.0006, + "loss": 3.7461748123168945, + "step": 2473 + }, + { + "epoch": 34.36347750109218, + "grad_norm": 0.21086618304252625, + "learning_rate": 0.0006, + "loss": 3.6849746704101562, + "step": 2474 + }, + { + "epoch": 34.37745740498034, + "grad_norm": 0.2172154039144516, + "learning_rate": 0.0006, + "loss": 3.7379322052001953, + "step": 2475 + }, + { + "epoch": 34.391437308868504, + "grad_norm": 0.22725504636764526, + "learning_rate": 0.0006, + "loss": 3.7341527938842773, + "step": 2476 + }, + { + "epoch": 34.40541721275666, + "grad_norm": 0.22309242188930511, + "learning_rate": 0.0006, + "loss": 3.724946975708008, + "step": 2477 + }, + { + "epoch": 34.419397116644824, + "grad_norm": 0.25252285599708557, + "learning_rate": 0.0006, + "loss": 3.710257053375244, + "step": 2478 + }, + { + "epoch": 34.43337702053299, + "grad_norm": 0.2549746334552765, + "learning_rate": 0.0006, + "loss": 3.7105040550231934, + "step": 2479 + }, + { + "epoch": 34.44735692442114, + "grad_norm": 0.22544030845165253, + "learning_rate": 0.0006, + "loss": 3.7340707778930664, + "step": 2480 + }, + { + "epoch": 34.46133682830931, + "grad_norm": 0.22275063395500183, + "learning_rate": 0.0006, + "loss": 3.7141473293304443, + "step": 2481 + }, + { + "epoch": 34.47531673219746, + "grad_norm": 0.25373485684394836, + "learning_rate": 0.0006, + "loss": 3.7014691829681396, + "step": 2482 + }, + { + "epoch": 34.489296636085626, + "grad_norm": 0.2573327124118805, + "learning_rate": 0.0006, + "loss": 3.682562828063965, + "step": 2483 + }, + { + "epoch": 34.50327653997379, + "grad_norm": 0.2452341616153717, + "learning_rate": 0.0006, + "loss": 3.757261276245117, + "step": 2484 + }, + { + "epoch": 34.517256443861946, + "grad_norm": 0.2477131187915802, + "learning_rate": 0.0006, + "loss": 3.7216877937316895, + "step": 2485 + }, + { + "epoch": 34.53123634775011, + "grad_norm": 0.24740098416805267, + "learning_rate": 0.0006, + "loss": 3.705704927444458, + "step": 2486 + }, + { + "epoch": 34.54521625163827, + "grad_norm": 0.27306219935417175, + "learning_rate": 0.0006, + "loss": 3.7014641761779785, + "step": 2487 + }, + { + "epoch": 34.55919615552643, + "grad_norm": 0.26376286149024963, + "learning_rate": 0.0006, + "loss": 3.686056137084961, + "step": 2488 + }, + { + "epoch": 34.57317605941459, + "grad_norm": 0.2796899378299713, + "learning_rate": 0.0006, + "loss": 3.7171077728271484, + "step": 2489 + }, + { + "epoch": 34.58715596330275, + "grad_norm": 0.24279902875423431, + "learning_rate": 0.0006, + "loss": 3.7448348999023438, + "step": 2490 + }, + { + "epoch": 34.60113586719091, + "grad_norm": 0.22772833704948425, + "learning_rate": 0.0006, + "loss": 3.7028117179870605, + "step": 2491 + }, + { + "epoch": 34.615115771079076, + "grad_norm": 0.22157910466194153, + "learning_rate": 0.0006, + "loss": 3.750023603439331, + "step": 2492 + }, + { + "epoch": 34.62909567496723, + "grad_norm": 0.24342703819274902, + "learning_rate": 0.0006, + "loss": 3.7181010246276855, + "step": 2493 + }, + { + "epoch": 34.643075578855395, + "grad_norm": 0.2554340362548828, + "learning_rate": 0.0006, + "loss": 3.6994080543518066, + "step": 2494 + }, + { + "epoch": 34.65705548274356, + "grad_norm": 0.21296930313110352, + "learning_rate": 0.0006, + "loss": 3.7534523010253906, + "step": 2495 + }, + { + "epoch": 34.671035386631715, + "grad_norm": 0.19117674231529236, + "learning_rate": 0.0006, + "loss": 3.7267889976501465, + "step": 2496 + }, + { + "epoch": 34.68501529051988, + "grad_norm": 0.2306399643421173, + "learning_rate": 0.0006, + "loss": 3.723212242126465, + "step": 2497 + }, + { + "epoch": 34.69899519440804, + "grad_norm": 0.23063263297080994, + "learning_rate": 0.0006, + "loss": 3.730070114135742, + "step": 2498 + }, + { + "epoch": 34.7129750982962, + "grad_norm": 0.19422881305217743, + "learning_rate": 0.0006, + "loss": 3.694833755493164, + "step": 2499 + }, + { + "epoch": 34.72695500218436, + "grad_norm": 0.20246362686157227, + "learning_rate": 0.0006, + "loss": 3.71140718460083, + "step": 2500 + }, + { + "epoch": 34.74093490607252, + "grad_norm": 0.1942741572856903, + "learning_rate": 0.0006, + "loss": 3.7530534267425537, + "step": 2501 + }, + { + "epoch": 34.75491480996068, + "grad_norm": 0.19686029851436615, + "learning_rate": 0.0006, + "loss": 3.7059555053710938, + "step": 2502 + }, + { + "epoch": 34.768894713848844, + "grad_norm": 0.20120355486869812, + "learning_rate": 0.0006, + "loss": 3.7271084785461426, + "step": 2503 + }, + { + "epoch": 34.782874617737, + "grad_norm": 0.20880399644374847, + "learning_rate": 0.0006, + "loss": 3.712137460708618, + "step": 2504 + }, + { + "epoch": 34.796854521625164, + "grad_norm": 0.22139988839626312, + "learning_rate": 0.0006, + "loss": 3.731245517730713, + "step": 2505 + }, + { + "epoch": 34.81083442551333, + "grad_norm": 0.22756224870681763, + "learning_rate": 0.0006, + "loss": 3.708987236022949, + "step": 2506 + }, + { + "epoch": 34.824814329401484, + "grad_norm": 0.22332409024238586, + "learning_rate": 0.0006, + "loss": 3.7365565299987793, + "step": 2507 + }, + { + "epoch": 34.83879423328965, + "grad_norm": 0.19599054753780365, + "learning_rate": 0.0006, + "loss": 3.7266454696655273, + "step": 2508 + }, + { + "epoch": 34.8527741371778, + "grad_norm": 0.19843019545078278, + "learning_rate": 0.0006, + "loss": 3.7225422859191895, + "step": 2509 + }, + { + "epoch": 34.86675404106597, + "grad_norm": 0.20147928595542908, + "learning_rate": 0.0006, + "loss": 3.7282514572143555, + "step": 2510 + }, + { + "epoch": 34.88073394495413, + "grad_norm": 0.19489876925945282, + "learning_rate": 0.0006, + "loss": 3.694852113723755, + "step": 2511 + }, + { + "epoch": 34.89471384884229, + "grad_norm": 0.20680078864097595, + "learning_rate": 0.0006, + "loss": 3.74678635597229, + "step": 2512 + }, + { + "epoch": 34.90869375273045, + "grad_norm": 0.2233233004808426, + "learning_rate": 0.0006, + "loss": 3.726475238800049, + "step": 2513 + }, + { + "epoch": 34.92267365661861, + "grad_norm": 0.20702993869781494, + "learning_rate": 0.0006, + "loss": 3.6946351528167725, + "step": 2514 + }, + { + "epoch": 34.93665356050677, + "grad_norm": 0.2081725299358368, + "learning_rate": 0.0006, + "loss": 3.7101621627807617, + "step": 2515 + }, + { + "epoch": 34.95063346439493, + "grad_norm": 0.20551837980747223, + "learning_rate": 0.0006, + "loss": 3.7060177326202393, + "step": 2516 + }, + { + "epoch": 34.964613368283096, + "grad_norm": 0.2106839418411255, + "learning_rate": 0.0006, + "loss": 3.7460474967956543, + "step": 2517 + }, + { + "epoch": 34.97859327217125, + "grad_norm": 0.18512766063213348, + "learning_rate": 0.0006, + "loss": 3.719280242919922, + "step": 2518 + }, + { + "epoch": 34.992573176059416, + "grad_norm": 0.1802142709493637, + "learning_rate": 0.0006, + "loss": 3.698255777359009, + "step": 2519 + }, + { + "epoch": 35.0, + "grad_norm": 0.2028084248304367, + "learning_rate": 0.0006, + "loss": 3.711136817932129, + "step": 2520 + }, + { + "epoch": 35.0, + "eval_loss": 4.006688117980957, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 2520 + }, + { + "epoch": 35.01397990388816, + "grad_norm": 0.1973012387752533, + "learning_rate": 0.0006, + "loss": 3.7108325958251953, + "step": 2521 + }, + { + "epoch": 35.02795980777632, + "grad_norm": 0.23763646185398102, + "learning_rate": 0.0006, + "loss": 3.675785541534424, + "step": 2522 + }, + { + "epoch": 35.04193971166448, + "grad_norm": 0.24403199553489685, + "learning_rate": 0.0006, + "loss": 3.7034249305725098, + "step": 2523 + }, + { + "epoch": 35.05591961555265, + "grad_norm": 0.19050131738185883, + "learning_rate": 0.0006, + "loss": 3.6984221935272217, + "step": 2524 + }, + { + "epoch": 35.0698995194408, + "grad_norm": 0.21389710903167725, + "learning_rate": 0.0006, + "loss": 3.6641085147857666, + "step": 2525 + }, + { + "epoch": 35.083879423328966, + "grad_norm": 0.23103152215480804, + "learning_rate": 0.0006, + "loss": 3.722912311553955, + "step": 2526 + }, + { + "epoch": 35.09785932721712, + "grad_norm": 0.2197326272726059, + "learning_rate": 0.0006, + "loss": 3.696568727493286, + "step": 2527 + }, + { + "epoch": 35.111839231105286, + "grad_norm": 0.20877327024936676, + "learning_rate": 0.0006, + "loss": 3.666700601577759, + "step": 2528 + }, + { + "epoch": 35.12581913499345, + "grad_norm": 0.20904001593589783, + "learning_rate": 0.0006, + "loss": 3.6896979808807373, + "step": 2529 + }, + { + "epoch": 35.139799038881605, + "grad_norm": 0.1947423666715622, + "learning_rate": 0.0006, + "loss": 3.6647095680236816, + "step": 2530 + }, + { + "epoch": 35.15377894276977, + "grad_norm": 0.2134019434452057, + "learning_rate": 0.0006, + "loss": 3.696993589401245, + "step": 2531 + }, + { + "epoch": 35.16775884665793, + "grad_norm": 0.2299254685640335, + "learning_rate": 0.0006, + "loss": 3.7067925930023193, + "step": 2532 + }, + { + "epoch": 35.18173875054609, + "grad_norm": 0.219585582613945, + "learning_rate": 0.0006, + "loss": 3.6680960655212402, + "step": 2533 + }, + { + "epoch": 35.19571865443425, + "grad_norm": 0.2146025449037552, + "learning_rate": 0.0006, + "loss": 3.7185046672821045, + "step": 2534 + }, + { + "epoch": 35.20969855832241, + "grad_norm": 0.22748060524463654, + "learning_rate": 0.0006, + "loss": 3.659202814102173, + "step": 2535 + }, + { + "epoch": 35.22367846221057, + "grad_norm": 0.22272273898124695, + "learning_rate": 0.0006, + "loss": 3.7002370357513428, + "step": 2536 + }, + { + "epoch": 35.237658366098735, + "grad_norm": 0.23827379941940308, + "learning_rate": 0.0006, + "loss": 3.714664936065674, + "step": 2537 + }, + { + "epoch": 35.25163826998689, + "grad_norm": 0.2328156679868698, + "learning_rate": 0.0006, + "loss": 3.665173292160034, + "step": 2538 + }, + { + "epoch": 35.265618173875055, + "grad_norm": 0.2573475241661072, + "learning_rate": 0.0006, + "loss": 3.7073206901550293, + "step": 2539 + }, + { + "epoch": 35.27959807776322, + "grad_norm": 0.2411472052335739, + "learning_rate": 0.0006, + "loss": 3.697751045227051, + "step": 2540 + }, + { + "epoch": 35.293577981651374, + "grad_norm": 0.22836148738861084, + "learning_rate": 0.0006, + "loss": 3.7219419479370117, + "step": 2541 + }, + { + "epoch": 35.30755788553954, + "grad_norm": 0.2225421667098999, + "learning_rate": 0.0006, + "loss": 3.69516658782959, + "step": 2542 + }, + { + "epoch": 35.3215377894277, + "grad_norm": 0.2180362343788147, + "learning_rate": 0.0006, + "loss": 3.714043378829956, + "step": 2543 + }, + { + "epoch": 35.33551769331586, + "grad_norm": 0.23638299107551575, + "learning_rate": 0.0006, + "loss": 3.7449421882629395, + "step": 2544 + }, + { + "epoch": 35.34949759720402, + "grad_norm": 0.21792089939117432, + "learning_rate": 0.0006, + "loss": 3.7029948234558105, + "step": 2545 + }, + { + "epoch": 35.36347750109218, + "grad_norm": 0.23266112804412842, + "learning_rate": 0.0006, + "loss": 3.683509111404419, + "step": 2546 + }, + { + "epoch": 35.37745740498034, + "grad_norm": 0.24203059077262878, + "learning_rate": 0.0006, + "loss": 3.68572998046875, + "step": 2547 + }, + { + "epoch": 35.391437308868504, + "grad_norm": 0.2543564438819885, + "learning_rate": 0.0006, + "loss": 3.6902432441711426, + "step": 2548 + }, + { + "epoch": 35.40541721275666, + "grad_norm": 0.22990189492702484, + "learning_rate": 0.0006, + "loss": 3.708810329437256, + "step": 2549 + }, + { + "epoch": 35.419397116644824, + "grad_norm": 0.2594352662563324, + "learning_rate": 0.0006, + "loss": 3.7312886714935303, + "step": 2550 + }, + { + "epoch": 35.43337702053299, + "grad_norm": 0.27525269985198975, + "learning_rate": 0.0006, + "loss": 3.6963448524475098, + "step": 2551 + }, + { + "epoch": 35.44735692442114, + "grad_norm": 0.2436525970697403, + "learning_rate": 0.0006, + "loss": 3.6733713150024414, + "step": 2552 + }, + { + "epoch": 35.46133682830931, + "grad_norm": 0.25500908493995667, + "learning_rate": 0.0006, + "loss": 3.7104358673095703, + "step": 2553 + }, + { + "epoch": 35.47531673219746, + "grad_norm": 0.23504602909088135, + "learning_rate": 0.0006, + "loss": 3.7052388191223145, + "step": 2554 + }, + { + "epoch": 35.489296636085626, + "grad_norm": 0.2277563363313675, + "learning_rate": 0.0006, + "loss": 3.708714008331299, + "step": 2555 + }, + { + "epoch": 35.50327653997379, + "grad_norm": 0.25224778056144714, + "learning_rate": 0.0006, + "loss": 3.699676990509033, + "step": 2556 + }, + { + "epoch": 35.517256443861946, + "grad_norm": 0.28308045864105225, + "learning_rate": 0.0006, + "loss": 3.7005362510681152, + "step": 2557 + }, + { + "epoch": 35.53123634775011, + "grad_norm": 0.25858840346336365, + "learning_rate": 0.0006, + "loss": 3.689999580383301, + "step": 2558 + }, + { + "epoch": 35.54521625163827, + "grad_norm": 0.23497405648231506, + "learning_rate": 0.0006, + "loss": 3.695793867111206, + "step": 2559 + }, + { + "epoch": 35.55919615552643, + "grad_norm": 0.22375957667827606, + "learning_rate": 0.0006, + "loss": 3.7011494636535645, + "step": 2560 + }, + { + "epoch": 35.57317605941459, + "grad_norm": 0.21056118607521057, + "learning_rate": 0.0006, + "loss": 3.722623586654663, + "step": 2561 + }, + { + "epoch": 35.58715596330275, + "grad_norm": 0.22504374384880066, + "learning_rate": 0.0006, + "loss": 3.7211966514587402, + "step": 2562 + }, + { + "epoch": 35.60113586719091, + "grad_norm": 0.22349773347377777, + "learning_rate": 0.0006, + "loss": 3.6901848316192627, + "step": 2563 + }, + { + "epoch": 35.615115771079076, + "grad_norm": 0.219499409198761, + "learning_rate": 0.0006, + "loss": 3.709026575088501, + "step": 2564 + }, + { + "epoch": 35.62909567496723, + "grad_norm": 0.20461080968379974, + "learning_rate": 0.0006, + "loss": 3.72456693649292, + "step": 2565 + }, + { + "epoch": 35.643075578855395, + "grad_norm": 0.2083883285522461, + "learning_rate": 0.0006, + "loss": 3.6845502853393555, + "step": 2566 + }, + { + "epoch": 35.65705548274356, + "grad_norm": 0.19694562256336212, + "learning_rate": 0.0006, + "loss": 3.668515682220459, + "step": 2567 + }, + { + "epoch": 35.671035386631715, + "grad_norm": 0.2107984870672226, + "learning_rate": 0.0006, + "loss": 3.700723648071289, + "step": 2568 + }, + { + "epoch": 35.68501529051988, + "grad_norm": 0.18878720700740814, + "learning_rate": 0.0006, + "loss": 3.689150333404541, + "step": 2569 + }, + { + "epoch": 35.69899519440804, + "grad_norm": 0.20058824121952057, + "learning_rate": 0.0006, + "loss": 3.7048301696777344, + "step": 2570 + }, + { + "epoch": 35.7129750982962, + "grad_norm": 0.2200566679239273, + "learning_rate": 0.0006, + "loss": 3.6944580078125, + "step": 2571 + }, + { + "epoch": 35.72695500218436, + "grad_norm": 0.22200417518615723, + "learning_rate": 0.0006, + "loss": 3.715193510055542, + "step": 2572 + }, + { + "epoch": 35.74093490607252, + "grad_norm": 0.21011404693126678, + "learning_rate": 0.0006, + "loss": 3.737387180328369, + "step": 2573 + }, + { + "epoch": 35.75491480996068, + "grad_norm": 0.21139226853847504, + "learning_rate": 0.0006, + "loss": 3.695596694946289, + "step": 2574 + }, + { + "epoch": 35.768894713848844, + "grad_norm": 0.2112506479024887, + "learning_rate": 0.0006, + "loss": 3.7264227867126465, + "step": 2575 + }, + { + "epoch": 35.782874617737, + "grad_norm": 0.21528391540050507, + "learning_rate": 0.0006, + "loss": 3.7089385986328125, + "step": 2576 + }, + { + "epoch": 35.796854521625164, + "grad_norm": 0.2127804309129715, + "learning_rate": 0.0006, + "loss": 3.6995301246643066, + "step": 2577 + }, + { + "epoch": 35.81083442551333, + "grad_norm": 0.19839410483837128, + "learning_rate": 0.0006, + "loss": 3.7233223915100098, + "step": 2578 + }, + { + "epoch": 35.824814329401484, + "grad_norm": 0.19098423421382904, + "learning_rate": 0.0006, + "loss": 3.7108311653137207, + "step": 2579 + }, + { + "epoch": 35.83879423328965, + "grad_norm": 0.18697232007980347, + "learning_rate": 0.0006, + "loss": 3.725001811981201, + "step": 2580 + }, + { + "epoch": 35.8527741371778, + "grad_norm": 0.21051937341690063, + "learning_rate": 0.0006, + "loss": 3.7310993671417236, + "step": 2581 + }, + { + "epoch": 35.86675404106597, + "grad_norm": 0.2239079475402832, + "learning_rate": 0.0006, + "loss": 3.739056348800659, + "step": 2582 + }, + { + "epoch": 35.88073394495413, + "grad_norm": 0.2581230700016022, + "learning_rate": 0.0006, + "loss": 3.697061061859131, + "step": 2583 + }, + { + "epoch": 35.89471384884229, + "grad_norm": 0.25388655066490173, + "learning_rate": 0.0006, + "loss": 3.7173471450805664, + "step": 2584 + }, + { + "epoch": 35.90869375273045, + "grad_norm": 0.2557796537876129, + "learning_rate": 0.0006, + "loss": 3.7121596336364746, + "step": 2585 + }, + { + "epoch": 35.92267365661861, + "grad_norm": 0.21846474707126617, + "learning_rate": 0.0006, + "loss": 3.7342100143432617, + "step": 2586 + }, + { + "epoch": 35.93665356050677, + "grad_norm": 0.19810006022453308, + "learning_rate": 0.0006, + "loss": 3.7266340255737305, + "step": 2587 + }, + { + "epoch": 35.95063346439493, + "grad_norm": 0.28599923849105835, + "learning_rate": 0.0006, + "loss": 3.711876392364502, + "step": 2588 + }, + { + "epoch": 35.964613368283096, + "grad_norm": 0.3380447030067444, + "learning_rate": 0.0006, + "loss": 3.7611794471740723, + "step": 2589 + }, + { + "epoch": 35.97859327217125, + "grad_norm": 0.2946915328502655, + "learning_rate": 0.0006, + "loss": 3.7659358978271484, + "step": 2590 + }, + { + "epoch": 35.992573176059416, + "grad_norm": 0.2310202419757843, + "learning_rate": 0.0006, + "loss": 3.7124969959259033, + "step": 2591 + }, + { + "epoch": 36.0, + "grad_norm": 0.22294320166110992, + "learning_rate": 0.0006, + "loss": 3.725590705871582, + "step": 2592 + }, + { + "epoch": 36.0, + "eval_loss": 4.015472412109375, + "eval_runtime": 44.4903, + "eval_samples_per_second": 54.888, + "eval_steps_per_second": 3.439, + "step": 2592 + }, + { + "epoch": 36.01397990388816, + "grad_norm": 0.2442479431629181, + "learning_rate": 0.0006, + "loss": 3.6670360565185547, + "step": 2593 + }, + { + "epoch": 36.02795980777632, + "grad_norm": 0.27702075242996216, + "learning_rate": 0.0006, + "loss": 3.685915946960449, + "step": 2594 + }, + { + "epoch": 36.04193971166448, + "grad_norm": 0.22300852835178375, + "learning_rate": 0.0006, + "loss": 3.6993556022644043, + "step": 2595 + }, + { + "epoch": 36.05591961555265, + "grad_norm": 0.22456000745296478, + "learning_rate": 0.0006, + "loss": 3.6937754154205322, + "step": 2596 + }, + { + "epoch": 36.0698995194408, + "grad_norm": 0.23157717287540436, + "learning_rate": 0.0006, + "loss": 3.6573898792266846, + "step": 2597 + }, + { + "epoch": 36.083879423328966, + "grad_norm": 0.23002618551254272, + "learning_rate": 0.0006, + "loss": 3.6565046310424805, + "step": 2598 + }, + { + "epoch": 36.09785932721712, + "grad_norm": 0.223054900765419, + "learning_rate": 0.0006, + "loss": 3.6964457035064697, + "step": 2599 + }, + { + "epoch": 36.111839231105286, + "grad_norm": 0.21883328258991241, + "learning_rate": 0.0006, + "loss": 3.674757480621338, + "step": 2600 + }, + { + "epoch": 36.12581913499345, + "grad_norm": 0.21729037165641785, + "learning_rate": 0.0006, + "loss": 3.684323310852051, + "step": 2601 + }, + { + "epoch": 36.139799038881605, + "grad_norm": 0.21299415826797485, + "learning_rate": 0.0006, + "loss": 3.6554017066955566, + "step": 2602 + }, + { + "epoch": 36.15377894276977, + "grad_norm": 0.22723016142845154, + "learning_rate": 0.0006, + "loss": 3.666767120361328, + "step": 2603 + }, + { + "epoch": 36.16775884665793, + "grad_norm": 0.23663052916526794, + "learning_rate": 0.0006, + "loss": 3.692861557006836, + "step": 2604 + }, + { + "epoch": 36.18173875054609, + "grad_norm": 0.23544131219387054, + "learning_rate": 0.0006, + "loss": 3.6648998260498047, + "step": 2605 + }, + { + "epoch": 36.19571865443425, + "grad_norm": 0.24303849041461945, + "learning_rate": 0.0006, + "loss": 3.66096568107605, + "step": 2606 + }, + { + "epoch": 36.20969855832241, + "grad_norm": 0.23385047912597656, + "learning_rate": 0.0006, + "loss": 3.6636829376220703, + "step": 2607 + }, + { + "epoch": 36.22367846221057, + "grad_norm": 0.21988974511623383, + "learning_rate": 0.0006, + "loss": 3.685072660446167, + "step": 2608 + }, + { + "epoch": 36.237658366098735, + "grad_norm": 0.2365395724773407, + "learning_rate": 0.0006, + "loss": 3.7292234897613525, + "step": 2609 + }, + { + "epoch": 36.25163826998689, + "grad_norm": 0.23791152238845825, + "learning_rate": 0.0006, + "loss": 3.6870808601379395, + "step": 2610 + }, + { + "epoch": 36.265618173875055, + "grad_norm": 0.22954145073890686, + "learning_rate": 0.0006, + "loss": 3.705406904220581, + "step": 2611 + }, + { + "epoch": 36.27959807776322, + "grad_norm": 0.22748000919818878, + "learning_rate": 0.0006, + "loss": 3.680781841278076, + "step": 2612 + }, + { + "epoch": 36.293577981651374, + "grad_norm": 0.21827450394630432, + "learning_rate": 0.0006, + "loss": 3.6794490814208984, + "step": 2613 + }, + { + "epoch": 36.30755788553954, + "grad_norm": 0.2406153380870819, + "learning_rate": 0.0006, + "loss": 3.690225124359131, + "step": 2614 + }, + { + "epoch": 36.3215377894277, + "grad_norm": 0.2406231164932251, + "learning_rate": 0.0006, + "loss": 3.665867805480957, + "step": 2615 + }, + { + "epoch": 36.33551769331586, + "grad_norm": 0.20494551956653595, + "learning_rate": 0.0006, + "loss": 3.701937198638916, + "step": 2616 + }, + { + "epoch": 36.34949759720402, + "grad_norm": 0.1995103359222412, + "learning_rate": 0.0006, + "loss": 3.702033758163452, + "step": 2617 + }, + { + "epoch": 36.36347750109218, + "grad_norm": 0.1902446299791336, + "learning_rate": 0.0006, + "loss": 3.6809959411621094, + "step": 2618 + }, + { + "epoch": 36.37745740498034, + "grad_norm": 0.1810801923274994, + "learning_rate": 0.0006, + "loss": 3.689852714538574, + "step": 2619 + }, + { + "epoch": 36.391437308868504, + "grad_norm": 0.1882476955652237, + "learning_rate": 0.0006, + "loss": 3.710911273956299, + "step": 2620 + }, + { + "epoch": 36.40541721275666, + "grad_norm": 0.1912514567375183, + "learning_rate": 0.0006, + "loss": 3.7054009437561035, + "step": 2621 + }, + { + "epoch": 36.419397116644824, + "grad_norm": 0.19080901145935059, + "learning_rate": 0.0006, + "loss": 3.681145191192627, + "step": 2622 + }, + { + "epoch": 36.43337702053299, + "grad_norm": 0.193472221493721, + "learning_rate": 0.0006, + "loss": 3.661360740661621, + "step": 2623 + }, + { + "epoch": 36.44735692442114, + "grad_norm": 0.2034357339143753, + "learning_rate": 0.0006, + "loss": 3.706930160522461, + "step": 2624 + }, + { + "epoch": 36.46133682830931, + "grad_norm": 0.19924600422382355, + "learning_rate": 0.0006, + "loss": 3.6903364658355713, + "step": 2625 + }, + { + "epoch": 36.47531673219746, + "grad_norm": 0.20556052029132843, + "learning_rate": 0.0006, + "loss": 3.6974234580993652, + "step": 2626 + }, + { + "epoch": 36.489296636085626, + "grad_norm": 0.19628804922103882, + "learning_rate": 0.0006, + "loss": 3.6947717666625977, + "step": 2627 + }, + { + "epoch": 36.50327653997379, + "grad_norm": 0.18071836233139038, + "learning_rate": 0.0006, + "loss": 3.717582941055298, + "step": 2628 + }, + { + "epoch": 36.517256443861946, + "grad_norm": 0.20531553030014038, + "learning_rate": 0.0006, + "loss": 3.680610179901123, + "step": 2629 + }, + { + "epoch": 36.53123634775011, + "grad_norm": 0.23789429664611816, + "learning_rate": 0.0006, + "loss": 3.711493968963623, + "step": 2630 + }, + { + "epoch": 36.54521625163827, + "grad_norm": 0.23027348518371582, + "learning_rate": 0.0006, + "loss": 3.6827993392944336, + "step": 2631 + }, + { + "epoch": 36.55919615552643, + "grad_norm": 0.21941570937633514, + "learning_rate": 0.0006, + "loss": 3.682286262512207, + "step": 2632 + }, + { + "epoch": 36.57317605941459, + "grad_norm": 0.21213553845882416, + "learning_rate": 0.0006, + "loss": 3.6828765869140625, + "step": 2633 + }, + { + "epoch": 36.58715596330275, + "grad_norm": 0.21929772198200226, + "learning_rate": 0.0006, + "loss": 3.697030544281006, + "step": 2634 + }, + { + "epoch": 36.60113586719091, + "grad_norm": 0.2101750522851944, + "learning_rate": 0.0006, + "loss": 3.723201274871826, + "step": 2635 + }, + { + "epoch": 36.615115771079076, + "grad_norm": 0.19014132022857666, + "learning_rate": 0.0006, + "loss": 3.6989338397979736, + "step": 2636 + }, + { + "epoch": 36.62909567496723, + "grad_norm": 0.21566815674304962, + "learning_rate": 0.0006, + "loss": 3.6968226432800293, + "step": 2637 + }, + { + "epoch": 36.643075578855395, + "grad_norm": 0.20500224828720093, + "learning_rate": 0.0006, + "loss": 3.689640522003174, + "step": 2638 + }, + { + "epoch": 36.65705548274356, + "grad_norm": 0.210358127951622, + "learning_rate": 0.0006, + "loss": 3.6996328830718994, + "step": 2639 + }, + { + "epoch": 36.671035386631715, + "grad_norm": 0.2061213105916977, + "learning_rate": 0.0006, + "loss": 3.7019221782684326, + "step": 2640 + }, + { + "epoch": 36.68501529051988, + "grad_norm": 0.21494871377944946, + "learning_rate": 0.0006, + "loss": 3.6634578704833984, + "step": 2641 + }, + { + "epoch": 36.69899519440804, + "grad_norm": 0.19586549699306488, + "learning_rate": 0.0006, + "loss": 3.708131790161133, + "step": 2642 + }, + { + "epoch": 36.7129750982962, + "grad_norm": 0.22805732488632202, + "learning_rate": 0.0006, + "loss": 3.6977362632751465, + "step": 2643 + }, + { + "epoch": 36.72695500218436, + "grad_norm": 0.28397148847579956, + "learning_rate": 0.0006, + "loss": 3.6847963333129883, + "step": 2644 + }, + { + "epoch": 36.74093490607252, + "grad_norm": 0.28333187103271484, + "learning_rate": 0.0006, + "loss": 3.734257459640503, + "step": 2645 + }, + { + "epoch": 36.75491480996068, + "grad_norm": 0.22314953804016113, + "learning_rate": 0.0006, + "loss": 3.6871445178985596, + "step": 2646 + }, + { + "epoch": 36.768894713848844, + "grad_norm": 0.20580267906188965, + "learning_rate": 0.0006, + "loss": 3.692736864089966, + "step": 2647 + }, + { + "epoch": 36.782874617737, + "grad_norm": 0.22695036232471466, + "learning_rate": 0.0006, + "loss": 3.697096824645996, + "step": 2648 + }, + { + "epoch": 36.796854521625164, + "grad_norm": 0.25916165113449097, + "learning_rate": 0.0006, + "loss": 3.7099573612213135, + "step": 2649 + }, + { + "epoch": 36.81083442551333, + "grad_norm": 0.26024341583251953, + "learning_rate": 0.0006, + "loss": 3.7161359786987305, + "step": 2650 + }, + { + "epoch": 36.824814329401484, + "grad_norm": 0.2340802699327469, + "learning_rate": 0.0006, + "loss": 3.708864688873291, + "step": 2651 + }, + { + "epoch": 36.83879423328965, + "grad_norm": 0.23312288522720337, + "learning_rate": 0.0006, + "loss": 3.7351365089416504, + "step": 2652 + }, + { + "epoch": 36.8527741371778, + "grad_norm": 0.22953253984451294, + "learning_rate": 0.0006, + "loss": 3.735302209854126, + "step": 2653 + }, + { + "epoch": 36.86675404106597, + "grad_norm": 0.21928828954696655, + "learning_rate": 0.0006, + "loss": 3.72445011138916, + "step": 2654 + }, + { + "epoch": 36.88073394495413, + "grad_norm": 0.22865602374076843, + "learning_rate": 0.0006, + "loss": 3.714867115020752, + "step": 2655 + }, + { + "epoch": 36.89471384884229, + "grad_norm": 0.23255643248558044, + "learning_rate": 0.0006, + "loss": 3.695101261138916, + "step": 2656 + }, + { + "epoch": 36.90869375273045, + "grad_norm": 0.2491452544927597, + "learning_rate": 0.0006, + "loss": 3.70692777633667, + "step": 2657 + }, + { + "epoch": 36.92267365661861, + "grad_norm": 0.27367597818374634, + "learning_rate": 0.0006, + "loss": 3.6906654834747314, + "step": 2658 + }, + { + "epoch": 36.93665356050677, + "grad_norm": 0.26728564500808716, + "learning_rate": 0.0006, + "loss": 3.7092056274414062, + "step": 2659 + }, + { + "epoch": 36.95063346439493, + "grad_norm": 0.207070454955101, + "learning_rate": 0.0006, + "loss": 3.7152137756347656, + "step": 2660 + }, + { + "epoch": 36.964613368283096, + "grad_norm": 0.21671561896800995, + "learning_rate": 0.0006, + "loss": 3.7130112648010254, + "step": 2661 + }, + { + "epoch": 36.97859327217125, + "grad_norm": 0.2140914648771286, + "learning_rate": 0.0006, + "loss": 3.7286999225616455, + "step": 2662 + }, + { + "epoch": 36.992573176059416, + "grad_norm": 0.21324342489242554, + "learning_rate": 0.0006, + "loss": 3.6828715801239014, + "step": 2663 + }, + { + "epoch": 37.0, + "grad_norm": 0.22366146743297577, + "learning_rate": 0.0006, + "loss": 3.69199800491333, + "step": 2664 + }, + { + "epoch": 37.0, + "eval_loss": 4.011842727661133, + "eval_runtime": 44.7825, + "eval_samples_per_second": 54.53, + "eval_steps_per_second": 3.417, + "step": 2664 + }, + { + "epoch": 37.01397990388816, + "grad_norm": 0.22093228995800018, + "learning_rate": 0.0006, + "loss": 3.6940979957580566, + "step": 2665 + }, + { + "epoch": 37.02795980777632, + "grad_norm": 0.20821493864059448, + "learning_rate": 0.0006, + "loss": 3.670813798904419, + "step": 2666 + }, + { + "epoch": 37.04193971166448, + "grad_norm": 0.22330114245414734, + "learning_rate": 0.0006, + "loss": 3.6392664909362793, + "step": 2667 + }, + { + "epoch": 37.05591961555265, + "grad_norm": 0.2224634289741516, + "learning_rate": 0.0006, + "loss": 3.660856246948242, + "step": 2668 + }, + { + "epoch": 37.0698995194408, + "grad_norm": 0.2255052626132965, + "learning_rate": 0.0006, + "loss": 3.6393589973449707, + "step": 2669 + }, + { + "epoch": 37.083879423328966, + "grad_norm": 0.23462942242622375, + "learning_rate": 0.0006, + "loss": 3.684429168701172, + "step": 2670 + }, + { + "epoch": 37.09785932721712, + "grad_norm": 0.23743386566638947, + "learning_rate": 0.0006, + "loss": 3.67622709274292, + "step": 2671 + }, + { + "epoch": 37.111839231105286, + "grad_norm": 0.2276267409324646, + "learning_rate": 0.0006, + "loss": 3.6487984657287598, + "step": 2672 + }, + { + "epoch": 37.12581913499345, + "grad_norm": 0.24448423087596893, + "learning_rate": 0.0006, + "loss": 3.67645525932312, + "step": 2673 + }, + { + "epoch": 37.139799038881605, + "grad_norm": 0.2428973764181137, + "learning_rate": 0.0006, + "loss": 3.681497097015381, + "step": 2674 + }, + { + "epoch": 37.15377894276977, + "grad_norm": 0.21918512880802155, + "learning_rate": 0.0006, + "loss": 3.67134428024292, + "step": 2675 + }, + { + "epoch": 37.16775884665793, + "grad_norm": 0.2103680670261383, + "learning_rate": 0.0006, + "loss": 3.6508708000183105, + "step": 2676 + }, + { + "epoch": 37.18173875054609, + "grad_norm": 0.20674929022789001, + "learning_rate": 0.0006, + "loss": 3.6904029846191406, + "step": 2677 + }, + { + "epoch": 37.19571865443425, + "grad_norm": 0.21867282688617706, + "learning_rate": 0.0006, + "loss": 3.697535514831543, + "step": 2678 + }, + { + "epoch": 37.20969855832241, + "grad_norm": 0.22919587790966034, + "learning_rate": 0.0006, + "loss": 3.675565004348755, + "step": 2679 + }, + { + "epoch": 37.22367846221057, + "grad_norm": 0.22255578637123108, + "learning_rate": 0.0006, + "loss": 3.6830129623413086, + "step": 2680 + }, + { + "epoch": 37.237658366098735, + "grad_norm": 0.22460198402404785, + "learning_rate": 0.0006, + "loss": 3.6872951984405518, + "step": 2681 + }, + { + "epoch": 37.25163826998689, + "grad_norm": 0.23677165806293488, + "learning_rate": 0.0006, + "loss": 3.6779165267944336, + "step": 2682 + }, + { + "epoch": 37.265618173875055, + "grad_norm": 0.23231394588947296, + "learning_rate": 0.0006, + "loss": 3.6831178665161133, + "step": 2683 + }, + { + "epoch": 37.27959807776322, + "grad_norm": 0.22131343185901642, + "learning_rate": 0.0006, + "loss": 3.664295196533203, + "step": 2684 + }, + { + "epoch": 37.293577981651374, + "grad_norm": 0.23424340784549713, + "learning_rate": 0.0006, + "loss": 3.696678638458252, + "step": 2685 + }, + { + "epoch": 37.30755788553954, + "grad_norm": 0.22695423662662506, + "learning_rate": 0.0006, + "loss": 3.6697473526000977, + "step": 2686 + }, + { + "epoch": 37.3215377894277, + "grad_norm": 0.2165997475385666, + "learning_rate": 0.0006, + "loss": 3.6801891326904297, + "step": 2687 + }, + { + "epoch": 37.33551769331586, + "grad_norm": 0.2241077572107315, + "learning_rate": 0.0006, + "loss": 3.6957011222839355, + "step": 2688 + }, + { + "epoch": 37.34949759720402, + "grad_norm": 0.21191732585430145, + "learning_rate": 0.0006, + "loss": 3.6812620162963867, + "step": 2689 + }, + { + "epoch": 37.36347750109218, + "grad_norm": 0.1827201396226883, + "learning_rate": 0.0006, + "loss": 3.6797738075256348, + "step": 2690 + }, + { + "epoch": 37.37745740498034, + "grad_norm": 0.20793627202510834, + "learning_rate": 0.0006, + "loss": 3.672819137573242, + "step": 2691 + }, + { + "epoch": 37.391437308868504, + "grad_norm": 0.19737116992473602, + "learning_rate": 0.0006, + "loss": 3.667839527130127, + "step": 2692 + }, + { + "epoch": 37.40541721275666, + "grad_norm": 0.18670497834682465, + "learning_rate": 0.0006, + "loss": 3.651561737060547, + "step": 2693 + }, + { + "epoch": 37.419397116644824, + "grad_norm": 0.21385592222213745, + "learning_rate": 0.0006, + "loss": 3.717456340789795, + "step": 2694 + }, + { + "epoch": 37.43337702053299, + "grad_norm": 0.20590044558048248, + "learning_rate": 0.0006, + "loss": 3.6950271129608154, + "step": 2695 + }, + { + "epoch": 37.44735692442114, + "grad_norm": 0.1992103010416031, + "learning_rate": 0.0006, + "loss": 3.687854290008545, + "step": 2696 + }, + { + "epoch": 37.46133682830931, + "grad_norm": 0.2004154473543167, + "learning_rate": 0.0006, + "loss": 3.695838451385498, + "step": 2697 + }, + { + "epoch": 37.47531673219746, + "grad_norm": 0.2019810527563095, + "learning_rate": 0.0006, + "loss": 3.690431594848633, + "step": 2698 + }, + { + "epoch": 37.489296636085626, + "grad_norm": 0.2192547768354416, + "learning_rate": 0.0006, + "loss": 3.6743836402893066, + "step": 2699 + }, + { + "epoch": 37.50327653997379, + "grad_norm": 0.2568076550960541, + "learning_rate": 0.0006, + "loss": 3.6857337951660156, + "step": 2700 + }, + { + "epoch": 37.517256443861946, + "grad_norm": 0.20050311088562012, + "learning_rate": 0.0006, + "loss": 3.6811180114746094, + "step": 2701 + }, + { + "epoch": 37.53123634775011, + "grad_norm": 0.21008558571338654, + "learning_rate": 0.0006, + "loss": 3.700563907623291, + "step": 2702 + }, + { + "epoch": 37.54521625163827, + "grad_norm": 0.2393747717142105, + "learning_rate": 0.0006, + "loss": 3.679438591003418, + "step": 2703 + }, + { + "epoch": 37.55919615552643, + "grad_norm": 0.2531895041465759, + "learning_rate": 0.0006, + "loss": 3.682903289794922, + "step": 2704 + }, + { + "epoch": 37.57317605941459, + "grad_norm": 0.2372656762599945, + "learning_rate": 0.0006, + "loss": 3.7128796577453613, + "step": 2705 + }, + { + "epoch": 37.58715596330275, + "grad_norm": 0.20020034909248352, + "learning_rate": 0.0006, + "loss": 3.701916217803955, + "step": 2706 + }, + { + "epoch": 37.60113586719091, + "grad_norm": 0.20250852406024933, + "learning_rate": 0.0006, + "loss": 3.6761491298675537, + "step": 2707 + }, + { + "epoch": 37.615115771079076, + "grad_norm": 0.19259589910507202, + "learning_rate": 0.0006, + "loss": 3.715104579925537, + "step": 2708 + }, + { + "epoch": 37.62909567496723, + "grad_norm": 0.19649392366409302, + "learning_rate": 0.0006, + "loss": 3.687556266784668, + "step": 2709 + }, + { + "epoch": 37.643075578855395, + "grad_norm": 0.1909446269273758, + "learning_rate": 0.0006, + "loss": 3.684046745300293, + "step": 2710 + }, + { + "epoch": 37.65705548274356, + "grad_norm": 0.19589872658252716, + "learning_rate": 0.0006, + "loss": 3.707886219024658, + "step": 2711 + }, + { + "epoch": 37.671035386631715, + "grad_norm": 0.19472210109233856, + "learning_rate": 0.0006, + "loss": 3.6837692260742188, + "step": 2712 + }, + { + "epoch": 37.68501529051988, + "grad_norm": 0.22622711956501007, + "learning_rate": 0.0006, + "loss": 3.703619956970215, + "step": 2713 + }, + { + "epoch": 37.69899519440804, + "grad_norm": 0.24314729869365692, + "learning_rate": 0.0006, + "loss": 3.7345223426818848, + "step": 2714 + }, + { + "epoch": 37.7129750982962, + "grad_norm": 0.23934306204319, + "learning_rate": 0.0006, + "loss": 3.687809705734253, + "step": 2715 + }, + { + "epoch": 37.72695500218436, + "grad_norm": 0.24838587641716003, + "learning_rate": 0.0006, + "loss": 3.708613872528076, + "step": 2716 + }, + { + "epoch": 37.74093490607252, + "grad_norm": 0.23191452026367188, + "learning_rate": 0.0006, + "loss": 3.7090163230895996, + "step": 2717 + }, + { + "epoch": 37.75491480996068, + "grad_norm": 0.24574638903141022, + "learning_rate": 0.0006, + "loss": 3.68489146232605, + "step": 2718 + }, + { + "epoch": 37.768894713848844, + "grad_norm": 0.2706749439239502, + "learning_rate": 0.0006, + "loss": 3.687061309814453, + "step": 2719 + }, + { + "epoch": 37.782874617737, + "grad_norm": 0.25955191254615784, + "learning_rate": 0.0006, + "loss": 3.694173812866211, + "step": 2720 + }, + { + "epoch": 37.796854521625164, + "grad_norm": 0.22040610015392303, + "learning_rate": 0.0006, + "loss": 3.701871871948242, + "step": 2721 + }, + { + "epoch": 37.81083442551333, + "grad_norm": 0.22328512370586395, + "learning_rate": 0.0006, + "loss": 3.7082555294036865, + "step": 2722 + }, + { + "epoch": 37.824814329401484, + "grad_norm": 0.2290581911802292, + "learning_rate": 0.0006, + "loss": 3.7023987770080566, + "step": 2723 + }, + { + "epoch": 37.83879423328965, + "grad_norm": 0.23129472136497498, + "learning_rate": 0.0006, + "loss": 3.7101752758026123, + "step": 2724 + }, + { + "epoch": 37.8527741371778, + "grad_norm": 0.21203753352165222, + "learning_rate": 0.0006, + "loss": 3.712129592895508, + "step": 2725 + }, + { + "epoch": 37.86675404106597, + "grad_norm": 0.21938200294971466, + "learning_rate": 0.0006, + "loss": 3.7086095809936523, + "step": 2726 + }, + { + "epoch": 37.88073394495413, + "grad_norm": 0.2203572541475296, + "learning_rate": 0.0006, + "loss": 3.6789026260375977, + "step": 2727 + }, + { + "epoch": 37.89471384884229, + "grad_norm": 0.18146046996116638, + "learning_rate": 0.0006, + "loss": 3.666893243789673, + "step": 2728 + }, + { + "epoch": 37.90869375273045, + "grad_norm": 0.1879623532295227, + "learning_rate": 0.0006, + "loss": 3.69246768951416, + "step": 2729 + }, + { + "epoch": 37.92267365661861, + "grad_norm": 0.18311670422554016, + "learning_rate": 0.0006, + "loss": 3.682036876678467, + "step": 2730 + }, + { + "epoch": 37.93665356050677, + "grad_norm": 0.1898486614227295, + "learning_rate": 0.0006, + "loss": 3.6683125495910645, + "step": 2731 + }, + { + "epoch": 37.95063346439493, + "grad_norm": 0.1858556717634201, + "learning_rate": 0.0006, + "loss": 3.6879611015319824, + "step": 2732 + }, + { + "epoch": 37.964613368283096, + "grad_norm": 0.19914504885673523, + "learning_rate": 0.0006, + "loss": 3.690250873565674, + "step": 2733 + }, + { + "epoch": 37.97859327217125, + "grad_norm": 0.20406974852085114, + "learning_rate": 0.0006, + "loss": 3.6812171936035156, + "step": 2734 + }, + { + "epoch": 37.992573176059416, + "grad_norm": 0.2003912478685379, + "learning_rate": 0.0006, + "loss": 3.6852147579193115, + "step": 2735 + }, + { + "epoch": 38.0, + "grad_norm": 0.22644472122192383, + "learning_rate": 0.0006, + "loss": 3.645207405090332, + "step": 2736 + }, + { + "epoch": 38.0, + "eval_loss": 3.995000123977661, + "eval_runtime": 45.1644, + "eval_samples_per_second": 54.069, + "eval_steps_per_second": 3.388, + "step": 2736 + }, + { + "epoch": 38.01397990388816, + "grad_norm": 0.1989814043045044, + "learning_rate": 0.0006, + "loss": 3.6511387825012207, + "step": 2737 + }, + { + "epoch": 38.02795980777632, + "grad_norm": 0.203324094414711, + "learning_rate": 0.0006, + "loss": 3.6513094902038574, + "step": 2738 + }, + { + "epoch": 38.04193971166448, + "grad_norm": 0.21504290401935577, + "learning_rate": 0.0006, + "loss": 3.647711992263794, + "step": 2739 + }, + { + "epoch": 38.05591961555265, + "grad_norm": 0.23464815318584442, + "learning_rate": 0.0006, + "loss": 3.6418747901916504, + "step": 2740 + }, + { + "epoch": 38.0698995194408, + "grad_norm": 0.242184117436409, + "learning_rate": 0.0006, + "loss": 3.6741859912872314, + "step": 2741 + }, + { + "epoch": 38.083879423328966, + "grad_norm": 0.23488445580005646, + "learning_rate": 0.0006, + "loss": 3.6710941791534424, + "step": 2742 + }, + { + "epoch": 38.09785932721712, + "grad_norm": 0.20800170302391052, + "learning_rate": 0.0006, + "loss": 3.660001754760742, + "step": 2743 + }, + { + "epoch": 38.111839231105286, + "grad_norm": 0.19505052268505096, + "learning_rate": 0.0006, + "loss": 3.684129238128662, + "step": 2744 + }, + { + "epoch": 38.12581913499345, + "grad_norm": 0.2185833901166916, + "learning_rate": 0.0006, + "loss": 3.656033515930176, + "step": 2745 + }, + { + "epoch": 38.139799038881605, + "grad_norm": 0.21850253641605377, + "learning_rate": 0.0006, + "loss": 3.6818184852600098, + "step": 2746 + }, + { + "epoch": 38.15377894276977, + "grad_norm": 0.2109488695859909, + "learning_rate": 0.0006, + "loss": 3.6485435962677, + "step": 2747 + }, + { + "epoch": 38.16775884665793, + "grad_norm": 0.21059907972812653, + "learning_rate": 0.0006, + "loss": 3.6734395027160645, + "step": 2748 + }, + { + "epoch": 38.18173875054609, + "grad_norm": 0.20741555094718933, + "learning_rate": 0.0006, + "loss": 3.6672463417053223, + "step": 2749 + }, + { + "epoch": 38.19571865443425, + "grad_norm": 0.2130175530910492, + "learning_rate": 0.0006, + "loss": 3.692840576171875, + "step": 2750 + }, + { + "epoch": 38.20969855832241, + "grad_norm": 0.1899138242006302, + "learning_rate": 0.0006, + "loss": 3.675316333770752, + "step": 2751 + }, + { + "epoch": 38.22367846221057, + "grad_norm": 0.218918576836586, + "learning_rate": 0.0006, + "loss": 3.634105920791626, + "step": 2752 + }, + { + "epoch": 38.237658366098735, + "grad_norm": 0.23649370670318604, + "learning_rate": 0.0006, + "loss": 3.6526122093200684, + "step": 2753 + }, + { + "epoch": 38.25163826998689, + "grad_norm": 0.22011931240558624, + "learning_rate": 0.0006, + "loss": 3.6859593391418457, + "step": 2754 + }, + { + "epoch": 38.265618173875055, + "grad_norm": 0.2143620252609253, + "learning_rate": 0.0006, + "loss": 3.656838893890381, + "step": 2755 + }, + { + "epoch": 38.27959807776322, + "grad_norm": 0.24068567156791687, + "learning_rate": 0.0006, + "loss": 3.67006254196167, + "step": 2756 + }, + { + "epoch": 38.293577981651374, + "grad_norm": 0.25773152709007263, + "learning_rate": 0.0006, + "loss": 3.6648950576782227, + "step": 2757 + }, + { + "epoch": 38.30755788553954, + "grad_norm": 0.24213455617427826, + "learning_rate": 0.0006, + "loss": 3.6918864250183105, + "step": 2758 + }, + { + "epoch": 38.3215377894277, + "grad_norm": 0.22463668882846832, + "learning_rate": 0.0006, + "loss": 3.6662540435791016, + "step": 2759 + }, + { + "epoch": 38.33551769331586, + "grad_norm": 0.22541455924510956, + "learning_rate": 0.0006, + "loss": 3.6563215255737305, + "step": 2760 + }, + { + "epoch": 38.34949759720402, + "grad_norm": 0.21833783388137817, + "learning_rate": 0.0006, + "loss": 3.650446891784668, + "step": 2761 + }, + { + "epoch": 38.36347750109218, + "grad_norm": 0.22799745202064514, + "learning_rate": 0.0006, + "loss": 3.7007250785827637, + "step": 2762 + }, + { + "epoch": 38.37745740498034, + "grad_norm": 0.23739562928676605, + "learning_rate": 0.0006, + "loss": 3.667130708694458, + "step": 2763 + }, + { + "epoch": 38.391437308868504, + "grad_norm": 0.23744846880435944, + "learning_rate": 0.0006, + "loss": 3.678760528564453, + "step": 2764 + }, + { + "epoch": 38.40541721275666, + "grad_norm": 0.2677105963230133, + "learning_rate": 0.0006, + "loss": 3.6829030513763428, + "step": 2765 + }, + { + "epoch": 38.419397116644824, + "grad_norm": 0.24490566551685333, + "learning_rate": 0.0006, + "loss": 3.707911491394043, + "step": 2766 + }, + { + "epoch": 38.43337702053299, + "grad_norm": 0.23477254807949066, + "learning_rate": 0.0006, + "loss": 3.680157423019409, + "step": 2767 + }, + { + "epoch": 38.44735692442114, + "grad_norm": 0.26611173152923584, + "learning_rate": 0.0006, + "loss": 3.660834550857544, + "step": 2768 + }, + { + "epoch": 38.46133682830931, + "grad_norm": 0.24505069851875305, + "learning_rate": 0.0006, + "loss": 3.696178436279297, + "step": 2769 + }, + { + "epoch": 38.47531673219746, + "grad_norm": 0.22933335602283478, + "learning_rate": 0.0006, + "loss": 3.6506235599517822, + "step": 2770 + }, + { + "epoch": 38.489296636085626, + "grad_norm": 0.23662401735782623, + "learning_rate": 0.0006, + "loss": 3.680819511413574, + "step": 2771 + }, + { + "epoch": 38.50327653997379, + "grad_norm": 0.27774113416671753, + "learning_rate": 0.0006, + "loss": 3.699146270751953, + "step": 2772 + }, + { + "epoch": 38.517256443861946, + "grad_norm": 0.2881671190261841, + "learning_rate": 0.0006, + "loss": 3.6509652137756348, + "step": 2773 + }, + { + "epoch": 38.53123634775011, + "grad_norm": 0.26570361852645874, + "learning_rate": 0.0006, + "loss": 3.6808385848999023, + "step": 2774 + }, + { + "epoch": 38.54521625163827, + "grad_norm": 0.23043136298656464, + "learning_rate": 0.0006, + "loss": 3.7082371711730957, + "step": 2775 + }, + { + "epoch": 38.55919615552643, + "grad_norm": 0.23730400204658508, + "learning_rate": 0.0006, + "loss": 3.653615951538086, + "step": 2776 + }, + { + "epoch": 38.57317605941459, + "grad_norm": 0.2332635223865509, + "learning_rate": 0.0006, + "loss": 3.6869683265686035, + "step": 2777 + }, + { + "epoch": 38.58715596330275, + "grad_norm": 0.22913676500320435, + "learning_rate": 0.0006, + "loss": 3.6998367309570312, + "step": 2778 + }, + { + "epoch": 38.60113586719091, + "grad_norm": 0.226078599691391, + "learning_rate": 0.0006, + "loss": 3.7051444053649902, + "step": 2779 + }, + { + "epoch": 38.615115771079076, + "grad_norm": 0.2336396723985672, + "learning_rate": 0.0006, + "loss": 3.6964943408966064, + "step": 2780 + }, + { + "epoch": 38.62909567496723, + "grad_norm": 0.23270335793495178, + "learning_rate": 0.0006, + "loss": 3.6741909980773926, + "step": 2781 + }, + { + "epoch": 38.643075578855395, + "grad_norm": 0.19324959814548492, + "learning_rate": 0.0006, + "loss": 3.64506196975708, + "step": 2782 + }, + { + "epoch": 38.65705548274356, + "grad_norm": 0.18551453948020935, + "learning_rate": 0.0006, + "loss": 3.6834206581115723, + "step": 2783 + }, + { + "epoch": 38.671035386631715, + "grad_norm": 0.17392469942569733, + "learning_rate": 0.0006, + "loss": 3.67282772064209, + "step": 2784 + }, + { + "epoch": 38.68501529051988, + "grad_norm": 0.19093742966651917, + "learning_rate": 0.0006, + "loss": 3.6648201942443848, + "step": 2785 + }, + { + "epoch": 38.69899519440804, + "grad_norm": 0.2124558985233307, + "learning_rate": 0.0006, + "loss": 3.712191581726074, + "step": 2786 + }, + { + "epoch": 38.7129750982962, + "grad_norm": 0.2220139354467392, + "learning_rate": 0.0006, + "loss": 3.675504207611084, + "step": 2787 + }, + { + "epoch": 38.72695500218436, + "grad_norm": 0.17677755653858185, + "learning_rate": 0.0006, + "loss": 3.6693475246429443, + "step": 2788 + }, + { + "epoch": 38.74093490607252, + "grad_norm": 0.2002430409193039, + "learning_rate": 0.0006, + "loss": 3.6906018257141113, + "step": 2789 + }, + { + "epoch": 38.75491480996068, + "grad_norm": 0.18844179809093475, + "learning_rate": 0.0006, + "loss": 3.660121440887451, + "step": 2790 + }, + { + "epoch": 38.768894713848844, + "grad_norm": 0.19319336116313934, + "learning_rate": 0.0006, + "loss": 3.6592631340026855, + "step": 2791 + }, + { + "epoch": 38.782874617737, + "grad_norm": 0.18624325096607208, + "learning_rate": 0.0006, + "loss": 3.6935300827026367, + "step": 2792 + }, + { + "epoch": 38.796854521625164, + "grad_norm": 0.2049761712551117, + "learning_rate": 0.0006, + "loss": 3.6702702045440674, + "step": 2793 + }, + { + "epoch": 38.81083442551333, + "grad_norm": 0.2030584216117859, + "learning_rate": 0.0006, + "loss": 3.714639663696289, + "step": 2794 + }, + { + "epoch": 38.824814329401484, + "grad_norm": 0.18989548087120056, + "learning_rate": 0.0006, + "loss": 3.678253412246704, + "step": 2795 + }, + { + "epoch": 38.83879423328965, + "grad_norm": 0.19944126904010773, + "learning_rate": 0.0006, + "loss": 3.648367166519165, + "step": 2796 + }, + { + "epoch": 38.8527741371778, + "grad_norm": 0.2062688171863556, + "learning_rate": 0.0006, + "loss": 3.701514720916748, + "step": 2797 + }, + { + "epoch": 38.86675404106597, + "grad_norm": 0.21475110948085785, + "learning_rate": 0.0006, + "loss": 3.6725993156433105, + "step": 2798 + }, + { + "epoch": 38.88073394495413, + "grad_norm": 0.2240881323814392, + "learning_rate": 0.0006, + "loss": 3.6944539546966553, + "step": 2799 + }, + { + "epoch": 38.89471384884229, + "grad_norm": 0.23074312508106232, + "learning_rate": 0.0006, + "loss": 3.747671365737915, + "step": 2800 + }, + { + "epoch": 38.90869375273045, + "grad_norm": 0.2447938323020935, + "learning_rate": 0.0006, + "loss": 3.6856026649475098, + "step": 2801 + }, + { + "epoch": 38.92267365661861, + "grad_norm": 0.2136487364768982, + "learning_rate": 0.0006, + "loss": 3.710397720336914, + "step": 2802 + }, + { + "epoch": 38.93665356050677, + "grad_norm": 0.21676769852638245, + "learning_rate": 0.0006, + "loss": 3.6911189556121826, + "step": 2803 + }, + { + "epoch": 38.95063346439493, + "grad_norm": 0.2226478010416031, + "learning_rate": 0.0006, + "loss": 3.6902880668640137, + "step": 2804 + }, + { + "epoch": 38.964613368283096, + "grad_norm": 0.2071496546268463, + "learning_rate": 0.0006, + "loss": 3.6831371784210205, + "step": 2805 + }, + { + "epoch": 38.97859327217125, + "grad_norm": 0.19568349421024323, + "learning_rate": 0.0006, + "loss": 3.6897640228271484, + "step": 2806 + }, + { + "epoch": 38.992573176059416, + "grad_norm": 0.19067516922950745, + "learning_rate": 0.0006, + "loss": 3.7096242904663086, + "step": 2807 + }, + { + "epoch": 39.0, + "grad_norm": 0.22872281074523926, + "learning_rate": 0.0006, + "loss": 3.689342975616455, + "step": 2808 + }, + { + "epoch": 39.0, + "eval_loss": 4.001968860626221, + "eval_runtime": 44.8452, + "eval_samples_per_second": 54.454, + "eval_steps_per_second": 3.412, + "step": 2808 + }, + { + "epoch": 39.01397990388816, + "grad_norm": 0.21685896813869476, + "learning_rate": 0.0006, + "loss": 3.638145923614502, + "step": 2809 + }, + { + "epoch": 39.02795980777632, + "grad_norm": 0.20085014402866364, + "learning_rate": 0.0006, + "loss": 3.626654624938965, + "step": 2810 + }, + { + "epoch": 39.04193971166448, + "grad_norm": 0.20615799725055695, + "learning_rate": 0.0006, + "loss": 3.6280088424682617, + "step": 2811 + }, + { + "epoch": 39.05591961555265, + "grad_norm": 0.23471905291080475, + "learning_rate": 0.0006, + "loss": 3.6444239616394043, + "step": 2812 + }, + { + "epoch": 39.0698995194408, + "grad_norm": 0.22207780182361603, + "learning_rate": 0.0006, + "loss": 3.6276912689208984, + "step": 2813 + }, + { + "epoch": 39.083879423328966, + "grad_norm": 0.23354043066501617, + "learning_rate": 0.0006, + "loss": 3.7007269859313965, + "step": 2814 + }, + { + "epoch": 39.09785932721712, + "grad_norm": 0.22520557045936584, + "learning_rate": 0.0006, + "loss": 3.6487162113189697, + "step": 2815 + }, + { + "epoch": 39.111839231105286, + "grad_norm": 0.20489682257175446, + "learning_rate": 0.0006, + "loss": 3.6523492336273193, + "step": 2816 + }, + { + "epoch": 39.12581913499345, + "grad_norm": 0.20979270339012146, + "learning_rate": 0.0006, + "loss": 3.6574230194091797, + "step": 2817 + }, + { + "epoch": 39.139799038881605, + "grad_norm": 0.2256486713886261, + "learning_rate": 0.0006, + "loss": 3.6499013900756836, + "step": 2818 + }, + { + "epoch": 39.15377894276977, + "grad_norm": 0.1960437297821045, + "learning_rate": 0.0006, + "loss": 3.6780271530151367, + "step": 2819 + }, + { + "epoch": 39.16775884665793, + "grad_norm": 0.19279663264751434, + "learning_rate": 0.0006, + "loss": 3.623819589614868, + "step": 2820 + }, + { + "epoch": 39.18173875054609, + "grad_norm": 0.19151495397090912, + "learning_rate": 0.0006, + "loss": 3.612868070602417, + "step": 2821 + }, + { + "epoch": 39.19571865443425, + "grad_norm": 0.19399534165859222, + "learning_rate": 0.0006, + "loss": 3.6518092155456543, + "step": 2822 + }, + { + "epoch": 39.20969855832241, + "grad_norm": 0.21723251044750214, + "learning_rate": 0.0006, + "loss": 3.681509494781494, + "step": 2823 + }, + { + "epoch": 39.22367846221057, + "grad_norm": 0.2487006038427353, + "learning_rate": 0.0006, + "loss": 3.6569719314575195, + "step": 2824 + }, + { + "epoch": 39.237658366098735, + "grad_norm": 0.2640652656555176, + "learning_rate": 0.0006, + "loss": 3.680734634399414, + "step": 2825 + }, + { + "epoch": 39.25163826998689, + "grad_norm": 0.21862825751304626, + "learning_rate": 0.0006, + "loss": 3.6741840839385986, + "step": 2826 + }, + { + "epoch": 39.265618173875055, + "grad_norm": 0.19515705108642578, + "learning_rate": 0.0006, + "loss": 3.657750129699707, + "step": 2827 + }, + { + "epoch": 39.27959807776322, + "grad_norm": 0.1971602737903595, + "learning_rate": 0.0006, + "loss": 3.6524124145507812, + "step": 2828 + }, + { + "epoch": 39.293577981651374, + "grad_norm": 0.20822174847126007, + "learning_rate": 0.0006, + "loss": 3.69527006149292, + "step": 2829 + }, + { + "epoch": 39.30755788553954, + "grad_norm": 0.2566370368003845, + "learning_rate": 0.0006, + "loss": 3.6770880222320557, + "step": 2830 + }, + { + "epoch": 39.3215377894277, + "grad_norm": 0.24984225630760193, + "learning_rate": 0.0006, + "loss": 3.6733901500701904, + "step": 2831 + }, + { + "epoch": 39.33551769331586, + "grad_norm": 0.233322873711586, + "learning_rate": 0.0006, + "loss": 3.645519256591797, + "step": 2832 + }, + { + "epoch": 39.34949759720402, + "grad_norm": 0.21584749221801758, + "learning_rate": 0.0006, + "loss": 3.6211934089660645, + "step": 2833 + }, + { + "epoch": 39.36347750109218, + "grad_norm": 0.2188950479030609, + "learning_rate": 0.0006, + "loss": 3.6434195041656494, + "step": 2834 + }, + { + "epoch": 39.37745740498034, + "grad_norm": 0.21998439729213715, + "learning_rate": 0.0006, + "loss": 3.6720595359802246, + "step": 2835 + }, + { + "epoch": 39.391437308868504, + "grad_norm": 0.2459399700164795, + "learning_rate": 0.0006, + "loss": 3.667083740234375, + "step": 2836 + }, + { + "epoch": 39.40541721275666, + "grad_norm": 0.23579223453998566, + "learning_rate": 0.0006, + "loss": 3.665452480316162, + "step": 2837 + }, + { + "epoch": 39.419397116644824, + "grad_norm": 0.19401362538337708, + "learning_rate": 0.0006, + "loss": 3.684218406677246, + "step": 2838 + }, + { + "epoch": 39.43337702053299, + "grad_norm": 0.1894487738609314, + "learning_rate": 0.0006, + "loss": 3.670626163482666, + "step": 2839 + }, + { + "epoch": 39.44735692442114, + "grad_norm": 0.1936904937028885, + "learning_rate": 0.0006, + "loss": 3.6367318630218506, + "step": 2840 + }, + { + "epoch": 39.46133682830931, + "grad_norm": 0.1867629438638687, + "learning_rate": 0.0006, + "loss": 3.670098304748535, + "step": 2841 + }, + { + "epoch": 39.47531673219746, + "grad_norm": 0.18849903345108032, + "learning_rate": 0.0006, + "loss": 3.6877760887145996, + "step": 2842 + }, + { + "epoch": 39.489296636085626, + "grad_norm": 0.18247179687023163, + "learning_rate": 0.0006, + "loss": 3.7132980823516846, + "step": 2843 + }, + { + "epoch": 39.50327653997379, + "grad_norm": 0.19206349551677704, + "learning_rate": 0.0006, + "loss": 3.630319595336914, + "step": 2844 + }, + { + "epoch": 39.517256443861946, + "grad_norm": 0.21730613708496094, + "learning_rate": 0.0006, + "loss": 3.6818761825561523, + "step": 2845 + }, + { + "epoch": 39.53123634775011, + "grad_norm": 0.22482407093048096, + "learning_rate": 0.0006, + "loss": 3.6385269165039062, + "step": 2846 + }, + { + "epoch": 39.54521625163827, + "grad_norm": 0.24560105800628662, + "learning_rate": 0.0006, + "loss": 3.660067558288574, + "step": 2847 + }, + { + "epoch": 39.55919615552643, + "grad_norm": 0.23720617592334747, + "learning_rate": 0.0006, + "loss": 3.6811556816101074, + "step": 2848 + }, + { + "epoch": 39.57317605941459, + "grad_norm": 0.18990741670131683, + "learning_rate": 0.0006, + "loss": 3.6733779907226562, + "step": 2849 + }, + { + "epoch": 39.58715596330275, + "grad_norm": 0.2135438323020935, + "learning_rate": 0.0006, + "loss": 3.662020683288574, + "step": 2850 + }, + { + "epoch": 39.60113586719091, + "grad_norm": 0.24248908460140228, + "learning_rate": 0.0006, + "loss": 3.6794259548187256, + "step": 2851 + }, + { + "epoch": 39.615115771079076, + "grad_norm": 0.23115725815296173, + "learning_rate": 0.0006, + "loss": 3.6732406616210938, + "step": 2852 + }, + { + "epoch": 39.62909567496723, + "grad_norm": 0.23760166764259338, + "learning_rate": 0.0006, + "loss": 3.7062699794769287, + "step": 2853 + }, + { + "epoch": 39.643075578855395, + "grad_norm": 0.24670571088790894, + "learning_rate": 0.0006, + "loss": 3.692385673522949, + "step": 2854 + }, + { + "epoch": 39.65705548274356, + "grad_norm": 0.20983918011188507, + "learning_rate": 0.0006, + "loss": 3.691361427307129, + "step": 2855 + }, + { + "epoch": 39.671035386631715, + "grad_norm": 0.1915138065814972, + "learning_rate": 0.0006, + "loss": 3.6985888481140137, + "step": 2856 + }, + { + "epoch": 39.68501529051988, + "grad_norm": 0.23440803587436676, + "learning_rate": 0.0006, + "loss": 3.6484973430633545, + "step": 2857 + }, + { + "epoch": 39.69899519440804, + "grad_norm": 0.2483232468366623, + "learning_rate": 0.0006, + "loss": 3.6861510276794434, + "step": 2858 + }, + { + "epoch": 39.7129750982962, + "grad_norm": 0.21373426914215088, + "learning_rate": 0.0006, + "loss": 3.6528866291046143, + "step": 2859 + }, + { + "epoch": 39.72695500218436, + "grad_norm": 0.19849136471748352, + "learning_rate": 0.0006, + "loss": 3.6435961723327637, + "step": 2860 + }, + { + "epoch": 39.74093490607252, + "grad_norm": 0.21748292446136475, + "learning_rate": 0.0006, + "loss": 3.678481101989746, + "step": 2861 + }, + { + "epoch": 39.75491480996068, + "grad_norm": 0.22488188743591309, + "learning_rate": 0.0006, + "loss": 3.711717128753662, + "step": 2862 + }, + { + "epoch": 39.768894713848844, + "grad_norm": 0.22251835465431213, + "learning_rate": 0.0006, + "loss": 3.690516471862793, + "step": 2863 + }, + { + "epoch": 39.782874617737, + "grad_norm": 0.22101449966430664, + "learning_rate": 0.0006, + "loss": 3.6679611206054688, + "step": 2864 + }, + { + "epoch": 39.796854521625164, + "grad_norm": 0.20345936715602875, + "learning_rate": 0.0006, + "loss": 3.6935629844665527, + "step": 2865 + }, + { + "epoch": 39.81083442551333, + "grad_norm": 0.23772259056568146, + "learning_rate": 0.0006, + "loss": 3.697561264038086, + "step": 2866 + }, + { + "epoch": 39.824814329401484, + "grad_norm": 0.24446387588977814, + "learning_rate": 0.0006, + "loss": 3.696723461151123, + "step": 2867 + }, + { + "epoch": 39.83879423328965, + "grad_norm": 0.2365843653678894, + "learning_rate": 0.0006, + "loss": 3.6511402130126953, + "step": 2868 + }, + { + "epoch": 39.8527741371778, + "grad_norm": 0.25421974062919617, + "learning_rate": 0.0006, + "loss": 3.68449068069458, + "step": 2869 + }, + { + "epoch": 39.86675404106597, + "grad_norm": 0.2504308819770813, + "learning_rate": 0.0006, + "loss": 3.685884952545166, + "step": 2870 + }, + { + "epoch": 39.88073394495413, + "grad_norm": 0.24695490300655365, + "learning_rate": 0.0006, + "loss": 3.6667490005493164, + "step": 2871 + }, + { + "epoch": 39.89471384884229, + "grad_norm": 0.2633236348628998, + "learning_rate": 0.0006, + "loss": 3.6828866004943848, + "step": 2872 + }, + { + "epoch": 39.90869375273045, + "grad_norm": 0.2421039491891861, + "learning_rate": 0.0006, + "loss": 3.681187391281128, + "step": 2873 + }, + { + "epoch": 39.92267365661861, + "grad_norm": 0.21202950179576874, + "learning_rate": 0.0006, + "loss": 3.679069995880127, + "step": 2874 + }, + { + "epoch": 39.93665356050677, + "grad_norm": 0.2344917505979538, + "learning_rate": 0.0006, + "loss": 3.6810007095336914, + "step": 2875 + }, + { + "epoch": 39.95063346439493, + "grad_norm": 0.2115124762058258, + "learning_rate": 0.0006, + "loss": 3.653219223022461, + "step": 2876 + }, + { + "epoch": 39.964613368283096, + "grad_norm": 0.21588370203971863, + "learning_rate": 0.0006, + "loss": 3.6972861289978027, + "step": 2877 + }, + { + "epoch": 39.97859327217125, + "grad_norm": 0.26215407252311707, + "learning_rate": 0.0006, + "loss": 3.6796963214874268, + "step": 2878 + }, + { + "epoch": 39.992573176059416, + "grad_norm": 0.23645395040512085, + "learning_rate": 0.0006, + "loss": 3.696091413497925, + "step": 2879 + }, + { + "epoch": 40.0, + "grad_norm": 0.21817512810230255, + "learning_rate": 0.0006, + "loss": 3.668196678161621, + "step": 2880 + }, + { + "epoch": 40.0, + "eval_loss": 3.9873862266540527, + "eval_runtime": 44.1149, + "eval_samples_per_second": 55.355, + "eval_steps_per_second": 3.468, + "step": 2880 + }, + { + "epoch": 40.01397990388816, + "grad_norm": 0.2031477391719818, + "learning_rate": 0.0006, + "loss": 3.6494622230529785, + "step": 2881 + }, + { + "epoch": 40.02795980777632, + "grad_norm": 0.2223939746618271, + "learning_rate": 0.0006, + "loss": 3.6587047576904297, + "step": 2882 + }, + { + "epoch": 40.04193971166448, + "grad_norm": 0.21485820412635803, + "learning_rate": 0.0006, + "loss": 3.62253737449646, + "step": 2883 + }, + { + "epoch": 40.05591961555265, + "grad_norm": 0.23364055156707764, + "learning_rate": 0.0006, + "loss": 3.619035005569458, + "step": 2884 + }, + { + "epoch": 40.0698995194408, + "grad_norm": 0.23141583800315857, + "learning_rate": 0.0006, + "loss": 3.6650376319885254, + "step": 2885 + }, + { + "epoch": 40.083879423328966, + "grad_norm": 0.2131720930337906, + "learning_rate": 0.0006, + "loss": 3.646428108215332, + "step": 2886 + }, + { + "epoch": 40.09785932721712, + "grad_norm": 0.2337951511144638, + "learning_rate": 0.0006, + "loss": 3.6284823417663574, + "step": 2887 + }, + { + "epoch": 40.111839231105286, + "grad_norm": 0.2790892720222473, + "learning_rate": 0.0006, + "loss": 3.6558361053466797, + "step": 2888 + }, + { + "epoch": 40.12581913499345, + "grad_norm": 0.28444936871528625, + "learning_rate": 0.0006, + "loss": 3.644402503967285, + "step": 2889 + }, + { + "epoch": 40.139799038881605, + "grad_norm": 0.2550848126411438, + "learning_rate": 0.0006, + "loss": 3.671562671661377, + "step": 2890 + }, + { + "epoch": 40.15377894276977, + "grad_norm": 0.22960248589515686, + "learning_rate": 0.0006, + "loss": 3.6998534202575684, + "step": 2891 + }, + { + "epoch": 40.16775884665793, + "grad_norm": 0.23920369148254395, + "learning_rate": 0.0006, + "loss": 3.653874635696411, + "step": 2892 + }, + { + "epoch": 40.18173875054609, + "grad_norm": 0.24586012959480286, + "learning_rate": 0.0006, + "loss": 3.620765209197998, + "step": 2893 + }, + { + "epoch": 40.19571865443425, + "grad_norm": 0.26394739747047424, + "learning_rate": 0.0006, + "loss": 3.638437509536743, + "step": 2894 + }, + { + "epoch": 40.20969855832241, + "grad_norm": 0.27566927671432495, + "learning_rate": 0.0006, + "loss": 3.6684799194335938, + "step": 2895 + }, + { + "epoch": 40.22367846221057, + "grad_norm": 0.25469011068344116, + "learning_rate": 0.0006, + "loss": 3.6113009452819824, + "step": 2896 + }, + { + "epoch": 40.237658366098735, + "grad_norm": 0.2403056025505066, + "learning_rate": 0.0006, + "loss": 3.650771141052246, + "step": 2897 + }, + { + "epoch": 40.25163826998689, + "grad_norm": 0.262423038482666, + "learning_rate": 0.0006, + "loss": 3.635892391204834, + "step": 2898 + }, + { + "epoch": 40.265618173875055, + "grad_norm": 0.23696045577526093, + "learning_rate": 0.0006, + "loss": 3.6396005153656006, + "step": 2899 + }, + { + "epoch": 40.27959807776322, + "grad_norm": 0.208719402551651, + "learning_rate": 0.0006, + "loss": 3.6681132316589355, + "step": 2900 + }, + { + "epoch": 40.293577981651374, + "grad_norm": 0.21554480493068695, + "learning_rate": 0.0006, + "loss": 3.6417553424835205, + "step": 2901 + }, + { + "epoch": 40.30755788553954, + "grad_norm": 0.2290734499692917, + "learning_rate": 0.0006, + "loss": 3.6659927368164062, + "step": 2902 + }, + { + "epoch": 40.3215377894277, + "grad_norm": 0.20803220570087433, + "learning_rate": 0.0006, + "loss": 3.6443324089050293, + "step": 2903 + }, + { + "epoch": 40.33551769331586, + "grad_norm": 0.20334568619728088, + "learning_rate": 0.0006, + "loss": 3.6824207305908203, + "step": 2904 + }, + { + "epoch": 40.34949759720402, + "grad_norm": 0.2000233381986618, + "learning_rate": 0.0006, + "loss": 3.644399642944336, + "step": 2905 + }, + { + "epoch": 40.36347750109218, + "grad_norm": 0.21990752220153809, + "learning_rate": 0.0006, + "loss": 3.668160915374756, + "step": 2906 + }, + { + "epoch": 40.37745740498034, + "grad_norm": 0.24385249614715576, + "learning_rate": 0.0006, + "loss": 3.634392261505127, + "step": 2907 + }, + { + "epoch": 40.391437308868504, + "grad_norm": 0.21272684633731842, + "learning_rate": 0.0006, + "loss": 3.6504263877868652, + "step": 2908 + }, + { + "epoch": 40.40541721275666, + "grad_norm": 0.2003277838230133, + "learning_rate": 0.0006, + "loss": 3.6707763671875, + "step": 2909 + }, + { + "epoch": 40.419397116644824, + "grad_norm": 0.2086087465286255, + "learning_rate": 0.0006, + "loss": 3.66988468170166, + "step": 2910 + }, + { + "epoch": 40.43337702053299, + "grad_norm": 0.19706451892852783, + "learning_rate": 0.0006, + "loss": 3.662794828414917, + "step": 2911 + }, + { + "epoch": 40.44735692442114, + "grad_norm": 0.18795762956142426, + "learning_rate": 0.0006, + "loss": 3.628016233444214, + "step": 2912 + }, + { + "epoch": 40.46133682830931, + "grad_norm": 0.19931825995445251, + "learning_rate": 0.0006, + "loss": 3.6791915893554688, + "step": 2913 + }, + { + "epoch": 40.47531673219746, + "grad_norm": 0.21295934915542603, + "learning_rate": 0.0006, + "loss": 3.688632011413574, + "step": 2914 + }, + { + "epoch": 40.489296636085626, + "grad_norm": 0.2104834020137787, + "learning_rate": 0.0006, + "loss": 3.6270499229431152, + "step": 2915 + }, + { + "epoch": 40.50327653997379, + "grad_norm": 0.19942966103553772, + "learning_rate": 0.0006, + "loss": 3.651721477508545, + "step": 2916 + }, + { + "epoch": 40.517256443861946, + "grad_norm": 0.18890425562858582, + "learning_rate": 0.0006, + "loss": 3.6778619289398193, + "step": 2917 + }, + { + "epoch": 40.53123634775011, + "grad_norm": 0.19861607253551483, + "learning_rate": 0.0006, + "loss": 3.658832550048828, + "step": 2918 + }, + { + "epoch": 40.54521625163827, + "grad_norm": 0.21553616225719452, + "learning_rate": 0.0006, + "loss": 3.6566901206970215, + "step": 2919 + }, + { + "epoch": 40.55919615552643, + "grad_norm": 0.21698440611362457, + "learning_rate": 0.0006, + "loss": 3.6795129776000977, + "step": 2920 + }, + { + "epoch": 40.57317605941459, + "grad_norm": 0.20310913026332855, + "learning_rate": 0.0006, + "loss": 3.645244598388672, + "step": 2921 + }, + { + "epoch": 40.58715596330275, + "grad_norm": 0.2075812816619873, + "learning_rate": 0.0006, + "loss": 3.678452491760254, + "step": 2922 + }, + { + "epoch": 40.60113586719091, + "grad_norm": 0.20606619119644165, + "learning_rate": 0.0006, + "loss": 3.6150245666503906, + "step": 2923 + }, + { + "epoch": 40.615115771079076, + "grad_norm": 0.21511296927928925, + "learning_rate": 0.0006, + "loss": 3.6682112216949463, + "step": 2924 + }, + { + "epoch": 40.62909567496723, + "grad_norm": 0.19771839678287506, + "learning_rate": 0.0006, + "loss": 3.6639556884765625, + "step": 2925 + }, + { + "epoch": 40.643075578855395, + "grad_norm": 0.20419852435588837, + "learning_rate": 0.0006, + "loss": 3.664982318878174, + "step": 2926 + }, + { + "epoch": 40.65705548274356, + "grad_norm": 0.20119430124759674, + "learning_rate": 0.0006, + "loss": 3.661625385284424, + "step": 2927 + }, + { + "epoch": 40.671035386631715, + "grad_norm": 0.21590501070022583, + "learning_rate": 0.0006, + "loss": 3.673719644546509, + "step": 2928 + }, + { + "epoch": 40.68501529051988, + "grad_norm": 0.19165395200252533, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 2929 + }, + { + "epoch": 40.69899519440804, + "grad_norm": 0.19620473682880402, + "learning_rate": 0.0006, + "loss": 3.7008142471313477, + "step": 2930 + }, + { + "epoch": 40.7129750982962, + "grad_norm": 0.23002777993679047, + "learning_rate": 0.0006, + "loss": 3.654296875, + "step": 2931 + }, + { + "epoch": 40.72695500218436, + "grad_norm": 0.22007468342781067, + "learning_rate": 0.0006, + "loss": 3.688178539276123, + "step": 2932 + }, + { + "epoch": 40.74093490607252, + "grad_norm": 0.2030077874660492, + "learning_rate": 0.0006, + "loss": 3.6514129638671875, + "step": 2933 + }, + { + "epoch": 40.75491480996068, + "grad_norm": 0.20960700511932373, + "learning_rate": 0.0006, + "loss": 3.651864528656006, + "step": 2934 + }, + { + "epoch": 40.768894713848844, + "grad_norm": 0.2132565975189209, + "learning_rate": 0.0006, + "loss": 3.680915355682373, + "step": 2935 + }, + { + "epoch": 40.782874617737, + "grad_norm": 0.2411353588104248, + "learning_rate": 0.0006, + "loss": 3.647167682647705, + "step": 2936 + }, + { + "epoch": 40.796854521625164, + "grad_norm": 0.24621541798114777, + "learning_rate": 0.0006, + "loss": 3.6784768104553223, + "step": 2937 + }, + { + "epoch": 40.81083442551333, + "grad_norm": 0.23324407637119293, + "learning_rate": 0.0006, + "loss": 3.6855263710021973, + "step": 2938 + }, + { + "epoch": 40.824814329401484, + "grad_norm": 0.21749550104141235, + "learning_rate": 0.0006, + "loss": 3.672682285308838, + "step": 2939 + }, + { + "epoch": 40.83879423328965, + "grad_norm": 0.1957911103963852, + "learning_rate": 0.0006, + "loss": 3.635678291320801, + "step": 2940 + }, + { + "epoch": 40.8527741371778, + "grad_norm": 0.21262411773204803, + "learning_rate": 0.0006, + "loss": 3.6829824447631836, + "step": 2941 + }, + { + "epoch": 40.86675404106597, + "grad_norm": 0.19940680265426636, + "learning_rate": 0.0006, + "loss": 3.720932960510254, + "step": 2942 + }, + { + "epoch": 40.88073394495413, + "grad_norm": 0.1964999884366989, + "learning_rate": 0.0006, + "loss": 3.678405284881592, + "step": 2943 + }, + { + "epoch": 40.89471384884229, + "grad_norm": 0.21459022164344788, + "learning_rate": 0.0006, + "loss": 3.6788480281829834, + "step": 2944 + }, + { + "epoch": 40.90869375273045, + "grad_norm": 0.2251381129026413, + "learning_rate": 0.0006, + "loss": 3.679459571838379, + "step": 2945 + }, + { + "epoch": 40.92267365661861, + "grad_norm": 0.19951461255550385, + "learning_rate": 0.0006, + "loss": 3.6610841751098633, + "step": 2946 + }, + { + "epoch": 40.93665356050677, + "grad_norm": 0.2057943493127823, + "learning_rate": 0.0006, + "loss": 3.649491786956787, + "step": 2947 + }, + { + "epoch": 40.95063346439493, + "grad_norm": 0.19601917266845703, + "learning_rate": 0.0006, + "loss": 3.724552631378174, + "step": 2948 + }, + { + "epoch": 40.964613368283096, + "grad_norm": 0.20982769131660461, + "learning_rate": 0.0006, + "loss": 3.648465394973755, + "step": 2949 + }, + { + "epoch": 40.97859327217125, + "grad_norm": 0.21103954315185547, + "learning_rate": 0.0006, + "loss": 3.692239999771118, + "step": 2950 + }, + { + "epoch": 40.992573176059416, + "grad_norm": 0.2007385492324829, + "learning_rate": 0.0006, + "loss": 3.659999132156372, + "step": 2951 + }, + { + "epoch": 41.0, + "grad_norm": 0.22357431054115295, + "learning_rate": 0.0006, + "loss": 3.6461124420166016, + "step": 2952 + }, + { + "epoch": 41.0, + "eval_loss": 3.9891226291656494, + "eval_runtime": 44.65, + "eval_samples_per_second": 54.692, + "eval_steps_per_second": 3.427, + "step": 2952 + }, + { + "epoch": 41.01397990388816, + "grad_norm": 0.20387817919254303, + "learning_rate": 0.0006, + "loss": 3.643923282623291, + "step": 2953 + }, + { + "epoch": 41.02795980777632, + "grad_norm": 0.1988423764705658, + "learning_rate": 0.0006, + "loss": 3.6152570247650146, + "step": 2954 + }, + { + "epoch": 41.04193971166448, + "grad_norm": 0.19998641312122345, + "learning_rate": 0.0006, + "loss": 3.667520523071289, + "step": 2955 + }, + { + "epoch": 41.05591961555265, + "grad_norm": 0.18347714841365814, + "learning_rate": 0.0006, + "loss": 3.6289002895355225, + "step": 2956 + }, + { + "epoch": 41.0698995194408, + "grad_norm": 0.21235640347003937, + "learning_rate": 0.0006, + "loss": 3.6422951221466064, + "step": 2957 + }, + { + "epoch": 41.083879423328966, + "grad_norm": 0.1990172415971756, + "learning_rate": 0.0006, + "loss": 3.625697135925293, + "step": 2958 + }, + { + "epoch": 41.09785932721712, + "grad_norm": 0.18313643336296082, + "learning_rate": 0.0006, + "loss": 3.672356605529785, + "step": 2959 + }, + { + "epoch": 41.111839231105286, + "grad_norm": 0.17956401407718658, + "learning_rate": 0.0006, + "loss": 3.6093602180480957, + "step": 2960 + }, + { + "epoch": 41.12581913499345, + "grad_norm": 0.19487550854682922, + "learning_rate": 0.0006, + "loss": 3.6004128456115723, + "step": 2961 + }, + { + "epoch": 41.139799038881605, + "grad_norm": 0.2117495834827423, + "learning_rate": 0.0006, + "loss": 3.6468565464019775, + "step": 2962 + }, + { + "epoch": 41.15377894276977, + "grad_norm": 0.20602662861347198, + "learning_rate": 0.0006, + "loss": 3.6299140453338623, + "step": 2963 + }, + { + "epoch": 41.16775884665793, + "grad_norm": 0.21859265863895416, + "learning_rate": 0.0006, + "loss": 3.630052328109741, + "step": 2964 + }, + { + "epoch": 41.18173875054609, + "grad_norm": 0.22684140503406525, + "learning_rate": 0.0006, + "loss": 3.5995004177093506, + "step": 2965 + }, + { + "epoch": 41.19571865443425, + "grad_norm": 0.25682681798934937, + "learning_rate": 0.0006, + "loss": 3.613131523132324, + "step": 2966 + }, + { + "epoch": 41.20969855832241, + "grad_norm": 0.2508181631565094, + "learning_rate": 0.0006, + "loss": 3.644259452819824, + "step": 2967 + }, + { + "epoch": 41.22367846221057, + "grad_norm": 0.24200427532196045, + "learning_rate": 0.0006, + "loss": 3.6651816368103027, + "step": 2968 + }, + { + "epoch": 41.237658366098735, + "grad_norm": 0.21753790974617004, + "learning_rate": 0.0006, + "loss": 3.686199188232422, + "step": 2969 + }, + { + "epoch": 41.25163826998689, + "grad_norm": 0.19811955094337463, + "learning_rate": 0.0006, + "loss": 3.63014817237854, + "step": 2970 + }, + { + "epoch": 41.265618173875055, + "grad_norm": 0.19316327571868896, + "learning_rate": 0.0006, + "loss": 3.6532740592956543, + "step": 2971 + }, + { + "epoch": 41.27959807776322, + "grad_norm": 0.21440976858139038, + "learning_rate": 0.0006, + "loss": 3.6546850204467773, + "step": 2972 + }, + { + "epoch": 41.293577981651374, + "grad_norm": 0.2732681334018707, + "learning_rate": 0.0006, + "loss": 3.6135244369506836, + "step": 2973 + }, + { + "epoch": 41.30755788553954, + "grad_norm": 0.2588619589805603, + "learning_rate": 0.0006, + "loss": 3.657963275909424, + "step": 2974 + }, + { + "epoch": 41.3215377894277, + "grad_norm": 0.20054970681667328, + "learning_rate": 0.0006, + "loss": 3.6391024589538574, + "step": 2975 + }, + { + "epoch": 41.33551769331586, + "grad_norm": 0.23703549802303314, + "learning_rate": 0.0006, + "loss": 3.6609978675842285, + "step": 2976 + }, + { + "epoch": 41.34949759720402, + "grad_norm": 0.24222144484519958, + "learning_rate": 0.0006, + "loss": 3.659271478652954, + "step": 2977 + }, + { + "epoch": 41.36347750109218, + "grad_norm": 0.2228497713804245, + "learning_rate": 0.0006, + "loss": 3.607358455657959, + "step": 2978 + }, + { + "epoch": 41.37745740498034, + "grad_norm": 0.22105038166046143, + "learning_rate": 0.0006, + "loss": 3.64198899269104, + "step": 2979 + }, + { + "epoch": 41.391437308868504, + "grad_norm": 0.23753555119037628, + "learning_rate": 0.0006, + "loss": 3.63116455078125, + "step": 2980 + }, + { + "epoch": 41.40541721275666, + "grad_norm": 0.24492689967155457, + "learning_rate": 0.0006, + "loss": 3.636122465133667, + "step": 2981 + }, + { + "epoch": 41.419397116644824, + "grad_norm": 0.20610782504081726, + "learning_rate": 0.0006, + "loss": 3.656487226486206, + "step": 2982 + }, + { + "epoch": 41.43337702053299, + "grad_norm": 0.20781412720680237, + "learning_rate": 0.0006, + "loss": 3.669196605682373, + "step": 2983 + }, + { + "epoch": 41.44735692442114, + "grad_norm": 0.23892036080360413, + "learning_rate": 0.0006, + "loss": 3.6345765590667725, + "step": 2984 + }, + { + "epoch": 41.46133682830931, + "grad_norm": 0.2477712333202362, + "learning_rate": 0.0006, + "loss": 3.6599812507629395, + "step": 2985 + }, + { + "epoch": 41.47531673219746, + "grad_norm": 0.25314703583717346, + "learning_rate": 0.0006, + "loss": 3.6737258434295654, + "step": 2986 + }, + { + "epoch": 41.489296636085626, + "grad_norm": 0.2386070191860199, + "learning_rate": 0.0006, + "loss": 3.666586399078369, + "step": 2987 + }, + { + "epoch": 41.50327653997379, + "grad_norm": 0.27259722352027893, + "learning_rate": 0.0006, + "loss": 3.658761501312256, + "step": 2988 + }, + { + "epoch": 41.517256443861946, + "grad_norm": 0.3312860429286957, + "learning_rate": 0.0006, + "loss": 3.629699230194092, + "step": 2989 + }, + { + "epoch": 41.53123634775011, + "grad_norm": 0.3321581780910492, + "learning_rate": 0.0006, + "loss": 3.66628360748291, + "step": 2990 + }, + { + "epoch": 41.54521625163827, + "grad_norm": 0.2850016951560974, + "learning_rate": 0.0006, + "loss": 3.690005302429199, + "step": 2991 + }, + { + "epoch": 41.55919615552643, + "grad_norm": 0.2544100880622864, + "learning_rate": 0.0006, + "loss": 3.6554486751556396, + "step": 2992 + }, + { + "epoch": 41.57317605941459, + "grad_norm": 0.28541380167007446, + "learning_rate": 0.0006, + "loss": 3.672952175140381, + "step": 2993 + }, + { + "epoch": 41.58715596330275, + "grad_norm": 0.2909766435623169, + "learning_rate": 0.0006, + "loss": 3.6649627685546875, + "step": 2994 + }, + { + "epoch": 41.60113586719091, + "grad_norm": 0.26089969277381897, + "learning_rate": 0.0006, + "loss": 3.6512341499328613, + "step": 2995 + }, + { + "epoch": 41.615115771079076, + "grad_norm": 0.21815894544124603, + "learning_rate": 0.0006, + "loss": 3.612436056137085, + "step": 2996 + }, + { + "epoch": 41.62909567496723, + "grad_norm": 0.20712246000766754, + "learning_rate": 0.0006, + "loss": 3.6482479572296143, + "step": 2997 + }, + { + "epoch": 41.643075578855395, + "grad_norm": 0.23280103504657745, + "learning_rate": 0.0006, + "loss": 3.6648616790771484, + "step": 2998 + }, + { + "epoch": 41.65705548274356, + "grad_norm": 0.21623823046684265, + "learning_rate": 0.0006, + "loss": 3.6714487075805664, + "step": 2999 + }, + { + "epoch": 41.671035386631715, + "grad_norm": 0.2081632912158966, + "learning_rate": 0.0006, + "loss": 3.693014144897461, + "step": 3000 + }, + { + "epoch": 41.68501529051988, + "grad_norm": 0.23109425604343414, + "learning_rate": 0.0006, + "loss": 3.667262554168701, + "step": 3001 + }, + { + "epoch": 41.69899519440804, + "grad_norm": 0.2304934561252594, + "learning_rate": 0.0006, + "loss": 3.666405439376831, + "step": 3002 + }, + { + "epoch": 41.7129750982962, + "grad_norm": 0.23132432997226715, + "learning_rate": 0.0006, + "loss": 3.690964698791504, + "step": 3003 + }, + { + "epoch": 41.72695500218436, + "grad_norm": 0.2085159569978714, + "learning_rate": 0.0006, + "loss": 3.6620168685913086, + "step": 3004 + }, + { + "epoch": 41.74093490607252, + "grad_norm": 0.1919657438993454, + "learning_rate": 0.0006, + "loss": 3.67447566986084, + "step": 3005 + }, + { + "epoch": 41.75491480996068, + "grad_norm": 0.20189036428928375, + "learning_rate": 0.0006, + "loss": 3.6434998512268066, + "step": 3006 + }, + { + "epoch": 41.768894713848844, + "grad_norm": 0.23530980944633484, + "learning_rate": 0.0006, + "loss": 3.644280433654785, + "step": 3007 + }, + { + "epoch": 41.782874617737, + "grad_norm": 0.2550027370452881, + "learning_rate": 0.0006, + "loss": 3.6686060428619385, + "step": 3008 + }, + { + "epoch": 41.796854521625164, + "grad_norm": 0.2285512536764145, + "learning_rate": 0.0006, + "loss": 3.7013134956359863, + "step": 3009 + }, + { + "epoch": 41.81083442551333, + "grad_norm": 0.20538675785064697, + "learning_rate": 0.0006, + "loss": 3.6568830013275146, + "step": 3010 + }, + { + "epoch": 41.824814329401484, + "grad_norm": 0.2007976472377777, + "learning_rate": 0.0006, + "loss": 3.680250883102417, + "step": 3011 + }, + { + "epoch": 41.83879423328965, + "grad_norm": 0.20060500502586365, + "learning_rate": 0.0006, + "loss": 3.6565070152282715, + "step": 3012 + }, + { + "epoch": 41.8527741371778, + "grad_norm": 0.21055014431476593, + "learning_rate": 0.0006, + "loss": 3.661667823791504, + "step": 3013 + }, + { + "epoch": 41.86675404106597, + "grad_norm": 0.2201126217842102, + "learning_rate": 0.0006, + "loss": 3.650052070617676, + "step": 3014 + }, + { + "epoch": 41.88073394495413, + "grad_norm": 0.20397843420505524, + "learning_rate": 0.0006, + "loss": 3.6535415649414062, + "step": 3015 + }, + { + "epoch": 41.89471384884229, + "grad_norm": 0.1993463635444641, + "learning_rate": 0.0006, + "loss": 3.665696144104004, + "step": 3016 + }, + { + "epoch": 41.90869375273045, + "grad_norm": 0.20448797941207886, + "learning_rate": 0.0006, + "loss": 3.6448118686676025, + "step": 3017 + }, + { + "epoch": 41.92267365661861, + "grad_norm": 0.2064918726682663, + "learning_rate": 0.0006, + "loss": 3.6881537437438965, + "step": 3018 + }, + { + "epoch": 41.93665356050677, + "grad_norm": 0.20554372668266296, + "learning_rate": 0.0006, + "loss": 3.688559055328369, + "step": 3019 + }, + { + "epoch": 41.95063346439493, + "grad_norm": 0.1862783133983612, + "learning_rate": 0.0006, + "loss": 3.6713812351226807, + "step": 3020 + }, + { + "epoch": 41.964613368283096, + "grad_norm": 0.18139860033988953, + "learning_rate": 0.0006, + "loss": 3.6612548828125, + "step": 3021 + }, + { + "epoch": 41.97859327217125, + "grad_norm": 0.1844220608472824, + "learning_rate": 0.0006, + "loss": 3.641725540161133, + "step": 3022 + }, + { + "epoch": 41.992573176059416, + "grad_norm": 0.1885213702917099, + "learning_rate": 0.0006, + "loss": 3.663257122039795, + "step": 3023 + }, + { + "epoch": 42.0, + "grad_norm": 0.2250746339559555, + "learning_rate": 0.0006, + "loss": 3.6479320526123047, + "step": 3024 + }, + { + "epoch": 42.0, + "eval_loss": 3.993955135345459, + "eval_runtime": 44.4709, + "eval_samples_per_second": 54.912, + "eval_steps_per_second": 3.44, + "step": 3024 + }, + { + "epoch": 42.01397990388816, + "grad_norm": 0.21096517145633698, + "learning_rate": 0.0006, + "loss": 3.6729278564453125, + "step": 3025 + }, + { + "epoch": 42.02795980777632, + "grad_norm": 0.2106277495622635, + "learning_rate": 0.0006, + "loss": 3.629892349243164, + "step": 3026 + }, + { + "epoch": 42.04193971166448, + "grad_norm": 0.2673060894012451, + "learning_rate": 0.0006, + "loss": 3.643604040145874, + "step": 3027 + }, + { + "epoch": 42.05591961555265, + "grad_norm": 0.28180691599845886, + "learning_rate": 0.0006, + "loss": 3.596560478210449, + "step": 3028 + }, + { + "epoch": 42.0698995194408, + "grad_norm": 0.25607243180274963, + "learning_rate": 0.0006, + "loss": 3.597935199737549, + "step": 3029 + }, + { + "epoch": 42.083879423328966, + "grad_norm": 0.22120746970176697, + "learning_rate": 0.0006, + "loss": 3.6219305992126465, + "step": 3030 + }, + { + "epoch": 42.09785932721712, + "grad_norm": 0.2164907306432724, + "learning_rate": 0.0006, + "loss": 3.6220779418945312, + "step": 3031 + }, + { + "epoch": 42.111839231105286, + "grad_norm": 0.23800921440124512, + "learning_rate": 0.0006, + "loss": 3.63372540473938, + "step": 3032 + }, + { + "epoch": 42.12581913499345, + "grad_norm": 0.21812695264816284, + "learning_rate": 0.0006, + "loss": 3.636105537414551, + "step": 3033 + }, + { + "epoch": 42.139799038881605, + "grad_norm": 0.2027447372674942, + "learning_rate": 0.0006, + "loss": 3.6167502403259277, + "step": 3034 + }, + { + "epoch": 42.15377894276977, + "grad_norm": 0.20157714188098907, + "learning_rate": 0.0006, + "loss": 3.6141409873962402, + "step": 3035 + }, + { + "epoch": 42.16775884665793, + "grad_norm": 0.20780996978282928, + "learning_rate": 0.0006, + "loss": 3.6323471069335938, + "step": 3036 + }, + { + "epoch": 42.18173875054609, + "grad_norm": 0.20025081932544708, + "learning_rate": 0.0006, + "loss": 3.625446081161499, + "step": 3037 + }, + { + "epoch": 42.19571865443425, + "grad_norm": 0.20019082725048065, + "learning_rate": 0.0006, + "loss": 3.631418228149414, + "step": 3038 + }, + { + "epoch": 42.20969855832241, + "grad_norm": 0.21194526553153992, + "learning_rate": 0.0006, + "loss": 3.6180832386016846, + "step": 3039 + }, + { + "epoch": 42.22367846221057, + "grad_norm": 0.2016245573759079, + "learning_rate": 0.0006, + "loss": 3.6388602256774902, + "step": 3040 + }, + { + "epoch": 42.237658366098735, + "grad_norm": 0.1892252415418625, + "learning_rate": 0.0006, + "loss": 3.6086854934692383, + "step": 3041 + }, + { + "epoch": 42.25163826998689, + "grad_norm": 0.1878061145544052, + "learning_rate": 0.0006, + "loss": 3.599428176879883, + "step": 3042 + }, + { + "epoch": 42.265618173875055, + "grad_norm": 0.20258742570877075, + "learning_rate": 0.0006, + "loss": 3.6177172660827637, + "step": 3043 + }, + { + "epoch": 42.27959807776322, + "grad_norm": 0.2114444226026535, + "learning_rate": 0.0006, + "loss": 3.641916275024414, + "step": 3044 + }, + { + "epoch": 42.293577981651374, + "grad_norm": 0.19873645901679993, + "learning_rate": 0.0006, + "loss": 3.6585676670074463, + "step": 3045 + }, + { + "epoch": 42.30755788553954, + "grad_norm": 0.20361217856407166, + "learning_rate": 0.0006, + "loss": 3.648475170135498, + "step": 3046 + }, + { + "epoch": 42.3215377894277, + "grad_norm": 0.20227114856243134, + "learning_rate": 0.0006, + "loss": 3.63625431060791, + "step": 3047 + }, + { + "epoch": 42.33551769331586, + "grad_norm": 0.18246233463287354, + "learning_rate": 0.0006, + "loss": 3.6380200386047363, + "step": 3048 + }, + { + "epoch": 42.34949759720402, + "grad_norm": 0.17944976687431335, + "learning_rate": 0.0006, + "loss": 3.6325912475585938, + "step": 3049 + }, + { + "epoch": 42.36347750109218, + "grad_norm": 0.188584566116333, + "learning_rate": 0.0006, + "loss": 3.6418886184692383, + "step": 3050 + }, + { + "epoch": 42.37745740498034, + "grad_norm": 0.1917790323495865, + "learning_rate": 0.0006, + "loss": 3.664421558380127, + "step": 3051 + }, + { + "epoch": 42.391437308868504, + "grad_norm": 0.175637349486351, + "learning_rate": 0.0006, + "loss": 3.641819953918457, + "step": 3052 + }, + { + "epoch": 42.40541721275666, + "grad_norm": 0.18751518428325653, + "learning_rate": 0.0006, + "loss": 3.646697998046875, + "step": 3053 + }, + { + "epoch": 42.419397116644824, + "grad_norm": 0.1805887520313263, + "learning_rate": 0.0006, + "loss": 3.637866735458374, + "step": 3054 + }, + { + "epoch": 42.43337702053299, + "grad_norm": 0.19680845737457275, + "learning_rate": 0.0006, + "loss": 3.602511405944824, + "step": 3055 + }, + { + "epoch": 42.44735692442114, + "grad_norm": 0.20605766773223877, + "learning_rate": 0.0006, + "loss": 3.6472771167755127, + "step": 3056 + }, + { + "epoch": 42.46133682830931, + "grad_norm": 0.18083851039409637, + "learning_rate": 0.0006, + "loss": 3.6672325134277344, + "step": 3057 + }, + { + "epoch": 42.47531673219746, + "grad_norm": 0.19665084779262543, + "learning_rate": 0.0006, + "loss": 3.625300884246826, + "step": 3058 + }, + { + "epoch": 42.489296636085626, + "grad_norm": 0.22506165504455566, + "learning_rate": 0.0006, + "loss": 3.592872142791748, + "step": 3059 + }, + { + "epoch": 42.50327653997379, + "grad_norm": 0.2051578164100647, + "learning_rate": 0.0006, + "loss": 3.6302249431610107, + "step": 3060 + }, + { + "epoch": 42.517256443861946, + "grad_norm": 0.18957172334194183, + "learning_rate": 0.0006, + "loss": 3.6277074813842773, + "step": 3061 + }, + { + "epoch": 42.53123634775011, + "grad_norm": 0.21467208862304688, + "learning_rate": 0.0006, + "loss": 3.6121392250061035, + "step": 3062 + }, + { + "epoch": 42.54521625163827, + "grad_norm": 0.21618402004241943, + "learning_rate": 0.0006, + "loss": 3.664738655090332, + "step": 3063 + }, + { + "epoch": 42.55919615552643, + "grad_norm": 0.2259770780801773, + "learning_rate": 0.0006, + "loss": 3.652042865753174, + "step": 3064 + }, + { + "epoch": 42.57317605941459, + "grad_norm": 0.22667232155799866, + "learning_rate": 0.0006, + "loss": 3.6552934646606445, + "step": 3065 + }, + { + "epoch": 42.58715596330275, + "grad_norm": 0.21405228972434998, + "learning_rate": 0.0006, + "loss": 3.644043445587158, + "step": 3066 + }, + { + "epoch": 42.60113586719091, + "grad_norm": 0.20855450630187988, + "learning_rate": 0.0006, + "loss": 3.6534876823425293, + "step": 3067 + }, + { + "epoch": 42.615115771079076, + "grad_norm": 0.22474415600299835, + "learning_rate": 0.0006, + "loss": 3.656677484512329, + "step": 3068 + }, + { + "epoch": 42.62909567496723, + "grad_norm": 0.23401428759098053, + "learning_rate": 0.0006, + "loss": 3.6788997650146484, + "step": 3069 + }, + { + "epoch": 42.643075578855395, + "grad_norm": 0.21567967534065247, + "learning_rate": 0.0006, + "loss": 3.675379753112793, + "step": 3070 + }, + { + "epoch": 42.65705548274356, + "grad_norm": 0.21704941987991333, + "learning_rate": 0.0006, + "loss": 3.630707263946533, + "step": 3071 + }, + { + "epoch": 42.671035386631715, + "grad_norm": 0.2718963921070099, + "learning_rate": 0.0006, + "loss": 3.6653294563293457, + "step": 3072 + }, + { + "epoch": 42.68501529051988, + "grad_norm": 0.30198901891708374, + "learning_rate": 0.0006, + "loss": 3.6761326789855957, + "step": 3073 + }, + { + "epoch": 42.69899519440804, + "grad_norm": 0.27593618631362915, + "learning_rate": 0.0006, + "loss": 3.6610732078552246, + "step": 3074 + }, + { + "epoch": 42.7129750982962, + "grad_norm": 0.22495242953300476, + "learning_rate": 0.0006, + "loss": 3.656907320022583, + "step": 3075 + }, + { + "epoch": 42.72695500218436, + "grad_norm": 0.19872353971004486, + "learning_rate": 0.0006, + "loss": 3.6611597537994385, + "step": 3076 + }, + { + "epoch": 42.74093490607252, + "grad_norm": 0.21527111530303955, + "learning_rate": 0.0006, + "loss": 3.676821708679199, + "step": 3077 + }, + { + "epoch": 42.75491480996068, + "grad_norm": 0.22314463555812836, + "learning_rate": 0.0006, + "loss": 3.629460334777832, + "step": 3078 + }, + { + "epoch": 42.768894713848844, + "grad_norm": 0.23461024463176727, + "learning_rate": 0.0006, + "loss": 3.665390968322754, + "step": 3079 + }, + { + "epoch": 42.782874617737, + "grad_norm": 0.2582414448261261, + "learning_rate": 0.0006, + "loss": 3.6420979499816895, + "step": 3080 + }, + { + "epoch": 42.796854521625164, + "grad_norm": 0.2505052983760834, + "learning_rate": 0.0006, + "loss": 3.67236328125, + "step": 3081 + }, + { + "epoch": 42.81083442551333, + "grad_norm": 0.22617632150650024, + "learning_rate": 0.0006, + "loss": 3.654897689819336, + "step": 3082 + }, + { + "epoch": 42.824814329401484, + "grad_norm": 0.2340085208415985, + "learning_rate": 0.0006, + "loss": 3.6423635482788086, + "step": 3083 + }, + { + "epoch": 42.83879423328965, + "grad_norm": 0.26765671372413635, + "learning_rate": 0.0006, + "loss": 3.622769832611084, + "step": 3084 + }, + { + "epoch": 42.8527741371778, + "grad_norm": 0.29490381479263306, + "learning_rate": 0.0006, + "loss": 3.656053066253662, + "step": 3085 + }, + { + "epoch": 42.86675404106597, + "grad_norm": 0.29776132106781006, + "learning_rate": 0.0006, + "loss": 3.6454644203186035, + "step": 3086 + }, + { + "epoch": 42.88073394495413, + "grad_norm": 0.23994849622249603, + "learning_rate": 0.0006, + "loss": 3.674665927886963, + "step": 3087 + }, + { + "epoch": 42.89471384884229, + "grad_norm": 0.21456265449523926, + "learning_rate": 0.0006, + "loss": 3.670175790786743, + "step": 3088 + }, + { + "epoch": 42.90869375273045, + "grad_norm": 0.25727778673171997, + "learning_rate": 0.0006, + "loss": 3.6425390243530273, + "step": 3089 + }, + { + "epoch": 42.92267365661861, + "grad_norm": 0.30310627818107605, + "learning_rate": 0.0006, + "loss": 3.68511962890625, + "step": 3090 + }, + { + "epoch": 42.93665356050677, + "grad_norm": 0.2792291045188904, + "learning_rate": 0.0006, + "loss": 3.681732654571533, + "step": 3091 + }, + { + "epoch": 42.95063346439493, + "grad_norm": 0.23614276945590973, + "learning_rate": 0.0006, + "loss": 3.6417222023010254, + "step": 3092 + }, + { + "epoch": 42.964613368283096, + "grad_norm": 0.23602448403835297, + "learning_rate": 0.0006, + "loss": 3.6602869033813477, + "step": 3093 + }, + { + "epoch": 42.97859327217125, + "grad_norm": 0.21968287229537964, + "learning_rate": 0.0006, + "loss": 3.6618118286132812, + "step": 3094 + }, + { + "epoch": 42.992573176059416, + "grad_norm": 0.2177523374557495, + "learning_rate": 0.0006, + "loss": 3.666904926300049, + "step": 3095 + }, + { + "epoch": 43.0, + "grad_norm": 0.23960894346237183, + "learning_rate": 0.0006, + "loss": 3.710965633392334, + "step": 3096 + }, + { + "epoch": 43.0, + "eval_loss": 3.977475166320801, + "eval_runtime": 44.5209, + "eval_samples_per_second": 54.851, + "eval_steps_per_second": 3.437, + "step": 3096 + }, + { + "epoch": 43.01397990388816, + "grad_norm": 0.24180234968662262, + "learning_rate": 0.0006, + "loss": 3.5949223041534424, + "step": 3097 + }, + { + "epoch": 43.02795980777632, + "grad_norm": 0.3331127166748047, + "learning_rate": 0.0006, + "loss": 3.625802755355835, + "step": 3098 + }, + { + "epoch": 43.04193971166448, + "grad_norm": 0.38338130712509155, + "learning_rate": 0.0006, + "loss": 3.6390271186828613, + "step": 3099 + }, + { + "epoch": 43.05591961555265, + "grad_norm": 0.32292598485946655, + "learning_rate": 0.0006, + "loss": 3.630621910095215, + "step": 3100 + }, + { + "epoch": 43.0698995194408, + "grad_norm": 0.24179677665233612, + "learning_rate": 0.0006, + "loss": 3.6124491691589355, + "step": 3101 + }, + { + "epoch": 43.083879423328966, + "grad_norm": 0.2622842788696289, + "learning_rate": 0.0006, + "loss": 3.6207399368286133, + "step": 3102 + }, + { + "epoch": 43.09785932721712, + "grad_norm": 0.264297217130661, + "learning_rate": 0.0006, + "loss": 3.637218475341797, + "step": 3103 + }, + { + "epoch": 43.111839231105286, + "grad_norm": 0.25815117359161377, + "learning_rate": 0.0006, + "loss": 3.614841938018799, + "step": 3104 + }, + { + "epoch": 43.12581913499345, + "grad_norm": 0.2209406942129135, + "learning_rate": 0.0006, + "loss": 3.604722738265991, + "step": 3105 + }, + { + "epoch": 43.139799038881605, + "grad_norm": 0.22333410382270813, + "learning_rate": 0.0006, + "loss": 3.6388449668884277, + "step": 3106 + }, + { + "epoch": 43.15377894276977, + "grad_norm": 0.2194417119026184, + "learning_rate": 0.0006, + "loss": 3.611644744873047, + "step": 3107 + }, + { + "epoch": 43.16775884665793, + "grad_norm": 0.21270349621772766, + "learning_rate": 0.0006, + "loss": 3.6180214881896973, + "step": 3108 + }, + { + "epoch": 43.18173875054609, + "grad_norm": 0.21358032524585724, + "learning_rate": 0.0006, + "loss": 3.646512985229492, + "step": 3109 + }, + { + "epoch": 43.19571865443425, + "grad_norm": 0.2180788666009903, + "learning_rate": 0.0006, + "loss": 3.641981363296509, + "step": 3110 + }, + { + "epoch": 43.20969855832241, + "grad_norm": 0.21979685127735138, + "learning_rate": 0.0006, + "loss": 3.6251654624938965, + "step": 3111 + }, + { + "epoch": 43.22367846221057, + "grad_norm": 0.2072533220052719, + "learning_rate": 0.0006, + "loss": 3.665372371673584, + "step": 3112 + }, + { + "epoch": 43.237658366098735, + "grad_norm": 0.2085742950439453, + "learning_rate": 0.0006, + "loss": 3.647730827331543, + "step": 3113 + }, + { + "epoch": 43.25163826998689, + "grad_norm": 0.1934993416070938, + "learning_rate": 0.0006, + "loss": 3.6296567916870117, + "step": 3114 + }, + { + "epoch": 43.265618173875055, + "grad_norm": 0.1954783797264099, + "learning_rate": 0.0006, + "loss": 3.6412858963012695, + "step": 3115 + }, + { + "epoch": 43.27959807776322, + "grad_norm": 0.1932750642299652, + "learning_rate": 0.0006, + "loss": 3.6246860027313232, + "step": 3116 + }, + { + "epoch": 43.293577981651374, + "grad_norm": 0.19765302538871765, + "learning_rate": 0.0006, + "loss": 3.618922710418701, + "step": 3117 + }, + { + "epoch": 43.30755788553954, + "grad_norm": 0.1987425684928894, + "learning_rate": 0.0006, + "loss": 3.633185863494873, + "step": 3118 + }, + { + "epoch": 43.3215377894277, + "grad_norm": 0.1894739419221878, + "learning_rate": 0.0006, + "loss": 3.595709800720215, + "step": 3119 + }, + { + "epoch": 43.33551769331586, + "grad_norm": 0.19455872476100922, + "learning_rate": 0.0006, + "loss": 3.6309051513671875, + "step": 3120 + }, + { + "epoch": 43.34949759720402, + "grad_norm": 0.21448275446891785, + "learning_rate": 0.0006, + "loss": 3.6425981521606445, + "step": 3121 + }, + { + "epoch": 43.36347750109218, + "grad_norm": 0.24527893960475922, + "learning_rate": 0.0006, + "loss": 3.6497793197631836, + "step": 3122 + }, + { + "epoch": 43.37745740498034, + "grad_norm": 0.253231942653656, + "learning_rate": 0.0006, + "loss": 3.644453525543213, + "step": 3123 + }, + { + "epoch": 43.391437308868504, + "grad_norm": 0.2048978954553604, + "learning_rate": 0.0006, + "loss": 3.5963876247406006, + "step": 3124 + }, + { + "epoch": 43.40541721275666, + "grad_norm": 0.19951528310775757, + "learning_rate": 0.0006, + "loss": 3.6274406909942627, + "step": 3125 + }, + { + "epoch": 43.419397116644824, + "grad_norm": 0.2293875813484192, + "learning_rate": 0.0006, + "loss": 3.6482725143432617, + "step": 3126 + }, + { + "epoch": 43.43337702053299, + "grad_norm": 0.22379456460475922, + "learning_rate": 0.0006, + "loss": 3.6466073989868164, + "step": 3127 + }, + { + "epoch": 43.44735692442114, + "grad_norm": 0.2275441288948059, + "learning_rate": 0.0006, + "loss": 3.6529078483581543, + "step": 3128 + }, + { + "epoch": 43.46133682830931, + "grad_norm": 0.23014242947101593, + "learning_rate": 0.0006, + "loss": 3.6084837913513184, + "step": 3129 + }, + { + "epoch": 43.47531673219746, + "grad_norm": 0.22280924022197723, + "learning_rate": 0.0006, + "loss": 3.611320734024048, + "step": 3130 + }, + { + "epoch": 43.489296636085626, + "grad_norm": 0.19498756527900696, + "learning_rate": 0.0006, + "loss": 3.630185604095459, + "step": 3131 + }, + { + "epoch": 43.50327653997379, + "grad_norm": 0.21357767283916473, + "learning_rate": 0.0006, + "loss": 3.6509933471679688, + "step": 3132 + }, + { + "epoch": 43.517256443861946, + "grad_norm": 0.21775896847248077, + "learning_rate": 0.0006, + "loss": 3.635112762451172, + "step": 3133 + }, + { + "epoch": 43.53123634775011, + "grad_norm": 0.2035629004240036, + "learning_rate": 0.0006, + "loss": 3.658327102661133, + "step": 3134 + }, + { + "epoch": 43.54521625163827, + "grad_norm": 0.20083840191364288, + "learning_rate": 0.0006, + "loss": 3.632441997528076, + "step": 3135 + }, + { + "epoch": 43.55919615552643, + "grad_norm": 0.1922001987695694, + "learning_rate": 0.0006, + "loss": 3.6417734622955322, + "step": 3136 + }, + { + "epoch": 43.57317605941459, + "grad_norm": 0.21049264073371887, + "learning_rate": 0.0006, + "loss": 3.671274423599243, + "step": 3137 + }, + { + "epoch": 43.58715596330275, + "grad_norm": 0.21432001888751984, + "learning_rate": 0.0006, + "loss": 3.6216118335723877, + "step": 3138 + }, + { + "epoch": 43.60113586719091, + "grad_norm": 0.25448811054229736, + "learning_rate": 0.0006, + "loss": 3.658283233642578, + "step": 3139 + }, + { + "epoch": 43.615115771079076, + "grad_norm": 0.24313904345035553, + "learning_rate": 0.0006, + "loss": 3.6447594165802, + "step": 3140 + }, + { + "epoch": 43.62909567496723, + "grad_norm": 0.2332659363746643, + "learning_rate": 0.0006, + "loss": 3.625528573989868, + "step": 3141 + }, + { + "epoch": 43.643075578855395, + "grad_norm": 0.23222137987613678, + "learning_rate": 0.0006, + "loss": 3.6524429321289062, + "step": 3142 + }, + { + "epoch": 43.65705548274356, + "grad_norm": 0.2147051990032196, + "learning_rate": 0.0006, + "loss": 3.6517302989959717, + "step": 3143 + }, + { + "epoch": 43.671035386631715, + "grad_norm": 0.2464994341135025, + "learning_rate": 0.0006, + "loss": 3.654947519302368, + "step": 3144 + }, + { + "epoch": 43.68501529051988, + "grad_norm": 0.2365981936454773, + "learning_rate": 0.0006, + "loss": 3.638695240020752, + "step": 3145 + }, + { + "epoch": 43.69899519440804, + "grad_norm": 0.2325262874364853, + "learning_rate": 0.0006, + "loss": 3.6496055126190186, + "step": 3146 + }, + { + "epoch": 43.7129750982962, + "grad_norm": 0.2196085900068283, + "learning_rate": 0.0006, + "loss": 3.6323978900909424, + "step": 3147 + }, + { + "epoch": 43.72695500218436, + "grad_norm": 0.20404237508773804, + "learning_rate": 0.0006, + "loss": 3.6572763919830322, + "step": 3148 + }, + { + "epoch": 43.74093490607252, + "grad_norm": 0.2363257110118866, + "learning_rate": 0.0006, + "loss": 3.6347732543945312, + "step": 3149 + }, + { + "epoch": 43.75491480996068, + "grad_norm": 0.23671524226665497, + "learning_rate": 0.0006, + "loss": 3.650017023086548, + "step": 3150 + }, + { + "epoch": 43.768894713848844, + "grad_norm": 0.20892305672168732, + "learning_rate": 0.0006, + "loss": 3.638185977935791, + "step": 3151 + }, + { + "epoch": 43.782874617737, + "grad_norm": 0.18670055270195007, + "learning_rate": 0.0006, + "loss": 3.6647696495056152, + "step": 3152 + }, + { + "epoch": 43.796854521625164, + "grad_norm": 0.21818184852600098, + "learning_rate": 0.0006, + "loss": 3.663623332977295, + "step": 3153 + }, + { + "epoch": 43.81083442551333, + "grad_norm": 0.23472464084625244, + "learning_rate": 0.0006, + "loss": 3.650595188140869, + "step": 3154 + }, + { + "epoch": 43.824814329401484, + "grad_norm": 0.2266419678926468, + "learning_rate": 0.0006, + "loss": 3.6362059116363525, + "step": 3155 + }, + { + "epoch": 43.83879423328965, + "grad_norm": 0.2250787913799286, + "learning_rate": 0.0006, + "loss": 3.647970199584961, + "step": 3156 + }, + { + "epoch": 43.8527741371778, + "grad_norm": 0.21493776142597198, + "learning_rate": 0.0006, + "loss": 3.6510982513427734, + "step": 3157 + }, + { + "epoch": 43.86675404106597, + "grad_norm": 0.20783160626888275, + "learning_rate": 0.0006, + "loss": 3.654845714569092, + "step": 3158 + }, + { + "epoch": 43.88073394495413, + "grad_norm": 0.2222554087638855, + "learning_rate": 0.0006, + "loss": 3.6565685272216797, + "step": 3159 + }, + { + "epoch": 43.89471384884229, + "grad_norm": 0.2148049771785736, + "learning_rate": 0.0006, + "loss": 3.630779266357422, + "step": 3160 + }, + { + "epoch": 43.90869375273045, + "grad_norm": 0.2222086787223816, + "learning_rate": 0.0006, + "loss": 3.6312813758850098, + "step": 3161 + }, + { + "epoch": 43.92267365661861, + "grad_norm": 0.24049264192581177, + "learning_rate": 0.0006, + "loss": 3.6185736656188965, + "step": 3162 + }, + { + "epoch": 43.93665356050677, + "grad_norm": 0.2228843867778778, + "learning_rate": 0.0006, + "loss": 3.595583438873291, + "step": 3163 + }, + { + "epoch": 43.95063346439493, + "grad_norm": 0.20714408159255981, + "learning_rate": 0.0006, + "loss": 3.6649322509765625, + "step": 3164 + }, + { + "epoch": 43.964613368283096, + "grad_norm": 0.2048991471529007, + "learning_rate": 0.0006, + "loss": 3.6513710021972656, + "step": 3165 + }, + { + "epoch": 43.97859327217125, + "grad_norm": 0.21874114871025085, + "learning_rate": 0.0006, + "loss": 3.6471524238586426, + "step": 3166 + }, + { + "epoch": 43.992573176059416, + "grad_norm": 0.21309879422187805, + "learning_rate": 0.0006, + "loss": 3.647021770477295, + "step": 3167 + }, + { + "epoch": 44.0, + "grad_norm": 0.23717166483402252, + "learning_rate": 0.0006, + "loss": 3.6903820037841797, + "step": 3168 + }, + { + "epoch": 44.0, + "eval_loss": 3.9844837188720703, + "eval_runtime": 44.29, + "eval_samples_per_second": 55.137, + "eval_steps_per_second": 3.455, + "step": 3168 + }, + { + "epoch": 44.01397990388816, + "grad_norm": 0.21503832936286926, + "learning_rate": 0.0006, + "loss": 3.6054744720458984, + "step": 3169 + }, + { + "epoch": 44.02795980777632, + "grad_norm": 0.2289554923772812, + "learning_rate": 0.0006, + "loss": 3.6560556888580322, + "step": 3170 + }, + { + "epoch": 44.04193971166448, + "grad_norm": 0.24250416457653046, + "learning_rate": 0.0006, + "loss": 3.611820697784424, + "step": 3171 + }, + { + "epoch": 44.05591961555265, + "grad_norm": 0.2526668310165405, + "learning_rate": 0.0006, + "loss": 3.6273183822631836, + "step": 3172 + }, + { + "epoch": 44.0698995194408, + "grad_norm": 0.26702383160591125, + "learning_rate": 0.0006, + "loss": 3.5856852531433105, + "step": 3173 + }, + { + "epoch": 44.083879423328966, + "grad_norm": 0.2715195417404175, + "learning_rate": 0.0006, + "loss": 3.631045341491699, + "step": 3174 + }, + { + "epoch": 44.09785932721712, + "grad_norm": 0.3505614995956421, + "learning_rate": 0.0006, + "loss": 3.628720760345459, + "step": 3175 + }, + { + "epoch": 44.111839231105286, + "grad_norm": 0.2760702967643738, + "learning_rate": 0.0006, + "loss": 3.6283509731292725, + "step": 3176 + }, + { + "epoch": 44.12581913499345, + "grad_norm": 0.21105222404003143, + "learning_rate": 0.0006, + "loss": 3.6495566368103027, + "step": 3177 + }, + { + "epoch": 44.139799038881605, + "grad_norm": 0.2852860987186432, + "learning_rate": 0.0006, + "loss": 3.640768527984619, + "step": 3178 + }, + { + "epoch": 44.15377894276977, + "grad_norm": 0.2941005825996399, + "learning_rate": 0.0006, + "loss": 3.6303114891052246, + "step": 3179 + }, + { + "epoch": 44.16775884665793, + "grad_norm": 0.2792299687862396, + "learning_rate": 0.0006, + "loss": 3.6053574085235596, + "step": 3180 + }, + { + "epoch": 44.18173875054609, + "grad_norm": 0.23168638348579407, + "learning_rate": 0.0006, + "loss": 3.62430477142334, + "step": 3181 + }, + { + "epoch": 44.19571865443425, + "grad_norm": 0.23713921010494232, + "learning_rate": 0.0006, + "loss": 3.601106643676758, + "step": 3182 + }, + { + "epoch": 44.20969855832241, + "grad_norm": 0.23341049253940582, + "learning_rate": 0.0006, + "loss": 3.631762742996216, + "step": 3183 + }, + { + "epoch": 44.22367846221057, + "grad_norm": 0.23094508051872253, + "learning_rate": 0.0006, + "loss": 3.586683750152588, + "step": 3184 + }, + { + "epoch": 44.237658366098735, + "grad_norm": 0.24085712432861328, + "learning_rate": 0.0006, + "loss": 3.6251423358917236, + "step": 3185 + }, + { + "epoch": 44.25163826998689, + "grad_norm": 0.24999955296516418, + "learning_rate": 0.0006, + "loss": 3.6554198265075684, + "step": 3186 + }, + { + "epoch": 44.265618173875055, + "grad_norm": 0.21759621798992157, + "learning_rate": 0.0006, + "loss": 3.6249518394470215, + "step": 3187 + }, + { + "epoch": 44.27959807776322, + "grad_norm": 0.2490139901638031, + "learning_rate": 0.0006, + "loss": 3.6163341999053955, + "step": 3188 + }, + { + "epoch": 44.293577981651374, + "grad_norm": 0.23420892655849457, + "learning_rate": 0.0006, + "loss": 3.615469455718994, + "step": 3189 + }, + { + "epoch": 44.30755788553954, + "grad_norm": 0.2292138934135437, + "learning_rate": 0.0006, + "loss": 3.6085104942321777, + "step": 3190 + }, + { + "epoch": 44.3215377894277, + "grad_norm": 0.22595474123954773, + "learning_rate": 0.0006, + "loss": 3.6317405700683594, + "step": 3191 + }, + { + "epoch": 44.33551769331586, + "grad_norm": 0.22418338060379028, + "learning_rate": 0.0006, + "loss": 3.6287777423858643, + "step": 3192 + }, + { + "epoch": 44.34949759720402, + "grad_norm": 0.2453135848045349, + "learning_rate": 0.0006, + "loss": 3.6228437423706055, + "step": 3193 + }, + { + "epoch": 44.36347750109218, + "grad_norm": 0.2627771198749542, + "learning_rate": 0.0006, + "loss": 3.6581034660339355, + "step": 3194 + }, + { + "epoch": 44.37745740498034, + "grad_norm": 0.24114494025707245, + "learning_rate": 0.0006, + "loss": 3.653505563735962, + "step": 3195 + }, + { + "epoch": 44.391437308868504, + "grad_norm": 0.2103721648454666, + "learning_rate": 0.0006, + "loss": 3.5698580741882324, + "step": 3196 + }, + { + "epoch": 44.40541721275666, + "grad_norm": 0.21172291040420532, + "learning_rate": 0.0006, + "loss": 3.573453426361084, + "step": 3197 + }, + { + "epoch": 44.419397116644824, + "grad_norm": 0.20298106968402863, + "learning_rate": 0.0006, + "loss": 3.6350207328796387, + "step": 3198 + }, + { + "epoch": 44.43337702053299, + "grad_norm": 0.2029009759426117, + "learning_rate": 0.0006, + "loss": 3.6025917530059814, + "step": 3199 + }, + { + "epoch": 44.44735692442114, + "grad_norm": 0.18960542976856232, + "learning_rate": 0.0006, + "loss": 3.625028133392334, + "step": 3200 + }, + { + "epoch": 44.46133682830931, + "grad_norm": 0.20758579671382904, + "learning_rate": 0.0006, + "loss": 3.647071123123169, + "step": 3201 + }, + { + "epoch": 44.47531673219746, + "grad_norm": 0.21896769106388092, + "learning_rate": 0.0006, + "loss": 3.6481196880340576, + "step": 3202 + }, + { + "epoch": 44.489296636085626, + "grad_norm": 0.20817387104034424, + "learning_rate": 0.0006, + "loss": 3.629366874694824, + "step": 3203 + }, + { + "epoch": 44.50327653997379, + "grad_norm": 0.2099488228559494, + "learning_rate": 0.0006, + "loss": 3.6757798194885254, + "step": 3204 + }, + { + "epoch": 44.517256443861946, + "grad_norm": 0.21376627683639526, + "learning_rate": 0.0006, + "loss": 3.638324737548828, + "step": 3205 + }, + { + "epoch": 44.53123634775011, + "grad_norm": 0.19089072942733765, + "learning_rate": 0.0006, + "loss": 3.6497435569763184, + "step": 3206 + }, + { + "epoch": 44.54521625163827, + "grad_norm": 0.20489120483398438, + "learning_rate": 0.0006, + "loss": 3.634019374847412, + "step": 3207 + }, + { + "epoch": 44.55919615552643, + "grad_norm": 0.21991780400276184, + "learning_rate": 0.0006, + "loss": 3.6255834102630615, + "step": 3208 + }, + { + "epoch": 44.57317605941459, + "grad_norm": 0.23417581617832184, + "learning_rate": 0.0006, + "loss": 3.631927728652954, + "step": 3209 + }, + { + "epoch": 44.58715596330275, + "grad_norm": 0.22819049656391144, + "learning_rate": 0.0006, + "loss": 3.640167713165283, + "step": 3210 + }, + { + "epoch": 44.60113586719091, + "grad_norm": 0.21443316340446472, + "learning_rate": 0.0006, + "loss": 3.645709991455078, + "step": 3211 + }, + { + "epoch": 44.615115771079076, + "grad_norm": 0.19252653419971466, + "learning_rate": 0.0006, + "loss": 3.591294288635254, + "step": 3212 + }, + { + "epoch": 44.62909567496723, + "grad_norm": 0.18925397098064423, + "learning_rate": 0.0006, + "loss": 3.6163625717163086, + "step": 3213 + }, + { + "epoch": 44.643075578855395, + "grad_norm": 0.21605387330055237, + "learning_rate": 0.0006, + "loss": 3.6826887130737305, + "step": 3214 + }, + { + "epoch": 44.65705548274356, + "grad_norm": 0.21301978826522827, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 3215 + }, + { + "epoch": 44.671035386631715, + "grad_norm": 0.20065832138061523, + "learning_rate": 0.0006, + "loss": 3.648879289627075, + "step": 3216 + }, + { + "epoch": 44.68501529051988, + "grad_norm": 0.21413499116897583, + "learning_rate": 0.0006, + "loss": 3.6327264308929443, + "step": 3217 + }, + { + "epoch": 44.69899519440804, + "grad_norm": 0.22769849002361298, + "learning_rate": 0.0006, + "loss": 3.6486430168151855, + "step": 3218 + }, + { + "epoch": 44.7129750982962, + "grad_norm": 0.227064847946167, + "learning_rate": 0.0006, + "loss": 3.633342981338501, + "step": 3219 + }, + { + "epoch": 44.72695500218436, + "grad_norm": 0.21335656940937042, + "learning_rate": 0.0006, + "loss": 3.648621082305908, + "step": 3220 + }, + { + "epoch": 44.74093490607252, + "grad_norm": 0.2085563838481903, + "learning_rate": 0.0006, + "loss": 3.647826671600342, + "step": 3221 + }, + { + "epoch": 44.75491480996068, + "grad_norm": 0.19203904271125793, + "learning_rate": 0.0006, + "loss": 3.6296122074127197, + "step": 3222 + }, + { + "epoch": 44.768894713848844, + "grad_norm": 0.1969112604856491, + "learning_rate": 0.0006, + "loss": 3.6477179527282715, + "step": 3223 + }, + { + "epoch": 44.782874617737, + "grad_norm": 0.21630392968654633, + "learning_rate": 0.0006, + "loss": 3.628805637359619, + "step": 3224 + }, + { + "epoch": 44.796854521625164, + "grad_norm": 0.20641647279262543, + "learning_rate": 0.0006, + "loss": 3.650993824005127, + "step": 3225 + }, + { + "epoch": 44.81083442551333, + "grad_norm": 0.1954173892736435, + "learning_rate": 0.0006, + "loss": 3.6362831592559814, + "step": 3226 + }, + { + "epoch": 44.824814329401484, + "grad_norm": 0.20479747653007507, + "learning_rate": 0.0006, + "loss": 3.6467390060424805, + "step": 3227 + }, + { + "epoch": 44.83879423328965, + "grad_norm": 0.20502690970897675, + "learning_rate": 0.0006, + "loss": 3.6260130405426025, + "step": 3228 + }, + { + "epoch": 44.8527741371778, + "grad_norm": 0.20348094403743744, + "learning_rate": 0.0006, + "loss": 3.6836767196655273, + "step": 3229 + }, + { + "epoch": 44.86675404106597, + "grad_norm": 0.18748269975185394, + "learning_rate": 0.0006, + "loss": 3.610104560852051, + "step": 3230 + }, + { + "epoch": 44.88073394495413, + "grad_norm": 0.18822219967842102, + "learning_rate": 0.0006, + "loss": 3.61354398727417, + "step": 3231 + }, + { + "epoch": 44.89471384884229, + "grad_norm": 0.20972031354904175, + "learning_rate": 0.0006, + "loss": 3.644336700439453, + "step": 3232 + }, + { + "epoch": 44.90869375273045, + "grad_norm": 0.2013155072927475, + "learning_rate": 0.0006, + "loss": 3.659287929534912, + "step": 3233 + }, + { + "epoch": 44.92267365661861, + "grad_norm": 0.2056475579738617, + "learning_rate": 0.0006, + "loss": 3.6545677185058594, + "step": 3234 + }, + { + "epoch": 44.93665356050677, + "grad_norm": 0.2104482203722, + "learning_rate": 0.0006, + "loss": 3.6094017028808594, + "step": 3235 + }, + { + "epoch": 44.95063346439493, + "grad_norm": 0.1993035078048706, + "learning_rate": 0.0006, + "loss": 3.6209053993225098, + "step": 3236 + }, + { + "epoch": 44.964613368283096, + "grad_norm": 0.1883099526166916, + "learning_rate": 0.0006, + "loss": 3.6011457443237305, + "step": 3237 + }, + { + "epoch": 44.97859327217125, + "grad_norm": 0.1927674412727356, + "learning_rate": 0.0006, + "loss": 3.606609344482422, + "step": 3238 + }, + { + "epoch": 44.992573176059416, + "grad_norm": 0.1878899335861206, + "learning_rate": 0.0006, + "loss": 3.6701109409332275, + "step": 3239 + }, + { + "epoch": 45.0, + "grad_norm": 0.2237395942211151, + "learning_rate": 0.0006, + "loss": 3.6617302894592285, + "step": 3240 + }, + { + "epoch": 45.0, + "eval_loss": 3.9812564849853516, + "eval_runtime": 44.8635, + "eval_samples_per_second": 54.432, + "eval_steps_per_second": 3.41, + "step": 3240 + }, + { + "epoch": 45.01397990388816, + "grad_norm": 0.21368487179279327, + "learning_rate": 0.0006, + "loss": 3.599107265472412, + "step": 3241 + }, + { + "epoch": 45.02795980777632, + "grad_norm": 0.2234211564064026, + "learning_rate": 0.0006, + "loss": 3.5943236351013184, + "step": 3242 + }, + { + "epoch": 45.04193971166448, + "grad_norm": 0.2222544252872467, + "learning_rate": 0.0006, + "loss": 3.6152291297912598, + "step": 3243 + }, + { + "epoch": 45.05591961555265, + "grad_norm": 0.24686792492866516, + "learning_rate": 0.0006, + "loss": 3.6006085872650146, + "step": 3244 + }, + { + "epoch": 45.0698995194408, + "grad_norm": 0.24634984135627747, + "learning_rate": 0.0006, + "loss": 3.6023471355438232, + "step": 3245 + }, + { + "epoch": 45.083879423328966, + "grad_norm": 0.2150750756263733, + "learning_rate": 0.0006, + "loss": 3.5690598487854004, + "step": 3246 + }, + { + "epoch": 45.09785932721712, + "grad_norm": 0.196721151471138, + "learning_rate": 0.0006, + "loss": 3.592653751373291, + "step": 3247 + }, + { + "epoch": 45.111839231105286, + "grad_norm": 0.21874476969242096, + "learning_rate": 0.0006, + "loss": 3.586243152618408, + "step": 3248 + }, + { + "epoch": 45.12581913499345, + "grad_norm": 0.21021611988544464, + "learning_rate": 0.0006, + "loss": 3.599384307861328, + "step": 3249 + }, + { + "epoch": 45.139799038881605, + "grad_norm": 0.19754183292388916, + "learning_rate": 0.0006, + "loss": 3.623816967010498, + "step": 3250 + }, + { + "epoch": 45.15377894276977, + "grad_norm": 0.21218672394752502, + "learning_rate": 0.0006, + "loss": 3.5901236534118652, + "step": 3251 + }, + { + "epoch": 45.16775884665793, + "grad_norm": 0.23569360375404358, + "learning_rate": 0.0006, + "loss": 3.600029945373535, + "step": 3252 + }, + { + "epoch": 45.18173875054609, + "grad_norm": 0.25429826974868774, + "learning_rate": 0.0006, + "loss": 3.607773542404175, + "step": 3253 + }, + { + "epoch": 45.19571865443425, + "grad_norm": 0.23416805267333984, + "learning_rate": 0.0006, + "loss": 3.63248348236084, + "step": 3254 + }, + { + "epoch": 45.20969855832241, + "grad_norm": 0.20821864902973175, + "learning_rate": 0.0006, + "loss": 3.641927719116211, + "step": 3255 + }, + { + "epoch": 45.22367846221057, + "grad_norm": 0.21849380433559418, + "learning_rate": 0.0006, + "loss": 3.665098190307617, + "step": 3256 + }, + { + "epoch": 45.237658366098735, + "grad_norm": 0.22939491271972656, + "learning_rate": 0.0006, + "loss": 3.6106104850769043, + "step": 3257 + }, + { + "epoch": 45.25163826998689, + "grad_norm": 0.24144501984119415, + "learning_rate": 0.0006, + "loss": 3.5872416496276855, + "step": 3258 + }, + { + "epoch": 45.265618173875055, + "grad_norm": 0.21790480613708496, + "learning_rate": 0.0006, + "loss": 3.6268889904022217, + "step": 3259 + }, + { + "epoch": 45.27959807776322, + "grad_norm": 0.22702264785766602, + "learning_rate": 0.0006, + "loss": 3.5972542762756348, + "step": 3260 + }, + { + "epoch": 45.293577981651374, + "grad_norm": 0.22465437650680542, + "learning_rate": 0.0006, + "loss": 3.6339592933654785, + "step": 3261 + }, + { + "epoch": 45.30755788553954, + "grad_norm": 0.21804460883140564, + "learning_rate": 0.0006, + "loss": 3.6062779426574707, + "step": 3262 + }, + { + "epoch": 45.3215377894277, + "grad_norm": 0.1985616534948349, + "learning_rate": 0.0006, + "loss": 3.629815101623535, + "step": 3263 + }, + { + "epoch": 45.33551769331586, + "grad_norm": 0.22264975309371948, + "learning_rate": 0.0006, + "loss": 3.631214141845703, + "step": 3264 + }, + { + "epoch": 45.34949759720402, + "grad_norm": 0.22178539633750916, + "learning_rate": 0.0006, + "loss": 3.620854377746582, + "step": 3265 + }, + { + "epoch": 45.36347750109218, + "grad_norm": 0.22392240166664124, + "learning_rate": 0.0006, + "loss": 3.6611738204956055, + "step": 3266 + }, + { + "epoch": 45.37745740498034, + "grad_norm": 0.2178916484117508, + "learning_rate": 0.0006, + "loss": 3.639893054962158, + "step": 3267 + }, + { + "epoch": 45.391437308868504, + "grad_norm": 0.2173885703086853, + "learning_rate": 0.0006, + "loss": 3.611750364303589, + "step": 3268 + }, + { + "epoch": 45.40541721275666, + "grad_norm": 0.2107069045305252, + "learning_rate": 0.0006, + "loss": 3.595181465148926, + "step": 3269 + }, + { + "epoch": 45.419397116644824, + "grad_norm": 0.19623015820980072, + "learning_rate": 0.0006, + "loss": 3.6096351146698, + "step": 3270 + }, + { + "epoch": 45.43337702053299, + "grad_norm": 0.23091304302215576, + "learning_rate": 0.0006, + "loss": 3.603667974472046, + "step": 3271 + }, + { + "epoch": 45.44735692442114, + "grad_norm": 0.22909007966518402, + "learning_rate": 0.0006, + "loss": 3.62846040725708, + "step": 3272 + }, + { + "epoch": 45.46133682830931, + "grad_norm": 0.2104928195476532, + "learning_rate": 0.0006, + "loss": 3.6543164253234863, + "step": 3273 + }, + { + "epoch": 45.47531673219746, + "grad_norm": 0.22994203865528107, + "learning_rate": 0.0006, + "loss": 3.621878147125244, + "step": 3274 + }, + { + "epoch": 45.489296636085626, + "grad_norm": 0.21652749180793762, + "learning_rate": 0.0006, + "loss": 3.6095705032348633, + "step": 3275 + }, + { + "epoch": 45.50327653997379, + "grad_norm": 0.20125073194503784, + "learning_rate": 0.0006, + "loss": 3.6213903427124023, + "step": 3276 + }, + { + "epoch": 45.517256443861946, + "grad_norm": 0.19995734095573425, + "learning_rate": 0.0006, + "loss": 3.6526503562927246, + "step": 3277 + }, + { + "epoch": 45.53123634775011, + "grad_norm": 0.2071387618780136, + "learning_rate": 0.0006, + "loss": 3.626208782196045, + "step": 3278 + }, + { + "epoch": 45.54521625163827, + "grad_norm": 0.222015842795372, + "learning_rate": 0.0006, + "loss": 3.61144757270813, + "step": 3279 + }, + { + "epoch": 45.55919615552643, + "grad_norm": 0.20780639350414276, + "learning_rate": 0.0006, + "loss": 3.64092755317688, + "step": 3280 + }, + { + "epoch": 45.57317605941459, + "grad_norm": 0.19297364354133606, + "learning_rate": 0.0006, + "loss": 3.6308364868164062, + "step": 3281 + }, + { + "epoch": 45.58715596330275, + "grad_norm": 0.1928786337375641, + "learning_rate": 0.0006, + "loss": 3.6258254051208496, + "step": 3282 + }, + { + "epoch": 45.60113586719091, + "grad_norm": 0.1940007209777832, + "learning_rate": 0.0006, + "loss": 3.622849464416504, + "step": 3283 + }, + { + "epoch": 45.615115771079076, + "grad_norm": 0.19643044471740723, + "learning_rate": 0.0006, + "loss": 3.6461117267608643, + "step": 3284 + }, + { + "epoch": 45.62909567496723, + "grad_norm": 0.19996654987335205, + "learning_rate": 0.0006, + "loss": 3.61572265625, + "step": 3285 + }, + { + "epoch": 45.643075578855395, + "grad_norm": 0.20202603936195374, + "learning_rate": 0.0006, + "loss": 3.610734462738037, + "step": 3286 + }, + { + "epoch": 45.65705548274356, + "grad_norm": 0.19249361753463745, + "learning_rate": 0.0006, + "loss": 3.607048511505127, + "step": 3287 + }, + { + "epoch": 45.671035386631715, + "grad_norm": 0.1894780397415161, + "learning_rate": 0.0006, + "loss": 3.6450905799865723, + "step": 3288 + }, + { + "epoch": 45.68501529051988, + "grad_norm": 0.19901636242866516, + "learning_rate": 0.0006, + "loss": 3.6313018798828125, + "step": 3289 + }, + { + "epoch": 45.69899519440804, + "grad_norm": 0.1875065118074417, + "learning_rate": 0.0006, + "loss": 3.641326427459717, + "step": 3290 + }, + { + "epoch": 45.7129750982962, + "grad_norm": 0.19832095503807068, + "learning_rate": 0.0006, + "loss": 3.6612308025360107, + "step": 3291 + }, + { + "epoch": 45.72695500218436, + "grad_norm": 0.20353806018829346, + "learning_rate": 0.0006, + "loss": 3.623152017593384, + "step": 3292 + }, + { + "epoch": 45.74093490607252, + "grad_norm": 0.1984023153781891, + "learning_rate": 0.0006, + "loss": 3.627358913421631, + "step": 3293 + }, + { + "epoch": 45.75491480996068, + "grad_norm": 0.2002221643924713, + "learning_rate": 0.0006, + "loss": 3.6334757804870605, + "step": 3294 + }, + { + "epoch": 45.768894713848844, + "grad_norm": 0.21099092066287994, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3295 + }, + { + "epoch": 45.782874617737, + "grad_norm": 0.19109416007995605, + "learning_rate": 0.0006, + "loss": 3.62795352935791, + "step": 3296 + }, + { + "epoch": 45.796854521625164, + "grad_norm": 0.18424192070960999, + "learning_rate": 0.0006, + "loss": 3.6151700019836426, + "step": 3297 + }, + { + "epoch": 45.81083442551333, + "grad_norm": 0.20823849737644196, + "learning_rate": 0.0006, + "loss": 3.641907215118408, + "step": 3298 + }, + { + "epoch": 45.824814329401484, + "grad_norm": 0.21407285332679749, + "learning_rate": 0.0006, + "loss": 3.6430726051330566, + "step": 3299 + }, + { + "epoch": 45.83879423328965, + "grad_norm": 0.23493780195713043, + "learning_rate": 0.0006, + "loss": 3.610065460205078, + "step": 3300 + }, + { + "epoch": 45.8527741371778, + "grad_norm": 0.21910642087459564, + "learning_rate": 0.0006, + "loss": 3.630603313446045, + "step": 3301 + }, + { + "epoch": 45.86675404106597, + "grad_norm": 0.1838075965642929, + "learning_rate": 0.0006, + "loss": 3.634315013885498, + "step": 3302 + }, + { + "epoch": 45.88073394495413, + "grad_norm": 0.22131477296352386, + "learning_rate": 0.0006, + "loss": 3.6142020225524902, + "step": 3303 + }, + { + "epoch": 45.89471384884229, + "grad_norm": 0.2497209906578064, + "learning_rate": 0.0006, + "loss": 3.689103126525879, + "step": 3304 + }, + { + "epoch": 45.90869375273045, + "grad_norm": 0.24403175711631775, + "learning_rate": 0.0006, + "loss": 3.6321184635162354, + "step": 3305 + }, + { + "epoch": 45.92267365661861, + "grad_norm": 0.22527103126049042, + "learning_rate": 0.0006, + "loss": 3.6486921310424805, + "step": 3306 + }, + { + "epoch": 45.93665356050677, + "grad_norm": 0.20127955079078674, + "learning_rate": 0.0006, + "loss": 3.6109299659729004, + "step": 3307 + }, + { + "epoch": 45.95063346439493, + "grad_norm": 0.18997317552566528, + "learning_rate": 0.0006, + "loss": 3.6157617568969727, + "step": 3308 + }, + { + "epoch": 45.964613368283096, + "grad_norm": 0.19921870529651642, + "learning_rate": 0.0006, + "loss": 3.691776990890503, + "step": 3309 + }, + { + "epoch": 45.97859327217125, + "grad_norm": 0.2124646008014679, + "learning_rate": 0.0006, + "loss": 3.61795711517334, + "step": 3310 + }, + { + "epoch": 45.992573176059416, + "grad_norm": 0.20002500712871552, + "learning_rate": 0.0006, + "loss": 3.6266353130340576, + "step": 3311 + }, + { + "epoch": 46.0, + "grad_norm": 0.22992220520973206, + "learning_rate": 0.0006, + "loss": 3.647242784500122, + "step": 3312 + }, + { + "epoch": 46.0, + "eval_loss": 3.9855220317840576, + "eval_runtime": 44.9108, + "eval_samples_per_second": 54.374, + "eval_steps_per_second": 3.407, + "step": 3312 + }, + { + "epoch": 46.01397990388816, + "grad_norm": 0.1976146101951599, + "learning_rate": 0.0006, + "loss": 3.5675041675567627, + "step": 3313 + }, + { + "epoch": 46.02795980777632, + "grad_norm": 0.2238360494375229, + "learning_rate": 0.0006, + "loss": 3.6077466011047363, + "step": 3314 + }, + { + "epoch": 46.04193971166448, + "grad_norm": 0.288669228553772, + "learning_rate": 0.0006, + "loss": 3.589958667755127, + "step": 3315 + }, + { + "epoch": 46.05591961555265, + "grad_norm": 0.30626827478408813, + "learning_rate": 0.0006, + "loss": 3.604401111602783, + "step": 3316 + }, + { + "epoch": 46.0698995194408, + "grad_norm": 0.2721095681190491, + "learning_rate": 0.0006, + "loss": 3.620197296142578, + "step": 3317 + }, + { + "epoch": 46.083879423328966, + "grad_norm": 0.2152107059955597, + "learning_rate": 0.0006, + "loss": 3.607327938079834, + "step": 3318 + }, + { + "epoch": 46.09785932721712, + "grad_norm": 0.2205267995595932, + "learning_rate": 0.0006, + "loss": 3.6020898818969727, + "step": 3319 + }, + { + "epoch": 46.111839231105286, + "grad_norm": 0.25419551134109497, + "learning_rate": 0.0006, + "loss": 3.59277606010437, + "step": 3320 + }, + { + "epoch": 46.12581913499345, + "grad_norm": 0.2379811704158783, + "learning_rate": 0.0006, + "loss": 3.560422897338867, + "step": 3321 + }, + { + "epoch": 46.139799038881605, + "grad_norm": 0.20928747951984406, + "learning_rate": 0.0006, + "loss": 3.6373965740203857, + "step": 3322 + }, + { + "epoch": 46.15377894276977, + "grad_norm": 0.21654292941093445, + "learning_rate": 0.0006, + "loss": 3.620784282684326, + "step": 3323 + }, + { + "epoch": 46.16775884665793, + "grad_norm": 0.22994576394557953, + "learning_rate": 0.0006, + "loss": 3.589960813522339, + "step": 3324 + }, + { + "epoch": 46.18173875054609, + "grad_norm": 0.24989335238933563, + "learning_rate": 0.0006, + "loss": 3.599091053009033, + "step": 3325 + }, + { + "epoch": 46.19571865443425, + "grad_norm": 0.27068355679512024, + "learning_rate": 0.0006, + "loss": 3.5933146476745605, + "step": 3326 + }, + { + "epoch": 46.20969855832241, + "grad_norm": 0.2581503391265869, + "learning_rate": 0.0006, + "loss": 3.5935447216033936, + "step": 3327 + }, + { + "epoch": 46.22367846221057, + "grad_norm": 0.23368583619594574, + "learning_rate": 0.0006, + "loss": 3.6120412349700928, + "step": 3328 + }, + { + "epoch": 46.237658366098735, + "grad_norm": 0.21808452904224396, + "learning_rate": 0.0006, + "loss": 3.6155190467834473, + "step": 3329 + }, + { + "epoch": 46.25163826998689, + "grad_norm": 0.2152830809354782, + "learning_rate": 0.0006, + "loss": 3.6039974689483643, + "step": 3330 + }, + { + "epoch": 46.265618173875055, + "grad_norm": 0.20902983844280243, + "learning_rate": 0.0006, + "loss": 3.586416721343994, + "step": 3331 + }, + { + "epoch": 46.27959807776322, + "grad_norm": 0.21693682670593262, + "learning_rate": 0.0006, + "loss": 3.601595401763916, + "step": 3332 + }, + { + "epoch": 46.293577981651374, + "grad_norm": 0.21157346665859222, + "learning_rate": 0.0006, + "loss": 3.619825601577759, + "step": 3333 + }, + { + "epoch": 46.30755788553954, + "grad_norm": 0.19628529250621796, + "learning_rate": 0.0006, + "loss": 3.5845298767089844, + "step": 3334 + }, + { + "epoch": 46.3215377894277, + "grad_norm": 0.19599373638629913, + "learning_rate": 0.0006, + "loss": 3.614483594894409, + "step": 3335 + }, + { + "epoch": 46.33551769331586, + "grad_norm": 0.21777382493019104, + "learning_rate": 0.0006, + "loss": 3.5865678787231445, + "step": 3336 + }, + { + "epoch": 46.34949759720402, + "grad_norm": 0.24697323143482208, + "learning_rate": 0.0006, + "loss": 3.6168298721313477, + "step": 3337 + }, + { + "epoch": 46.36347750109218, + "grad_norm": 0.29521632194519043, + "learning_rate": 0.0006, + "loss": 3.627875804901123, + "step": 3338 + }, + { + "epoch": 46.37745740498034, + "grad_norm": 0.2548002004623413, + "learning_rate": 0.0006, + "loss": 3.6286001205444336, + "step": 3339 + }, + { + "epoch": 46.391437308868504, + "grad_norm": 0.20501002669334412, + "learning_rate": 0.0006, + "loss": 3.625035524368286, + "step": 3340 + }, + { + "epoch": 46.40541721275666, + "grad_norm": 0.21849584579467773, + "learning_rate": 0.0006, + "loss": 3.621872901916504, + "step": 3341 + }, + { + "epoch": 46.419397116644824, + "grad_norm": 0.22302033007144928, + "learning_rate": 0.0006, + "loss": 3.6088266372680664, + "step": 3342 + }, + { + "epoch": 46.43337702053299, + "grad_norm": 0.21138787269592285, + "learning_rate": 0.0006, + "loss": 3.6211094856262207, + "step": 3343 + }, + { + "epoch": 46.44735692442114, + "grad_norm": 0.22372713685035706, + "learning_rate": 0.0006, + "loss": 3.5799427032470703, + "step": 3344 + }, + { + "epoch": 46.46133682830931, + "grad_norm": 0.22019316256046295, + "learning_rate": 0.0006, + "loss": 3.616044044494629, + "step": 3345 + }, + { + "epoch": 46.47531673219746, + "grad_norm": 0.21947625279426575, + "learning_rate": 0.0006, + "loss": 3.613643169403076, + "step": 3346 + }, + { + "epoch": 46.489296636085626, + "grad_norm": 0.21935684978961945, + "learning_rate": 0.0006, + "loss": 3.6255440711975098, + "step": 3347 + }, + { + "epoch": 46.50327653997379, + "grad_norm": 0.20366479456424713, + "learning_rate": 0.0006, + "loss": 3.613892078399658, + "step": 3348 + }, + { + "epoch": 46.517256443861946, + "grad_norm": 0.21755267679691315, + "learning_rate": 0.0006, + "loss": 3.617886543273926, + "step": 3349 + }, + { + "epoch": 46.53123634775011, + "grad_norm": 0.20023910701274872, + "learning_rate": 0.0006, + "loss": 3.6172280311584473, + "step": 3350 + }, + { + "epoch": 46.54521625163827, + "grad_norm": 0.20375007390975952, + "learning_rate": 0.0006, + "loss": 3.595829486846924, + "step": 3351 + }, + { + "epoch": 46.55919615552643, + "grad_norm": 0.21125391125679016, + "learning_rate": 0.0006, + "loss": 3.632533550262451, + "step": 3352 + }, + { + "epoch": 46.57317605941459, + "grad_norm": 0.2359670102596283, + "learning_rate": 0.0006, + "loss": 3.597811222076416, + "step": 3353 + }, + { + "epoch": 46.58715596330275, + "grad_norm": 0.21696777641773224, + "learning_rate": 0.0006, + "loss": 3.627127170562744, + "step": 3354 + }, + { + "epoch": 46.60113586719091, + "grad_norm": 0.21501564979553223, + "learning_rate": 0.0006, + "loss": 3.630887985229492, + "step": 3355 + }, + { + "epoch": 46.615115771079076, + "grad_norm": 0.21446822583675385, + "learning_rate": 0.0006, + "loss": 3.6075234413146973, + "step": 3356 + }, + { + "epoch": 46.62909567496723, + "grad_norm": 0.21508967876434326, + "learning_rate": 0.0006, + "loss": 3.626603603363037, + "step": 3357 + }, + { + "epoch": 46.643075578855395, + "grad_norm": 0.19969215989112854, + "learning_rate": 0.0006, + "loss": 3.6160733699798584, + "step": 3358 + }, + { + "epoch": 46.65705548274356, + "grad_norm": 0.19982007145881653, + "learning_rate": 0.0006, + "loss": 3.632960319519043, + "step": 3359 + }, + { + "epoch": 46.671035386631715, + "grad_norm": 0.1981230527162552, + "learning_rate": 0.0006, + "loss": 3.608591079711914, + "step": 3360 + }, + { + "epoch": 46.68501529051988, + "grad_norm": 0.19948643445968628, + "learning_rate": 0.0006, + "loss": 3.6100947856903076, + "step": 3361 + }, + { + "epoch": 46.69899519440804, + "grad_norm": 0.18967196345329285, + "learning_rate": 0.0006, + "loss": 3.6203439235687256, + "step": 3362 + }, + { + "epoch": 46.7129750982962, + "grad_norm": 0.20035311579704285, + "learning_rate": 0.0006, + "loss": 3.64508056640625, + "step": 3363 + }, + { + "epoch": 46.72695500218436, + "grad_norm": 0.21049824357032776, + "learning_rate": 0.0006, + "loss": 3.620095729827881, + "step": 3364 + }, + { + "epoch": 46.74093490607252, + "grad_norm": 0.21411995589733124, + "learning_rate": 0.0006, + "loss": 3.650815963745117, + "step": 3365 + }, + { + "epoch": 46.75491480996068, + "grad_norm": 0.18666061758995056, + "learning_rate": 0.0006, + "loss": 3.625699758529663, + "step": 3366 + }, + { + "epoch": 46.768894713848844, + "grad_norm": 0.1927071362733841, + "learning_rate": 0.0006, + "loss": 3.6165151596069336, + "step": 3367 + }, + { + "epoch": 46.782874617737, + "grad_norm": 0.2063879817724228, + "learning_rate": 0.0006, + "loss": 3.6182332038879395, + "step": 3368 + }, + { + "epoch": 46.796854521625164, + "grad_norm": 0.19215327501296997, + "learning_rate": 0.0006, + "loss": 3.607239246368408, + "step": 3369 + }, + { + "epoch": 46.81083442551333, + "grad_norm": 0.2074592262506485, + "learning_rate": 0.0006, + "loss": 3.624856948852539, + "step": 3370 + }, + { + "epoch": 46.824814329401484, + "grad_norm": 0.2184106856584549, + "learning_rate": 0.0006, + "loss": 3.628757953643799, + "step": 3371 + }, + { + "epoch": 46.83879423328965, + "grad_norm": 0.2203136682510376, + "learning_rate": 0.0006, + "loss": 3.625958204269409, + "step": 3372 + }, + { + "epoch": 46.8527741371778, + "grad_norm": 0.21920061111450195, + "learning_rate": 0.0006, + "loss": 3.6060733795166016, + "step": 3373 + }, + { + "epoch": 46.86675404106597, + "grad_norm": 0.2122412472963333, + "learning_rate": 0.0006, + "loss": 3.6126952171325684, + "step": 3374 + }, + { + "epoch": 46.88073394495413, + "grad_norm": 0.1971784383058548, + "learning_rate": 0.0006, + "loss": 3.637129783630371, + "step": 3375 + }, + { + "epoch": 46.89471384884229, + "grad_norm": 0.20824873447418213, + "learning_rate": 0.0006, + "loss": 3.62868070602417, + "step": 3376 + }, + { + "epoch": 46.90869375273045, + "grad_norm": 0.20157678425312042, + "learning_rate": 0.0006, + "loss": 3.6321873664855957, + "step": 3377 + }, + { + "epoch": 46.92267365661861, + "grad_norm": 0.1958925426006317, + "learning_rate": 0.0006, + "loss": 3.6513354778289795, + "step": 3378 + }, + { + "epoch": 46.93665356050677, + "grad_norm": 0.1969553828239441, + "learning_rate": 0.0006, + "loss": 3.6346323490142822, + "step": 3379 + }, + { + "epoch": 46.95063346439493, + "grad_norm": 0.19311924278736115, + "learning_rate": 0.0006, + "loss": 3.6673245429992676, + "step": 3380 + }, + { + "epoch": 46.964613368283096, + "grad_norm": 0.20341862738132477, + "learning_rate": 0.0006, + "loss": 3.680025339126587, + "step": 3381 + }, + { + "epoch": 46.97859327217125, + "grad_norm": 0.20667442679405212, + "learning_rate": 0.0006, + "loss": 3.632290840148926, + "step": 3382 + }, + { + "epoch": 46.992573176059416, + "grad_norm": 0.19141609966754913, + "learning_rate": 0.0006, + "loss": 3.659360647201538, + "step": 3383 + }, + { + "epoch": 47.0, + "grad_norm": 0.20981188118457794, + "learning_rate": 0.0006, + "loss": 3.653548240661621, + "step": 3384 + }, + { + "epoch": 47.0, + "eval_loss": 3.9833984375, + "eval_runtime": 44.4693, + "eval_samples_per_second": 54.914, + "eval_steps_per_second": 3.441, + "step": 3384 + }, + { + "epoch": 47.01397990388816, + "grad_norm": 0.1958128660917282, + "learning_rate": 0.0006, + "loss": 3.5778727531433105, + "step": 3385 + }, + { + "epoch": 47.02795980777632, + "grad_norm": 0.19728390872478485, + "learning_rate": 0.0006, + "loss": 3.5827393531799316, + "step": 3386 + }, + { + "epoch": 47.04193971166448, + "grad_norm": 0.18564026057720184, + "learning_rate": 0.0006, + "loss": 3.573071002960205, + "step": 3387 + }, + { + "epoch": 47.05591961555265, + "grad_norm": 0.20563258230686188, + "learning_rate": 0.0006, + "loss": 3.564330577850342, + "step": 3388 + }, + { + "epoch": 47.0698995194408, + "grad_norm": 0.21382158994674683, + "learning_rate": 0.0006, + "loss": 3.5976946353912354, + "step": 3389 + }, + { + "epoch": 47.083879423328966, + "grad_norm": 0.2383693903684616, + "learning_rate": 0.0006, + "loss": 3.5970897674560547, + "step": 3390 + }, + { + "epoch": 47.09785932721712, + "grad_norm": 0.24709449708461761, + "learning_rate": 0.0006, + "loss": 3.613409996032715, + "step": 3391 + }, + { + "epoch": 47.111839231105286, + "grad_norm": 0.2329784333705902, + "learning_rate": 0.0006, + "loss": 3.571023464202881, + "step": 3392 + }, + { + "epoch": 47.12581913499345, + "grad_norm": 0.2096954584121704, + "learning_rate": 0.0006, + "loss": 3.573697090148926, + "step": 3393 + }, + { + "epoch": 47.139799038881605, + "grad_norm": 0.21630050241947174, + "learning_rate": 0.0006, + "loss": 3.6085095405578613, + "step": 3394 + }, + { + "epoch": 47.15377894276977, + "grad_norm": 0.22828878462314606, + "learning_rate": 0.0006, + "loss": 3.605466842651367, + "step": 3395 + }, + { + "epoch": 47.16775884665793, + "grad_norm": 0.24957625567913055, + "learning_rate": 0.0006, + "loss": 3.588324546813965, + "step": 3396 + }, + { + "epoch": 47.18173875054609, + "grad_norm": 0.25446194410324097, + "learning_rate": 0.0006, + "loss": 3.6161458492279053, + "step": 3397 + }, + { + "epoch": 47.19571865443425, + "grad_norm": 0.24938438832759857, + "learning_rate": 0.0006, + "loss": 3.6017847061157227, + "step": 3398 + }, + { + "epoch": 47.20969855832241, + "grad_norm": 0.23318032920360565, + "learning_rate": 0.0006, + "loss": 3.6077046394348145, + "step": 3399 + }, + { + "epoch": 47.22367846221057, + "grad_norm": 0.2179042547941208, + "learning_rate": 0.0006, + "loss": 3.598104953765869, + "step": 3400 + }, + { + "epoch": 47.237658366098735, + "grad_norm": 0.213354229927063, + "learning_rate": 0.0006, + "loss": 3.6328814029693604, + "step": 3401 + }, + { + "epoch": 47.25163826998689, + "grad_norm": 0.23104089498519897, + "learning_rate": 0.0006, + "loss": 3.6161890029907227, + "step": 3402 + }, + { + "epoch": 47.265618173875055, + "grad_norm": 0.22219021618366241, + "learning_rate": 0.0006, + "loss": 3.620314121246338, + "step": 3403 + }, + { + "epoch": 47.27959807776322, + "grad_norm": 0.21618683636188507, + "learning_rate": 0.0006, + "loss": 3.5955371856689453, + "step": 3404 + }, + { + "epoch": 47.293577981651374, + "grad_norm": 0.22280243039131165, + "learning_rate": 0.0006, + "loss": 3.618302345275879, + "step": 3405 + }, + { + "epoch": 47.30755788553954, + "grad_norm": 0.2268427014350891, + "learning_rate": 0.0006, + "loss": 3.6035101413726807, + "step": 3406 + }, + { + "epoch": 47.3215377894277, + "grad_norm": 0.20324429869651794, + "learning_rate": 0.0006, + "loss": 3.612598419189453, + "step": 3407 + }, + { + "epoch": 47.33551769331586, + "grad_norm": 0.19353045523166656, + "learning_rate": 0.0006, + "loss": 3.5951499938964844, + "step": 3408 + }, + { + "epoch": 47.34949759720402, + "grad_norm": 0.19008080661296844, + "learning_rate": 0.0006, + "loss": 3.6177732944488525, + "step": 3409 + }, + { + "epoch": 47.36347750109218, + "grad_norm": 0.19530250132083893, + "learning_rate": 0.0006, + "loss": 3.597903251647949, + "step": 3410 + }, + { + "epoch": 47.37745740498034, + "grad_norm": 0.2083505541086197, + "learning_rate": 0.0006, + "loss": 3.6062350273132324, + "step": 3411 + }, + { + "epoch": 47.391437308868504, + "grad_norm": 0.2241518199443817, + "learning_rate": 0.0006, + "loss": 3.6084704399108887, + "step": 3412 + }, + { + "epoch": 47.40541721275666, + "grad_norm": 0.25763124227523804, + "learning_rate": 0.0006, + "loss": 3.600295066833496, + "step": 3413 + }, + { + "epoch": 47.419397116644824, + "grad_norm": 0.2689114212989807, + "learning_rate": 0.0006, + "loss": 3.648848533630371, + "step": 3414 + }, + { + "epoch": 47.43337702053299, + "grad_norm": 0.30106639862060547, + "learning_rate": 0.0006, + "loss": 3.6248483657836914, + "step": 3415 + }, + { + "epoch": 47.44735692442114, + "grad_norm": 0.31840384006500244, + "learning_rate": 0.0006, + "loss": 3.6256890296936035, + "step": 3416 + }, + { + "epoch": 47.46133682830931, + "grad_norm": 0.2603468894958496, + "learning_rate": 0.0006, + "loss": 3.6225175857543945, + "step": 3417 + }, + { + "epoch": 47.47531673219746, + "grad_norm": 0.33408305048942566, + "learning_rate": 0.0006, + "loss": 3.590303897857666, + "step": 3418 + }, + { + "epoch": 47.489296636085626, + "grad_norm": 0.3677918612957001, + "learning_rate": 0.0006, + "loss": 3.6005120277404785, + "step": 3419 + }, + { + "epoch": 47.50327653997379, + "grad_norm": 0.23077215254306793, + "learning_rate": 0.0006, + "loss": 3.6093883514404297, + "step": 3420 + }, + { + "epoch": 47.517256443861946, + "grad_norm": 0.27272120118141174, + "learning_rate": 0.0006, + "loss": 3.580151081085205, + "step": 3421 + }, + { + "epoch": 47.53123634775011, + "grad_norm": 0.22629371285438538, + "learning_rate": 0.0006, + "loss": 3.6375746726989746, + "step": 3422 + }, + { + "epoch": 47.54521625163827, + "grad_norm": 0.2376468926668167, + "learning_rate": 0.0006, + "loss": 3.6492481231689453, + "step": 3423 + }, + { + "epoch": 47.55919615552643, + "grad_norm": 0.21200433373451233, + "learning_rate": 0.0006, + "loss": 3.6258158683776855, + "step": 3424 + }, + { + "epoch": 47.57317605941459, + "grad_norm": 0.2246236652135849, + "learning_rate": 0.0006, + "loss": 3.6199564933776855, + "step": 3425 + }, + { + "epoch": 47.58715596330275, + "grad_norm": 0.21713437139987946, + "learning_rate": 0.0006, + "loss": 3.638197898864746, + "step": 3426 + }, + { + "epoch": 47.60113586719091, + "grad_norm": 0.1964627057313919, + "learning_rate": 0.0006, + "loss": 3.6334147453308105, + "step": 3427 + }, + { + "epoch": 47.615115771079076, + "grad_norm": 0.21705810725688934, + "learning_rate": 0.0006, + "loss": 3.6298668384552, + "step": 3428 + }, + { + "epoch": 47.62909567496723, + "grad_norm": 0.20376256108283997, + "learning_rate": 0.0006, + "loss": 3.6127166748046875, + "step": 3429 + }, + { + "epoch": 47.643075578855395, + "grad_norm": 0.20046672224998474, + "learning_rate": 0.0006, + "loss": 3.633683681488037, + "step": 3430 + }, + { + "epoch": 47.65705548274356, + "grad_norm": 0.21494409441947937, + "learning_rate": 0.0006, + "loss": 3.635828971862793, + "step": 3431 + }, + { + "epoch": 47.671035386631715, + "grad_norm": 0.24550487101078033, + "learning_rate": 0.0006, + "loss": 3.6056854724884033, + "step": 3432 + }, + { + "epoch": 47.68501529051988, + "grad_norm": 0.24416600167751312, + "learning_rate": 0.0006, + "loss": 3.618785858154297, + "step": 3433 + }, + { + "epoch": 47.69899519440804, + "grad_norm": 0.22872993350028992, + "learning_rate": 0.0006, + "loss": 3.6189026832580566, + "step": 3434 + }, + { + "epoch": 47.7129750982962, + "grad_norm": 0.23609530925750732, + "learning_rate": 0.0006, + "loss": 3.623661518096924, + "step": 3435 + }, + { + "epoch": 47.72695500218436, + "grad_norm": 0.22905564308166504, + "learning_rate": 0.0006, + "loss": 3.6155691146850586, + "step": 3436 + }, + { + "epoch": 47.74093490607252, + "grad_norm": 0.25507304072380066, + "learning_rate": 0.0006, + "loss": 3.5848331451416016, + "step": 3437 + }, + { + "epoch": 47.75491480996068, + "grad_norm": 0.24594344198703766, + "learning_rate": 0.0006, + "loss": 3.588374614715576, + "step": 3438 + }, + { + "epoch": 47.768894713848844, + "grad_norm": 0.23131750524044037, + "learning_rate": 0.0006, + "loss": 3.6164474487304688, + "step": 3439 + }, + { + "epoch": 47.782874617737, + "grad_norm": 0.21967829763889313, + "learning_rate": 0.0006, + "loss": 3.619150161743164, + "step": 3440 + }, + { + "epoch": 47.796854521625164, + "grad_norm": 0.226309135556221, + "learning_rate": 0.0006, + "loss": 3.5946340560913086, + "step": 3441 + }, + { + "epoch": 47.81083442551333, + "grad_norm": 0.23141087591648102, + "learning_rate": 0.0006, + "loss": 3.614711046218872, + "step": 3442 + }, + { + "epoch": 47.824814329401484, + "grad_norm": 0.20917707681655884, + "learning_rate": 0.0006, + "loss": 3.610058307647705, + "step": 3443 + }, + { + "epoch": 47.83879423328965, + "grad_norm": 0.22864583134651184, + "learning_rate": 0.0006, + "loss": 3.6396052837371826, + "step": 3444 + }, + { + "epoch": 47.8527741371778, + "grad_norm": 0.22201144695281982, + "learning_rate": 0.0006, + "loss": 3.6462526321411133, + "step": 3445 + }, + { + "epoch": 47.86675404106597, + "grad_norm": 0.21199125051498413, + "learning_rate": 0.0006, + "loss": 3.6090314388275146, + "step": 3446 + }, + { + "epoch": 47.88073394495413, + "grad_norm": 0.2236194908618927, + "learning_rate": 0.0006, + "loss": 3.6308231353759766, + "step": 3447 + }, + { + "epoch": 47.89471384884229, + "grad_norm": 0.21571075916290283, + "learning_rate": 0.0006, + "loss": 3.5899293422698975, + "step": 3448 + }, + { + "epoch": 47.90869375273045, + "grad_norm": 0.2320997267961502, + "learning_rate": 0.0006, + "loss": 3.6360764503479004, + "step": 3449 + }, + { + "epoch": 47.92267365661861, + "grad_norm": 0.2304147630929947, + "learning_rate": 0.0006, + "loss": 3.61220121383667, + "step": 3450 + }, + { + "epoch": 47.93665356050677, + "grad_norm": 0.2321154624223709, + "learning_rate": 0.0006, + "loss": 3.6104419231414795, + "step": 3451 + }, + { + "epoch": 47.95063346439493, + "grad_norm": 0.20895935595035553, + "learning_rate": 0.0006, + "loss": 3.6372952461242676, + "step": 3452 + }, + { + "epoch": 47.964613368283096, + "grad_norm": 0.19926418364048004, + "learning_rate": 0.0006, + "loss": 3.652947425842285, + "step": 3453 + }, + { + "epoch": 47.97859327217125, + "grad_norm": 0.22443149983882904, + "learning_rate": 0.0006, + "loss": 3.6005635261535645, + "step": 3454 + }, + { + "epoch": 47.992573176059416, + "grad_norm": 0.2361244559288025, + "learning_rate": 0.0006, + "loss": 3.626563549041748, + "step": 3455 + }, + { + "epoch": 48.0, + "grad_norm": 0.2542579174041748, + "learning_rate": 0.0006, + "loss": 3.619098663330078, + "step": 3456 + }, + { + "epoch": 48.0, + "eval_loss": 3.9787564277648926, + "eval_runtime": 44.3429, + "eval_samples_per_second": 55.071, + "eval_steps_per_second": 3.45, + "step": 3456 + }, + { + "epoch": 48.01397990388816, + "grad_norm": 0.21771088242530823, + "learning_rate": 0.0006, + "loss": 3.538780927658081, + "step": 3457 + }, + { + "epoch": 48.02795980777632, + "grad_norm": 0.23467740416526794, + "learning_rate": 0.0006, + "loss": 3.5875978469848633, + "step": 3458 + }, + { + "epoch": 48.04193971166448, + "grad_norm": 0.2527692914009094, + "learning_rate": 0.0006, + "loss": 3.5939159393310547, + "step": 3459 + }, + { + "epoch": 48.05591961555265, + "grad_norm": 0.21477685868740082, + "learning_rate": 0.0006, + "loss": 3.600374698638916, + "step": 3460 + }, + { + "epoch": 48.0698995194408, + "grad_norm": 0.22008976340293884, + "learning_rate": 0.0006, + "loss": 3.6058406829833984, + "step": 3461 + }, + { + "epoch": 48.083879423328966, + "grad_norm": 0.23344817757606506, + "learning_rate": 0.0006, + "loss": 3.5864410400390625, + "step": 3462 + }, + { + "epoch": 48.09785932721712, + "grad_norm": 0.24451610445976257, + "learning_rate": 0.0006, + "loss": 3.5827221870422363, + "step": 3463 + }, + { + "epoch": 48.111839231105286, + "grad_norm": 0.24536925554275513, + "learning_rate": 0.0006, + "loss": 3.566275119781494, + "step": 3464 + }, + { + "epoch": 48.12581913499345, + "grad_norm": 0.24060940742492676, + "learning_rate": 0.0006, + "loss": 3.575841188430786, + "step": 3465 + }, + { + "epoch": 48.139799038881605, + "grad_norm": 0.24829573929309845, + "learning_rate": 0.0006, + "loss": 3.6215152740478516, + "step": 3466 + }, + { + "epoch": 48.15377894276977, + "grad_norm": 0.2651045024394989, + "learning_rate": 0.0006, + "loss": 3.604381561279297, + "step": 3467 + }, + { + "epoch": 48.16775884665793, + "grad_norm": 0.2654518187046051, + "learning_rate": 0.0006, + "loss": 3.5989198684692383, + "step": 3468 + }, + { + "epoch": 48.18173875054609, + "grad_norm": 0.25179797410964966, + "learning_rate": 0.0006, + "loss": 3.596402168273926, + "step": 3469 + }, + { + "epoch": 48.19571865443425, + "grad_norm": 0.24018050730228424, + "learning_rate": 0.0006, + "loss": 3.6376051902770996, + "step": 3470 + }, + { + "epoch": 48.20969855832241, + "grad_norm": 0.22079682350158691, + "learning_rate": 0.0006, + "loss": 3.5990993976593018, + "step": 3471 + }, + { + "epoch": 48.22367846221057, + "grad_norm": 0.23267143964767456, + "learning_rate": 0.0006, + "loss": 3.614759683609009, + "step": 3472 + }, + { + "epoch": 48.237658366098735, + "grad_norm": 0.21822260320186615, + "learning_rate": 0.0006, + "loss": 3.6057262420654297, + "step": 3473 + }, + { + "epoch": 48.25163826998689, + "grad_norm": 0.23391997814178467, + "learning_rate": 0.0006, + "loss": 3.581972599029541, + "step": 3474 + }, + { + "epoch": 48.265618173875055, + "grad_norm": 0.22634121775627136, + "learning_rate": 0.0006, + "loss": 3.592149496078491, + "step": 3475 + }, + { + "epoch": 48.27959807776322, + "grad_norm": 0.2142419070005417, + "learning_rate": 0.0006, + "loss": 3.616722583770752, + "step": 3476 + }, + { + "epoch": 48.293577981651374, + "grad_norm": 0.227144256234169, + "learning_rate": 0.0006, + "loss": 3.6018447875976562, + "step": 3477 + }, + { + "epoch": 48.30755788553954, + "grad_norm": 0.25466978549957275, + "learning_rate": 0.0006, + "loss": 3.5795769691467285, + "step": 3478 + }, + { + "epoch": 48.3215377894277, + "grad_norm": 0.2409234344959259, + "learning_rate": 0.0006, + "loss": 3.5845530033111572, + "step": 3479 + }, + { + "epoch": 48.33551769331586, + "grad_norm": 0.22001305222511292, + "learning_rate": 0.0006, + "loss": 3.5861806869506836, + "step": 3480 + }, + { + "epoch": 48.34949759720402, + "grad_norm": 0.24980100989341736, + "learning_rate": 0.0006, + "loss": 3.6032233238220215, + "step": 3481 + }, + { + "epoch": 48.36347750109218, + "grad_norm": 0.28788816928863525, + "learning_rate": 0.0006, + "loss": 3.5876364707946777, + "step": 3482 + }, + { + "epoch": 48.37745740498034, + "grad_norm": 0.26172295212745667, + "learning_rate": 0.0006, + "loss": 3.5711276531219482, + "step": 3483 + }, + { + "epoch": 48.391437308868504, + "grad_norm": 0.23881542682647705, + "learning_rate": 0.0006, + "loss": 3.57108473777771, + "step": 3484 + }, + { + "epoch": 48.40541721275666, + "grad_norm": 0.22385981678962708, + "learning_rate": 0.0006, + "loss": 3.6197509765625, + "step": 3485 + }, + { + "epoch": 48.419397116644824, + "grad_norm": 0.21007859706878662, + "learning_rate": 0.0006, + "loss": 3.609449625015259, + "step": 3486 + }, + { + "epoch": 48.43337702053299, + "grad_norm": 0.21170279383659363, + "learning_rate": 0.0006, + "loss": 3.5981619358062744, + "step": 3487 + }, + { + "epoch": 48.44735692442114, + "grad_norm": 0.2100721150636673, + "learning_rate": 0.0006, + "loss": 3.606505870819092, + "step": 3488 + }, + { + "epoch": 48.46133682830931, + "grad_norm": 0.20408287644386292, + "learning_rate": 0.0006, + "loss": 3.6033859252929688, + "step": 3489 + }, + { + "epoch": 48.47531673219746, + "grad_norm": 0.20343686640262604, + "learning_rate": 0.0006, + "loss": 3.6249616146087646, + "step": 3490 + }, + { + "epoch": 48.489296636085626, + "grad_norm": 0.20570123195648193, + "learning_rate": 0.0006, + "loss": 3.5700693130493164, + "step": 3491 + }, + { + "epoch": 48.50327653997379, + "grad_norm": 0.2511707544326782, + "learning_rate": 0.0006, + "loss": 3.6432406902313232, + "step": 3492 + }, + { + "epoch": 48.517256443861946, + "grad_norm": 0.265960693359375, + "learning_rate": 0.0006, + "loss": 3.6329426765441895, + "step": 3493 + }, + { + "epoch": 48.53123634775011, + "grad_norm": 0.25830161571502686, + "learning_rate": 0.0006, + "loss": 3.593940258026123, + "step": 3494 + }, + { + "epoch": 48.54521625163827, + "grad_norm": 0.2232893705368042, + "learning_rate": 0.0006, + "loss": 3.623812198638916, + "step": 3495 + }, + { + "epoch": 48.55919615552643, + "grad_norm": 0.20818902552127838, + "learning_rate": 0.0006, + "loss": 3.5982813835144043, + "step": 3496 + }, + { + "epoch": 48.57317605941459, + "grad_norm": 0.2756865918636322, + "learning_rate": 0.0006, + "loss": 3.617436170578003, + "step": 3497 + }, + { + "epoch": 48.58715596330275, + "grad_norm": 0.2361520677804947, + "learning_rate": 0.0006, + "loss": 3.598113536834717, + "step": 3498 + }, + { + "epoch": 48.60113586719091, + "grad_norm": 0.1956835240125656, + "learning_rate": 0.0006, + "loss": 3.581003189086914, + "step": 3499 + }, + { + "epoch": 48.615115771079076, + "grad_norm": 0.2863931953907013, + "learning_rate": 0.0006, + "loss": 3.596768379211426, + "step": 3500 + }, + { + "epoch": 48.62909567496723, + "grad_norm": 0.29865020513534546, + "learning_rate": 0.0006, + "loss": 3.576995372772217, + "step": 3501 + }, + { + "epoch": 48.643075578855395, + "grad_norm": 0.23084872961044312, + "learning_rate": 0.0006, + "loss": 3.6431074142456055, + "step": 3502 + }, + { + "epoch": 48.65705548274356, + "grad_norm": 0.2081640362739563, + "learning_rate": 0.0006, + "loss": 3.6002132892608643, + "step": 3503 + }, + { + "epoch": 48.671035386631715, + "grad_norm": 0.20566335320472717, + "learning_rate": 0.0006, + "loss": 3.62365460395813, + "step": 3504 + }, + { + "epoch": 48.68501529051988, + "grad_norm": 0.2066725790500641, + "learning_rate": 0.0006, + "loss": 3.6063363552093506, + "step": 3505 + }, + { + "epoch": 48.69899519440804, + "grad_norm": 0.19830003380775452, + "learning_rate": 0.0006, + "loss": 3.617750883102417, + "step": 3506 + }, + { + "epoch": 48.7129750982962, + "grad_norm": 0.20409031212329865, + "learning_rate": 0.0006, + "loss": 3.6110005378723145, + "step": 3507 + }, + { + "epoch": 48.72695500218436, + "grad_norm": 0.20836064219474792, + "learning_rate": 0.0006, + "loss": 3.6148147583007812, + "step": 3508 + }, + { + "epoch": 48.74093490607252, + "grad_norm": 0.21660791337490082, + "learning_rate": 0.0006, + "loss": 3.641488790512085, + "step": 3509 + }, + { + "epoch": 48.75491480996068, + "grad_norm": 0.21075023710727692, + "learning_rate": 0.0006, + "loss": 3.6327688694000244, + "step": 3510 + }, + { + "epoch": 48.768894713848844, + "grad_norm": 0.19346074759960175, + "learning_rate": 0.0006, + "loss": 3.6025185585021973, + "step": 3511 + }, + { + "epoch": 48.782874617737, + "grad_norm": 0.20215240120887756, + "learning_rate": 0.0006, + "loss": 3.595707416534424, + "step": 3512 + }, + { + "epoch": 48.796854521625164, + "grad_norm": 0.1913122832775116, + "learning_rate": 0.0006, + "loss": 3.618406295776367, + "step": 3513 + }, + { + "epoch": 48.81083442551333, + "grad_norm": 0.18517033755779266, + "learning_rate": 0.0006, + "loss": 3.6212055683135986, + "step": 3514 + }, + { + "epoch": 48.824814329401484, + "grad_norm": 0.20453064143657684, + "learning_rate": 0.0006, + "loss": 3.5941221714019775, + "step": 3515 + }, + { + "epoch": 48.83879423328965, + "grad_norm": 0.20777031779289246, + "learning_rate": 0.0006, + "loss": 3.630701780319214, + "step": 3516 + }, + { + "epoch": 48.8527741371778, + "grad_norm": 0.23713789880275726, + "learning_rate": 0.0006, + "loss": 3.629256248474121, + "step": 3517 + }, + { + "epoch": 48.86675404106597, + "grad_norm": 0.1945258378982544, + "learning_rate": 0.0006, + "loss": 3.607020854949951, + "step": 3518 + }, + { + "epoch": 48.88073394495413, + "grad_norm": 0.19601863622665405, + "learning_rate": 0.0006, + "loss": 3.6200907230377197, + "step": 3519 + }, + { + "epoch": 48.89471384884229, + "grad_norm": 0.20068836212158203, + "learning_rate": 0.0006, + "loss": 3.58575701713562, + "step": 3520 + }, + { + "epoch": 48.90869375273045, + "grad_norm": 0.21790200471878052, + "learning_rate": 0.0006, + "loss": 3.6451416015625, + "step": 3521 + }, + { + "epoch": 48.92267365661861, + "grad_norm": 0.22265756130218506, + "learning_rate": 0.0006, + "loss": 3.621331214904785, + "step": 3522 + }, + { + "epoch": 48.93665356050677, + "grad_norm": 0.20316730439662933, + "learning_rate": 0.0006, + "loss": 3.614537239074707, + "step": 3523 + }, + { + "epoch": 48.95063346439493, + "grad_norm": 0.20275238156318665, + "learning_rate": 0.0006, + "loss": 3.5913281440734863, + "step": 3524 + }, + { + "epoch": 48.964613368283096, + "grad_norm": 0.20239883661270142, + "learning_rate": 0.0006, + "loss": 3.608638286590576, + "step": 3525 + }, + { + "epoch": 48.97859327217125, + "grad_norm": 0.21154041588306427, + "learning_rate": 0.0006, + "loss": 3.6233115196228027, + "step": 3526 + }, + { + "epoch": 48.992573176059416, + "grad_norm": 0.22368352115154266, + "learning_rate": 0.0006, + "loss": 3.599665880203247, + "step": 3527 + }, + { + "epoch": 49.0, + "grad_norm": 0.2675703763961792, + "learning_rate": 0.0006, + "loss": 3.637458086013794, + "step": 3528 + }, + { + "epoch": 49.0, + "eval_loss": 3.985574245452881, + "eval_runtime": 44.55, + "eval_samples_per_second": 54.815, + "eval_steps_per_second": 3.434, + "step": 3528 + }, + { + "epoch": 49.01397990388816, + "grad_norm": 0.2911863625049591, + "learning_rate": 0.0006, + "loss": 3.606170654296875, + "step": 3529 + }, + { + "epoch": 49.02795980777632, + "grad_norm": 0.26640036702156067, + "learning_rate": 0.0006, + "loss": 3.5662899017333984, + "step": 3530 + }, + { + "epoch": 49.04193971166448, + "grad_norm": 0.23250512778759003, + "learning_rate": 0.0006, + "loss": 3.5928688049316406, + "step": 3531 + }, + { + "epoch": 49.05591961555265, + "grad_norm": 0.2603093385696411, + "learning_rate": 0.0006, + "loss": 3.5702433586120605, + "step": 3532 + }, + { + "epoch": 49.0698995194408, + "grad_norm": 0.2711663246154785, + "learning_rate": 0.0006, + "loss": 3.591977596282959, + "step": 3533 + }, + { + "epoch": 49.083879423328966, + "grad_norm": 0.2536148130893707, + "learning_rate": 0.0006, + "loss": 3.5924272537231445, + "step": 3534 + }, + { + "epoch": 49.09785932721712, + "grad_norm": 0.22995208203792572, + "learning_rate": 0.0006, + "loss": 3.5760092735290527, + "step": 3535 + }, + { + "epoch": 49.111839231105286, + "grad_norm": 0.22327162325382233, + "learning_rate": 0.0006, + "loss": 3.6072137355804443, + "step": 3536 + }, + { + "epoch": 49.12581913499345, + "grad_norm": 0.2256365567445755, + "learning_rate": 0.0006, + "loss": 3.6156117916107178, + "step": 3537 + }, + { + "epoch": 49.139799038881605, + "grad_norm": 0.23647814989089966, + "learning_rate": 0.0006, + "loss": 3.5862512588500977, + "step": 3538 + }, + { + "epoch": 49.15377894276977, + "grad_norm": 0.23442648351192474, + "learning_rate": 0.0006, + "loss": 3.606386184692383, + "step": 3539 + }, + { + "epoch": 49.16775884665793, + "grad_norm": 0.22148385643959045, + "learning_rate": 0.0006, + "loss": 3.5564064979553223, + "step": 3540 + }, + { + "epoch": 49.18173875054609, + "grad_norm": 0.24589644372463226, + "learning_rate": 0.0006, + "loss": 3.5625576972961426, + "step": 3541 + }, + { + "epoch": 49.19571865443425, + "grad_norm": 0.23955261707305908, + "learning_rate": 0.0006, + "loss": 3.617833137512207, + "step": 3542 + }, + { + "epoch": 49.20969855832241, + "grad_norm": 0.2781425416469574, + "learning_rate": 0.0006, + "loss": 3.6153502464294434, + "step": 3543 + }, + { + "epoch": 49.22367846221057, + "grad_norm": 0.2622034549713135, + "learning_rate": 0.0006, + "loss": 3.608530044555664, + "step": 3544 + }, + { + "epoch": 49.237658366098735, + "grad_norm": 0.28407761454582214, + "learning_rate": 0.0006, + "loss": 3.572207450866699, + "step": 3545 + }, + { + "epoch": 49.25163826998689, + "grad_norm": 0.2722281217575073, + "learning_rate": 0.0006, + "loss": 3.591392755508423, + "step": 3546 + }, + { + "epoch": 49.265618173875055, + "grad_norm": 0.20608903467655182, + "learning_rate": 0.0006, + "loss": 3.598421573638916, + "step": 3547 + }, + { + "epoch": 49.27959807776322, + "grad_norm": 0.27233049273490906, + "learning_rate": 0.0006, + "loss": 3.5819201469421387, + "step": 3548 + }, + { + "epoch": 49.293577981651374, + "grad_norm": 0.26182129979133606, + "learning_rate": 0.0006, + "loss": 3.5855109691619873, + "step": 3549 + }, + { + "epoch": 49.30755788553954, + "grad_norm": 0.20255911350250244, + "learning_rate": 0.0006, + "loss": 3.569438934326172, + "step": 3550 + }, + { + "epoch": 49.3215377894277, + "grad_norm": 0.20045310258865356, + "learning_rate": 0.0006, + "loss": 3.5888795852661133, + "step": 3551 + }, + { + "epoch": 49.33551769331586, + "grad_norm": 0.18505392968654633, + "learning_rate": 0.0006, + "loss": 3.565467596054077, + "step": 3552 + }, + { + "epoch": 49.34949759720402, + "grad_norm": 0.2057398110628128, + "learning_rate": 0.0006, + "loss": 3.5850436687469482, + "step": 3553 + }, + { + "epoch": 49.36347750109218, + "grad_norm": 0.20007790625095367, + "learning_rate": 0.0006, + "loss": 3.5963945388793945, + "step": 3554 + }, + { + "epoch": 49.37745740498034, + "grad_norm": 0.179341122508049, + "learning_rate": 0.0006, + "loss": 3.5747077465057373, + "step": 3555 + }, + { + "epoch": 49.391437308868504, + "grad_norm": 0.1978122442960739, + "learning_rate": 0.0006, + "loss": 3.605037212371826, + "step": 3556 + }, + { + "epoch": 49.40541721275666, + "grad_norm": 0.1936761885881424, + "learning_rate": 0.0006, + "loss": 3.6293420791625977, + "step": 3557 + }, + { + "epoch": 49.419397116644824, + "grad_norm": 0.20393748581409454, + "learning_rate": 0.0006, + "loss": 3.5616302490234375, + "step": 3558 + }, + { + "epoch": 49.43337702053299, + "grad_norm": 0.19082997739315033, + "learning_rate": 0.0006, + "loss": 3.605088472366333, + "step": 3559 + }, + { + "epoch": 49.44735692442114, + "grad_norm": 0.19642551243305206, + "learning_rate": 0.0006, + "loss": 3.610870361328125, + "step": 3560 + }, + { + "epoch": 49.46133682830931, + "grad_norm": 0.21815423667430878, + "learning_rate": 0.0006, + "loss": 3.60211181640625, + "step": 3561 + }, + { + "epoch": 49.47531673219746, + "grad_norm": 0.20342762768268585, + "learning_rate": 0.0006, + "loss": 3.597529411315918, + "step": 3562 + }, + { + "epoch": 49.489296636085626, + "grad_norm": 0.19032546877861023, + "learning_rate": 0.0006, + "loss": 3.5728795528411865, + "step": 3563 + }, + { + "epoch": 49.50327653997379, + "grad_norm": 0.18237556517124176, + "learning_rate": 0.0006, + "loss": 3.5983595848083496, + "step": 3564 + }, + { + "epoch": 49.517256443861946, + "grad_norm": 0.20585589110851288, + "learning_rate": 0.0006, + "loss": 3.578320264816284, + "step": 3565 + }, + { + "epoch": 49.53123634775011, + "grad_norm": 0.20158857107162476, + "learning_rate": 0.0006, + "loss": 3.5918798446655273, + "step": 3566 + }, + { + "epoch": 49.54521625163827, + "grad_norm": 0.20195038616657257, + "learning_rate": 0.0006, + "loss": 3.605422258377075, + "step": 3567 + }, + { + "epoch": 49.55919615552643, + "grad_norm": 0.19884084165096283, + "learning_rate": 0.0006, + "loss": 3.5964083671569824, + "step": 3568 + }, + { + "epoch": 49.57317605941459, + "grad_norm": 0.21243083477020264, + "learning_rate": 0.0006, + "loss": 3.5885486602783203, + "step": 3569 + }, + { + "epoch": 49.58715596330275, + "grad_norm": 0.21059481799602509, + "learning_rate": 0.0006, + "loss": 3.572526454925537, + "step": 3570 + }, + { + "epoch": 49.60113586719091, + "grad_norm": 0.20644313097000122, + "learning_rate": 0.0006, + "loss": 3.583679676055908, + "step": 3571 + }, + { + "epoch": 49.615115771079076, + "grad_norm": 0.21343673765659332, + "learning_rate": 0.0006, + "loss": 3.6211650371551514, + "step": 3572 + }, + { + "epoch": 49.62909567496723, + "grad_norm": 0.23395343124866486, + "learning_rate": 0.0006, + "loss": 3.6003336906433105, + "step": 3573 + }, + { + "epoch": 49.643075578855395, + "grad_norm": 0.19978424906730652, + "learning_rate": 0.0006, + "loss": 3.6066763401031494, + "step": 3574 + }, + { + "epoch": 49.65705548274356, + "grad_norm": 0.21529823541641235, + "learning_rate": 0.0006, + "loss": 3.601284980773926, + "step": 3575 + }, + { + "epoch": 49.671035386631715, + "grad_norm": 0.21672746539115906, + "learning_rate": 0.0006, + "loss": 3.6084227561950684, + "step": 3576 + }, + { + "epoch": 49.68501529051988, + "grad_norm": 0.20889638364315033, + "learning_rate": 0.0006, + "loss": 3.591568946838379, + "step": 3577 + }, + { + "epoch": 49.69899519440804, + "grad_norm": 0.1960221230983734, + "learning_rate": 0.0006, + "loss": 3.6180830001831055, + "step": 3578 + }, + { + "epoch": 49.7129750982962, + "grad_norm": 0.19712410867214203, + "learning_rate": 0.0006, + "loss": 3.6197333335876465, + "step": 3579 + }, + { + "epoch": 49.72695500218436, + "grad_norm": 0.20665284991264343, + "learning_rate": 0.0006, + "loss": 3.6251301765441895, + "step": 3580 + }, + { + "epoch": 49.74093490607252, + "grad_norm": 0.21018871665000916, + "learning_rate": 0.0006, + "loss": 3.621973991394043, + "step": 3581 + }, + { + "epoch": 49.75491480996068, + "grad_norm": 0.20777495205402374, + "learning_rate": 0.0006, + "loss": 3.5826358795166016, + "step": 3582 + }, + { + "epoch": 49.768894713848844, + "grad_norm": 0.18880195915699005, + "learning_rate": 0.0006, + "loss": 3.5946998596191406, + "step": 3583 + }, + { + "epoch": 49.782874617737, + "grad_norm": 0.19894644618034363, + "learning_rate": 0.0006, + "loss": 3.5912184715270996, + "step": 3584 + }, + { + "epoch": 49.796854521625164, + "grad_norm": 0.20128944516181946, + "learning_rate": 0.0006, + "loss": 3.6370394229888916, + "step": 3585 + }, + { + "epoch": 49.81083442551333, + "grad_norm": 0.19332024455070496, + "learning_rate": 0.0006, + "loss": 3.619018077850342, + "step": 3586 + }, + { + "epoch": 49.824814329401484, + "grad_norm": 0.19303865730762482, + "learning_rate": 0.0006, + "loss": 3.578667163848877, + "step": 3587 + }, + { + "epoch": 49.83879423328965, + "grad_norm": 0.20154757797718048, + "learning_rate": 0.0006, + "loss": 3.61959171295166, + "step": 3588 + }, + { + "epoch": 49.8527741371778, + "grad_norm": 0.19653639197349548, + "learning_rate": 0.0006, + "loss": 3.6437559127807617, + "step": 3589 + }, + { + "epoch": 49.86675404106597, + "grad_norm": 0.21873407065868378, + "learning_rate": 0.0006, + "loss": 3.6131112575531006, + "step": 3590 + }, + { + "epoch": 49.88073394495413, + "grad_norm": 0.20130383968353271, + "learning_rate": 0.0006, + "loss": 3.624028444290161, + "step": 3591 + }, + { + "epoch": 49.89471384884229, + "grad_norm": 0.20206475257873535, + "learning_rate": 0.0006, + "loss": 3.5997328758239746, + "step": 3592 + }, + { + "epoch": 49.90869375273045, + "grad_norm": 0.20393261313438416, + "learning_rate": 0.0006, + "loss": 3.596066474914551, + "step": 3593 + }, + { + "epoch": 49.92267365661861, + "grad_norm": 0.19703544676303864, + "learning_rate": 0.0006, + "loss": 3.624542713165283, + "step": 3594 + }, + { + "epoch": 49.93665356050677, + "grad_norm": 0.2102314680814743, + "learning_rate": 0.0006, + "loss": 3.6082515716552734, + "step": 3595 + }, + { + "epoch": 49.95063346439493, + "grad_norm": 0.23791316151618958, + "learning_rate": 0.0006, + "loss": 3.6185569763183594, + "step": 3596 + }, + { + "epoch": 49.964613368283096, + "grad_norm": 0.24536125361919403, + "learning_rate": 0.0006, + "loss": 3.599207878112793, + "step": 3597 + }, + { + "epoch": 49.97859327217125, + "grad_norm": 0.23160327970981598, + "learning_rate": 0.0006, + "loss": 3.600921869277954, + "step": 3598 + }, + { + "epoch": 49.992573176059416, + "grad_norm": 0.22740362584590912, + "learning_rate": 0.0006, + "loss": 3.6112914085388184, + "step": 3599 + }, + { + "epoch": 50.0, + "grad_norm": 0.24303272366523743, + "learning_rate": 0.0006, + "loss": 3.6385838985443115, + "step": 3600 + }, + { + "epoch": 50.0, + "eval_loss": 3.9811089038848877, + "eval_runtime": 44.9913, + "eval_samples_per_second": 54.277, + "eval_steps_per_second": 3.401, + "step": 3600 + }, + { + "epoch": 50.01397990388816, + "grad_norm": 0.20118683576583862, + "learning_rate": 0.0006, + "loss": 3.561751127243042, + "step": 3601 + }, + { + "epoch": 50.02795980777632, + "grad_norm": 0.18722538650035858, + "learning_rate": 0.0006, + "loss": 3.5742180347442627, + "step": 3602 + }, + { + "epoch": 50.04193971166448, + "grad_norm": 0.21248385310173035, + "learning_rate": 0.0006, + "loss": 3.5759401321411133, + "step": 3603 + }, + { + "epoch": 50.05591961555265, + "grad_norm": 0.21006572246551514, + "learning_rate": 0.0006, + "loss": 3.5737462043762207, + "step": 3604 + }, + { + "epoch": 50.0698995194408, + "grad_norm": 0.20671233534812927, + "learning_rate": 0.0006, + "loss": 3.548205852508545, + "step": 3605 + }, + { + "epoch": 50.083879423328966, + "grad_norm": 0.20704609155654907, + "learning_rate": 0.0006, + "loss": 3.5862209796905518, + "step": 3606 + }, + { + "epoch": 50.09785932721712, + "grad_norm": 0.20611345767974854, + "learning_rate": 0.0006, + "loss": 3.5696640014648438, + "step": 3607 + }, + { + "epoch": 50.111839231105286, + "grad_norm": 0.20986805856227875, + "learning_rate": 0.0006, + "loss": 3.5755579471588135, + "step": 3608 + }, + { + "epoch": 50.12581913499345, + "grad_norm": 0.21727709472179413, + "learning_rate": 0.0006, + "loss": 3.5967745780944824, + "step": 3609 + }, + { + "epoch": 50.139799038881605, + "grad_norm": 0.21854986250400543, + "learning_rate": 0.0006, + "loss": 3.6115779876708984, + "step": 3610 + }, + { + "epoch": 50.15377894276977, + "grad_norm": 0.22904936969280243, + "learning_rate": 0.0006, + "loss": 3.5639889240264893, + "step": 3611 + }, + { + "epoch": 50.16775884665793, + "grad_norm": 0.23774254322052002, + "learning_rate": 0.0006, + "loss": 3.6023900508880615, + "step": 3612 + }, + { + "epoch": 50.18173875054609, + "grad_norm": 0.21548497676849365, + "learning_rate": 0.0006, + "loss": 3.5722856521606445, + "step": 3613 + }, + { + "epoch": 50.19571865443425, + "grad_norm": 0.20503196120262146, + "learning_rate": 0.0006, + "loss": 3.5899252891540527, + "step": 3614 + }, + { + "epoch": 50.20969855832241, + "grad_norm": 0.22084423899650574, + "learning_rate": 0.0006, + "loss": 3.56020450592041, + "step": 3615 + }, + { + "epoch": 50.22367846221057, + "grad_norm": 0.24276728928089142, + "learning_rate": 0.0006, + "loss": 3.585695743560791, + "step": 3616 + }, + { + "epoch": 50.237658366098735, + "grad_norm": 0.23182106018066406, + "learning_rate": 0.0006, + "loss": 3.580676555633545, + "step": 3617 + }, + { + "epoch": 50.25163826998689, + "grad_norm": 0.2341945767402649, + "learning_rate": 0.0006, + "loss": 3.579713821411133, + "step": 3618 + }, + { + "epoch": 50.265618173875055, + "grad_norm": 0.27971863746643066, + "learning_rate": 0.0006, + "loss": 3.568251371383667, + "step": 3619 + }, + { + "epoch": 50.27959807776322, + "grad_norm": 0.24740517139434814, + "learning_rate": 0.0006, + "loss": 3.5798869132995605, + "step": 3620 + }, + { + "epoch": 50.293577981651374, + "grad_norm": 0.20561005175113678, + "learning_rate": 0.0006, + "loss": 3.5610039234161377, + "step": 3621 + }, + { + "epoch": 50.30755788553954, + "grad_norm": 0.2085379660129547, + "learning_rate": 0.0006, + "loss": 3.5620288848876953, + "step": 3622 + }, + { + "epoch": 50.3215377894277, + "grad_norm": 0.20868757367134094, + "learning_rate": 0.0006, + "loss": 3.6090598106384277, + "step": 3623 + }, + { + "epoch": 50.33551769331586, + "grad_norm": 0.18991491198539734, + "learning_rate": 0.0006, + "loss": 3.55255126953125, + "step": 3624 + }, + { + "epoch": 50.34949759720402, + "grad_norm": 0.24742646515369415, + "learning_rate": 0.0006, + "loss": 3.60585880279541, + "step": 3625 + }, + { + "epoch": 50.36347750109218, + "grad_norm": 0.26971301436424255, + "learning_rate": 0.0006, + "loss": 3.5913054943084717, + "step": 3626 + }, + { + "epoch": 50.37745740498034, + "grad_norm": 0.24294881522655487, + "learning_rate": 0.0006, + "loss": 3.5570878982543945, + "step": 3627 + }, + { + "epoch": 50.391437308868504, + "grad_norm": 0.2194664478302002, + "learning_rate": 0.0006, + "loss": 3.5800397396087646, + "step": 3628 + }, + { + "epoch": 50.40541721275666, + "grad_norm": 0.2148507982492447, + "learning_rate": 0.0006, + "loss": 3.6182782649993896, + "step": 3629 + }, + { + "epoch": 50.419397116644824, + "grad_norm": 0.22235016524791718, + "learning_rate": 0.0006, + "loss": 3.5784103870391846, + "step": 3630 + }, + { + "epoch": 50.43337702053299, + "grad_norm": 0.23176309466362, + "learning_rate": 0.0006, + "loss": 3.559011459350586, + "step": 3631 + }, + { + "epoch": 50.44735692442114, + "grad_norm": 0.2267913520336151, + "learning_rate": 0.0006, + "loss": 3.5854780673980713, + "step": 3632 + }, + { + "epoch": 50.46133682830931, + "grad_norm": 0.22565901279449463, + "learning_rate": 0.0006, + "loss": 3.5891294479370117, + "step": 3633 + }, + { + "epoch": 50.47531673219746, + "grad_norm": 0.23724839091300964, + "learning_rate": 0.0006, + "loss": 3.575702428817749, + "step": 3634 + }, + { + "epoch": 50.489296636085626, + "grad_norm": 0.23679722845554352, + "learning_rate": 0.0006, + "loss": 3.588639259338379, + "step": 3635 + }, + { + "epoch": 50.50327653997379, + "grad_norm": 0.23909232020378113, + "learning_rate": 0.0006, + "loss": 3.5828709602355957, + "step": 3636 + }, + { + "epoch": 50.517256443861946, + "grad_norm": 0.24186119437217712, + "learning_rate": 0.0006, + "loss": 3.596708059310913, + "step": 3637 + }, + { + "epoch": 50.53123634775011, + "grad_norm": 0.2325516790151596, + "learning_rate": 0.0006, + "loss": 3.610769510269165, + "step": 3638 + }, + { + "epoch": 50.54521625163827, + "grad_norm": 0.205137237906456, + "learning_rate": 0.0006, + "loss": 3.612844228744507, + "step": 3639 + }, + { + "epoch": 50.55919615552643, + "grad_norm": 0.20860300958156586, + "learning_rate": 0.0006, + "loss": 3.623669147491455, + "step": 3640 + }, + { + "epoch": 50.57317605941459, + "grad_norm": 0.20029069483280182, + "learning_rate": 0.0006, + "loss": 3.6108334064483643, + "step": 3641 + }, + { + "epoch": 50.58715596330275, + "grad_norm": 0.18841931223869324, + "learning_rate": 0.0006, + "loss": 3.6073007583618164, + "step": 3642 + }, + { + "epoch": 50.60113586719091, + "grad_norm": 0.20113889873027802, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3643 + }, + { + "epoch": 50.615115771079076, + "grad_norm": 0.23595206439495087, + "learning_rate": 0.0006, + "loss": 3.634650707244873, + "step": 3644 + }, + { + "epoch": 50.62909567496723, + "grad_norm": 0.24625661969184875, + "learning_rate": 0.0006, + "loss": 3.593716621398926, + "step": 3645 + }, + { + "epoch": 50.643075578855395, + "grad_norm": 0.2182614505290985, + "learning_rate": 0.0006, + "loss": 3.6006946563720703, + "step": 3646 + }, + { + "epoch": 50.65705548274356, + "grad_norm": 0.20867182314395905, + "learning_rate": 0.0006, + "loss": 3.6249008178710938, + "step": 3647 + }, + { + "epoch": 50.671035386631715, + "grad_norm": 0.20451945066452026, + "learning_rate": 0.0006, + "loss": 3.5870985984802246, + "step": 3648 + }, + { + "epoch": 50.68501529051988, + "grad_norm": 0.19160118699073792, + "learning_rate": 0.0006, + "loss": 3.6104488372802734, + "step": 3649 + }, + { + "epoch": 50.69899519440804, + "grad_norm": 0.18884453177452087, + "learning_rate": 0.0006, + "loss": 3.607893943786621, + "step": 3650 + }, + { + "epoch": 50.7129750982962, + "grad_norm": 0.19570060074329376, + "learning_rate": 0.0006, + "loss": 3.5938732624053955, + "step": 3651 + }, + { + "epoch": 50.72695500218436, + "grad_norm": 0.21978189051151276, + "learning_rate": 0.0006, + "loss": 3.5894908905029297, + "step": 3652 + }, + { + "epoch": 50.74093490607252, + "grad_norm": 0.19930903613567352, + "learning_rate": 0.0006, + "loss": 3.6067557334899902, + "step": 3653 + }, + { + "epoch": 50.75491480996068, + "grad_norm": 0.19450204074382782, + "learning_rate": 0.0006, + "loss": 3.5989646911621094, + "step": 3654 + }, + { + "epoch": 50.768894713848844, + "grad_norm": 0.1925407201051712, + "learning_rate": 0.0006, + "loss": 3.604339599609375, + "step": 3655 + }, + { + "epoch": 50.782874617737, + "grad_norm": 0.19232864677906036, + "learning_rate": 0.0006, + "loss": 3.5789241790771484, + "step": 3656 + }, + { + "epoch": 50.796854521625164, + "grad_norm": 0.1937529742717743, + "learning_rate": 0.0006, + "loss": 3.6060590744018555, + "step": 3657 + }, + { + "epoch": 50.81083442551333, + "grad_norm": 0.19863007962703705, + "learning_rate": 0.0006, + "loss": 3.5944440364837646, + "step": 3658 + }, + { + "epoch": 50.824814329401484, + "grad_norm": 0.18879804015159607, + "learning_rate": 0.0006, + "loss": 3.6017069816589355, + "step": 3659 + }, + { + "epoch": 50.83879423328965, + "grad_norm": 0.20111720263957977, + "learning_rate": 0.0006, + "loss": 3.593327522277832, + "step": 3660 + }, + { + "epoch": 50.8527741371778, + "grad_norm": 0.22593358159065247, + "learning_rate": 0.0006, + "loss": 3.5856096744537354, + "step": 3661 + }, + { + "epoch": 50.86675404106597, + "grad_norm": 0.22624441981315613, + "learning_rate": 0.0006, + "loss": 3.6144661903381348, + "step": 3662 + }, + { + "epoch": 50.88073394495413, + "grad_norm": 0.22052904963493347, + "learning_rate": 0.0006, + "loss": 3.5895116329193115, + "step": 3663 + }, + { + "epoch": 50.89471384884229, + "grad_norm": 0.2248559594154358, + "learning_rate": 0.0006, + "loss": 3.6400208473205566, + "step": 3664 + }, + { + "epoch": 50.90869375273045, + "grad_norm": 0.20209142565727234, + "learning_rate": 0.0006, + "loss": 3.6059279441833496, + "step": 3665 + }, + { + "epoch": 50.92267365661861, + "grad_norm": 0.2075854390859604, + "learning_rate": 0.0006, + "loss": 3.590074062347412, + "step": 3666 + }, + { + "epoch": 50.93665356050677, + "grad_norm": 0.20524698495864868, + "learning_rate": 0.0006, + "loss": 3.600741147994995, + "step": 3667 + }, + { + "epoch": 50.95063346439493, + "grad_norm": 0.1922466903924942, + "learning_rate": 0.0006, + "loss": 3.5984225273132324, + "step": 3668 + }, + { + "epoch": 50.964613368283096, + "grad_norm": 0.18852637708187103, + "learning_rate": 0.0006, + "loss": 3.6204333305358887, + "step": 3669 + }, + { + "epoch": 50.97859327217125, + "grad_norm": 0.22050459682941437, + "learning_rate": 0.0006, + "loss": 3.6371538639068604, + "step": 3670 + }, + { + "epoch": 50.992573176059416, + "grad_norm": 0.21477681398391724, + "learning_rate": 0.0006, + "loss": 3.608738899230957, + "step": 3671 + }, + { + "epoch": 51.0, + "grad_norm": 0.22061094641685486, + "learning_rate": 0.0006, + "loss": 3.6209959983825684, + "step": 3672 + }, + { + "epoch": 51.0, + "eval_loss": 3.9762842655181885, + "eval_runtime": 44.8353, + "eval_samples_per_second": 54.466, + "eval_steps_per_second": 3.412, + "step": 3672 + }, + { + "epoch": 51.01397990388816, + "grad_norm": 0.19009192287921906, + "learning_rate": 0.0006, + "loss": 3.5604426860809326, + "step": 3673 + }, + { + "epoch": 51.02795980777632, + "grad_norm": 0.2217264175415039, + "learning_rate": 0.0006, + "loss": 3.5595664978027344, + "step": 3674 + }, + { + "epoch": 51.04193971166448, + "grad_norm": 0.2747595012187958, + "learning_rate": 0.0006, + "loss": 3.5800085067749023, + "step": 3675 + }, + { + "epoch": 51.05591961555265, + "grad_norm": 0.26963043212890625, + "learning_rate": 0.0006, + "loss": 3.5529065132141113, + "step": 3676 + }, + { + "epoch": 51.0698995194408, + "grad_norm": 0.2304207682609558, + "learning_rate": 0.0006, + "loss": 3.585238456726074, + "step": 3677 + }, + { + "epoch": 51.083879423328966, + "grad_norm": 0.22073867917060852, + "learning_rate": 0.0006, + "loss": 3.542267322540283, + "step": 3678 + }, + { + "epoch": 51.09785932721712, + "grad_norm": 0.22550931572914124, + "learning_rate": 0.0006, + "loss": 3.5693743228912354, + "step": 3679 + }, + { + "epoch": 51.111839231105286, + "grad_norm": 0.2347114384174347, + "learning_rate": 0.0006, + "loss": 3.5830154418945312, + "step": 3680 + }, + { + "epoch": 51.12581913499345, + "grad_norm": 0.24889813363552094, + "learning_rate": 0.0006, + "loss": 3.581010341644287, + "step": 3681 + }, + { + "epoch": 51.139799038881605, + "grad_norm": 0.2401021122932434, + "learning_rate": 0.0006, + "loss": 3.619450092315674, + "step": 3682 + }, + { + "epoch": 51.15377894276977, + "grad_norm": 0.22221142053604126, + "learning_rate": 0.0006, + "loss": 3.573624610900879, + "step": 3683 + }, + { + "epoch": 51.16775884665793, + "grad_norm": 0.2429024577140808, + "learning_rate": 0.0006, + "loss": 3.548610210418701, + "step": 3684 + }, + { + "epoch": 51.18173875054609, + "grad_norm": 0.26470765471458435, + "learning_rate": 0.0006, + "loss": 3.5582218170166016, + "step": 3685 + }, + { + "epoch": 51.19571865443425, + "grad_norm": 0.2632715404033661, + "learning_rate": 0.0006, + "loss": 3.5976979732513428, + "step": 3686 + }, + { + "epoch": 51.20969855832241, + "grad_norm": 0.2567448616027832, + "learning_rate": 0.0006, + "loss": 3.592031478881836, + "step": 3687 + }, + { + "epoch": 51.22367846221057, + "grad_norm": 0.25299885869026184, + "learning_rate": 0.0006, + "loss": 3.579765796661377, + "step": 3688 + }, + { + "epoch": 51.237658366098735, + "grad_norm": 0.22765189409255981, + "learning_rate": 0.0006, + "loss": 3.5677521228790283, + "step": 3689 + }, + { + "epoch": 51.25163826998689, + "grad_norm": 0.23369887471199036, + "learning_rate": 0.0006, + "loss": 3.585879325866699, + "step": 3690 + }, + { + "epoch": 51.265618173875055, + "grad_norm": 0.21358822286128998, + "learning_rate": 0.0006, + "loss": 3.568866729736328, + "step": 3691 + }, + { + "epoch": 51.27959807776322, + "grad_norm": 0.2127659171819687, + "learning_rate": 0.0006, + "loss": 3.614520311355591, + "step": 3692 + }, + { + "epoch": 51.293577981651374, + "grad_norm": 0.22829636931419373, + "learning_rate": 0.0006, + "loss": 3.6004438400268555, + "step": 3693 + }, + { + "epoch": 51.30755788553954, + "grad_norm": 0.223104789853096, + "learning_rate": 0.0006, + "loss": 3.5791001319885254, + "step": 3694 + }, + { + "epoch": 51.3215377894277, + "grad_norm": 0.2084331065416336, + "learning_rate": 0.0006, + "loss": 3.572514295578003, + "step": 3695 + }, + { + "epoch": 51.33551769331586, + "grad_norm": 0.21115142107009888, + "learning_rate": 0.0006, + "loss": 3.5736331939697266, + "step": 3696 + }, + { + "epoch": 51.34949759720402, + "grad_norm": 0.2158546894788742, + "learning_rate": 0.0006, + "loss": 3.587161064147949, + "step": 3697 + }, + { + "epoch": 51.36347750109218, + "grad_norm": 0.2478281408548355, + "learning_rate": 0.0006, + "loss": 3.5879693031311035, + "step": 3698 + }, + { + "epoch": 51.37745740498034, + "grad_norm": 0.25137850642204285, + "learning_rate": 0.0006, + "loss": 3.58297061920166, + "step": 3699 + }, + { + "epoch": 51.391437308868504, + "grad_norm": 0.22961364686489105, + "learning_rate": 0.0006, + "loss": 3.5556459426879883, + "step": 3700 + }, + { + "epoch": 51.40541721275666, + "grad_norm": 0.22561277449131012, + "learning_rate": 0.0006, + "loss": 3.60197114944458, + "step": 3701 + }, + { + "epoch": 51.419397116644824, + "grad_norm": 0.20331767201423645, + "learning_rate": 0.0006, + "loss": 3.5815134048461914, + "step": 3702 + }, + { + "epoch": 51.43337702053299, + "grad_norm": 0.1941518634557724, + "learning_rate": 0.0006, + "loss": 3.6055145263671875, + "step": 3703 + }, + { + "epoch": 51.44735692442114, + "grad_norm": 0.19306789338588715, + "learning_rate": 0.0006, + "loss": 3.6101536750793457, + "step": 3704 + }, + { + "epoch": 51.46133682830931, + "grad_norm": 0.1830628365278244, + "learning_rate": 0.0006, + "loss": 3.5978426933288574, + "step": 3705 + }, + { + "epoch": 51.47531673219746, + "grad_norm": 0.19231490790843964, + "learning_rate": 0.0006, + "loss": 3.54502534866333, + "step": 3706 + }, + { + "epoch": 51.489296636085626, + "grad_norm": 0.19109117984771729, + "learning_rate": 0.0006, + "loss": 3.5957441329956055, + "step": 3707 + }, + { + "epoch": 51.50327653997379, + "grad_norm": 0.2032860815525055, + "learning_rate": 0.0006, + "loss": 3.5626730918884277, + "step": 3708 + }, + { + "epoch": 51.517256443861946, + "grad_norm": 0.19685189425945282, + "learning_rate": 0.0006, + "loss": 3.580399990081787, + "step": 3709 + }, + { + "epoch": 51.53123634775011, + "grad_norm": 0.19273017346858978, + "learning_rate": 0.0006, + "loss": 3.5428152084350586, + "step": 3710 + }, + { + "epoch": 51.54521625163827, + "grad_norm": 0.20198430120944977, + "learning_rate": 0.0006, + "loss": 3.607492446899414, + "step": 3711 + }, + { + "epoch": 51.55919615552643, + "grad_norm": 0.2267402559518814, + "learning_rate": 0.0006, + "loss": 3.580479621887207, + "step": 3712 + }, + { + "epoch": 51.57317605941459, + "grad_norm": 0.2247764617204666, + "learning_rate": 0.0006, + "loss": 3.5921316146850586, + "step": 3713 + }, + { + "epoch": 51.58715596330275, + "grad_norm": 0.23907902836799622, + "learning_rate": 0.0006, + "loss": 3.6014928817749023, + "step": 3714 + }, + { + "epoch": 51.60113586719091, + "grad_norm": 0.25907906889915466, + "learning_rate": 0.0006, + "loss": 3.5900192260742188, + "step": 3715 + }, + { + "epoch": 51.615115771079076, + "grad_norm": 0.26282405853271484, + "learning_rate": 0.0006, + "loss": 3.5727553367614746, + "step": 3716 + }, + { + "epoch": 51.62909567496723, + "grad_norm": 0.2541179060935974, + "learning_rate": 0.0006, + "loss": 3.5835776329040527, + "step": 3717 + }, + { + "epoch": 51.643075578855395, + "grad_norm": 0.23372016847133636, + "learning_rate": 0.0006, + "loss": 3.5902652740478516, + "step": 3718 + }, + { + "epoch": 51.65705548274356, + "grad_norm": 0.22827622294425964, + "learning_rate": 0.0006, + "loss": 3.6048200130462646, + "step": 3719 + }, + { + "epoch": 51.671035386631715, + "grad_norm": 0.21026845276355743, + "learning_rate": 0.0006, + "loss": 3.5587573051452637, + "step": 3720 + }, + { + "epoch": 51.68501529051988, + "grad_norm": 0.23485958576202393, + "learning_rate": 0.0006, + "loss": 3.6212477684020996, + "step": 3721 + }, + { + "epoch": 51.69899519440804, + "grad_norm": 0.2676871120929718, + "learning_rate": 0.0006, + "loss": 3.597837448120117, + "step": 3722 + }, + { + "epoch": 51.7129750982962, + "grad_norm": 0.23661476373672485, + "learning_rate": 0.0006, + "loss": 3.616079330444336, + "step": 3723 + }, + { + "epoch": 51.72695500218436, + "grad_norm": 0.2212267816066742, + "learning_rate": 0.0006, + "loss": 3.6103296279907227, + "step": 3724 + }, + { + "epoch": 51.74093490607252, + "grad_norm": 0.22888682782649994, + "learning_rate": 0.0006, + "loss": 3.6099889278411865, + "step": 3725 + }, + { + "epoch": 51.75491480996068, + "grad_norm": 0.21740387380123138, + "learning_rate": 0.0006, + "loss": 3.5859200954437256, + "step": 3726 + }, + { + "epoch": 51.768894713848844, + "grad_norm": 0.20819106698036194, + "learning_rate": 0.0006, + "loss": 3.5875396728515625, + "step": 3727 + }, + { + "epoch": 51.782874617737, + "grad_norm": 0.21574485301971436, + "learning_rate": 0.0006, + "loss": 3.6203761100769043, + "step": 3728 + }, + { + "epoch": 51.796854521625164, + "grad_norm": 0.21275651454925537, + "learning_rate": 0.0006, + "loss": 3.6066012382507324, + "step": 3729 + }, + { + "epoch": 51.81083442551333, + "grad_norm": 0.2043808251619339, + "learning_rate": 0.0006, + "loss": 3.571417808532715, + "step": 3730 + }, + { + "epoch": 51.824814329401484, + "grad_norm": 0.2082396298646927, + "learning_rate": 0.0006, + "loss": 3.6076579093933105, + "step": 3731 + }, + { + "epoch": 51.83879423328965, + "grad_norm": 0.23331953585147858, + "learning_rate": 0.0006, + "loss": 3.621837615966797, + "step": 3732 + }, + { + "epoch": 51.8527741371778, + "grad_norm": 0.25569960474967957, + "learning_rate": 0.0006, + "loss": 3.602004051208496, + "step": 3733 + }, + { + "epoch": 51.86675404106597, + "grad_norm": 0.230540469288826, + "learning_rate": 0.0006, + "loss": 3.5829110145568848, + "step": 3734 + }, + { + "epoch": 51.88073394495413, + "grad_norm": 0.20307230949401855, + "learning_rate": 0.0006, + "loss": 3.5572190284729004, + "step": 3735 + }, + { + "epoch": 51.89471384884229, + "grad_norm": 0.20902153849601746, + "learning_rate": 0.0006, + "loss": 3.5939853191375732, + "step": 3736 + }, + { + "epoch": 51.90869375273045, + "grad_norm": 0.20433510839939117, + "learning_rate": 0.0006, + "loss": 3.6104702949523926, + "step": 3737 + }, + { + "epoch": 51.92267365661861, + "grad_norm": 0.2285638302564621, + "learning_rate": 0.0006, + "loss": 3.5588834285736084, + "step": 3738 + }, + { + "epoch": 51.93665356050677, + "grad_norm": 0.2388262301683426, + "learning_rate": 0.0006, + "loss": 3.6203103065490723, + "step": 3739 + }, + { + "epoch": 51.95063346439493, + "grad_norm": 0.22572419047355652, + "learning_rate": 0.0006, + "loss": 3.6191892623901367, + "step": 3740 + }, + { + "epoch": 51.964613368283096, + "grad_norm": 0.21060727536678314, + "learning_rate": 0.0006, + "loss": 3.620879650115967, + "step": 3741 + }, + { + "epoch": 51.97859327217125, + "grad_norm": 0.2045326828956604, + "learning_rate": 0.0006, + "loss": 3.5959091186523438, + "step": 3742 + }, + { + "epoch": 51.992573176059416, + "grad_norm": 0.21882471442222595, + "learning_rate": 0.0006, + "loss": 3.6504573822021484, + "step": 3743 + }, + { + "epoch": 52.0, + "grad_norm": 0.24379056692123413, + "learning_rate": 0.0006, + "loss": 3.6293625831604004, + "step": 3744 + }, + { + "epoch": 52.0, + "eval_loss": 3.9772427082061768, + "eval_runtime": 44.248, + "eval_samples_per_second": 55.189, + "eval_steps_per_second": 3.458, + "step": 3744 + }, + { + "epoch": 52.01397990388816, + "grad_norm": 0.19682207703590393, + "learning_rate": 0.0006, + "loss": 3.604281425476074, + "step": 3745 + }, + { + "epoch": 52.02795980777632, + "grad_norm": 0.23003028333187103, + "learning_rate": 0.0006, + "loss": 3.588266372680664, + "step": 3746 + }, + { + "epoch": 52.04193971166448, + "grad_norm": 0.2458166778087616, + "learning_rate": 0.0006, + "loss": 3.59077787399292, + "step": 3747 + }, + { + "epoch": 52.05591961555265, + "grad_norm": 0.23873521387577057, + "learning_rate": 0.0006, + "loss": 3.556537628173828, + "step": 3748 + }, + { + "epoch": 52.0698995194408, + "grad_norm": 0.21737053990364075, + "learning_rate": 0.0006, + "loss": 3.5758891105651855, + "step": 3749 + }, + { + "epoch": 52.083879423328966, + "grad_norm": 0.22239601612091064, + "learning_rate": 0.0006, + "loss": 3.552678346633911, + "step": 3750 + }, + { + "epoch": 52.09785932721712, + "grad_norm": 0.21818044781684875, + "learning_rate": 0.0006, + "loss": 3.577249526977539, + "step": 3751 + }, + { + "epoch": 52.111839231105286, + "grad_norm": 0.24513746798038483, + "learning_rate": 0.0006, + "loss": 3.569178581237793, + "step": 3752 + }, + { + "epoch": 52.12581913499345, + "grad_norm": 0.2801238000392914, + "learning_rate": 0.0006, + "loss": 3.556199073791504, + "step": 3753 + }, + { + "epoch": 52.139799038881605, + "grad_norm": 0.2722291648387909, + "learning_rate": 0.0006, + "loss": 3.5571072101593018, + "step": 3754 + }, + { + "epoch": 52.15377894276977, + "grad_norm": 0.2146541327238083, + "learning_rate": 0.0006, + "loss": 3.5831902027130127, + "step": 3755 + }, + { + "epoch": 52.16775884665793, + "grad_norm": 0.21040776371955872, + "learning_rate": 0.0006, + "loss": 3.6021504402160645, + "step": 3756 + }, + { + "epoch": 52.18173875054609, + "grad_norm": 0.24059702455997467, + "learning_rate": 0.0006, + "loss": 3.57401704788208, + "step": 3757 + }, + { + "epoch": 52.19571865443425, + "grad_norm": 0.25043657422065735, + "learning_rate": 0.0006, + "loss": 3.5776405334472656, + "step": 3758 + }, + { + "epoch": 52.20969855832241, + "grad_norm": 0.24292849004268646, + "learning_rate": 0.0006, + "loss": 3.5602574348449707, + "step": 3759 + }, + { + "epoch": 52.22367846221057, + "grad_norm": 0.2159980833530426, + "learning_rate": 0.0006, + "loss": 3.552079200744629, + "step": 3760 + }, + { + "epoch": 52.237658366098735, + "grad_norm": 0.19305892288684845, + "learning_rate": 0.0006, + "loss": 3.581195831298828, + "step": 3761 + }, + { + "epoch": 52.25163826998689, + "grad_norm": 0.2115706503391266, + "learning_rate": 0.0006, + "loss": 3.5689306259155273, + "step": 3762 + }, + { + "epoch": 52.265618173875055, + "grad_norm": 0.21885409951210022, + "learning_rate": 0.0006, + "loss": 3.5549206733703613, + "step": 3763 + }, + { + "epoch": 52.27959807776322, + "grad_norm": 0.2069413661956787, + "learning_rate": 0.0006, + "loss": 3.5743770599365234, + "step": 3764 + }, + { + "epoch": 52.293577981651374, + "grad_norm": 0.21922551095485687, + "learning_rate": 0.0006, + "loss": 3.5780110359191895, + "step": 3765 + }, + { + "epoch": 52.30755788553954, + "grad_norm": 0.21675541996955872, + "learning_rate": 0.0006, + "loss": 3.575730800628662, + "step": 3766 + }, + { + "epoch": 52.3215377894277, + "grad_norm": 0.21250510215759277, + "learning_rate": 0.0006, + "loss": 3.546060085296631, + "step": 3767 + }, + { + "epoch": 52.33551769331586, + "grad_norm": 0.23665618896484375, + "learning_rate": 0.0006, + "loss": 3.5887606143951416, + "step": 3768 + }, + { + "epoch": 52.34949759720402, + "grad_norm": 0.2525961399078369, + "learning_rate": 0.0006, + "loss": 3.5885281562805176, + "step": 3769 + }, + { + "epoch": 52.36347750109218, + "grad_norm": 0.26285895705223083, + "learning_rate": 0.0006, + "loss": 3.5880684852600098, + "step": 3770 + }, + { + "epoch": 52.37745740498034, + "grad_norm": 0.24714398384094238, + "learning_rate": 0.0006, + "loss": 3.548165798187256, + "step": 3771 + }, + { + "epoch": 52.391437308868504, + "grad_norm": 0.2234657257795334, + "learning_rate": 0.0006, + "loss": 3.56547212600708, + "step": 3772 + }, + { + "epoch": 52.40541721275666, + "grad_norm": 0.20636901259422302, + "learning_rate": 0.0006, + "loss": 3.5702133178710938, + "step": 3773 + }, + { + "epoch": 52.419397116644824, + "grad_norm": 0.20656965672969818, + "learning_rate": 0.0006, + "loss": 3.614602565765381, + "step": 3774 + }, + { + "epoch": 52.43337702053299, + "grad_norm": 0.20018167793750763, + "learning_rate": 0.0006, + "loss": 3.6063036918640137, + "step": 3775 + }, + { + "epoch": 52.44735692442114, + "grad_norm": 0.21859782934188843, + "learning_rate": 0.0006, + "loss": 3.5728869438171387, + "step": 3776 + }, + { + "epoch": 52.46133682830931, + "grad_norm": 0.21622174978256226, + "learning_rate": 0.0006, + "loss": 3.5657505989074707, + "step": 3777 + }, + { + "epoch": 52.47531673219746, + "grad_norm": 0.19779632985591888, + "learning_rate": 0.0006, + "loss": 3.5841145515441895, + "step": 3778 + }, + { + "epoch": 52.489296636085626, + "grad_norm": 0.21635952591896057, + "learning_rate": 0.0006, + "loss": 3.582096576690674, + "step": 3779 + }, + { + "epoch": 52.50327653997379, + "grad_norm": 0.21348397433757782, + "learning_rate": 0.0006, + "loss": 3.5654468536376953, + "step": 3780 + }, + { + "epoch": 52.517256443861946, + "grad_norm": 0.19572246074676514, + "learning_rate": 0.0006, + "loss": 3.5806241035461426, + "step": 3781 + }, + { + "epoch": 52.53123634775011, + "grad_norm": 0.1887553185224533, + "learning_rate": 0.0006, + "loss": 3.5752944946289062, + "step": 3782 + }, + { + "epoch": 52.54521625163827, + "grad_norm": 0.2192932814359665, + "learning_rate": 0.0006, + "loss": 3.5846266746520996, + "step": 3783 + }, + { + "epoch": 52.55919615552643, + "grad_norm": 0.23833444714546204, + "learning_rate": 0.0006, + "loss": 3.563093900680542, + "step": 3784 + }, + { + "epoch": 52.57317605941459, + "grad_norm": 0.26471760869026184, + "learning_rate": 0.0006, + "loss": 3.5582051277160645, + "step": 3785 + }, + { + "epoch": 52.58715596330275, + "grad_norm": 0.2767478823661804, + "learning_rate": 0.0006, + "loss": 3.5650997161865234, + "step": 3786 + }, + { + "epoch": 52.60113586719091, + "grad_norm": 0.26556241512298584, + "learning_rate": 0.0006, + "loss": 3.5944058895111084, + "step": 3787 + }, + { + "epoch": 52.615115771079076, + "grad_norm": 0.2733243405818939, + "learning_rate": 0.0006, + "loss": 3.5781195163726807, + "step": 3788 + }, + { + "epoch": 52.62909567496723, + "grad_norm": 0.24836041033267975, + "learning_rate": 0.0006, + "loss": 3.582634687423706, + "step": 3789 + }, + { + "epoch": 52.643075578855395, + "grad_norm": 0.2119593471288681, + "learning_rate": 0.0006, + "loss": 3.5851502418518066, + "step": 3790 + }, + { + "epoch": 52.65705548274356, + "grad_norm": 0.23237599432468414, + "learning_rate": 0.0006, + "loss": 3.5877747535705566, + "step": 3791 + }, + { + "epoch": 52.671035386631715, + "grad_norm": 0.21037372946739197, + "learning_rate": 0.0006, + "loss": 3.579045295715332, + "step": 3792 + }, + { + "epoch": 52.68501529051988, + "grad_norm": 0.19258099794387817, + "learning_rate": 0.0006, + "loss": 3.599151611328125, + "step": 3793 + }, + { + "epoch": 52.69899519440804, + "grad_norm": 0.18808242678642273, + "learning_rate": 0.0006, + "loss": 3.580679416656494, + "step": 3794 + }, + { + "epoch": 52.7129750982962, + "grad_norm": 0.18208397924900055, + "learning_rate": 0.0006, + "loss": 3.5940206050872803, + "step": 3795 + }, + { + "epoch": 52.72695500218436, + "grad_norm": 0.18173424899578094, + "learning_rate": 0.0006, + "loss": 3.5997331142425537, + "step": 3796 + }, + { + "epoch": 52.74093490607252, + "grad_norm": 0.1868390142917633, + "learning_rate": 0.0006, + "loss": 3.60007905960083, + "step": 3797 + }, + { + "epoch": 52.75491480996068, + "grad_norm": 0.1859273761510849, + "learning_rate": 0.0006, + "loss": 3.602668285369873, + "step": 3798 + }, + { + "epoch": 52.768894713848844, + "grad_norm": 0.18063156306743622, + "learning_rate": 0.0006, + "loss": 3.579869270324707, + "step": 3799 + }, + { + "epoch": 52.782874617737, + "grad_norm": 0.18920548260211945, + "learning_rate": 0.0006, + "loss": 3.6056337356567383, + "step": 3800 + }, + { + "epoch": 52.796854521625164, + "grad_norm": 0.20110033452510834, + "learning_rate": 0.0006, + "loss": 3.5694475173950195, + "step": 3801 + }, + { + "epoch": 52.81083442551333, + "grad_norm": 0.20331093668937683, + "learning_rate": 0.0006, + "loss": 3.5940358638763428, + "step": 3802 + }, + { + "epoch": 52.824814329401484, + "grad_norm": 0.2035607248544693, + "learning_rate": 0.0006, + "loss": 3.621305465698242, + "step": 3803 + }, + { + "epoch": 52.83879423328965, + "grad_norm": 0.1974431872367859, + "learning_rate": 0.0006, + "loss": 3.5959153175354004, + "step": 3804 + }, + { + "epoch": 52.8527741371778, + "grad_norm": 0.1832808405160904, + "learning_rate": 0.0006, + "loss": 3.582113265991211, + "step": 3805 + }, + { + "epoch": 52.86675404106597, + "grad_norm": 0.20269927382469177, + "learning_rate": 0.0006, + "loss": 3.5923209190368652, + "step": 3806 + }, + { + "epoch": 52.88073394495413, + "grad_norm": 0.20628313720226288, + "learning_rate": 0.0006, + "loss": 3.599729537963867, + "step": 3807 + }, + { + "epoch": 52.89471384884229, + "grad_norm": 0.2144002914428711, + "learning_rate": 0.0006, + "loss": 3.601041793823242, + "step": 3808 + }, + { + "epoch": 52.90869375273045, + "grad_norm": 0.215015709400177, + "learning_rate": 0.0006, + "loss": 3.5873360633850098, + "step": 3809 + }, + { + "epoch": 52.92267365661861, + "grad_norm": 0.23122714459896088, + "learning_rate": 0.0006, + "loss": 3.5839362144470215, + "step": 3810 + }, + { + "epoch": 52.93665356050677, + "grad_norm": 0.2381119281053543, + "learning_rate": 0.0006, + "loss": 3.564755439758301, + "step": 3811 + }, + { + "epoch": 52.95063346439493, + "grad_norm": 0.22975024580955505, + "learning_rate": 0.0006, + "loss": 3.594020128250122, + "step": 3812 + }, + { + "epoch": 52.964613368283096, + "grad_norm": 0.2419184148311615, + "learning_rate": 0.0006, + "loss": 3.5917205810546875, + "step": 3813 + }, + { + "epoch": 52.97859327217125, + "grad_norm": 0.21143122017383575, + "learning_rate": 0.0006, + "loss": 3.626842975616455, + "step": 3814 + }, + { + "epoch": 52.992573176059416, + "grad_norm": 0.195548415184021, + "learning_rate": 0.0006, + "loss": 3.5798377990722656, + "step": 3815 + }, + { + "epoch": 53.0, + "grad_norm": 0.22441816329956055, + "learning_rate": 0.0006, + "loss": 3.5652856826782227, + "step": 3816 + }, + { + "epoch": 53.0, + "eval_loss": 3.9635632038116455, + "eval_runtime": 44.772, + "eval_samples_per_second": 54.543, + "eval_steps_per_second": 3.417, + "step": 3816 + }, + { + "epoch": 53.01397990388816, + "grad_norm": 0.2547561228275299, + "learning_rate": 0.0006, + "loss": 3.562561511993408, + "step": 3817 + }, + { + "epoch": 53.02795980777632, + "grad_norm": 0.36890196800231934, + "learning_rate": 0.0006, + "loss": 3.534581184387207, + "step": 3818 + }, + { + "epoch": 53.04193971166448, + "grad_norm": 0.42631810903549194, + "learning_rate": 0.0006, + "loss": 3.5438239574432373, + "step": 3819 + }, + { + "epoch": 53.05591961555265, + "grad_norm": 0.29458126425743103, + "learning_rate": 0.0006, + "loss": 3.5594735145568848, + "step": 3820 + }, + { + "epoch": 53.0698995194408, + "grad_norm": 0.24320989847183228, + "learning_rate": 0.0006, + "loss": 3.5715155601501465, + "step": 3821 + }, + { + "epoch": 53.083879423328966, + "grad_norm": 0.3012531101703644, + "learning_rate": 0.0006, + "loss": 3.5324978828430176, + "step": 3822 + }, + { + "epoch": 53.09785932721712, + "grad_norm": 0.2789555788040161, + "learning_rate": 0.0006, + "loss": 3.5848183631896973, + "step": 3823 + }, + { + "epoch": 53.111839231105286, + "grad_norm": 0.2488897293806076, + "learning_rate": 0.0006, + "loss": 3.5853679180145264, + "step": 3824 + }, + { + "epoch": 53.12581913499345, + "grad_norm": 0.3016898036003113, + "learning_rate": 0.0006, + "loss": 3.585637092590332, + "step": 3825 + }, + { + "epoch": 53.139799038881605, + "grad_norm": 0.30293571949005127, + "learning_rate": 0.0006, + "loss": 3.5745015144348145, + "step": 3826 + }, + { + "epoch": 53.15377894276977, + "grad_norm": 0.24611566960811615, + "learning_rate": 0.0006, + "loss": 3.5761728286743164, + "step": 3827 + }, + { + "epoch": 53.16775884665793, + "grad_norm": 0.23852500319480896, + "learning_rate": 0.0006, + "loss": 3.59317946434021, + "step": 3828 + }, + { + "epoch": 53.18173875054609, + "grad_norm": 0.27882838249206543, + "learning_rate": 0.0006, + "loss": 3.589779853820801, + "step": 3829 + }, + { + "epoch": 53.19571865443425, + "grad_norm": 0.3252250552177429, + "learning_rate": 0.0006, + "loss": 3.564526081085205, + "step": 3830 + }, + { + "epoch": 53.20969855832241, + "grad_norm": 0.29635530710220337, + "learning_rate": 0.0006, + "loss": 3.5309946537017822, + "step": 3831 + }, + { + "epoch": 53.22367846221057, + "grad_norm": 0.25211700797080994, + "learning_rate": 0.0006, + "loss": 3.5795631408691406, + "step": 3832 + }, + { + "epoch": 53.237658366098735, + "grad_norm": 0.20772705972194672, + "learning_rate": 0.0006, + "loss": 3.5649163722991943, + "step": 3833 + }, + { + "epoch": 53.25163826998689, + "grad_norm": 0.2460525780916214, + "learning_rate": 0.0006, + "loss": 3.5484111309051514, + "step": 3834 + }, + { + "epoch": 53.265618173875055, + "grad_norm": 0.24652884900569916, + "learning_rate": 0.0006, + "loss": 3.5631136894226074, + "step": 3835 + }, + { + "epoch": 53.27959807776322, + "grad_norm": 0.23740890622138977, + "learning_rate": 0.0006, + "loss": 3.6234607696533203, + "step": 3836 + }, + { + "epoch": 53.293577981651374, + "grad_norm": 0.2463800311088562, + "learning_rate": 0.0006, + "loss": 3.5578083992004395, + "step": 3837 + }, + { + "epoch": 53.30755788553954, + "grad_norm": 0.23402568697929382, + "learning_rate": 0.0006, + "loss": 3.559845209121704, + "step": 3838 + }, + { + "epoch": 53.3215377894277, + "grad_norm": 0.2539580762386322, + "learning_rate": 0.0006, + "loss": 3.5863685607910156, + "step": 3839 + }, + { + "epoch": 53.33551769331586, + "grad_norm": 0.24994857609272003, + "learning_rate": 0.0006, + "loss": 3.5758700370788574, + "step": 3840 + }, + { + "epoch": 53.34949759720402, + "grad_norm": 0.21340647339820862, + "learning_rate": 0.0006, + "loss": 3.588602066040039, + "step": 3841 + }, + { + "epoch": 53.36347750109218, + "grad_norm": 0.2029065042734146, + "learning_rate": 0.0006, + "loss": 3.58594012260437, + "step": 3842 + }, + { + "epoch": 53.37745740498034, + "grad_norm": 0.20266403257846832, + "learning_rate": 0.0006, + "loss": 3.5906057357788086, + "step": 3843 + }, + { + "epoch": 53.391437308868504, + "grad_norm": 0.19940714538097382, + "learning_rate": 0.0006, + "loss": 3.5458335876464844, + "step": 3844 + }, + { + "epoch": 53.40541721275666, + "grad_norm": 0.21295064687728882, + "learning_rate": 0.0006, + "loss": 3.5589025020599365, + "step": 3845 + }, + { + "epoch": 53.419397116644824, + "grad_norm": 0.2150672823190689, + "learning_rate": 0.0006, + "loss": 3.5907669067382812, + "step": 3846 + }, + { + "epoch": 53.43337702053299, + "grad_norm": 0.21469077467918396, + "learning_rate": 0.0006, + "loss": 3.5403499603271484, + "step": 3847 + }, + { + "epoch": 53.44735692442114, + "grad_norm": 0.20485323667526245, + "learning_rate": 0.0006, + "loss": 3.5634326934814453, + "step": 3848 + }, + { + "epoch": 53.46133682830931, + "grad_norm": 0.1981327086687088, + "learning_rate": 0.0006, + "loss": 3.579385280609131, + "step": 3849 + }, + { + "epoch": 53.47531673219746, + "grad_norm": 0.1898331642150879, + "learning_rate": 0.0006, + "loss": 3.5824122428894043, + "step": 3850 + }, + { + "epoch": 53.489296636085626, + "grad_norm": 0.18228355050086975, + "learning_rate": 0.0006, + "loss": 3.533255100250244, + "step": 3851 + }, + { + "epoch": 53.50327653997379, + "grad_norm": 0.1803922951221466, + "learning_rate": 0.0006, + "loss": 3.589881420135498, + "step": 3852 + }, + { + "epoch": 53.517256443861946, + "grad_norm": 0.19590361416339874, + "learning_rate": 0.0006, + "loss": 3.599487066268921, + "step": 3853 + }, + { + "epoch": 53.53123634775011, + "grad_norm": 0.1935775727033615, + "learning_rate": 0.0006, + "loss": 3.5769765377044678, + "step": 3854 + }, + { + "epoch": 53.54521625163827, + "grad_norm": 0.1790810525417328, + "learning_rate": 0.0006, + "loss": 3.594104290008545, + "step": 3855 + }, + { + "epoch": 53.55919615552643, + "grad_norm": 0.17993320524692535, + "learning_rate": 0.0006, + "loss": 3.555650234222412, + "step": 3856 + }, + { + "epoch": 53.57317605941459, + "grad_norm": 0.19114883244037628, + "learning_rate": 0.0006, + "loss": 3.599574089050293, + "step": 3857 + }, + { + "epoch": 53.58715596330275, + "grad_norm": 0.18493886291980743, + "learning_rate": 0.0006, + "loss": 3.555177927017212, + "step": 3858 + }, + { + "epoch": 53.60113586719091, + "grad_norm": 0.19346027076244354, + "learning_rate": 0.0006, + "loss": 3.601219654083252, + "step": 3859 + }, + { + "epoch": 53.615115771079076, + "grad_norm": 0.2002234011888504, + "learning_rate": 0.0006, + "loss": 3.5614418983459473, + "step": 3860 + }, + { + "epoch": 53.62909567496723, + "grad_norm": 0.17705366015434265, + "learning_rate": 0.0006, + "loss": 3.587432384490967, + "step": 3861 + }, + { + "epoch": 53.643075578855395, + "grad_norm": 0.19825726747512817, + "learning_rate": 0.0006, + "loss": 3.570539951324463, + "step": 3862 + }, + { + "epoch": 53.65705548274356, + "grad_norm": 0.2038952112197876, + "learning_rate": 0.0006, + "loss": 3.575758934020996, + "step": 3863 + }, + { + "epoch": 53.671035386631715, + "grad_norm": 0.21109119057655334, + "learning_rate": 0.0006, + "loss": 3.6013951301574707, + "step": 3864 + }, + { + "epoch": 53.68501529051988, + "grad_norm": 0.21738514304161072, + "learning_rate": 0.0006, + "loss": 3.567424774169922, + "step": 3865 + }, + { + "epoch": 53.69899519440804, + "grad_norm": 0.214813694357872, + "learning_rate": 0.0006, + "loss": 3.599733352661133, + "step": 3866 + }, + { + "epoch": 53.7129750982962, + "grad_norm": 0.20838409662246704, + "learning_rate": 0.0006, + "loss": 3.595839738845825, + "step": 3867 + }, + { + "epoch": 53.72695500218436, + "grad_norm": 0.2088911384344101, + "learning_rate": 0.0006, + "loss": 3.6030569076538086, + "step": 3868 + }, + { + "epoch": 53.74093490607252, + "grad_norm": 0.22705569863319397, + "learning_rate": 0.0006, + "loss": 3.5876665115356445, + "step": 3869 + }, + { + "epoch": 53.75491480996068, + "grad_norm": 0.22327932715415955, + "learning_rate": 0.0006, + "loss": 3.5555529594421387, + "step": 3870 + }, + { + "epoch": 53.768894713848844, + "grad_norm": 0.2092375010251999, + "learning_rate": 0.0006, + "loss": 3.599871873855591, + "step": 3871 + }, + { + "epoch": 53.782874617737, + "grad_norm": 0.20672307908535004, + "learning_rate": 0.0006, + "loss": 3.598846435546875, + "step": 3872 + }, + { + "epoch": 53.796854521625164, + "grad_norm": 0.2090507596731186, + "learning_rate": 0.0006, + "loss": 3.564012050628662, + "step": 3873 + }, + { + "epoch": 53.81083442551333, + "grad_norm": 0.2044386863708496, + "learning_rate": 0.0006, + "loss": 3.585221529006958, + "step": 3874 + }, + { + "epoch": 53.824814329401484, + "grad_norm": 0.2065548598766327, + "learning_rate": 0.0006, + "loss": 3.595351457595825, + "step": 3875 + }, + { + "epoch": 53.83879423328965, + "grad_norm": 0.22895927727222443, + "learning_rate": 0.0006, + "loss": 3.5720505714416504, + "step": 3876 + }, + { + "epoch": 53.8527741371778, + "grad_norm": 0.22099260985851288, + "learning_rate": 0.0006, + "loss": 3.572587251663208, + "step": 3877 + }, + { + "epoch": 53.86675404106597, + "grad_norm": 0.19928759336471558, + "learning_rate": 0.0006, + "loss": 3.5641839504241943, + "step": 3878 + }, + { + "epoch": 53.88073394495413, + "grad_norm": 0.2735077440738678, + "learning_rate": 0.0006, + "loss": 3.575535774230957, + "step": 3879 + }, + { + "epoch": 53.89471384884229, + "grad_norm": 0.2642554044723511, + "learning_rate": 0.0006, + "loss": 3.5993123054504395, + "step": 3880 + }, + { + "epoch": 53.90869375273045, + "grad_norm": 0.22406205534934998, + "learning_rate": 0.0006, + "loss": 3.5968177318573, + "step": 3881 + }, + { + "epoch": 53.92267365661861, + "grad_norm": 0.22148431837558746, + "learning_rate": 0.0006, + "loss": 3.5668797492980957, + "step": 3882 + }, + { + "epoch": 53.93665356050677, + "grad_norm": 0.20805056393146515, + "learning_rate": 0.0006, + "loss": 3.60849666595459, + "step": 3883 + }, + { + "epoch": 53.95063346439493, + "grad_norm": 0.18656247854232788, + "learning_rate": 0.0006, + "loss": 3.5883405208587646, + "step": 3884 + }, + { + "epoch": 53.964613368283096, + "grad_norm": 0.19937767088413239, + "learning_rate": 0.0006, + "loss": 3.5897698402404785, + "step": 3885 + }, + { + "epoch": 53.97859327217125, + "grad_norm": 0.19680732488632202, + "learning_rate": 0.0006, + "loss": 3.568530559539795, + "step": 3886 + }, + { + "epoch": 53.992573176059416, + "grad_norm": 0.218981072306633, + "learning_rate": 0.0006, + "loss": 3.6194474697113037, + "step": 3887 + }, + { + "epoch": 54.0, + "grad_norm": 0.26408281922340393, + "learning_rate": 0.0006, + "loss": 3.5224976539611816, + "step": 3888 + }, + { + "epoch": 54.0, + "eval_loss": 3.983997106552124, + "eval_runtime": 44.9507, + "eval_samples_per_second": 54.326, + "eval_steps_per_second": 3.404, + "step": 3888 + }, + { + "epoch": 54.01397990388816, + "grad_norm": 0.2230917066335678, + "learning_rate": 0.0006, + "loss": 3.578058958053589, + "step": 3889 + }, + { + "epoch": 54.02795980777632, + "grad_norm": 0.23055201768875122, + "learning_rate": 0.0006, + "loss": 3.549612283706665, + "step": 3890 + }, + { + "epoch": 54.04193971166448, + "grad_norm": 0.23317518830299377, + "learning_rate": 0.0006, + "loss": 3.5662591457366943, + "step": 3891 + }, + { + "epoch": 54.05591961555265, + "grad_norm": 0.27022141218185425, + "learning_rate": 0.0006, + "loss": 3.547062873840332, + "step": 3892 + }, + { + "epoch": 54.0698995194408, + "grad_norm": 0.2665329873561859, + "learning_rate": 0.0006, + "loss": 3.540881633758545, + "step": 3893 + }, + { + "epoch": 54.083879423328966, + "grad_norm": 0.23968365788459778, + "learning_rate": 0.0006, + "loss": 3.574781894683838, + "step": 3894 + }, + { + "epoch": 54.09785932721712, + "grad_norm": 0.22174887359142303, + "learning_rate": 0.0006, + "loss": 3.514077663421631, + "step": 3895 + }, + { + "epoch": 54.111839231105286, + "grad_norm": 0.24605485796928406, + "learning_rate": 0.0006, + "loss": 3.534174919128418, + "step": 3896 + }, + { + "epoch": 54.12581913499345, + "grad_norm": 0.22874566912651062, + "learning_rate": 0.0006, + "loss": 3.574282169342041, + "step": 3897 + }, + { + "epoch": 54.139799038881605, + "grad_norm": 0.2113833874464035, + "learning_rate": 0.0006, + "loss": 3.548687696456909, + "step": 3898 + }, + { + "epoch": 54.15377894276977, + "grad_norm": 0.20756855607032776, + "learning_rate": 0.0006, + "loss": 3.556060791015625, + "step": 3899 + }, + { + "epoch": 54.16775884665793, + "grad_norm": 0.2070261538028717, + "learning_rate": 0.0006, + "loss": 3.5585689544677734, + "step": 3900 + }, + { + "epoch": 54.18173875054609, + "grad_norm": 0.20014794170856476, + "learning_rate": 0.0006, + "loss": 3.5898427963256836, + "step": 3901 + }, + { + "epoch": 54.19571865443425, + "grad_norm": 0.19851888716220856, + "learning_rate": 0.0006, + "loss": 3.564826011657715, + "step": 3902 + }, + { + "epoch": 54.20969855832241, + "grad_norm": 0.20333127677440643, + "learning_rate": 0.0006, + "loss": 3.540660858154297, + "step": 3903 + }, + { + "epoch": 54.22367846221057, + "grad_norm": 0.20291075110435486, + "learning_rate": 0.0006, + "loss": 3.544628143310547, + "step": 3904 + }, + { + "epoch": 54.237658366098735, + "grad_norm": 0.2055949866771698, + "learning_rate": 0.0006, + "loss": 3.547478675842285, + "step": 3905 + }, + { + "epoch": 54.25163826998689, + "grad_norm": 0.20305688679218292, + "learning_rate": 0.0006, + "loss": 3.5793099403381348, + "step": 3906 + }, + { + "epoch": 54.265618173875055, + "grad_norm": 0.21053043007850647, + "learning_rate": 0.0006, + "loss": 3.529263973236084, + "step": 3907 + }, + { + "epoch": 54.27959807776322, + "grad_norm": 0.2461051046848297, + "learning_rate": 0.0006, + "loss": 3.598266124725342, + "step": 3908 + }, + { + "epoch": 54.293577981651374, + "grad_norm": 0.25074276328086853, + "learning_rate": 0.0006, + "loss": 3.557170867919922, + "step": 3909 + }, + { + "epoch": 54.30755788553954, + "grad_norm": 0.23321498930454254, + "learning_rate": 0.0006, + "loss": 3.5532279014587402, + "step": 3910 + }, + { + "epoch": 54.3215377894277, + "grad_norm": 0.19062374532222748, + "learning_rate": 0.0006, + "loss": 3.5718722343444824, + "step": 3911 + }, + { + "epoch": 54.33551769331586, + "grad_norm": 0.22571852803230286, + "learning_rate": 0.0006, + "loss": 3.539036750793457, + "step": 3912 + }, + { + "epoch": 54.34949759720402, + "grad_norm": 0.23314784467220306, + "learning_rate": 0.0006, + "loss": 3.5444631576538086, + "step": 3913 + }, + { + "epoch": 54.36347750109218, + "grad_norm": 0.22334037721157074, + "learning_rate": 0.0006, + "loss": 3.5567970275878906, + "step": 3914 + }, + { + "epoch": 54.37745740498034, + "grad_norm": 0.21900276839733124, + "learning_rate": 0.0006, + "loss": 3.600113868713379, + "step": 3915 + }, + { + "epoch": 54.391437308868504, + "grad_norm": 0.20166733860969543, + "learning_rate": 0.0006, + "loss": 3.54038667678833, + "step": 3916 + }, + { + "epoch": 54.40541721275666, + "grad_norm": 0.21886761486530304, + "learning_rate": 0.0006, + "loss": 3.5708651542663574, + "step": 3917 + }, + { + "epoch": 54.419397116644824, + "grad_norm": 0.26383060216903687, + "learning_rate": 0.0006, + "loss": 3.5572509765625, + "step": 3918 + }, + { + "epoch": 54.43337702053299, + "grad_norm": 0.26116663217544556, + "learning_rate": 0.0006, + "loss": 3.528968334197998, + "step": 3919 + }, + { + "epoch": 54.44735692442114, + "grad_norm": 0.20640771090984344, + "learning_rate": 0.0006, + "loss": 3.587789535522461, + "step": 3920 + }, + { + "epoch": 54.46133682830931, + "grad_norm": 0.23454350233078003, + "learning_rate": 0.0006, + "loss": 3.586834192276001, + "step": 3921 + }, + { + "epoch": 54.47531673219746, + "grad_norm": 0.24828442931175232, + "learning_rate": 0.0006, + "loss": 3.5884881019592285, + "step": 3922 + }, + { + "epoch": 54.489296636085626, + "grad_norm": 0.23654282093048096, + "learning_rate": 0.0006, + "loss": 3.5754570960998535, + "step": 3923 + }, + { + "epoch": 54.50327653997379, + "grad_norm": 0.22721099853515625, + "learning_rate": 0.0006, + "loss": 3.5575859546661377, + "step": 3924 + }, + { + "epoch": 54.517256443861946, + "grad_norm": 0.2157498002052307, + "learning_rate": 0.0006, + "loss": 3.5929436683654785, + "step": 3925 + }, + { + "epoch": 54.53123634775011, + "grad_norm": 0.21604257822036743, + "learning_rate": 0.0006, + "loss": 3.5788726806640625, + "step": 3926 + }, + { + "epoch": 54.54521625163827, + "grad_norm": 0.22310106456279755, + "learning_rate": 0.0006, + "loss": 3.5873899459838867, + "step": 3927 + }, + { + "epoch": 54.55919615552643, + "grad_norm": 0.2121969312429428, + "learning_rate": 0.0006, + "loss": 3.575186252593994, + "step": 3928 + }, + { + "epoch": 54.57317605941459, + "grad_norm": 0.19073615968227386, + "learning_rate": 0.0006, + "loss": 3.5963356494903564, + "step": 3929 + }, + { + "epoch": 54.58715596330275, + "grad_norm": 0.18745607137680054, + "learning_rate": 0.0006, + "loss": 3.593679428100586, + "step": 3930 + }, + { + "epoch": 54.60113586719091, + "grad_norm": 0.19518259167671204, + "learning_rate": 0.0006, + "loss": 3.5730791091918945, + "step": 3931 + }, + { + "epoch": 54.615115771079076, + "grad_norm": 0.20948481559753418, + "learning_rate": 0.0006, + "loss": 3.5646820068359375, + "step": 3932 + }, + { + "epoch": 54.62909567496723, + "grad_norm": 0.1929631531238556, + "learning_rate": 0.0006, + "loss": 3.5550060272216797, + "step": 3933 + }, + { + "epoch": 54.643075578855395, + "grad_norm": 0.2104327380657196, + "learning_rate": 0.0006, + "loss": 3.5774357318878174, + "step": 3934 + }, + { + "epoch": 54.65705548274356, + "grad_norm": 0.1952148675918579, + "learning_rate": 0.0006, + "loss": 3.58856201171875, + "step": 3935 + }, + { + "epoch": 54.671035386631715, + "grad_norm": 0.17762340605258942, + "learning_rate": 0.0006, + "loss": 3.5324528217315674, + "step": 3936 + }, + { + "epoch": 54.68501529051988, + "grad_norm": 0.18349695205688477, + "learning_rate": 0.0006, + "loss": 3.5663890838623047, + "step": 3937 + }, + { + "epoch": 54.69899519440804, + "grad_norm": 0.2038232684135437, + "learning_rate": 0.0006, + "loss": 3.5811679363250732, + "step": 3938 + }, + { + "epoch": 54.7129750982962, + "grad_norm": 0.2431754469871521, + "learning_rate": 0.0006, + "loss": 3.56833553314209, + "step": 3939 + }, + { + "epoch": 54.72695500218436, + "grad_norm": 0.27498456835746765, + "learning_rate": 0.0006, + "loss": 3.5977981090545654, + "step": 3940 + }, + { + "epoch": 54.74093490607252, + "grad_norm": 0.20809921622276306, + "learning_rate": 0.0006, + "loss": 3.57193922996521, + "step": 3941 + }, + { + "epoch": 54.75491480996068, + "grad_norm": 0.18073450028896332, + "learning_rate": 0.0006, + "loss": 3.5610151290893555, + "step": 3942 + }, + { + "epoch": 54.768894713848844, + "grad_norm": 0.194604754447937, + "learning_rate": 0.0006, + "loss": 3.5716047286987305, + "step": 3943 + }, + { + "epoch": 54.782874617737, + "grad_norm": 0.20566268265247345, + "learning_rate": 0.0006, + "loss": 3.578401565551758, + "step": 3944 + }, + { + "epoch": 54.796854521625164, + "grad_norm": 0.21028153598308563, + "learning_rate": 0.0006, + "loss": 3.610511064529419, + "step": 3945 + }, + { + "epoch": 54.81083442551333, + "grad_norm": 0.21413563191890717, + "learning_rate": 0.0006, + "loss": 3.601574659347534, + "step": 3946 + }, + { + "epoch": 54.824814329401484, + "grad_norm": 0.2137378603219986, + "learning_rate": 0.0006, + "loss": 3.603997230529785, + "step": 3947 + }, + { + "epoch": 54.83879423328965, + "grad_norm": 0.2162058800458908, + "learning_rate": 0.0006, + "loss": 3.5829391479492188, + "step": 3948 + }, + { + "epoch": 54.8527741371778, + "grad_norm": 0.21700997650623322, + "learning_rate": 0.0006, + "loss": 3.595317840576172, + "step": 3949 + }, + { + "epoch": 54.86675404106597, + "grad_norm": 0.20864669978618622, + "learning_rate": 0.0006, + "loss": 3.601891040802002, + "step": 3950 + }, + { + "epoch": 54.88073394495413, + "grad_norm": 0.19780485332012177, + "learning_rate": 0.0006, + "loss": 3.567460775375366, + "step": 3951 + }, + { + "epoch": 54.89471384884229, + "grad_norm": 0.2017168402671814, + "learning_rate": 0.0006, + "loss": 3.5737192630767822, + "step": 3952 + }, + { + "epoch": 54.90869375273045, + "grad_norm": 0.22847825288772583, + "learning_rate": 0.0006, + "loss": 3.60937762260437, + "step": 3953 + }, + { + "epoch": 54.92267365661861, + "grad_norm": 0.23698270320892334, + "learning_rate": 0.0006, + "loss": 3.6013574600219727, + "step": 3954 + }, + { + "epoch": 54.93665356050677, + "grad_norm": 0.238611102104187, + "learning_rate": 0.0006, + "loss": 3.5689988136291504, + "step": 3955 + }, + { + "epoch": 54.95063346439493, + "grad_norm": 0.2680057883262634, + "learning_rate": 0.0006, + "loss": 3.5650172233581543, + "step": 3956 + }, + { + "epoch": 54.964613368283096, + "grad_norm": 0.25712481141090393, + "learning_rate": 0.0006, + "loss": 3.576777935028076, + "step": 3957 + }, + { + "epoch": 54.97859327217125, + "grad_norm": 0.2232409566640854, + "learning_rate": 0.0006, + "loss": 3.583169937133789, + "step": 3958 + }, + { + "epoch": 54.992573176059416, + "grad_norm": 0.21233153343200684, + "learning_rate": 0.0006, + "loss": 3.602219581604004, + "step": 3959 + }, + { + "epoch": 55.0, + "grad_norm": 0.24345774948596954, + "learning_rate": 0.0006, + "loss": 3.5118026733398438, + "step": 3960 + }, + { + "epoch": 55.0, + "eval_loss": 3.9819064140319824, + "eval_runtime": 44.6627, + "eval_samples_per_second": 54.677, + "eval_steps_per_second": 3.426, + "step": 3960 + }, + { + "epoch": 55.01397990388816, + "grad_norm": 0.229562908411026, + "learning_rate": 0.0006, + "loss": 3.5591073036193848, + "step": 3961 + }, + { + "epoch": 55.02795980777632, + "grad_norm": 0.21731624007225037, + "learning_rate": 0.0006, + "loss": 3.5544848442077637, + "step": 3962 + }, + { + "epoch": 55.04193971166448, + "grad_norm": 0.23528429865837097, + "learning_rate": 0.0006, + "loss": 3.5654311180114746, + "step": 3963 + }, + { + "epoch": 55.05591961555265, + "grad_norm": 0.23147839307785034, + "learning_rate": 0.0006, + "loss": 3.537006378173828, + "step": 3964 + }, + { + "epoch": 55.0698995194408, + "grad_norm": 0.22218112647533417, + "learning_rate": 0.0006, + "loss": 3.5218982696533203, + "step": 3965 + }, + { + "epoch": 55.083879423328966, + "grad_norm": 0.20697443187236786, + "learning_rate": 0.0006, + "loss": 3.5623579025268555, + "step": 3966 + }, + { + "epoch": 55.09785932721712, + "grad_norm": 0.2108476608991623, + "learning_rate": 0.0006, + "loss": 3.528214454650879, + "step": 3967 + }, + { + "epoch": 55.111839231105286, + "grad_norm": 0.21664242446422577, + "learning_rate": 0.0006, + "loss": 3.5429646968841553, + "step": 3968 + }, + { + "epoch": 55.12581913499345, + "grad_norm": 0.21359260380268097, + "learning_rate": 0.0006, + "loss": 3.5873513221740723, + "step": 3969 + }, + { + "epoch": 55.139799038881605, + "grad_norm": 0.23289452493190765, + "learning_rate": 0.0006, + "loss": 3.5551905632019043, + "step": 3970 + }, + { + "epoch": 55.15377894276977, + "grad_norm": 0.25835689902305603, + "learning_rate": 0.0006, + "loss": 3.5380427837371826, + "step": 3971 + }, + { + "epoch": 55.16775884665793, + "grad_norm": 0.25449255108833313, + "learning_rate": 0.0006, + "loss": 3.5276808738708496, + "step": 3972 + }, + { + "epoch": 55.18173875054609, + "grad_norm": 0.2472638338804245, + "learning_rate": 0.0006, + "loss": 3.539194107055664, + "step": 3973 + }, + { + "epoch": 55.19571865443425, + "grad_norm": 0.21743768453598022, + "learning_rate": 0.0006, + "loss": 3.557185173034668, + "step": 3974 + }, + { + "epoch": 55.20969855832241, + "grad_norm": 0.22787386178970337, + "learning_rate": 0.0006, + "loss": 3.581993579864502, + "step": 3975 + }, + { + "epoch": 55.22367846221057, + "grad_norm": 0.2332824170589447, + "learning_rate": 0.0006, + "loss": 3.5439846515655518, + "step": 3976 + }, + { + "epoch": 55.237658366098735, + "grad_norm": 0.2054908573627472, + "learning_rate": 0.0006, + "loss": 3.5528793334960938, + "step": 3977 + }, + { + "epoch": 55.25163826998689, + "grad_norm": 0.2087554633617401, + "learning_rate": 0.0006, + "loss": 3.536464214324951, + "step": 3978 + }, + { + "epoch": 55.265618173875055, + "grad_norm": 0.22214409708976746, + "learning_rate": 0.0006, + "loss": 3.56184458732605, + "step": 3979 + }, + { + "epoch": 55.27959807776322, + "grad_norm": 0.23214097321033478, + "learning_rate": 0.0006, + "loss": 3.5560522079467773, + "step": 3980 + }, + { + "epoch": 55.293577981651374, + "grad_norm": 0.23317331075668335, + "learning_rate": 0.0006, + "loss": 3.5433850288391113, + "step": 3981 + }, + { + "epoch": 55.30755788553954, + "grad_norm": 0.2303774058818817, + "learning_rate": 0.0006, + "loss": 3.5505576133728027, + "step": 3982 + }, + { + "epoch": 55.3215377894277, + "grad_norm": 0.2400730401277542, + "learning_rate": 0.0006, + "loss": 3.557952404022217, + "step": 3983 + }, + { + "epoch": 55.33551769331586, + "grad_norm": 0.23933538794517517, + "learning_rate": 0.0006, + "loss": 3.536656141281128, + "step": 3984 + }, + { + "epoch": 55.34949759720402, + "grad_norm": 0.23796266317367554, + "learning_rate": 0.0006, + "loss": 3.5777554512023926, + "step": 3985 + }, + { + "epoch": 55.36347750109218, + "grad_norm": 0.26078858971595764, + "learning_rate": 0.0006, + "loss": 3.549121379852295, + "step": 3986 + }, + { + "epoch": 55.37745740498034, + "grad_norm": 0.22726459801197052, + "learning_rate": 0.0006, + "loss": 3.605684518814087, + "step": 3987 + }, + { + "epoch": 55.391437308868504, + "grad_norm": 0.19872179627418518, + "learning_rate": 0.0006, + "loss": 3.5501739978790283, + "step": 3988 + }, + { + "epoch": 55.40541721275666, + "grad_norm": 0.2027827352285385, + "learning_rate": 0.0006, + "loss": 3.625922441482544, + "step": 3989 + }, + { + "epoch": 55.419397116644824, + "grad_norm": 0.24207144975662231, + "learning_rate": 0.0006, + "loss": 3.595451831817627, + "step": 3990 + }, + { + "epoch": 55.43337702053299, + "grad_norm": 0.23449009656906128, + "learning_rate": 0.0006, + "loss": 3.577167510986328, + "step": 3991 + }, + { + "epoch": 55.44735692442114, + "grad_norm": 0.22529540956020355, + "learning_rate": 0.0006, + "loss": 3.5585317611694336, + "step": 3992 + }, + { + "epoch": 55.46133682830931, + "grad_norm": 0.2354331612586975, + "learning_rate": 0.0006, + "loss": 3.574819564819336, + "step": 3993 + }, + { + "epoch": 55.47531673219746, + "grad_norm": 0.2251061201095581, + "learning_rate": 0.0006, + "loss": 3.580498695373535, + "step": 3994 + }, + { + "epoch": 55.489296636085626, + "grad_norm": 0.22107349336147308, + "learning_rate": 0.0006, + "loss": 3.578591823577881, + "step": 3995 + }, + { + "epoch": 55.50327653997379, + "grad_norm": 0.24686408042907715, + "learning_rate": 0.0006, + "loss": 3.541625499725342, + "step": 3996 + }, + { + "epoch": 55.517256443861946, + "grad_norm": 0.23731260001659393, + "learning_rate": 0.0006, + "loss": 3.5508079528808594, + "step": 3997 + }, + { + "epoch": 55.53123634775011, + "grad_norm": 0.21246901154518127, + "learning_rate": 0.0006, + "loss": 3.569500207901001, + "step": 3998 + }, + { + "epoch": 55.54521625163827, + "grad_norm": 0.21369415521621704, + "learning_rate": 0.0006, + "loss": 3.546938896179199, + "step": 3999 + }, + { + "epoch": 55.55919615552643, + "grad_norm": 0.2102644443511963, + "learning_rate": 0.0006, + "loss": 3.5842084884643555, + "step": 4000 + }, + { + "epoch": 55.57317605941459, + "grad_norm": 0.2355998456478119, + "learning_rate": 0.0006, + "loss": 3.5493381023406982, + "step": 4001 + }, + { + "epoch": 55.58715596330275, + "grad_norm": 0.2670288681983948, + "learning_rate": 0.0006, + "loss": 3.5909032821655273, + "step": 4002 + }, + { + "epoch": 55.60113586719091, + "grad_norm": 0.2958407998085022, + "learning_rate": 0.0006, + "loss": 3.624906063079834, + "step": 4003 + }, + { + "epoch": 55.615115771079076, + "grad_norm": 0.2948441505432129, + "learning_rate": 0.0006, + "loss": 3.553528070449829, + "step": 4004 + }, + { + "epoch": 55.62909567496723, + "grad_norm": 0.24873173236846924, + "learning_rate": 0.0006, + "loss": 3.5851495265960693, + "step": 4005 + }, + { + "epoch": 55.643075578855395, + "grad_norm": 0.22191756963729858, + "learning_rate": 0.0006, + "loss": 3.556459903717041, + "step": 4006 + }, + { + "epoch": 55.65705548274356, + "grad_norm": 0.22677776217460632, + "learning_rate": 0.0006, + "loss": 3.579428195953369, + "step": 4007 + }, + { + "epoch": 55.671035386631715, + "grad_norm": 0.22263763844966888, + "learning_rate": 0.0006, + "loss": 3.5878806114196777, + "step": 4008 + }, + { + "epoch": 55.68501529051988, + "grad_norm": 0.24498602747917175, + "learning_rate": 0.0006, + "loss": 3.5989317893981934, + "step": 4009 + }, + { + "epoch": 55.69899519440804, + "grad_norm": 0.26294007897377014, + "learning_rate": 0.0006, + "loss": 3.5866756439208984, + "step": 4010 + }, + { + "epoch": 55.7129750982962, + "grad_norm": 0.22105370461940765, + "learning_rate": 0.0006, + "loss": 3.594365119934082, + "step": 4011 + }, + { + "epoch": 55.72695500218436, + "grad_norm": 0.20973286032676697, + "learning_rate": 0.0006, + "loss": 3.551156997680664, + "step": 4012 + }, + { + "epoch": 55.74093490607252, + "grad_norm": 0.2123304158449173, + "learning_rate": 0.0006, + "loss": 3.587405204772949, + "step": 4013 + }, + { + "epoch": 55.75491480996068, + "grad_norm": 0.22134795784950256, + "learning_rate": 0.0006, + "loss": 3.59114146232605, + "step": 4014 + }, + { + "epoch": 55.768894713848844, + "grad_norm": 0.20822957158088684, + "learning_rate": 0.0006, + "loss": 3.5910749435424805, + "step": 4015 + }, + { + "epoch": 55.782874617737, + "grad_norm": 0.22392229735851288, + "learning_rate": 0.0006, + "loss": 3.5800669193267822, + "step": 4016 + }, + { + "epoch": 55.796854521625164, + "grad_norm": 0.2214914709329605, + "learning_rate": 0.0006, + "loss": 3.5553741455078125, + "step": 4017 + }, + { + "epoch": 55.81083442551333, + "grad_norm": 0.1993025690317154, + "learning_rate": 0.0006, + "loss": 3.567298412322998, + "step": 4018 + }, + { + "epoch": 55.824814329401484, + "grad_norm": 0.21043774485588074, + "learning_rate": 0.0006, + "loss": 3.537358045578003, + "step": 4019 + }, + { + "epoch": 55.83879423328965, + "grad_norm": 0.18501818180084229, + "learning_rate": 0.0006, + "loss": 3.5971930027008057, + "step": 4020 + }, + { + "epoch": 55.8527741371778, + "grad_norm": 0.19626867771148682, + "learning_rate": 0.0006, + "loss": 3.563570976257324, + "step": 4021 + }, + { + "epoch": 55.86675404106597, + "grad_norm": 0.19328820705413818, + "learning_rate": 0.0006, + "loss": 3.600377082824707, + "step": 4022 + }, + { + "epoch": 55.88073394495413, + "grad_norm": 0.2013237327337265, + "learning_rate": 0.0006, + "loss": 3.5916812419891357, + "step": 4023 + }, + { + "epoch": 55.89471384884229, + "grad_norm": 0.22775673866271973, + "learning_rate": 0.0006, + "loss": 3.5572638511657715, + "step": 4024 + }, + { + "epoch": 55.90869375273045, + "grad_norm": 0.2452211230993271, + "learning_rate": 0.0006, + "loss": 3.54378080368042, + "step": 4025 + }, + { + "epoch": 55.92267365661861, + "grad_norm": 0.23337189853191376, + "learning_rate": 0.0006, + "loss": 3.5853466987609863, + "step": 4026 + }, + { + "epoch": 55.93665356050677, + "grad_norm": 0.20073719322681427, + "learning_rate": 0.0006, + "loss": 3.5793843269348145, + "step": 4027 + }, + { + "epoch": 55.95063346439493, + "grad_norm": 0.1963811218738556, + "learning_rate": 0.0006, + "loss": 3.5783073902130127, + "step": 4028 + }, + { + "epoch": 55.964613368283096, + "grad_norm": 0.19921033084392548, + "learning_rate": 0.0006, + "loss": 3.5455331802368164, + "step": 4029 + }, + { + "epoch": 55.97859327217125, + "grad_norm": 0.22151921689510345, + "learning_rate": 0.0006, + "loss": 3.551476001739502, + "step": 4030 + }, + { + "epoch": 55.992573176059416, + "grad_norm": 0.2636640965938568, + "learning_rate": 0.0006, + "loss": 3.5859174728393555, + "step": 4031 + }, + { + "epoch": 56.0, + "grad_norm": 0.282680869102478, + "learning_rate": 0.0006, + "loss": 3.5818469524383545, + "step": 4032 + }, + { + "epoch": 56.0, + "eval_loss": 3.982189178466797, + "eval_runtime": 44.2577, + "eval_samples_per_second": 55.177, + "eval_steps_per_second": 3.457, + "step": 4032 + }, + { + "epoch": 56.01397990388816, + "grad_norm": 0.23316597938537598, + "learning_rate": 0.0006, + "loss": 3.5500292778015137, + "step": 4033 + }, + { + "epoch": 56.02795980777632, + "grad_norm": 0.22836777567863464, + "learning_rate": 0.0006, + "loss": 3.5661063194274902, + "step": 4034 + }, + { + "epoch": 56.04193971166448, + "grad_norm": 0.2607800364494324, + "learning_rate": 0.0006, + "loss": 3.5496177673339844, + "step": 4035 + }, + { + "epoch": 56.05591961555265, + "grad_norm": 0.2620518207550049, + "learning_rate": 0.0006, + "loss": 3.562621831893921, + "step": 4036 + }, + { + "epoch": 56.0698995194408, + "grad_norm": 0.2344953864812851, + "learning_rate": 0.0006, + "loss": 3.5371389389038086, + "step": 4037 + }, + { + "epoch": 56.083879423328966, + "grad_norm": 0.2523435950279236, + "learning_rate": 0.0006, + "loss": 3.565216541290283, + "step": 4038 + }, + { + "epoch": 56.09785932721712, + "grad_norm": 0.26315048336982727, + "learning_rate": 0.0006, + "loss": 3.5510857105255127, + "step": 4039 + }, + { + "epoch": 56.111839231105286, + "grad_norm": 0.256817102432251, + "learning_rate": 0.0006, + "loss": 3.576132297515869, + "step": 4040 + }, + { + "epoch": 56.12581913499345, + "grad_norm": 0.25146403908729553, + "learning_rate": 0.0006, + "loss": 3.550875663757324, + "step": 4041 + }, + { + "epoch": 56.139799038881605, + "grad_norm": 0.2471698820590973, + "learning_rate": 0.0006, + "loss": 3.5574288368225098, + "step": 4042 + }, + { + "epoch": 56.15377894276977, + "grad_norm": 0.2324669510126114, + "learning_rate": 0.0006, + "loss": 3.524637222290039, + "step": 4043 + }, + { + "epoch": 56.16775884665793, + "grad_norm": 0.21824438869953156, + "learning_rate": 0.0006, + "loss": 3.563664436340332, + "step": 4044 + }, + { + "epoch": 56.18173875054609, + "grad_norm": 0.2381063550710678, + "learning_rate": 0.0006, + "loss": 3.573061943054199, + "step": 4045 + }, + { + "epoch": 56.19571865443425, + "grad_norm": 0.23728328943252563, + "learning_rate": 0.0006, + "loss": 3.5563716888427734, + "step": 4046 + }, + { + "epoch": 56.20969855832241, + "grad_norm": 0.20998933911323547, + "learning_rate": 0.0006, + "loss": 3.540152072906494, + "step": 4047 + }, + { + "epoch": 56.22367846221057, + "grad_norm": 0.2249690741300583, + "learning_rate": 0.0006, + "loss": 3.5699682235717773, + "step": 4048 + }, + { + "epoch": 56.237658366098735, + "grad_norm": 0.22615988552570343, + "learning_rate": 0.0006, + "loss": 3.5604777336120605, + "step": 4049 + }, + { + "epoch": 56.25163826998689, + "grad_norm": 0.20918409526348114, + "learning_rate": 0.0006, + "loss": 3.5612001419067383, + "step": 4050 + }, + { + "epoch": 56.265618173875055, + "grad_norm": 0.22025109827518463, + "learning_rate": 0.0006, + "loss": 3.520402193069458, + "step": 4051 + }, + { + "epoch": 56.27959807776322, + "grad_norm": 0.22722174227237701, + "learning_rate": 0.0006, + "loss": 3.52360200881958, + "step": 4052 + }, + { + "epoch": 56.293577981651374, + "grad_norm": 0.2115592360496521, + "learning_rate": 0.0006, + "loss": 3.562689781188965, + "step": 4053 + }, + { + "epoch": 56.30755788553954, + "grad_norm": 0.19253599643707275, + "learning_rate": 0.0006, + "loss": 3.545013427734375, + "step": 4054 + }, + { + "epoch": 56.3215377894277, + "grad_norm": 0.2534266710281372, + "learning_rate": 0.0006, + "loss": 3.530149459838867, + "step": 4055 + }, + { + "epoch": 56.33551769331586, + "grad_norm": 0.2871302366256714, + "learning_rate": 0.0006, + "loss": 3.5667316913604736, + "step": 4056 + }, + { + "epoch": 56.34949759720402, + "grad_norm": 0.2686561048030853, + "learning_rate": 0.0006, + "loss": 3.5341169834136963, + "step": 4057 + }, + { + "epoch": 56.36347750109218, + "grad_norm": 0.21016116440296173, + "learning_rate": 0.0006, + "loss": 3.5151243209838867, + "step": 4058 + }, + { + "epoch": 56.37745740498034, + "grad_norm": 0.20810428261756897, + "learning_rate": 0.0006, + "loss": 3.5641677379608154, + "step": 4059 + }, + { + "epoch": 56.391437308868504, + "grad_norm": 0.2732172906398773, + "learning_rate": 0.0006, + "loss": 3.546082019805908, + "step": 4060 + }, + { + "epoch": 56.40541721275666, + "grad_norm": 0.26587602496147156, + "learning_rate": 0.0006, + "loss": 3.5465946197509766, + "step": 4061 + }, + { + "epoch": 56.419397116644824, + "grad_norm": 0.20492126047611237, + "learning_rate": 0.0006, + "loss": 3.5686211585998535, + "step": 4062 + }, + { + "epoch": 56.43337702053299, + "grad_norm": 0.2147696167230606, + "learning_rate": 0.0006, + "loss": 3.5808653831481934, + "step": 4063 + }, + { + "epoch": 56.44735692442114, + "grad_norm": 0.21947690844535828, + "learning_rate": 0.0006, + "loss": 3.530872344970703, + "step": 4064 + }, + { + "epoch": 56.46133682830931, + "grad_norm": 0.21305148303508759, + "learning_rate": 0.0006, + "loss": 3.5480992794036865, + "step": 4065 + }, + { + "epoch": 56.47531673219746, + "grad_norm": 0.2066979706287384, + "learning_rate": 0.0006, + "loss": 3.5198287963867188, + "step": 4066 + }, + { + "epoch": 56.489296636085626, + "grad_norm": 0.19393840432167053, + "learning_rate": 0.0006, + "loss": 3.555344581604004, + "step": 4067 + }, + { + "epoch": 56.50327653997379, + "grad_norm": 0.19889849424362183, + "learning_rate": 0.0006, + "loss": 3.56475830078125, + "step": 4068 + }, + { + "epoch": 56.517256443861946, + "grad_norm": 0.19851456582546234, + "learning_rate": 0.0006, + "loss": 3.5790982246398926, + "step": 4069 + }, + { + "epoch": 56.53123634775011, + "grad_norm": 0.19570177793502808, + "learning_rate": 0.0006, + "loss": 3.558379888534546, + "step": 4070 + }, + { + "epoch": 56.54521625163827, + "grad_norm": 0.21364007890224457, + "learning_rate": 0.0006, + "loss": 3.586343288421631, + "step": 4071 + }, + { + "epoch": 56.55919615552643, + "grad_norm": 0.22896543145179749, + "learning_rate": 0.0006, + "loss": 3.5565874576568604, + "step": 4072 + }, + { + "epoch": 56.57317605941459, + "grad_norm": 0.21665218472480774, + "learning_rate": 0.0006, + "loss": 3.5737056732177734, + "step": 4073 + }, + { + "epoch": 56.58715596330275, + "grad_norm": 0.1964256912469864, + "learning_rate": 0.0006, + "loss": 3.555798053741455, + "step": 4074 + }, + { + "epoch": 56.60113586719091, + "grad_norm": 0.2056122124195099, + "learning_rate": 0.0006, + "loss": 3.548685073852539, + "step": 4075 + }, + { + "epoch": 56.615115771079076, + "grad_norm": 0.21677979826927185, + "learning_rate": 0.0006, + "loss": 3.569136619567871, + "step": 4076 + }, + { + "epoch": 56.62909567496723, + "grad_norm": 0.2029557228088379, + "learning_rate": 0.0006, + "loss": 3.5723280906677246, + "step": 4077 + }, + { + "epoch": 56.643075578855395, + "grad_norm": 0.22111767530441284, + "learning_rate": 0.0006, + "loss": 3.5784404277801514, + "step": 4078 + }, + { + "epoch": 56.65705548274356, + "grad_norm": 0.245675191283226, + "learning_rate": 0.0006, + "loss": 3.559330940246582, + "step": 4079 + }, + { + "epoch": 56.671035386631715, + "grad_norm": 0.19715000689029694, + "learning_rate": 0.0006, + "loss": 3.5694894790649414, + "step": 4080 + }, + { + "epoch": 56.68501529051988, + "grad_norm": 0.2112303525209427, + "learning_rate": 0.0006, + "loss": 3.5932059288024902, + "step": 4081 + }, + { + "epoch": 56.69899519440804, + "grad_norm": 0.23710735142230988, + "learning_rate": 0.0006, + "loss": 3.59895658493042, + "step": 4082 + }, + { + "epoch": 56.7129750982962, + "grad_norm": 0.2507518529891968, + "learning_rate": 0.0006, + "loss": 3.58455228805542, + "step": 4083 + }, + { + "epoch": 56.72695500218436, + "grad_norm": 0.24770016968250275, + "learning_rate": 0.0006, + "loss": 3.566256046295166, + "step": 4084 + }, + { + "epoch": 56.74093490607252, + "grad_norm": 0.2407187819480896, + "learning_rate": 0.0006, + "loss": 3.6002347469329834, + "step": 4085 + }, + { + "epoch": 56.75491480996068, + "grad_norm": 0.21417197585105896, + "learning_rate": 0.0006, + "loss": 3.5579819679260254, + "step": 4086 + }, + { + "epoch": 56.768894713848844, + "grad_norm": 0.21014295518398285, + "learning_rate": 0.0006, + "loss": 3.574289321899414, + "step": 4087 + }, + { + "epoch": 56.782874617737, + "grad_norm": 0.2265855073928833, + "learning_rate": 0.0006, + "loss": 3.589186906814575, + "step": 4088 + }, + { + "epoch": 56.796854521625164, + "grad_norm": 0.22685059905052185, + "learning_rate": 0.0006, + "loss": 3.567077159881592, + "step": 4089 + }, + { + "epoch": 56.81083442551333, + "grad_norm": 0.21579493582248688, + "learning_rate": 0.0006, + "loss": 3.5568556785583496, + "step": 4090 + }, + { + "epoch": 56.824814329401484, + "grad_norm": 0.2049565464258194, + "learning_rate": 0.0006, + "loss": 3.5547285079956055, + "step": 4091 + }, + { + "epoch": 56.83879423328965, + "grad_norm": 0.21019354462623596, + "learning_rate": 0.0006, + "loss": 3.606884479522705, + "step": 4092 + }, + { + "epoch": 56.8527741371778, + "grad_norm": 0.26110008358955383, + "learning_rate": 0.0006, + "loss": 3.5626933574676514, + "step": 4093 + }, + { + "epoch": 56.86675404106597, + "grad_norm": 0.22148117423057556, + "learning_rate": 0.0006, + "loss": 3.5739552974700928, + "step": 4094 + }, + { + "epoch": 56.88073394495413, + "grad_norm": 0.20535576343536377, + "learning_rate": 0.0006, + "loss": 3.566840648651123, + "step": 4095 + }, + { + "epoch": 56.89471384884229, + "grad_norm": 0.1928025484085083, + "learning_rate": 0.0006, + "loss": 3.5637013912200928, + "step": 4096 + }, + { + "epoch": 56.90869375273045, + "grad_norm": 0.1989327371120453, + "learning_rate": 0.0006, + "loss": 3.5881259441375732, + "step": 4097 + }, + { + "epoch": 56.92267365661861, + "grad_norm": 0.21137912571430206, + "learning_rate": 0.0006, + "loss": 3.5513358116149902, + "step": 4098 + }, + { + "epoch": 56.93665356050677, + "grad_norm": 0.22471629083156586, + "learning_rate": 0.0006, + "loss": 3.5630130767822266, + "step": 4099 + }, + { + "epoch": 56.95063346439493, + "grad_norm": 0.2323181927204132, + "learning_rate": 0.0006, + "loss": 3.559762477874756, + "step": 4100 + }, + { + "epoch": 56.964613368283096, + "grad_norm": 0.2020239382982254, + "learning_rate": 0.0006, + "loss": 3.596774101257324, + "step": 4101 + }, + { + "epoch": 56.97859327217125, + "grad_norm": 0.21822074055671692, + "learning_rate": 0.0006, + "loss": 3.598115921020508, + "step": 4102 + }, + { + "epoch": 56.992573176059416, + "grad_norm": 0.20600785315036774, + "learning_rate": 0.0006, + "loss": 3.5579686164855957, + "step": 4103 + }, + { + "epoch": 57.0, + "grad_norm": 0.23575574159622192, + "learning_rate": 0.0006, + "loss": 3.57532000541687, + "step": 4104 + }, + { + "epoch": 57.0, + "eval_loss": 3.9726130962371826, + "eval_runtime": 44.7918, + "eval_samples_per_second": 54.519, + "eval_steps_per_second": 3.416, + "step": 4104 + }, + { + "epoch": 57.01397990388816, + "grad_norm": 0.2366827428340912, + "learning_rate": 0.0006, + "loss": 3.552804946899414, + "step": 4105 + }, + { + "epoch": 57.02795980777632, + "grad_norm": 0.2728131115436554, + "learning_rate": 0.0006, + "loss": 3.5407862663269043, + "step": 4106 + }, + { + "epoch": 57.04193971166448, + "grad_norm": 0.2685103416442871, + "learning_rate": 0.0006, + "loss": 3.525047779083252, + "step": 4107 + }, + { + "epoch": 57.05591961555265, + "grad_norm": 0.26493778824806213, + "learning_rate": 0.0006, + "loss": 3.527106523513794, + "step": 4108 + }, + { + "epoch": 57.0698995194408, + "grad_norm": 0.290961354970932, + "learning_rate": 0.0006, + "loss": 3.5482702255249023, + "step": 4109 + }, + { + "epoch": 57.083879423328966, + "grad_norm": 0.33083876967430115, + "learning_rate": 0.0006, + "loss": 3.5123658180236816, + "step": 4110 + }, + { + "epoch": 57.09785932721712, + "grad_norm": 0.28544098138809204, + "learning_rate": 0.0006, + "loss": 3.5563549995422363, + "step": 4111 + }, + { + "epoch": 57.111839231105286, + "grad_norm": 0.2516465187072754, + "learning_rate": 0.0006, + "loss": 3.547360420227051, + "step": 4112 + }, + { + "epoch": 57.12581913499345, + "grad_norm": 0.2485780417919159, + "learning_rate": 0.0006, + "loss": 3.5234861373901367, + "step": 4113 + }, + { + "epoch": 57.139799038881605, + "grad_norm": 0.246695414185524, + "learning_rate": 0.0006, + "loss": 3.573009490966797, + "step": 4114 + }, + { + "epoch": 57.15377894276977, + "grad_norm": 0.24958990514278412, + "learning_rate": 0.0006, + "loss": 3.5322680473327637, + "step": 4115 + }, + { + "epoch": 57.16775884665793, + "grad_norm": 0.20882244408130646, + "learning_rate": 0.0006, + "loss": 3.5463480949401855, + "step": 4116 + }, + { + "epoch": 57.18173875054609, + "grad_norm": 0.2372189313173294, + "learning_rate": 0.0006, + "loss": 3.543396472930908, + "step": 4117 + }, + { + "epoch": 57.19571865443425, + "grad_norm": 0.24817894399166107, + "learning_rate": 0.0006, + "loss": 3.5594849586486816, + "step": 4118 + }, + { + "epoch": 57.20969855832241, + "grad_norm": 0.2231832891702652, + "learning_rate": 0.0006, + "loss": 3.5276806354522705, + "step": 4119 + }, + { + "epoch": 57.22367846221057, + "grad_norm": 0.2211553156375885, + "learning_rate": 0.0006, + "loss": 3.5423057079315186, + "step": 4120 + }, + { + "epoch": 57.237658366098735, + "grad_norm": 0.2495127022266388, + "learning_rate": 0.0006, + "loss": 3.57668399810791, + "step": 4121 + }, + { + "epoch": 57.25163826998689, + "grad_norm": 0.2548885941505432, + "learning_rate": 0.0006, + "loss": 3.5487570762634277, + "step": 4122 + }, + { + "epoch": 57.265618173875055, + "grad_norm": 0.22884942591190338, + "learning_rate": 0.0006, + "loss": 3.560772180557251, + "step": 4123 + }, + { + "epoch": 57.27959807776322, + "grad_norm": 0.20817993581295013, + "learning_rate": 0.0006, + "loss": 3.5540637969970703, + "step": 4124 + }, + { + "epoch": 57.293577981651374, + "grad_norm": 0.2075389176607132, + "learning_rate": 0.0006, + "loss": 3.5382890701293945, + "step": 4125 + }, + { + "epoch": 57.30755788553954, + "grad_norm": 0.2081303596496582, + "learning_rate": 0.0006, + "loss": 3.554612874984741, + "step": 4126 + }, + { + "epoch": 57.3215377894277, + "grad_norm": 0.2108871191740036, + "learning_rate": 0.0006, + "loss": 3.583320379257202, + "step": 4127 + }, + { + "epoch": 57.33551769331586, + "grad_norm": 0.21608266234397888, + "learning_rate": 0.0006, + "loss": 3.5358712673187256, + "step": 4128 + }, + { + "epoch": 57.34949759720402, + "grad_norm": 0.21208034455776215, + "learning_rate": 0.0006, + "loss": 3.561821937561035, + "step": 4129 + }, + { + "epoch": 57.36347750109218, + "grad_norm": 0.2109878957271576, + "learning_rate": 0.0006, + "loss": 3.5592710971832275, + "step": 4130 + }, + { + "epoch": 57.37745740498034, + "grad_norm": 0.2175656110048294, + "learning_rate": 0.0006, + "loss": 3.5616424083709717, + "step": 4131 + }, + { + "epoch": 57.391437308868504, + "grad_norm": 0.2170158475637436, + "learning_rate": 0.0006, + "loss": 3.5580999851226807, + "step": 4132 + }, + { + "epoch": 57.40541721275666, + "grad_norm": 0.22486525774002075, + "learning_rate": 0.0006, + "loss": 3.562096118927002, + "step": 4133 + }, + { + "epoch": 57.419397116644824, + "grad_norm": 0.22458943724632263, + "learning_rate": 0.0006, + "loss": 3.5784192085266113, + "step": 4134 + }, + { + "epoch": 57.43337702053299, + "grad_norm": 0.20545627176761627, + "learning_rate": 0.0006, + "loss": 3.5740323066711426, + "step": 4135 + }, + { + "epoch": 57.44735692442114, + "grad_norm": 0.22105063498020172, + "learning_rate": 0.0006, + "loss": 3.537400245666504, + "step": 4136 + }, + { + "epoch": 57.46133682830931, + "grad_norm": 0.26679784059524536, + "learning_rate": 0.0006, + "loss": 3.5323081016540527, + "step": 4137 + }, + { + "epoch": 57.47531673219746, + "grad_norm": 0.2646673321723938, + "learning_rate": 0.0006, + "loss": 3.54030442237854, + "step": 4138 + }, + { + "epoch": 57.489296636085626, + "grad_norm": 0.22486890852451324, + "learning_rate": 0.0006, + "loss": 3.558323621749878, + "step": 4139 + }, + { + "epoch": 57.50327653997379, + "grad_norm": 0.20868313312530518, + "learning_rate": 0.0006, + "loss": 3.5296707153320312, + "step": 4140 + }, + { + "epoch": 57.517256443861946, + "grad_norm": 0.22973674535751343, + "learning_rate": 0.0006, + "loss": 3.5401687622070312, + "step": 4141 + }, + { + "epoch": 57.53123634775011, + "grad_norm": 0.22321778535842896, + "learning_rate": 0.0006, + "loss": 3.566683530807495, + "step": 4142 + }, + { + "epoch": 57.54521625163827, + "grad_norm": 0.20808766782283783, + "learning_rate": 0.0006, + "loss": 3.5398507118225098, + "step": 4143 + }, + { + "epoch": 57.55919615552643, + "grad_norm": 0.19632819294929504, + "learning_rate": 0.0006, + "loss": 3.5785460472106934, + "step": 4144 + }, + { + "epoch": 57.57317605941459, + "grad_norm": 0.18699012696743011, + "learning_rate": 0.0006, + "loss": 3.5495004653930664, + "step": 4145 + }, + { + "epoch": 57.58715596330275, + "grad_norm": 0.19161473214626312, + "learning_rate": 0.0006, + "loss": 3.550243854522705, + "step": 4146 + }, + { + "epoch": 57.60113586719091, + "grad_norm": 0.21041646599769592, + "learning_rate": 0.0006, + "loss": 3.5801823139190674, + "step": 4147 + }, + { + "epoch": 57.615115771079076, + "grad_norm": 0.2043760120868683, + "learning_rate": 0.0006, + "loss": 3.580418825149536, + "step": 4148 + }, + { + "epoch": 57.62909567496723, + "grad_norm": 0.21515823900699615, + "learning_rate": 0.0006, + "loss": 3.58026385307312, + "step": 4149 + }, + { + "epoch": 57.643075578855395, + "grad_norm": 0.20913724601268768, + "learning_rate": 0.0006, + "loss": 3.5452992916107178, + "step": 4150 + }, + { + "epoch": 57.65705548274356, + "grad_norm": 0.22621729969978333, + "learning_rate": 0.0006, + "loss": 3.5332765579223633, + "step": 4151 + }, + { + "epoch": 57.671035386631715, + "grad_norm": 0.26475241780281067, + "learning_rate": 0.0006, + "loss": 3.5701823234558105, + "step": 4152 + }, + { + "epoch": 57.68501529051988, + "grad_norm": 0.2567952275276184, + "learning_rate": 0.0006, + "loss": 3.597219228744507, + "step": 4153 + }, + { + "epoch": 57.69899519440804, + "grad_norm": 0.19640378654003143, + "learning_rate": 0.0006, + "loss": 3.5865941047668457, + "step": 4154 + }, + { + "epoch": 57.7129750982962, + "grad_norm": 0.21714240312576294, + "learning_rate": 0.0006, + "loss": 3.555518627166748, + "step": 4155 + }, + { + "epoch": 57.72695500218436, + "grad_norm": 0.2604375183582306, + "learning_rate": 0.0006, + "loss": 3.5756402015686035, + "step": 4156 + }, + { + "epoch": 57.74093490607252, + "grad_norm": 0.24627837538719177, + "learning_rate": 0.0006, + "loss": 3.550668239593506, + "step": 4157 + }, + { + "epoch": 57.75491480996068, + "grad_norm": 0.21893182396888733, + "learning_rate": 0.0006, + "loss": 3.5560038089752197, + "step": 4158 + }, + { + "epoch": 57.768894713848844, + "grad_norm": 0.23481261730194092, + "learning_rate": 0.0006, + "loss": 3.543942451477051, + "step": 4159 + }, + { + "epoch": 57.782874617737, + "grad_norm": 0.21777133643627167, + "learning_rate": 0.0006, + "loss": 3.5652658939361572, + "step": 4160 + }, + { + "epoch": 57.796854521625164, + "grad_norm": 0.2158525437116623, + "learning_rate": 0.0006, + "loss": 3.5803327560424805, + "step": 4161 + }, + { + "epoch": 57.81083442551333, + "grad_norm": 0.19519925117492676, + "learning_rate": 0.0006, + "loss": 3.5814499855041504, + "step": 4162 + }, + { + "epoch": 57.824814329401484, + "grad_norm": 0.2017558217048645, + "learning_rate": 0.0006, + "loss": 3.558722972869873, + "step": 4163 + }, + { + "epoch": 57.83879423328965, + "grad_norm": 0.22046449780464172, + "learning_rate": 0.0006, + "loss": 3.559990882873535, + "step": 4164 + }, + { + "epoch": 57.8527741371778, + "grad_norm": 0.22240568697452545, + "learning_rate": 0.0006, + "loss": 3.5427942276000977, + "step": 4165 + }, + { + "epoch": 57.86675404106597, + "grad_norm": 0.20282965898513794, + "learning_rate": 0.0006, + "loss": 3.5449461936950684, + "step": 4166 + }, + { + "epoch": 57.88073394495413, + "grad_norm": 0.20970730483531952, + "learning_rate": 0.0006, + "loss": 3.592543601989746, + "step": 4167 + }, + { + "epoch": 57.89471384884229, + "grad_norm": 0.21963168680667877, + "learning_rate": 0.0006, + "loss": 3.5564393997192383, + "step": 4168 + }, + { + "epoch": 57.90869375273045, + "grad_norm": 0.20854730904102325, + "learning_rate": 0.0006, + "loss": 3.565591335296631, + "step": 4169 + }, + { + "epoch": 57.92267365661861, + "grad_norm": 0.24149510264396667, + "learning_rate": 0.0006, + "loss": 3.574720859527588, + "step": 4170 + }, + { + "epoch": 57.93665356050677, + "grad_norm": 0.26011863350868225, + "learning_rate": 0.0006, + "loss": 3.593156337738037, + "step": 4171 + }, + { + "epoch": 57.95063346439493, + "grad_norm": 0.24111896753311157, + "learning_rate": 0.0006, + "loss": 3.5871872901916504, + "step": 4172 + }, + { + "epoch": 57.964613368283096, + "grad_norm": 0.22362647950649261, + "learning_rate": 0.0006, + "loss": 3.568572998046875, + "step": 4173 + }, + { + "epoch": 57.97859327217125, + "grad_norm": 0.23621505498886108, + "learning_rate": 0.0006, + "loss": 3.5627479553222656, + "step": 4174 + }, + { + "epoch": 57.992573176059416, + "grad_norm": 0.2252524048089981, + "learning_rate": 0.0006, + "loss": 3.594430446624756, + "step": 4175 + }, + { + "epoch": 58.0, + "grad_norm": 0.24568618834018707, + "learning_rate": 0.0006, + "loss": 3.5520875453948975, + "step": 4176 + }, + { + "epoch": 58.0, + "eval_loss": 3.978929042816162, + "eval_runtime": 44.8688, + "eval_samples_per_second": 54.425, + "eval_steps_per_second": 3.41, + "step": 4176 + }, + { + "epoch": 58.01397990388816, + "grad_norm": 0.23220741748809814, + "learning_rate": 0.0006, + "loss": 3.5401225090026855, + "step": 4177 + }, + { + "epoch": 58.02795980777632, + "grad_norm": 0.214580699801445, + "learning_rate": 0.0006, + "loss": 3.507652759552002, + "step": 4178 + }, + { + "epoch": 58.04193971166448, + "grad_norm": 0.20596857368946075, + "learning_rate": 0.0006, + "loss": 3.5591790676116943, + "step": 4179 + }, + { + "epoch": 58.05591961555265, + "grad_norm": 0.23054419457912445, + "learning_rate": 0.0006, + "loss": 3.518101692199707, + "step": 4180 + }, + { + "epoch": 58.0698995194408, + "grad_norm": 0.2410690039396286, + "learning_rate": 0.0006, + "loss": 3.5270299911499023, + "step": 4181 + }, + { + "epoch": 58.083879423328966, + "grad_norm": 0.24333222210407257, + "learning_rate": 0.0006, + "loss": 3.5732290744781494, + "step": 4182 + }, + { + "epoch": 58.09785932721712, + "grad_norm": 0.2547648549079895, + "learning_rate": 0.0006, + "loss": 3.5470314025878906, + "step": 4183 + }, + { + "epoch": 58.111839231105286, + "grad_norm": 0.2366316169500351, + "learning_rate": 0.0006, + "loss": 3.500774621963501, + "step": 4184 + }, + { + "epoch": 58.12581913499345, + "grad_norm": 0.22653642296791077, + "learning_rate": 0.0006, + "loss": 3.5242254734039307, + "step": 4185 + }, + { + "epoch": 58.139799038881605, + "grad_norm": 0.25555330514907837, + "learning_rate": 0.0006, + "loss": 3.5272228717803955, + "step": 4186 + }, + { + "epoch": 58.15377894276977, + "grad_norm": 0.26559844613075256, + "learning_rate": 0.0006, + "loss": 3.5599403381347656, + "step": 4187 + }, + { + "epoch": 58.16775884665793, + "grad_norm": 0.2473350614309311, + "learning_rate": 0.0006, + "loss": 3.5130624771118164, + "step": 4188 + }, + { + "epoch": 58.18173875054609, + "grad_norm": 0.22858835756778717, + "learning_rate": 0.0006, + "loss": 3.508342742919922, + "step": 4189 + }, + { + "epoch": 58.19571865443425, + "grad_norm": 0.2151159793138504, + "learning_rate": 0.0006, + "loss": 3.533581256866455, + "step": 4190 + }, + { + "epoch": 58.20969855832241, + "grad_norm": 0.2042093276977539, + "learning_rate": 0.0006, + "loss": 3.5269458293914795, + "step": 4191 + }, + { + "epoch": 58.22367846221057, + "grad_norm": 0.20638196170330048, + "learning_rate": 0.0006, + "loss": 3.5137884616851807, + "step": 4192 + }, + { + "epoch": 58.237658366098735, + "grad_norm": 0.2018391191959381, + "learning_rate": 0.0006, + "loss": 3.533733367919922, + "step": 4193 + }, + { + "epoch": 58.25163826998689, + "grad_norm": 0.21045200526714325, + "learning_rate": 0.0006, + "loss": 3.5585010051727295, + "step": 4194 + }, + { + "epoch": 58.265618173875055, + "grad_norm": 0.2040393352508545, + "learning_rate": 0.0006, + "loss": 3.547539234161377, + "step": 4195 + }, + { + "epoch": 58.27959807776322, + "grad_norm": 0.2538772523403168, + "learning_rate": 0.0006, + "loss": 3.5487847328186035, + "step": 4196 + }, + { + "epoch": 58.293577981651374, + "grad_norm": 0.30126553773880005, + "learning_rate": 0.0006, + "loss": 3.5717992782592773, + "step": 4197 + }, + { + "epoch": 58.30755788553954, + "grad_norm": 0.2787485718727112, + "learning_rate": 0.0006, + "loss": 3.543076992034912, + "step": 4198 + }, + { + "epoch": 58.3215377894277, + "grad_norm": 0.23167021572589874, + "learning_rate": 0.0006, + "loss": 3.518887519836426, + "step": 4199 + }, + { + "epoch": 58.33551769331586, + "grad_norm": 0.23871110379695892, + "learning_rate": 0.0006, + "loss": 3.536757469177246, + "step": 4200 + }, + { + "epoch": 58.34949759720402, + "grad_norm": 0.2542787492275238, + "learning_rate": 0.0006, + "loss": 3.573086738586426, + "step": 4201 + }, + { + "epoch": 58.36347750109218, + "grad_norm": 0.2967284023761749, + "learning_rate": 0.0006, + "loss": 3.5866525173187256, + "step": 4202 + }, + { + "epoch": 58.37745740498034, + "grad_norm": 0.28304803371429443, + "learning_rate": 0.0006, + "loss": 3.5601437091827393, + "step": 4203 + }, + { + "epoch": 58.391437308868504, + "grad_norm": 0.20651954412460327, + "learning_rate": 0.0006, + "loss": 3.5591554641723633, + "step": 4204 + }, + { + "epoch": 58.40541721275666, + "grad_norm": 0.23101729154586792, + "learning_rate": 0.0006, + "loss": 3.5714032649993896, + "step": 4205 + }, + { + "epoch": 58.419397116644824, + "grad_norm": 0.24556246399879456, + "learning_rate": 0.0006, + "loss": 3.550046443939209, + "step": 4206 + }, + { + "epoch": 58.43337702053299, + "grad_norm": 0.2307356745004654, + "learning_rate": 0.0006, + "loss": 3.571850299835205, + "step": 4207 + }, + { + "epoch": 58.44735692442114, + "grad_norm": 0.23186670243740082, + "learning_rate": 0.0006, + "loss": 3.555757999420166, + "step": 4208 + }, + { + "epoch": 58.46133682830931, + "grad_norm": 0.20662686228752136, + "learning_rate": 0.0006, + "loss": 3.5590686798095703, + "step": 4209 + }, + { + "epoch": 58.47531673219746, + "grad_norm": 0.20381265878677368, + "learning_rate": 0.0006, + "loss": 3.5228846073150635, + "step": 4210 + }, + { + "epoch": 58.489296636085626, + "grad_norm": 0.20927058160305023, + "learning_rate": 0.0006, + "loss": 3.5376980304718018, + "step": 4211 + }, + { + "epoch": 58.50327653997379, + "grad_norm": 0.22782307863235474, + "learning_rate": 0.0006, + "loss": 3.5477585792541504, + "step": 4212 + }, + { + "epoch": 58.517256443861946, + "grad_norm": 0.20143239200115204, + "learning_rate": 0.0006, + "loss": 3.5429391860961914, + "step": 4213 + }, + { + "epoch": 58.53123634775011, + "grad_norm": 0.2120865285396576, + "learning_rate": 0.0006, + "loss": 3.5543365478515625, + "step": 4214 + }, + { + "epoch": 58.54521625163827, + "grad_norm": 0.2032771110534668, + "learning_rate": 0.0006, + "loss": 3.5307888984680176, + "step": 4215 + }, + { + "epoch": 58.55919615552643, + "grad_norm": 0.20994187891483307, + "learning_rate": 0.0006, + "loss": 3.581739664077759, + "step": 4216 + }, + { + "epoch": 58.57317605941459, + "grad_norm": 0.23686161637306213, + "learning_rate": 0.0006, + "loss": 3.5274312496185303, + "step": 4217 + }, + { + "epoch": 58.58715596330275, + "grad_norm": 0.21081998944282532, + "learning_rate": 0.0006, + "loss": 3.547239303588867, + "step": 4218 + }, + { + "epoch": 58.60113586719091, + "grad_norm": 0.20353151857852936, + "learning_rate": 0.0006, + "loss": 3.5522308349609375, + "step": 4219 + }, + { + "epoch": 58.615115771079076, + "grad_norm": 0.20888762176036835, + "learning_rate": 0.0006, + "loss": 3.5535459518432617, + "step": 4220 + }, + { + "epoch": 58.62909567496723, + "grad_norm": 0.2024519443511963, + "learning_rate": 0.0006, + "loss": 3.5320982933044434, + "step": 4221 + }, + { + "epoch": 58.643075578855395, + "grad_norm": 0.19622337818145752, + "learning_rate": 0.0006, + "loss": 3.5581917762756348, + "step": 4222 + }, + { + "epoch": 58.65705548274356, + "grad_norm": 0.1966600865125656, + "learning_rate": 0.0006, + "loss": 3.5412650108337402, + "step": 4223 + }, + { + "epoch": 58.671035386631715, + "grad_norm": 0.19325542449951172, + "learning_rate": 0.0006, + "loss": 3.570521593093872, + "step": 4224 + }, + { + "epoch": 58.68501529051988, + "grad_norm": 0.20674128830432892, + "learning_rate": 0.0006, + "loss": 3.5727484226226807, + "step": 4225 + }, + { + "epoch": 58.69899519440804, + "grad_norm": 0.1959284245967865, + "learning_rate": 0.0006, + "loss": 3.5655486583709717, + "step": 4226 + }, + { + "epoch": 58.7129750982962, + "grad_norm": 0.2044358104467392, + "learning_rate": 0.0006, + "loss": 3.5477449893951416, + "step": 4227 + }, + { + "epoch": 58.72695500218436, + "grad_norm": 0.21381069719791412, + "learning_rate": 0.0006, + "loss": 3.533381462097168, + "step": 4228 + }, + { + "epoch": 58.74093490607252, + "grad_norm": 0.20168009400367737, + "learning_rate": 0.0006, + "loss": 3.5401244163513184, + "step": 4229 + }, + { + "epoch": 58.75491480996068, + "grad_norm": 0.20853811502456665, + "learning_rate": 0.0006, + "loss": 3.5669009685516357, + "step": 4230 + }, + { + "epoch": 58.768894713848844, + "grad_norm": 0.2135785073041916, + "learning_rate": 0.0006, + "loss": 3.5697989463806152, + "step": 4231 + }, + { + "epoch": 58.782874617737, + "grad_norm": 0.20372799038887024, + "learning_rate": 0.0006, + "loss": 3.592245101928711, + "step": 4232 + }, + { + "epoch": 58.796854521625164, + "grad_norm": 0.20562207698822021, + "learning_rate": 0.0006, + "loss": 3.5732932090759277, + "step": 4233 + }, + { + "epoch": 58.81083442551333, + "grad_norm": 0.1932520568370819, + "learning_rate": 0.0006, + "loss": 3.581766128540039, + "step": 4234 + }, + { + "epoch": 58.824814329401484, + "grad_norm": 0.20229186117649078, + "learning_rate": 0.0006, + "loss": 3.5758426189422607, + "step": 4235 + }, + { + "epoch": 58.83879423328965, + "grad_norm": 0.21348924934864044, + "learning_rate": 0.0006, + "loss": 3.573164939880371, + "step": 4236 + }, + { + "epoch": 58.8527741371778, + "grad_norm": 0.2240375131368637, + "learning_rate": 0.0006, + "loss": 3.578442096710205, + "step": 4237 + }, + { + "epoch": 58.86675404106597, + "grad_norm": 0.22859376668930054, + "learning_rate": 0.0006, + "loss": 3.5597116947174072, + "step": 4238 + }, + { + "epoch": 58.88073394495413, + "grad_norm": 0.22347290813922882, + "learning_rate": 0.0006, + "loss": 3.557039260864258, + "step": 4239 + }, + { + "epoch": 58.89471384884229, + "grad_norm": 0.19835364818572998, + "learning_rate": 0.0006, + "loss": 3.5832467079162598, + "step": 4240 + }, + { + "epoch": 58.90869375273045, + "grad_norm": 0.21189740300178528, + "learning_rate": 0.0006, + "loss": 3.5421836376190186, + "step": 4241 + }, + { + "epoch": 58.92267365661861, + "grad_norm": 0.21234451234340668, + "learning_rate": 0.0006, + "loss": 3.6048710346221924, + "step": 4242 + }, + { + "epoch": 58.93665356050677, + "grad_norm": 0.2107880860567093, + "learning_rate": 0.0006, + "loss": 3.58248233795166, + "step": 4243 + }, + { + "epoch": 58.95063346439493, + "grad_norm": 0.21674086153507233, + "learning_rate": 0.0006, + "loss": 3.582352876663208, + "step": 4244 + }, + { + "epoch": 58.964613368283096, + "grad_norm": 0.21057581901550293, + "learning_rate": 0.0006, + "loss": 3.5387773513793945, + "step": 4245 + }, + { + "epoch": 58.97859327217125, + "grad_norm": 0.20203082263469696, + "learning_rate": 0.0006, + "loss": 3.5805740356445312, + "step": 4246 + }, + { + "epoch": 58.992573176059416, + "grad_norm": 0.21071292459964752, + "learning_rate": 0.0006, + "loss": 3.5644760131835938, + "step": 4247 + }, + { + "epoch": 59.0, + "grad_norm": 0.2473233938217163, + "learning_rate": 0.0006, + "loss": 3.56392765045166, + "step": 4248 + }, + { + "epoch": 59.0, + "eval_loss": 3.9670467376708984, + "eval_runtime": 44.7697, + "eval_samples_per_second": 54.546, + "eval_steps_per_second": 3.417, + "step": 4248 + }, + { + "epoch": 59.01397990388816, + "grad_norm": 0.22915491461753845, + "learning_rate": 0.0006, + "loss": 3.5110130310058594, + "step": 4249 + }, + { + "epoch": 59.02795980777632, + "grad_norm": 0.2629511058330536, + "learning_rate": 0.0006, + "loss": 3.5493721961975098, + "step": 4250 + }, + { + "epoch": 59.04193971166448, + "grad_norm": 0.2954505383968353, + "learning_rate": 0.0006, + "loss": 3.555753707885742, + "step": 4251 + }, + { + "epoch": 59.05591961555265, + "grad_norm": 0.2728694677352905, + "learning_rate": 0.0006, + "loss": 3.5089950561523438, + "step": 4252 + }, + { + "epoch": 59.0698995194408, + "grad_norm": 0.25955384969711304, + "learning_rate": 0.0006, + "loss": 3.509044647216797, + "step": 4253 + }, + { + "epoch": 59.083879423328966, + "grad_norm": 0.32285967469215393, + "learning_rate": 0.0006, + "loss": 3.5324721336364746, + "step": 4254 + }, + { + "epoch": 59.09785932721712, + "grad_norm": 0.2913302779197693, + "learning_rate": 0.0006, + "loss": 3.5004022121429443, + "step": 4255 + }, + { + "epoch": 59.111839231105286, + "grad_norm": 0.23795513808727264, + "learning_rate": 0.0006, + "loss": 3.515099048614502, + "step": 4256 + }, + { + "epoch": 59.12581913499345, + "grad_norm": 0.2788177728652954, + "learning_rate": 0.0006, + "loss": 3.524991035461426, + "step": 4257 + }, + { + "epoch": 59.139799038881605, + "grad_norm": 0.32389938831329346, + "learning_rate": 0.0006, + "loss": 3.5330004692077637, + "step": 4258 + }, + { + "epoch": 59.15377894276977, + "grad_norm": 0.2921825647354126, + "learning_rate": 0.0006, + "loss": 3.530616283416748, + "step": 4259 + }, + { + "epoch": 59.16775884665793, + "grad_norm": 0.28415167331695557, + "learning_rate": 0.0006, + "loss": 3.5276989936828613, + "step": 4260 + }, + { + "epoch": 59.18173875054609, + "grad_norm": 0.283626526594162, + "learning_rate": 0.0006, + "loss": 3.564985752105713, + "step": 4261 + }, + { + "epoch": 59.19571865443425, + "grad_norm": 0.2655615210533142, + "learning_rate": 0.0006, + "loss": 3.536499500274658, + "step": 4262 + }, + { + "epoch": 59.20969855832241, + "grad_norm": 0.2794124484062195, + "learning_rate": 0.0006, + "loss": 3.570883274078369, + "step": 4263 + }, + { + "epoch": 59.22367846221057, + "grad_norm": 0.2803778052330017, + "learning_rate": 0.0006, + "loss": 3.5143651962280273, + "step": 4264 + }, + { + "epoch": 59.237658366098735, + "grad_norm": 0.2584295868873596, + "learning_rate": 0.0006, + "loss": 3.548056125640869, + "step": 4265 + }, + { + "epoch": 59.25163826998689, + "grad_norm": 0.26859962940216064, + "learning_rate": 0.0006, + "loss": 3.511655807495117, + "step": 4266 + }, + { + "epoch": 59.265618173875055, + "grad_norm": 0.26620036363601685, + "learning_rate": 0.0006, + "loss": 3.5554311275482178, + "step": 4267 + }, + { + "epoch": 59.27959807776322, + "grad_norm": 0.2325621247291565, + "learning_rate": 0.0006, + "loss": 3.5126709938049316, + "step": 4268 + }, + { + "epoch": 59.293577981651374, + "grad_norm": 0.24758809804916382, + "learning_rate": 0.0006, + "loss": 3.5747783184051514, + "step": 4269 + }, + { + "epoch": 59.30755788553954, + "grad_norm": 0.26378121972084045, + "learning_rate": 0.0006, + "loss": 3.538012742996216, + "step": 4270 + }, + { + "epoch": 59.3215377894277, + "grad_norm": 0.24299141764640808, + "learning_rate": 0.0006, + "loss": 3.533834457397461, + "step": 4271 + }, + { + "epoch": 59.33551769331586, + "grad_norm": 0.20792774856090546, + "learning_rate": 0.0006, + "loss": 3.5645856857299805, + "step": 4272 + }, + { + "epoch": 59.34949759720402, + "grad_norm": 0.21124716103076935, + "learning_rate": 0.0006, + "loss": 3.5616869926452637, + "step": 4273 + }, + { + "epoch": 59.36347750109218, + "grad_norm": 0.2644400894641876, + "learning_rate": 0.0006, + "loss": 3.531334400177002, + "step": 4274 + }, + { + "epoch": 59.37745740498034, + "grad_norm": 0.27659082412719727, + "learning_rate": 0.0006, + "loss": 3.5557894706726074, + "step": 4275 + }, + { + "epoch": 59.391437308868504, + "grad_norm": 0.21931052207946777, + "learning_rate": 0.0006, + "loss": 3.537261486053467, + "step": 4276 + }, + { + "epoch": 59.40541721275666, + "grad_norm": 0.20661118626594543, + "learning_rate": 0.0006, + "loss": 3.568042755126953, + "step": 4277 + }, + { + "epoch": 59.419397116644824, + "grad_norm": 0.2157975435256958, + "learning_rate": 0.0006, + "loss": 3.550891160964966, + "step": 4278 + }, + { + "epoch": 59.43337702053299, + "grad_norm": 0.20762090384960175, + "learning_rate": 0.0006, + "loss": 3.565798282623291, + "step": 4279 + }, + { + "epoch": 59.44735692442114, + "grad_norm": 0.19575528800487518, + "learning_rate": 0.0006, + "loss": 3.5518856048583984, + "step": 4280 + }, + { + "epoch": 59.46133682830931, + "grad_norm": 0.20730678737163544, + "learning_rate": 0.0006, + "loss": 3.5412862300872803, + "step": 4281 + }, + { + "epoch": 59.47531673219746, + "grad_norm": 0.21095411479473114, + "learning_rate": 0.0006, + "loss": 3.5491604804992676, + "step": 4282 + }, + { + "epoch": 59.489296636085626, + "grad_norm": 0.2229546755552292, + "learning_rate": 0.0006, + "loss": 3.534517765045166, + "step": 4283 + }, + { + "epoch": 59.50327653997379, + "grad_norm": 0.22375687956809998, + "learning_rate": 0.0006, + "loss": 3.5696470737457275, + "step": 4284 + }, + { + "epoch": 59.517256443861946, + "grad_norm": 0.2563750743865967, + "learning_rate": 0.0006, + "loss": 3.6050190925598145, + "step": 4285 + }, + { + "epoch": 59.53123634775011, + "grad_norm": 0.3055726885795593, + "learning_rate": 0.0006, + "loss": 3.572263240814209, + "step": 4286 + }, + { + "epoch": 59.54521625163827, + "grad_norm": 0.3095283508300781, + "learning_rate": 0.0006, + "loss": 3.545631170272827, + "step": 4287 + }, + { + "epoch": 59.55919615552643, + "grad_norm": 0.24958640336990356, + "learning_rate": 0.0006, + "loss": 3.549663543701172, + "step": 4288 + }, + { + "epoch": 59.57317605941459, + "grad_norm": 0.22277019917964935, + "learning_rate": 0.0006, + "loss": 3.5721545219421387, + "step": 4289 + }, + { + "epoch": 59.58715596330275, + "grad_norm": 0.22153833508491516, + "learning_rate": 0.0006, + "loss": 3.5103156566619873, + "step": 4290 + }, + { + "epoch": 59.60113586719091, + "grad_norm": 0.25579726696014404, + "learning_rate": 0.0006, + "loss": 3.550353527069092, + "step": 4291 + }, + { + "epoch": 59.615115771079076, + "grad_norm": 0.2242603898048401, + "learning_rate": 0.0006, + "loss": 3.5284783840179443, + "step": 4292 + }, + { + "epoch": 59.62909567496723, + "grad_norm": 0.21665683388710022, + "learning_rate": 0.0006, + "loss": 3.553835868835449, + "step": 4293 + }, + { + "epoch": 59.643075578855395, + "grad_norm": 0.21703463792800903, + "learning_rate": 0.0006, + "loss": 3.5393173694610596, + "step": 4294 + }, + { + "epoch": 59.65705548274356, + "grad_norm": 0.21264998614788055, + "learning_rate": 0.0006, + "loss": 3.566108465194702, + "step": 4295 + }, + { + "epoch": 59.671035386631715, + "grad_norm": 0.1935717612504959, + "learning_rate": 0.0006, + "loss": 3.5934512615203857, + "step": 4296 + }, + { + "epoch": 59.68501529051988, + "grad_norm": 0.20164808630943298, + "learning_rate": 0.0006, + "loss": 3.545046329498291, + "step": 4297 + }, + { + "epoch": 59.69899519440804, + "grad_norm": 0.19589892029762268, + "learning_rate": 0.0006, + "loss": 3.5302319526672363, + "step": 4298 + }, + { + "epoch": 59.7129750982962, + "grad_norm": 0.1893095225095749, + "learning_rate": 0.0006, + "loss": 3.5947837829589844, + "step": 4299 + }, + { + "epoch": 59.72695500218436, + "grad_norm": 0.20218202471733093, + "learning_rate": 0.0006, + "loss": 3.5889904499053955, + "step": 4300 + }, + { + "epoch": 59.74093490607252, + "grad_norm": 0.19681277871131897, + "learning_rate": 0.0006, + "loss": 3.581536293029785, + "step": 4301 + }, + { + "epoch": 59.75491480996068, + "grad_norm": 0.20112384855747223, + "learning_rate": 0.0006, + "loss": 3.5509750843048096, + "step": 4302 + }, + { + "epoch": 59.768894713848844, + "grad_norm": 0.1969940960407257, + "learning_rate": 0.0006, + "loss": 3.5462636947631836, + "step": 4303 + }, + { + "epoch": 59.782874617737, + "grad_norm": 0.20936219394207, + "learning_rate": 0.0006, + "loss": 3.5284390449523926, + "step": 4304 + }, + { + "epoch": 59.796854521625164, + "grad_norm": 0.21717803180217743, + "learning_rate": 0.0006, + "loss": 3.5669212341308594, + "step": 4305 + }, + { + "epoch": 59.81083442551333, + "grad_norm": 0.20210883021354675, + "learning_rate": 0.0006, + "loss": 3.5366921424865723, + "step": 4306 + }, + { + "epoch": 59.824814329401484, + "grad_norm": 0.224124476313591, + "learning_rate": 0.0006, + "loss": 3.5457663536071777, + "step": 4307 + }, + { + "epoch": 59.83879423328965, + "grad_norm": 0.2186291366815567, + "learning_rate": 0.0006, + "loss": 3.5732779502868652, + "step": 4308 + }, + { + "epoch": 59.8527741371778, + "grad_norm": 0.19785884022712708, + "learning_rate": 0.0006, + "loss": 3.5471811294555664, + "step": 4309 + }, + { + "epoch": 59.86675404106597, + "grad_norm": 0.24774281680583954, + "learning_rate": 0.0006, + "loss": 3.5839807987213135, + "step": 4310 + }, + { + "epoch": 59.88073394495413, + "grad_norm": 0.25087007880210876, + "learning_rate": 0.0006, + "loss": 3.56972336769104, + "step": 4311 + }, + { + "epoch": 59.89471384884229, + "grad_norm": 0.21474683284759521, + "learning_rate": 0.0006, + "loss": 3.5199289321899414, + "step": 4312 + }, + { + "epoch": 59.90869375273045, + "grad_norm": 0.2087765336036682, + "learning_rate": 0.0006, + "loss": 3.5777320861816406, + "step": 4313 + }, + { + "epoch": 59.92267365661861, + "grad_norm": 0.2228539139032364, + "learning_rate": 0.0006, + "loss": 3.531118392944336, + "step": 4314 + }, + { + "epoch": 59.93665356050677, + "grad_norm": 0.2456534057855606, + "learning_rate": 0.0006, + "loss": 3.5448033809661865, + "step": 4315 + }, + { + "epoch": 59.95063346439493, + "grad_norm": 0.2699171006679535, + "learning_rate": 0.0006, + "loss": 3.560724973678589, + "step": 4316 + }, + { + "epoch": 59.964613368283096, + "grad_norm": 0.2664966881275177, + "learning_rate": 0.0006, + "loss": 3.5932974815368652, + "step": 4317 + }, + { + "epoch": 59.97859327217125, + "grad_norm": 0.2137683779001236, + "learning_rate": 0.0006, + "loss": 3.5610086917877197, + "step": 4318 + }, + { + "epoch": 59.992573176059416, + "grad_norm": 0.2067531794309616, + "learning_rate": 0.0006, + "loss": 3.5588603019714355, + "step": 4319 + }, + { + "epoch": 60.0, + "grad_norm": 0.2458500862121582, + "learning_rate": 0.0006, + "loss": 3.5636165142059326, + "step": 4320 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 1.840963751289815e+18, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4320/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4608/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4608/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4608/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4608/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..fd57f21e816bfc7f57f2a9ea94f6ec2c0516af31 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8741eb16294a7b841839e508a555a6e7628cca0154f2beda2177218a40b4233b +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4608/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..083e94564c3f27bd30afec0e5f1ef958d1e3171f --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c096ce9cfaef715a8129b8895a699e2599aea5ce4693bd483e3c306a720b3326 +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4608/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..7e3a177a94c904215eff8624bcfa73cde8607234 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c711a5617f10172f49739b01f69aa502e493df0bb016e024be6221b99dcde46 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4608/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..ebf3ab6103b373f338e1fafa5b695bcc86c6f271 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cf56b57cc60aa8a0945b2114d4b3e441636ee6c29132dc4a2dbb388614fa0cb +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4608/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..e577101181b24dfcc9b18d0a62144d06cb4b37c2 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d97e4c65a4c8c2376a5585ec88bf61c1243526bb687aa9ffb5e9d7512df2daa +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4608/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4608/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4608/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..f7a5426b987891fca192083640ac4494d925a021 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/trainer_state.json @@ -0,0 +1,32794 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 64.0, + "eval_steps": 500, + "global_step": 4608, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + }, + { + "epoch": 8.0, + "eval_loss": 5.100707530975342, + "eval_runtime": 44.2493, + "eval_samples_per_second": 55.187, + "eval_steps_per_second": 3.458, + "step": 576 + }, + { + "epoch": 8.013979903888162, + "grad_norm": 0.3658510148525238, + "learning_rate": 0.0006, + "loss": 4.759055137634277, + "step": 577 + }, + { + "epoch": 8.027959807776321, + "grad_norm": 0.41794446110725403, + "learning_rate": 0.0006, + "loss": 4.737661838531494, + "step": 578 + }, + { + "epoch": 8.041939711664483, + "grad_norm": 0.43284085392951965, + "learning_rate": 0.0006, + "loss": 4.775538444519043, + "step": 579 + }, + { + "epoch": 8.055919615552643, + "grad_norm": 0.4716675281524658, + "learning_rate": 0.0006, + "loss": 4.762231826782227, + "step": 580 + }, + { + "epoch": 8.069899519440805, + "grad_norm": 0.3849579393863678, + "learning_rate": 0.0006, + "loss": 4.753598690032959, + "step": 581 + }, + { + "epoch": 8.083879423328964, + "grad_norm": 0.3721151053905487, + "learning_rate": 0.0006, + "loss": 4.728978157043457, + "step": 582 + }, + { + "epoch": 8.097859327217126, + "grad_norm": 0.37009572982788086, + "learning_rate": 0.0006, + "loss": 4.759153366088867, + "step": 583 + }, + { + "epoch": 8.111839231105286, + "grad_norm": 0.37051302194595337, + "learning_rate": 0.0006, + "loss": 4.744197368621826, + "step": 584 + }, + { + "epoch": 8.125819134993447, + "grad_norm": 0.331238329410553, + "learning_rate": 0.0006, + "loss": 4.7338385581970215, + "step": 585 + }, + { + "epoch": 8.139799038881607, + "grad_norm": 0.3737713694572449, + "learning_rate": 0.0006, + "loss": 4.719110488891602, + "step": 586 + }, + { + "epoch": 8.153778942769769, + "grad_norm": 0.3713214695453644, + "learning_rate": 0.0006, + "loss": 4.734012126922607, + "step": 587 + }, + { + "epoch": 8.167758846657929, + "grad_norm": 0.4060780107975006, + "learning_rate": 0.0006, + "loss": 4.746830940246582, + "step": 588 + }, + { + "epoch": 8.18173875054609, + "grad_norm": 0.39814314246177673, + "learning_rate": 0.0006, + "loss": 4.722851753234863, + "step": 589 + }, + { + "epoch": 8.19571865443425, + "grad_norm": 0.3175652325153351, + "learning_rate": 0.0006, + "loss": 4.745110034942627, + "step": 590 + }, + { + "epoch": 8.209698558322412, + "grad_norm": 0.37214916944503784, + "learning_rate": 0.0006, + "loss": 4.7362775802612305, + "step": 591 + }, + { + "epoch": 8.223678462210572, + "grad_norm": 0.3873472809791565, + "learning_rate": 0.0006, + "loss": 4.738964557647705, + "step": 592 + }, + { + "epoch": 8.237658366098733, + "grad_norm": 0.3299207091331482, + "learning_rate": 0.0006, + "loss": 4.713451385498047, + "step": 593 + }, + { + "epoch": 8.251638269986893, + "grad_norm": 0.32445064187049866, + "learning_rate": 0.0006, + "loss": 4.725602149963379, + "step": 594 + }, + { + "epoch": 8.265618173875055, + "grad_norm": 0.32903164625167847, + "learning_rate": 0.0006, + "loss": 4.732064247131348, + "step": 595 + }, + { + "epoch": 8.279598077763215, + "grad_norm": 0.3166804313659668, + "learning_rate": 0.0006, + "loss": 4.678950786590576, + "step": 596 + }, + { + "epoch": 8.293577981651376, + "grad_norm": 0.2750290334224701, + "learning_rate": 0.0006, + "loss": 4.719513416290283, + "step": 597 + }, + { + "epoch": 8.307557885539538, + "grad_norm": 0.291029691696167, + "learning_rate": 0.0006, + "loss": 4.715405464172363, + "step": 598 + }, + { + "epoch": 8.321537789427698, + "grad_norm": 0.34105145931243896, + "learning_rate": 0.0006, + "loss": 4.722611427307129, + "step": 599 + }, + { + "epoch": 8.33551769331586, + "grad_norm": 0.3078882694244385, + "learning_rate": 0.0006, + "loss": 4.668856620788574, + "step": 600 + }, + { + "epoch": 8.349497597204019, + "grad_norm": 0.3218833804130554, + "learning_rate": 0.0006, + "loss": 4.719579696655273, + "step": 601 + }, + { + "epoch": 8.36347750109218, + "grad_norm": 0.35716721415519714, + "learning_rate": 0.0006, + "loss": 4.690774440765381, + "step": 602 + }, + { + "epoch": 8.37745740498034, + "grad_norm": 0.3045452833175659, + "learning_rate": 0.0006, + "loss": 4.696503639221191, + "step": 603 + }, + { + "epoch": 8.391437308868502, + "grad_norm": 0.3127244710922241, + "learning_rate": 0.0006, + "loss": 4.701899528503418, + "step": 604 + }, + { + "epoch": 8.405417212756662, + "grad_norm": 0.34988710284233093, + "learning_rate": 0.0006, + "loss": 4.677641868591309, + "step": 605 + }, + { + "epoch": 8.419397116644824, + "grad_norm": 0.34035569429397583, + "learning_rate": 0.0006, + "loss": 4.707778453826904, + "step": 606 + }, + { + "epoch": 8.433377020532983, + "grad_norm": 0.3341112732887268, + "learning_rate": 0.0006, + "loss": 4.724853038787842, + "step": 607 + }, + { + "epoch": 8.447356924421145, + "grad_norm": 0.41744324564933777, + "learning_rate": 0.0006, + "loss": 4.680908203125, + "step": 608 + }, + { + "epoch": 8.461336828309305, + "grad_norm": 0.40402331948280334, + "learning_rate": 0.0006, + "loss": 4.726455211639404, + "step": 609 + }, + { + "epoch": 8.475316732197467, + "grad_norm": 0.4727570414543152, + "learning_rate": 0.0006, + "loss": 4.6793084144592285, + "step": 610 + }, + { + "epoch": 8.489296636085626, + "grad_norm": 0.43002694845199585, + "learning_rate": 0.0006, + "loss": 4.663918972015381, + "step": 611 + }, + { + "epoch": 8.503276539973788, + "grad_norm": 0.36124858260154724, + "learning_rate": 0.0006, + "loss": 4.657375335693359, + "step": 612 + }, + { + "epoch": 8.517256443861948, + "grad_norm": 0.37644803524017334, + "learning_rate": 0.0006, + "loss": 4.676977157592773, + "step": 613 + }, + { + "epoch": 8.53123634775011, + "grad_norm": 0.32347747683525085, + "learning_rate": 0.0006, + "loss": 4.708547115325928, + "step": 614 + }, + { + "epoch": 8.54521625163827, + "grad_norm": 0.3071717619895935, + "learning_rate": 0.0006, + "loss": 4.650189399719238, + "step": 615 + }, + { + "epoch": 8.55919615552643, + "grad_norm": 0.30222490429878235, + "learning_rate": 0.0006, + "loss": 4.647942543029785, + "step": 616 + }, + { + "epoch": 8.57317605941459, + "grad_norm": 0.31545212864875793, + "learning_rate": 0.0006, + "loss": 4.660242080688477, + "step": 617 + }, + { + "epoch": 8.587155963302752, + "grad_norm": 0.31644752621650696, + "learning_rate": 0.0006, + "loss": 4.666710376739502, + "step": 618 + }, + { + "epoch": 8.601135867190912, + "grad_norm": 0.26057198643684387, + "learning_rate": 0.0006, + "loss": 4.668096542358398, + "step": 619 + }, + { + "epoch": 8.615115771079074, + "grad_norm": 0.25473910570144653, + "learning_rate": 0.0006, + "loss": 4.641562461853027, + "step": 620 + }, + { + "epoch": 8.629095674967235, + "grad_norm": 0.2456732839345932, + "learning_rate": 0.0006, + "loss": 4.6545281410217285, + "step": 621 + }, + { + "epoch": 8.643075578855395, + "grad_norm": 0.25180476903915405, + "learning_rate": 0.0006, + "loss": 4.6506524085998535, + "step": 622 + }, + { + "epoch": 8.657055482743557, + "grad_norm": 0.21761579811573029, + "learning_rate": 0.0006, + "loss": 4.638909339904785, + "step": 623 + }, + { + "epoch": 8.671035386631717, + "grad_norm": 0.23590542376041412, + "learning_rate": 0.0006, + "loss": 4.6572747230529785, + "step": 624 + }, + { + "epoch": 8.685015290519878, + "grad_norm": 0.23870624601840973, + "learning_rate": 0.0006, + "loss": 4.643742084503174, + "step": 625 + }, + { + "epoch": 8.698995194408038, + "grad_norm": 0.2191203385591507, + "learning_rate": 0.0006, + "loss": 4.632617950439453, + "step": 626 + }, + { + "epoch": 8.7129750982962, + "grad_norm": 0.22107063233852386, + "learning_rate": 0.0006, + "loss": 4.625616073608398, + "step": 627 + }, + { + "epoch": 8.72695500218436, + "grad_norm": 0.20833902060985565, + "learning_rate": 0.0006, + "loss": 4.609896659851074, + "step": 628 + }, + { + "epoch": 8.740934906072521, + "grad_norm": 0.254967600107193, + "learning_rate": 0.0006, + "loss": 4.651735782623291, + "step": 629 + }, + { + "epoch": 8.754914809960681, + "grad_norm": 0.31587523221969604, + "learning_rate": 0.0006, + "loss": 4.6404032707214355, + "step": 630 + }, + { + "epoch": 8.768894713848843, + "grad_norm": 0.28598251938819885, + "learning_rate": 0.0006, + "loss": 4.602679252624512, + "step": 631 + }, + { + "epoch": 8.782874617737003, + "grad_norm": 0.23216590285301208, + "learning_rate": 0.0006, + "loss": 4.610319137573242, + "step": 632 + }, + { + "epoch": 8.796854521625164, + "grad_norm": 0.29212239384651184, + "learning_rate": 0.0006, + "loss": 4.600744247436523, + "step": 633 + }, + { + "epoch": 8.810834425513324, + "grad_norm": 0.3375801146030426, + "learning_rate": 0.0006, + "loss": 4.627819061279297, + "step": 634 + }, + { + "epoch": 8.824814329401486, + "grad_norm": 0.4207753837108612, + "learning_rate": 0.0006, + "loss": 4.634505271911621, + "step": 635 + }, + { + "epoch": 8.838794233289645, + "grad_norm": 0.4640173614025116, + "learning_rate": 0.0006, + "loss": 4.636714935302734, + "step": 636 + }, + { + "epoch": 8.852774137177807, + "grad_norm": 0.5255663990974426, + "learning_rate": 0.0006, + "loss": 4.659462928771973, + "step": 637 + }, + { + "epoch": 8.866754041065967, + "grad_norm": 0.5108268857002258, + "learning_rate": 0.0006, + "loss": 4.633192539215088, + "step": 638 + }, + { + "epoch": 8.880733944954128, + "grad_norm": 0.3821936845779419, + "learning_rate": 0.0006, + "loss": 4.621200084686279, + "step": 639 + }, + { + "epoch": 8.89471384884229, + "grad_norm": 0.3918485939502716, + "learning_rate": 0.0006, + "loss": 4.632599830627441, + "step": 640 + }, + { + "epoch": 8.90869375273045, + "grad_norm": 0.3416556119918823, + "learning_rate": 0.0006, + "loss": 4.620438098907471, + "step": 641 + }, + { + "epoch": 8.922673656618612, + "grad_norm": 0.3191553056240082, + "learning_rate": 0.0006, + "loss": 4.617823600769043, + "step": 642 + }, + { + "epoch": 8.936653560506771, + "grad_norm": 0.3368529677391052, + "learning_rate": 0.0006, + "loss": 4.617222785949707, + "step": 643 + }, + { + "epoch": 8.950633464394933, + "grad_norm": 0.3255428969860077, + "learning_rate": 0.0006, + "loss": 4.633878707885742, + "step": 644 + }, + { + "epoch": 8.964613368283093, + "grad_norm": 0.31394779682159424, + "learning_rate": 0.0006, + "loss": 4.642603874206543, + "step": 645 + }, + { + "epoch": 8.978593272171254, + "grad_norm": 0.29999351501464844, + "learning_rate": 0.0006, + "loss": 4.5925211906433105, + "step": 646 + }, + { + "epoch": 8.992573176059414, + "grad_norm": 0.309154748916626, + "learning_rate": 0.0006, + "loss": 4.61745023727417, + "step": 647 + }, + { + "epoch": 9.0, + "grad_norm": 0.2660452425479889, + "learning_rate": 0.0006, + "loss": 4.575107097625732, + "step": 648 + }, + { + "epoch": 9.0, + "eval_loss": 4.8804192543029785, + "eval_runtime": 45.0015, + "eval_samples_per_second": 54.265, + "eval_steps_per_second": 3.4, + "step": 648 + }, + { + "epoch": 9.013979903888162, + "grad_norm": 0.24159297347068787, + "learning_rate": 0.0006, + "loss": 4.571323871612549, + "step": 649 + }, + { + "epoch": 9.027959807776321, + "grad_norm": 0.2835831046104431, + "learning_rate": 0.0006, + "loss": 4.614255905151367, + "step": 650 + }, + { + "epoch": 9.041939711664483, + "grad_norm": 0.2646859288215637, + "learning_rate": 0.0006, + "loss": 4.578947067260742, + "step": 651 + }, + { + "epoch": 9.055919615552643, + "grad_norm": 0.28868553042411804, + "learning_rate": 0.0006, + "loss": 4.575977325439453, + "step": 652 + }, + { + "epoch": 9.069899519440805, + "grad_norm": 0.2899586856365204, + "learning_rate": 0.0006, + "loss": 4.541798114776611, + "step": 653 + }, + { + "epoch": 9.083879423328964, + "grad_norm": 0.32786068320274353, + "learning_rate": 0.0006, + "loss": 4.575140953063965, + "step": 654 + }, + { + "epoch": 9.097859327217126, + "grad_norm": 0.35675594210624695, + "learning_rate": 0.0006, + "loss": 4.58184814453125, + "step": 655 + }, + { + "epoch": 9.111839231105286, + "grad_norm": 0.3380381166934967, + "learning_rate": 0.0006, + "loss": 4.546271324157715, + "step": 656 + }, + { + "epoch": 9.125819134993447, + "grad_norm": 0.3035511374473572, + "learning_rate": 0.0006, + "loss": 4.591629981994629, + "step": 657 + }, + { + "epoch": 9.139799038881607, + "grad_norm": 0.2733091711997986, + "learning_rate": 0.0006, + "loss": 4.559020042419434, + "step": 658 + }, + { + "epoch": 9.153778942769769, + "grad_norm": 0.2870676815509796, + "learning_rate": 0.0006, + "loss": 4.552787780761719, + "step": 659 + }, + { + "epoch": 9.167758846657929, + "grad_norm": 0.37471064925193787, + "learning_rate": 0.0006, + "loss": 4.572757244110107, + "step": 660 + }, + { + "epoch": 9.18173875054609, + "grad_norm": 0.37889063358306885, + "learning_rate": 0.0006, + "loss": 4.573302268981934, + "step": 661 + }, + { + "epoch": 9.19571865443425, + "grad_norm": 0.29983851313591003, + "learning_rate": 0.0006, + "loss": 4.571202754974365, + "step": 662 + }, + { + "epoch": 9.209698558322412, + "grad_norm": 0.27595147490501404, + "learning_rate": 0.0006, + "loss": 4.529508590698242, + "step": 663 + }, + { + "epoch": 9.223678462210572, + "grad_norm": 0.22693437337875366, + "learning_rate": 0.0006, + "loss": 4.572267532348633, + "step": 664 + }, + { + "epoch": 9.237658366098733, + "grad_norm": 0.27147138118743896, + "learning_rate": 0.0006, + "loss": 4.529747009277344, + "step": 665 + }, + { + "epoch": 9.251638269986893, + "grad_norm": 0.24952703714370728, + "learning_rate": 0.0006, + "loss": 4.553647994995117, + "step": 666 + }, + { + "epoch": 9.265618173875055, + "grad_norm": 0.3086707592010498, + "learning_rate": 0.0006, + "loss": 4.494636058807373, + "step": 667 + }, + { + "epoch": 9.279598077763215, + "grad_norm": 0.3265218138694763, + "learning_rate": 0.0006, + "loss": 4.522481918334961, + "step": 668 + }, + { + "epoch": 9.293577981651376, + "grad_norm": 0.2744608223438263, + "learning_rate": 0.0006, + "loss": 4.544595241546631, + "step": 669 + }, + { + "epoch": 9.307557885539538, + "grad_norm": 0.26698485016822815, + "learning_rate": 0.0006, + "loss": 4.506407260894775, + "step": 670 + }, + { + "epoch": 9.321537789427698, + "grad_norm": 0.2775942087173462, + "learning_rate": 0.0006, + "loss": 4.534619331359863, + "step": 671 + }, + { + "epoch": 9.33551769331586, + "grad_norm": 0.2421862781047821, + "learning_rate": 0.0006, + "loss": 4.523318290710449, + "step": 672 + }, + { + "epoch": 9.349497597204019, + "grad_norm": 0.2756497263908386, + "learning_rate": 0.0006, + "loss": 4.517561912536621, + "step": 673 + }, + { + "epoch": 9.36347750109218, + "grad_norm": 0.28845369815826416, + "learning_rate": 0.0006, + "loss": 4.530844688415527, + "step": 674 + }, + { + "epoch": 9.37745740498034, + "grad_norm": 0.32285866141319275, + "learning_rate": 0.0006, + "loss": 4.55369758605957, + "step": 675 + }, + { + "epoch": 9.391437308868502, + "grad_norm": 0.3726065754890442, + "learning_rate": 0.0006, + "loss": 4.524348258972168, + "step": 676 + }, + { + "epoch": 9.405417212756662, + "grad_norm": 0.39524078369140625, + "learning_rate": 0.0006, + "loss": 4.535778045654297, + "step": 677 + }, + { + "epoch": 9.419397116644824, + "grad_norm": 0.3859797716140747, + "learning_rate": 0.0006, + "loss": 4.538474082946777, + "step": 678 + }, + { + "epoch": 9.433377020532983, + "grad_norm": 0.36151406168937683, + "learning_rate": 0.0006, + "loss": 4.54434061050415, + "step": 679 + }, + { + "epoch": 9.447356924421145, + "grad_norm": 0.40345999598503113, + "learning_rate": 0.0006, + "loss": 4.532961845397949, + "step": 680 + }, + { + "epoch": 9.461336828309305, + "grad_norm": 0.38864144682884216, + "learning_rate": 0.0006, + "loss": 4.567630767822266, + "step": 681 + }, + { + "epoch": 9.475316732197467, + "grad_norm": 0.3816355764865875, + "learning_rate": 0.0006, + "loss": 4.535771369934082, + "step": 682 + }, + { + "epoch": 9.489296636085626, + "grad_norm": 0.38756558299064636, + "learning_rate": 0.0006, + "loss": 4.4971089363098145, + "step": 683 + }, + { + "epoch": 9.503276539973788, + "grad_norm": 0.4572933614253998, + "learning_rate": 0.0006, + "loss": 4.534860134124756, + "step": 684 + }, + { + "epoch": 9.517256443861948, + "grad_norm": 0.42368650436401367, + "learning_rate": 0.0006, + "loss": 4.542638301849365, + "step": 685 + }, + { + "epoch": 9.53123634775011, + "grad_norm": 0.36939486861228943, + "learning_rate": 0.0006, + "loss": 4.571430206298828, + "step": 686 + }, + { + "epoch": 9.54521625163827, + "grad_norm": 0.3900398313999176, + "learning_rate": 0.0006, + "loss": 4.544435501098633, + "step": 687 + }, + { + "epoch": 9.55919615552643, + "grad_norm": 0.37829288840293884, + "learning_rate": 0.0006, + "loss": 4.564268112182617, + "step": 688 + }, + { + "epoch": 9.57317605941459, + "grad_norm": 0.3553886115550995, + "learning_rate": 0.0006, + "loss": 4.5373430252075195, + "step": 689 + }, + { + "epoch": 9.587155963302752, + "grad_norm": 0.3613419532775879, + "learning_rate": 0.0006, + "loss": 4.559074401855469, + "step": 690 + }, + { + "epoch": 9.601135867190912, + "grad_norm": 0.32644546031951904, + "learning_rate": 0.0006, + "loss": 4.533667087554932, + "step": 691 + }, + { + "epoch": 9.615115771079074, + "grad_norm": 0.3264399468898773, + "learning_rate": 0.0006, + "loss": 4.508299350738525, + "step": 692 + }, + { + "epoch": 9.629095674967235, + "grad_norm": 0.3534526526927948, + "learning_rate": 0.0006, + "loss": 4.542442798614502, + "step": 693 + }, + { + "epoch": 9.643075578855395, + "grad_norm": 0.3333452343940735, + "learning_rate": 0.0006, + "loss": 4.497692584991455, + "step": 694 + }, + { + "epoch": 9.657055482743557, + "grad_norm": 0.3214292526245117, + "learning_rate": 0.0006, + "loss": 4.512363433837891, + "step": 695 + }, + { + "epoch": 9.671035386631717, + "grad_norm": 0.2805672585964203, + "learning_rate": 0.0006, + "loss": 4.496874809265137, + "step": 696 + }, + { + "epoch": 9.685015290519878, + "grad_norm": 0.2618725895881653, + "learning_rate": 0.0006, + "loss": 4.51375675201416, + "step": 697 + }, + { + "epoch": 9.698995194408038, + "grad_norm": 0.2556597888469696, + "learning_rate": 0.0006, + "loss": 4.512338638305664, + "step": 698 + }, + { + "epoch": 9.7129750982962, + "grad_norm": 0.23784305155277252, + "learning_rate": 0.0006, + "loss": 4.486503601074219, + "step": 699 + }, + { + "epoch": 9.72695500218436, + "grad_norm": 0.2240338921546936, + "learning_rate": 0.0006, + "loss": 4.486850261688232, + "step": 700 + }, + { + "epoch": 9.740934906072521, + "grad_norm": 0.24686725437641144, + "learning_rate": 0.0006, + "loss": 4.501359462738037, + "step": 701 + }, + { + "epoch": 9.754914809960681, + "grad_norm": 0.20819595456123352, + "learning_rate": 0.0006, + "loss": 4.495186805725098, + "step": 702 + }, + { + "epoch": 9.768894713848843, + "grad_norm": 0.21858957409858704, + "learning_rate": 0.0006, + "loss": 4.475093364715576, + "step": 703 + }, + { + "epoch": 9.782874617737003, + "grad_norm": 0.22676466405391693, + "learning_rate": 0.0006, + "loss": 4.4702534675598145, + "step": 704 + }, + { + "epoch": 9.796854521625164, + "grad_norm": 0.18317611515522003, + "learning_rate": 0.0006, + "loss": 4.471231937408447, + "step": 705 + }, + { + "epoch": 9.810834425513324, + "grad_norm": 0.20979148149490356, + "learning_rate": 0.0006, + "loss": 4.454103946685791, + "step": 706 + }, + { + "epoch": 9.824814329401486, + "grad_norm": 0.2146051526069641, + "learning_rate": 0.0006, + "loss": 4.505178928375244, + "step": 707 + }, + { + "epoch": 9.838794233289645, + "grad_norm": 0.2344852089881897, + "learning_rate": 0.0006, + "loss": 4.437984943389893, + "step": 708 + }, + { + "epoch": 9.852774137177807, + "grad_norm": 0.26532089710235596, + "learning_rate": 0.0006, + "loss": 4.477126121520996, + "step": 709 + }, + { + "epoch": 9.866754041065967, + "grad_norm": 0.2737913131713867, + "learning_rate": 0.0006, + "loss": 4.498421669006348, + "step": 710 + }, + { + "epoch": 9.880733944954128, + "grad_norm": 0.26651278138160706, + "learning_rate": 0.0006, + "loss": 4.480839729309082, + "step": 711 + }, + { + "epoch": 9.89471384884229, + "grad_norm": 0.26576584577560425, + "learning_rate": 0.0006, + "loss": 4.490936279296875, + "step": 712 + }, + { + "epoch": 9.90869375273045, + "grad_norm": 0.22483965754508972, + "learning_rate": 0.0006, + "loss": 4.477953910827637, + "step": 713 + }, + { + "epoch": 9.922673656618612, + "grad_norm": 0.23576045036315918, + "learning_rate": 0.0006, + "loss": 4.4731292724609375, + "step": 714 + }, + { + "epoch": 9.936653560506771, + "grad_norm": 0.2731139361858368, + "learning_rate": 0.0006, + "loss": 4.441622734069824, + "step": 715 + }, + { + "epoch": 9.950633464394933, + "grad_norm": 0.2677643597126007, + "learning_rate": 0.0006, + "loss": 4.49604606628418, + "step": 716 + }, + { + "epoch": 9.964613368283093, + "grad_norm": 0.21940895915031433, + "learning_rate": 0.0006, + "loss": 4.485573768615723, + "step": 717 + }, + { + "epoch": 9.978593272171254, + "grad_norm": 0.2060987651348114, + "learning_rate": 0.0006, + "loss": 4.482657432556152, + "step": 718 + }, + { + "epoch": 9.992573176059414, + "grad_norm": 0.22163978219032288, + "learning_rate": 0.0006, + "loss": 4.478459358215332, + "step": 719 + }, + { + "epoch": 10.0, + "grad_norm": 0.2505086064338684, + "learning_rate": 0.0006, + "loss": 4.4393510818481445, + "step": 720 + }, + { + "epoch": 10.0, + "eval_loss": 4.695676803588867, + "eval_runtime": 49.0751, + "eval_samples_per_second": 49.76, + "eval_steps_per_second": 3.118, + "step": 720 + }, + { + "epoch": 10.013979903888162, + "grad_norm": 0.23820190131664276, + "learning_rate": 0.0006, + "loss": 4.437685489654541, + "step": 721 + }, + { + "epoch": 10.027959807776321, + "grad_norm": 0.2220371812582016, + "learning_rate": 0.0006, + "loss": 4.449873924255371, + "step": 722 + }, + { + "epoch": 10.041939711664483, + "grad_norm": 0.20369848608970642, + "learning_rate": 0.0006, + "loss": 4.448882579803467, + "step": 723 + }, + { + "epoch": 10.055919615552643, + "grad_norm": 0.2360001504421234, + "learning_rate": 0.0006, + "loss": 4.399251937866211, + "step": 724 + }, + { + "epoch": 10.069899519440805, + "grad_norm": 0.23537491261959076, + "learning_rate": 0.0006, + "loss": 4.442960739135742, + "step": 725 + }, + { + "epoch": 10.083879423328964, + "grad_norm": 0.24433870613574982, + "learning_rate": 0.0006, + "loss": 4.44808292388916, + "step": 726 + }, + { + "epoch": 10.097859327217126, + "grad_norm": 0.3406696021556854, + "learning_rate": 0.0006, + "loss": 4.443426132202148, + "step": 727 + }, + { + "epoch": 10.111839231105286, + "grad_norm": 0.4102286100387573, + "learning_rate": 0.0006, + "loss": 4.424919605255127, + "step": 728 + }, + { + "epoch": 10.125819134993447, + "grad_norm": 0.36462604999542236, + "learning_rate": 0.0006, + "loss": 4.45366907119751, + "step": 729 + }, + { + "epoch": 10.139799038881607, + "grad_norm": 0.4374827444553375, + "learning_rate": 0.0006, + "loss": 4.415630340576172, + "step": 730 + }, + { + "epoch": 10.153778942769769, + "grad_norm": 0.45248138904571533, + "learning_rate": 0.0006, + "loss": 4.448849678039551, + "step": 731 + }, + { + "epoch": 10.167758846657929, + "grad_norm": 0.3806457221508026, + "learning_rate": 0.0006, + "loss": 4.443390846252441, + "step": 732 + }, + { + "epoch": 10.18173875054609, + "grad_norm": 0.3491523861885071, + "learning_rate": 0.0006, + "loss": 4.4648637771606445, + "step": 733 + }, + { + "epoch": 10.19571865443425, + "grad_norm": 0.3327210247516632, + "learning_rate": 0.0006, + "loss": 4.460919380187988, + "step": 734 + }, + { + "epoch": 10.209698558322412, + "grad_norm": 0.29772236943244934, + "learning_rate": 0.0006, + "loss": 4.45159912109375, + "step": 735 + }, + { + "epoch": 10.223678462210572, + "grad_norm": 0.33083397150039673, + "learning_rate": 0.0006, + "loss": 4.463382720947266, + "step": 736 + }, + { + "epoch": 10.237658366098733, + "grad_norm": 0.3930598795413971, + "learning_rate": 0.0006, + "loss": 4.434510231018066, + "step": 737 + }, + { + "epoch": 10.251638269986893, + "grad_norm": 0.4342896044254303, + "learning_rate": 0.0006, + "loss": 4.451700210571289, + "step": 738 + }, + { + "epoch": 10.265618173875055, + "grad_norm": 0.4544043242931366, + "learning_rate": 0.0006, + "loss": 4.437224388122559, + "step": 739 + }, + { + "epoch": 10.279598077763215, + "grad_norm": 0.4487038254737854, + "learning_rate": 0.0006, + "loss": 4.46157693862915, + "step": 740 + }, + { + "epoch": 10.293577981651376, + "grad_norm": 0.4420500695705414, + "learning_rate": 0.0006, + "loss": 4.399561405181885, + "step": 741 + }, + { + "epoch": 10.307557885539538, + "grad_norm": 0.4167289435863495, + "learning_rate": 0.0006, + "loss": 4.41792106628418, + "step": 742 + }, + { + "epoch": 10.321537789427698, + "grad_norm": 0.3186971843242645, + "learning_rate": 0.0006, + "loss": 4.435683250427246, + "step": 743 + }, + { + "epoch": 10.33551769331586, + "grad_norm": 0.3077184855937958, + "learning_rate": 0.0006, + "loss": 4.481947898864746, + "step": 744 + }, + { + "epoch": 10.349497597204019, + "grad_norm": 0.26811280846595764, + "learning_rate": 0.0006, + "loss": 4.4339447021484375, + "step": 745 + }, + { + "epoch": 10.36347750109218, + "grad_norm": 0.28448057174682617, + "learning_rate": 0.0006, + "loss": 4.441644668579102, + "step": 746 + }, + { + "epoch": 10.37745740498034, + "grad_norm": 0.30731502175331116, + "learning_rate": 0.0006, + "loss": 4.428773880004883, + "step": 747 + }, + { + "epoch": 10.391437308868502, + "grad_norm": 0.28036001324653625, + "learning_rate": 0.0006, + "loss": 4.4433135986328125, + "step": 748 + }, + { + "epoch": 10.405417212756662, + "grad_norm": 0.2882847189903259, + "learning_rate": 0.0006, + "loss": 4.433401107788086, + "step": 749 + }, + { + "epoch": 10.419397116644824, + "grad_norm": 0.23622776567935944, + "learning_rate": 0.0006, + "loss": 4.444611549377441, + "step": 750 + }, + { + "epoch": 10.433377020532983, + "grad_norm": 0.2306167632341385, + "learning_rate": 0.0006, + "loss": 4.397875785827637, + "step": 751 + }, + { + "epoch": 10.447356924421145, + "grad_norm": 0.22725090384483337, + "learning_rate": 0.0006, + "loss": 4.429759502410889, + "step": 752 + }, + { + "epoch": 10.461336828309305, + "grad_norm": 0.250709593296051, + "learning_rate": 0.0006, + "loss": 4.415618896484375, + "step": 753 + }, + { + "epoch": 10.475316732197467, + "grad_norm": 0.22341276705265045, + "learning_rate": 0.0006, + "loss": 4.389362335205078, + "step": 754 + }, + { + "epoch": 10.489296636085626, + "grad_norm": 0.22595296800136566, + "learning_rate": 0.0006, + "loss": 4.383584022521973, + "step": 755 + }, + { + "epoch": 10.503276539973788, + "grad_norm": 0.24277575314044952, + "learning_rate": 0.0006, + "loss": 4.403777599334717, + "step": 756 + }, + { + "epoch": 10.517256443861948, + "grad_norm": 0.2670708894729614, + "learning_rate": 0.0006, + "loss": 4.398499011993408, + "step": 757 + }, + { + "epoch": 10.53123634775011, + "grad_norm": 0.2640696167945862, + "learning_rate": 0.0006, + "loss": 4.426726818084717, + "step": 758 + }, + { + "epoch": 10.54521625163827, + "grad_norm": 0.2248653769493103, + "learning_rate": 0.0006, + "loss": 4.400103569030762, + "step": 759 + }, + { + "epoch": 10.55919615552643, + "grad_norm": 0.21466240286827087, + "learning_rate": 0.0006, + "loss": 4.404158592224121, + "step": 760 + }, + { + "epoch": 10.57317605941459, + "grad_norm": 0.236923947930336, + "learning_rate": 0.0006, + "loss": 4.37059211730957, + "step": 761 + }, + { + "epoch": 10.587155963302752, + "grad_norm": 0.2515387535095215, + "learning_rate": 0.0006, + "loss": 4.415055274963379, + "step": 762 + }, + { + "epoch": 10.601135867190912, + "grad_norm": 0.23461885750293732, + "learning_rate": 0.0006, + "loss": 4.375036239624023, + "step": 763 + }, + { + "epoch": 10.615115771079074, + "grad_norm": 0.20975761115550995, + "learning_rate": 0.0006, + "loss": 4.3903398513793945, + "step": 764 + }, + { + "epoch": 10.629095674967235, + "grad_norm": 0.19859997928142548, + "learning_rate": 0.0006, + "loss": 4.379380226135254, + "step": 765 + }, + { + "epoch": 10.643075578855395, + "grad_norm": 0.22310325503349304, + "learning_rate": 0.0006, + "loss": 4.382110595703125, + "step": 766 + }, + { + "epoch": 10.657055482743557, + "grad_norm": 0.23940646648406982, + "learning_rate": 0.0006, + "loss": 4.393403053283691, + "step": 767 + }, + { + "epoch": 10.671035386631717, + "grad_norm": 0.2230468988418579, + "learning_rate": 0.0006, + "loss": 4.391970634460449, + "step": 768 + }, + { + "epoch": 10.685015290519878, + "grad_norm": 0.18139775097370148, + "learning_rate": 0.0006, + "loss": 4.399993896484375, + "step": 769 + }, + { + "epoch": 10.698995194408038, + "grad_norm": 0.19936902821063995, + "learning_rate": 0.0006, + "loss": 4.373854160308838, + "step": 770 + }, + { + "epoch": 10.7129750982962, + "grad_norm": 0.22132465243339539, + "learning_rate": 0.0006, + "loss": 4.377530097961426, + "step": 771 + }, + { + "epoch": 10.72695500218436, + "grad_norm": 0.24254944920539856, + "learning_rate": 0.0006, + "loss": 4.398683547973633, + "step": 772 + }, + { + "epoch": 10.740934906072521, + "grad_norm": 0.2666397988796234, + "learning_rate": 0.0006, + "loss": 4.3879899978637695, + "step": 773 + }, + { + "epoch": 10.754914809960681, + "grad_norm": 0.24728631973266602, + "learning_rate": 0.0006, + "loss": 4.356976509094238, + "step": 774 + }, + { + "epoch": 10.768894713848843, + "grad_norm": 0.2612453103065491, + "learning_rate": 0.0006, + "loss": 4.391525745391846, + "step": 775 + }, + { + "epoch": 10.782874617737003, + "grad_norm": 0.24060510098934174, + "learning_rate": 0.0006, + "loss": 4.376985549926758, + "step": 776 + }, + { + "epoch": 10.796854521625164, + "grad_norm": 0.22708238661289215, + "learning_rate": 0.0006, + "loss": 4.368545055389404, + "step": 777 + }, + { + "epoch": 10.810834425513324, + "grad_norm": 0.26931291818618774, + "learning_rate": 0.0006, + "loss": 4.369227409362793, + "step": 778 + }, + { + "epoch": 10.824814329401486, + "grad_norm": 0.265288770198822, + "learning_rate": 0.0006, + "loss": 4.378131866455078, + "step": 779 + }, + { + "epoch": 10.838794233289645, + "grad_norm": 0.3015305697917938, + "learning_rate": 0.0006, + "loss": 4.376267910003662, + "step": 780 + }, + { + "epoch": 10.852774137177807, + "grad_norm": 0.3345746099948883, + "learning_rate": 0.0006, + "loss": 4.3751420974731445, + "step": 781 + }, + { + "epoch": 10.866754041065967, + "grad_norm": 0.32446005940437317, + "learning_rate": 0.0006, + "loss": 4.370899200439453, + "step": 782 + }, + { + "epoch": 10.880733944954128, + "grad_norm": 0.27070069313049316, + "learning_rate": 0.0006, + "loss": 4.391958236694336, + "step": 783 + }, + { + "epoch": 10.89471384884229, + "grad_norm": 0.25584667921066284, + "learning_rate": 0.0006, + "loss": 4.407493591308594, + "step": 784 + }, + { + "epoch": 10.90869375273045, + "grad_norm": 0.2710244655609131, + "learning_rate": 0.0006, + "loss": 4.374400615692139, + "step": 785 + }, + { + "epoch": 10.922673656618612, + "grad_norm": 0.32413622736930847, + "learning_rate": 0.0006, + "loss": 4.379607200622559, + "step": 786 + }, + { + "epoch": 10.936653560506771, + "grad_norm": 0.3253782391548157, + "learning_rate": 0.0006, + "loss": 4.376441955566406, + "step": 787 + }, + { + "epoch": 10.950633464394933, + "grad_norm": 0.30534613132476807, + "learning_rate": 0.0006, + "loss": 4.382739067077637, + "step": 788 + }, + { + "epoch": 10.964613368283093, + "grad_norm": 0.35726621747016907, + "learning_rate": 0.0006, + "loss": 4.3765869140625, + "step": 789 + }, + { + "epoch": 10.978593272171254, + "grad_norm": 0.32763028144836426, + "learning_rate": 0.0006, + "loss": 4.391537189483643, + "step": 790 + }, + { + "epoch": 10.992573176059414, + "grad_norm": 0.31811195611953735, + "learning_rate": 0.0006, + "loss": 4.371829032897949, + "step": 791 + }, + { + "epoch": 11.0, + "grad_norm": 0.37317267060279846, + "learning_rate": 0.0006, + "loss": 4.381916522979736, + "step": 792 + }, + { + "epoch": 11.0, + "eval_loss": 4.588687896728516, + "eval_runtime": 44.8041, + "eval_samples_per_second": 54.504, + "eval_steps_per_second": 3.415, + "step": 792 + }, + { + "epoch": 11.013979903888162, + "grad_norm": 0.37882938981056213, + "learning_rate": 0.0006, + "loss": 4.3463640213012695, + "step": 793 + }, + { + "epoch": 11.027959807776321, + "grad_norm": 0.34719496965408325, + "learning_rate": 0.0006, + "loss": 4.329861640930176, + "step": 794 + }, + { + "epoch": 11.041939711664483, + "grad_norm": 0.36161214113235474, + "learning_rate": 0.0006, + "loss": 4.3287835121154785, + "step": 795 + }, + { + "epoch": 11.055919615552643, + "grad_norm": 0.3743649125099182, + "learning_rate": 0.0006, + "loss": 4.334251403808594, + "step": 796 + }, + { + "epoch": 11.069899519440805, + "grad_norm": 0.32266443967819214, + "learning_rate": 0.0006, + "loss": 4.364782810211182, + "step": 797 + }, + { + "epoch": 11.083879423328964, + "grad_norm": 0.27460047602653503, + "learning_rate": 0.0006, + "loss": 4.348380088806152, + "step": 798 + }, + { + "epoch": 11.097859327217126, + "grad_norm": 0.30498892068862915, + "learning_rate": 0.0006, + "loss": 4.347856521606445, + "step": 799 + }, + { + "epoch": 11.111839231105286, + "grad_norm": 0.29740771651268005, + "learning_rate": 0.0006, + "loss": 4.343471050262451, + "step": 800 + }, + { + "epoch": 11.125819134993447, + "grad_norm": 0.3004681169986725, + "learning_rate": 0.0006, + "loss": 4.337590217590332, + "step": 801 + }, + { + "epoch": 11.139799038881607, + "grad_norm": 0.3000192642211914, + "learning_rate": 0.0006, + "loss": 4.349949836730957, + "step": 802 + }, + { + "epoch": 11.153778942769769, + "grad_norm": 0.27461889386177063, + "learning_rate": 0.0006, + "loss": 4.338934898376465, + "step": 803 + }, + { + "epoch": 11.167758846657929, + "grad_norm": 0.2856169641017914, + "learning_rate": 0.0006, + "loss": 4.320754051208496, + "step": 804 + }, + { + "epoch": 11.18173875054609, + "grad_norm": 0.29822713136672974, + "learning_rate": 0.0006, + "loss": 4.357949733734131, + "step": 805 + }, + { + "epoch": 11.19571865443425, + "grad_norm": 0.34061339497566223, + "learning_rate": 0.0006, + "loss": 4.327282905578613, + "step": 806 + }, + { + "epoch": 11.209698558322412, + "grad_norm": 0.3379063010215759, + "learning_rate": 0.0006, + "loss": 4.355471611022949, + "step": 807 + }, + { + "epoch": 11.223678462210572, + "grad_norm": 0.2859216630458832, + "learning_rate": 0.0006, + "loss": 4.352344989776611, + "step": 808 + }, + { + "epoch": 11.237658366098733, + "grad_norm": 0.29522669315338135, + "learning_rate": 0.0006, + "loss": 4.349186897277832, + "step": 809 + }, + { + "epoch": 11.251638269986893, + "grad_norm": 0.273798406124115, + "learning_rate": 0.0006, + "loss": 4.342379570007324, + "step": 810 + }, + { + "epoch": 11.265618173875055, + "grad_norm": 0.25298982858657837, + "learning_rate": 0.0006, + "loss": 4.358835220336914, + "step": 811 + }, + { + "epoch": 11.279598077763215, + "grad_norm": 0.2170463651418686, + "learning_rate": 0.0006, + "loss": 4.3422017097473145, + "step": 812 + }, + { + "epoch": 11.293577981651376, + "grad_norm": 0.24855731427669525, + "learning_rate": 0.0006, + "loss": 4.322849750518799, + "step": 813 + }, + { + "epoch": 11.307557885539538, + "grad_norm": 0.22564345598220825, + "learning_rate": 0.0006, + "loss": 4.316864967346191, + "step": 814 + }, + { + "epoch": 11.321537789427698, + "grad_norm": 0.21532197296619415, + "learning_rate": 0.0006, + "loss": 4.326743125915527, + "step": 815 + }, + { + "epoch": 11.33551769331586, + "grad_norm": 0.20514146983623505, + "learning_rate": 0.0006, + "loss": 4.326531887054443, + "step": 816 + }, + { + "epoch": 11.349497597204019, + "grad_norm": 0.19035090506076813, + "learning_rate": 0.0006, + "loss": 4.318154335021973, + "step": 817 + }, + { + "epoch": 11.36347750109218, + "grad_norm": 0.17889662086963654, + "learning_rate": 0.0006, + "loss": 4.35410213470459, + "step": 818 + }, + { + "epoch": 11.37745740498034, + "grad_norm": 0.20564863085746765, + "learning_rate": 0.0006, + "loss": 4.350226879119873, + "step": 819 + }, + { + "epoch": 11.391437308868502, + "grad_norm": 0.2412603348493576, + "learning_rate": 0.0006, + "loss": 4.325137138366699, + "step": 820 + }, + { + "epoch": 11.405417212756662, + "grad_norm": 0.2603496015071869, + "learning_rate": 0.0006, + "loss": 4.335752487182617, + "step": 821 + }, + { + "epoch": 11.419397116644824, + "grad_norm": 0.2968119978904724, + "learning_rate": 0.0006, + "loss": 4.3317670822143555, + "step": 822 + }, + { + "epoch": 11.433377020532983, + "grad_norm": 0.3280937969684601, + "learning_rate": 0.0006, + "loss": 4.322279453277588, + "step": 823 + }, + { + "epoch": 11.447356924421145, + "grad_norm": 0.3598847985267639, + "learning_rate": 0.0006, + "loss": 4.312255859375, + "step": 824 + }, + { + "epoch": 11.461336828309305, + "grad_norm": 0.3996485471725464, + "learning_rate": 0.0006, + "loss": 4.327103614807129, + "step": 825 + }, + { + "epoch": 11.475316732197467, + "grad_norm": 0.4352041780948639, + "learning_rate": 0.0006, + "loss": 4.368639945983887, + "step": 826 + }, + { + "epoch": 11.489296636085626, + "grad_norm": 0.4451918601989746, + "learning_rate": 0.0006, + "loss": 4.335113048553467, + "step": 827 + }, + { + "epoch": 11.503276539973788, + "grad_norm": 0.4403933584690094, + "learning_rate": 0.0006, + "loss": 4.369889259338379, + "step": 828 + }, + { + "epoch": 11.517256443861948, + "grad_norm": 0.34862443804740906, + "learning_rate": 0.0006, + "loss": 4.316292762756348, + "step": 829 + }, + { + "epoch": 11.53123634775011, + "grad_norm": 0.3240634500980377, + "learning_rate": 0.0006, + "loss": 4.328078746795654, + "step": 830 + }, + { + "epoch": 11.54521625163827, + "grad_norm": 0.2445751428604126, + "learning_rate": 0.0006, + "loss": 4.291940689086914, + "step": 831 + }, + { + "epoch": 11.55919615552643, + "grad_norm": 0.24376554787158966, + "learning_rate": 0.0006, + "loss": 4.339217662811279, + "step": 832 + }, + { + "epoch": 11.57317605941459, + "grad_norm": 0.22419725358486176, + "learning_rate": 0.0006, + "loss": 4.2887468338012695, + "step": 833 + }, + { + "epoch": 11.587155963302752, + "grad_norm": 0.22318261861801147, + "learning_rate": 0.0006, + "loss": 4.298492908477783, + "step": 834 + }, + { + "epoch": 11.601135867190912, + "grad_norm": 0.2357342392206192, + "learning_rate": 0.0006, + "loss": 4.328692436218262, + "step": 835 + }, + { + "epoch": 11.615115771079074, + "grad_norm": 0.25450602173805237, + "learning_rate": 0.0006, + "loss": 4.360058784484863, + "step": 836 + }, + { + "epoch": 11.629095674967235, + "grad_norm": 0.24540965259075165, + "learning_rate": 0.0006, + "loss": 4.311890602111816, + "step": 837 + }, + { + "epoch": 11.643075578855395, + "grad_norm": 0.2535638213157654, + "learning_rate": 0.0006, + "loss": 4.327730178833008, + "step": 838 + }, + { + "epoch": 11.657055482743557, + "grad_norm": 0.23063556849956512, + "learning_rate": 0.0006, + "loss": 4.303299903869629, + "step": 839 + }, + { + "epoch": 11.671035386631717, + "grad_norm": 0.21813632547855377, + "learning_rate": 0.0006, + "loss": 4.315352439880371, + "step": 840 + }, + { + "epoch": 11.685015290519878, + "grad_norm": 0.2170359194278717, + "learning_rate": 0.0006, + "loss": 4.278632164001465, + "step": 841 + }, + { + "epoch": 11.698995194408038, + "grad_norm": 0.21059377491474152, + "learning_rate": 0.0006, + "loss": 4.306049346923828, + "step": 842 + }, + { + "epoch": 11.7129750982962, + "grad_norm": 0.19872888922691345, + "learning_rate": 0.0006, + "loss": 4.3091535568237305, + "step": 843 + }, + { + "epoch": 11.72695500218436, + "grad_norm": 0.20059862732887268, + "learning_rate": 0.0006, + "loss": 4.2884063720703125, + "step": 844 + }, + { + "epoch": 11.740934906072521, + "grad_norm": 0.19952483475208282, + "learning_rate": 0.0006, + "loss": 4.293610572814941, + "step": 845 + }, + { + "epoch": 11.754914809960681, + "grad_norm": 0.19794537127017975, + "learning_rate": 0.0006, + "loss": 4.288822174072266, + "step": 846 + }, + { + "epoch": 11.768894713848843, + "grad_norm": 0.213914692401886, + "learning_rate": 0.0006, + "loss": 4.320849418640137, + "step": 847 + }, + { + "epoch": 11.782874617737003, + "grad_norm": 0.18500955402851105, + "learning_rate": 0.0006, + "loss": 4.29300594329834, + "step": 848 + }, + { + "epoch": 11.796854521625164, + "grad_norm": 0.19446656107902527, + "learning_rate": 0.0006, + "loss": 4.3079352378845215, + "step": 849 + }, + { + "epoch": 11.810834425513324, + "grad_norm": 0.22191768884658813, + "learning_rate": 0.0006, + "loss": 4.295967102050781, + "step": 850 + }, + { + "epoch": 11.824814329401486, + "grad_norm": 0.20748084783554077, + "learning_rate": 0.0006, + "loss": 4.332365989685059, + "step": 851 + }, + { + "epoch": 11.838794233289645, + "grad_norm": 0.20993955433368683, + "learning_rate": 0.0006, + "loss": 4.294618129730225, + "step": 852 + }, + { + "epoch": 11.852774137177807, + "grad_norm": 0.23506952822208405, + "learning_rate": 0.0006, + "loss": 4.313426971435547, + "step": 853 + }, + { + "epoch": 11.866754041065967, + "grad_norm": 0.2379443347454071, + "learning_rate": 0.0006, + "loss": 4.297664642333984, + "step": 854 + }, + { + "epoch": 11.880733944954128, + "grad_norm": 0.2127852737903595, + "learning_rate": 0.0006, + "loss": 4.2807698249816895, + "step": 855 + }, + { + "epoch": 11.89471384884229, + "grad_norm": 0.2125532180070877, + "learning_rate": 0.0006, + "loss": 4.310990333557129, + "step": 856 + }, + { + "epoch": 11.90869375273045, + "grad_norm": 0.1996062994003296, + "learning_rate": 0.0006, + "loss": 4.253237724304199, + "step": 857 + }, + { + "epoch": 11.922673656618612, + "grad_norm": 0.20747603476047516, + "learning_rate": 0.0006, + "loss": 4.294193267822266, + "step": 858 + }, + { + "epoch": 11.936653560506771, + "grad_norm": 0.24082425236701965, + "learning_rate": 0.0006, + "loss": 4.269967079162598, + "step": 859 + }, + { + "epoch": 11.950633464394933, + "grad_norm": 0.28993573784828186, + "learning_rate": 0.0006, + "loss": 4.294550895690918, + "step": 860 + }, + { + "epoch": 11.964613368283093, + "grad_norm": 0.29576948285102844, + "learning_rate": 0.0006, + "loss": 4.3188252449035645, + "step": 861 + }, + { + "epoch": 11.978593272171254, + "grad_norm": 0.2754935026168823, + "learning_rate": 0.0006, + "loss": 4.312817573547363, + "step": 862 + }, + { + "epoch": 11.992573176059414, + "grad_norm": 0.3062523305416107, + "learning_rate": 0.0006, + "loss": 4.288214683532715, + "step": 863 + }, + { + "epoch": 12.0, + "grad_norm": 0.3367644250392914, + "learning_rate": 0.0006, + "loss": 4.314888954162598, + "step": 864 + }, + { + "epoch": 12.0, + "eval_loss": 4.516861438751221, + "eval_runtime": 44.2584, + "eval_samples_per_second": 55.176, + "eval_steps_per_second": 3.457, + "step": 864 + }, + { + "epoch": 12.013979903888162, + "grad_norm": 0.2976512014865875, + "learning_rate": 0.0006, + "loss": 4.278797149658203, + "step": 865 + }, + { + "epoch": 12.027959807776321, + "grad_norm": 0.32217127084732056, + "learning_rate": 0.0006, + "loss": 4.2823615074157715, + "step": 866 + }, + { + "epoch": 12.041939711664483, + "grad_norm": 0.31538400053977966, + "learning_rate": 0.0006, + "loss": 4.252805709838867, + "step": 867 + }, + { + "epoch": 12.055919615552643, + "grad_norm": 0.3501375913619995, + "learning_rate": 0.0006, + "loss": 4.276501655578613, + "step": 868 + }, + { + "epoch": 12.069899519440805, + "grad_norm": 0.3452056646347046, + "learning_rate": 0.0006, + "loss": 4.275739669799805, + "step": 869 + }, + { + "epoch": 12.083879423328964, + "grad_norm": 0.36963316798210144, + "learning_rate": 0.0006, + "loss": 4.3215227127075195, + "step": 870 + }, + { + "epoch": 12.097859327217126, + "grad_norm": 0.41605016589164734, + "learning_rate": 0.0006, + "loss": 4.28739595413208, + "step": 871 + }, + { + "epoch": 12.111839231105286, + "grad_norm": 0.37700653076171875, + "learning_rate": 0.0006, + "loss": 4.291154861450195, + "step": 872 + }, + { + "epoch": 12.125819134993447, + "grad_norm": 0.3194253444671631, + "learning_rate": 0.0006, + "loss": 4.259326934814453, + "step": 873 + }, + { + "epoch": 12.139799038881607, + "grad_norm": 0.31770631670951843, + "learning_rate": 0.0006, + "loss": 4.270082473754883, + "step": 874 + }, + { + "epoch": 12.153778942769769, + "grad_norm": 0.3748120069503784, + "learning_rate": 0.0006, + "loss": 4.2727274894714355, + "step": 875 + }, + { + "epoch": 12.167758846657929, + "grad_norm": 0.3821348547935486, + "learning_rate": 0.0006, + "loss": 4.2848286628723145, + "step": 876 + }, + { + "epoch": 12.18173875054609, + "grad_norm": 0.31894201040267944, + "learning_rate": 0.0006, + "loss": 4.289551258087158, + "step": 877 + }, + { + "epoch": 12.19571865443425, + "grad_norm": 0.2695826292037964, + "learning_rate": 0.0006, + "loss": 4.2797346115112305, + "step": 878 + }, + { + "epoch": 12.209698558322412, + "grad_norm": 0.23966269195079803, + "learning_rate": 0.0006, + "loss": 4.24021577835083, + "step": 879 + }, + { + "epoch": 12.223678462210572, + "grad_norm": 0.24342599511146545, + "learning_rate": 0.0006, + "loss": 4.277721881866455, + "step": 880 + }, + { + "epoch": 12.237658366098733, + "grad_norm": 0.2522958815097809, + "learning_rate": 0.0006, + "loss": 4.263946533203125, + "step": 881 + }, + { + "epoch": 12.251638269986893, + "grad_norm": 0.2708299458026886, + "learning_rate": 0.0006, + "loss": 4.274540901184082, + "step": 882 + }, + { + "epoch": 12.265618173875055, + "grad_norm": 0.2978788912296295, + "learning_rate": 0.0006, + "loss": 4.2674970626831055, + "step": 883 + }, + { + "epoch": 12.279598077763215, + "grad_norm": 0.2898774743080139, + "learning_rate": 0.0006, + "loss": 4.235060691833496, + "step": 884 + }, + { + "epoch": 12.293577981651376, + "grad_norm": 0.27941837906837463, + "learning_rate": 0.0006, + "loss": 4.284140586853027, + "step": 885 + }, + { + "epoch": 12.307557885539538, + "grad_norm": 0.25050559639930725, + "learning_rate": 0.0006, + "loss": 4.270134925842285, + "step": 886 + }, + { + "epoch": 12.321537789427698, + "grad_norm": 0.21867156028747559, + "learning_rate": 0.0006, + "loss": 4.241571426391602, + "step": 887 + }, + { + "epoch": 12.33551769331586, + "grad_norm": 0.24735847115516663, + "learning_rate": 0.0006, + "loss": 4.253087997436523, + "step": 888 + }, + { + "epoch": 12.349497597204019, + "grad_norm": 0.23069104552268982, + "learning_rate": 0.0006, + "loss": 4.258606910705566, + "step": 889 + }, + { + "epoch": 12.36347750109218, + "grad_norm": 0.2594369947910309, + "learning_rate": 0.0006, + "loss": 4.307351112365723, + "step": 890 + }, + { + "epoch": 12.37745740498034, + "grad_norm": 0.25349098443984985, + "learning_rate": 0.0006, + "loss": 4.264268398284912, + "step": 891 + }, + { + "epoch": 12.391437308868502, + "grad_norm": 0.2550840675830841, + "learning_rate": 0.0006, + "loss": 4.247092247009277, + "step": 892 + }, + { + "epoch": 12.405417212756662, + "grad_norm": 0.2107602059841156, + "learning_rate": 0.0006, + "loss": 4.240527153015137, + "step": 893 + }, + { + "epoch": 12.419397116644824, + "grad_norm": 0.2025548368692398, + "learning_rate": 0.0006, + "loss": 4.244686126708984, + "step": 894 + }, + { + "epoch": 12.433377020532983, + "grad_norm": 0.22061701118946075, + "learning_rate": 0.0006, + "loss": 4.233231544494629, + "step": 895 + }, + { + "epoch": 12.447356924421145, + "grad_norm": 0.19503085315227509, + "learning_rate": 0.0006, + "loss": 4.23851203918457, + "step": 896 + }, + { + "epoch": 12.461336828309305, + "grad_norm": 0.19313643872737885, + "learning_rate": 0.0006, + "loss": 4.190886497497559, + "step": 897 + }, + { + "epoch": 12.475316732197467, + "grad_norm": 0.21094176173210144, + "learning_rate": 0.0006, + "loss": 4.277888298034668, + "step": 898 + }, + { + "epoch": 12.489296636085626, + "grad_norm": 0.1980651170015335, + "learning_rate": 0.0006, + "loss": 4.251066207885742, + "step": 899 + }, + { + "epoch": 12.503276539973788, + "grad_norm": 0.179737389087677, + "learning_rate": 0.0006, + "loss": 4.194703102111816, + "step": 900 + }, + { + "epoch": 12.517256443861948, + "grad_norm": 0.19069281220436096, + "learning_rate": 0.0006, + "loss": 4.242412567138672, + "step": 901 + }, + { + "epoch": 12.53123634775011, + "grad_norm": 0.191154345870018, + "learning_rate": 0.0006, + "loss": 4.2432780265808105, + "step": 902 + }, + { + "epoch": 12.54521625163827, + "grad_norm": 0.19760103523731232, + "learning_rate": 0.0006, + "loss": 4.23294734954834, + "step": 903 + }, + { + "epoch": 12.55919615552643, + "grad_norm": 0.19982324540615082, + "learning_rate": 0.0006, + "loss": 4.249764442443848, + "step": 904 + }, + { + "epoch": 12.57317605941459, + "grad_norm": 0.1986108422279358, + "learning_rate": 0.0006, + "loss": 4.213435649871826, + "step": 905 + }, + { + "epoch": 12.587155963302752, + "grad_norm": 0.19727319478988647, + "learning_rate": 0.0006, + "loss": 4.247962951660156, + "step": 906 + }, + { + "epoch": 12.601135867190912, + "grad_norm": 0.23404482007026672, + "learning_rate": 0.0006, + "loss": 4.237396240234375, + "step": 907 + }, + { + "epoch": 12.615115771079074, + "grad_norm": 0.21136441826820374, + "learning_rate": 0.0006, + "loss": 4.236040115356445, + "step": 908 + }, + { + "epoch": 12.629095674967235, + "grad_norm": 0.2209048718214035, + "learning_rate": 0.0006, + "loss": 4.234212875366211, + "step": 909 + }, + { + "epoch": 12.643075578855395, + "grad_norm": 0.22120307385921478, + "learning_rate": 0.0006, + "loss": 4.2711076736450195, + "step": 910 + }, + { + "epoch": 12.657055482743557, + "grad_norm": 0.22733066976070404, + "learning_rate": 0.0006, + "loss": 4.231651306152344, + "step": 911 + }, + { + "epoch": 12.671035386631717, + "grad_norm": 0.2435602843761444, + "learning_rate": 0.0006, + "loss": 4.249372482299805, + "step": 912 + }, + { + "epoch": 12.685015290519878, + "grad_norm": 0.28881654143333435, + "learning_rate": 0.0006, + "loss": 4.2626051902771, + "step": 913 + }, + { + "epoch": 12.698995194408038, + "grad_norm": 0.3211199641227722, + "learning_rate": 0.0006, + "loss": 4.254220485687256, + "step": 914 + }, + { + "epoch": 12.7129750982962, + "grad_norm": 0.3118100166320801, + "learning_rate": 0.0006, + "loss": 4.233747959136963, + "step": 915 + }, + { + "epoch": 12.72695500218436, + "grad_norm": 0.33411866426467896, + "learning_rate": 0.0006, + "loss": 4.270386219024658, + "step": 916 + }, + { + "epoch": 12.740934906072521, + "grad_norm": 0.2968253195285797, + "learning_rate": 0.0006, + "loss": 4.242254257202148, + "step": 917 + }, + { + "epoch": 12.754914809960681, + "grad_norm": 0.2959132194519043, + "learning_rate": 0.0006, + "loss": 4.232100486755371, + "step": 918 + }, + { + "epoch": 12.768894713848843, + "grad_norm": 0.2729283273220062, + "learning_rate": 0.0006, + "loss": 4.233869552612305, + "step": 919 + }, + { + "epoch": 12.782874617737003, + "grad_norm": 0.2669033408164978, + "learning_rate": 0.0006, + "loss": 4.261008262634277, + "step": 920 + }, + { + "epoch": 12.796854521625164, + "grad_norm": 0.2738507091999054, + "learning_rate": 0.0006, + "loss": 4.2286763191223145, + "step": 921 + }, + { + "epoch": 12.810834425513324, + "grad_norm": 0.29105183482170105, + "learning_rate": 0.0006, + "loss": 4.281410217285156, + "step": 922 + }, + { + "epoch": 12.824814329401486, + "grad_norm": 0.31330201029777527, + "learning_rate": 0.0006, + "loss": 4.264181613922119, + "step": 923 + }, + { + "epoch": 12.838794233289645, + "grad_norm": 0.31324025988578796, + "learning_rate": 0.0006, + "loss": 4.250385284423828, + "step": 924 + }, + { + "epoch": 12.852774137177807, + "grad_norm": 0.2727925181388855, + "learning_rate": 0.0006, + "loss": 4.24821138381958, + "step": 925 + }, + { + "epoch": 12.866754041065967, + "grad_norm": 0.27350082993507385, + "learning_rate": 0.0006, + "loss": 4.230215072631836, + "step": 926 + }, + { + "epoch": 12.880733944954128, + "grad_norm": 0.2269950658082962, + "learning_rate": 0.0006, + "loss": 4.210305213928223, + "step": 927 + }, + { + "epoch": 12.89471384884229, + "grad_norm": 0.24667619168758392, + "learning_rate": 0.0006, + "loss": 4.239969253540039, + "step": 928 + }, + { + "epoch": 12.90869375273045, + "grad_norm": 0.22510501742362976, + "learning_rate": 0.0006, + "loss": 4.192750930786133, + "step": 929 + }, + { + "epoch": 12.922673656618612, + "grad_norm": 0.22887611389160156, + "learning_rate": 0.0006, + "loss": 4.264463424682617, + "step": 930 + }, + { + "epoch": 12.936653560506771, + "grad_norm": 0.22195978462696075, + "learning_rate": 0.0006, + "loss": 4.205256938934326, + "step": 931 + }, + { + "epoch": 12.950633464394933, + "grad_norm": 0.23184578120708466, + "learning_rate": 0.0006, + "loss": 4.214578628540039, + "step": 932 + }, + { + "epoch": 12.964613368283093, + "grad_norm": 0.2186676561832428, + "learning_rate": 0.0006, + "loss": 4.227711200714111, + "step": 933 + }, + { + "epoch": 12.978593272171254, + "grad_norm": 0.2160426527261734, + "learning_rate": 0.0006, + "loss": 4.221796989440918, + "step": 934 + }, + { + "epoch": 12.992573176059414, + "grad_norm": 0.21562792360782623, + "learning_rate": 0.0006, + "loss": 4.21957540512085, + "step": 935 + }, + { + "epoch": 13.0, + "grad_norm": 0.22538058459758759, + "learning_rate": 0.0006, + "loss": 4.2353973388671875, + "step": 936 + }, + { + "epoch": 13.0, + "eval_loss": 4.426600933074951, + "eval_runtime": 44.8138, + "eval_samples_per_second": 54.492, + "eval_steps_per_second": 3.414, + "step": 936 + }, + { + "epoch": 13.013979903888162, + "grad_norm": 0.24888049066066742, + "learning_rate": 0.0006, + "loss": 4.18648624420166, + "step": 937 + }, + { + "epoch": 13.027959807776321, + "grad_norm": 0.28330180048942566, + "learning_rate": 0.0006, + "loss": 4.188892364501953, + "step": 938 + }, + { + "epoch": 13.041939711664483, + "grad_norm": 0.31152188777923584, + "learning_rate": 0.0006, + "loss": 4.2053399085998535, + "step": 939 + }, + { + "epoch": 13.055919615552643, + "grad_norm": 0.2842433452606201, + "learning_rate": 0.0006, + "loss": 4.191902160644531, + "step": 940 + }, + { + "epoch": 13.069899519440805, + "grad_norm": 0.23664532601833344, + "learning_rate": 0.0006, + "loss": 4.1831865310668945, + "step": 941 + }, + { + "epoch": 13.083879423328964, + "grad_norm": 0.24204140901565552, + "learning_rate": 0.0006, + "loss": 4.202641487121582, + "step": 942 + }, + { + "epoch": 13.097859327217126, + "grad_norm": 0.235311359167099, + "learning_rate": 0.0006, + "loss": 4.174511909484863, + "step": 943 + }, + { + "epoch": 13.111839231105286, + "grad_norm": 0.27127715945243835, + "learning_rate": 0.0006, + "loss": 4.201844215393066, + "step": 944 + }, + { + "epoch": 13.125819134993447, + "grad_norm": 0.2722373604774475, + "learning_rate": 0.0006, + "loss": 4.157383918762207, + "step": 945 + }, + { + "epoch": 13.139799038881607, + "grad_norm": 0.25446659326553345, + "learning_rate": 0.0006, + "loss": 4.221236228942871, + "step": 946 + }, + { + "epoch": 13.153778942769769, + "grad_norm": 0.273017019033432, + "learning_rate": 0.0006, + "loss": 4.195512771606445, + "step": 947 + }, + { + "epoch": 13.167758846657929, + "grad_norm": 0.24766312539577484, + "learning_rate": 0.0006, + "loss": 4.220959663391113, + "step": 948 + }, + { + "epoch": 13.18173875054609, + "grad_norm": 0.24636317789554596, + "learning_rate": 0.0006, + "loss": 4.214302062988281, + "step": 949 + }, + { + "epoch": 13.19571865443425, + "grad_norm": 0.3177756667137146, + "learning_rate": 0.0006, + "loss": 4.213500022888184, + "step": 950 + }, + { + "epoch": 13.209698558322412, + "grad_norm": 0.44579195976257324, + "learning_rate": 0.0006, + "loss": 4.227644920349121, + "step": 951 + }, + { + "epoch": 13.223678462210572, + "grad_norm": 0.4217414855957031, + "learning_rate": 0.0006, + "loss": 4.180937767028809, + "step": 952 + }, + { + "epoch": 13.237658366098733, + "grad_norm": 0.30148059129714966, + "learning_rate": 0.0006, + "loss": 4.207760810852051, + "step": 953 + }, + { + "epoch": 13.251638269986893, + "grad_norm": 0.3192492127418518, + "learning_rate": 0.0006, + "loss": 4.197999000549316, + "step": 954 + }, + { + "epoch": 13.265618173875055, + "grad_norm": 0.37334588170051575, + "learning_rate": 0.0006, + "loss": 4.208001136779785, + "step": 955 + }, + { + "epoch": 13.279598077763215, + "grad_norm": 0.4059637784957886, + "learning_rate": 0.0006, + "loss": 4.211322784423828, + "step": 956 + }, + { + "epoch": 13.293577981651376, + "grad_norm": 0.3389599323272705, + "learning_rate": 0.0006, + "loss": 4.204404354095459, + "step": 957 + }, + { + "epoch": 13.307557885539538, + "grad_norm": 0.2675766050815582, + "learning_rate": 0.0006, + "loss": 4.245941162109375, + "step": 958 + }, + { + "epoch": 13.321537789427698, + "grad_norm": 0.2730264365673065, + "learning_rate": 0.0006, + "loss": 4.2221221923828125, + "step": 959 + }, + { + "epoch": 13.33551769331586, + "grad_norm": 0.26458224654197693, + "learning_rate": 0.0006, + "loss": 4.205596923828125, + "step": 960 + }, + { + "epoch": 13.349497597204019, + "grad_norm": 0.2872551381587982, + "learning_rate": 0.0006, + "loss": 4.196977615356445, + "step": 961 + }, + { + "epoch": 13.36347750109218, + "grad_norm": 0.2954796850681305, + "learning_rate": 0.0006, + "loss": 4.202796936035156, + "step": 962 + }, + { + "epoch": 13.37745740498034, + "grad_norm": 0.2619425654411316, + "learning_rate": 0.0006, + "loss": 4.196845054626465, + "step": 963 + }, + { + "epoch": 13.391437308868502, + "grad_norm": 0.30088478326797485, + "learning_rate": 0.0006, + "loss": 4.219697952270508, + "step": 964 + }, + { + "epoch": 13.405417212756662, + "grad_norm": 0.30388689041137695, + "learning_rate": 0.0006, + "loss": 4.187566757202148, + "step": 965 + }, + { + "epoch": 13.419397116644824, + "grad_norm": 0.27918127179145813, + "learning_rate": 0.0006, + "loss": 4.223600387573242, + "step": 966 + }, + { + "epoch": 13.433377020532983, + "grad_norm": 0.27634528279304504, + "learning_rate": 0.0006, + "loss": 4.165332317352295, + "step": 967 + }, + { + "epoch": 13.447356924421145, + "grad_norm": 0.28830021619796753, + "learning_rate": 0.0006, + "loss": 4.204029560089111, + "step": 968 + }, + { + "epoch": 13.461336828309305, + "grad_norm": 0.29220864176750183, + "learning_rate": 0.0006, + "loss": 4.218057155609131, + "step": 969 + }, + { + "epoch": 13.475316732197467, + "grad_norm": 0.3089624345302582, + "learning_rate": 0.0006, + "loss": 4.200654983520508, + "step": 970 + }, + { + "epoch": 13.489296636085626, + "grad_norm": 0.36479851603507996, + "learning_rate": 0.0006, + "loss": 4.182811737060547, + "step": 971 + }, + { + "epoch": 13.503276539973788, + "grad_norm": 0.37561097741127014, + "learning_rate": 0.0006, + "loss": 4.190266132354736, + "step": 972 + }, + { + "epoch": 13.517256443861948, + "grad_norm": 0.3263583183288574, + "learning_rate": 0.0006, + "loss": 4.214815616607666, + "step": 973 + }, + { + "epoch": 13.53123634775011, + "grad_norm": 0.21552999317646027, + "learning_rate": 0.0006, + "loss": 4.171380043029785, + "step": 974 + }, + { + "epoch": 13.54521625163827, + "grad_norm": 0.247328519821167, + "learning_rate": 0.0006, + "loss": 4.175377368927002, + "step": 975 + }, + { + "epoch": 13.55919615552643, + "grad_norm": 0.23740540444850922, + "learning_rate": 0.0006, + "loss": 4.212357997894287, + "step": 976 + }, + { + "epoch": 13.57317605941459, + "grad_norm": 0.21533876657485962, + "learning_rate": 0.0006, + "loss": 4.203285217285156, + "step": 977 + }, + { + "epoch": 13.587155963302752, + "grad_norm": 0.21462024748325348, + "learning_rate": 0.0006, + "loss": 4.178012371063232, + "step": 978 + }, + { + "epoch": 13.601135867190912, + "grad_norm": 0.2279169261455536, + "learning_rate": 0.0006, + "loss": 4.193912982940674, + "step": 979 + }, + { + "epoch": 13.615115771079074, + "grad_norm": 0.2202417552471161, + "learning_rate": 0.0006, + "loss": 4.167629718780518, + "step": 980 + }, + { + "epoch": 13.629095674967235, + "grad_norm": 0.20586472749710083, + "learning_rate": 0.0006, + "loss": 4.159290313720703, + "step": 981 + }, + { + "epoch": 13.643075578855395, + "grad_norm": 0.20200690627098083, + "learning_rate": 0.0006, + "loss": 4.210315227508545, + "step": 982 + }, + { + "epoch": 13.657055482743557, + "grad_norm": 0.21710257232189178, + "learning_rate": 0.0006, + "loss": 4.21730375289917, + "step": 983 + }, + { + "epoch": 13.671035386631717, + "grad_norm": 0.22058045864105225, + "learning_rate": 0.0006, + "loss": 4.1996073722839355, + "step": 984 + }, + { + "epoch": 13.685015290519878, + "grad_norm": 0.21549592912197113, + "learning_rate": 0.0006, + "loss": 4.209203720092773, + "step": 985 + }, + { + "epoch": 13.698995194408038, + "grad_norm": 0.22274717688560486, + "learning_rate": 0.0006, + "loss": 4.220660209655762, + "step": 986 + }, + { + "epoch": 13.7129750982962, + "grad_norm": 0.22791637480258942, + "learning_rate": 0.0006, + "loss": 4.158679962158203, + "step": 987 + }, + { + "epoch": 13.72695500218436, + "grad_norm": 0.216218963265419, + "learning_rate": 0.0006, + "loss": 4.188124656677246, + "step": 988 + }, + { + "epoch": 13.740934906072521, + "grad_norm": 0.19149383902549744, + "learning_rate": 0.0006, + "loss": 4.181729316711426, + "step": 989 + }, + { + "epoch": 13.754914809960681, + "grad_norm": 0.18964019417762756, + "learning_rate": 0.0006, + "loss": 4.184767246246338, + "step": 990 + }, + { + "epoch": 13.768894713848843, + "grad_norm": 0.1778000295162201, + "learning_rate": 0.0006, + "loss": 4.1802263259887695, + "step": 991 + }, + { + "epoch": 13.782874617737003, + "grad_norm": 0.18277616798877716, + "learning_rate": 0.0006, + "loss": 4.1657867431640625, + "step": 992 + }, + { + "epoch": 13.796854521625164, + "grad_norm": 0.18610034883022308, + "learning_rate": 0.0006, + "loss": 4.156744956970215, + "step": 993 + }, + { + "epoch": 13.810834425513324, + "grad_norm": 0.19332963228225708, + "learning_rate": 0.0006, + "loss": 4.143558502197266, + "step": 994 + }, + { + "epoch": 13.824814329401486, + "grad_norm": 0.19758112728595734, + "learning_rate": 0.0006, + "loss": 4.195793151855469, + "step": 995 + }, + { + "epoch": 13.838794233289645, + "grad_norm": 0.1933647245168686, + "learning_rate": 0.0006, + "loss": 4.169734954833984, + "step": 996 + }, + { + "epoch": 13.852774137177807, + "grad_norm": 0.2362028956413269, + "learning_rate": 0.0006, + "loss": 4.175025939941406, + "step": 997 + }, + { + "epoch": 13.866754041065967, + "grad_norm": 0.2465490996837616, + "learning_rate": 0.0006, + "loss": 4.173909664154053, + "step": 998 + }, + { + "epoch": 13.880733944954128, + "grad_norm": 0.23449952900409698, + "learning_rate": 0.0006, + "loss": 4.173429489135742, + "step": 999 + }, + { + "epoch": 13.89471384884229, + "grad_norm": 0.2282160222530365, + "learning_rate": 0.0006, + "loss": 4.158538341522217, + "step": 1000 + }, + { + "epoch": 13.90869375273045, + "grad_norm": 0.21066738665103912, + "learning_rate": 0.0006, + "loss": 4.171584129333496, + "step": 1001 + }, + { + "epoch": 13.922673656618612, + "grad_norm": 0.18787573277950287, + "learning_rate": 0.0006, + "loss": 4.1837544441223145, + "step": 1002 + }, + { + "epoch": 13.936653560506771, + "grad_norm": 0.2001059353351593, + "learning_rate": 0.0006, + "loss": 4.160369873046875, + "step": 1003 + }, + { + "epoch": 13.950633464394933, + "grad_norm": 0.21644988656044006, + "learning_rate": 0.0006, + "loss": 4.221372604370117, + "step": 1004 + }, + { + "epoch": 13.964613368283093, + "grad_norm": 0.22083887457847595, + "learning_rate": 0.0006, + "loss": 4.149261474609375, + "step": 1005 + }, + { + "epoch": 13.978593272171254, + "grad_norm": 0.2201409637928009, + "learning_rate": 0.0006, + "loss": 4.192010879516602, + "step": 1006 + }, + { + "epoch": 13.992573176059414, + "grad_norm": 0.18888601660728455, + "learning_rate": 0.0006, + "loss": 4.17539119720459, + "step": 1007 + }, + { + "epoch": 14.0, + "grad_norm": 0.2073872834444046, + "learning_rate": 0.0006, + "loss": 4.145265579223633, + "step": 1008 + }, + { + "epoch": 14.0, + "eval_loss": 4.36876106262207, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 1008 + }, + { + "epoch": 14.013979903888162, + "grad_norm": 0.20773135125637054, + "learning_rate": 0.0006, + "loss": 4.132615089416504, + "step": 1009 + }, + { + "epoch": 14.027959807776321, + "grad_norm": 0.22409620881080627, + "learning_rate": 0.0006, + "loss": 4.172839164733887, + "step": 1010 + }, + { + "epoch": 14.041939711664483, + "grad_norm": 0.24046066403388977, + "learning_rate": 0.0006, + "loss": 4.126678943634033, + "step": 1011 + }, + { + "epoch": 14.055919615552643, + "grad_norm": 0.29185160994529724, + "learning_rate": 0.0006, + "loss": 4.177952766418457, + "step": 1012 + }, + { + "epoch": 14.069899519440805, + "grad_norm": 0.2984033226966858, + "learning_rate": 0.0006, + "loss": 4.155030250549316, + "step": 1013 + }, + { + "epoch": 14.083879423328964, + "grad_norm": 0.30262473225593567, + "learning_rate": 0.0006, + "loss": 4.145394325256348, + "step": 1014 + }, + { + "epoch": 14.097859327217126, + "grad_norm": 0.3278133273124695, + "learning_rate": 0.0006, + "loss": 4.172739028930664, + "step": 1015 + }, + { + "epoch": 14.111839231105286, + "grad_norm": 0.3285452425479889, + "learning_rate": 0.0006, + "loss": 4.153196334838867, + "step": 1016 + }, + { + "epoch": 14.125819134993447, + "grad_norm": 0.33912697434425354, + "learning_rate": 0.0006, + "loss": 4.098162651062012, + "step": 1017 + }, + { + "epoch": 14.139799038881607, + "grad_norm": 0.32080814242362976, + "learning_rate": 0.0006, + "loss": 4.157135009765625, + "step": 1018 + }, + { + "epoch": 14.153778942769769, + "grad_norm": 0.31288477778434753, + "learning_rate": 0.0006, + "loss": 4.142683029174805, + "step": 1019 + }, + { + "epoch": 14.167758846657929, + "grad_norm": 0.350289523601532, + "learning_rate": 0.0006, + "loss": 4.134700775146484, + "step": 1020 + }, + { + "epoch": 14.18173875054609, + "grad_norm": 0.34274575114250183, + "learning_rate": 0.0006, + "loss": 4.1578569412231445, + "step": 1021 + }, + { + "epoch": 14.19571865443425, + "grad_norm": 0.2843035161495209, + "learning_rate": 0.0006, + "loss": 4.13760232925415, + "step": 1022 + }, + { + "epoch": 14.209698558322412, + "grad_norm": 0.28235161304473877, + "learning_rate": 0.0006, + "loss": 4.1492462158203125, + "step": 1023 + }, + { + "epoch": 14.223678462210572, + "grad_norm": 0.24407248198986053, + "learning_rate": 0.0006, + "loss": 4.144372463226318, + "step": 1024 + }, + { + "epoch": 14.237658366098733, + "grad_norm": 0.2489742934703827, + "learning_rate": 0.0006, + "loss": 4.137950897216797, + "step": 1025 + }, + { + "epoch": 14.251638269986893, + "grad_norm": 0.26035651564598083, + "learning_rate": 0.0006, + "loss": 4.144070625305176, + "step": 1026 + }, + { + "epoch": 14.265618173875055, + "grad_norm": 0.2726516127586365, + "learning_rate": 0.0006, + "loss": 4.145204067230225, + "step": 1027 + }, + { + "epoch": 14.279598077763215, + "grad_norm": 0.2723483443260193, + "learning_rate": 0.0006, + "loss": 4.118407249450684, + "step": 1028 + }, + { + "epoch": 14.293577981651376, + "grad_norm": 0.27476269006729126, + "learning_rate": 0.0006, + "loss": 4.111325263977051, + "step": 1029 + }, + { + "epoch": 14.307557885539538, + "grad_norm": 0.26202502846717834, + "learning_rate": 0.0006, + "loss": 4.122248649597168, + "step": 1030 + }, + { + "epoch": 14.321537789427698, + "grad_norm": 0.2472032904624939, + "learning_rate": 0.0006, + "loss": 4.157790184020996, + "step": 1031 + }, + { + "epoch": 14.33551769331586, + "grad_norm": 0.2518343925476074, + "learning_rate": 0.0006, + "loss": 4.109132766723633, + "step": 1032 + }, + { + "epoch": 14.349497597204019, + "grad_norm": 0.2652401924133301, + "learning_rate": 0.0006, + "loss": 4.144079685211182, + "step": 1033 + }, + { + "epoch": 14.36347750109218, + "grad_norm": 0.2356770783662796, + "learning_rate": 0.0006, + "loss": 4.128426551818848, + "step": 1034 + }, + { + "epoch": 14.37745740498034, + "grad_norm": 0.2164214551448822, + "learning_rate": 0.0006, + "loss": 4.1644392013549805, + "step": 1035 + }, + { + "epoch": 14.391437308868502, + "grad_norm": 0.22383111715316772, + "learning_rate": 0.0006, + "loss": 4.165862083435059, + "step": 1036 + }, + { + "epoch": 14.405417212756662, + "grad_norm": 0.23152419924736023, + "learning_rate": 0.0006, + "loss": 4.140036582946777, + "step": 1037 + }, + { + "epoch": 14.419397116644824, + "grad_norm": 0.2387741357088089, + "learning_rate": 0.0006, + "loss": 4.130461692810059, + "step": 1038 + }, + { + "epoch": 14.433377020532983, + "grad_norm": 0.24018129706382751, + "learning_rate": 0.0006, + "loss": 4.148482322692871, + "step": 1039 + }, + { + "epoch": 14.447356924421145, + "grad_norm": 0.25487351417541504, + "learning_rate": 0.0006, + "loss": 4.158121109008789, + "step": 1040 + }, + { + "epoch": 14.461336828309305, + "grad_norm": 0.28220096230506897, + "learning_rate": 0.0006, + "loss": 4.160198211669922, + "step": 1041 + }, + { + "epoch": 14.475316732197467, + "grad_norm": 0.2574434280395508, + "learning_rate": 0.0006, + "loss": 4.168512344360352, + "step": 1042 + }, + { + "epoch": 14.489296636085626, + "grad_norm": 0.22569820284843445, + "learning_rate": 0.0006, + "loss": 4.1595001220703125, + "step": 1043 + }, + { + "epoch": 14.503276539973788, + "grad_norm": 0.2473423182964325, + "learning_rate": 0.0006, + "loss": 4.084580898284912, + "step": 1044 + }, + { + "epoch": 14.517256443861948, + "grad_norm": 0.24281060695648193, + "learning_rate": 0.0006, + "loss": 4.139714241027832, + "step": 1045 + }, + { + "epoch": 14.53123634775011, + "grad_norm": 0.24691344797611237, + "learning_rate": 0.0006, + "loss": 4.115398406982422, + "step": 1046 + }, + { + "epoch": 14.54521625163827, + "grad_norm": 0.2583645284175873, + "learning_rate": 0.0006, + "loss": 4.142148494720459, + "step": 1047 + }, + { + "epoch": 14.55919615552643, + "grad_norm": 0.23258574306964874, + "learning_rate": 0.0006, + "loss": 4.16251277923584, + "step": 1048 + }, + { + "epoch": 14.57317605941459, + "grad_norm": 0.22103039920330048, + "learning_rate": 0.0006, + "loss": 4.1308441162109375, + "step": 1049 + }, + { + "epoch": 14.587155963302752, + "grad_norm": 0.23713579773902893, + "learning_rate": 0.0006, + "loss": 4.1565985679626465, + "step": 1050 + }, + { + "epoch": 14.601135867190912, + "grad_norm": 0.24406634271144867, + "learning_rate": 0.0006, + "loss": 4.14628267288208, + "step": 1051 + }, + { + "epoch": 14.615115771079074, + "grad_norm": 0.26821228861808777, + "learning_rate": 0.0006, + "loss": 4.138063430786133, + "step": 1052 + }, + { + "epoch": 14.629095674967235, + "grad_norm": 0.25483864545822144, + "learning_rate": 0.0006, + "loss": 4.1311163902282715, + "step": 1053 + }, + { + "epoch": 14.643075578855395, + "grad_norm": 0.23937982320785522, + "learning_rate": 0.0006, + "loss": 4.150882244110107, + "step": 1054 + }, + { + "epoch": 14.657055482743557, + "grad_norm": 0.21896475553512573, + "learning_rate": 0.0006, + "loss": 4.114015102386475, + "step": 1055 + }, + { + "epoch": 14.671035386631717, + "grad_norm": 0.20821231603622437, + "learning_rate": 0.0006, + "loss": 4.139034271240234, + "step": 1056 + }, + { + "epoch": 14.685015290519878, + "grad_norm": 0.1978551596403122, + "learning_rate": 0.0006, + "loss": 4.1810503005981445, + "step": 1057 + }, + { + "epoch": 14.698995194408038, + "grad_norm": 0.1945771872997284, + "learning_rate": 0.0006, + "loss": 4.120734214782715, + "step": 1058 + }, + { + "epoch": 14.7129750982962, + "grad_norm": 0.19518673419952393, + "learning_rate": 0.0006, + "loss": 4.14264440536499, + "step": 1059 + }, + { + "epoch": 14.72695500218436, + "grad_norm": 0.202596515417099, + "learning_rate": 0.0006, + "loss": 4.151649475097656, + "step": 1060 + }, + { + "epoch": 14.740934906072521, + "grad_norm": 0.1904762089252472, + "learning_rate": 0.0006, + "loss": 4.127899169921875, + "step": 1061 + }, + { + "epoch": 14.754914809960681, + "grad_norm": 0.20685508847236633, + "learning_rate": 0.0006, + "loss": 4.093445777893066, + "step": 1062 + }, + { + "epoch": 14.768894713848843, + "grad_norm": 0.22678329050540924, + "learning_rate": 0.0006, + "loss": 4.132084369659424, + "step": 1063 + }, + { + "epoch": 14.782874617737003, + "grad_norm": 0.24631841480731964, + "learning_rate": 0.0006, + "loss": 4.154788970947266, + "step": 1064 + }, + { + "epoch": 14.796854521625164, + "grad_norm": 0.24445782601833344, + "learning_rate": 0.0006, + "loss": 4.144735336303711, + "step": 1065 + }, + { + "epoch": 14.810834425513324, + "grad_norm": 0.22330640256404877, + "learning_rate": 0.0006, + "loss": 4.159893989562988, + "step": 1066 + }, + { + "epoch": 14.824814329401486, + "grad_norm": 0.22422967851161957, + "learning_rate": 0.0006, + "loss": 4.104874610900879, + "step": 1067 + }, + { + "epoch": 14.838794233289645, + "grad_norm": 0.24583931267261505, + "learning_rate": 0.0006, + "loss": 4.139403820037842, + "step": 1068 + }, + { + "epoch": 14.852774137177807, + "grad_norm": 0.2917379140853882, + "learning_rate": 0.0006, + "loss": 4.168988227844238, + "step": 1069 + }, + { + "epoch": 14.866754041065967, + "grad_norm": 0.3171777129173279, + "learning_rate": 0.0006, + "loss": 4.131263732910156, + "step": 1070 + }, + { + "epoch": 14.880733944954128, + "grad_norm": 0.3039591312408447, + "learning_rate": 0.0006, + "loss": 4.149853706359863, + "step": 1071 + }, + { + "epoch": 14.89471384884229, + "grad_norm": 0.2690650522708893, + "learning_rate": 0.0006, + "loss": 4.154787540435791, + "step": 1072 + }, + { + "epoch": 14.90869375273045, + "grad_norm": 0.28683212399482727, + "learning_rate": 0.0006, + "loss": 4.12751579284668, + "step": 1073 + }, + { + "epoch": 14.922673656618612, + "grad_norm": 0.30022913217544556, + "learning_rate": 0.0006, + "loss": 4.141940116882324, + "step": 1074 + }, + { + "epoch": 14.936653560506771, + "grad_norm": 0.3312259316444397, + "learning_rate": 0.0006, + "loss": 4.141905784606934, + "step": 1075 + }, + { + "epoch": 14.950633464394933, + "grad_norm": 0.31159237027168274, + "learning_rate": 0.0006, + "loss": 4.160192966461182, + "step": 1076 + }, + { + "epoch": 14.964613368283093, + "grad_norm": 0.30093592405319214, + "learning_rate": 0.0006, + "loss": 4.1085076332092285, + "step": 1077 + }, + { + "epoch": 14.978593272171254, + "grad_norm": 0.2728535830974579, + "learning_rate": 0.0006, + "loss": 4.156959056854248, + "step": 1078 + }, + { + "epoch": 14.992573176059414, + "grad_norm": 0.24766813218593597, + "learning_rate": 0.0006, + "loss": 4.113999843597412, + "step": 1079 + }, + { + "epoch": 15.0, + "grad_norm": 0.2538154721260071, + "learning_rate": 0.0006, + "loss": 4.147134780883789, + "step": 1080 + }, + { + "epoch": 15.0, + "eval_loss": 4.323154926300049, + "eval_runtime": 44.8813, + "eval_samples_per_second": 54.41, + "eval_steps_per_second": 3.409, + "step": 1080 + }, + { + "epoch": 15.013979903888162, + "grad_norm": 0.22535280883312225, + "learning_rate": 0.0006, + "loss": 4.112179756164551, + "step": 1081 + }, + { + "epoch": 15.027959807776321, + "grad_norm": 0.24340929090976715, + "learning_rate": 0.0006, + "loss": 4.080923080444336, + "step": 1082 + }, + { + "epoch": 15.041939711664483, + "grad_norm": 0.23159465193748474, + "learning_rate": 0.0006, + "loss": 4.097067356109619, + "step": 1083 + }, + { + "epoch": 15.055919615552643, + "grad_norm": 0.22674769163131714, + "learning_rate": 0.0006, + "loss": 4.118601322174072, + "step": 1084 + }, + { + "epoch": 15.069899519440805, + "grad_norm": 0.2524292469024658, + "learning_rate": 0.0006, + "loss": 4.101109504699707, + "step": 1085 + }, + { + "epoch": 15.083879423328964, + "grad_norm": 0.2505405843257904, + "learning_rate": 0.0006, + "loss": 4.121405601501465, + "step": 1086 + }, + { + "epoch": 15.097859327217126, + "grad_norm": 0.2557983696460724, + "learning_rate": 0.0006, + "loss": 4.1063947677612305, + "step": 1087 + }, + { + "epoch": 15.111839231105286, + "grad_norm": 0.24452129006385803, + "learning_rate": 0.0006, + "loss": 4.086133003234863, + "step": 1088 + }, + { + "epoch": 15.125819134993447, + "grad_norm": 0.25821781158447266, + "learning_rate": 0.0006, + "loss": 4.076262950897217, + "step": 1089 + }, + { + "epoch": 15.139799038881607, + "grad_norm": 0.23650537431240082, + "learning_rate": 0.0006, + "loss": 4.101842880249023, + "step": 1090 + }, + { + "epoch": 15.153778942769769, + "grad_norm": 0.2206192910671234, + "learning_rate": 0.0006, + "loss": 4.11027193069458, + "step": 1091 + }, + { + "epoch": 15.167758846657929, + "grad_norm": 0.21843163669109344, + "learning_rate": 0.0006, + "loss": 4.098437309265137, + "step": 1092 + }, + { + "epoch": 15.18173875054609, + "grad_norm": 0.2528176009654999, + "learning_rate": 0.0006, + "loss": 4.108713150024414, + "step": 1093 + }, + { + "epoch": 15.19571865443425, + "grad_norm": 0.26697206497192383, + "learning_rate": 0.0006, + "loss": 4.113210201263428, + "step": 1094 + }, + { + "epoch": 15.209698558322412, + "grad_norm": 0.26480963826179504, + "learning_rate": 0.0006, + "loss": 4.1103620529174805, + "step": 1095 + }, + { + "epoch": 15.223678462210572, + "grad_norm": 0.24887347221374512, + "learning_rate": 0.0006, + "loss": 4.103529930114746, + "step": 1096 + }, + { + "epoch": 15.237658366098733, + "grad_norm": 0.2344668060541153, + "learning_rate": 0.0006, + "loss": 4.129784107208252, + "step": 1097 + }, + { + "epoch": 15.251638269986893, + "grad_norm": 0.22639742493629456, + "learning_rate": 0.0006, + "loss": 4.113495349884033, + "step": 1098 + }, + { + "epoch": 15.265618173875055, + "grad_norm": 0.22466333210468292, + "learning_rate": 0.0006, + "loss": 4.102309703826904, + "step": 1099 + }, + { + "epoch": 15.279598077763215, + "grad_norm": 0.25135037302970886, + "learning_rate": 0.0006, + "loss": 4.117668628692627, + "step": 1100 + }, + { + "epoch": 15.293577981651376, + "grad_norm": 0.2347089946269989, + "learning_rate": 0.0006, + "loss": 4.086637496948242, + "step": 1101 + }, + { + "epoch": 15.307557885539538, + "grad_norm": 0.2347242832183838, + "learning_rate": 0.0006, + "loss": 4.098714828491211, + "step": 1102 + }, + { + "epoch": 15.321537789427698, + "grad_norm": 0.23990283906459808, + "learning_rate": 0.0006, + "loss": 4.079837799072266, + "step": 1103 + }, + { + "epoch": 15.33551769331586, + "grad_norm": 0.22366675734519958, + "learning_rate": 0.0006, + "loss": 4.108136177062988, + "step": 1104 + }, + { + "epoch": 15.349497597204019, + "grad_norm": 0.21823780238628387, + "learning_rate": 0.0006, + "loss": 4.10054349899292, + "step": 1105 + }, + { + "epoch": 15.36347750109218, + "grad_norm": 0.23059198260307312, + "learning_rate": 0.0006, + "loss": 4.108620643615723, + "step": 1106 + }, + { + "epoch": 15.37745740498034, + "grad_norm": 0.2313755601644516, + "learning_rate": 0.0006, + "loss": 4.088565826416016, + "step": 1107 + }, + { + "epoch": 15.391437308868502, + "grad_norm": 0.2546829283237457, + "learning_rate": 0.0006, + "loss": 4.104948043823242, + "step": 1108 + }, + { + "epoch": 15.405417212756662, + "grad_norm": 0.23666726052761078, + "learning_rate": 0.0006, + "loss": 4.111965179443359, + "step": 1109 + }, + { + "epoch": 15.419397116644824, + "grad_norm": 0.21971021592617035, + "learning_rate": 0.0006, + "loss": 4.097846984863281, + "step": 1110 + }, + { + "epoch": 15.433377020532983, + "grad_norm": 0.20951911807060242, + "learning_rate": 0.0006, + "loss": 4.110099792480469, + "step": 1111 + }, + { + "epoch": 15.447356924421145, + "grad_norm": 0.19590918719768524, + "learning_rate": 0.0006, + "loss": 4.101154327392578, + "step": 1112 + }, + { + "epoch": 15.461336828309305, + "grad_norm": 0.21048946678638458, + "learning_rate": 0.0006, + "loss": 4.0986127853393555, + "step": 1113 + }, + { + "epoch": 15.475316732197467, + "grad_norm": 0.21423374116420746, + "learning_rate": 0.0006, + "loss": 4.082328796386719, + "step": 1114 + }, + { + "epoch": 15.489296636085626, + "grad_norm": 0.227146714925766, + "learning_rate": 0.0006, + "loss": 4.105281829833984, + "step": 1115 + }, + { + "epoch": 15.503276539973788, + "grad_norm": 0.2079153060913086, + "learning_rate": 0.0006, + "loss": 4.100836753845215, + "step": 1116 + }, + { + "epoch": 15.517256443861948, + "grad_norm": 0.21084675192832947, + "learning_rate": 0.0006, + "loss": 4.0934343338012695, + "step": 1117 + }, + { + "epoch": 15.53123634775011, + "grad_norm": 0.23863616585731506, + "learning_rate": 0.0006, + "loss": 4.101540565490723, + "step": 1118 + }, + { + "epoch": 15.54521625163827, + "grad_norm": 0.2518490254878998, + "learning_rate": 0.0006, + "loss": 4.12303352355957, + "step": 1119 + }, + { + "epoch": 15.55919615552643, + "grad_norm": 0.24282905459403992, + "learning_rate": 0.0006, + "loss": 4.080670356750488, + "step": 1120 + }, + { + "epoch": 15.57317605941459, + "grad_norm": 0.24171605706214905, + "learning_rate": 0.0006, + "loss": 4.117938041687012, + "step": 1121 + }, + { + "epoch": 15.587155963302752, + "grad_norm": 0.28453412652015686, + "learning_rate": 0.0006, + "loss": 4.080114364624023, + "step": 1122 + }, + { + "epoch": 15.601135867190912, + "grad_norm": 0.30322617292404175, + "learning_rate": 0.0006, + "loss": 4.079695701599121, + "step": 1123 + }, + { + "epoch": 15.615115771079074, + "grad_norm": 0.2657633125782013, + "learning_rate": 0.0006, + "loss": 4.0916290283203125, + "step": 1124 + }, + { + "epoch": 15.629095674967235, + "grad_norm": 0.2467080056667328, + "learning_rate": 0.0006, + "loss": 4.095594882965088, + "step": 1125 + }, + { + "epoch": 15.643075578855395, + "grad_norm": 0.21767394244670868, + "learning_rate": 0.0006, + "loss": 4.079174041748047, + "step": 1126 + }, + { + "epoch": 15.657055482743557, + "grad_norm": 0.2088327705860138, + "learning_rate": 0.0006, + "loss": 4.060707092285156, + "step": 1127 + }, + { + "epoch": 15.671035386631717, + "grad_norm": 0.1921205073595047, + "learning_rate": 0.0006, + "loss": 4.073911666870117, + "step": 1128 + }, + { + "epoch": 15.685015290519878, + "grad_norm": 0.209339901804924, + "learning_rate": 0.0006, + "loss": 4.089954376220703, + "step": 1129 + }, + { + "epoch": 15.698995194408038, + "grad_norm": 0.23513881862163544, + "learning_rate": 0.0006, + "loss": 4.084906578063965, + "step": 1130 + }, + { + "epoch": 15.7129750982962, + "grad_norm": 0.26140275597572327, + "learning_rate": 0.0006, + "loss": 4.086570739746094, + "step": 1131 + }, + { + "epoch": 15.72695500218436, + "grad_norm": 0.290431946516037, + "learning_rate": 0.0006, + "loss": 4.071229457855225, + "step": 1132 + }, + { + "epoch": 15.740934906072521, + "grad_norm": 0.3061376214027405, + "learning_rate": 0.0006, + "loss": 4.103148460388184, + "step": 1133 + }, + { + "epoch": 15.754914809960681, + "grad_norm": 0.26312482357025146, + "learning_rate": 0.0006, + "loss": 4.088448524475098, + "step": 1134 + }, + { + "epoch": 15.768894713848843, + "grad_norm": 0.22474883496761322, + "learning_rate": 0.0006, + "loss": 4.091766834259033, + "step": 1135 + }, + { + "epoch": 15.782874617737003, + "grad_norm": 0.2341146171092987, + "learning_rate": 0.0006, + "loss": 4.1222758293151855, + "step": 1136 + }, + { + "epoch": 15.796854521625164, + "grad_norm": 0.23556149005889893, + "learning_rate": 0.0006, + "loss": 4.094954013824463, + "step": 1137 + }, + { + "epoch": 15.810834425513324, + "grad_norm": 0.263315349817276, + "learning_rate": 0.0006, + "loss": 4.1065473556518555, + "step": 1138 + }, + { + "epoch": 15.824814329401486, + "grad_norm": 0.2700869143009186, + "learning_rate": 0.0006, + "loss": 4.0890045166015625, + "step": 1139 + }, + { + "epoch": 15.838794233289645, + "grad_norm": 0.28697484731674194, + "learning_rate": 0.0006, + "loss": 4.092496395111084, + "step": 1140 + }, + { + "epoch": 15.852774137177807, + "grad_norm": 0.2824092507362366, + "learning_rate": 0.0006, + "loss": 4.079615592956543, + "step": 1141 + }, + { + "epoch": 15.866754041065967, + "grad_norm": 0.24547280371189117, + "learning_rate": 0.0006, + "loss": 4.089683532714844, + "step": 1142 + }, + { + "epoch": 15.880733944954128, + "grad_norm": 0.23653888702392578, + "learning_rate": 0.0006, + "loss": 4.067309379577637, + "step": 1143 + }, + { + "epoch": 15.89471384884229, + "grad_norm": 0.23784421384334564, + "learning_rate": 0.0006, + "loss": 4.09156608581543, + "step": 1144 + }, + { + "epoch": 15.90869375273045, + "grad_norm": 0.22753281891345978, + "learning_rate": 0.0006, + "loss": 4.095428466796875, + "step": 1145 + }, + { + "epoch": 15.922673656618612, + "grad_norm": 0.2464212030172348, + "learning_rate": 0.0006, + "loss": 4.1036376953125, + "step": 1146 + }, + { + "epoch": 15.936653560506771, + "grad_norm": 0.25531601905822754, + "learning_rate": 0.0006, + "loss": 4.073996543884277, + "step": 1147 + }, + { + "epoch": 15.950633464394933, + "grad_norm": 0.24145905673503876, + "learning_rate": 0.0006, + "loss": 4.094479560852051, + "step": 1148 + }, + { + "epoch": 15.964613368283093, + "grad_norm": 0.24274317920207977, + "learning_rate": 0.0006, + "loss": 4.101981163024902, + "step": 1149 + }, + { + "epoch": 15.978593272171254, + "grad_norm": 0.2350679188966751, + "learning_rate": 0.0006, + "loss": 4.057965278625488, + "step": 1150 + }, + { + "epoch": 15.992573176059414, + "grad_norm": 0.24072253704071045, + "learning_rate": 0.0006, + "loss": 4.020050048828125, + "step": 1151 + }, + { + "epoch": 16.0, + "grad_norm": 0.253978967666626, + "learning_rate": 0.0006, + "loss": 4.061928749084473, + "step": 1152 + }, + { + "epoch": 16.0, + "eval_loss": 4.270665645599365, + "eval_runtime": 44.5063, + "eval_samples_per_second": 54.869, + "eval_steps_per_second": 3.438, + "step": 1152 + }, + { + "epoch": 16.01397990388816, + "grad_norm": 0.3265204131603241, + "learning_rate": 0.0006, + "loss": 4.059116363525391, + "step": 1153 + }, + { + "epoch": 16.027959807776323, + "grad_norm": 0.34139737486839294, + "learning_rate": 0.0006, + "loss": 4.062219619750977, + "step": 1154 + }, + { + "epoch": 16.041939711664483, + "grad_norm": 0.2849949598312378, + "learning_rate": 0.0006, + "loss": 4.032323837280273, + "step": 1155 + }, + { + "epoch": 16.055919615552643, + "grad_norm": 0.25031402707099915, + "learning_rate": 0.0006, + "loss": 4.075527191162109, + "step": 1156 + }, + { + "epoch": 16.069899519440803, + "grad_norm": 0.25207436084747314, + "learning_rate": 0.0006, + "loss": 4.0883097648620605, + "step": 1157 + }, + { + "epoch": 16.083879423328966, + "grad_norm": 0.28677356243133545, + "learning_rate": 0.0006, + "loss": 4.040797233581543, + "step": 1158 + }, + { + "epoch": 16.097859327217126, + "grad_norm": 0.30778825283050537, + "learning_rate": 0.0006, + "loss": 4.051504135131836, + "step": 1159 + }, + { + "epoch": 16.111839231105286, + "grad_norm": 0.3136911988258362, + "learning_rate": 0.0006, + "loss": 4.045449256896973, + "step": 1160 + }, + { + "epoch": 16.125819134993446, + "grad_norm": 0.34384530782699585, + "learning_rate": 0.0006, + "loss": 4.069897651672363, + "step": 1161 + }, + { + "epoch": 16.13979903888161, + "grad_norm": 0.3074268400669098, + "learning_rate": 0.0006, + "loss": 4.0621137619018555, + "step": 1162 + }, + { + "epoch": 16.15377894276977, + "grad_norm": 0.33090949058532715, + "learning_rate": 0.0006, + "loss": 4.084089279174805, + "step": 1163 + }, + { + "epoch": 16.16775884665793, + "grad_norm": 0.26358580589294434, + "learning_rate": 0.0006, + "loss": 4.066563606262207, + "step": 1164 + }, + { + "epoch": 16.18173875054609, + "grad_norm": 0.25586041808128357, + "learning_rate": 0.0006, + "loss": 4.08109188079834, + "step": 1165 + }, + { + "epoch": 16.195718654434252, + "grad_norm": 0.2966184616088867, + "learning_rate": 0.0006, + "loss": 4.039186477661133, + "step": 1166 + }, + { + "epoch": 16.209698558322412, + "grad_norm": 0.3064924478530884, + "learning_rate": 0.0006, + "loss": 4.08139705657959, + "step": 1167 + }, + { + "epoch": 16.22367846221057, + "grad_norm": 0.28671345114707947, + "learning_rate": 0.0006, + "loss": 4.04637336730957, + "step": 1168 + }, + { + "epoch": 16.23765836609873, + "grad_norm": 0.26209691166877747, + "learning_rate": 0.0006, + "loss": 4.052768707275391, + "step": 1169 + }, + { + "epoch": 16.251638269986895, + "grad_norm": 0.2758907079696655, + "learning_rate": 0.0006, + "loss": 4.064321517944336, + "step": 1170 + }, + { + "epoch": 16.265618173875055, + "grad_norm": 0.25961801409721375, + "learning_rate": 0.0006, + "loss": 4.057299613952637, + "step": 1171 + }, + { + "epoch": 16.279598077763215, + "grad_norm": 0.2513751685619354, + "learning_rate": 0.0006, + "loss": 4.064148902893066, + "step": 1172 + }, + { + "epoch": 16.293577981651374, + "grad_norm": 0.23920276761054993, + "learning_rate": 0.0006, + "loss": 4.101890563964844, + "step": 1173 + }, + { + "epoch": 16.307557885539538, + "grad_norm": 0.22746537625789642, + "learning_rate": 0.0006, + "loss": 4.086627006530762, + "step": 1174 + }, + { + "epoch": 16.321537789427698, + "grad_norm": 0.22633525729179382, + "learning_rate": 0.0006, + "loss": 4.04669189453125, + "step": 1175 + }, + { + "epoch": 16.335517693315857, + "grad_norm": 0.2654891610145569, + "learning_rate": 0.0006, + "loss": 4.086793422698975, + "step": 1176 + }, + { + "epoch": 16.34949759720402, + "grad_norm": 0.2872653007507324, + "learning_rate": 0.0006, + "loss": 4.077983856201172, + "step": 1177 + }, + { + "epoch": 16.36347750109218, + "grad_norm": 0.25726038217544556, + "learning_rate": 0.0006, + "loss": 4.066011428833008, + "step": 1178 + }, + { + "epoch": 16.37745740498034, + "grad_norm": 0.2592027485370636, + "learning_rate": 0.0006, + "loss": 4.0482988357543945, + "step": 1179 + }, + { + "epoch": 16.3914373088685, + "grad_norm": 0.2768886685371399, + "learning_rate": 0.0006, + "loss": 4.065151214599609, + "step": 1180 + }, + { + "epoch": 16.405417212756664, + "grad_norm": 0.2956002652645111, + "learning_rate": 0.0006, + "loss": 4.037791728973389, + "step": 1181 + }, + { + "epoch": 16.419397116644824, + "grad_norm": 0.3092120885848999, + "learning_rate": 0.0006, + "loss": 4.062164306640625, + "step": 1182 + }, + { + "epoch": 16.433377020532983, + "grad_norm": 0.29516810178756714, + "learning_rate": 0.0006, + "loss": 4.025505065917969, + "step": 1183 + }, + { + "epoch": 16.447356924421143, + "grad_norm": 0.2640177607536316, + "learning_rate": 0.0006, + "loss": 4.060182571411133, + "step": 1184 + }, + { + "epoch": 16.461336828309307, + "grad_norm": 0.2444908320903778, + "learning_rate": 0.0006, + "loss": 4.046144962310791, + "step": 1185 + }, + { + "epoch": 16.475316732197467, + "grad_norm": 0.23190705478191376, + "learning_rate": 0.0006, + "loss": 4.075569152832031, + "step": 1186 + }, + { + "epoch": 16.489296636085626, + "grad_norm": 0.2383626103401184, + "learning_rate": 0.0006, + "loss": 4.088897705078125, + "step": 1187 + }, + { + "epoch": 16.503276539973786, + "grad_norm": 0.20688803493976593, + "learning_rate": 0.0006, + "loss": 4.064517974853516, + "step": 1188 + }, + { + "epoch": 16.51725644386195, + "grad_norm": 0.22610054910182953, + "learning_rate": 0.0006, + "loss": 4.04502010345459, + "step": 1189 + }, + { + "epoch": 16.53123634775011, + "grad_norm": 0.2014893889427185, + "learning_rate": 0.0006, + "loss": 4.058279514312744, + "step": 1190 + }, + { + "epoch": 16.54521625163827, + "grad_norm": 0.21459777653217316, + "learning_rate": 0.0006, + "loss": 4.066389083862305, + "step": 1191 + }, + { + "epoch": 16.55919615552643, + "grad_norm": 0.22909940779209137, + "learning_rate": 0.0006, + "loss": 4.0557966232299805, + "step": 1192 + }, + { + "epoch": 16.573176059414592, + "grad_norm": 0.20039083063602448, + "learning_rate": 0.0006, + "loss": 4.092845916748047, + "step": 1193 + }, + { + "epoch": 16.587155963302752, + "grad_norm": 0.22651726007461548, + "learning_rate": 0.0006, + "loss": 4.034615516662598, + "step": 1194 + }, + { + "epoch": 16.601135867190912, + "grad_norm": 0.21901755034923553, + "learning_rate": 0.0006, + "loss": 4.035619735717773, + "step": 1195 + }, + { + "epoch": 16.615115771079076, + "grad_norm": 0.22930841147899628, + "learning_rate": 0.0006, + "loss": 4.080800533294678, + "step": 1196 + }, + { + "epoch": 16.629095674967235, + "grad_norm": 0.212818443775177, + "learning_rate": 0.0006, + "loss": 4.030189514160156, + "step": 1197 + }, + { + "epoch": 16.643075578855395, + "grad_norm": 0.2370826154947281, + "learning_rate": 0.0006, + "loss": 4.062643527984619, + "step": 1198 + }, + { + "epoch": 16.657055482743555, + "grad_norm": 0.24786995351314545, + "learning_rate": 0.0006, + "loss": 4.031761169433594, + "step": 1199 + }, + { + "epoch": 16.67103538663172, + "grad_norm": 0.2305847704410553, + "learning_rate": 0.0006, + "loss": 4.083752155303955, + "step": 1200 + }, + { + "epoch": 16.68501529051988, + "grad_norm": 0.23336584866046906, + "learning_rate": 0.0006, + "loss": 4.079145431518555, + "step": 1201 + }, + { + "epoch": 16.698995194408038, + "grad_norm": 0.23976293206214905, + "learning_rate": 0.0006, + "loss": 4.020473957061768, + "step": 1202 + }, + { + "epoch": 16.712975098296198, + "grad_norm": 0.222761869430542, + "learning_rate": 0.0006, + "loss": 4.065582752227783, + "step": 1203 + }, + { + "epoch": 16.72695500218436, + "grad_norm": 0.23725618422031403, + "learning_rate": 0.0006, + "loss": 4.0263776779174805, + "step": 1204 + }, + { + "epoch": 16.74093490607252, + "grad_norm": 0.23873984813690186, + "learning_rate": 0.0006, + "loss": 4.053092956542969, + "step": 1205 + }, + { + "epoch": 16.75491480996068, + "grad_norm": 0.21043002605438232, + "learning_rate": 0.0006, + "loss": 4.063965797424316, + "step": 1206 + }, + { + "epoch": 16.76889471384884, + "grad_norm": 0.19863522052764893, + "learning_rate": 0.0006, + "loss": 4.061187267303467, + "step": 1207 + }, + { + "epoch": 16.782874617737004, + "grad_norm": 0.1953752487897873, + "learning_rate": 0.0006, + "loss": 4.046016693115234, + "step": 1208 + }, + { + "epoch": 16.796854521625164, + "grad_norm": 0.2130361795425415, + "learning_rate": 0.0006, + "loss": 4.066933631896973, + "step": 1209 + }, + { + "epoch": 16.810834425513324, + "grad_norm": 0.19598130881786346, + "learning_rate": 0.0006, + "loss": 4.071558952331543, + "step": 1210 + }, + { + "epoch": 16.824814329401484, + "grad_norm": 0.20331116020679474, + "learning_rate": 0.0006, + "loss": 4.088632106781006, + "step": 1211 + }, + { + "epoch": 16.838794233289647, + "grad_norm": 0.20423150062561035, + "learning_rate": 0.0006, + "loss": 4.032224655151367, + "step": 1212 + }, + { + "epoch": 16.852774137177807, + "grad_norm": 0.2401197850704193, + "learning_rate": 0.0006, + "loss": 4.037393569946289, + "step": 1213 + }, + { + "epoch": 16.866754041065967, + "grad_norm": 0.26102620363235474, + "learning_rate": 0.0006, + "loss": 4.04738712310791, + "step": 1214 + }, + { + "epoch": 16.88073394495413, + "grad_norm": 0.2438521534204483, + "learning_rate": 0.0006, + "loss": 4.015673637390137, + "step": 1215 + }, + { + "epoch": 16.89471384884229, + "grad_norm": 0.20742061734199524, + "learning_rate": 0.0006, + "loss": 4.049060821533203, + "step": 1216 + }, + { + "epoch": 16.90869375273045, + "grad_norm": 0.22028608620166779, + "learning_rate": 0.0006, + "loss": 4.088971138000488, + "step": 1217 + }, + { + "epoch": 16.92267365661861, + "grad_norm": 0.21746744215488434, + "learning_rate": 0.0006, + "loss": 4.021710395812988, + "step": 1218 + }, + { + "epoch": 16.936653560506773, + "grad_norm": 0.2226102203130722, + "learning_rate": 0.0006, + "loss": 4.050119400024414, + "step": 1219 + }, + { + "epoch": 16.950633464394933, + "grad_norm": 0.23903657495975494, + "learning_rate": 0.0006, + "loss": 4.0570526123046875, + "step": 1220 + }, + { + "epoch": 16.964613368283093, + "grad_norm": 0.2556349039077759, + "learning_rate": 0.0006, + "loss": 4.0448808670043945, + "step": 1221 + }, + { + "epoch": 16.978593272171253, + "grad_norm": 0.28445592522621155, + "learning_rate": 0.0006, + "loss": 4.052034378051758, + "step": 1222 + }, + { + "epoch": 16.992573176059416, + "grad_norm": 0.273973673582077, + "learning_rate": 0.0006, + "loss": 4.02907657623291, + "step": 1223 + }, + { + "epoch": 17.0, + "grad_norm": 0.26125091314315796, + "learning_rate": 0.0006, + "loss": 4.10643196105957, + "step": 1224 + }, + { + "epoch": 17.0, + "eval_loss": 4.2585954666137695, + "eval_runtime": 44.8583, + "eval_samples_per_second": 54.438, + "eval_steps_per_second": 3.411, + "step": 1224 + }, + { + "epoch": 17.01397990388816, + "grad_norm": 0.2786196768283844, + "learning_rate": 0.0006, + "loss": 4.044719219207764, + "step": 1225 + }, + { + "epoch": 17.027959807776323, + "grad_norm": 0.2969571650028229, + "learning_rate": 0.0006, + "loss": 4.022037506103516, + "step": 1226 + }, + { + "epoch": 17.041939711664483, + "grad_norm": 0.32196253538131714, + "learning_rate": 0.0006, + "loss": 4.03636360168457, + "step": 1227 + }, + { + "epoch": 17.055919615552643, + "grad_norm": 0.28617000579833984, + "learning_rate": 0.0006, + "loss": 4.012125492095947, + "step": 1228 + }, + { + "epoch": 17.069899519440803, + "grad_norm": 0.26539644598960876, + "learning_rate": 0.0006, + "loss": 4.020190715789795, + "step": 1229 + }, + { + "epoch": 17.083879423328966, + "grad_norm": 0.24315394461154938, + "learning_rate": 0.0006, + "loss": 4.0553812980651855, + "step": 1230 + }, + { + "epoch": 17.097859327217126, + "grad_norm": 0.23798158764839172, + "learning_rate": 0.0006, + "loss": 4.004805088043213, + "step": 1231 + }, + { + "epoch": 17.111839231105286, + "grad_norm": 0.25723618268966675, + "learning_rate": 0.0006, + "loss": 4.00108003616333, + "step": 1232 + }, + { + "epoch": 17.125819134993446, + "grad_norm": 0.2669757604598999, + "learning_rate": 0.0006, + "loss": 4.00828742980957, + "step": 1233 + }, + { + "epoch": 17.13979903888161, + "grad_norm": 0.26421651244163513, + "learning_rate": 0.0006, + "loss": 3.995478391647339, + "step": 1234 + }, + { + "epoch": 17.15377894276977, + "grad_norm": 0.24745801091194153, + "learning_rate": 0.0006, + "loss": 4.0171027183532715, + "step": 1235 + }, + { + "epoch": 17.16775884665793, + "grad_norm": 0.27028775215148926, + "learning_rate": 0.0006, + "loss": 4.017108917236328, + "step": 1236 + }, + { + "epoch": 17.18173875054609, + "grad_norm": 0.27247968316078186, + "learning_rate": 0.0006, + "loss": 4.032601356506348, + "step": 1237 + }, + { + "epoch": 17.195718654434252, + "grad_norm": 0.24620869755744934, + "learning_rate": 0.0006, + "loss": 4.022171974182129, + "step": 1238 + }, + { + "epoch": 17.209698558322412, + "grad_norm": 0.23407386243343353, + "learning_rate": 0.0006, + "loss": 3.9946959018707275, + "step": 1239 + }, + { + "epoch": 17.22367846221057, + "grad_norm": 0.22559069097042084, + "learning_rate": 0.0006, + "loss": 4.013072490692139, + "step": 1240 + }, + { + "epoch": 17.23765836609873, + "grad_norm": 0.226687952876091, + "learning_rate": 0.0006, + "loss": 4.023543834686279, + "step": 1241 + }, + { + "epoch": 17.251638269986895, + "grad_norm": 0.24436360597610474, + "learning_rate": 0.0006, + "loss": 4.044206619262695, + "step": 1242 + }, + { + "epoch": 17.265618173875055, + "grad_norm": 0.25527626276016235, + "learning_rate": 0.0006, + "loss": 4.016424179077148, + "step": 1243 + }, + { + "epoch": 17.279598077763215, + "grad_norm": 0.26126864552497864, + "learning_rate": 0.0006, + "loss": 4.024394512176514, + "step": 1244 + }, + { + "epoch": 17.293577981651374, + "grad_norm": 0.25746744871139526, + "learning_rate": 0.0006, + "loss": 4.046844482421875, + "step": 1245 + }, + { + "epoch": 17.307557885539538, + "grad_norm": 0.26579564809799194, + "learning_rate": 0.0006, + "loss": 4.021010398864746, + "step": 1246 + }, + { + "epoch": 17.321537789427698, + "grad_norm": 0.2713971734046936, + "learning_rate": 0.0006, + "loss": 4.022331237792969, + "step": 1247 + }, + { + "epoch": 17.335517693315857, + "grad_norm": 0.24217180907726288, + "learning_rate": 0.0006, + "loss": 4.006353855133057, + "step": 1248 + }, + { + "epoch": 17.34949759720402, + "grad_norm": 0.26899752020835876, + "learning_rate": 0.0006, + "loss": 4.068023681640625, + "step": 1249 + }, + { + "epoch": 17.36347750109218, + "grad_norm": 0.26745253801345825, + "learning_rate": 0.0006, + "loss": 4.031207084655762, + "step": 1250 + }, + { + "epoch": 17.37745740498034, + "grad_norm": 0.21533764898777008, + "learning_rate": 0.0006, + "loss": 4.042410850524902, + "step": 1251 + }, + { + "epoch": 17.3914373088685, + "grad_norm": 0.21958027780056, + "learning_rate": 0.0006, + "loss": 4.02597713470459, + "step": 1252 + }, + { + "epoch": 17.405417212756664, + "grad_norm": 0.263068825006485, + "learning_rate": 0.0006, + "loss": 4.0035905838012695, + "step": 1253 + }, + { + "epoch": 17.419397116644824, + "grad_norm": 0.24044716358184814, + "learning_rate": 0.0006, + "loss": 4.005317687988281, + "step": 1254 + }, + { + "epoch": 17.433377020532983, + "grad_norm": 0.19142559170722961, + "learning_rate": 0.0006, + "loss": 3.9976844787597656, + "step": 1255 + }, + { + "epoch": 17.447356924421143, + "grad_norm": 0.18650250136852264, + "learning_rate": 0.0006, + "loss": 4.031353950500488, + "step": 1256 + }, + { + "epoch": 17.461336828309307, + "grad_norm": 0.1984022557735443, + "learning_rate": 0.0006, + "loss": 4.002097129821777, + "step": 1257 + }, + { + "epoch": 17.475316732197467, + "grad_norm": 0.20087844133377075, + "learning_rate": 0.0006, + "loss": 4.031151294708252, + "step": 1258 + }, + { + "epoch": 17.489296636085626, + "grad_norm": 0.20881228148937225, + "learning_rate": 0.0006, + "loss": 4.034793853759766, + "step": 1259 + }, + { + "epoch": 17.503276539973786, + "grad_norm": 0.23958556354045868, + "learning_rate": 0.0006, + "loss": 4.025238990783691, + "step": 1260 + }, + { + "epoch": 17.51725644386195, + "grad_norm": 0.23927845060825348, + "learning_rate": 0.0006, + "loss": 3.999828338623047, + "step": 1261 + }, + { + "epoch": 17.53123634775011, + "grad_norm": 0.20342715084552765, + "learning_rate": 0.0006, + "loss": 4.054262161254883, + "step": 1262 + }, + { + "epoch": 17.54521625163827, + "grad_norm": 0.21370555460453033, + "learning_rate": 0.0006, + "loss": 4.011582374572754, + "step": 1263 + }, + { + "epoch": 17.55919615552643, + "grad_norm": 0.23681946098804474, + "learning_rate": 0.0006, + "loss": 4.029694080352783, + "step": 1264 + }, + { + "epoch": 17.573176059414592, + "grad_norm": 0.24190311133861542, + "learning_rate": 0.0006, + "loss": 4.018783092498779, + "step": 1265 + }, + { + "epoch": 17.587155963302752, + "grad_norm": 0.23215509951114655, + "learning_rate": 0.0006, + "loss": 4.009703159332275, + "step": 1266 + }, + { + "epoch": 17.601135867190912, + "grad_norm": 0.21122977137565613, + "learning_rate": 0.0006, + "loss": 4.0345659255981445, + "step": 1267 + }, + { + "epoch": 17.615115771079076, + "grad_norm": 0.2075948715209961, + "learning_rate": 0.0006, + "loss": 4.070703506469727, + "step": 1268 + }, + { + "epoch": 17.629095674967235, + "grad_norm": 0.21667909622192383, + "learning_rate": 0.0006, + "loss": 4.020771503448486, + "step": 1269 + }, + { + "epoch": 17.643075578855395, + "grad_norm": 0.20960724353790283, + "learning_rate": 0.0006, + "loss": 4.026404857635498, + "step": 1270 + }, + { + "epoch": 17.657055482743555, + "grad_norm": 0.22575686872005463, + "learning_rate": 0.0006, + "loss": 4.01981258392334, + "step": 1271 + }, + { + "epoch": 17.67103538663172, + "grad_norm": 0.2565988302230835, + "learning_rate": 0.0006, + "loss": 4.015827178955078, + "step": 1272 + }, + { + "epoch": 17.68501529051988, + "grad_norm": 0.24831551313400269, + "learning_rate": 0.0006, + "loss": 4.012457847595215, + "step": 1273 + }, + { + "epoch": 17.698995194408038, + "grad_norm": 0.22595494985580444, + "learning_rate": 0.0006, + "loss": 4.031386375427246, + "step": 1274 + }, + { + "epoch": 17.712975098296198, + "grad_norm": 0.20687322318553925, + "learning_rate": 0.0006, + "loss": 4.014216423034668, + "step": 1275 + }, + { + "epoch": 17.72695500218436, + "grad_norm": 0.21916012465953827, + "learning_rate": 0.0006, + "loss": 4.037643909454346, + "step": 1276 + }, + { + "epoch": 17.74093490607252, + "grad_norm": 0.2243107706308365, + "learning_rate": 0.0006, + "loss": 4.033044815063477, + "step": 1277 + }, + { + "epoch": 17.75491480996068, + "grad_norm": 0.2402164787054062, + "learning_rate": 0.0006, + "loss": 4.026636123657227, + "step": 1278 + }, + { + "epoch": 17.76889471384884, + "grad_norm": 0.27957046031951904, + "learning_rate": 0.0006, + "loss": 4.0270867347717285, + "step": 1279 + }, + { + "epoch": 17.782874617737004, + "grad_norm": 0.27447596192359924, + "learning_rate": 0.0006, + "loss": 4.0120134353637695, + "step": 1280 + }, + { + "epoch": 17.796854521625164, + "grad_norm": 0.26926323771476746, + "learning_rate": 0.0006, + "loss": 4.027970314025879, + "step": 1281 + }, + { + "epoch": 17.810834425513324, + "grad_norm": 0.2535291314125061, + "learning_rate": 0.0006, + "loss": 4.002565383911133, + "step": 1282 + }, + { + "epoch": 17.824814329401484, + "grad_norm": 0.22639447450637817, + "learning_rate": 0.0006, + "loss": 4.032750606536865, + "step": 1283 + }, + { + "epoch": 17.838794233289647, + "grad_norm": 0.23384462296962738, + "learning_rate": 0.0006, + "loss": 4.03568172454834, + "step": 1284 + }, + { + "epoch": 17.852774137177807, + "grad_norm": 0.22971470654010773, + "learning_rate": 0.0006, + "loss": 4.031299591064453, + "step": 1285 + }, + { + "epoch": 17.866754041065967, + "grad_norm": 0.24540141224861145, + "learning_rate": 0.0006, + "loss": 4.0142669677734375, + "step": 1286 + }, + { + "epoch": 17.88073394495413, + "grad_norm": 0.2304888367652893, + "learning_rate": 0.0006, + "loss": 3.9964895248413086, + "step": 1287 + }, + { + "epoch": 17.89471384884229, + "grad_norm": 0.22082284092903137, + "learning_rate": 0.0006, + "loss": 4.024693489074707, + "step": 1288 + }, + { + "epoch": 17.90869375273045, + "grad_norm": 0.23677092790603638, + "learning_rate": 0.0006, + "loss": 4.002082347869873, + "step": 1289 + }, + { + "epoch": 17.92267365661861, + "grad_norm": 0.23122332990169525, + "learning_rate": 0.0006, + "loss": 4.025351524353027, + "step": 1290 + }, + { + "epoch": 17.936653560506773, + "grad_norm": 0.2548119127750397, + "learning_rate": 0.0006, + "loss": 3.9955825805664062, + "step": 1291 + }, + { + "epoch": 17.950633464394933, + "grad_norm": 0.26950931549072266, + "learning_rate": 0.0006, + "loss": 4.026151180267334, + "step": 1292 + }, + { + "epoch": 17.964613368283093, + "grad_norm": 0.3023233711719513, + "learning_rate": 0.0006, + "loss": 4.006035804748535, + "step": 1293 + }, + { + "epoch": 17.978593272171253, + "grad_norm": 0.3190958499908447, + "learning_rate": 0.0006, + "loss": 4.023565292358398, + "step": 1294 + }, + { + "epoch": 17.992573176059416, + "grad_norm": 0.28878068923950195, + "learning_rate": 0.0006, + "loss": 4.020973205566406, + "step": 1295 + }, + { + "epoch": 18.0, + "grad_norm": 0.27312418818473816, + "learning_rate": 0.0006, + "loss": 3.99906587600708, + "step": 1296 + }, + { + "epoch": 18.0, + "eval_loss": 4.224447250366211, + "eval_runtime": 52.5728, + "eval_samples_per_second": 46.45, + "eval_steps_per_second": 2.91, + "step": 1296 + }, + { + "epoch": 18.01397990388816, + "grad_norm": 0.2567712664604187, + "learning_rate": 0.0006, + "loss": 3.9755055904388428, + "step": 1297 + }, + { + "epoch": 18.027959807776323, + "grad_norm": 0.25048133730888367, + "learning_rate": 0.0006, + "loss": 4.009254455566406, + "step": 1298 + }, + { + "epoch": 18.041939711664483, + "grad_norm": 0.2556909918785095, + "learning_rate": 0.0006, + "loss": 4.001235008239746, + "step": 1299 + }, + { + "epoch": 18.055919615552643, + "grad_norm": 0.2501400113105774, + "learning_rate": 0.0006, + "loss": 3.980726480484009, + "step": 1300 + }, + { + "epoch": 18.069899519440803, + "grad_norm": 0.23977792263031006, + "learning_rate": 0.0006, + "loss": 3.964195728302002, + "step": 1301 + }, + { + "epoch": 18.083879423328966, + "grad_norm": 0.25650718808174133, + "learning_rate": 0.0006, + "loss": 4.015914440155029, + "step": 1302 + }, + { + "epoch": 18.097859327217126, + "grad_norm": 0.234053835272789, + "learning_rate": 0.0006, + "loss": 4.0159149169921875, + "step": 1303 + }, + { + "epoch": 18.111839231105286, + "grad_norm": 0.21967713534832, + "learning_rate": 0.0006, + "loss": 4.0055694580078125, + "step": 1304 + }, + { + "epoch": 18.125819134993446, + "grad_norm": 0.21790878474712372, + "learning_rate": 0.0006, + "loss": 3.986253261566162, + "step": 1305 + }, + { + "epoch": 18.13979903888161, + "grad_norm": 0.22955302894115448, + "learning_rate": 0.0006, + "loss": 3.959421157836914, + "step": 1306 + }, + { + "epoch": 18.15377894276977, + "grad_norm": 0.2559174597263336, + "learning_rate": 0.0006, + "loss": 4.0069756507873535, + "step": 1307 + }, + { + "epoch": 18.16775884665793, + "grad_norm": 0.26132866740226746, + "learning_rate": 0.0006, + "loss": 3.9874095916748047, + "step": 1308 + }, + { + "epoch": 18.18173875054609, + "grad_norm": 0.23258940875530243, + "learning_rate": 0.0006, + "loss": 3.9762492179870605, + "step": 1309 + }, + { + "epoch": 18.195718654434252, + "grad_norm": 0.22347190976142883, + "learning_rate": 0.0006, + "loss": 3.9923410415649414, + "step": 1310 + }, + { + "epoch": 18.209698558322412, + "grad_norm": 0.23095804452896118, + "learning_rate": 0.0006, + "loss": 4.019245624542236, + "step": 1311 + }, + { + "epoch": 18.22367846221057, + "grad_norm": 0.24817052483558655, + "learning_rate": 0.0006, + "loss": 3.9697511196136475, + "step": 1312 + }, + { + "epoch": 18.23765836609873, + "grad_norm": 0.2566024959087372, + "learning_rate": 0.0006, + "loss": 3.978804111480713, + "step": 1313 + }, + { + "epoch": 18.251638269986895, + "grad_norm": 0.2527952790260315, + "learning_rate": 0.0006, + "loss": 3.972018241882324, + "step": 1314 + }, + { + "epoch": 18.265618173875055, + "grad_norm": 0.2508150637149811, + "learning_rate": 0.0006, + "loss": 3.9971275329589844, + "step": 1315 + }, + { + "epoch": 18.279598077763215, + "grad_norm": 0.23242022097110748, + "learning_rate": 0.0006, + "loss": 3.9712045192718506, + "step": 1316 + }, + { + "epoch": 18.293577981651374, + "grad_norm": 0.23474404215812683, + "learning_rate": 0.0006, + "loss": 3.9926767349243164, + "step": 1317 + }, + { + "epoch": 18.307557885539538, + "grad_norm": 0.2417769432067871, + "learning_rate": 0.0006, + "loss": 3.9920949935913086, + "step": 1318 + }, + { + "epoch": 18.321537789427698, + "grad_norm": 0.23839452862739563, + "learning_rate": 0.0006, + "loss": 4.016645431518555, + "step": 1319 + }, + { + "epoch": 18.335517693315857, + "grad_norm": 0.2512452304363251, + "learning_rate": 0.0006, + "loss": 3.97586727142334, + "step": 1320 + }, + { + "epoch": 18.34949759720402, + "grad_norm": 0.27503693103790283, + "learning_rate": 0.0006, + "loss": 4.000148773193359, + "step": 1321 + }, + { + "epoch": 18.36347750109218, + "grad_norm": 0.27830836176872253, + "learning_rate": 0.0006, + "loss": 3.9972195625305176, + "step": 1322 + }, + { + "epoch": 18.37745740498034, + "grad_norm": 0.2571812570095062, + "learning_rate": 0.0006, + "loss": 3.9900810718536377, + "step": 1323 + }, + { + "epoch": 18.3914373088685, + "grad_norm": 0.2310052365064621, + "learning_rate": 0.0006, + "loss": 4.003000259399414, + "step": 1324 + }, + { + "epoch": 18.405417212756664, + "grad_norm": 0.19615735113620758, + "learning_rate": 0.0006, + "loss": 3.9536571502685547, + "step": 1325 + }, + { + "epoch": 18.419397116644824, + "grad_norm": 0.21323896944522858, + "learning_rate": 0.0006, + "loss": 3.977508068084717, + "step": 1326 + }, + { + "epoch": 18.433377020532983, + "grad_norm": 0.21404202282428741, + "learning_rate": 0.0006, + "loss": 4.015361785888672, + "step": 1327 + }, + { + "epoch": 18.447356924421143, + "grad_norm": 0.1991959661245346, + "learning_rate": 0.0006, + "loss": 4.000286102294922, + "step": 1328 + }, + { + "epoch": 18.461336828309307, + "grad_norm": 0.2073599398136139, + "learning_rate": 0.0006, + "loss": 3.973065137863159, + "step": 1329 + }, + { + "epoch": 18.475316732197467, + "grad_norm": 0.2096073031425476, + "learning_rate": 0.0006, + "loss": 3.987032890319824, + "step": 1330 + }, + { + "epoch": 18.489296636085626, + "grad_norm": 0.2380610853433609, + "learning_rate": 0.0006, + "loss": 4.035274505615234, + "step": 1331 + }, + { + "epoch": 18.503276539973786, + "grad_norm": 0.23570716381072998, + "learning_rate": 0.0006, + "loss": 4.010516166687012, + "step": 1332 + }, + { + "epoch": 18.51725644386195, + "grad_norm": 0.24805466830730438, + "learning_rate": 0.0006, + "loss": 3.9750983715057373, + "step": 1333 + }, + { + "epoch": 18.53123634775011, + "grad_norm": 0.25173231959342957, + "learning_rate": 0.0006, + "loss": 3.9742345809936523, + "step": 1334 + }, + { + "epoch": 18.54521625163827, + "grad_norm": 0.24590367078781128, + "learning_rate": 0.0006, + "loss": 4.0037312507629395, + "step": 1335 + }, + { + "epoch": 18.55919615552643, + "grad_norm": 0.24379394948482513, + "learning_rate": 0.0006, + "loss": 3.993858814239502, + "step": 1336 + }, + { + "epoch": 18.573176059414592, + "grad_norm": 0.21708883345127106, + "learning_rate": 0.0006, + "loss": 3.965670585632324, + "step": 1337 + }, + { + "epoch": 18.587155963302752, + "grad_norm": 0.21024051308631897, + "learning_rate": 0.0006, + "loss": 3.987551689147949, + "step": 1338 + }, + { + "epoch": 18.601135867190912, + "grad_norm": 0.23376783728599548, + "learning_rate": 0.0006, + "loss": 4.002841472625732, + "step": 1339 + }, + { + "epoch": 18.615115771079076, + "grad_norm": 0.25350701808929443, + "learning_rate": 0.0006, + "loss": 3.9881370067596436, + "step": 1340 + }, + { + "epoch": 18.629095674967235, + "grad_norm": 0.2542140483856201, + "learning_rate": 0.0006, + "loss": 4.003695964813232, + "step": 1341 + }, + { + "epoch": 18.643075578855395, + "grad_norm": 0.22932685911655426, + "learning_rate": 0.0006, + "loss": 4.0146002769470215, + "step": 1342 + }, + { + "epoch": 18.657055482743555, + "grad_norm": 0.21099458634853363, + "learning_rate": 0.0006, + "loss": 3.970472812652588, + "step": 1343 + }, + { + "epoch": 18.67103538663172, + "grad_norm": 0.2234615832567215, + "learning_rate": 0.0006, + "loss": 3.9821488857269287, + "step": 1344 + }, + { + "epoch": 18.68501529051988, + "grad_norm": 0.230327770113945, + "learning_rate": 0.0006, + "loss": 3.996274948120117, + "step": 1345 + }, + { + "epoch": 18.698995194408038, + "grad_norm": 0.23596233129501343, + "learning_rate": 0.0006, + "loss": 3.9747462272644043, + "step": 1346 + }, + { + "epoch": 18.712975098296198, + "grad_norm": 0.24173159897327423, + "learning_rate": 0.0006, + "loss": 4.011804103851318, + "step": 1347 + }, + { + "epoch": 18.72695500218436, + "grad_norm": 0.24087604880332947, + "learning_rate": 0.0006, + "loss": 4.008726119995117, + "step": 1348 + }, + { + "epoch": 18.74093490607252, + "grad_norm": 0.2457292526960373, + "learning_rate": 0.0006, + "loss": 3.990793228149414, + "step": 1349 + }, + { + "epoch": 18.75491480996068, + "grad_norm": 0.22946089506149292, + "learning_rate": 0.0006, + "loss": 3.980494260787964, + "step": 1350 + }, + { + "epoch": 18.76889471384884, + "grad_norm": 0.22986692190170288, + "learning_rate": 0.0006, + "loss": 3.97006893157959, + "step": 1351 + }, + { + "epoch": 18.782874617737004, + "grad_norm": 0.23358555138111115, + "learning_rate": 0.0006, + "loss": 4.008172035217285, + "step": 1352 + }, + { + "epoch": 18.796854521625164, + "grad_norm": 0.20183615386486053, + "learning_rate": 0.0006, + "loss": 3.9720888137817383, + "step": 1353 + }, + { + "epoch": 18.810834425513324, + "grad_norm": 0.19975653290748596, + "learning_rate": 0.0006, + "loss": 3.9783310890197754, + "step": 1354 + }, + { + "epoch": 18.824814329401484, + "grad_norm": 0.18911021947860718, + "learning_rate": 0.0006, + "loss": 3.985982894897461, + "step": 1355 + }, + { + "epoch": 18.838794233289647, + "grad_norm": 0.15984168648719788, + "learning_rate": 0.0006, + "loss": 3.9740548133850098, + "step": 1356 + }, + { + "epoch": 18.852774137177807, + "grad_norm": 0.1755436211824417, + "learning_rate": 0.0006, + "loss": 4.013090133666992, + "step": 1357 + }, + { + "epoch": 18.866754041065967, + "grad_norm": 0.1798417866230011, + "learning_rate": 0.0006, + "loss": 3.997880697250366, + "step": 1358 + }, + { + "epoch": 18.88073394495413, + "grad_norm": 0.20206265151500702, + "learning_rate": 0.0006, + "loss": 3.9892373085021973, + "step": 1359 + }, + { + "epoch": 18.89471384884229, + "grad_norm": 0.23685456812381744, + "learning_rate": 0.0006, + "loss": 3.9909186363220215, + "step": 1360 + }, + { + "epoch": 18.90869375273045, + "grad_norm": 0.26053836941719055, + "learning_rate": 0.0006, + "loss": 4.00327205657959, + "step": 1361 + }, + { + "epoch": 18.92267365661861, + "grad_norm": 0.26215845346450806, + "learning_rate": 0.0006, + "loss": 3.9714717864990234, + "step": 1362 + }, + { + "epoch": 18.936653560506773, + "grad_norm": 0.2433871030807495, + "learning_rate": 0.0006, + "loss": 3.949416160583496, + "step": 1363 + }, + { + "epoch": 18.950633464394933, + "grad_norm": 0.23331883549690247, + "learning_rate": 0.0006, + "loss": 3.980501413345337, + "step": 1364 + }, + { + "epoch": 18.964613368283093, + "grad_norm": 0.2346954047679901, + "learning_rate": 0.0006, + "loss": 3.9974493980407715, + "step": 1365 + }, + { + "epoch": 18.978593272171253, + "grad_norm": 0.25101345777511597, + "learning_rate": 0.0006, + "loss": 3.9800148010253906, + "step": 1366 + }, + { + "epoch": 18.992573176059416, + "grad_norm": 0.26811933517456055, + "learning_rate": 0.0006, + "loss": 4.0065741539001465, + "step": 1367 + }, + { + "epoch": 19.0, + "grad_norm": 0.2731736898422241, + "learning_rate": 0.0006, + "loss": 4.014575481414795, + "step": 1368 + }, + { + "epoch": 19.0, + "eval_loss": 4.200716972351074, + "eval_runtime": 44.6962, + "eval_samples_per_second": 54.636, + "eval_steps_per_second": 3.423, + "step": 1368 + }, + { + "epoch": 19.01397990388816, + "grad_norm": 0.2517746686935425, + "learning_rate": 0.0006, + "loss": 3.9486539363861084, + "step": 1369 + }, + { + "epoch": 19.027959807776323, + "grad_norm": 0.2482699453830719, + "learning_rate": 0.0006, + "loss": 3.95015287399292, + "step": 1370 + }, + { + "epoch": 19.041939711664483, + "grad_norm": 0.21693618595600128, + "learning_rate": 0.0006, + "loss": 3.970022201538086, + "step": 1371 + }, + { + "epoch": 19.055919615552643, + "grad_norm": 0.2035159319639206, + "learning_rate": 0.0006, + "loss": 3.941457748413086, + "step": 1372 + }, + { + "epoch": 19.069899519440803, + "grad_norm": 0.2201429009437561, + "learning_rate": 0.0006, + "loss": 3.946794033050537, + "step": 1373 + }, + { + "epoch": 19.083879423328966, + "grad_norm": 0.22910255193710327, + "learning_rate": 0.0006, + "loss": 3.94606876373291, + "step": 1374 + }, + { + "epoch": 19.097859327217126, + "grad_norm": 0.22378197312355042, + "learning_rate": 0.0006, + "loss": 3.957899570465088, + "step": 1375 + }, + { + "epoch": 19.111839231105286, + "grad_norm": 0.21728114783763885, + "learning_rate": 0.0006, + "loss": 3.9565982818603516, + "step": 1376 + }, + { + "epoch": 19.125819134993446, + "grad_norm": 0.21887634694576263, + "learning_rate": 0.0006, + "loss": 3.9649534225463867, + "step": 1377 + }, + { + "epoch": 19.13979903888161, + "grad_norm": 0.21892991662025452, + "learning_rate": 0.0006, + "loss": 3.971388101577759, + "step": 1378 + }, + { + "epoch": 19.15377894276977, + "grad_norm": 0.24582402408123016, + "learning_rate": 0.0006, + "loss": 3.9370944499969482, + "step": 1379 + }, + { + "epoch": 19.16775884665793, + "grad_norm": 0.27547118067741394, + "learning_rate": 0.0006, + "loss": 3.939406156539917, + "step": 1380 + }, + { + "epoch": 19.18173875054609, + "grad_norm": 0.3131563365459442, + "learning_rate": 0.0006, + "loss": 3.942620277404785, + "step": 1381 + }, + { + "epoch": 19.195718654434252, + "grad_norm": 0.3211703598499298, + "learning_rate": 0.0006, + "loss": 3.9388349056243896, + "step": 1382 + }, + { + "epoch": 19.209698558322412, + "grad_norm": 0.2791919410228729, + "learning_rate": 0.0006, + "loss": 3.9827399253845215, + "step": 1383 + }, + { + "epoch": 19.22367846221057, + "grad_norm": 0.2872016727924347, + "learning_rate": 0.0006, + "loss": 3.976715087890625, + "step": 1384 + }, + { + "epoch": 19.23765836609873, + "grad_norm": 0.2790389060974121, + "learning_rate": 0.0006, + "loss": 3.952850818634033, + "step": 1385 + }, + { + "epoch": 19.251638269986895, + "grad_norm": 0.31903740763664246, + "learning_rate": 0.0006, + "loss": 3.964506149291992, + "step": 1386 + }, + { + "epoch": 19.265618173875055, + "grad_norm": 0.31013646721839905, + "learning_rate": 0.0006, + "loss": 3.967219352722168, + "step": 1387 + }, + { + "epoch": 19.279598077763215, + "grad_norm": 0.2574339509010315, + "learning_rate": 0.0006, + "loss": 3.979168176651001, + "step": 1388 + }, + { + "epoch": 19.293577981651374, + "grad_norm": 0.24621108174324036, + "learning_rate": 0.0006, + "loss": 3.981734275817871, + "step": 1389 + }, + { + "epoch": 19.307557885539538, + "grad_norm": 0.25113818049430847, + "learning_rate": 0.0006, + "loss": 3.9787755012512207, + "step": 1390 + }, + { + "epoch": 19.321537789427698, + "grad_norm": 0.259971022605896, + "learning_rate": 0.0006, + "loss": 3.9648823738098145, + "step": 1391 + }, + { + "epoch": 19.335517693315857, + "grad_norm": 0.22580404579639435, + "learning_rate": 0.0006, + "loss": 3.9658002853393555, + "step": 1392 + }, + { + "epoch": 19.34949759720402, + "grad_norm": 0.2133680284023285, + "learning_rate": 0.0006, + "loss": 3.9615914821624756, + "step": 1393 + }, + { + "epoch": 19.36347750109218, + "grad_norm": 0.2387680858373642, + "learning_rate": 0.0006, + "loss": 3.993811845779419, + "step": 1394 + }, + { + "epoch": 19.37745740498034, + "grad_norm": 0.26086220145225525, + "learning_rate": 0.0006, + "loss": 3.932701826095581, + "step": 1395 + }, + { + "epoch": 19.3914373088685, + "grad_norm": 0.23255233466625214, + "learning_rate": 0.0006, + "loss": 3.8969321250915527, + "step": 1396 + }, + { + "epoch": 19.405417212756664, + "grad_norm": 0.22894541919231415, + "learning_rate": 0.0006, + "loss": 3.9569311141967773, + "step": 1397 + }, + { + "epoch": 19.419397116644824, + "grad_norm": 0.2254200130701065, + "learning_rate": 0.0006, + "loss": 3.953199863433838, + "step": 1398 + }, + { + "epoch": 19.433377020532983, + "grad_norm": 0.25802481174468994, + "learning_rate": 0.0006, + "loss": 3.9714815616607666, + "step": 1399 + }, + { + "epoch": 19.447356924421143, + "grad_norm": 0.24725162982940674, + "learning_rate": 0.0006, + "loss": 3.957339286804199, + "step": 1400 + }, + { + "epoch": 19.461336828309307, + "grad_norm": 0.2162018120288849, + "learning_rate": 0.0006, + "loss": 3.986801862716675, + "step": 1401 + }, + { + "epoch": 19.475316732197467, + "grad_norm": 0.21530906856060028, + "learning_rate": 0.0006, + "loss": 3.9766759872436523, + "step": 1402 + }, + { + "epoch": 19.489296636085626, + "grad_norm": 0.20260323584079742, + "learning_rate": 0.0006, + "loss": 3.9576425552368164, + "step": 1403 + }, + { + "epoch": 19.503276539973786, + "grad_norm": 0.188974529504776, + "learning_rate": 0.0006, + "loss": 3.9852395057678223, + "step": 1404 + }, + { + "epoch": 19.51725644386195, + "grad_norm": 0.19727374613285065, + "learning_rate": 0.0006, + "loss": 3.972484588623047, + "step": 1405 + }, + { + "epoch": 19.53123634775011, + "grad_norm": 0.23708008229732513, + "learning_rate": 0.0006, + "loss": 3.992471694946289, + "step": 1406 + }, + { + "epoch": 19.54521625163827, + "grad_norm": 0.23783449828624725, + "learning_rate": 0.0006, + "loss": 3.9788265228271484, + "step": 1407 + }, + { + "epoch": 19.55919615552643, + "grad_norm": 0.24744364619255066, + "learning_rate": 0.0006, + "loss": 3.9559011459350586, + "step": 1408 + }, + { + "epoch": 19.573176059414592, + "grad_norm": 0.24828094244003296, + "learning_rate": 0.0006, + "loss": 3.9663949012756348, + "step": 1409 + }, + { + "epoch": 19.587155963302752, + "grad_norm": 0.2681315541267395, + "learning_rate": 0.0006, + "loss": 3.9581191539764404, + "step": 1410 + }, + { + "epoch": 19.601135867190912, + "grad_norm": 0.2691532373428345, + "learning_rate": 0.0006, + "loss": 3.9832754135131836, + "step": 1411 + }, + { + "epoch": 19.615115771079076, + "grad_norm": 0.2900252640247345, + "learning_rate": 0.0006, + "loss": 3.984365940093994, + "step": 1412 + }, + { + "epoch": 19.629095674967235, + "grad_norm": 0.3194943070411682, + "learning_rate": 0.0006, + "loss": 3.9856505393981934, + "step": 1413 + }, + { + "epoch": 19.643075578855395, + "grad_norm": 0.3029029071331024, + "learning_rate": 0.0006, + "loss": 3.968992233276367, + "step": 1414 + }, + { + "epoch": 19.657055482743555, + "grad_norm": 0.2658176124095917, + "learning_rate": 0.0006, + "loss": 3.995187282562256, + "step": 1415 + }, + { + "epoch": 19.67103538663172, + "grad_norm": 0.26807504892349243, + "learning_rate": 0.0006, + "loss": 3.9756274223327637, + "step": 1416 + }, + { + "epoch": 19.68501529051988, + "grad_norm": 0.27718642354011536, + "learning_rate": 0.0006, + "loss": 3.9510018825531006, + "step": 1417 + }, + { + "epoch": 19.698995194408038, + "grad_norm": 0.26322051882743835, + "learning_rate": 0.0006, + "loss": 3.965155601501465, + "step": 1418 + }, + { + "epoch": 19.712975098296198, + "grad_norm": 0.2566570043563843, + "learning_rate": 0.0006, + "loss": 3.984218120574951, + "step": 1419 + }, + { + "epoch": 19.72695500218436, + "grad_norm": 0.2218743860721588, + "learning_rate": 0.0006, + "loss": 3.9338784217834473, + "step": 1420 + }, + { + "epoch": 19.74093490607252, + "grad_norm": 0.22894173860549927, + "learning_rate": 0.0006, + "loss": 3.9869046211242676, + "step": 1421 + }, + { + "epoch": 19.75491480996068, + "grad_norm": 0.26837027072906494, + "learning_rate": 0.0006, + "loss": 3.96799898147583, + "step": 1422 + }, + { + "epoch": 19.76889471384884, + "grad_norm": 0.2767876982688904, + "learning_rate": 0.0006, + "loss": 3.9431071281433105, + "step": 1423 + }, + { + "epoch": 19.782874617737004, + "grad_norm": 0.24402284622192383, + "learning_rate": 0.0006, + "loss": 3.9631881713867188, + "step": 1424 + }, + { + "epoch": 19.796854521625164, + "grad_norm": 0.23500724136829376, + "learning_rate": 0.0006, + "loss": 3.9943337440490723, + "step": 1425 + }, + { + "epoch": 19.810834425513324, + "grad_norm": 0.22509142756462097, + "learning_rate": 0.0006, + "loss": 3.961226224899292, + "step": 1426 + }, + { + "epoch": 19.824814329401484, + "grad_norm": 0.23524795472621918, + "learning_rate": 0.0006, + "loss": 3.9552102088928223, + "step": 1427 + }, + { + "epoch": 19.838794233289647, + "grad_norm": 0.22307050228118896, + "learning_rate": 0.0006, + "loss": 3.9623494148254395, + "step": 1428 + }, + { + "epoch": 19.852774137177807, + "grad_norm": 0.21144486963748932, + "learning_rate": 0.0006, + "loss": 3.9620237350463867, + "step": 1429 + }, + { + "epoch": 19.866754041065967, + "grad_norm": 0.20249812304973602, + "learning_rate": 0.0006, + "loss": 3.953911066055298, + "step": 1430 + }, + { + "epoch": 19.88073394495413, + "grad_norm": 0.2350354939699173, + "learning_rate": 0.0006, + "loss": 3.9616730213165283, + "step": 1431 + }, + { + "epoch": 19.89471384884229, + "grad_norm": 0.2566683292388916, + "learning_rate": 0.0006, + "loss": 3.9372501373291016, + "step": 1432 + }, + { + "epoch": 19.90869375273045, + "grad_norm": 0.2520846128463745, + "learning_rate": 0.0006, + "loss": 3.9814648628234863, + "step": 1433 + }, + { + "epoch": 19.92267365661861, + "grad_norm": 0.23989640176296234, + "learning_rate": 0.0006, + "loss": 3.9692864418029785, + "step": 1434 + }, + { + "epoch": 19.936653560506773, + "grad_norm": 0.20650425553321838, + "learning_rate": 0.0006, + "loss": 3.960256814956665, + "step": 1435 + }, + { + "epoch": 19.950633464394933, + "grad_norm": 0.20478376746177673, + "learning_rate": 0.0006, + "loss": 3.9585227966308594, + "step": 1436 + }, + { + "epoch": 19.964613368283093, + "grad_norm": 0.234436497092247, + "learning_rate": 0.0006, + "loss": 3.945631742477417, + "step": 1437 + }, + { + "epoch": 19.978593272171253, + "grad_norm": 0.19969749450683594, + "learning_rate": 0.0006, + "loss": 3.9646050930023193, + "step": 1438 + }, + { + "epoch": 19.992573176059416, + "grad_norm": 0.20638690888881683, + "learning_rate": 0.0006, + "loss": 3.9461846351623535, + "step": 1439 + }, + { + "epoch": 20.0, + "grad_norm": 0.2120274156332016, + "learning_rate": 0.0006, + "loss": 3.965153217315674, + "step": 1440 + }, + { + "epoch": 20.0, + "eval_loss": 4.168524742126465, + "eval_runtime": 44.2796, + "eval_samples_per_second": 55.15, + "eval_steps_per_second": 3.455, + "step": 1440 + }, + { + "epoch": 20.01397990388816, + "grad_norm": 0.19704894721508026, + "learning_rate": 0.0006, + "loss": 3.937016248703003, + "step": 1441 + }, + { + "epoch": 20.027959807776323, + "grad_norm": 0.18682368099689484, + "learning_rate": 0.0006, + "loss": 3.895922899246216, + "step": 1442 + }, + { + "epoch": 20.041939711664483, + "grad_norm": 0.18982571363449097, + "learning_rate": 0.0006, + "loss": 3.929841995239258, + "step": 1443 + }, + { + "epoch": 20.055919615552643, + "grad_norm": 0.20811910927295685, + "learning_rate": 0.0006, + "loss": 3.9498324394226074, + "step": 1444 + }, + { + "epoch": 20.069899519440803, + "grad_norm": 0.2149062603712082, + "learning_rate": 0.0006, + "loss": 3.929853916168213, + "step": 1445 + }, + { + "epoch": 20.083879423328966, + "grad_norm": 0.20016685128211975, + "learning_rate": 0.0006, + "loss": 3.9374136924743652, + "step": 1446 + }, + { + "epoch": 20.097859327217126, + "grad_norm": 0.19969616830348969, + "learning_rate": 0.0006, + "loss": 3.932447910308838, + "step": 1447 + }, + { + "epoch": 20.111839231105286, + "grad_norm": 0.2163356989622116, + "learning_rate": 0.0006, + "loss": 3.9325437545776367, + "step": 1448 + }, + { + "epoch": 20.125819134993446, + "grad_norm": 0.22026969492435455, + "learning_rate": 0.0006, + "loss": 3.9118852615356445, + "step": 1449 + }, + { + "epoch": 20.13979903888161, + "grad_norm": 0.23337116837501526, + "learning_rate": 0.0006, + "loss": 3.9416019916534424, + "step": 1450 + }, + { + "epoch": 20.15377894276977, + "grad_norm": 0.23971447348594666, + "learning_rate": 0.0006, + "loss": 3.9416871070861816, + "step": 1451 + }, + { + "epoch": 20.16775884665793, + "grad_norm": 0.25973960757255554, + "learning_rate": 0.0006, + "loss": 3.93826961517334, + "step": 1452 + }, + { + "epoch": 20.18173875054609, + "grad_norm": 0.2303445190191269, + "learning_rate": 0.0006, + "loss": 3.909383535385132, + "step": 1453 + }, + { + "epoch": 20.195718654434252, + "grad_norm": 0.21090206503868103, + "learning_rate": 0.0006, + "loss": 3.935939311981201, + "step": 1454 + }, + { + "epoch": 20.209698558322412, + "grad_norm": 0.2278691977262497, + "learning_rate": 0.0006, + "loss": 3.9623684883117676, + "step": 1455 + }, + { + "epoch": 20.22367846221057, + "grad_norm": 0.22291512787342072, + "learning_rate": 0.0006, + "loss": 3.9386210441589355, + "step": 1456 + }, + { + "epoch": 20.23765836609873, + "grad_norm": 0.2385793924331665, + "learning_rate": 0.0006, + "loss": 3.927365303039551, + "step": 1457 + }, + { + "epoch": 20.251638269986895, + "grad_norm": 0.23949867486953735, + "learning_rate": 0.0006, + "loss": 3.956698179244995, + "step": 1458 + }, + { + "epoch": 20.265618173875055, + "grad_norm": 0.2232269048690796, + "learning_rate": 0.0006, + "loss": 3.9465065002441406, + "step": 1459 + }, + { + "epoch": 20.279598077763215, + "grad_norm": 0.22286680340766907, + "learning_rate": 0.0006, + "loss": 3.9102284908294678, + "step": 1460 + }, + { + "epoch": 20.293577981651374, + "grad_norm": 0.24039050936698914, + "learning_rate": 0.0006, + "loss": 3.928055763244629, + "step": 1461 + }, + { + "epoch": 20.307557885539538, + "grad_norm": 0.2532738447189331, + "learning_rate": 0.0006, + "loss": 3.931753635406494, + "step": 1462 + }, + { + "epoch": 20.321537789427698, + "grad_norm": 0.2206273376941681, + "learning_rate": 0.0006, + "loss": 3.936119556427002, + "step": 1463 + }, + { + "epoch": 20.335517693315857, + "grad_norm": 0.20918945968151093, + "learning_rate": 0.0006, + "loss": 3.9228529930114746, + "step": 1464 + }, + { + "epoch": 20.34949759720402, + "grad_norm": 0.2324502319097519, + "learning_rate": 0.0006, + "loss": 3.9370768070220947, + "step": 1465 + }, + { + "epoch": 20.36347750109218, + "grad_norm": 0.26811033487319946, + "learning_rate": 0.0006, + "loss": 3.968515396118164, + "step": 1466 + }, + { + "epoch": 20.37745740498034, + "grad_norm": 0.2896045744419098, + "learning_rate": 0.0006, + "loss": 3.945124626159668, + "step": 1467 + }, + { + "epoch": 20.3914373088685, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 3.9399516582489014, + "step": 1468 + }, + { + "epoch": 20.405417212756664, + "grad_norm": 0.3076821565628052, + "learning_rate": 0.0006, + "loss": 3.9545583724975586, + "step": 1469 + }, + { + "epoch": 20.419397116644824, + "grad_norm": 0.3019449710845947, + "learning_rate": 0.0006, + "loss": 3.9502270221710205, + "step": 1470 + }, + { + "epoch": 20.433377020532983, + "grad_norm": 0.31832560896873474, + "learning_rate": 0.0006, + "loss": 3.940439224243164, + "step": 1471 + }, + { + "epoch": 20.447356924421143, + "grad_norm": 0.30303657054901123, + "learning_rate": 0.0006, + "loss": 3.9451770782470703, + "step": 1472 + }, + { + "epoch": 20.461336828309307, + "grad_norm": 0.28122979402542114, + "learning_rate": 0.0006, + "loss": 3.934508800506592, + "step": 1473 + }, + { + "epoch": 20.475316732197467, + "grad_norm": 0.27013441920280457, + "learning_rate": 0.0006, + "loss": 3.924323081970215, + "step": 1474 + }, + { + "epoch": 20.489296636085626, + "grad_norm": 0.29052063822746277, + "learning_rate": 0.0006, + "loss": 3.970916748046875, + "step": 1475 + }, + { + "epoch": 20.503276539973786, + "grad_norm": 0.2871626913547516, + "learning_rate": 0.0006, + "loss": 3.945425033569336, + "step": 1476 + }, + { + "epoch": 20.51725644386195, + "grad_norm": 0.2396184206008911, + "learning_rate": 0.0006, + "loss": 3.964290142059326, + "step": 1477 + }, + { + "epoch": 20.53123634775011, + "grad_norm": 0.21942107379436493, + "learning_rate": 0.0006, + "loss": 3.910101890563965, + "step": 1478 + }, + { + "epoch": 20.54521625163827, + "grad_norm": 0.22193685173988342, + "learning_rate": 0.0006, + "loss": 3.914005756378174, + "step": 1479 + }, + { + "epoch": 20.55919615552643, + "grad_norm": 0.20207515358924866, + "learning_rate": 0.0006, + "loss": 3.9575581550598145, + "step": 1480 + }, + { + "epoch": 20.573176059414592, + "grad_norm": 0.17855247855186462, + "learning_rate": 0.0006, + "loss": 3.941490411758423, + "step": 1481 + }, + { + "epoch": 20.587155963302752, + "grad_norm": 0.21268485486507416, + "learning_rate": 0.0006, + "loss": 3.94045352935791, + "step": 1482 + }, + { + "epoch": 20.601135867190912, + "grad_norm": 0.24890053272247314, + "learning_rate": 0.0006, + "loss": 3.932961940765381, + "step": 1483 + }, + { + "epoch": 20.615115771079076, + "grad_norm": 0.23771314322948456, + "learning_rate": 0.0006, + "loss": 3.9067630767822266, + "step": 1484 + }, + { + "epoch": 20.629095674967235, + "grad_norm": 0.20990237593650818, + "learning_rate": 0.0006, + "loss": 3.9476752281188965, + "step": 1485 + }, + { + "epoch": 20.643075578855395, + "grad_norm": 0.20058798789978027, + "learning_rate": 0.0006, + "loss": 3.9350547790527344, + "step": 1486 + }, + { + "epoch": 20.657055482743555, + "grad_norm": 0.1953001767396927, + "learning_rate": 0.0006, + "loss": 3.9437222480773926, + "step": 1487 + }, + { + "epoch": 20.67103538663172, + "grad_norm": 0.18748535215854645, + "learning_rate": 0.0006, + "loss": 3.9336047172546387, + "step": 1488 + }, + { + "epoch": 20.68501529051988, + "grad_norm": 0.18874801695346832, + "learning_rate": 0.0006, + "loss": 3.9042580127716064, + "step": 1489 + }, + { + "epoch": 20.698995194408038, + "grad_norm": 0.1844169795513153, + "learning_rate": 0.0006, + "loss": 3.9302420616149902, + "step": 1490 + }, + { + "epoch": 20.712975098296198, + "grad_norm": 0.18519413471221924, + "learning_rate": 0.0006, + "loss": 3.9527437686920166, + "step": 1491 + }, + { + "epoch": 20.72695500218436, + "grad_norm": 0.20084598660469055, + "learning_rate": 0.0006, + "loss": 3.9161760807037354, + "step": 1492 + }, + { + "epoch": 20.74093490607252, + "grad_norm": 0.2015734612941742, + "learning_rate": 0.0006, + "loss": 3.9466545581817627, + "step": 1493 + }, + { + "epoch": 20.75491480996068, + "grad_norm": 0.2210122048854828, + "learning_rate": 0.0006, + "loss": 3.8994693756103516, + "step": 1494 + }, + { + "epoch": 20.76889471384884, + "grad_norm": 0.23019762337207794, + "learning_rate": 0.0006, + "loss": 3.93685245513916, + "step": 1495 + }, + { + "epoch": 20.782874617737004, + "grad_norm": 0.21246281266212463, + "learning_rate": 0.0006, + "loss": 3.9499399662017822, + "step": 1496 + }, + { + "epoch": 20.796854521625164, + "grad_norm": 0.21142810583114624, + "learning_rate": 0.0006, + "loss": 3.9317150115966797, + "step": 1497 + }, + { + "epoch": 20.810834425513324, + "grad_norm": 0.20230524241924286, + "learning_rate": 0.0006, + "loss": 3.9389750957489014, + "step": 1498 + }, + { + "epoch": 20.824814329401484, + "grad_norm": 0.21096977591514587, + "learning_rate": 0.0006, + "loss": 3.9325194358825684, + "step": 1499 + }, + { + "epoch": 20.838794233289647, + "grad_norm": 0.2309989333152771, + "learning_rate": 0.0006, + "loss": 3.943641185760498, + "step": 1500 + }, + { + "epoch": 20.852774137177807, + "grad_norm": 0.2016306221485138, + "learning_rate": 0.0006, + "loss": 3.986043930053711, + "step": 1501 + }, + { + "epoch": 20.866754041065967, + "grad_norm": 0.2107970118522644, + "learning_rate": 0.0006, + "loss": 3.9219160079956055, + "step": 1502 + }, + { + "epoch": 20.88073394495413, + "grad_norm": 0.21580125391483307, + "learning_rate": 0.0006, + "loss": 3.942014694213867, + "step": 1503 + }, + { + "epoch": 20.89471384884229, + "grad_norm": 0.21348726749420166, + "learning_rate": 0.0006, + "loss": 3.9389920234680176, + "step": 1504 + }, + { + "epoch": 20.90869375273045, + "grad_norm": 0.23094943165779114, + "learning_rate": 0.0006, + "loss": 3.952993392944336, + "step": 1505 + }, + { + "epoch": 20.92267365661861, + "grad_norm": 0.22431740164756775, + "learning_rate": 0.0006, + "loss": 3.897671937942505, + "step": 1506 + }, + { + "epoch": 20.936653560506773, + "grad_norm": 0.20056353509426117, + "learning_rate": 0.0006, + "loss": 3.9100005626678467, + "step": 1507 + }, + { + "epoch": 20.950633464394933, + "grad_norm": 0.20604434609413147, + "learning_rate": 0.0006, + "loss": 3.9486045837402344, + "step": 1508 + }, + { + "epoch": 20.964613368283093, + "grad_norm": 0.22979380190372467, + "learning_rate": 0.0006, + "loss": 3.977163553237915, + "step": 1509 + }, + { + "epoch": 20.978593272171253, + "grad_norm": 0.2421523779630661, + "learning_rate": 0.0006, + "loss": 3.9216256141662598, + "step": 1510 + }, + { + "epoch": 20.992573176059416, + "grad_norm": 0.25776705145835876, + "learning_rate": 0.0006, + "loss": 3.9221739768981934, + "step": 1511 + }, + { + "epoch": 21.0, + "grad_norm": 0.2750694751739502, + "learning_rate": 0.0006, + "loss": 3.938098907470703, + "step": 1512 + }, + { + "epoch": 21.0, + "eval_loss": 4.159763336181641, + "eval_runtime": 44.8663, + "eval_samples_per_second": 54.428, + "eval_steps_per_second": 3.41, + "step": 1512 + }, + { + "epoch": 21.01397990388816, + "grad_norm": 0.24513043463230133, + "learning_rate": 0.0006, + "loss": 3.8939385414123535, + "step": 1513 + }, + { + "epoch": 21.027959807776323, + "grad_norm": 0.22209352254867554, + "learning_rate": 0.0006, + "loss": 3.9044857025146484, + "step": 1514 + }, + { + "epoch": 21.041939711664483, + "grad_norm": 0.22437648475170135, + "learning_rate": 0.0006, + "loss": 3.9325196743011475, + "step": 1515 + }, + { + "epoch": 21.055919615552643, + "grad_norm": 0.21168062090873718, + "learning_rate": 0.0006, + "loss": 3.882176637649536, + "step": 1516 + }, + { + "epoch": 21.069899519440803, + "grad_norm": 0.22334499657154083, + "learning_rate": 0.0006, + "loss": 3.8978934288024902, + "step": 1517 + }, + { + "epoch": 21.083879423328966, + "grad_norm": 0.21038010716438293, + "learning_rate": 0.0006, + "loss": 3.8807029724121094, + "step": 1518 + }, + { + "epoch": 21.097859327217126, + "grad_norm": 0.2243613600730896, + "learning_rate": 0.0006, + "loss": 3.924865961074829, + "step": 1519 + }, + { + "epoch": 21.111839231105286, + "grad_norm": 0.2535616159439087, + "learning_rate": 0.0006, + "loss": 3.9288227558135986, + "step": 1520 + }, + { + "epoch": 21.125819134993446, + "grad_norm": 0.2782756984233856, + "learning_rate": 0.0006, + "loss": 3.908233642578125, + "step": 1521 + }, + { + "epoch": 21.13979903888161, + "grad_norm": 0.2586214542388916, + "learning_rate": 0.0006, + "loss": 3.9151182174682617, + "step": 1522 + }, + { + "epoch": 21.15377894276977, + "grad_norm": 0.22465091943740845, + "learning_rate": 0.0006, + "loss": 3.9209084510803223, + "step": 1523 + }, + { + "epoch": 21.16775884665793, + "grad_norm": 0.2588018774986267, + "learning_rate": 0.0006, + "loss": 3.9295971393585205, + "step": 1524 + }, + { + "epoch": 21.18173875054609, + "grad_norm": 0.2637675702571869, + "learning_rate": 0.0006, + "loss": 3.9353199005126953, + "step": 1525 + }, + { + "epoch": 21.195718654434252, + "grad_norm": 0.2806383967399597, + "learning_rate": 0.0006, + "loss": 3.922337770462036, + "step": 1526 + }, + { + "epoch": 21.209698558322412, + "grad_norm": 0.27103501558303833, + "learning_rate": 0.0006, + "loss": 3.8811073303222656, + "step": 1527 + }, + { + "epoch": 21.22367846221057, + "grad_norm": 0.27203720808029175, + "learning_rate": 0.0006, + "loss": 3.9036178588867188, + "step": 1528 + }, + { + "epoch": 21.23765836609873, + "grad_norm": 0.2783355712890625, + "learning_rate": 0.0006, + "loss": 3.885456085205078, + "step": 1529 + }, + { + "epoch": 21.251638269986895, + "grad_norm": 0.2884930968284607, + "learning_rate": 0.0006, + "loss": 3.8936941623687744, + "step": 1530 + }, + { + "epoch": 21.265618173875055, + "grad_norm": 0.2829558849334717, + "learning_rate": 0.0006, + "loss": 3.927624225616455, + "step": 1531 + }, + { + "epoch": 21.279598077763215, + "grad_norm": 0.2809497117996216, + "learning_rate": 0.0006, + "loss": 3.8896753787994385, + "step": 1532 + }, + { + "epoch": 21.293577981651374, + "grad_norm": 0.27037671208381653, + "learning_rate": 0.0006, + "loss": 3.91316294670105, + "step": 1533 + }, + { + "epoch": 21.307557885539538, + "grad_norm": 0.310051292181015, + "learning_rate": 0.0006, + "loss": 3.9137332439422607, + "step": 1534 + }, + { + "epoch": 21.321537789427698, + "grad_norm": 0.30489876866340637, + "learning_rate": 0.0006, + "loss": 3.9088284969329834, + "step": 1535 + }, + { + "epoch": 21.335517693315857, + "grad_norm": 0.2607756555080414, + "learning_rate": 0.0006, + "loss": 3.9097847938537598, + "step": 1536 + }, + { + "epoch": 21.34949759720402, + "grad_norm": 0.2460775375366211, + "learning_rate": 0.0006, + "loss": 3.941211700439453, + "step": 1537 + }, + { + "epoch": 21.36347750109218, + "grad_norm": 0.24271734058856964, + "learning_rate": 0.0006, + "loss": 3.9140594005584717, + "step": 1538 + }, + { + "epoch": 21.37745740498034, + "grad_norm": 0.20012645423412323, + "learning_rate": 0.0006, + "loss": 3.888446807861328, + "step": 1539 + }, + { + "epoch": 21.3914373088685, + "grad_norm": 0.2196308672428131, + "learning_rate": 0.0006, + "loss": 3.9153785705566406, + "step": 1540 + }, + { + "epoch": 21.405417212756664, + "grad_norm": 0.22184589505195618, + "learning_rate": 0.0006, + "loss": 3.91996431350708, + "step": 1541 + }, + { + "epoch": 21.419397116644824, + "grad_norm": 0.22947315871715546, + "learning_rate": 0.0006, + "loss": 3.9268412590026855, + "step": 1542 + }, + { + "epoch": 21.433377020532983, + "grad_norm": 0.22275054454803467, + "learning_rate": 0.0006, + "loss": 3.909275531768799, + "step": 1543 + }, + { + "epoch": 21.447356924421143, + "grad_norm": 0.23103971779346466, + "learning_rate": 0.0006, + "loss": 3.925635814666748, + "step": 1544 + }, + { + "epoch": 21.461336828309307, + "grad_norm": 0.23379720747470856, + "learning_rate": 0.0006, + "loss": 3.926647186279297, + "step": 1545 + }, + { + "epoch": 21.475316732197467, + "grad_norm": 0.2244282215833664, + "learning_rate": 0.0006, + "loss": 3.9428000450134277, + "step": 1546 + }, + { + "epoch": 21.489296636085626, + "grad_norm": 0.22773298621177673, + "learning_rate": 0.0006, + "loss": 3.9378256797790527, + "step": 1547 + }, + { + "epoch": 21.503276539973786, + "grad_norm": 0.1918657273054123, + "learning_rate": 0.0006, + "loss": 3.904022216796875, + "step": 1548 + }, + { + "epoch": 21.51725644386195, + "grad_norm": 0.18415570259094238, + "learning_rate": 0.0006, + "loss": 3.9105122089385986, + "step": 1549 + }, + { + "epoch": 21.53123634775011, + "grad_norm": 0.22141380608081818, + "learning_rate": 0.0006, + "loss": 3.9153857231140137, + "step": 1550 + }, + { + "epoch": 21.54521625163827, + "grad_norm": 0.22533352673053741, + "learning_rate": 0.0006, + "loss": 3.9148974418640137, + "step": 1551 + }, + { + "epoch": 21.55919615552643, + "grad_norm": 0.2124762088060379, + "learning_rate": 0.0006, + "loss": 3.926311731338501, + "step": 1552 + }, + { + "epoch": 21.573176059414592, + "grad_norm": 0.239680215716362, + "learning_rate": 0.0006, + "loss": 3.9260334968566895, + "step": 1553 + }, + { + "epoch": 21.587155963302752, + "grad_norm": 0.24158740043640137, + "learning_rate": 0.0006, + "loss": 3.933223247528076, + "step": 1554 + }, + { + "epoch": 21.601135867190912, + "grad_norm": 0.2216576784849167, + "learning_rate": 0.0006, + "loss": 3.9065442085266113, + "step": 1555 + }, + { + "epoch": 21.615115771079076, + "grad_norm": 0.20099912583827972, + "learning_rate": 0.0006, + "loss": 3.923278570175171, + "step": 1556 + }, + { + "epoch": 21.629095674967235, + "grad_norm": 0.2337288111448288, + "learning_rate": 0.0006, + "loss": 3.92032527923584, + "step": 1557 + }, + { + "epoch": 21.643075578855395, + "grad_norm": 0.23574814200401306, + "learning_rate": 0.0006, + "loss": 3.896244525909424, + "step": 1558 + }, + { + "epoch": 21.657055482743555, + "grad_norm": 0.21338573098182678, + "learning_rate": 0.0006, + "loss": 3.930345058441162, + "step": 1559 + }, + { + "epoch": 21.67103538663172, + "grad_norm": 0.2375067174434662, + "learning_rate": 0.0006, + "loss": 3.864104986190796, + "step": 1560 + }, + { + "epoch": 21.68501529051988, + "grad_norm": 0.22490349411964417, + "learning_rate": 0.0006, + "loss": 3.883296012878418, + "step": 1561 + }, + { + "epoch": 21.698995194408038, + "grad_norm": 0.23021313548088074, + "learning_rate": 0.0006, + "loss": 3.915200710296631, + "step": 1562 + }, + { + "epoch": 21.712975098296198, + "grad_norm": 0.22590875625610352, + "learning_rate": 0.0006, + "loss": 3.903597354888916, + "step": 1563 + }, + { + "epoch": 21.72695500218436, + "grad_norm": 0.19066260755062103, + "learning_rate": 0.0006, + "loss": 3.9162631034851074, + "step": 1564 + }, + { + "epoch": 21.74093490607252, + "grad_norm": 0.18134327232837677, + "learning_rate": 0.0006, + "loss": 3.9167914390563965, + "step": 1565 + }, + { + "epoch": 21.75491480996068, + "grad_norm": 0.1782190054655075, + "learning_rate": 0.0006, + "loss": 3.900925636291504, + "step": 1566 + }, + { + "epoch": 21.76889471384884, + "grad_norm": 0.19034099578857422, + "learning_rate": 0.0006, + "loss": 3.896559238433838, + "step": 1567 + }, + { + "epoch": 21.782874617737004, + "grad_norm": 0.21509577333927155, + "learning_rate": 0.0006, + "loss": 3.891681671142578, + "step": 1568 + }, + { + "epoch": 21.796854521625164, + "grad_norm": 0.2370351105928421, + "learning_rate": 0.0006, + "loss": 3.886570453643799, + "step": 1569 + }, + { + "epoch": 21.810834425513324, + "grad_norm": 0.25546324253082275, + "learning_rate": 0.0006, + "loss": 3.9247193336486816, + "step": 1570 + }, + { + "epoch": 21.824814329401484, + "grad_norm": 0.2513384222984314, + "learning_rate": 0.0006, + "loss": 3.9120583534240723, + "step": 1571 + }, + { + "epoch": 21.838794233289647, + "grad_norm": 0.24691323935985565, + "learning_rate": 0.0006, + "loss": 3.9144935607910156, + "step": 1572 + }, + { + "epoch": 21.852774137177807, + "grad_norm": 0.2573968172073364, + "learning_rate": 0.0006, + "loss": 3.9517531394958496, + "step": 1573 + }, + { + "epoch": 21.866754041065967, + "grad_norm": 0.25461453199386597, + "learning_rate": 0.0006, + "loss": 3.93508243560791, + "step": 1574 + }, + { + "epoch": 21.88073394495413, + "grad_norm": 0.23756568133831024, + "learning_rate": 0.0006, + "loss": 3.8885269165039062, + "step": 1575 + }, + { + "epoch": 21.89471384884229, + "grad_norm": 0.2193172425031662, + "learning_rate": 0.0006, + "loss": 3.9103426933288574, + "step": 1576 + }, + { + "epoch": 21.90869375273045, + "grad_norm": 0.2350149303674698, + "learning_rate": 0.0006, + "loss": 3.9399590492248535, + "step": 1577 + }, + { + "epoch": 21.92267365661861, + "grad_norm": 0.23759333789348602, + "learning_rate": 0.0006, + "loss": 3.9433584213256836, + "step": 1578 + }, + { + "epoch": 21.936653560506773, + "grad_norm": 0.21108432114124298, + "learning_rate": 0.0006, + "loss": 3.9241819381713867, + "step": 1579 + }, + { + "epoch": 21.950633464394933, + "grad_norm": 0.22088949382305145, + "learning_rate": 0.0006, + "loss": 3.9231910705566406, + "step": 1580 + }, + { + "epoch": 21.964613368283093, + "grad_norm": 0.22125045955181122, + "learning_rate": 0.0006, + "loss": 3.896329164505005, + "step": 1581 + }, + { + "epoch": 21.978593272171253, + "grad_norm": 0.20745202898979187, + "learning_rate": 0.0006, + "loss": 3.8920536041259766, + "step": 1582 + }, + { + "epoch": 21.992573176059416, + "grad_norm": 0.2409721463918686, + "learning_rate": 0.0006, + "loss": 3.9061317443847656, + "step": 1583 + }, + { + "epoch": 22.0, + "grad_norm": 0.2669669985771179, + "learning_rate": 0.0006, + "loss": 3.922062397003174, + "step": 1584 + }, + { + "epoch": 22.0, + "eval_loss": 4.140966415405273, + "eval_runtime": 46.7132, + "eval_samples_per_second": 52.276, + "eval_steps_per_second": 3.275, + "step": 1584 + }, + { + "epoch": 22.01397990388816, + "grad_norm": 0.26155969500541687, + "learning_rate": 0.0006, + "loss": 3.888944625854492, + "step": 1585 + }, + { + "epoch": 22.027959807776323, + "grad_norm": 0.2579149007797241, + "learning_rate": 0.0006, + "loss": 3.8924355506896973, + "step": 1586 + }, + { + "epoch": 22.041939711664483, + "grad_norm": 0.2429896742105484, + "learning_rate": 0.0006, + "loss": 3.8714070320129395, + "step": 1587 + }, + { + "epoch": 22.055919615552643, + "grad_norm": 0.23497673869132996, + "learning_rate": 0.0006, + "loss": 3.905089855194092, + "step": 1588 + }, + { + "epoch": 22.069899519440803, + "grad_norm": 0.24074940383434296, + "learning_rate": 0.0006, + "loss": 3.886845111846924, + "step": 1589 + }, + { + "epoch": 22.083879423328966, + "grad_norm": 0.2226274162530899, + "learning_rate": 0.0006, + "loss": 3.8554329872131348, + "step": 1590 + }, + { + "epoch": 22.097859327217126, + "grad_norm": 0.22924423217773438, + "learning_rate": 0.0006, + "loss": 3.8914356231689453, + "step": 1591 + }, + { + "epoch": 22.111839231105286, + "grad_norm": 0.2459387183189392, + "learning_rate": 0.0006, + "loss": 3.902522087097168, + "step": 1592 + }, + { + "epoch": 22.125819134993446, + "grad_norm": 0.2704590857028961, + "learning_rate": 0.0006, + "loss": 3.896497964859009, + "step": 1593 + }, + { + "epoch": 22.13979903888161, + "grad_norm": 0.2848219871520996, + "learning_rate": 0.0006, + "loss": 3.88423228263855, + "step": 1594 + }, + { + "epoch": 22.15377894276977, + "grad_norm": 0.22996552288532257, + "learning_rate": 0.0006, + "loss": 3.9034953117370605, + "step": 1595 + }, + { + "epoch": 22.16775884665793, + "grad_norm": 0.2117270529270172, + "learning_rate": 0.0006, + "loss": 3.888279914855957, + "step": 1596 + }, + { + "epoch": 22.18173875054609, + "grad_norm": 0.19724160432815552, + "learning_rate": 0.0006, + "loss": 3.860525131225586, + "step": 1597 + }, + { + "epoch": 22.195718654434252, + "grad_norm": 0.2012624740600586, + "learning_rate": 0.0006, + "loss": 3.8930106163024902, + "step": 1598 + }, + { + "epoch": 22.209698558322412, + "grad_norm": 0.20243871212005615, + "learning_rate": 0.0006, + "loss": 3.8727619647979736, + "step": 1599 + }, + { + "epoch": 22.22367846221057, + "grad_norm": 0.21737465262413025, + "learning_rate": 0.0006, + "loss": 3.887969493865967, + "step": 1600 + }, + { + "epoch": 22.23765836609873, + "grad_norm": 0.23969845473766327, + "learning_rate": 0.0006, + "loss": 3.8629722595214844, + "step": 1601 + }, + { + "epoch": 22.251638269986895, + "grad_norm": 0.22874902188777924, + "learning_rate": 0.0006, + "loss": 3.9135584831237793, + "step": 1602 + }, + { + "epoch": 22.265618173875055, + "grad_norm": 0.209506556391716, + "learning_rate": 0.0006, + "loss": 3.8734190464019775, + "step": 1603 + }, + { + "epoch": 22.279598077763215, + "grad_norm": 0.22235789895057678, + "learning_rate": 0.0006, + "loss": 3.884854793548584, + "step": 1604 + }, + { + "epoch": 22.293577981651374, + "grad_norm": 0.21975041925907135, + "learning_rate": 0.0006, + "loss": 3.8860888481140137, + "step": 1605 + }, + { + "epoch": 22.307557885539538, + "grad_norm": 0.21474459767341614, + "learning_rate": 0.0006, + "loss": 3.9052200317382812, + "step": 1606 + }, + { + "epoch": 22.321537789427698, + "grad_norm": 0.2103329747915268, + "learning_rate": 0.0006, + "loss": 3.8516340255737305, + "step": 1607 + }, + { + "epoch": 22.335517693315857, + "grad_norm": 0.1981191635131836, + "learning_rate": 0.0006, + "loss": 3.9017434120178223, + "step": 1608 + }, + { + "epoch": 22.34949759720402, + "grad_norm": 0.20679591596126556, + "learning_rate": 0.0006, + "loss": 3.889885425567627, + "step": 1609 + }, + { + "epoch": 22.36347750109218, + "grad_norm": 0.20809867978096008, + "learning_rate": 0.0006, + "loss": 3.881868362426758, + "step": 1610 + }, + { + "epoch": 22.37745740498034, + "grad_norm": 0.21394680440425873, + "learning_rate": 0.0006, + "loss": 3.89980411529541, + "step": 1611 + }, + { + "epoch": 22.3914373088685, + "grad_norm": 0.2334284782409668, + "learning_rate": 0.0006, + "loss": 3.8672266006469727, + "step": 1612 + }, + { + "epoch": 22.405417212756664, + "grad_norm": 0.26521918177604675, + "learning_rate": 0.0006, + "loss": 3.8918118476867676, + "step": 1613 + }, + { + "epoch": 22.419397116644824, + "grad_norm": 0.2652994394302368, + "learning_rate": 0.0006, + "loss": 3.8683271408081055, + "step": 1614 + }, + { + "epoch": 22.433377020532983, + "grad_norm": 0.2568066716194153, + "learning_rate": 0.0006, + "loss": 3.892523765563965, + "step": 1615 + }, + { + "epoch": 22.447356924421143, + "grad_norm": 0.260052353143692, + "learning_rate": 0.0006, + "loss": 3.897305488586426, + "step": 1616 + }, + { + "epoch": 22.461336828309307, + "grad_norm": 0.2744271457195282, + "learning_rate": 0.0006, + "loss": 3.8962221145629883, + "step": 1617 + }, + { + "epoch": 22.475316732197467, + "grad_norm": 0.23755787312984467, + "learning_rate": 0.0006, + "loss": 3.888184070587158, + "step": 1618 + }, + { + "epoch": 22.489296636085626, + "grad_norm": 0.2515312135219574, + "learning_rate": 0.0006, + "loss": 3.8946003913879395, + "step": 1619 + }, + { + "epoch": 22.503276539973786, + "grad_norm": 0.24835044145584106, + "learning_rate": 0.0006, + "loss": 3.8711423873901367, + "step": 1620 + }, + { + "epoch": 22.51725644386195, + "grad_norm": 0.22615326941013336, + "learning_rate": 0.0006, + "loss": 3.8878846168518066, + "step": 1621 + }, + { + "epoch": 22.53123634775011, + "grad_norm": 0.20482423901557922, + "learning_rate": 0.0006, + "loss": 3.8782598972320557, + "step": 1622 + }, + { + "epoch": 22.54521625163827, + "grad_norm": 0.20436473190784454, + "learning_rate": 0.0006, + "loss": 3.9075279235839844, + "step": 1623 + }, + { + "epoch": 22.55919615552643, + "grad_norm": 0.2066277265548706, + "learning_rate": 0.0006, + "loss": 3.89908766746521, + "step": 1624 + }, + { + "epoch": 22.573176059414592, + "grad_norm": 0.20735307037830353, + "learning_rate": 0.0006, + "loss": 3.865204334259033, + "step": 1625 + }, + { + "epoch": 22.587155963302752, + "grad_norm": 0.20955748856067657, + "learning_rate": 0.0006, + "loss": 3.8835532665252686, + "step": 1626 + }, + { + "epoch": 22.601135867190912, + "grad_norm": 0.21354222297668457, + "learning_rate": 0.0006, + "loss": 3.9012551307678223, + "step": 1627 + }, + { + "epoch": 22.615115771079076, + "grad_norm": 0.2075091004371643, + "learning_rate": 0.0006, + "loss": 3.8733482360839844, + "step": 1628 + }, + { + "epoch": 22.629095674967235, + "grad_norm": 0.20207874476909637, + "learning_rate": 0.0006, + "loss": 3.9193859100341797, + "step": 1629 + }, + { + "epoch": 22.643075578855395, + "grad_norm": 0.21863923966884613, + "learning_rate": 0.0006, + "loss": 3.883518695831299, + "step": 1630 + }, + { + "epoch": 22.657055482743555, + "grad_norm": 0.22117522358894348, + "learning_rate": 0.0006, + "loss": 3.9163284301757812, + "step": 1631 + }, + { + "epoch": 22.67103538663172, + "grad_norm": 0.2078622728586197, + "learning_rate": 0.0006, + "loss": 3.868274688720703, + "step": 1632 + }, + { + "epoch": 22.68501529051988, + "grad_norm": 0.22745893895626068, + "learning_rate": 0.0006, + "loss": 3.9171340465545654, + "step": 1633 + }, + { + "epoch": 22.698995194408038, + "grad_norm": 0.2312736064195633, + "learning_rate": 0.0006, + "loss": 3.9487013816833496, + "step": 1634 + }, + { + "epoch": 22.712975098296198, + "grad_norm": 0.20491497218608856, + "learning_rate": 0.0006, + "loss": 3.91833758354187, + "step": 1635 + }, + { + "epoch": 22.72695500218436, + "grad_norm": 0.1899084597826004, + "learning_rate": 0.0006, + "loss": 3.876225709915161, + "step": 1636 + }, + { + "epoch": 22.74093490607252, + "grad_norm": 0.18581682443618774, + "learning_rate": 0.0006, + "loss": 3.8667988777160645, + "step": 1637 + }, + { + "epoch": 22.75491480996068, + "grad_norm": 0.19855599105358124, + "learning_rate": 0.0006, + "loss": 3.900789260864258, + "step": 1638 + }, + { + "epoch": 22.76889471384884, + "grad_norm": 0.19951458275318146, + "learning_rate": 0.0006, + "loss": 3.8850367069244385, + "step": 1639 + }, + { + "epoch": 22.782874617737004, + "grad_norm": 0.22802744805812836, + "learning_rate": 0.0006, + "loss": 3.9181363582611084, + "step": 1640 + }, + { + "epoch": 22.796854521625164, + "grad_norm": 0.24279919266700745, + "learning_rate": 0.0006, + "loss": 3.8843770027160645, + "step": 1641 + }, + { + "epoch": 22.810834425513324, + "grad_norm": 0.23554913699626923, + "learning_rate": 0.0006, + "loss": 3.8802413940429688, + "step": 1642 + }, + { + "epoch": 22.824814329401484, + "grad_norm": 0.22343270480632782, + "learning_rate": 0.0006, + "loss": 3.8524107933044434, + "step": 1643 + }, + { + "epoch": 22.838794233289647, + "grad_norm": 0.2185724526643753, + "learning_rate": 0.0006, + "loss": 3.9117047786712646, + "step": 1644 + }, + { + "epoch": 22.852774137177807, + "grad_norm": 0.2114841341972351, + "learning_rate": 0.0006, + "loss": 3.90325927734375, + "step": 1645 + }, + { + "epoch": 22.866754041065967, + "grad_norm": 0.21072550117969513, + "learning_rate": 0.0006, + "loss": 3.8988137245178223, + "step": 1646 + }, + { + "epoch": 22.88073394495413, + "grad_norm": 0.2250078171491623, + "learning_rate": 0.0006, + "loss": 3.9201531410217285, + "step": 1647 + }, + { + "epoch": 22.89471384884229, + "grad_norm": 0.20928071439266205, + "learning_rate": 0.0006, + "loss": 3.91666316986084, + "step": 1648 + }, + { + "epoch": 22.90869375273045, + "grad_norm": 0.24096311628818512, + "learning_rate": 0.0006, + "loss": 3.8797364234924316, + "step": 1649 + }, + { + "epoch": 22.92267365661861, + "grad_norm": 0.2591194212436676, + "learning_rate": 0.0006, + "loss": 3.883273124694824, + "step": 1650 + }, + { + "epoch": 22.936653560506773, + "grad_norm": 0.27342668175697327, + "learning_rate": 0.0006, + "loss": 3.8645026683807373, + "step": 1651 + }, + { + "epoch": 22.950633464394933, + "grad_norm": 0.2448573112487793, + "learning_rate": 0.0006, + "loss": 3.9093551635742188, + "step": 1652 + }, + { + "epoch": 22.964613368283093, + "grad_norm": 0.19899503886699677, + "learning_rate": 0.0006, + "loss": 3.9001057147979736, + "step": 1653 + }, + { + "epoch": 22.978593272171253, + "grad_norm": 0.2023746520280838, + "learning_rate": 0.0006, + "loss": 3.886474370956421, + "step": 1654 + }, + { + "epoch": 22.992573176059416, + "grad_norm": 0.19894269108772278, + "learning_rate": 0.0006, + "loss": 3.9004204273223877, + "step": 1655 + }, + { + "epoch": 23.0, + "grad_norm": 0.2401709407567978, + "learning_rate": 0.0006, + "loss": 3.8665566444396973, + "step": 1656 + }, + { + "epoch": 23.0, + "eval_loss": 4.112459659576416, + "eval_runtime": 44.8325, + "eval_samples_per_second": 54.469, + "eval_steps_per_second": 3.413, + "step": 1656 + }, + { + "epoch": 23.01397990388816, + "grad_norm": 0.22662921249866486, + "learning_rate": 0.0006, + "loss": 3.853271961212158, + "step": 1657 + }, + { + "epoch": 23.027959807776323, + "grad_norm": 0.24406856298446655, + "learning_rate": 0.0006, + "loss": 3.8691890239715576, + "step": 1658 + }, + { + "epoch": 23.041939711664483, + "grad_norm": 0.2266651839017868, + "learning_rate": 0.0006, + "loss": 3.838599681854248, + "step": 1659 + }, + { + "epoch": 23.055919615552643, + "grad_norm": 0.22303511202335358, + "learning_rate": 0.0006, + "loss": 3.8678267002105713, + "step": 1660 + }, + { + "epoch": 23.069899519440803, + "grad_norm": 0.2272164225578308, + "learning_rate": 0.0006, + "loss": 3.9045681953430176, + "step": 1661 + }, + { + "epoch": 23.083879423328966, + "grad_norm": 0.25004875659942627, + "learning_rate": 0.0006, + "loss": 3.856503963470459, + "step": 1662 + }, + { + "epoch": 23.097859327217126, + "grad_norm": 0.26016247272491455, + "learning_rate": 0.0006, + "loss": 3.878587007522583, + "step": 1663 + }, + { + "epoch": 23.111839231105286, + "grad_norm": 0.28539901971817017, + "learning_rate": 0.0006, + "loss": 3.864248514175415, + "step": 1664 + }, + { + "epoch": 23.125819134993446, + "grad_norm": 0.27504822611808777, + "learning_rate": 0.0006, + "loss": 3.821448802947998, + "step": 1665 + }, + { + "epoch": 23.13979903888161, + "grad_norm": 0.238910973072052, + "learning_rate": 0.0006, + "loss": 3.8635847568511963, + "step": 1666 + }, + { + "epoch": 23.15377894276977, + "grad_norm": 0.24179652333259583, + "learning_rate": 0.0006, + "loss": 3.8339638710021973, + "step": 1667 + }, + { + "epoch": 23.16775884665793, + "grad_norm": 0.2199544757604599, + "learning_rate": 0.0006, + "loss": 3.868396759033203, + "step": 1668 + }, + { + "epoch": 23.18173875054609, + "grad_norm": 0.1965002566576004, + "learning_rate": 0.0006, + "loss": 3.8761439323425293, + "step": 1669 + }, + { + "epoch": 23.195718654434252, + "grad_norm": 0.20426614582538605, + "learning_rate": 0.0006, + "loss": 3.822899580001831, + "step": 1670 + }, + { + "epoch": 23.209698558322412, + "grad_norm": 0.2197263389825821, + "learning_rate": 0.0006, + "loss": 3.887728452682495, + "step": 1671 + }, + { + "epoch": 23.22367846221057, + "grad_norm": 0.22844573855400085, + "learning_rate": 0.0006, + "loss": 3.8550517559051514, + "step": 1672 + }, + { + "epoch": 23.23765836609873, + "grad_norm": 0.2347746044397354, + "learning_rate": 0.0006, + "loss": 3.903310537338257, + "step": 1673 + }, + { + "epoch": 23.251638269986895, + "grad_norm": 0.24167625606060028, + "learning_rate": 0.0006, + "loss": 3.8397774696350098, + "step": 1674 + }, + { + "epoch": 23.265618173875055, + "grad_norm": 0.2691650688648224, + "learning_rate": 0.0006, + "loss": 3.853254795074463, + "step": 1675 + }, + { + "epoch": 23.279598077763215, + "grad_norm": 0.29421621561050415, + "learning_rate": 0.0006, + "loss": 3.86065411567688, + "step": 1676 + }, + { + "epoch": 23.293577981651374, + "grad_norm": 0.31074345111846924, + "learning_rate": 0.0006, + "loss": 3.8716742992401123, + "step": 1677 + }, + { + "epoch": 23.307557885539538, + "grad_norm": 0.3044569194316864, + "learning_rate": 0.0006, + "loss": 3.8738951683044434, + "step": 1678 + }, + { + "epoch": 23.321537789427698, + "grad_norm": 0.30496764183044434, + "learning_rate": 0.0006, + "loss": 3.884446620941162, + "step": 1679 + }, + { + "epoch": 23.335517693315857, + "grad_norm": 0.31122756004333496, + "learning_rate": 0.0006, + "loss": 3.878495693206787, + "step": 1680 + }, + { + "epoch": 23.34949759720402, + "grad_norm": 0.32268181443214417, + "learning_rate": 0.0006, + "loss": 3.8793649673461914, + "step": 1681 + }, + { + "epoch": 23.36347750109218, + "grad_norm": 0.3297140598297119, + "learning_rate": 0.0006, + "loss": 3.87484073638916, + "step": 1682 + }, + { + "epoch": 23.37745740498034, + "grad_norm": 0.26007479429244995, + "learning_rate": 0.0006, + "loss": 3.8510947227478027, + "step": 1683 + }, + { + "epoch": 23.3914373088685, + "grad_norm": 0.2627335786819458, + "learning_rate": 0.0006, + "loss": 3.8783209323883057, + "step": 1684 + }, + { + "epoch": 23.405417212756664, + "grad_norm": 0.256452739238739, + "learning_rate": 0.0006, + "loss": 3.8594281673431396, + "step": 1685 + }, + { + "epoch": 23.419397116644824, + "grad_norm": 0.23892226815223694, + "learning_rate": 0.0006, + "loss": 3.898951292037964, + "step": 1686 + }, + { + "epoch": 23.433377020532983, + "grad_norm": 0.21625587344169617, + "learning_rate": 0.0006, + "loss": 3.8679966926574707, + "step": 1687 + }, + { + "epoch": 23.447356924421143, + "grad_norm": 0.21924619376659393, + "learning_rate": 0.0006, + "loss": 3.8774075508117676, + "step": 1688 + }, + { + "epoch": 23.461336828309307, + "grad_norm": 0.21500127017498016, + "learning_rate": 0.0006, + "loss": 3.870619297027588, + "step": 1689 + }, + { + "epoch": 23.475316732197467, + "grad_norm": 0.22580556571483612, + "learning_rate": 0.0006, + "loss": 3.887722969055176, + "step": 1690 + }, + { + "epoch": 23.489296636085626, + "grad_norm": 0.2500104308128357, + "learning_rate": 0.0006, + "loss": 3.88789963722229, + "step": 1691 + }, + { + "epoch": 23.503276539973786, + "grad_norm": 0.22462762892246246, + "learning_rate": 0.0006, + "loss": 3.863997459411621, + "step": 1692 + }, + { + "epoch": 23.51725644386195, + "grad_norm": 0.21427781879901886, + "learning_rate": 0.0006, + "loss": 3.8827033042907715, + "step": 1693 + }, + { + "epoch": 23.53123634775011, + "grad_norm": 0.22278577089309692, + "learning_rate": 0.0006, + "loss": 3.8659563064575195, + "step": 1694 + }, + { + "epoch": 23.54521625163827, + "grad_norm": 0.22801144421100616, + "learning_rate": 0.0006, + "loss": 3.9031362533569336, + "step": 1695 + }, + { + "epoch": 23.55919615552643, + "grad_norm": 0.25071898102760315, + "learning_rate": 0.0006, + "loss": 3.887746810913086, + "step": 1696 + }, + { + "epoch": 23.573176059414592, + "grad_norm": 0.2564085125923157, + "learning_rate": 0.0006, + "loss": 3.8918356895446777, + "step": 1697 + }, + { + "epoch": 23.587155963302752, + "grad_norm": 0.24603120982646942, + "learning_rate": 0.0006, + "loss": 3.850416421890259, + "step": 1698 + }, + { + "epoch": 23.601135867190912, + "grad_norm": 0.20539002120494843, + "learning_rate": 0.0006, + "loss": 3.862060070037842, + "step": 1699 + }, + { + "epoch": 23.615115771079076, + "grad_norm": 0.2022249400615692, + "learning_rate": 0.0006, + "loss": 3.899008274078369, + "step": 1700 + }, + { + "epoch": 23.629095674967235, + "grad_norm": 0.2435392290353775, + "learning_rate": 0.0006, + "loss": 3.844388961791992, + "step": 1701 + }, + { + "epoch": 23.643075578855395, + "grad_norm": 0.21146756410598755, + "learning_rate": 0.0006, + "loss": 3.8972439765930176, + "step": 1702 + }, + { + "epoch": 23.657055482743555, + "grad_norm": 0.2025400996208191, + "learning_rate": 0.0006, + "loss": 3.865253448486328, + "step": 1703 + }, + { + "epoch": 23.67103538663172, + "grad_norm": 0.21129970252513885, + "learning_rate": 0.0006, + "loss": 3.8768205642700195, + "step": 1704 + }, + { + "epoch": 23.68501529051988, + "grad_norm": 0.22982284426689148, + "learning_rate": 0.0006, + "loss": 3.8792667388916016, + "step": 1705 + }, + { + "epoch": 23.698995194408038, + "grad_norm": 0.23013733327388763, + "learning_rate": 0.0006, + "loss": 3.880897045135498, + "step": 1706 + }, + { + "epoch": 23.712975098296198, + "grad_norm": 0.2277672290802002, + "learning_rate": 0.0006, + "loss": 3.8738410472869873, + "step": 1707 + }, + { + "epoch": 23.72695500218436, + "grad_norm": 0.2343369573354721, + "learning_rate": 0.0006, + "loss": 3.8587026596069336, + "step": 1708 + }, + { + "epoch": 23.74093490607252, + "grad_norm": 0.23159530758857727, + "learning_rate": 0.0006, + "loss": 3.856306552886963, + "step": 1709 + }, + { + "epoch": 23.75491480996068, + "grad_norm": 0.19541035592556, + "learning_rate": 0.0006, + "loss": 3.8294754028320312, + "step": 1710 + }, + { + "epoch": 23.76889471384884, + "grad_norm": 0.22999322414398193, + "learning_rate": 0.0006, + "loss": 3.882676124572754, + "step": 1711 + }, + { + "epoch": 23.782874617737004, + "grad_norm": 0.23442843556404114, + "learning_rate": 0.0006, + "loss": 3.8887529373168945, + "step": 1712 + }, + { + "epoch": 23.796854521625164, + "grad_norm": 0.22914239764213562, + "learning_rate": 0.0006, + "loss": 3.867673635482788, + "step": 1713 + }, + { + "epoch": 23.810834425513324, + "grad_norm": 0.20683827996253967, + "learning_rate": 0.0006, + "loss": 3.8999581336975098, + "step": 1714 + }, + { + "epoch": 23.824814329401484, + "grad_norm": 0.19281277060508728, + "learning_rate": 0.0006, + "loss": 3.8997726440429688, + "step": 1715 + }, + { + "epoch": 23.838794233289647, + "grad_norm": 0.20058563351631165, + "learning_rate": 0.0006, + "loss": 3.8583860397338867, + "step": 1716 + }, + { + "epoch": 23.852774137177807, + "grad_norm": 0.19856606423854828, + "learning_rate": 0.0006, + "loss": 3.88948392868042, + "step": 1717 + }, + { + "epoch": 23.866754041065967, + "grad_norm": 0.2099323868751526, + "learning_rate": 0.0006, + "loss": 3.878458261489868, + "step": 1718 + }, + { + "epoch": 23.88073394495413, + "grad_norm": 0.22945016622543335, + "learning_rate": 0.0006, + "loss": 3.84116268157959, + "step": 1719 + }, + { + "epoch": 23.89471384884229, + "grad_norm": 0.22646087408065796, + "learning_rate": 0.0006, + "loss": 3.9006617069244385, + "step": 1720 + }, + { + "epoch": 23.90869375273045, + "grad_norm": 0.20282860100269318, + "learning_rate": 0.0006, + "loss": 3.8781144618988037, + "step": 1721 + }, + { + "epoch": 23.92267365661861, + "grad_norm": 0.1918555349111557, + "learning_rate": 0.0006, + "loss": 3.8560891151428223, + "step": 1722 + }, + { + "epoch": 23.936653560506773, + "grad_norm": 0.19286513328552246, + "learning_rate": 0.0006, + "loss": 3.873220920562744, + "step": 1723 + }, + { + "epoch": 23.950633464394933, + "grad_norm": 0.21071338653564453, + "learning_rate": 0.0006, + "loss": 3.9147067070007324, + "step": 1724 + }, + { + "epoch": 23.964613368283093, + "grad_norm": 0.20956715941429138, + "learning_rate": 0.0006, + "loss": 3.8762729167938232, + "step": 1725 + }, + { + "epoch": 23.978593272171253, + "grad_norm": 0.23053105175495148, + "learning_rate": 0.0006, + "loss": 3.873781681060791, + "step": 1726 + }, + { + "epoch": 23.992573176059416, + "grad_norm": 0.2719029486179352, + "learning_rate": 0.0006, + "loss": 3.862342357635498, + "step": 1727 + }, + { + "epoch": 24.0, + "grad_norm": 0.2933610677719116, + "learning_rate": 0.0006, + "loss": 3.8657689094543457, + "step": 1728 + }, + { + "epoch": 24.0, + "eval_loss": 4.0959153175354, + "eval_runtime": 44.3631, + "eval_samples_per_second": 55.046, + "eval_steps_per_second": 3.449, + "step": 1728 + }, + { + "epoch": 24.01397990388816, + "grad_norm": 0.24905365705490112, + "learning_rate": 0.0006, + "loss": 3.838136911392212, + "step": 1729 + }, + { + "epoch": 24.027959807776323, + "grad_norm": 0.25948020815849304, + "learning_rate": 0.0006, + "loss": 3.8581268787384033, + "step": 1730 + }, + { + "epoch": 24.041939711664483, + "grad_norm": 0.24965140223503113, + "learning_rate": 0.0006, + "loss": 3.8628978729248047, + "step": 1731 + }, + { + "epoch": 24.055919615552643, + "grad_norm": 0.23428823053836823, + "learning_rate": 0.0006, + "loss": 3.8188819885253906, + "step": 1732 + }, + { + "epoch": 24.069899519440803, + "grad_norm": 0.22191211581230164, + "learning_rate": 0.0006, + "loss": 3.8616039752960205, + "step": 1733 + }, + { + "epoch": 24.083879423328966, + "grad_norm": 0.20257535576820374, + "learning_rate": 0.0006, + "loss": 3.8632802963256836, + "step": 1734 + }, + { + "epoch": 24.097859327217126, + "grad_norm": 0.20385196805000305, + "learning_rate": 0.0006, + "loss": 3.885817050933838, + "step": 1735 + }, + { + "epoch": 24.111839231105286, + "grad_norm": 0.19921693205833435, + "learning_rate": 0.0006, + "loss": 3.838515043258667, + "step": 1736 + }, + { + "epoch": 24.125819134993446, + "grad_norm": 0.20221556723117828, + "learning_rate": 0.0006, + "loss": 3.8585309982299805, + "step": 1737 + }, + { + "epoch": 24.13979903888161, + "grad_norm": 0.20124691724777222, + "learning_rate": 0.0006, + "loss": 3.81656551361084, + "step": 1738 + }, + { + "epoch": 24.15377894276977, + "grad_norm": 0.1810830533504486, + "learning_rate": 0.0006, + "loss": 3.841783046722412, + "step": 1739 + }, + { + "epoch": 24.16775884665793, + "grad_norm": 0.18414196372032166, + "learning_rate": 0.0006, + "loss": 3.8614797592163086, + "step": 1740 + }, + { + "epoch": 24.18173875054609, + "grad_norm": 0.18930725753307343, + "learning_rate": 0.0006, + "loss": 3.8382534980773926, + "step": 1741 + }, + { + "epoch": 24.195718654434252, + "grad_norm": 0.19658128917217255, + "learning_rate": 0.0006, + "loss": 3.881742477416992, + "step": 1742 + }, + { + "epoch": 24.209698558322412, + "grad_norm": 0.20175589621067047, + "learning_rate": 0.0006, + "loss": 3.8760581016540527, + "step": 1743 + }, + { + "epoch": 24.22367846221057, + "grad_norm": 0.19416265189647675, + "learning_rate": 0.0006, + "loss": 3.8373687267303467, + "step": 1744 + }, + { + "epoch": 24.23765836609873, + "grad_norm": 0.20206521451473236, + "learning_rate": 0.0006, + "loss": 3.8322830200195312, + "step": 1745 + }, + { + "epoch": 24.251638269986895, + "grad_norm": 0.21797429025173187, + "learning_rate": 0.0006, + "loss": 3.849905490875244, + "step": 1746 + }, + { + "epoch": 24.265618173875055, + "grad_norm": 0.21295784413814545, + "learning_rate": 0.0006, + "loss": 3.847714900970459, + "step": 1747 + }, + { + "epoch": 24.279598077763215, + "grad_norm": 0.22023876011371613, + "learning_rate": 0.0006, + "loss": 3.8221592903137207, + "step": 1748 + }, + { + "epoch": 24.293577981651374, + "grad_norm": 0.2125576138496399, + "learning_rate": 0.0006, + "loss": 3.8070976734161377, + "step": 1749 + }, + { + "epoch": 24.307557885539538, + "grad_norm": 0.18673811852931976, + "learning_rate": 0.0006, + "loss": 3.866878032684326, + "step": 1750 + }, + { + "epoch": 24.321537789427698, + "grad_norm": 0.1972627341747284, + "learning_rate": 0.0006, + "loss": 3.846404552459717, + "step": 1751 + }, + { + "epoch": 24.335517693315857, + "grad_norm": 0.21846632659435272, + "learning_rate": 0.0006, + "loss": 3.8528640270233154, + "step": 1752 + }, + { + "epoch": 24.34949759720402, + "grad_norm": 0.22234080731868744, + "learning_rate": 0.0006, + "loss": 3.8268141746520996, + "step": 1753 + }, + { + "epoch": 24.36347750109218, + "grad_norm": 0.23002761602401733, + "learning_rate": 0.0006, + "loss": 3.832444667816162, + "step": 1754 + }, + { + "epoch": 24.37745740498034, + "grad_norm": 0.22526559233665466, + "learning_rate": 0.0006, + "loss": 3.864406108856201, + "step": 1755 + }, + { + "epoch": 24.3914373088685, + "grad_norm": 0.2290039211511612, + "learning_rate": 0.0006, + "loss": 3.8449103832244873, + "step": 1756 + }, + { + "epoch": 24.405417212756664, + "grad_norm": 0.23145617544651031, + "learning_rate": 0.0006, + "loss": 3.8183751106262207, + "step": 1757 + }, + { + "epoch": 24.419397116644824, + "grad_norm": 0.24287554621696472, + "learning_rate": 0.0006, + "loss": 3.809481382369995, + "step": 1758 + }, + { + "epoch": 24.433377020532983, + "grad_norm": 0.2672404646873474, + "learning_rate": 0.0006, + "loss": 3.877800464630127, + "step": 1759 + }, + { + "epoch": 24.447356924421143, + "grad_norm": 0.26292186975479126, + "learning_rate": 0.0006, + "loss": 3.8329367637634277, + "step": 1760 + }, + { + "epoch": 24.461336828309307, + "grad_norm": 0.26235947012901306, + "learning_rate": 0.0006, + "loss": 3.8414158821105957, + "step": 1761 + }, + { + "epoch": 24.475316732197467, + "grad_norm": 0.2638382613658905, + "learning_rate": 0.0006, + "loss": 3.849188804626465, + "step": 1762 + }, + { + "epoch": 24.489296636085626, + "grad_norm": 0.2564602196216583, + "learning_rate": 0.0006, + "loss": 3.865501880645752, + "step": 1763 + }, + { + "epoch": 24.503276539973786, + "grad_norm": 0.21352271735668182, + "learning_rate": 0.0006, + "loss": 3.87910795211792, + "step": 1764 + }, + { + "epoch": 24.51725644386195, + "grad_norm": 0.2470584511756897, + "learning_rate": 0.0006, + "loss": 3.858750343322754, + "step": 1765 + }, + { + "epoch": 24.53123634775011, + "grad_norm": 0.24907536804676056, + "learning_rate": 0.0006, + "loss": 3.8532559871673584, + "step": 1766 + }, + { + "epoch": 24.54521625163827, + "grad_norm": 0.2426205575466156, + "learning_rate": 0.0006, + "loss": 3.8659827709198, + "step": 1767 + }, + { + "epoch": 24.55919615552643, + "grad_norm": 0.23481151461601257, + "learning_rate": 0.0006, + "loss": 3.863948345184326, + "step": 1768 + }, + { + "epoch": 24.573176059414592, + "grad_norm": 0.22717779874801636, + "learning_rate": 0.0006, + "loss": 3.848527193069458, + "step": 1769 + }, + { + "epoch": 24.587155963302752, + "grad_norm": 0.2267129123210907, + "learning_rate": 0.0006, + "loss": 3.8600735664367676, + "step": 1770 + }, + { + "epoch": 24.601135867190912, + "grad_norm": 0.24967710673809052, + "learning_rate": 0.0006, + "loss": 3.84291934967041, + "step": 1771 + }, + { + "epoch": 24.615115771079076, + "grad_norm": 0.25308957695961, + "learning_rate": 0.0006, + "loss": 3.846181631088257, + "step": 1772 + }, + { + "epoch": 24.629095674967235, + "grad_norm": 0.2689298391342163, + "learning_rate": 0.0006, + "loss": 3.8572893142700195, + "step": 1773 + }, + { + "epoch": 24.643075578855395, + "grad_norm": 0.26458555459976196, + "learning_rate": 0.0006, + "loss": 3.8583621978759766, + "step": 1774 + }, + { + "epoch": 24.657055482743555, + "grad_norm": 0.24416811764240265, + "learning_rate": 0.0006, + "loss": 3.8648223876953125, + "step": 1775 + }, + { + "epoch": 24.67103538663172, + "grad_norm": 0.22218526899814606, + "learning_rate": 0.0006, + "loss": 3.839395523071289, + "step": 1776 + }, + { + "epoch": 24.68501529051988, + "grad_norm": 0.2147492915391922, + "learning_rate": 0.0006, + "loss": 3.875734567642212, + "step": 1777 + }, + { + "epoch": 24.698995194408038, + "grad_norm": 0.2346794754266739, + "learning_rate": 0.0006, + "loss": 3.854768991470337, + "step": 1778 + }, + { + "epoch": 24.712975098296198, + "grad_norm": 0.21406520903110504, + "learning_rate": 0.0006, + "loss": 3.8269104957580566, + "step": 1779 + }, + { + "epoch": 24.72695500218436, + "grad_norm": 0.20716224610805511, + "learning_rate": 0.0006, + "loss": 3.8245768547058105, + "step": 1780 + }, + { + "epoch": 24.74093490607252, + "grad_norm": 0.21445901691913605, + "learning_rate": 0.0006, + "loss": 3.8877978324890137, + "step": 1781 + }, + { + "epoch": 24.75491480996068, + "grad_norm": 0.21964985132217407, + "learning_rate": 0.0006, + "loss": 3.8602452278137207, + "step": 1782 + }, + { + "epoch": 24.76889471384884, + "grad_norm": 0.209807351231575, + "learning_rate": 0.0006, + "loss": 3.853428602218628, + "step": 1783 + }, + { + "epoch": 24.782874617737004, + "grad_norm": 0.19564911723136902, + "learning_rate": 0.0006, + "loss": 3.832275867462158, + "step": 1784 + }, + { + "epoch": 24.796854521625164, + "grad_norm": 0.21394333243370056, + "learning_rate": 0.0006, + "loss": 3.8543171882629395, + "step": 1785 + }, + { + "epoch": 24.810834425513324, + "grad_norm": 0.23156948387622833, + "learning_rate": 0.0006, + "loss": 3.8539412021636963, + "step": 1786 + }, + { + "epoch": 24.824814329401484, + "grad_norm": 0.2378678321838379, + "learning_rate": 0.0006, + "loss": 3.8409833908081055, + "step": 1787 + }, + { + "epoch": 24.838794233289647, + "grad_norm": 0.23816189169883728, + "learning_rate": 0.0006, + "loss": 3.855379581451416, + "step": 1788 + }, + { + "epoch": 24.852774137177807, + "grad_norm": 0.23109886050224304, + "learning_rate": 0.0006, + "loss": 3.8689517974853516, + "step": 1789 + }, + { + "epoch": 24.866754041065967, + "grad_norm": 0.2042883038520813, + "learning_rate": 0.0006, + "loss": 3.8730404376983643, + "step": 1790 + }, + { + "epoch": 24.88073394495413, + "grad_norm": 0.2039479911327362, + "learning_rate": 0.0006, + "loss": 3.8474984169006348, + "step": 1791 + }, + { + "epoch": 24.89471384884229, + "grad_norm": 0.213027223944664, + "learning_rate": 0.0006, + "loss": 3.8539695739746094, + "step": 1792 + }, + { + "epoch": 24.90869375273045, + "grad_norm": 0.2280654013156891, + "learning_rate": 0.0006, + "loss": 3.8633079528808594, + "step": 1793 + }, + { + "epoch": 24.92267365661861, + "grad_norm": 0.20864921808242798, + "learning_rate": 0.0006, + "loss": 3.8110368251800537, + "step": 1794 + }, + { + "epoch": 24.936653560506773, + "grad_norm": 0.23002111911773682, + "learning_rate": 0.0006, + "loss": 3.8334741592407227, + "step": 1795 + }, + { + "epoch": 24.950633464394933, + "grad_norm": 0.232331782579422, + "learning_rate": 0.0006, + "loss": 3.871887683868408, + "step": 1796 + }, + { + "epoch": 24.964613368283093, + "grad_norm": 0.24141235649585724, + "learning_rate": 0.0006, + "loss": 3.8614959716796875, + "step": 1797 + }, + { + "epoch": 24.978593272171253, + "grad_norm": 0.2545177638530731, + "learning_rate": 0.0006, + "loss": 3.8563568592071533, + "step": 1798 + }, + { + "epoch": 24.992573176059416, + "grad_norm": 0.25186386704444885, + "learning_rate": 0.0006, + "loss": 3.882166862487793, + "step": 1799 + }, + { + "epoch": 25.0, + "grad_norm": 0.260195791721344, + "learning_rate": 0.0006, + "loss": 3.884554862976074, + "step": 1800 + }, + { + "epoch": 25.0, + "eval_loss": 4.08809757232666, + "eval_runtime": 44.7947, + "eval_samples_per_second": 54.515, + "eval_steps_per_second": 3.416, + "step": 1800 + }, + { + "epoch": 25.01397990388816, + "grad_norm": 0.25396403670310974, + "learning_rate": 0.0006, + "loss": 3.8217287063598633, + "step": 1801 + }, + { + "epoch": 25.027959807776323, + "grad_norm": 0.2773195207118988, + "learning_rate": 0.0006, + "loss": 3.809542417526245, + "step": 1802 + }, + { + "epoch": 25.041939711664483, + "grad_norm": 0.3073263168334961, + "learning_rate": 0.0006, + "loss": 3.825706958770752, + "step": 1803 + }, + { + "epoch": 25.055919615552643, + "grad_norm": 0.30885398387908936, + "learning_rate": 0.0006, + "loss": 3.8081188201904297, + "step": 1804 + }, + { + "epoch": 25.069899519440803, + "grad_norm": 0.27356019616127014, + "learning_rate": 0.0006, + "loss": 3.8538241386413574, + "step": 1805 + }, + { + "epoch": 25.083879423328966, + "grad_norm": 0.22830164432525635, + "learning_rate": 0.0006, + "loss": 3.8246965408325195, + "step": 1806 + }, + { + "epoch": 25.097859327217126, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.8552842140197754, + "step": 1807 + }, + { + "epoch": 25.111839231105286, + "grad_norm": 0.21718722581863403, + "learning_rate": 0.0006, + "loss": 3.8489418029785156, + "step": 1808 + }, + { + "epoch": 25.125819134993446, + "grad_norm": 0.2480861395597458, + "learning_rate": 0.0006, + "loss": 3.821455955505371, + "step": 1809 + }, + { + "epoch": 25.13979903888161, + "grad_norm": 0.2796635627746582, + "learning_rate": 0.0006, + "loss": 3.8202435970306396, + "step": 1810 + }, + { + "epoch": 25.15377894276977, + "grad_norm": 0.2829958200454712, + "learning_rate": 0.0006, + "loss": 3.8293306827545166, + "step": 1811 + }, + { + "epoch": 25.16775884665793, + "grad_norm": 0.2510125935077667, + "learning_rate": 0.0006, + "loss": 3.8342957496643066, + "step": 1812 + }, + { + "epoch": 25.18173875054609, + "grad_norm": 0.22923722863197327, + "learning_rate": 0.0006, + "loss": 3.8448352813720703, + "step": 1813 + }, + { + "epoch": 25.195718654434252, + "grad_norm": 0.21439228951931, + "learning_rate": 0.0006, + "loss": 3.8343517780303955, + "step": 1814 + }, + { + "epoch": 25.209698558322412, + "grad_norm": 0.1965373307466507, + "learning_rate": 0.0006, + "loss": 3.8163528442382812, + "step": 1815 + }, + { + "epoch": 25.22367846221057, + "grad_norm": 0.20121058821678162, + "learning_rate": 0.0006, + "loss": 3.8007280826568604, + "step": 1816 + }, + { + "epoch": 25.23765836609873, + "grad_norm": 0.21383272111415863, + "learning_rate": 0.0006, + "loss": 3.8200385570526123, + "step": 1817 + }, + { + "epoch": 25.251638269986895, + "grad_norm": 0.2066601663827896, + "learning_rate": 0.0006, + "loss": 3.8333921432495117, + "step": 1818 + }, + { + "epoch": 25.265618173875055, + "grad_norm": 0.2104874551296234, + "learning_rate": 0.0006, + "loss": 3.838012218475342, + "step": 1819 + }, + { + "epoch": 25.279598077763215, + "grad_norm": 0.19733119010925293, + "learning_rate": 0.0006, + "loss": 3.835139274597168, + "step": 1820 + }, + { + "epoch": 25.293577981651374, + "grad_norm": 0.2119498997926712, + "learning_rate": 0.0006, + "loss": 3.8099722862243652, + "step": 1821 + }, + { + "epoch": 25.307557885539538, + "grad_norm": 0.21863529086112976, + "learning_rate": 0.0006, + "loss": 3.7801573276519775, + "step": 1822 + }, + { + "epoch": 25.321537789427698, + "grad_norm": 0.2113322764635086, + "learning_rate": 0.0006, + "loss": 3.809903621673584, + "step": 1823 + }, + { + "epoch": 25.335517693315857, + "grad_norm": 0.21594023704528809, + "learning_rate": 0.0006, + "loss": 3.8485071659088135, + "step": 1824 + }, + { + "epoch": 25.34949759720402, + "grad_norm": 0.21475964784622192, + "learning_rate": 0.0006, + "loss": 3.7894768714904785, + "step": 1825 + }, + { + "epoch": 25.36347750109218, + "grad_norm": 0.21174900233745575, + "learning_rate": 0.0006, + "loss": 3.821711540222168, + "step": 1826 + }, + { + "epoch": 25.37745740498034, + "grad_norm": 0.2065584659576416, + "learning_rate": 0.0006, + "loss": 3.8439841270446777, + "step": 1827 + }, + { + "epoch": 25.3914373088685, + "grad_norm": 0.19157007336616516, + "learning_rate": 0.0006, + "loss": 3.864245891571045, + "step": 1828 + }, + { + "epoch": 25.405417212756664, + "grad_norm": 0.19983816146850586, + "learning_rate": 0.0006, + "loss": 3.8317415714263916, + "step": 1829 + }, + { + "epoch": 25.419397116644824, + "grad_norm": 0.20506152510643005, + "learning_rate": 0.0006, + "loss": 3.8009896278381348, + "step": 1830 + }, + { + "epoch": 25.433377020532983, + "grad_norm": 0.19056960940361023, + "learning_rate": 0.0006, + "loss": 3.8383498191833496, + "step": 1831 + }, + { + "epoch": 25.447356924421143, + "grad_norm": 0.19262190163135529, + "learning_rate": 0.0006, + "loss": 3.838902235031128, + "step": 1832 + }, + { + "epoch": 25.461336828309307, + "grad_norm": 0.19859355688095093, + "learning_rate": 0.0006, + "loss": 3.82452392578125, + "step": 1833 + }, + { + "epoch": 25.475316732197467, + "grad_norm": 0.2144225388765335, + "learning_rate": 0.0006, + "loss": 3.8110032081604004, + "step": 1834 + }, + { + "epoch": 25.489296636085626, + "grad_norm": 0.20566298067569733, + "learning_rate": 0.0006, + "loss": 3.8662471771240234, + "step": 1835 + }, + { + "epoch": 25.503276539973786, + "grad_norm": 0.2071852684020996, + "learning_rate": 0.0006, + "loss": 3.821134090423584, + "step": 1836 + }, + { + "epoch": 25.51725644386195, + "grad_norm": 0.2095036506652832, + "learning_rate": 0.0006, + "loss": 3.824092388153076, + "step": 1837 + }, + { + "epoch": 25.53123634775011, + "grad_norm": 0.20136208832263947, + "learning_rate": 0.0006, + "loss": 3.8669862747192383, + "step": 1838 + }, + { + "epoch": 25.54521625163827, + "grad_norm": 0.1983811855316162, + "learning_rate": 0.0006, + "loss": 3.8120107650756836, + "step": 1839 + }, + { + "epoch": 25.55919615552643, + "grad_norm": 0.22859714925289154, + "learning_rate": 0.0006, + "loss": 3.8519299030303955, + "step": 1840 + }, + { + "epoch": 25.573176059414592, + "grad_norm": 0.23672667145729065, + "learning_rate": 0.0006, + "loss": 3.8245458602905273, + "step": 1841 + }, + { + "epoch": 25.587155963302752, + "grad_norm": 0.22698380053043365, + "learning_rate": 0.0006, + "loss": 3.8406805992126465, + "step": 1842 + }, + { + "epoch": 25.601135867190912, + "grad_norm": 0.25684037804603577, + "learning_rate": 0.0006, + "loss": 3.8584351539611816, + "step": 1843 + }, + { + "epoch": 25.615115771079076, + "grad_norm": 0.28180673718452454, + "learning_rate": 0.0006, + "loss": 3.8085098266601562, + "step": 1844 + }, + { + "epoch": 25.629095674967235, + "grad_norm": 0.2814631462097168, + "learning_rate": 0.0006, + "loss": 3.845083236694336, + "step": 1845 + }, + { + "epoch": 25.643075578855395, + "grad_norm": 0.23630981147289276, + "learning_rate": 0.0006, + "loss": 3.847749710083008, + "step": 1846 + }, + { + "epoch": 25.657055482743555, + "grad_norm": 0.22463662922382355, + "learning_rate": 0.0006, + "loss": 3.8172082901000977, + "step": 1847 + }, + { + "epoch": 25.67103538663172, + "grad_norm": 0.26551681756973267, + "learning_rate": 0.0006, + "loss": 3.8205654621124268, + "step": 1848 + }, + { + "epoch": 25.68501529051988, + "grad_norm": 0.27824243903160095, + "learning_rate": 0.0006, + "loss": 3.846076011657715, + "step": 1849 + }, + { + "epoch": 25.698995194408038, + "grad_norm": 0.266998291015625, + "learning_rate": 0.0006, + "loss": 3.8543574810028076, + "step": 1850 + }, + { + "epoch": 25.712975098296198, + "grad_norm": 0.22980351746082306, + "learning_rate": 0.0006, + "loss": 3.855511426925659, + "step": 1851 + }, + { + "epoch": 25.72695500218436, + "grad_norm": 0.23482872545719147, + "learning_rate": 0.0006, + "loss": 3.8687663078308105, + "step": 1852 + }, + { + "epoch": 25.74093490607252, + "grad_norm": 0.21119585633277893, + "learning_rate": 0.0006, + "loss": 3.8147101402282715, + "step": 1853 + }, + { + "epoch": 25.75491480996068, + "grad_norm": 0.21200446784496307, + "learning_rate": 0.0006, + "loss": 3.858473777770996, + "step": 1854 + }, + { + "epoch": 25.76889471384884, + "grad_norm": 0.20497842133045197, + "learning_rate": 0.0006, + "loss": 3.8545501232147217, + "step": 1855 + }, + { + "epoch": 25.782874617737004, + "grad_norm": 0.19328081607818604, + "learning_rate": 0.0006, + "loss": 3.7941341400146484, + "step": 1856 + }, + { + "epoch": 25.796854521625164, + "grad_norm": 0.2191578894853592, + "learning_rate": 0.0006, + "loss": 3.8408665657043457, + "step": 1857 + }, + { + "epoch": 25.810834425513324, + "grad_norm": 0.2548826038837433, + "learning_rate": 0.0006, + "loss": 3.854130744934082, + "step": 1858 + }, + { + "epoch": 25.824814329401484, + "grad_norm": 0.2290351390838623, + "learning_rate": 0.0006, + "loss": 3.8680176734924316, + "step": 1859 + }, + { + "epoch": 25.838794233289647, + "grad_norm": 0.20760944485664368, + "learning_rate": 0.0006, + "loss": 3.83731746673584, + "step": 1860 + }, + { + "epoch": 25.852774137177807, + "grad_norm": 0.19587582349777222, + "learning_rate": 0.0006, + "loss": 3.8173444271087646, + "step": 1861 + }, + { + "epoch": 25.866754041065967, + "grad_norm": 0.20762693881988525, + "learning_rate": 0.0006, + "loss": 3.8479790687561035, + "step": 1862 + }, + { + "epoch": 25.88073394495413, + "grad_norm": 0.20633186399936676, + "learning_rate": 0.0006, + "loss": 3.852285385131836, + "step": 1863 + }, + { + "epoch": 25.89471384884229, + "grad_norm": 0.21484960615634918, + "learning_rate": 0.0006, + "loss": 3.832592725753784, + "step": 1864 + }, + { + "epoch": 25.90869375273045, + "grad_norm": 0.19569595158100128, + "learning_rate": 0.0006, + "loss": 3.838071584701538, + "step": 1865 + }, + { + "epoch": 25.92267365661861, + "grad_norm": 0.19532904028892517, + "learning_rate": 0.0006, + "loss": 3.854252815246582, + "step": 1866 + }, + { + "epoch": 25.936653560506773, + "grad_norm": 0.1909649819135666, + "learning_rate": 0.0006, + "loss": 3.8444578647613525, + "step": 1867 + }, + { + "epoch": 25.950633464394933, + "grad_norm": 0.17476283013820648, + "learning_rate": 0.0006, + "loss": 3.836519241333008, + "step": 1868 + }, + { + "epoch": 25.964613368283093, + "grad_norm": 0.1895206719636917, + "learning_rate": 0.0006, + "loss": 3.8282582759857178, + "step": 1869 + }, + { + "epoch": 25.978593272171253, + "grad_norm": 0.20038437843322754, + "learning_rate": 0.0006, + "loss": 3.80542254447937, + "step": 1870 + }, + { + "epoch": 25.992573176059416, + "grad_norm": 0.20728608965873718, + "learning_rate": 0.0006, + "loss": 3.8584811687469482, + "step": 1871 + }, + { + "epoch": 26.0, + "grad_norm": 0.22110891342163086, + "learning_rate": 0.0006, + "loss": 3.8020238876342773, + "step": 1872 + }, + { + "epoch": 26.0, + "eval_loss": 4.072164058685303, + "eval_runtime": 44.9089, + "eval_samples_per_second": 54.377, + "eval_steps_per_second": 3.407, + "step": 1872 + }, + { + "epoch": 26.01397990388816, + "grad_norm": 0.2222519814968109, + "learning_rate": 0.0006, + "loss": 3.8309168815612793, + "step": 1873 + }, + { + "epoch": 26.027959807776323, + "grad_norm": 0.2637656033039093, + "learning_rate": 0.0006, + "loss": 3.8025143146514893, + "step": 1874 + }, + { + "epoch": 26.041939711664483, + "grad_norm": 0.2665974795818329, + "learning_rate": 0.0006, + "loss": 3.8244004249572754, + "step": 1875 + }, + { + "epoch": 26.055919615552643, + "grad_norm": 0.22475720942020416, + "learning_rate": 0.0006, + "loss": 3.80039119720459, + "step": 1876 + }, + { + "epoch": 26.069899519440803, + "grad_norm": 0.22994336485862732, + "learning_rate": 0.0006, + "loss": 3.7700726985931396, + "step": 1877 + }, + { + "epoch": 26.083879423328966, + "grad_norm": 0.24214622378349304, + "learning_rate": 0.0006, + "loss": 3.818725109100342, + "step": 1878 + }, + { + "epoch": 26.097859327217126, + "grad_norm": 0.22701293230056763, + "learning_rate": 0.0006, + "loss": 3.833803176879883, + "step": 1879 + }, + { + "epoch": 26.111839231105286, + "grad_norm": 0.21452295780181885, + "learning_rate": 0.0006, + "loss": 3.8391427993774414, + "step": 1880 + }, + { + "epoch": 26.125819134993446, + "grad_norm": 0.20179636776447296, + "learning_rate": 0.0006, + "loss": 3.802957057952881, + "step": 1881 + }, + { + "epoch": 26.13979903888161, + "grad_norm": 0.2087477445602417, + "learning_rate": 0.0006, + "loss": 3.8339905738830566, + "step": 1882 + }, + { + "epoch": 26.15377894276977, + "grad_norm": 0.23583556711673737, + "learning_rate": 0.0006, + "loss": 3.802438259124756, + "step": 1883 + }, + { + "epoch": 26.16775884665793, + "grad_norm": 0.2504311501979828, + "learning_rate": 0.0006, + "loss": 3.80244517326355, + "step": 1884 + }, + { + "epoch": 26.18173875054609, + "grad_norm": 0.24903984367847443, + "learning_rate": 0.0006, + "loss": 3.788865566253662, + "step": 1885 + }, + { + "epoch": 26.195718654434252, + "grad_norm": 0.2707931101322174, + "learning_rate": 0.0006, + "loss": 3.800051212310791, + "step": 1886 + }, + { + "epoch": 26.209698558322412, + "grad_norm": 0.24902892112731934, + "learning_rate": 0.0006, + "loss": 3.8068337440490723, + "step": 1887 + }, + { + "epoch": 26.22367846221057, + "grad_norm": 0.22655536234378815, + "learning_rate": 0.0006, + "loss": 3.779439926147461, + "step": 1888 + }, + { + "epoch": 26.23765836609873, + "grad_norm": 0.24797996878623962, + "learning_rate": 0.0006, + "loss": 3.822831153869629, + "step": 1889 + }, + { + "epoch": 26.251638269986895, + "grad_norm": 0.2821420431137085, + "learning_rate": 0.0006, + "loss": 3.807954788208008, + "step": 1890 + }, + { + "epoch": 26.265618173875055, + "grad_norm": 0.30392691493034363, + "learning_rate": 0.0006, + "loss": 3.776951789855957, + "step": 1891 + }, + { + "epoch": 26.279598077763215, + "grad_norm": 0.32641273736953735, + "learning_rate": 0.0006, + "loss": 3.8216311931610107, + "step": 1892 + }, + { + "epoch": 26.293577981651374, + "grad_norm": 0.32674387097358704, + "learning_rate": 0.0006, + "loss": 3.815596580505371, + "step": 1893 + }, + { + "epoch": 26.307557885539538, + "grad_norm": 0.29137250781059265, + "learning_rate": 0.0006, + "loss": 3.8170812129974365, + "step": 1894 + }, + { + "epoch": 26.321537789427698, + "grad_norm": 0.24291734397411346, + "learning_rate": 0.0006, + "loss": 3.810352087020874, + "step": 1895 + }, + { + "epoch": 26.335517693315857, + "grad_norm": 0.24023209512233734, + "learning_rate": 0.0006, + "loss": 3.8075947761535645, + "step": 1896 + }, + { + "epoch": 26.34949759720402, + "grad_norm": 0.24334804713726044, + "learning_rate": 0.0006, + "loss": 3.831556797027588, + "step": 1897 + }, + { + "epoch": 26.36347750109218, + "grad_norm": 0.2109663337469101, + "learning_rate": 0.0006, + "loss": 3.838347911834717, + "step": 1898 + }, + { + "epoch": 26.37745740498034, + "grad_norm": 0.19668002426624298, + "learning_rate": 0.0006, + "loss": 3.774737596511841, + "step": 1899 + }, + { + "epoch": 26.3914373088685, + "grad_norm": 0.21329134702682495, + "learning_rate": 0.0006, + "loss": 3.8237252235412598, + "step": 1900 + }, + { + "epoch": 26.405417212756664, + "grad_norm": 0.20381781458854675, + "learning_rate": 0.0006, + "loss": 3.802569627761841, + "step": 1901 + }, + { + "epoch": 26.419397116644824, + "grad_norm": 0.19083160161972046, + "learning_rate": 0.0006, + "loss": 3.8301358222961426, + "step": 1902 + }, + { + "epoch": 26.433377020532983, + "grad_norm": 0.20012904703617096, + "learning_rate": 0.0006, + "loss": 3.7966408729553223, + "step": 1903 + }, + { + "epoch": 26.447356924421143, + "grad_norm": 0.19483457505702972, + "learning_rate": 0.0006, + "loss": 3.8431968688964844, + "step": 1904 + }, + { + "epoch": 26.461336828309307, + "grad_norm": 0.19946353137493134, + "learning_rate": 0.0006, + "loss": 3.8023815155029297, + "step": 1905 + }, + { + "epoch": 26.475316732197467, + "grad_norm": 0.1984100341796875, + "learning_rate": 0.0006, + "loss": 3.8283071517944336, + "step": 1906 + }, + { + "epoch": 26.489296636085626, + "grad_norm": 0.2148299664258957, + "learning_rate": 0.0006, + "loss": 3.8377504348754883, + "step": 1907 + }, + { + "epoch": 26.503276539973786, + "grad_norm": 0.22139184176921844, + "learning_rate": 0.0006, + "loss": 3.823051691055298, + "step": 1908 + }, + { + "epoch": 26.51725644386195, + "grad_norm": 0.18289034068584442, + "learning_rate": 0.0006, + "loss": 3.8027071952819824, + "step": 1909 + }, + { + "epoch": 26.53123634775011, + "grad_norm": 0.1816026121377945, + "learning_rate": 0.0006, + "loss": 3.823786735534668, + "step": 1910 + }, + { + "epoch": 26.54521625163827, + "grad_norm": 0.19074322283267975, + "learning_rate": 0.0006, + "loss": 3.813331127166748, + "step": 1911 + }, + { + "epoch": 26.55919615552643, + "grad_norm": 0.20301467180252075, + "learning_rate": 0.0006, + "loss": 3.8218350410461426, + "step": 1912 + }, + { + "epoch": 26.573176059414592, + "grad_norm": 0.25266432762145996, + "learning_rate": 0.0006, + "loss": 3.8455142974853516, + "step": 1913 + }, + { + "epoch": 26.587155963302752, + "grad_norm": 0.25804755091667175, + "learning_rate": 0.0006, + "loss": 3.799227476119995, + "step": 1914 + }, + { + "epoch": 26.601135867190912, + "grad_norm": 0.2555372416973114, + "learning_rate": 0.0006, + "loss": 3.8125686645507812, + "step": 1915 + }, + { + "epoch": 26.615115771079076, + "grad_norm": 0.2266194075345993, + "learning_rate": 0.0006, + "loss": 3.858363628387451, + "step": 1916 + }, + { + "epoch": 26.629095674967235, + "grad_norm": 0.1933048665523529, + "learning_rate": 0.0006, + "loss": 3.8078083992004395, + "step": 1917 + }, + { + "epoch": 26.643075578855395, + "grad_norm": 0.19936731457710266, + "learning_rate": 0.0006, + "loss": 3.81748628616333, + "step": 1918 + }, + { + "epoch": 26.657055482743555, + "grad_norm": 0.22041693329811096, + "learning_rate": 0.0006, + "loss": 3.833272933959961, + "step": 1919 + }, + { + "epoch": 26.67103538663172, + "grad_norm": 0.20679150521755219, + "learning_rate": 0.0006, + "loss": 3.8127288818359375, + "step": 1920 + }, + { + "epoch": 26.68501529051988, + "grad_norm": 0.21545100212097168, + "learning_rate": 0.0006, + "loss": 3.816051483154297, + "step": 1921 + }, + { + "epoch": 26.698995194408038, + "grad_norm": 0.23554518818855286, + "learning_rate": 0.0006, + "loss": 3.8180980682373047, + "step": 1922 + }, + { + "epoch": 26.712975098296198, + "grad_norm": 0.21942466497421265, + "learning_rate": 0.0006, + "loss": 3.803107976913452, + "step": 1923 + }, + { + "epoch": 26.72695500218436, + "grad_norm": 0.22335010766983032, + "learning_rate": 0.0006, + "loss": 3.847890853881836, + "step": 1924 + }, + { + "epoch": 26.74093490607252, + "grad_norm": 0.24731314182281494, + "learning_rate": 0.0006, + "loss": 3.7945008277893066, + "step": 1925 + }, + { + "epoch": 26.75491480996068, + "grad_norm": 0.2804568111896515, + "learning_rate": 0.0006, + "loss": 3.8400068283081055, + "step": 1926 + }, + { + "epoch": 26.76889471384884, + "grad_norm": 0.28787222504615784, + "learning_rate": 0.0006, + "loss": 3.839771270751953, + "step": 1927 + }, + { + "epoch": 26.782874617737004, + "grad_norm": 0.2949632406234741, + "learning_rate": 0.0006, + "loss": 3.8225326538085938, + "step": 1928 + }, + { + "epoch": 26.796854521625164, + "grad_norm": 0.31546032428741455, + "learning_rate": 0.0006, + "loss": 3.8182597160339355, + "step": 1929 + }, + { + "epoch": 26.810834425513324, + "grad_norm": 0.2956962585449219, + "learning_rate": 0.0006, + "loss": 3.8315680027008057, + "step": 1930 + }, + { + "epoch": 26.824814329401484, + "grad_norm": 0.26943835616111755, + "learning_rate": 0.0006, + "loss": 3.787720203399658, + "step": 1931 + }, + { + "epoch": 26.838794233289647, + "grad_norm": 0.24272359907627106, + "learning_rate": 0.0006, + "loss": 3.7973692417144775, + "step": 1932 + }, + { + "epoch": 26.852774137177807, + "grad_norm": 0.20553994178771973, + "learning_rate": 0.0006, + "loss": 3.8241593837738037, + "step": 1933 + }, + { + "epoch": 26.866754041065967, + "grad_norm": 0.21927912533283234, + "learning_rate": 0.0006, + "loss": 3.8608899116516113, + "step": 1934 + }, + { + "epoch": 26.88073394495413, + "grad_norm": 0.22878016531467438, + "learning_rate": 0.0006, + "loss": 3.8341972827911377, + "step": 1935 + }, + { + "epoch": 26.89471384884229, + "grad_norm": 0.2085554301738739, + "learning_rate": 0.0006, + "loss": 3.8261351585388184, + "step": 1936 + }, + { + "epoch": 26.90869375273045, + "grad_norm": 0.21259072422981262, + "learning_rate": 0.0006, + "loss": 3.862056255340576, + "step": 1937 + }, + { + "epoch": 26.92267365661861, + "grad_norm": 0.21354122459888458, + "learning_rate": 0.0006, + "loss": 3.80879545211792, + "step": 1938 + }, + { + "epoch": 26.936653560506773, + "grad_norm": 0.2350253462791443, + "learning_rate": 0.0006, + "loss": 3.817826271057129, + "step": 1939 + }, + { + "epoch": 26.950633464394933, + "grad_norm": 0.23833836615085602, + "learning_rate": 0.0006, + "loss": 3.8220884799957275, + "step": 1940 + }, + { + "epoch": 26.964613368283093, + "grad_norm": 0.2368069440126419, + "learning_rate": 0.0006, + "loss": 3.843264579772949, + "step": 1941 + }, + { + "epoch": 26.978593272171253, + "grad_norm": 0.22663559019565582, + "learning_rate": 0.0006, + "loss": 3.81339430809021, + "step": 1942 + }, + { + "epoch": 26.992573176059416, + "grad_norm": 0.2151402235031128, + "learning_rate": 0.0006, + "loss": 3.8262834548950195, + "step": 1943 + }, + { + "epoch": 27.0, + "grad_norm": 0.24320295453071594, + "learning_rate": 0.0006, + "loss": 3.858567237854004, + "step": 1944 + }, + { + "epoch": 27.0, + "eval_loss": 4.0613322257995605, + "eval_runtime": 44.766, + "eval_samples_per_second": 54.55, + "eval_steps_per_second": 3.418, + "step": 1944 + }, + { + "epoch": 27.01397990388816, + "grad_norm": 0.21188032627105713, + "learning_rate": 0.0006, + "loss": 3.7631278038024902, + "step": 1945 + }, + { + "epoch": 27.027959807776323, + "grad_norm": 0.22298137843608856, + "learning_rate": 0.0006, + "loss": 3.784029245376587, + "step": 1946 + }, + { + "epoch": 27.041939711664483, + "grad_norm": 0.26530158519744873, + "learning_rate": 0.0006, + "loss": 3.795860767364502, + "step": 1947 + }, + { + "epoch": 27.055919615552643, + "grad_norm": 0.24476729333400726, + "learning_rate": 0.0006, + "loss": 3.77512264251709, + "step": 1948 + }, + { + "epoch": 27.069899519440803, + "grad_norm": 0.1934421956539154, + "learning_rate": 0.0006, + "loss": 3.7797446250915527, + "step": 1949 + }, + { + "epoch": 27.083879423328966, + "grad_norm": 0.19777092337608337, + "learning_rate": 0.0006, + "loss": 3.798935890197754, + "step": 1950 + }, + { + "epoch": 27.097859327217126, + "grad_norm": 0.2071693390607834, + "learning_rate": 0.0006, + "loss": 3.763094425201416, + "step": 1951 + }, + { + "epoch": 27.111839231105286, + "grad_norm": 0.18394742906093597, + "learning_rate": 0.0006, + "loss": 3.7892322540283203, + "step": 1952 + }, + { + "epoch": 27.125819134993446, + "grad_norm": 0.17878273129463196, + "learning_rate": 0.0006, + "loss": 3.787968158721924, + "step": 1953 + }, + { + "epoch": 27.13979903888161, + "grad_norm": 0.18792171776294708, + "learning_rate": 0.0006, + "loss": 3.7719640731811523, + "step": 1954 + }, + { + "epoch": 27.15377894276977, + "grad_norm": 0.18718759715557098, + "learning_rate": 0.0006, + "loss": 3.791835308074951, + "step": 1955 + }, + { + "epoch": 27.16775884665793, + "grad_norm": 0.18716055154800415, + "learning_rate": 0.0006, + "loss": 3.7490220069885254, + "step": 1956 + }, + { + "epoch": 27.18173875054609, + "grad_norm": 0.18429182469844818, + "learning_rate": 0.0006, + "loss": 3.8020081520080566, + "step": 1957 + }, + { + "epoch": 27.195718654434252, + "grad_norm": 0.18571704626083374, + "learning_rate": 0.0006, + "loss": 3.8152215480804443, + "step": 1958 + }, + { + "epoch": 27.209698558322412, + "grad_norm": 0.1788843423128128, + "learning_rate": 0.0006, + "loss": 3.8173317909240723, + "step": 1959 + }, + { + "epoch": 27.22367846221057, + "grad_norm": 0.20459426939487457, + "learning_rate": 0.0006, + "loss": 3.7760040760040283, + "step": 1960 + }, + { + "epoch": 27.23765836609873, + "grad_norm": 0.22360935807228088, + "learning_rate": 0.0006, + "loss": 3.8140203952789307, + "step": 1961 + }, + { + "epoch": 27.251638269986895, + "grad_norm": 0.2062767595052719, + "learning_rate": 0.0006, + "loss": 3.792001247406006, + "step": 1962 + }, + { + "epoch": 27.265618173875055, + "grad_norm": 0.20628073811531067, + "learning_rate": 0.0006, + "loss": 3.7873167991638184, + "step": 1963 + }, + { + "epoch": 27.279598077763215, + "grad_norm": 0.19888348877429962, + "learning_rate": 0.0006, + "loss": 3.7903614044189453, + "step": 1964 + }, + { + "epoch": 27.293577981651374, + "grad_norm": 0.22033332288265228, + "learning_rate": 0.0006, + "loss": 3.802497148513794, + "step": 1965 + }, + { + "epoch": 27.307557885539538, + "grad_norm": 0.23476941883563995, + "learning_rate": 0.0006, + "loss": 3.794090986251831, + "step": 1966 + }, + { + "epoch": 27.321537789427698, + "grad_norm": 0.19639968872070312, + "learning_rate": 0.0006, + "loss": 3.831794023513794, + "step": 1967 + }, + { + "epoch": 27.335517693315857, + "grad_norm": 0.18169641494750977, + "learning_rate": 0.0006, + "loss": 3.7687768936157227, + "step": 1968 + }, + { + "epoch": 27.34949759720402, + "grad_norm": 0.17781762778759003, + "learning_rate": 0.0006, + "loss": 3.7868471145629883, + "step": 1969 + }, + { + "epoch": 27.36347750109218, + "grad_norm": 0.18990416824817657, + "learning_rate": 0.0006, + "loss": 3.8340392112731934, + "step": 1970 + }, + { + "epoch": 27.37745740498034, + "grad_norm": 0.2031438797712326, + "learning_rate": 0.0006, + "loss": 3.804513454437256, + "step": 1971 + }, + { + "epoch": 27.3914373088685, + "grad_norm": 0.21233421564102173, + "learning_rate": 0.0006, + "loss": 3.7908449172973633, + "step": 1972 + }, + { + "epoch": 27.405417212756664, + "grad_norm": 0.22480927407741547, + "learning_rate": 0.0006, + "loss": 3.7894086837768555, + "step": 1973 + }, + { + "epoch": 27.419397116644824, + "grad_norm": 0.22713422775268555, + "learning_rate": 0.0006, + "loss": 3.826005458831787, + "step": 1974 + }, + { + "epoch": 27.433377020532983, + "grad_norm": 0.21637366712093353, + "learning_rate": 0.0006, + "loss": 3.8232319355010986, + "step": 1975 + }, + { + "epoch": 27.447356924421143, + "grad_norm": 0.24092449247837067, + "learning_rate": 0.0006, + "loss": 3.813279628753662, + "step": 1976 + }, + { + "epoch": 27.461336828309307, + "grad_norm": 0.21143047511577606, + "learning_rate": 0.0006, + "loss": 3.811586856842041, + "step": 1977 + }, + { + "epoch": 27.475316732197467, + "grad_norm": 0.21049432456493378, + "learning_rate": 0.0006, + "loss": 3.8227009773254395, + "step": 1978 + }, + { + "epoch": 27.489296636085626, + "grad_norm": 0.21853850781917572, + "learning_rate": 0.0006, + "loss": 3.7992515563964844, + "step": 1979 + }, + { + "epoch": 27.503276539973786, + "grad_norm": 0.22405001521110535, + "learning_rate": 0.0006, + "loss": 3.8311715126037598, + "step": 1980 + }, + { + "epoch": 27.51725644386195, + "grad_norm": 0.24085809290409088, + "learning_rate": 0.0006, + "loss": 3.801962375640869, + "step": 1981 + }, + { + "epoch": 27.53123634775011, + "grad_norm": 0.2612341642379761, + "learning_rate": 0.0006, + "loss": 3.7867887020111084, + "step": 1982 + }, + { + "epoch": 27.54521625163827, + "grad_norm": 0.25136062502861023, + "learning_rate": 0.0006, + "loss": 3.8302273750305176, + "step": 1983 + }, + { + "epoch": 27.55919615552643, + "grad_norm": 0.2485426515340805, + "learning_rate": 0.0006, + "loss": 3.770616054534912, + "step": 1984 + }, + { + "epoch": 27.573176059414592, + "grad_norm": 0.28883907198905945, + "learning_rate": 0.0006, + "loss": 3.8152146339416504, + "step": 1985 + }, + { + "epoch": 27.587155963302752, + "grad_norm": 0.28177911043167114, + "learning_rate": 0.0006, + "loss": 3.7966861724853516, + "step": 1986 + }, + { + "epoch": 27.601135867190912, + "grad_norm": 0.2573191523551941, + "learning_rate": 0.0006, + "loss": 3.820788621902466, + "step": 1987 + }, + { + "epoch": 27.615115771079076, + "grad_norm": 0.22225657105445862, + "learning_rate": 0.0006, + "loss": 3.778477191925049, + "step": 1988 + }, + { + "epoch": 27.629095674967235, + "grad_norm": 0.20118530094623566, + "learning_rate": 0.0006, + "loss": 3.8416988849639893, + "step": 1989 + }, + { + "epoch": 27.643075578855395, + "grad_norm": 0.21168658137321472, + "learning_rate": 0.0006, + "loss": 3.798020839691162, + "step": 1990 + }, + { + "epoch": 27.657055482743555, + "grad_norm": 0.2460680454969406, + "learning_rate": 0.0006, + "loss": 3.805917263031006, + "step": 1991 + }, + { + "epoch": 27.67103538663172, + "grad_norm": 0.2700909674167633, + "learning_rate": 0.0006, + "loss": 3.8042726516723633, + "step": 1992 + }, + { + "epoch": 27.68501529051988, + "grad_norm": 0.25814294815063477, + "learning_rate": 0.0006, + "loss": 3.799159049987793, + "step": 1993 + }, + { + "epoch": 27.698995194408038, + "grad_norm": 0.2231985628604889, + "learning_rate": 0.0006, + "loss": 3.778750419616699, + "step": 1994 + }, + { + "epoch": 27.712975098296198, + "grad_norm": 0.20807890594005585, + "learning_rate": 0.0006, + "loss": 3.787919044494629, + "step": 1995 + }, + { + "epoch": 27.72695500218436, + "grad_norm": 0.19537150859832764, + "learning_rate": 0.0006, + "loss": 3.7917299270629883, + "step": 1996 + }, + { + "epoch": 27.74093490607252, + "grad_norm": 0.21057647466659546, + "learning_rate": 0.0006, + "loss": 3.8096866607666016, + "step": 1997 + }, + { + "epoch": 27.75491480996068, + "grad_norm": 0.18983247876167297, + "learning_rate": 0.0006, + "loss": 3.7881717681884766, + "step": 1998 + }, + { + "epoch": 27.76889471384884, + "grad_norm": 0.18701069056987762, + "learning_rate": 0.0006, + "loss": 3.810790538787842, + "step": 1999 + }, + { + "epoch": 27.782874617737004, + "grad_norm": 0.1920134723186493, + "learning_rate": 0.0006, + "loss": 3.8161087036132812, + "step": 2000 + }, + { + "epoch": 27.796854521625164, + "grad_norm": 0.20413947105407715, + "learning_rate": 0.0006, + "loss": 3.790499687194824, + "step": 2001 + }, + { + "epoch": 27.810834425513324, + "grad_norm": 0.1920027732849121, + "learning_rate": 0.0006, + "loss": 3.8194262981414795, + "step": 2002 + }, + { + "epoch": 27.824814329401484, + "grad_norm": 0.18630221486091614, + "learning_rate": 0.0006, + "loss": 3.8267152309417725, + "step": 2003 + }, + { + "epoch": 27.838794233289647, + "grad_norm": 0.1787925660610199, + "learning_rate": 0.0006, + "loss": 3.8147521018981934, + "step": 2004 + }, + { + "epoch": 27.852774137177807, + "grad_norm": 0.19187216460704803, + "learning_rate": 0.0006, + "loss": 3.7751095294952393, + "step": 2005 + }, + { + "epoch": 27.866754041065967, + "grad_norm": 0.18825744092464447, + "learning_rate": 0.0006, + "loss": 3.807401657104492, + "step": 2006 + }, + { + "epoch": 27.88073394495413, + "grad_norm": 0.1879836469888687, + "learning_rate": 0.0006, + "loss": 3.8302509784698486, + "step": 2007 + }, + { + "epoch": 27.89471384884229, + "grad_norm": 0.19136391580104828, + "learning_rate": 0.0006, + "loss": 3.7886242866516113, + "step": 2008 + }, + { + "epoch": 27.90869375273045, + "grad_norm": 0.18774119019508362, + "learning_rate": 0.0006, + "loss": 3.8202977180480957, + "step": 2009 + }, + { + "epoch": 27.92267365661861, + "grad_norm": 0.17794452607631683, + "learning_rate": 0.0006, + "loss": 3.813382387161255, + "step": 2010 + }, + { + "epoch": 27.936653560506773, + "grad_norm": 0.1876268833875656, + "learning_rate": 0.0006, + "loss": 3.810610294342041, + "step": 2011 + }, + { + "epoch": 27.950633464394933, + "grad_norm": 0.19262051582336426, + "learning_rate": 0.0006, + "loss": 3.8113245964050293, + "step": 2012 + }, + { + "epoch": 27.964613368283093, + "grad_norm": 0.19371771812438965, + "learning_rate": 0.0006, + "loss": 3.804790496826172, + "step": 2013 + }, + { + "epoch": 27.978593272171253, + "grad_norm": 0.1922861784696579, + "learning_rate": 0.0006, + "loss": 3.8278889656066895, + "step": 2014 + }, + { + "epoch": 27.992573176059416, + "grad_norm": 0.19748565554618835, + "learning_rate": 0.0006, + "loss": 3.8127200603485107, + "step": 2015 + }, + { + "epoch": 28.0, + "grad_norm": 0.25027501583099365, + "learning_rate": 0.0006, + "loss": 3.7899413108825684, + "step": 2016 + }, + { + "epoch": 28.0, + "eval_loss": 4.047704219818115, + "eval_runtime": 44.293, + "eval_samples_per_second": 55.133, + "eval_steps_per_second": 3.454, + "step": 2016 + }, + { + "epoch": 28.01397990388816, + "grad_norm": 0.25172367691993713, + "learning_rate": 0.0006, + "loss": 3.75449538230896, + "step": 2017 + }, + { + "epoch": 28.027959807776323, + "grad_norm": 0.23494598269462585, + "learning_rate": 0.0006, + "loss": 3.7609024047851562, + "step": 2018 + }, + { + "epoch": 28.041939711664483, + "grad_norm": 0.22459708154201508, + "learning_rate": 0.0006, + "loss": 3.7843551635742188, + "step": 2019 + }, + { + "epoch": 28.055919615552643, + "grad_norm": 0.2038632035255432, + "learning_rate": 0.0006, + "loss": 3.7818198204040527, + "step": 2020 + }, + { + "epoch": 28.069899519440803, + "grad_norm": 0.22050008177757263, + "learning_rate": 0.0006, + "loss": 3.787442684173584, + "step": 2021 + }, + { + "epoch": 28.083879423328966, + "grad_norm": 0.24645832180976868, + "learning_rate": 0.0006, + "loss": 3.768704414367676, + "step": 2022 + }, + { + "epoch": 28.097859327217126, + "grad_norm": 0.2440163493156433, + "learning_rate": 0.0006, + "loss": 3.7783756256103516, + "step": 2023 + }, + { + "epoch": 28.111839231105286, + "grad_norm": 0.2482181042432785, + "learning_rate": 0.0006, + "loss": 3.786881923675537, + "step": 2024 + }, + { + "epoch": 28.125819134993446, + "grad_norm": 0.23494760692119598, + "learning_rate": 0.0006, + "loss": 3.790039300918579, + "step": 2025 + }, + { + "epoch": 28.13979903888161, + "grad_norm": 0.2172182947397232, + "learning_rate": 0.0006, + "loss": 3.818756580352783, + "step": 2026 + }, + { + "epoch": 28.15377894276977, + "grad_norm": 0.2103179395198822, + "learning_rate": 0.0006, + "loss": 3.7768917083740234, + "step": 2027 + }, + { + "epoch": 28.16775884665793, + "grad_norm": 0.22322365641593933, + "learning_rate": 0.0006, + "loss": 3.8223648071289062, + "step": 2028 + }, + { + "epoch": 28.18173875054609, + "grad_norm": 0.24199382960796356, + "learning_rate": 0.0006, + "loss": 3.781357765197754, + "step": 2029 + }, + { + "epoch": 28.195718654434252, + "grad_norm": 0.2500663101673126, + "learning_rate": 0.0006, + "loss": 3.8061184883117676, + "step": 2030 + }, + { + "epoch": 28.209698558322412, + "grad_norm": 0.2439824491739273, + "learning_rate": 0.0006, + "loss": 3.7886464595794678, + "step": 2031 + }, + { + "epoch": 28.22367846221057, + "grad_norm": 0.24563106894493103, + "learning_rate": 0.0006, + "loss": 3.7901692390441895, + "step": 2032 + }, + { + "epoch": 28.23765836609873, + "grad_norm": 0.2287624627351761, + "learning_rate": 0.0006, + "loss": 3.789931058883667, + "step": 2033 + }, + { + "epoch": 28.251638269986895, + "grad_norm": 0.2231188714504242, + "learning_rate": 0.0006, + "loss": 3.7879133224487305, + "step": 2034 + }, + { + "epoch": 28.265618173875055, + "grad_norm": 0.23090387880802155, + "learning_rate": 0.0006, + "loss": 3.7826130390167236, + "step": 2035 + }, + { + "epoch": 28.279598077763215, + "grad_norm": 0.216018944978714, + "learning_rate": 0.0006, + "loss": 3.7764949798583984, + "step": 2036 + }, + { + "epoch": 28.293577981651374, + "grad_norm": 0.22649185359477997, + "learning_rate": 0.0006, + "loss": 3.7911291122436523, + "step": 2037 + }, + { + "epoch": 28.307557885539538, + "grad_norm": 0.2350836843252182, + "learning_rate": 0.0006, + "loss": 3.7668724060058594, + "step": 2038 + }, + { + "epoch": 28.321537789427698, + "grad_norm": 0.23206329345703125, + "learning_rate": 0.0006, + "loss": 3.782243251800537, + "step": 2039 + }, + { + "epoch": 28.335517693315857, + "grad_norm": 0.21896308660507202, + "learning_rate": 0.0006, + "loss": 3.7605721950531006, + "step": 2040 + }, + { + "epoch": 28.34949759720402, + "grad_norm": 0.20381200313568115, + "learning_rate": 0.0006, + "loss": 3.743945598602295, + "step": 2041 + }, + { + "epoch": 28.36347750109218, + "grad_norm": 0.19196000695228577, + "learning_rate": 0.0006, + "loss": 3.808107852935791, + "step": 2042 + }, + { + "epoch": 28.37745740498034, + "grad_norm": 0.19517889618873596, + "learning_rate": 0.0006, + "loss": 3.7906723022460938, + "step": 2043 + }, + { + "epoch": 28.3914373088685, + "grad_norm": 0.20455795526504517, + "learning_rate": 0.0006, + "loss": 3.7421011924743652, + "step": 2044 + }, + { + "epoch": 28.405417212756664, + "grad_norm": 0.1867467314004898, + "learning_rate": 0.0006, + "loss": 3.775509834289551, + "step": 2045 + }, + { + "epoch": 28.419397116644824, + "grad_norm": 0.2029324471950531, + "learning_rate": 0.0006, + "loss": 3.771353244781494, + "step": 2046 + }, + { + "epoch": 28.433377020532983, + "grad_norm": 0.19967497885227203, + "learning_rate": 0.0006, + "loss": 3.7821149826049805, + "step": 2047 + }, + { + "epoch": 28.447356924421143, + "grad_norm": 0.19440607726573944, + "learning_rate": 0.0006, + "loss": 3.8114213943481445, + "step": 2048 + }, + { + "epoch": 28.461336828309307, + "grad_norm": 0.19679802656173706, + "learning_rate": 0.0006, + "loss": 3.7699532508850098, + "step": 2049 + }, + { + "epoch": 28.475316732197467, + "grad_norm": 0.1939811110496521, + "learning_rate": 0.0006, + "loss": 3.7673027515411377, + "step": 2050 + }, + { + "epoch": 28.489296636085626, + "grad_norm": 0.18712401390075684, + "learning_rate": 0.0006, + "loss": 3.816699266433716, + "step": 2051 + }, + { + "epoch": 28.503276539973786, + "grad_norm": 0.202956885099411, + "learning_rate": 0.0006, + "loss": 3.7746071815490723, + "step": 2052 + }, + { + "epoch": 28.51725644386195, + "grad_norm": 0.19098156690597534, + "learning_rate": 0.0006, + "loss": 3.8065481185913086, + "step": 2053 + }, + { + "epoch": 28.53123634775011, + "grad_norm": 0.21144428849220276, + "learning_rate": 0.0006, + "loss": 3.7890982627868652, + "step": 2054 + }, + { + "epoch": 28.54521625163827, + "grad_norm": 0.21882614493370056, + "learning_rate": 0.0006, + "loss": 3.8168821334838867, + "step": 2055 + }, + { + "epoch": 28.55919615552643, + "grad_norm": 0.22200101613998413, + "learning_rate": 0.0006, + "loss": 3.804454803466797, + "step": 2056 + }, + { + "epoch": 28.573176059414592, + "grad_norm": 0.22404780983924866, + "learning_rate": 0.0006, + "loss": 3.808764934539795, + "step": 2057 + }, + { + "epoch": 28.587155963302752, + "grad_norm": 0.22770099341869354, + "learning_rate": 0.0006, + "loss": 3.74835467338562, + "step": 2058 + }, + { + "epoch": 28.601135867190912, + "grad_norm": 0.23214420676231384, + "learning_rate": 0.0006, + "loss": 3.7480111122131348, + "step": 2059 + }, + { + "epoch": 28.615115771079076, + "grad_norm": 0.21786348521709442, + "learning_rate": 0.0006, + "loss": 3.8095176219940186, + "step": 2060 + }, + { + "epoch": 28.629095674967235, + "grad_norm": 0.21004106104373932, + "learning_rate": 0.0006, + "loss": 3.792745590209961, + "step": 2061 + }, + { + "epoch": 28.643075578855395, + "grad_norm": 0.21076138317584991, + "learning_rate": 0.0006, + "loss": 3.7878952026367188, + "step": 2062 + }, + { + "epoch": 28.657055482743555, + "grad_norm": 0.2184346616268158, + "learning_rate": 0.0006, + "loss": 3.757188320159912, + "step": 2063 + }, + { + "epoch": 28.67103538663172, + "grad_norm": 0.22100569307804108, + "learning_rate": 0.0006, + "loss": 3.8131773471832275, + "step": 2064 + }, + { + "epoch": 28.68501529051988, + "grad_norm": 0.23257511854171753, + "learning_rate": 0.0006, + "loss": 3.793826103210449, + "step": 2065 + }, + { + "epoch": 28.698995194408038, + "grad_norm": 0.22312869131565094, + "learning_rate": 0.0006, + "loss": 3.782083749771118, + "step": 2066 + }, + { + "epoch": 28.712975098296198, + "grad_norm": 0.2318405956029892, + "learning_rate": 0.0006, + "loss": 3.7814879417419434, + "step": 2067 + }, + { + "epoch": 28.72695500218436, + "grad_norm": 0.23719379305839539, + "learning_rate": 0.0006, + "loss": 3.8320484161376953, + "step": 2068 + }, + { + "epoch": 28.74093490607252, + "grad_norm": 0.23100806772708893, + "learning_rate": 0.0006, + "loss": 3.7921783924102783, + "step": 2069 + }, + { + "epoch": 28.75491480996068, + "grad_norm": 0.21540866792201996, + "learning_rate": 0.0006, + "loss": 3.8325204849243164, + "step": 2070 + }, + { + "epoch": 28.76889471384884, + "grad_norm": 0.2698654532432556, + "learning_rate": 0.0006, + "loss": 3.7965879440307617, + "step": 2071 + }, + { + "epoch": 28.782874617737004, + "grad_norm": 0.3101225793361664, + "learning_rate": 0.0006, + "loss": 3.78842830657959, + "step": 2072 + }, + { + "epoch": 28.796854521625164, + "grad_norm": 0.2607600688934326, + "learning_rate": 0.0006, + "loss": 3.770064115524292, + "step": 2073 + }, + { + "epoch": 28.810834425513324, + "grad_norm": 0.20558302104473114, + "learning_rate": 0.0006, + "loss": 3.7448501586914062, + "step": 2074 + }, + { + "epoch": 28.824814329401484, + "grad_norm": 0.20030120015144348, + "learning_rate": 0.0006, + "loss": 3.7689406871795654, + "step": 2075 + }, + { + "epoch": 28.838794233289647, + "grad_norm": 0.21781118214130402, + "learning_rate": 0.0006, + "loss": 3.7682244777679443, + "step": 2076 + }, + { + "epoch": 28.852774137177807, + "grad_norm": 0.23543044924736023, + "learning_rate": 0.0006, + "loss": 3.8094193935394287, + "step": 2077 + }, + { + "epoch": 28.866754041065967, + "grad_norm": 0.21634669601917267, + "learning_rate": 0.0006, + "loss": 3.792099952697754, + "step": 2078 + }, + { + "epoch": 28.88073394495413, + "grad_norm": 0.2251661866903305, + "learning_rate": 0.0006, + "loss": 3.7849509716033936, + "step": 2079 + }, + { + "epoch": 28.89471384884229, + "grad_norm": 0.23872914910316467, + "learning_rate": 0.0006, + "loss": 3.8391621112823486, + "step": 2080 + }, + { + "epoch": 28.90869375273045, + "grad_norm": 0.22259248793125153, + "learning_rate": 0.0006, + "loss": 3.8272876739501953, + "step": 2081 + }, + { + "epoch": 28.92267365661861, + "grad_norm": 0.22052262723445892, + "learning_rate": 0.0006, + "loss": 3.7986836433410645, + "step": 2082 + }, + { + "epoch": 28.936653560506773, + "grad_norm": 0.24487647414207458, + "learning_rate": 0.0006, + "loss": 3.798004150390625, + "step": 2083 + }, + { + "epoch": 28.950633464394933, + "grad_norm": 0.22992238402366638, + "learning_rate": 0.0006, + "loss": 3.788522720336914, + "step": 2084 + }, + { + "epoch": 28.964613368283093, + "grad_norm": 0.22521597146987915, + "learning_rate": 0.0006, + "loss": 3.767259120941162, + "step": 2085 + }, + { + "epoch": 28.978593272171253, + "grad_norm": 0.2201499044895172, + "learning_rate": 0.0006, + "loss": 3.7850542068481445, + "step": 2086 + }, + { + "epoch": 28.992573176059416, + "grad_norm": 0.22226814925670624, + "learning_rate": 0.0006, + "loss": 3.8013534545898438, + "step": 2087 + }, + { + "epoch": 29.0, + "grad_norm": 0.27624809741973877, + "learning_rate": 0.0006, + "loss": 3.762004852294922, + "step": 2088 + }, + { + "epoch": 29.0, + "eval_loss": 4.034304618835449, + "eval_runtime": 44.6573, + "eval_samples_per_second": 54.683, + "eval_steps_per_second": 3.426, + "step": 2088 + }, + { + "epoch": 29.01397990388816, + "grad_norm": 0.2550967037677765, + "learning_rate": 0.0006, + "loss": 3.7724227905273438, + "step": 2089 + }, + { + "epoch": 29.027959807776323, + "grad_norm": 0.26730602979660034, + "learning_rate": 0.0006, + "loss": 3.7728946208953857, + "step": 2090 + }, + { + "epoch": 29.041939711664483, + "grad_norm": 0.2394205927848816, + "learning_rate": 0.0006, + "loss": 3.7737584114074707, + "step": 2091 + }, + { + "epoch": 29.055919615552643, + "grad_norm": 0.22488200664520264, + "learning_rate": 0.0006, + "loss": 3.761014938354492, + "step": 2092 + }, + { + "epoch": 29.069899519440803, + "grad_norm": 0.2389903962612152, + "learning_rate": 0.0006, + "loss": 3.766557216644287, + "step": 2093 + }, + { + "epoch": 29.083879423328966, + "grad_norm": 0.234152153134346, + "learning_rate": 0.0006, + "loss": 3.7447147369384766, + "step": 2094 + }, + { + "epoch": 29.097859327217126, + "grad_norm": 0.23123252391815186, + "learning_rate": 0.0006, + "loss": 3.77197527885437, + "step": 2095 + }, + { + "epoch": 29.111839231105286, + "grad_norm": 0.23263143002986908, + "learning_rate": 0.0006, + "loss": 3.7390198707580566, + "step": 2096 + }, + { + "epoch": 29.125819134993446, + "grad_norm": 0.23235775530338287, + "learning_rate": 0.0006, + "loss": 3.7675256729125977, + "step": 2097 + }, + { + "epoch": 29.13979903888161, + "grad_norm": 0.2208816260099411, + "learning_rate": 0.0006, + "loss": 3.7588067054748535, + "step": 2098 + }, + { + "epoch": 29.15377894276977, + "grad_norm": 0.21216371655464172, + "learning_rate": 0.0006, + "loss": 3.7370502948760986, + "step": 2099 + }, + { + "epoch": 29.16775884665793, + "grad_norm": 0.2210543155670166, + "learning_rate": 0.0006, + "loss": 3.767308473587036, + "step": 2100 + }, + { + "epoch": 29.18173875054609, + "grad_norm": 0.21628431975841522, + "learning_rate": 0.0006, + "loss": 3.7298972606658936, + "step": 2101 + }, + { + "epoch": 29.195718654434252, + "grad_norm": 0.21493588387966156, + "learning_rate": 0.0006, + "loss": 3.7806448936462402, + "step": 2102 + }, + { + "epoch": 29.209698558322412, + "grad_norm": 0.25978055596351624, + "learning_rate": 0.0006, + "loss": 3.7716293334960938, + "step": 2103 + }, + { + "epoch": 29.22367846221057, + "grad_norm": 0.2744791507720947, + "learning_rate": 0.0006, + "loss": 3.76897931098938, + "step": 2104 + }, + { + "epoch": 29.23765836609873, + "grad_norm": 0.22959400713443756, + "learning_rate": 0.0006, + "loss": 3.7545714378356934, + "step": 2105 + }, + { + "epoch": 29.251638269986895, + "grad_norm": 0.20369231700897217, + "learning_rate": 0.0006, + "loss": 3.7944722175598145, + "step": 2106 + }, + { + "epoch": 29.265618173875055, + "grad_norm": 0.21663758158683777, + "learning_rate": 0.0006, + "loss": 3.7564756870269775, + "step": 2107 + }, + { + "epoch": 29.279598077763215, + "grad_norm": 0.21862861514091492, + "learning_rate": 0.0006, + "loss": 3.7722725868225098, + "step": 2108 + }, + { + "epoch": 29.293577981651374, + "grad_norm": 0.2044878453016281, + "learning_rate": 0.0006, + "loss": 3.7471303939819336, + "step": 2109 + }, + { + "epoch": 29.307557885539538, + "grad_norm": 0.23015929758548737, + "learning_rate": 0.0006, + "loss": 3.7584962844848633, + "step": 2110 + }, + { + "epoch": 29.321537789427698, + "grad_norm": 0.22548329830169678, + "learning_rate": 0.0006, + "loss": 3.795933723449707, + "step": 2111 + }, + { + "epoch": 29.335517693315857, + "grad_norm": 0.2000468522310257, + "learning_rate": 0.0006, + "loss": 3.766310691833496, + "step": 2112 + }, + { + "epoch": 29.34949759720402, + "grad_norm": 0.19711551070213318, + "learning_rate": 0.0006, + "loss": 3.7296276092529297, + "step": 2113 + }, + { + "epoch": 29.36347750109218, + "grad_norm": 0.18838997185230255, + "learning_rate": 0.0006, + "loss": 3.7685282230377197, + "step": 2114 + }, + { + "epoch": 29.37745740498034, + "grad_norm": 0.1897876113653183, + "learning_rate": 0.0006, + "loss": 3.7280936241149902, + "step": 2115 + }, + { + "epoch": 29.3914373088685, + "grad_norm": 0.21697933971881866, + "learning_rate": 0.0006, + "loss": 3.7991929054260254, + "step": 2116 + }, + { + "epoch": 29.405417212756664, + "grad_norm": 0.23445849120616913, + "learning_rate": 0.0006, + "loss": 3.7857418060302734, + "step": 2117 + }, + { + "epoch": 29.419397116644824, + "grad_norm": 0.24155527353286743, + "learning_rate": 0.0006, + "loss": 3.7897872924804688, + "step": 2118 + }, + { + "epoch": 29.433377020532983, + "grad_norm": 0.2610265016555786, + "learning_rate": 0.0006, + "loss": 3.7867324352264404, + "step": 2119 + }, + { + "epoch": 29.447356924421143, + "grad_norm": 0.2809581160545349, + "learning_rate": 0.0006, + "loss": 3.783799648284912, + "step": 2120 + }, + { + "epoch": 29.461336828309307, + "grad_norm": 0.2621572017669678, + "learning_rate": 0.0006, + "loss": 3.7778549194335938, + "step": 2121 + }, + { + "epoch": 29.475316732197467, + "grad_norm": 0.26002970337867737, + "learning_rate": 0.0006, + "loss": 3.787945508956909, + "step": 2122 + }, + { + "epoch": 29.489296636085626, + "grad_norm": 0.24866686761379242, + "learning_rate": 0.0006, + "loss": 3.7406349182128906, + "step": 2123 + }, + { + "epoch": 29.503276539973786, + "grad_norm": 0.25588324666023254, + "learning_rate": 0.0006, + "loss": 3.785625457763672, + "step": 2124 + }, + { + "epoch": 29.51725644386195, + "grad_norm": 0.24724243581295013, + "learning_rate": 0.0006, + "loss": 3.7581701278686523, + "step": 2125 + }, + { + "epoch": 29.53123634775011, + "grad_norm": 0.23544734716415405, + "learning_rate": 0.0006, + "loss": 3.8163957595825195, + "step": 2126 + }, + { + "epoch": 29.54521625163827, + "grad_norm": 0.2108801156282425, + "learning_rate": 0.0006, + "loss": 3.7881739139556885, + "step": 2127 + }, + { + "epoch": 29.55919615552643, + "grad_norm": 0.20459668338298798, + "learning_rate": 0.0006, + "loss": 3.7641284465789795, + "step": 2128 + }, + { + "epoch": 29.573176059414592, + "grad_norm": 0.24020728468894958, + "learning_rate": 0.0006, + "loss": 3.7748730182647705, + "step": 2129 + }, + { + "epoch": 29.587155963302752, + "grad_norm": 0.256273478269577, + "learning_rate": 0.0006, + "loss": 3.8076486587524414, + "step": 2130 + }, + { + "epoch": 29.601135867190912, + "grad_norm": 0.23295973241329193, + "learning_rate": 0.0006, + "loss": 3.7687063217163086, + "step": 2131 + }, + { + "epoch": 29.615115771079076, + "grad_norm": 0.21554847061634064, + "learning_rate": 0.0006, + "loss": 3.781867027282715, + "step": 2132 + }, + { + "epoch": 29.629095674967235, + "grad_norm": 0.20645774900913239, + "learning_rate": 0.0006, + "loss": 3.7813425064086914, + "step": 2133 + }, + { + "epoch": 29.643075578855395, + "grad_norm": 0.2018265724182129, + "learning_rate": 0.0006, + "loss": 3.772895574569702, + "step": 2134 + }, + { + "epoch": 29.657055482743555, + "grad_norm": 0.20170100033283234, + "learning_rate": 0.0006, + "loss": 3.7819175720214844, + "step": 2135 + }, + { + "epoch": 29.67103538663172, + "grad_norm": 0.22640688717365265, + "learning_rate": 0.0006, + "loss": 3.7999017238616943, + "step": 2136 + }, + { + "epoch": 29.68501529051988, + "grad_norm": 0.23747675120830536, + "learning_rate": 0.0006, + "loss": 3.804999828338623, + "step": 2137 + }, + { + "epoch": 29.698995194408038, + "grad_norm": 0.20005857944488525, + "learning_rate": 0.0006, + "loss": 3.7815160751342773, + "step": 2138 + }, + { + "epoch": 29.712975098296198, + "grad_norm": 0.17901667952537537, + "learning_rate": 0.0006, + "loss": 3.7898688316345215, + "step": 2139 + }, + { + "epoch": 29.72695500218436, + "grad_norm": 0.1890905797481537, + "learning_rate": 0.0006, + "loss": 3.8001184463500977, + "step": 2140 + }, + { + "epoch": 29.74093490607252, + "grad_norm": 0.19565847516059875, + "learning_rate": 0.0006, + "loss": 3.7522482872009277, + "step": 2141 + }, + { + "epoch": 29.75491480996068, + "grad_norm": 0.19429196417331696, + "learning_rate": 0.0006, + "loss": 3.768972158432007, + "step": 2142 + }, + { + "epoch": 29.76889471384884, + "grad_norm": 0.23846636712551117, + "learning_rate": 0.0006, + "loss": 3.765216112136841, + "step": 2143 + }, + { + "epoch": 29.782874617737004, + "grad_norm": 0.23820780217647552, + "learning_rate": 0.0006, + "loss": 3.8027703762054443, + "step": 2144 + }, + { + "epoch": 29.796854521625164, + "grad_norm": 0.21104726195335388, + "learning_rate": 0.0006, + "loss": 3.7682833671569824, + "step": 2145 + }, + { + "epoch": 29.810834425513324, + "grad_norm": 0.1911051720380783, + "learning_rate": 0.0006, + "loss": 3.781782627105713, + "step": 2146 + }, + { + "epoch": 29.824814329401484, + "grad_norm": 0.18881288170814514, + "learning_rate": 0.0006, + "loss": 3.7703428268432617, + "step": 2147 + }, + { + "epoch": 29.838794233289647, + "grad_norm": 0.18292994797229767, + "learning_rate": 0.0006, + "loss": 3.769176721572876, + "step": 2148 + }, + { + "epoch": 29.852774137177807, + "grad_norm": 0.1777714639902115, + "learning_rate": 0.0006, + "loss": 3.7488298416137695, + "step": 2149 + }, + { + "epoch": 29.866754041065967, + "grad_norm": 0.2037898749113083, + "learning_rate": 0.0006, + "loss": 3.804396390914917, + "step": 2150 + }, + { + "epoch": 29.88073394495413, + "grad_norm": 0.2121828943490982, + "learning_rate": 0.0006, + "loss": 3.75870943069458, + "step": 2151 + }, + { + "epoch": 29.89471384884229, + "grad_norm": 0.23231184482574463, + "learning_rate": 0.0006, + "loss": 3.80178165435791, + "step": 2152 + }, + { + "epoch": 29.90869375273045, + "grad_norm": 0.24045611917972565, + "learning_rate": 0.0006, + "loss": 3.7690834999084473, + "step": 2153 + }, + { + "epoch": 29.92267365661861, + "grad_norm": 0.19830496609210968, + "learning_rate": 0.0006, + "loss": 3.764401912689209, + "step": 2154 + }, + { + "epoch": 29.936653560506773, + "grad_norm": 0.17704227566719055, + "learning_rate": 0.0006, + "loss": 3.7634594440460205, + "step": 2155 + }, + { + "epoch": 29.950633464394933, + "grad_norm": 0.17783164978027344, + "learning_rate": 0.0006, + "loss": 3.7856998443603516, + "step": 2156 + }, + { + "epoch": 29.964613368283093, + "grad_norm": 0.19684971868991852, + "learning_rate": 0.0006, + "loss": 3.805774211883545, + "step": 2157 + }, + { + "epoch": 29.978593272171253, + "grad_norm": 0.21662312746047974, + "learning_rate": 0.0006, + "loss": 3.757896661758423, + "step": 2158 + }, + { + "epoch": 29.992573176059416, + "grad_norm": 0.22000661492347717, + "learning_rate": 0.0006, + "loss": 3.7747678756713867, + "step": 2159 + }, + { + "epoch": 30.0, + "grad_norm": 0.21501901745796204, + "learning_rate": 0.0006, + "loss": 3.785585880279541, + "step": 2160 + }, + { + "epoch": 30.0, + "eval_loss": 4.034003734588623, + "eval_runtime": 44.9097, + "eval_samples_per_second": 54.376, + "eval_steps_per_second": 3.407, + "step": 2160 + }, + { + "epoch": 30.01397990388816, + "grad_norm": 0.19710904359817505, + "learning_rate": 0.0006, + "loss": 3.756235122680664, + "step": 2161 + }, + { + "epoch": 30.027959807776323, + "grad_norm": 0.19829736649990082, + "learning_rate": 0.0006, + "loss": 3.734067916870117, + "step": 2162 + }, + { + "epoch": 30.041939711664483, + "grad_norm": 0.21622520685195923, + "learning_rate": 0.0006, + "loss": 3.7329437732696533, + "step": 2163 + }, + { + "epoch": 30.055919615552643, + "grad_norm": 0.22544652223587036, + "learning_rate": 0.0006, + "loss": 3.748716354370117, + "step": 2164 + }, + { + "epoch": 30.069899519440803, + "grad_norm": 0.21098364889621735, + "learning_rate": 0.0006, + "loss": 3.779047727584839, + "step": 2165 + }, + { + "epoch": 30.083879423328966, + "grad_norm": 0.21309930086135864, + "learning_rate": 0.0006, + "loss": 3.7690274715423584, + "step": 2166 + }, + { + "epoch": 30.097859327217126, + "grad_norm": 0.23025690019130707, + "learning_rate": 0.0006, + "loss": 3.7500953674316406, + "step": 2167 + }, + { + "epoch": 30.111839231105286, + "grad_norm": 0.25107935070991516, + "learning_rate": 0.0006, + "loss": 3.745492458343506, + "step": 2168 + }, + { + "epoch": 30.125819134993446, + "grad_norm": 0.29873573780059814, + "learning_rate": 0.0006, + "loss": 3.759793758392334, + "step": 2169 + }, + { + "epoch": 30.13979903888161, + "grad_norm": 0.2810286283493042, + "learning_rate": 0.0006, + "loss": 3.772998809814453, + "step": 2170 + }, + { + "epoch": 30.15377894276977, + "grad_norm": 0.2102176398038864, + "learning_rate": 0.0006, + "loss": 3.740170955657959, + "step": 2171 + }, + { + "epoch": 30.16775884665793, + "grad_norm": 0.24143251776695251, + "learning_rate": 0.0006, + "loss": 3.7317001819610596, + "step": 2172 + }, + { + "epoch": 30.18173875054609, + "grad_norm": 0.2643064558506012, + "learning_rate": 0.0006, + "loss": 3.773263692855835, + "step": 2173 + }, + { + "epoch": 30.195718654434252, + "grad_norm": 0.27571243047714233, + "learning_rate": 0.0006, + "loss": 3.7619900703430176, + "step": 2174 + }, + { + "epoch": 30.209698558322412, + "grad_norm": 0.25359588861465454, + "learning_rate": 0.0006, + "loss": 3.7608513832092285, + "step": 2175 + }, + { + "epoch": 30.22367846221057, + "grad_norm": 0.2500684857368469, + "learning_rate": 0.0006, + "loss": 3.75856614112854, + "step": 2176 + }, + { + "epoch": 30.23765836609873, + "grad_norm": 0.23100309073925018, + "learning_rate": 0.0006, + "loss": 3.749786853790283, + "step": 2177 + }, + { + "epoch": 30.251638269986895, + "grad_norm": 0.24384984374046326, + "learning_rate": 0.0006, + "loss": 3.762244701385498, + "step": 2178 + }, + { + "epoch": 30.265618173875055, + "grad_norm": 0.24593998491764069, + "learning_rate": 0.0006, + "loss": 3.754594326019287, + "step": 2179 + }, + { + "epoch": 30.279598077763215, + "grad_norm": 0.2529342770576477, + "learning_rate": 0.0006, + "loss": 3.7641053199768066, + "step": 2180 + }, + { + "epoch": 30.293577981651374, + "grad_norm": 0.25954094529151917, + "learning_rate": 0.0006, + "loss": 3.810336112976074, + "step": 2181 + }, + { + "epoch": 30.307557885539538, + "grad_norm": 0.2249951958656311, + "learning_rate": 0.0006, + "loss": 3.7542617321014404, + "step": 2182 + }, + { + "epoch": 30.321537789427698, + "grad_norm": 0.19795064628124237, + "learning_rate": 0.0006, + "loss": 3.7734434604644775, + "step": 2183 + }, + { + "epoch": 30.335517693315857, + "grad_norm": 0.20744608342647552, + "learning_rate": 0.0006, + "loss": 3.7816128730773926, + "step": 2184 + }, + { + "epoch": 30.34949759720402, + "grad_norm": 0.19988055527210236, + "learning_rate": 0.0006, + "loss": 3.7631936073303223, + "step": 2185 + }, + { + "epoch": 30.36347750109218, + "grad_norm": 0.22226445376873016, + "learning_rate": 0.0006, + "loss": 3.762910842895508, + "step": 2186 + }, + { + "epoch": 30.37745740498034, + "grad_norm": 0.21986067295074463, + "learning_rate": 0.0006, + "loss": 3.733893394470215, + "step": 2187 + }, + { + "epoch": 30.3914373088685, + "grad_norm": 0.2170228660106659, + "learning_rate": 0.0006, + "loss": 3.726433515548706, + "step": 2188 + }, + { + "epoch": 30.405417212756664, + "grad_norm": 0.2179550975561142, + "learning_rate": 0.0006, + "loss": 3.792311668395996, + "step": 2189 + }, + { + "epoch": 30.419397116644824, + "grad_norm": 0.208037331700325, + "learning_rate": 0.0006, + "loss": 3.774639129638672, + "step": 2190 + }, + { + "epoch": 30.433377020532983, + "grad_norm": 0.20745441317558289, + "learning_rate": 0.0006, + "loss": 3.776130199432373, + "step": 2191 + }, + { + "epoch": 30.447356924421143, + "grad_norm": 0.1988024264574051, + "learning_rate": 0.0006, + "loss": 3.7453784942626953, + "step": 2192 + }, + { + "epoch": 30.461336828309307, + "grad_norm": 0.194968581199646, + "learning_rate": 0.0006, + "loss": 3.764653205871582, + "step": 2193 + }, + { + "epoch": 30.475316732197467, + "grad_norm": 0.20658300817012787, + "learning_rate": 0.0006, + "loss": 3.796513080596924, + "step": 2194 + }, + { + "epoch": 30.489296636085626, + "grad_norm": 0.2123410701751709, + "learning_rate": 0.0006, + "loss": 3.7630836963653564, + "step": 2195 + }, + { + "epoch": 30.503276539973786, + "grad_norm": 0.20894059538841248, + "learning_rate": 0.0006, + "loss": 3.7265470027923584, + "step": 2196 + }, + { + "epoch": 30.51725644386195, + "grad_norm": 0.2016828954219818, + "learning_rate": 0.0006, + "loss": 3.8083386421203613, + "step": 2197 + }, + { + "epoch": 30.53123634775011, + "grad_norm": 0.19584205746650696, + "learning_rate": 0.0006, + "loss": 3.7492105960845947, + "step": 2198 + }, + { + "epoch": 30.54521625163827, + "grad_norm": 0.18635272979736328, + "learning_rate": 0.0006, + "loss": 3.711009979248047, + "step": 2199 + }, + { + "epoch": 30.55919615552643, + "grad_norm": 0.1920594871044159, + "learning_rate": 0.0006, + "loss": 3.760801315307617, + "step": 2200 + }, + { + "epoch": 30.573176059414592, + "grad_norm": 0.1978331208229065, + "learning_rate": 0.0006, + "loss": 3.780529022216797, + "step": 2201 + }, + { + "epoch": 30.587155963302752, + "grad_norm": 0.20076943933963776, + "learning_rate": 0.0006, + "loss": 3.7767038345336914, + "step": 2202 + }, + { + "epoch": 30.601135867190912, + "grad_norm": 0.2067444622516632, + "learning_rate": 0.0006, + "loss": 3.7607920169830322, + "step": 2203 + }, + { + "epoch": 30.615115771079076, + "grad_norm": 0.2081940472126007, + "learning_rate": 0.0006, + "loss": 3.741936206817627, + "step": 2204 + }, + { + "epoch": 30.629095674967235, + "grad_norm": 0.21212869882583618, + "learning_rate": 0.0006, + "loss": 3.7597827911376953, + "step": 2205 + }, + { + "epoch": 30.643075578855395, + "grad_norm": 0.21539026498794556, + "learning_rate": 0.0006, + "loss": 3.764646053314209, + "step": 2206 + }, + { + "epoch": 30.657055482743555, + "grad_norm": 0.19788387417793274, + "learning_rate": 0.0006, + "loss": 3.7535128593444824, + "step": 2207 + }, + { + "epoch": 30.67103538663172, + "grad_norm": 0.20757688581943512, + "learning_rate": 0.0006, + "loss": 3.7414169311523438, + "step": 2208 + }, + { + "epoch": 30.68501529051988, + "grad_norm": 0.199361652135849, + "learning_rate": 0.0006, + "loss": 3.7578506469726562, + "step": 2209 + }, + { + "epoch": 30.698995194408038, + "grad_norm": 0.1909894198179245, + "learning_rate": 0.0006, + "loss": 3.736250400543213, + "step": 2210 + }, + { + "epoch": 30.712975098296198, + "grad_norm": 0.19766664505004883, + "learning_rate": 0.0006, + "loss": 3.7435379028320312, + "step": 2211 + }, + { + "epoch": 30.72695500218436, + "grad_norm": 0.21857766807079315, + "learning_rate": 0.0006, + "loss": 3.7478690147399902, + "step": 2212 + }, + { + "epoch": 30.74093490607252, + "grad_norm": 0.22385898232460022, + "learning_rate": 0.0006, + "loss": 3.7522530555725098, + "step": 2213 + }, + { + "epoch": 30.75491480996068, + "grad_norm": 0.2329241931438446, + "learning_rate": 0.0006, + "loss": 3.7568247318267822, + "step": 2214 + }, + { + "epoch": 30.76889471384884, + "grad_norm": 0.2218400090932846, + "learning_rate": 0.0006, + "loss": 3.7662744522094727, + "step": 2215 + }, + { + "epoch": 30.782874617737004, + "grad_norm": 0.21350212395191193, + "learning_rate": 0.0006, + "loss": 3.7683777809143066, + "step": 2216 + }, + { + "epoch": 30.796854521625164, + "grad_norm": 0.22357074916362762, + "learning_rate": 0.0006, + "loss": 3.763437032699585, + "step": 2217 + }, + { + "epoch": 30.810834425513324, + "grad_norm": 0.22268560528755188, + "learning_rate": 0.0006, + "loss": 3.772836685180664, + "step": 2218 + }, + { + "epoch": 30.824814329401484, + "grad_norm": 0.2434026449918747, + "learning_rate": 0.0006, + "loss": 3.752986431121826, + "step": 2219 + }, + { + "epoch": 30.838794233289647, + "grad_norm": 0.2298414409160614, + "learning_rate": 0.0006, + "loss": 3.7837061882019043, + "step": 2220 + }, + { + "epoch": 30.852774137177807, + "grad_norm": 0.227672278881073, + "learning_rate": 0.0006, + "loss": 3.746065378189087, + "step": 2221 + }, + { + "epoch": 30.866754041065967, + "grad_norm": 0.2562827169895172, + "learning_rate": 0.0006, + "loss": 3.7741947174072266, + "step": 2222 + }, + { + "epoch": 30.88073394495413, + "grad_norm": 0.23657815158367157, + "learning_rate": 0.0006, + "loss": 3.746457099914551, + "step": 2223 + }, + { + "epoch": 30.89471384884229, + "grad_norm": 0.2158907800912857, + "learning_rate": 0.0006, + "loss": 3.7821710109710693, + "step": 2224 + }, + { + "epoch": 30.90869375273045, + "grad_norm": 0.22501254081726074, + "learning_rate": 0.0006, + "loss": 3.7528274059295654, + "step": 2225 + }, + { + "epoch": 30.92267365661861, + "grad_norm": 0.20252224802970886, + "learning_rate": 0.0006, + "loss": 3.749418258666992, + "step": 2226 + }, + { + "epoch": 30.936653560506773, + "grad_norm": 0.2067883312702179, + "learning_rate": 0.0006, + "loss": 3.7560606002807617, + "step": 2227 + }, + { + "epoch": 30.950633464394933, + "grad_norm": 0.23104053735733032, + "learning_rate": 0.0006, + "loss": 3.7883846759796143, + "step": 2228 + }, + { + "epoch": 30.964613368283093, + "grad_norm": 0.21476604044437408, + "learning_rate": 0.0006, + "loss": 3.7976977825164795, + "step": 2229 + }, + { + "epoch": 30.978593272171253, + "grad_norm": 0.2130427062511444, + "learning_rate": 0.0006, + "loss": 3.7429304122924805, + "step": 2230 + }, + { + "epoch": 30.992573176059416, + "grad_norm": 0.2047216147184372, + "learning_rate": 0.0006, + "loss": 3.7669787406921387, + "step": 2231 + }, + { + "epoch": 31.0, + "grad_norm": 0.22254081070423126, + "learning_rate": 0.0006, + "loss": 3.7794251441955566, + "step": 2232 + }, + { + "epoch": 31.0, + "eval_loss": 4.039162635803223, + "eval_runtime": 44.9069, + "eval_samples_per_second": 54.379, + "eval_steps_per_second": 3.407, + "step": 2232 + }, + { + "epoch": 31.01397990388816, + "grad_norm": 0.2278132289648056, + "learning_rate": 0.0006, + "loss": 3.7363929748535156, + "step": 2233 + }, + { + "epoch": 31.027959807776323, + "grad_norm": 0.2377072274684906, + "learning_rate": 0.0006, + "loss": 3.72847318649292, + "step": 2234 + }, + { + "epoch": 31.041939711664483, + "grad_norm": 0.23790542781352997, + "learning_rate": 0.0006, + "loss": 3.767193078994751, + "step": 2235 + }, + { + "epoch": 31.055919615552643, + "grad_norm": 0.2587272524833679, + "learning_rate": 0.0006, + "loss": 3.7564640045166016, + "step": 2236 + }, + { + "epoch": 31.069899519440803, + "grad_norm": 0.27550312876701355, + "learning_rate": 0.0006, + "loss": 3.727578639984131, + "step": 2237 + }, + { + "epoch": 31.083879423328966, + "grad_norm": 0.2488662451505661, + "learning_rate": 0.0006, + "loss": 3.7420730590820312, + "step": 2238 + }, + { + "epoch": 31.097859327217126, + "grad_norm": 0.22699029743671417, + "learning_rate": 0.0006, + "loss": 3.7323155403137207, + "step": 2239 + }, + { + "epoch": 31.111839231105286, + "grad_norm": 0.23360148072242737, + "learning_rate": 0.0006, + "loss": 3.719024181365967, + "step": 2240 + }, + { + "epoch": 31.125819134993446, + "grad_norm": 0.24322988092899323, + "learning_rate": 0.0006, + "loss": 3.74485445022583, + "step": 2241 + }, + { + "epoch": 31.13979903888161, + "grad_norm": 0.2474174052476883, + "learning_rate": 0.0006, + "loss": 3.746826171875, + "step": 2242 + }, + { + "epoch": 31.15377894276977, + "grad_norm": 0.2417406439781189, + "learning_rate": 0.0006, + "loss": 3.7285032272338867, + "step": 2243 + }, + { + "epoch": 31.16775884665793, + "grad_norm": 0.2390318512916565, + "learning_rate": 0.0006, + "loss": 3.7464442253112793, + "step": 2244 + }, + { + "epoch": 31.18173875054609, + "grad_norm": 0.21819323301315308, + "learning_rate": 0.0006, + "loss": 3.735110282897949, + "step": 2245 + }, + { + "epoch": 31.195718654434252, + "grad_norm": 0.21953554451465607, + "learning_rate": 0.0006, + "loss": 3.7270030975341797, + "step": 2246 + }, + { + "epoch": 31.209698558322412, + "grad_norm": 0.1930384635925293, + "learning_rate": 0.0006, + "loss": 3.7519941329956055, + "step": 2247 + }, + { + "epoch": 31.22367846221057, + "grad_norm": 0.19799190759658813, + "learning_rate": 0.0006, + "loss": 3.7428221702575684, + "step": 2248 + }, + { + "epoch": 31.23765836609873, + "grad_norm": 0.20948201417922974, + "learning_rate": 0.0006, + "loss": 3.733120918273926, + "step": 2249 + }, + { + "epoch": 31.251638269986895, + "grad_norm": 0.23768769204616547, + "learning_rate": 0.0006, + "loss": 3.7059035301208496, + "step": 2250 + }, + { + "epoch": 31.265618173875055, + "grad_norm": 0.2808842957019806, + "learning_rate": 0.0006, + "loss": 3.7245287895202637, + "step": 2251 + }, + { + "epoch": 31.279598077763215, + "grad_norm": 0.27633124589920044, + "learning_rate": 0.0006, + "loss": 3.7436366081237793, + "step": 2252 + }, + { + "epoch": 31.293577981651374, + "grad_norm": 0.24137185513973236, + "learning_rate": 0.0006, + "loss": 3.7651219367980957, + "step": 2253 + }, + { + "epoch": 31.307557885539538, + "grad_norm": 0.22056810557842255, + "learning_rate": 0.0006, + "loss": 3.7417521476745605, + "step": 2254 + }, + { + "epoch": 31.321537789427698, + "grad_norm": 0.20137323439121246, + "learning_rate": 0.0006, + "loss": 3.750187397003174, + "step": 2255 + }, + { + "epoch": 31.335517693315857, + "grad_norm": 0.2142433375120163, + "learning_rate": 0.0006, + "loss": 3.7292675971984863, + "step": 2256 + }, + { + "epoch": 31.34949759720402, + "grad_norm": 0.21193967759609222, + "learning_rate": 0.0006, + "loss": 3.7459473609924316, + "step": 2257 + }, + { + "epoch": 31.36347750109218, + "grad_norm": 0.21418534219264984, + "learning_rate": 0.0006, + "loss": 3.754359722137451, + "step": 2258 + }, + { + "epoch": 31.37745740498034, + "grad_norm": 0.23507359623908997, + "learning_rate": 0.0006, + "loss": 3.763413906097412, + "step": 2259 + }, + { + "epoch": 31.3914373088685, + "grad_norm": 0.20393887162208557, + "learning_rate": 0.0006, + "loss": 3.73878812789917, + "step": 2260 + }, + { + "epoch": 31.405417212756664, + "grad_norm": 0.21752159297466278, + "learning_rate": 0.0006, + "loss": 3.750549793243408, + "step": 2261 + }, + { + "epoch": 31.419397116644824, + "grad_norm": 0.22629529237747192, + "learning_rate": 0.0006, + "loss": 3.7791430950164795, + "step": 2262 + }, + { + "epoch": 31.433377020532983, + "grad_norm": 0.2114613950252533, + "learning_rate": 0.0006, + "loss": 3.7709264755249023, + "step": 2263 + }, + { + "epoch": 31.447356924421143, + "grad_norm": 0.23241667449474335, + "learning_rate": 0.0006, + "loss": 3.745750665664673, + "step": 2264 + }, + { + "epoch": 31.461336828309307, + "grad_norm": 0.2434246987104416, + "learning_rate": 0.0006, + "loss": 3.769727945327759, + "step": 2265 + }, + { + "epoch": 31.475316732197467, + "grad_norm": 0.247820645570755, + "learning_rate": 0.0006, + "loss": 3.7528204917907715, + "step": 2266 + }, + { + "epoch": 31.489296636085626, + "grad_norm": 0.21287164092063904, + "learning_rate": 0.0006, + "loss": 3.728661060333252, + "step": 2267 + }, + { + "epoch": 31.503276539973786, + "grad_norm": 0.20983846485614777, + "learning_rate": 0.0006, + "loss": 3.7524428367614746, + "step": 2268 + }, + { + "epoch": 31.51725644386195, + "grad_norm": 0.23799288272857666, + "learning_rate": 0.0006, + "loss": 3.7276647090911865, + "step": 2269 + }, + { + "epoch": 31.53123634775011, + "grad_norm": 0.247065007686615, + "learning_rate": 0.0006, + "loss": 3.7506704330444336, + "step": 2270 + }, + { + "epoch": 31.54521625163827, + "grad_norm": 0.20670939981937408, + "learning_rate": 0.0006, + "loss": 3.71852445602417, + "step": 2271 + }, + { + "epoch": 31.55919615552643, + "grad_norm": 0.19463716447353363, + "learning_rate": 0.0006, + "loss": 3.732757568359375, + "step": 2272 + }, + { + "epoch": 31.573176059414592, + "grad_norm": 0.20368841290473938, + "learning_rate": 0.0006, + "loss": 3.746676445007324, + "step": 2273 + }, + { + "epoch": 31.587155963302752, + "grad_norm": 0.19691342115402222, + "learning_rate": 0.0006, + "loss": 3.7535760402679443, + "step": 2274 + }, + { + "epoch": 31.601135867190912, + "grad_norm": 0.2026553899049759, + "learning_rate": 0.0006, + "loss": 3.7406957149505615, + "step": 2275 + }, + { + "epoch": 31.615115771079076, + "grad_norm": 0.21494299173355103, + "learning_rate": 0.0006, + "loss": 3.735888957977295, + "step": 2276 + }, + { + "epoch": 31.629095674967235, + "grad_norm": 0.21644766628742218, + "learning_rate": 0.0006, + "loss": 3.723767042160034, + "step": 2277 + }, + { + "epoch": 31.643075578855395, + "grad_norm": 0.20087581872940063, + "learning_rate": 0.0006, + "loss": 3.7622008323669434, + "step": 2278 + }, + { + "epoch": 31.657055482743555, + "grad_norm": 0.1949695646762848, + "learning_rate": 0.0006, + "loss": 3.7726354598999023, + "step": 2279 + }, + { + "epoch": 31.67103538663172, + "grad_norm": 0.19120797514915466, + "learning_rate": 0.0006, + "loss": 3.7454679012298584, + "step": 2280 + }, + { + "epoch": 31.68501529051988, + "grad_norm": 0.19480115175247192, + "learning_rate": 0.0006, + "loss": 3.743934392929077, + "step": 2281 + }, + { + "epoch": 31.698995194408038, + "grad_norm": 0.1891610324382782, + "learning_rate": 0.0006, + "loss": 3.7724897861480713, + "step": 2282 + }, + { + "epoch": 31.712975098296198, + "grad_norm": 0.18533185124397278, + "learning_rate": 0.0006, + "loss": 3.7556838989257812, + "step": 2283 + }, + { + "epoch": 31.72695500218436, + "grad_norm": 0.20079447329044342, + "learning_rate": 0.0006, + "loss": 3.76758074760437, + "step": 2284 + }, + { + "epoch": 31.74093490607252, + "grad_norm": 0.2103433609008789, + "learning_rate": 0.0006, + "loss": 3.769477367401123, + "step": 2285 + }, + { + "epoch": 31.75491480996068, + "grad_norm": 0.21428923308849335, + "learning_rate": 0.0006, + "loss": 3.7317447662353516, + "step": 2286 + }, + { + "epoch": 31.76889471384884, + "grad_norm": 0.20154133439064026, + "learning_rate": 0.0006, + "loss": 3.749814987182617, + "step": 2287 + }, + { + "epoch": 31.782874617737004, + "grad_norm": 0.18998542428016663, + "learning_rate": 0.0006, + "loss": 3.7655510902404785, + "step": 2288 + }, + { + "epoch": 31.796854521625164, + "grad_norm": 0.2068665474653244, + "learning_rate": 0.0006, + "loss": 3.7375988960266113, + "step": 2289 + }, + { + "epoch": 31.810834425513324, + "grad_norm": 0.22979815304279327, + "learning_rate": 0.0006, + "loss": 3.728095531463623, + "step": 2290 + }, + { + "epoch": 31.824814329401484, + "grad_norm": 0.2378212958574295, + "learning_rate": 0.0006, + "loss": 3.73091459274292, + "step": 2291 + }, + { + "epoch": 31.838794233289647, + "grad_norm": 0.2353672832250595, + "learning_rate": 0.0006, + "loss": 3.7491769790649414, + "step": 2292 + }, + { + "epoch": 31.852774137177807, + "grad_norm": 0.22341586649417877, + "learning_rate": 0.0006, + "loss": 3.777111530303955, + "step": 2293 + }, + { + "epoch": 31.866754041065967, + "grad_norm": 0.20436930656433105, + "learning_rate": 0.0006, + "loss": 3.740997552871704, + "step": 2294 + }, + { + "epoch": 31.88073394495413, + "grad_norm": 0.20836040377616882, + "learning_rate": 0.0006, + "loss": 3.755582571029663, + "step": 2295 + }, + { + "epoch": 31.89471384884229, + "grad_norm": 0.2045193612575531, + "learning_rate": 0.0006, + "loss": 3.7583560943603516, + "step": 2296 + }, + { + "epoch": 31.90869375273045, + "grad_norm": 0.2025591880083084, + "learning_rate": 0.0006, + "loss": 3.773345470428467, + "step": 2297 + }, + { + "epoch": 31.92267365661861, + "grad_norm": 0.20309099555015564, + "learning_rate": 0.0006, + "loss": 3.7392163276672363, + "step": 2298 + }, + { + "epoch": 31.936653560506773, + "grad_norm": 0.2129351645708084, + "learning_rate": 0.0006, + "loss": 3.7801311016082764, + "step": 2299 + }, + { + "epoch": 31.950633464394933, + "grad_norm": 0.19950738549232483, + "learning_rate": 0.0006, + "loss": 3.779261589050293, + "step": 2300 + }, + { + "epoch": 31.964613368283093, + "grad_norm": 0.22837352752685547, + "learning_rate": 0.0006, + "loss": 3.782731294631958, + "step": 2301 + }, + { + "epoch": 31.978593272171253, + "grad_norm": 0.2576889097690582, + "learning_rate": 0.0006, + "loss": 3.7778096199035645, + "step": 2302 + }, + { + "epoch": 31.992573176059416, + "grad_norm": 0.2770138382911682, + "learning_rate": 0.0006, + "loss": 3.735755443572998, + "step": 2303 + }, + { + "epoch": 32.0, + "grad_norm": 0.2632865309715271, + "learning_rate": 0.0006, + "loss": 3.7562808990478516, + "step": 2304 + }, + { + "epoch": 32.0, + "eval_loss": 4.031628608703613, + "eval_runtime": 44.2115, + "eval_samples_per_second": 55.234, + "eval_steps_per_second": 3.461, + "step": 2304 + }, + { + "epoch": 32.01397990388816, + "grad_norm": 0.20234128832817078, + "learning_rate": 0.0006, + "loss": 3.734489917755127, + "step": 2305 + }, + { + "epoch": 32.02795980777632, + "grad_norm": 0.24983637034893036, + "learning_rate": 0.0006, + "loss": 3.7351019382476807, + "step": 2306 + }, + { + "epoch": 32.04193971166448, + "grad_norm": 0.27358478307724, + "learning_rate": 0.0006, + "loss": 3.708712100982666, + "step": 2307 + }, + { + "epoch": 32.05591961555265, + "grad_norm": 0.24693739414215088, + "learning_rate": 0.0006, + "loss": 3.731858491897583, + "step": 2308 + }, + { + "epoch": 32.0698995194408, + "grad_norm": 0.22751131653785706, + "learning_rate": 0.0006, + "loss": 3.7074670791625977, + "step": 2309 + }, + { + "epoch": 32.083879423328966, + "grad_norm": 0.23400720953941345, + "learning_rate": 0.0006, + "loss": 3.714092493057251, + "step": 2310 + }, + { + "epoch": 32.09785932721712, + "grad_norm": 0.20711684226989746, + "learning_rate": 0.0006, + "loss": 3.754727840423584, + "step": 2311 + }, + { + "epoch": 32.111839231105286, + "grad_norm": 0.21589399874210358, + "learning_rate": 0.0006, + "loss": 3.6953847408294678, + "step": 2312 + }, + { + "epoch": 32.12581913499345, + "grad_norm": 0.24575738608837128, + "learning_rate": 0.0006, + "loss": 3.7078802585601807, + "step": 2313 + }, + { + "epoch": 32.139799038881605, + "grad_norm": 0.23152033984661102, + "learning_rate": 0.0006, + "loss": 3.7402305603027344, + "step": 2314 + }, + { + "epoch": 32.15377894276977, + "grad_norm": 0.22639606893062592, + "learning_rate": 0.0006, + "loss": 3.7264223098754883, + "step": 2315 + }, + { + "epoch": 32.16775884665793, + "grad_norm": 0.24701760709285736, + "learning_rate": 0.0006, + "loss": 3.7497639656066895, + "step": 2316 + }, + { + "epoch": 32.18173875054609, + "grad_norm": 0.274832159280777, + "learning_rate": 0.0006, + "loss": 3.7557122707366943, + "step": 2317 + }, + { + "epoch": 32.19571865443425, + "grad_norm": 0.27472418546676636, + "learning_rate": 0.0006, + "loss": 3.6863393783569336, + "step": 2318 + }, + { + "epoch": 32.20969855832241, + "grad_norm": 0.2625530958175659, + "learning_rate": 0.0006, + "loss": 3.7203545570373535, + "step": 2319 + }, + { + "epoch": 32.22367846221057, + "grad_norm": 0.2576068341732025, + "learning_rate": 0.0006, + "loss": 3.734747886657715, + "step": 2320 + }, + { + "epoch": 32.237658366098735, + "grad_norm": 0.25946059823036194, + "learning_rate": 0.0006, + "loss": 3.7501730918884277, + "step": 2321 + }, + { + "epoch": 32.25163826998689, + "grad_norm": 0.2524135410785675, + "learning_rate": 0.0006, + "loss": 3.75177001953125, + "step": 2322 + }, + { + "epoch": 32.265618173875055, + "grad_norm": 0.2568551003932953, + "learning_rate": 0.0006, + "loss": 3.752450704574585, + "step": 2323 + }, + { + "epoch": 32.27959807776322, + "grad_norm": 0.2489749640226364, + "learning_rate": 0.0006, + "loss": 3.711735486984253, + "step": 2324 + }, + { + "epoch": 32.293577981651374, + "grad_norm": 0.2425498366355896, + "learning_rate": 0.0006, + "loss": 3.7004239559173584, + "step": 2325 + }, + { + "epoch": 32.30755788553954, + "grad_norm": 0.24359773099422455, + "learning_rate": 0.0006, + "loss": 3.733870029449463, + "step": 2326 + }, + { + "epoch": 32.3215377894277, + "grad_norm": 0.22314727306365967, + "learning_rate": 0.0006, + "loss": 3.699841022491455, + "step": 2327 + }, + { + "epoch": 32.33551769331586, + "grad_norm": 0.2047620266675949, + "learning_rate": 0.0006, + "loss": 3.732534170150757, + "step": 2328 + }, + { + "epoch": 32.34949759720402, + "grad_norm": 0.24393224716186523, + "learning_rate": 0.0006, + "loss": 3.7200770378112793, + "step": 2329 + }, + { + "epoch": 32.36347750109218, + "grad_norm": 0.23884256184101105, + "learning_rate": 0.0006, + "loss": 3.722318410873413, + "step": 2330 + }, + { + "epoch": 32.37745740498034, + "grad_norm": 0.23262189328670502, + "learning_rate": 0.0006, + "loss": 3.759033203125, + "step": 2331 + }, + { + "epoch": 32.391437308868504, + "grad_norm": 0.22542893886566162, + "learning_rate": 0.0006, + "loss": 3.729198694229126, + "step": 2332 + }, + { + "epoch": 32.40541721275666, + "grad_norm": 0.22479060292243958, + "learning_rate": 0.0006, + "loss": 3.7298169136047363, + "step": 2333 + }, + { + "epoch": 32.419397116644824, + "grad_norm": 0.21571804583072662, + "learning_rate": 0.0006, + "loss": 3.699937343597412, + "step": 2334 + }, + { + "epoch": 32.43337702053299, + "grad_norm": 0.20804545283317566, + "learning_rate": 0.0006, + "loss": 3.7495696544647217, + "step": 2335 + }, + { + "epoch": 32.44735692442114, + "grad_norm": 0.22751706838607788, + "learning_rate": 0.0006, + "loss": 3.7369821071624756, + "step": 2336 + }, + { + "epoch": 32.46133682830931, + "grad_norm": 0.2326795756816864, + "learning_rate": 0.0006, + "loss": 3.7636334896087646, + "step": 2337 + }, + { + "epoch": 32.47531673219746, + "grad_norm": 0.19971159100532532, + "learning_rate": 0.0006, + "loss": 3.72151517868042, + "step": 2338 + }, + { + "epoch": 32.489296636085626, + "grad_norm": 0.21078036725521088, + "learning_rate": 0.0006, + "loss": 3.7050065994262695, + "step": 2339 + }, + { + "epoch": 32.50327653997379, + "grad_norm": 0.22198088467121124, + "learning_rate": 0.0006, + "loss": 3.7654409408569336, + "step": 2340 + }, + { + "epoch": 32.517256443861946, + "grad_norm": 0.20995207130908966, + "learning_rate": 0.0006, + "loss": 3.7516250610351562, + "step": 2341 + }, + { + "epoch": 32.53123634775011, + "grad_norm": 0.20757141709327698, + "learning_rate": 0.0006, + "loss": 3.7412633895874023, + "step": 2342 + }, + { + "epoch": 32.54521625163827, + "grad_norm": 0.20053881406784058, + "learning_rate": 0.0006, + "loss": 3.7477493286132812, + "step": 2343 + }, + { + "epoch": 32.55919615552643, + "grad_norm": 0.20223091542720795, + "learning_rate": 0.0006, + "loss": 3.7149064540863037, + "step": 2344 + }, + { + "epoch": 32.57317605941459, + "grad_norm": 0.20179468393325806, + "learning_rate": 0.0006, + "loss": 3.70635724067688, + "step": 2345 + }, + { + "epoch": 32.58715596330275, + "grad_norm": 0.19670480489730835, + "learning_rate": 0.0006, + "loss": 3.7276744842529297, + "step": 2346 + }, + { + "epoch": 32.60113586719091, + "grad_norm": 0.1992012858390808, + "learning_rate": 0.0006, + "loss": 3.7659356594085693, + "step": 2347 + }, + { + "epoch": 32.615115771079076, + "grad_norm": 0.20124201476573944, + "learning_rate": 0.0006, + "loss": 3.722212791442871, + "step": 2348 + }, + { + "epoch": 32.62909567496723, + "grad_norm": 0.21972708404064178, + "learning_rate": 0.0006, + "loss": 3.751830577850342, + "step": 2349 + }, + { + "epoch": 32.643075578855395, + "grad_norm": 0.20454947650432587, + "learning_rate": 0.0006, + "loss": 3.7196669578552246, + "step": 2350 + }, + { + "epoch": 32.65705548274356, + "grad_norm": 0.1783330887556076, + "learning_rate": 0.0006, + "loss": 3.721461772918701, + "step": 2351 + }, + { + "epoch": 32.671035386631715, + "grad_norm": 0.2027900367975235, + "learning_rate": 0.0006, + "loss": 3.753718614578247, + "step": 2352 + }, + { + "epoch": 32.68501529051988, + "grad_norm": 0.21232381463050842, + "learning_rate": 0.0006, + "loss": 3.732736349105835, + "step": 2353 + }, + { + "epoch": 32.69899519440804, + "grad_norm": 0.2214568555355072, + "learning_rate": 0.0006, + "loss": 3.7250165939331055, + "step": 2354 + }, + { + "epoch": 32.7129750982962, + "grad_norm": 0.2626485228538513, + "learning_rate": 0.0006, + "loss": 3.72263503074646, + "step": 2355 + }, + { + "epoch": 32.72695500218436, + "grad_norm": 0.30096277594566345, + "learning_rate": 0.0006, + "loss": 3.7599854469299316, + "step": 2356 + }, + { + "epoch": 32.74093490607252, + "grad_norm": 0.3374342620372772, + "learning_rate": 0.0006, + "loss": 3.7493844032287598, + "step": 2357 + }, + { + "epoch": 32.75491480996068, + "grad_norm": 0.3051377534866333, + "learning_rate": 0.0006, + "loss": 3.7515692710876465, + "step": 2358 + }, + { + "epoch": 32.768894713848844, + "grad_norm": 0.2130587249994278, + "learning_rate": 0.0006, + "loss": 3.751307964324951, + "step": 2359 + }, + { + "epoch": 32.782874617737, + "grad_norm": 0.25198230147361755, + "learning_rate": 0.0006, + "loss": 3.7500064373016357, + "step": 2360 + }, + { + "epoch": 32.796854521625164, + "grad_norm": 0.27613863348960876, + "learning_rate": 0.0006, + "loss": 3.7257039546966553, + "step": 2361 + }, + { + "epoch": 32.81083442551333, + "grad_norm": 0.23749367892742157, + "learning_rate": 0.0006, + "loss": 3.778343439102173, + "step": 2362 + }, + { + "epoch": 32.824814329401484, + "grad_norm": 0.2063702642917633, + "learning_rate": 0.0006, + "loss": 3.7493772506713867, + "step": 2363 + }, + { + "epoch": 32.83879423328965, + "grad_norm": 0.21169374883174896, + "learning_rate": 0.0006, + "loss": 3.722567081451416, + "step": 2364 + }, + { + "epoch": 32.8527741371778, + "grad_norm": 0.23291490972042084, + "learning_rate": 0.0006, + "loss": 3.7555532455444336, + "step": 2365 + }, + { + "epoch": 32.86675404106597, + "grad_norm": 0.21486155688762665, + "learning_rate": 0.0006, + "loss": 3.7401528358459473, + "step": 2366 + }, + { + "epoch": 32.88073394495413, + "grad_norm": 0.2296247035264969, + "learning_rate": 0.0006, + "loss": 3.7867965698242188, + "step": 2367 + }, + { + "epoch": 32.89471384884229, + "grad_norm": 0.2335108071565628, + "learning_rate": 0.0006, + "loss": 3.768036365509033, + "step": 2368 + }, + { + "epoch": 32.90869375273045, + "grad_norm": 0.23921863734722137, + "learning_rate": 0.0006, + "loss": 3.725252151489258, + "step": 2369 + }, + { + "epoch": 32.92267365661861, + "grad_norm": 0.20303526520729065, + "learning_rate": 0.0006, + "loss": 3.7806248664855957, + "step": 2370 + }, + { + "epoch": 32.93665356050677, + "grad_norm": 0.19293150305747986, + "learning_rate": 0.0006, + "loss": 3.759281873703003, + "step": 2371 + }, + { + "epoch": 32.95063346439493, + "grad_norm": 0.20609107613563538, + "learning_rate": 0.0006, + "loss": 3.764190196990967, + "step": 2372 + }, + { + "epoch": 32.964613368283096, + "grad_norm": 0.2014189213514328, + "learning_rate": 0.0006, + "loss": 3.7365214824676514, + "step": 2373 + }, + { + "epoch": 32.97859327217125, + "grad_norm": 0.22045451402664185, + "learning_rate": 0.0006, + "loss": 3.7435812950134277, + "step": 2374 + }, + { + "epoch": 32.992573176059416, + "grad_norm": 0.24228639900684357, + "learning_rate": 0.0006, + "loss": 3.751309394836426, + "step": 2375 + }, + { + "epoch": 33.0, + "grad_norm": 0.2645106613636017, + "learning_rate": 0.0006, + "loss": 3.7629928588867188, + "step": 2376 + }, + { + "epoch": 33.0, + "eval_loss": 4.026789665222168, + "eval_runtime": 44.9957, + "eval_samples_per_second": 54.272, + "eval_steps_per_second": 3.4, + "step": 2376 + }, + { + "epoch": 33.01397990388816, + "grad_norm": 0.21402551233768463, + "learning_rate": 0.0006, + "loss": 3.72019100189209, + "step": 2377 + }, + { + "epoch": 33.02795980777632, + "grad_norm": 0.23886585235595703, + "learning_rate": 0.0006, + "loss": 3.687084674835205, + "step": 2378 + }, + { + "epoch": 33.04193971166448, + "grad_norm": 0.29936572909355164, + "learning_rate": 0.0006, + "loss": 3.697310447692871, + "step": 2379 + }, + { + "epoch": 33.05591961555265, + "grad_norm": 0.30007585883140564, + "learning_rate": 0.0006, + "loss": 3.6913352012634277, + "step": 2380 + }, + { + "epoch": 33.0698995194408, + "grad_norm": 0.26594656705856323, + "learning_rate": 0.0006, + "loss": 3.740802526473999, + "step": 2381 + }, + { + "epoch": 33.083879423328966, + "grad_norm": 0.2658730447292328, + "learning_rate": 0.0006, + "loss": 3.692746162414551, + "step": 2382 + }, + { + "epoch": 33.09785932721712, + "grad_norm": 0.26755523681640625, + "learning_rate": 0.0006, + "loss": 3.7534420490264893, + "step": 2383 + }, + { + "epoch": 33.111839231105286, + "grad_norm": 0.23070940375328064, + "learning_rate": 0.0006, + "loss": 3.717876672744751, + "step": 2384 + }, + { + "epoch": 33.12581913499345, + "grad_norm": 0.2476235181093216, + "learning_rate": 0.0006, + "loss": 3.7072248458862305, + "step": 2385 + }, + { + "epoch": 33.139799038881605, + "grad_norm": 0.2454477846622467, + "learning_rate": 0.0006, + "loss": 3.729762077331543, + "step": 2386 + }, + { + "epoch": 33.15377894276977, + "grad_norm": 0.24090935289859772, + "learning_rate": 0.0006, + "loss": 3.721374988555908, + "step": 2387 + }, + { + "epoch": 33.16775884665793, + "grad_norm": 0.2440263032913208, + "learning_rate": 0.0006, + "loss": 3.730433464050293, + "step": 2388 + }, + { + "epoch": 33.18173875054609, + "grad_norm": 0.21699118614196777, + "learning_rate": 0.0006, + "loss": 3.724730968475342, + "step": 2389 + }, + { + "epoch": 33.19571865443425, + "grad_norm": 0.2302001267671585, + "learning_rate": 0.0006, + "loss": 3.69376277923584, + "step": 2390 + }, + { + "epoch": 33.20969855832241, + "grad_norm": 0.24707409739494324, + "learning_rate": 0.0006, + "loss": 3.705653667449951, + "step": 2391 + }, + { + "epoch": 33.22367846221057, + "grad_norm": 0.22896641492843628, + "learning_rate": 0.0006, + "loss": 3.747000217437744, + "step": 2392 + }, + { + "epoch": 33.237658366098735, + "grad_norm": 0.2278730720281601, + "learning_rate": 0.0006, + "loss": 3.733464241027832, + "step": 2393 + }, + { + "epoch": 33.25163826998689, + "grad_norm": 0.23909862339496613, + "learning_rate": 0.0006, + "loss": 3.733661413192749, + "step": 2394 + }, + { + "epoch": 33.265618173875055, + "grad_norm": 0.2349950075149536, + "learning_rate": 0.0006, + "loss": 3.7337965965270996, + "step": 2395 + }, + { + "epoch": 33.27959807776322, + "grad_norm": 0.22655968368053436, + "learning_rate": 0.0006, + "loss": 3.70503306388855, + "step": 2396 + }, + { + "epoch": 33.293577981651374, + "grad_norm": 0.22167043387889862, + "learning_rate": 0.0006, + "loss": 3.738797903060913, + "step": 2397 + }, + { + "epoch": 33.30755788553954, + "grad_norm": 0.2278883010149002, + "learning_rate": 0.0006, + "loss": 3.712550640106201, + "step": 2398 + }, + { + "epoch": 33.3215377894277, + "grad_norm": 0.2220565229654312, + "learning_rate": 0.0006, + "loss": 3.7278006076812744, + "step": 2399 + }, + { + "epoch": 33.33551769331586, + "grad_norm": 0.21888740360736847, + "learning_rate": 0.0006, + "loss": 3.72243595123291, + "step": 2400 + }, + { + "epoch": 33.34949759720402, + "grad_norm": 0.21587581932544708, + "learning_rate": 0.0006, + "loss": 3.7177581787109375, + "step": 2401 + }, + { + "epoch": 33.36347750109218, + "grad_norm": 0.1923578530550003, + "learning_rate": 0.0006, + "loss": 3.711294651031494, + "step": 2402 + }, + { + "epoch": 33.37745740498034, + "grad_norm": 0.1994934380054474, + "learning_rate": 0.0006, + "loss": 3.762061595916748, + "step": 2403 + }, + { + "epoch": 33.391437308868504, + "grad_norm": 0.20074427127838135, + "learning_rate": 0.0006, + "loss": 3.708559036254883, + "step": 2404 + }, + { + "epoch": 33.40541721275666, + "grad_norm": 0.21349482238292694, + "learning_rate": 0.0006, + "loss": 3.7089147567749023, + "step": 2405 + }, + { + "epoch": 33.419397116644824, + "grad_norm": 0.25523608922958374, + "learning_rate": 0.0006, + "loss": 3.7241058349609375, + "step": 2406 + }, + { + "epoch": 33.43337702053299, + "grad_norm": 0.27654796838760376, + "learning_rate": 0.0006, + "loss": 3.723618984222412, + "step": 2407 + }, + { + "epoch": 33.44735692442114, + "grad_norm": 0.2651479244232178, + "learning_rate": 0.0006, + "loss": 3.7367782592773438, + "step": 2408 + }, + { + "epoch": 33.46133682830931, + "grad_norm": 0.23403556644916534, + "learning_rate": 0.0006, + "loss": 3.7198312282562256, + "step": 2409 + }, + { + "epoch": 33.47531673219746, + "grad_norm": 0.20970726013183594, + "learning_rate": 0.0006, + "loss": 3.7088186740875244, + "step": 2410 + }, + { + "epoch": 33.489296636085626, + "grad_norm": 0.18532544374465942, + "learning_rate": 0.0006, + "loss": 3.7162208557128906, + "step": 2411 + }, + { + "epoch": 33.50327653997379, + "grad_norm": 0.19590279459953308, + "learning_rate": 0.0006, + "loss": 3.766357898712158, + "step": 2412 + }, + { + "epoch": 33.517256443861946, + "grad_norm": 0.203349307179451, + "learning_rate": 0.0006, + "loss": 3.732177257537842, + "step": 2413 + }, + { + "epoch": 33.53123634775011, + "grad_norm": 0.2015952616930008, + "learning_rate": 0.0006, + "loss": 3.741609573364258, + "step": 2414 + }, + { + "epoch": 33.54521625163827, + "grad_norm": 0.20024161040782928, + "learning_rate": 0.0006, + "loss": 3.6894431114196777, + "step": 2415 + }, + { + "epoch": 33.55919615552643, + "grad_norm": 0.20932617783546448, + "learning_rate": 0.0006, + "loss": 3.721979856491089, + "step": 2416 + }, + { + "epoch": 33.57317605941459, + "grad_norm": 0.22069773077964783, + "learning_rate": 0.0006, + "loss": 3.712203025817871, + "step": 2417 + }, + { + "epoch": 33.58715596330275, + "grad_norm": 0.22341343760490417, + "learning_rate": 0.0006, + "loss": 3.7469263076782227, + "step": 2418 + }, + { + "epoch": 33.60113586719091, + "grad_norm": 0.21758507192134857, + "learning_rate": 0.0006, + "loss": 3.721778392791748, + "step": 2419 + }, + { + "epoch": 33.615115771079076, + "grad_norm": 0.20480088889598846, + "learning_rate": 0.0006, + "loss": 3.743570327758789, + "step": 2420 + }, + { + "epoch": 33.62909567496723, + "grad_norm": 0.23068399727344513, + "learning_rate": 0.0006, + "loss": 3.7203001976013184, + "step": 2421 + }, + { + "epoch": 33.643075578855395, + "grad_norm": 0.2526263892650604, + "learning_rate": 0.0006, + "loss": 3.7336440086364746, + "step": 2422 + }, + { + "epoch": 33.65705548274356, + "grad_norm": 0.218627467751503, + "learning_rate": 0.0006, + "loss": 3.730762243270874, + "step": 2423 + }, + { + "epoch": 33.671035386631715, + "grad_norm": 0.21883417665958405, + "learning_rate": 0.0006, + "loss": 3.749356508255005, + "step": 2424 + }, + { + "epoch": 33.68501529051988, + "grad_norm": 0.22885626554489136, + "learning_rate": 0.0006, + "loss": 3.7426199913024902, + "step": 2425 + }, + { + "epoch": 33.69899519440804, + "grad_norm": 0.23709580302238464, + "learning_rate": 0.0006, + "loss": 3.691652774810791, + "step": 2426 + }, + { + "epoch": 33.7129750982962, + "grad_norm": 0.2258225381374359, + "learning_rate": 0.0006, + "loss": 3.7368886470794678, + "step": 2427 + }, + { + "epoch": 33.72695500218436, + "grad_norm": 0.1993306577205658, + "learning_rate": 0.0006, + "loss": 3.722733497619629, + "step": 2428 + }, + { + "epoch": 33.74093490607252, + "grad_norm": 0.20307473838329315, + "learning_rate": 0.0006, + "loss": 3.7507500648498535, + "step": 2429 + }, + { + "epoch": 33.75491480996068, + "grad_norm": 0.20076696574687958, + "learning_rate": 0.0006, + "loss": 3.6896910667419434, + "step": 2430 + }, + { + "epoch": 33.768894713848844, + "grad_norm": 0.21118830144405365, + "learning_rate": 0.0006, + "loss": 3.7176647186279297, + "step": 2431 + }, + { + "epoch": 33.782874617737, + "grad_norm": 0.21605782210826874, + "learning_rate": 0.0006, + "loss": 3.7423641681671143, + "step": 2432 + }, + { + "epoch": 33.796854521625164, + "grad_norm": 0.22233152389526367, + "learning_rate": 0.0006, + "loss": 3.7296109199523926, + "step": 2433 + }, + { + "epoch": 33.81083442551333, + "grad_norm": 0.2253616899251938, + "learning_rate": 0.0006, + "loss": 3.7095072269439697, + "step": 2434 + }, + { + "epoch": 33.824814329401484, + "grad_norm": 0.2105807662010193, + "learning_rate": 0.0006, + "loss": 3.760921001434326, + "step": 2435 + }, + { + "epoch": 33.83879423328965, + "grad_norm": 0.20413213968276978, + "learning_rate": 0.0006, + "loss": 3.7356553077697754, + "step": 2436 + }, + { + "epoch": 33.8527741371778, + "grad_norm": 0.19781213998794556, + "learning_rate": 0.0006, + "loss": 3.726787567138672, + "step": 2437 + }, + { + "epoch": 33.86675404106597, + "grad_norm": 0.199616938829422, + "learning_rate": 0.0006, + "loss": 3.7200419902801514, + "step": 2438 + }, + { + "epoch": 33.88073394495413, + "grad_norm": 0.19702564179897308, + "learning_rate": 0.0006, + "loss": 3.714287281036377, + "step": 2439 + }, + { + "epoch": 33.89471384884229, + "grad_norm": 0.19456833600997925, + "learning_rate": 0.0006, + "loss": 3.739231586456299, + "step": 2440 + }, + { + "epoch": 33.90869375273045, + "grad_norm": 0.1890697181224823, + "learning_rate": 0.0006, + "loss": 3.7088429927825928, + "step": 2441 + }, + { + "epoch": 33.92267365661861, + "grad_norm": 0.1845911741256714, + "learning_rate": 0.0006, + "loss": 3.760782241821289, + "step": 2442 + }, + { + "epoch": 33.93665356050677, + "grad_norm": 0.19045902788639069, + "learning_rate": 0.0006, + "loss": 3.736957311630249, + "step": 2443 + }, + { + "epoch": 33.95063346439493, + "grad_norm": 0.1934187412261963, + "learning_rate": 0.0006, + "loss": 3.756351947784424, + "step": 2444 + }, + { + "epoch": 33.964613368283096, + "grad_norm": 0.19774580001831055, + "learning_rate": 0.0006, + "loss": 3.7332229614257812, + "step": 2445 + }, + { + "epoch": 33.97859327217125, + "grad_norm": 0.20653048157691956, + "learning_rate": 0.0006, + "loss": 3.7112321853637695, + "step": 2446 + }, + { + "epoch": 33.992573176059416, + "grad_norm": 0.18618541955947876, + "learning_rate": 0.0006, + "loss": 3.735710620880127, + "step": 2447 + }, + { + "epoch": 34.0, + "grad_norm": 0.22846414148807526, + "learning_rate": 0.0006, + "loss": 3.739706039428711, + "step": 2448 + }, + { + "epoch": 34.0, + "eval_loss": 4.0099663734436035, + "eval_runtime": 45.2096, + "eval_samples_per_second": 54.015, + "eval_steps_per_second": 3.384, + "step": 2448 + }, + { + "epoch": 34.01397990388816, + "grad_norm": 0.20987462997436523, + "learning_rate": 0.0006, + "loss": 3.6798832416534424, + "step": 2449 + }, + { + "epoch": 34.02795980777632, + "grad_norm": 0.2230423390865326, + "learning_rate": 0.0006, + "loss": 3.7157368659973145, + "step": 2450 + }, + { + "epoch": 34.04193971166448, + "grad_norm": 0.24115242063999176, + "learning_rate": 0.0006, + "loss": 3.696037769317627, + "step": 2451 + }, + { + "epoch": 34.05591961555265, + "grad_norm": 0.24499665200710297, + "learning_rate": 0.0006, + "loss": 3.695420742034912, + "step": 2452 + }, + { + "epoch": 34.0698995194408, + "grad_norm": 0.23336757719516754, + "learning_rate": 0.0006, + "loss": 3.7252023220062256, + "step": 2453 + }, + { + "epoch": 34.083879423328966, + "grad_norm": 0.23716159164905548, + "learning_rate": 0.0006, + "loss": 3.714542865753174, + "step": 2454 + }, + { + "epoch": 34.09785932721712, + "grad_norm": 0.2305644154548645, + "learning_rate": 0.0006, + "loss": 3.6989386081695557, + "step": 2455 + }, + { + "epoch": 34.111839231105286, + "grad_norm": 0.2281671017408371, + "learning_rate": 0.0006, + "loss": 3.6952829360961914, + "step": 2456 + }, + { + "epoch": 34.12581913499345, + "grad_norm": 0.21031132340431213, + "learning_rate": 0.0006, + "loss": 3.7337589263916016, + "step": 2457 + }, + { + "epoch": 34.139799038881605, + "grad_norm": 0.2233671098947525, + "learning_rate": 0.0006, + "loss": 3.6923675537109375, + "step": 2458 + }, + { + "epoch": 34.15377894276977, + "grad_norm": 0.22766625881195068, + "learning_rate": 0.0006, + "loss": 3.70849609375, + "step": 2459 + }, + { + "epoch": 34.16775884665793, + "grad_norm": 0.22433766722679138, + "learning_rate": 0.0006, + "loss": 3.718319892883301, + "step": 2460 + }, + { + "epoch": 34.18173875054609, + "grad_norm": 0.20621491968631744, + "learning_rate": 0.0006, + "loss": 3.6874704360961914, + "step": 2461 + }, + { + "epoch": 34.19571865443425, + "grad_norm": 0.21353304386138916, + "learning_rate": 0.0006, + "loss": 3.663358688354492, + "step": 2462 + }, + { + "epoch": 34.20969855832241, + "grad_norm": 0.20652951300144196, + "learning_rate": 0.0006, + "loss": 3.718107223510742, + "step": 2463 + }, + { + "epoch": 34.22367846221057, + "grad_norm": 0.19780176877975464, + "learning_rate": 0.0006, + "loss": 3.7255396842956543, + "step": 2464 + }, + { + "epoch": 34.237658366098735, + "grad_norm": 0.20636138319969177, + "learning_rate": 0.0006, + "loss": 3.696850538253784, + "step": 2465 + }, + { + "epoch": 34.25163826998689, + "grad_norm": 0.23691460490226746, + "learning_rate": 0.0006, + "loss": 3.687997341156006, + "step": 2466 + }, + { + "epoch": 34.265618173875055, + "grad_norm": 0.2380511611700058, + "learning_rate": 0.0006, + "loss": 3.716610908508301, + "step": 2467 + }, + { + "epoch": 34.27959807776322, + "grad_norm": 0.21508945524692535, + "learning_rate": 0.0006, + "loss": 3.6993470191955566, + "step": 2468 + }, + { + "epoch": 34.293577981651374, + "grad_norm": 0.20441125333309174, + "learning_rate": 0.0006, + "loss": 3.7194275856018066, + "step": 2469 + }, + { + "epoch": 34.30755788553954, + "grad_norm": 0.19704242050647736, + "learning_rate": 0.0006, + "loss": 3.675929546356201, + "step": 2470 + }, + { + "epoch": 34.3215377894277, + "grad_norm": 0.1918456256389618, + "learning_rate": 0.0006, + "loss": 3.7189574241638184, + "step": 2471 + }, + { + "epoch": 34.33551769331586, + "grad_norm": 0.19687092304229736, + "learning_rate": 0.0006, + "loss": 3.725809335708618, + "step": 2472 + }, + { + "epoch": 34.34949759720402, + "grad_norm": 0.2048639953136444, + "learning_rate": 0.0006, + "loss": 3.7461748123168945, + "step": 2473 + }, + { + "epoch": 34.36347750109218, + "grad_norm": 0.21086618304252625, + "learning_rate": 0.0006, + "loss": 3.6849746704101562, + "step": 2474 + }, + { + "epoch": 34.37745740498034, + "grad_norm": 0.2172154039144516, + "learning_rate": 0.0006, + "loss": 3.7379322052001953, + "step": 2475 + }, + { + "epoch": 34.391437308868504, + "grad_norm": 0.22725504636764526, + "learning_rate": 0.0006, + "loss": 3.7341527938842773, + "step": 2476 + }, + { + "epoch": 34.40541721275666, + "grad_norm": 0.22309242188930511, + "learning_rate": 0.0006, + "loss": 3.724946975708008, + "step": 2477 + }, + { + "epoch": 34.419397116644824, + "grad_norm": 0.25252285599708557, + "learning_rate": 0.0006, + "loss": 3.710257053375244, + "step": 2478 + }, + { + "epoch": 34.43337702053299, + "grad_norm": 0.2549746334552765, + "learning_rate": 0.0006, + "loss": 3.7105040550231934, + "step": 2479 + }, + { + "epoch": 34.44735692442114, + "grad_norm": 0.22544030845165253, + "learning_rate": 0.0006, + "loss": 3.7340707778930664, + "step": 2480 + }, + { + "epoch": 34.46133682830931, + "grad_norm": 0.22275063395500183, + "learning_rate": 0.0006, + "loss": 3.7141473293304443, + "step": 2481 + }, + { + "epoch": 34.47531673219746, + "grad_norm": 0.25373485684394836, + "learning_rate": 0.0006, + "loss": 3.7014691829681396, + "step": 2482 + }, + { + "epoch": 34.489296636085626, + "grad_norm": 0.2573327124118805, + "learning_rate": 0.0006, + "loss": 3.682562828063965, + "step": 2483 + }, + { + "epoch": 34.50327653997379, + "grad_norm": 0.2452341616153717, + "learning_rate": 0.0006, + "loss": 3.757261276245117, + "step": 2484 + }, + { + "epoch": 34.517256443861946, + "grad_norm": 0.2477131187915802, + "learning_rate": 0.0006, + "loss": 3.7216877937316895, + "step": 2485 + }, + { + "epoch": 34.53123634775011, + "grad_norm": 0.24740098416805267, + "learning_rate": 0.0006, + "loss": 3.705704927444458, + "step": 2486 + }, + { + "epoch": 34.54521625163827, + "grad_norm": 0.27306219935417175, + "learning_rate": 0.0006, + "loss": 3.7014641761779785, + "step": 2487 + }, + { + "epoch": 34.55919615552643, + "grad_norm": 0.26376286149024963, + "learning_rate": 0.0006, + "loss": 3.686056137084961, + "step": 2488 + }, + { + "epoch": 34.57317605941459, + "grad_norm": 0.2796899378299713, + "learning_rate": 0.0006, + "loss": 3.7171077728271484, + "step": 2489 + }, + { + "epoch": 34.58715596330275, + "grad_norm": 0.24279902875423431, + "learning_rate": 0.0006, + "loss": 3.7448348999023438, + "step": 2490 + }, + { + "epoch": 34.60113586719091, + "grad_norm": 0.22772833704948425, + "learning_rate": 0.0006, + "loss": 3.7028117179870605, + "step": 2491 + }, + { + "epoch": 34.615115771079076, + "grad_norm": 0.22157910466194153, + "learning_rate": 0.0006, + "loss": 3.750023603439331, + "step": 2492 + }, + { + "epoch": 34.62909567496723, + "grad_norm": 0.24342703819274902, + "learning_rate": 0.0006, + "loss": 3.7181010246276855, + "step": 2493 + }, + { + "epoch": 34.643075578855395, + "grad_norm": 0.2554340362548828, + "learning_rate": 0.0006, + "loss": 3.6994080543518066, + "step": 2494 + }, + { + "epoch": 34.65705548274356, + "grad_norm": 0.21296930313110352, + "learning_rate": 0.0006, + "loss": 3.7534523010253906, + "step": 2495 + }, + { + "epoch": 34.671035386631715, + "grad_norm": 0.19117674231529236, + "learning_rate": 0.0006, + "loss": 3.7267889976501465, + "step": 2496 + }, + { + "epoch": 34.68501529051988, + "grad_norm": 0.2306399643421173, + "learning_rate": 0.0006, + "loss": 3.723212242126465, + "step": 2497 + }, + { + "epoch": 34.69899519440804, + "grad_norm": 0.23063263297080994, + "learning_rate": 0.0006, + "loss": 3.730070114135742, + "step": 2498 + }, + { + "epoch": 34.7129750982962, + "grad_norm": 0.19422881305217743, + "learning_rate": 0.0006, + "loss": 3.694833755493164, + "step": 2499 + }, + { + "epoch": 34.72695500218436, + "grad_norm": 0.20246362686157227, + "learning_rate": 0.0006, + "loss": 3.71140718460083, + "step": 2500 + }, + { + "epoch": 34.74093490607252, + "grad_norm": 0.1942741572856903, + "learning_rate": 0.0006, + "loss": 3.7530534267425537, + "step": 2501 + }, + { + "epoch": 34.75491480996068, + "grad_norm": 0.19686029851436615, + "learning_rate": 0.0006, + "loss": 3.7059555053710938, + "step": 2502 + }, + { + "epoch": 34.768894713848844, + "grad_norm": 0.20120355486869812, + "learning_rate": 0.0006, + "loss": 3.7271084785461426, + "step": 2503 + }, + { + "epoch": 34.782874617737, + "grad_norm": 0.20880399644374847, + "learning_rate": 0.0006, + "loss": 3.712137460708618, + "step": 2504 + }, + { + "epoch": 34.796854521625164, + "grad_norm": 0.22139988839626312, + "learning_rate": 0.0006, + "loss": 3.731245517730713, + "step": 2505 + }, + { + "epoch": 34.81083442551333, + "grad_norm": 0.22756224870681763, + "learning_rate": 0.0006, + "loss": 3.708987236022949, + "step": 2506 + }, + { + "epoch": 34.824814329401484, + "grad_norm": 0.22332409024238586, + "learning_rate": 0.0006, + "loss": 3.7365565299987793, + "step": 2507 + }, + { + "epoch": 34.83879423328965, + "grad_norm": 0.19599054753780365, + "learning_rate": 0.0006, + "loss": 3.7266454696655273, + "step": 2508 + }, + { + "epoch": 34.8527741371778, + "grad_norm": 0.19843019545078278, + "learning_rate": 0.0006, + "loss": 3.7225422859191895, + "step": 2509 + }, + { + "epoch": 34.86675404106597, + "grad_norm": 0.20147928595542908, + "learning_rate": 0.0006, + "loss": 3.7282514572143555, + "step": 2510 + }, + { + "epoch": 34.88073394495413, + "grad_norm": 0.19489876925945282, + "learning_rate": 0.0006, + "loss": 3.694852113723755, + "step": 2511 + }, + { + "epoch": 34.89471384884229, + "grad_norm": 0.20680078864097595, + "learning_rate": 0.0006, + "loss": 3.74678635597229, + "step": 2512 + }, + { + "epoch": 34.90869375273045, + "grad_norm": 0.2233233004808426, + "learning_rate": 0.0006, + "loss": 3.726475238800049, + "step": 2513 + }, + { + "epoch": 34.92267365661861, + "grad_norm": 0.20702993869781494, + "learning_rate": 0.0006, + "loss": 3.6946351528167725, + "step": 2514 + }, + { + "epoch": 34.93665356050677, + "grad_norm": 0.2081725299358368, + "learning_rate": 0.0006, + "loss": 3.7101621627807617, + "step": 2515 + }, + { + "epoch": 34.95063346439493, + "grad_norm": 0.20551837980747223, + "learning_rate": 0.0006, + "loss": 3.7060177326202393, + "step": 2516 + }, + { + "epoch": 34.964613368283096, + "grad_norm": 0.2106839418411255, + "learning_rate": 0.0006, + "loss": 3.7460474967956543, + "step": 2517 + }, + { + "epoch": 34.97859327217125, + "grad_norm": 0.18512766063213348, + "learning_rate": 0.0006, + "loss": 3.719280242919922, + "step": 2518 + }, + { + "epoch": 34.992573176059416, + "grad_norm": 0.1802142709493637, + "learning_rate": 0.0006, + "loss": 3.698255777359009, + "step": 2519 + }, + { + "epoch": 35.0, + "grad_norm": 0.2028084248304367, + "learning_rate": 0.0006, + "loss": 3.711136817932129, + "step": 2520 + }, + { + "epoch": 35.0, + "eval_loss": 4.006688117980957, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 2520 + }, + { + "epoch": 35.01397990388816, + "grad_norm": 0.1973012387752533, + "learning_rate": 0.0006, + "loss": 3.7108325958251953, + "step": 2521 + }, + { + "epoch": 35.02795980777632, + "grad_norm": 0.23763646185398102, + "learning_rate": 0.0006, + "loss": 3.675785541534424, + "step": 2522 + }, + { + "epoch": 35.04193971166448, + "grad_norm": 0.24403199553489685, + "learning_rate": 0.0006, + "loss": 3.7034249305725098, + "step": 2523 + }, + { + "epoch": 35.05591961555265, + "grad_norm": 0.19050131738185883, + "learning_rate": 0.0006, + "loss": 3.6984221935272217, + "step": 2524 + }, + { + "epoch": 35.0698995194408, + "grad_norm": 0.21389710903167725, + "learning_rate": 0.0006, + "loss": 3.6641085147857666, + "step": 2525 + }, + { + "epoch": 35.083879423328966, + "grad_norm": 0.23103152215480804, + "learning_rate": 0.0006, + "loss": 3.722912311553955, + "step": 2526 + }, + { + "epoch": 35.09785932721712, + "grad_norm": 0.2197326272726059, + "learning_rate": 0.0006, + "loss": 3.696568727493286, + "step": 2527 + }, + { + "epoch": 35.111839231105286, + "grad_norm": 0.20877327024936676, + "learning_rate": 0.0006, + "loss": 3.666700601577759, + "step": 2528 + }, + { + "epoch": 35.12581913499345, + "grad_norm": 0.20904001593589783, + "learning_rate": 0.0006, + "loss": 3.6896979808807373, + "step": 2529 + }, + { + "epoch": 35.139799038881605, + "grad_norm": 0.1947423666715622, + "learning_rate": 0.0006, + "loss": 3.6647095680236816, + "step": 2530 + }, + { + "epoch": 35.15377894276977, + "grad_norm": 0.2134019434452057, + "learning_rate": 0.0006, + "loss": 3.696993589401245, + "step": 2531 + }, + { + "epoch": 35.16775884665793, + "grad_norm": 0.2299254685640335, + "learning_rate": 0.0006, + "loss": 3.7067925930023193, + "step": 2532 + }, + { + "epoch": 35.18173875054609, + "grad_norm": 0.219585582613945, + "learning_rate": 0.0006, + "loss": 3.6680960655212402, + "step": 2533 + }, + { + "epoch": 35.19571865443425, + "grad_norm": 0.2146025449037552, + "learning_rate": 0.0006, + "loss": 3.7185046672821045, + "step": 2534 + }, + { + "epoch": 35.20969855832241, + "grad_norm": 0.22748060524463654, + "learning_rate": 0.0006, + "loss": 3.659202814102173, + "step": 2535 + }, + { + "epoch": 35.22367846221057, + "grad_norm": 0.22272273898124695, + "learning_rate": 0.0006, + "loss": 3.7002370357513428, + "step": 2536 + }, + { + "epoch": 35.237658366098735, + "grad_norm": 0.23827379941940308, + "learning_rate": 0.0006, + "loss": 3.714664936065674, + "step": 2537 + }, + { + "epoch": 35.25163826998689, + "grad_norm": 0.2328156679868698, + "learning_rate": 0.0006, + "loss": 3.665173292160034, + "step": 2538 + }, + { + "epoch": 35.265618173875055, + "grad_norm": 0.2573475241661072, + "learning_rate": 0.0006, + "loss": 3.7073206901550293, + "step": 2539 + }, + { + "epoch": 35.27959807776322, + "grad_norm": 0.2411472052335739, + "learning_rate": 0.0006, + "loss": 3.697751045227051, + "step": 2540 + }, + { + "epoch": 35.293577981651374, + "grad_norm": 0.22836148738861084, + "learning_rate": 0.0006, + "loss": 3.7219419479370117, + "step": 2541 + }, + { + "epoch": 35.30755788553954, + "grad_norm": 0.2225421667098999, + "learning_rate": 0.0006, + "loss": 3.69516658782959, + "step": 2542 + }, + { + "epoch": 35.3215377894277, + "grad_norm": 0.2180362343788147, + "learning_rate": 0.0006, + "loss": 3.714043378829956, + "step": 2543 + }, + { + "epoch": 35.33551769331586, + "grad_norm": 0.23638299107551575, + "learning_rate": 0.0006, + "loss": 3.7449421882629395, + "step": 2544 + }, + { + "epoch": 35.34949759720402, + "grad_norm": 0.21792089939117432, + "learning_rate": 0.0006, + "loss": 3.7029948234558105, + "step": 2545 + }, + { + "epoch": 35.36347750109218, + "grad_norm": 0.23266112804412842, + "learning_rate": 0.0006, + "loss": 3.683509111404419, + "step": 2546 + }, + { + "epoch": 35.37745740498034, + "grad_norm": 0.24203059077262878, + "learning_rate": 0.0006, + "loss": 3.68572998046875, + "step": 2547 + }, + { + "epoch": 35.391437308868504, + "grad_norm": 0.2543564438819885, + "learning_rate": 0.0006, + "loss": 3.6902432441711426, + "step": 2548 + }, + { + "epoch": 35.40541721275666, + "grad_norm": 0.22990189492702484, + "learning_rate": 0.0006, + "loss": 3.708810329437256, + "step": 2549 + }, + { + "epoch": 35.419397116644824, + "grad_norm": 0.2594352662563324, + "learning_rate": 0.0006, + "loss": 3.7312886714935303, + "step": 2550 + }, + { + "epoch": 35.43337702053299, + "grad_norm": 0.27525269985198975, + "learning_rate": 0.0006, + "loss": 3.6963448524475098, + "step": 2551 + }, + { + "epoch": 35.44735692442114, + "grad_norm": 0.2436525970697403, + "learning_rate": 0.0006, + "loss": 3.6733713150024414, + "step": 2552 + }, + { + "epoch": 35.46133682830931, + "grad_norm": 0.25500908493995667, + "learning_rate": 0.0006, + "loss": 3.7104358673095703, + "step": 2553 + }, + { + "epoch": 35.47531673219746, + "grad_norm": 0.23504602909088135, + "learning_rate": 0.0006, + "loss": 3.7052388191223145, + "step": 2554 + }, + { + "epoch": 35.489296636085626, + "grad_norm": 0.2277563363313675, + "learning_rate": 0.0006, + "loss": 3.708714008331299, + "step": 2555 + }, + { + "epoch": 35.50327653997379, + "grad_norm": 0.25224778056144714, + "learning_rate": 0.0006, + "loss": 3.699676990509033, + "step": 2556 + }, + { + "epoch": 35.517256443861946, + "grad_norm": 0.28308045864105225, + "learning_rate": 0.0006, + "loss": 3.7005362510681152, + "step": 2557 + }, + { + "epoch": 35.53123634775011, + "grad_norm": 0.25858840346336365, + "learning_rate": 0.0006, + "loss": 3.689999580383301, + "step": 2558 + }, + { + "epoch": 35.54521625163827, + "grad_norm": 0.23497405648231506, + "learning_rate": 0.0006, + "loss": 3.695793867111206, + "step": 2559 + }, + { + "epoch": 35.55919615552643, + "grad_norm": 0.22375957667827606, + "learning_rate": 0.0006, + "loss": 3.7011494636535645, + "step": 2560 + }, + { + "epoch": 35.57317605941459, + "grad_norm": 0.21056118607521057, + "learning_rate": 0.0006, + "loss": 3.722623586654663, + "step": 2561 + }, + { + "epoch": 35.58715596330275, + "grad_norm": 0.22504374384880066, + "learning_rate": 0.0006, + "loss": 3.7211966514587402, + "step": 2562 + }, + { + "epoch": 35.60113586719091, + "grad_norm": 0.22349773347377777, + "learning_rate": 0.0006, + "loss": 3.6901848316192627, + "step": 2563 + }, + { + "epoch": 35.615115771079076, + "grad_norm": 0.219499409198761, + "learning_rate": 0.0006, + "loss": 3.709026575088501, + "step": 2564 + }, + { + "epoch": 35.62909567496723, + "grad_norm": 0.20461080968379974, + "learning_rate": 0.0006, + "loss": 3.72456693649292, + "step": 2565 + }, + { + "epoch": 35.643075578855395, + "grad_norm": 0.2083883285522461, + "learning_rate": 0.0006, + "loss": 3.6845502853393555, + "step": 2566 + }, + { + "epoch": 35.65705548274356, + "grad_norm": 0.19694562256336212, + "learning_rate": 0.0006, + "loss": 3.668515682220459, + "step": 2567 + }, + { + "epoch": 35.671035386631715, + "grad_norm": 0.2107984870672226, + "learning_rate": 0.0006, + "loss": 3.700723648071289, + "step": 2568 + }, + { + "epoch": 35.68501529051988, + "grad_norm": 0.18878720700740814, + "learning_rate": 0.0006, + "loss": 3.689150333404541, + "step": 2569 + }, + { + "epoch": 35.69899519440804, + "grad_norm": 0.20058824121952057, + "learning_rate": 0.0006, + "loss": 3.7048301696777344, + "step": 2570 + }, + { + "epoch": 35.7129750982962, + "grad_norm": 0.2200566679239273, + "learning_rate": 0.0006, + "loss": 3.6944580078125, + "step": 2571 + }, + { + "epoch": 35.72695500218436, + "grad_norm": 0.22200417518615723, + "learning_rate": 0.0006, + "loss": 3.715193510055542, + "step": 2572 + }, + { + "epoch": 35.74093490607252, + "grad_norm": 0.21011404693126678, + "learning_rate": 0.0006, + "loss": 3.737387180328369, + "step": 2573 + }, + { + "epoch": 35.75491480996068, + "grad_norm": 0.21139226853847504, + "learning_rate": 0.0006, + "loss": 3.695596694946289, + "step": 2574 + }, + { + "epoch": 35.768894713848844, + "grad_norm": 0.2112506479024887, + "learning_rate": 0.0006, + "loss": 3.7264227867126465, + "step": 2575 + }, + { + "epoch": 35.782874617737, + "grad_norm": 0.21528391540050507, + "learning_rate": 0.0006, + "loss": 3.7089385986328125, + "step": 2576 + }, + { + "epoch": 35.796854521625164, + "grad_norm": 0.2127804309129715, + "learning_rate": 0.0006, + "loss": 3.6995301246643066, + "step": 2577 + }, + { + "epoch": 35.81083442551333, + "grad_norm": 0.19839410483837128, + "learning_rate": 0.0006, + "loss": 3.7233223915100098, + "step": 2578 + }, + { + "epoch": 35.824814329401484, + "grad_norm": 0.19098423421382904, + "learning_rate": 0.0006, + "loss": 3.7108311653137207, + "step": 2579 + }, + { + "epoch": 35.83879423328965, + "grad_norm": 0.18697232007980347, + "learning_rate": 0.0006, + "loss": 3.725001811981201, + "step": 2580 + }, + { + "epoch": 35.8527741371778, + "grad_norm": 0.21051937341690063, + "learning_rate": 0.0006, + "loss": 3.7310993671417236, + "step": 2581 + }, + { + "epoch": 35.86675404106597, + "grad_norm": 0.2239079475402832, + "learning_rate": 0.0006, + "loss": 3.739056348800659, + "step": 2582 + }, + { + "epoch": 35.88073394495413, + "grad_norm": 0.2581230700016022, + "learning_rate": 0.0006, + "loss": 3.697061061859131, + "step": 2583 + }, + { + "epoch": 35.89471384884229, + "grad_norm": 0.25388655066490173, + "learning_rate": 0.0006, + "loss": 3.7173471450805664, + "step": 2584 + }, + { + "epoch": 35.90869375273045, + "grad_norm": 0.2557796537876129, + "learning_rate": 0.0006, + "loss": 3.7121596336364746, + "step": 2585 + }, + { + "epoch": 35.92267365661861, + "grad_norm": 0.21846474707126617, + "learning_rate": 0.0006, + "loss": 3.7342100143432617, + "step": 2586 + }, + { + "epoch": 35.93665356050677, + "grad_norm": 0.19810006022453308, + "learning_rate": 0.0006, + "loss": 3.7266340255737305, + "step": 2587 + }, + { + "epoch": 35.95063346439493, + "grad_norm": 0.28599923849105835, + "learning_rate": 0.0006, + "loss": 3.711876392364502, + "step": 2588 + }, + { + "epoch": 35.964613368283096, + "grad_norm": 0.3380447030067444, + "learning_rate": 0.0006, + "loss": 3.7611794471740723, + "step": 2589 + }, + { + "epoch": 35.97859327217125, + "grad_norm": 0.2946915328502655, + "learning_rate": 0.0006, + "loss": 3.7659358978271484, + "step": 2590 + }, + { + "epoch": 35.992573176059416, + "grad_norm": 0.2310202419757843, + "learning_rate": 0.0006, + "loss": 3.7124969959259033, + "step": 2591 + }, + { + "epoch": 36.0, + "grad_norm": 0.22294320166110992, + "learning_rate": 0.0006, + "loss": 3.725590705871582, + "step": 2592 + }, + { + "epoch": 36.0, + "eval_loss": 4.015472412109375, + "eval_runtime": 44.4903, + "eval_samples_per_second": 54.888, + "eval_steps_per_second": 3.439, + "step": 2592 + }, + { + "epoch": 36.01397990388816, + "grad_norm": 0.2442479431629181, + "learning_rate": 0.0006, + "loss": 3.6670360565185547, + "step": 2593 + }, + { + "epoch": 36.02795980777632, + "grad_norm": 0.27702075242996216, + "learning_rate": 0.0006, + "loss": 3.685915946960449, + "step": 2594 + }, + { + "epoch": 36.04193971166448, + "grad_norm": 0.22300852835178375, + "learning_rate": 0.0006, + "loss": 3.6993556022644043, + "step": 2595 + }, + { + "epoch": 36.05591961555265, + "grad_norm": 0.22456000745296478, + "learning_rate": 0.0006, + "loss": 3.6937754154205322, + "step": 2596 + }, + { + "epoch": 36.0698995194408, + "grad_norm": 0.23157717287540436, + "learning_rate": 0.0006, + "loss": 3.6573898792266846, + "step": 2597 + }, + { + "epoch": 36.083879423328966, + "grad_norm": 0.23002618551254272, + "learning_rate": 0.0006, + "loss": 3.6565046310424805, + "step": 2598 + }, + { + "epoch": 36.09785932721712, + "grad_norm": 0.223054900765419, + "learning_rate": 0.0006, + "loss": 3.6964457035064697, + "step": 2599 + }, + { + "epoch": 36.111839231105286, + "grad_norm": 0.21883328258991241, + "learning_rate": 0.0006, + "loss": 3.674757480621338, + "step": 2600 + }, + { + "epoch": 36.12581913499345, + "grad_norm": 0.21729037165641785, + "learning_rate": 0.0006, + "loss": 3.684323310852051, + "step": 2601 + }, + { + "epoch": 36.139799038881605, + "grad_norm": 0.21299415826797485, + "learning_rate": 0.0006, + "loss": 3.6554017066955566, + "step": 2602 + }, + { + "epoch": 36.15377894276977, + "grad_norm": 0.22723016142845154, + "learning_rate": 0.0006, + "loss": 3.666767120361328, + "step": 2603 + }, + { + "epoch": 36.16775884665793, + "grad_norm": 0.23663052916526794, + "learning_rate": 0.0006, + "loss": 3.692861557006836, + "step": 2604 + }, + { + "epoch": 36.18173875054609, + "grad_norm": 0.23544131219387054, + "learning_rate": 0.0006, + "loss": 3.6648998260498047, + "step": 2605 + }, + { + "epoch": 36.19571865443425, + "grad_norm": 0.24303849041461945, + "learning_rate": 0.0006, + "loss": 3.66096568107605, + "step": 2606 + }, + { + "epoch": 36.20969855832241, + "grad_norm": 0.23385047912597656, + "learning_rate": 0.0006, + "loss": 3.6636829376220703, + "step": 2607 + }, + { + "epoch": 36.22367846221057, + "grad_norm": 0.21988974511623383, + "learning_rate": 0.0006, + "loss": 3.685072660446167, + "step": 2608 + }, + { + "epoch": 36.237658366098735, + "grad_norm": 0.2365395724773407, + "learning_rate": 0.0006, + "loss": 3.7292234897613525, + "step": 2609 + }, + { + "epoch": 36.25163826998689, + "grad_norm": 0.23791152238845825, + "learning_rate": 0.0006, + "loss": 3.6870808601379395, + "step": 2610 + }, + { + "epoch": 36.265618173875055, + "grad_norm": 0.22954145073890686, + "learning_rate": 0.0006, + "loss": 3.705406904220581, + "step": 2611 + }, + { + "epoch": 36.27959807776322, + "grad_norm": 0.22748000919818878, + "learning_rate": 0.0006, + "loss": 3.680781841278076, + "step": 2612 + }, + { + "epoch": 36.293577981651374, + "grad_norm": 0.21827450394630432, + "learning_rate": 0.0006, + "loss": 3.6794490814208984, + "step": 2613 + }, + { + "epoch": 36.30755788553954, + "grad_norm": 0.2406153380870819, + "learning_rate": 0.0006, + "loss": 3.690225124359131, + "step": 2614 + }, + { + "epoch": 36.3215377894277, + "grad_norm": 0.2406231164932251, + "learning_rate": 0.0006, + "loss": 3.665867805480957, + "step": 2615 + }, + { + "epoch": 36.33551769331586, + "grad_norm": 0.20494551956653595, + "learning_rate": 0.0006, + "loss": 3.701937198638916, + "step": 2616 + }, + { + "epoch": 36.34949759720402, + "grad_norm": 0.1995103359222412, + "learning_rate": 0.0006, + "loss": 3.702033758163452, + "step": 2617 + }, + { + "epoch": 36.36347750109218, + "grad_norm": 0.1902446299791336, + "learning_rate": 0.0006, + "loss": 3.6809959411621094, + "step": 2618 + }, + { + "epoch": 36.37745740498034, + "grad_norm": 0.1810801923274994, + "learning_rate": 0.0006, + "loss": 3.689852714538574, + "step": 2619 + }, + { + "epoch": 36.391437308868504, + "grad_norm": 0.1882476955652237, + "learning_rate": 0.0006, + "loss": 3.710911273956299, + "step": 2620 + }, + { + "epoch": 36.40541721275666, + "grad_norm": 0.1912514567375183, + "learning_rate": 0.0006, + "loss": 3.7054009437561035, + "step": 2621 + }, + { + "epoch": 36.419397116644824, + "grad_norm": 0.19080901145935059, + "learning_rate": 0.0006, + "loss": 3.681145191192627, + "step": 2622 + }, + { + "epoch": 36.43337702053299, + "grad_norm": 0.193472221493721, + "learning_rate": 0.0006, + "loss": 3.661360740661621, + "step": 2623 + }, + { + "epoch": 36.44735692442114, + "grad_norm": 0.2034357339143753, + "learning_rate": 0.0006, + "loss": 3.706930160522461, + "step": 2624 + }, + { + "epoch": 36.46133682830931, + "grad_norm": 0.19924600422382355, + "learning_rate": 0.0006, + "loss": 3.6903364658355713, + "step": 2625 + }, + { + "epoch": 36.47531673219746, + "grad_norm": 0.20556052029132843, + "learning_rate": 0.0006, + "loss": 3.6974234580993652, + "step": 2626 + }, + { + "epoch": 36.489296636085626, + "grad_norm": 0.19628804922103882, + "learning_rate": 0.0006, + "loss": 3.6947717666625977, + "step": 2627 + }, + { + "epoch": 36.50327653997379, + "grad_norm": 0.18071836233139038, + "learning_rate": 0.0006, + "loss": 3.717582941055298, + "step": 2628 + }, + { + "epoch": 36.517256443861946, + "grad_norm": 0.20531553030014038, + "learning_rate": 0.0006, + "loss": 3.680610179901123, + "step": 2629 + }, + { + "epoch": 36.53123634775011, + "grad_norm": 0.23789429664611816, + "learning_rate": 0.0006, + "loss": 3.711493968963623, + "step": 2630 + }, + { + "epoch": 36.54521625163827, + "grad_norm": 0.23027348518371582, + "learning_rate": 0.0006, + "loss": 3.6827993392944336, + "step": 2631 + }, + { + "epoch": 36.55919615552643, + "grad_norm": 0.21941570937633514, + "learning_rate": 0.0006, + "loss": 3.682286262512207, + "step": 2632 + }, + { + "epoch": 36.57317605941459, + "grad_norm": 0.21213553845882416, + "learning_rate": 0.0006, + "loss": 3.6828765869140625, + "step": 2633 + }, + { + "epoch": 36.58715596330275, + "grad_norm": 0.21929772198200226, + "learning_rate": 0.0006, + "loss": 3.697030544281006, + "step": 2634 + }, + { + "epoch": 36.60113586719091, + "grad_norm": 0.2101750522851944, + "learning_rate": 0.0006, + "loss": 3.723201274871826, + "step": 2635 + }, + { + "epoch": 36.615115771079076, + "grad_norm": 0.19014132022857666, + "learning_rate": 0.0006, + "loss": 3.6989338397979736, + "step": 2636 + }, + { + "epoch": 36.62909567496723, + "grad_norm": 0.21566815674304962, + "learning_rate": 0.0006, + "loss": 3.6968226432800293, + "step": 2637 + }, + { + "epoch": 36.643075578855395, + "grad_norm": 0.20500224828720093, + "learning_rate": 0.0006, + "loss": 3.689640522003174, + "step": 2638 + }, + { + "epoch": 36.65705548274356, + "grad_norm": 0.210358127951622, + "learning_rate": 0.0006, + "loss": 3.6996328830718994, + "step": 2639 + }, + { + "epoch": 36.671035386631715, + "grad_norm": 0.2061213105916977, + "learning_rate": 0.0006, + "loss": 3.7019221782684326, + "step": 2640 + }, + { + "epoch": 36.68501529051988, + "grad_norm": 0.21494871377944946, + "learning_rate": 0.0006, + "loss": 3.6634578704833984, + "step": 2641 + }, + { + "epoch": 36.69899519440804, + "grad_norm": 0.19586549699306488, + "learning_rate": 0.0006, + "loss": 3.708131790161133, + "step": 2642 + }, + { + "epoch": 36.7129750982962, + "grad_norm": 0.22805732488632202, + "learning_rate": 0.0006, + "loss": 3.6977362632751465, + "step": 2643 + }, + { + "epoch": 36.72695500218436, + "grad_norm": 0.28397148847579956, + "learning_rate": 0.0006, + "loss": 3.6847963333129883, + "step": 2644 + }, + { + "epoch": 36.74093490607252, + "grad_norm": 0.28333187103271484, + "learning_rate": 0.0006, + "loss": 3.734257459640503, + "step": 2645 + }, + { + "epoch": 36.75491480996068, + "grad_norm": 0.22314953804016113, + "learning_rate": 0.0006, + "loss": 3.6871445178985596, + "step": 2646 + }, + { + "epoch": 36.768894713848844, + "grad_norm": 0.20580267906188965, + "learning_rate": 0.0006, + "loss": 3.692736864089966, + "step": 2647 + }, + { + "epoch": 36.782874617737, + "grad_norm": 0.22695036232471466, + "learning_rate": 0.0006, + "loss": 3.697096824645996, + "step": 2648 + }, + { + "epoch": 36.796854521625164, + "grad_norm": 0.25916165113449097, + "learning_rate": 0.0006, + "loss": 3.7099573612213135, + "step": 2649 + }, + { + "epoch": 36.81083442551333, + "grad_norm": 0.26024341583251953, + "learning_rate": 0.0006, + "loss": 3.7161359786987305, + "step": 2650 + }, + { + "epoch": 36.824814329401484, + "grad_norm": 0.2340802699327469, + "learning_rate": 0.0006, + "loss": 3.708864688873291, + "step": 2651 + }, + { + "epoch": 36.83879423328965, + "grad_norm": 0.23312288522720337, + "learning_rate": 0.0006, + "loss": 3.7351365089416504, + "step": 2652 + }, + { + "epoch": 36.8527741371778, + "grad_norm": 0.22953253984451294, + "learning_rate": 0.0006, + "loss": 3.735302209854126, + "step": 2653 + }, + { + "epoch": 36.86675404106597, + "grad_norm": 0.21928828954696655, + "learning_rate": 0.0006, + "loss": 3.72445011138916, + "step": 2654 + }, + { + "epoch": 36.88073394495413, + "grad_norm": 0.22865602374076843, + "learning_rate": 0.0006, + "loss": 3.714867115020752, + "step": 2655 + }, + { + "epoch": 36.89471384884229, + "grad_norm": 0.23255643248558044, + "learning_rate": 0.0006, + "loss": 3.695101261138916, + "step": 2656 + }, + { + "epoch": 36.90869375273045, + "grad_norm": 0.2491452544927597, + "learning_rate": 0.0006, + "loss": 3.70692777633667, + "step": 2657 + }, + { + "epoch": 36.92267365661861, + "grad_norm": 0.27367597818374634, + "learning_rate": 0.0006, + "loss": 3.6906654834747314, + "step": 2658 + }, + { + "epoch": 36.93665356050677, + "grad_norm": 0.26728564500808716, + "learning_rate": 0.0006, + "loss": 3.7092056274414062, + "step": 2659 + }, + { + "epoch": 36.95063346439493, + "grad_norm": 0.207070454955101, + "learning_rate": 0.0006, + "loss": 3.7152137756347656, + "step": 2660 + }, + { + "epoch": 36.964613368283096, + "grad_norm": 0.21671561896800995, + "learning_rate": 0.0006, + "loss": 3.7130112648010254, + "step": 2661 + }, + { + "epoch": 36.97859327217125, + "grad_norm": 0.2140914648771286, + "learning_rate": 0.0006, + "loss": 3.7286999225616455, + "step": 2662 + }, + { + "epoch": 36.992573176059416, + "grad_norm": 0.21324342489242554, + "learning_rate": 0.0006, + "loss": 3.6828715801239014, + "step": 2663 + }, + { + "epoch": 37.0, + "grad_norm": 0.22366146743297577, + "learning_rate": 0.0006, + "loss": 3.69199800491333, + "step": 2664 + }, + { + "epoch": 37.0, + "eval_loss": 4.011842727661133, + "eval_runtime": 44.7825, + "eval_samples_per_second": 54.53, + "eval_steps_per_second": 3.417, + "step": 2664 + }, + { + "epoch": 37.01397990388816, + "grad_norm": 0.22093228995800018, + "learning_rate": 0.0006, + "loss": 3.6940979957580566, + "step": 2665 + }, + { + "epoch": 37.02795980777632, + "grad_norm": 0.20821493864059448, + "learning_rate": 0.0006, + "loss": 3.670813798904419, + "step": 2666 + }, + { + "epoch": 37.04193971166448, + "grad_norm": 0.22330114245414734, + "learning_rate": 0.0006, + "loss": 3.6392664909362793, + "step": 2667 + }, + { + "epoch": 37.05591961555265, + "grad_norm": 0.2224634289741516, + "learning_rate": 0.0006, + "loss": 3.660856246948242, + "step": 2668 + }, + { + "epoch": 37.0698995194408, + "grad_norm": 0.2255052626132965, + "learning_rate": 0.0006, + "loss": 3.6393589973449707, + "step": 2669 + }, + { + "epoch": 37.083879423328966, + "grad_norm": 0.23462942242622375, + "learning_rate": 0.0006, + "loss": 3.684429168701172, + "step": 2670 + }, + { + "epoch": 37.09785932721712, + "grad_norm": 0.23743386566638947, + "learning_rate": 0.0006, + "loss": 3.67622709274292, + "step": 2671 + }, + { + "epoch": 37.111839231105286, + "grad_norm": 0.2276267409324646, + "learning_rate": 0.0006, + "loss": 3.6487984657287598, + "step": 2672 + }, + { + "epoch": 37.12581913499345, + "grad_norm": 0.24448423087596893, + "learning_rate": 0.0006, + "loss": 3.67645525932312, + "step": 2673 + }, + { + "epoch": 37.139799038881605, + "grad_norm": 0.2428973764181137, + "learning_rate": 0.0006, + "loss": 3.681497097015381, + "step": 2674 + }, + { + "epoch": 37.15377894276977, + "grad_norm": 0.21918512880802155, + "learning_rate": 0.0006, + "loss": 3.67134428024292, + "step": 2675 + }, + { + "epoch": 37.16775884665793, + "grad_norm": 0.2103680670261383, + "learning_rate": 0.0006, + "loss": 3.6508708000183105, + "step": 2676 + }, + { + "epoch": 37.18173875054609, + "grad_norm": 0.20674929022789001, + "learning_rate": 0.0006, + "loss": 3.6904029846191406, + "step": 2677 + }, + { + "epoch": 37.19571865443425, + "grad_norm": 0.21867282688617706, + "learning_rate": 0.0006, + "loss": 3.697535514831543, + "step": 2678 + }, + { + "epoch": 37.20969855832241, + "grad_norm": 0.22919587790966034, + "learning_rate": 0.0006, + "loss": 3.675565004348755, + "step": 2679 + }, + { + "epoch": 37.22367846221057, + "grad_norm": 0.22255578637123108, + "learning_rate": 0.0006, + "loss": 3.6830129623413086, + "step": 2680 + }, + { + "epoch": 37.237658366098735, + "grad_norm": 0.22460198402404785, + "learning_rate": 0.0006, + "loss": 3.6872951984405518, + "step": 2681 + }, + { + "epoch": 37.25163826998689, + "grad_norm": 0.23677165806293488, + "learning_rate": 0.0006, + "loss": 3.6779165267944336, + "step": 2682 + }, + { + "epoch": 37.265618173875055, + "grad_norm": 0.23231394588947296, + "learning_rate": 0.0006, + "loss": 3.6831178665161133, + "step": 2683 + }, + { + "epoch": 37.27959807776322, + "grad_norm": 0.22131343185901642, + "learning_rate": 0.0006, + "loss": 3.664295196533203, + "step": 2684 + }, + { + "epoch": 37.293577981651374, + "grad_norm": 0.23424340784549713, + "learning_rate": 0.0006, + "loss": 3.696678638458252, + "step": 2685 + }, + { + "epoch": 37.30755788553954, + "grad_norm": 0.22695423662662506, + "learning_rate": 0.0006, + "loss": 3.6697473526000977, + "step": 2686 + }, + { + "epoch": 37.3215377894277, + "grad_norm": 0.2165997475385666, + "learning_rate": 0.0006, + "loss": 3.6801891326904297, + "step": 2687 + }, + { + "epoch": 37.33551769331586, + "grad_norm": 0.2241077572107315, + "learning_rate": 0.0006, + "loss": 3.6957011222839355, + "step": 2688 + }, + { + "epoch": 37.34949759720402, + "grad_norm": 0.21191732585430145, + "learning_rate": 0.0006, + "loss": 3.6812620162963867, + "step": 2689 + }, + { + "epoch": 37.36347750109218, + "grad_norm": 0.1827201396226883, + "learning_rate": 0.0006, + "loss": 3.6797738075256348, + "step": 2690 + }, + { + "epoch": 37.37745740498034, + "grad_norm": 0.20793627202510834, + "learning_rate": 0.0006, + "loss": 3.672819137573242, + "step": 2691 + }, + { + "epoch": 37.391437308868504, + "grad_norm": 0.19737116992473602, + "learning_rate": 0.0006, + "loss": 3.667839527130127, + "step": 2692 + }, + { + "epoch": 37.40541721275666, + "grad_norm": 0.18670497834682465, + "learning_rate": 0.0006, + "loss": 3.651561737060547, + "step": 2693 + }, + { + "epoch": 37.419397116644824, + "grad_norm": 0.21385592222213745, + "learning_rate": 0.0006, + "loss": 3.717456340789795, + "step": 2694 + }, + { + "epoch": 37.43337702053299, + "grad_norm": 0.20590044558048248, + "learning_rate": 0.0006, + "loss": 3.6950271129608154, + "step": 2695 + }, + { + "epoch": 37.44735692442114, + "grad_norm": 0.1992103010416031, + "learning_rate": 0.0006, + "loss": 3.687854290008545, + "step": 2696 + }, + { + "epoch": 37.46133682830931, + "grad_norm": 0.2004154473543167, + "learning_rate": 0.0006, + "loss": 3.695838451385498, + "step": 2697 + }, + { + "epoch": 37.47531673219746, + "grad_norm": 0.2019810527563095, + "learning_rate": 0.0006, + "loss": 3.690431594848633, + "step": 2698 + }, + { + "epoch": 37.489296636085626, + "grad_norm": 0.2192547768354416, + "learning_rate": 0.0006, + "loss": 3.6743836402893066, + "step": 2699 + }, + { + "epoch": 37.50327653997379, + "grad_norm": 0.2568076550960541, + "learning_rate": 0.0006, + "loss": 3.6857337951660156, + "step": 2700 + }, + { + "epoch": 37.517256443861946, + "grad_norm": 0.20050311088562012, + "learning_rate": 0.0006, + "loss": 3.6811180114746094, + "step": 2701 + }, + { + "epoch": 37.53123634775011, + "grad_norm": 0.21008558571338654, + "learning_rate": 0.0006, + "loss": 3.700563907623291, + "step": 2702 + }, + { + "epoch": 37.54521625163827, + "grad_norm": 0.2393747717142105, + "learning_rate": 0.0006, + "loss": 3.679438591003418, + "step": 2703 + }, + { + "epoch": 37.55919615552643, + "grad_norm": 0.2531895041465759, + "learning_rate": 0.0006, + "loss": 3.682903289794922, + "step": 2704 + }, + { + "epoch": 37.57317605941459, + "grad_norm": 0.2372656762599945, + "learning_rate": 0.0006, + "loss": 3.7128796577453613, + "step": 2705 + }, + { + "epoch": 37.58715596330275, + "grad_norm": 0.20020034909248352, + "learning_rate": 0.0006, + "loss": 3.701916217803955, + "step": 2706 + }, + { + "epoch": 37.60113586719091, + "grad_norm": 0.20250852406024933, + "learning_rate": 0.0006, + "loss": 3.6761491298675537, + "step": 2707 + }, + { + "epoch": 37.615115771079076, + "grad_norm": 0.19259589910507202, + "learning_rate": 0.0006, + "loss": 3.715104579925537, + "step": 2708 + }, + { + "epoch": 37.62909567496723, + "grad_norm": 0.19649392366409302, + "learning_rate": 0.0006, + "loss": 3.687556266784668, + "step": 2709 + }, + { + "epoch": 37.643075578855395, + "grad_norm": 0.1909446269273758, + "learning_rate": 0.0006, + "loss": 3.684046745300293, + "step": 2710 + }, + { + "epoch": 37.65705548274356, + "grad_norm": 0.19589872658252716, + "learning_rate": 0.0006, + "loss": 3.707886219024658, + "step": 2711 + }, + { + "epoch": 37.671035386631715, + "grad_norm": 0.19472210109233856, + "learning_rate": 0.0006, + "loss": 3.6837692260742188, + "step": 2712 + }, + { + "epoch": 37.68501529051988, + "grad_norm": 0.22622711956501007, + "learning_rate": 0.0006, + "loss": 3.703619956970215, + "step": 2713 + }, + { + "epoch": 37.69899519440804, + "grad_norm": 0.24314729869365692, + "learning_rate": 0.0006, + "loss": 3.7345223426818848, + "step": 2714 + }, + { + "epoch": 37.7129750982962, + "grad_norm": 0.23934306204319, + "learning_rate": 0.0006, + "loss": 3.687809705734253, + "step": 2715 + }, + { + "epoch": 37.72695500218436, + "grad_norm": 0.24838587641716003, + "learning_rate": 0.0006, + "loss": 3.708613872528076, + "step": 2716 + }, + { + "epoch": 37.74093490607252, + "grad_norm": 0.23191452026367188, + "learning_rate": 0.0006, + "loss": 3.7090163230895996, + "step": 2717 + }, + { + "epoch": 37.75491480996068, + "grad_norm": 0.24574638903141022, + "learning_rate": 0.0006, + "loss": 3.68489146232605, + "step": 2718 + }, + { + "epoch": 37.768894713848844, + "grad_norm": 0.2706749439239502, + "learning_rate": 0.0006, + "loss": 3.687061309814453, + "step": 2719 + }, + { + "epoch": 37.782874617737, + "grad_norm": 0.25955191254615784, + "learning_rate": 0.0006, + "loss": 3.694173812866211, + "step": 2720 + }, + { + "epoch": 37.796854521625164, + "grad_norm": 0.22040610015392303, + "learning_rate": 0.0006, + "loss": 3.701871871948242, + "step": 2721 + }, + { + "epoch": 37.81083442551333, + "grad_norm": 0.22328512370586395, + "learning_rate": 0.0006, + "loss": 3.7082555294036865, + "step": 2722 + }, + { + "epoch": 37.824814329401484, + "grad_norm": 0.2290581911802292, + "learning_rate": 0.0006, + "loss": 3.7023987770080566, + "step": 2723 + }, + { + "epoch": 37.83879423328965, + "grad_norm": 0.23129472136497498, + "learning_rate": 0.0006, + "loss": 3.7101752758026123, + "step": 2724 + }, + { + "epoch": 37.8527741371778, + "grad_norm": 0.21203753352165222, + "learning_rate": 0.0006, + "loss": 3.712129592895508, + "step": 2725 + }, + { + "epoch": 37.86675404106597, + "grad_norm": 0.21938200294971466, + "learning_rate": 0.0006, + "loss": 3.7086095809936523, + "step": 2726 + }, + { + "epoch": 37.88073394495413, + "grad_norm": 0.2203572541475296, + "learning_rate": 0.0006, + "loss": 3.6789026260375977, + "step": 2727 + }, + { + "epoch": 37.89471384884229, + "grad_norm": 0.18146046996116638, + "learning_rate": 0.0006, + "loss": 3.666893243789673, + "step": 2728 + }, + { + "epoch": 37.90869375273045, + "grad_norm": 0.1879623532295227, + "learning_rate": 0.0006, + "loss": 3.69246768951416, + "step": 2729 + }, + { + "epoch": 37.92267365661861, + "grad_norm": 0.18311670422554016, + "learning_rate": 0.0006, + "loss": 3.682036876678467, + "step": 2730 + }, + { + "epoch": 37.93665356050677, + "grad_norm": 0.1898486614227295, + "learning_rate": 0.0006, + "loss": 3.6683125495910645, + "step": 2731 + }, + { + "epoch": 37.95063346439493, + "grad_norm": 0.1858556717634201, + "learning_rate": 0.0006, + "loss": 3.6879611015319824, + "step": 2732 + }, + { + "epoch": 37.964613368283096, + "grad_norm": 0.19914504885673523, + "learning_rate": 0.0006, + "loss": 3.690250873565674, + "step": 2733 + }, + { + "epoch": 37.97859327217125, + "grad_norm": 0.20406974852085114, + "learning_rate": 0.0006, + "loss": 3.6812171936035156, + "step": 2734 + }, + { + "epoch": 37.992573176059416, + "grad_norm": 0.2003912478685379, + "learning_rate": 0.0006, + "loss": 3.6852147579193115, + "step": 2735 + }, + { + "epoch": 38.0, + "grad_norm": 0.22644472122192383, + "learning_rate": 0.0006, + "loss": 3.645207405090332, + "step": 2736 + }, + { + "epoch": 38.0, + "eval_loss": 3.995000123977661, + "eval_runtime": 45.1644, + "eval_samples_per_second": 54.069, + "eval_steps_per_second": 3.388, + "step": 2736 + }, + { + "epoch": 38.01397990388816, + "grad_norm": 0.1989814043045044, + "learning_rate": 0.0006, + "loss": 3.6511387825012207, + "step": 2737 + }, + { + "epoch": 38.02795980777632, + "grad_norm": 0.203324094414711, + "learning_rate": 0.0006, + "loss": 3.6513094902038574, + "step": 2738 + }, + { + "epoch": 38.04193971166448, + "grad_norm": 0.21504290401935577, + "learning_rate": 0.0006, + "loss": 3.647711992263794, + "step": 2739 + }, + { + "epoch": 38.05591961555265, + "grad_norm": 0.23464815318584442, + "learning_rate": 0.0006, + "loss": 3.6418747901916504, + "step": 2740 + }, + { + "epoch": 38.0698995194408, + "grad_norm": 0.242184117436409, + "learning_rate": 0.0006, + "loss": 3.6741859912872314, + "step": 2741 + }, + { + "epoch": 38.083879423328966, + "grad_norm": 0.23488445580005646, + "learning_rate": 0.0006, + "loss": 3.6710941791534424, + "step": 2742 + }, + { + "epoch": 38.09785932721712, + "grad_norm": 0.20800170302391052, + "learning_rate": 0.0006, + "loss": 3.660001754760742, + "step": 2743 + }, + { + "epoch": 38.111839231105286, + "grad_norm": 0.19505052268505096, + "learning_rate": 0.0006, + "loss": 3.684129238128662, + "step": 2744 + }, + { + "epoch": 38.12581913499345, + "grad_norm": 0.2185833901166916, + "learning_rate": 0.0006, + "loss": 3.656033515930176, + "step": 2745 + }, + { + "epoch": 38.139799038881605, + "grad_norm": 0.21850253641605377, + "learning_rate": 0.0006, + "loss": 3.6818184852600098, + "step": 2746 + }, + { + "epoch": 38.15377894276977, + "grad_norm": 0.2109488695859909, + "learning_rate": 0.0006, + "loss": 3.6485435962677, + "step": 2747 + }, + { + "epoch": 38.16775884665793, + "grad_norm": 0.21059907972812653, + "learning_rate": 0.0006, + "loss": 3.6734395027160645, + "step": 2748 + }, + { + "epoch": 38.18173875054609, + "grad_norm": 0.20741555094718933, + "learning_rate": 0.0006, + "loss": 3.6672463417053223, + "step": 2749 + }, + { + "epoch": 38.19571865443425, + "grad_norm": 0.2130175530910492, + "learning_rate": 0.0006, + "loss": 3.692840576171875, + "step": 2750 + }, + { + "epoch": 38.20969855832241, + "grad_norm": 0.1899138242006302, + "learning_rate": 0.0006, + "loss": 3.675316333770752, + "step": 2751 + }, + { + "epoch": 38.22367846221057, + "grad_norm": 0.218918576836586, + "learning_rate": 0.0006, + "loss": 3.634105920791626, + "step": 2752 + }, + { + "epoch": 38.237658366098735, + "grad_norm": 0.23649370670318604, + "learning_rate": 0.0006, + "loss": 3.6526122093200684, + "step": 2753 + }, + { + "epoch": 38.25163826998689, + "grad_norm": 0.22011931240558624, + "learning_rate": 0.0006, + "loss": 3.6859593391418457, + "step": 2754 + }, + { + "epoch": 38.265618173875055, + "grad_norm": 0.2143620252609253, + "learning_rate": 0.0006, + "loss": 3.656838893890381, + "step": 2755 + }, + { + "epoch": 38.27959807776322, + "grad_norm": 0.24068567156791687, + "learning_rate": 0.0006, + "loss": 3.67006254196167, + "step": 2756 + }, + { + "epoch": 38.293577981651374, + "grad_norm": 0.25773152709007263, + "learning_rate": 0.0006, + "loss": 3.6648950576782227, + "step": 2757 + }, + { + "epoch": 38.30755788553954, + "grad_norm": 0.24213455617427826, + "learning_rate": 0.0006, + "loss": 3.6918864250183105, + "step": 2758 + }, + { + "epoch": 38.3215377894277, + "grad_norm": 0.22463668882846832, + "learning_rate": 0.0006, + "loss": 3.6662540435791016, + "step": 2759 + }, + { + "epoch": 38.33551769331586, + "grad_norm": 0.22541455924510956, + "learning_rate": 0.0006, + "loss": 3.6563215255737305, + "step": 2760 + }, + { + "epoch": 38.34949759720402, + "grad_norm": 0.21833783388137817, + "learning_rate": 0.0006, + "loss": 3.650446891784668, + "step": 2761 + }, + { + "epoch": 38.36347750109218, + "grad_norm": 0.22799745202064514, + "learning_rate": 0.0006, + "loss": 3.7007250785827637, + "step": 2762 + }, + { + "epoch": 38.37745740498034, + "grad_norm": 0.23739562928676605, + "learning_rate": 0.0006, + "loss": 3.667130708694458, + "step": 2763 + }, + { + "epoch": 38.391437308868504, + "grad_norm": 0.23744846880435944, + "learning_rate": 0.0006, + "loss": 3.678760528564453, + "step": 2764 + }, + { + "epoch": 38.40541721275666, + "grad_norm": 0.2677105963230133, + "learning_rate": 0.0006, + "loss": 3.6829030513763428, + "step": 2765 + }, + { + "epoch": 38.419397116644824, + "grad_norm": 0.24490566551685333, + "learning_rate": 0.0006, + "loss": 3.707911491394043, + "step": 2766 + }, + { + "epoch": 38.43337702053299, + "grad_norm": 0.23477254807949066, + "learning_rate": 0.0006, + "loss": 3.680157423019409, + "step": 2767 + }, + { + "epoch": 38.44735692442114, + "grad_norm": 0.26611173152923584, + "learning_rate": 0.0006, + "loss": 3.660834550857544, + "step": 2768 + }, + { + "epoch": 38.46133682830931, + "grad_norm": 0.24505069851875305, + "learning_rate": 0.0006, + "loss": 3.696178436279297, + "step": 2769 + }, + { + "epoch": 38.47531673219746, + "grad_norm": 0.22933335602283478, + "learning_rate": 0.0006, + "loss": 3.6506235599517822, + "step": 2770 + }, + { + "epoch": 38.489296636085626, + "grad_norm": 0.23662401735782623, + "learning_rate": 0.0006, + "loss": 3.680819511413574, + "step": 2771 + }, + { + "epoch": 38.50327653997379, + "grad_norm": 0.27774113416671753, + "learning_rate": 0.0006, + "loss": 3.699146270751953, + "step": 2772 + }, + { + "epoch": 38.517256443861946, + "grad_norm": 0.2881671190261841, + "learning_rate": 0.0006, + "loss": 3.6509652137756348, + "step": 2773 + }, + { + "epoch": 38.53123634775011, + "grad_norm": 0.26570361852645874, + "learning_rate": 0.0006, + "loss": 3.6808385848999023, + "step": 2774 + }, + { + "epoch": 38.54521625163827, + "grad_norm": 0.23043136298656464, + "learning_rate": 0.0006, + "loss": 3.7082371711730957, + "step": 2775 + }, + { + "epoch": 38.55919615552643, + "grad_norm": 0.23730400204658508, + "learning_rate": 0.0006, + "loss": 3.653615951538086, + "step": 2776 + }, + { + "epoch": 38.57317605941459, + "grad_norm": 0.2332635223865509, + "learning_rate": 0.0006, + "loss": 3.6869683265686035, + "step": 2777 + }, + { + "epoch": 38.58715596330275, + "grad_norm": 0.22913676500320435, + "learning_rate": 0.0006, + "loss": 3.6998367309570312, + "step": 2778 + }, + { + "epoch": 38.60113586719091, + "grad_norm": 0.226078599691391, + "learning_rate": 0.0006, + "loss": 3.7051444053649902, + "step": 2779 + }, + { + "epoch": 38.615115771079076, + "grad_norm": 0.2336396723985672, + "learning_rate": 0.0006, + "loss": 3.6964943408966064, + "step": 2780 + }, + { + "epoch": 38.62909567496723, + "grad_norm": 0.23270335793495178, + "learning_rate": 0.0006, + "loss": 3.6741909980773926, + "step": 2781 + }, + { + "epoch": 38.643075578855395, + "grad_norm": 0.19324959814548492, + "learning_rate": 0.0006, + "loss": 3.64506196975708, + "step": 2782 + }, + { + "epoch": 38.65705548274356, + "grad_norm": 0.18551453948020935, + "learning_rate": 0.0006, + "loss": 3.6834206581115723, + "step": 2783 + }, + { + "epoch": 38.671035386631715, + "grad_norm": 0.17392469942569733, + "learning_rate": 0.0006, + "loss": 3.67282772064209, + "step": 2784 + }, + { + "epoch": 38.68501529051988, + "grad_norm": 0.19093742966651917, + "learning_rate": 0.0006, + "loss": 3.6648201942443848, + "step": 2785 + }, + { + "epoch": 38.69899519440804, + "grad_norm": 0.2124558985233307, + "learning_rate": 0.0006, + "loss": 3.712191581726074, + "step": 2786 + }, + { + "epoch": 38.7129750982962, + "grad_norm": 0.2220139354467392, + "learning_rate": 0.0006, + "loss": 3.675504207611084, + "step": 2787 + }, + { + "epoch": 38.72695500218436, + "grad_norm": 0.17677755653858185, + "learning_rate": 0.0006, + "loss": 3.6693475246429443, + "step": 2788 + }, + { + "epoch": 38.74093490607252, + "grad_norm": 0.2002430409193039, + "learning_rate": 0.0006, + "loss": 3.6906018257141113, + "step": 2789 + }, + { + "epoch": 38.75491480996068, + "grad_norm": 0.18844179809093475, + "learning_rate": 0.0006, + "loss": 3.660121440887451, + "step": 2790 + }, + { + "epoch": 38.768894713848844, + "grad_norm": 0.19319336116313934, + "learning_rate": 0.0006, + "loss": 3.6592631340026855, + "step": 2791 + }, + { + "epoch": 38.782874617737, + "grad_norm": 0.18624325096607208, + "learning_rate": 0.0006, + "loss": 3.6935300827026367, + "step": 2792 + }, + { + "epoch": 38.796854521625164, + "grad_norm": 0.2049761712551117, + "learning_rate": 0.0006, + "loss": 3.6702702045440674, + "step": 2793 + }, + { + "epoch": 38.81083442551333, + "grad_norm": 0.2030584216117859, + "learning_rate": 0.0006, + "loss": 3.714639663696289, + "step": 2794 + }, + { + "epoch": 38.824814329401484, + "grad_norm": 0.18989548087120056, + "learning_rate": 0.0006, + "loss": 3.678253412246704, + "step": 2795 + }, + { + "epoch": 38.83879423328965, + "grad_norm": 0.19944126904010773, + "learning_rate": 0.0006, + "loss": 3.648367166519165, + "step": 2796 + }, + { + "epoch": 38.8527741371778, + "grad_norm": 0.2062688171863556, + "learning_rate": 0.0006, + "loss": 3.701514720916748, + "step": 2797 + }, + { + "epoch": 38.86675404106597, + "grad_norm": 0.21475110948085785, + "learning_rate": 0.0006, + "loss": 3.6725993156433105, + "step": 2798 + }, + { + "epoch": 38.88073394495413, + "grad_norm": 0.2240881323814392, + "learning_rate": 0.0006, + "loss": 3.6944539546966553, + "step": 2799 + }, + { + "epoch": 38.89471384884229, + "grad_norm": 0.23074312508106232, + "learning_rate": 0.0006, + "loss": 3.747671365737915, + "step": 2800 + }, + { + "epoch": 38.90869375273045, + "grad_norm": 0.2447938323020935, + "learning_rate": 0.0006, + "loss": 3.6856026649475098, + "step": 2801 + }, + { + "epoch": 38.92267365661861, + "grad_norm": 0.2136487364768982, + "learning_rate": 0.0006, + "loss": 3.710397720336914, + "step": 2802 + }, + { + "epoch": 38.93665356050677, + "grad_norm": 0.21676769852638245, + "learning_rate": 0.0006, + "loss": 3.6911189556121826, + "step": 2803 + }, + { + "epoch": 38.95063346439493, + "grad_norm": 0.2226478010416031, + "learning_rate": 0.0006, + "loss": 3.6902880668640137, + "step": 2804 + }, + { + "epoch": 38.964613368283096, + "grad_norm": 0.2071496546268463, + "learning_rate": 0.0006, + "loss": 3.6831371784210205, + "step": 2805 + }, + { + "epoch": 38.97859327217125, + "grad_norm": 0.19568349421024323, + "learning_rate": 0.0006, + "loss": 3.6897640228271484, + "step": 2806 + }, + { + "epoch": 38.992573176059416, + "grad_norm": 0.19067516922950745, + "learning_rate": 0.0006, + "loss": 3.7096242904663086, + "step": 2807 + }, + { + "epoch": 39.0, + "grad_norm": 0.22872281074523926, + "learning_rate": 0.0006, + "loss": 3.689342975616455, + "step": 2808 + }, + { + "epoch": 39.0, + "eval_loss": 4.001968860626221, + "eval_runtime": 44.8452, + "eval_samples_per_second": 54.454, + "eval_steps_per_second": 3.412, + "step": 2808 + }, + { + "epoch": 39.01397990388816, + "grad_norm": 0.21685896813869476, + "learning_rate": 0.0006, + "loss": 3.638145923614502, + "step": 2809 + }, + { + "epoch": 39.02795980777632, + "grad_norm": 0.20085014402866364, + "learning_rate": 0.0006, + "loss": 3.626654624938965, + "step": 2810 + }, + { + "epoch": 39.04193971166448, + "grad_norm": 0.20615799725055695, + "learning_rate": 0.0006, + "loss": 3.6280088424682617, + "step": 2811 + }, + { + "epoch": 39.05591961555265, + "grad_norm": 0.23471905291080475, + "learning_rate": 0.0006, + "loss": 3.6444239616394043, + "step": 2812 + }, + { + "epoch": 39.0698995194408, + "grad_norm": 0.22207780182361603, + "learning_rate": 0.0006, + "loss": 3.6276912689208984, + "step": 2813 + }, + { + "epoch": 39.083879423328966, + "grad_norm": 0.23354043066501617, + "learning_rate": 0.0006, + "loss": 3.7007269859313965, + "step": 2814 + }, + { + "epoch": 39.09785932721712, + "grad_norm": 0.22520557045936584, + "learning_rate": 0.0006, + "loss": 3.6487162113189697, + "step": 2815 + }, + { + "epoch": 39.111839231105286, + "grad_norm": 0.20489682257175446, + "learning_rate": 0.0006, + "loss": 3.6523492336273193, + "step": 2816 + }, + { + "epoch": 39.12581913499345, + "grad_norm": 0.20979270339012146, + "learning_rate": 0.0006, + "loss": 3.6574230194091797, + "step": 2817 + }, + { + "epoch": 39.139799038881605, + "grad_norm": 0.2256486713886261, + "learning_rate": 0.0006, + "loss": 3.6499013900756836, + "step": 2818 + }, + { + "epoch": 39.15377894276977, + "grad_norm": 0.1960437297821045, + "learning_rate": 0.0006, + "loss": 3.6780271530151367, + "step": 2819 + }, + { + "epoch": 39.16775884665793, + "grad_norm": 0.19279663264751434, + "learning_rate": 0.0006, + "loss": 3.623819589614868, + "step": 2820 + }, + { + "epoch": 39.18173875054609, + "grad_norm": 0.19151495397090912, + "learning_rate": 0.0006, + "loss": 3.612868070602417, + "step": 2821 + }, + { + "epoch": 39.19571865443425, + "grad_norm": 0.19399534165859222, + "learning_rate": 0.0006, + "loss": 3.6518092155456543, + "step": 2822 + }, + { + "epoch": 39.20969855832241, + "grad_norm": 0.21723251044750214, + "learning_rate": 0.0006, + "loss": 3.681509494781494, + "step": 2823 + }, + { + "epoch": 39.22367846221057, + "grad_norm": 0.2487006038427353, + "learning_rate": 0.0006, + "loss": 3.6569719314575195, + "step": 2824 + }, + { + "epoch": 39.237658366098735, + "grad_norm": 0.2640652656555176, + "learning_rate": 0.0006, + "loss": 3.680734634399414, + "step": 2825 + }, + { + "epoch": 39.25163826998689, + "grad_norm": 0.21862825751304626, + "learning_rate": 0.0006, + "loss": 3.6741840839385986, + "step": 2826 + }, + { + "epoch": 39.265618173875055, + "grad_norm": 0.19515705108642578, + "learning_rate": 0.0006, + "loss": 3.657750129699707, + "step": 2827 + }, + { + "epoch": 39.27959807776322, + "grad_norm": 0.1971602737903595, + "learning_rate": 0.0006, + "loss": 3.6524124145507812, + "step": 2828 + }, + { + "epoch": 39.293577981651374, + "grad_norm": 0.20822174847126007, + "learning_rate": 0.0006, + "loss": 3.69527006149292, + "step": 2829 + }, + { + "epoch": 39.30755788553954, + "grad_norm": 0.2566370368003845, + "learning_rate": 0.0006, + "loss": 3.6770880222320557, + "step": 2830 + }, + { + "epoch": 39.3215377894277, + "grad_norm": 0.24984225630760193, + "learning_rate": 0.0006, + "loss": 3.6733901500701904, + "step": 2831 + }, + { + "epoch": 39.33551769331586, + "grad_norm": 0.233322873711586, + "learning_rate": 0.0006, + "loss": 3.645519256591797, + "step": 2832 + }, + { + "epoch": 39.34949759720402, + "grad_norm": 0.21584749221801758, + "learning_rate": 0.0006, + "loss": 3.6211934089660645, + "step": 2833 + }, + { + "epoch": 39.36347750109218, + "grad_norm": 0.2188950479030609, + "learning_rate": 0.0006, + "loss": 3.6434195041656494, + "step": 2834 + }, + { + "epoch": 39.37745740498034, + "grad_norm": 0.21998439729213715, + "learning_rate": 0.0006, + "loss": 3.6720595359802246, + "step": 2835 + }, + { + "epoch": 39.391437308868504, + "grad_norm": 0.2459399700164795, + "learning_rate": 0.0006, + "loss": 3.667083740234375, + "step": 2836 + }, + { + "epoch": 39.40541721275666, + "grad_norm": 0.23579223453998566, + "learning_rate": 0.0006, + "loss": 3.665452480316162, + "step": 2837 + }, + { + "epoch": 39.419397116644824, + "grad_norm": 0.19401362538337708, + "learning_rate": 0.0006, + "loss": 3.684218406677246, + "step": 2838 + }, + { + "epoch": 39.43337702053299, + "grad_norm": 0.1894487738609314, + "learning_rate": 0.0006, + "loss": 3.670626163482666, + "step": 2839 + }, + { + "epoch": 39.44735692442114, + "grad_norm": 0.1936904937028885, + "learning_rate": 0.0006, + "loss": 3.6367318630218506, + "step": 2840 + }, + { + "epoch": 39.46133682830931, + "grad_norm": 0.1867629438638687, + "learning_rate": 0.0006, + "loss": 3.670098304748535, + "step": 2841 + }, + { + "epoch": 39.47531673219746, + "grad_norm": 0.18849903345108032, + "learning_rate": 0.0006, + "loss": 3.6877760887145996, + "step": 2842 + }, + { + "epoch": 39.489296636085626, + "grad_norm": 0.18247179687023163, + "learning_rate": 0.0006, + "loss": 3.7132980823516846, + "step": 2843 + }, + { + "epoch": 39.50327653997379, + "grad_norm": 0.19206349551677704, + "learning_rate": 0.0006, + "loss": 3.630319595336914, + "step": 2844 + }, + { + "epoch": 39.517256443861946, + "grad_norm": 0.21730613708496094, + "learning_rate": 0.0006, + "loss": 3.6818761825561523, + "step": 2845 + }, + { + "epoch": 39.53123634775011, + "grad_norm": 0.22482407093048096, + "learning_rate": 0.0006, + "loss": 3.6385269165039062, + "step": 2846 + }, + { + "epoch": 39.54521625163827, + "grad_norm": 0.24560105800628662, + "learning_rate": 0.0006, + "loss": 3.660067558288574, + "step": 2847 + }, + { + "epoch": 39.55919615552643, + "grad_norm": 0.23720617592334747, + "learning_rate": 0.0006, + "loss": 3.6811556816101074, + "step": 2848 + }, + { + "epoch": 39.57317605941459, + "grad_norm": 0.18990741670131683, + "learning_rate": 0.0006, + "loss": 3.6733779907226562, + "step": 2849 + }, + { + "epoch": 39.58715596330275, + "grad_norm": 0.2135438323020935, + "learning_rate": 0.0006, + "loss": 3.662020683288574, + "step": 2850 + }, + { + "epoch": 39.60113586719091, + "grad_norm": 0.24248908460140228, + "learning_rate": 0.0006, + "loss": 3.6794259548187256, + "step": 2851 + }, + { + "epoch": 39.615115771079076, + "grad_norm": 0.23115725815296173, + "learning_rate": 0.0006, + "loss": 3.6732406616210938, + "step": 2852 + }, + { + "epoch": 39.62909567496723, + "grad_norm": 0.23760166764259338, + "learning_rate": 0.0006, + "loss": 3.7062699794769287, + "step": 2853 + }, + { + "epoch": 39.643075578855395, + "grad_norm": 0.24670571088790894, + "learning_rate": 0.0006, + "loss": 3.692385673522949, + "step": 2854 + }, + { + "epoch": 39.65705548274356, + "grad_norm": 0.20983918011188507, + "learning_rate": 0.0006, + "loss": 3.691361427307129, + "step": 2855 + }, + { + "epoch": 39.671035386631715, + "grad_norm": 0.1915138065814972, + "learning_rate": 0.0006, + "loss": 3.6985888481140137, + "step": 2856 + }, + { + "epoch": 39.68501529051988, + "grad_norm": 0.23440803587436676, + "learning_rate": 0.0006, + "loss": 3.6484973430633545, + "step": 2857 + }, + { + "epoch": 39.69899519440804, + "grad_norm": 0.2483232468366623, + "learning_rate": 0.0006, + "loss": 3.6861510276794434, + "step": 2858 + }, + { + "epoch": 39.7129750982962, + "grad_norm": 0.21373426914215088, + "learning_rate": 0.0006, + "loss": 3.6528866291046143, + "step": 2859 + }, + { + "epoch": 39.72695500218436, + "grad_norm": 0.19849136471748352, + "learning_rate": 0.0006, + "loss": 3.6435961723327637, + "step": 2860 + }, + { + "epoch": 39.74093490607252, + "grad_norm": 0.21748292446136475, + "learning_rate": 0.0006, + "loss": 3.678481101989746, + "step": 2861 + }, + { + "epoch": 39.75491480996068, + "grad_norm": 0.22488188743591309, + "learning_rate": 0.0006, + "loss": 3.711717128753662, + "step": 2862 + }, + { + "epoch": 39.768894713848844, + "grad_norm": 0.22251835465431213, + "learning_rate": 0.0006, + "loss": 3.690516471862793, + "step": 2863 + }, + { + "epoch": 39.782874617737, + "grad_norm": 0.22101449966430664, + "learning_rate": 0.0006, + "loss": 3.6679611206054688, + "step": 2864 + }, + { + "epoch": 39.796854521625164, + "grad_norm": 0.20345936715602875, + "learning_rate": 0.0006, + "loss": 3.6935629844665527, + "step": 2865 + }, + { + "epoch": 39.81083442551333, + "grad_norm": 0.23772259056568146, + "learning_rate": 0.0006, + "loss": 3.697561264038086, + "step": 2866 + }, + { + "epoch": 39.824814329401484, + "grad_norm": 0.24446387588977814, + "learning_rate": 0.0006, + "loss": 3.696723461151123, + "step": 2867 + }, + { + "epoch": 39.83879423328965, + "grad_norm": 0.2365843653678894, + "learning_rate": 0.0006, + "loss": 3.6511402130126953, + "step": 2868 + }, + { + "epoch": 39.8527741371778, + "grad_norm": 0.25421974062919617, + "learning_rate": 0.0006, + "loss": 3.68449068069458, + "step": 2869 + }, + { + "epoch": 39.86675404106597, + "grad_norm": 0.2504308819770813, + "learning_rate": 0.0006, + "loss": 3.685884952545166, + "step": 2870 + }, + { + "epoch": 39.88073394495413, + "grad_norm": 0.24695490300655365, + "learning_rate": 0.0006, + "loss": 3.6667490005493164, + "step": 2871 + }, + { + "epoch": 39.89471384884229, + "grad_norm": 0.2633236348628998, + "learning_rate": 0.0006, + "loss": 3.6828866004943848, + "step": 2872 + }, + { + "epoch": 39.90869375273045, + "grad_norm": 0.2421039491891861, + "learning_rate": 0.0006, + "loss": 3.681187391281128, + "step": 2873 + }, + { + "epoch": 39.92267365661861, + "grad_norm": 0.21202950179576874, + "learning_rate": 0.0006, + "loss": 3.679069995880127, + "step": 2874 + }, + { + "epoch": 39.93665356050677, + "grad_norm": 0.2344917505979538, + "learning_rate": 0.0006, + "loss": 3.6810007095336914, + "step": 2875 + }, + { + "epoch": 39.95063346439493, + "grad_norm": 0.2115124762058258, + "learning_rate": 0.0006, + "loss": 3.653219223022461, + "step": 2876 + }, + { + "epoch": 39.964613368283096, + "grad_norm": 0.21588370203971863, + "learning_rate": 0.0006, + "loss": 3.6972861289978027, + "step": 2877 + }, + { + "epoch": 39.97859327217125, + "grad_norm": 0.26215407252311707, + "learning_rate": 0.0006, + "loss": 3.6796963214874268, + "step": 2878 + }, + { + "epoch": 39.992573176059416, + "grad_norm": 0.23645395040512085, + "learning_rate": 0.0006, + "loss": 3.696091413497925, + "step": 2879 + }, + { + "epoch": 40.0, + "grad_norm": 0.21817512810230255, + "learning_rate": 0.0006, + "loss": 3.668196678161621, + "step": 2880 + }, + { + "epoch": 40.0, + "eval_loss": 3.9873862266540527, + "eval_runtime": 44.1149, + "eval_samples_per_second": 55.355, + "eval_steps_per_second": 3.468, + "step": 2880 + }, + { + "epoch": 40.01397990388816, + "grad_norm": 0.2031477391719818, + "learning_rate": 0.0006, + "loss": 3.6494622230529785, + "step": 2881 + }, + { + "epoch": 40.02795980777632, + "grad_norm": 0.2223939746618271, + "learning_rate": 0.0006, + "loss": 3.6587047576904297, + "step": 2882 + }, + { + "epoch": 40.04193971166448, + "grad_norm": 0.21485820412635803, + "learning_rate": 0.0006, + "loss": 3.62253737449646, + "step": 2883 + }, + { + "epoch": 40.05591961555265, + "grad_norm": 0.23364055156707764, + "learning_rate": 0.0006, + "loss": 3.619035005569458, + "step": 2884 + }, + { + "epoch": 40.0698995194408, + "grad_norm": 0.23141583800315857, + "learning_rate": 0.0006, + "loss": 3.6650376319885254, + "step": 2885 + }, + { + "epoch": 40.083879423328966, + "grad_norm": 0.2131720930337906, + "learning_rate": 0.0006, + "loss": 3.646428108215332, + "step": 2886 + }, + { + "epoch": 40.09785932721712, + "grad_norm": 0.2337951511144638, + "learning_rate": 0.0006, + "loss": 3.6284823417663574, + "step": 2887 + }, + { + "epoch": 40.111839231105286, + "grad_norm": 0.2790892720222473, + "learning_rate": 0.0006, + "loss": 3.6558361053466797, + "step": 2888 + }, + { + "epoch": 40.12581913499345, + "grad_norm": 0.28444936871528625, + "learning_rate": 0.0006, + "loss": 3.644402503967285, + "step": 2889 + }, + { + "epoch": 40.139799038881605, + "grad_norm": 0.2550848126411438, + "learning_rate": 0.0006, + "loss": 3.671562671661377, + "step": 2890 + }, + { + "epoch": 40.15377894276977, + "grad_norm": 0.22960248589515686, + "learning_rate": 0.0006, + "loss": 3.6998534202575684, + "step": 2891 + }, + { + "epoch": 40.16775884665793, + "grad_norm": 0.23920369148254395, + "learning_rate": 0.0006, + "loss": 3.653874635696411, + "step": 2892 + }, + { + "epoch": 40.18173875054609, + "grad_norm": 0.24586012959480286, + "learning_rate": 0.0006, + "loss": 3.620765209197998, + "step": 2893 + }, + { + "epoch": 40.19571865443425, + "grad_norm": 0.26394739747047424, + "learning_rate": 0.0006, + "loss": 3.638437509536743, + "step": 2894 + }, + { + "epoch": 40.20969855832241, + "grad_norm": 0.27566927671432495, + "learning_rate": 0.0006, + "loss": 3.6684799194335938, + "step": 2895 + }, + { + "epoch": 40.22367846221057, + "grad_norm": 0.25469011068344116, + "learning_rate": 0.0006, + "loss": 3.6113009452819824, + "step": 2896 + }, + { + "epoch": 40.237658366098735, + "grad_norm": 0.2403056025505066, + "learning_rate": 0.0006, + "loss": 3.650771141052246, + "step": 2897 + }, + { + "epoch": 40.25163826998689, + "grad_norm": 0.262423038482666, + "learning_rate": 0.0006, + "loss": 3.635892391204834, + "step": 2898 + }, + { + "epoch": 40.265618173875055, + "grad_norm": 0.23696045577526093, + "learning_rate": 0.0006, + "loss": 3.6396005153656006, + "step": 2899 + }, + { + "epoch": 40.27959807776322, + "grad_norm": 0.208719402551651, + "learning_rate": 0.0006, + "loss": 3.6681132316589355, + "step": 2900 + }, + { + "epoch": 40.293577981651374, + "grad_norm": 0.21554480493068695, + "learning_rate": 0.0006, + "loss": 3.6417553424835205, + "step": 2901 + }, + { + "epoch": 40.30755788553954, + "grad_norm": 0.2290734499692917, + "learning_rate": 0.0006, + "loss": 3.6659927368164062, + "step": 2902 + }, + { + "epoch": 40.3215377894277, + "grad_norm": 0.20803220570087433, + "learning_rate": 0.0006, + "loss": 3.6443324089050293, + "step": 2903 + }, + { + "epoch": 40.33551769331586, + "grad_norm": 0.20334568619728088, + "learning_rate": 0.0006, + "loss": 3.6824207305908203, + "step": 2904 + }, + { + "epoch": 40.34949759720402, + "grad_norm": 0.2000233381986618, + "learning_rate": 0.0006, + "loss": 3.644399642944336, + "step": 2905 + }, + { + "epoch": 40.36347750109218, + "grad_norm": 0.21990752220153809, + "learning_rate": 0.0006, + "loss": 3.668160915374756, + "step": 2906 + }, + { + "epoch": 40.37745740498034, + "grad_norm": 0.24385249614715576, + "learning_rate": 0.0006, + "loss": 3.634392261505127, + "step": 2907 + }, + { + "epoch": 40.391437308868504, + "grad_norm": 0.21272684633731842, + "learning_rate": 0.0006, + "loss": 3.6504263877868652, + "step": 2908 + }, + { + "epoch": 40.40541721275666, + "grad_norm": 0.2003277838230133, + "learning_rate": 0.0006, + "loss": 3.6707763671875, + "step": 2909 + }, + { + "epoch": 40.419397116644824, + "grad_norm": 0.2086087465286255, + "learning_rate": 0.0006, + "loss": 3.66988468170166, + "step": 2910 + }, + { + "epoch": 40.43337702053299, + "grad_norm": 0.19706451892852783, + "learning_rate": 0.0006, + "loss": 3.662794828414917, + "step": 2911 + }, + { + "epoch": 40.44735692442114, + "grad_norm": 0.18795762956142426, + "learning_rate": 0.0006, + "loss": 3.628016233444214, + "step": 2912 + }, + { + "epoch": 40.46133682830931, + "grad_norm": 0.19931825995445251, + "learning_rate": 0.0006, + "loss": 3.6791915893554688, + "step": 2913 + }, + { + "epoch": 40.47531673219746, + "grad_norm": 0.21295934915542603, + "learning_rate": 0.0006, + "loss": 3.688632011413574, + "step": 2914 + }, + { + "epoch": 40.489296636085626, + "grad_norm": 0.2104834020137787, + "learning_rate": 0.0006, + "loss": 3.6270499229431152, + "step": 2915 + }, + { + "epoch": 40.50327653997379, + "grad_norm": 0.19942966103553772, + "learning_rate": 0.0006, + "loss": 3.651721477508545, + "step": 2916 + }, + { + "epoch": 40.517256443861946, + "grad_norm": 0.18890425562858582, + "learning_rate": 0.0006, + "loss": 3.6778619289398193, + "step": 2917 + }, + { + "epoch": 40.53123634775011, + "grad_norm": 0.19861607253551483, + "learning_rate": 0.0006, + "loss": 3.658832550048828, + "step": 2918 + }, + { + "epoch": 40.54521625163827, + "grad_norm": 0.21553616225719452, + "learning_rate": 0.0006, + "loss": 3.6566901206970215, + "step": 2919 + }, + { + "epoch": 40.55919615552643, + "grad_norm": 0.21698440611362457, + "learning_rate": 0.0006, + "loss": 3.6795129776000977, + "step": 2920 + }, + { + "epoch": 40.57317605941459, + "grad_norm": 0.20310913026332855, + "learning_rate": 0.0006, + "loss": 3.645244598388672, + "step": 2921 + }, + { + "epoch": 40.58715596330275, + "grad_norm": 0.2075812816619873, + "learning_rate": 0.0006, + "loss": 3.678452491760254, + "step": 2922 + }, + { + "epoch": 40.60113586719091, + "grad_norm": 0.20606619119644165, + "learning_rate": 0.0006, + "loss": 3.6150245666503906, + "step": 2923 + }, + { + "epoch": 40.615115771079076, + "grad_norm": 0.21511296927928925, + "learning_rate": 0.0006, + "loss": 3.6682112216949463, + "step": 2924 + }, + { + "epoch": 40.62909567496723, + "grad_norm": 0.19771839678287506, + "learning_rate": 0.0006, + "loss": 3.6639556884765625, + "step": 2925 + }, + { + "epoch": 40.643075578855395, + "grad_norm": 0.20419852435588837, + "learning_rate": 0.0006, + "loss": 3.664982318878174, + "step": 2926 + }, + { + "epoch": 40.65705548274356, + "grad_norm": 0.20119430124759674, + "learning_rate": 0.0006, + "loss": 3.661625385284424, + "step": 2927 + }, + { + "epoch": 40.671035386631715, + "grad_norm": 0.21590501070022583, + "learning_rate": 0.0006, + "loss": 3.673719644546509, + "step": 2928 + }, + { + "epoch": 40.68501529051988, + "grad_norm": 0.19165395200252533, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 2929 + }, + { + "epoch": 40.69899519440804, + "grad_norm": 0.19620473682880402, + "learning_rate": 0.0006, + "loss": 3.7008142471313477, + "step": 2930 + }, + { + "epoch": 40.7129750982962, + "grad_norm": 0.23002777993679047, + "learning_rate": 0.0006, + "loss": 3.654296875, + "step": 2931 + }, + { + "epoch": 40.72695500218436, + "grad_norm": 0.22007468342781067, + "learning_rate": 0.0006, + "loss": 3.688178539276123, + "step": 2932 + }, + { + "epoch": 40.74093490607252, + "grad_norm": 0.2030077874660492, + "learning_rate": 0.0006, + "loss": 3.6514129638671875, + "step": 2933 + }, + { + "epoch": 40.75491480996068, + "grad_norm": 0.20960700511932373, + "learning_rate": 0.0006, + "loss": 3.651864528656006, + "step": 2934 + }, + { + "epoch": 40.768894713848844, + "grad_norm": 0.2132565975189209, + "learning_rate": 0.0006, + "loss": 3.680915355682373, + "step": 2935 + }, + { + "epoch": 40.782874617737, + "grad_norm": 0.2411353588104248, + "learning_rate": 0.0006, + "loss": 3.647167682647705, + "step": 2936 + }, + { + "epoch": 40.796854521625164, + "grad_norm": 0.24621541798114777, + "learning_rate": 0.0006, + "loss": 3.6784768104553223, + "step": 2937 + }, + { + "epoch": 40.81083442551333, + "grad_norm": 0.23324407637119293, + "learning_rate": 0.0006, + "loss": 3.6855263710021973, + "step": 2938 + }, + { + "epoch": 40.824814329401484, + "grad_norm": 0.21749550104141235, + "learning_rate": 0.0006, + "loss": 3.672682285308838, + "step": 2939 + }, + { + "epoch": 40.83879423328965, + "grad_norm": 0.1957911103963852, + "learning_rate": 0.0006, + "loss": 3.635678291320801, + "step": 2940 + }, + { + "epoch": 40.8527741371778, + "grad_norm": 0.21262411773204803, + "learning_rate": 0.0006, + "loss": 3.6829824447631836, + "step": 2941 + }, + { + "epoch": 40.86675404106597, + "grad_norm": 0.19940680265426636, + "learning_rate": 0.0006, + "loss": 3.720932960510254, + "step": 2942 + }, + { + "epoch": 40.88073394495413, + "grad_norm": 0.1964999884366989, + "learning_rate": 0.0006, + "loss": 3.678405284881592, + "step": 2943 + }, + { + "epoch": 40.89471384884229, + "grad_norm": 0.21459022164344788, + "learning_rate": 0.0006, + "loss": 3.6788480281829834, + "step": 2944 + }, + { + "epoch": 40.90869375273045, + "grad_norm": 0.2251381129026413, + "learning_rate": 0.0006, + "loss": 3.679459571838379, + "step": 2945 + }, + { + "epoch": 40.92267365661861, + "grad_norm": 0.19951461255550385, + "learning_rate": 0.0006, + "loss": 3.6610841751098633, + "step": 2946 + }, + { + "epoch": 40.93665356050677, + "grad_norm": 0.2057943493127823, + "learning_rate": 0.0006, + "loss": 3.649491786956787, + "step": 2947 + }, + { + "epoch": 40.95063346439493, + "grad_norm": 0.19601917266845703, + "learning_rate": 0.0006, + "loss": 3.724552631378174, + "step": 2948 + }, + { + "epoch": 40.964613368283096, + "grad_norm": 0.20982769131660461, + "learning_rate": 0.0006, + "loss": 3.648465394973755, + "step": 2949 + }, + { + "epoch": 40.97859327217125, + "grad_norm": 0.21103954315185547, + "learning_rate": 0.0006, + "loss": 3.692239999771118, + "step": 2950 + }, + { + "epoch": 40.992573176059416, + "grad_norm": 0.2007385492324829, + "learning_rate": 0.0006, + "loss": 3.659999132156372, + "step": 2951 + }, + { + "epoch": 41.0, + "grad_norm": 0.22357431054115295, + "learning_rate": 0.0006, + "loss": 3.6461124420166016, + "step": 2952 + }, + { + "epoch": 41.0, + "eval_loss": 3.9891226291656494, + "eval_runtime": 44.65, + "eval_samples_per_second": 54.692, + "eval_steps_per_second": 3.427, + "step": 2952 + }, + { + "epoch": 41.01397990388816, + "grad_norm": 0.20387817919254303, + "learning_rate": 0.0006, + "loss": 3.643923282623291, + "step": 2953 + }, + { + "epoch": 41.02795980777632, + "grad_norm": 0.1988423764705658, + "learning_rate": 0.0006, + "loss": 3.6152570247650146, + "step": 2954 + }, + { + "epoch": 41.04193971166448, + "grad_norm": 0.19998641312122345, + "learning_rate": 0.0006, + "loss": 3.667520523071289, + "step": 2955 + }, + { + "epoch": 41.05591961555265, + "grad_norm": 0.18347714841365814, + "learning_rate": 0.0006, + "loss": 3.6289002895355225, + "step": 2956 + }, + { + "epoch": 41.0698995194408, + "grad_norm": 0.21235640347003937, + "learning_rate": 0.0006, + "loss": 3.6422951221466064, + "step": 2957 + }, + { + "epoch": 41.083879423328966, + "grad_norm": 0.1990172415971756, + "learning_rate": 0.0006, + "loss": 3.625697135925293, + "step": 2958 + }, + { + "epoch": 41.09785932721712, + "grad_norm": 0.18313643336296082, + "learning_rate": 0.0006, + "loss": 3.672356605529785, + "step": 2959 + }, + { + "epoch": 41.111839231105286, + "grad_norm": 0.17956401407718658, + "learning_rate": 0.0006, + "loss": 3.6093602180480957, + "step": 2960 + }, + { + "epoch": 41.12581913499345, + "grad_norm": 0.19487550854682922, + "learning_rate": 0.0006, + "loss": 3.6004128456115723, + "step": 2961 + }, + { + "epoch": 41.139799038881605, + "grad_norm": 0.2117495834827423, + "learning_rate": 0.0006, + "loss": 3.6468565464019775, + "step": 2962 + }, + { + "epoch": 41.15377894276977, + "grad_norm": 0.20602662861347198, + "learning_rate": 0.0006, + "loss": 3.6299140453338623, + "step": 2963 + }, + { + "epoch": 41.16775884665793, + "grad_norm": 0.21859265863895416, + "learning_rate": 0.0006, + "loss": 3.630052328109741, + "step": 2964 + }, + { + "epoch": 41.18173875054609, + "grad_norm": 0.22684140503406525, + "learning_rate": 0.0006, + "loss": 3.5995004177093506, + "step": 2965 + }, + { + "epoch": 41.19571865443425, + "grad_norm": 0.25682681798934937, + "learning_rate": 0.0006, + "loss": 3.613131523132324, + "step": 2966 + }, + { + "epoch": 41.20969855832241, + "grad_norm": 0.2508181631565094, + "learning_rate": 0.0006, + "loss": 3.644259452819824, + "step": 2967 + }, + { + "epoch": 41.22367846221057, + "grad_norm": 0.24200427532196045, + "learning_rate": 0.0006, + "loss": 3.6651816368103027, + "step": 2968 + }, + { + "epoch": 41.237658366098735, + "grad_norm": 0.21753790974617004, + "learning_rate": 0.0006, + "loss": 3.686199188232422, + "step": 2969 + }, + { + "epoch": 41.25163826998689, + "grad_norm": 0.19811955094337463, + "learning_rate": 0.0006, + "loss": 3.63014817237854, + "step": 2970 + }, + { + "epoch": 41.265618173875055, + "grad_norm": 0.19316327571868896, + "learning_rate": 0.0006, + "loss": 3.6532740592956543, + "step": 2971 + }, + { + "epoch": 41.27959807776322, + "grad_norm": 0.21440976858139038, + "learning_rate": 0.0006, + "loss": 3.6546850204467773, + "step": 2972 + }, + { + "epoch": 41.293577981651374, + "grad_norm": 0.2732681334018707, + "learning_rate": 0.0006, + "loss": 3.6135244369506836, + "step": 2973 + }, + { + "epoch": 41.30755788553954, + "grad_norm": 0.2588619589805603, + "learning_rate": 0.0006, + "loss": 3.657963275909424, + "step": 2974 + }, + { + "epoch": 41.3215377894277, + "grad_norm": 0.20054970681667328, + "learning_rate": 0.0006, + "loss": 3.6391024589538574, + "step": 2975 + }, + { + "epoch": 41.33551769331586, + "grad_norm": 0.23703549802303314, + "learning_rate": 0.0006, + "loss": 3.6609978675842285, + "step": 2976 + }, + { + "epoch": 41.34949759720402, + "grad_norm": 0.24222144484519958, + "learning_rate": 0.0006, + "loss": 3.659271478652954, + "step": 2977 + }, + { + "epoch": 41.36347750109218, + "grad_norm": 0.2228497713804245, + "learning_rate": 0.0006, + "loss": 3.607358455657959, + "step": 2978 + }, + { + "epoch": 41.37745740498034, + "grad_norm": 0.22105038166046143, + "learning_rate": 0.0006, + "loss": 3.64198899269104, + "step": 2979 + }, + { + "epoch": 41.391437308868504, + "grad_norm": 0.23753555119037628, + "learning_rate": 0.0006, + "loss": 3.63116455078125, + "step": 2980 + }, + { + "epoch": 41.40541721275666, + "grad_norm": 0.24492689967155457, + "learning_rate": 0.0006, + "loss": 3.636122465133667, + "step": 2981 + }, + { + "epoch": 41.419397116644824, + "grad_norm": 0.20610782504081726, + "learning_rate": 0.0006, + "loss": 3.656487226486206, + "step": 2982 + }, + { + "epoch": 41.43337702053299, + "grad_norm": 0.20781412720680237, + "learning_rate": 0.0006, + "loss": 3.669196605682373, + "step": 2983 + }, + { + "epoch": 41.44735692442114, + "grad_norm": 0.23892036080360413, + "learning_rate": 0.0006, + "loss": 3.6345765590667725, + "step": 2984 + }, + { + "epoch": 41.46133682830931, + "grad_norm": 0.2477712333202362, + "learning_rate": 0.0006, + "loss": 3.6599812507629395, + "step": 2985 + }, + { + "epoch": 41.47531673219746, + "grad_norm": 0.25314703583717346, + "learning_rate": 0.0006, + "loss": 3.6737258434295654, + "step": 2986 + }, + { + "epoch": 41.489296636085626, + "grad_norm": 0.2386070191860199, + "learning_rate": 0.0006, + "loss": 3.666586399078369, + "step": 2987 + }, + { + "epoch": 41.50327653997379, + "grad_norm": 0.27259722352027893, + "learning_rate": 0.0006, + "loss": 3.658761501312256, + "step": 2988 + }, + { + "epoch": 41.517256443861946, + "grad_norm": 0.3312860429286957, + "learning_rate": 0.0006, + "loss": 3.629699230194092, + "step": 2989 + }, + { + "epoch": 41.53123634775011, + "grad_norm": 0.3321581780910492, + "learning_rate": 0.0006, + "loss": 3.66628360748291, + "step": 2990 + }, + { + "epoch": 41.54521625163827, + "grad_norm": 0.2850016951560974, + "learning_rate": 0.0006, + "loss": 3.690005302429199, + "step": 2991 + }, + { + "epoch": 41.55919615552643, + "grad_norm": 0.2544100880622864, + "learning_rate": 0.0006, + "loss": 3.6554486751556396, + "step": 2992 + }, + { + "epoch": 41.57317605941459, + "grad_norm": 0.28541380167007446, + "learning_rate": 0.0006, + "loss": 3.672952175140381, + "step": 2993 + }, + { + "epoch": 41.58715596330275, + "grad_norm": 0.2909766435623169, + "learning_rate": 0.0006, + "loss": 3.6649627685546875, + "step": 2994 + }, + { + "epoch": 41.60113586719091, + "grad_norm": 0.26089969277381897, + "learning_rate": 0.0006, + "loss": 3.6512341499328613, + "step": 2995 + }, + { + "epoch": 41.615115771079076, + "grad_norm": 0.21815894544124603, + "learning_rate": 0.0006, + "loss": 3.612436056137085, + "step": 2996 + }, + { + "epoch": 41.62909567496723, + "grad_norm": 0.20712246000766754, + "learning_rate": 0.0006, + "loss": 3.6482479572296143, + "step": 2997 + }, + { + "epoch": 41.643075578855395, + "grad_norm": 0.23280103504657745, + "learning_rate": 0.0006, + "loss": 3.6648616790771484, + "step": 2998 + }, + { + "epoch": 41.65705548274356, + "grad_norm": 0.21623823046684265, + "learning_rate": 0.0006, + "loss": 3.6714487075805664, + "step": 2999 + }, + { + "epoch": 41.671035386631715, + "grad_norm": 0.2081632912158966, + "learning_rate": 0.0006, + "loss": 3.693014144897461, + "step": 3000 + }, + { + "epoch": 41.68501529051988, + "grad_norm": 0.23109425604343414, + "learning_rate": 0.0006, + "loss": 3.667262554168701, + "step": 3001 + }, + { + "epoch": 41.69899519440804, + "grad_norm": 0.2304934561252594, + "learning_rate": 0.0006, + "loss": 3.666405439376831, + "step": 3002 + }, + { + "epoch": 41.7129750982962, + "grad_norm": 0.23132432997226715, + "learning_rate": 0.0006, + "loss": 3.690964698791504, + "step": 3003 + }, + { + "epoch": 41.72695500218436, + "grad_norm": 0.2085159569978714, + "learning_rate": 0.0006, + "loss": 3.6620168685913086, + "step": 3004 + }, + { + "epoch": 41.74093490607252, + "grad_norm": 0.1919657438993454, + "learning_rate": 0.0006, + "loss": 3.67447566986084, + "step": 3005 + }, + { + "epoch": 41.75491480996068, + "grad_norm": 0.20189036428928375, + "learning_rate": 0.0006, + "loss": 3.6434998512268066, + "step": 3006 + }, + { + "epoch": 41.768894713848844, + "grad_norm": 0.23530980944633484, + "learning_rate": 0.0006, + "loss": 3.644280433654785, + "step": 3007 + }, + { + "epoch": 41.782874617737, + "grad_norm": 0.2550027370452881, + "learning_rate": 0.0006, + "loss": 3.6686060428619385, + "step": 3008 + }, + { + "epoch": 41.796854521625164, + "grad_norm": 0.2285512536764145, + "learning_rate": 0.0006, + "loss": 3.7013134956359863, + "step": 3009 + }, + { + "epoch": 41.81083442551333, + "grad_norm": 0.20538675785064697, + "learning_rate": 0.0006, + "loss": 3.6568830013275146, + "step": 3010 + }, + { + "epoch": 41.824814329401484, + "grad_norm": 0.2007976472377777, + "learning_rate": 0.0006, + "loss": 3.680250883102417, + "step": 3011 + }, + { + "epoch": 41.83879423328965, + "grad_norm": 0.20060500502586365, + "learning_rate": 0.0006, + "loss": 3.6565070152282715, + "step": 3012 + }, + { + "epoch": 41.8527741371778, + "grad_norm": 0.21055014431476593, + "learning_rate": 0.0006, + "loss": 3.661667823791504, + "step": 3013 + }, + { + "epoch": 41.86675404106597, + "grad_norm": 0.2201126217842102, + "learning_rate": 0.0006, + "loss": 3.650052070617676, + "step": 3014 + }, + { + "epoch": 41.88073394495413, + "grad_norm": 0.20397843420505524, + "learning_rate": 0.0006, + "loss": 3.6535415649414062, + "step": 3015 + }, + { + "epoch": 41.89471384884229, + "grad_norm": 0.1993463635444641, + "learning_rate": 0.0006, + "loss": 3.665696144104004, + "step": 3016 + }, + { + "epoch": 41.90869375273045, + "grad_norm": 0.20448797941207886, + "learning_rate": 0.0006, + "loss": 3.6448118686676025, + "step": 3017 + }, + { + "epoch": 41.92267365661861, + "grad_norm": 0.2064918726682663, + "learning_rate": 0.0006, + "loss": 3.6881537437438965, + "step": 3018 + }, + { + "epoch": 41.93665356050677, + "grad_norm": 0.20554372668266296, + "learning_rate": 0.0006, + "loss": 3.688559055328369, + "step": 3019 + }, + { + "epoch": 41.95063346439493, + "grad_norm": 0.1862783133983612, + "learning_rate": 0.0006, + "loss": 3.6713812351226807, + "step": 3020 + }, + { + "epoch": 41.964613368283096, + "grad_norm": 0.18139860033988953, + "learning_rate": 0.0006, + "loss": 3.6612548828125, + "step": 3021 + }, + { + "epoch": 41.97859327217125, + "grad_norm": 0.1844220608472824, + "learning_rate": 0.0006, + "loss": 3.641725540161133, + "step": 3022 + }, + { + "epoch": 41.992573176059416, + "grad_norm": 0.1885213702917099, + "learning_rate": 0.0006, + "loss": 3.663257122039795, + "step": 3023 + }, + { + "epoch": 42.0, + "grad_norm": 0.2250746339559555, + "learning_rate": 0.0006, + "loss": 3.6479320526123047, + "step": 3024 + }, + { + "epoch": 42.0, + "eval_loss": 3.993955135345459, + "eval_runtime": 44.4709, + "eval_samples_per_second": 54.912, + "eval_steps_per_second": 3.44, + "step": 3024 + }, + { + "epoch": 42.01397990388816, + "grad_norm": 0.21096517145633698, + "learning_rate": 0.0006, + "loss": 3.6729278564453125, + "step": 3025 + }, + { + "epoch": 42.02795980777632, + "grad_norm": 0.2106277495622635, + "learning_rate": 0.0006, + "loss": 3.629892349243164, + "step": 3026 + }, + { + "epoch": 42.04193971166448, + "grad_norm": 0.2673060894012451, + "learning_rate": 0.0006, + "loss": 3.643604040145874, + "step": 3027 + }, + { + "epoch": 42.05591961555265, + "grad_norm": 0.28180691599845886, + "learning_rate": 0.0006, + "loss": 3.596560478210449, + "step": 3028 + }, + { + "epoch": 42.0698995194408, + "grad_norm": 0.25607243180274963, + "learning_rate": 0.0006, + "loss": 3.597935199737549, + "step": 3029 + }, + { + "epoch": 42.083879423328966, + "grad_norm": 0.22120746970176697, + "learning_rate": 0.0006, + "loss": 3.6219305992126465, + "step": 3030 + }, + { + "epoch": 42.09785932721712, + "grad_norm": 0.2164907306432724, + "learning_rate": 0.0006, + "loss": 3.6220779418945312, + "step": 3031 + }, + { + "epoch": 42.111839231105286, + "grad_norm": 0.23800921440124512, + "learning_rate": 0.0006, + "loss": 3.63372540473938, + "step": 3032 + }, + { + "epoch": 42.12581913499345, + "grad_norm": 0.21812695264816284, + "learning_rate": 0.0006, + "loss": 3.636105537414551, + "step": 3033 + }, + { + "epoch": 42.139799038881605, + "grad_norm": 0.2027447372674942, + "learning_rate": 0.0006, + "loss": 3.6167502403259277, + "step": 3034 + }, + { + "epoch": 42.15377894276977, + "grad_norm": 0.20157714188098907, + "learning_rate": 0.0006, + "loss": 3.6141409873962402, + "step": 3035 + }, + { + "epoch": 42.16775884665793, + "grad_norm": 0.20780996978282928, + "learning_rate": 0.0006, + "loss": 3.6323471069335938, + "step": 3036 + }, + { + "epoch": 42.18173875054609, + "grad_norm": 0.20025081932544708, + "learning_rate": 0.0006, + "loss": 3.625446081161499, + "step": 3037 + }, + { + "epoch": 42.19571865443425, + "grad_norm": 0.20019082725048065, + "learning_rate": 0.0006, + "loss": 3.631418228149414, + "step": 3038 + }, + { + "epoch": 42.20969855832241, + "grad_norm": 0.21194526553153992, + "learning_rate": 0.0006, + "loss": 3.6180832386016846, + "step": 3039 + }, + { + "epoch": 42.22367846221057, + "grad_norm": 0.2016245573759079, + "learning_rate": 0.0006, + "loss": 3.6388602256774902, + "step": 3040 + }, + { + "epoch": 42.237658366098735, + "grad_norm": 0.1892252415418625, + "learning_rate": 0.0006, + "loss": 3.6086854934692383, + "step": 3041 + }, + { + "epoch": 42.25163826998689, + "grad_norm": 0.1878061145544052, + "learning_rate": 0.0006, + "loss": 3.599428176879883, + "step": 3042 + }, + { + "epoch": 42.265618173875055, + "grad_norm": 0.20258742570877075, + "learning_rate": 0.0006, + "loss": 3.6177172660827637, + "step": 3043 + }, + { + "epoch": 42.27959807776322, + "grad_norm": 0.2114444226026535, + "learning_rate": 0.0006, + "loss": 3.641916275024414, + "step": 3044 + }, + { + "epoch": 42.293577981651374, + "grad_norm": 0.19873645901679993, + "learning_rate": 0.0006, + "loss": 3.6585676670074463, + "step": 3045 + }, + { + "epoch": 42.30755788553954, + "grad_norm": 0.20361217856407166, + "learning_rate": 0.0006, + "loss": 3.648475170135498, + "step": 3046 + }, + { + "epoch": 42.3215377894277, + "grad_norm": 0.20227114856243134, + "learning_rate": 0.0006, + "loss": 3.63625431060791, + "step": 3047 + }, + { + "epoch": 42.33551769331586, + "grad_norm": 0.18246233463287354, + "learning_rate": 0.0006, + "loss": 3.6380200386047363, + "step": 3048 + }, + { + "epoch": 42.34949759720402, + "grad_norm": 0.17944976687431335, + "learning_rate": 0.0006, + "loss": 3.6325912475585938, + "step": 3049 + }, + { + "epoch": 42.36347750109218, + "grad_norm": 0.188584566116333, + "learning_rate": 0.0006, + "loss": 3.6418886184692383, + "step": 3050 + }, + { + "epoch": 42.37745740498034, + "grad_norm": 0.1917790323495865, + "learning_rate": 0.0006, + "loss": 3.664421558380127, + "step": 3051 + }, + { + "epoch": 42.391437308868504, + "grad_norm": 0.175637349486351, + "learning_rate": 0.0006, + "loss": 3.641819953918457, + "step": 3052 + }, + { + "epoch": 42.40541721275666, + "grad_norm": 0.18751518428325653, + "learning_rate": 0.0006, + "loss": 3.646697998046875, + "step": 3053 + }, + { + "epoch": 42.419397116644824, + "grad_norm": 0.1805887520313263, + "learning_rate": 0.0006, + "loss": 3.637866735458374, + "step": 3054 + }, + { + "epoch": 42.43337702053299, + "grad_norm": 0.19680845737457275, + "learning_rate": 0.0006, + "loss": 3.602511405944824, + "step": 3055 + }, + { + "epoch": 42.44735692442114, + "grad_norm": 0.20605766773223877, + "learning_rate": 0.0006, + "loss": 3.6472771167755127, + "step": 3056 + }, + { + "epoch": 42.46133682830931, + "grad_norm": 0.18083851039409637, + "learning_rate": 0.0006, + "loss": 3.6672325134277344, + "step": 3057 + }, + { + "epoch": 42.47531673219746, + "grad_norm": 0.19665084779262543, + "learning_rate": 0.0006, + "loss": 3.625300884246826, + "step": 3058 + }, + { + "epoch": 42.489296636085626, + "grad_norm": 0.22506165504455566, + "learning_rate": 0.0006, + "loss": 3.592872142791748, + "step": 3059 + }, + { + "epoch": 42.50327653997379, + "grad_norm": 0.2051578164100647, + "learning_rate": 0.0006, + "loss": 3.6302249431610107, + "step": 3060 + }, + { + "epoch": 42.517256443861946, + "grad_norm": 0.18957172334194183, + "learning_rate": 0.0006, + "loss": 3.6277074813842773, + "step": 3061 + }, + { + "epoch": 42.53123634775011, + "grad_norm": 0.21467208862304688, + "learning_rate": 0.0006, + "loss": 3.6121392250061035, + "step": 3062 + }, + { + "epoch": 42.54521625163827, + "grad_norm": 0.21618402004241943, + "learning_rate": 0.0006, + "loss": 3.664738655090332, + "step": 3063 + }, + { + "epoch": 42.55919615552643, + "grad_norm": 0.2259770780801773, + "learning_rate": 0.0006, + "loss": 3.652042865753174, + "step": 3064 + }, + { + "epoch": 42.57317605941459, + "grad_norm": 0.22667232155799866, + "learning_rate": 0.0006, + "loss": 3.6552934646606445, + "step": 3065 + }, + { + "epoch": 42.58715596330275, + "grad_norm": 0.21405228972434998, + "learning_rate": 0.0006, + "loss": 3.644043445587158, + "step": 3066 + }, + { + "epoch": 42.60113586719091, + "grad_norm": 0.20855450630187988, + "learning_rate": 0.0006, + "loss": 3.6534876823425293, + "step": 3067 + }, + { + "epoch": 42.615115771079076, + "grad_norm": 0.22474415600299835, + "learning_rate": 0.0006, + "loss": 3.656677484512329, + "step": 3068 + }, + { + "epoch": 42.62909567496723, + "grad_norm": 0.23401428759098053, + "learning_rate": 0.0006, + "loss": 3.6788997650146484, + "step": 3069 + }, + { + "epoch": 42.643075578855395, + "grad_norm": 0.21567967534065247, + "learning_rate": 0.0006, + "loss": 3.675379753112793, + "step": 3070 + }, + { + "epoch": 42.65705548274356, + "grad_norm": 0.21704941987991333, + "learning_rate": 0.0006, + "loss": 3.630707263946533, + "step": 3071 + }, + { + "epoch": 42.671035386631715, + "grad_norm": 0.2718963921070099, + "learning_rate": 0.0006, + "loss": 3.6653294563293457, + "step": 3072 + }, + { + "epoch": 42.68501529051988, + "grad_norm": 0.30198901891708374, + "learning_rate": 0.0006, + "loss": 3.6761326789855957, + "step": 3073 + }, + { + "epoch": 42.69899519440804, + "grad_norm": 0.27593618631362915, + "learning_rate": 0.0006, + "loss": 3.6610732078552246, + "step": 3074 + }, + { + "epoch": 42.7129750982962, + "grad_norm": 0.22495242953300476, + "learning_rate": 0.0006, + "loss": 3.656907320022583, + "step": 3075 + }, + { + "epoch": 42.72695500218436, + "grad_norm": 0.19872353971004486, + "learning_rate": 0.0006, + "loss": 3.6611597537994385, + "step": 3076 + }, + { + "epoch": 42.74093490607252, + "grad_norm": 0.21527111530303955, + "learning_rate": 0.0006, + "loss": 3.676821708679199, + "step": 3077 + }, + { + "epoch": 42.75491480996068, + "grad_norm": 0.22314463555812836, + "learning_rate": 0.0006, + "loss": 3.629460334777832, + "step": 3078 + }, + { + "epoch": 42.768894713848844, + "grad_norm": 0.23461024463176727, + "learning_rate": 0.0006, + "loss": 3.665390968322754, + "step": 3079 + }, + { + "epoch": 42.782874617737, + "grad_norm": 0.2582414448261261, + "learning_rate": 0.0006, + "loss": 3.6420979499816895, + "step": 3080 + }, + { + "epoch": 42.796854521625164, + "grad_norm": 0.2505052983760834, + "learning_rate": 0.0006, + "loss": 3.67236328125, + "step": 3081 + }, + { + "epoch": 42.81083442551333, + "grad_norm": 0.22617632150650024, + "learning_rate": 0.0006, + "loss": 3.654897689819336, + "step": 3082 + }, + { + "epoch": 42.824814329401484, + "grad_norm": 0.2340085208415985, + "learning_rate": 0.0006, + "loss": 3.6423635482788086, + "step": 3083 + }, + { + "epoch": 42.83879423328965, + "grad_norm": 0.26765671372413635, + "learning_rate": 0.0006, + "loss": 3.622769832611084, + "step": 3084 + }, + { + "epoch": 42.8527741371778, + "grad_norm": 0.29490381479263306, + "learning_rate": 0.0006, + "loss": 3.656053066253662, + "step": 3085 + }, + { + "epoch": 42.86675404106597, + "grad_norm": 0.29776132106781006, + "learning_rate": 0.0006, + "loss": 3.6454644203186035, + "step": 3086 + }, + { + "epoch": 42.88073394495413, + "grad_norm": 0.23994849622249603, + "learning_rate": 0.0006, + "loss": 3.674665927886963, + "step": 3087 + }, + { + "epoch": 42.89471384884229, + "grad_norm": 0.21456265449523926, + "learning_rate": 0.0006, + "loss": 3.670175790786743, + "step": 3088 + }, + { + "epoch": 42.90869375273045, + "grad_norm": 0.25727778673171997, + "learning_rate": 0.0006, + "loss": 3.6425390243530273, + "step": 3089 + }, + { + "epoch": 42.92267365661861, + "grad_norm": 0.30310627818107605, + "learning_rate": 0.0006, + "loss": 3.68511962890625, + "step": 3090 + }, + { + "epoch": 42.93665356050677, + "grad_norm": 0.2792291045188904, + "learning_rate": 0.0006, + "loss": 3.681732654571533, + "step": 3091 + }, + { + "epoch": 42.95063346439493, + "grad_norm": 0.23614276945590973, + "learning_rate": 0.0006, + "loss": 3.6417222023010254, + "step": 3092 + }, + { + "epoch": 42.964613368283096, + "grad_norm": 0.23602448403835297, + "learning_rate": 0.0006, + "loss": 3.6602869033813477, + "step": 3093 + }, + { + "epoch": 42.97859327217125, + "grad_norm": 0.21968287229537964, + "learning_rate": 0.0006, + "loss": 3.6618118286132812, + "step": 3094 + }, + { + "epoch": 42.992573176059416, + "grad_norm": 0.2177523374557495, + "learning_rate": 0.0006, + "loss": 3.666904926300049, + "step": 3095 + }, + { + "epoch": 43.0, + "grad_norm": 0.23960894346237183, + "learning_rate": 0.0006, + "loss": 3.710965633392334, + "step": 3096 + }, + { + "epoch": 43.0, + "eval_loss": 3.977475166320801, + "eval_runtime": 44.5209, + "eval_samples_per_second": 54.851, + "eval_steps_per_second": 3.437, + "step": 3096 + }, + { + "epoch": 43.01397990388816, + "grad_norm": 0.24180234968662262, + "learning_rate": 0.0006, + "loss": 3.5949223041534424, + "step": 3097 + }, + { + "epoch": 43.02795980777632, + "grad_norm": 0.3331127166748047, + "learning_rate": 0.0006, + "loss": 3.625802755355835, + "step": 3098 + }, + { + "epoch": 43.04193971166448, + "grad_norm": 0.38338130712509155, + "learning_rate": 0.0006, + "loss": 3.6390271186828613, + "step": 3099 + }, + { + "epoch": 43.05591961555265, + "grad_norm": 0.32292598485946655, + "learning_rate": 0.0006, + "loss": 3.630621910095215, + "step": 3100 + }, + { + "epoch": 43.0698995194408, + "grad_norm": 0.24179677665233612, + "learning_rate": 0.0006, + "loss": 3.6124491691589355, + "step": 3101 + }, + { + "epoch": 43.083879423328966, + "grad_norm": 0.2622842788696289, + "learning_rate": 0.0006, + "loss": 3.6207399368286133, + "step": 3102 + }, + { + "epoch": 43.09785932721712, + "grad_norm": 0.264297217130661, + "learning_rate": 0.0006, + "loss": 3.637218475341797, + "step": 3103 + }, + { + "epoch": 43.111839231105286, + "grad_norm": 0.25815117359161377, + "learning_rate": 0.0006, + "loss": 3.614841938018799, + "step": 3104 + }, + { + "epoch": 43.12581913499345, + "grad_norm": 0.2209406942129135, + "learning_rate": 0.0006, + "loss": 3.604722738265991, + "step": 3105 + }, + { + "epoch": 43.139799038881605, + "grad_norm": 0.22333410382270813, + "learning_rate": 0.0006, + "loss": 3.6388449668884277, + "step": 3106 + }, + { + "epoch": 43.15377894276977, + "grad_norm": 0.2194417119026184, + "learning_rate": 0.0006, + "loss": 3.611644744873047, + "step": 3107 + }, + { + "epoch": 43.16775884665793, + "grad_norm": 0.21270349621772766, + "learning_rate": 0.0006, + "loss": 3.6180214881896973, + "step": 3108 + }, + { + "epoch": 43.18173875054609, + "grad_norm": 0.21358032524585724, + "learning_rate": 0.0006, + "loss": 3.646512985229492, + "step": 3109 + }, + { + "epoch": 43.19571865443425, + "grad_norm": 0.2180788666009903, + "learning_rate": 0.0006, + "loss": 3.641981363296509, + "step": 3110 + }, + { + "epoch": 43.20969855832241, + "grad_norm": 0.21979685127735138, + "learning_rate": 0.0006, + "loss": 3.6251654624938965, + "step": 3111 + }, + { + "epoch": 43.22367846221057, + "grad_norm": 0.2072533220052719, + "learning_rate": 0.0006, + "loss": 3.665372371673584, + "step": 3112 + }, + { + "epoch": 43.237658366098735, + "grad_norm": 0.2085742950439453, + "learning_rate": 0.0006, + "loss": 3.647730827331543, + "step": 3113 + }, + { + "epoch": 43.25163826998689, + "grad_norm": 0.1934993416070938, + "learning_rate": 0.0006, + "loss": 3.6296567916870117, + "step": 3114 + }, + { + "epoch": 43.265618173875055, + "grad_norm": 0.1954783797264099, + "learning_rate": 0.0006, + "loss": 3.6412858963012695, + "step": 3115 + }, + { + "epoch": 43.27959807776322, + "grad_norm": 0.1932750642299652, + "learning_rate": 0.0006, + "loss": 3.6246860027313232, + "step": 3116 + }, + { + "epoch": 43.293577981651374, + "grad_norm": 0.19765302538871765, + "learning_rate": 0.0006, + "loss": 3.618922710418701, + "step": 3117 + }, + { + "epoch": 43.30755788553954, + "grad_norm": 0.1987425684928894, + "learning_rate": 0.0006, + "loss": 3.633185863494873, + "step": 3118 + }, + { + "epoch": 43.3215377894277, + "grad_norm": 0.1894739419221878, + "learning_rate": 0.0006, + "loss": 3.595709800720215, + "step": 3119 + }, + { + "epoch": 43.33551769331586, + "grad_norm": 0.19455872476100922, + "learning_rate": 0.0006, + "loss": 3.6309051513671875, + "step": 3120 + }, + { + "epoch": 43.34949759720402, + "grad_norm": 0.21448275446891785, + "learning_rate": 0.0006, + "loss": 3.6425981521606445, + "step": 3121 + }, + { + "epoch": 43.36347750109218, + "grad_norm": 0.24527893960475922, + "learning_rate": 0.0006, + "loss": 3.6497793197631836, + "step": 3122 + }, + { + "epoch": 43.37745740498034, + "grad_norm": 0.253231942653656, + "learning_rate": 0.0006, + "loss": 3.644453525543213, + "step": 3123 + }, + { + "epoch": 43.391437308868504, + "grad_norm": 0.2048978954553604, + "learning_rate": 0.0006, + "loss": 3.5963876247406006, + "step": 3124 + }, + { + "epoch": 43.40541721275666, + "grad_norm": 0.19951528310775757, + "learning_rate": 0.0006, + "loss": 3.6274406909942627, + "step": 3125 + }, + { + "epoch": 43.419397116644824, + "grad_norm": 0.2293875813484192, + "learning_rate": 0.0006, + "loss": 3.6482725143432617, + "step": 3126 + }, + { + "epoch": 43.43337702053299, + "grad_norm": 0.22379456460475922, + "learning_rate": 0.0006, + "loss": 3.6466073989868164, + "step": 3127 + }, + { + "epoch": 43.44735692442114, + "grad_norm": 0.2275441288948059, + "learning_rate": 0.0006, + "loss": 3.6529078483581543, + "step": 3128 + }, + { + "epoch": 43.46133682830931, + "grad_norm": 0.23014242947101593, + "learning_rate": 0.0006, + "loss": 3.6084837913513184, + "step": 3129 + }, + { + "epoch": 43.47531673219746, + "grad_norm": 0.22280924022197723, + "learning_rate": 0.0006, + "loss": 3.611320734024048, + "step": 3130 + }, + { + "epoch": 43.489296636085626, + "grad_norm": 0.19498756527900696, + "learning_rate": 0.0006, + "loss": 3.630185604095459, + "step": 3131 + }, + { + "epoch": 43.50327653997379, + "grad_norm": 0.21357767283916473, + "learning_rate": 0.0006, + "loss": 3.6509933471679688, + "step": 3132 + }, + { + "epoch": 43.517256443861946, + "grad_norm": 0.21775896847248077, + "learning_rate": 0.0006, + "loss": 3.635112762451172, + "step": 3133 + }, + { + "epoch": 43.53123634775011, + "grad_norm": 0.2035629004240036, + "learning_rate": 0.0006, + "loss": 3.658327102661133, + "step": 3134 + }, + { + "epoch": 43.54521625163827, + "grad_norm": 0.20083840191364288, + "learning_rate": 0.0006, + "loss": 3.632441997528076, + "step": 3135 + }, + { + "epoch": 43.55919615552643, + "grad_norm": 0.1922001987695694, + "learning_rate": 0.0006, + "loss": 3.6417734622955322, + "step": 3136 + }, + { + "epoch": 43.57317605941459, + "grad_norm": 0.21049264073371887, + "learning_rate": 0.0006, + "loss": 3.671274423599243, + "step": 3137 + }, + { + "epoch": 43.58715596330275, + "grad_norm": 0.21432001888751984, + "learning_rate": 0.0006, + "loss": 3.6216118335723877, + "step": 3138 + }, + { + "epoch": 43.60113586719091, + "grad_norm": 0.25448811054229736, + "learning_rate": 0.0006, + "loss": 3.658283233642578, + "step": 3139 + }, + { + "epoch": 43.615115771079076, + "grad_norm": 0.24313904345035553, + "learning_rate": 0.0006, + "loss": 3.6447594165802, + "step": 3140 + }, + { + "epoch": 43.62909567496723, + "grad_norm": 0.2332659363746643, + "learning_rate": 0.0006, + "loss": 3.625528573989868, + "step": 3141 + }, + { + "epoch": 43.643075578855395, + "grad_norm": 0.23222137987613678, + "learning_rate": 0.0006, + "loss": 3.6524429321289062, + "step": 3142 + }, + { + "epoch": 43.65705548274356, + "grad_norm": 0.2147051990032196, + "learning_rate": 0.0006, + "loss": 3.6517302989959717, + "step": 3143 + }, + { + "epoch": 43.671035386631715, + "grad_norm": 0.2464994341135025, + "learning_rate": 0.0006, + "loss": 3.654947519302368, + "step": 3144 + }, + { + "epoch": 43.68501529051988, + "grad_norm": 0.2365981936454773, + "learning_rate": 0.0006, + "loss": 3.638695240020752, + "step": 3145 + }, + { + "epoch": 43.69899519440804, + "grad_norm": 0.2325262874364853, + "learning_rate": 0.0006, + "loss": 3.6496055126190186, + "step": 3146 + }, + { + "epoch": 43.7129750982962, + "grad_norm": 0.2196085900068283, + "learning_rate": 0.0006, + "loss": 3.6323978900909424, + "step": 3147 + }, + { + "epoch": 43.72695500218436, + "grad_norm": 0.20404237508773804, + "learning_rate": 0.0006, + "loss": 3.6572763919830322, + "step": 3148 + }, + { + "epoch": 43.74093490607252, + "grad_norm": 0.2363257110118866, + "learning_rate": 0.0006, + "loss": 3.6347732543945312, + "step": 3149 + }, + { + "epoch": 43.75491480996068, + "grad_norm": 0.23671524226665497, + "learning_rate": 0.0006, + "loss": 3.650017023086548, + "step": 3150 + }, + { + "epoch": 43.768894713848844, + "grad_norm": 0.20892305672168732, + "learning_rate": 0.0006, + "loss": 3.638185977935791, + "step": 3151 + }, + { + "epoch": 43.782874617737, + "grad_norm": 0.18670055270195007, + "learning_rate": 0.0006, + "loss": 3.6647696495056152, + "step": 3152 + }, + { + "epoch": 43.796854521625164, + "grad_norm": 0.21818184852600098, + "learning_rate": 0.0006, + "loss": 3.663623332977295, + "step": 3153 + }, + { + "epoch": 43.81083442551333, + "grad_norm": 0.23472464084625244, + "learning_rate": 0.0006, + "loss": 3.650595188140869, + "step": 3154 + }, + { + "epoch": 43.824814329401484, + "grad_norm": 0.2266419678926468, + "learning_rate": 0.0006, + "loss": 3.6362059116363525, + "step": 3155 + }, + { + "epoch": 43.83879423328965, + "grad_norm": 0.2250787913799286, + "learning_rate": 0.0006, + "loss": 3.647970199584961, + "step": 3156 + }, + { + "epoch": 43.8527741371778, + "grad_norm": 0.21493776142597198, + "learning_rate": 0.0006, + "loss": 3.6510982513427734, + "step": 3157 + }, + { + "epoch": 43.86675404106597, + "grad_norm": 0.20783160626888275, + "learning_rate": 0.0006, + "loss": 3.654845714569092, + "step": 3158 + }, + { + "epoch": 43.88073394495413, + "grad_norm": 0.2222554087638855, + "learning_rate": 0.0006, + "loss": 3.6565685272216797, + "step": 3159 + }, + { + "epoch": 43.89471384884229, + "grad_norm": 0.2148049771785736, + "learning_rate": 0.0006, + "loss": 3.630779266357422, + "step": 3160 + }, + { + "epoch": 43.90869375273045, + "grad_norm": 0.2222086787223816, + "learning_rate": 0.0006, + "loss": 3.6312813758850098, + "step": 3161 + }, + { + "epoch": 43.92267365661861, + "grad_norm": 0.24049264192581177, + "learning_rate": 0.0006, + "loss": 3.6185736656188965, + "step": 3162 + }, + { + "epoch": 43.93665356050677, + "grad_norm": 0.2228843867778778, + "learning_rate": 0.0006, + "loss": 3.595583438873291, + "step": 3163 + }, + { + "epoch": 43.95063346439493, + "grad_norm": 0.20714408159255981, + "learning_rate": 0.0006, + "loss": 3.6649322509765625, + "step": 3164 + }, + { + "epoch": 43.964613368283096, + "grad_norm": 0.2048991471529007, + "learning_rate": 0.0006, + "loss": 3.6513710021972656, + "step": 3165 + }, + { + "epoch": 43.97859327217125, + "grad_norm": 0.21874114871025085, + "learning_rate": 0.0006, + "loss": 3.6471524238586426, + "step": 3166 + }, + { + "epoch": 43.992573176059416, + "grad_norm": 0.21309879422187805, + "learning_rate": 0.0006, + "loss": 3.647021770477295, + "step": 3167 + }, + { + "epoch": 44.0, + "grad_norm": 0.23717166483402252, + "learning_rate": 0.0006, + "loss": 3.6903820037841797, + "step": 3168 + }, + { + "epoch": 44.0, + "eval_loss": 3.9844837188720703, + "eval_runtime": 44.29, + "eval_samples_per_second": 55.137, + "eval_steps_per_second": 3.455, + "step": 3168 + }, + { + "epoch": 44.01397990388816, + "grad_norm": 0.21503832936286926, + "learning_rate": 0.0006, + "loss": 3.6054744720458984, + "step": 3169 + }, + { + "epoch": 44.02795980777632, + "grad_norm": 0.2289554923772812, + "learning_rate": 0.0006, + "loss": 3.6560556888580322, + "step": 3170 + }, + { + "epoch": 44.04193971166448, + "grad_norm": 0.24250416457653046, + "learning_rate": 0.0006, + "loss": 3.611820697784424, + "step": 3171 + }, + { + "epoch": 44.05591961555265, + "grad_norm": 0.2526668310165405, + "learning_rate": 0.0006, + "loss": 3.6273183822631836, + "step": 3172 + }, + { + "epoch": 44.0698995194408, + "grad_norm": 0.26702383160591125, + "learning_rate": 0.0006, + "loss": 3.5856852531433105, + "step": 3173 + }, + { + "epoch": 44.083879423328966, + "grad_norm": 0.2715195417404175, + "learning_rate": 0.0006, + "loss": 3.631045341491699, + "step": 3174 + }, + { + "epoch": 44.09785932721712, + "grad_norm": 0.3505614995956421, + "learning_rate": 0.0006, + "loss": 3.628720760345459, + "step": 3175 + }, + { + "epoch": 44.111839231105286, + "grad_norm": 0.2760702967643738, + "learning_rate": 0.0006, + "loss": 3.6283509731292725, + "step": 3176 + }, + { + "epoch": 44.12581913499345, + "grad_norm": 0.21105222404003143, + "learning_rate": 0.0006, + "loss": 3.6495566368103027, + "step": 3177 + }, + { + "epoch": 44.139799038881605, + "grad_norm": 0.2852860987186432, + "learning_rate": 0.0006, + "loss": 3.640768527984619, + "step": 3178 + }, + { + "epoch": 44.15377894276977, + "grad_norm": 0.2941005825996399, + "learning_rate": 0.0006, + "loss": 3.6303114891052246, + "step": 3179 + }, + { + "epoch": 44.16775884665793, + "grad_norm": 0.2792299687862396, + "learning_rate": 0.0006, + "loss": 3.6053574085235596, + "step": 3180 + }, + { + "epoch": 44.18173875054609, + "grad_norm": 0.23168638348579407, + "learning_rate": 0.0006, + "loss": 3.62430477142334, + "step": 3181 + }, + { + "epoch": 44.19571865443425, + "grad_norm": 0.23713921010494232, + "learning_rate": 0.0006, + "loss": 3.601106643676758, + "step": 3182 + }, + { + "epoch": 44.20969855832241, + "grad_norm": 0.23341049253940582, + "learning_rate": 0.0006, + "loss": 3.631762742996216, + "step": 3183 + }, + { + "epoch": 44.22367846221057, + "grad_norm": 0.23094508051872253, + "learning_rate": 0.0006, + "loss": 3.586683750152588, + "step": 3184 + }, + { + "epoch": 44.237658366098735, + "grad_norm": 0.24085712432861328, + "learning_rate": 0.0006, + "loss": 3.6251423358917236, + "step": 3185 + }, + { + "epoch": 44.25163826998689, + "grad_norm": 0.24999955296516418, + "learning_rate": 0.0006, + "loss": 3.6554198265075684, + "step": 3186 + }, + { + "epoch": 44.265618173875055, + "grad_norm": 0.21759621798992157, + "learning_rate": 0.0006, + "loss": 3.6249518394470215, + "step": 3187 + }, + { + "epoch": 44.27959807776322, + "grad_norm": 0.2490139901638031, + "learning_rate": 0.0006, + "loss": 3.6163341999053955, + "step": 3188 + }, + { + "epoch": 44.293577981651374, + "grad_norm": 0.23420892655849457, + "learning_rate": 0.0006, + "loss": 3.615469455718994, + "step": 3189 + }, + { + "epoch": 44.30755788553954, + "grad_norm": 0.2292138934135437, + "learning_rate": 0.0006, + "loss": 3.6085104942321777, + "step": 3190 + }, + { + "epoch": 44.3215377894277, + "grad_norm": 0.22595474123954773, + "learning_rate": 0.0006, + "loss": 3.6317405700683594, + "step": 3191 + }, + { + "epoch": 44.33551769331586, + "grad_norm": 0.22418338060379028, + "learning_rate": 0.0006, + "loss": 3.6287777423858643, + "step": 3192 + }, + { + "epoch": 44.34949759720402, + "grad_norm": 0.2453135848045349, + "learning_rate": 0.0006, + "loss": 3.6228437423706055, + "step": 3193 + }, + { + "epoch": 44.36347750109218, + "grad_norm": 0.2627771198749542, + "learning_rate": 0.0006, + "loss": 3.6581034660339355, + "step": 3194 + }, + { + "epoch": 44.37745740498034, + "grad_norm": 0.24114494025707245, + "learning_rate": 0.0006, + "loss": 3.653505563735962, + "step": 3195 + }, + { + "epoch": 44.391437308868504, + "grad_norm": 0.2103721648454666, + "learning_rate": 0.0006, + "loss": 3.5698580741882324, + "step": 3196 + }, + { + "epoch": 44.40541721275666, + "grad_norm": 0.21172291040420532, + "learning_rate": 0.0006, + "loss": 3.573453426361084, + "step": 3197 + }, + { + "epoch": 44.419397116644824, + "grad_norm": 0.20298106968402863, + "learning_rate": 0.0006, + "loss": 3.6350207328796387, + "step": 3198 + }, + { + "epoch": 44.43337702053299, + "grad_norm": 0.2029009759426117, + "learning_rate": 0.0006, + "loss": 3.6025917530059814, + "step": 3199 + }, + { + "epoch": 44.44735692442114, + "grad_norm": 0.18960542976856232, + "learning_rate": 0.0006, + "loss": 3.625028133392334, + "step": 3200 + }, + { + "epoch": 44.46133682830931, + "grad_norm": 0.20758579671382904, + "learning_rate": 0.0006, + "loss": 3.647071123123169, + "step": 3201 + }, + { + "epoch": 44.47531673219746, + "grad_norm": 0.21896769106388092, + "learning_rate": 0.0006, + "loss": 3.6481196880340576, + "step": 3202 + }, + { + "epoch": 44.489296636085626, + "grad_norm": 0.20817387104034424, + "learning_rate": 0.0006, + "loss": 3.629366874694824, + "step": 3203 + }, + { + "epoch": 44.50327653997379, + "grad_norm": 0.2099488228559494, + "learning_rate": 0.0006, + "loss": 3.6757798194885254, + "step": 3204 + }, + { + "epoch": 44.517256443861946, + "grad_norm": 0.21376627683639526, + "learning_rate": 0.0006, + "loss": 3.638324737548828, + "step": 3205 + }, + { + "epoch": 44.53123634775011, + "grad_norm": 0.19089072942733765, + "learning_rate": 0.0006, + "loss": 3.6497435569763184, + "step": 3206 + }, + { + "epoch": 44.54521625163827, + "grad_norm": 0.20489120483398438, + "learning_rate": 0.0006, + "loss": 3.634019374847412, + "step": 3207 + }, + { + "epoch": 44.55919615552643, + "grad_norm": 0.21991780400276184, + "learning_rate": 0.0006, + "loss": 3.6255834102630615, + "step": 3208 + }, + { + "epoch": 44.57317605941459, + "grad_norm": 0.23417581617832184, + "learning_rate": 0.0006, + "loss": 3.631927728652954, + "step": 3209 + }, + { + "epoch": 44.58715596330275, + "grad_norm": 0.22819049656391144, + "learning_rate": 0.0006, + "loss": 3.640167713165283, + "step": 3210 + }, + { + "epoch": 44.60113586719091, + "grad_norm": 0.21443316340446472, + "learning_rate": 0.0006, + "loss": 3.645709991455078, + "step": 3211 + }, + { + "epoch": 44.615115771079076, + "grad_norm": 0.19252653419971466, + "learning_rate": 0.0006, + "loss": 3.591294288635254, + "step": 3212 + }, + { + "epoch": 44.62909567496723, + "grad_norm": 0.18925397098064423, + "learning_rate": 0.0006, + "loss": 3.6163625717163086, + "step": 3213 + }, + { + "epoch": 44.643075578855395, + "grad_norm": 0.21605387330055237, + "learning_rate": 0.0006, + "loss": 3.6826887130737305, + "step": 3214 + }, + { + "epoch": 44.65705548274356, + "grad_norm": 0.21301978826522827, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 3215 + }, + { + "epoch": 44.671035386631715, + "grad_norm": 0.20065832138061523, + "learning_rate": 0.0006, + "loss": 3.648879289627075, + "step": 3216 + }, + { + "epoch": 44.68501529051988, + "grad_norm": 0.21413499116897583, + "learning_rate": 0.0006, + "loss": 3.6327264308929443, + "step": 3217 + }, + { + "epoch": 44.69899519440804, + "grad_norm": 0.22769849002361298, + "learning_rate": 0.0006, + "loss": 3.6486430168151855, + "step": 3218 + }, + { + "epoch": 44.7129750982962, + "grad_norm": 0.227064847946167, + "learning_rate": 0.0006, + "loss": 3.633342981338501, + "step": 3219 + }, + { + "epoch": 44.72695500218436, + "grad_norm": 0.21335656940937042, + "learning_rate": 0.0006, + "loss": 3.648621082305908, + "step": 3220 + }, + { + "epoch": 44.74093490607252, + "grad_norm": 0.2085563838481903, + "learning_rate": 0.0006, + "loss": 3.647826671600342, + "step": 3221 + }, + { + "epoch": 44.75491480996068, + "grad_norm": 0.19203904271125793, + "learning_rate": 0.0006, + "loss": 3.6296122074127197, + "step": 3222 + }, + { + "epoch": 44.768894713848844, + "grad_norm": 0.1969112604856491, + "learning_rate": 0.0006, + "loss": 3.6477179527282715, + "step": 3223 + }, + { + "epoch": 44.782874617737, + "grad_norm": 0.21630392968654633, + "learning_rate": 0.0006, + "loss": 3.628805637359619, + "step": 3224 + }, + { + "epoch": 44.796854521625164, + "grad_norm": 0.20641647279262543, + "learning_rate": 0.0006, + "loss": 3.650993824005127, + "step": 3225 + }, + { + "epoch": 44.81083442551333, + "grad_norm": 0.1954173892736435, + "learning_rate": 0.0006, + "loss": 3.6362831592559814, + "step": 3226 + }, + { + "epoch": 44.824814329401484, + "grad_norm": 0.20479747653007507, + "learning_rate": 0.0006, + "loss": 3.6467390060424805, + "step": 3227 + }, + { + "epoch": 44.83879423328965, + "grad_norm": 0.20502690970897675, + "learning_rate": 0.0006, + "loss": 3.6260130405426025, + "step": 3228 + }, + { + "epoch": 44.8527741371778, + "grad_norm": 0.20348094403743744, + "learning_rate": 0.0006, + "loss": 3.6836767196655273, + "step": 3229 + }, + { + "epoch": 44.86675404106597, + "grad_norm": 0.18748269975185394, + "learning_rate": 0.0006, + "loss": 3.610104560852051, + "step": 3230 + }, + { + "epoch": 44.88073394495413, + "grad_norm": 0.18822219967842102, + "learning_rate": 0.0006, + "loss": 3.61354398727417, + "step": 3231 + }, + { + "epoch": 44.89471384884229, + "grad_norm": 0.20972031354904175, + "learning_rate": 0.0006, + "loss": 3.644336700439453, + "step": 3232 + }, + { + "epoch": 44.90869375273045, + "grad_norm": 0.2013155072927475, + "learning_rate": 0.0006, + "loss": 3.659287929534912, + "step": 3233 + }, + { + "epoch": 44.92267365661861, + "grad_norm": 0.2056475579738617, + "learning_rate": 0.0006, + "loss": 3.6545677185058594, + "step": 3234 + }, + { + "epoch": 44.93665356050677, + "grad_norm": 0.2104482203722, + "learning_rate": 0.0006, + "loss": 3.6094017028808594, + "step": 3235 + }, + { + "epoch": 44.95063346439493, + "grad_norm": 0.1993035078048706, + "learning_rate": 0.0006, + "loss": 3.6209053993225098, + "step": 3236 + }, + { + "epoch": 44.964613368283096, + "grad_norm": 0.1883099526166916, + "learning_rate": 0.0006, + "loss": 3.6011457443237305, + "step": 3237 + }, + { + "epoch": 44.97859327217125, + "grad_norm": 0.1927674412727356, + "learning_rate": 0.0006, + "loss": 3.606609344482422, + "step": 3238 + }, + { + "epoch": 44.992573176059416, + "grad_norm": 0.1878899335861206, + "learning_rate": 0.0006, + "loss": 3.6701109409332275, + "step": 3239 + }, + { + "epoch": 45.0, + "grad_norm": 0.2237395942211151, + "learning_rate": 0.0006, + "loss": 3.6617302894592285, + "step": 3240 + }, + { + "epoch": 45.0, + "eval_loss": 3.9812564849853516, + "eval_runtime": 44.8635, + "eval_samples_per_second": 54.432, + "eval_steps_per_second": 3.41, + "step": 3240 + }, + { + "epoch": 45.01397990388816, + "grad_norm": 0.21368487179279327, + "learning_rate": 0.0006, + "loss": 3.599107265472412, + "step": 3241 + }, + { + "epoch": 45.02795980777632, + "grad_norm": 0.2234211564064026, + "learning_rate": 0.0006, + "loss": 3.5943236351013184, + "step": 3242 + }, + { + "epoch": 45.04193971166448, + "grad_norm": 0.2222544252872467, + "learning_rate": 0.0006, + "loss": 3.6152291297912598, + "step": 3243 + }, + { + "epoch": 45.05591961555265, + "grad_norm": 0.24686792492866516, + "learning_rate": 0.0006, + "loss": 3.6006085872650146, + "step": 3244 + }, + { + "epoch": 45.0698995194408, + "grad_norm": 0.24634984135627747, + "learning_rate": 0.0006, + "loss": 3.6023471355438232, + "step": 3245 + }, + { + "epoch": 45.083879423328966, + "grad_norm": 0.2150750756263733, + "learning_rate": 0.0006, + "loss": 3.5690598487854004, + "step": 3246 + }, + { + "epoch": 45.09785932721712, + "grad_norm": 0.196721151471138, + "learning_rate": 0.0006, + "loss": 3.592653751373291, + "step": 3247 + }, + { + "epoch": 45.111839231105286, + "grad_norm": 0.21874476969242096, + "learning_rate": 0.0006, + "loss": 3.586243152618408, + "step": 3248 + }, + { + "epoch": 45.12581913499345, + "grad_norm": 0.21021611988544464, + "learning_rate": 0.0006, + "loss": 3.599384307861328, + "step": 3249 + }, + { + "epoch": 45.139799038881605, + "grad_norm": 0.19754183292388916, + "learning_rate": 0.0006, + "loss": 3.623816967010498, + "step": 3250 + }, + { + "epoch": 45.15377894276977, + "grad_norm": 0.21218672394752502, + "learning_rate": 0.0006, + "loss": 3.5901236534118652, + "step": 3251 + }, + { + "epoch": 45.16775884665793, + "grad_norm": 0.23569360375404358, + "learning_rate": 0.0006, + "loss": 3.600029945373535, + "step": 3252 + }, + { + "epoch": 45.18173875054609, + "grad_norm": 0.25429826974868774, + "learning_rate": 0.0006, + "loss": 3.607773542404175, + "step": 3253 + }, + { + "epoch": 45.19571865443425, + "grad_norm": 0.23416805267333984, + "learning_rate": 0.0006, + "loss": 3.63248348236084, + "step": 3254 + }, + { + "epoch": 45.20969855832241, + "grad_norm": 0.20821864902973175, + "learning_rate": 0.0006, + "loss": 3.641927719116211, + "step": 3255 + }, + { + "epoch": 45.22367846221057, + "grad_norm": 0.21849380433559418, + "learning_rate": 0.0006, + "loss": 3.665098190307617, + "step": 3256 + }, + { + "epoch": 45.237658366098735, + "grad_norm": 0.22939491271972656, + "learning_rate": 0.0006, + "loss": 3.6106104850769043, + "step": 3257 + }, + { + "epoch": 45.25163826998689, + "grad_norm": 0.24144501984119415, + "learning_rate": 0.0006, + "loss": 3.5872416496276855, + "step": 3258 + }, + { + "epoch": 45.265618173875055, + "grad_norm": 0.21790480613708496, + "learning_rate": 0.0006, + "loss": 3.6268889904022217, + "step": 3259 + }, + { + "epoch": 45.27959807776322, + "grad_norm": 0.22702264785766602, + "learning_rate": 0.0006, + "loss": 3.5972542762756348, + "step": 3260 + }, + { + "epoch": 45.293577981651374, + "grad_norm": 0.22465437650680542, + "learning_rate": 0.0006, + "loss": 3.6339592933654785, + "step": 3261 + }, + { + "epoch": 45.30755788553954, + "grad_norm": 0.21804460883140564, + "learning_rate": 0.0006, + "loss": 3.6062779426574707, + "step": 3262 + }, + { + "epoch": 45.3215377894277, + "grad_norm": 0.1985616534948349, + "learning_rate": 0.0006, + "loss": 3.629815101623535, + "step": 3263 + }, + { + "epoch": 45.33551769331586, + "grad_norm": 0.22264975309371948, + "learning_rate": 0.0006, + "loss": 3.631214141845703, + "step": 3264 + }, + { + "epoch": 45.34949759720402, + "grad_norm": 0.22178539633750916, + "learning_rate": 0.0006, + "loss": 3.620854377746582, + "step": 3265 + }, + { + "epoch": 45.36347750109218, + "grad_norm": 0.22392240166664124, + "learning_rate": 0.0006, + "loss": 3.6611738204956055, + "step": 3266 + }, + { + "epoch": 45.37745740498034, + "grad_norm": 0.2178916484117508, + "learning_rate": 0.0006, + "loss": 3.639893054962158, + "step": 3267 + }, + { + "epoch": 45.391437308868504, + "grad_norm": 0.2173885703086853, + "learning_rate": 0.0006, + "loss": 3.611750364303589, + "step": 3268 + }, + { + "epoch": 45.40541721275666, + "grad_norm": 0.2107069045305252, + "learning_rate": 0.0006, + "loss": 3.595181465148926, + "step": 3269 + }, + { + "epoch": 45.419397116644824, + "grad_norm": 0.19623015820980072, + "learning_rate": 0.0006, + "loss": 3.6096351146698, + "step": 3270 + }, + { + "epoch": 45.43337702053299, + "grad_norm": 0.23091304302215576, + "learning_rate": 0.0006, + "loss": 3.603667974472046, + "step": 3271 + }, + { + "epoch": 45.44735692442114, + "grad_norm": 0.22909007966518402, + "learning_rate": 0.0006, + "loss": 3.62846040725708, + "step": 3272 + }, + { + "epoch": 45.46133682830931, + "grad_norm": 0.2104928195476532, + "learning_rate": 0.0006, + "loss": 3.6543164253234863, + "step": 3273 + }, + { + "epoch": 45.47531673219746, + "grad_norm": 0.22994203865528107, + "learning_rate": 0.0006, + "loss": 3.621878147125244, + "step": 3274 + }, + { + "epoch": 45.489296636085626, + "grad_norm": 0.21652749180793762, + "learning_rate": 0.0006, + "loss": 3.6095705032348633, + "step": 3275 + }, + { + "epoch": 45.50327653997379, + "grad_norm": 0.20125073194503784, + "learning_rate": 0.0006, + "loss": 3.6213903427124023, + "step": 3276 + }, + { + "epoch": 45.517256443861946, + "grad_norm": 0.19995734095573425, + "learning_rate": 0.0006, + "loss": 3.6526503562927246, + "step": 3277 + }, + { + "epoch": 45.53123634775011, + "grad_norm": 0.2071387618780136, + "learning_rate": 0.0006, + "loss": 3.626208782196045, + "step": 3278 + }, + { + "epoch": 45.54521625163827, + "grad_norm": 0.222015842795372, + "learning_rate": 0.0006, + "loss": 3.61144757270813, + "step": 3279 + }, + { + "epoch": 45.55919615552643, + "grad_norm": 0.20780639350414276, + "learning_rate": 0.0006, + "loss": 3.64092755317688, + "step": 3280 + }, + { + "epoch": 45.57317605941459, + "grad_norm": 0.19297364354133606, + "learning_rate": 0.0006, + "loss": 3.6308364868164062, + "step": 3281 + }, + { + "epoch": 45.58715596330275, + "grad_norm": 0.1928786337375641, + "learning_rate": 0.0006, + "loss": 3.6258254051208496, + "step": 3282 + }, + { + "epoch": 45.60113586719091, + "grad_norm": 0.1940007209777832, + "learning_rate": 0.0006, + "loss": 3.622849464416504, + "step": 3283 + }, + { + "epoch": 45.615115771079076, + "grad_norm": 0.19643044471740723, + "learning_rate": 0.0006, + "loss": 3.6461117267608643, + "step": 3284 + }, + { + "epoch": 45.62909567496723, + "grad_norm": 0.19996654987335205, + "learning_rate": 0.0006, + "loss": 3.61572265625, + "step": 3285 + }, + { + "epoch": 45.643075578855395, + "grad_norm": 0.20202603936195374, + "learning_rate": 0.0006, + "loss": 3.610734462738037, + "step": 3286 + }, + { + "epoch": 45.65705548274356, + "grad_norm": 0.19249361753463745, + "learning_rate": 0.0006, + "loss": 3.607048511505127, + "step": 3287 + }, + { + "epoch": 45.671035386631715, + "grad_norm": 0.1894780397415161, + "learning_rate": 0.0006, + "loss": 3.6450905799865723, + "step": 3288 + }, + { + "epoch": 45.68501529051988, + "grad_norm": 0.19901636242866516, + "learning_rate": 0.0006, + "loss": 3.6313018798828125, + "step": 3289 + }, + { + "epoch": 45.69899519440804, + "grad_norm": 0.1875065118074417, + "learning_rate": 0.0006, + "loss": 3.641326427459717, + "step": 3290 + }, + { + "epoch": 45.7129750982962, + "grad_norm": 0.19832095503807068, + "learning_rate": 0.0006, + "loss": 3.6612308025360107, + "step": 3291 + }, + { + "epoch": 45.72695500218436, + "grad_norm": 0.20353806018829346, + "learning_rate": 0.0006, + "loss": 3.623152017593384, + "step": 3292 + }, + { + "epoch": 45.74093490607252, + "grad_norm": 0.1984023153781891, + "learning_rate": 0.0006, + "loss": 3.627358913421631, + "step": 3293 + }, + { + "epoch": 45.75491480996068, + "grad_norm": 0.2002221643924713, + "learning_rate": 0.0006, + "loss": 3.6334757804870605, + "step": 3294 + }, + { + "epoch": 45.768894713848844, + "grad_norm": 0.21099092066287994, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3295 + }, + { + "epoch": 45.782874617737, + "grad_norm": 0.19109416007995605, + "learning_rate": 0.0006, + "loss": 3.62795352935791, + "step": 3296 + }, + { + "epoch": 45.796854521625164, + "grad_norm": 0.18424192070960999, + "learning_rate": 0.0006, + "loss": 3.6151700019836426, + "step": 3297 + }, + { + "epoch": 45.81083442551333, + "grad_norm": 0.20823849737644196, + "learning_rate": 0.0006, + "loss": 3.641907215118408, + "step": 3298 + }, + { + "epoch": 45.824814329401484, + "grad_norm": 0.21407285332679749, + "learning_rate": 0.0006, + "loss": 3.6430726051330566, + "step": 3299 + }, + { + "epoch": 45.83879423328965, + "grad_norm": 0.23493780195713043, + "learning_rate": 0.0006, + "loss": 3.610065460205078, + "step": 3300 + }, + { + "epoch": 45.8527741371778, + "grad_norm": 0.21910642087459564, + "learning_rate": 0.0006, + "loss": 3.630603313446045, + "step": 3301 + }, + { + "epoch": 45.86675404106597, + "grad_norm": 0.1838075965642929, + "learning_rate": 0.0006, + "loss": 3.634315013885498, + "step": 3302 + }, + { + "epoch": 45.88073394495413, + "grad_norm": 0.22131477296352386, + "learning_rate": 0.0006, + "loss": 3.6142020225524902, + "step": 3303 + }, + { + "epoch": 45.89471384884229, + "grad_norm": 0.2497209906578064, + "learning_rate": 0.0006, + "loss": 3.689103126525879, + "step": 3304 + }, + { + "epoch": 45.90869375273045, + "grad_norm": 0.24403175711631775, + "learning_rate": 0.0006, + "loss": 3.6321184635162354, + "step": 3305 + }, + { + "epoch": 45.92267365661861, + "grad_norm": 0.22527103126049042, + "learning_rate": 0.0006, + "loss": 3.6486921310424805, + "step": 3306 + }, + { + "epoch": 45.93665356050677, + "grad_norm": 0.20127955079078674, + "learning_rate": 0.0006, + "loss": 3.6109299659729004, + "step": 3307 + }, + { + "epoch": 45.95063346439493, + "grad_norm": 0.18997317552566528, + "learning_rate": 0.0006, + "loss": 3.6157617568969727, + "step": 3308 + }, + { + "epoch": 45.964613368283096, + "grad_norm": 0.19921870529651642, + "learning_rate": 0.0006, + "loss": 3.691776990890503, + "step": 3309 + }, + { + "epoch": 45.97859327217125, + "grad_norm": 0.2124646008014679, + "learning_rate": 0.0006, + "loss": 3.61795711517334, + "step": 3310 + }, + { + "epoch": 45.992573176059416, + "grad_norm": 0.20002500712871552, + "learning_rate": 0.0006, + "loss": 3.6266353130340576, + "step": 3311 + }, + { + "epoch": 46.0, + "grad_norm": 0.22992220520973206, + "learning_rate": 0.0006, + "loss": 3.647242784500122, + "step": 3312 + }, + { + "epoch": 46.0, + "eval_loss": 3.9855220317840576, + "eval_runtime": 44.9108, + "eval_samples_per_second": 54.374, + "eval_steps_per_second": 3.407, + "step": 3312 + }, + { + "epoch": 46.01397990388816, + "grad_norm": 0.1976146101951599, + "learning_rate": 0.0006, + "loss": 3.5675041675567627, + "step": 3313 + }, + { + "epoch": 46.02795980777632, + "grad_norm": 0.2238360494375229, + "learning_rate": 0.0006, + "loss": 3.6077466011047363, + "step": 3314 + }, + { + "epoch": 46.04193971166448, + "grad_norm": 0.288669228553772, + "learning_rate": 0.0006, + "loss": 3.589958667755127, + "step": 3315 + }, + { + "epoch": 46.05591961555265, + "grad_norm": 0.30626827478408813, + "learning_rate": 0.0006, + "loss": 3.604401111602783, + "step": 3316 + }, + { + "epoch": 46.0698995194408, + "grad_norm": 0.2721095681190491, + "learning_rate": 0.0006, + "loss": 3.620197296142578, + "step": 3317 + }, + { + "epoch": 46.083879423328966, + "grad_norm": 0.2152107059955597, + "learning_rate": 0.0006, + "loss": 3.607327938079834, + "step": 3318 + }, + { + "epoch": 46.09785932721712, + "grad_norm": 0.2205267995595932, + "learning_rate": 0.0006, + "loss": 3.6020898818969727, + "step": 3319 + }, + { + "epoch": 46.111839231105286, + "grad_norm": 0.25419551134109497, + "learning_rate": 0.0006, + "loss": 3.59277606010437, + "step": 3320 + }, + { + "epoch": 46.12581913499345, + "grad_norm": 0.2379811704158783, + "learning_rate": 0.0006, + "loss": 3.560422897338867, + "step": 3321 + }, + { + "epoch": 46.139799038881605, + "grad_norm": 0.20928747951984406, + "learning_rate": 0.0006, + "loss": 3.6373965740203857, + "step": 3322 + }, + { + "epoch": 46.15377894276977, + "grad_norm": 0.21654292941093445, + "learning_rate": 0.0006, + "loss": 3.620784282684326, + "step": 3323 + }, + { + "epoch": 46.16775884665793, + "grad_norm": 0.22994576394557953, + "learning_rate": 0.0006, + "loss": 3.589960813522339, + "step": 3324 + }, + { + "epoch": 46.18173875054609, + "grad_norm": 0.24989335238933563, + "learning_rate": 0.0006, + "loss": 3.599091053009033, + "step": 3325 + }, + { + "epoch": 46.19571865443425, + "grad_norm": 0.27068355679512024, + "learning_rate": 0.0006, + "loss": 3.5933146476745605, + "step": 3326 + }, + { + "epoch": 46.20969855832241, + "grad_norm": 0.2581503391265869, + "learning_rate": 0.0006, + "loss": 3.5935447216033936, + "step": 3327 + }, + { + "epoch": 46.22367846221057, + "grad_norm": 0.23368583619594574, + "learning_rate": 0.0006, + "loss": 3.6120412349700928, + "step": 3328 + }, + { + "epoch": 46.237658366098735, + "grad_norm": 0.21808452904224396, + "learning_rate": 0.0006, + "loss": 3.6155190467834473, + "step": 3329 + }, + { + "epoch": 46.25163826998689, + "grad_norm": 0.2152830809354782, + "learning_rate": 0.0006, + "loss": 3.6039974689483643, + "step": 3330 + }, + { + "epoch": 46.265618173875055, + "grad_norm": 0.20902983844280243, + "learning_rate": 0.0006, + "loss": 3.586416721343994, + "step": 3331 + }, + { + "epoch": 46.27959807776322, + "grad_norm": 0.21693682670593262, + "learning_rate": 0.0006, + "loss": 3.601595401763916, + "step": 3332 + }, + { + "epoch": 46.293577981651374, + "grad_norm": 0.21157346665859222, + "learning_rate": 0.0006, + "loss": 3.619825601577759, + "step": 3333 + }, + { + "epoch": 46.30755788553954, + "grad_norm": 0.19628529250621796, + "learning_rate": 0.0006, + "loss": 3.5845298767089844, + "step": 3334 + }, + { + "epoch": 46.3215377894277, + "grad_norm": 0.19599373638629913, + "learning_rate": 0.0006, + "loss": 3.614483594894409, + "step": 3335 + }, + { + "epoch": 46.33551769331586, + "grad_norm": 0.21777382493019104, + "learning_rate": 0.0006, + "loss": 3.5865678787231445, + "step": 3336 + }, + { + "epoch": 46.34949759720402, + "grad_norm": 0.24697323143482208, + "learning_rate": 0.0006, + "loss": 3.6168298721313477, + "step": 3337 + }, + { + "epoch": 46.36347750109218, + "grad_norm": 0.29521632194519043, + "learning_rate": 0.0006, + "loss": 3.627875804901123, + "step": 3338 + }, + { + "epoch": 46.37745740498034, + "grad_norm": 0.2548002004623413, + "learning_rate": 0.0006, + "loss": 3.6286001205444336, + "step": 3339 + }, + { + "epoch": 46.391437308868504, + "grad_norm": 0.20501002669334412, + "learning_rate": 0.0006, + "loss": 3.625035524368286, + "step": 3340 + }, + { + "epoch": 46.40541721275666, + "grad_norm": 0.21849584579467773, + "learning_rate": 0.0006, + "loss": 3.621872901916504, + "step": 3341 + }, + { + "epoch": 46.419397116644824, + "grad_norm": 0.22302033007144928, + "learning_rate": 0.0006, + "loss": 3.6088266372680664, + "step": 3342 + }, + { + "epoch": 46.43337702053299, + "grad_norm": 0.21138787269592285, + "learning_rate": 0.0006, + "loss": 3.6211094856262207, + "step": 3343 + }, + { + "epoch": 46.44735692442114, + "grad_norm": 0.22372713685035706, + "learning_rate": 0.0006, + "loss": 3.5799427032470703, + "step": 3344 + }, + { + "epoch": 46.46133682830931, + "grad_norm": 0.22019316256046295, + "learning_rate": 0.0006, + "loss": 3.616044044494629, + "step": 3345 + }, + { + "epoch": 46.47531673219746, + "grad_norm": 0.21947625279426575, + "learning_rate": 0.0006, + "loss": 3.613643169403076, + "step": 3346 + }, + { + "epoch": 46.489296636085626, + "grad_norm": 0.21935684978961945, + "learning_rate": 0.0006, + "loss": 3.6255440711975098, + "step": 3347 + }, + { + "epoch": 46.50327653997379, + "grad_norm": 0.20366479456424713, + "learning_rate": 0.0006, + "loss": 3.613892078399658, + "step": 3348 + }, + { + "epoch": 46.517256443861946, + "grad_norm": 0.21755267679691315, + "learning_rate": 0.0006, + "loss": 3.617886543273926, + "step": 3349 + }, + { + "epoch": 46.53123634775011, + "grad_norm": 0.20023910701274872, + "learning_rate": 0.0006, + "loss": 3.6172280311584473, + "step": 3350 + }, + { + "epoch": 46.54521625163827, + "grad_norm": 0.20375007390975952, + "learning_rate": 0.0006, + "loss": 3.595829486846924, + "step": 3351 + }, + { + "epoch": 46.55919615552643, + "grad_norm": 0.21125391125679016, + "learning_rate": 0.0006, + "loss": 3.632533550262451, + "step": 3352 + }, + { + "epoch": 46.57317605941459, + "grad_norm": 0.2359670102596283, + "learning_rate": 0.0006, + "loss": 3.597811222076416, + "step": 3353 + }, + { + "epoch": 46.58715596330275, + "grad_norm": 0.21696777641773224, + "learning_rate": 0.0006, + "loss": 3.627127170562744, + "step": 3354 + }, + { + "epoch": 46.60113586719091, + "grad_norm": 0.21501564979553223, + "learning_rate": 0.0006, + "loss": 3.630887985229492, + "step": 3355 + }, + { + "epoch": 46.615115771079076, + "grad_norm": 0.21446822583675385, + "learning_rate": 0.0006, + "loss": 3.6075234413146973, + "step": 3356 + }, + { + "epoch": 46.62909567496723, + "grad_norm": 0.21508967876434326, + "learning_rate": 0.0006, + "loss": 3.626603603363037, + "step": 3357 + }, + { + "epoch": 46.643075578855395, + "grad_norm": 0.19969215989112854, + "learning_rate": 0.0006, + "loss": 3.6160733699798584, + "step": 3358 + }, + { + "epoch": 46.65705548274356, + "grad_norm": 0.19982007145881653, + "learning_rate": 0.0006, + "loss": 3.632960319519043, + "step": 3359 + }, + { + "epoch": 46.671035386631715, + "grad_norm": 0.1981230527162552, + "learning_rate": 0.0006, + "loss": 3.608591079711914, + "step": 3360 + }, + { + "epoch": 46.68501529051988, + "grad_norm": 0.19948643445968628, + "learning_rate": 0.0006, + "loss": 3.6100947856903076, + "step": 3361 + }, + { + "epoch": 46.69899519440804, + "grad_norm": 0.18967196345329285, + "learning_rate": 0.0006, + "loss": 3.6203439235687256, + "step": 3362 + }, + { + "epoch": 46.7129750982962, + "grad_norm": 0.20035311579704285, + "learning_rate": 0.0006, + "loss": 3.64508056640625, + "step": 3363 + }, + { + "epoch": 46.72695500218436, + "grad_norm": 0.21049824357032776, + "learning_rate": 0.0006, + "loss": 3.620095729827881, + "step": 3364 + }, + { + "epoch": 46.74093490607252, + "grad_norm": 0.21411995589733124, + "learning_rate": 0.0006, + "loss": 3.650815963745117, + "step": 3365 + }, + { + "epoch": 46.75491480996068, + "grad_norm": 0.18666061758995056, + "learning_rate": 0.0006, + "loss": 3.625699758529663, + "step": 3366 + }, + { + "epoch": 46.768894713848844, + "grad_norm": 0.1927071362733841, + "learning_rate": 0.0006, + "loss": 3.6165151596069336, + "step": 3367 + }, + { + "epoch": 46.782874617737, + "grad_norm": 0.2063879817724228, + "learning_rate": 0.0006, + "loss": 3.6182332038879395, + "step": 3368 + }, + { + "epoch": 46.796854521625164, + "grad_norm": 0.19215327501296997, + "learning_rate": 0.0006, + "loss": 3.607239246368408, + "step": 3369 + }, + { + "epoch": 46.81083442551333, + "grad_norm": 0.2074592262506485, + "learning_rate": 0.0006, + "loss": 3.624856948852539, + "step": 3370 + }, + { + "epoch": 46.824814329401484, + "grad_norm": 0.2184106856584549, + "learning_rate": 0.0006, + "loss": 3.628757953643799, + "step": 3371 + }, + { + "epoch": 46.83879423328965, + "grad_norm": 0.2203136682510376, + "learning_rate": 0.0006, + "loss": 3.625958204269409, + "step": 3372 + }, + { + "epoch": 46.8527741371778, + "grad_norm": 0.21920061111450195, + "learning_rate": 0.0006, + "loss": 3.6060733795166016, + "step": 3373 + }, + { + "epoch": 46.86675404106597, + "grad_norm": 0.2122412472963333, + "learning_rate": 0.0006, + "loss": 3.6126952171325684, + "step": 3374 + }, + { + "epoch": 46.88073394495413, + "grad_norm": 0.1971784383058548, + "learning_rate": 0.0006, + "loss": 3.637129783630371, + "step": 3375 + }, + { + "epoch": 46.89471384884229, + "grad_norm": 0.20824873447418213, + "learning_rate": 0.0006, + "loss": 3.62868070602417, + "step": 3376 + }, + { + "epoch": 46.90869375273045, + "grad_norm": 0.20157678425312042, + "learning_rate": 0.0006, + "loss": 3.6321873664855957, + "step": 3377 + }, + { + "epoch": 46.92267365661861, + "grad_norm": 0.1958925426006317, + "learning_rate": 0.0006, + "loss": 3.6513354778289795, + "step": 3378 + }, + { + "epoch": 46.93665356050677, + "grad_norm": 0.1969553828239441, + "learning_rate": 0.0006, + "loss": 3.6346323490142822, + "step": 3379 + }, + { + "epoch": 46.95063346439493, + "grad_norm": 0.19311924278736115, + "learning_rate": 0.0006, + "loss": 3.6673245429992676, + "step": 3380 + }, + { + "epoch": 46.964613368283096, + "grad_norm": 0.20341862738132477, + "learning_rate": 0.0006, + "loss": 3.680025339126587, + "step": 3381 + }, + { + "epoch": 46.97859327217125, + "grad_norm": 0.20667442679405212, + "learning_rate": 0.0006, + "loss": 3.632290840148926, + "step": 3382 + }, + { + "epoch": 46.992573176059416, + "grad_norm": 0.19141609966754913, + "learning_rate": 0.0006, + "loss": 3.659360647201538, + "step": 3383 + }, + { + "epoch": 47.0, + "grad_norm": 0.20981188118457794, + "learning_rate": 0.0006, + "loss": 3.653548240661621, + "step": 3384 + }, + { + "epoch": 47.0, + "eval_loss": 3.9833984375, + "eval_runtime": 44.4693, + "eval_samples_per_second": 54.914, + "eval_steps_per_second": 3.441, + "step": 3384 + }, + { + "epoch": 47.01397990388816, + "grad_norm": 0.1958128660917282, + "learning_rate": 0.0006, + "loss": 3.5778727531433105, + "step": 3385 + }, + { + "epoch": 47.02795980777632, + "grad_norm": 0.19728390872478485, + "learning_rate": 0.0006, + "loss": 3.5827393531799316, + "step": 3386 + }, + { + "epoch": 47.04193971166448, + "grad_norm": 0.18564026057720184, + "learning_rate": 0.0006, + "loss": 3.573071002960205, + "step": 3387 + }, + { + "epoch": 47.05591961555265, + "grad_norm": 0.20563258230686188, + "learning_rate": 0.0006, + "loss": 3.564330577850342, + "step": 3388 + }, + { + "epoch": 47.0698995194408, + "grad_norm": 0.21382158994674683, + "learning_rate": 0.0006, + "loss": 3.5976946353912354, + "step": 3389 + }, + { + "epoch": 47.083879423328966, + "grad_norm": 0.2383693903684616, + "learning_rate": 0.0006, + "loss": 3.5970897674560547, + "step": 3390 + }, + { + "epoch": 47.09785932721712, + "grad_norm": 0.24709449708461761, + "learning_rate": 0.0006, + "loss": 3.613409996032715, + "step": 3391 + }, + { + "epoch": 47.111839231105286, + "grad_norm": 0.2329784333705902, + "learning_rate": 0.0006, + "loss": 3.571023464202881, + "step": 3392 + }, + { + "epoch": 47.12581913499345, + "grad_norm": 0.2096954584121704, + "learning_rate": 0.0006, + "loss": 3.573697090148926, + "step": 3393 + }, + { + "epoch": 47.139799038881605, + "grad_norm": 0.21630050241947174, + "learning_rate": 0.0006, + "loss": 3.6085095405578613, + "step": 3394 + }, + { + "epoch": 47.15377894276977, + "grad_norm": 0.22828878462314606, + "learning_rate": 0.0006, + "loss": 3.605466842651367, + "step": 3395 + }, + { + "epoch": 47.16775884665793, + "grad_norm": 0.24957625567913055, + "learning_rate": 0.0006, + "loss": 3.588324546813965, + "step": 3396 + }, + { + "epoch": 47.18173875054609, + "grad_norm": 0.25446194410324097, + "learning_rate": 0.0006, + "loss": 3.6161458492279053, + "step": 3397 + }, + { + "epoch": 47.19571865443425, + "grad_norm": 0.24938438832759857, + "learning_rate": 0.0006, + "loss": 3.6017847061157227, + "step": 3398 + }, + { + "epoch": 47.20969855832241, + "grad_norm": 0.23318032920360565, + "learning_rate": 0.0006, + "loss": 3.6077046394348145, + "step": 3399 + }, + { + "epoch": 47.22367846221057, + "grad_norm": 0.2179042547941208, + "learning_rate": 0.0006, + "loss": 3.598104953765869, + "step": 3400 + }, + { + "epoch": 47.237658366098735, + "grad_norm": 0.213354229927063, + "learning_rate": 0.0006, + "loss": 3.6328814029693604, + "step": 3401 + }, + { + "epoch": 47.25163826998689, + "grad_norm": 0.23104089498519897, + "learning_rate": 0.0006, + "loss": 3.6161890029907227, + "step": 3402 + }, + { + "epoch": 47.265618173875055, + "grad_norm": 0.22219021618366241, + "learning_rate": 0.0006, + "loss": 3.620314121246338, + "step": 3403 + }, + { + "epoch": 47.27959807776322, + "grad_norm": 0.21618683636188507, + "learning_rate": 0.0006, + "loss": 3.5955371856689453, + "step": 3404 + }, + { + "epoch": 47.293577981651374, + "grad_norm": 0.22280243039131165, + "learning_rate": 0.0006, + "loss": 3.618302345275879, + "step": 3405 + }, + { + "epoch": 47.30755788553954, + "grad_norm": 0.2268427014350891, + "learning_rate": 0.0006, + "loss": 3.6035101413726807, + "step": 3406 + }, + { + "epoch": 47.3215377894277, + "grad_norm": 0.20324429869651794, + "learning_rate": 0.0006, + "loss": 3.612598419189453, + "step": 3407 + }, + { + "epoch": 47.33551769331586, + "grad_norm": 0.19353045523166656, + "learning_rate": 0.0006, + "loss": 3.5951499938964844, + "step": 3408 + }, + { + "epoch": 47.34949759720402, + "grad_norm": 0.19008080661296844, + "learning_rate": 0.0006, + "loss": 3.6177732944488525, + "step": 3409 + }, + { + "epoch": 47.36347750109218, + "grad_norm": 0.19530250132083893, + "learning_rate": 0.0006, + "loss": 3.597903251647949, + "step": 3410 + }, + { + "epoch": 47.37745740498034, + "grad_norm": 0.2083505541086197, + "learning_rate": 0.0006, + "loss": 3.6062350273132324, + "step": 3411 + }, + { + "epoch": 47.391437308868504, + "grad_norm": 0.2241518199443817, + "learning_rate": 0.0006, + "loss": 3.6084704399108887, + "step": 3412 + }, + { + "epoch": 47.40541721275666, + "grad_norm": 0.25763124227523804, + "learning_rate": 0.0006, + "loss": 3.600295066833496, + "step": 3413 + }, + { + "epoch": 47.419397116644824, + "grad_norm": 0.2689114212989807, + "learning_rate": 0.0006, + "loss": 3.648848533630371, + "step": 3414 + }, + { + "epoch": 47.43337702053299, + "grad_norm": 0.30106639862060547, + "learning_rate": 0.0006, + "loss": 3.6248483657836914, + "step": 3415 + }, + { + "epoch": 47.44735692442114, + "grad_norm": 0.31840384006500244, + "learning_rate": 0.0006, + "loss": 3.6256890296936035, + "step": 3416 + }, + { + "epoch": 47.46133682830931, + "grad_norm": 0.2603468894958496, + "learning_rate": 0.0006, + "loss": 3.6225175857543945, + "step": 3417 + }, + { + "epoch": 47.47531673219746, + "grad_norm": 0.33408305048942566, + "learning_rate": 0.0006, + "loss": 3.590303897857666, + "step": 3418 + }, + { + "epoch": 47.489296636085626, + "grad_norm": 0.3677918612957001, + "learning_rate": 0.0006, + "loss": 3.6005120277404785, + "step": 3419 + }, + { + "epoch": 47.50327653997379, + "grad_norm": 0.23077215254306793, + "learning_rate": 0.0006, + "loss": 3.6093883514404297, + "step": 3420 + }, + { + "epoch": 47.517256443861946, + "grad_norm": 0.27272120118141174, + "learning_rate": 0.0006, + "loss": 3.580151081085205, + "step": 3421 + }, + { + "epoch": 47.53123634775011, + "grad_norm": 0.22629371285438538, + "learning_rate": 0.0006, + "loss": 3.6375746726989746, + "step": 3422 + }, + { + "epoch": 47.54521625163827, + "grad_norm": 0.2376468926668167, + "learning_rate": 0.0006, + "loss": 3.6492481231689453, + "step": 3423 + }, + { + "epoch": 47.55919615552643, + "grad_norm": 0.21200433373451233, + "learning_rate": 0.0006, + "loss": 3.6258158683776855, + "step": 3424 + }, + { + "epoch": 47.57317605941459, + "grad_norm": 0.2246236652135849, + "learning_rate": 0.0006, + "loss": 3.6199564933776855, + "step": 3425 + }, + { + "epoch": 47.58715596330275, + "grad_norm": 0.21713437139987946, + "learning_rate": 0.0006, + "loss": 3.638197898864746, + "step": 3426 + }, + { + "epoch": 47.60113586719091, + "grad_norm": 0.1964627057313919, + "learning_rate": 0.0006, + "loss": 3.6334147453308105, + "step": 3427 + }, + { + "epoch": 47.615115771079076, + "grad_norm": 0.21705810725688934, + "learning_rate": 0.0006, + "loss": 3.6298668384552, + "step": 3428 + }, + { + "epoch": 47.62909567496723, + "grad_norm": 0.20376256108283997, + "learning_rate": 0.0006, + "loss": 3.6127166748046875, + "step": 3429 + }, + { + "epoch": 47.643075578855395, + "grad_norm": 0.20046672224998474, + "learning_rate": 0.0006, + "loss": 3.633683681488037, + "step": 3430 + }, + { + "epoch": 47.65705548274356, + "grad_norm": 0.21494409441947937, + "learning_rate": 0.0006, + "loss": 3.635828971862793, + "step": 3431 + }, + { + "epoch": 47.671035386631715, + "grad_norm": 0.24550487101078033, + "learning_rate": 0.0006, + "loss": 3.6056854724884033, + "step": 3432 + }, + { + "epoch": 47.68501529051988, + "grad_norm": 0.24416600167751312, + "learning_rate": 0.0006, + "loss": 3.618785858154297, + "step": 3433 + }, + { + "epoch": 47.69899519440804, + "grad_norm": 0.22872993350028992, + "learning_rate": 0.0006, + "loss": 3.6189026832580566, + "step": 3434 + }, + { + "epoch": 47.7129750982962, + "grad_norm": 0.23609530925750732, + "learning_rate": 0.0006, + "loss": 3.623661518096924, + "step": 3435 + }, + { + "epoch": 47.72695500218436, + "grad_norm": 0.22905564308166504, + "learning_rate": 0.0006, + "loss": 3.6155691146850586, + "step": 3436 + }, + { + "epoch": 47.74093490607252, + "grad_norm": 0.25507304072380066, + "learning_rate": 0.0006, + "loss": 3.5848331451416016, + "step": 3437 + }, + { + "epoch": 47.75491480996068, + "grad_norm": 0.24594344198703766, + "learning_rate": 0.0006, + "loss": 3.588374614715576, + "step": 3438 + }, + { + "epoch": 47.768894713848844, + "grad_norm": 0.23131750524044037, + "learning_rate": 0.0006, + "loss": 3.6164474487304688, + "step": 3439 + }, + { + "epoch": 47.782874617737, + "grad_norm": 0.21967829763889313, + "learning_rate": 0.0006, + "loss": 3.619150161743164, + "step": 3440 + }, + { + "epoch": 47.796854521625164, + "grad_norm": 0.226309135556221, + "learning_rate": 0.0006, + "loss": 3.5946340560913086, + "step": 3441 + }, + { + "epoch": 47.81083442551333, + "grad_norm": 0.23141087591648102, + "learning_rate": 0.0006, + "loss": 3.614711046218872, + "step": 3442 + }, + { + "epoch": 47.824814329401484, + "grad_norm": 0.20917707681655884, + "learning_rate": 0.0006, + "loss": 3.610058307647705, + "step": 3443 + }, + { + "epoch": 47.83879423328965, + "grad_norm": 0.22864583134651184, + "learning_rate": 0.0006, + "loss": 3.6396052837371826, + "step": 3444 + }, + { + "epoch": 47.8527741371778, + "grad_norm": 0.22201144695281982, + "learning_rate": 0.0006, + "loss": 3.6462526321411133, + "step": 3445 + }, + { + "epoch": 47.86675404106597, + "grad_norm": 0.21199125051498413, + "learning_rate": 0.0006, + "loss": 3.6090314388275146, + "step": 3446 + }, + { + "epoch": 47.88073394495413, + "grad_norm": 0.2236194908618927, + "learning_rate": 0.0006, + "loss": 3.6308231353759766, + "step": 3447 + }, + { + "epoch": 47.89471384884229, + "grad_norm": 0.21571075916290283, + "learning_rate": 0.0006, + "loss": 3.5899293422698975, + "step": 3448 + }, + { + "epoch": 47.90869375273045, + "grad_norm": 0.2320997267961502, + "learning_rate": 0.0006, + "loss": 3.6360764503479004, + "step": 3449 + }, + { + "epoch": 47.92267365661861, + "grad_norm": 0.2304147630929947, + "learning_rate": 0.0006, + "loss": 3.61220121383667, + "step": 3450 + }, + { + "epoch": 47.93665356050677, + "grad_norm": 0.2321154624223709, + "learning_rate": 0.0006, + "loss": 3.6104419231414795, + "step": 3451 + }, + { + "epoch": 47.95063346439493, + "grad_norm": 0.20895935595035553, + "learning_rate": 0.0006, + "loss": 3.6372952461242676, + "step": 3452 + }, + { + "epoch": 47.964613368283096, + "grad_norm": 0.19926418364048004, + "learning_rate": 0.0006, + "loss": 3.652947425842285, + "step": 3453 + }, + { + "epoch": 47.97859327217125, + "grad_norm": 0.22443149983882904, + "learning_rate": 0.0006, + "loss": 3.6005635261535645, + "step": 3454 + }, + { + "epoch": 47.992573176059416, + "grad_norm": 0.2361244559288025, + "learning_rate": 0.0006, + "loss": 3.626563549041748, + "step": 3455 + }, + { + "epoch": 48.0, + "grad_norm": 0.2542579174041748, + "learning_rate": 0.0006, + "loss": 3.619098663330078, + "step": 3456 + }, + { + "epoch": 48.0, + "eval_loss": 3.9787564277648926, + "eval_runtime": 44.3429, + "eval_samples_per_second": 55.071, + "eval_steps_per_second": 3.45, + "step": 3456 + }, + { + "epoch": 48.01397990388816, + "grad_norm": 0.21771088242530823, + "learning_rate": 0.0006, + "loss": 3.538780927658081, + "step": 3457 + }, + { + "epoch": 48.02795980777632, + "grad_norm": 0.23467740416526794, + "learning_rate": 0.0006, + "loss": 3.5875978469848633, + "step": 3458 + }, + { + "epoch": 48.04193971166448, + "grad_norm": 0.2527692914009094, + "learning_rate": 0.0006, + "loss": 3.5939159393310547, + "step": 3459 + }, + { + "epoch": 48.05591961555265, + "grad_norm": 0.21477685868740082, + "learning_rate": 0.0006, + "loss": 3.600374698638916, + "step": 3460 + }, + { + "epoch": 48.0698995194408, + "grad_norm": 0.22008976340293884, + "learning_rate": 0.0006, + "loss": 3.6058406829833984, + "step": 3461 + }, + { + "epoch": 48.083879423328966, + "grad_norm": 0.23344817757606506, + "learning_rate": 0.0006, + "loss": 3.5864410400390625, + "step": 3462 + }, + { + "epoch": 48.09785932721712, + "grad_norm": 0.24451610445976257, + "learning_rate": 0.0006, + "loss": 3.5827221870422363, + "step": 3463 + }, + { + "epoch": 48.111839231105286, + "grad_norm": 0.24536925554275513, + "learning_rate": 0.0006, + "loss": 3.566275119781494, + "step": 3464 + }, + { + "epoch": 48.12581913499345, + "grad_norm": 0.24060940742492676, + "learning_rate": 0.0006, + "loss": 3.575841188430786, + "step": 3465 + }, + { + "epoch": 48.139799038881605, + "grad_norm": 0.24829573929309845, + "learning_rate": 0.0006, + "loss": 3.6215152740478516, + "step": 3466 + }, + { + "epoch": 48.15377894276977, + "grad_norm": 0.2651045024394989, + "learning_rate": 0.0006, + "loss": 3.604381561279297, + "step": 3467 + }, + { + "epoch": 48.16775884665793, + "grad_norm": 0.2654518187046051, + "learning_rate": 0.0006, + "loss": 3.5989198684692383, + "step": 3468 + }, + { + "epoch": 48.18173875054609, + "grad_norm": 0.25179797410964966, + "learning_rate": 0.0006, + "loss": 3.596402168273926, + "step": 3469 + }, + { + "epoch": 48.19571865443425, + "grad_norm": 0.24018050730228424, + "learning_rate": 0.0006, + "loss": 3.6376051902770996, + "step": 3470 + }, + { + "epoch": 48.20969855832241, + "grad_norm": 0.22079682350158691, + "learning_rate": 0.0006, + "loss": 3.5990993976593018, + "step": 3471 + }, + { + "epoch": 48.22367846221057, + "grad_norm": 0.23267143964767456, + "learning_rate": 0.0006, + "loss": 3.614759683609009, + "step": 3472 + }, + { + "epoch": 48.237658366098735, + "grad_norm": 0.21822260320186615, + "learning_rate": 0.0006, + "loss": 3.6057262420654297, + "step": 3473 + }, + { + "epoch": 48.25163826998689, + "grad_norm": 0.23391997814178467, + "learning_rate": 0.0006, + "loss": 3.581972599029541, + "step": 3474 + }, + { + "epoch": 48.265618173875055, + "grad_norm": 0.22634121775627136, + "learning_rate": 0.0006, + "loss": 3.592149496078491, + "step": 3475 + }, + { + "epoch": 48.27959807776322, + "grad_norm": 0.2142419070005417, + "learning_rate": 0.0006, + "loss": 3.616722583770752, + "step": 3476 + }, + { + "epoch": 48.293577981651374, + "grad_norm": 0.227144256234169, + "learning_rate": 0.0006, + "loss": 3.6018447875976562, + "step": 3477 + }, + { + "epoch": 48.30755788553954, + "grad_norm": 0.25466978549957275, + "learning_rate": 0.0006, + "loss": 3.5795769691467285, + "step": 3478 + }, + { + "epoch": 48.3215377894277, + "grad_norm": 0.2409234344959259, + "learning_rate": 0.0006, + "loss": 3.5845530033111572, + "step": 3479 + }, + { + "epoch": 48.33551769331586, + "grad_norm": 0.22001305222511292, + "learning_rate": 0.0006, + "loss": 3.5861806869506836, + "step": 3480 + }, + { + "epoch": 48.34949759720402, + "grad_norm": 0.24980100989341736, + "learning_rate": 0.0006, + "loss": 3.6032233238220215, + "step": 3481 + }, + { + "epoch": 48.36347750109218, + "grad_norm": 0.28788816928863525, + "learning_rate": 0.0006, + "loss": 3.5876364707946777, + "step": 3482 + }, + { + "epoch": 48.37745740498034, + "grad_norm": 0.26172295212745667, + "learning_rate": 0.0006, + "loss": 3.5711276531219482, + "step": 3483 + }, + { + "epoch": 48.391437308868504, + "grad_norm": 0.23881542682647705, + "learning_rate": 0.0006, + "loss": 3.57108473777771, + "step": 3484 + }, + { + "epoch": 48.40541721275666, + "grad_norm": 0.22385981678962708, + "learning_rate": 0.0006, + "loss": 3.6197509765625, + "step": 3485 + }, + { + "epoch": 48.419397116644824, + "grad_norm": 0.21007859706878662, + "learning_rate": 0.0006, + "loss": 3.609449625015259, + "step": 3486 + }, + { + "epoch": 48.43337702053299, + "grad_norm": 0.21170279383659363, + "learning_rate": 0.0006, + "loss": 3.5981619358062744, + "step": 3487 + }, + { + "epoch": 48.44735692442114, + "grad_norm": 0.2100721150636673, + "learning_rate": 0.0006, + "loss": 3.606505870819092, + "step": 3488 + }, + { + "epoch": 48.46133682830931, + "grad_norm": 0.20408287644386292, + "learning_rate": 0.0006, + "loss": 3.6033859252929688, + "step": 3489 + }, + { + "epoch": 48.47531673219746, + "grad_norm": 0.20343686640262604, + "learning_rate": 0.0006, + "loss": 3.6249616146087646, + "step": 3490 + }, + { + "epoch": 48.489296636085626, + "grad_norm": 0.20570123195648193, + "learning_rate": 0.0006, + "loss": 3.5700693130493164, + "step": 3491 + }, + { + "epoch": 48.50327653997379, + "grad_norm": 0.2511707544326782, + "learning_rate": 0.0006, + "loss": 3.6432406902313232, + "step": 3492 + }, + { + "epoch": 48.517256443861946, + "grad_norm": 0.265960693359375, + "learning_rate": 0.0006, + "loss": 3.6329426765441895, + "step": 3493 + }, + { + "epoch": 48.53123634775011, + "grad_norm": 0.25830161571502686, + "learning_rate": 0.0006, + "loss": 3.593940258026123, + "step": 3494 + }, + { + "epoch": 48.54521625163827, + "grad_norm": 0.2232893705368042, + "learning_rate": 0.0006, + "loss": 3.623812198638916, + "step": 3495 + }, + { + "epoch": 48.55919615552643, + "grad_norm": 0.20818902552127838, + "learning_rate": 0.0006, + "loss": 3.5982813835144043, + "step": 3496 + }, + { + "epoch": 48.57317605941459, + "grad_norm": 0.2756865918636322, + "learning_rate": 0.0006, + "loss": 3.617436170578003, + "step": 3497 + }, + { + "epoch": 48.58715596330275, + "grad_norm": 0.2361520677804947, + "learning_rate": 0.0006, + "loss": 3.598113536834717, + "step": 3498 + }, + { + "epoch": 48.60113586719091, + "grad_norm": 0.1956835240125656, + "learning_rate": 0.0006, + "loss": 3.581003189086914, + "step": 3499 + }, + { + "epoch": 48.615115771079076, + "grad_norm": 0.2863931953907013, + "learning_rate": 0.0006, + "loss": 3.596768379211426, + "step": 3500 + }, + { + "epoch": 48.62909567496723, + "grad_norm": 0.29865020513534546, + "learning_rate": 0.0006, + "loss": 3.576995372772217, + "step": 3501 + }, + { + "epoch": 48.643075578855395, + "grad_norm": 0.23084872961044312, + "learning_rate": 0.0006, + "loss": 3.6431074142456055, + "step": 3502 + }, + { + "epoch": 48.65705548274356, + "grad_norm": 0.2081640362739563, + "learning_rate": 0.0006, + "loss": 3.6002132892608643, + "step": 3503 + }, + { + "epoch": 48.671035386631715, + "grad_norm": 0.20566335320472717, + "learning_rate": 0.0006, + "loss": 3.62365460395813, + "step": 3504 + }, + { + "epoch": 48.68501529051988, + "grad_norm": 0.2066725790500641, + "learning_rate": 0.0006, + "loss": 3.6063363552093506, + "step": 3505 + }, + { + "epoch": 48.69899519440804, + "grad_norm": 0.19830003380775452, + "learning_rate": 0.0006, + "loss": 3.617750883102417, + "step": 3506 + }, + { + "epoch": 48.7129750982962, + "grad_norm": 0.20409031212329865, + "learning_rate": 0.0006, + "loss": 3.6110005378723145, + "step": 3507 + }, + { + "epoch": 48.72695500218436, + "grad_norm": 0.20836064219474792, + "learning_rate": 0.0006, + "loss": 3.6148147583007812, + "step": 3508 + }, + { + "epoch": 48.74093490607252, + "grad_norm": 0.21660791337490082, + "learning_rate": 0.0006, + "loss": 3.641488790512085, + "step": 3509 + }, + { + "epoch": 48.75491480996068, + "grad_norm": 0.21075023710727692, + "learning_rate": 0.0006, + "loss": 3.6327688694000244, + "step": 3510 + }, + { + "epoch": 48.768894713848844, + "grad_norm": 0.19346074759960175, + "learning_rate": 0.0006, + "loss": 3.6025185585021973, + "step": 3511 + }, + { + "epoch": 48.782874617737, + "grad_norm": 0.20215240120887756, + "learning_rate": 0.0006, + "loss": 3.595707416534424, + "step": 3512 + }, + { + "epoch": 48.796854521625164, + "grad_norm": 0.1913122832775116, + "learning_rate": 0.0006, + "loss": 3.618406295776367, + "step": 3513 + }, + { + "epoch": 48.81083442551333, + "grad_norm": 0.18517033755779266, + "learning_rate": 0.0006, + "loss": 3.6212055683135986, + "step": 3514 + }, + { + "epoch": 48.824814329401484, + "grad_norm": 0.20453064143657684, + "learning_rate": 0.0006, + "loss": 3.5941221714019775, + "step": 3515 + }, + { + "epoch": 48.83879423328965, + "grad_norm": 0.20777031779289246, + "learning_rate": 0.0006, + "loss": 3.630701780319214, + "step": 3516 + }, + { + "epoch": 48.8527741371778, + "grad_norm": 0.23713789880275726, + "learning_rate": 0.0006, + "loss": 3.629256248474121, + "step": 3517 + }, + { + "epoch": 48.86675404106597, + "grad_norm": 0.1945258378982544, + "learning_rate": 0.0006, + "loss": 3.607020854949951, + "step": 3518 + }, + { + "epoch": 48.88073394495413, + "grad_norm": 0.19601863622665405, + "learning_rate": 0.0006, + "loss": 3.6200907230377197, + "step": 3519 + }, + { + "epoch": 48.89471384884229, + "grad_norm": 0.20068836212158203, + "learning_rate": 0.0006, + "loss": 3.58575701713562, + "step": 3520 + }, + { + "epoch": 48.90869375273045, + "grad_norm": 0.21790200471878052, + "learning_rate": 0.0006, + "loss": 3.6451416015625, + "step": 3521 + }, + { + "epoch": 48.92267365661861, + "grad_norm": 0.22265756130218506, + "learning_rate": 0.0006, + "loss": 3.621331214904785, + "step": 3522 + }, + { + "epoch": 48.93665356050677, + "grad_norm": 0.20316730439662933, + "learning_rate": 0.0006, + "loss": 3.614537239074707, + "step": 3523 + }, + { + "epoch": 48.95063346439493, + "grad_norm": 0.20275238156318665, + "learning_rate": 0.0006, + "loss": 3.5913281440734863, + "step": 3524 + }, + { + "epoch": 48.964613368283096, + "grad_norm": 0.20239883661270142, + "learning_rate": 0.0006, + "loss": 3.608638286590576, + "step": 3525 + }, + { + "epoch": 48.97859327217125, + "grad_norm": 0.21154041588306427, + "learning_rate": 0.0006, + "loss": 3.6233115196228027, + "step": 3526 + }, + { + "epoch": 48.992573176059416, + "grad_norm": 0.22368352115154266, + "learning_rate": 0.0006, + "loss": 3.599665880203247, + "step": 3527 + }, + { + "epoch": 49.0, + "grad_norm": 0.2675703763961792, + "learning_rate": 0.0006, + "loss": 3.637458086013794, + "step": 3528 + }, + { + "epoch": 49.0, + "eval_loss": 3.985574245452881, + "eval_runtime": 44.55, + "eval_samples_per_second": 54.815, + "eval_steps_per_second": 3.434, + "step": 3528 + }, + { + "epoch": 49.01397990388816, + "grad_norm": 0.2911863625049591, + "learning_rate": 0.0006, + "loss": 3.606170654296875, + "step": 3529 + }, + { + "epoch": 49.02795980777632, + "grad_norm": 0.26640036702156067, + "learning_rate": 0.0006, + "loss": 3.5662899017333984, + "step": 3530 + }, + { + "epoch": 49.04193971166448, + "grad_norm": 0.23250512778759003, + "learning_rate": 0.0006, + "loss": 3.5928688049316406, + "step": 3531 + }, + { + "epoch": 49.05591961555265, + "grad_norm": 0.2603093385696411, + "learning_rate": 0.0006, + "loss": 3.5702433586120605, + "step": 3532 + }, + { + "epoch": 49.0698995194408, + "grad_norm": 0.2711663246154785, + "learning_rate": 0.0006, + "loss": 3.591977596282959, + "step": 3533 + }, + { + "epoch": 49.083879423328966, + "grad_norm": 0.2536148130893707, + "learning_rate": 0.0006, + "loss": 3.5924272537231445, + "step": 3534 + }, + { + "epoch": 49.09785932721712, + "grad_norm": 0.22995208203792572, + "learning_rate": 0.0006, + "loss": 3.5760092735290527, + "step": 3535 + }, + { + "epoch": 49.111839231105286, + "grad_norm": 0.22327162325382233, + "learning_rate": 0.0006, + "loss": 3.6072137355804443, + "step": 3536 + }, + { + "epoch": 49.12581913499345, + "grad_norm": 0.2256365567445755, + "learning_rate": 0.0006, + "loss": 3.6156117916107178, + "step": 3537 + }, + { + "epoch": 49.139799038881605, + "grad_norm": 0.23647814989089966, + "learning_rate": 0.0006, + "loss": 3.5862512588500977, + "step": 3538 + }, + { + "epoch": 49.15377894276977, + "grad_norm": 0.23442648351192474, + "learning_rate": 0.0006, + "loss": 3.606386184692383, + "step": 3539 + }, + { + "epoch": 49.16775884665793, + "grad_norm": 0.22148385643959045, + "learning_rate": 0.0006, + "loss": 3.5564064979553223, + "step": 3540 + }, + { + "epoch": 49.18173875054609, + "grad_norm": 0.24589644372463226, + "learning_rate": 0.0006, + "loss": 3.5625576972961426, + "step": 3541 + }, + { + "epoch": 49.19571865443425, + "grad_norm": 0.23955261707305908, + "learning_rate": 0.0006, + "loss": 3.617833137512207, + "step": 3542 + }, + { + "epoch": 49.20969855832241, + "grad_norm": 0.2781425416469574, + "learning_rate": 0.0006, + "loss": 3.6153502464294434, + "step": 3543 + }, + { + "epoch": 49.22367846221057, + "grad_norm": 0.2622034549713135, + "learning_rate": 0.0006, + "loss": 3.608530044555664, + "step": 3544 + }, + { + "epoch": 49.237658366098735, + "grad_norm": 0.28407761454582214, + "learning_rate": 0.0006, + "loss": 3.572207450866699, + "step": 3545 + }, + { + "epoch": 49.25163826998689, + "grad_norm": 0.2722281217575073, + "learning_rate": 0.0006, + "loss": 3.591392755508423, + "step": 3546 + }, + { + "epoch": 49.265618173875055, + "grad_norm": 0.20608903467655182, + "learning_rate": 0.0006, + "loss": 3.598421573638916, + "step": 3547 + }, + { + "epoch": 49.27959807776322, + "grad_norm": 0.27233049273490906, + "learning_rate": 0.0006, + "loss": 3.5819201469421387, + "step": 3548 + }, + { + "epoch": 49.293577981651374, + "grad_norm": 0.26182129979133606, + "learning_rate": 0.0006, + "loss": 3.5855109691619873, + "step": 3549 + }, + { + "epoch": 49.30755788553954, + "grad_norm": 0.20255911350250244, + "learning_rate": 0.0006, + "loss": 3.569438934326172, + "step": 3550 + }, + { + "epoch": 49.3215377894277, + "grad_norm": 0.20045310258865356, + "learning_rate": 0.0006, + "loss": 3.5888795852661133, + "step": 3551 + }, + { + "epoch": 49.33551769331586, + "grad_norm": 0.18505392968654633, + "learning_rate": 0.0006, + "loss": 3.565467596054077, + "step": 3552 + }, + { + "epoch": 49.34949759720402, + "grad_norm": 0.2057398110628128, + "learning_rate": 0.0006, + "loss": 3.5850436687469482, + "step": 3553 + }, + { + "epoch": 49.36347750109218, + "grad_norm": 0.20007790625095367, + "learning_rate": 0.0006, + "loss": 3.5963945388793945, + "step": 3554 + }, + { + "epoch": 49.37745740498034, + "grad_norm": 0.179341122508049, + "learning_rate": 0.0006, + "loss": 3.5747077465057373, + "step": 3555 + }, + { + "epoch": 49.391437308868504, + "grad_norm": 0.1978122442960739, + "learning_rate": 0.0006, + "loss": 3.605037212371826, + "step": 3556 + }, + { + "epoch": 49.40541721275666, + "grad_norm": 0.1936761885881424, + "learning_rate": 0.0006, + "loss": 3.6293420791625977, + "step": 3557 + }, + { + "epoch": 49.419397116644824, + "grad_norm": 0.20393748581409454, + "learning_rate": 0.0006, + "loss": 3.5616302490234375, + "step": 3558 + }, + { + "epoch": 49.43337702053299, + "grad_norm": 0.19082997739315033, + "learning_rate": 0.0006, + "loss": 3.605088472366333, + "step": 3559 + }, + { + "epoch": 49.44735692442114, + "grad_norm": 0.19642551243305206, + "learning_rate": 0.0006, + "loss": 3.610870361328125, + "step": 3560 + }, + { + "epoch": 49.46133682830931, + "grad_norm": 0.21815423667430878, + "learning_rate": 0.0006, + "loss": 3.60211181640625, + "step": 3561 + }, + { + "epoch": 49.47531673219746, + "grad_norm": 0.20342762768268585, + "learning_rate": 0.0006, + "loss": 3.597529411315918, + "step": 3562 + }, + { + "epoch": 49.489296636085626, + "grad_norm": 0.19032546877861023, + "learning_rate": 0.0006, + "loss": 3.5728795528411865, + "step": 3563 + }, + { + "epoch": 49.50327653997379, + "grad_norm": 0.18237556517124176, + "learning_rate": 0.0006, + "loss": 3.5983595848083496, + "step": 3564 + }, + { + "epoch": 49.517256443861946, + "grad_norm": 0.20585589110851288, + "learning_rate": 0.0006, + "loss": 3.578320264816284, + "step": 3565 + }, + { + "epoch": 49.53123634775011, + "grad_norm": 0.20158857107162476, + "learning_rate": 0.0006, + "loss": 3.5918798446655273, + "step": 3566 + }, + { + "epoch": 49.54521625163827, + "grad_norm": 0.20195038616657257, + "learning_rate": 0.0006, + "loss": 3.605422258377075, + "step": 3567 + }, + { + "epoch": 49.55919615552643, + "grad_norm": 0.19884084165096283, + "learning_rate": 0.0006, + "loss": 3.5964083671569824, + "step": 3568 + }, + { + "epoch": 49.57317605941459, + "grad_norm": 0.21243083477020264, + "learning_rate": 0.0006, + "loss": 3.5885486602783203, + "step": 3569 + }, + { + "epoch": 49.58715596330275, + "grad_norm": 0.21059481799602509, + "learning_rate": 0.0006, + "loss": 3.572526454925537, + "step": 3570 + }, + { + "epoch": 49.60113586719091, + "grad_norm": 0.20644313097000122, + "learning_rate": 0.0006, + "loss": 3.583679676055908, + "step": 3571 + }, + { + "epoch": 49.615115771079076, + "grad_norm": 0.21343673765659332, + "learning_rate": 0.0006, + "loss": 3.6211650371551514, + "step": 3572 + }, + { + "epoch": 49.62909567496723, + "grad_norm": 0.23395343124866486, + "learning_rate": 0.0006, + "loss": 3.6003336906433105, + "step": 3573 + }, + { + "epoch": 49.643075578855395, + "grad_norm": 0.19978424906730652, + "learning_rate": 0.0006, + "loss": 3.6066763401031494, + "step": 3574 + }, + { + "epoch": 49.65705548274356, + "grad_norm": 0.21529823541641235, + "learning_rate": 0.0006, + "loss": 3.601284980773926, + "step": 3575 + }, + { + "epoch": 49.671035386631715, + "grad_norm": 0.21672746539115906, + "learning_rate": 0.0006, + "loss": 3.6084227561950684, + "step": 3576 + }, + { + "epoch": 49.68501529051988, + "grad_norm": 0.20889638364315033, + "learning_rate": 0.0006, + "loss": 3.591568946838379, + "step": 3577 + }, + { + "epoch": 49.69899519440804, + "grad_norm": 0.1960221230983734, + "learning_rate": 0.0006, + "loss": 3.6180830001831055, + "step": 3578 + }, + { + "epoch": 49.7129750982962, + "grad_norm": 0.19712410867214203, + "learning_rate": 0.0006, + "loss": 3.6197333335876465, + "step": 3579 + }, + { + "epoch": 49.72695500218436, + "grad_norm": 0.20665284991264343, + "learning_rate": 0.0006, + "loss": 3.6251301765441895, + "step": 3580 + }, + { + "epoch": 49.74093490607252, + "grad_norm": 0.21018871665000916, + "learning_rate": 0.0006, + "loss": 3.621973991394043, + "step": 3581 + }, + { + "epoch": 49.75491480996068, + "grad_norm": 0.20777495205402374, + "learning_rate": 0.0006, + "loss": 3.5826358795166016, + "step": 3582 + }, + { + "epoch": 49.768894713848844, + "grad_norm": 0.18880195915699005, + "learning_rate": 0.0006, + "loss": 3.5946998596191406, + "step": 3583 + }, + { + "epoch": 49.782874617737, + "grad_norm": 0.19894644618034363, + "learning_rate": 0.0006, + "loss": 3.5912184715270996, + "step": 3584 + }, + { + "epoch": 49.796854521625164, + "grad_norm": 0.20128944516181946, + "learning_rate": 0.0006, + "loss": 3.6370394229888916, + "step": 3585 + }, + { + "epoch": 49.81083442551333, + "grad_norm": 0.19332024455070496, + "learning_rate": 0.0006, + "loss": 3.619018077850342, + "step": 3586 + }, + { + "epoch": 49.824814329401484, + "grad_norm": 0.19303865730762482, + "learning_rate": 0.0006, + "loss": 3.578667163848877, + "step": 3587 + }, + { + "epoch": 49.83879423328965, + "grad_norm": 0.20154757797718048, + "learning_rate": 0.0006, + "loss": 3.61959171295166, + "step": 3588 + }, + { + "epoch": 49.8527741371778, + "grad_norm": 0.19653639197349548, + "learning_rate": 0.0006, + "loss": 3.6437559127807617, + "step": 3589 + }, + { + "epoch": 49.86675404106597, + "grad_norm": 0.21873407065868378, + "learning_rate": 0.0006, + "loss": 3.6131112575531006, + "step": 3590 + }, + { + "epoch": 49.88073394495413, + "grad_norm": 0.20130383968353271, + "learning_rate": 0.0006, + "loss": 3.624028444290161, + "step": 3591 + }, + { + "epoch": 49.89471384884229, + "grad_norm": 0.20206475257873535, + "learning_rate": 0.0006, + "loss": 3.5997328758239746, + "step": 3592 + }, + { + "epoch": 49.90869375273045, + "grad_norm": 0.20393261313438416, + "learning_rate": 0.0006, + "loss": 3.596066474914551, + "step": 3593 + }, + { + "epoch": 49.92267365661861, + "grad_norm": 0.19703544676303864, + "learning_rate": 0.0006, + "loss": 3.624542713165283, + "step": 3594 + }, + { + "epoch": 49.93665356050677, + "grad_norm": 0.2102314680814743, + "learning_rate": 0.0006, + "loss": 3.6082515716552734, + "step": 3595 + }, + { + "epoch": 49.95063346439493, + "grad_norm": 0.23791316151618958, + "learning_rate": 0.0006, + "loss": 3.6185569763183594, + "step": 3596 + }, + { + "epoch": 49.964613368283096, + "grad_norm": 0.24536125361919403, + "learning_rate": 0.0006, + "loss": 3.599207878112793, + "step": 3597 + }, + { + "epoch": 49.97859327217125, + "grad_norm": 0.23160327970981598, + "learning_rate": 0.0006, + "loss": 3.600921869277954, + "step": 3598 + }, + { + "epoch": 49.992573176059416, + "grad_norm": 0.22740362584590912, + "learning_rate": 0.0006, + "loss": 3.6112914085388184, + "step": 3599 + }, + { + "epoch": 50.0, + "grad_norm": 0.24303272366523743, + "learning_rate": 0.0006, + "loss": 3.6385838985443115, + "step": 3600 + }, + { + "epoch": 50.0, + "eval_loss": 3.9811089038848877, + "eval_runtime": 44.9913, + "eval_samples_per_second": 54.277, + "eval_steps_per_second": 3.401, + "step": 3600 + }, + { + "epoch": 50.01397990388816, + "grad_norm": 0.20118683576583862, + "learning_rate": 0.0006, + "loss": 3.561751127243042, + "step": 3601 + }, + { + "epoch": 50.02795980777632, + "grad_norm": 0.18722538650035858, + "learning_rate": 0.0006, + "loss": 3.5742180347442627, + "step": 3602 + }, + { + "epoch": 50.04193971166448, + "grad_norm": 0.21248385310173035, + "learning_rate": 0.0006, + "loss": 3.5759401321411133, + "step": 3603 + }, + { + "epoch": 50.05591961555265, + "grad_norm": 0.21006572246551514, + "learning_rate": 0.0006, + "loss": 3.5737462043762207, + "step": 3604 + }, + { + "epoch": 50.0698995194408, + "grad_norm": 0.20671233534812927, + "learning_rate": 0.0006, + "loss": 3.548205852508545, + "step": 3605 + }, + { + "epoch": 50.083879423328966, + "grad_norm": 0.20704609155654907, + "learning_rate": 0.0006, + "loss": 3.5862209796905518, + "step": 3606 + }, + { + "epoch": 50.09785932721712, + "grad_norm": 0.20611345767974854, + "learning_rate": 0.0006, + "loss": 3.5696640014648438, + "step": 3607 + }, + { + "epoch": 50.111839231105286, + "grad_norm": 0.20986805856227875, + "learning_rate": 0.0006, + "loss": 3.5755579471588135, + "step": 3608 + }, + { + "epoch": 50.12581913499345, + "grad_norm": 0.21727709472179413, + "learning_rate": 0.0006, + "loss": 3.5967745780944824, + "step": 3609 + }, + { + "epoch": 50.139799038881605, + "grad_norm": 0.21854986250400543, + "learning_rate": 0.0006, + "loss": 3.6115779876708984, + "step": 3610 + }, + { + "epoch": 50.15377894276977, + "grad_norm": 0.22904936969280243, + "learning_rate": 0.0006, + "loss": 3.5639889240264893, + "step": 3611 + }, + { + "epoch": 50.16775884665793, + "grad_norm": 0.23774254322052002, + "learning_rate": 0.0006, + "loss": 3.6023900508880615, + "step": 3612 + }, + { + "epoch": 50.18173875054609, + "grad_norm": 0.21548497676849365, + "learning_rate": 0.0006, + "loss": 3.5722856521606445, + "step": 3613 + }, + { + "epoch": 50.19571865443425, + "grad_norm": 0.20503196120262146, + "learning_rate": 0.0006, + "loss": 3.5899252891540527, + "step": 3614 + }, + { + "epoch": 50.20969855832241, + "grad_norm": 0.22084423899650574, + "learning_rate": 0.0006, + "loss": 3.56020450592041, + "step": 3615 + }, + { + "epoch": 50.22367846221057, + "grad_norm": 0.24276728928089142, + "learning_rate": 0.0006, + "loss": 3.585695743560791, + "step": 3616 + }, + { + "epoch": 50.237658366098735, + "grad_norm": 0.23182106018066406, + "learning_rate": 0.0006, + "loss": 3.580676555633545, + "step": 3617 + }, + { + "epoch": 50.25163826998689, + "grad_norm": 0.2341945767402649, + "learning_rate": 0.0006, + "loss": 3.579713821411133, + "step": 3618 + }, + { + "epoch": 50.265618173875055, + "grad_norm": 0.27971863746643066, + "learning_rate": 0.0006, + "loss": 3.568251371383667, + "step": 3619 + }, + { + "epoch": 50.27959807776322, + "grad_norm": 0.24740517139434814, + "learning_rate": 0.0006, + "loss": 3.5798869132995605, + "step": 3620 + }, + { + "epoch": 50.293577981651374, + "grad_norm": 0.20561005175113678, + "learning_rate": 0.0006, + "loss": 3.5610039234161377, + "step": 3621 + }, + { + "epoch": 50.30755788553954, + "grad_norm": 0.2085379660129547, + "learning_rate": 0.0006, + "loss": 3.5620288848876953, + "step": 3622 + }, + { + "epoch": 50.3215377894277, + "grad_norm": 0.20868757367134094, + "learning_rate": 0.0006, + "loss": 3.6090598106384277, + "step": 3623 + }, + { + "epoch": 50.33551769331586, + "grad_norm": 0.18991491198539734, + "learning_rate": 0.0006, + "loss": 3.55255126953125, + "step": 3624 + }, + { + "epoch": 50.34949759720402, + "grad_norm": 0.24742646515369415, + "learning_rate": 0.0006, + "loss": 3.60585880279541, + "step": 3625 + }, + { + "epoch": 50.36347750109218, + "grad_norm": 0.26971301436424255, + "learning_rate": 0.0006, + "loss": 3.5913054943084717, + "step": 3626 + }, + { + "epoch": 50.37745740498034, + "grad_norm": 0.24294881522655487, + "learning_rate": 0.0006, + "loss": 3.5570878982543945, + "step": 3627 + }, + { + "epoch": 50.391437308868504, + "grad_norm": 0.2194664478302002, + "learning_rate": 0.0006, + "loss": 3.5800397396087646, + "step": 3628 + }, + { + "epoch": 50.40541721275666, + "grad_norm": 0.2148507982492447, + "learning_rate": 0.0006, + "loss": 3.6182782649993896, + "step": 3629 + }, + { + "epoch": 50.419397116644824, + "grad_norm": 0.22235016524791718, + "learning_rate": 0.0006, + "loss": 3.5784103870391846, + "step": 3630 + }, + { + "epoch": 50.43337702053299, + "grad_norm": 0.23176309466362, + "learning_rate": 0.0006, + "loss": 3.559011459350586, + "step": 3631 + }, + { + "epoch": 50.44735692442114, + "grad_norm": 0.2267913520336151, + "learning_rate": 0.0006, + "loss": 3.5854780673980713, + "step": 3632 + }, + { + "epoch": 50.46133682830931, + "grad_norm": 0.22565901279449463, + "learning_rate": 0.0006, + "loss": 3.5891294479370117, + "step": 3633 + }, + { + "epoch": 50.47531673219746, + "grad_norm": 0.23724839091300964, + "learning_rate": 0.0006, + "loss": 3.575702428817749, + "step": 3634 + }, + { + "epoch": 50.489296636085626, + "grad_norm": 0.23679722845554352, + "learning_rate": 0.0006, + "loss": 3.588639259338379, + "step": 3635 + }, + { + "epoch": 50.50327653997379, + "grad_norm": 0.23909232020378113, + "learning_rate": 0.0006, + "loss": 3.5828709602355957, + "step": 3636 + }, + { + "epoch": 50.517256443861946, + "grad_norm": 0.24186119437217712, + "learning_rate": 0.0006, + "loss": 3.596708059310913, + "step": 3637 + }, + { + "epoch": 50.53123634775011, + "grad_norm": 0.2325516790151596, + "learning_rate": 0.0006, + "loss": 3.610769510269165, + "step": 3638 + }, + { + "epoch": 50.54521625163827, + "grad_norm": 0.205137237906456, + "learning_rate": 0.0006, + "loss": 3.612844228744507, + "step": 3639 + }, + { + "epoch": 50.55919615552643, + "grad_norm": 0.20860300958156586, + "learning_rate": 0.0006, + "loss": 3.623669147491455, + "step": 3640 + }, + { + "epoch": 50.57317605941459, + "grad_norm": 0.20029069483280182, + "learning_rate": 0.0006, + "loss": 3.6108334064483643, + "step": 3641 + }, + { + "epoch": 50.58715596330275, + "grad_norm": 0.18841931223869324, + "learning_rate": 0.0006, + "loss": 3.6073007583618164, + "step": 3642 + }, + { + "epoch": 50.60113586719091, + "grad_norm": 0.20113889873027802, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3643 + }, + { + "epoch": 50.615115771079076, + "grad_norm": 0.23595206439495087, + "learning_rate": 0.0006, + "loss": 3.634650707244873, + "step": 3644 + }, + { + "epoch": 50.62909567496723, + "grad_norm": 0.24625661969184875, + "learning_rate": 0.0006, + "loss": 3.593716621398926, + "step": 3645 + }, + { + "epoch": 50.643075578855395, + "grad_norm": 0.2182614505290985, + "learning_rate": 0.0006, + "loss": 3.6006946563720703, + "step": 3646 + }, + { + "epoch": 50.65705548274356, + "grad_norm": 0.20867182314395905, + "learning_rate": 0.0006, + "loss": 3.6249008178710938, + "step": 3647 + }, + { + "epoch": 50.671035386631715, + "grad_norm": 0.20451945066452026, + "learning_rate": 0.0006, + "loss": 3.5870985984802246, + "step": 3648 + }, + { + "epoch": 50.68501529051988, + "grad_norm": 0.19160118699073792, + "learning_rate": 0.0006, + "loss": 3.6104488372802734, + "step": 3649 + }, + { + "epoch": 50.69899519440804, + "grad_norm": 0.18884453177452087, + "learning_rate": 0.0006, + "loss": 3.607893943786621, + "step": 3650 + }, + { + "epoch": 50.7129750982962, + "grad_norm": 0.19570060074329376, + "learning_rate": 0.0006, + "loss": 3.5938732624053955, + "step": 3651 + }, + { + "epoch": 50.72695500218436, + "grad_norm": 0.21978189051151276, + "learning_rate": 0.0006, + "loss": 3.5894908905029297, + "step": 3652 + }, + { + "epoch": 50.74093490607252, + "grad_norm": 0.19930903613567352, + "learning_rate": 0.0006, + "loss": 3.6067557334899902, + "step": 3653 + }, + { + "epoch": 50.75491480996068, + "grad_norm": 0.19450204074382782, + "learning_rate": 0.0006, + "loss": 3.5989646911621094, + "step": 3654 + }, + { + "epoch": 50.768894713848844, + "grad_norm": 0.1925407201051712, + "learning_rate": 0.0006, + "loss": 3.604339599609375, + "step": 3655 + }, + { + "epoch": 50.782874617737, + "grad_norm": 0.19232864677906036, + "learning_rate": 0.0006, + "loss": 3.5789241790771484, + "step": 3656 + }, + { + "epoch": 50.796854521625164, + "grad_norm": 0.1937529742717743, + "learning_rate": 0.0006, + "loss": 3.6060590744018555, + "step": 3657 + }, + { + "epoch": 50.81083442551333, + "grad_norm": 0.19863007962703705, + "learning_rate": 0.0006, + "loss": 3.5944440364837646, + "step": 3658 + }, + { + "epoch": 50.824814329401484, + "grad_norm": 0.18879804015159607, + "learning_rate": 0.0006, + "loss": 3.6017069816589355, + "step": 3659 + }, + { + "epoch": 50.83879423328965, + "grad_norm": 0.20111720263957977, + "learning_rate": 0.0006, + "loss": 3.593327522277832, + "step": 3660 + }, + { + "epoch": 50.8527741371778, + "grad_norm": 0.22593358159065247, + "learning_rate": 0.0006, + "loss": 3.5856096744537354, + "step": 3661 + }, + { + "epoch": 50.86675404106597, + "grad_norm": 0.22624441981315613, + "learning_rate": 0.0006, + "loss": 3.6144661903381348, + "step": 3662 + }, + { + "epoch": 50.88073394495413, + "grad_norm": 0.22052904963493347, + "learning_rate": 0.0006, + "loss": 3.5895116329193115, + "step": 3663 + }, + { + "epoch": 50.89471384884229, + "grad_norm": 0.2248559594154358, + "learning_rate": 0.0006, + "loss": 3.6400208473205566, + "step": 3664 + }, + { + "epoch": 50.90869375273045, + "grad_norm": 0.20209142565727234, + "learning_rate": 0.0006, + "loss": 3.6059279441833496, + "step": 3665 + }, + { + "epoch": 50.92267365661861, + "grad_norm": 0.2075854390859604, + "learning_rate": 0.0006, + "loss": 3.590074062347412, + "step": 3666 + }, + { + "epoch": 50.93665356050677, + "grad_norm": 0.20524698495864868, + "learning_rate": 0.0006, + "loss": 3.600741147994995, + "step": 3667 + }, + { + "epoch": 50.95063346439493, + "grad_norm": 0.1922466903924942, + "learning_rate": 0.0006, + "loss": 3.5984225273132324, + "step": 3668 + }, + { + "epoch": 50.964613368283096, + "grad_norm": 0.18852637708187103, + "learning_rate": 0.0006, + "loss": 3.6204333305358887, + "step": 3669 + }, + { + "epoch": 50.97859327217125, + "grad_norm": 0.22050459682941437, + "learning_rate": 0.0006, + "loss": 3.6371538639068604, + "step": 3670 + }, + { + "epoch": 50.992573176059416, + "grad_norm": 0.21477681398391724, + "learning_rate": 0.0006, + "loss": 3.608738899230957, + "step": 3671 + }, + { + "epoch": 51.0, + "grad_norm": 0.22061094641685486, + "learning_rate": 0.0006, + "loss": 3.6209959983825684, + "step": 3672 + }, + { + "epoch": 51.0, + "eval_loss": 3.9762842655181885, + "eval_runtime": 44.8353, + "eval_samples_per_second": 54.466, + "eval_steps_per_second": 3.412, + "step": 3672 + }, + { + "epoch": 51.01397990388816, + "grad_norm": 0.19009192287921906, + "learning_rate": 0.0006, + "loss": 3.5604426860809326, + "step": 3673 + }, + { + "epoch": 51.02795980777632, + "grad_norm": 0.2217264175415039, + "learning_rate": 0.0006, + "loss": 3.5595664978027344, + "step": 3674 + }, + { + "epoch": 51.04193971166448, + "grad_norm": 0.2747595012187958, + "learning_rate": 0.0006, + "loss": 3.5800085067749023, + "step": 3675 + }, + { + "epoch": 51.05591961555265, + "grad_norm": 0.26963043212890625, + "learning_rate": 0.0006, + "loss": 3.5529065132141113, + "step": 3676 + }, + { + "epoch": 51.0698995194408, + "grad_norm": 0.2304207682609558, + "learning_rate": 0.0006, + "loss": 3.585238456726074, + "step": 3677 + }, + { + "epoch": 51.083879423328966, + "grad_norm": 0.22073867917060852, + "learning_rate": 0.0006, + "loss": 3.542267322540283, + "step": 3678 + }, + { + "epoch": 51.09785932721712, + "grad_norm": 0.22550931572914124, + "learning_rate": 0.0006, + "loss": 3.5693743228912354, + "step": 3679 + }, + { + "epoch": 51.111839231105286, + "grad_norm": 0.2347114384174347, + "learning_rate": 0.0006, + "loss": 3.5830154418945312, + "step": 3680 + }, + { + "epoch": 51.12581913499345, + "grad_norm": 0.24889813363552094, + "learning_rate": 0.0006, + "loss": 3.581010341644287, + "step": 3681 + }, + { + "epoch": 51.139799038881605, + "grad_norm": 0.2401021122932434, + "learning_rate": 0.0006, + "loss": 3.619450092315674, + "step": 3682 + }, + { + "epoch": 51.15377894276977, + "grad_norm": 0.22221142053604126, + "learning_rate": 0.0006, + "loss": 3.573624610900879, + "step": 3683 + }, + { + "epoch": 51.16775884665793, + "grad_norm": 0.2429024577140808, + "learning_rate": 0.0006, + "loss": 3.548610210418701, + "step": 3684 + }, + { + "epoch": 51.18173875054609, + "grad_norm": 0.26470765471458435, + "learning_rate": 0.0006, + "loss": 3.5582218170166016, + "step": 3685 + }, + { + "epoch": 51.19571865443425, + "grad_norm": 0.2632715404033661, + "learning_rate": 0.0006, + "loss": 3.5976979732513428, + "step": 3686 + }, + { + "epoch": 51.20969855832241, + "grad_norm": 0.2567448616027832, + "learning_rate": 0.0006, + "loss": 3.592031478881836, + "step": 3687 + }, + { + "epoch": 51.22367846221057, + "grad_norm": 0.25299885869026184, + "learning_rate": 0.0006, + "loss": 3.579765796661377, + "step": 3688 + }, + { + "epoch": 51.237658366098735, + "grad_norm": 0.22765189409255981, + "learning_rate": 0.0006, + "loss": 3.5677521228790283, + "step": 3689 + }, + { + "epoch": 51.25163826998689, + "grad_norm": 0.23369887471199036, + "learning_rate": 0.0006, + "loss": 3.585879325866699, + "step": 3690 + }, + { + "epoch": 51.265618173875055, + "grad_norm": 0.21358822286128998, + "learning_rate": 0.0006, + "loss": 3.568866729736328, + "step": 3691 + }, + { + "epoch": 51.27959807776322, + "grad_norm": 0.2127659171819687, + "learning_rate": 0.0006, + "loss": 3.614520311355591, + "step": 3692 + }, + { + "epoch": 51.293577981651374, + "grad_norm": 0.22829636931419373, + "learning_rate": 0.0006, + "loss": 3.6004438400268555, + "step": 3693 + }, + { + "epoch": 51.30755788553954, + "grad_norm": 0.223104789853096, + "learning_rate": 0.0006, + "loss": 3.5791001319885254, + "step": 3694 + }, + { + "epoch": 51.3215377894277, + "grad_norm": 0.2084331065416336, + "learning_rate": 0.0006, + "loss": 3.572514295578003, + "step": 3695 + }, + { + "epoch": 51.33551769331586, + "grad_norm": 0.21115142107009888, + "learning_rate": 0.0006, + "loss": 3.5736331939697266, + "step": 3696 + }, + { + "epoch": 51.34949759720402, + "grad_norm": 0.2158546894788742, + "learning_rate": 0.0006, + "loss": 3.587161064147949, + "step": 3697 + }, + { + "epoch": 51.36347750109218, + "grad_norm": 0.2478281408548355, + "learning_rate": 0.0006, + "loss": 3.5879693031311035, + "step": 3698 + }, + { + "epoch": 51.37745740498034, + "grad_norm": 0.25137850642204285, + "learning_rate": 0.0006, + "loss": 3.58297061920166, + "step": 3699 + }, + { + "epoch": 51.391437308868504, + "grad_norm": 0.22961364686489105, + "learning_rate": 0.0006, + "loss": 3.5556459426879883, + "step": 3700 + }, + { + "epoch": 51.40541721275666, + "grad_norm": 0.22561277449131012, + "learning_rate": 0.0006, + "loss": 3.60197114944458, + "step": 3701 + }, + { + "epoch": 51.419397116644824, + "grad_norm": 0.20331767201423645, + "learning_rate": 0.0006, + "loss": 3.5815134048461914, + "step": 3702 + }, + { + "epoch": 51.43337702053299, + "grad_norm": 0.1941518634557724, + "learning_rate": 0.0006, + "loss": 3.6055145263671875, + "step": 3703 + }, + { + "epoch": 51.44735692442114, + "grad_norm": 0.19306789338588715, + "learning_rate": 0.0006, + "loss": 3.6101536750793457, + "step": 3704 + }, + { + "epoch": 51.46133682830931, + "grad_norm": 0.1830628365278244, + "learning_rate": 0.0006, + "loss": 3.5978426933288574, + "step": 3705 + }, + { + "epoch": 51.47531673219746, + "grad_norm": 0.19231490790843964, + "learning_rate": 0.0006, + "loss": 3.54502534866333, + "step": 3706 + }, + { + "epoch": 51.489296636085626, + "grad_norm": 0.19109117984771729, + "learning_rate": 0.0006, + "loss": 3.5957441329956055, + "step": 3707 + }, + { + "epoch": 51.50327653997379, + "grad_norm": 0.2032860815525055, + "learning_rate": 0.0006, + "loss": 3.5626730918884277, + "step": 3708 + }, + { + "epoch": 51.517256443861946, + "grad_norm": 0.19685189425945282, + "learning_rate": 0.0006, + "loss": 3.580399990081787, + "step": 3709 + }, + { + "epoch": 51.53123634775011, + "grad_norm": 0.19273017346858978, + "learning_rate": 0.0006, + "loss": 3.5428152084350586, + "step": 3710 + }, + { + "epoch": 51.54521625163827, + "grad_norm": 0.20198430120944977, + "learning_rate": 0.0006, + "loss": 3.607492446899414, + "step": 3711 + }, + { + "epoch": 51.55919615552643, + "grad_norm": 0.2267402559518814, + "learning_rate": 0.0006, + "loss": 3.580479621887207, + "step": 3712 + }, + { + "epoch": 51.57317605941459, + "grad_norm": 0.2247764617204666, + "learning_rate": 0.0006, + "loss": 3.5921316146850586, + "step": 3713 + }, + { + "epoch": 51.58715596330275, + "grad_norm": 0.23907902836799622, + "learning_rate": 0.0006, + "loss": 3.6014928817749023, + "step": 3714 + }, + { + "epoch": 51.60113586719091, + "grad_norm": 0.25907906889915466, + "learning_rate": 0.0006, + "loss": 3.5900192260742188, + "step": 3715 + }, + { + "epoch": 51.615115771079076, + "grad_norm": 0.26282405853271484, + "learning_rate": 0.0006, + "loss": 3.5727553367614746, + "step": 3716 + }, + { + "epoch": 51.62909567496723, + "grad_norm": 0.2541179060935974, + "learning_rate": 0.0006, + "loss": 3.5835776329040527, + "step": 3717 + }, + { + "epoch": 51.643075578855395, + "grad_norm": 0.23372016847133636, + "learning_rate": 0.0006, + "loss": 3.5902652740478516, + "step": 3718 + }, + { + "epoch": 51.65705548274356, + "grad_norm": 0.22827622294425964, + "learning_rate": 0.0006, + "loss": 3.6048200130462646, + "step": 3719 + }, + { + "epoch": 51.671035386631715, + "grad_norm": 0.21026845276355743, + "learning_rate": 0.0006, + "loss": 3.5587573051452637, + "step": 3720 + }, + { + "epoch": 51.68501529051988, + "grad_norm": 0.23485958576202393, + "learning_rate": 0.0006, + "loss": 3.6212477684020996, + "step": 3721 + }, + { + "epoch": 51.69899519440804, + "grad_norm": 0.2676871120929718, + "learning_rate": 0.0006, + "loss": 3.597837448120117, + "step": 3722 + }, + { + "epoch": 51.7129750982962, + "grad_norm": 0.23661476373672485, + "learning_rate": 0.0006, + "loss": 3.616079330444336, + "step": 3723 + }, + { + "epoch": 51.72695500218436, + "grad_norm": 0.2212267816066742, + "learning_rate": 0.0006, + "loss": 3.6103296279907227, + "step": 3724 + }, + { + "epoch": 51.74093490607252, + "grad_norm": 0.22888682782649994, + "learning_rate": 0.0006, + "loss": 3.6099889278411865, + "step": 3725 + }, + { + "epoch": 51.75491480996068, + "grad_norm": 0.21740387380123138, + "learning_rate": 0.0006, + "loss": 3.5859200954437256, + "step": 3726 + }, + { + "epoch": 51.768894713848844, + "grad_norm": 0.20819106698036194, + "learning_rate": 0.0006, + "loss": 3.5875396728515625, + "step": 3727 + }, + { + "epoch": 51.782874617737, + "grad_norm": 0.21574485301971436, + "learning_rate": 0.0006, + "loss": 3.6203761100769043, + "step": 3728 + }, + { + "epoch": 51.796854521625164, + "grad_norm": 0.21275651454925537, + "learning_rate": 0.0006, + "loss": 3.6066012382507324, + "step": 3729 + }, + { + "epoch": 51.81083442551333, + "grad_norm": 0.2043808251619339, + "learning_rate": 0.0006, + "loss": 3.571417808532715, + "step": 3730 + }, + { + "epoch": 51.824814329401484, + "grad_norm": 0.2082396298646927, + "learning_rate": 0.0006, + "loss": 3.6076579093933105, + "step": 3731 + }, + { + "epoch": 51.83879423328965, + "grad_norm": 0.23331953585147858, + "learning_rate": 0.0006, + "loss": 3.621837615966797, + "step": 3732 + }, + { + "epoch": 51.8527741371778, + "grad_norm": 0.25569960474967957, + "learning_rate": 0.0006, + "loss": 3.602004051208496, + "step": 3733 + }, + { + "epoch": 51.86675404106597, + "grad_norm": 0.230540469288826, + "learning_rate": 0.0006, + "loss": 3.5829110145568848, + "step": 3734 + }, + { + "epoch": 51.88073394495413, + "grad_norm": 0.20307230949401855, + "learning_rate": 0.0006, + "loss": 3.5572190284729004, + "step": 3735 + }, + { + "epoch": 51.89471384884229, + "grad_norm": 0.20902153849601746, + "learning_rate": 0.0006, + "loss": 3.5939853191375732, + "step": 3736 + }, + { + "epoch": 51.90869375273045, + "grad_norm": 0.20433510839939117, + "learning_rate": 0.0006, + "loss": 3.6104702949523926, + "step": 3737 + }, + { + "epoch": 51.92267365661861, + "grad_norm": 0.2285638302564621, + "learning_rate": 0.0006, + "loss": 3.5588834285736084, + "step": 3738 + }, + { + "epoch": 51.93665356050677, + "grad_norm": 0.2388262301683426, + "learning_rate": 0.0006, + "loss": 3.6203103065490723, + "step": 3739 + }, + { + "epoch": 51.95063346439493, + "grad_norm": 0.22572419047355652, + "learning_rate": 0.0006, + "loss": 3.6191892623901367, + "step": 3740 + }, + { + "epoch": 51.964613368283096, + "grad_norm": 0.21060727536678314, + "learning_rate": 0.0006, + "loss": 3.620879650115967, + "step": 3741 + }, + { + "epoch": 51.97859327217125, + "grad_norm": 0.2045326828956604, + "learning_rate": 0.0006, + "loss": 3.5959091186523438, + "step": 3742 + }, + { + "epoch": 51.992573176059416, + "grad_norm": 0.21882471442222595, + "learning_rate": 0.0006, + "loss": 3.6504573822021484, + "step": 3743 + }, + { + "epoch": 52.0, + "grad_norm": 0.24379056692123413, + "learning_rate": 0.0006, + "loss": 3.6293625831604004, + "step": 3744 + }, + { + "epoch": 52.0, + "eval_loss": 3.9772427082061768, + "eval_runtime": 44.248, + "eval_samples_per_second": 55.189, + "eval_steps_per_second": 3.458, + "step": 3744 + }, + { + "epoch": 52.01397990388816, + "grad_norm": 0.19682207703590393, + "learning_rate": 0.0006, + "loss": 3.604281425476074, + "step": 3745 + }, + { + "epoch": 52.02795980777632, + "grad_norm": 0.23003028333187103, + "learning_rate": 0.0006, + "loss": 3.588266372680664, + "step": 3746 + }, + { + "epoch": 52.04193971166448, + "grad_norm": 0.2458166778087616, + "learning_rate": 0.0006, + "loss": 3.59077787399292, + "step": 3747 + }, + { + "epoch": 52.05591961555265, + "grad_norm": 0.23873521387577057, + "learning_rate": 0.0006, + "loss": 3.556537628173828, + "step": 3748 + }, + { + "epoch": 52.0698995194408, + "grad_norm": 0.21737053990364075, + "learning_rate": 0.0006, + "loss": 3.5758891105651855, + "step": 3749 + }, + { + "epoch": 52.083879423328966, + "grad_norm": 0.22239601612091064, + "learning_rate": 0.0006, + "loss": 3.552678346633911, + "step": 3750 + }, + { + "epoch": 52.09785932721712, + "grad_norm": 0.21818044781684875, + "learning_rate": 0.0006, + "loss": 3.577249526977539, + "step": 3751 + }, + { + "epoch": 52.111839231105286, + "grad_norm": 0.24513746798038483, + "learning_rate": 0.0006, + "loss": 3.569178581237793, + "step": 3752 + }, + { + "epoch": 52.12581913499345, + "grad_norm": 0.2801238000392914, + "learning_rate": 0.0006, + "loss": 3.556199073791504, + "step": 3753 + }, + { + "epoch": 52.139799038881605, + "grad_norm": 0.2722291648387909, + "learning_rate": 0.0006, + "loss": 3.5571072101593018, + "step": 3754 + }, + { + "epoch": 52.15377894276977, + "grad_norm": 0.2146541327238083, + "learning_rate": 0.0006, + "loss": 3.5831902027130127, + "step": 3755 + }, + { + "epoch": 52.16775884665793, + "grad_norm": 0.21040776371955872, + "learning_rate": 0.0006, + "loss": 3.6021504402160645, + "step": 3756 + }, + { + "epoch": 52.18173875054609, + "grad_norm": 0.24059702455997467, + "learning_rate": 0.0006, + "loss": 3.57401704788208, + "step": 3757 + }, + { + "epoch": 52.19571865443425, + "grad_norm": 0.25043657422065735, + "learning_rate": 0.0006, + "loss": 3.5776405334472656, + "step": 3758 + }, + { + "epoch": 52.20969855832241, + "grad_norm": 0.24292849004268646, + "learning_rate": 0.0006, + "loss": 3.5602574348449707, + "step": 3759 + }, + { + "epoch": 52.22367846221057, + "grad_norm": 0.2159980833530426, + "learning_rate": 0.0006, + "loss": 3.552079200744629, + "step": 3760 + }, + { + "epoch": 52.237658366098735, + "grad_norm": 0.19305892288684845, + "learning_rate": 0.0006, + "loss": 3.581195831298828, + "step": 3761 + }, + { + "epoch": 52.25163826998689, + "grad_norm": 0.2115706503391266, + "learning_rate": 0.0006, + "loss": 3.5689306259155273, + "step": 3762 + }, + { + "epoch": 52.265618173875055, + "grad_norm": 0.21885409951210022, + "learning_rate": 0.0006, + "loss": 3.5549206733703613, + "step": 3763 + }, + { + "epoch": 52.27959807776322, + "grad_norm": 0.2069413661956787, + "learning_rate": 0.0006, + "loss": 3.5743770599365234, + "step": 3764 + }, + { + "epoch": 52.293577981651374, + "grad_norm": 0.21922551095485687, + "learning_rate": 0.0006, + "loss": 3.5780110359191895, + "step": 3765 + }, + { + "epoch": 52.30755788553954, + "grad_norm": 0.21675541996955872, + "learning_rate": 0.0006, + "loss": 3.575730800628662, + "step": 3766 + }, + { + "epoch": 52.3215377894277, + "grad_norm": 0.21250510215759277, + "learning_rate": 0.0006, + "loss": 3.546060085296631, + "step": 3767 + }, + { + "epoch": 52.33551769331586, + "grad_norm": 0.23665618896484375, + "learning_rate": 0.0006, + "loss": 3.5887606143951416, + "step": 3768 + }, + { + "epoch": 52.34949759720402, + "grad_norm": 0.2525961399078369, + "learning_rate": 0.0006, + "loss": 3.5885281562805176, + "step": 3769 + }, + { + "epoch": 52.36347750109218, + "grad_norm": 0.26285895705223083, + "learning_rate": 0.0006, + "loss": 3.5880684852600098, + "step": 3770 + }, + { + "epoch": 52.37745740498034, + "grad_norm": 0.24714398384094238, + "learning_rate": 0.0006, + "loss": 3.548165798187256, + "step": 3771 + }, + { + "epoch": 52.391437308868504, + "grad_norm": 0.2234657257795334, + "learning_rate": 0.0006, + "loss": 3.56547212600708, + "step": 3772 + }, + { + "epoch": 52.40541721275666, + "grad_norm": 0.20636901259422302, + "learning_rate": 0.0006, + "loss": 3.5702133178710938, + "step": 3773 + }, + { + "epoch": 52.419397116644824, + "grad_norm": 0.20656965672969818, + "learning_rate": 0.0006, + "loss": 3.614602565765381, + "step": 3774 + }, + { + "epoch": 52.43337702053299, + "grad_norm": 0.20018167793750763, + "learning_rate": 0.0006, + "loss": 3.6063036918640137, + "step": 3775 + }, + { + "epoch": 52.44735692442114, + "grad_norm": 0.21859782934188843, + "learning_rate": 0.0006, + "loss": 3.5728869438171387, + "step": 3776 + }, + { + "epoch": 52.46133682830931, + "grad_norm": 0.21622174978256226, + "learning_rate": 0.0006, + "loss": 3.5657505989074707, + "step": 3777 + }, + { + "epoch": 52.47531673219746, + "grad_norm": 0.19779632985591888, + "learning_rate": 0.0006, + "loss": 3.5841145515441895, + "step": 3778 + }, + { + "epoch": 52.489296636085626, + "grad_norm": 0.21635952591896057, + "learning_rate": 0.0006, + "loss": 3.582096576690674, + "step": 3779 + }, + { + "epoch": 52.50327653997379, + "grad_norm": 0.21348397433757782, + "learning_rate": 0.0006, + "loss": 3.5654468536376953, + "step": 3780 + }, + { + "epoch": 52.517256443861946, + "grad_norm": 0.19572246074676514, + "learning_rate": 0.0006, + "loss": 3.5806241035461426, + "step": 3781 + }, + { + "epoch": 52.53123634775011, + "grad_norm": 0.1887553185224533, + "learning_rate": 0.0006, + "loss": 3.5752944946289062, + "step": 3782 + }, + { + "epoch": 52.54521625163827, + "grad_norm": 0.2192932814359665, + "learning_rate": 0.0006, + "loss": 3.5846266746520996, + "step": 3783 + }, + { + "epoch": 52.55919615552643, + "grad_norm": 0.23833444714546204, + "learning_rate": 0.0006, + "loss": 3.563093900680542, + "step": 3784 + }, + { + "epoch": 52.57317605941459, + "grad_norm": 0.26471760869026184, + "learning_rate": 0.0006, + "loss": 3.5582051277160645, + "step": 3785 + }, + { + "epoch": 52.58715596330275, + "grad_norm": 0.2767478823661804, + "learning_rate": 0.0006, + "loss": 3.5650997161865234, + "step": 3786 + }, + { + "epoch": 52.60113586719091, + "grad_norm": 0.26556241512298584, + "learning_rate": 0.0006, + "loss": 3.5944058895111084, + "step": 3787 + }, + { + "epoch": 52.615115771079076, + "grad_norm": 0.2733243405818939, + "learning_rate": 0.0006, + "loss": 3.5781195163726807, + "step": 3788 + }, + { + "epoch": 52.62909567496723, + "grad_norm": 0.24836041033267975, + "learning_rate": 0.0006, + "loss": 3.582634687423706, + "step": 3789 + }, + { + "epoch": 52.643075578855395, + "grad_norm": 0.2119593471288681, + "learning_rate": 0.0006, + "loss": 3.5851502418518066, + "step": 3790 + }, + { + "epoch": 52.65705548274356, + "grad_norm": 0.23237599432468414, + "learning_rate": 0.0006, + "loss": 3.5877747535705566, + "step": 3791 + }, + { + "epoch": 52.671035386631715, + "grad_norm": 0.21037372946739197, + "learning_rate": 0.0006, + "loss": 3.579045295715332, + "step": 3792 + }, + { + "epoch": 52.68501529051988, + "grad_norm": 0.19258099794387817, + "learning_rate": 0.0006, + "loss": 3.599151611328125, + "step": 3793 + }, + { + "epoch": 52.69899519440804, + "grad_norm": 0.18808242678642273, + "learning_rate": 0.0006, + "loss": 3.580679416656494, + "step": 3794 + }, + { + "epoch": 52.7129750982962, + "grad_norm": 0.18208397924900055, + "learning_rate": 0.0006, + "loss": 3.5940206050872803, + "step": 3795 + }, + { + "epoch": 52.72695500218436, + "grad_norm": 0.18173424899578094, + "learning_rate": 0.0006, + "loss": 3.5997331142425537, + "step": 3796 + }, + { + "epoch": 52.74093490607252, + "grad_norm": 0.1868390142917633, + "learning_rate": 0.0006, + "loss": 3.60007905960083, + "step": 3797 + }, + { + "epoch": 52.75491480996068, + "grad_norm": 0.1859273761510849, + "learning_rate": 0.0006, + "loss": 3.602668285369873, + "step": 3798 + }, + { + "epoch": 52.768894713848844, + "grad_norm": 0.18063156306743622, + "learning_rate": 0.0006, + "loss": 3.579869270324707, + "step": 3799 + }, + { + "epoch": 52.782874617737, + "grad_norm": 0.18920548260211945, + "learning_rate": 0.0006, + "loss": 3.6056337356567383, + "step": 3800 + }, + { + "epoch": 52.796854521625164, + "grad_norm": 0.20110033452510834, + "learning_rate": 0.0006, + "loss": 3.5694475173950195, + "step": 3801 + }, + { + "epoch": 52.81083442551333, + "grad_norm": 0.20331093668937683, + "learning_rate": 0.0006, + "loss": 3.5940358638763428, + "step": 3802 + }, + { + "epoch": 52.824814329401484, + "grad_norm": 0.2035607248544693, + "learning_rate": 0.0006, + "loss": 3.621305465698242, + "step": 3803 + }, + { + "epoch": 52.83879423328965, + "grad_norm": 0.1974431872367859, + "learning_rate": 0.0006, + "loss": 3.5959153175354004, + "step": 3804 + }, + { + "epoch": 52.8527741371778, + "grad_norm": 0.1832808405160904, + "learning_rate": 0.0006, + "loss": 3.582113265991211, + "step": 3805 + }, + { + "epoch": 52.86675404106597, + "grad_norm": 0.20269927382469177, + "learning_rate": 0.0006, + "loss": 3.5923209190368652, + "step": 3806 + }, + { + "epoch": 52.88073394495413, + "grad_norm": 0.20628313720226288, + "learning_rate": 0.0006, + "loss": 3.599729537963867, + "step": 3807 + }, + { + "epoch": 52.89471384884229, + "grad_norm": 0.2144002914428711, + "learning_rate": 0.0006, + "loss": 3.601041793823242, + "step": 3808 + }, + { + "epoch": 52.90869375273045, + "grad_norm": 0.215015709400177, + "learning_rate": 0.0006, + "loss": 3.5873360633850098, + "step": 3809 + }, + { + "epoch": 52.92267365661861, + "grad_norm": 0.23122714459896088, + "learning_rate": 0.0006, + "loss": 3.5839362144470215, + "step": 3810 + }, + { + "epoch": 52.93665356050677, + "grad_norm": 0.2381119281053543, + "learning_rate": 0.0006, + "loss": 3.564755439758301, + "step": 3811 + }, + { + "epoch": 52.95063346439493, + "grad_norm": 0.22975024580955505, + "learning_rate": 0.0006, + "loss": 3.594020128250122, + "step": 3812 + }, + { + "epoch": 52.964613368283096, + "grad_norm": 0.2419184148311615, + "learning_rate": 0.0006, + "loss": 3.5917205810546875, + "step": 3813 + }, + { + "epoch": 52.97859327217125, + "grad_norm": 0.21143122017383575, + "learning_rate": 0.0006, + "loss": 3.626842975616455, + "step": 3814 + }, + { + "epoch": 52.992573176059416, + "grad_norm": 0.195548415184021, + "learning_rate": 0.0006, + "loss": 3.5798377990722656, + "step": 3815 + }, + { + "epoch": 53.0, + "grad_norm": 0.22441816329956055, + "learning_rate": 0.0006, + "loss": 3.5652856826782227, + "step": 3816 + }, + { + "epoch": 53.0, + "eval_loss": 3.9635632038116455, + "eval_runtime": 44.772, + "eval_samples_per_second": 54.543, + "eval_steps_per_second": 3.417, + "step": 3816 + }, + { + "epoch": 53.01397990388816, + "grad_norm": 0.2547561228275299, + "learning_rate": 0.0006, + "loss": 3.562561511993408, + "step": 3817 + }, + { + "epoch": 53.02795980777632, + "grad_norm": 0.36890196800231934, + "learning_rate": 0.0006, + "loss": 3.534581184387207, + "step": 3818 + }, + { + "epoch": 53.04193971166448, + "grad_norm": 0.42631810903549194, + "learning_rate": 0.0006, + "loss": 3.5438239574432373, + "step": 3819 + }, + { + "epoch": 53.05591961555265, + "grad_norm": 0.29458126425743103, + "learning_rate": 0.0006, + "loss": 3.5594735145568848, + "step": 3820 + }, + { + "epoch": 53.0698995194408, + "grad_norm": 0.24320989847183228, + "learning_rate": 0.0006, + "loss": 3.5715155601501465, + "step": 3821 + }, + { + "epoch": 53.083879423328966, + "grad_norm": 0.3012531101703644, + "learning_rate": 0.0006, + "loss": 3.5324978828430176, + "step": 3822 + }, + { + "epoch": 53.09785932721712, + "grad_norm": 0.2789555788040161, + "learning_rate": 0.0006, + "loss": 3.5848183631896973, + "step": 3823 + }, + { + "epoch": 53.111839231105286, + "grad_norm": 0.2488897293806076, + "learning_rate": 0.0006, + "loss": 3.5853679180145264, + "step": 3824 + }, + { + "epoch": 53.12581913499345, + "grad_norm": 0.3016898036003113, + "learning_rate": 0.0006, + "loss": 3.585637092590332, + "step": 3825 + }, + { + "epoch": 53.139799038881605, + "grad_norm": 0.30293571949005127, + "learning_rate": 0.0006, + "loss": 3.5745015144348145, + "step": 3826 + }, + { + "epoch": 53.15377894276977, + "grad_norm": 0.24611566960811615, + "learning_rate": 0.0006, + "loss": 3.5761728286743164, + "step": 3827 + }, + { + "epoch": 53.16775884665793, + "grad_norm": 0.23852500319480896, + "learning_rate": 0.0006, + "loss": 3.59317946434021, + "step": 3828 + }, + { + "epoch": 53.18173875054609, + "grad_norm": 0.27882838249206543, + "learning_rate": 0.0006, + "loss": 3.589779853820801, + "step": 3829 + }, + { + "epoch": 53.19571865443425, + "grad_norm": 0.3252250552177429, + "learning_rate": 0.0006, + "loss": 3.564526081085205, + "step": 3830 + }, + { + "epoch": 53.20969855832241, + "grad_norm": 0.29635530710220337, + "learning_rate": 0.0006, + "loss": 3.5309946537017822, + "step": 3831 + }, + { + "epoch": 53.22367846221057, + "grad_norm": 0.25211700797080994, + "learning_rate": 0.0006, + "loss": 3.5795631408691406, + "step": 3832 + }, + { + "epoch": 53.237658366098735, + "grad_norm": 0.20772705972194672, + "learning_rate": 0.0006, + "loss": 3.5649163722991943, + "step": 3833 + }, + { + "epoch": 53.25163826998689, + "grad_norm": 0.2460525780916214, + "learning_rate": 0.0006, + "loss": 3.5484111309051514, + "step": 3834 + }, + { + "epoch": 53.265618173875055, + "grad_norm": 0.24652884900569916, + "learning_rate": 0.0006, + "loss": 3.5631136894226074, + "step": 3835 + }, + { + "epoch": 53.27959807776322, + "grad_norm": 0.23740890622138977, + "learning_rate": 0.0006, + "loss": 3.6234607696533203, + "step": 3836 + }, + { + "epoch": 53.293577981651374, + "grad_norm": 0.2463800311088562, + "learning_rate": 0.0006, + "loss": 3.5578083992004395, + "step": 3837 + }, + { + "epoch": 53.30755788553954, + "grad_norm": 0.23402568697929382, + "learning_rate": 0.0006, + "loss": 3.559845209121704, + "step": 3838 + }, + { + "epoch": 53.3215377894277, + "grad_norm": 0.2539580762386322, + "learning_rate": 0.0006, + "loss": 3.5863685607910156, + "step": 3839 + }, + { + "epoch": 53.33551769331586, + "grad_norm": 0.24994857609272003, + "learning_rate": 0.0006, + "loss": 3.5758700370788574, + "step": 3840 + }, + { + "epoch": 53.34949759720402, + "grad_norm": 0.21340647339820862, + "learning_rate": 0.0006, + "loss": 3.588602066040039, + "step": 3841 + }, + { + "epoch": 53.36347750109218, + "grad_norm": 0.2029065042734146, + "learning_rate": 0.0006, + "loss": 3.58594012260437, + "step": 3842 + }, + { + "epoch": 53.37745740498034, + "grad_norm": 0.20266403257846832, + "learning_rate": 0.0006, + "loss": 3.5906057357788086, + "step": 3843 + }, + { + "epoch": 53.391437308868504, + "grad_norm": 0.19940714538097382, + "learning_rate": 0.0006, + "loss": 3.5458335876464844, + "step": 3844 + }, + { + "epoch": 53.40541721275666, + "grad_norm": 0.21295064687728882, + "learning_rate": 0.0006, + "loss": 3.5589025020599365, + "step": 3845 + }, + { + "epoch": 53.419397116644824, + "grad_norm": 0.2150672823190689, + "learning_rate": 0.0006, + "loss": 3.5907669067382812, + "step": 3846 + }, + { + "epoch": 53.43337702053299, + "grad_norm": 0.21469077467918396, + "learning_rate": 0.0006, + "loss": 3.5403499603271484, + "step": 3847 + }, + { + "epoch": 53.44735692442114, + "grad_norm": 0.20485323667526245, + "learning_rate": 0.0006, + "loss": 3.5634326934814453, + "step": 3848 + }, + { + "epoch": 53.46133682830931, + "grad_norm": 0.1981327086687088, + "learning_rate": 0.0006, + "loss": 3.579385280609131, + "step": 3849 + }, + { + "epoch": 53.47531673219746, + "grad_norm": 0.1898331642150879, + "learning_rate": 0.0006, + "loss": 3.5824122428894043, + "step": 3850 + }, + { + "epoch": 53.489296636085626, + "grad_norm": 0.18228355050086975, + "learning_rate": 0.0006, + "loss": 3.533255100250244, + "step": 3851 + }, + { + "epoch": 53.50327653997379, + "grad_norm": 0.1803922951221466, + "learning_rate": 0.0006, + "loss": 3.589881420135498, + "step": 3852 + }, + { + "epoch": 53.517256443861946, + "grad_norm": 0.19590361416339874, + "learning_rate": 0.0006, + "loss": 3.599487066268921, + "step": 3853 + }, + { + "epoch": 53.53123634775011, + "grad_norm": 0.1935775727033615, + "learning_rate": 0.0006, + "loss": 3.5769765377044678, + "step": 3854 + }, + { + "epoch": 53.54521625163827, + "grad_norm": 0.1790810525417328, + "learning_rate": 0.0006, + "loss": 3.594104290008545, + "step": 3855 + }, + { + "epoch": 53.55919615552643, + "grad_norm": 0.17993320524692535, + "learning_rate": 0.0006, + "loss": 3.555650234222412, + "step": 3856 + }, + { + "epoch": 53.57317605941459, + "grad_norm": 0.19114883244037628, + "learning_rate": 0.0006, + "loss": 3.599574089050293, + "step": 3857 + }, + { + "epoch": 53.58715596330275, + "grad_norm": 0.18493886291980743, + "learning_rate": 0.0006, + "loss": 3.555177927017212, + "step": 3858 + }, + { + "epoch": 53.60113586719091, + "grad_norm": 0.19346027076244354, + "learning_rate": 0.0006, + "loss": 3.601219654083252, + "step": 3859 + }, + { + "epoch": 53.615115771079076, + "grad_norm": 0.2002234011888504, + "learning_rate": 0.0006, + "loss": 3.5614418983459473, + "step": 3860 + }, + { + "epoch": 53.62909567496723, + "grad_norm": 0.17705366015434265, + "learning_rate": 0.0006, + "loss": 3.587432384490967, + "step": 3861 + }, + { + "epoch": 53.643075578855395, + "grad_norm": 0.19825726747512817, + "learning_rate": 0.0006, + "loss": 3.570539951324463, + "step": 3862 + }, + { + "epoch": 53.65705548274356, + "grad_norm": 0.2038952112197876, + "learning_rate": 0.0006, + "loss": 3.575758934020996, + "step": 3863 + }, + { + "epoch": 53.671035386631715, + "grad_norm": 0.21109119057655334, + "learning_rate": 0.0006, + "loss": 3.6013951301574707, + "step": 3864 + }, + { + "epoch": 53.68501529051988, + "grad_norm": 0.21738514304161072, + "learning_rate": 0.0006, + "loss": 3.567424774169922, + "step": 3865 + }, + { + "epoch": 53.69899519440804, + "grad_norm": 0.214813694357872, + "learning_rate": 0.0006, + "loss": 3.599733352661133, + "step": 3866 + }, + { + "epoch": 53.7129750982962, + "grad_norm": 0.20838409662246704, + "learning_rate": 0.0006, + "loss": 3.595839738845825, + "step": 3867 + }, + { + "epoch": 53.72695500218436, + "grad_norm": 0.2088911384344101, + "learning_rate": 0.0006, + "loss": 3.6030569076538086, + "step": 3868 + }, + { + "epoch": 53.74093490607252, + "grad_norm": 0.22705569863319397, + "learning_rate": 0.0006, + "loss": 3.5876665115356445, + "step": 3869 + }, + { + "epoch": 53.75491480996068, + "grad_norm": 0.22327932715415955, + "learning_rate": 0.0006, + "loss": 3.5555529594421387, + "step": 3870 + }, + { + "epoch": 53.768894713848844, + "grad_norm": 0.2092375010251999, + "learning_rate": 0.0006, + "loss": 3.599871873855591, + "step": 3871 + }, + { + "epoch": 53.782874617737, + "grad_norm": 0.20672307908535004, + "learning_rate": 0.0006, + "loss": 3.598846435546875, + "step": 3872 + }, + { + "epoch": 53.796854521625164, + "grad_norm": 0.2090507596731186, + "learning_rate": 0.0006, + "loss": 3.564012050628662, + "step": 3873 + }, + { + "epoch": 53.81083442551333, + "grad_norm": 0.2044386863708496, + "learning_rate": 0.0006, + "loss": 3.585221529006958, + "step": 3874 + }, + { + "epoch": 53.824814329401484, + "grad_norm": 0.2065548598766327, + "learning_rate": 0.0006, + "loss": 3.595351457595825, + "step": 3875 + }, + { + "epoch": 53.83879423328965, + "grad_norm": 0.22895927727222443, + "learning_rate": 0.0006, + "loss": 3.5720505714416504, + "step": 3876 + }, + { + "epoch": 53.8527741371778, + "grad_norm": 0.22099260985851288, + "learning_rate": 0.0006, + "loss": 3.572587251663208, + "step": 3877 + }, + { + "epoch": 53.86675404106597, + "grad_norm": 0.19928759336471558, + "learning_rate": 0.0006, + "loss": 3.5641839504241943, + "step": 3878 + }, + { + "epoch": 53.88073394495413, + "grad_norm": 0.2735077440738678, + "learning_rate": 0.0006, + "loss": 3.575535774230957, + "step": 3879 + }, + { + "epoch": 53.89471384884229, + "grad_norm": 0.2642554044723511, + "learning_rate": 0.0006, + "loss": 3.5993123054504395, + "step": 3880 + }, + { + "epoch": 53.90869375273045, + "grad_norm": 0.22406205534934998, + "learning_rate": 0.0006, + "loss": 3.5968177318573, + "step": 3881 + }, + { + "epoch": 53.92267365661861, + "grad_norm": 0.22148431837558746, + "learning_rate": 0.0006, + "loss": 3.5668797492980957, + "step": 3882 + }, + { + "epoch": 53.93665356050677, + "grad_norm": 0.20805056393146515, + "learning_rate": 0.0006, + "loss": 3.60849666595459, + "step": 3883 + }, + { + "epoch": 53.95063346439493, + "grad_norm": 0.18656247854232788, + "learning_rate": 0.0006, + "loss": 3.5883405208587646, + "step": 3884 + }, + { + "epoch": 53.964613368283096, + "grad_norm": 0.19937767088413239, + "learning_rate": 0.0006, + "loss": 3.5897698402404785, + "step": 3885 + }, + { + "epoch": 53.97859327217125, + "grad_norm": 0.19680732488632202, + "learning_rate": 0.0006, + "loss": 3.568530559539795, + "step": 3886 + }, + { + "epoch": 53.992573176059416, + "grad_norm": 0.218981072306633, + "learning_rate": 0.0006, + "loss": 3.6194474697113037, + "step": 3887 + }, + { + "epoch": 54.0, + "grad_norm": 0.26408281922340393, + "learning_rate": 0.0006, + "loss": 3.5224976539611816, + "step": 3888 + }, + { + "epoch": 54.0, + "eval_loss": 3.983997106552124, + "eval_runtime": 44.9507, + "eval_samples_per_second": 54.326, + "eval_steps_per_second": 3.404, + "step": 3888 + }, + { + "epoch": 54.01397990388816, + "grad_norm": 0.2230917066335678, + "learning_rate": 0.0006, + "loss": 3.578058958053589, + "step": 3889 + }, + { + "epoch": 54.02795980777632, + "grad_norm": 0.23055201768875122, + "learning_rate": 0.0006, + "loss": 3.549612283706665, + "step": 3890 + }, + { + "epoch": 54.04193971166448, + "grad_norm": 0.23317518830299377, + "learning_rate": 0.0006, + "loss": 3.5662591457366943, + "step": 3891 + }, + { + "epoch": 54.05591961555265, + "grad_norm": 0.27022141218185425, + "learning_rate": 0.0006, + "loss": 3.547062873840332, + "step": 3892 + }, + { + "epoch": 54.0698995194408, + "grad_norm": 0.2665329873561859, + "learning_rate": 0.0006, + "loss": 3.540881633758545, + "step": 3893 + }, + { + "epoch": 54.083879423328966, + "grad_norm": 0.23968365788459778, + "learning_rate": 0.0006, + "loss": 3.574781894683838, + "step": 3894 + }, + { + "epoch": 54.09785932721712, + "grad_norm": 0.22174887359142303, + "learning_rate": 0.0006, + "loss": 3.514077663421631, + "step": 3895 + }, + { + "epoch": 54.111839231105286, + "grad_norm": 0.24605485796928406, + "learning_rate": 0.0006, + "loss": 3.534174919128418, + "step": 3896 + }, + { + "epoch": 54.12581913499345, + "grad_norm": 0.22874566912651062, + "learning_rate": 0.0006, + "loss": 3.574282169342041, + "step": 3897 + }, + { + "epoch": 54.139799038881605, + "grad_norm": 0.2113833874464035, + "learning_rate": 0.0006, + "loss": 3.548687696456909, + "step": 3898 + }, + { + "epoch": 54.15377894276977, + "grad_norm": 0.20756855607032776, + "learning_rate": 0.0006, + "loss": 3.556060791015625, + "step": 3899 + }, + { + "epoch": 54.16775884665793, + "grad_norm": 0.2070261538028717, + "learning_rate": 0.0006, + "loss": 3.5585689544677734, + "step": 3900 + }, + { + "epoch": 54.18173875054609, + "grad_norm": 0.20014794170856476, + "learning_rate": 0.0006, + "loss": 3.5898427963256836, + "step": 3901 + }, + { + "epoch": 54.19571865443425, + "grad_norm": 0.19851888716220856, + "learning_rate": 0.0006, + "loss": 3.564826011657715, + "step": 3902 + }, + { + "epoch": 54.20969855832241, + "grad_norm": 0.20333127677440643, + "learning_rate": 0.0006, + "loss": 3.540660858154297, + "step": 3903 + }, + { + "epoch": 54.22367846221057, + "grad_norm": 0.20291075110435486, + "learning_rate": 0.0006, + "loss": 3.544628143310547, + "step": 3904 + }, + { + "epoch": 54.237658366098735, + "grad_norm": 0.2055949866771698, + "learning_rate": 0.0006, + "loss": 3.547478675842285, + "step": 3905 + }, + { + "epoch": 54.25163826998689, + "grad_norm": 0.20305688679218292, + "learning_rate": 0.0006, + "loss": 3.5793099403381348, + "step": 3906 + }, + { + "epoch": 54.265618173875055, + "grad_norm": 0.21053043007850647, + "learning_rate": 0.0006, + "loss": 3.529263973236084, + "step": 3907 + }, + { + "epoch": 54.27959807776322, + "grad_norm": 0.2461051046848297, + "learning_rate": 0.0006, + "loss": 3.598266124725342, + "step": 3908 + }, + { + "epoch": 54.293577981651374, + "grad_norm": 0.25074276328086853, + "learning_rate": 0.0006, + "loss": 3.557170867919922, + "step": 3909 + }, + { + "epoch": 54.30755788553954, + "grad_norm": 0.23321498930454254, + "learning_rate": 0.0006, + "loss": 3.5532279014587402, + "step": 3910 + }, + { + "epoch": 54.3215377894277, + "grad_norm": 0.19062374532222748, + "learning_rate": 0.0006, + "loss": 3.5718722343444824, + "step": 3911 + }, + { + "epoch": 54.33551769331586, + "grad_norm": 0.22571852803230286, + "learning_rate": 0.0006, + "loss": 3.539036750793457, + "step": 3912 + }, + { + "epoch": 54.34949759720402, + "grad_norm": 0.23314784467220306, + "learning_rate": 0.0006, + "loss": 3.5444631576538086, + "step": 3913 + }, + { + "epoch": 54.36347750109218, + "grad_norm": 0.22334037721157074, + "learning_rate": 0.0006, + "loss": 3.5567970275878906, + "step": 3914 + }, + { + "epoch": 54.37745740498034, + "grad_norm": 0.21900276839733124, + "learning_rate": 0.0006, + "loss": 3.600113868713379, + "step": 3915 + }, + { + "epoch": 54.391437308868504, + "grad_norm": 0.20166733860969543, + "learning_rate": 0.0006, + "loss": 3.54038667678833, + "step": 3916 + }, + { + "epoch": 54.40541721275666, + "grad_norm": 0.21886761486530304, + "learning_rate": 0.0006, + "loss": 3.5708651542663574, + "step": 3917 + }, + { + "epoch": 54.419397116644824, + "grad_norm": 0.26383060216903687, + "learning_rate": 0.0006, + "loss": 3.5572509765625, + "step": 3918 + }, + { + "epoch": 54.43337702053299, + "grad_norm": 0.26116663217544556, + "learning_rate": 0.0006, + "loss": 3.528968334197998, + "step": 3919 + }, + { + "epoch": 54.44735692442114, + "grad_norm": 0.20640771090984344, + "learning_rate": 0.0006, + "loss": 3.587789535522461, + "step": 3920 + }, + { + "epoch": 54.46133682830931, + "grad_norm": 0.23454350233078003, + "learning_rate": 0.0006, + "loss": 3.586834192276001, + "step": 3921 + }, + { + "epoch": 54.47531673219746, + "grad_norm": 0.24828442931175232, + "learning_rate": 0.0006, + "loss": 3.5884881019592285, + "step": 3922 + }, + { + "epoch": 54.489296636085626, + "grad_norm": 0.23654282093048096, + "learning_rate": 0.0006, + "loss": 3.5754570960998535, + "step": 3923 + }, + { + "epoch": 54.50327653997379, + "grad_norm": 0.22721099853515625, + "learning_rate": 0.0006, + "loss": 3.5575859546661377, + "step": 3924 + }, + { + "epoch": 54.517256443861946, + "grad_norm": 0.2157498002052307, + "learning_rate": 0.0006, + "loss": 3.5929436683654785, + "step": 3925 + }, + { + "epoch": 54.53123634775011, + "grad_norm": 0.21604257822036743, + "learning_rate": 0.0006, + "loss": 3.5788726806640625, + "step": 3926 + }, + { + "epoch": 54.54521625163827, + "grad_norm": 0.22310106456279755, + "learning_rate": 0.0006, + "loss": 3.5873899459838867, + "step": 3927 + }, + { + "epoch": 54.55919615552643, + "grad_norm": 0.2121969312429428, + "learning_rate": 0.0006, + "loss": 3.575186252593994, + "step": 3928 + }, + { + "epoch": 54.57317605941459, + "grad_norm": 0.19073615968227386, + "learning_rate": 0.0006, + "loss": 3.5963356494903564, + "step": 3929 + }, + { + "epoch": 54.58715596330275, + "grad_norm": 0.18745607137680054, + "learning_rate": 0.0006, + "loss": 3.593679428100586, + "step": 3930 + }, + { + "epoch": 54.60113586719091, + "grad_norm": 0.19518259167671204, + "learning_rate": 0.0006, + "loss": 3.5730791091918945, + "step": 3931 + }, + { + "epoch": 54.615115771079076, + "grad_norm": 0.20948481559753418, + "learning_rate": 0.0006, + "loss": 3.5646820068359375, + "step": 3932 + }, + { + "epoch": 54.62909567496723, + "grad_norm": 0.1929631531238556, + "learning_rate": 0.0006, + "loss": 3.5550060272216797, + "step": 3933 + }, + { + "epoch": 54.643075578855395, + "grad_norm": 0.2104327380657196, + "learning_rate": 0.0006, + "loss": 3.5774357318878174, + "step": 3934 + }, + { + "epoch": 54.65705548274356, + "grad_norm": 0.1952148675918579, + "learning_rate": 0.0006, + "loss": 3.58856201171875, + "step": 3935 + }, + { + "epoch": 54.671035386631715, + "grad_norm": 0.17762340605258942, + "learning_rate": 0.0006, + "loss": 3.5324528217315674, + "step": 3936 + }, + { + "epoch": 54.68501529051988, + "grad_norm": 0.18349695205688477, + "learning_rate": 0.0006, + "loss": 3.5663890838623047, + "step": 3937 + }, + { + "epoch": 54.69899519440804, + "grad_norm": 0.2038232684135437, + "learning_rate": 0.0006, + "loss": 3.5811679363250732, + "step": 3938 + }, + { + "epoch": 54.7129750982962, + "grad_norm": 0.2431754469871521, + "learning_rate": 0.0006, + "loss": 3.56833553314209, + "step": 3939 + }, + { + "epoch": 54.72695500218436, + "grad_norm": 0.27498456835746765, + "learning_rate": 0.0006, + "loss": 3.5977981090545654, + "step": 3940 + }, + { + "epoch": 54.74093490607252, + "grad_norm": 0.20809921622276306, + "learning_rate": 0.0006, + "loss": 3.57193922996521, + "step": 3941 + }, + { + "epoch": 54.75491480996068, + "grad_norm": 0.18073450028896332, + "learning_rate": 0.0006, + "loss": 3.5610151290893555, + "step": 3942 + }, + { + "epoch": 54.768894713848844, + "grad_norm": 0.194604754447937, + "learning_rate": 0.0006, + "loss": 3.5716047286987305, + "step": 3943 + }, + { + "epoch": 54.782874617737, + "grad_norm": 0.20566268265247345, + "learning_rate": 0.0006, + "loss": 3.578401565551758, + "step": 3944 + }, + { + "epoch": 54.796854521625164, + "grad_norm": 0.21028153598308563, + "learning_rate": 0.0006, + "loss": 3.610511064529419, + "step": 3945 + }, + { + "epoch": 54.81083442551333, + "grad_norm": 0.21413563191890717, + "learning_rate": 0.0006, + "loss": 3.601574659347534, + "step": 3946 + }, + { + "epoch": 54.824814329401484, + "grad_norm": 0.2137378603219986, + "learning_rate": 0.0006, + "loss": 3.603997230529785, + "step": 3947 + }, + { + "epoch": 54.83879423328965, + "grad_norm": 0.2162058800458908, + "learning_rate": 0.0006, + "loss": 3.5829391479492188, + "step": 3948 + }, + { + "epoch": 54.8527741371778, + "grad_norm": 0.21700997650623322, + "learning_rate": 0.0006, + "loss": 3.595317840576172, + "step": 3949 + }, + { + "epoch": 54.86675404106597, + "grad_norm": 0.20864669978618622, + "learning_rate": 0.0006, + "loss": 3.601891040802002, + "step": 3950 + }, + { + "epoch": 54.88073394495413, + "grad_norm": 0.19780485332012177, + "learning_rate": 0.0006, + "loss": 3.567460775375366, + "step": 3951 + }, + { + "epoch": 54.89471384884229, + "grad_norm": 0.2017168402671814, + "learning_rate": 0.0006, + "loss": 3.5737192630767822, + "step": 3952 + }, + { + "epoch": 54.90869375273045, + "grad_norm": 0.22847825288772583, + "learning_rate": 0.0006, + "loss": 3.60937762260437, + "step": 3953 + }, + { + "epoch": 54.92267365661861, + "grad_norm": 0.23698270320892334, + "learning_rate": 0.0006, + "loss": 3.6013574600219727, + "step": 3954 + }, + { + "epoch": 54.93665356050677, + "grad_norm": 0.238611102104187, + "learning_rate": 0.0006, + "loss": 3.5689988136291504, + "step": 3955 + }, + { + "epoch": 54.95063346439493, + "grad_norm": 0.2680057883262634, + "learning_rate": 0.0006, + "loss": 3.5650172233581543, + "step": 3956 + }, + { + "epoch": 54.964613368283096, + "grad_norm": 0.25712481141090393, + "learning_rate": 0.0006, + "loss": 3.576777935028076, + "step": 3957 + }, + { + "epoch": 54.97859327217125, + "grad_norm": 0.2232409566640854, + "learning_rate": 0.0006, + "loss": 3.583169937133789, + "step": 3958 + }, + { + "epoch": 54.992573176059416, + "grad_norm": 0.21233153343200684, + "learning_rate": 0.0006, + "loss": 3.602219581604004, + "step": 3959 + }, + { + "epoch": 55.0, + "grad_norm": 0.24345774948596954, + "learning_rate": 0.0006, + "loss": 3.5118026733398438, + "step": 3960 + }, + { + "epoch": 55.0, + "eval_loss": 3.9819064140319824, + "eval_runtime": 44.6627, + "eval_samples_per_second": 54.677, + "eval_steps_per_second": 3.426, + "step": 3960 + }, + { + "epoch": 55.01397990388816, + "grad_norm": 0.229562908411026, + "learning_rate": 0.0006, + "loss": 3.5591073036193848, + "step": 3961 + }, + { + "epoch": 55.02795980777632, + "grad_norm": 0.21731624007225037, + "learning_rate": 0.0006, + "loss": 3.5544848442077637, + "step": 3962 + }, + { + "epoch": 55.04193971166448, + "grad_norm": 0.23528429865837097, + "learning_rate": 0.0006, + "loss": 3.5654311180114746, + "step": 3963 + }, + { + "epoch": 55.05591961555265, + "grad_norm": 0.23147839307785034, + "learning_rate": 0.0006, + "loss": 3.537006378173828, + "step": 3964 + }, + { + "epoch": 55.0698995194408, + "grad_norm": 0.22218112647533417, + "learning_rate": 0.0006, + "loss": 3.5218982696533203, + "step": 3965 + }, + { + "epoch": 55.083879423328966, + "grad_norm": 0.20697443187236786, + "learning_rate": 0.0006, + "loss": 3.5623579025268555, + "step": 3966 + }, + { + "epoch": 55.09785932721712, + "grad_norm": 0.2108476608991623, + "learning_rate": 0.0006, + "loss": 3.528214454650879, + "step": 3967 + }, + { + "epoch": 55.111839231105286, + "grad_norm": 0.21664242446422577, + "learning_rate": 0.0006, + "loss": 3.5429646968841553, + "step": 3968 + }, + { + "epoch": 55.12581913499345, + "grad_norm": 0.21359260380268097, + "learning_rate": 0.0006, + "loss": 3.5873513221740723, + "step": 3969 + }, + { + "epoch": 55.139799038881605, + "grad_norm": 0.23289452493190765, + "learning_rate": 0.0006, + "loss": 3.5551905632019043, + "step": 3970 + }, + { + "epoch": 55.15377894276977, + "grad_norm": 0.25835689902305603, + "learning_rate": 0.0006, + "loss": 3.5380427837371826, + "step": 3971 + }, + { + "epoch": 55.16775884665793, + "grad_norm": 0.25449255108833313, + "learning_rate": 0.0006, + "loss": 3.5276808738708496, + "step": 3972 + }, + { + "epoch": 55.18173875054609, + "grad_norm": 0.2472638338804245, + "learning_rate": 0.0006, + "loss": 3.539194107055664, + "step": 3973 + }, + { + "epoch": 55.19571865443425, + "grad_norm": 0.21743768453598022, + "learning_rate": 0.0006, + "loss": 3.557185173034668, + "step": 3974 + }, + { + "epoch": 55.20969855832241, + "grad_norm": 0.22787386178970337, + "learning_rate": 0.0006, + "loss": 3.581993579864502, + "step": 3975 + }, + { + "epoch": 55.22367846221057, + "grad_norm": 0.2332824170589447, + "learning_rate": 0.0006, + "loss": 3.5439846515655518, + "step": 3976 + }, + { + "epoch": 55.237658366098735, + "grad_norm": 0.2054908573627472, + "learning_rate": 0.0006, + "loss": 3.5528793334960938, + "step": 3977 + }, + { + "epoch": 55.25163826998689, + "grad_norm": 0.2087554633617401, + "learning_rate": 0.0006, + "loss": 3.536464214324951, + "step": 3978 + }, + { + "epoch": 55.265618173875055, + "grad_norm": 0.22214409708976746, + "learning_rate": 0.0006, + "loss": 3.56184458732605, + "step": 3979 + }, + { + "epoch": 55.27959807776322, + "grad_norm": 0.23214097321033478, + "learning_rate": 0.0006, + "loss": 3.5560522079467773, + "step": 3980 + }, + { + "epoch": 55.293577981651374, + "grad_norm": 0.23317331075668335, + "learning_rate": 0.0006, + "loss": 3.5433850288391113, + "step": 3981 + }, + { + "epoch": 55.30755788553954, + "grad_norm": 0.2303774058818817, + "learning_rate": 0.0006, + "loss": 3.5505576133728027, + "step": 3982 + }, + { + "epoch": 55.3215377894277, + "grad_norm": 0.2400730401277542, + "learning_rate": 0.0006, + "loss": 3.557952404022217, + "step": 3983 + }, + { + "epoch": 55.33551769331586, + "grad_norm": 0.23933538794517517, + "learning_rate": 0.0006, + "loss": 3.536656141281128, + "step": 3984 + }, + { + "epoch": 55.34949759720402, + "grad_norm": 0.23796266317367554, + "learning_rate": 0.0006, + "loss": 3.5777554512023926, + "step": 3985 + }, + { + "epoch": 55.36347750109218, + "grad_norm": 0.26078858971595764, + "learning_rate": 0.0006, + "loss": 3.549121379852295, + "step": 3986 + }, + { + "epoch": 55.37745740498034, + "grad_norm": 0.22726459801197052, + "learning_rate": 0.0006, + "loss": 3.605684518814087, + "step": 3987 + }, + { + "epoch": 55.391437308868504, + "grad_norm": 0.19872179627418518, + "learning_rate": 0.0006, + "loss": 3.5501739978790283, + "step": 3988 + }, + { + "epoch": 55.40541721275666, + "grad_norm": 0.2027827352285385, + "learning_rate": 0.0006, + "loss": 3.625922441482544, + "step": 3989 + }, + { + "epoch": 55.419397116644824, + "grad_norm": 0.24207144975662231, + "learning_rate": 0.0006, + "loss": 3.595451831817627, + "step": 3990 + }, + { + "epoch": 55.43337702053299, + "grad_norm": 0.23449009656906128, + "learning_rate": 0.0006, + "loss": 3.577167510986328, + "step": 3991 + }, + { + "epoch": 55.44735692442114, + "grad_norm": 0.22529540956020355, + "learning_rate": 0.0006, + "loss": 3.5585317611694336, + "step": 3992 + }, + { + "epoch": 55.46133682830931, + "grad_norm": 0.2354331612586975, + "learning_rate": 0.0006, + "loss": 3.574819564819336, + "step": 3993 + }, + { + "epoch": 55.47531673219746, + "grad_norm": 0.2251061201095581, + "learning_rate": 0.0006, + "loss": 3.580498695373535, + "step": 3994 + }, + { + "epoch": 55.489296636085626, + "grad_norm": 0.22107349336147308, + "learning_rate": 0.0006, + "loss": 3.578591823577881, + "step": 3995 + }, + { + "epoch": 55.50327653997379, + "grad_norm": 0.24686408042907715, + "learning_rate": 0.0006, + "loss": 3.541625499725342, + "step": 3996 + }, + { + "epoch": 55.517256443861946, + "grad_norm": 0.23731260001659393, + "learning_rate": 0.0006, + "loss": 3.5508079528808594, + "step": 3997 + }, + { + "epoch": 55.53123634775011, + "grad_norm": 0.21246901154518127, + "learning_rate": 0.0006, + "loss": 3.569500207901001, + "step": 3998 + }, + { + "epoch": 55.54521625163827, + "grad_norm": 0.21369415521621704, + "learning_rate": 0.0006, + "loss": 3.546938896179199, + "step": 3999 + }, + { + "epoch": 55.55919615552643, + "grad_norm": 0.2102644443511963, + "learning_rate": 0.0006, + "loss": 3.5842084884643555, + "step": 4000 + }, + { + "epoch": 55.57317605941459, + "grad_norm": 0.2355998456478119, + "learning_rate": 0.0006, + "loss": 3.5493381023406982, + "step": 4001 + }, + { + "epoch": 55.58715596330275, + "grad_norm": 0.2670288681983948, + "learning_rate": 0.0006, + "loss": 3.5909032821655273, + "step": 4002 + }, + { + "epoch": 55.60113586719091, + "grad_norm": 0.2958407998085022, + "learning_rate": 0.0006, + "loss": 3.624906063079834, + "step": 4003 + }, + { + "epoch": 55.615115771079076, + "grad_norm": 0.2948441505432129, + "learning_rate": 0.0006, + "loss": 3.553528070449829, + "step": 4004 + }, + { + "epoch": 55.62909567496723, + "grad_norm": 0.24873173236846924, + "learning_rate": 0.0006, + "loss": 3.5851495265960693, + "step": 4005 + }, + { + "epoch": 55.643075578855395, + "grad_norm": 0.22191756963729858, + "learning_rate": 0.0006, + "loss": 3.556459903717041, + "step": 4006 + }, + { + "epoch": 55.65705548274356, + "grad_norm": 0.22677776217460632, + "learning_rate": 0.0006, + "loss": 3.579428195953369, + "step": 4007 + }, + { + "epoch": 55.671035386631715, + "grad_norm": 0.22263763844966888, + "learning_rate": 0.0006, + "loss": 3.5878806114196777, + "step": 4008 + }, + { + "epoch": 55.68501529051988, + "grad_norm": 0.24498602747917175, + "learning_rate": 0.0006, + "loss": 3.5989317893981934, + "step": 4009 + }, + { + "epoch": 55.69899519440804, + "grad_norm": 0.26294007897377014, + "learning_rate": 0.0006, + "loss": 3.5866756439208984, + "step": 4010 + }, + { + "epoch": 55.7129750982962, + "grad_norm": 0.22105370461940765, + "learning_rate": 0.0006, + "loss": 3.594365119934082, + "step": 4011 + }, + { + "epoch": 55.72695500218436, + "grad_norm": 0.20973286032676697, + "learning_rate": 0.0006, + "loss": 3.551156997680664, + "step": 4012 + }, + { + "epoch": 55.74093490607252, + "grad_norm": 0.2123304158449173, + "learning_rate": 0.0006, + "loss": 3.587405204772949, + "step": 4013 + }, + { + "epoch": 55.75491480996068, + "grad_norm": 0.22134795784950256, + "learning_rate": 0.0006, + "loss": 3.59114146232605, + "step": 4014 + }, + { + "epoch": 55.768894713848844, + "grad_norm": 0.20822957158088684, + "learning_rate": 0.0006, + "loss": 3.5910749435424805, + "step": 4015 + }, + { + "epoch": 55.782874617737, + "grad_norm": 0.22392229735851288, + "learning_rate": 0.0006, + "loss": 3.5800669193267822, + "step": 4016 + }, + { + "epoch": 55.796854521625164, + "grad_norm": 0.2214914709329605, + "learning_rate": 0.0006, + "loss": 3.5553741455078125, + "step": 4017 + }, + { + "epoch": 55.81083442551333, + "grad_norm": 0.1993025690317154, + "learning_rate": 0.0006, + "loss": 3.567298412322998, + "step": 4018 + }, + { + "epoch": 55.824814329401484, + "grad_norm": 0.21043774485588074, + "learning_rate": 0.0006, + "loss": 3.537358045578003, + "step": 4019 + }, + { + "epoch": 55.83879423328965, + "grad_norm": 0.18501818180084229, + "learning_rate": 0.0006, + "loss": 3.5971930027008057, + "step": 4020 + }, + { + "epoch": 55.8527741371778, + "grad_norm": 0.19626867771148682, + "learning_rate": 0.0006, + "loss": 3.563570976257324, + "step": 4021 + }, + { + "epoch": 55.86675404106597, + "grad_norm": 0.19328820705413818, + "learning_rate": 0.0006, + "loss": 3.600377082824707, + "step": 4022 + }, + { + "epoch": 55.88073394495413, + "grad_norm": 0.2013237327337265, + "learning_rate": 0.0006, + "loss": 3.5916812419891357, + "step": 4023 + }, + { + "epoch": 55.89471384884229, + "grad_norm": 0.22775673866271973, + "learning_rate": 0.0006, + "loss": 3.5572638511657715, + "step": 4024 + }, + { + "epoch": 55.90869375273045, + "grad_norm": 0.2452211230993271, + "learning_rate": 0.0006, + "loss": 3.54378080368042, + "step": 4025 + }, + { + "epoch": 55.92267365661861, + "grad_norm": 0.23337189853191376, + "learning_rate": 0.0006, + "loss": 3.5853466987609863, + "step": 4026 + }, + { + "epoch": 55.93665356050677, + "grad_norm": 0.20073719322681427, + "learning_rate": 0.0006, + "loss": 3.5793843269348145, + "step": 4027 + }, + { + "epoch": 55.95063346439493, + "grad_norm": 0.1963811218738556, + "learning_rate": 0.0006, + "loss": 3.5783073902130127, + "step": 4028 + }, + { + "epoch": 55.964613368283096, + "grad_norm": 0.19921033084392548, + "learning_rate": 0.0006, + "loss": 3.5455331802368164, + "step": 4029 + }, + { + "epoch": 55.97859327217125, + "grad_norm": 0.22151921689510345, + "learning_rate": 0.0006, + "loss": 3.551476001739502, + "step": 4030 + }, + { + "epoch": 55.992573176059416, + "grad_norm": 0.2636640965938568, + "learning_rate": 0.0006, + "loss": 3.5859174728393555, + "step": 4031 + }, + { + "epoch": 56.0, + "grad_norm": 0.282680869102478, + "learning_rate": 0.0006, + "loss": 3.5818469524383545, + "step": 4032 + }, + { + "epoch": 56.0, + "eval_loss": 3.982189178466797, + "eval_runtime": 44.2577, + "eval_samples_per_second": 55.177, + "eval_steps_per_second": 3.457, + "step": 4032 + }, + { + "epoch": 56.01397990388816, + "grad_norm": 0.23316597938537598, + "learning_rate": 0.0006, + "loss": 3.5500292778015137, + "step": 4033 + }, + { + "epoch": 56.02795980777632, + "grad_norm": 0.22836777567863464, + "learning_rate": 0.0006, + "loss": 3.5661063194274902, + "step": 4034 + }, + { + "epoch": 56.04193971166448, + "grad_norm": 0.2607800364494324, + "learning_rate": 0.0006, + "loss": 3.5496177673339844, + "step": 4035 + }, + { + "epoch": 56.05591961555265, + "grad_norm": 0.2620518207550049, + "learning_rate": 0.0006, + "loss": 3.562621831893921, + "step": 4036 + }, + { + "epoch": 56.0698995194408, + "grad_norm": 0.2344953864812851, + "learning_rate": 0.0006, + "loss": 3.5371389389038086, + "step": 4037 + }, + { + "epoch": 56.083879423328966, + "grad_norm": 0.2523435950279236, + "learning_rate": 0.0006, + "loss": 3.565216541290283, + "step": 4038 + }, + { + "epoch": 56.09785932721712, + "grad_norm": 0.26315048336982727, + "learning_rate": 0.0006, + "loss": 3.5510857105255127, + "step": 4039 + }, + { + "epoch": 56.111839231105286, + "grad_norm": 0.256817102432251, + "learning_rate": 0.0006, + "loss": 3.576132297515869, + "step": 4040 + }, + { + "epoch": 56.12581913499345, + "grad_norm": 0.25146403908729553, + "learning_rate": 0.0006, + "loss": 3.550875663757324, + "step": 4041 + }, + { + "epoch": 56.139799038881605, + "grad_norm": 0.2471698820590973, + "learning_rate": 0.0006, + "loss": 3.5574288368225098, + "step": 4042 + }, + { + "epoch": 56.15377894276977, + "grad_norm": 0.2324669510126114, + "learning_rate": 0.0006, + "loss": 3.524637222290039, + "step": 4043 + }, + { + "epoch": 56.16775884665793, + "grad_norm": 0.21824438869953156, + "learning_rate": 0.0006, + "loss": 3.563664436340332, + "step": 4044 + }, + { + "epoch": 56.18173875054609, + "grad_norm": 0.2381063550710678, + "learning_rate": 0.0006, + "loss": 3.573061943054199, + "step": 4045 + }, + { + "epoch": 56.19571865443425, + "grad_norm": 0.23728328943252563, + "learning_rate": 0.0006, + "loss": 3.5563716888427734, + "step": 4046 + }, + { + "epoch": 56.20969855832241, + "grad_norm": 0.20998933911323547, + "learning_rate": 0.0006, + "loss": 3.540152072906494, + "step": 4047 + }, + { + "epoch": 56.22367846221057, + "grad_norm": 0.2249690741300583, + "learning_rate": 0.0006, + "loss": 3.5699682235717773, + "step": 4048 + }, + { + "epoch": 56.237658366098735, + "grad_norm": 0.22615988552570343, + "learning_rate": 0.0006, + "loss": 3.5604777336120605, + "step": 4049 + }, + { + "epoch": 56.25163826998689, + "grad_norm": 0.20918409526348114, + "learning_rate": 0.0006, + "loss": 3.5612001419067383, + "step": 4050 + }, + { + "epoch": 56.265618173875055, + "grad_norm": 0.22025109827518463, + "learning_rate": 0.0006, + "loss": 3.520402193069458, + "step": 4051 + }, + { + "epoch": 56.27959807776322, + "grad_norm": 0.22722174227237701, + "learning_rate": 0.0006, + "loss": 3.52360200881958, + "step": 4052 + }, + { + "epoch": 56.293577981651374, + "grad_norm": 0.2115592360496521, + "learning_rate": 0.0006, + "loss": 3.562689781188965, + "step": 4053 + }, + { + "epoch": 56.30755788553954, + "grad_norm": 0.19253599643707275, + "learning_rate": 0.0006, + "loss": 3.545013427734375, + "step": 4054 + }, + { + "epoch": 56.3215377894277, + "grad_norm": 0.2534266710281372, + "learning_rate": 0.0006, + "loss": 3.530149459838867, + "step": 4055 + }, + { + "epoch": 56.33551769331586, + "grad_norm": 0.2871302366256714, + "learning_rate": 0.0006, + "loss": 3.5667316913604736, + "step": 4056 + }, + { + "epoch": 56.34949759720402, + "grad_norm": 0.2686561048030853, + "learning_rate": 0.0006, + "loss": 3.5341169834136963, + "step": 4057 + }, + { + "epoch": 56.36347750109218, + "grad_norm": 0.21016116440296173, + "learning_rate": 0.0006, + "loss": 3.5151243209838867, + "step": 4058 + }, + { + "epoch": 56.37745740498034, + "grad_norm": 0.20810428261756897, + "learning_rate": 0.0006, + "loss": 3.5641677379608154, + "step": 4059 + }, + { + "epoch": 56.391437308868504, + "grad_norm": 0.2732172906398773, + "learning_rate": 0.0006, + "loss": 3.546082019805908, + "step": 4060 + }, + { + "epoch": 56.40541721275666, + "grad_norm": 0.26587602496147156, + "learning_rate": 0.0006, + "loss": 3.5465946197509766, + "step": 4061 + }, + { + "epoch": 56.419397116644824, + "grad_norm": 0.20492126047611237, + "learning_rate": 0.0006, + "loss": 3.5686211585998535, + "step": 4062 + }, + { + "epoch": 56.43337702053299, + "grad_norm": 0.2147696167230606, + "learning_rate": 0.0006, + "loss": 3.5808653831481934, + "step": 4063 + }, + { + "epoch": 56.44735692442114, + "grad_norm": 0.21947690844535828, + "learning_rate": 0.0006, + "loss": 3.530872344970703, + "step": 4064 + }, + { + "epoch": 56.46133682830931, + "grad_norm": 0.21305148303508759, + "learning_rate": 0.0006, + "loss": 3.5480992794036865, + "step": 4065 + }, + { + "epoch": 56.47531673219746, + "grad_norm": 0.2066979706287384, + "learning_rate": 0.0006, + "loss": 3.5198287963867188, + "step": 4066 + }, + { + "epoch": 56.489296636085626, + "grad_norm": 0.19393840432167053, + "learning_rate": 0.0006, + "loss": 3.555344581604004, + "step": 4067 + }, + { + "epoch": 56.50327653997379, + "grad_norm": 0.19889849424362183, + "learning_rate": 0.0006, + "loss": 3.56475830078125, + "step": 4068 + }, + { + "epoch": 56.517256443861946, + "grad_norm": 0.19851456582546234, + "learning_rate": 0.0006, + "loss": 3.5790982246398926, + "step": 4069 + }, + { + "epoch": 56.53123634775011, + "grad_norm": 0.19570177793502808, + "learning_rate": 0.0006, + "loss": 3.558379888534546, + "step": 4070 + }, + { + "epoch": 56.54521625163827, + "grad_norm": 0.21364007890224457, + "learning_rate": 0.0006, + "loss": 3.586343288421631, + "step": 4071 + }, + { + "epoch": 56.55919615552643, + "grad_norm": 0.22896543145179749, + "learning_rate": 0.0006, + "loss": 3.5565874576568604, + "step": 4072 + }, + { + "epoch": 56.57317605941459, + "grad_norm": 0.21665218472480774, + "learning_rate": 0.0006, + "loss": 3.5737056732177734, + "step": 4073 + }, + { + "epoch": 56.58715596330275, + "grad_norm": 0.1964256912469864, + "learning_rate": 0.0006, + "loss": 3.555798053741455, + "step": 4074 + }, + { + "epoch": 56.60113586719091, + "grad_norm": 0.2056122124195099, + "learning_rate": 0.0006, + "loss": 3.548685073852539, + "step": 4075 + }, + { + "epoch": 56.615115771079076, + "grad_norm": 0.21677979826927185, + "learning_rate": 0.0006, + "loss": 3.569136619567871, + "step": 4076 + }, + { + "epoch": 56.62909567496723, + "grad_norm": 0.2029557228088379, + "learning_rate": 0.0006, + "loss": 3.5723280906677246, + "step": 4077 + }, + { + "epoch": 56.643075578855395, + "grad_norm": 0.22111767530441284, + "learning_rate": 0.0006, + "loss": 3.5784404277801514, + "step": 4078 + }, + { + "epoch": 56.65705548274356, + "grad_norm": 0.245675191283226, + "learning_rate": 0.0006, + "loss": 3.559330940246582, + "step": 4079 + }, + { + "epoch": 56.671035386631715, + "grad_norm": 0.19715000689029694, + "learning_rate": 0.0006, + "loss": 3.5694894790649414, + "step": 4080 + }, + { + "epoch": 56.68501529051988, + "grad_norm": 0.2112303525209427, + "learning_rate": 0.0006, + "loss": 3.5932059288024902, + "step": 4081 + }, + { + "epoch": 56.69899519440804, + "grad_norm": 0.23710735142230988, + "learning_rate": 0.0006, + "loss": 3.59895658493042, + "step": 4082 + }, + { + "epoch": 56.7129750982962, + "grad_norm": 0.2507518529891968, + "learning_rate": 0.0006, + "loss": 3.58455228805542, + "step": 4083 + }, + { + "epoch": 56.72695500218436, + "grad_norm": 0.24770016968250275, + "learning_rate": 0.0006, + "loss": 3.566256046295166, + "step": 4084 + }, + { + "epoch": 56.74093490607252, + "grad_norm": 0.2407187819480896, + "learning_rate": 0.0006, + "loss": 3.6002347469329834, + "step": 4085 + }, + { + "epoch": 56.75491480996068, + "grad_norm": 0.21417197585105896, + "learning_rate": 0.0006, + "loss": 3.5579819679260254, + "step": 4086 + }, + { + "epoch": 56.768894713848844, + "grad_norm": 0.21014295518398285, + "learning_rate": 0.0006, + "loss": 3.574289321899414, + "step": 4087 + }, + { + "epoch": 56.782874617737, + "grad_norm": 0.2265855073928833, + "learning_rate": 0.0006, + "loss": 3.589186906814575, + "step": 4088 + }, + { + "epoch": 56.796854521625164, + "grad_norm": 0.22685059905052185, + "learning_rate": 0.0006, + "loss": 3.567077159881592, + "step": 4089 + }, + { + "epoch": 56.81083442551333, + "grad_norm": 0.21579493582248688, + "learning_rate": 0.0006, + "loss": 3.5568556785583496, + "step": 4090 + }, + { + "epoch": 56.824814329401484, + "grad_norm": 0.2049565464258194, + "learning_rate": 0.0006, + "loss": 3.5547285079956055, + "step": 4091 + }, + { + "epoch": 56.83879423328965, + "grad_norm": 0.21019354462623596, + "learning_rate": 0.0006, + "loss": 3.606884479522705, + "step": 4092 + }, + { + "epoch": 56.8527741371778, + "grad_norm": 0.26110008358955383, + "learning_rate": 0.0006, + "loss": 3.5626933574676514, + "step": 4093 + }, + { + "epoch": 56.86675404106597, + "grad_norm": 0.22148117423057556, + "learning_rate": 0.0006, + "loss": 3.5739552974700928, + "step": 4094 + }, + { + "epoch": 56.88073394495413, + "grad_norm": 0.20535576343536377, + "learning_rate": 0.0006, + "loss": 3.566840648651123, + "step": 4095 + }, + { + "epoch": 56.89471384884229, + "grad_norm": 0.1928025484085083, + "learning_rate": 0.0006, + "loss": 3.5637013912200928, + "step": 4096 + }, + { + "epoch": 56.90869375273045, + "grad_norm": 0.1989327371120453, + "learning_rate": 0.0006, + "loss": 3.5881259441375732, + "step": 4097 + }, + { + "epoch": 56.92267365661861, + "grad_norm": 0.21137912571430206, + "learning_rate": 0.0006, + "loss": 3.5513358116149902, + "step": 4098 + }, + { + "epoch": 56.93665356050677, + "grad_norm": 0.22471629083156586, + "learning_rate": 0.0006, + "loss": 3.5630130767822266, + "step": 4099 + }, + { + "epoch": 56.95063346439493, + "grad_norm": 0.2323181927204132, + "learning_rate": 0.0006, + "loss": 3.559762477874756, + "step": 4100 + }, + { + "epoch": 56.964613368283096, + "grad_norm": 0.2020239382982254, + "learning_rate": 0.0006, + "loss": 3.596774101257324, + "step": 4101 + }, + { + "epoch": 56.97859327217125, + "grad_norm": 0.21822074055671692, + "learning_rate": 0.0006, + "loss": 3.598115921020508, + "step": 4102 + }, + { + "epoch": 56.992573176059416, + "grad_norm": 0.20600785315036774, + "learning_rate": 0.0006, + "loss": 3.5579686164855957, + "step": 4103 + }, + { + "epoch": 57.0, + "grad_norm": 0.23575574159622192, + "learning_rate": 0.0006, + "loss": 3.57532000541687, + "step": 4104 + }, + { + "epoch": 57.0, + "eval_loss": 3.9726130962371826, + "eval_runtime": 44.7918, + "eval_samples_per_second": 54.519, + "eval_steps_per_second": 3.416, + "step": 4104 + }, + { + "epoch": 57.01397990388816, + "grad_norm": 0.2366827428340912, + "learning_rate": 0.0006, + "loss": 3.552804946899414, + "step": 4105 + }, + { + "epoch": 57.02795980777632, + "grad_norm": 0.2728131115436554, + "learning_rate": 0.0006, + "loss": 3.5407862663269043, + "step": 4106 + }, + { + "epoch": 57.04193971166448, + "grad_norm": 0.2685103416442871, + "learning_rate": 0.0006, + "loss": 3.525047779083252, + "step": 4107 + }, + { + "epoch": 57.05591961555265, + "grad_norm": 0.26493778824806213, + "learning_rate": 0.0006, + "loss": 3.527106523513794, + "step": 4108 + }, + { + "epoch": 57.0698995194408, + "grad_norm": 0.290961354970932, + "learning_rate": 0.0006, + "loss": 3.5482702255249023, + "step": 4109 + }, + { + "epoch": 57.083879423328966, + "grad_norm": 0.33083876967430115, + "learning_rate": 0.0006, + "loss": 3.5123658180236816, + "step": 4110 + }, + { + "epoch": 57.09785932721712, + "grad_norm": 0.28544098138809204, + "learning_rate": 0.0006, + "loss": 3.5563549995422363, + "step": 4111 + }, + { + "epoch": 57.111839231105286, + "grad_norm": 0.2516465187072754, + "learning_rate": 0.0006, + "loss": 3.547360420227051, + "step": 4112 + }, + { + "epoch": 57.12581913499345, + "grad_norm": 0.2485780417919159, + "learning_rate": 0.0006, + "loss": 3.5234861373901367, + "step": 4113 + }, + { + "epoch": 57.139799038881605, + "grad_norm": 0.246695414185524, + "learning_rate": 0.0006, + "loss": 3.573009490966797, + "step": 4114 + }, + { + "epoch": 57.15377894276977, + "grad_norm": 0.24958990514278412, + "learning_rate": 0.0006, + "loss": 3.5322680473327637, + "step": 4115 + }, + { + "epoch": 57.16775884665793, + "grad_norm": 0.20882244408130646, + "learning_rate": 0.0006, + "loss": 3.5463480949401855, + "step": 4116 + }, + { + "epoch": 57.18173875054609, + "grad_norm": 0.2372189313173294, + "learning_rate": 0.0006, + "loss": 3.543396472930908, + "step": 4117 + }, + { + "epoch": 57.19571865443425, + "grad_norm": 0.24817894399166107, + "learning_rate": 0.0006, + "loss": 3.5594849586486816, + "step": 4118 + }, + { + "epoch": 57.20969855832241, + "grad_norm": 0.2231832891702652, + "learning_rate": 0.0006, + "loss": 3.5276806354522705, + "step": 4119 + }, + { + "epoch": 57.22367846221057, + "grad_norm": 0.2211553156375885, + "learning_rate": 0.0006, + "loss": 3.5423057079315186, + "step": 4120 + }, + { + "epoch": 57.237658366098735, + "grad_norm": 0.2495127022266388, + "learning_rate": 0.0006, + "loss": 3.57668399810791, + "step": 4121 + }, + { + "epoch": 57.25163826998689, + "grad_norm": 0.2548885941505432, + "learning_rate": 0.0006, + "loss": 3.5487570762634277, + "step": 4122 + }, + { + "epoch": 57.265618173875055, + "grad_norm": 0.22884942591190338, + "learning_rate": 0.0006, + "loss": 3.560772180557251, + "step": 4123 + }, + { + "epoch": 57.27959807776322, + "grad_norm": 0.20817993581295013, + "learning_rate": 0.0006, + "loss": 3.5540637969970703, + "step": 4124 + }, + { + "epoch": 57.293577981651374, + "grad_norm": 0.2075389176607132, + "learning_rate": 0.0006, + "loss": 3.5382890701293945, + "step": 4125 + }, + { + "epoch": 57.30755788553954, + "grad_norm": 0.2081303596496582, + "learning_rate": 0.0006, + "loss": 3.554612874984741, + "step": 4126 + }, + { + "epoch": 57.3215377894277, + "grad_norm": 0.2108871191740036, + "learning_rate": 0.0006, + "loss": 3.583320379257202, + "step": 4127 + }, + { + "epoch": 57.33551769331586, + "grad_norm": 0.21608266234397888, + "learning_rate": 0.0006, + "loss": 3.5358712673187256, + "step": 4128 + }, + { + "epoch": 57.34949759720402, + "grad_norm": 0.21208034455776215, + "learning_rate": 0.0006, + "loss": 3.561821937561035, + "step": 4129 + }, + { + "epoch": 57.36347750109218, + "grad_norm": 0.2109878957271576, + "learning_rate": 0.0006, + "loss": 3.5592710971832275, + "step": 4130 + }, + { + "epoch": 57.37745740498034, + "grad_norm": 0.2175656110048294, + "learning_rate": 0.0006, + "loss": 3.5616424083709717, + "step": 4131 + }, + { + "epoch": 57.391437308868504, + "grad_norm": 0.2170158475637436, + "learning_rate": 0.0006, + "loss": 3.5580999851226807, + "step": 4132 + }, + { + "epoch": 57.40541721275666, + "grad_norm": 0.22486525774002075, + "learning_rate": 0.0006, + "loss": 3.562096118927002, + "step": 4133 + }, + { + "epoch": 57.419397116644824, + "grad_norm": 0.22458943724632263, + "learning_rate": 0.0006, + "loss": 3.5784192085266113, + "step": 4134 + }, + { + "epoch": 57.43337702053299, + "grad_norm": 0.20545627176761627, + "learning_rate": 0.0006, + "loss": 3.5740323066711426, + "step": 4135 + }, + { + "epoch": 57.44735692442114, + "grad_norm": 0.22105063498020172, + "learning_rate": 0.0006, + "loss": 3.537400245666504, + "step": 4136 + }, + { + "epoch": 57.46133682830931, + "grad_norm": 0.26679784059524536, + "learning_rate": 0.0006, + "loss": 3.5323081016540527, + "step": 4137 + }, + { + "epoch": 57.47531673219746, + "grad_norm": 0.2646673321723938, + "learning_rate": 0.0006, + "loss": 3.54030442237854, + "step": 4138 + }, + { + "epoch": 57.489296636085626, + "grad_norm": 0.22486890852451324, + "learning_rate": 0.0006, + "loss": 3.558323621749878, + "step": 4139 + }, + { + "epoch": 57.50327653997379, + "grad_norm": 0.20868313312530518, + "learning_rate": 0.0006, + "loss": 3.5296707153320312, + "step": 4140 + }, + { + "epoch": 57.517256443861946, + "grad_norm": 0.22973674535751343, + "learning_rate": 0.0006, + "loss": 3.5401687622070312, + "step": 4141 + }, + { + "epoch": 57.53123634775011, + "grad_norm": 0.22321778535842896, + "learning_rate": 0.0006, + "loss": 3.566683530807495, + "step": 4142 + }, + { + "epoch": 57.54521625163827, + "grad_norm": 0.20808766782283783, + "learning_rate": 0.0006, + "loss": 3.5398507118225098, + "step": 4143 + }, + { + "epoch": 57.55919615552643, + "grad_norm": 0.19632819294929504, + "learning_rate": 0.0006, + "loss": 3.5785460472106934, + "step": 4144 + }, + { + "epoch": 57.57317605941459, + "grad_norm": 0.18699012696743011, + "learning_rate": 0.0006, + "loss": 3.5495004653930664, + "step": 4145 + }, + { + "epoch": 57.58715596330275, + "grad_norm": 0.19161473214626312, + "learning_rate": 0.0006, + "loss": 3.550243854522705, + "step": 4146 + }, + { + "epoch": 57.60113586719091, + "grad_norm": 0.21041646599769592, + "learning_rate": 0.0006, + "loss": 3.5801823139190674, + "step": 4147 + }, + { + "epoch": 57.615115771079076, + "grad_norm": 0.2043760120868683, + "learning_rate": 0.0006, + "loss": 3.580418825149536, + "step": 4148 + }, + { + "epoch": 57.62909567496723, + "grad_norm": 0.21515823900699615, + "learning_rate": 0.0006, + "loss": 3.58026385307312, + "step": 4149 + }, + { + "epoch": 57.643075578855395, + "grad_norm": 0.20913724601268768, + "learning_rate": 0.0006, + "loss": 3.5452992916107178, + "step": 4150 + }, + { + "epoch": 57.65705548274356, + "grad_norm": 0.22621729969978333, + "learning_rate": 0.0006, + "loss": 3.5332765579223633, + "step": 4151 + }, + { + "epoch": 57.671035386631715, + "grad_norm": 0.26475241780281067, + "learning_rate": 0.0006, + "loss": 3.5701823234558105, + "step": 4152 + }, + { + "epoch": 57.68501529051988, + "grad_norm": 0.2567952275276184, + "learning_rate": 0.0006, + "loss": 3.597219228744507, + "step": 4153 + }, + { + "epoch": 57.69899519440804, + "grad_norm": 0.19640378654003143, + "learning_rate": 0.0006, + "loss": 3.5865941047668457, + "step": 4154 + }, + { + "epoch": 57.7129750982962, + "grad_norm": 0.21714240312576294, + "learning_rate": 0.0006, + "loss": 3.555518627166748, + "step": 4155 + }, + { + "epoch": 57.72695500218436, + "grad_norm": 0.2604375183582306, + "learning_rate": 0.0006, + "loss": 3.5756402015686035, + "step": 4156 + }, + { + "epoch": 57.74093490607252, + "grad_norm": 0.24627837538719177, + "learning_rate": 0.0006, + "loss": 3.550668239593506, + "step": 4157 + }, + { + "epoch": 57.75491480996068, + "grad_norm": 0.21893182396888733, + "learning_rate": 0.0006, + "loss": 3.5560038089752197, + "step": 4158 + }, + { + "epoch": 57.768894713848844, + "grad_norm": 0.23481261730194092, + "learning_rate": 0.0006, + "loss": 3.543942451477051, + "step": 4159 + }, + { + "epoch": 57.782874617737, + "grad_norm": 0.21777133643627167, + "learning_rate": 0.0006, + "loss": 3.5652658939361572, + "step": 4160 + }, + { + "epoch": 57.796854521625164, + "grad_norm": 0.2158525437116623, + "learning_rate": 0.0006, + "loss": 3.5803327560424805, + "step": 4161 + }, + { + "epoch": 57.81083442551333, + "grad_norm": 0.19519925117492676, + "learning_rate": 0.0006, + "loss": 3.5814499855041504, + "step": 4162 + }, + { + "epoch": 57.824814329401484, + "grad_norm": 0.2017558217048645, + "learning_rate": 0.0006, + "loss": 3.558722972869873, + "step": 4163 + }, + { + "epoch": 57.83879423328965, + "grad_norm": 0.22046449780464172, + "learning_rate": 0.0006, + "loss": 3.559990882873535, + "step": 4164 + }, + { + "epoch": 57.8527741371778, + "grad_norm": 0.22240568697452545, + "learning_rate": 0.0006, + "loss": 3.5427942276000977, + "step": 4165 + }, + { + "epoch": 57.86675404106597, + "grad_norm": 0.20282965898513794, + "learning_rate": 0.0006, + "loss": 3.5449461936950684, + "step": 4166 + }, + { + "epoch": 57.88073394495413, + "grad_norm": 0.20970730483531952, + "learning_rate": 0.0006, + "loss": 3.592543601989746, + "step": 4167 + }, + { + "epoch": 57.89471384884229, + "grad_norm": 0.21963168680667877, + "learning_rate": 0.0006, + "loss": 3.5564393997192383, + "step": 4168 + }, + { + "epoch": 57.90869375273045, + "grad_norm": 0.20854730904102325, + "learning_rate": 0.0006, + "loss": 3.565591335296631, + "step": 4169 + }, + { + "epoch": 57.92267365661861, + "grad_norm": 0.24149510264396667, + "learning_rate": 0.0006, + "loss": 3.574720859527588, + "step": 4170 + }, + { + "epoch": 57.93665356050677, + "grad_norm": 0.26011863350868225, + "learning_rate": 0.0006, + "loss": 3.593156337738037, + "step": 4171 + }, + { + "epoch": 57.95063346439493, + "grad_norm": 0.24111896753311157, + "learning_rate": 0.0006, + "loss": 3.5871872901916504, + "step": 4172 + }, + { + "epoch": 57.964613368283096, + "grad_norm": 0.22362647950649261, + "learning_rate": 0.0006, + "loss": 3.568572998046875, + "step": 4173 + }, + { + "epoch": 57.97859327217125, + "grad_norm": 0.23621505498886108, + "learning_rate": 0.0006, + "loss": 3.5627479553222656, + "step": 4174 + }, + { + "epoch": 57.992573176059416, + "grad_norm": 0.2252524048089981, + "learning_rate": 0.0006, + "loss": 3.594430446624756, + "step": 4175 + }, + { + "epoch": 58.0, + "grad_norm": 0.24568618834018707, + "learning_rate": 0.0006, + "loss": 3.5520875453948975, + "step": 4176 + }, + { + "epoch": 58.0, + "eval_loss": 3.978929042816162, + "eval_runtime": 44.8688, + "eval_samples_per_second": 54.425, + "eval_steps_per_second": 3.41, + "step": 4176 + }, + { + "epoch": 58.01397990388816, + "grad_norm": 0.23220741748809814, + "learning_rate": 0.0006, + "loss": 3.5401225090026855, + "step": 4177 + }, + { + "epoch": 58.02795980777632, + "grad_norm": 0.214580699801445, + "learning_rate": 0.0006, + "loss": 3.507652759552002, + "step": 4178 + }, + { + "epoch": 58.04193971166448, + "grad_norm": 0.20596857368946075, + "learning_rate": 0.0006, + "loss": 3.5591790676116943, + "step": 4179 + }, + { + "epoch": 58.05591961555265, + "grad_norm": 0.23054419457912445, + "learning_rate": 0.0006, + "loss": 3.518101692199707, + "step": 4180 + }, + { + "epoch": 58.0698995194408, + "grad_norm": 0.2410690039396286, + "learning_rate": 0.0006, + "loss": 3.5270299911499023, + "step": 4181 + }, + { + "epoch": 58.083879423328966, + "grad_norm": 0.24333222210407257, + "learning_rate": 0.0006, + "loss": 3.5732290744781494, + "step": 4182 + }, + { + "epoch": 58.09785932721712, + "grad_norm": 0.2547648549079895, + "learning_rate": 0.0006, + "loss": 3.5470314025878906, + "step": 4183 + }, + { + "epoch": 58.111839231105286, + "grad_norm": 0.2366316169500351, + "learning_rate": 0.0006, + "loss": 3.500774621963501, + "step": 4184 + }, + { + "epoch": 58.12581913499345, + "grad_norm": 0.22653642296791077, + "learning_rate": 0.0006, + "loss": 3.5242254734039307, + "step": 4185 + }, + { + "epoch": 58.139799038881605, + "grad_norm": 0.25555330514907837, + "learning_rate": 0.0006, + "loss": 3.5272228717803955, + "step": 4186 + }, + { + "epoch": 58.15377894276977, + "grad_norm": 0.26559844613075256, + "learning_rate": 0.0006, + "loss": 3.5599403381347656, + "step": 4187 + }, + { + "epoch": 58.16775884665793, + "grad_norm": 0.2473350614309311, + "learning_rate": 0.0006, + "loss": 3.5130624771118164, + "step": 4188 + }, + { + "epoch": 58.18173875054609, + "grad_norm": 0.22858835756778717, + "learning_rate": 0.0006, + "loss": 3.508342742919922, + "step": 4189 + }, + { + "epoch": 58.19571865443425, + "grad_norm": 0.2151159793138504, + "learning_rate": 0.0006, + "loss": 3.533581256866455, + "step": 4190 + }, + { + "epoch": 58.20969855832241, + "grad_norm": 0.2042093276977539, + "learning_rate": 0.0006, + "loss": 3.5269458293914795, + "step": 4191 + }, + { + "epoch": 58.22367846221057, + "grad_norm": 0.20638196170330048, + "learning_rate": 0.0006, + "loss": 3.5137884616851807, + "step": 4192 + }, + { + "epoch": 58.237658366098735, + "grad_norm": 0.2018391191959381, + "learning_rate": 0.0006, + "loss": 3.533733367919922, + "step": 4193 + }, + { + "epoch": 58.25163826998689, + "grad_norm": 0.21045200526714325, + "learning_rate": 0.0006, + "loss": 3.5585010051727295, + "step": 4194 + }, + { + "epoch": 58.265618173875055, + "grad_norm": 0.2040393352508545, + "learning_rate": 0.0006, + "loss": 3.547539234161377, + "step": 4195 + }, + { + "epoch": 58.27959807776322, + "grad_norm": 0.2538772523403168, + "learning_rate": 0.0006, + "loss": 3.5487847328186035, + "step": 4196 + }, + { + "epoch": 58.293577981651374, + "grad_norm": 0.30126553773880005, + "learning_rate": 0.0006, + "loss": 3.5717992782592773, + "step": 4197 + }, + { + "epoch": 58.30755788553954, + "grad_norm": 0.2787485718727112, + "learning_rate": 0.0006, + "loss": 3.543076992034912, + "step": 4198 + }, + { + "epoch": 58.3215377894277, + "grad_norm": 0.23167021572589874, + "learning_rate": 0.0006, + "loss": 3.518887519836426, + "step": 4199 + }, + { + "epoch": 58.33551769331586, + "grad_norm": 0.23871110379695892, + "learning_rate": 0.0006, + "loss": 3.536757469177246, + "step": 4200 + }, + { + "epoch": 58.34949759720402, + "grad_norm": 0.2542787492275238, + "learning_rate": 0.0006, + "loss": 3.573086738586426, + "step": 4201 + }, + { + "epoch": 58.36347750109218, + "grad_norm": 0.2967284023761749, + "learning_rate": 0.0006, + "loss": 3.5866525173187256, + "step": 4202 + }, + { + "epoch": 58.37745740498034, + "grad_norm": 0.28304803371429443, + "learning_rate": 0.0006, + "loss": 3.5601437091827393, + "step": 4203 + }, + { + "epoch": 58.391437308868504, + "grad_norm": 0.20651954412460327, + "learning_rate": 0.0006, + "loss": 3.5591554641723633, + "step": 4204 + }, + { + "epoch": 58.40541721275666, + "grad_norm": 0.23101729154586792, + "learning_rate": 0.0006, + "loss": 3.5714032649993896, + "step": 4205 + }, + { + "epoch": 58.419397116644824, + "grad_norm": 0.24556246399879456, + "learning_rate": 0.0006, + "loss": 3.550046443939209, + "step": 4206 + }, + { + "epoch": 58.43337702053299, + "grad_norm": 0.2307356745004654, + "learning_rate": 0.0006, + "loss": 3.571850299835205, + "step": 4207 + }, + { + "epoch": 58.44735692442114, + "grad_norm": 0.23186670243740082, + "learning_rate": 0.0006, + "loss": 3.555757999420166, + "step": 4208 + }, + { + "epoch": 58.46133682830931, + "grad_norm": 0.20662686228752136, + "learning_rate": 0.0006, + "loss": 3.5590686798095703, + "step": 4209 + }, + { + "epoch": 58.47531673219746, + "grad_norm": 0.20381265878677368, + "learning_rate": 0.0006, + "loss": 3.5228846073150635, + "step": 4210 + }, + { + "epoch": 58.489296636085626, + "grad_norm": 0.20927058160305023, + "learning_rate": 0.0006, + "loss": 3.5376980304718018, + "step": 4211 + }, + { + "epoch": 58.50327653997379, + "grad_norm": 0.22782307863235474, + "learning_rate": 0.0006, + "loss": 3.5477585792541504, + "step": 4212 + }, + { + "epoch": 58.517256443861946, + "grad_norm": 0.20143239200115204, + "learning_rate": 0.0006, + "loss": 3.5429391860961914, + "step": 4213 + }, + { + "epoch": 58.53123634775011, + "grad_norm": 0.2120865285396576, + "learning_rate": 0.0006, + "loss": 3.5543365478515625, + "step": 4214 + }, + { + "epoch": 58.54521625163827, + "grad_norm": 0.2032771110534668, + "learning_rate": 0.0006, + "loss": 3.5307888984680176, + "step": 4215 + }, + { + "epoch": 58.55919615552643, + "grad_norm": 0.20994187891483307, + "learning_rate": 0.0006, + "loss": 3.581739664077759, + "step": 4216 + }, + { + "epoch": 58.57317605941459, + "grad_norm": 0.23686161637306213, + "learning_rate": 0.0006, + "loss": 3.5274312496185303, + "step": 4217 + }, + { + "epoch": 58.58715596330275, + "grad_norm": 0.21081998944282532, + "learning_rate": 0.0006, + "loss": 3.547239303588867, + "step": 4218 + }, + { + "epoch": 58.60113586719091, + "grad_norm": 0.20353151857852936, + "learning_rate": 0.0006, + "loss": 3.5522308349609375, + "step": 4219 + }, + { + "epoch": 58.615115771079076, + "grad_norm": 0.20888762176036835, + "learning_rate": 0.0006, + "loss": 3.5535459518432617, + "step": 4220 + }, + { + "epoch": 58.62909567496723, + "grad_norm": 0.2024519443511963, + "learning_rate": 0.0006, + "loss": 3.5320982933044434, + "step": 4221 + }, + { + "epoch": 58.643075578855395, + "grad_norm": 0.19622337818145752, + "learning_rate": 0.0006, + "loss": 3.5581917762756348, + "step": 4222 + }, + { + "epoch": 58.65705548274356, + "grad_norm": 0.1966600865125656, + "learning_rate": 0.0006, + "loss": 3.5412650108337402, + "step": 4223 + }, + { + "epoch": 58.671035386631715, + "grad_norm": 0.19325542449951172, + "learning_rate": 0.0006, + "loss": 3.570521593093872, + "step": 4224 + }, + { + "epoch": 58.68501529051988, + "grad_norm": 0.20674128830432892, + "learning_rate": 0.0006, + "loss": 3.5727484226226807, + "step": 4225 + }, + { + "epoch": 58.69899519440804, + "grad_norm": 0.1959284245967865, + "learning_rate": 0.0006, + "loss": 3.5655486583709717, + "step": 4226 + }, + { + "epoch": 58.7129750982962, + "grad_norm": 0.2044358104467392, + "learning_rate": 0.0006, + "loss": 3.5477449893951416, + "step": 4227 + }, + { + "epoch": 58.72695500218436, + "grad_norm": 0.21381069719791412, + "learning_rate": 0.0006, + "loss": 3.533381462097168, + "step": 4228 + }, + { + "epoch": 58.74093490607252, + "grad_norm": 0.20168009400367737, + "learning_rate": 0.0006, + "loss": 3.5401244163513184, + "step": 4229 + }, + { + "epoch": 58.75491480996068, + "grad_norm": 0.20853811502456665, + "learning_rate": 0.0006, + "loss": 3.5669009685516357, + "step": 4230 + }, + { + "epoch": 58.768894713848844, + "grad_norm": 0.2135785073041916, + "learning_rate": 0.0006, + "loss": 3.5697989463806152, + "step": 4231 + }, + { + "epoch": 58.782874617737, + "grad_norm": 0.20372799038887024, + "learning_rate": 0.0006, + "loss": 3.592245101928711, + "step": 4232 + }, + { + "epoch": 58.796854521625164, + "grad_norm": 0.20562207698822021, + "learning_rate": 0.0006, + "loss": 3.5732932090759277, + "step": 4233 + }, + { + "epoch": 58.81083442551333, + "grad_norm": 0.1932520568370819, + "learning_rate": 0.0006, + "loss": 3.581766128540039, + "step": 4234 + }, + { + "epoch": 58.824814329401484, + "grad_norm": 0.20229186117649078, + "learning_rate": 0.0006, + "loss": 3.5758426189422607, + "step": 4235 + }, + { + "epoch": 58.83879423328965, + "grad_norm": 0.21348924934864044, + "learning_rate": 0.0006, + "loss": 3.573164939880371, + "step": 4236 + }, + { + "epoch": 58.8527741371778, + "grad_norm": 0.2240375131368637, + "learning_rate": 0.0006, + "loss": 3.578442096710205, + "step": 4237 + }, + { + "epoch": 58.86675404106597, + "grad_norm": 0.22859376668930054, + "learning_rate": 0.0006, + "loss": 3.5597116947174072, + "step": 4238 + }, + { + "epoch": 58.88073394495413, + "grad_norm": 0.22347290813922882, + "learning_rate": 0.0006, + "loss": 3.557039260864258, + "step": 4239 + }, + { + "epoch": 58.89471384884229, + "grad_norm": 0.19835364818572998, + "learning_rate": 0.0006, + "loss": 3.5832467079162598, + "step": 4240 + }, + { + "epoch": 58.90869375273045, + "grad_norm": 0.21189740300178528, + "learning_rate": 0.0006, + "loss": 3.5421836376190186, + "step": 4241 + }, + { + "epoch": 58.92267365661861, + "grad_norm": 0.21234451234340668, + "learning_rate": 0.0006, + "loss": 3.6048710346221924, + "step": 4242 + }, + { + "epoch": 58.93665356050677, + "grad_norm": 0.2107880860567093, + "learning_rate": 0.0006, + "loss": 3.58248233795166, + "step": 4243 + }, + { + "epoch": 58.95063346439493, + "grad_norm": 0.21674086153507233, + "learning_rate": 0.0006, + "loss": 3.582352876663208, + "step": 4244 + }, + { + "epoch": 58.964613368283096, + "grad_norm": 0.21057581901550293, + "learning_rate": 0.0006, + "loss": 3.5387773513793945, + "step": 4245 + }, + { + "epoch": 58.97859327217125, + "grad_norm": 0.20203082263469696, + "learning_rate": 0.0006, + "loss": 3.5805740356445312, + "step": 4246 + }, + { + "epoch": 58.992573176059416, + "grad_norm": 0.21071292459964752, + "learning_rate": 0.0006, + "loss": 3.5644760131835938, + "step": 4247 + }, + { + "epoch": 59.0, + "grad_norm": 0.2473233938217163, + "learning_rate": 0.0006, + "loss": 3.56392765045166, + "step": 4248 + }, + { + "epoch": 59.0, + "eval_loss": 3.9670467376708984, + "eval_runtime": 44.7697, + "eval_samples_per_second": 54.546, + "eval_steps_per_second": 3.417, + "step": 4248 + }, + { + "epoch": 59.01397990388816, + "grad_norm": 0.22915491461753845, + "learning_rate": 0.0006, + "loss": 3.5110130310058594, + "step": 4249 + }, + { + "epoch": 59.02795980777632, + "grad_norm": 0.2629511058330536, + "learning_rate": 0.0006, + "loss": 3.5493721961975098, + "step": 4250 + }, + { + "epoch": 59.04193971166448, + "grad_norm": 0.2954505383968353, + "learning_rate": 0.0006, + "loss": 3.555753707885742, + "step": 4251 + }, + { + "epoch": 59.05591961555265, + "grad_norm": 0.2728694677352905, + "learning_rate": 0.0006, + "loss": 3.5089950561523438, + "step": 4252 + }, + { + "epoch": 59.0698995194408, + "grad_norm": 0.25955384969711304, + "learning_rate": 0.0006, + "loss": 3.509044647216797, + "step": 4253 + }, + { + "epoch": 59.083879423328966, + "grad_norm": 0.32285967469215393, + "learning_rate": 0.0006, + "loss": 3.5324721336364746, + "step": 4254 + }, + { + "epoch": 59.09785932721712, + "grad_norm": 0.2913302779197693, + "learning_rate": 0.0006, + "loss": 3.5004022121429443, + "step": 4255 + }, + { + "epoch": 59.111839231105286, + "grad_norm": 0.23795513808727264, + "learning_rate": 0.0006, + "loss": 3.515099048614502, + "step": 4256 + }, + { + "epoch": 59.12581913499345, + "grad_norm": 0.2788177728652954, + "learning_rate": 0.0006, + "loss": 3.524991035461426, + "step": 4257 + }, + { + "epoch": 59.139799038881605, + "grad_norm": 0.32389938831329346, + "learning_rate": 0.0006, + "loss": 3.5330004692077637, + "step": 4258 + }, + { + "epoch": 59.15377894276977, + "grad_norm": 0.2921825647354126, + "learning_rate": 0.0006, + "loss": 3.530616283416748, + "step": 4259 + }, + { + "epoch": 59.16775884665793, + "grad_norm": 0.28415167331695557, + "learning_rate": 0.0006, + "loss": 3.5276989936828613, + "step": 4260 + }, + { + "epoch": 59.18173875054609, + "grad_norm": 0.283626526594162, + "learning_rate": 0.0006, + "loss": 3.564985752105713, + "step": 4261 + }, + { + "epoch": 59.19571865443425, + "grad_norm": 0.2655615210533142, + "learning_rate": 0.0006, + "loss": 3.536499500274658, + "step": 4262 + }, + { + "epoch": 59.20969855832241, + "grad_norm": 0.2794124484062195, + "learning_rate": 0.0006, + "loss": 3.570883274078369, + "step": 4263 + }, + { + "epoch": 59.22367846221057, + "grad_norm": 0.2803778052330017, + "learning_rate": 0.0006, + "loss": 3.5143651962280273, + "step": 4264 + }, + { + "epoch": 59.237658366098735, + "grad_norm": 0.2584295868873596, + "learning_rate": 0.0006, + "loss": 3.548056125640869, + "step": 4265 + }, + { + "epoch": 59.25163826998689, + "grad_norm": 0.26859962940216064, + "learning_rate": 0.0006, + "loss": 3.511655807495117, + "step": 4266 + }, + { + "epoch": 59.265618173875055, + "grad_norm": 0.26620036363601685, + "learning_rate": 0.0006, + "loss": 3.5554311275482178, + "step": 4267 + }, + { + "epoch": 59.27959807776322, + "grad_norm": 0.2325621247291565, + "learning_rate": 0.0006, + "loss": 3.5126709938049316, + "step": 4268 + }, + { + "epoch": 59.293577981651374, + "grad_norm": 0.24758809804916382, + "learning_rate": 0.0006, + "loss": 3.5747783184051514, + "step": 4269 + }, + { + "epoch": 59.30755788553954, + "grad_norm": 0.26378121972084045, + "learning_rate": 0.0006, + "loss": 3.538012742996216, + "step": 4270 + }, + { + "epoch": 59.3215377894277, + "grad_norm": 0.24299141764640808, + "learning_rate": 0.0006, + "loss": 3.533834457397461, + "step": 4271 + }, + { + "epoch": 59.33551769331586, + "grad_norm": 0.20792774856090546, + "learning_rate": 0.0006, + "loss": 3.5645856857299805, + "step": 4272 + }, + { + "epoch": 59.34949759720402, + "grad_norm": 0.21124716103076935, + "learning_rate": 0.0006, + "loss": 3.5616869926452637, + "step": 4273 + }, + { + "epoch": 59.36347750109218, + "grad_norm": 0.2644400894641876, + "learning_rate": 0.0006, + "loss": 3.531334400177002, + "step": 4274 + }, + { + "epoch": 59.37745740498034, + "grad_norm": 0.27659082412719727, + "learning_rate": 0.0006, + "loss": 3.5557894706726074, + "step": 4275 + }, + { + "epoch": 59.391437308868504, + "grad_norm": 0.21931052207946777, + "learning_rate": 0.0006, + "loss": 3.537261486053467, + "step": 4276 + }, + { + "epoch": 59.40541721275666, + "grad_norm": 0.20661118626594543, + "learning_rate": 0.0006, + "loss": 3.568042755126953, + "step": 4277 + }, + { + "epoch": 59.419397116644824, + "grad_norm": 0.2157975435256958, + "learning_rate": 0.0006, + "loss": 3.550891160964966, + "step": 4278 + }, + { + "epoch": 59.43337702053299, + "grad_norm": 0.20762090384960175, + "learning_rate": 0.0006, + "loss": 3.565798282623291, + "step": 4279 + }, + { + "epoch": 59.44735692442114, + "grad_norm": 0.19575528800487518, + "learning_rate": 0.0006, + "loss": 3.5518856048583984, + "step": 4280 + }, + { + "epoch": 59.46133682830931, + "grad_norm": 0.20730678737163544, + "learning_rate": 0.0006, + "loss": 3.5412862300872803, + "step": 4281 + }, + { + "epoch": 59.47531673219746, + "grad_norm": 0.21095411479473114, + "learning_rate": 0.0006, + "loss": 3.5491604804992676, + "step": 4282 + }, + { + "epoch": 59.489296636085626, + "grad_norm": 0.2229546755552292, + "learning_rate": 0.0006, + "loss": 3.534517765045166, + "step": 4283 + }, + { + "epoch": 59.50327653997379, + "grad_norm": 0.22375687956809998, + "learning_rate": 0.0006, + "loss": 3.5696470737457275, + "step": 4284 + }, + { + "epoch": 59.517256443861946, + "grad_norm": 0.2563750743865967, + "learning_rate": 0.0006, + "loss": 3.6050190925598145, + "step": 4285 + }, + { + "epoch": 59.53123634775011, + "grad_norm": 0.3055726885795593, + "learning_rate": 0.0006, + "loss": 3.572263240814209, + "step": 4286 + }, + { + "epoch": 59.54521625163827, + "grad_norm": 0.3095283508300781, + "learning_rate": 0.0006, + "loss": 3.545631170272827, + "step": 4287 + }, + { + "epoch": 59.55919615552643, + "grad_norm": 0.24958640336990356, + "learning_rate": 0.0006, + "loss": 3.549663543701172, + "step": 4288 + }, + { + "epoch": 59.57317605941459, + "grad_norm": 0.22277019917964935, + "learning_rate": 0.0006, + "loss": 3.5721545219421387, + "step": 4289 + }, + { + "epoch": 59.58715596330275, + "grad_norm": 0.22153833508491516, + "learning_rate": 0.0006, + "loss": 3.5103156566619873, + "step": 4290 + }, + { + "epoch": 59.60113586719091, + "grad_norm": 0.25579726696014404, + "learning_rate": 0.0006, + "loss": 3.550353527069092, + "step": 4291 + }, + { + "epoch": 59.615115771079076, + "grad_norm": 0.2242603898048401, + "learning_rate": 0.0006, + "loss": 3.5284783840179443, + "step": 4292 + }, + { + "epoch": 59.62909567496723, + "grad_norm": 0.21665683388710022, + "learning_rate": 0.0006, + "loss": 3.553835868835449, + "step": 4293 + }, + { + "epoch": 59.643075578855395, + "grad_norm": 0.21703463792800903, + "learning_rate": 0.0006, + "loss": 3.5393173694610596, + "step": 4294 + }, + { + "epoch": 59.65705548274356, + "grad_norm": 0.21264998614788055, + "learning_rate": 0.0006, + "loss": 3.566108465194702, + "step": 4295 + }, + { + "epoch": 59.671035386631715, + "grad_norm": 0.1935717612504959, + "learning_rate": 0.0006, + "loss": 3.5934512615203857, + "step": 4296 + }, + { + "epoch": 59.68501529051988, + "grad_norm": 0.20164808630943298, + "learning_rate": 0.0006, + "loss": 3.545046329498291, + "step": 4297 + }, + { + "epoch": 59.69899519440804, + "grad_norm": 0.19589892029762268, + "learning_rate": 0.0006, + "loss": 3.5302319526672363, + "step": 4298 + }, + { + "epoch": 59.7129750982962, + "grad_norm": 0.1893095225095749, + "learning_rate": 0.0006, + "loss": 3.5947837829589844, + "step": 4299 + }, + { + "epoch": 59.72695500218436, + "grad_norm": 0.20218202471733093, + "learning_rate": 0.0006, + "loss": 3.5889904499053955, + "step": 4300 + }, + { + "epoch": 59.74093490607252, + "grad_norm": 0.19681277871131897, + "learning_rate": 0.0006, + "loss": 3.581536293029785, + "step": 4301 + }, + { + "epoch": 59.75491480996068, + "grad_norm": 0.20112384855747223, + "learning_rate": 0.0006, + "loss": 3.5509750843048096, + "step": 4302 + }, + { + "epoch": 59.768894713848844, + "grad_norm": 0.1969940960407257, + "learning_rate": 0.0006, + "loss": 3.5462636947631836, + "step": 4303 + }, + { + "epoch": 59.782874617737, + "grad_norm": 0.20936219394207, + "learning_rate": 0.0006, + "loss": 3.5284390449523926, + "step": 4304 + }, + { + "epoch": 59.796854521625164, + "grad_norm": 0.21717803180217743, + "learning_rate": 0.0006, + "loss": 3.5669212341308594, + "step": 4305 + }, + { + "epoch": 59.81083442551333, + "grad_norm": 0.20210883021354675, + "learning_rate": 0.0006, + "loss": 3.5366921424865723, + "step": 4306 + }, + { + "epoch": 59.824814329401484, + "grad_norm": 0.224124476313591, + "learning_rate": 0.0006, + "loss": 3.5457663536071777, + "step": 4307 + }, + { + "epoch": 59.83879423328965, + "grad_norm": 0.2186291366815567, + "learning_rate": 0.0006, + "loss": 3.5732779502868652, + "step": 4308 + }, + { + "epoch": 59.8527741371778, + "grad_norm": 0.19785884022712708, + "learning_rate": 0.0006, + "loss": 3.5471811294555664, + "step": 4309 + }, + { + "epoch": 59.86675404106597, + "grad_norm": 0.24774281680583954, + "learning_rate": 0.0006, + "loss": 3.5839807987213135, + "step": 4310 + }, + { + "epoch": 59.88073394495413, + "grad_norm": 0.25087007880210876, + "learning_rate": 0.0006, + "loss": 3.56972336769104, + "step": 4311 + }, + { + "epoch": 59.89471384884229, + "grad_norm": 0.21474683284759521, + "learning_rate": 0.0006, + "loss": 3.5199289321899414, + "step": 4312 + }, + { + "epoch": 59.90869375273045, + "grad_norm": 0.2087765336036682, + "learning_rate": 0.0006, + "loss": 3.5777320861816406, + "step": 4313 + }, + { + "epoch": 59.92267365661861, + "grad_norm": 0.2228539139032364, + "learning_rate": 0.0006, + "loss": 3.531118392944336, + "step": 4314 + }, + { + "epoch": 59.93665356050677, + "grad_norm": 0.2456534057855606, + "learning_rate": 0.0006, + "loss": 3.5448033809661865, + "step": 4315 + }, + { + "epoch": 59.95063346439493, + "grad_norm": 0.2699171006679535, + "learning_rate": 0.0006, + "loss": 3.560724973678589, + "step": 4316 + }, + { + "epoch": 59.964613368283096, + "grad_norm": 0.2664966881275177, + "learning_rate": 0.0006, + "loss": 3.5932974815368652, + "step": 4317 + }, + { + "epoch": 59.97859327217125, + "grad_norm": 0.2137683779001236, + "learning_rate": 0.0006, + "loss": 3.5610086917877197, + "step": 4318 + }, + { + "epoch": 59.992573176059416, + "grad_norm": 0.2067531794309616, + "learning_rate": 0.0006, + "loss": 3.5588603019714355, + "step": 4319 + }, + { + "epoch": 60.0, + "grad_norm": 0.2458500862121582, + "learning_rate": 0.0006, + "loss": 3.5636165142059326, + "step": 4320 + }, + { + "epoch": 60.0, + "eval_loss": 3.967288017272949, + "eval_runtime": 44.2225, + "eval_samples_per_second": 55.221, + "eval_steps_per_second": 3.46, + "step": 4320 + }, + { + "epoch": 60.01397990388816, + "grad_norm": 0.25330978631973267, + "learning_rate": 0.0006, + "loss": 3.524343490600586, + "step": 4321 + }, + { + "epoch": 60.02795980777632, + "grad_norm": 0.3005860447883606, + "learning_rate": 0.0006, + "loss": 3.533761501312256, + "step": 4322 + }, + { + "epoch": 60.04193971166448, + "grad_norm": 0.29054996371269226, + "learning_rate": 0.0006, + "loss": 3.536410331726074, + "step": 4323 + }, + { + "epoch": 60.05591961555265, + "grad_norm": 0.23265458643436432, + "learning_rate": 0.0006, + "loss": 3.4965157508850098, + "step": 4324 + }, + { + "epoch": 60.0698995194408, + "grad_norm": 0.2330862134695053, + "learning_rate": 0.0006, + "loss": 3.4899768829345703, + "step": 4325 + }, + { + "epoch": 60.083879423328966, + "grad_norm": 0.23188516497612, + "learning_rate": 0.0006, + "loss": 3.504887580871582, + "step": 4326 + }, + { + "epoch": 60.09785932721712, + "grad_norm": 0.2152940034866333, + "learning_rate": 0.0006, + "loss": 3.5274603366851807, + "step": 4327 + }, + { + "epoch": 60.111839231105286, + "grad_norm": 0.21918490529060364, + "learning_rate": 0.0006, + "loss": 3.5223636627197266, + "step": 4328 + }, + { + "epoch": 60.12581913499345, + "grad_norm": 0.23193582892417908, + "learning_rate": 0.0006, + "loss": 3.5171899795532227, + "step": 4329 + }, + { + "epoch": 60.139799038881605, + "grad_norm": 0.2336687296628952, + "learning_rate": 0.0006, + "loss": 3.5403029918670654, + "step": 4330 + }, + { + "epoch": 60.15377894276977, + "grad_norm": 0.23833593726158142, + "learning_rate": 0.0006, + "loss": 3.5055623054504395, + "step": 4331 + }, + { + "epoch": 60.16775884665793, + "grad_norm": 0.2389385998249054, + "learning_rate": 0.0006, + "loss": 3.5423574447631836, + "step": 4332 + }, + { + "epoch": 60.18173875054609, + "grad_norm": 0.21729786694049835, + "learning_rate": 0.0006, + "loss": 3.508272647857666, + "step": 4333 + }, + { + "epoch": 60.19571865443425, + "grad_norm": 0.2118137627840042, + "learning_rate": 0.0006, + "loss": 3.556934356689453, + "step": 4334 + }, + { + "epoch": 60.20969855832241, + "grad_norm": 0.23217040300369263, + "learning_rate": 0.0006, + "loss": 3.546459674835205, + "step": 4335 + }, + { + "epoch": 60.22367846221057, + "grad_norm": 0.2446565330028534, + "learning_rate": 0.0006, + "loss": 3.5662269592285156, + "step": 4336 + }, + { + "epoch": 60.237658366098735, + "grad_norm": 0.22065940499305725, + "learning_rate": 0.0006, + "loss": 3.550262451171875, + "step": 4337 + }, + { + "epoch": 60.25163826998689, + "grad_norm": 0.22212697565555573, + "learning_rate": 0.0006, + "loss": 3.5495731830596924, + "step": 4338 + }, + { + "epoch": 60.265618173875055, + "grad_norm": 0.21770696341991425, + "learning_rate": 0.0006, + "loss": 3.5345935821533203, + "step": 4339 + }, + { + "epoch": 60.27959807776322, + "grad_norm": 0.2089550793170929, + "learning_rate": 0.0006, + "loss": 3.5704336166381836, + "step": 4340 + }, + { + "epoch": 60.293577981651374, + "grad_norm": 0.20426379144191742, + "learning_rate": 0.0006, + "loss": 3.546909809112549, + "step": 4341 + }, + { + "epoch": 60.30755788553954, + "grad_norm": 0.2038658708333969, + "learning_rate": 0.0006, + "loss": 3.5444231033325195, + "step": 4342 + }, + { + "epoch": 60.3215377894277, + "grad_norm": 0.20485089719295502, + "learning_rate": 0.0006, + "loss": 3.561206817626953, + "step": 4343 + }, + { + "epoch": 60.33551769331586, + "grad_norm": 0.19151435792446136, + "learning_rate": 0.0006, + "loss": 3.5226097106933594, + "step": 4344 + }, + { + "epoch": 60.34949759720402, + "grad_norm": 0.19078181684017181, + "learning_rate": 0.0006, + "loss": 3.5431442260742188, + "step": 4345 + }, + { + "epoch": 60.36347750109218, + "grad_norm": 0.2032487392425537, + "learning_rate": 0.0006, + "loss": 3.5317721366882324, + "step": 4346 + }, + { + "epoch": 60.37745740498034, + "grad_norm": 0.18330955505371094, + "learning_rate": 0.0006, + "loss": 3.521145820617676, + "step": 4347 + }, + { + "epoch": 60.391437308868504, + "grad_norm": 0.18987730145454407, + "learning_rate": 0.0006, + "loss": 3.4980595111846924, + "step": 4348 + }, + { + "epoch": 60.40541721275666, + "grad_norm": 0.19873160123825073, + "learning_rate": 0.0006, + "loss": 3.5639595985412598, + "step": 4349 + }, + { + "epoch": 60.419397116644824, + "grad_norm": 0.20323137938976288, + "learning_rate": 0.0006, + "loss": 3.5364837646484375, + "step": 4350 + }, + { + "epoch": 60.43337702053299, + "grad_norm": 0.20755112171173096, + "learning_rate": 0.0006, + "loss": 3.565398931503296, + "step": 4351 + }, + { + "epoch": 60.44735692442114, + "grad_norm": 0.19222456216812134, + "learning_rate": 0.0006, + "loss": 3.569659948348999, + "step": 4352 + }, + { + "epoch": 60.46133682830931, + "grad_norm": 0.18698982894420624, + "learning_rate": 0.0006, + "loss": 3.5305557250976562, + "step": 4353 + }, + { + "epoch": 60.47531673219746, + "grad_norm": 0.19300664961338043, + "learning_rate": 0.0006, + "loss": 3.5398356914520264, + "step": 4354 + }, + { + "epoch": 60.489296636085626, + "grad_norm": 0.19573862850666046, + "learning_rate": 0.0006, + "loss": 3.5549232959747314, + "step": 4355 + }, + { + "epoch": 60.50327653997379, + "grad_norm": 0.21893447637557983, + "learning_rate": 0.0006, + "loss": 3.5427680015563965, + "step": 4356 + }, + { + "epoch": 60.517256443861946, + "grad_norm": 0.2375156730413437, + "learning_rate": 0.0006, + "loss": 3.5368900299072266, + "step": 4357 + }, + { + "epoch": 60.53123634775011, + "grad_norm": 0.2430058717727661, + "learning_rate": 0.0006, + "loss": 3.5812578201293945, + "step": 4358 + }, + { + "epoch": 60.54521625163827, + "grad_norm": 0.21769747138023376, + "learning_rate": 0.0006, + "loss": 3.563126564025879, + "step": 4359 + }, + { + "epoch": 60.55919615552643, + "grad_norm": 0.19841895997524261, + "learning_rate": 0.0006, + "loss": 3.5683727264404297, + "step": 4360 + }, + { + "epoch": 60.57317605941459, + "grad_norm": 0.22039084136486053, + "learning_rate": 0.0006, + "loss": 3.5417304039001465, + "step": 4361 + }, + { + "epoch": 60.58715596330275, + "grad_norm": 0.22528418898582458, + "learning_rate": 0.0006, + "loss": 3.5606675148010254, + "step": 4362 + }, + { + "epoch": 60.60113586719091, + "grad_norm": 0.19975383579730988, + "learning_rate": 0.0006, + "loss": 3.5345380306243896, + "step": 4363 + }, + { + "epoch": 60.615115771079076, + "grad_norm": 0.18953508138656616, + "learning_rate": 0.0006, + "loss": 3.523921012878418, + "step": 4364 + }, + { + "epoch": 60.62909567496723, + "grad_norm": 0.19997848570346832, + "learning_rate": 0.0006, + "loss": 3.553741931915283, + "step": 4365 + }, + { + "epoch": 60.643075578855395, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.57025408744812, + "step": 4366 + }, + { + "epoch": 60.65705548274356, + "grad_norm": 0.20452328026294708, + "learning_rate": 0.0006, + "loss": 3.5293073654174805, + "step": 4367 + }, + { + "epoch": 60.671035386631715, + "grad_norm": 0.18740518391132355, + "learning_rate": 0.0006, + "loss": 3.520880699157715, + "step": 4368 + }, + { + "epoch": 60.68501529051988, + "grad_norm": 0.19408279657363892, + "learning_rate": 0.0006, + "loss": 3.553086757659912, + "step": 4369 + }, + { + "epoch": 60.69899519440804, + "grad_norm": 0.19472180306911469, + "learning_rate": 0.0006, + "loss": 3.557744026184082, + "step": 4370 + }, + { + "epoch": 60.7129750982962, + "grad_norm": 0.18123279511928558, + "learning_rate": 0.0006, + "loss": 3.547276258468628, + "step": 4371 + }, + { + "epoch": 60.72695500218436, + "grad_norm": 0.21011893451213837, + "learning_rate": 0.0006, + "loss": 3.544990062713623, + "step": 4372 + }, + { + "epoch": 60.74093490607252, + "grad_norm": 0.25020623207092285, + "learning_rate": 0.0006, + "loss": 3.541600227355957, + "step": 4373 + }, + { + "epoch": 60.75491480996068, + "grad_norm": 0.2579628825187683, + "learning_rate": 0.0006, + "loss": 3.547964096069336, + "step": 4374 + }, + { + "epoch": 60.768894713848844, + "grad_norm": 0.23156116902828217, + "learning_rate": 0.0006, + "loss": 3.550957202911377, + "step": 4375 + }, + { + "epoch": 60.782874617737, + "grad_norm": 0.22070197761058807, + "learning_rate": 0.0006, + "loss": 3.4950358867645264, + "step": 4376 + }, + { + "epoch": 60.796854521625164, + "grad_norm": 0.222877636551857, + "learning_rate": 0.0006, + "loss": 3.5622036457061768, + "step": 4377 + }, + { + "epoch": 60.81083442551333, + "grad_norm": 0.21662060916423798, + "learning_rate": 0.0006, + "loss": 3.551515579223633, + "step": 4378 + }, + { + "epoch": 60.824814329401484, + "grad_norm": 0.22380465269088745, + "learning_rate": 0.0006, + "loss": 3.5552866458892822, + "step": 4379 + }, + { + "epoch": 60.83879423328965, + "grad_norm": 0.24023373425006866, + "learning_rate": 0.0006, + "loss": 3.5741777420043945, + "step": 4380 + }, + { + "epoch": 60.8527741371778, + "grad_norm": 0.1921556293964386, + "learning_rate": 0.0006, + "loss": 3.535435199737549, + "step": 4381 + }, + { + "epoch": 60.86675404106597, + "grad_norm": 0.20002295076847076, + "learning_rate": 0.0006, + "loss": 3.5660810470581055, + "step": 4382 + }, + { + "epoch": 60.88073394495413, + "grad_norm": 0.22797644138336182, + "learning_rate": 0.0006, + "loss": 3.5361297130584717, + "step": 4383 + }, + { + "epoch": 60.89471384884229, + "grad_norm": 0.24129843711853027, + "learning_rate": 0.0006, + "loss": 3.578810214996338, + "step": 4384 + }, + { + "epoch": 60.90869375273045, + "grad_norm": 0.2363646924495697, + "learning_rate": 0.0006, + "loss": 3.5245485305786133, + "step": 4385 + }, + { + "epoch": 60.92267365661861, + "grad_norm": 0.22811074554920197, + "learning_rate": 0.0006, + "loss": 3.551769733428955, + "step": 4386 + }, + { + "epoch": 60.93665356050677, + "grad_norm": 0.2204643338918686, + "learning_rate": 0.0006, + "loss": 3.5833442211151123, + "step": 4387 + }, + { + "epoch": 60.95063346439493, + "grad_norm": 0.21389783918857574, + "learning_rate": 0.0006, + "loss": 3.531735897064209, + "step": 4388 + }, + { + "epoch": 60.964613368283096, + "grad_norm": 0.22142091393470764, + "learning_rate": 0.0006, + "loss": 3.5482523441314697, + "step": 4389 + }, + { + "epoch": 60.97859327217125, + "grad_norm": 0.21186122298240662, + "learning_rate": 0.0006, + "loss": 3.540555477142334, + "step": 4390 + }, + { + "epoch": 60.992573176059416, + "grad_norm": 0.19939634203910828, + "learning_rate": 0.0006, + "loss": 3.576408624649048, + "step": 4391 + }, + { + "epoch": 61.0, + "grad_norm": 0.23696118593215942, + "learning_rate": 0.0006, + "loss": 3.5633749961853027, + "step": 4392 + }, + { + "epoch": 61.0, + "eval_loss": 3.9743118286132812, + "eval_runtime": 44.7392, + "eval_samples_per_second": 54.583, + "eval_steps_per_second": 3.42, + "step": 4392 + }, + { + "epoch": 61.01397990388816, + "grad_norm": 0.24024035036563873, + "learning_rate": 0.0006, + "loss": 3.532285690307617, + "step": 4393 + }, + { + "epoch": 61.02795980777632, + "grad_norm": 0.2475728690624237, + "learning_rate": 0.0006, + "loss": 3.543304920196533, + "step": 4394 + }, + { + "epoch": 61.04193971166448, + "grad_norm": 0.23326511681079865, + "learning_rate": 0.0006, + "loss": 3.5022737979888916, + "step": 4395 + }, + { + "epoch": 61.05591961555265, + "grad_norm": 0.21414779126644135, + "learning_rate": 0.0006, + "loss": 3.5337772369384766, + "step": 4396 + }, + { + "epoch": 61.0698995194408, + "grad_norm": 0.2234504371881485, + "learning_rate": 0.0006, + "loss": 3.539985179901123, + "step": 4397 + }, + { + "epoch": 61.083879423328966, + "grad_norm": 0.2199121117591858, + "learning_rate": 0.0006, + "loss": 3.5312232971191406, + "step": 4398 + }, + { + "epoch": 61.09785932721712, + "grad_norm": 0.2444634735584259, + "learning_rate": 0.0006, + "loss": 3.527348518371582, + "step": 4399 + }, + { + "epoch": 61.111839231105286, + "grad_norm": 0.29022055864334106, + "learning_rate": 0.0006, + "loss": 3.4902563095092773, + "step": 4400 + }, + { + "epoch": 61.12581913499345, + "grad_norm": 0.29494911432266235, + "learning_rate": 0.0006, + "loss": 3.498292922973633, + "step": 4401 + }, + { + "epoch": 61.139799038881605, + "grad_norm": 0.22292214632034302, + "learning_rate": 0.0006, + "loss": 3.533914089202881, + "step": 4402 + }, + { + "epoch": 61.15377894276977, + "grad_norm": 0.22136220335960388, + "learning_rate": 0.0006, + "loss": 3.5109519958496094, + "step": 4403 + }, + { + "epoch": 61.16775884665793, + "grad_norm": 0.2325095534324646, + "learning_rate": 0.0006, + "loss": 3.5289368629455566, + "step": 4404 + }, + { + "epoch": 61.18173875054609, + "grad_norm": 0.2413562536239624, + "learning_rate": 0.0006, + "loss": 3.518467903137207, + "step": 4405 + }, + { + "epoch": 61.19571865443425, + "grad_norm": 0.25906774401664734, + "learning_rate": 0.0006, + "loss": 3.525516986846924, + "step": 4406 + }, + { + "epoch": 61.20969855832241, + "grad_norm": 0.27686211466789246, + "learning_rate": 0.0006, + "loss": 3.5516865253448486, + "step": 4407 + }, + { + "epoch": 61.22367846221057, + "grad_norm": 0.2906339764595032, + "learning_rate": 0.0006, + "loss": 3.541128158569336, + "step": 4408 + }, + { + "epoch": 61.237658366098735, + "grad_norm": 0.27868953347206116, + "learning_rate": 0.0006, + "loss": 3.5193347930908203, + "step": 4409 + }, + { + "epoch": 61.25163826998689, + "grad_norm": 0.27658969163894653, + "learning_rate": 0.0006, + "loss": 3.502227783203125, + "step": 4410 + }, + { + "epoch": 61.265618173875055, + "grad_norm": 0.2933507561683655, + "learning_rate": 0.0006, + "loss": 3.530291795730591, + "step": 4411 + }, + { + "epoch": 61.27959807776322, + "grad_norm": 0.2631373405456543, + "learning_rate": 0.0006, + "loss": 3.551851749420166, + "step": 4412 + }, + { + "epoch": 61.293577981651374, + "grad_norm": 0.2546952962875366, + "learning_rate": 0.0006, + "loss": 3.5503034591674805, + "step": 4413 + }, + { + "epoch": 61.30755788553954, + "grad_norm": 0.23794181644916534, + "learning_rate": 0.0006, + "loss": 3.546926498413086, + "step": 4414 + }, + { + "epoch": 61.3215377894277, + "grad_norm": 0.24853180348873138, + "learning_rate": 0.0006, + "loss": 3.514120101928711, + "step": 4415 + }, + { + "epoch": 61.33551769331586, + "grad_norm": 0.22304897010326385, + "learning_rate": 0.0006, + "loss": 3.5430846214294434, + "step": 4416 + }, + { + "epoch": 61.34949759720402, + "grad_norm": 0.2315143197774887, + "learning_rate": 0.0006, + "loss": 3.520509719848633, + "step": 4417 + }, + { + "epoch": 61.36347750109218, + "grad_norm": 0.22943219542503357, + "learning_rate": 0.0006, + "loss": 3.5467031002044678, + "step": 4418 + }, + { + "epoch": 61.37745740498034, + "grad_norm": 0.20610259473323822, + "learning_rate": 0.0006, + "loss": 3.523524761199951, + "step": 4419 + }, + { + "epoch": 61.391437308868504, + "grad_norm": 0.23042091727256775, + "learning_rate": 0.0006, + "loss": 3.5619053840637207, + "step": 4420 + }, + { + "epoch": 61.40541721275666, + "grad_norm": 0.23525655269622803, + "learning_rate": 0.0006, + "loss": 3.5647311210632324, + "step": 4421 + }, + { + "epoch": 61.419397116644824, + "grad_norm": 0.24424530565738678, + "learning_rate": 0.0006, + "loss": 3.5278732776641846, + "step": 4422 + }, + { + "epoch": 61.43337702053299, + "grad_norm": 0.22195497155189514, + "learning_rate": 0.0006, + "loss": 3.500657558441162, + "step": 4423 + }, + { + "epoch": 61.44735692442114, + "grad_norm": 0.20596756041049957, + "learning_rate": 0.0006, + "loss": 3.5107016563415527, + "step": 4424 + }, + { + "epoch": 61.46133682830931, + "grad_norm": 0.21293926239013672, + "learning_rate": 0.0006, + "loss": 3.5248196125030518, + "step": 4425 + }, + { + "epoch": 61.47531673219746, + "grad_norm": 0.21993403136730194, + "learning_rate": 0.0006, + "loss": 3.5247411727905273, + "step": 4426 + }, + { + "epoch": 61.489296636085626, + "grad_norm": 0.19609302282333374, + "learning_rate": 0.0006, + "loss": 3.543978452682495, + "step": 4427 + }, + { + "epoch": 61.50327653997379, + "grad_norm": 0.2064359486103058, + "learning_rate": 0.0006, + "loss": 3.525879144668579, + "step": 4428 + }, + { + "epoch": 61.517256443861946, + "grad_norm": 0.221832275390625, + "learning_rate": 0.0006, + "loss": 3.542086601257324, + "step": 4429 + }, + { + "epoch": 61.53123634775011, + "grad_norm": 0.20173773169517517, + "learning_rate": 0.0006, + "loss": 3.5395596027374268, + "step": 4430 + }, + { + "epoch": 61.54521625163827, + "grad_norm": 0.21064360439777374, + "learning_rate": 0.0006, + "loss": 3.5651049613952637, + "step": 4431 + }, + { + "epoch": 61.55919615552643, + "grad_norm": 0.2079596370458603, + "learning_rate": 0.0006, + "loss": 3.513719081878662, + "step": 4432 + }, + { + "epoch": 61.57317605941459, + "grad_norm": 0.1862022429704666, + "learning_rate": 0.0006, + "loss": 3.5438897609710693, + "step": 4433 + }, + { + "epoch": 61.58715596330275, + "grad_norm": 0.202021524310112, + "learning_rate": 0.0006, + "loss": 3.5497570037841797, + "step": 4434 + }, + { + "epoch": 61.60113586719091, + "grad_norm": 0.2252725064754486, + "learning_rate": 0.0006, + "loss": 3.5361452102661133, + "step": 4435 + }, + { + "epoch": 61.615115771079076, + "grad_norm": 0.22194477915763855, + "learning_rate": 0.0006, + "loss": 3.5436792373657227, + "step": 4436 + }, + { + "epoch": 61.62909567496723, + "grad_norm": 0.20660430192947388, + "learning_rate": 0.0006, + "loss": 3.5347955226898193, + "step": 4437 + }, + { + "epoch": 61.643075578855395, + "grad_norm": 0.19738668203353882, + "learning_rate": 0.0006, + "loss": 3.5478930473327637, + "step": 4438 + }, + { + "epoch": 61.65705548274356, + "grad_norm": 0.19570894539356232, + "learning_rate": 0.0006, + "loss": 3.581364154815674, + "step": 4439 + }, + { + "epoch": 61.671035386631715, + "grad_norm": 0.2311817854642868, + "learning_rate": 0.0006, + "loss": 3.5336194038391113, + "step": 4440 + }, + { + "epoch": 61.68501529051988, + "grad_norm": 0.23114202916622162, + "learning_rate": 0.0006, + "loss": 3.5473289489746094, + "step": 4441 + }, + { + "epoch": 61.69899519440804, + "grad_norm": 0.2412044256925583, + "learning_rate": 0.0006, + "loss": 3.558802604675293, + "step": 4442 + }, + { + "epoch": 61.7129750982962, + "grad_norm": 0.22932057082653046, + "learning_rate": 0.0006, + "loss": 3.553133726119995, + "step": 4443 + }, + { + "epoch": 61.72695500218436, + "grad_norm": 0.23192140460014343, + "learning_rate": 0.0006, + "loss": 3.5247159004211426, + "step": 4444 + }, + { + "epoch": 61.74093490607252, + "grad_norm": 0.23548972606658936, + "learning_rate": 0.0006, + "loss": 3.5654778480529785, + "step": 4445 + }, + { + "epoch": 61.75491480996068, + "grad_norm": 0.20992626249790192, + "learning_rate": 0.0006, + "loss": 3.5568647384643555, + "step": 4446 + }, + { + "epoch": 61.768894713848844, + "grad_norm": 0.20303797721862793, + "learning_rate": 0.0006, + "loss": 3.564765453338623, + "step": 4447 + }, + { + "epoch": 61.782874617737, + "grad_norm": 0.2019573301076889, + "learning_rate": 0.0006, + "loss": 3.523521900177002, + "step": 4448 + }, + { + "epoch": 61.796854521625164, + "grad_norm": 0.20591112971305847, + "learning_rate": 0.0006, + "loss": 3.5361227989196777, + "step": 4449 + }, + { + "epoch": 61.81083442551333, + "grad_norm": 0.21811535954475403, + "learning_rate": 0.0006, + "loss": 3.56982159614563, + "step": 4450 + }, + { + "epoch": 61.824814329401484, + "grad_norm": 0.24934124946594238, + "learning_rate": 0.0006, + "loss": 3.5518784523010254, + "step": 4451 + }, + { + "epoch": 61.83879423328965, + "grad_norm": 0.28142663836479187, + "learning_rate": 0.0006, + "loss": 3.5480635166168213, + "step": 4452 + }, + { + "epoch": 61.8527741371778, + "grad_norm": 0.27585235238075256, + "learning_rate": 0.0006, + "loss": 3.56685733795166, + "step": 4453 + }, + { + "epoch": 61.86675404106597, + "grad_norm": 0.24309827387332916, + "learning_rate": 0.0006, + "loss": 3.551058769226074, + "step": 4454 + }, + { + "epoch": 61.88073394495413, + "grad_norm": 0.22480300068855286, + "learning_rate": 0.0006, + "loss": 3.5644495487213135, + "step": 4455 + }, + { + "epoch": 61.89471384884229, + "grad_norm": 0.19861266016960144, + "learning_rate": 0.0006, + "loss": 3.5529613494873047, + "step": 4456 + }, + { + "epoch": 61.90869375273045, + "grad_norm": 0.20176313817501068, + "learning_rate": 0.0006, + "loss": 3.5173492431640625, + "step": 4457 + }, + { + "epoch": 61.92267365661861, + "grad_norm": 0.1964731365442276, + "learning_rate": 0.0006, + "loss": 3.5555479526519775, + "step": 4458 + }, + { + "epoch": 61.93665356050677, + "grad_norm": 0.20427751541137695, + "learning_rate": 0.0006, + "loss": 3.5312647819519043, + "step": 4459 + }, + { + "epoch": 61.95063346439493, + "grad_norm": 0.21940940618515015, + "learning_rate": 0.0006, + "loss": 3.536012649536133, + "step": 4460 + }, + { + "epoch": 61.964613368283096, + "grad_norm": 0.2100883573293686, + "learning_rate": 0.0006, + "loss": 3.5627548694610596, + "step": 4461 + }, + { + "epoch": 61.97859327217125, + "grad_norm": 0.21980689465999603, + "learning_rate": 0.0006, + "loss": 3.5933351516723633, + "step": 4462 + }, + { + "epoch": 61.992573176059416, + "grad_norm": 0.23822137713432312, + "learning_rate": 0.0006, + "loss": 3.567392349243164, + "step": 4463 + }, + { + "epoch": 62.0, + "grad_norm": 0.293637752532959, + "learning_rate": 0.0006, + "loss": 3.5707521438598633, + "step": 4464 + }, + { + "epoch": 62.0, + "eval_loss": 3.9813005924224854, + "eval_runtime": 44.8261, + "eval_samples_per_second": 54.477, + "eval_steps_per_second": 3.413, + "step": 4464 + }, + { + "epoch": 62.01397990388816, + "grad_norm": 0.2819560766220093, + "learning_rate": 0.0006, + "loss": 3.5146231651306152, + "step": 4465 + }, + { + "epoch": 62.02795980777632, + "grad_norm": 0.2446105033159256, + "learning_rate": 0.0006, + "loss": 3.48366117477417, + "step": 4466 + }, + { + "epoch": 62.04193971166448, + "grad_norm": 0.26826128363609314, + "learning_rate": 0.0006, + "loss": 3.511063814163208, + "step": 4467 + }, + { + "epoch": 62.05591961555265, + "grad_norm": 0.28266897797584534, + "learning_rate": 0.0006, + "loss": 3.560831069946289, + "step": 4468 + }, + { + "epoch": 62.0698995194408, + "grad_norm": 0.262866348028183, + "learning_rate": 0.0006, + "loss": 3.5248615741729736, + "step": 4469 + }, + { + "epoch": 62.083879423328966, + "grad_norm": 0.22957175970077515, + "learning_rate": 0.0006, + "loss": 3.518132209777832, + "step": 4470 + }, + { + "epoch": 62.09785932721712, + "grad_norm": 0.2311105579137802, + "learning_rate": 0.0006, + "loss": 3.520376443862915, + "step": 4471 + }, + { + "epoch": 62.111839231105286, + "grad_norm": 0.2455885261297226, + "learning_rate": 0.0006, + "loss": 3.532329797744751, + "step": 4472 + }, + { + "epoch": 62.12581913499345, + "grad_norm": 0.22050215303897858, + "learning_rate": 0.0006, + "loss": 3.5367608070373535, + "step": 4473 + }, + { + "epoch": 62.139799038881605, + "grad_norm": 0.2187507450580597, + "learning_rate": 0.0006, + "loss": 3.5165085792541504, + "step": 4474 + }, + { + "epoch": 62.15377894276977, + "grad_norm": 0.23510432243347168, + "learning_rate": 0.0006, + "loss": 3.5357909202575684, + "step": 4475 + }, + { + "epoch": 62.16775884665793, + "grad_norm": 0.22336673736572266, + "learning_rate": 0.0006, + "loss": 3.5183372497558594, + "step": 4476 + }, + { + "epoch": 62.18173875054609, + "grad_norm": 0.22019170224666595, + "learning_rate": 0.0006, + "loss": 3.532637596130371, + "step": 4477 + }, + { + "epoch": 62.19571865443425, + "grad_norm": 0.20902299880981445, + "learning_rate": 0.0006, + "loss": 3.5421581268310547, + "step": 4478 + }, + { + "epoch": 62.20969855832241, + "grad_norm": 0.22846505045890808, + "learning_rate": 0.0006, + "loss": 3.5008513927459717, + "step": 4479 + }, + { + "epoch": 62.22367846221057, + "grad_norm": 0.23657570779323578, + "learning_rate": 0.0006, + "loss": 3.5454330444335938, + "step": 4480 + }, + { + "epoch": 62.237658366098735, + "grad_norm": 0.22021226584911346, + "learning_rate": 0.0006, + "loss": 3.535137891769409, + "step": 4481 + }, + { + "epoch": 62.25163826998689, + "grad_norm": 0.21457694470882416, + "learning_rate": 0.0006, + "loss": 3.5051913261413574, + "step": 4482 + }, + { + "epoch": 62.265618173875055, + "grad_norm": 0.20432431995868683, + "learning_rate": 0.0006, + "loss": 3.5237550735473633, + "step": 4483 + }, + { + "epoch": 62.27959807776322, + "grad_norm": 0.20499777793884277, + "learning_rate": 0.0006, + "loss": 3.537209987640381, + "step": 4484 + }, + { + "epoch": 62.293577981651374, + "grad_norm": 0.21323661506175995, + "learning_rate": 0.0006, + "loss": 3.518765687942505, + "step": 4485 + }, + { + "epoch": 62.30755788553954, + "grad_norm": 0.19734761118888855, + "learning_rate": 0.0006, + "loss": 3.5132994651794434, + "step": 4486 + }, + { + "epoch": 62.3215377894277, + "grad_norm": 0.1844230592250824, + "learning_rate": 0.0006, + "loss": 3.5348291397094727, + "step": 4487 + }, + { + "epoch": 62.33551769331586, + "grad_norm": 0.20451737940311432, + "learning_rate": 0.0006, + "loss": 3.5055956840515137, + "step": 4488 + }, + { + "epoch": 62.34949759720402, + "grad_norm": 0.20004220306873322, + "learning_rate": 0.0006, + "loss": 3.558253526687622, + "step": 4489 + }, + { + "epoch": 62.36347750109218, + "grad_norm": 0.20544862747192383, + "learning_rate": 0.0006, + "loss": 3.5031163692474365, + "step": 4490 + }, + { + "epoch": 62.37745740498034, + "grad_norm": 0.23045147955417633, + "learning_rate": 0.0006, + "loss": 3.526170253753662, + "step": 4491 + }, + { + "epoch": 62.391437308868504, + "grad_norm": 0.2580485939979553, + "learning_rate": 0.0006, + "loss": 3.561131238937378, + "step": 4492 + }, + { + "epoch": 62.40541721275666, + "grad_norm": 0.24825656414031982, + "learning_rate": 0.0006, + "loss": 3.5550408363342285, + "step": 4493 + }, + { + "epoch": 62.419397116644824, + "grad_norm": 0.2317914366722107, + "learning_rate": 0.0006, + "loss": 3.543360948562622, + "step": 4494 + }, + { + "epoch": 62.43337702053299, + "grad_norm": 0.2186558097600937, + "learning_rate": 0.0006, + "loss": 3.5293631553649902, + "step": 4495 + }, + { + "epoch": 62.44735692442114, + "grad_norm": 0.22694920003414154, + "learning_rate": 0.0006, + "loss": 3.5315871238708496, + "step": 4496 + }, + { + "epoch": 62.46133682830931, + "grad_norm": 0.24042636156082153, + "learning_rate": 0.0006, + "loss": 3.507556915283203, + "step": 4497 + }, + { + "epoch": 62.47531673219746, + "grad_norm": 0.23853783309459686, + "learning_rate": 0.0006, + "loss": 3.546670913696289, + "step": 4498 + }, + { + "epoch": 62.489296636085626, + "grad_norm": 0.23252007365226746, + "learning_rate": 0.0006, + "loss": 3.522880792617798, + "step": 4499 + }, + { + "epoch": 62.50327653997379, + "grad_norm": 0.20553545653820038, + "learning_rate": 0.0006, + "loss": 3.5367445945739746, + "step": 4500 + }, + { + "epoch": 62.517256443861946, + "grad_norm": 0.19607895612716675, + "learning_rate": 0.0006, + "loss": 3.5319433212280273, + "step": 4501 + }, + { + "epoch": 62.53123634775011, + "grad_norm": 0.21482273936271667, + "learning_rate": 0.0006, + "loss": 3.525094509124756, + "step": 4502 + }, + { + "epoch": 62.54521625163827, + "grad_norm": 0.18248772621154785, + "learning_rate": 0.0006, + "loss": 3.5324039459228516, + "step": 4503 + }, + { + "epoch": 62.55919615552643, + "grad_norm": 0.19388431310653687, + "learning_rate": 0.0006, + "loss": 3.5579934120178223, + "step": 4504 + }, + { + "epoch": 62.57317605941459, + "grad_norm": 0.1987910121679306, + "learning_rate": 0.0006, + "loss": 3.5049524307250977, + "step": 4505 + }, + { + "epoch": 62.58715596330275, + "grad_norm": 0.2176462560892105, + "learning_rate": 0.0006, + "loss": 3.517348051071167, + "step": 4506 + }, + { + "epoch": 62.60113586719091, + "grad_norm": 0.20312298834323883, + "learning_rate": 0.0006, + "loss": 3.589355230331421, + "step": 4507 + }, + { + "epoch": 62.615115771079076, + "grad_norm": 0.20725034177303314, + "learning_rate": 0.0006, + "loss": 3.5353567600250244, + "step": 4508 + }, + { + "epoch": 62.62909567496723, + "grad_norm": 0.1944240778684616, + "learning_rate": 0.0006, + "loss": 3.5435595512390137, + "step": 4509 + }, + { + "epoch": 62.643075578855395, + "grad_norm": 0.1925448626279831, + "learning_rate": 0.0006, + "loss": 3.5406274795532227, + "step": 4510 + }, + { + "epoch": 62.65705548274356, + "grad_norm": 0.1932716965675354, + "learning_rate": 0.0006, + "loss": 3.582890748977661, + "step": 4511 + }, + { + "epoch": 62.671035386631715, + "grad_norm": 0.1993696093559265, + "learning_rate": 0.0006, + "loss": 3.533501148223877, + "step": 4512 + }, + { + "epoch": 62.68501529051988, + "grad_norm": 0.22586803138256073, + "learning_rate": 0.0006, + "loss": 3.5265021324157715, + "step": 4513 + }, + { + "epoch": 62.69899519440804, + "grad_norm": 0.22882722318172455, + "learning_rate": 0.0006, + "loss": 3.5486440658569336, + "step": 4514 + }, + { + "epoch": 62.7129750982962, + "grad_norm": 0.21674324572086334, + "learning_rate": 0.0006, + "loss": 3.5362353324890137, + "step": 4515 + }, + { + "epoch": 62.72695500218436, + "grad_norm": 0.1941487342119217, + "learning_rate": 0.0006, + "loss": 3.5191574096679688, + "step": 4516 + }, + { + "epoch": 62.74093490607252, + "grad_norm": 0.2034437507390976, + "learning_rate": 0.0006, + "loss": 3.5412280559539795, + "step": 4517 + }, + { + "epoch": 62.75491480996068, + "grad_norm": 0.22009888291358948, + "learning_rate": 0.0006, + "loss": 3.589108467102051, + "step": 4518 + }, + { + "epoch": 62.768894713848844, + "grad_norm": 0.21187400817871094, + "learning_rate": 0.0006, + "loss": 3.527048349380493, + "step": 4519 + }, + { + "epoch": 62.782874617737, + "grad_norm": 0.2089816778898239, + "learning_rate": 0.0006, + "loss": 3.551755905151367, + "step": 4520 + }, + { + "epoch": 62.796854521625164, + "grad_norm": 0.2095830738544464, + "learning_rate": 0.0006, + "loss": 3.5302011966705322, + "step": 4521 + }, + { + "epoch": 62.81083442551333, + "grad_norm": 0.20930075645446777, + "learning_rate": 0.0006, + "loss": 3.5276856422424316, + "step": 4522 + }, + { + "epoch": 62.824814329401484, + "grad_norm": 0.1876252442598343, + "learning_rate": 0.0006, + "loss": 3.5467052459716797, + "step": 4523 + }, + { + "epoch": 62.83879423328965, + "grad_norm": 0.21137461066246033, + "learning_rate": 0.0006, + "loss": 3.5446524620056152, + "step": 4524 + }, + { + "epoch": 62.8527741371778, + "grad_norm": 0.21340630948543549, + "learning_rate": 0.0006, + "loss": 3.580069065093994, + "step": 4525 + }, + { + "epoch": 62.86675404106597, + "grad_norm": 0.22623291611671448, + "learning_rate": 0.0006, + "loss": 3.5203771591186523, + "step": 4526 + }, + { + "epoch": 62.88073394495413, + "grad_norm": 0.20891177654266357, + "learning_rate": 0.0006, + "loss": 3.5408263206481934, + "step": 4527 + }, + { + "epoch": 62.89471384884229, + "grad_norm": 0.19802644848823547, + "learning_rate": 0.0006, + "loss": 3.521557569503784, + "step": 4528 + }, + { + "epoch": 62.90869375273045, + "grad_norm": 0.20889638364315033, + "learning_rate": 0.0006, + "loss": 3.535468578338623, + "step": 4529 + }, + { + "epoch": 62.92267365661861, + "grad_norm": 0.20450912415981293, + "learning_rate": 0.0006, + "loss": 3.5473756790161133, + "step": 4530 + }, + { + "epoch": 62.93665356050677, + "grad_norm": 0.24126461148262024, + "learning_rate": 0.0006, + "loss": 3.5418906211853027, + "step": 4531 + }, + { + "epoch": 62.95063346439493, + "grad_norm": 0.2789648473262787, + "learning_rate": 0.0006, + "loss": 3.5500879287719727, + "step": 4532 + }, + { + "epoch": 62.964613368283096, + "grad_norm": 0.2855475842952728, + "learning_rate": 0.0006, + "loss": 3.5589256286621094, + "step": 4533 + }, + { + "epoch": 62.97859327217125, + "grad_norm": 0.2353338748216629, + "learning_rate": 0.0006, + "loss": 3.576944351196289, + "step": 4534 + }, + { + "epoch": 62.992573176059416, + "grad_norm": 0.2360614389181137, + "learning_rate": 0.0006, + "loss": 3.550532341003418, + "step": 4535 + }, + { + "epoch": 63.0, + "grad_norm": 0.28869640827178955, + "learning_rate": 0.0006, + "loss": 3.4976563453674316, + "step": 4536 + }, + { + "epoch": 63.0, + "eval_loss": 3.967819929122925, + "eval_runtime": 44.8611, + "eval_samples_per_second": 54.435, + "eval_steps_per_second": 3.411, + "step": 4536 + }, + { + "epoch": 63.01397990388816, + "grad_norm": 0.2646687626838684, + "learning_rate": 0.0006, + "loss": 3.498749017715454, + "step": 4537 + }, + { + "epoch": 63.02795980777632, + "grad_norm": 0.26432088017463684, + "learning_rate": 0.0006, + "loss": 3.5114989280700684, + "step": 4538 + }, + { + "epoch": 63.04193971166448, + "grad_norm": 0.2657051980495453, + "learning_rate": 0.0006, + "loss": 3.5383224487304688, + "step": 4539 + }, + { + "epoch": 63.05591961555265, + "grad_norm": 0.24790945649147034, + "learning_rate": 0.0006, + "loss": 3.5148894786834717, + "step": 4540 + }, + { + "epoch": 63.0698995194408, + "grad_norm": 0.2703767716884613, + "learning_rate": 0.0006, + "loss": 3.5212574005126953, + "step": 4541 + }, + { + "epoch": 63.083879423328966, + "grad_norm": 0.28064072132110596, + "learning_rate": 0.0006, + "loss": 3.4917726516723633, + "step": 4542 + }, + { + "epoch": 63.09785932721712, + "grad_norm": 0.30201056599617004, + "learning_rate": 0.0006, + "loss": 3.524174213409424, + "step": 4543 + }, + { + "epoch": 63.111839231105286, + "grad_norm": 0.2668539583683014, + "learning_rate": 0.0006, + "loss": 3.5284507274627686, + "step": 4544 + }, + { + "epoch": 63.12581913499345, + "grad_norm": 0.23223146796226501, + "learning_rate": 0.0006, + "loss": 3.500607967376709, + "step": 4545 + }, + { + "epoch": 63.139799038881605, + "grad_norm": 0.22300627827644348, + "learning_rate": 0.0006, + "loss": 3.509087562561035, + "step": 4546 + }, + { + "epoch": 63.15377894276977, + "grad_norm": 0.217527836561203, + "learning_rate": 0.0006, + "loss": 3.518986225128174, + "step": 4547 + }, + { + "epoch": 63.16775884665793, + "grad_norm": 0.2347487509250641, + "learning_rate": 0.0006, + "loss": 3.5288784503936768, + "step": 4548 + }, + { + "epoch": 63.18173875054609, + "grad_norm": 0.21052609384059906, + "learning_rate": 0.0006, + "loss": 3.534576892852783, + "step": 4549 + }, + { + "epoch": 63.19571865443425, + "grad_norm": 0.20836210250854492, + "learning_rate": 0.0006, + "loss": 3.540663242340088, + "step": 4550 + }, + { + "epoch": 63.20969855832241, + "grad_norm": 0.2257382571697235, + "learning_rate": 0.0006, + "loss": 3.5042576789855957, + "step": 4551 + }, + { + "epoch": 63.22367846221057, + "grad_norm": 0.25684455037117004, + "learning_rate": 0.0006, + "loss": 3.546757221221924, + "step": 4552 + }, + { + "epoch": 63.237658366098735, + "grad_norm": 0.25408735871315, + "learning_rate": 0.0006, + "loss": 3.5245237350463867, + "step": 4553 + }, + { + "epoch": 63.25163826998689, + "grad_norm": 0.2105615735054016, + "learning_rate": 0.0006, + "loss": 3.4935879707336426, + "step": 4554 + }, + { + "epoch": 63.265618173875055, + "grad_norm": 0.23599031567573547, + "learning_rate": 0.0006, + "loss": 3.5445284843444824, + "step": 4555 + }, + { + "epoch": 63.27959807776322, + "grad_norm": 0.2786335349082947, + "learning_rate": 0.0006, + "loss": 3.5432677268981934, + "step": 4556 + }, + { + "epoch": 63.293577981651374, + "grad_norm": 0.26032358407974243, + "learning_rate": 0.0006, + "loss": 3.542494297027588, + "step": 4557 + }, + { + "epoch": 63.30755788553954, + "grad_norm": 0.23259027302265167, + "learning_rate": 0.0006, + "loss": 3.5343332290649414, + "step": 4558 + }, + { + "epoch": 63.3215377894277, + "grad_norm": 0.2183394432067871, + "learning_rate": 0.0006, + "loss": 3.552696466445923, + "step": 4559 + }, + { + "epoch": 63.33551769331586, + "grad_norm": 0.23014239966869354, + "learning_rate": 0.0006, + "loss": 3.507399559020996, + "step": 4560 + }, + { + "epoch": 63.34949759720402, + "grad_norm": 0.22618430852890015, + "learning_rate": 0.0006, + "loss": 3.5329864025115967, + "step": 4561 + }, + { + "epoch": 63.36347750109218, + "grad_norm": 0.22740741074085236, + "learning_rate": 0.0006, + "loss": 3.5098977088928223, + "step": 4562 + }, + { + "epoch": 63.37745740498034, + "grad_norm": 0.21428990364074707, + "learning_rate": 0.0006, + "loss": 3.5244359970092773, + "step": 4563 + }, + { + "epoch": 63.391437308868504, + "grad_norm": 0.224009707570076, + "learning_rate": 0.0006, + "loss": 3.491610288619995, + "step": 4564 + }, + { + "epoch": 63.40541721275666, + "grad_norm": 0.24859225749969482, + "learning_rate": 0.0006, + "loss": 3.534926414489746, + "step": 4565 + }, + { + "epoch": 63.419397116644824, + "grad_norm": 0.27701491117477417, + "learning_rate": 0.0006, + "loss": 3.501753091812134, + "step": 4566 + }, + { + "epoch": 63.43337702053299, + "grad_norm": 0.27911627292633057, + "learning_rate": 0.0006, + "loss": 3.5505383014678955, + "step": 4567 + }, + { + "epoch": 63.44735692442114, + "grad_norm": 0.25913184881210327, + "learning_rate": 0.0006, + "loss": 3.5086495876312256, + "step": 4568 + }, + { + "epoch": 63.46133682830931, + "grad_norm": 0.19867996871471405, + "learning_rate": 0.0006, + "loss": 3.497912645339966, + "step": 4569 + }, + { + "epoch": 63.47531673219746, + "grad_norm": 0.21337668597698212, + "learning_rate": 0.0006, + "loss": 3.511085033416748, + "step": 4570 + }, + { + "epoch": 63.489296636085626, + "grad_norm": 0.2221735268831253, + "learning_rate": 0.0006, + "loss": 3.504108190536499, + "step": 4571 + }, + { + "epoch": 63.50327653997379, + "grad_norm": 0.20739667117595673, + "learning_rate": 0.0006, + "loss": 3.50193452835083, + "step": 4572 + }, + { + "epoch": 63.517256443861946, + "grad_norm": 0.20149169862270355, + "learning_rate": 0.0006, + "loss": 3.5508787631988525, + "step": 4573 + }, + { + "epoch": 63.53123634775011, + "grad_norm": 0.19348420202732086, + "learning_rate": 0.0006, + "loss": 3.521906852722168, + "step": 4574 + }, + { + "epoch": 63.54521625163827, + "grad_norm": 0.19946886599063873, + "learning_rate": 0.0006, + "loss": 3.509187698364258, + "step": 4575 + }, + { + "epoch": 63.55919615552643, + "grad_norm": 0.21359245479106903, + "learning_rate": 0.0006, + "loss": 3.5194101333618164, + "step": 4576 + }, + { + "epoch": 63.57317605941459, + "grad_norm": 0.21726977825164795, + "learning_rate": 0.0006, + "loss": 3.553684711456299, + "step": 4577 + }, + { + "epoch": 63.58715596330275, + "grad_norm": 0.21707940101623535, + "learning_rate": 0.0006, + "loss": 3.5474231243133545, + "step": 4578 + }, + { + "epoch": 63.60113586719091, + "grad_norm": 0.2226727306842804, + "learning_rate": 0.0006, + "loss": 3.556403636932373, + "step": 4579 + }, + { + "epoch": 63.615115771079076, + "grad_norm": 0.22008022665977478, + "learning_rate": 0.0006, + "loss": 3.4910531044006348, + "step": 4580 + }, + { + "epoch": 63.62909567496723, + "grad_norm": 0.20050542056560516, + "learning_rate": 0.0006, + "loss": 3.5085577964782715, + "step": 4581 + }, + { + "epoch": 63.643075578855395, + "grad_norm": 0.21937592327594757, + "learning_rate": 0.0006, + "loss": 3.530182361602783, + "step": 4582 + }, + { + "epoch": 63.65705548274356, + "grad_norm": 0.23152779042720795, + "learning_rate": 0.0006, + "loss": 3.551499843597412, + "step": 4583 + }, + { + "epoch": 63.671035386631715, + "grad_norm": 0.22870875895023346, + "learning_rate": 0.0006, + "loss": 3.5576539039611816, + "step": 4584 + }, + { + "epoch": 63.68501529051988, + "grad_norm": 0.23679395020008087, + "learning_rate": 0.0006, + "loss": 3.5392303466796875, + "step": 4585 + }, + { + "epoch": 63.69899519440804, + "grad_norm": 0.2301628291606903, + "learning_rate": 0.0006, + "loss": 3.53672194480896, + "step": 4586 + }, + { + "epoch": 63.7129750982962, + "grad_norm": 0.20859898626804352, + "learning_rate": 0.0006, + "loss": 3.5405986309051514, + "step": 4587 + }, + { + "epoch": 63.72695500218436, + "grad_norm": 0.2263292521238327, + "learning_rate": 0.0006, + "loss": 3.557982921600342, + "step": 4588 + }, + { + "epoch": 63.74093490607252, + "grad_norm": 0.21420416235923767, + "learning_rate": 0.0006, + "loss": 3.531942129135132, + "step": 4589 + }, + { + "epoch": 63.75491480996068, + "grad_norm": 0.21604575216770172, + "learning_rate": 0.0006, + "loss": 3.54978346824646, + "step": 4590 + }, + { + "epoch": 63.768894713848844, + "grad_norm": 0.2530747354030609, + "learning_rate": 0.0006, + "loss": 3.576831817626953, + "step": 4591 + }, + { + "epoch": 63.782874617737, + "grad_norm": 0.26169830560684204, + "learning_rate": 0.0006, + "loss": 3.5594139099121094, + "step": 4592 + }, + { + "epoch": 63.796854521625164, + "grad_norm": 0.23454166948795319, + "learning_rate": 0.0006, + "loss": 3.527966022491455, + "step": 4593 + }, + { + "epoch": 63.81083442551333, + "grad_norm": 0.25329118967056274, + "learning_rate": 0.0006, + "loss": 3.555817127227783, + "step": 4594 + }, + { + "epoch": 63.824814329401484, + "grad_norm": 0.26875534653663635, + "learning_rate": 0.0006, + "loss": 3.5659937858581543, + "step": 4595 + }, + { + "epoch": 63.83879423328965, + "grad_norm": 0.2446713000535965, + "learning_rate": 0.0006, + "loss": 3.520578384399414, + "step": 4596 + }, + { + "epoch": 63.8527741371778, + "grad_norm": 0.24629594385623932, + "learning_rate": 0.0006, + "loss": 3.562185764312744, + "step": 4597 + }, + { + "epoch": 63.86675404106597, + "grad_norm": 0.25355106592178345, + "learning_rate": 0.0006, + "loss": 3.549164295196533, + "step": 4598 + }, + { + "epoch": 63.88073394495413, + "grad_norm": 0.23251968622207642, + "learning_rate": 0.0006, + "loss": 3.529660224914551, + "step": 4599 + }, + { + "epoch": 63.89471384884229, + "grad_norm": 0.21848365664482117, + "learning_rate": 0.0006, + "loss": 3.582645893096924, + "step": 4600 + }, + { + "epoch": 63.90869375273045, + "grad_norm": 0.2525595426559448, + "learning_rate": 0.0006, + "loss": 3.5324134826660156, + "step": 4601 + }, + { + "epoch": 63.92267365661861, + "grad_norm": 0.2766541838645935, + "learning_rate": 0.0006, + "loss": 3.525892734527588, + "step": 4602 + }, + { + "epoch": 63.93665356050677, + "grad_norm": 0.2581831216812134, + "learning_rate": 0.0006, + "loss": 3.568148374557495, + "step": 4603 + }, + { + "epoch": 63.95063346439493, + "grad_norm": 0.2600967288017273, + "learning_rate": 0.0006, + "loss": 3.5735561847686768, + "step": 4604 + }, + { + "epoch": 63.964613368283096, + "grad_norm": 0.3125685155391693, + "learning_rate": 0.0006, + "loss": 3.513974666595459, + "step": 4605 + }, + { + "epoch": 63.97859327217125, + "grad_norm": 0.2686053514480591, + "learning_rate": 0.0006, + "loss": 3.533506155014038, + "step": 4606 + }, + { + "epoch": 63.992573176059416, + "grad_norm": 0.23033086955547333, + "learning_rate": 0.0006, + "loss": 3.5701582431793213, + "step": 4607 + }, + { + "epoch": 64.0, + "grad_norm": 0.2688716948032379, + "learning_rate": 0.0006, + "loss": 3.5370922088623047, + "step": 4608 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 1.9636946680424694e+18, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4608/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4896/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4896/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4896/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4896/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..0f87fa84d45515e3a2e59aa52e7ccf5f7e2003d0 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7e6f8e20344ffc57a31b3c43294f3b14d108eab99da8a27f57e9569ef33a73f +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4896/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..f802c711076a2bb5df05618a7f85065ade80b26b --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a035b2a6eb756b8434766cee6d467ab9572630b006649bab57660d182c0d01a8 +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4896/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..d7a46d738746cb5202bfaf4e8b48548f4403026e --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f0f0271558226859c0113695e4e72527086cfca455e15b35edb14bed58cfafc +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4896/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..d13b5867a3dc54d7ad529d390075a406e711041d --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07c17fa59f6033b6a98ef9fce8bd2511c96b302db7d2a9f983d82709dcaaa143 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4896/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..f446f829d82a1f86c912714abb53d7fba343010b --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94642e081368d7b75b2ef306469e253305fe85f7bdeb714618031927a58d2a80 +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4896/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4896/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4896/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..469f86aff2abfdcf89f721295c51a316c1c25db9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/trainer_state.json @@ -0,0 +1,34842 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 68.0, + "eval_steps": 500, + "global_step": 4896, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + }, + { + "epoch": 8.0, + "eval_loss": 5.100707530975342, + "eval_runtime": 44.2493, + "eval_samples_per_second": 55.187, + "eval_steps_per_second": 3.458, + "step": 576 + }, + { + "epoch": 8.013979903888162, + "grad_norm": 0.3658510148525238, + "learning_rate": 0.0006, + "loss": 4.759055137634277, + "step": 577 + }, + { + "epoch": 8.027959807776321, + "grad_norm": 0.41794446110725403, + "learning_rate": 0.0006, + "loss": 4.737661838531494, + "step": 578 + }, + { + "epoch": 8.041939711664483, + "grad_norm": 0.43284085392951965, + "learning_rate": 0.0006, + "loss": 4.775538444519043, + "step": 579 + }, + { + "epoch": 8.055919615552643, + "grad_norm": 0.4716675281524658, + "learning_rate": 0.0006, + "loss": 4.762231826782227, + "step": 580 + }, + { + "epoch": 8.069899519440805, + "grad_norm": 0.3849579393863678, + "learning_rate": 0.0006, + "loss": 4.753598690032959, + "step": 581 + }, + { + "epoch": 8.083879423328964, + "grad_norm": 0.3721151053905487, + "learning_rate": 0.0006, + "loss": 4.728978157043457, + "step": 582 + }, + { + "epoch": 8.097859327217126, + "grad_norm": 0.37009572982788086, + "learning_rate": 0.0006, + "loss": 4.759153366088867, + "step": 583 + }, + { + "epoch": 8.111839231105286, + "grad_norm": 0.37051302194595337, + "learning_rate": 0.0006, + "loss": 4.744197368621826, + "step": 584 + }, + { + "epoch": 8.125819134993447, + "grad_norm": 0.331238329410553, + "learning_rate": 0.0006, + "loss": 4.7338385581970215, + "step": 585 + }, + { + "epoch": 8.139799038881607, + "grad_norm": 0.3737713694572449, + "learning_rate": 0.0006, + "loss": 4.719110488891602, + "step": 586 + }, + { + "epoch": 8.153778942769769, + "grad_norm": 0.3713214695453644, + "learning_rate": 0.0006, + "loss": 4.734012126922607, + "step": 587 + }, + { + "epoch": 8.167758846657929, + "grad_norm": 0.4060780107975006, + "learning_rate": 0.0006, + "loss": 4.746830940246582, + "step": 588 + }, + { + "epoch": 8.18173875054609, + "grad_norm": 0.39814314246177673, + "learning_rate": 0.0006, + "loss": 4.722851753234863, + "step": 589 + }, + { + "epoch": 8.19571865443425, + "grad_norm": 0.3175652325153351, + "learning_rate": 0.0006, + "loss": 4.745110034942627, + "step": 590 + }, + { + "epoch": 8.209698558322412, + "grad_norm": 0.37214916944503784, + "learning_rate": 0.0006, + "loss": 4.7362775802612305, + "step": 591 + }, + { + "epoch": 8.223678462210572, + "grad_norm": 0.3873472809791565, + "learning_rate": 0.0006, + "loss": 4.738964557647705, + "step": 592 + }, + { + "epoch": 8.237658366098733, + "grad_norm": 0.3299207091331482, + "learning_rate": 0.0006, + "loss": 4.713451385498047, + "step": 593 + }, + { + "epoch": 8.251638269986893, + "grad_norm": 0.32445064187049866, + "learning_rate": 0.0006, + "loss": 4.725602149963379, + "step": 594 + }, + { + "epoch": 8.265618173875055, + "grad_norm": 0.32903164625167847, + "learning_rate": 0.0006, + "loss": 4.732064247131348, + "step": 595 + }, + { + "epoch": 8.279598077763215, + "grad_norm": 0.3166804313659668, + "learning_rate": 0.0006, + "loss": 4.678950786590576, + "step": 596 + }, + { + "epoch": 8.293577981651376, + "grad_norm": 0.2750290334224701, + "learning_rate": 0.0006, + "loss": 4.719513416290283, + "step": 597 + }, + { + "epoch": 8.307557885539538, + "grad_norm": 0.291029691696167, + "learning_rate": 0.0006, + "loss": 4.715405464172363, + "step": 598 + }, + { + "epoch": 8.321537789427698, + "grad_norm": 0.34105145931243896, + "learning_rate": 0.0006, + "loss": 4.722611427307129, + "step": 599 + }, + { + "epoch": 8.33551769331586, + "grad_norm": 0.3078882694244385, + "learning_rate": 0.0006, + "loss": 4.668856620788574, + "step": 600 + }, + { + "epoch": 8.349497597204019, + "grad_norm": 0.3218833804130554, + "learning_rate": 0.0006, + "loss": 4.719579696655273, + "step": 601 + }, + { + "epoch": 8.36347750109218, + "grad_norm": 0.35716721415519714, + "learning_rate": 0.0006, + "loss": 4.690774440765381, + "step": 602 + }, + { + "epoch": 8.37745740498034, + "grad_norm": 0.3045452833175659, + "learning_rate": 0.0006, + "loss": 4.696503639221191, + "step": 603 + }, + { + "epoch": 8.391437308868502, + "grad_norm": 0.3127244710922241, + "learning_rate": 0.0006, + "loss": 4.701899528503418, + "step": 604 + }, + { + "epoch": 8.405417212756662, + "grad_norm": 0.34988710284233093, + "learning_rate": 0.0006, + "loss": 4.677641868591309, + "step": 605 + }, + { + "epoch": 8.419397116644824, + "grad_norm": 0.34035569429397583, + "learning_rate": 0.0006, + "loss": 4.707778453826904, + "step": 606 + }, + { + "epoch": 8.433377020532983, + "grad_norm": 0.3341112732887268, + "learning_rate": 0.0006, + "loss": 4.724853038787842, + "step": 607 + }, + { + "epoch": 8.447356924421145, + "grad_norm": 0.41744324564933777, + "learning_rate": 0.0006, + "loss": 4.680908203125, + "step": 608 + }, + { + "epoch": 8.461336828309305, + "grad_norm": 0.40402331948280334, + "learning_rate": 0.0006, + "loss": 4.726455211639404, + "step": 609 + }, + { + "epoch": 8.475316732197467, + "grad_norm": 0.4727570414543152, + "learning_rate": 0.0006, + "loss": 4.6793084144592285, + "step": 610 + }, + { + "epoch": 8.489296636085626, + "grad_norm": 0.43002694845199585, + "learning_rate": 0.0006, + "loss": 4.663918972015381, + "step": 611 + }, + { + "epoch": 8.503276539973788, + "grad_norm": 0.36124858260154724, + "learning_rate": 0.0006, + "loss": 4.657375335693359, + "step": 612 + }, + { + "epoch": 8.517256443861948, + "grad_norm": 0.37644803524017334, + "learning_rate": 0.0006, + "loss": 4.676977157592773, + "step": 613 + }, + { + "epoch": 8.53123634775011, + "grad_norm": 0.32347747683525085, + "learning_rate": 0.0006, + "loss": 4.708547115325928, + "step": 614 + }, + { + "epoch": 8.54521625163827, + "grad_norm": 0.3071717619895935, + "learning_rate": 0.0006, + "loss": 4.650189399719238, + "step": 615 + }, + { + "epoch": 8.55919615552643, + "grad_norm": 0.30222490429878235, + "learning_rate": 0.0006, + "loss": 4.647942543029785, + "step": 616 + }, + { + "epoch": 8.57317605941459, + "grad_norm": 0.31545212864875793, + "learning_rate": 0.0006, + "loss": 4.660242080688477, + "step": 617 + }, + { + "epoch": 8.587155963302752, + "grad_norm": 0.31644752621650696, + "learning_rate": 0.0006, + "loss": 4.666710376739502, + "step": 618 + }, + { + "epoch": 8.601135867190912, + "grad_norm": 0.26057198643684387, + "learning_rate": 0.0006, + "loss": 4.668096542358398, + "step": 619 + }, + { + "epoch": 8.615115771079074, + "grad_norm": 0.25473910570144653, + "learning_rate": 0.0006, + "loss": 4.641562461853027, + "step": 620 + }, + { + "epoch": 8.629095674967235, + "grad_norm": 0.2456732839345932, + "learning_rate": 0.0006, + "loss": 4.6545281410217285, + "step": 621 + }, + { + "epoch": 8.643075578855395, + "grad_norm": 0.25180476903915405, + "learning_rate": 0.0006, + "loss": 4.6506524085998535, + "step": 622 + }, + { + "epoch": 8.657055482743557, + "grad_norm": 0.21761579811573029, + "learning_rate": 0.0006, + "loss": 4.638909339904785, + "step": 623 + }, + { + "epoch": 8.671035386631717, + "grad_norm": 0.23590542376041412, + "learning_rate": 0.0006, + "loss": 4.6572747230529785, + "step": 624 + }, + { + "epoch": 8.685015290519878, + "grad_norm": 0.23870624601840973, + "learning_rate": 0.0006, + "loss": 4.643742084503174, + "step": 625 + }, + { + "epoch": 8.698995194408038, + "grad_norm": 0.2191203385591507, + "learning_rate": 0.0006, + "loss": 4.632617950439453, + "step": 626 + }, + { + "epoch": 8.7129750982962, + "grad_norm": 0.22107063233852386, + "learning_rate": 0.0006, + "loss": 4.625616073608398, + "step": 627 + }, + { + "epoch": 8.72695500218436, + "grad_norm": 0.20833902060985565, + "learning_rate": 0.0006, + "loss": 4.609896659851074, + "step": 628 + }, + { + "epoch": 8.740934906072521, + "grad_norm": 0.254967600107193, + "learning_rate": 0.0006, + "loss": 4.651735782623291, + "step": 629 + }, + { + "epoch": 8.754914809960681, + "grad_norm": 0.31587523221969604, + "learning_rate": 0.0006, + "loss": 4.6404032707214355, + "step": 630 + }, + { + "epoch": 8.768894713848843, + "grad_norm": 0.28598251938819885, + "learning_rate": 0.0006, + "loss": 4.602679252624512, + "step": 631 + }, + { + "epoch": 8.782874617737003, + "grad_norm": 0.23216590285301208, + "learning_rate": 0.0006, + "loss": 4.610319137573242, + "step": 632 + }, + { + "epoch": 8.796854521625164, + "grad_norm": 0.29212239384651184, + "learning_rate": 0.0006, + "loss": 4.600744247436523, + "step": 633 + }, + { + "epoch": 8.810834425513324, + "grad_norm": 0.3375801146030426, + "learning_rate": 0.0006, + "loss": 4.627819061279297, + "step": 634 + }, + { + "epoch": 8.824814329401486, + "grad_norm": 0.4207753837108612, + "learning_rate": 0.0006, + "loss": 4.634505271911621, + "step": 635 + }, + { + "epoch": 8.838794233289645, + "grad_norm": 0.4640173614025116, + "learning_rate": 0.0006, + "loss": 4.636714935302734, + "step": 636 + }, + { + "epoch": 8.852774137177807, + "grad_norm": 0.5255663990974426, + "learning_rate": 0.0006, + "loss": 4.659462928771973, + "step": 637 + }, + { + "epoch": 8.866754041065967, + "grad_norm": 0.5108268857002258, + "learning_rate": 0.0006, + "loss": 4.633192539215088, + "step": 638 + }, + { + "epoch": 8.880733944954128, + "grad_norm": 0.3821936845779419, + "learning_rate": 0.0006, + "loss": 4.621200084686279, + "step": 639 + }, + { + "epoch": 8.89471384884229, + "grad_norm": 0.3918485939502716, + "learning_rate": 0.0006, + "loss": 4.632599830627441, + "step": 640 + }, + { + "epoch": 8.90869375273045, + "grad_norm": 0.3416556119918823, + "learning_rate": 0.0006, + "loss": 4.620438098907471, + "step": 641 + }, + { + "epoch": 8.922673656618612, + "grad_norm": 0.3191553056240082, + "learning_rate": 0.0006, + "loss": 4.617823600769043, + "step": 642 + }, + { + "epoch": 8.936653560506771, + "grad_norm": 0.3368529677391052, + "learning_rate": 0.0006, + "loss": 4.617222785949707, + "step": 643 + }, + { + "epoch": 8.950633464394933, + "grad_norm": 0.3255428969860077, + "learning_rate": 0.0006, + "loss": 4.633878707885742, + "step": 644 + }, + { + "epoch": 8.964613368283093, + "grad_norm": 0.31394779682159424, + "learning_rate": 0.0006, + "loss": 4.642603874206543, + "step": 645 + }, + { + "epoch": 8.978593272171254, + "grad_norm": 0.29999351501464844, + "learning_rate": 0.0006, + "loss": 4.5925211906433105, + "step": 646 + }, + { + "epoch": 8.992573176059414, + "grad_norm": 0.309154748916626, + "learning_rate": 0.0006, + "loss": 4.61745023727417, + "step": 647 + }, + { + "epoch": 9.0, + "grad_norm": 0.2660452425479889, + "learning_rate": 0.0006, + "loss": 4.575107097625732, + "step": 648 + }, + { + "epoch": 9.0, + "eval_loss": 4.8804192543029785, + "eval_runtime": 45.0015, + "eval_samples_per_second": 54.265, + "eval_steps_per_second": 3.4, + "step": 648 + }, + { + "epoch": 9.013979903888162, + "grad_norm": 0.24159297347068787, + "learning_rate": 0.0006, + "loss": 4.571323871612549, + "step": 649 + }, + { + "epoch": 9.027959807776321, + "grad_norm": 0.2835831046104431, + "learning_rate": 0.0006, + "loss": 4.614255905151367, + "step": 650 + }, + { + "epoch": 9.041939711664483, + "grad_norm": 0.2646859288215637, + "learning_rate": 0.0006, + "loss": 4.578947067260742, + "step": 651 + }, + { + "epoch": 9.055919615552643, + "grad_norm": 0.28868553042411804, + "learning_rate": 0.0006, + "loss": 4.575977325439453, + "step": 652 + }, + { + "epoch": 9.069899519440805, + "grad_norm": 0.2899586856365204, + "learning_rate": 0.0006, + "loss": 4.541798114776611, + "step": 653 + }, + { + "epoch": 9.083879423328964, + "grad_norm": 0.32786068320274353, + "learning_rate": 0.0006, + "loss": 4.575140953063965, + "step": 654 + }, + { + "epoch": 9.097859327217126, + "grad_norm": 0.35675594210624695, + "learning_rate": 0.0006, + "loss": 4.58184814453125, + "step": 655 + }, + { + "epoch": 9.111839231105286, + "grad_norm": 0.3380381166934967, + "learning_rate": 0.0006, + "loss": 4.546271324157715, + "step": 656 + }, + { + "epoch": 9.125819134993447, + "grad_norm": 0.3035511374473572, + "learning_rate": 0.0006, + "loss": 4.591629981994629, + "step": 657 + }, + { + "epoch": 9.139799038881607, + "grad_norm": 0.2733091711997986, + "learning_rate": 0.0006, + "loss": 4.559020042419434, + "step": 658 + }, + { + "epoch": 9.153778942769769, + "grad_norm": 0.2870676815509796, + "learning_rate": 0.0006, + "loss": 4.552787780761719, + "step": 659 + }, + { + "epoch": 9.167758846657929, + "grad_norm": 0.37471064925193787, + "learning_rate": 0.0006, + "loss": 4.572757244110107, + "step": 660 + }, + { + "epoch": 9.18173875054609, + "grad_norm": 0.37889063358306885, + "learning_rate": 0.0006, + "loss": 4.573302268981934, + "step": 661 + }, + { + "epoch": 9.19571865443425, + "grad_norm": 0.29983851313591003, + "learning_rate": 0.0006, + "loss": 4.571202754974365, + "step": 662 + }, + { + "epoch": 9.209698558322412, + "grad_norm": 0.27595147490501404, + "learning_rate": 0.0006, + "loss": 4.529508590698242, + "step": 663 + }, + { + "epoch": 9.223678462210572, + "grad_norm": 0.22693437337875366, + "learning_rate": 0.0006, + "loss": 4.572267532348633, + "step": 664 + }, + { + "epoch": 9.237658366098733, + "grad_norm": 0.27147138118743896, + "learning_rate": 0.0006, + "loss": 4.529747009277344, + "step": 665 + }, + { + "epoch": 9.251638269986893, + "grad_norm": 0.24952703714370728, + "learning_rate": 0.0006, + "loss": 4.553647994995117, + "step": 666 + }, + { + "epoch": 9.265618173875055, + "grad_norm": 0.3086707592010498, + "learning_rate": 0.0006, + "loss": 4.494636058807373, + "step": 667 + }, + { + "epoch": 9.279598077763215, + "grad_norm": 0.3265218138694763, + "learning_rate": 0.0006, + "loss": 4.522481918334961, + "step": 668 + }, + { + "epoch": 9.293577981651376, + "grad_norm": 0.2744608223438263, + "learning_rate": 0.0006, + "loss": 4.544595241546631, + "step": 669 + }, + { + "epoch": 9.307557885539538, + "grad_norm": 0.26698485016822815, + "learning_rate": 0.0006, + "loss": 4.506407260894775, + "step": 670 + }, + { + "epoch": 9.321537789427698, + "grad_norm": 0.2775942087173462, + "learning_rate": 0.0006, + "loss": 4.534619331359863, + "step": 671 + }, + { + "epoch": 9.33551769331586, + "grad_norm": 0.2421862781047821, + "learning_rate": 0.0006, + "loss": 4.523318290710449, + "step": 672 + }, + { + "epoch": 9.349497597204019, + "grad_norm": 0.2756497263908386, + "learning_rate": 0.0006, + "loss": 4.517561912536621, + "step": 673 + }, + { + "epoch": 9.36347750109218, + "grad_norm": 0.28845369815826416, + "learning_rate": 0.0006, + "loss": 4.530844688415527, + "step": 674 + }, + { + "epoch": 9.37745740498034, + "grad_norm": 0.32285866141319275, + "learning_rate": 0.0006, + "loss": 4.55369758605957, + "step": 675 + }, + { + "epoch": 9.391437308868502, + "grad_norm": 0.3726065754890442, + "learning_rate": 0.0006, + "loss": 4.524348258972168, + "step": 676 + }, + { + "epoch": 9.405417212756662, + "grad_norm": 0.39524078369140625, + "learning_rate": 0.0006, + "loss": 4.535778045654297, + "step": 677 + }, + { + "epoch": 9.419397116644824, + "grad_norm": 0.3859797716140747, + "learning_rate": 0.0006, + "loss": 4.538474082946777, + "step": 678 + }, + { + "epoch": 9.433377020532983, + "grad_norm": 0.36151406168937683, + "learning_rate": 0.0006, + "loss": 4.54434061050415, + "step": 679 + }, + { + "epoch": 9.447356924421145, + "grad_norm": 0.40345999598503113, + "learning_rate": 0.0006, + "loss": 4.532961845397949, + "step": 680 + }, + { + "epoch": 9.461336828309305, + "grad_norm": 0.38864144682884216, + "learning_rate": 0.0006, + "loss": 4.567630767822266, + "step": 681 + }, + { + "epoch": 9.475316732197467, + "grad_norm": 0.3816355764865875, + "learning_rate": 0.0006, + "loss": 4.535771369934082, + "step": 682 + }, + { + "epoch": 9.489296636085626, + "grad_norm": 0.38756558299064636, + "learning_rate": 0.0006, + "loss": 4.4971089363098145, + "step": 683 + }, + { + "epoch": 9.503276539973788, + "grad_norm": 0.4572933614253998, + "learning_rate": 0.0006, + "loss": 4.534860134124756, + "step": 684 + }, + { + "epoch": 9.517256443861948, + "grad_norm": 0.42368650436401367, + "learning_rate": 0.0006, + "loss": 4.542638301849365, + "step": 685 + }, + { + "epoch": 9.53123634775011, + "grad_norm": 0.36939486861228943, + "learning_rate": 0.0006, + "loss": 4.571430206298828, + "step": 686 + }, + { + "epoch": 9.54521625163827, + "grad_norm": 0.3900398313999176, + "learning_rate": 0.0006, + "loss": 4.544435501098633, + "step": 687 + }, + { + "epoch": 9.55919615552643, + "grad_norm": 0.37829288840293884, + "learning_rate": 0.0006, + "loss": 4.564268112182617, + "step": 688 + }, + { + "epoch": 9.57317605941459, + "grad_norm": 0.3553886115550995, + "learning_rate": 0.0006, + "loss": 4.5373430252075195, + "step": 689 + }, + { + "epoch": 9.587155963302752, + "grad_norm": 0.3613419532775879, + "learning_rate": 0.0006, + "loss": 4.559074401855469, + "step": 690 + }, + { + "epoch": 9.601135867190912, + "grad_norm": 0.32644546031951904, + "learning_rate": 0.0006, + "loss": 4.533667087554932, + "step": 691 + }, + { + "epoch": 9.615115771079074, + "grad_norm": 0.3264399468898773, + "learning_rate": 0.0006, + "loss": 4.508299350738525, + "step": 692 + }, + { + "epoch": 9.629095674967235, + "grad_norm": 0.3534526526927948, + "learning_rate": 0.0006, + "loss": 4.542442798614502, + "step": 693 + }, + { + "epoch": 9.643075578855395, + "grad_norm": 0.3333452343940735, + "learning_rate": 0.0006, + "loss": 4.497692584991455, + "step": 694 + }, + { + "epoch": 9.657055482743557, + "grad_norm": 0.3214292526245117, + "learning_rate": 0.0006, + "loss": 4.512363433837891, + "step": 695 + }, + { + "epoch": 9.671035386631717, + "grad_norm": 0.2805672585964203, + "learning_rate": 0.0006, + "loss": 4.496874809265137, + "step": 696 + }, + { + "epoch": 9.685015290519878, + "grad_norm": 0.2618725895881653, + "learning_rate": 0.0006, + "loss": 4.51375675201416, + "step": 697 + }, + { + "epoch": 9.698995194408038, + "grad_norm": 0.2556597888469696, + "learning_rate": 0.0006, + "loss": 4.512338638305664, + "step": 698 + }, + { + "epoch": 9.7129750982962, + "grad_norm": 0.23784305155277252, + "learning_rate": 0.0006, + "loss": 4.486503601074219, + "step": 699 + }, + { + "epoch": 9.72695500218436, + "grad_norm": 0.2240338921546936, + "learning_rate": 0.0006, + "loss": 4.486850261688232, + "step": 700 + }, + { + "epoch": 9.740934906072521, + "grad_norm": 0.24686725437641144, + "learning_rate": 0.0006, + "loss": 4.501359462738037, + "step": 701 + }, + { + "epoch": 9.754914809960681, + "grad_norm": 0.20819595456123352, + "learning_rate": 0.0006, + "loss": 4.495186805725098, + "step": 702 + }, + { + "epoch": 9.768894713848843, + "grad_norm": 0.21858957409858704, + "learning_rate": 0.0006, + "loss": 4.475093364715576, + "step": 703 + }, + { + "epoch": 9.782874617737003, + "grad_norm": 0.22676466405391693, + "learning_rate": 0.0006, + "loss": 4.4702534675598145, + "step": 704 + }, + { + "epoch": 9.796854521625164, + "grad_norm": 0.18317611515522003, + "learning_rate": 0.0006, + "loss": 4.471231937408447, + "step": 705 + }, + { + "epoch": 9.810834425513324, + "grad_norm": 0.20979148149490356, + "learning_rate": 0.0006, + "loss": 4.454103946685791, + "step": 706 + }, + { + "epoch": 9.824814329401486, + "grad_norm": 0.2146051526069641, + "learning_rate": 0.0006, + "loss": 4.505178928375244, + "step": 707 + }, + { + "epoch": 9.838794233289645, + "grad_norm": 0.2344852089881897, + "learning_rate": 0.0006, + "loss": 4.437984943389893, + "step": 708 + }, + { + "epoch": 9.852774137177807, + "grad_norm": 0.26532089710235596, + "learning_rate": 0.0006, + "loss": 4.477126121520996, + "step": 709 + }, + { + "epoch": 9.866754041065967, + "grad_norm": 0.2737913131713867, + "learning_rate": 0.0006, + "loss": 4.498421669006348, + "step": 710 + }, + { + "epoch": 9.880733944954128, + "grad_norm": 0.26651278138160706, + "learning_rate": 0.0006, + "loss": 4.480839729309082, + "step": 711 + }, + { + "epoch": 9.89471384884229, + "grad_norm": 0.26576584577560425, + "learning_rate": 0.0006, + "loss": 4.490936279296875, + "step": 712 + }, + { + "epoch": 9.90869375273045, + "grad_norm": 0.22483965754508972, + "learning_rate": 0.0006, + "loss": 4.477953910827637, + "step": 713 + }, + { + "epoch": 9.922673656618612, + "grad_norm": 0.23576045036315918, + "learning_rate": 0.0006, + "loss": 4.4731292724609375, + "step": 714 + }, + { + "epoch": 9.936653560506771, + "grad_norm": 0.2731139361858368, + "learning_rate": 0.0006, + "loss": 4.441622734069824, + "step": 715 + }, + { + "epoch": 9.950633464394933, + "grad_norm": 0.2677643597126007, + "learning_rate": 0.0006, + "loss": 4.49604606628418, + "step": 716 + }, + { + "epoch": 9.964613368283093, + "grad_norm": 0.21940895915031433, + "learning_rate": 0.0006, + "loss": 4.485573768615723, + "step": 717 + }, + { + "epoch": 9.978593272171254, + "grad_norm": 0.2060987651348114, + "learning_rate": 0.0006, + "loss": 4.482657432556152, + "step": 718 + }, + { + "epoch": 9.992573176059414, + "grad_norm": 0.22163978219032288, + "learning_rate": 0.0006, + "loss": 4.478459358215332, + "step": 719 + }, + { + "epoch": 10.0, + "grad_norm": 0.2505086064338684, + "learning_rate": 0.0006, + "loss": 4.4393510818481445, + "step": 720 + }, + { + "epoch": 10.0, + "eval_loss": 4.695676803588867, + "eval_runtime": 49.0751, + "eval_samples_per_second": 49.76, + "eval_steps_per_second": 3.118, + "step": 720 + }, + { + "epoch": 10.013979903888162, + "grad_norm": 0.23820190131664276, + "learning_rate": 0.0006, + "loss": 4.437685489654541, + "step": 721 + }, + { + "epoch": 10.027959807776321, + "grad_norm": 0.2220371812582016, + "learning_rate": 0.0006, + "loss": 4.449873924255371, + "step": 722 + }, + { + "epoch": 10.041939711664483, + "grad_norm": 0.20369848608970642, + "learning_rate": 0.0006, + "loss": 4.448882579803467, + "step": 723 + }, + { + "epoch": 10.055919615552643, + "grad_norm": 0.2360001504421234, + "learning_rate": 0.0006, + "loss": 4.399251937866211, + "step": 724 + }, + { + "epoch": 10.069899519440805, + "grad_norm": 0.23537491261959076, + "learning_rate": 0.0006, + "loss": 4.442960739135742, + "step": 725 + }, + { + "epoch": 10.083879423328964, + "grad_norm": 0.24433870613574982, + "learning_rate": 0.0006, + "loss": 4.44808292388916, + "step": 726 + }, + { + "epoch": 10.097859327217126, + "grad_norm": 0.3406696021556854, + "learning_rate": 0.0006, + "loss": 4.443426132202148, + "step": 727 + }, + { + "epoch": 10.111839231105286, + "grad_norm": 0.4102286100387573, + "learning_rate": 0.0006, + "loss": 4.424919605255127, + "step": 728 + }, + { + "epoch": 10.125819134993447, + "grad_norm": 0.36462604999542236, + "learning_rate": 0.0006, + "loss": 4.45366907119751, + "step": 729 + }, + { + "epoch": 10.139799038881607, + "grad_norm": 0.4374827444553375, + "learning_rate": 0.0006, + "loss": 4.415630340576172, + "step": 730 + }, + { + "epoch": 10.153778942769769, + "grad_norm": 0.45248138904571533, + "learning_rate": 0.0006, + "loss": 4.448849678039551, + "step": 731 + }, + { + "epoch": 10.167758846657929, + "grad_norm": 0.3806457221508026, + "learning_rate": 0.0006, + "loss": 4.443390846252441, + "step": 732 + }, + { + "epoch": 10.18173875054609, + "grad_norm": 0.3491523861885071, + "learning_rate": 0.0006, + "loss": 4.4648637771606445, + "step": 733 + }, + { + "epoch": 10.19571865443425, + "grad_norm": 0.3327210247516632, + "learning_rate": 0.0006, + "loss": 4.460919380187988, + "step": 734 + }, + { + "epoch": 10.209698558322412, + "grad_norm": 0.29772236943244934, + "learning_rate": 0.0006, + "loss": 4.45159912109375, + "step": 735 + }, + { + "epoch": 10.223678462210572, + "grad_norm": 0.33083397150039673, + "learning_rate": 0.0006, + "loss": 4.463382720947266, + "step": 736 + }, + { + "epoch": 10.237658366098733, + "grad_norm": 0.3930598795413971, + "learning_rate": 0.0006, + "loss": 4.434510231018066, + "step": 737 + }, + { + "epoch": 10.251638269986893, + "grad_norm": 0.4342896044254303, + "learning_rate": 0.0006, + "loss": 4.451700210571289, + "step": 738 + }, + { + "epoch": 10.265618173875055, + "grad_norm": 0.4544043242931366, + "learning_rate": 0.0006, + "loss": 4.437224388122559, + "step": 739 + }, + { + "epoch": 10.279598077763215, + "grad_norm": 0.4487038254737854, + "learning_rate": 0.0006, + "loss": 4.46157693862915, + "step": 740 + }, + { + "epoch": 10.293577981651376, + "grad_norm": 0.4420500695705414, + "learning_rate": 0.0006, + "loss": 4.399561405181885, + "step": 741 + }, + { + "epoch": 10.307557885539538, + "grad_norm": 0.4167289435863495, + "learning_rate": 0.0006, + "loss": 4.41792106628418, + "step": 742 + }, + { + "epoch": 10.321537789427698, + "grad_norm": 0.3186971843242645, + "learning_rate": 0.0006, + "loss": 4.435683250427246, + "step": 743 + }, + { + "epoch": 10.33551769331586, + "grad_norm": 0.3077184855937958, + "learning_rate": 0.0006, + "loss": 4.481947898864746, + "step": 744 + }, + { + "epoch": 10.349497597204019, + "grad_norm": 0.26811280846595764, + "learning_rate": 0.0006, + "loss": 4.4339447021484375, + "step": 745 + }, + { + "epoch": 10.36347750109218, + "grad_norm": 0.28448057174682617, + "learning_rate": 0.0006, + "loss": 4.441644668579102, + "step": 746 + }, + { + "epoch": 10.37745740498034, + "grad_norm": 0.30731502175331116, + "learning_rate": 0.0006, + "loss": 4.428773880004883, + "step": 747 + }, + { + "epoch": 10.391437308868502, + "grad_norm": 0.28036001324653625, + "learning_rate": 0.0006, + "loss": 4.4433135986328125, + "step": 748 + }, + { + "epoch": 10.405417212756662, + "grad_norm": 0.2882847189903259, + "learning_rate": 0.0006, + "loss": 4.433401107788086, + "step": 749 + }, + { + "epoch": 10.419397116644824, + "grad_norm": 0.23622776567935944, + "learning_rate": 0.0006, + "loss": 4.444611549377441, + "step": 750 + }, + { + "epoch": 10.433377020532983, + "grad_norm": 0.2306167632341385, + "learning_rate": 0.0006, + "loss": 4.397875785827637, + "step": 751 + }, + { + "epoch": 10.447356924421145, + "grad_norm": 0.22725090384483337, + "learning_rate": 0.0006, + "loss": 4.429759502410889, + "step": 752 + }, + { + "epoch": 10.461336828309305, + "grad_norm": 0.250709593296051, + "learning_rate": 0.0006, + "loss": 4.415618896484375, + "step": 753 + }, + { + "epoch": 10.475316732197467, + "grad_norm": 0.22341276705265045, + "learning_rate": 0.0006, + "loss": 4.389362335205078, + "step": 754 + }, + { + "epoch": 10.489296636085626, + "grad_norm": 0.22595296800136566, + "learning_rate": 0.0006, + "loss": 4.383584022521973, + "step": 755 + }, + { + "epoch": 10.503276539973788, + "grad_norm": 0.24277575314044952, + "learning_rate": 0.0006, + "loss": 4.403777599334717, + "step": 756 + }, + { + "epoch": 10.517256443861948, + "grad_norm": 0.2670708894729614, + "learning_rate": 0.0006, + "loss": 4.398499011993408, + "step": 757 + }, + { + "epoch": 10.53123634775011, + "grad_norm": 0.2640696167945862, + "learning_rate": 0.0006, + "loss": 4.426726818084717, + "step": 758 + }, + { + "epoch": 10.54521625163827, + "grad_norm": 0.2248653769493103, + "learning_rate": 0.0006, + "loss": 4.400103569030762, + "step": 759 + }, + { + "epoch": 10.55919615552643, + "grad_norm": 0.21466240286827087, + "learning_rate": 0.0006, + "loss": 4.404158592224121, + "step": 760 + }, + { + "epoch": 10.57317605941459, + "grad_norm": 0.236923947930336, + "learning_rate": 0.0006, + "loss": 4.37059211730957, + "step": 761 + }, + { + "epoch": 10.587155963302752, + "grad_norm": 0.2515387535095215, + "learning_rate": 0.0006, + "loss": 4.415055274963379, + "step": 762 + }, + { + "epoch": 10.601135867190912, + "grad_norm": 0.23461885750293732, + "learning_rate": 0.0006, + "loss": 4.375036239624023, + "step": 763 + }, + { + "epoch": 10.615115771079074, + "grad_norm": 0.20975761115550995, + "learning_rate": 0.0006, + "loss": 4.3903398513793945, + "step": 764 + }, + { + "epoch": 10.629095674967235, + "grad_norm": 0.19859997928142548, + "learning_rate": 0.0006, + "loss": 4.379380226135254, + "step": 765 + }, + { + "epoch": 10.643075578855395, + "grad_norm": 0.22310325503349304, + "learning_rate": 0.0006, + "loss": 4.382110595703125, + "step": 766 + }, + { + "epoch": 10.657055482743557, + "grad_norm": 0.23940646648406982, + "learning_rate": 0.0006, + "loss": 4.393403053283691, + "step": 767 + }, + { + "epoch": 10.671035386631717, + "grad_norm": 0.2230468988418579, + "learning_rate": 0.0006, + "loss": 4.391970634460449, + "step": 768 + }, + { + "epoch": 10.685015290519878, + "grad_norm": 0.18139775097370148, + "learning_rate": 0.0006, + "loss": 4.399993896484375, + "step": 769 + }, + { + "epoch": 10.698995194408038, + "grad_norm": 0.19936902821063995, + "learning_rate": 0.0006, + "loss": 4.373854160308838, + "step": 770 + }, + { + "epoch": 10.7129750982962, + "grad_norm": 0.22132465243339539, + "learning_rate": 0.0006, + "loss": 4.377530097961426, + "step": 771 + }, + { + "epoch": 10.72695500218436, + "grad_norm": 0.24254944920539856, + "learning_rate": 0.0006, + "loss": 4.398683547973633, + "step": 772 + }, + { + "epoch": 10.740934906072521, + "grad_norm": 0.2666397988796234, + "learning_rate": 0.0006, + "loss": 4.3879899978637695, + "step": 773 + }, + { + "epoch": 10.754914809960681, + "grad_norm": 0.24728631973266602, + "learning_rate": 0.0006, + "loss": 4.356976509094238, + "step": 774 + }, + { + "epoch": 10.768894713848843, + "grad_norm": 0.2612453103065491, + "learning_rate": 0.0006, + "loss": 4.391525745391846, + "step": 775 + }, + { + "epoch": 10.782874617737003, + "grad_norm": 0.24060510098934174, + "learning_rate": 0.0006, + "loss": 4.376985549926758, + "step": 776 + }, + { + "epoch": 10.796854521625164, + "grad_norm": 0.22708238661289215, + "learning_rate": 0.0006, + "loss": 4.368545055389404, + "step": 777 + }, + { + "epoch": 10.810834425513324, + "grad_norm": 0.26931291818618774, + "learning_rate": 0.0006, + "loss": 4.369227409362793, + "step": 778 + }, + { + "epoch": 10.824814329401486, + "grad_norm": 0.265288770198822, + "learning_rate": 0.0006, + "loss": 4.378131866455078, + "step": 779 + }, + { + "epoch": 10.838794233289645, + "grad_norm": 0.3015305697917938, + "learning_rate": 0.0006, + "loss": 4.376267910003662, + "step": 780 + }, + { + "epoch": 10.852774137177807, + "grad_norm": 0.3345746099948883, + "learning_rate": 0.0006, + "loss": 4.3751420974731445, + "step": 781 + }, + { + "epoch": 10.866754041065967, + "grad_norm": 0.32446005940437317, + "learning_rate": 0.0006, + "loss": 4.370899200439453, + "step": 782 + }, + { + "epoch": 10.880733944954128, + "grad_norm": 0.27070069313049316, + "learning_rate": 0.0006, + "loss": 4.391958236694336, + "step": 783 + }, + { + "epoch": 10.89471384884229, + "grad_norm": 0.25584667921066284, + "learning_rate": 0.0006, + "loss": 4.407493591308594, + "step": 784 + }, + { + "epoch": 10.90869375273045, + "grad_norm": 0.2710244655609131, + "learning_rate": 0.0006, + "loss": 4.374400615692139, + "step": 785 + }, + { + "epoch": 10.922673656618612, + "grad_norm": 0.32413622736930847, + "learning_rate": 0.0006, + "loss": 4.379607200622559, + "step": 786 + }, + { + "epoch": 10.936653560506771, + "grad_norm": 0.3253782391548157, + "learning_rate": 0.0006, + "loss": 4.376441955566406, + "step": 787 + }, + { + "epoch": 10.950633464394933, + "grad_norm": 0.30534613132476807, + "learning_rate": 0.0006, + "loss": 4.382739067077637, + "step": 788 + }, + { + "epoch": 10.964613368283093, + "grad_norm": 0.35726621747016907, + "learning_rate": 0.0006, + "loss": 4.3765869140625, + "step": 789 + }, + { + "epoch": 10.978593272171254, + "grad_norm": 0.32763028144836426, + "learning_rate": 0.0006, + "loss": 4.391537189483643, + "step": 790 + }, + { + "epoch": 10.992573176059414, + "grad_norm": 0.31811195611953735, + "learning_rate": 0.0006, + "loss": 4.371829032897949, + "step": 791 + }, + { + "epoch": 11.0, + "grad_norm": 0.37317267060279846, + "learning_rate": 0.0006, + "loss": 4.381916522979736, + "step": 792 + }, + { + "epoch": 11.0, + "eval_loss": 4.588687896728516, + "eval_runtime": 44.8041, + "eval_samples_per_second": 54.504, + "eval_steps_per_second": 3.415, + "step": 792 + }, + { + "epoch": 11.013979903888162, + "grad_norm": 0.37882938981056213, + "learning_rate": 0.0006, + "loss": 4.3463640213012695, + "step": 793 + }, + { + "epoch": 11.027959807776321, + "grad_norm": 0.34719496965408325, + "learning_rate": 0.0006, + "loss": 4.329861640930176, + "step": 794 + }, + { + "epoch": 11.041939711664483, + "grad_norm": 0.36161214113235474, + "learning_rate": 0.0006, + "loss": 4.3287835121154785, + "step": 795 + }, + { + "epoch": 11.055919615552643, + "grad_norm": 0.3743649125099182, + "learning_rate": 0.0006, + "loss": 4.334251403808594, + "step": 796 + }, + { + "epoch": 11.069899519440805, + "grad_norm": 0.32266443967819214, + "learning_rate": 0.0006, + "loss": 4.364782810211182, + "step": 797 + }, + { + "epoch": 11.083879423328964, + "grad_norm": 0.27460047602653503, + "learning_rate": 0.0006, + "loss": 4.348380088806152, + "step": 798 + }, + { + "epoch": 11.097859327217126, + "grad_norm": 0.30498892068862915, + "learning_rate": 0.0006, + "loss": 4.347856521606445, + "step": 799 + }, + { + "epoch": 11.111839231105286, + "grad_norm": 0.29740771651268005, + "learning_rate": 0.0006, + "loss": 4.343471050262451, + "step": 800 + }, + { + "epoch": 11.125819134993447, + "grad_norm": 0.3004681169986725, + "learning_rate": 0.0006, + "loss": 4.337590217590332, + "step": 801 + }, + { + "epoch": 11.139799038881607, + "grad_norm": 0.3000192642211914, + "learning_rate": 0.0006, + "loss": 4.349949836730957, + "step": 802 + }, + { + "epoch": 11.153778942769769, + "grad_norm": 0.27461889386177063, + "learning_rate": 0.0006, + "loss": 4.338934898376465, + "step": 803 + }, + { + "epoch": 11.167758846657929, + "grad_norm": 0.2856169641017914, + "learning_rate": 0.0006, + "loss": 4.320754051208496, + "step": 804 + }, + { + "epoch": 11.18173875054609, + "grad_norm": 0.29822713136672974, + "learning_rate": 0.0006, + "loss": 4.357949733734131, + "step": 805 + }, + { + "epoch": 11.19571865443425, + "grad_norm": 0.34061339497566223, + "learning_rate": 0.0006, + "loss": 4.327282905578613, + "step": 806 + }, + { + "epoch": 11.209698558322412, + "grad_norm": 0.3379063010215759, + "learning_rate": 0.0006, + "loss": 4.355471611022949, + "step": 807 + }, + { + "epoch": 11.223678462210572, + "grad_norm": 0.2859216630458832, + "learning_rate": 0.0006, + "loss": 4.352344989776611, + "step": 808 + }, + { + "epoch": 11.237658366098733, + "grad_norm": 0.29522669315338135, + "learning_rate": 0.0006, + "loss": 4.349186897277832, + "step": 809 + }, + { + "epoch": 11.251638269986893, + "grad_norm": 0.273798406124115, + "learning_rate": 0.0006, + "loss": 4.342379570007324, + "step": 810 + }, + { + "epoch": 11.265618173875055, + "grad_norm": 0.25298982858657837, + "learning_rate": 0.0006, + "loss": 4.358835220336914, + "step": 811 + }, + { + "epoch": 11.279598077763215, + "grad_norm": 0.2170463651418686, + "learning_rate": 0.0006, + "loss": 4.3422017097473145, + "step": 812 + }, + { + "epoch": 11.293577981651376, + "grad_norm": 0.24855731427669525, + "learning_rate": 0.0006, + "loss": 4.322849750518799, + "step": 813 + }, + { + "epoch": 11.307557885539538, + "grad_norm": 0.22564345598220825, + "learning_rate": 0.0006, + "loss": 4.316864967346191, + "step": 814 + }, + { + "epoch": 11.321537789427698, + "grad_norm": 0.21532197296619415, + "learning_rate": 0.0006, + "loss": 4.326743125915527, + "step": 815 + }, + { + "epoch": 11.33551769331586, + "grad_norm": 0.20514146983623505, + "learning_rate": 0.0006, + "loss": 4.326531887054443, + "step": 816 + }, + { + "epoch": 11.349497597204019, + "grad_norm": 0.19035090506076813, + "learning_rate": 0.0006, + "loss": 4.318154335021973, + "step": 817 + }, + { + "epoch": 11.36347750109218, + "grad_norm": 0.17889662086963654, + "learning_rate": 0.0006, + "loss": 4.35410213470459, + "step": 818 + }, + { + "epoch": 11.37745740498034, + "grad_norm": 0.20564863085746765, + "learning_rate": 0.0006, + "loss": 4.350226879119873, + "step": 819 + }, + { + "epoch": 11.391437308868502, + "grad_norm": 0.2412603348493576, + "learning_rate": 0.0006, + "loss": 4.325137138366699, + "step": 820 + }, + { + "epoch": 11.405417212756662, + "grad_norm": 0.2603496015071869, + "learning_rate": 0.0006, + "loss": 4.335752487182617, + "step": 821 + }, + { + "epoch": 11.419397116644824, + "grad_norm": 0.2968119978904724, + "learning_rate": 0.0006, + "loss": 4.3317670822143555, + "step": 822 + }, + { + "epoch": 11.433377020532983, + "grad_norm": 0.3280937969684601, + "learning_rate": 0.0006, + "loss": 4.322279453277588, + "step": 823 + }, + { + "epoch": 11.447356924421145, + "grad_norm": 0.3598847985267639, + "learning_rate": 0.0006, + "loss": 4.312255859375, + "step": 824 + }, + { + "epoch": 11.461336828309305, + "grad_norm": 0.3996485471725464, + "learning_rate": 0.0006, + "loss": 4.327103614807129, + "step": 825 + }, + { + "epoch": 11.475316732197467, + "grad_norm": 0.4352041780948639, + "learning_rate": 0.0006, + "loss": 4.368639945983887, + "step": 826 + }, + { + "epoch": 11.489296636085626, + "grad_norm": 0.4451918601989746, + "learning_rate": 0.0006, + "loss": 4.335113048553467, + "step": 827 + }, + { + "epoch": 11.503276539973788, + "grad_norm": 0.4403933584690094, + "learning_rate": 0.0006, + "loss": 4.369889259338379, + "step": 828 + }, + { + "epoch": 11.517256443861948, + "grad_norm": 0.34862443804740906, + "learning_rate": 0.0006, + "loss": 4.316292762756348, + "step": 829 + }, + { + "epoch": 11.53123634775011, + "grad_norm": 0.3240634500980377, + "learning_rate": 0.0006, + "loss": 4.328078746795654, + "step": 830 + }, + { + "epoch": 11.54521625163827, + "grad_norm": 0.2445751428604126, + "learning_rate": 0.0006, + "loss": 4.291940689086914, + "step": 831 + }, + { + "epoch": 11.55919615552643, + "grad_norm": 0.24376554787158966, + "learning_rate": 0.0006, + "loss": 4.339217662811279, + "step": 832 + }, + { + "epoch": 11.57317605941459, + "grad_norm": 0.22419725358486176, + "learning_rate": 0.0006, + "loss": 4.2887468338012695, + "step": 833 + }, + { + "epoch": 11.587155963302752, + "grad_norm": 0.22318261861801147, + "learning_rate": 0.0006, + "loss": 4.298492908477783, + "step": 834 + }, + { + "epoch": 11.601135867190912, + "grad_norm": 0.2357342392206192, + "learning_rate": 0.0006, + "loss": 4.328692436218262, + "step": 835 + }, + { + "epoch": 11.615115771079074, + "grad_norm": 0.25450602173805237, + "learning_rate": 0.0006, + "loss": 4.360058784484863, + "step": 836 + }, + { + "epoch": 11.629095674967235, + "grad_norm": 0.24540965259075165, + "learning_rate": 0.0006, + "loss": 4.311890602111816, + "step": 837 + }, + { + "epoch": 11.643075578855395, + "grad_norm": 0.2535638213157654, + "learning_rate": 0.0006, + "loss": 4.327730178833008, + "step": 838 + }, + { + "epoch": 11.657055482743557, + "grad_norm": 0.23063556849956512, + "learning_rate": 0.0006, + "loss": 4.303299903869629, + "step": 839 + }, + { + "epoch": 11.671035386631717, + "grad_norm": 0.21813632547855377, + "learning_rate": 0.0006, + "loss": 4.315352439880371, + "step": 840 + }, + { + "epoch": 11.685015290519878, + "grad_norm": 0.2170359194278717, + "learning_rate": 0.0006, + "loss": 4.278632164001465, + "step": 841 + }, + { + "epoch": 11.698995194408038, + "grad_norm": 0.21059377491474152, + "learning_rate": 0.0006, + "loss": 4.306049346923828, + "step": 842 + }, + { + "epoch": 11.7129750982962, + "grad_norm": 0.19872888922691345, + "learning_rate": 0.0006, + "loss": 4.3091535568237305, + "step": 843 + }, + { + "epoch": 11.72695500218436, + "grad_norm": 0.20059862732887268, + "learning_rate": 0.0006, + "loss": 4.2884063720703125, + "step": 844 + }, + { + "epoch": 11.740934906072521, + "grad_norm": 0.19952483475208282, + "learning_rate": 0.0006, + "loss": 4.293610572814941, + "step": 845 + }, + { + "epoch": 11.754914809960681, + "grad_norm": 0.19794537127017975, + "learning_rate": 0.0006, + "loss": 4.288822174072266, + "step": 846 + }, + { + "epoch": 11.768894713848843, + "grad_norm": 0.213914692401886, + "learning_rate": 0.0006, + "loss": 4.320849418640137, + "step": 847 + }, + { + "epoch": 11.782874617737003, + "grad_norm": 0.18500955402851105, + "learning_rate": 0.0006, + "loss": 4.29300594329834, + "step": 848 + }, + { + "epoch": 11.796854521625164, + "grad_norm": 0.19446656107902527, + "learning_rate": 0.0006, + "loss": 4.3079352378845215, + "step": 849 + }, + { + "epoch": 11.810834425513324, + "grad_norm": 0.22191768884658813, + "learning_rate": 0.0006, + "loss": 4.295967102050781, + "step": 850 + }, + { + "epoch": 11.824814329401486, + "grad_norm": 0.20748084783554077, + "learning_rate": 0.0006, + "loss": 4.332365989685059, + "step": 851 + }, + { + "epoch": 11.838794233289645, + "grad_norm": 0.20993955433368683, + "learning_rate": 0.0006, + "loss": 4.294618129730225, + "step": 852 + }, + { + "epoch": 11.852774137177807, + "grad_norm": 0.23506952822208405, + "learning_rate": 0.0006, + "loss": 4.313426971435547, + "step": 853 + }, + { + "epoch": 11.866754041065967, + "grad_norm": 0.2379443347454071, + "learning_rate": 0.0006, + "loss": 4.297664642333984, + "step": 854 + }, + { + "epoch": 11.880733944954128, + "grad_norm": 0.2127852737903595, + "learning_rate": 0.0006, + "loss": 4.2807698249816895, + "step": 855 + }, + { + "epoch": 11.89471384884229, + "grad_norm": 0.2125532180070877, + "learning_rate": 0.0006, + "loss": 4.310990333557129, + "step": 856 + }, + { + "epoch": 11.90869375273045, + "grad_norm": 0.1996062994003296, + "learning_rate": 0.0006, + "loss": 4.253237724304199, + "step": 857 + }, + { + "epoch": 11.922673656618612, + "grad_norm": 0.20747603476047516, + "learning_rate": 0.0006, + "loss": 4.294193267822266, + "step": 858 + }, + { + "epoch": 11.936653560506771, + "grad_norm": 0.24082425236701965, + "learning_rate": 0.0006, + "loss": 4.269967079162598, + "step": 859 + }, + { + "epoch": 11.950633464394933, + "grad_norm": 0.28993573784828186, + "learning_rate": 0.0006, + "loss": 4.294550895690918, + "step": 860 + }, + { + "epoch": 11.964613368283093, + "grad_norm": 0.29576948285102844, + "learning_rate": 0.0006, + "loss": 4.3188252449035645, + "step": 861 + }, + { + "epoch": 11.978593272171254, + "grad_norm": 0.2754935026168823, + "learning_rate": 0.0006, + "loss": 4.312817573547363, + "step": 862 + }, + { + "epoch": 11.992573176059414, + "grad_norm": 0.3062523305416107, + "learning_rate": 0.0006, + "loss": 4.288214683532715, + "step": 863 + }, + { + "epoch": 12.0, + "grad_norm": 0.3367644250392914, + "learning_rate": 0.0006, + "loss": 4.314888954162598, + "step": 864 + }, + { + "epoch": 12.0, + "eval_loss": 4.516861438751221, + "eval_runtime": 44.2584, + "eval_samples_per_second": 55.176, + "eval_steps_per_second": 3.457, + "step": 864 + }, + { + "epoch": 12.013979903888162, + "grad_norm": 0.2976512014865875, + "learning_rate": 0.0006, + "loss": 4.278797149658203, + "step": 865 + }, + { + "epoch": 12.027959807776321, + "grad_norm": 0.32217127084732056, + "learning_rate": 0.0006, + "loss": 4.2823615074157715, + "step": 866 + }, + { + "epoch": 12.041939711664483, + "grad_norm": 0.31538400053977966, + "learning_rate": 0.0006, + "loss": 4.252805709838867, + "step": 867 + }, + { + "epoch": 12.055919615552643, + "grad_norm": 0.3501375913619995, + "learning_rate": 0.0006, + "loss": 4.276501655578613, + "step": 868 + }, + { + "epoch": 12.069899519440805, + "grad_norm": 0.3452056646347046, + "learning_rate": 0.0006, + "loss": 4.275739669799805, + "step": 869 + }, + { + "epoch": 12.083879423328964, + "grad_norm": 0.36963316798210144, + "learning_rate": 0.0006, + "loss": 4.3215227127075195, + "step": 870 + }, + { + "epoch": 12.097859327217126, + "grad_norm": 0.41605016589164734, + "learning_rate": 0.0006, + "loss": 4.28739595413208, + "step": 871 + }, + { + "epoch": 12.111839231105286, + "grad_norm": 0.37700653076171875, + "learning_rate": 0.0006, + "loss": 4.291154861450195, + "step": 872 + }, + { + "epoch": 12.125819134993447, + "grad_norm": 0.3194253444671631, + "learning_rate": 0.0006, + "loss": 4.259326934814453, + "step": 873 + }, + { + "epoch": 12.139799038881607, + "grad_norm": 0.31770631670951843, + "learning_rate": 0.0006, + "loss": 4.270082473754883, + "step": 874 + }, + { + "epoch": 12.153778942769769, + "grad_norm": 0.3748120069503784, + "learning_rate": 0.0006, + "loss": 4.2727274894714355, + "step": 875 + }, + { + "epoch": 12.167758846657929, + "grad_norm": 0.3821348547935486, + "learning_rate": 0.0006, + "loss": 4.2848286628723145, + "step": 876 + }, + { + "epoch": 12.18173875054609, + "grad_norm": 0.31894201040267944, + "learning_rate": 0.0006, + "loss": 4.289551258087158, + "step": 877 + }, + { + "epoch": 12.19571865443425, + "grad_norm": 0.2695826292037964, + "learning_rate": 0.0006, + "loss": 4.2797346115112305, + "step": 878 + }, + { + "epoch": 12.209698558322412, + "grad_norm": 0.23966269195079803, + "learning_rate": 0.0006, + "loss": 4.24021577835083, + "step": 879 + }, + { + "epoch": 12.223678462210572, + "grad_norm": 0.24342599511146545, + "learning_rate": 0.0006, + "loss": 4.277721881866455, + "step": 880 + }, + { + "epoch": 12.237658366098733, + "grad_norm": 0.2522958815097809, + "learning_rate": 0.0006, + "loss": 4.263946533203125, + "step": 881 + }, + { + "epoch": 12.251638269986893, + "grad_norm": 0.2708299458026886, + "learning_rate": 0.0006, + "loss": 4.274540901184082, + "step": 882 + }, + { + "epoch": 12.265618173875055, + "grad_norm": 0.2978788912296295, + "learning_rate": 0.0006, + "loss": 4.2674970626831055, + "step": 883 + }, + { + "epoch": 12.279598077763215, + "grad_norm": 0.2898774743080139, + "learning_rate": 0.0006, + "loss": 4.235060691833496, + "step": 884 + }, + { + "epoch": 12.293577981651376, + "grad_norm": 0.27941837906837463, + "learning_rate": 0.0006, + "loss": 4.284140586853027, + "step": 885 + }, + { + "epoch": 12.307557885539538, + "grad_norm": 0.25050559639930725, + "learning_rate": 0.0006, + "loss": 4.270134925842285, + "step": 886 + }, + { + "epoch": 12.321537789427698, + "grad_norm": 0.21867156028747559, + "learning_rate": 0.0006, + "loss": 4.241571426391602, + "step": 887 + }, + { + "epoch": 12.33551769331586, + "grad_norm": 0.24735847115516663, + "learning_rate": 0.0006, + "loss": 4.253087997436523, + "step": 888 + }, + { + "epoch": 12.349497597204019, + "grad_norm": 0.23069104552268982, + "learning_rate": 0.0006, + "loss": 4.258606910705566, + "step": 889 + }, + { + "epoch": 12.36347750109218, + "grad_norm": 0.2594369947910309, + "learning_rate": 0.0006, + "loss": 4.307351112365723, + "step": 890 + }, + { + "epoch": 12.37745740498034, + "grad_norm": 0.25349098443984985, + "learning_rate": 0.0006, + "loss": 4.264268398284912, + "step": 891 + }, + { + "epoch": 12.391437308868502, + "grad_norm": 0.2550840675830841, + "learning_rate": 0.0006, + "loss": 4.247092247009277, + "step": 892 + }, + { + "epoch": 12.405417212756662, + "grad_norm": 0.2107602059841156, + "learning_rate": 0.0006, + "loss": 4.240527153015137, + "step": 893 + }, + { + "epoch": 12.419397116644824, + "grad_norm": 0.2025548368692398, + "learning_rate": 0.0006, + "loss": 4.244686126708984, + "step": 894 + }, + { + "epoch": 12.433377020532983, + "grad_norm": 0.22061701118946075, + "learning_rate": 0.0006, + "loss": 4.233231544494629, + "step": 895 + }, + { + "epoch": 12.447356924421145, + "grad_norm": 0.19503085315227509, + "learning_rate": 0.0006, + "loss": 4.23851203918457, + "step": 896 + }, + { + "epoch": 12.461336828309305, + "grad_norm": 0.19313643872737885, + "learning_rate": 0.0006, + "loss": 4.190886497497559, + "step": 897 + }, + { + "epoch": 12.475316732197467, + "grad_norm": 0.21094176173210144, + "learning_rate": 0.0006, + "loss": 4.277888298034668, + "step": 898 + }, + { + "epoch": 12.489296636085626, + "grad_norm": 0.1980651170015335, + "learning_rate": 0.0006, + "loss": 4.251066207885742, + "step": 899 + }, + { + "epoch": 12.503276539973788, + "grad_norm": 0.179737389087677, + "learning_rate": 0.0006, + "loss": 4.194703102111816, + "step": 900 + }, + { + "epoch": 12.517256443861948, + "grad_norm": 0.19069281220436096, + "learning_rate": 0.0006, + "loss": 4.242412567138672, + "step": 901 + }, + { + "epoch": 12.53123634775011, + "grad_norm": 0.191154345870018, + "learning_rate": 0.0006, + "loss": 4.2432780265808105, + "step": 902 + }, + { + "epoch": 12.54521625163827, + "grad_norm": 0.19760103523731232, + "learning_rate": 0.0006, + "loss": 4.23294734954834, + "step": 903 + }, + { + "epoch": 12.55919615552643, + "grad_norm": 0.19982324540615082, + "learning_rate": 0.0006, + "loss": 4.249764442443848, + "step": 904 + }, + { + "epoch": 12.57317605941459, + "grad_norm": 0.1986108422279358, + "learning_rate": 0.0006, + "loss": 4.213435649871826, + "step": 905 + }, + { + "epoch": 12.587155963302752, + "grad_norm": 0.19727319478988647, + "learning_rate": 0.0006, + "loss": 4.247962951660156, + "step": 906 + }, + { + "epoch": 12.601135867190912, + "grad_norm": 0.23404482007026672, + "learning_rate": 0.0006, + "loss": 4.237396240234375, + "step": 907 + }, + { + "epoch": 12.615115771079074, + "grad_norm": 0.21136441826820374, + "learning_rate": 0.0006, + "loss": 4.236040115356445, + "step": 908 + }, + { + "epoch": 12.629095674967235, + "grad_norm": 0.2209048718214035, + "learning_rate": 0.0006, + "loss": 4.234212875366211, + "step": 909 + }, + { + "epoch": 12.643075578855395, + "grad_norm": 0.22120307385921478, + "learning_rate": 0.0006, + "loss": 4.2711076736450195, + "step": 910 + }, + { + "epoch": 12.657055482743557, + "grad_norm": 0.22733066976070404, + "learning_rate": 0.0006, + "loss": 4.231651306152344, + "step": 911 + }, + { + "epoch": 12.671035386631717, + "grad_norm": 0.2435602843761444, + "learning_rate": 0.0006, + "loss": 4.249372482299805, + "step": 912 + }, + { + "epoch": 12.685015290519878, + "grad_norm": 0.28881654143333435, + "learning_rate": 0.0006, + "loss": 4.2626051902771, + "step": 913 + }, + { + "epoch": 12.698995194408038, + "grad_norm": 0.3211199641227722, + "learning_rate": 0.0006, + "loss": 4.254220485687256, + "step": 914 + }, + { + "epoch": 12.7129750982962, + "grad_norm": 0.3118100166320801, + "learning_rate": 0.0006, + "loss": 4.233747959136963, + "step": 915 + }, + { + "epoch": 12.72695500218436, + "grad_norm": 0.33411866426467896, + "learning_rate": 0.0006, + "loss": 4.270386219024658, + "step": 916 + }, + { + "epoch": 12.740934906072521, + "grad_norm": 0.2968253195285797, + "learning_rate": 0.0006, + "loss": 4.242254257202148, + "step": 917 + }, + { + "epoch": 12.754914809960681, + "grad_norm": 0.2959132194519043, + "learning_rate": 0.0006, + "loss": 4.232100486755371, + "step": 918 + }, + { + "epoch": 12.768894713848843, + "grad_norm": 0.2729283273220062, + "learning_rate": 0.0006, + "loss": 4.233869552612305, + "step": 919 + }, + { + "epoch": 12.782874617737003, + "grad_norm": 0.2669033408164978, + "learning_rate": 0.0006, + "loss": 4.261008262634277, + "step": 920 + }, + { + "epoch": 12.796854521625164, + "grad_norm": 0.2738507091999054, + "learning_rate": 0.0006, + "loss": 4.2286763191223145, + "step": 921 + }, + { + "epoch": 12.810834425513324, + "grad_norm": 0.29105183482170105, + "learning_rate": 0.0006, + "loss": 4.281410217285156, + "step": 922 + }, + { + "epoch": 12.824814329401486, + "grad_norm": 0.31330201029777527, + "learning_rate": 0.0006, + "loss": 4.264181613922119, + "step": 923 + }, + { + "epoch": 12.838794233289645, + "grad_norm": 0.31324025988578796, + "learning_rate": 0.0006, + "loss": 4.250385284423828, + "step": 924 + }, + { + "epoch": 12.852774137177807, + "grad_norm": 0.2727925181388855, + "learning_rate": 0.0006, + "loss": 4.24821138381958, + "step": 925 + }, + { + "epoch": 12.866754041065967, + "grad_norm": 0.27350082993507385, + "learning_rate": 0.0006, + "loss": 4.230215072631836, + "step": 926 + }, + { + "epoch": 12.880733944954128, + "grad_norm": 0.2269950658082962, + "learning_rate": 0.0006, + "loss": 4.210305213928223, + "step": 927 + }, + { + "epoch": 12.89471384884229, + "grad_norm": 0.24667619168758392, + "learning_rate": 0.0006, + "loss": 4.239969253540039, + "step": 928 + }, + { + "epoch": 12.90869375273045, + "grad_norm": 0.22510501742362976, + "learning_rate": 0.0006, + "loss": 4.192750930786133, + "step": 929 + }, + { + "epoch": 12.922673656618612, + "grad_norm": 0.22887611389160156, + "learning_rate": 0.0006, + "loss": 4.264463424682617, + "step": 930 + }, + { + "epoch": 12.936653560506771, + "grad_norm": 0.22195978462696075, + "learning_rate": 0.0006, + "loss": 4.205256938934326, + "step": 931 + }, + { + "epoch": 12.950633464394933, + "grad_norm": 0.23184578120708466, + "learning_rate": 0.0006, + "loss": 4.214578628540039, + "step": 932 + }, + { + "epoch": 12.964613368283093, + "grad_norm": 0.2186676561832428, + "learning_rate": 0.0006, + "loss": 4.227711200714111, + "step": 933 + }, + { + "epoch": 12.978593272171254, + "grad_norm": 0.2160426527261734, + "learning_rate": 0.0006, + "loss": 4.221796989440918, + "step": 934 + }, + { + "epoch": 12.992573176059414, + "grad_norm": 0.21562792360782623, + "learning_rate": 0.0006, + "loss": 4.21957540512085, + "step": 935 + }, + { + "epoch": 13.0, + "grad_norm": 0.22538058459758759, + "learning_rate": 0.0006, + "loss": 4.2353973388671875, + "step": 936 + }, + { + "epoch": 13.0, + "eval_loss": 4.426600933074951, + "eval_runtime": 44.8138, + "eval_samples_per_second": 54.492, + "eval_steps_per_second": 3.414, + "step": 936 + }, + { + "epoch": 13.013979903888162, + "grad_norm": 0.24888049066066742, + "learning_rate": 0.0006, + "loss": 4.18648624420166, + "step": 937 + }, + { + "epoch": 13.027959807776321, + "grad_norm": 0.28330180048942566, + "learning_rate": 0.0006, + "loss": 4.188892364501953, + "step": 938 + }, + { + "epoch": 13.041939711664483, + "grad_norm": 0.31152188777923584, + "learning_rate": 0.0006, + "loss": 4.2053399085998535, + "step": 939 + }, + { + "epoch": 13.055919615552643, + "grad_norm": 0.2842433452606201, + "learning_rate": 0.0006, + "loss": 4.191902160644531, + "step": 940 + }, + { + "epoch": 13.069899519440805, + "grad_norm": 0.23664532601833344, + "learning_rate": 0.0006, + "loss": 4.1831865310668945, + "step": 941 + }, + { + "epoch": 13.083879423328964, + "grad_norm": 0.24204140901565552, + "learning_rate": 0.0006, + "loss": 4.202641487121582, + "step": 942 + }, + { + "epoch": 13.097859327217126, + "grad_norm": 0.235311359167099, + "learning_rate": 0.0006, + "loss": 4.174511909484863, + "step": 943 + }, + { + "epoch": 13.111839231105286, + "grad_norm": 0.27127715945243835, + "learning_rate": 0.0006, + "loss": 4.201844215393066, + "step": 944 + }, + { + "epoch": 13.125819134993447, + "grad_norm": 0.2722373604774475, + "learning_rate": 0.0006, + "loss": 4.157383918762207, + "step": 945 + }, + { + "epoch": 13.139799038881607, + "grad_norm": 0.25446659326553345, + "learning_rate": 0.0006, + "loss": 4.221236228942871, + "step": 946 + }, + { + "epoch": 13.153778942769769, + "grad_norm": 0.273017019033432, + "learning_rate": 0.0006, + "loss": 4.195512771606445, + "step": 947 + }, + { + "epoch": 13.167758846657929, + "grad_norm": 0.24766312539577484, + "learning_rate": 0.0006, + "loss": 4.220959663391113, + "step": 948 + }, + { + "epoch": 13.18173875054609, + "grad_norm": 0.24636317789554596, + "learning_rate": 0.0006, + "loss": 4.214302062988281, + "step": 949 + }, + { + "epoch": 13.19571865443425, + "grad_norm": 0.3177756667137146, + "learning_rate": 0.0006, + "loss": 4.213500022888184, + "step": 950 + }, + { + "epoch": 13.209698558322412, + "grad_norm": 0.44579195976257324, + "learning_rate": 0.0006, + "loss": 4.227644920349121, + "step": 951 + }, + { + "epoch": 13.223678462210572, + "grad_norm": 0.4217414855957031, + "learning_rate": 0.0006, + "loss": 4.180937767028809, + "step": 952 + }, + { + "epoch": 13.237658366098733, + "grad_norm": 0.30148059129714966, + "learning_rate": 0.0006, + "loss": 4.207760810852051, + "step": 953 + }, + { + "epoch": 13.251638269986893, + "grad_norm": 0.3192492127418518, + "learning_rate": 0.0006, + "loss": 4.197999000549316, + "step": 954 + }, + { + "epoch": 13.265618173875055, + "grad_norm": 0.37334588170051575, + "learning_rate": 0.0006, + "loss": 4.208001136779785, + "step": 955 + }, + { + "epoch": 13.279598077763215, + "grad_norm": 0.4059637784957886, + "learning_rate": 0.0006, + "loss": 4.211322784423828, + "step": 956 + }, + { + "epoch": 13.293577981651376, + "grad_norm": 0.3389599323272705, + "learning_rate": 0.0006, + "loss": 4.204404354095459, + "step": 957 + }, + { + "epoch": 13.307557885539538, + "grad_norm": 0.2675766050815582, + "learning_rate": 0.0006, + "loss": 4.245941162109375, + "step": 958 + }, + { + "epoch": 13.321537789427698, + "grad_norm": 0.2730264365673065, + "learning_rate": 0.0006, + "loss": 4.2221221923828125, + "step": 959 + }, + { + "epoch": 13.33551769331586, + "grad_norm": 0.26458224654197693, + "learning_rate": 0.0006, + "loss": 4.205596923828125, + "step": 960 + }, + { + "epoch": 13.349497597204019, + "grad_norm": 0.2872551381587982, + "learning_rate": 0.0006, + "loss": 4.196977615356445, + "step": 961 + }, + { + "epoch": 13.36347750109218, + "grad_norm": 0.2954796850681305, + "learning_rate": 0.0006, + "loss": 4.202796936035156, + "step": 962 + }, + { + "epoch": 13.37745740498034, + "grad_norm": 0.2619425654411316, + "learning_rate": 0.0006, + "loss": 4.196845054626465, + "step": 963 + }, + { + "epoch": 13.391437308868502, + "grad_norm": 0.30088478326797485, + "learning_rate": 0.0006, + "loss": 4.219697952270508, + "step": 964 + }, + { + "epoch": 13.405417212756662, + "grad_norm": 0.30388689041137695, + "learning_rate": 0.0006, + "loss": 4.187566757202148, + "step": 965 + }, + { + "epoch": 13.419397116644824, + "grad_norm": 0.27918127179145813, + "learning_rate": 0.0006, + "loss": 4.223600387573242, + "step": 966 + }, + { + "epoch": 13.433377020532983, + "grad_norm": 0.27634528279304504, + "learning_rate": 0.0006, + "loss": 4.165332317352295, + "step": 967 + }, + { + "epoch": 13.447356924421145, + "grad_norm": 0.28830021619796753, + "learning_rate": 0.0006, + "loss": 4.204029560089111, + "step": 968 + }, + { + "epoch": 13.461336828309305, + "grad_norm": 0.29220864176750183, + "learning_rate": 0.0006, + "loss": 4.218057155609131, + "step": 969 + }, + { + "epoch": 13.475316732197467, + "grad_norm": 0.3089624345302582, + "learning_rate": 0.0006, + "loss": 4.200654983520508, + "step": 970 + }, + { + "epoch": 13.489296636085626, + "grad_norm": 0.36479851603507996, + "learning_rate": 0.0006, + "loss": 4.182811737060547, + "step": 971 + }, + { + "epoch": 13.503276539973788, + "grad_norm": 0.37561097741127014, + "learning_rate": 0.0006, + "loss": 4.190266132354736, + "step": 972 + }, + { + "epoch": 13.517256443861948, + "grad_norm": 0.3263583183288574, + "learning_rate": 0.0006, + "loss": 4.214815616607666, + "step": 973 + }, + { + "epoch": 13.53123634775011, + "grad_norm": 0.21552999317646027, + "learning_rate": 0.0006, + "loss": 4.171380043029785, + "step": 974 + }, + { + "epoch": 13.54521625163827, + "grad_norm": 0.247328519821167, + "learning_rate": 0.0006, + "loss": 4.175377368927002, + "step": 975 + }, + { + "epoch": 13.55919615552643, + "grad_norm": 0.23740540444850922, + "learning_rate": 0.0006, + "loss": 4.212357997894287, + "step": 976 + }, + { + "epoch": 13.57317605941459, + "grad_norm": 0.21533876657485962, + "learning_rate": 0.0006, + "loss": 4.203285217285156, + "step": 977 + }, + { + "epoch": 13.587155963302752, + "grad_norm": 0.21462024748325348, + "learning_rate": 0.0006, + "loss": 4.178012371063232, + "step": 978 + }, + { + "epoch": 13.601135867190912, + "grad_norm": 0.2279169261455536, + "learning_rate": 0.0006, + "loss": 4.193912982940674, + "step": 979 + }, + { + "epoch": 13.615115771079074, + "grad_norm": 0.2202417552471161, + "learning_rate": 0.0006, + "loss": 4.167629718780518, + "step": 980 + }, + { + "epoch": 13.629095674967235, + "grad_norm": 0.20586472749710083, + "learning_rate": 0.0006, + "loss": 4.159290313720703, + "step": 981 + }, + { + "epoch": 13.643075578855395, + "grad_norm": 0.20200690627098083, + "learning_rate": 0.0006, + "loss": 4.210315227508545, + "step": 982 + }, + { + "epoch": 13.657055482743557, + "grad_norm": 0.21710257232189178, + "learning_rate": 0.0006, + "loss": 4.21730375289917, + "step": 983 + }, + { + "epoch": 13.671035386631717, + "grad_norm": 0.22058045864105225, + "learning_rate": 0.0006, + "loss": 4.1996073722839355, + "step": 984 + }, + { + "epoch": 13.685015290519878, + "grad_norm": 0.21549592912197113, + "learning_rate": 0.0006, + "loss": 4.209203720092773, + "step": 985 + }, + { + "epoch": 13.698995194408038, + "grad_norm": 0.22274717688560486, + "learning_rate": 0.0006, + "loss": 4.220660209655762, + "step": 986 + }, + { + "epoch": 13.7129750982962, + "grad_norm": 0.22791637480258942, + "learning_rate": 0.0006, + "loss": 4.158679962158203, + "step": 987 + }, + { + "epoch": 13.72695500218436, + "grad_norm": 0.216218963265419, + "learning_rate": 0.0006, + "loss": 4.188124656677246, + "step": 988 + }, + { + "epoch": 13.740934906072521, + "grad_norm": 0.19149383902549744, + "learning_rate": 0.0006, + "loss": 4.181729316711426, + "step": 989 + }, + { + "epoch": 13.754914809960681, + "grad_norm": 0.18964019417762756, + "learning_rate": 0.0006, + "loss": 4.184767246246338, + "step": 990 + }, + { + "epoch": 13.768894713848843, + "grad_norm": 0.1778000295162201, + "learning_rate": 0.0006, + "loss": 4.1802263259887695, + "step": 991 + }, + { + "epoch": 13.782874617737003, + "grad_norm": 0.18277616798877716, + "learning_rate": 0.0006, + "loss": 4.1657867431640625, + "step": 992 + }, + { + "epoch": 13.796854521625164, + "grad_norm": 0.18610034883022308, + "learning_rate": 0.0006, + "loss": 4.156744956970215, + "step": 993 + }, + { + "epoch": 13.810834425513324, + "grad_norm": 0.19332963228225708, + "learning_rate": 0.0006, + "loss": 4.143558502197266, + "step": 994 + }, + { + "epoch": 13.824814329401486, + "grad_norm": 0.19758112728595734, + "learning_rate": 0.0006, + "loss": 4.195793151855469, + "step": 995 + }, + { + "epoch": 13.838794233289645, + "grad_norm": 0.1933647245168686, + "learning_rate": 0.0006, + "loss": 4.169734954833984, + "step": 996 + }, + { + "epoch": 13.852774137177807, + "grad_norm": 0.2362028956413269, + "learning_rate": 0.0006, + "loss": 4.175025939941406, + "step": 997 + }, + { + "epoch": 13.866754041065967, + "grad_norm": 0.2465490996837616, + "learning_rate": 0.0006, + "loss": 4.173909664154053, + "step": 998 + }, + { + "epoch": 13.880733944954128, + "grad_norm": 0.23449952900409698, + "learning_rate": 0.0006, + "loss": 4.173429489135742, + "step": 999 + }, + { + "epoch": 13.89471384884229, + "grad_norm": 0.2282160222530365, + "learning_rate": 0.0006, + "loss": 4.158538341522217, + "step": 1000 + }, + { + "epoch": 13.90869375273045, + "grad_norm": 0.21066738665103912, + "learning_rate": 0.0006, + "loss": 4.171584129333496, + "step": 1001 + }, + { + "epoch": 13.922673656618612, + "grad_norm": 0.18787573277950287, + "learning_rate": 0.0006, + "loss": 4.1837544441223145, + "step": 1002 + }, + { + "epoch": 13.936653560506771, + "grad_norm": 0.2001059353351593, + "learning_rate": 0.0006, + "loss": 4.160369873046875, + "step": 1003 + }, + { + "epoch": 13.950633464394933, + "grad_norm": 0.21644988656044006, + "learning_rate": 0.0006, + "loss": 4.221372604370117, + "step": 1004 + }, + { + "epoch": 13.964613368283093, + "grad_norm": 0.22083887457847595, + "learning_rate": 0.0006, + "loss": 4.149261474609375, + "step": 1005 + }, + { + "epoch": 13.978593272171254, + "grad_norm": 0.2201409637928009, + "learning_rate": 0.0006, + "loss": 4.192010879516602, + "step": 1006 + }, + { + "epoch": 13.992573176059414, + "grad_norm": 0.18888601660728455, + "learning_rate": 0.0006, + "loss": 4.17539119720459, + "step": 1007 + }, + { + "epoch": 14.0, + "grad_norm": 0.2073872834444046, + "learning_rate": 0.0006, + "loss": 4.145265579223633, + "step": 1008 + }, + { + "epoch": 14.0, + "eval_loss": 4.36876106262207, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 1008 + }, + { + "epoch": 14.013979903888162, + "grad_norm": 0.20773135125637054, + "learning_rate": 0.0006, + "loss": 4.132615089416504, + "step": 1009 + }, + { + "epoch": 14.027959807776321, + "grad_norm": 0.22409620881080627, + "learning_rate": 0.0006, + "loss": 4.172839164733887, + "step": 1010 + }, + { + "epoch": 14.041939711664483, + "grad_norm": 0.24046066403388977, + "learning_rate": 0.0006, + "loss": 4.126678943634033, + "step": 1011 + }, + { + "epoch": 14.055919615552643, + "grad_norm": 0.29185160994529724, + "learning_rate": 0.0006, + "loss": 4.177952766418457, + "step": 1012 + }, + { + "epoch": 14.069899519440805, + "grad_norm": 0.2984033226966858, + "learning_rate": 0.0006, + "loss": 4.155030250549316, + "step": 1013 + }, + { + "epoch": 14.083879423328964, + "grad_norm": 0.30262473225593567, + "learning_rate": 0.0006, + "loss": 4.145394325256348, + "step": 1014 + }, + { + "epoch": 14.097859327217126, + "grad_norm": 0.3278133273124695, + "learning_rate": 0.0006, + "loss": 4.172739028930664, + "step": 1015 + }, + { + "epoch": 14.111839231105286, + "grad_norm": 0.3285452425479889, + "learning_rate": 0.0006, + "loss": 4.153196334838867, + "step": 1016 + }, + { + "epoch": 14.125819134993447, + "grad_norm": 0.33912697434425354, + "learning_rate": 0.0006, + "loss": 4.098162651062012, + "step": 1017 + }, + { + "epoch": 14.139799038881607, + "grad_norm": 0.32080814242362976, + "learning_rate": 0.0006, + "loss": 4.157135009765625, + "step": 1018 + }, + { + "epoch": 14.153778942769769, + "grad_norm": 0.31288477778434753, + "learning_rate": 0.0006, + "loss": 4.142683029174805, + "step": 1019 + }, + { + "epoch": 14.167758846657929, + "grad_norm": 0.350289523601532, + "learning_rate": 0.0006, + "loss": 4.134700775146484, + "step": 1020 + }, + { + "epoch": 14.18173875054609, + "grad_norm": 0.34274575114250183, + "learning_rate": 0.0006, + "loss": 4.1578569412231445, + "step": 1021 + }, + { + "epoch": 14.19571865443425, + "grad_norm": 0.2843035161495209, + "learning_rate": 0.0006, + "loss": 4.13760232925415, + "step": 1022 + }, + { + "epoch": 14.209698558322412, + "grad_norm": 0.28235161304473877, + "learning_rate": 0.0006, + "loss": 4.1492462158203125, + "step": 1023 + }, + { + "epoch": 14.223678462210572, + "grad_norm": 0.24407248198986053, + "learning_rate": 0.0006, + "loss": 4.144372463226318, + "step": 1024 + }, + { + "epoch": 14.237658366098733, + "grad_norm": 0.2489742934703827, + "learning_rate": 0.0006, + "loss": 4.137950897216797, + "step": 1025 + }, + { + "epoch": 14.251638269986893, + "grad_norm": 0.26035651564598083, + "learning_rate": 0.0006, + "loss": 4.144070625305176, + "step": 1026 + }, + { + "epoch": 14.265618173875055, + "grad_norm": 0.2726516127586365, + "learning_rate": 0.0006, + "loss": 4.145204067230225, + "step": 1027 + }, + { + "epoch": 14.279598077763215, + "grad_norm": 0.2723483443260193, + "learning_rate": 0.0006, + "loss": 4.118407249450684, + "step": 1028 + }, + { + "epoch": 14.293577981651376, + "grad_norm": 0.27476269006729126, + "learning_rate": 0.0006, + "loss": 4.111325263977051, + "step": 1029 + }, + { + "epoch": 14.307557885539538, + "grad_norm": 0.26202502846717834, + "learning_rate": 0.0006, + "loss": 4.122248649597168, + "step": 1030 + }, + { + "epoch": 14.321537789427698, + "grad_norm": 0.2472032904624939, + "learning_rate": 0.0006, + "loss": 4.157790184020996, + "step": 1031 + }, + { + "epoch": 14.33551769331586, + "grad_norm": 0.2518343925476074, + "learning_rate": 0.0006, + "loss": 4.109132766723633, + "step": 1032 + }, + { + "epoch": 14.349497597204019, + "grad_norm": 0.2652401924133301, + "learning_rate": 0.0006, + "loss": 4.144079685211182, + "step": 1033 + }, + { + "epoch": 14.36347750109218, + "grad_norm": 0.2356770783662796, + "learning_rate": 0.0006, + "loss": 4.128426551818848, + "step": 1034 + }, + { + "epoch": 14.37745740498034, + "grad_norm": 0.2164214551448822, + "learning_rate": 0.0006, + "loss": 4.1644392013549805, + "step": 1035 + }, + { + "epoch": 14.391437308868502, + "grad_norm": 0.22383111715316772, + "learning_rate": 0.0006, + "loss": 4.165862083435059, + "step": 1036 + }, + { + "epoch": 14.405417212756662, + "grad_norm": 0.23152419924736023, + "learning_rate": 0.0006, + "loss": 4.140036582946777, + "step": 1037 + }, + { + "epoch": 14.419397116644824, + "grad_norm": 0.2387741357088089, + "learning_rate": 0.0006, + "loss": 4.130461692810059, + "step": 1038 + }, + { + "epoch": 14.433377020532983, + "grad_norm": 0.24018129706382751, + "learning_rate": 0.0006, + "loss": 4.148482322692871, + "step": 1039 + }, + { + "epoch": 14.447356924421145, + "grad_norm": 0.25487351417541504, + "learning_rate": 0.0006, + "loss": 4.158121109008789, + "step": 1040 + }, + { + "epoch": 14.461336828309305, + "grad_norm": 0.28220096230506897, + "learning_rate": 0.0006, + "loss": 4.160198211669922, + "step": 1041 + }, + { + "epoch": 14.475316732197467, + "grad_norm": 0.2574434280395508, + "learning_rate": 0.0006, + "loss": 4.168512344360352, + "step": 1042 + }, + { + "epoch": 14.489296636085626, + "grad_norm": 0.22569820284843445, + "learning_rate": 0.0006, + "loss": 4.1595001220703125, + "step": 1043 + }, + { + "epoch": 14.503276539973788, + "grad_norm": 0.2473423182964325, + "learning_rate": 0.0006, + "loss": 4.084580898284912, + "step": 1044 + }, + { + "epoch": 14.517256443861948, + "grad_norm": 0.24281060695648193, + "learning_rate": 0.0006, + "loss": 4.139714241027832, + "step": 1045 + }, + { + "epoch": 14.53123634775011, + "grad_norm": 0.24691344797611237, + "learning_rate": 0.0006, + "loss": 4.115398406982422, + "step": 1046 + }, + { + "epoch": 14.54521625163827, + "grad_norm": 0.2583645284175873, + "learning_rate": 0.0006, + "loss": 4.142148494720459, + "step": 1047 + }, + { + "epoch": 14.55919615552643, + "grad_norm": 0.23258574306964874, + "learning_rate": 0.0006, + "loss": 4.16251277923584, + "step": 1048 + }, + { + "epoch": 14.57317605941459, + "grad_norm": 0.22103039920330048, + "learning_rate": 0.0006, + "loss": 4.1308441162109375, + "step": 1049 + }, + { + "epoch": 14.587155963302752, + "grad_norm": 0.23713579773902893, + "learning_rate": 0.0006, + "loss": 4.1565985679626465, + "step": 1050 + }, + { + "epoch": 14.601135867190912, + "grad_norm": 0.24406634271144867, + "learning_rate": 0.0006, + "loss": 4.14628267288208, + "step": 1051 + }, + { + "epoch": 14.615115771079074, + "grad_norm": 0.26821228861808777, + "learning_rate": 0.0006, + "loss": 4.138063430786133, + "step": 1052 + }, + { + "epoch": 14.629095674967235, + "grad_norm": 0.25483864545822144, + "learning_rate": 0.0006, + "loss": 4.1311163902282715, + "step": 1053 + }, + { + "epoch": 14.643075578855395, + "grad_norm": 0.23937982320785522, + "learning_rate": 0.0006, + "loss": 4.150882244110107, + "step": 1054 + }, + { + "epoch": 14.657055482743557, + "grad_norm": 0.21896475553512573, + "learning_rate": 0.0006, + "loss": 4.114015102386475, + "step": 1055 + }, + { + "epoch": 14.671035386631717, + "grad_norm": 0.20821231603622437, + "learning_rate": 0.0006, + "loss": 4.139034271240234, + "step": 1056 + }, + { + "epoch": 14.685015290519878, + "grad_norm": 0.1978551596403122, + "learning_rate": 0.0006, + "loss": 4.1810503005981445, + "step": 1057 + }, + { + "epoch": 14.698995194408038, + "grad_norm": 0.1945771872997284, + "learning_rate": 0.0006, + "loss": 4.120734214782715, + "step": 1058 + }, + { + "epoch": 14.7129750982962, + "grad_norm": 0.19518673419952393, + "learning_rate": 0.0006, + "loss": 4.14264440536499, + "step": 1059 + }, + { + "epoch": 14.72695500218436, + "grad_norm": 0.202596515417099, + "learning_rate": 0.0006, + "loss": 4.151649475097656, + "step": 1060 + }, + { + "epoch": 14.740934906072521, + "grad_norm": 0.1904762089252472, + "learning_rate": 0.0006, + "loss": 4.127899169921875, + "step": 1061 + }, + { + "epoch": 14.754914809960681, + "grad_norm": 0.20685508847236633, + "learning_rate": 0.0006, + "loss": 4.093445777893066, + "step": 1062 + }, + { + "epoch": 14.768894713848843, + "grad_norm": 0.22678329050540924, + "learning_rate": 0.0006, + "loss": 4.132084369659424, + "step": 1063 + }, + { + "epoch": 14.782874617737003, + "grad_norm": 0.24631841480731964, + "learning_rate": 0.0006, + "loss": 4.154788970947266, + "step": 1064 + }, + { + "epoch": 14.796854521625164, + "grad_norm": 0.24445782601833344, + "learning_rate": 0.0006, + "loss": 4.144735336303711, + "step": 1065 + }, + { + "epoch": 14.810834425513324, + "grad_norm": 0.22330640256404877, + "learning_rate": 0.0006, + "loss": 4.159893989562988, + "step": 1066 + }, + { + "epoch": 14.824814329401486, + "grad_norm": 0.22422967851161957, + "learning_rate": 0.0006, + "loss": 4.104874610900879, + "step": 1067 + }, + { + "epoch": 14.838794233289645, + "grad_norm": 0.24583931267261505, + "learning_rate": 0.0006, + "loss": 4.139403820037842, + "step": 1068 + }, + { + "epoch": 14.852774137177807, + "grad_norm": 0.2917379140853882, + "learning_rate": 0.0006, + "loss": 4.168988227844238, + "step": 1069 + }, + { + "epoch": 14.866754041065967, + "grad_norm": 0.3171777129173279, + "learning_rate": 0.0006, + "loss": 4.131263732910156, + "step": 1070 + }, + { + "epoch": 14.880733944954128, + "grad_norm": 0.3039591312408447, + "learning_rate": 0.0006, + "loss": 4.149853706359863, + "step": 1071 + }, + { + "epoch": 14.89471384884229, + "grad_norm": 0.2690650522708893, + "learning_rate": 0.0006, + "loss": 4.154787540435791, + "step": 1072 + }, + { + "epoch": 14.90869375273045, + "grad_norm": 0.28683212399482727, + "learning_rate": 0.0006, + "loss": 4.12751579284668, + "step": 1073 + }, + { + "epoch": 14.922673656618612, + "grad_norm": 0.30022913217544556, + "learning_rate": 0.0006, + "loss": 4.141940116882324, + "step": 1074 + }, + { + "epoch": 14.936653560506771, + "grad_norm": 0.3312259316444397, + "learning_rate": 0.0006, + "loss": 4.141905784606934, + "step": 1075 + }, + { + "epoch": 14.950633464394933, + "grad_norm": 0.31159237027168274, + "learning_rate": 0.0006, + "loss": 4.160192966461182, + "step": 1076 + }, + { + "epoch": 14.964613368283093, + "grad_norm": 0.30093592405319214, + "learning_rate": 0.0006, + "loss": 4.1085076332092285, + "step": 1077 + }, + { + "epoch": 14.978593272171254, + "grad_norm": 0.2728535830974579, + "learning_rate": 0.0006, + "loss": 4.156959056854248, + "step": 1078 + }, + { + "epoch": 14.992573176059414, + "grad_norm": 0.24766813218593597, + "learning_rate": 0.0006, + "loss": 4.113999843597412, + "step": 1079 + }, + { + "epoch": 15.0, + "grad_norm": 0.2538154721260071, + "learning_rate": 0.0006, + "loss": 4.147134780883789, + "step": 1080 + }, + { + "epoch": 15.0, + "eval_loss": 4.323154926300049, + "eval_runtime": 44.8813, + "eval_samples_per_second": 54.41, + "eval_steps_per_second": 3.409, + "step": 1080 + }, + { + "epoch": 15.013979903888162, + "grad_norm": 0.22535280883312225, + "learning_rate": 0.0006, + "loss": 4.112179756164551, + "step": 1081 + }, + { + "epoch": 15.027959807776321, + "grad_norm": 0.24340929090976715, + "learning_rate": 0.0006, + "loss": 4.080923080444336, + "step": 1082 + }, + { + "epoch": 15.041939711664483, + "grad_norm": 0.23159465193748474, + "learning_rate": 0.0006, + "loss": 4.097067356109619, + "step": 1083 + }, + { + "epoch": 15.055919615552643, + "grad_norm": 0.22674769163131714, + "learning_rate": 0.0006, + "loss": 4.118601322174072, + "step": 1084 + }, + { + "epoch": 15.069899519440805, + "grad_norm": 0.2524292469024658, + "learning_rate": 0.0006, + "loss": 4.101109504699707, + "step": 1085 + }, + { + "epoch": 15.083879423328964, + "grad_norm": 0.2505405843257904, + "learning_rate": 0.0006, + "loss": 4.121405601501465, + "step": 1086 + }, + { + "epoch": 15.097859327217126, + "grad_norm": 0.2557983696460724, + "learning_rate": 0.0006, + "loss": 4.1063947677612305, + "step": 1087 + }, + { + "epoch": 15.111839231105286, + "grad_norm": 0.24452129006385803, + "learning_rate": 0.0006, + "loss": 4.086133003234863, + "step": 1088 + }, + { + "epoch": 15.125819134993447, + "grad_norm": 0.25821781158447266, + "learning_rate": 0.0006, + "loss": 4.076262950897217, + "step": 1089 + }, + { + "epoch": 15.139799038881607, + "grad_norm": 0.23650537431240082, + "learning_rate": 0.0006, + "loss": 4.101842880249023, + "step": 1090 + }, + { + "epoch": 15.153778942769769, + "grad_norm": 0.2206192910671234, + "learning_rate": 0.0006, + "loss": 4.11027193069458, + "step": 1091 + }, + { + "epoch": 15.167758846657929, + "grad_norm": 0.21843163669109344, + "learning_rate": 0.0006, + "loss": 4.098437309265137, + "step": 1092 + }, + { + "epoch": 15.18173875054609, + "grad_norm": 0.2528176009654999, + "learning_rate": 0.0006, + "loss": 4.108713150024414, + "step": 1093 + }, + { + "epoch": 15.19571865443425, + "grad_norm": 0.26697206497192383, + "learning_rate": 0.0006, + "loss": 4.113210201263428, + "step": 1094 + }, + { + "epoch": 15.209698558322412, + "grad_norm": 0.26480963826179504, + "learning_rate": 0.0006, + "loss": 4.1103620529174805, + "step": 1095 + }, + { + "epoch": 15.223678462210572, + "grad_norm": 0.24887347221374512, + "learning_rate": 0.0006, + "loss": 4.103529930114746, + "step": 1096 + }, + { + "epoch": 15.237658366098733, + "grad_norm": 0.2344668060541153, + "learning_rate": 0.0006, + "loss": 4.129784107208252, + "step": 1097 + }, + { + "epoch": 15.251638269986893, + "grad_norm": 0.22639742493629456, + "learning_rate": 0.0006, + "loss": 4.113495349884033, + "step": 1098 + }, + { + "epoch": 15.265618173875055, + "grad_norm": 0.22466333210468292, + "learning_rate": 0.0006, + "loss": 4.102309703826904, + "step": 1099 + }, + { + "epoch": 15.279598077763215, + "grad_norm": 0.25135037302970886, + "learning_rate": 0.0006, + "loss": 4.117668628692627, + "step": 1100 + }, + { + "epoch": 15.293577981651376, + "grad_norm": 0.2347089946269989, + "learning_rate": 0.0006, + "loss": 4.086637496948242, + "step": 1101 + }, + { + "epoch": 15.307557885539538, + "grad_norm": 0.2347242832183838, + "learning_rate": 0.0006, + "loss": 4.098714828491211, + "step": 1102 + }, + { + "epoch": 15.321537789427698, + "grad_norm": 0.23990283906459808, + "learning_rate": 0.0006, + "loss": 4.079837799072266, + "step": 1103 + }, + { + "epoch": 15.33551769331586, + "grad_norm": 0.22366675734519958, + "learning_rate": 0.0006, + "loss": 4.108136177062988, + "step": 1104 + }, + { + "epoch": 15.349497597204019, + "grad_norm": 0.21823780238628387, + "learning_rate": 0.0006, + "loss": 4.10054349899292, + "step": 1105 + }, + { + "epoch": 15.36347750109218, + "grad_norm": 0.23059198260307312, + "learning_rate": 0.0006, + "loss": 4.108620643615723, + "step": 1106 + }, + { + "epoch": 15.37745740498034, + "grad_norm": 0.2313755601644516, + "learning_rate": 0.0006, + "loss": 4.088565826416016, + "step": 1107 + }, + { + "epoch": 15.391437308868502, + "grad_norm": 0.2546829283237457, + "learning_rate": 0.0006, + "loss": 4.104948043823242, + "step": 1108 + }, + { + "epoch": 15.405417212756662, + "grad_norm": 0.23666726052761078, + "learning_rate": 0.0006, + "loss": 4.111965179443359, + "step": 1109 + }, + { + "epoch": 15.419397116644824, + "grad_norm": 0.21971021592617035, + "learning_rate": 0.0006, + "loss": 4.097846984863281, + "step": 1110 + }, + { + "epoch": 15.433377020532983, + "grad_norm": 0.20951911807060242, + "learning_rate": 0.0006, + "loss": 4.110099792480469, + "step": 1111 + }, + { + "epoch": 15.447356924421145, + "grad_norm": 0.19590918719768524, + "learning_rate": 0.0006, + "loss": 4.101154327392578, + "step": 1112 + }, + { + "epoch": 15.461336828309305, + "grad_norm": 0.21048946678638458, + "learning_rate": 0.0006, + "loss": 4.0986127853393555, + "step": 1113 + }, + { + "epoch": 15.475316732197467, + "grad_norm": 0.21423374116420746, + "learning_rate": 0.0006, + "loss": 4.082328796386719, + "step": 1114 + }, + { + "epoch": 15.489296636085626, + "grad_norm": 0.227146714925766, + "learning_rate": 0.0006, + "loss": 4.105281829833984, + "step": 1115 + }, + { + "epoch": 15.503276539973788, + "grad_norm": 0.2079153060913086, + "learning_rate": 0.0006, + "loss": 4.100836753845215, + "step": 1116 + }, + { + "epoch": 15.517256443861948, + "grad_norm": 0.21084675192832947, + "learning_rate": 0.0006, + "loss": 4.0934343338012695, + "step": 1117 + }, + { + "epoch": 15.53123634775011, + "grad_norm": 0.23863616585731506, + "learning_rate": 0.0006, + "loss": 4.101540565490723, + "step": 1118 + }, + { + "epoch": 15.54521625163827, + "grad_norm": 0.2518490254878998, + "learning_rate": 0.0006, + "loss": 4.12303352355957, + "step": 1119 + }, + { + "epoch": 15.55919615552643, + "grad_norm": 0.24282905459403992, + "learning_rate": 0.0006, + "loss": 4.080670356750488, + "step": 1120 + }, + { + "epoch": 15.57317605941459, + "grad_norm": 0.24171605706214905, + "learning_rate": 0.0006, + "loss": 4.117938041687012, + "step": 1121 + }, + { + "epoch": 15.587155963302752, + "grad_norm": 0.28453412652015686, + "learning_rate": 0.0006, + "loss": 4.080114364624023, + "step": 1122 + }, + { + "epoch": 15.601135867190912, + "grad_norm": 0.30322617292404175, + "learning_rate": 0.0006, + "loss": 4.079695701599121, + "step": 1123 + }, + { + "epoch": 15.615115771079074, + "grad_norm": 0.2657633125782013, + "learning_rate": 0.0006, + "loss": 4.0916290283203125, + "step": 1124 + }, + { + "epoch": 15.629095674967235, + "grad_norm": 0.2467080056667328, + "learning_rate": 0.0006, + "loss": 4.095594882965088, + "step": 1125 + }, + { + "epoch": 15.643075578855395, + "grad_norm": 0.21767394244670868, + "learning_rate": 0.0006, + "loss": 4.079174041748047, + "step": 1126 + }, + { + "epoch": 15.657055482743557, + "grad_norm": 0.2088327705860138, + "learning_rate": 0.0006, + "loss": 4.060707092285156, + "step": 1127 + }, + { + "epoch": 15.671035386631717, + "grad_norm": 0.1921205073595047, + "learning_rate": 0.0006, + "loss": 4.073911666870117, + "step": 1128 + }, + { + "epoch": 15.685015290519878, + "grad_norm": 0.209339901804924, + "learning_rate": 0.0006, + "loss": 4.089954376220703, + "step": 1129 + }, + { + "epoch": 15.698995194408038, + "grad_norm": 0.23513881862163544, + "learning_rate": 0.0006, + "loss": 4.084906578063965, + "step": 1130 + }, + { + "epoch": 15.7129750982962, + "grad_norm": 0.26140275597572327, + "learning_rate": 0.0006, + "loss": 4.086570739746094, + "step": 1131 + }, + { + "epoch": 15.72695500218436, + "grad_norm": 0.290431946516037, + "learning_rate": 0.0006, + "loss": 4.071229457855225, + "step": 1132 + }, + { + "epoch": 15.740934906072521, + "grad_norm": 0.3061376214027405, + "learning_rate": 0.0006, + "loss": 4.103148460388184, + "step": 1133 + }, + { + "epoch": 15.754914809960681, + "grad_norm": 0.26312482357025146, + "learning_rate": 0.0006, + "loss": 4.088448524475098, + "step": 1134 + }, + { + "epoch": 15.768894713848843, + "grad_norm": 0.22474883496761322, + "learning_rate": 0.0006, + "loss": 4.091766834259033, + "step": 1135 + }, + { + "epoch": 15.782874617737003, + "grad_norm": 0.2341146171092987, + "learning_rate": 0.0006, + "loss": 4.1222758293151855, + "step": 1136 + }, + { + "epoch": 15.796854521625164, + "grad_norm": 0.23556149005889893, + "learning_rate": 0.0006, + "loss": 4.094954013824463, + "step": 1137 + }, + { + "epoch": 15.810834425513324, + "grad_norm": 0.263315349817276, + "learning_rate": 0.0006, + "loss": 4.1065473556518555, + "step": 1138 + }, + { + "epoch": 15.824814329401486, + "grad_norm": 0.2700869143009186, + "learning_rate": 0.0006, + "loss": 4.0890045166015625, + "step": 1139 + }, + { + "epoch": 15.838794233289645, + "grad_norm": 0.28697484731674194, + "learning_rate": 0.0006, + "loss": 4.092496395111084, + "step": 1140 + }, + { + "epoch": 15.852774137177807, + "grad_norm": 0.2824092507362366, + "learning_rate": 0.0006, + "loss": 4.079615592956543, + "step": 1141 + }, + { + "epoch": 15.866754041065967, + "grad_norm": 0.24547280371189117, + "learning_rate": 0.0006, + "loss": 4.089683532714844, + "step": 1142 + }, + { + "epoch": 15.880733944954128, + "grad_norm": 0.23653888702392578, + "learning_rate": 0.0006, + "loss": 4.067309379577637, + "step": 1143 + }, + { + "epoch": 15.89471384884229, + "grad_norm": 0.23784421384334564, + "learning_rate": 0.0006, + "loss": 4.09156608581543, + "step": 1144 + }, + { + "epoch": 15.90869375273045, + "grad_norm": 0.22753281891345978, + "learning_rate": 0.0006, + "loss": 4.095428466796875, + "step": 1145 + }, + { + "epoch": 15.922673656618612, + "grad_norm": 0.2464212030172348, + "learning_rate": 0.0006, + "loss": 4.1036376953125, + "step": 1146 + }, + { + "epoch": 15.936653560506771, + "grad_norm": 0.25531601905822754, + "learning_rate": 0.0006, + "loss": 4.073996543884277, + "step": 1147 + }, + { + "epoch": 15.950633464394933, + "grad_norm": 0.24145905673503876, + "learning_rate": 0.0006, + "loss": 4.094479560852051, + "step": 1148 + }, + { + "epoch": 15.964613368283093, + "grad_norm": 0.24274317920207977, + "learning_rate": 0.0006, + "loss": 4.101981163024902, + "step": 1149 + }, + { + "epoch": 15.978593272171254, + "grad_norm": 0.2350679188966751, + "learning_rate": 0.0006, + "loss": 4.057965278625488, + "step": 1150 + }, + { + "epoch": 15.992573176059414, + "grad_norm": 0.24072253704071045, + "learning_rate": 0.0006, + "loss": 4.020050048828125, + "step": 1151 + }, + { + "epoch": 16.0, + "grad_norm": 0.253978967666626, + "learning_rate": 0.0006, + "loss": 4.061928749084473, + "step": 1152 + }, + { + "epoch": 16.0, + "eval_loss": 4.270665645599365, + "eval_runtime": 44.5063, + "eval_samples_per_second": 54.869, + "eval_steps_per_second": 3.438, + "step": 1152 + }, + { + "epoch": 16.01397990388816, + "grad_norm": 0.3265204131603241, + "learning_rate": 0.0006, + "loss": 4.059116363525391, + "step": 1153 + }, + { + "epoch": 16.027959807776323, + "grad_norm": 0.34139737486839294, + "learning_rate": 0.0006, + "loss": 4.062219619750977, + "step": 1154 + }, + { + "epoch": 16.041939711664483, + "grad_norm": 0.2849949598312378, + "learning_rate": 0.0006, + "loss": 4.032323837280273, + "step": 1155 + }, + { + "epoch": 16.055919615552643, + "grad_norm": 0.25031402707099915, + "learning_rate": 0.0006, + "loss": 4.075527191162109, + "step": 1156 + }, + { + "epoch": 16.069899519440803, + "grad_norm": 0.25207436084747314, + "learning_rate": 0.0006, + "loss": 4.0883097648620605, + "step": 1157 + }, + { + "epoch": 16.083879423328966, + "grad_norm": 0.28677356243133545, + "learning_rate": 0.0006, + "loss": 4.040797233581543, + "step": 1158 + }, + { + "epoch": 16.097859327217126, + "grad_norm": 0.30778825283050537, + "learning_rate": 0.0006, + "loss": 4.051504135131836, + "step": 1159 + }, + { + "epoch": 16.111839231105286, + "grad_norm": 0.3136911988258362, + "learning_rate": 0.0006, + "loss": 4.045449256896973, + "step": 1160 + }, + { + "epoch": 16.125819134993446, + "grad_norm": 0.34384530782699585, + "learning_rate": 0.0006, + "loss": 4.069897651672363, + "step": 1161 + }, + { + "epoch": 16.13979903888161, + "grad_norm": 0.3074268400669098, + "learning_rate": 0.0006, + "loss": 4.0621137619018555, + "step": 1162 + }, + { + "epoch": 16.15377894276977, + "grad_norm": 0.33090949058532715, + "learning_rate": 0.0006, + "loss": 4.084089279174805, + "step": 1163 + }, + { + "epoch": 16.16775884665793, + "grad_norm": 0.26358580589294434, + "learning_rate": 0.0006, + "loss": 4.066563606262207, + "step": 1164 + }, + { + "epoch": 16.18173875054609, + "grad_norm": 0.25586041808128357, + "learning_rate": 0.0006, + "loss": 4.08109188079834, + "step": 1165 + }, + { + "epoch": 16.195718654434252, + "grad_norm": 0.2966184616088867, + "learning_rate": 0.0006, + "loss": 4.039186477661133, + "step": 1166 + }, + { + "epoch": 16.209698558322412, + "grad_norm": 0.3064924478530884, + "learning_rate": 0.0006, + "loss": 4.08139705657959, + "step": 1167 + }, + { + "epoch": 16.22367846221057, + "grad_norm": 0.28671345114707947, + "learning_rate": 0.0006, + "loss": 4.04637336730957, + "step": 1168 + }, + { + "epoch": 16.23765836609873, + "grad_norm": 0.26209691166877747, + "learning_rate": 0.0006, + "loss": 4.052768707275391, + "step": 1169 + }, + { + "epoch": 16.251638269986895, + "grad_norm": 0.2758907079696655, + "learning_rate": 0.0006, + "loss": 4.064321517944336, + "step": 1170 + }, + { + "epoch": 16.265618173875055, + "grad_norm": 0.25961801409721375, + "learning_rate": 0.0006, + "loss": 4.057299613952637, + "step": 1171 + }, + { + "epoch": 16.279598077763215, + "grad_norm": 0.2513751685619354, + "learning_rate": 0.0006, + "loss": 4.064148902893066, + "step": 1172 + }, + { + "epoch": 16.293577981651374, + "grad_norm": 0.23920276761054993, + "learning_rate": 0.0006, + "loss": 4.101890563964844, + "step": 1173 + }, + { + "epoch": 16.307557885539538, + "grad_norm": 0.22746537625789642, + "learning_rate": 0.0006, + "loss": 4.086627006530762, + "step": 1174 + }, + { + "epoch": 16.321537789427698, + "grad_norm": 0.22633525729179382, + "learning_rate": 0.0006, + "loss": 4.04669189453125, + "step": 1175 + }, + { + "epoch": 16.335517693315857, + "grad_norm": 0.2654891610145569, + "learning_rate": 0.0006, + "loss": 4.086793422698975, + "step": 1176 + }, + { + "epoch": 16.34949759720402, + "grad_norm": 0.2872653007507324, + "learning_rate": 0.0006, + "loss": 4.077983856201172, + "step": 1177 + }, + { + "epoch": 16.36347750109218, + "grad_norm": 0.25726038217544556, + "learning_rate": 0.0006, + "loss": 4.066011428833008, + "step": 1178 + }, + { + "epoch": 16.37745740498034, + "grad_norm": 0.2592027485370636, + "learning_rate": 0.0006, + "loss": 4.0482988357543945, + "step": 1179 + }, + { + "epoch": 16.3914373088685, + "grad_norm": 0.2768886685371399, + "learning_rate": 0.0006, + "loss": 4.065151214599609, + "step": 1180 + }, + { + "epoch": 16.405417212756664, + "grad_norm": 0.2956002652645111, + "learning_rate": 0.0006, + "loss": 4.037791728973389, + "step": 1181 + }, + { + "epoch": 16.419397116644824, + "grad_norm": 0.3092120885848999, + "learning_rate": 0.0006, + "loss": 4.062164306640625, + "step": 1182 + }, + { + "epoch": 16.433377020532983, + "grad_norm": 0.29516810178756714, + "learning_rate": 0.0006, + "loss": 4.025505065917969, + "step": 1183 + }, + { + "epoch": 16.447356924421143, + "grad_norm": 0.2640177607536316, + "learning_rate": 0.0006, + "loss": 4.060182571411133, + "step": 1184 + }, + { + "epoch": 16.461336828309307, + "grad_norm": 0.2444908320903778, + "learning_rate": 0.0006, + "loss": 4.046144962310791, + "step": 1185 + }, + { + "epoch": 16.475316732197467, + "grad_norm": 0.23190705478191376, + "learning_rate": 0.0006, + "loss": 4.075569152832031, + "step": 1186 + }, + { + "epoch": 16.489296636085626, + "grad_norm": 0.2383626103401184, + "learning_rate": 0.0006, + "loss": 4.088897705078125, + "step": 1187 + }, + { + "epoch": 16.503276539973786, + "grad_norm": 0.20688803493976593, + "learning_rate": 0.0006, + "loss": 4.064517974853516, + "step": 1188 + }, + { + "epoch": 16.51725644386195, + "grad_norm": 0.22610054910182953, + "learning_rate": 0.0006, + "loss": 4.04502010345459, + "step": 1189 + }, + { + "epoch": 16.53123634775011, + "grad_norm": 0.2014893889427185, + "learning_rate": 0.0006, + "loss": 4.058279514312744, + "step": 1190 + }, + { + "epoch": 16.54521625163827, + "grad_norm": 0.21459777653217316, + "learning_rate": 0.0006, + "loss": 4.066389083862305, + "step": 1191 + }, + { + "epoch": 16.55919615552643, + "grad_norm": 0.22909940779209137, + "learning_rate": 0.0006, + "loss": 4.0557966232299805, + "step": 1192 + }, + { + "epoch": 16.573176059414592, + "grad_norm": 0.20039083063602448, + "learning_rate": 0.0006, + "loss": 4.092845916748047, + "step": 1193 + }, + { + "epoch": 16.587155963302752, + "grad_norm": 0.22651726007461548, + "learning_rate": 0.0006, + "loss": 4.034615516662598, + "step": 1194 + }, + { + "epoch": 16.601135867190912, + "grad_norm": 0.21901755034923553, + "learning_rate": 0.0006, + "loss": 4.035619735717773, + "step": 1195 + }, + { + "epoch": 16.615115771079076, + "grad_norm": 0.22930841147899628, + "learning_rate": 0.0006, + "loss": 4.080800533294678, + "step": 1196 + }, + { + "epoch": 16.629095674967235, + "grad_norm": 0.212818443775177, + "learning_rate": 0.0006, + "loss": 4.030189514160156, + "step": 1197 + }, + { + "epoch": 16.643075578855395, + "grad_norm": 0.2370826154947281, + "learning_rate": 0.0006, + "loss": 4.062643527984619, + "step": 1198 + }, + { + "epoch": 16.657055482743555, + "grad_norm": 0.24786995351314545, + "learning_rate": 0.0006, + "loss": 4.031761169433594, + "step": 1199 + }, + { + "epoch": 16.67103538663172, + "grad_norm": 0.2305847704410553, + "learning_rate": 0.0006, + "loss": 4.083752155303955, + "step": 1200 + }, + { + "epoch": 16.68501529051988, + "grad_norm": 0.23336584866046906, + "learning_rate": 0.0006, + "loss": 4.079145431518555, + "step": 1201 + }, + { + "epoch": 16.698995194408038, + "grad_norm": 0.23976293206214905, + "learning_rate": 0.0006, + "loss": 4.020473957061768, + "step": 1202 + }, + { + "epoch": 16.712975098296198, + "grad_norm": 0.222761869430542, + "learning_rate": 0.0006, + "loss": 4.065582752227783, + "step": 1203 + }, + { + "epoch": 16.72695500218436, + "grad_norm": 0.23725618422031403, + "learning_rate": 0.0006, + "loss": 4.0263776779174805, + "step": 1204 + }, + { + "epoch": 16.74093490607252, + "grad_norm": 0.23873984813690186, + "learning_rate": 0.0006, + "loss": 4.053092956542969, + "step": 1205 + }, + { + "epoch": 16.75491480996068, + "grad_norm": 0.21043002605438232, + "learning_rate": 0.0006, + "loss": 4.063965797424316, + "step": 1206 + }, + { + "epoch": 16.76889471384884, + "grad_norm": 0.19863522052764893, + "learning_rate": 0.0006, + "loss": 4.061187267303467, + "step": 1207 + }, + { + "epoch": 16.782874617737004, + "grad_norm": 0.1953752487897873, + "learning_rate": 0.0006, + "loss": 4.046016693115234, + "step": 1208 + }, + { + "epoch": 16.796854521625164, + "grad_norm": 0.2130361795425415, + "learning_rate": 0.0006, + "loss": 4.066933631896973, + "step": 1209 + }, + { + "epoch": 16.810834425513324, + "grad_norm": 0.19598130881786346, + "learning_rate": 0.0006, + "loss": 4.071558952331543, + "step": 1210 + }, + { + "epoch": 16.824814329401484, + "grad_norm": 0.20331116020679474, + "learning_rate": 0.0006, + "loss": 4.088632106781006, + "step": 1211 + }, + { + "epoch": 16.838794233289647, + "grad_norm": 0.20423150062561035, + "learning_rate": 0.0006, + "loss": 4.032224655151367, + "step": 1212 + }, + { + "epoch": 16.852774137177807, + "grad_norm": 0.2401197850704193, + "learning_rate": 0.0006, + "loss": 4.037393569946289, + "step": 1213 + }, + { + "epoch": 16.866754041065967, + "grad_norm": 0.26102620363235474, + "learning_rate": 0.0006, + "loss": 4.04738712310791, + "step": 1214 + }, + { + "epoch": 16.88073394495413, + "grad_norm": 0.2438521534204483, + "learning_rate": 0.0006, + "loss": 4.015673637390137, + "step": 1215 + }, + { + "epoch": 16.89471384884229, + "grad_norm": 0.20742061734199524, + "learning_rate": 0.0006, + "loss": 4.049060821533203, + "step": 1216 + }, + { + "epoch": 16.90869375273045, + "grad_norm": 0.22028608620166779, + "learning_rate": 0.0006, + "loss": 4.088971138000488, + "step": 1217 + }, + { + "epoch": 16.92267365661861, + "grad_norm": 0.21746744215488434, + "learning_rate": 0.0006, + "loss": 4.021710395812988, + "step": 1218 + }, + { + "epoch": 16.936653560506773, + "grad_norm": 0.2226102203130722, + "learning_rate": 0.0006, + "loss": 4.050119400024414, + "step": 1219 + }, + { + "epoch": 16.950633464394933, + "grad_norm": 0.23903657495975494, + "learning_rate": 0.0006, + "loss": 4.0570526123046875, + "step": 1220 + }, + { + "epoch": 16.964613368283093, + "grad_norm": 0.2556349039077759, + "learning_rate": 0.0006, + "loss": 4.0448808670043945, + "step": 1221 + }, + { + "epoch": 16.978593272171253, + "grad_norm": 0.28445592522621155, + "learning_rate": 0.0006, + "loss": 4.052034378051758, + "step": 1222 + }, + { + "epoch": 16.992573176059416, + "grad_norm": 0.273973673582077, + "learning_rate": 0.0006, + "loss": 4.02907657623291, + "step": 1223 + }, + { + "epoch": 17.0, + "grad_norm": 0.26125091314315796, + "learning_rate": 0.0006, + "loss": 4.10643196105957, + "step": 1224 + }, + { + "epoch": 17.0, + "eval_loss": 4.2585954666137695, + "eval_runtime": 44.8583, + "eval_samples_per_second": 54.438, + "eval_steps_per_second": 3.411, + "step": 1224 + }, + { + "epoch": 17.01397990388816, + "grad_norm": 0.2786196768283844, + "learning_rate": 0.0006, + "loss": 4.044719219207764, + "step": 1225 + }, + { + "epoch": 17.027959807776323, + "grad_norm": 0.2969571650028229, + "learning_rate": 0.0006, + "loss": 4.022037506103516, + "step": 1226 + }, + { + "epoch": 17.041939711664483, + "grad_norm": 0.32196253538131714, + "learning_rate": 0.0006, + "loss": 4.03636360168457, + "step": 1227 + }, + { + "epoch": 17.055919615552643, + "grad_norm": 0.28617000579833984, + "learning_rate": 0.0006, + "loss": 4.012125492095947, + "step": 1228 + }, + { + "epoch": 17.069899519440803, + "grad_norm": 0.26539644598960876, + "learning_rate": 0.0006, + "loss": 4.020190715789795, + "step": 1229 + }, + { + "epoch": 17.083879423328966, + "grad_norm": 0.24315394461154938, + "learning_rate": 0.0006, + "loss": 4.0553812980651855, + "step": 1230 + }, + { + "epoch": 17.097859327217126, + "grad_norm": 0.23798158764839172, + "learning_rate": 0.0006, + "loss": 4.004805088043213, + "step": 1231 + }, + { + "epoch": 17.111839231105286, + "grad_norm": 0.25723618268966675, + "learning_rate": 0.0006, + "loss": 4.00108003616333, + "step": 1232 + }, + { + "epoch": 17.125819134993446, + "grad_norm": 0.2669757604598999, + "learning_rate": 0.0006, + "loss": 4.00828742980957, + "step": 1233 + }, + { + "epoch": 17.13979903888161, + "grad_norm": 0.26421651244163513, + "learning_rate": 0.0006, + "loss": 3.995478391647339, + "step": 1234 + }, + { + "epoch": 17.15377894276977, + "grad_norm": 0.24745801091194153, + "learning_rate": 0.0006, + "loss": 4.0171027183532715, + "step": 1235 + }, + { + "epoch": 17.16775884665793, + "grad_norm": 0.27028775215148926, + "learning_rate": 0.0006, + "loss": 4.017108917236328, + "step": 1236 + }, + { + "epoch": 17.18173875054609, + "grad_norm": 0.27247968316078186, + "learning_rate": 0.0006, + "loss": 4.032601356506348, + "step": 1237 + }, + { + "epoch": 17.195718654434252, + "grad_norm": 0.24620869755744934, + "learning_rate": 0.0006, + "loss": 4.022171974182129, + "step": 1238 + }, + { + "epoch": 17.209698558322412, + "grad_norm": 0.23407386243343353, + "learning_rate": 0.0006, + "loss": 3.9946959018707275, + "step": 1239 + }, + { + "epoch": 17.22367846221057, + "grad_norm": 0.22559069097042084, + "learning_rate": 0.0006, + "loss": 4.013072490692139, + "step": 1240 + }, + { + "epoch": 17.23765836609873, + "grad_norm": 0.226687952876091, + "learning_rate": 0.0006, + "loss": 4.023543834686279, + "step": 1241 + }, + { + "epoch": 17.251638269986895, + "grad_norm": 0.24436360597610474, + "learning_rate": 0.0006, + "loss": 4.044206619262695, + "step": 1242 + }, + { + "epoch": 17.265618173875055, + "grad_norm": 0.25527626276016235, + "learning_rate": 0.0006, + "loss": 4.016424179077148, + "step": 1243 + }, + { + "epoch": 17.279598077763215, + "grad_norm": 0.26126864552497864, + "learning_rate": 0.0006, + "loss": 4.024394512176514, + "step": 1244 + }, + { + "epoch": 17.293577981651374, + "grad_norm": 0.25746744871139526, + "learning_rate": 0.0006, + "loss": 4.046844482421875, + "step": 1245 + }, + { + "epoch": 17.307557885539538, + "grad_norm": 0.26579564809799194, + "learning_rate": 0.0006, + "loss": 4.021010398864746, + "step": 1246 + }, + { + "epoch": 17.321537789427698, + "grad_norm": 0.2713971734046936, + "learning_rate": 0.0006, + "loss": 4.022331237792969, + "step": 1247 + }, + { + "epoch": 17.335517693315857, + "grad_norm": 0.24217180907726288, + "learning_rate": 0.0006, + "loss": 4.006353855133057, + "step": 1248 + }, + { + "epoch": 17.34949759720402, + "grad_norm": 0.26899752020835876, + "learning_rate": 0.0006, + "loss": 4.068023681640625, + "step": 1249 + }, + { + "epoch": 17.36347750109218, + "grad_norm": 0.26745253801345825, + "learning_rate": 0.0006, + "loss": 4.031207084655762, + "step": 1250 + }, + { + "epoch": 17.37745740498034, + "grad_norm": 0.21533764898777008, + "learning_rate": 0.0006, + "loss": 4.042410850524902, + "step": 1251 + }, + { + "epoch": 17.3914373088685, + "grad_norm": 0.21958027780056, + "learning_rate": 0.0006, + "loss": 4.02597713470459, + "step": 1252 + }, + { + "epoch": 17.405417212756664, + "grad_norm": 0.263068825006485, + "learning_rate": 0.0006, + "loss": 4.0035905838012695, + "step": 1253 + }, + { + "epoch": 17.419397116644824, + "grad_norm": 0.24044716358184814, + "learning_rate": 0.0006, + "loss": 4.005317687988281, + "step": 1254 + }, + { + "epoch": 17.433377020532983, + "grad_norm": 0.19142559170722961, + "learning_rate": 0.0006, + "loss": 3.9976844787597656, + "step": 1255 + }, + { + "epoch": 17.447356924421143, + "grad_norm": 0.18650250136852264, + "learning_rate": 0.0006, + "loss": 4.031353950500488, + "step": 1256 + }, + { + "epoch": 17.461336828309307, + "grad_norm": 0.1984022557735443, + "learning_rate": 0.0006, + "loss": 4.002097129821777, + "step": 1257 + }, + { + "epoch": 17.475316732197467, + "grad_norm": 0.20087844133377075, + "learning_rate": 0.0006, + "loss": 4.031151294708252, + "step": 1258 + }, + { + "epoch": 17.489296636085626, + "grad_norm": 0.20881228148937225, + "learning_rate": 0.0006, + "loss": 4.034793853759766, + "step": 1259 + }, + { + "epoch": 17.503276539973786, + "grad_norm": 0.23958556354045868, + "learning_rate": 0.0006, + "loss": 4.025238990783691, + "step": 1260 + }, + { + "epoch": 17.51725644386195, + "grad_norm": 0.23927845060825348, + "learning_rate": 0.0006, + "loss": 3.999828338623047, + "step": 1261 + }, + { + "epoch": 17.53123634775011, + "grad_norm": 0.20342715084552765, + "learning_rate": 0.0006, + "loss": 4.054262161254883, + "step": 1262 + }, + { + "epoch": 17.54521625163827, + "grad_norm": 0.21370555460453033, + "learning_rate": 0.0006, + "loss": 4.011582374572754, + "step": 1263 + }, + { + "epoch": 17.55919615552643, + "grad_norm": 0.23681946098804474, + "learning_rate": 0.0006, + "loss": 4.029694080352783, + "step": 1264 + }, + { + "epoch": 17.573176059414592, + "grad_norm": 0.24190311133861542, + "learning_rate": 0.0006, + "loss": 4.018783092498779, + "step": 1265 + }, + { + "epoch": 17.587155963302752, + "grad_norm": 0.23215509951114655, + "learning_rate": 0.0006, + "loss": 4.009703159332275, + "step": 1266 + }, + { + "epoch": 17.601135867190912, + "grad_norm": 0.21122977137565613, + "learning_rate": 0.0006, + "loss": 4.0345659255981445, + "step": 1267 + }, + { + "epoch": 17.615115771079076, + "grad_norm": 0.2075948715209961, + "learning_rate": 0.0006, + "loss": 4.070703506469727, + "step": 1268 + }, + { + "epoch": 17.629095674967235, + "grad_norm": 0.21667909622192383, + "learning_rate": 0.0006, + "loss": 4.020771503448486, + "step": 1269 + }, + { + "epoch": 17.643075578855395, + "grad_norm": 0.20960724353790283, + "learning_rate": 0.0006, + "loss": 4.026404857635498, + "step": 1270 + }, + { + "epoch": 17.657055482743555, + "grad_norm": 0.22575686872005463, + "learning_rate": 0.0006, + "loss": 4.01981258392334, + "step": 1271 + }, + { + "epoch": 17.67103538663172, + "grad_norm": 0.2565988302230835, + "learning_rate": 0.0006, + "loss": 4.015827178955078, + "step": 1272 + }, + { + "epoch": 17.68501529051988, + "grad_norm": 0.24831551313400269, + "learning_rate": 0.0006, + "loss": 4.012457847595215, + "step": 1273 + }, + { + "epoch": 17.698995194408038, + "grad_norm": 0.22595494985580444, + "learning_rate": 0.0006, + "loss": 4.031386375427246, + "step": 1274 + }, + { + "epoch": 17.712975098296198, + "grad_norm": 0.20687322318553925, + "learning_rate": 0.0006, + "loss": 4.014216423034668, + "step": 1275 + }, + { + "epoch": 17.72695500218436, + "grad_norm": 0.21916012465953827, + "learning_rate": 0.0006, + "loss": 4.037643909454346, + "step": 1276 + }, + { + "epoch": 17.74093490607252, + "grad_norm": 0.2243107706308365, + "learning_rate": 0.0006, + "loss": 4.033044815063477, + "step": 1277 + }, + { + "epoch": 17.75491480996068, + "grad_norm": 0.2402164787054062, + "learning_rate": 0.0006, + "loss": 4.026636123657227, + "step": 1278 + }, + { + "epoch": 17.76889471384884, + "grad_norm": 0.27957046031951904, + "learning_rate": 0.0006, + "loss": 4.0270867347717285, + "step": 1279 + }, + { + "epoch": 17.782874617737004, + "grad_norm": 0.27447596192359924, + "learning_rate": 0.0006, + "loss": 4.0120134353637695, + "step": 1280 + }, + { + "epoch": 17.796854521625164, + "grad_norm": 0.26926323771476746, + "learning_rate": 0.0006, + "loss": 4.027970314025879, + "step": 1281 + }, + { + "epoch": 17.810834425513324, + "grad_norm": 0.2535291314125061, + "learning_rate": 0.0006, + "loss": 4.002565383911133, + "step": 1282 + }, + { + "epoch": 17.824814329401484, + "grad_norm": 0.22639447450637817, + "learning_rate": 0.0006, + "loss": 4.032750606536865, + "step": 1283 + }, + { + "epoch": 17.838794233289647, + "grad_norm": 0.23384462296962738, + "learning_rate": 0.0006, + "loss": 4.03568172454834, + "step": 1284 + }, + { + "epoch": 17.852774137177807, + "grad_norm": 0.22971470654010773, + "learning_rate": 0.0006, + "loss": 4.031299591064453, + "step": 1285 + }, + { + "epoch": 17.866754041065967, + "grad_norm": 0.24540141224861145, + "learning_rate": 0.0006, + "loss": 4.0142669677734375, + "step": 1286 + }, + { + "epoch": 17.88073394495413, + "grad_norm": 0.2304888367652893, + "learning_rate": 0.0006, + "loss": 3.9964895248413086, + "step": 1287 + }, + { + "epoch": 17.89471384884229, + "grad_norm": 0.22082284092903137, + "learning_rate": 0.0006, + "loss": 4.024693489074707, + "step": 1288 + }, + { + "epoch": 17.90869375273045, + "grad_norm": 0.23677092790603638, + "learning_rate": 0.0006, + "loss": 4.002082347869873, + "step": 1289 + }, + { + "epoch": 17.92267365661861, + "grad_norm": 0.23122332990169525, + "learning_rate": 0.0006, + "loss": 4.025351524353027, + "step": 1290 + }, + { + "epoch": 17.936653560506773, + "grad_norm": 0.2548119127750397, + "learning_rate": 0.0006, + "loss": 3.9955825805664062, + "step": 1291 + }, + { + "epoch": 17.950633464394933, + "grad_norm": 0.26950931549072266, + "learning_rate": 0.0006, + "loss": 4.026151180267334, + "step": 1292 + }, + { + "epoch": 17.964613368283093, + "grad_norm": 0.3023233711719513, + "learning_rate": 0.0006, + "loss": 4.006035804748535, + "step": 1293 + }, + { + "epoch": 17.978593272171253, + "grad_norm": 0.3190958499908447, + "learning_rate": 0.0006, + "loss": 4.023565292358398, + "step": 1294 + }, + { + "epoch": 17.992573176059416, + "grad_norm": 0.28878068923950195, + "learning_rate": 0.0006, + "loss": 4.020973205566406, + "step": 1295 + }, + { + "epoch": 18.0, + "grad_norm": 0.27312418818473816, + "learning_rate": 0.0006, + "loss": 3.99906587600708, + "step": 1296 + }, + { + "epoch": 18.0, + "eval_loss": 4.224447250366211, + "eval_runtime": 52.5728, + "eval_samples_per_second": 46.45, + "eval_steps_per_second": 2.91, + "step": 1296 + }, + { + "epoch": 18.01397990388816, + "grad_norm": 0.2567712664604187, + "learning_rate": 0.0006, + "loss": 3.9755055904388428, + "step": 1297 + }, + { + "epoch": 18.027959807776323, + "grad_norm": 0.25048133730888367, + "learning_rate": 0.0006, + "loss": 4.009254455566406, + "step": 1298 + }, + { + "epoch": 18.041939711664483, + "grad_norm": 0.2556909918785095, + "learning_rate": 0.0006, + "loss": 4.001235008239746, + "step": 1299 + }, + { + "epoch": 18.055919615552643, + "grad_norm": 0.2501400113105774, + "learning_rate": 0.0006, + "loss": 3.980726480484009, + "step": 1300 + }, + { + "epoch": 18.069899519440803, + "grad_norm": 0.23977792263031006, + "learning_rate": 0.0006, + "loss": 3.964195728302002, + "step": 1301 + }, + { + "epoch": 18.083879423328966, + "grad_norm": 0.25650718808174133, + "learning_rate": 0.0006, + "loss": 4.015914440155029, + "step": 1302 + }, + { + "epoch": 18.097859327217126, + "grad_norm": 0.234053835272789, + "learning_rate": 0.0006, + "loss": 4.0159149169921875, + "step": 1303 + }, + { + "epoch": 18.111839231105286, + "grad_norm": 0.21967713534832, + "learning_rate": 0.0006, + "loss": 4.0055694580078125, + "step": 1304 + }, + { + "epoch": 18.125819134993446, + "grad_norm": 0.21790878474712372, + "learning_rate": 0.0006, + "loss": 3.986253261566162, + "step": 1305 + }, + { + "epoch": 18.13979903888161, + "grad_norm": 0.22955302894115448, + "learning_rate": 0.0006, + "loss": 3.959421157836914, + "step": 1306 + }, + { + "epoch": 18.15377894276977, + "grad_norm": 0.2559174597263336, + "learning_rate": 0.0006, + "loss": 4.0069756507873535, + "step": 1307 + }, + { + "epoch": 18.16775884665793, + "grad_norm": 0.26132866740226746, + "learning_rate": 0.0006, + "loss": 3.9874095916748047, + "step": 1308 + }, + { + "epoch": 18.18173875054609, + "grad_norm": 0.23258940875530243, + "learning_rate": 0.0006, + "loss": 3.9762492179870605, + "step": 1309 + }, + { + "epoch": 18.195718654434252, + "grad_norm": 0.22347190976142883, + "learning_rate": 0.0006, + "loss": 3.9923410415649414, + "step": 1310 + }, + { + "epoch": 18.209698558322412, + "grad_norm": 0.23095804452896118, + "learning_rate": 0.0006, + "loss": 4.019245624542236, + "step": 1311 + }, + { + "epoch": 18.22367846221057, + "grad_norm": 0.24817052483558655, + "learning_rate": 0.0006, + "loss": 3.9697511196136475, + "step": 1312 + }, + { + "epoch": 18.23765836609873, + "grad_norm": 0.2566024959087372, + "learning_rate": 0.0006, + "loss": 3.978804111480713, + "step": 1313 + }, + { + "epoch": 18.251638269986895, + "grad_norm": 0.2527952790260315, + "learning_rate": 0.0006, + "loss": 3.972018241882324, + "step": 1314 + }, + { + "epoch": 18.265618173875055, + "grad_norm": 0.2508150637149811, + "learning_rate": 0.0006, + "loss": 3.9971275329589844, + "step": 1315 + }, + { + "epoch": 18.279598077763215, + "grad_norm": 0.23242022097110748, + "learning_rate": 0.0006, + "loss": 3.9712045192718506, + "step": 1316 + }, + { + "epoch": 18.293577981651374, + "grad_norm": 0.23474404215812683, + "learning_rate": 0.0006, + "loss": 3.9926767349243164, + "step": 1317 + }, + { + "epoch": 18.307557885539538, + "grad_norm": 0.2417769432067871, + "learning_rate": 0.0006, + "loss": 3.9920949935913086, + "step": 1318 + }, + { + "epoch": 18.321537789427698, + "grad_norm": 0.23839452862739563, + "learning_rate": 0.0006, + "loss": 4.016645431518555, + "step": 1319 + }, + { + "epoch": 18.335517693315857, + "grad_norm": 0.2512452304363251, + "learning_rate": 0.0006, + "loss": 3.97586727142334, + "step": 1320 + }, + { + "epoch": 18.34949759720402, + "grad_norm": 0.27503693103790283, + "learning_rate": 0.0006, + "loss": 4.000148773193359, + "step": 1321 + }, + { + "epoch": 18.36347750109218, + "grad_norm": 0.27830836176872253, + "learning_rate": 0.0006, + "loss": 3.9972195625305176, + "step": 1322 + }, + { + "epoch": 18.37745740498034, + "grad_norm": 0.2571812570095062, + "learning_rate": 0.0006, + "loss": 3.9900810718536377, + "step": 1323 + }, + { + "epoch": 18.3914373088685, + "grad_norm": 0.2310052365064621, + "learning_rate": 0.0006, + "loss": 4.003000259399414, + "step": 1324 + }, + { + "epoch": 18.405417212756664, + "grad_norm": 0.19615735113620758, + "learning_rate": 0.0006, + "loss": 3.9536571502685547, + "step": 1325 + }, + { + "epoch": 18.419397116644824, + "grad_norm": 0.21323896944522858, + "learning_rate": 0.0006, + "loss": 3.977508068084717, + "step": 1326 + }, + { + "epoch": 18.433377020532983, + "grad_norm": 0.21404202282428741, + "learning_rate": 0.0006, + "loss": 4.015361785888672, + "step": 1327 + }, + { + "epoch": 18.447356924421143, + "grad_norm": 0.1991959661245346, + "learning_rate": 0.0006, + "loss": 4.000286102294922, + "step": 1328 + }, + { + "epoch": 18.461336828309307, + "grad_norm": 0.2073599398136139, + "learning_rate": 0.0006, + "loss": 3.973065137863159, + "step": 1329 + }, + { + "epoch": 18.475316732197467, + "grad_norm": 0.2096073031425476, + "learning_rate": 0.0006, + "loss": 3.987032890319824, + "step": 1330 + }, + { + "epoch": 18.489296636085626, + "grad_norm": 0.2380610853433609, + "learning_rate": 0.0006, + "loss": 4.035274505615234, + "step": 1331 + }, + { + "epoch": 18.503276539973786, + "grad_norm": 0.23570716381072998, + "learning_rate": 0.0006, + "loss": 4.010516166687012, + "step": 1332 + }, + { + "epoch": 18.51725644386195, + "grad_norm": 0.24805466830730438, + "learning_rate": 0.0006, + "loss": 3.9750983715057373, + "step": 1333 + }, + { + "epoch": 18.53123634775011, + "grad_norm": 0.25173231959342957, + "learning_rate": 0.0006, + "loss": 3.9742345809936523, + "step": 1334 + }, + { + "epoch": 18.54521625163827, + "grad_norm": 0.24590367078781128, + "learning_rate": 0.0006, + "loss": 4.0037312507629395, + "step": 1335 + }, + { + "epoch": 18.55919615552643, + "grad_norm": 0.24379394948482513, + "learning_rate": 0.0006, + "loss": 3.993858814239502, + "step": 1336 + }, + { + "epoch": 18.573176059414592, + "grad_norm": 0.21708883345127106, + "learning_rate": 0.0006, + "loss": 3.965670585632324, + "step": 1337 + }, + { + "epoch": 18.587155963302752, + "grad_norm": 0.21024051308631897, + "learning_rate": 0.0006, + "loss": 3.987551689147949, + "step": 1338 + }, + { + "epoch": 18.601135867190912, + "grad_norm": 0.23376783728599548, + "learning_rate": 0.0006, + "loss": 4.002841472625732, + "step": 1339 + }, + { + "epoch": 18.615115771079076, + "grad_norm": 0.25350701808929443, + "learning_rate": 0.0006, + "loss": 3.9881370067596436, + "step": 1340 + }, + { + "epoch": 18.629095674967235, + "grad_norm": 0.2542140483856201, + "learning_rate": 0.0006, + "loss": 4.003695964813232, + "step": 1341 + }, + { + "epoch": 18.643075578855395, + "grad_norm": 0.22932685911655426, + "learning_rate": 0.0006, + "loss": 4.0146002769470215, + "step": 1342 + }, + { + "epoch": 18.657055482743555, + "grad_norm": 0.21099458634853363, + "learning_rate": 0.0006, + "loss": 3.970472812652588, + "step": 1343 + }, + { + "epoch": 18.67103538663172, + "grad_norm": 0.2234615832567215, + "learning_rate": 0.0006, + "loss": 3.9821488857269287, + "step": 1344 + }, + { + "epoch": 18.68501529051988, + "grad_norm": 0.230327770113945, + "learning_rate": 0.0006, + "loss": 3.996274948120117, + "step": 1345 + }, + { + "epoch": 18.698995194408038, + "grad_norm": 0.23596233129501343, + "learning_rate": 0.0006, + "loss": 3.9747462272644043, + "step": 1346 + }, + { + "epoch": 18.712975098296198, + "grad_norm": 0.24173159897327423, + "learning_rate": 0.0006, + "loss": 4.011804103851318, + "step": 1347 + }, + { + "epoch": 18.72695500218436, + "grad_norm": 0.24087604880332947, + "learning_rate": 0.0006, + "loss": 4.008726119995117, + "step": 1348 + }, + { + "epoch": 18.74093490607252, + "grad_norm": 0.2457292526960373, + "learning_rate": 0.0006, + "loss": 3.990793228149414, + "step": 1349 + }, + { + "epoch": 18.75491480996068, + "grad_norm": 0.22946089506149292, + "learning_rate": 0.0006, + "loss": 3.980494260787964, + "step": 1350 + }, + { + "epoch": 18.76889471384884, + "grad_norm": 0.22986692190170288, + "learning_rate": 0.0006, + "loss": 3.97006893157959, + "step": 1351 + }, + { + "epoch": 18.782874617737004, + "grad_norm": 0.23358555138111115, + "learning_rate": 0.0006, + "loss": 4.008172035217285, + "step": 1352 + }, + { + "epoch": 18.796854521625164, + "grad_norm": 0.20183615386486053, + "learning_rate": 0.0006, + "loss": 3.9720888137817383, + "step": 1353 + }, + { + "epoch": 18.810834425513324, + "grad_norm": 0.19975653290748596, + "learning_rate": 0.0006, + "loss": 3.9783310890197754, + "step": 1354 + }, + { + "epoch": 18.824814329401484, + "grad_norm": 0.18911021947860718, + "learning_rate": 0.0006, + "loss": 3.985982894897461, + "step": 1355 + }, + { + "epoch": 18.838794233289647, + "grad_norm": 0.15984168648719788, + "learning_rate": 0.0006, + "loss": 3.9740548133850098, + "step": 1356 + }, + { + "epoch": 18.852774137177807, + "grad_norm": 0.1755436211824417, + "learning_rate": 0.0006, + "loss": 4.013090133666992, + "step": 1357 + }, + { + "epoch": 18.866754041065967, + "grad_norm": 0.1798417866230011, + "learning_rate": 0.0006, + "loss": 3.997880697250366, + "step": 1358 + }, + { + "epoch": 18.88073394495413, + "grad_norm": 0.20206265151500702, + "learning_rate": 0.0006, + "loss": 3.9892373085021973, + "step": 1359 + }, + { + "epoch": 18.89471384884229, + "grad_norm": 0.23685456812381744, + "learning_rate": 0.0006, + "loss": 3.9909186363220215, + "step": 1360 + }, + { + "epoch": 18.90869375273045, + "grad_norm": 0.26053836941719055, + "learning_rate": 0.0006, + "loss": 4.00327205657959, + "step": 1361 + }, + { + "epoch": 18.92267365661861, + "grad_norm": 0.26215845346450806, + "learning_rate": 0.0006, + "loss": 3.9714717864990234, + "step": 1362 + }, + { + "epoch": 18.936653560506773, + "grad_norm": 0.2433871030807495, + "learning_rate": 0.0006, + "loss": 3.949416160583496, + "step": 1363 + }, + { + "epoch": 18.950633464394933, + "grad_norm": 0.23331883549690247, + "learning_rate": 0.0006, + "loss": 3.980501413345337, + "step": 1364 + }, + { + "epoch": 18.964613368283093, + "grad_norm": 0.2346954047679901, + "learning_rate": 0.0006, + "loss": 3.9974493980407715, + "step": 1365 + }, + { + "epoch": 18.978593272171253, + "grad_norm": 0.25101345777511597, + "learning_rate": 0.0006, + "loss": 3.9800148010253906, + "step": 1366 + }, + { + "epoch": 18.992573176059416, + "grad_norm": 0.26811933517456055, + "learning_rate": 0.0006, + "loss": 4.0065741539001465, + "step": 1367 + }, + { + "epoch": 19.0, + "grad_norm": 0.2731736898422241, + "learning_rate": 0.0006, + "loss": 4.014575481414795, + "step": 1368 + }, + { + "epoch": 19.0, + "eval_loss": 4.200716972351074, + "eval_runtime": 44.6962, + "eval_samples_per_second": 54.636, + "eval_steps_per_second": 3.423, + "step": 1368 + }, + { + "epoch": 19.01397990388816, + "grad_norm": 0.2517746686935425, + "learning_rate": 0.0006, + "loss": 3.9486539363861084, + "step": 1369 + }, + { + "epoch": 19.027959807776323, + "grad_norm": 0.2482699453830719, + "learning_rate": 0.0006, + "loss": 3.95015287399292, + "step": 1370 + }, + { + "epoch": 19.041939711664483, + "grad_norm": 0.21693618595600128, + "learning_rate": 0.0006, + "loss": 3.970022201538086, + "step": 1371 + }, + { + "epoch": 19.055919615552643, + "grad_norm": 0.2035159319639206, + "learning_rate": 0.0006, + "loss": 3.941457748413086, + "step": 1372 + }, + { + "epoch": 19.069899519440803, + "grad_norm": 0.2201429009437561, + "learning_rate": 0.0006, + "loss": 3.946794033050537, + "step": 1373 + }, + { + "epoch": 19.083879423328966, + "grad_norm": 0.22910255193710327, + "learning_rate": 0.0006, + "loss": 3.94606876373291, + "step": 1374 + }, + { + "epoch": 19.097859327217126, + "grad_norm": 0.22378197312355042, + "learning_rate": 0.0006, + "loss": 3.957899570465088, + "step": 1375 + }, + { + "epoch": 19.111839231105286, + "grad_norm": 0.21728114783763885, + "learning_rate": 0.0006, + "loss": 3.9565982818603516, + "step": 1376 + }, + { + "epoch": 19.125819134993446, + "grad_norm": 0.21887634694576263, + "learning_rate": 0.0006, + "loss": 3.9649534225463867, + "step": 1377 + }, + { + "epoch": 19.13979903888161, + "grad_norm": 0.21892991662025452, + "learning_rate": 0.0006, + "loss": 3.971388101577759, + "step": 1378 + }, + { + "epoch": 19.15377894276977, + "grad_norm": 0.24582402408123016, + "learning_rate": 0.0006, + "loss": 3.9370944499969482, + "step": 1379 + }, + { + "epoch": 19.16775884665793, + "grad_norm": 0.27547118067741394, + "learning_rate": 0.0006, + "loss": 3.939406156539917, + "step": 1380 + }, + { + "epoch": 19.18173875054609, + "grad_norm": 0.3131563365459442, + "learning_rate": 0.0006, + "loss": 3.942620277404785, + "step": 1381 + }, + { + "epoch": 19.195718654434252, + "grad_norm": 0.3211703598499298, + "learning_rate": 0.0006, + "loss": 3.9388349056243896, + "step": 1382 + }, + { + "epoch": 19.209698558322412, + "grad_norm": 0.2791919410228729, + "learning_rate": 0.0006, + "loss": 3.9827399253845215, + "step": 1383 + }, + { + "epoch": 19.22367846221057, + "grad_norm": 0.2872016727924347, + "learning_rate": 0.0006, + "loss": 3.976715087890625, + "step": 1384 + }, + { + "epoch": 19.23765836609873, + "grad_norm": 0.2790389060974121, + "learning_rate": 0.0006, + "loss": 3.952850818634033, + "step": 1385 + }, + { + "epoch": 19.251638269986895, + "grad_norm": 0.31903740763664246, + "learning_rate": 0.0006, + "loss": 3.964506149291992, + "step": 1386 + }, + { + "epoch": 19.265618173875055, + "grad_norm": 0.31013646721839905, + "learning_rate": 0.0006, + "loss": 3.967219352722168, + "step": 1387 + }, + { + "epoch": 19.279598077763215, + "grad_norm": 0.2574339509010315, + "learning_rate": 0.0006, + "loss": 3.979168176651001, + "step": 1388 + }, + { + "epoch": 19.293577981651374, + "grad_norm": 0.24621108174324036, + "learning_rate": 0.0006, + "loss": 3.981734275817871, + "step": 1389 + }, + { + "epoch": 19.307557885539538, + "grad_norm": 0.25113818049430847, + "learning_rate": 0.0006, + "loss": 3.9787755012512207, + "step": 1390 + }, + { + "epoch": 19.321537789427698, + "grad_norm": 0.259971022605896, + "learning_rate": 0.0006, + "loss": 3.9648823738098145, + "step": 1391 + }, + { + "epoch": 19.335517693315857, + "grad_norm": 0.22580404579639435, + "learning_rate": 0.0006, + "loss": 3.9658002853393555, + "step": 1392 + }, + { + "epoch": 19.34949759720402, + "grad_norm": 0.2133680284023285, + "learning_rate": 0.0006, + "loss": 3.9615914821624756, + "step": 1393 + }, + { + "epoch": 19.36347750109218, + "grad_norm": 0.2387680858373642, + "learning_rate": 0.0006, + "loss": 3.993811845779419, + "step": 1394 + }, + { + "epoch": 19.37745740498034, + "grad_norm": 0.26086220145225525, + "learning_rate": 0.0006, + "loss": 3.932701826095581, + "step": 1395 + }, + { + "epoch": 19.3914373088685, + "grad_norm": 0.23255233466625214, + "learning_rate": 0.0006, + "loss": 3.8969321250915527, + "step": 1396 + }, + { + "epoch": 19.405417212756664, + "grad_norm": 0.22894541919231415, + "learning_rate": 0.0006, + "loss": 3.9569311141967773, + "step": 1397 + }, + { + "epoch": 19.419397116644824, + "grad_norm": 0.2254200130701065, + "learning_rate": 0.0006, + "loss": 3.953199863433838, + "step": 1398 + }, + { + "epoch": 19.433377020532983, + "grad_norm": 0.25802481174468994, + "learning_rate": 0.0006, + "loss": 3.9714815616607666, + "step": 1399 + }, + { + "epoch": 19.447356924421143, + "grad_norm": 0.24725162982940674, + "learning_rate": 0.0006, + "loss": 3.957339286804199, + "step": 1400 + }, + { + "epoch": 19.461336828309307, + "grad_norm": 0.2162018120288849, + "learning_rate": 0.0006, + "loss": 3.986801862716675, + "step": 1401 + }, + { + "epoch": 19.475316732197467, + "grad_norm": 0.21530906856060028, + "learning_rate": 0.0006, + "loss": 3.9766759872436523, + "step": 1402 + }, + { + "epoch": 19.489296636085626, + "grad_norm": 0.20260323584079742, + "learning_rate": 0.0006, + "loss": 3.9576425552368164, + "step": 1403 + }, + { + "epoch": 19.503276539973786, + "grad_norm": 0.188974529504776, + "learning_rate": 0.0006, + "loss": 3.9852395057678223, + "step": 1404 + }, + { + "epoch": 19.51725644386195, + "grad_norm": 0.19727374613285065, + "learning_rate": 0.0006, + "loss": 3.972484588623047, + "step": 1405 + }, + { + "epoch": 19.53123634775011, + "grad_norm": 0.23708008229732513, + "learning_rate": 0.0006, + "loss": 3.992471694946289, + "step": 1406 + }, + { + "epoch": 19.54521625163827, + "grad_norm": 0.23783449828624725, + "learning_rate": 0.0006, + "loss": 3.9788265228271484, + "step": 1407 + }, + { + "epoch": 19.55919615552643, + "grad_norm": 0.24744364619255066, + "learning_rate": 0.0006, + "loss": 3.9559011459350586, + "step": 1408 + }, + { + "epoch": 19.573176059414592, + "grad_norm": 0.24828094244003296, + "learning_rate": 0.0006, + "loss": 3.9663949012756348, + "step": 1409 + }, + { + "epoch": 19.587155963302752, + "grad_norm": 0.2681315541267395, + "learning_rate": 0.0006, + "loss": 3.9581191539764404, + "step": 1410 + }, + { + "epoch": 19.601135867190912, + "grad_norm": 0.2691532373428345, + "learning_rate": 0.0006, + "loss": 3.9832754135131836, + "step": 1411 + }, + { + "epoch": 19.615115771079076, + "grad_norm": 0.2900252640247345, + "learning_rate": 0.0006, + "loss": 3.984365940093994, + "step": 1412 + }, + { + "epoch": 19.629095674967235, + "grad_norm": 0.3194943070411682, + "learning_rate": 0.0006, + "loss": 3.9856505393981934, + "step": 1413 + }, + { + "epoch": 19.643075578855395, + "grad_norm": 0.3029029071331024, + "learning_rate": 0.0006, + "loss": 3.968992233276367, + "step": 1414 + }, + { + "epoch": 19.657055482743555, + "grad_norm": 0.2658176124095917, + "learning_rate": 0.0006, + "loss": 3.995187282562256, + "step": 1415 + }, + { + "epoch": 19.67103538663172, + "grad_norm": 0.26807504892349243, + "learning_rate": 0.0006, + "loss": 3.9756274223327637, + "step": 1416 + }, + { + "epoch": 19.68501529051988, + "grad_norm": 0.27718642354011536, + "learning_rate": 0.0006, + "loss": 3.9510018825531006, + "step": 1417 + }, + { + "epoch": 19.698995194408038, + "grad_norm": 0.26322051882743835, + "learning_rate": 0.0006, + "loss": 3.965155601501465, + "step": 1418 + }, + { + "epoch": 19.712975098296198, + "grad_norm": 0.2566570043563843, + "learning_rate": 0.0006, + "loss": 3.984218120574951, + "step": 1419 + }, + { + "epoch": 19.72695500218436, + "grad_norm": 0.2218743860721588, + "learning_rate": 0.0006, + "loss": 3.9338784217834473, + "step": 1420 + }, + { + "epoch": 19.74093490607252, + "grad_norm": 0.22894173860549927, + "learning_rate": 0.0006, + "loss": 3.9869046211242676, + "step": 1421 + }, + { + "epoch": 19.75491480996068, + "grad_norm": 0.26837027072906494, + "learning_rate": 0.0006, + "loss": 3.96799898147583, + "step": 1422 + }, + { + "epoch": 19.76889471384884, + "grad_norm": 0.2767876982688904, + "learning_rate": 0.0006, + "loss": 3.9431071281433105, + "step": 1423 + }, + { + "epoch": 19.782874617737004, + "grad_norm": 0.24402284622192383, + "learning_rate": 0.0006, + "loss": 3.9631881713867188, + "step": 1424 + }, + { + "epoch": 19.796854521625164, + "grad_norm": 0.23500724136829376, + "learning_rate": 0.0006, + "loss": 3.9943337440490723, + "step": 1425 + }, + { + "epoch": 19.810834425513324, + "grad_norm": 0.22509142756462097, + "learning_rate": 0.0006, + "loss": 3.961226224899292, + "step": 1426 + }, + { + "epoch": 19.824814329401484, + "grad_norm": 0.23524795472621918, + "learning_rate": 0.0006, + "loss": 3.9552102088928223, + "step": 1427 + }, + { + "epoch": 19.838794233289647, + "grad_norm": 0.22307050228118896, + "learning_rate": 0.0006, + "loss": 3.9623494148254395, + "step": 1428 + }, + { + "epoch": 19.852774137177807, + "grad_norm": 0.21144486963748932, + "learning_rate": 0.0006, + "loss": 3.9620237350463867, + "step": 1429 + }, + { + "epoch": 19.866754041065967, + "grad_norm": 0.20249812304973602, + "learning_rate": 0.0006, + "loss": 3.953911066055298, + "step": 1430 + }, + { + "epoch": 19.88073394495413, + "grad_norm": 0.2350354939699173, + "learning_rate": 0.0006, + "loss": 3.9616730213165283, + "step": 1431 + }, + { + "epoch": 19.89471384884229, + "grad_norm": 0.2566683292388916, + "learning_rate": 0.0006, + "loss": 3.9372501373291016, + "step": 1432 + }, + { + "epoch": 19.90869375273045, + "grad_norm": 0.2520846128463745, + "learning_rate": 0.0006, + "loss": 3.9814648628234863, + "step": 1433 + }, + { + "epoch": 19.92267365661861, + "grad_norm": 0.23989640176296234, + "learning_rate": 0.0006, + "loss": 3.9692864418029785, + "step": 1434 + }, + { + "epoch": 19.936653560506773, + "grad_norm": 0.20650425553321838, + "learning_rate": 0.0006, + "loss": 3.960256814956665, + "step": 1435 + }, + { + "epoch": 19.950633464394933, + "grad_norm": 0.20478376746177673, + "learning_rate": 0.0006, + "loss": 3.9585227966308594, + "step": 1436 + }, + { + "epoch": 19.964613368283093, + "grad_norm": 0.234436497092247, + "learning_rate": 0.0006, + "loss": 3.945631742477417, + "step": 1437 + }, + { + "epoch": 19.978593272171253, + "grad_norm": 0.19969749450683594, + "learning_rate": 0.0006, + "loss": 3.9646050930023193, + "step": 1438 + }, + { + "epoch": 19.992573176059416, + "grad_norm": 0.20638690888881683, + "learning_rate": 0.0006, + "loss": 3.9461846351623535, + "step": 1439 + }, + { + "epoch": 20.0, + "grad_norm": 0.2120274156332016, + "learning_rate": 0.0006, + "loss": 3.965153217315674, + "step": 1440 + }, + { + "epoch": 20.0, + "eval_loss": 4.168524742126465, + "eval_runtime": 44.2796, + "eval_samples_per_second": 55.15, + "eval_steps_per_second": 3.455, + "step": 1440 + }, + { + "epoch": 20.01397990388816, + "grad_norm": 0.19704894721508026, + "learning_rate": 0.0006, + "loss": 3.937016248703003, + "step": 1441 + }, + { + "epoch": 20.027959807776323, + "grad_norm": 0.18682368099689484, + "learning_rate": 0.0006, + "loss": 3.895922899246216, + "step": 1442 + }, + { + "epoch": 20.041939711664483, + "grad_norm": 0.18982571363449097, + "learning_rate": 0.0006, + "loss": 3.929841995239258, + "step": 1443 + }, + { + "epoch": 20.055919615552643, + "grad_norm": 0.20811910927295685, + "learning_rate": 0.0006, + "loss": 3.9498324394226074, + "step": 1444 + }, + { + "epoch": 20.069899519440803, + "grad_norm": 0.2149062603712082, + "learning_rate": 0.0006, + "loss": 3.929853916168213, + "step": 1445 + }, + { + "epoch": 20.083879423328966, + "grad_norm": 0.20016685128211975, + "learning_rate": 0.0006, + "loss": 3.9374136924743652, + "step": 1446 + }, + { + "epoch": 20.097859327217126, + "grad_norm": 0.19969616830348969, + "learning_rate": 0.0006, + "loss": 3.932447910308838, + "step": 1447 + }, + { + "epoch": 20.111839231105286, + "grad_norm": 0.2163356989622116, + "learning_rate": 0.0006, + "loss": 3.9325437545776367, + "step": 1448 + }, + { + "epoch": 20.125819134993446, + "grad_norm": 0.22026969492435455, + "learning_rate": 0.0006, + "loss": 3.9118852615356445, + "step": 1449 + }, + { + "epoch": 20.13979903888161, + "grad_norm": 0.23337116837501526, + "learning_rate": 0.0006, + "loss": 3.9416019916534424, + "step": 1450 + }, + { + "epoch": 20.15377894276977, + "grad_norm": 0.23971447348594666, + "learning_rate": 0.0006, + "loss": 3.9416871070861816, + "step": 1451 + }, + { + "epoch": 20.16775884665793, + "grad_norm": 0.25973960757255554, + "learning_rate": 0.0006, + "loss": 3.93826961517334, + "step": 1452 + }, + { + "epoch": 20.18173875054609, + "grad_norm": 0.2303445190191269, + "learning_rate": 0.0006, + "loss": 3.909383535385132, + "step": 1453 + }, + { + "epoch": 20.195718654434252, + "grad_norm": 0.21090206503868103, + "learning_rate": 0.0006, + "loss": 3.935939311981201, + "step": 1454 + }, + { + "epoch": 20.209698558322412, + "grad_norm": 0.2278691977262497, + "learning_rate": 0.0006, + "loss": 3.9623684883117676, + "step": 1455 + }, + { + "epoch": 20.22367846221057, + "grad_norm": 0.22291512787342072, + "learning_rate": 0.0006, + "loss": 3.9386210441589355, + "step": 1456 + }, + { + "epoch": 20.23765836609873, + "grad_norm": 0.2385793924331665, + "learning_rate": 0.0006, + "loss": 3.927365303039551, + "step": 1457 + }, + { + "epoch": 20.251638269986895, + "grad_norm": 0.23949867486953735, + "learning_rate": 0.0006, + "loss": 3.956698179244995, + "step": 1458 + }, + { + "epoch": 20.265618173875055, + "grad_norm": 0.2232269048690796, + "learning_rate": 0.0006, + "loss": 3.9465065002441406, + "step": 1459 + }, + { + "epoch": 20.279598077763215, + "grad_norm": 0.22286680340766907, + "learning_rate": 0.0006, + "loss": 3.9102284908294678, + "step": 1460 + }, + { + "epoch": 20.293577981651374, + "grad_norm": 0.24039050936698914, + "learning_rate": 0.0006, + "loss": 3.928055763244629, + "step": 1461 + }, + { + "epoch": 20.307557885539538, + "grad_norm": 0.2532738447189331, + "learning_rate": 0.0006, + "loss": 3.931753635406494, + "step": 1462 + }, + { + "epoch": 20.321537789427698, + "grad_norm": 0.2206273376941681, + "learning_rate": 0.0006, + "loss": 3.936119556427002, + "step": 1463 + }, + { + "epoch": 20.335517693315857, + "grad_norm": 0.20918945968151093, + "learning_rate": 0.0006, + "loss": 3.9228529930114746, + "step": 1464 + }, + { + "epoch": 20.34949759720402, + "grad_norm": 0.2324502319097519, + "learning_rate": 0.0006, + "loss": 3.9370768070220947, + "step": 1465 + }, + { + "epoch": 20.36347750109218, + "grad_norm": 0.26811033487319946, + "learning_rate": 0.0006, + "loss": 3.968515396118164, + "step": 1466 + }, + { + "epoch": 20.37745740498034, + "grad_norm": 0.2896045744419098, + "learning_rate": 0.0006, + "loss": 3.945124626159668, + "step": 1467 + }, + { + "epoch": 20.3914373088685, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 3.9399516582489014, + "step": 1468 + }, + { + "epoch": 20.405417212756664, + "grad_norm": 0.3076821565628052, + "learning_rate": 0.0006, + "loss": 3.9545583724975586, + "step": 1469 + }, + { + "epoch": 20.419397116644824, + "grad_norm": 0.3019449710845947, + "learning_rate": 0.0006, + "loss": 3.9502270221710205, + "step": 1470 + }, + { + "epoch": 20.433377020532983, + "grad_norm": 0.31832560896873474, + "learning_rate": 0.0006, + "loss": 3.940439224243164, + "step": 1471 + }, + { + "epoch": 20.447356924421143, + "grad_norm": 0.30303657054901123, + "learning_rate": 0.0006, + "loss": 3.9451770782470703, + "step": 1472 + }, + { + "epoch": 20.461336828309307, + "grad_norm": 0.28122979402542114, + "learning_rate": 0.0006, + "loss": 3.934508800506592, + "step": 1473 + }, + { + "epoch": 20.475316732197467, + "grad_norm": 0.27013441920280457, + "learning_rate": 0.0006, + "loss": 3.924323081970215, + "step": 1474 + }, + { + "epoch": 20.489296636085626, + "grad_norm": 0.29052063822746277, + "learning_rate": 0.0006, + "loss": 3.970916748046875, + "step": 1475 + }, + { + "epoch": 20.503276539973786, + "grad_norm": 0.2871626913547516, + "learning_rate": 0.0006, + "loss": 3.945425033569336, + "step": 1476 + }, + { + "epoch": 20.51725644386195, + "grad_norm": 0.2396184206008911, + "learning_rate": 0.0006, + "loss": 3.964290142059326, + "step": 1477 + }, + { + "epoch": 20.53123634775011, + "grad_norm": 0.21942107379436493, + "learning_rate": 0.0006, + "loss": 3.910101890563965, + "step": 1478 + }, + { + "epoch": 20.54521625163827, + "grad_norm": 0.22193685173988342, + "learning_rate": 0.0006, + "loss": 3.914005756378174, + "step": 1479 + }, + { + "epoch": 20.55919615552643, + "grad_norm": 0.20207515358924866, + "learning_rate": 0.0006, + "loss": 3.9575581550598145, + "step": 1480 + }, + { + "epoch": 20.573176059414592, + "grad_norm": 0.17855247855186462, + "learning_rate": 0.0006, + "loss": 3.941490411758423, + "step": 1481 + }, + { + "epoch": 20.587155963302752, + "grad_norm": 0.21268485486507416, + "learning_rate": 0.0006, + "loss": 3.94045352935791, + "step": 1482 + }, + { + "epoch": 20.601135867190912, + "grad_norm": 0.24890053272247314, + "learning_rate": 0.0006, + "loss": 3.932961940765381, + "step": 1483 + }, + { + "epoch": 20.615115771079076, + "grad_norm": 0.23771314322948456, + "learning_rate": 0.0006, + "loss": 3.9067630767822266, + "step": 1484 + }, + { + "epoch": 20.629095674967235, + "grad_norm": 0.20990237593650818, + "learning_rate": 0.0006, + "loss": 3.9476752281188965, + "step": 1485 + }, + { + "epoch": 20.643075578855395, + "grad_norm": 0.20058798789978027, + "learning_rate": 0.0006, + "loss": 3.9350547790527344, + "step": 1486 + }, + { + "epoch": 20.657055482743555, + "grad_norm": 0.1953001767396927, + "learning_rate": 0.0006, + "loss": 3.9437222480773926, + "step": 1487 + }, + { + "epoch": 20.67103538663172, + "grad_norm": 0.18748535215854645, + "learning_rate": 0.0006, + "loss": 3.9336047172546387, + "step": 1488 + }, + { + "epoch": 20.68501529051988, + "grad_norm": 0.18874801695346832, + "learning_rate": 0.0006, + "loss": 3.9042580127716064, + "step": 1489 + }, + { + "epoch": 20.698995194408038, + "grad_norm": 0.1844169795513153, + "learning_rate": 0.0006, + "loss": 3.9302420616149902, + "step": 1490 + }, + { + "epoch": 20.712975098296198, + "grad_norm": 0.18519413471221924, + "learning_rate": 0.0006, + "loss": 3.9527437686920166, + "step": 1491 + }, + { + "epoch": 20.72695500218436, + "grad_norm": 0.20084598660469055, + "learning_rate": 0.0006, + "loss": 3.9161760807037354, + "step": 1492 + }, + { + "epoch": 20.74093490607252, + "grad_norm": 0.2015734612941742, + "learning_rate": 0.0006, + "loss": 3.9466545581817627, + "step": 1493 + }, + { + "epoch": 20.75491480996068, + "grad_norm": 0.2210122048854828, + "learning_rate": 0.0006, + "loss": 3.8994693756103516, + "step": 1494 + }, + { + "epoch": 20.76889471384884, + "grad_norm": 0.23019762337207794, + "learning_rate": 0.0006, + "loss": 3.93685245513916, + "step": 1495 + }, + { + "epoch": 20.782874617737004, + "grad_norm": 0.21246281266212463, + "learning_rate": 0.0006, + "loss": 3.9499399662017822, + "step": 1496 + }, + { + "epoch": 20.796854521625164, + "grad_norm": 0.21142810583114624, + "learning_rate": 0.0006, + "loss": 3.9317150115966797, + "step": 1497 + }, + { + "epoch": 20.810834425513324, + "grad_norm": 0.20230524241924286, + "learning_rate": 0.0006, + "loss": 3.9389750957489014, + "step": 1498 + }, + { + "epoch": 20.824814329401484, + "grad_norm": 0.21096977591514587, + "learning_rate": 0.0006, + "loss": 3.9325194358825684, + "step": 1499 + }, + { + "epoch": 20.838794233289647, + "grad_norm": 0.2309989333152771, + "learning_rate": 0.0006, + "loss": 3.943641185760498, + "step": 1500 + }, + { + "epoch": 20.852774137177807, + "grad_norm": 0.2016306221485138, + "learning_rate": 0.0006, + "loss": 3.986043930053711, + "step": 1501 + }, + { + "epoch": 20.866754041065967, + "grad_norm": 0.2107970118522644, + "learning_rate": 0.0006, + "loss": 3.9219160079956055, + "step": 1502 + }, + { + "epoch": 20.88073394495413, + "grad_norm": 0.21580125391483307, + "learning_rate": 0.0006, + "loss": 3.942014694213867, + "step": 1503 + }, + { + "epoch": 20.89471384884229, + "grad_norm": 0.21348726749420166, + "learning_rate": 0.0006, + "loss": 3.9389920234680176, + "step": 1504 + }, + { + "epoch": 20.90869375273045, + "grad_norm": 0.23094943165779114, + "learning_rate": 0.0006, + "loss": 3.952993392944336, + "step": 1505 + }, + { + "epoch": 20.92267365661861, + "grad_norm": 0.22431740164756775, + "learning_rate": 0.0006, + "loss": 3.897671937942505, + "step": 1506 + }, + { + "epoch": 20.936653560506773, + "grad_norm": 0.20056353509426117, + "learning_rate": 0.0006, + "loss": 3.9100005626678467, + "step": 1507 + }, + { + "epoch": 20.950633464394933, + "grad_norm": 0.20604434609413147, + "learning_rate": 0.0006, + "loss": 3.9486045837402344, + "step": 1508 + }, + { + "epoch": 20.964613368283093, + "grad_norm": 0.22979380190372467, + "learning_rate": 0.0006, + "loss": 3.977163553237915, + "step": 1509 + }, + { + "epoch": 20.978593272171253, + "grad_norm": 0.2421523779630661, + "learning_rate": 0.0006, + "loss": 3.9216256141662598, + "step": 1510 + }, + { + "epoch": 20.992573176059416, + "grad_norm": 0.25776705145835876, + "learning_rate": 0.0006, + "loss": 3.9221739768981934, + "step": 1511 + }, + { + "epoch": 21.0, + "grad_norm": 0.2750694751739502, + "learning_rate": 0.0006, + "loss": 3.938098907470703, + "step": 1512 + }, + { + "epoch": 21.0, + "eval_loss": 4.159763336181641, + "eval_runtime": 44.8663, + "eval_samples_per_second": 54.428, + "eval_steps_per_second": 3.41, + "step": 1512 + }, + { + "epoch": 21.01397990388816, + "grad_norm": 0.24513043463230133, + "learning_rate": 0.0006, + "loss": 3.8939385414123535, + "step": 1513 + }, + { + "epoch": 21.027959807776323, + "grad_norm": 0.22209352254867554, + "learning_rate": 0.0006, + "loss": 3.9044857025146484, + "step": 1514 + }, + { + "epoch": 21.041939711664483, + "grad_norm": 0.22437648475170135, + "learning_rate": 0.0006, + "loss": 3.9325196743011475, + "step": 1515 + }, + { + "epoch": 21.055919615552643, + "grad_norm": 0.21168062090873718, + "learning_rate": 0.0006, + "loss": 3.882176637649536, + "step": 1516 + }, + { + "epoch": 21.069899519440803, + "grad_norm": 0.22334499657154083, + "learning_rate": 0.0006, + "loss": 3.8978934288024902, + "step": 1517 + }, + { + "epoch": 21.083879423328966, + "grad_norm": 0.21038010716438293, + "learning_rate": 0.0006, + "loss": 3.8807029724121094, + "step": 1518 + }, + { + "epoch": 21.097859327217126, + "grad_norm": 0.2243613600730896, + "learning_rate": 0.0006, + "loss": 3.924865961074829, + "step": 1519 + }, + { + "epoch": 21.111839231105286, + "grad_norm": 0.2535616159439087, + "learning_rate": 0.0006, + "loss": 3.9288227558135986, + "step": 1520 + }, + { + "epoch": 21.125819134993446, + "grad_norm": 0.2782756984233856, + "learning_rate": 0.0006, + "loss": 3.908233642578125, + "step": 1521 + }, + { + "epoch": 21.13979903888161, + "grad_norm": 0.2586214542388916, + "learning_rate": 0.0006, + "loss": 3.9151182174682617, + "step": 1522 + }, + { + "epoch": 21.15377894276977, + "grad_norm": 0.22465091943740845, + "learning_rate": 0.0006, + "loss": 3.9209084510803223, + "step": 1523 + }, + { + "epoch": 21.16775884665793, + "grad_norm": 0.2588018774986267, + "learning_rate": 0.0006, + "loss": 3.9295971393585205, + "step": 1524 + }, + { + "epoch": 21.18173875054609, + "grad_norm": 0.2637675702571869, + "learning_rate": 0.0006, + "loss": 3.9353199005126953, + "step": 1525 + }, + { + "epoch": 21.195718654434252, + "grad_norm": 0.2806383967399597, + "learning_rate": 0.0006, + "loss": 3.922337770462036, + "step": 1526 + }, + { + "epoch": 21.209698558322412, + "grad_norm": 0.27103501558303833, + "learning_rate": 0.0006, + "loss": 3.8811073303222656, + "step": 1527 + }, + { + "epoch": 21.22367846221057, + "grad_norm": 0.27203720808029175, + "learning_rate": 0.0006, + "loss": 3.9036178588867188, + "step": 1528 + }, + { + "epoch": 21.23765836609873, + "grad_norm": 0.2783355712890625, + "learning_rate": 0.0006, + "loss": 3.885456085205078, + "step": 1529 + }, + { + "epoch": 21.251638269986895, + "grad_norm": 0.2884930968284607, + "learning_rate": 0.0006, + "loss": 3.8936941623687744, + "step": 1530 + }, + { + "epoch": 21.265618173875055, + "grad_norm": 0.2829558849334717, + "learning_rate": 0.0006, + "loss": 3.927624225616455, + "step": 1531 + }, + { + "epoch": 21.279598077763215, + "grad_norm": 0.2809497117996216, + "learning_rate": 0.0006, + "loss": 3.8896753787994385, + "step": 1532 + }, + { + "epoch": 21.293577981651374, + "grad_norm": 0.27037671208381653, + "learning_rate": 0.0006, + "loss": 3.91316294670105, + "step": 1533 + }, + { + "epoch": 21.307557885539538, + "grad_norm": 0.310051292181015, + "learning_rate": 0.0006, + "loss": 3.9137332439422607, + "step": 1534 + }, + { + "epoch": 21.321537789427698, + "grad_norm": 0.30489876866340637, + "learning_rate": 0.0006, + "loss": 3.9088284969329834, + "step": 1535 + }, + { + "epoch": 21.335517693315857, + "grad_norm": 0.2607756555080414, + "learning_rate": 0.0006, + "loss": 3.9097847938537598, + "step": 1536 + }, + { + "epoch": 21.34949759720402, + "grad_norm": 0.2460775375366211, + "learning_rate": 0.0006, + "loss": 3.941211700439453, + "step": 1537 + }, + { + "epoch": 21.36347750109218, + "grad_norm": 0.24271734058856964, + "learning_rate": 0.0006, + "loss": 3.9140594005584717, + "step": 1538 + }, + { + "epoch": 21.37745740498034, + "grad_norm": 0.20012645423412323, + "learning_rate": 0.0006, + "loss": 3.888446807861328, + "step": 1539 + }, + { + "epoch": 21.3914373088685, + "grad_norm": 0.2196308672428131, + "learning_rate": 0.0006, + "loss": 3.9153785705566406, + "step": 1540 + }, + { + "epoch": 21.405417212756664, + "grad_norm": 0.22184589505195618, + "learning_rate": 0.0006, + "loss": 3.91996431350708, + "step": 1541 + }, + { + "epoch": 21.419397116644824, + "grad_norm": 0.22947315871715546, + "learning_rate": 0.0006, + "loss": 3.9268412590026855, + "step": 1542 + }, + { + "epoch": 21.433377020532983, + "grad_norm": 0.22275054454803467, + "learning_rate": 0.0006, + "loss": 3.909275531768799, + "step": 1543 + }, + { + "epoch": 21.447356924421143, + "grad_norm": 0.23103971779346466, + "learning_rate": 0.0006, + "loss": 3.925635814666748, + "step": 1544 + }, + { + "epoch": 21.461336828309307, + "grad_norm": 0.23379720747470856, + "learning_rate": 0.0006, + "loss": 3.926647186279297, + "step": 1545 + }, + { + "epoch": 21.475316732197467, + "grad_norm": 0.2244282215833664, + "learning_rate": 0.0006, + "loss": 3.9428000450134277, + "step": 1546 + }, + { + "epoch": 21.489296636085626, + "grad_norm": 0.22773298621177673, + "learning_rate": 0.0006, + "loss": 3.9378256797790527, + "step": 1547 + }, + { + "epoch": 21.503276539973786, + "grad_norm": 0.1918657273054123, + "learning_rate": 0.0006, + "loss": 3.904022216796875, + "step": 1548 + }, + { + "epoch": 21.51725644386195, + "grad_norm": 0.18415570259094238, + "learning_rate": 0.0006, + "loss": 3.9105122089385986, + "step": 1549 + }, + { + "epoch": 21.53123634775011, + "grad_norm": 0.22141380608081818, + "learning_rate": 0.0006, + "loss": 3.9153857231140137, + "step": 1550 + }, + { + "epoch": 21.54521625163827, + "grad_norm": 0.22533352673053741, + "learning_rate": 0.0006, + "loss": 3.9148974418640137, + "step": 1551 + }, + { + "epoch": 21.55919615552643, + "grad_norm": 0.2124762088060379, + "learning_rate": 0.0006, + "loss": 3.926311731338501, + "step": 1552 + }, + { + "epoch": 21.573176059414592, + "grad_norm": 0.239680215716362, + "learning_rate": 0.0006, + "loss": 3.9260334968566895, + "step": 1553 + }, + { + "epoch": 21.587155963302752, + "grad_norm": 0.24158740043640137, + "learning_rate": 0.0006, + "loss": 3.933223247528076, + "step": 1554 + }, + { + "epoch": 21.601135867190912, + "grad_norm": 0.2216576784849167, + "learning_rate": 0.0006, + "loss": 3.9065442085266113, + "step": 1555 + }, + { + "epoch": 21.615115771079076, + "grad_norm": 0.20099912583827972, + "learning_rate": 0.0006, + "loss": 3.923278570175171, + "step": 1556 + }, + { + "epoch": 21.629095674967235, + "grad_norm": 0.2337288111448288, + "learning_rate": 0.0006, + "loss": 3.92032527923584, + "step": 1557 + }, + { + "epoch": 21.643075578855395, + "grad_norm": 0.23574814200401306, + "learning_rate": 0.0006, + "loss": 3.896244525909424, + "step": 1558 + }, + { + "epoch": 21.657055482743555, + "grad_norm": 0.21338573098182678, + "learning_rate": 0.0006, + "loss": 3.930345058441162, + "step": 1559 + }, + { + "epoch": 21.67103538663172, + "grad_norm": 0.2375067174434662, + "learning_rate": 0.0006, + "loss": 3.864104986190796, + "step": 1560 + }, + { + "epoch": 21.68501529051988, + "grad_norm": 0.22490349411964417, + "learning_rate": 0.0006, + "loss": 3.883296012878418, + "step": 1561 + }, + { + "epoch": 21.698995194408038, + "grad_norm": 0.23021313548088074, + "learning_rate": 0.0006, + "loss": 3.915200710296631, + "step": 1562 + }, + { + "epoch": 21.712975098296198, + "grad_norm": 0.22590875625610352, + "learning_rate": 0.0006, + "loss": 3.903597354888916, + "step": 1563 + }, + { + "epoch": 21.72695500218436, + "grad_norm": 0.19066260755062103, + "learning_rate": 0.0006, + "loss": 3.9162631034851074, + "step": 1564 + }, + { + "epoch": 21.74093490607252, + "grad_norm": 0.18134327232837677, + "learning_rate": 0.0006, + "loss": 3.9167914390563965, + "step": 1565 + }, + { + "epoch": 21.75491480996068, + "grad_norm": 0.1782190054655075, + "learning_rate": 0.0006, + "loss": 3.900925636291504, + "step": 1566 + }, + { + "epoch": 21.76889471384884, + "grad_norm": 0.19034099578857422, + "learning_rate": 0.0006, + "loss": 3.896559238433838, + "step": 1567 + }, + { + "epoch": 21.782874617737004, + "grad_norm": 0.21509577333927155, + "learning_rate": 0.0006, + "loss": 3.891681671142578, + "step": 1568 + }, + { + "epoch": 21.796854521625164, + "grad_norm": 0.2370351105928421, + "learning_rate": 0.0006, + "loss": 3.886570453643799, + "step": 1569 + }, + { + "epoch": 21.810834425513324, + "grad_norm": 0.25546324253082275, + "learning_rate": 0.0006, + "loss": 3.9247193336486816, + "step": 1570 + }, + { + "epoch": 21.824814329401484, + "grad_norm": 0.2513384222984314, + "learning_rate": 0.0006, + "loss": 3.9120583534240723, + "step": 1571 + }, + { + "epoch": 21.838794233289647, + "grad_norm": 0.24691323935985565, + "learning_rate": 0.0006, + "loss": 3.9144935607910156, + "step": 1572 + }, + { + "epoch": 21.852774137177807, + "grad_norm": 0.2573968172073364, + "learning_rate": 0.0006, + "loss": 3.9517531394958496, + "step": 1573 + }, + { + "epoch": 21.866754041065967, + "grad_norm": 0.25461453199386597, + "learning_rate": 0.0006, + "loss": 3.93508243560791, + "step": 1574 + }, + { + "epoch": 21.88073394495413, + "grad_norm": 0.23756568133831024, + "learning_rate": 0.0006, + "loss": 3.8885269165039062, + "step": 1575 + }, + { + "epoch": 21.89471384884229, + "grad_norm": 0.2193172425031662, + "learning_rate": 0.0006, + "loss": 3.9103426933288574, + "step": 1576 + }, + { + "epoch": 21.90869375273045, + "grad_norm": 0.2350149303674698, + "learning_rate": 0.0006, + "loss": 3.9399590492248535, + "step": 1577 + }, + { + "epoch": 21.92267365661861, + "grad_norm": 0.23759333789348602, + "learning_rate": 0.0006, + "loss": 3.9433584213256836, + "step": 1578 + }, + { + "epoch": 21.936653560506773, + "grad_norm": 0.21108432114124298, + "learning_rate": 0.0006, + "loss": 3.9241819381713867, + "step": 1579 + }, + { + "epoch": 21.950633464394933, + "grad_norm": 0.22088949382305145, + "learning_rate": 0.0006, + "loss": 3.9231910705566406, + "step": 1580 + }, + { + "epoch": 21.964613368283093, + "grad_norm": 0.22125045955181122, + "learning_rate": 0.0006, + "loss": 3.896329164505005, + "step": 1581 + }, + { + "epoch": 21.978593272171253, + "grad_norm": 0.20745202898979187, + "learning_rate": 0.0006, + "loss": 3.8920536041259766, + "step": 1582 + }, + { + "epoch": 21.992573176059416, + "grad_norm": 0.2409721463918686, + "learning_rate": 0.0006, + "loss": 3.9061317443847656, + "step": 1583 + }, + { + "epoch": 22.0, + "grad_norm": 0.2669669985771179, + "learning_rate": 0.0006, + "loss": 3.922062397003174, + "step": 1584 + }, + { + "epoch": 22.0, + "eval_loss": 4.140966415405273, + "eval_runtime": 46.7132, + "eval_samples_per_second": 52.276, + "eval_steps_per_second": 3.275, + "step": 1584 + }, + { + "epoch": 22.01397990388816, + "grad_norm": 0.26155969500541687, + "learning_rate": 0.0006, + "loss": 3.888944625854492, + "step": 1585 + }, + { + "epoch": 22.027959807776323, + "grad_norm": 0.2579149007797241, + "learning_rate": 0.0006, + "loss": 3.8924355506896973, + "step": 1586 + }, + { + "epoch": 22.041939711664483, + "grad_norm": 0.2429896742105484, + "learning_rate": 0.0006, + "loss": 3.8714070320129395, + "step": 1587 + }, + { + "epoch": 22.055919615552643, + "grad_norm": 0.23497673869132996, + "learning_rate": 0.0006, + "loss": 3.905089855194092, + "step": 1588 + }, + { + "epoch": 22.069899519440803, + "grad_norm": 0.24074940383434296, + "learning_rate": 0.0006, + "loss": 3.886845111846924, + "step": 1589 + }, + { + "epoch": 22.083879423328966, + "grad_norm": 0.2226274162530899, + "learning_rate": 0.0006, + "loss": 3.8554329872131348, + "step": 1590 + }, + { + "epoch": 22.097859327217126, + "grad_norm": 0.22924423217773438, + "learning_rate": 0.0006, + "loss": 3.8914356231689453, + "step": 1591 + }, + { + "epoch": 22.111839231105286, + "grad_norm": 0.2459387183189392, + "learning_rate": 0.0006, + "loss": 3.902522087097168, + "step": 1592 + }, + { + "epoch": 22.125819134993446, + "grad_norm": 0.2704590857028961, + "learning_rate": 0.0006, + "loss": 3.896497964859009, + "step": 1593 + }, + { + "epoch": 22.13979903888161, + "grad_norm": 0.2848219871520996, + "learning_rate": 0.0006, + "loss": 3.88423228263855, + "step": 1594 + }, + { + "epoch": 22.15377894276977, + "grad_norm": 0.22996552288532257, + "learning_rate": 0.0006, + "loss": 3.9034953117370605, + "step": 1595 + }, + { + "epoch": 22.16775884665793, + "grad_norm": 0.2117270529270172, + "learning_rate": 0.0006, + "loss": 3.888279914855957, + "step": 1596 + }, + { + "epoch": 22.18173875054609, + "grad_norm": 0.19724160432815552, + "learning_rate": 0.0006, + "loss": 3.860525131225586, + "step": 1597 + }, + { + "epoch": 22.195718654434252, + "grad_norm": 0.2012624740600586, + "learning_rate": 0.0006, + "loss": 3.8930106163024902, + "step": 1598 + }, + { + "epoch": 22.209698558322412, + "grad_norm": 0.20243871212005615, + "learning_rate": 0.0006, + "loss": 3.8727619647979736, + "step": 1599 + }, + { + "epoch": 22.22367846221057, + "grad_norm": 0.21737465262413025, + "learning_rate": 0.0006, + "loss": 3.887969493865967, + "step": 1600 + }, + { + "epoch": 22.23765836609873, + "grad_norm": 0.23969845473766327, + "learning_rate": 0.0006, + "loss": 3.8629722595214844, + "step": 1601 + }, + { + "epoch": 22.251638269986895, + "grad_norm": 0.22874902188777924, + "learning_rate": 0.0006, + "loss": 3.9135584831237793, + "step": 1602 + }, + { + "epoch": 22.265618173875055, + "grad_norm": 0.209506556391716, + "learning_rate": 0.0006, + "loss": 3.8734190464019775, + "step": 1603 + }, + { + "epoch": 22.279598077763215, + "grad_norm": 0.22235789895057678, + "learning_rate": 0.0006, + "loss": 3.884854793548584, + "step": 1604 + }, + { + "epoch": 22.293577981651374, + "grad_norm": 0.21975041925907135, + "learning_rate": 0.0006, + "loss": 3.8860888481140137, + "step": 1605 + }, + { + "epoch": 22.307557885539538, + "grad_norm": 0.21474459767341614, + "learning_rate": 0.0006, + "loss": 3.9052200317382812, + "step": 1606 + }, + { + "epoch": 22.321537789427698, + "grad_norm": 0.2103329747915268, + "learning_rate": 0.0006, + "loss": 3.8516340255737305, + "step": 1607 + }, + { + "epoch": 22.335517693315857, + "grad_norm": 0.1981191635131836, + "learning_rate": 0.0006, + "loss": 3.9017434120178223, + "step": 1608 + }, + { + "epoch": 22.34949759720402, + "grad_norm": 0.20679591596126556, + "learning_rate": 0.0006, + "loss": 3.889885425567627, + "step": 1609 + }, + { + "epoch": 22.36347750109218, + "grad_norm": 0.20809867978096008, + "learning_rate": 0.0006, + "loss": 3.881868362426758, + "step": 1610 + }, + { + "epoch": 22.37745740498034, + "grad_norm": 0.21394680440425873, + "learning_rate": 0.0006, + "loss": 3.89980411529541, + "step": 1611 + }, + { + "epoch": 22.3914373088685, + "grad_norm": 0.2334284782409668, + "learning_rate": 0.0006, + "loss": 3.8672266006469727, + "step": 1612 + }, + { + "epoch": 22.405417212756664, + "grad_norm": 0.26521918177604675, + "learning_rate": 0.0006, + "loss": 3.8918118476867676, + "step": 1613 + }, + { + "epoch": 22.419397116644824, + "grad_norm": 0.2652994394302368, + "learning_rate": 0.0006, + "loss": 3.8683271408081055, + "step": 1614 + }, + { + "epoch": 22.433377020532983, + "grad_norm": 0.2568066716194153, + "learning_rate": 0.0006, + "loss": 3.892523765563965, + "step": 1615 + }, + { + "epoch": 22.447356924421143, + "grad_norm": 0.260052353143692, + "learning_rate": 0.0006, + "loss": 3.897305488586426, + "step": 1616 + }, + { + "epoch": 22.461336828309307, + "grad_norm": 0.2744271457195282, + "learning_rate": 0.0006, + "loss": 3.8962221145629883, + "step": 1617 + }, + { + "epoch": 22.475316732197467, + "grad_norm": 0.23755787312984467, + "learning_rate": 0.0006, + "loss": 3.888184070587158, + "step": 1618 + }, + { + "epoch": 22.489296636085626, + "grad_norm": 0.2515312135219574, + "learning_rate": 0.0006, + "loss": 3.8946003913879395, + "step": 1619 + }, + { + "epoch": 22.503276539973786, + "grad_norm": 0.24835044145584106, + "learning_rate": 0.0006, + "loss": 3.8711423873901367, + "step": 1620 + }, + { + "epoch": 22.51725644386195, + "grad_norm": 0.22615326941013336, + "learning_rate": 0.0006, + "loss": 3.8878846168518066, + "step": 1621 + }, + { + "epoch": 22.53123634775011, + "grad_norm": 0.20482423901557922, + "learning_rate": 0.0006, + "loss": 3.8782598972320557, + "step": 1622 + }, + { + "epoch": 22.54521625163827, + "grad_norm": 0.20436473190784454, + "learning_rate": 0.0006, + "loss": 3.9075279235839844, + "step": 1623 + }, + { + "epoch": 22.55919615552643, + "grad_norm": 0.2066277265548706, + "learning_rate": 0.0006, + "loss": 3.89908766746521, + "step": 1624 + }, + { + "epoch": 22.573176059414592, + "grad_norm": 0.20735307037830353, + "learning_rate": 0.0006, + "loss": 3.865204334259033, + "step": 1625 + }, + { + "epoch": 22.587155963302752, + "grad_norm": 0.20955748856067657, + "learning_rate": 0.0006, + "loss": 3.8835532665252686, + "step": 1626 + }, + { + "epoch": 22.601135867190912, + "grad_norm": 0.21354222297668457, + "learning_rate": 0.0006, + "loss": 3.9012551307678223, + "step": 1627 + }, + { + "epoch": 22.615115771079076, + "grad_norm": 0.2075091004371643, + "learning_rate": 0.0006, + "loss": 3.8733482360839844, + "step": 1628 + }, + { + "epoch": 22.629095674967235, + "grad_norm": 0.20207874476909637, + "learning_rate": 0.0006, + "loss": 3.9193859100341797, + "step": 1629 + }, + { + "epoch": 22.643075578855395, + "grad_norm": 0.21863923966884613, + "learning_rate": 0.0006, + "loss": 3.883518695831299, + "step": 1630 + }, + { + "epoch": 22.657055482743555, + "grad_norm": 0.22117522358894348, + "learning_rate": 0.0006, + "loss": 3.9163284301757812, + "step": 1631 + }, + { + "epoch": 22.67103538663172, + "grad_norm": 0.2078622728586197, + "learning_rate": 0.0006, + "loss": 3.868274688720703, + "step": 1632 + }, + { + "epoch": 22.68501529051988, + "grad_norm": 0.22745893895626068, + "learning_rate": 0.0006, + "loss": 3.9171340465545654, + "step": 1633 + }, + { + "epoch": 22.698995194408038, + "grad_norm": 0.2312736064195633, + "learning_rate": 0.0006, + "loss": 3.9487013816833496, + "step": 1634 + }, + { + "epoch": 22.712975098296198, + "grad_norm": 0.20491497218608856, + "learning_rate": 0.0006, + "loss": 3.91833758354187, + "step": 1635 + }, + { + "epoch": 22.72695500218436, + "grad_norm": 0.1899084597826004, + "learning_rate": 0.0006, + "loss": 3.876225709915161, + "step": 1636 + }, + { + "epoch": 22.74093490607252, + "grad_norm": 0.18581682443618774, + "learning_rate": 0.0006, + "loss": 3.8667988777160645, + "step": 1637 + }, + { + "epoch": 22.75491480996068, + "grad_norm": 0.19855599105358124, + "learning_rate": 0.0006, + "loss": 3.900789260864258, + "step": 1638 + }, + { + "epoch": 22.76889471384884, + "grad_norm": 0.19951458275318146, + "learning_rate": 0.0006, + "loss": 3.8850367069244385, + "step": 1639 + }, + { + "epoch": 22.782874617737004, + "grad_norm": 0.22802744805812836, + "learning_rate": 0.0006, + "loss": 3.9181363582611084, + "step": 1640 + }, + { + "epoch": 22.796854521625164, + "grad_norm": 0.24279919266700745, + "learning_rate": 0.0006, + "loss": 3.8843770027160645, + "step": 1641 + }, + { + "epoch": 22.810834425513324, + "grad_norm": 0.23554913699626923, + "learning_rate": 0.0006, + "loss": 3.8802413940429688, + "step": 1642 + }, + { + "epoch": 22.824814329401484, + "grad_norm": 0.22343270480632782, + "learning_rate": 0.0006, + "loss": 3.8524107933044434, + "step": 1643 + }, + { + "epoch": 22.838794233289647, + "grad_norm": 0.2185724526643753, + "learning_rate": 0.0006, + "loss": 3.9117047786712646, + "step": 1644 + }, + { + "epoch": 22.852774137177807, + "grad_norm": 0.2114841341972351, + "learning_rate": 0.0006, + "loss": 3.90325927734375, + "step": 1645 + }, + { + "epoch": 22.866754041065967, + "grad_norm": 0.21072550117969513, + "learning_rate": 0.0006, + "loss": 3.8988137245178223, + "step": 1646 + }, + { + "epoch": 22.88073394495413, + "grad_norm": 0.2250078171491623, + "learning_rate": 0.0006, + "loss": 3.9201531410217285, + "step": 1647 + }, + { + "epoch": 22.89471384884229, + "grad_norm": 0.20928071439266205, + "learning_rate": 0.0006, + "loss": 3.91666316986084, + "step": 1648 + }, + { + "epoch": 22.90869375273045, + "grad_norm": 0.24096311628818512, + "learning_rate": 0.0006, + "loss": 3.8797364234924316, + "step": 1649 + }, + { + "epoch": 22.92267365661861, + "grad_norm": 0.2591194212436676, + "learning_rate": 0.0006, + "loss": 3.883273124694824, + "step": 1650 + }, + { + "epoch": 22.936653560506773, + "grad_norm": 0.27342668175697327, + "learning_rate": 0.0006, + "loss": 3.8645026683807373, + "step": 1651 + }, + { + "epoch": 22.950633464394933, + "grad_norm": 0.2448573112487793, + "learning_rate": 0.0006, + "loss": 3.9093551635742188, + "step": 1652 + }, + { + "epoch": 22.964613368283093, + "grad_norm": 0.19899503886699677, + "learning_rate": 0.0006, + "loss": 3.9001057147979736, + "step": 1653 + }, + { + "epoch": 22.978593272171253, + "grad_norm": 0.2023746520280838, + "learning_rate": 0.0006, + "loss": 3.886474370956421, + "step": 1654 + }, + { + "epoch": 22.992573176059416, + "grad_norm": 0.19894269108772278, + "learning_rate": 0.0006, + "loss": 3.9004204273223877, + "step": 1655 + }, + { + "epoch": 23.0, + "grad_norm": 0.2401709407567978, + "learning_rate": 0.0006, + "loss": 3.8665566444396973, + "step": 1656 + }, + { + "epoch": 23.0, + "eval_loss": 4.112459659576416, + "eval_runtime": 44.8325, + "eval_samples_per_second": 54.469, + "eval_steps_per_second": 3.413, + "step": 1656 + }, + { + "epoch": 23.01397990388816, + "grad_norm": 0.22662921249866486, + "learning_rate": 0.0006, + "loss": 3.853271961212158, + "step": 1657 + }, + { + "epoch": 23.027959807776323, + "grad_norm": 0.24406856298446655, + "learning_rate": 0.0006, + "loss": 3.8691890239715576, + "step": 1658 + }, + { + "epoch": 23.041939711664483, + "grad_norm": 0.2266651839017868, + "learning_rate": 0.0006, + "loss": 3.838599681854248, + "step": 1659 + }, + { + "epoch": 23.055919615552643, + "grad_norm": 0.22303511202335358, + "learning_rate": 0.0006, + "loss": 3.8678267002105713, + "step": 1660 + }, + { + "epoch": 23.069899519440803, + "grad_norm": 0.2272164225578308, + "learning_rate": 0.0006, + "loss": 3.9045681953430176, + "step": 1661 + }, + { + "epoch": 23.083879423328966, + "grad_norm": 0.25004875659942627, + "learning_rate": 0.0006, + "loss": 3.856503963470459, + "step": 1662 + }, + { + "epoch": 23.097859327217126, + "grad_norm": 0.26016247272491455, + "learning_rate": 0.0006, + "loss": 3.878587007522583, + "step": 1663 + }, + { + "epoch": 23.111839231105286, + "grad_norm": 0.28539901971817017, + "learning_rate": 0.0006, + "loss": 3.864248514175415, + "step": 1664 + }, + { + "epoch": 23.125819134993446, + "grad_norm": 0.27504822611808777, + "learning_rate": 0.0006, + "loss": 3.821448802947998, + "step": 1665 + }, + { + "epoch": 23.13979903888161, + "grad_norm": 0.238910973072052, + "learning_rate": 0.0006, + "loss": 3.8635847568511963, + "step": 1666 + }, + { + "epoch": 23.15377894276977, + "grad_norm": 0.24179652333259583, + "learning_rate": 0.0006, + "loss": 3.8339638710021973, + "step": 1667 + }, + { + "epoch": 23.16775884665793, + "grad_norm": 0.2199544757604599, + "learning_rate": 0.0006, + "loss": 3.868396759033203, + "step": 1668 + }, + { + "epoch": 23.18173875054609, + "grad_norm": 0.1965002566576004, + "learning_rate": 0.0006, + "loss": 3.8761439323425293, + "step": 1669 + }, + { + "epoch": 23.195718654434252, + "grad_norm": 0.20426614582538605, + "learning_rate": 0.0006, + "loss": 3.822899580001831, + "step": 1670 + }, + { + "epoch": 23.209698558322412, + "grad_norm": 0.2197263389825821, + "learning_rate": 0.0006, + "loss": 3.887728452682495, + "step": 1671 + }, + { + "epoch": 23.22367846221057, + "grad_norm": 0.22844573855400085, + "learning_rate": 0.0006, + "loss": 3.8550517559051514, + "step": 1672 + }, + { + "epoch": 23.23765836609873, + "grad_norm": 0.2347746044397354, + "learning_rate": 0.0006, + "loss": 3.903310537338257, + "step": 1673 + }, + { + "epoch": 23.251638269986895, + "grad_norm": 0.24167625606060028, + "learning_rate": 0.0006, + "loss": 3.8397774696350098, + "step": 1674 + }, + { + "epoch": 23.265618173875055, + "grad_norm": 0.2691650688648224, + "learning_rate": 0.0006, + "loss": 3.853254795074463, + "step": 1675 + }, + { + "epoch": 23.279598077763215, + "grad_norm": 0.29421621561050415, + "learning_rate": 0.0006, + "loss": 3.86065411567688, + "step": 1676 + }, + { + "epoch": 23.293577981651374, + "grad_norm": 0.31074345111846924, + "learning_rate": 0.0006, + "loss": 3.8716742992401123, + "step": 1677 + }, + { + "epoch": 23.307557885539538, + "grad_norm": 0.3044569194316864, + "learning_rate": 0.0006, + "loss": 3.8738951683044434, + "step": 1678 + }, + { + "epoch": 23.321537789427698, + "grad_norm": 0.30496764183044434, + "learning_rate": 0.0006, + "loss": 3.884446620941162, + "step": 1679 + }, + { + "epoch": 23.335517693315857, + "grad_norm": 0.31122756004333496, + "learning_rate": 0.0006, + "loss": 3.878495693206787, + "step": 1680 + }, + { + "epoch": 23.34949759720402, + "grad_norm": 0.32268181443214417, + "learning_rate": 0.0006, + "loss": 3.8793649673461914, + "step": 1681 + }, + { + "epoch": 23.36347750109218, + "grad_norm": 0.3297140598297119, + "learning_rate": 0.0006, + "loss": 3.87484073638916, + "step": 1682 + }, + { + "epoch": 23.37745740498034, + "grad_norm": 0.26007479429244995, + "learning_rate": 0.0006, + "loss": 3.8510947227478027, + "step": 1683 + }, + { + "epoch": 23.3914373088685, + "grad_norm": 0.2627335786819458, + "learning_rate": 0.0006, + "loss": 3.8783209323883057, + "step": 1684 + }, + { + "epoch": 23.405417212756664, + "grad_norm": 0.256452739238739, + "learning_rate": 0.0006, + "loss": 3.8594281673431396, + "step": 1685 + }, + { + "epoch": 23.419397116644824, + "grad_norm": 0.23892226815223694, + "learning_rate": 0.0006, + "loss": 3.898951292037964, + "step": 1686 + }, + { + "epoch": 23.433377020532983, + "grad_norm": 0.21625587344169617, + "learning_rate": 0.0006, + "loss": 3.8679966926574707, + "step": 1687 + }, + { + "epoch": 23.447356924421143, + "grad_norm": 0.21924619376659393, + "learning_rate": 0.0006, + "loss": 3.8774075508117676, + "step": 1688 + }, + { + "epoch": 23.461336828309307, + "grad_norm": 0.21500127017498016, + "learning_rate": 0.0006, + "loss": 3.870619297027588, + "step": 1689 + }, + { + "epoch": 23.475316732197467, + "grad_norm": 0.22580556571483612, + "learning_rate": 0.0006, + "loss": 3.887722969055176, + "step": 1690 + }, + { + "epoch": 23.489296636085626, + "grad_norm": 0.2500104308128357, + "learning_rate": 0.0006, + "loss": 3.88789963722229, + "step": 1691 + }, + { + "epoch": 23.503276539973786, + "grad_norm": 0.22462762892246246, + "learning_rate": 0.0006, + "loss": 3.863997459411621, + "step": 1692 + }, + { + "epoch": 23.51725644386195, + "grad_norm": 0.21427781879901886, + "learning_rate": 0.0006, + "loss": 3.8827033042907715, + "step": 1693 + }, + { + "epoch": 23.53123634775011, + "grad_norm": 0.22278577089309692, + "learning_rate": 0.0006, + "loss": 3.8659563064575195, + "step": 1694 + }, + { + "epoch": 23.54521625163827, + "grad_norm": 0.22801144421100616, + "learning_rate": 0.0006, + "loss": 3.9031362533569336, + "step": 1695 + }, + { + "epoch": 23.55919615552643, + "grad_norm": 0.25071898102760315, + "learning_rate": 0.0006, + "loss": 3.887746810913086, + "step": 1696 + }, + { + "epoch": 23.573176059414592, + "grad_norm": 0.2564085125923157, + "learning_rate": 0.0006, + "loss": 3.8918356895446777, + "step": 1697 + }, + { + "epoch": 23.587155963302752, + "grad_norm": 0.24603120982646942, + "learning_rate": 0.0006, + "loss": 3.850416421890259, + "step": 1698 + }, + { + "epoch": 23.601135867190912, + "grad_norm": 0.20539002120494843, + "learning_rate": 0.0006, + "loss": 3.862060070037842, + "step": 1699 + }, + { + "epoch": 23.615115771079076, + "grad_norm": 0.2022249400615692, + "learning_rate": 0.0006, + "loss": 3.899008274078369, + "step": 1700 + }, + { + "epoch": 23.629095674967235, + "grad_norm": 0.2435392290353775, + "learning_rate": 0.0006, + "loss": 3.844388961791992, + "step": 1701 + }, + { + "epoch": 23.643075578855395, + "grad_norm": 0.21146756410598755, + "learning_rate": 0.0006, + "loss": 3.8972439765930176, + "step": 1702 + }, + { + "epoch": 23.657055482743555, + "grad_norm": 0.2025400996208191, + "learning_rate": 0.0006, + "loss": 3.865253448486328, + "step": 1703 + }, + { + "epoch": 23.67103538663172, + "grad_norm": 0.21129970252513885, + "learning_rate": 0.0006, + "loss": 3.8768205642700195, + "step": 1704 + }, + { + "epoch": 23.68501529051988, + "grad_norm": 0.22982284426689148, + "learning_rate": 0.0006, + "loss": 3.8792667388916016, + "step": 1705 + }, + { + "epoch": 23.698995194408038, + "grad_norm": 0.23013733327388763, + "learning_rate": 0.0006, + "loss": 3.880897045135498, + "step": 1706 + }, + { + "epoch": 23.712975098296198, + "grad_norm": 0.2277672290802002, + "learning_rate": 0.0006, + "loss": 3.8738410472869873, + "step": 1707 + }, + { + "epoch": 23.72695500218436, + "grad_norm": 0.2343369573354721, + "learning_rate": 0.0006, + "loss": 3.8587026596069336, + "step": 1708 + }, + { + "epoch": 23.74093490607252, + "grad_norm": 0.23159530758857727, + "learning_rate": 0.0006, + "loss": 3.856306552886963, + "step": 1709 + }, + { + "epoch": 23.75491480996068, + "grad_norm": 0.19541035592556, + "learning_rate": 0.0006, + "loss": 3.8294754028320312, + "step": 1710 + }, + { + "epoch": 23.76889471384884, + "grad_norm": 0.22999322414398193, + "learning_rate": 0.0006, + "loss": 3.882676124572754, + "step": 1711 + }, + { + "epoch": 23.782874617737004, + "grad_norm": 0.23442843556404114, + "learning_rate": 0.0006, + "loss": 3.8887529373168945, + "step": 1712 + }, + { + "epoch": 23.796854521625164, + "grad_norm": 0.22914239764213562, + "learning_rate": 0.0006, + "loss": 3.867673635482788, + "step": 1713 + }, + { + "epoch": 23.810834425513324, + "grad_norm": 0.20683827996253967, + "learning_rate": 0.0006, + "loss": 3.8999581336975098, + "step": 1714 + }, + { + "epoch": 23.824814329401484, + "grad_norm": 0.19281277060508728, + "learning_rate": 0.0006, + "loss": 3.8997726440429688, + "step": 1715 + }, + { + "epoch": 23.838794233289647, + "grad_norm": 0.20058563351631165, + "learning_rate": 0.0006, + "loss": 3.8583860397338867, + "step": 1716 + }, + { + "epoch": 23.852774137177807, + "grad_norm": 0.19856606423854828, + "learning_rate": 0.0006, + "loss": 3.88948392868042, + "step": 1717 + }, + { + "epoch": 23.866754041065967, + "grad_norm": 0.2099323868751526, + "learning_rate": 0.0006, + "loss": 3.878458261489868, + "step": 1718 + }, + { + "epoch": 23.88073394495413, + "grad_norm": 0.22945016622543335, + "learning_rate": 0.0006, + "loss": 3.84116268157959, + "step": 1719 + }, + { + "epoch": 23.89471384884229, + "grad_norm": 0.22646087408065796, + "learning_rate": 0.0006, + "loss": 3.9006617069244385, + "step": 1720 + }, + { + "epoch": 23.90869375273045, + "grad_norm": 0.20282860100269318, + "learning_rate": 0.0006, + "loss": 3.8781144618988037, + "step": 1721 + }, + { + "epoch": 23.92267365661861, + "grad_norm": 0.1918555349111557, + "learning_rate": 0.0006, + "loss": 3.8560891151428223, + "step": 1722 + }, + { + "epoch": 23.936653560506773, + "grad_norm": 0.19286513328552246, + "learning_rate": 0.0006, + "loss": 3.873220920562744, + "step": 1723 + }, + { + "epoch": 23.950633464394933, + "grad_norm": 0.21071338653564453, + "learning_rate": 0.0006, + "loss": 3.9147067070007324, + "step": 1724 + }, + { + "epoch": 23.964613368283093, + "grad_norm": 0.20956715941429138, + "learning_rate": 0.0006, + "loss": 3.8762729167938232, + "step": 1725 + }, + { + "epoch": 23.978593272171253, + "grad_norm": 0.23053105175495148, + "learning_rate": 0.0006, + "loss": 3.873781681060791, + "step": 1726 + }, + { + "epoch": 23.992573176059416, + "grad_norm": 0.2719029486179352, + "learning_rate": 0.0006, + "loss": 3.862342357635498, + "step": 1727 + }, + { + "epoch": 24.0, + "grad_norm": 0.2933610677719116, + "learning_rate": 0.0006, + "loss": 3.8657689094543457, + "step": 1728 + }, + { + "epoch": 24.0, + "eval_loss": 4.0959153175354, + "eval_runtime": 44.3631, + "eval_samples_per_second": 55.046, + "eval_steps_per_second": 3.449, + "step": 1728 + }, + { + "epoch": 24.01397990388816, + "grad_norm": 0.24905365705490112, + "learning_rate": 0.0006, + "loss": 3.838136911392212, + "step": 1729 + }, + { + "epoch": 24.027959807776323, + "grad_norm": 0.25948020815849304, + "learning_rate": 0.0006, + "loss": 3.8581268787384033, + "step": 1730 + }, + { + "epoch": 24.041939711664483, + "grad_norm": 0.24965140223503113, + "learning_rate": 0.0006, + "loss": 3.8628978729248047, + "step": 1731 + }, + { + "epoch": 24.055919615552643, + "grad_norm": 0.23428823053836823, + "learning_rate": 0.0006, + "loss": 3.8188819885253906, + "step": 1732 + }, + { + "epoch": 24.069899519440803, + "grad_norm": 0.22191211581230164, + "learning_rate": 0.0006, + "loss": 3.8616039752960205, + "step": 1733 + }, + { + "epoch": 24.083879423328966, + "grad_norm": 0.20257535576820374, + "learning_rate": 0.0006, + "loss": 3.8632802963256836, + "step": 1734 + }, + { + "epoch": 24.097859327217126, + "grad_norm": 0.20385196805000305, + "learning_rate": 0.0006, + "loss": 3.885817050933838, + "step": 1735 + }, + { + "epoch": 24.111839231105286, + "grad_norm": 0.19921693205833435, + "learning_rate": 0.0006, + "loss": 3.838515043258667, + "step": 1736 + }, + { + "epoch": 24.125819134993446, + "grad_norm": 0.20221556723117828, + "learning_rate": 0.0006, + "loss": 3.8585309982299805, + "step": 1737 + }, + { + "epoch": 24.13979903888161, + "grad_norm": 0.20124691724777222, + "learning_rate": 0.0006, + "loss": 3.81656551361084, + "step": 1738 + }, + { + "epoch": 24.15377894276977, + "grad_norm": 0.1810830533504486, + "learning_rate": 0.0006, + "loss": 3.841783046722412, + "step": 1739 + }, + { + "epoch": 24.16775884665793, + "grad_norm": 0.18414196372032166, + "learning_rate": 0.0006, + "loss": 3.8614797592163086, + "step": 1740 + }, + { + "epoch": 24.18173875054609, + "grad_norm": 0.18930725753307343, + "learning_rate": 0.0006, + "loss": 3.8382534980773926, + "step": 1741 + }, + { + "epoch": 24.195718654434252, + "grad_norm": 0.19658128917217255, + "learning_rate": 0.0006, + "loss": 3.881742477416992, + "step": 1742 + }, + { + "epoch": 24.209698558322412, + "grad_norm": 0.20175589621067047, + "learning_rate": 0.0006, + "loss": 3.8760581016540527, + "step": 1743 + }, + { + "epoch": 24.22367846221057, + "grad_norm": 0.19416265189647675, + "learning_rate": 0.0006, + "loss": 3.8373687267303467, + "step": 1744 + }, + { + "epoch": 24.23765836609873, + "grad_norm": 0.20206521451473236, + "learning_rate": 0.0006, + "loss": 3.8322830200195312, + "step": 1745 + }, + { + "epoch": 24.251638269986895, + "grad_norm": 0.21797429025173187, + "learning_rate": 0.0006, + "loss": 3.849905490875244, + "step": 1746 + }, + { + "epoch": 24.265618173875055, + "grad_norm": 0.21295784413814545, + "learning_rate": 0.0006, + "loss": 3.847714900970459, + "step": 1747 + }, + { + "epoch": 24.279598077763215, + "grad_norm": 0.22023876011371613, + "learning_rate": 0.0006, + "loss": 3.8221592903137207, + "step": 1748 + }, + { + "epoch": 24.293577981651374, + "grad_norm": 0.2125576138496399, + "learning_rate": 0.0006, + "loss": 3.8070976734161377, + "step": 1749 + }, + { + "epoch": 24.307557885539538, + "grad_norm": 0.18673811852931976, + "learning_rate": 0.0006, + "loss": 3.866878032684326, + "step": 1750 + }, + { + "epoch": 24.321537789427698, + "grad_norm": 0.1972627341747284, + "learning_rate": 0.0006, + "loss": 3.846404552459717, + "step": 1751 + }, + { + "epoch": 24.335517693315857, + "grad_norm": 0.21846632659435272, + "learning_rate": 0.0006, + "loss": 3.8528640270233154, + "step": 1752 + }, + { + "epoch": 24.34949759720402, + "grad_norm": 0.22234080731868744, + "learning_rate": 0.0006, + "loss": 3.8268141746520996, + "step": 1753 + }, + { + "epoch": 24.36347750109218, + "grad_norm": 0.23002761602401733, + "learning_rate": 0.0006, + "loss": 3.832444667816162, + "step": 1754 + }, + { + "epoch": 24.37745740498034, + "grad_norm": 0.22526559233665466, + "learning_rate": 0.0006, + "loss": 3.864406108856201, + "step": 1755 + }, + { + "epoch": 24.3914373088685, + "grad_norm": 0.2290039211511612, + "learning_rate": 0.0006, + "loss": 3.8449103832244873, + "step": 1756 + }, + { + "epoch": 24.405417212756664, + "grad_norm": 0.23145617544651031, + "learning_rate": 0.0006, + "loss": 3.8183751106262207, + "step": 1757 + }, + { + "epoch": 24.419397116644824, + "grad_norm": 0.24287554621696472, + "learning_rate": 0.0006, + "loss": 3.809481382369995, + "step": 1758 + }, + { + "epoch": 24.433377020532983, + "grad_norm": 0.2672404646873474, + "learning_rate": 0.0006, + "loss": 3.877800464630127, + "step": 1759 + }, + { + "epoch": 24.447356924421143, + "grad_norm": 0.26292186975479126, + "learning_rate": 0.0006, + "loss": 3.8329367637634277, + "step": 1760 + }, + { + "epoch": 24.461336828309307, + "grad_norm": 0.26235947012901306, + "learning_rate": 0.0006, + "loss": 3.8414158821105957, + "step": 1761 + }, + { + "epoch": 24.475316732197467, + "grad_norm": 0.2638382613658905, + "learning_rate": 0.0006, + "loss": 3.849188804626465, + "step": 1762 + }, + { + "epoch": 24.489296636085626, + "grad_norm": 0.2564602196216583, + "learning_rate": 0.0006, + "loss": 3.865501880645752, + "step": 1763 + }, + { + "epoch": 24.503276539973786, + "grad_norm": 0.21352271735668182, + "learning_rate": 0.0006, + "loss": 3.87910795211792, + "step": 1764 + }, + { + "epoch": 24.51725644386195, + "grad_norm": 0.2470584511756897, + "learning_rate": 0.0006, + "loss": 3.858750343322754, + "step": 1765 + }, + { + "epoch": 24.53123634775011, + "grad_norm": 0.24907536804676056, + "learning_rate": 0.0006, + "loss": 3.8532559871673584, + "step": 1766 + }, + { + "epoch": 24.54521625163827, + "grad_norm": 0.2426205575466156, + "learning_rate": 0.0006, + "loss": 3.8659827709198, + "step": 1767 + }, + { + "epoch": 24.55919615552643, + "grad_norm": 0.23481151461601257, + "learning_rate": 0.0006, + "loss": 3.863948345184326, + "step": 1768 + }, + { + "epoch": 24.573176059414592, + "grad_norm": 0.22717779874801636, + "learning_rate": 0.0006, + "loss": 3.848527193069458, + "step": 1769 + }, + { + "epoch": 24.587155963302752, + "grad_norm": 0.2267129123210907, + "learning_rate": 0.0006, + "loss": 3.8600735664367676, + "step": 1770 + }, + { + "epoch": 24.601135867190912, + "grad_norm": 0.24967710673809052, + "learning_rate": 0.0006, + "loss": 3.84291934967041, + "step": 1771 + }, + { + "epoch": 24.615115771079076, + "grad_norm": 0.25308957695961, + "learning_rate": 0.0006, + "loss": 3.846181631088257, + "step": 1772 + }, + { + "epoch": 24.629095674967235, + "grad_norm": 0.2689298391342163, + "learning_rate": 0.0006, + "loss": 3.8572893142700195, + "step": 1773 + }, + { + "epoch": 24.643075578855395, + "grad_norm": 0.26458555459976196, + "learning_rate": 0.0006, + "loss": 3.8583621978759766, + "step": 1774 + }, + { + "epoch": 24.657055482743555, + "grad_norm": 0.24416811764240265, + "learning_rate": 0.0006, + "loss": 3.8648223876953125, + "step": 1775 + }, + { + "epoch": 24.67103538663172, + "grad_norm": 0.22218526899814606, + "learning_rate": 0.0006, + "loss": 3.839395523071289, + "step": 1776 + }, + { + "epoch": 24.68501529051988, + "grad_norm": 0.2147492915391922, + "learning_rate": 0.0006, + "loss": 3.875734567642212, + "step": 1777 + }, + { + "epoch": 24.698995194408038, + "grad_norm": 0.2346794754266739, + "learning_rate": 0.0006, + "loss": 3.854768991470337, + "step": 1778 + }, + { + "epoch": 24.712975098296198, + "grad_norm": 0.21406520903110504, + "learning_rate": 0.0006, + "loss": 3.8269104957580566, + "step": 1779 + }, + { + "epoch": 24.72695500218436, + "grad_norm": 0.20716224610805511, + "learning_rate": 0.0006, + "loss": 3.8245768547058105, + "step": 1780 + }, + { + "epoch": 24.74093490607252, + "grad_norm": 0.21445901691913605, + "learning_rate": 0.0006, + "loss": 3.8877978324890137, + "step": 1781 + }, + { + "epoch": 24.75491480996068, + "grad_norm": 0.21964985132217407, + "learning_rate": 0.0006, + "loss": 3.8602452278137207, + "step": 1782 + }, + { + "epoch": 24.76889471384884, + "grad_norm": 0.209807351231575, + "learning_rate": 0.0006, + "loss": 3.853428602218628, + "step": 1783 + }, + { + "epoch": 24.782874617737004, + "grad_norm": 0.19564911723136902, + "learning_rate": 0.0006, + "loss": 3.832275867462158, + "step": 1784 + }, + { + "epoch": 24.796854521625164, + "grad_norm": 0.21394333243370056, + "learning_rate": 0.0006, + "loss": 3.8543171882629395, + "step": 1785 + }, + { + "epoch": 24.810834425513324, + "grad_norm": 0.23156948387622833, + "learning_rate": 0.0006, + "loss": 3.8539412021636963, + "step": 1786 + }, + { + "epoch": 24.824814329401484, + "grad_norm": 0.2378678321838379, + "learning_rate": 0.0006, + "loss": 3.8409833908081055, + "step": 1787 + }, + { + "epoch": 24.838794233289647, + "grad_norm": 0.23816189169883728, + "learning_rate": 0.0006, + "loss": 3.855379581451416, + "step": 1788 + }, + { + "epoch": 24.852774137177807, + "grad_norm": 0.23109886050224304, + "learning_rate": 0.0006, + "loss": 3.8689517974853516, + "step": 1789 + }, + { + "epoch": 24.866754041065967, + "grad_norm": 0.2042883038520813, + "learning_rate": 0.0006, + "loss": 3.8730404376983643, + "step": 1790 + }, + { + "epoch": 24.88073394495413, + "grad_norm": 0.2039479911327362, + "learning_rate": 0.0006, + "loss": 3.8474984169006348, + "step": 1791 + }, + { + "epoch": 24.89471384884229, + "grad_norm": 0.213027223944664, + "learning_rate": 0.0006, + "loss": 3.8539695739746094, + "step": 1792 + }, + { + "epoch": 24.90869375273045, + "grad_norm": 0.2280654013156891, + "learning_rate": 0.0006, + "loss": 3.8633079528808594, + "step": 1793 + }, + { + "epoch": 24.92267365661861, + "grad_norm": 0.20864921808242798, + "learning_rate": 0.0006, + "loss": 3.8110368251800537, + "step": 1794 + }, + { + "epoch": 24.936653560506773, + "grad_norm": 0.23002111911773682, + "learning_rate": 0.0006, + "loss": 3.8334741592407227, + "step": 1795 + }, + { + "epoch": 24.950633464394933, + "grad_norm": 0.232331782579422, + "learning_rate": 0.0006, + "loss": 3.871887683868408, + "step": 1796 + }, + { + "epoch": 24.964613368283093, + "grad_norm": 0.24141235649585724, + "learning_rate": 0.0006, + "loss": 3.8614959716796875, + "step": 1797 + }, + { + "epoch": 24.978593272171253, + "grad_norm": 0.2545177638530731, + "learning_rate": 0.0006, + "loss": 3.8563568592071533, + "step": 1798 + }, + { + "epoch": 24.992573176059416, + "grad_norm": 0.25186386704444885, + "learning_rate": 0.0006, + "loss": 3.882166862487793, + "step": 1799 + }, + { + "epoch": 25.0, + "grad_norm": 0.260195791721344, + "learning_rate": 0.0006, + "loss": 3.884554862976074, + "step": 1800 + }, + { + "epoch": 25.0, + "eval_loss": 4.08809757232666, + "eval_runtime": 44.7947, + "eval_samples_per_second": 54.515, + "eval_steps_per_second": 3.416, + "step": 1800 + }, + { + "epoch": 25.01397990388816, + "grad_norm": 0.25396403670310974, + "learning_rate": 0.0006, + "loss": 3.8217287063598633, + "step": 1801 + }, + { + "epoch": 25.027959807776323, + "grad_norm": 0.2773195207118988, + "learning_rate": 0.0006, + "loss": 3.809542417526245, + "step": 1802 + }, + { + "epoch": 25.041939711664483, + "grad_norm": 0.3073263168334961, + "learning_rate": 0.0006, + "loss": 3.825706958770752, + "step": 1803 + }, + { + "epoch": 25.055919615552643, + "grad_norm": 0.30885398387908936, + "learning_rate": 0.0006, + "loss": 3.8081188201904297, + "step": 1804 + }, + { + "epoch": 25.069899519440803, + "grad_norm": 0.27356019616127014, + "learning_rate": 0.0006, + "loss": 3.8538241386413574, + "step": 1805 + }, + { + "epoch": 25.083879423328966, + "grad_norm": 0.22830164432525635, + "learning_rate": 0.0006, + "loss": 3.8246965408325195, + "step": 1806 + }, + { + "epoch": 25.097859327217126, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.8552842140197754, + "step": 1807 + }, + { + "epoch": 25.111839231105286, + "grad_norm": 0.21718722581863403, + "learning_rate": 0.0006, + "loss": 3.8489418029785156, + "step": 1808 + }, + { + "epoch": 25.125819134993446, + "grad_norm": 0.2480861395597458, + "learning_rate": 0.0006, + "loss": 3.821455955505371, + "step": 1809 + }, + { + "epoch": 25.13979903888161, + "grad_norm": 0.2796635627746582, + "learning_rate": 0.0006, + "loss": 3.8202435970306396, + "step": 1810 + }, + { + "epoch": 25.15377894276977, + "grad_norm": 0.2829958200454712, + "learning_rate": 0.0006, + "loss": 3.8293306827545166, + "step": 1811 + }, + { + "epoch": 25.16775884665793, + "grad_norm": 0.2510125935077667, + "learning_rate": 0.0006, + "loss": 3.8342957496643066, + "step": 1812 + }, + { + "epoch": 25.18173875054609, + "grad_norm": 0.22923722863197327, + "learning_rate": 0.0006, + "loss": 3.8448352813720703, + "step": 1813 + }, + { + "epoch": 25.195718654434252, + "grad_norm": 0.21439228951931, + "learning_rate": 0.0006, + "loss": 3.8343517780303955, + "step": 1814 + }, + { + "epoch": 25.209698558322412, + "grad_norm": 0.1965373307466507, + "learning_rate": 0.0006, + "loss": 3.8163528442382812, + "step": 1815 + }, + { + "epoch": 25.22367846221057, + "grad_norm": 0.20121058821678162, + "learning_rate": 0.0006, + "loss": 3.8007280826568604, + "step": 1816 + }, + { + "epoch": 25.23765836609873, + "grad_norm": 0.21383272111415863, + "learning_rate": 0.0006, + "loss": 3.8200385570526123, + "step": 1817 + }, + { + "epoch": 25.251638269986895, + "grad_norm": 0.2066601663827896, + "learning_rate": 0.0006, + "loss": 3.8333921432495117, + "step": 1818 + }, + { + "epoch": 25.265618173875055, + "grad_norm": 0.2104874551296234, + "learning_rate": 0.0006, + "loss": 3.838012218475342, + "step": 1819 + }, + { + "epoch": 25.279598077763215, + "grad_norm": 0.19733119010925293, + "learning_rate": 0.0006, + "loss": 3.835139274597168, + "step": 1820 + }, + { + "epoch": 25.293577981651374, + "grad_norm": 0.2119498997926712, + "learning_rate": 0.0006, + "loss": 3.8099722862243652, + "step": 1821 + }, + { + "epoch": 25.307557885539538, + "grad_norm": 0.21863529086112976, + "learning_rate": 0.0006, + "loss": 3.7801573276519775, + "step": 1822 + }, + { + "epoch": 25.321537789427698, + "grad_norm": 0.2113322764635086, + "learning_rate": 0.0006, + "loss": 3.809903621673584, + "step": 1823 + }, + { + "epoch": 25.335517693315857, + "grad_norm": 0.21594023704528809, + "learning_rate": 0.0006, + "loss": 3.8485071659088135, + "step": 1824 + }, + { + "epoch": 25.34949759720402, + "grad_norm": 0.21475964784622192, + "learning_rate": 0.0006, + "loss": 3.7894768714904785, + "step": 1825 + }, + { + "epoch": 25.36347750109218, + "grad_norm": 0.21174900233745575, + "learning_rate": 0.0006, + "loss": 3.821711540222168, + "step": 1826 + }, + { + "epoch": 25.37745740498034, + "grad_norm": 0.2065584659576416, + "learning_rate": 0.0006, + "loss": 3.8439841270446777, + "step": 1827 + }, + { + "epoch": 25.3914373088685, + "grad_norm": 0.19157007336616516, + "learning_rate": 0.0006, + "loss": 3.864245891571045, + "step": 1828 + }, + { + "epoch": 25.405417212756664, + "grad_norm": 0.19983816146850586, + "learning_rate": 0.0006, + "loss": 3.8317415714263916, + "step": 1829 + }, + { + "epoch": 25.419397116644824, + "grad_norm": 0.20506152510643005, + "learning_rate": 0.0006, + "loss": 3.8009896278381348, + "step": 1830 + }, + { + "epoch": 25.433377020532983, + "grad_norm": 0.19056960940361023, + "learning_rate": 0.0006, + "loss": 3.8383498191833496, + "step": 1831 + }, + { + "epoch": 25.447356924421143, + "grad_norm": 0.19262190163135529, + "learning_rate": 0.0006, + "loss": 3.838902235031128, + "step": 1832 + }, + { + "epoch": 25.461336828309307, + "grad_norm": 0.19859355688095093, + "learning_rate": 0.0006, + "loss": 3.82452392578125, + "step": 1833 + }, + { + "epoch": 25.475316732197467, + "grad_norm": 0.2144225388765335, + "learning_rate": 0.0006, + "loss": 3.8110032081604004, + "step": 1834 + }, + { + "epoch": 25.489296636085626, + "grad_norm": 0.20566298067569733, + "learning_rate": 0.0006, + "loss": 3.8662471771240234, + "step": 1835 + }, + { + "epoch": 25.503276539973786, + "grad_norm": 0.2071852684020996, + "learning_rate": 0.0006, + "loss": 3.821134090423584, + "step": 1836 + }, + { + "epoch": 25.51725644386195, + "grad_norm": 0.2095036506652832, + "learning_rate": 0.0006, + "loss": 3.824092388153076, + "step": 1837 + }, + { + "epoch": 25.53123634775011, + "grad_norm": 0.20136208832263947, + "learning_rate": 0.0006, + "loss": 3.8669862747192383, + "step": 1838 + }, + { + "epoch": 25.54521625163827, + "grad_norm": 0.1983811855316162, + "learning_rate": 0.0006, + "loss": 3.8120107650756836, + "step": 1839 + }, + { + "epoch": 25.55919615552643, + "grad_norm": 0.22859714925289154, + "learning_rate": 0.0006, + "loss": 3.8519299030303955, + "step": 1840 + }, + { + "epoch": 25.573176059414592, + "grad_norm": 0.23672667145729065, + "learning_rate": 0.0006, + "loss": 3.8245458602905273, + "step": 1841 + }, + { + "epoch": 25.587155963302752, + "grad_norm": 0.22698380053043365, + "learning_rate": 0.0006, + "loss": 3.8406805992126465, + "step": 1842 + }, + { + "epoch": 25.601135867190912, + "grad_norm": 0.25684037804603577, + "learning_rate": 0.0006, + "loss": 3.8584351539611816, + "step": 1843 + }, + { + "epoch": 25.615115771079076, + "grad_norm": 0.28180673718452454, + "learning_rate": 0.0006, + "loss": 3.8085098266601562, + "step": 1844 + }, + { + "epoch": 25.629095674967235, + "grad_norm": 0.2814631462097168, + "learning_rate": 0.0006, + "loss": 3.845083236694336, + "step": 1845 + }, + { + "epoch": 25.643075578855395, + "grad_norm": 0.23630981147289276, + "learning_rate": 0.0006, + "loss": 3.847749710083008, + "step": 1846 + }, + { + "epoch": 25.657055482743555, + "grad_norm": 0.22463662922382355, + "learning_rate": 0.0006, + "loss": 3.8172082901000977, + "step": 1847 + }, + { + "epoch": 25.67103538663172, + "grad_norm": 0.26551681756973267, + "learning_rate": 0.0006, + "loss": 3.8205654621124268, + "step": 1848 + }, + { + "epoch": 25.68501529051988, + "grad_norm": 0.27824243903160095, + "learning_rate": 0.0006, + "loss": 3.846076011657715, + "step": 1849 + }, + { + "epoch": 25.698995194408038, + "grad_norm": 0.266998291015625, + "learning_rate": 0.0006, + "loss": 3.8543574810028076, + "step": 1850 + }, + { + "epoch": 25.712975098296198, + "grad_norm": 0.22980351746082306, + "learning_rate": 0.0006, + "loss": 3.855511426925659, + "step": 1851 + }, + { + "epoch": 25.72695500218436, + "grad_norm": 0.23482872545719147, + "learning_rate": 0.0006, + "loss": 3.8687663078308105, + "step": 1852 + }, + { + "epoch": 25.74093490607252, + "grad_norm": 0.21119585633277893, + "learning_rate": 0.0006, + "loss": 3.8147101402282715, + "step": 1853 + }, + { + "epoch": 25.75491480996068, + "grad_norm": 0.21200446784496307, + "learning_rate": 0.0006, + "loss": 3.858473777770996, + "step": 1854 + }, + { + "epoch": 25.76889471384884, + "grad_norm": 0.20497842133045197, + "learning_rate": 0.0006, + "loss": 3.8545501232147217, + "step": 1855 + }, + { + "epoch": 25.782874617737004, + "grad_norm": 0.19328081607818604, + "learning_rate": 0.0006, + "loss": 3.7941341400146484, + "step": 1856 + }, + { + "epoch": 25.796854521625164, + "grad_norm": 0.2191578894853592, + "learning_rate": 0.0006, + "loss": 3.8408665657043457, + "step": 1857 + }, + { + "epoch": 25.810834425513324, + "grad_norm": 0.2548826038837433, + "learning_rate": 0.0006, + "loss": 3.854130744934082, + "step": 1858 + }, + { + "epoch": 25.824814329401484, + "grad_norm": 0.2290351390838623, + "learning_rate": 0.0006, + "loss": 3.8680176734924316, + "step": 1859 + }, + { + "epoch": 25.838794233289647, + "grad_norm": 0.20760944485664368, + "learning_rate": 0.0006, + "loss": 3.83731746673584, + "step": 1860 + }, + { + "epoch": 25.852774137177807, + "grad_norm": 0.19587582349777222, + "learning_rate": 0.0006, + "loss": 3.8173444271087646, + "step": 1861 + }, + { + "epoch": 25.866754041065967, + "grad_norm": 0.20762693881988525, + "learning_rate": 0.0006, + "loss": 3.8479790687561035, + "step": 1862 + }, + { + "epoch": 25.88073394495413, + "grad_norm": 0.20633186399936676, + "learning_rate": 0.0006, + "loss": 3.852285385131836, + "step": 1863 + }, + { + "epoch": 25.89471384884229, + "grad_norm": 0.21484960615634918, + "learning_rate": 0.0006, + "loss": 3.832592725753784, + "step": 1864 + }, + { + "epoch": 25.90869375273045, + "grad_norm": 0.19569595158100128, + "learning_rate": 0.0006, + "loss": 3.838071584701538, + "step": 1865 + }, + { + "epoch": 25.92267365661861, + "grad_norm": 0.19532904028892517, + "learning_rate": 0.0006, + "loss": 3.854252815246582, + "step": 1866 + }, + { + "epoch": 25.936653560506773, + "grad_norm": 0.1909649819135666, + "learning_rate": 0.0006, + "loss": 3.8444578647613525, + "step": 1867 + }, + { + "epoch": 25.950633464394933, + "grad_norm": 0.17476283013820648, + "learning_rate": 0.0006, + "loss": 3.836519241333008, + "step": 1868 + }, + { + "epoch": 25.964613368283093, + "grad_norm": 0.1895206719636917, + "learning_rate": 0.0006, + "loss": 3.8282582759857178, + "step": 1869 + }, + { + "epoch": 25.978593272171253, + "grad_norm": 0.20038437843322754, + "learning_rate": 0.0006, + "loss": 3.80542254447937, + "step": 1870 + }, + { + "epoch": 25.992573176059416, + "grad_norm": 0.20728608965873718, + "learning_rate": 0.0006, + "loss": 3.8584811687469482, + "step": 1871 + }, + { + "epoch": 26.0, + "grad_norm": 0.22110891342163086, + "learning_rate": 0.0006, + "loss": 3.8020238876342773, + "step": 1872 + }, + { + "epoch": 26.0, + "eval_loss": 4.072164058685303, + "eval_runtime": 44.9089, + "eval_samples_per_second": 54.377, + "eval_steps_per_second": 3.407, + "step": 1872 + }, + { + "epoch": 26.01397990388816, + "grad_norm": 0.2222519814968109, + "learning_rate": 0.0006, + "loss": 3.8309168815612793, + "step": 1873 + }, + { + "epoch": 26.027959807776323, + "grad_norm": 0.2637656033039093, + "learning_rate": 0.0006, + "loss": 3.8025143146514893, + "step": 1874 + }, + { + "epoch": 26.041939711664483, + "grad_norm": 0.2665974795818329, + "learning_rate": 0.0006, + "loss": 3.8244004249572754, + "step": 1875 + }, + { + "epoch": 26.055919615552643, + "grad_norm": 0.22475720942020416, + "learning_rate": 0.0006, + "loss": 3.80039119720459, + "step": 1876 + }, + { + "epoch": 26.069899519440803, + "grad_norm": 0.22994336485862732, + "learning_rate": 0.0006, + "loss": 3.7700726985931396, + "step": 1877 + }, + { + "epoch": 26.083879423328966, + "grad_norm": 0.24214622378349304, + "learning_rate": 0.0006, + "loss": 3.818725109100342, + "step": 1878 + }, + { + "epoch": 26.097859327217126, + "grad_norm": 0.22701293230056763, + "learning_rate": 0.0006, + "loss": 3.833803176879883, + "step": 1879 + }, + { + "epoch": 26.111839231105286, + "grad_norm": 0.21452295780181885, + "learning_rate": 0.0006, + "loss": 3.8391427993774414, + "step": 1880 + }, + { + "epoch": 26.125819134993446, + "grad_norm": 0.20179636776447296, + "learning_rate": 0.0006, + "loss": 3.802957057952881, + "step": 1881 + }, + { + "epoch": 26.13979903888161, + "grad_norm": 0.2087477445602417, + "learning_rate": 0.0006, + "loss": 3.8339905738830566, + "step": 1882 + }, + { + "epoch": 26.15377894276977, + "grad_norm": 0.23583556711673737, + "learning_rate": 0.0006, + "loss": 3.802438259124756, + "step": 1883 + }, + { + "epoch": 26.16775884665793, + "grad_norm": 0.2504311501979828, + "learning_rate": 0.0006, + "loss": 3.80244517326355, + "step": 1884 + }, + { + "epoch": 26.18173875054609, + "grad_norm": 0.24903984367847443, + "learning_rate": 0.0006, + "loss": 3.788865566253662, + "step": 1885 + }, + { + "epoch": 26.195718654434252, + "grad_norm": 0.2707931101322174, + "learning_rate": 0.0006, + "loss": 3.800051212310791, + "step": 1886 + }, + { + "epoch": 26.209698558322412, + "grad_norm": 0.24902892112731934, + "learning_rate": 0.0006, + "loss": 3.8068337440490723, + "step": 1887 + }, + { + "epoch": 26.22367846221057, + "grad_norm": 0.22655536234378815, + "learning_rate": 0.0006, + "loss": 3.779439926147461, + "step": 1888 + }, + { + "epoch": 26.23765836609873, + "grad_norm": 0.24797996878623962, + "learning_rate": 0.0006, + "loss": 3.822831153869629, + "step": 1889 + }, + { + "epoch": 26.251638269986895, + "grad_norm": 0.2821420431137085, + "learning_rate": 0.0006, + "loss": 3.807954788208008, + "step": 1890 + }, + { + "epoch": 26.265618173875055, + "grad_norm": 0.30392691493034363, + "learning_rate": 0.0006, + "loss": 3.776951789855957, + "step": 1891 + }, + { + "epoch": 26.279598077763215, + "grad_norm": 0.32641273736953735, + "learning_rate": 0.0006, + "loss": 3.8216311931610107, + "step": 1892 + }, + { + "epoch": 26.293577981651374, + "grad_norm": 0.32674387097358704, + "learning_rate": 0.0006, + "loss": 3.815596580505371, + "step": 1893 + }, + { + "epoch": 26.307557885539538, + "grad_norm": 0.29137250781059265, + "learning_rate": 0.0006, + "loss": 3.8170812129974365, + "step": 1894 + }, + { + "epoch": 26.321537789427698, + "grad_norm": 0.24291734397411346, + "learning_rate": 0.0006, + "loss": 3.810352087020874, + "step": 1895 + }, + { + "epoch": 26.335517693315857, + "grad_norm": 0.24023209512233734, + "learning_rate": 0.0006, + "loss": 3.8075947761535645, + "step": 1896 + }, + { + "epoch": 26.34949759720402, + "grad_norm": 0.24334804713726044, + "learning_rate": 0.0006, + "loss": 3.831556797027588, + "step": 1897 + }, + { + "epoch": 26.36347750109218, + "grad_norm": 0.2109663337469101, + "learning_rate": 0.0006, + "loss": 3.838347911834717, + "step": 1898 + }, + { + "epoch": 26.37745740498034, + "grad_norm": 0.19668002426624298, + "learning_rate": 0.0006, + "loss": 3.774737596511841, + "step": 1899 + }, + { + "epoch": 26.3914373088685, + "grad_norm": 0.21329134702682495, + "learning_rate": 0.0006, + "loss": 3.8237252235412598, + "step": 1900 + }, + { + "epoch": 26.405417212756664, + "grad_norm": 0.20381781458854675, + "learning_rate": 0.0006, + "loss": 3.802569627761841, + "step": 1901 + }, + { + "epoch": 26.419397116644824, + "grad_norm": 0.19083160161972046, + "learning_rate": 0.0006, + "loss": 3.8301358222961426, + "step": 1902 + }, + { + "epoch": 26.433377020532983, + "grad_norm": 0.20012904703617096, + "learning_rate": 0.0006, + "loss": 3.7966408729553223, + "step": 1903 + }, + { + "epoch": 26.447356924421143, + "grad_norm": 0.19483457505702972, + "learning_rate": 0.0006, + "loss": 3.8431968688964844, + "step": 1904 + }, + { + "epoch": 26.461336828309307, + "grad_norm": 0.19946353137493134, + "learning_rate": 0.0006, + "loss": 3.8023815155029297, + "step": 1905 + }, + { + "epoch": 26.475316732197467, + "grad_norm": 0.1984100341796875, + "learning_rate": 0.0006, + "loss": 3.8283071517944336, + "step": 1906 + }, + { + "epoch": 26.489296636085626, + "grad_norm": 0.2148299664258957, + "learning_rate": 0.0006, + "loss": 3.8377504348754883, + "step": 1907 + }, + { + "epoch": 26.503276539973786, + "grad_norm": 0.22139184176921844, + "learning_rate": 0.0006, + "loss": 3.823051691055298, + "step": 1908 + }, + { + "epoch": 26.51725644386195, + "grad_norm": 0.18289034068584442, + "learning_rate": 0.0006, + "loss": 3.8027071952819824, + "step": 1909 + }, + { + "epoch": 26.53123634775011, + "grad_norm": 0.1816026121377945, + "learning_rate": 0.0006, + "loss": 3.823786735534668, + "step": 1910 + }, + { + "epoch": 26.54521625163827, + "grad_norm": 0.19074322283267975, + "learning_rate": 0.0006, + "loss": 3.813331127166748, + "step": 1911 + }, + { + "epoch": 26.55919615552643, + "grad_norm": 0.20301467180252075, + "learning_rate": 0.0006, + "loss": 3.8218350410461426, + "step": 1912 + }, + { + "epoch": 26.573176059414592, + "grad_norm": 0.25266432762145996, + "learning_rate": 0.0006, + "loss": 3.8455142974853516, + "step": 1913 + }, + { + "epoch": 26.587155963302752, + "grad_norm": 0.25804755091667175, + "learning_rate": 0.0006, + "loss": 3.799227476119995, + "step": 1914 + }, + { + "epoch": 26.601135867190912, + "grad_norm": 0.2555372416973114, + "learning_rate": 0.0006, + "loss": 3.8125686645507812, + "step": 1915 + }, + { + "epoch": 26.615115771079076, + "grad_norm": 0.2266194075345993, + "learning_rate": 0.0006, + "loss": 3.858363628387451, + "step": 1916 + }, + { + "epoch": 26.629095674967235, + "grad_norm": 0.1933048665523529, + "learning_rate": 0.0006, + "loss": 3.8078083992004395, + "step": 1917 + }, + { + "epoch": 26.643075578855395, + "grad_norm": 0.19936731457710266, + "learning_rate": 0.0006, + "loss": 3.81748628616333, + "step": 1918 + }, + { + "epoch": 26.657055482743555, + "grad_norm": 0.22041693329811096, + "learning_rate": 0.0006, + "loss": 3.833272933959961, + "step": 1919 + }, + { + "epoch": 26.67103538663172, + "grad_norm": 0.20679150521755219, + "learning_rate": 0.0006, + "loss": 3.8127288818359375, + "step": 1920 + }, + { + "epoch": 26.68501529051988, + "grad_norm": 0.21545100212097168, + "learning_rate": 0.0006, + "loss": 3.816051483154297, + "step": 1921 + }, + { + "epoch": 26.698995194408038, + "grad_norm": 0.23554518818855286, + "learning_rate": 0.0006, + "loss": 3.8180980682373047, + "step": 1922 + }, + { + "epoch": 26.712975098296198, + "grad_norm": 0.21942466497421265, + "learning_rate": 0.0006, + "loss": 3.803107976913452, + "step": 1923 + }, + { + "epoch": 26.72695500218436, + "grad_norm": 0.22335010766983032, + "learning_rate": 0.0006, + "loss": 3.847890853881836, + "step": 1924 + }, + { + "epoch": 26.74093490607252, + "grad_norm": 0.24731314182281494, + "learning_rate": 0.0006, + "loss": 3.7945008277893066, + "step": 1925 + }, + { + "epoch": 26.75491480996068, + "grad_norm": 0.2804568111896515, + "learning_rate": 0.0006, + "loss": 3.8400068283081055, + "step": 1926 + }, + { + "epoch": 26.76889471384884, + "grad_norm": 0.28787222504615784, + "learning_rate": 0.0006, + "loss": 3.839771270751953, + "step": 1927 + }, + { + "epoch": 26.782874617737004, + "grad_norm": 0.2949632406234741, + "learning_rate": 0.0006, + "loss": 3.8225326538085938, + "step": 1928 + }, + { + "epoch": 26.796854521625164, + "grad_norm": 0.31546032428741455, + "learning_rate": 0.0006, + "loss": 3.8182597160339355, + "step": 1929 + }, + { + "epoch": 26.810834425513324, + "grad_norm": 0.2956962585449219, + "learning_rate": 0.0006, + "loss": 3.8315680027008057, + "step": 1930 + }, + { + "epoch": 26.824814329401484, + "grad_norm": 0.26943835616111755, + "learning_rate": 0.0006, + "loss": 3.787720203399658, + "step": 1931 + }, + { + "epoch": 26.838794233289647, + "grad_norm": 0.24272359907627106, + "learning_rate": 0.0006, + "loss": 3.7973692417144775, + "step": 1932 + }, + { + "epoch": 26.852774137177807, + "grad_norm": 0.20553994178771973, + "learning_rate": 0.0006, + "loss": 3.8241593837738037, + "step": 1933 + }, + { + "epoch": 26.866754041065967, + "grad_norm": 0.21927912533283234, + "learning_rate": 0.0006, + "loss": 3.8608899116516113, + "step": 1934 + }, + { + "epoch": 26.88073394495413, + "grad_norm": 0.22878016531467438, + "learning_rate": 0.0006, + "loss": 3.8341972827911377, + "step": 1935 + }, + { + "epoch": 26.89471384884229, + "grad_norm": 0.2085554301738739, + "learning_rate": 0.0006, + "loss": 3.8261351585388184, + "step": 1936 + }, + { + "epoch": 26.90869375273045, + "grad_norm": 0.21259072422981262, + "learning_rate": 0.0006, + "loss": 3.862056255340576, + "step": 1937 + }, + { + "epoch": 26.92267365661861, + "grad_norm": 0.21354122459888458, + "learning_rate": 0.0006, + "loss": 3.80879545211792, + "step": 1938 + }, + { + "epoch": 26.936653560506773, + "grad_norm": 0.2350253462791443, + "learning_rate": 0.0006, + "loss": 3.817826271057129, + "step": 1939 + }, + { + "epoch": 26.950633464394933, + "grad_norm": 0.23833836615085602, + "learning_rate": 0.0006, + "loss": 3.8220884799957275, + "step": 1940 + }, + { + "epoch": 26.964613368283093, + "grad_norm": 0.2368069440126419, + "learning_rate": 0.0006, + "loss": 3.843264579772949, + "step": 1941 + }, + { + "epoch": 26.978593272171253, + "grad_norm": 0.22663559019565582, + "learning_rate": 0.0006, + "loss": 3.81339430809021, + "step": 1942 + }, + { + "epoch": 26.992573176059416, + "grad_norm": 0.2151402235031128, + "learning_rate": 0.0006, + "loss": 3.8262834548950195, + "step": 1943 + }, + { + "epoch": 27.0, + "grad_norm": 0.24320295453071594, + "learning_rate": 0.0006, + "loss": 3.858567237854004, + "step": 1944 + }, + { + "epoch": 27.0, + "eval_loss": 4.0613322257995605, + "eval_runtime": 44.766, + "eval_samples_per_second": 54.55, + "eval_steps_per_second": 3.418, + "step": 1944 + }, + { + "epoch": 27.01397990388816, + "grad_norm": 0.21188032627105713, + "learning_rate": 0.0006, + "loss": 3.7631278038024902, + "step": 1945 + }, + { + "epoch": 27.027959807776323, + "grad_norm": 0.22298137843608856, + "learning_rate": 0.0006, + "loss": 3.784029245376587, + "step": 1946 + }, + { + "epoch": 27.041939711664483, + "grad_norm": 0.26530158519744873, + "learning_rate": 0.0006, + "loss": 3.795860767364502, + "step": 1947 + }, + { + "epoch": 27.055919615552643, + "grad_norm": 0.24476729333400726, + "learning_rate": 0.0006, + "loss": 3.77512264251709, + "step": 1948 + }, + { + "epoch": 27.069899519440803, + "grad_norm": 0.1934421956539154, + "learning_rate": 0.0006, + "loss": 3.7797446250915527, + "step": 1949 + }, + { + "epoch": 27.083879423328966, + "grad_norm": 0.19777092337608337, + "learning_rate": 0.0006, + "loss": 3.798935890197754, + "step": 1950 + }, + { + "epoch": 27.097859327217126, + "grad_norm": 0.2071693390607834, + "learning_rate": 0.0006, + "loss": 3.763094425201416, + "step": 1951 + }, + { + "epoch": 27.111839231105286, + "grad_norm": 0.18394742906093597, + "learning_rate": 0.0006, + "loss": 3.7892322540283203, + "step": 1952 + }, + { + "epoch": 27.125819134993446, + "grad_norm": 0.17878273129463196, + "learning_rate": 0.0006, + "loss": 3.787968158721924, + "step": 1953 + }, + { + "epoch": 27.13979903888161, + "grad_norm": 0.18792171776294708, + "learning_rate": 0.0006, + "loss": 3.7719640731811523, + "step": 1954 + }, + { + "epoch": 27.15377894276977, + "grad_norm": 0.18718759715557098, + "learning_rate": 0.0006, + "loss": 3.791835308074951, + "step": 1955 + }, + { + "epoch": 27.16775884665793, + "grad_norm": 0.18716055154800415, + "learning_rate": 0.0006, + "loss": 3.7490220069885254, + "step": 1956 + }, + { + "epoch": 27.18173875054609, + "grad_norm": 0.18429182469844818, + "learning_rate": 0.0006, + "loss": 3.8020081520080566, + "step": 1957 + }, + { + "epoch": 27.195718654434252, + "grad_norm": 0.18571704626083374, + "learning_rate": 0.0006, + "loss": 3.8152215480804443, + "step": 1958 + }, + { + "epoch": 27.209698558322412, + "grad_norm": 0.1788843423128128, + "learning_rate": 0.0006, + "loss": 3.8173317909240723, + "step": 1959 + }, + { + "epoch": 27.22367846221057, + "grad_norm": 0.20459426939487457, + "learning_rate": 0.0006, + "loss": 3.7760040760040283, + "step": 1960 + }, + { + "epoch": 27.23765836609873, + "grad_norm": 0.22360935807228088, + "learning_rate": 0.0006, + "loss": 3.8140203952789307, + "step": 1961 + }, + { + "epoch": 27.251638269986895, + "grad_norm": 0.2062767595052719, + "learning_rate": 0.0006, + "loss": 3.792001247406006, + "step": 1962 + }, + { + "epoch": 27.265618173875055, + "grad_norm": 0.20628073811531067, + "learning_rate": 0.0006, + "loss": 3.7873167991638184, + "step": 1963 + }, + { + "epoch": 27.279598077763215, + "grad_norm": 0.19888348877429962, + "learning_rate": 0.0006, + "loss": 3.7903614044189453, + "step": 1964 + }, + { + "epoch": 27.293577981651374, + "grad_norm": 0.22033332288265228, + "learning_rate": 0.0006, + "loss": 3.802497148513794, + "step": 1965 + }, + { + "epoch": 27.307557885539538, + "grad_norm": 0.23476941883563995, + "learning_rate": 0.0006, + "loss": 3.794090986251831, + "step": 1966 + }, + { + "epoch": 27.321537789427698, + "grad_norm": 0.19639968872070312, + "learning_rate": 0.0006, + "loss": 3.831794023513794, + "step": 1967 + }, + { + "epoch": 27.335517693315857, + "grad_norm": 0.18169641494750977, + "learning_rate": 0.0006, + "loss": 3.7687768936157227, + "step": 1968 + }, + { + "epoch": 27.34949759720402, + "grad_norm": 0.17781762778759003, + "learning_rate": 0.0006, + "loss": 3.7868471145629883, + "step": 1969 + }, + { + "epoch": 27.36347750109218, + "grad_norm": 0.18990416824817657, + "learning_rate": 0.0006, + "loss": 3.8340392112731934, + "step": 1970 + }, + { + "epoch": 27.37745740498034, + "grad_norm": 0.2031438797712326, + "learning_rate": 0.0006, + "loss": 3.804513454437256, + "step": 1971 + }, + { + "epoch": 27.3914373088685, + "grad_norm": 0.21233421564102173, + "learning_rate": 0.0006, + "loss": 3.7908449172973633, + "step": 1972 + }, + { + "epoch": 27.405417212756664, + "grad_norm": 0.22480927407741547, + "learning_rate": 0.0006, + "loss": 3.7894086837768555, + "step": 1973 + }, + { + "epoch": 27.419397116644824, + "grad_norm": 0.22713422775268555, + "learning_rate": 0.0006, + "loss": 3.826005458831787, + "step": 1974 + }, + { + "epoch": 27.433377020532983, + "grad_norm": 0.21637366712093353, + "learning_rate": 0.0006, + "loss": 3.8232319355010986, + "step": 1975 + }, + { + "epoch": 27.447356924421143, + "grad_norm": 0.24092449247837067, + "learning_rate": 0.0006, + "loss": 3.813279628753662, + "step": 1976 + }, + { + "epoch": 27.461336828309307, + "grad_norm": 0.21143047511577606, + "learning_rate": 0.0006, + "loss": 3.811586856842041, + "step": 1977 + }, + { + "epoch": 27.475316732197467, + "grad_norm": 0.21049432456493378, + "learning_rate": 0.0006, + "loss": 3.8227009773254395, + "step": 1978 + }, + { + "epoch": 27.489296636085626, + "grad_norm": 0.21853850781917572, + "learning_rate": 0.0006, + "loss": 3.7992515563964844, + "step": 1979 + }, + { + "epoch": 27.503276539973786, + "grad_norm": 0.22405001521110535, + "learning_rate": 0.0006, + "loss": 3.8311715126037598, + "step": 1980 + }, + { + "epoch": 27.51725644386195, + "grad_norm": 0.24085809290409088, + "learning_rate": 0.0006, + "loss": 3.801962375640869, + "step": 1981 + }, + { + "epoch": 27.53123634775011, + "grad_norm": 0.2612341642379761, + "learning_rate": 0.0006, + "loss": 3.7867887020111084, + "step": 1982 + }, + { + "epoch": 27.54521625163827, + "grad_norm": 0.25136062502861023, + "learning_rate": 0.0006, + "loss": 3.8302273750305176, + "step": 1983 + }, + { + "epoch": 27.55919615552643, + "grad_norm": 0.2485426515340805, + "learning_rate": 0.0006, + "loss": 3.770616054534912, + "step": 1984 + }, + { + "epoch": 27.573176059414592, + "grad_norm": 0.28883907198905945, + "learning_rate": 0.0006, + "loss": 3.8152146339416504, + "step": 1985 + }, + { + "epoch": 27.587155963302752, + "grad_norm": 0.28177911043167114, + "learning_rate": 0.0006, + "loss": 3.7966861724853516, + "step": 1986 + }, + { + "epoch": 27.601135867190912, + "grad_norm": 0.2573191523551941, + "learning_rate": 0.0006, + "loss": 3.820788621902466, + "step": 1987 + }, + { + "epoch": 27.615115771079076, + "grad_norm": 0.22225657105445862, + "learning_rate": 0.0006, + "loss": 3.778477191925049, + "step": 1988 + }, + { + "epoch": 27.629095674967235, + "grad_norm": 0.20118530094623566, + "learning_rate": 0.0006, + "loss": 3.8416988849639893, + "step": 1989 + }, + { + "epoch": 27.643075578855395, + "grad_norm": 0.21168658137321472, + "learning_rate": 0.0006, + "loss": 3.798020839691162, + "step": 1990 + }, + { + "epoch": 27.657055482743555, + "grad_norm": 0.2460680454969406, + "learning_rate": 0.0006, + "loss": 3.805917263031006, + "step": 1991 + }, + { + "epoch": 27.67103538663172, + "grad_norm": 0.2700909674167633, + "learning_rate": 0.0006, + "loss": 3.8042726516723633, + "step": 1992 + }, + { + "epoch": 27.68501529051988, + "grad_norm": 0.25814294815063477, + "learning_rate": 0.0006, + "loss": 3.799159049987793, + "step": 1993 + }, + { + "epoch": 27.698995194408038, + "grad_norm": 0.2231985628604889, + "learning_rate": 0.0006, + "loss": 3.778750419616699, + "step": 1994 + }, + { + "epoch": 27.712975098296198, + "grad_norm": 0.20807890594005585, + "learning_rate": 0.0006, + "loss": 3.787919044494629, + "step": 1995 + }, + { + "epoch": 27.72695500218436, + "grad_norm": 0.19537150859832764, + "learning_rate": 0.0006, + "loss": 3.7917299270629883, + "step": 1996 + }, + { + "epoch": 27.74093490607252, + "grad_norm": 0.21057647466659546, + "learning_rate": 0.0006, + "loss": 3.8096866607666016, + "step": 1997 + }, + { + "epoch": 27.75491480996068, + "grad_norm": 0.18983247876167297, + "learning_rate": 0.0006, + "loss": 3.7881717681884766, + "step": 1998 + }, + { + "epoch": 27.76889471384884, + "grad_norm": 0.18701069056987762, + "learning_rate": 0.0006, + "loss": 3.810790538787842, + "step": 1999 + }, + { + "epoch": 27.782874617737004, + "grad_norm": 0.1920134723186493, + "learning_rate": 0.0006, + "loss": 3.8161087036132812, + "step": 2000 + }, + { + "epoch": 27.796854521625164, + "grad_norm": 0.20413947105407715, + "learning_rate": 0.0006, + "loss": 3.790499687194824, + "step": 2001 + }, + { + "epoch": 27.810834425513324, + "grad_norm": 0.1920027732849121, + "learning_rate": 0.0006, + "loss": 3.8194262981414795, + "step": 2002 + }, + { + "epoch": 27.824814329401484, + "grad_norm": 0.18630221486091614, + "learning_rate": 0.0006, + "loss": 3.8267152309417725, + "step": 2003 + }, + { + "epoch": 27.838794233289647, + "grad_norm": 0.1787925660610199, + "learning_rate": 0.0006, + "loss": 3.8147521018981934, + "step": 2004 + }, + { + "epoch": 27.852774137177807, + "grad_norm": 0.19187216460704803, + "learning_rate": 0.0006, + "loss": 3.7751095294952393, + "step": 2005 + }, + { + "epoch": 27.866754041065967, + "grad_norm": 0.18825744092464447, + "learning_rate": 0.0006, + "loss": 3.807401657104492, + "step": 2006 + }, + { + "epoch": 27.88073394495413, + "grad_norm": 0.1879836469888687, + "learning_rate": 0.0006, + "loss": 3.8302509784698486, + "step": 2007 + }, + { + "epoch": 27.89471384884229, + "grad_norm": 0.19136391580104828, + "learning_rate": 0.0006, + "loss": 3.7886242866516113, + "step": 2008 + }, + { + "epoch": 27.90869375273045, + "grad_norm": 0.18774119019508362, + "learning_rate": 0.0006, + "loss": 3.8202977180480957, + "step": 2009 + }, + { + "epoch": 27.92267365661861, + "grad_norm": 0.17794452607631683, + "learning_rate": 0.0006, + "loss": 3.813382387161255, + "step": 2010 + }, + { + "epoch": 27.936653560506773, + "grad_norm": 0.1876268833875656, + "learning_rate": 0.0006, + "loss": 3.810610294342041, + "step": 2011 + }, + { + "epoch": 27.950633464394933, + "grad_norm": 0.19262051582336426, + "learning_rate": 0.0006, + "loss": 3.8113245964050293, + "step": 2012 + }, + { + "epoch": 27.964613368283093, + "grad_norm": 0.19371771812438965, + "learning_rate": 0.0006, + "loss": 3.804790496826172, + "step": 2013 + }, + { + "epoch": 27.978593272171253, + "grad_norm": 0.1922861784696579, + "learning_rate": 0.0006, + "loss": 3.8278889656066895, + "step": 2014 + }, + { + "epoch": 27.992573176059416, + "grad_norm": 0.19748565554618835, + "learning_rate": 0.0006, + "loss": 3.8127200603485107, + "step": 2015 + }, + { + "epoch": 28.0, + "grad_norm": 0.25027501583099365, + "learning_rate": 0.0006, + "loss": 3.7899413108825684, + "step": 2016 + }, + { + "epoch": 28.0, + "eval_loss": 4.047704219818115, + "eval_runtime": 44.293, + "eval_samples_per_second": 55.133, + "eval_steps_per_second": 3.454, + "step": 2016 + }, + { + "epoch": 28.01397990388816, + "grad_norm": 0.25172367691993713, + "learning_rate": 0.0006, + "loss": 3.75449538230896, + "step": 2017 + }, + { + "epoch": 28.027959807776323, + "grad_norm": 0.23494598269462585, + "learning_rate": 0.0006, + "loss": 3.7609024047851562, + "step": 2018 + }, + { + "epoch": 28.041939711664483, + "grad_norm": 0.22459708154201508, + "learning_rate": 0.0006, + "loss": 3.7843551635742188, + "step": 2019 + }, + { + "epoch": 28.055919615552643, + "grad_norm": 0.2038632035255432, + "learning_rate": 0.0006, + "loss": 3.7818198204040527, + "step": 2020 + }, + { + "epoch": 28.069899519440803, + "grad_norm": 0.22050008177757263, + "learning_rate": 0.0006, + "loss": 3.787442684173584, + "step": 2021 + }, + { + "epoch": 28.083879423328966, + "grad_norm": 0.24645832180976868, + "learning_rate": 0.0006, + "loss": 3.768704414367676, + "step": 2022 + }, + { + "epoch": 28.097859327217126, + "grad_norm": 0.2440163493156433, + "learning_rate": 0.0006, + "loss": 3.7783756256103516, + "step": 2023 + }, + { + "epoch": 28.111839231105286, + "grad_norm": 0.2482181042432785, + "learning_rate": 0.0006, + "loss": 3.786881923675537, + "step": 2024 + }, + { + "epoch": 28.125819134993446, + "grad_norm": 0.23494760692119598, + "learning_rate": 0.0006, + "loss": 3.790039300918579, + "step": 2025 + }, + { + "epoch": 28.13979903888161, + "grad_norm": 0.2172182947397232, + "learning_rate": 0.0006, + "loss": 3.818756580352783, + "step": 2026 + }, + { + "epoch": 28.15377894276977, + "grad_norm": 0.2103179395198822, + "learning_rate": 0.0006, + "loss": 3.7768917083740234, + "step": 2027 + }, + { + "epoch": 28.16775884665793, + "grad_norm": 0.22322365641593933, + "learning_rate": 0.0006, + "loss": 3.8223648071289062, + "step": 2028 + }, + { + "epoch": 28.18173875054609, + "grad_norm": 0.24199382960796356, + "learning_rate": 0.0006, + "loss": 3.781357765197754, + "step": 2029 + }, + { + "epoch": 28.195718654434252, + "grad_norm": 0.2500663101673126, + "learning_rate": 0.0006, + "loss": 3.8061184883117676, + "step": 2030 + }, + { + "epoch": 28.209698558322412, + "grad_norm": 0.2439824491739273, + "learning_rate": 0.0006, + "loss": 3.7886464595794678, + "step": 2031 + }, + { + "epoch": 28.22367846221057, + "grad_norm": 0.24563106894493103, + "learning_rate": 0.0006, + "loss": 3.7901692390441895, + "step": 2032 + }, + { + "epoch": 28.23765836609873, + "grad_norm": 0.2287624627351761, + "learning_rate": 0.0006, + "loss": 3.789931058883667, + "step": 2033 + }, + { + "epoch": 28.251638269986895, + "grad_norm": 0.2231188714504242, + "learning_rate": 0.0006, + "loss": 3.7879133224487305, + "step": 2034 + }, + { + "epoch": 28.265618173875055, + "grad_norm": 0.23090387880802155, + "learning_rate": 0.0006, + "loss": 3.7826130390167236, + "step": 2035 + }, + { + "epoch": 28.279598077763215, + "grad_norm": 0.216018944978714, + "learning_rate": 0.0006, + "loss": 3.7764949798583984, + "step": 2036 + }, + { + "epoch": 28.293577981651374, + "grad_norm": 0.22649185359477997, + "learning_rate": 0.0006, + "loss": 3.7911291122436523, + "step": 2037 + }, + { + "epoch": 28.307557885539538, + "grad_norm": 0.2350836843252182, + "learning_rate": 0.0006, + "loss": 3.7668724060058594, + "step": 2038 + }, + { + "epoch": 28.321537789427698, + "grad_norm": 0.23206329345703125, + "learning_rate": 0.0006, + "loss": 3.782243251800537, + "step": 2039 + }, + { + "epoch": 28.335517693315857, + "grad_norm": 0.21896308660507202, + "learning_rate": 0.0006, + "loss": 3.7605721950531006, + "step": 2040 + }, + { + "epoch": 28.34949759720402, + "grad_norm": 0.20381200313568115, + "learning_rate": 0.0006, + "loss": 3.743945598602295, + "step": 2041 + }, + { + "epoch": 28.36347750109218, + "grad_norm": 0.19196000695228577, + "learning_rate": 0.0006, + "loss": 3.808107852935791, + "step": 2042 + }, + { + "epoch": 28.37745740498034, + "grad_norm": 0.19517889618873596, + "learning_rate": 0.0006, + "loss": 3.7906723022460938, + "step": 2043 + }, + { + "epoch": 28.3914373088685, + "grad_norm": 0.20455795526504517, + "learning_rate": 0.0006, + "loss": 3.7421011924743652, + "step": 2044 + }, + { + "epoch": 28.405417212756664, + "grad_norm": 0.1867467314004898, + "learning_rate": 0.0006, + "loss": 3.775509834289551, + "step": 2045 + }, + { + "epoch": 28.419397116644824, + "grad_norm": 0.2029324471950531, + "learning_rate": 0.0006, + "loss": 3.771353244781494, + "step": 2046 + }, + { + "epoch": 28.433377020532983, + "grad_norm": 0.19967497885227203, + "learning_rate": 0.0006, + "loss": 3.7821149826049805, + "step": 2047 + }, + { + "epoch": 28.447356924421143, + "grad_norm": 0.19440607726573944, + "learning_rate": 0.0006, + "loss": 3.8114213943481445, + "step": 2048 + }, + { + "epoch": 28.461336828309307, + "grad_norm": 0.19679802656173706, + "learning_rate": 0.0006, + "loss": 3.7699532508850098, + "step": 2049 + }, + { + "epoch": 28.475316732197467, + "grad_norm": 0.1939811110496521, + "learning_rate": 0.0006, + "loss": 3.7673027515411377, + "step": 2050 + }, + { + "epoch": 28.489296636085626, + "grad_norm": 0.18712401390075684, + "learning_rate": 0.0006, + "loss": 3.816699266433716, + "step": 2051 + }, + { + "epoch": 28.503276539973786, + "grad_norm": 0.202956885099411, + "learning_rate": 0.0006, + "loss": 3.7746071815490723, + "step": 2052 + }, + { + "epoch": 28.51725644386195, + "grad_norm": 0.19098156690597534, + "learning_rate": 0.0006, + "loss": 3.8065481185913086, + "step": 2053 + }, + { + "epoch": 28.53123634775011, + "grad_norm": 0.21144428849220276, + "learning_rate": 0.0006, + "loss": 3.7890982627868652, + "step": 2054 + }, + { + "epoch": 28.54521625163827, + "grad_norm": 0.21882614493370056, + "learning_rate": 0.0006, + "loss": 3.8168821334838867, + "step": 2055 + }, + { + "epoch": 28.55919615552643, + "grad_norm": 0.22200101613998413, + "learning_rate": 0.0006, + "loss": 3.804454803466797, + "step": 2056 + }, + { + "epoch": 28.573176059414592, + "grad_norm": 0.22404780983924866, + "learning_rate": 0.0006, + "loss": 3.808764934539795, + "step": 2057 + }, + { + "epoch": 28.587155963302752, + "grad_norm": 0.22770099341869354, + "learning_rate": 0.0006, + "loss": 3.74835467338562, + "step": 2058 + }, + { + "epoch": 28.601135867190912, + "grad_norm": 0.23214420676231384, + "learning_rate": 0.0006, + "loss": 3.7480111122131348, + "step": 2059 + }, + { + "epoch": 28.615115771079076, + "grad_norm": 0.21786348521709442, + "learning_rate": 0.0006, + "loss": 3.8095176219940186, + "step": 2060 + }, + { + "epoch": 28.629095674967235, + "grad_norm": 0.21004106104373932, + "learning_rate": 0.0006, + "loss": 3.792745590209961, + "step": 2061 + }, + { + "epoch": 28.643075578855395, + "grad_norm": 0.21076138317584991, + "learning_rate": 0.0006, + "loss": 3.7878952026367188, + "step": 2062 + }, + { + "epoch": 28.657055482743555, + "grad_norm": 0.2184346616268158, + "learning_rate": 0.0006, + "loss": 3.757188320159912, + "step": 2063 + }, + { + "epoch": 28.67103538663172, + "grad_norm": 0.22100569307804108, + "learning_rate": 0.0006, + "loss": 3.8131773471832275, + "step": 2064 + }, + { + "epoch": 28.68501529051988, + "grad_norm": 0.23257511854171753, + "learning_rate": 0.0006, + "loss": 3.793826103210449, + "step": 2065 + }, + { + "epoch": 28.698995194408038, + "grad_norm": 0.22312869131565094, + "learning_rate": 0.0006, + "loss": 3.782083749771118, + "step": 2066 + }, + { + "epoch": 28.712975098296198, + "grad_norm": 0.2318405956029892, + "learning_rate": 0.0006, + "loss": 3.7814879417419434, + "step": 2067 + }, + { + "epoch": 28.72695500218436, + "grad_norm": 0.23719379305839539, + "learning_rate": 0.0006, + "loss": 3.8320484161376953, + "step": 2068 + }, + { + "epoch": 28.74093490607252, + "grad_norm": 0.23100806772708893, + "learning_rate": 0.0006, + "loss": 3.7921783924102783, + "step": 2069 + }, + { + "epoch": 28.75491480996068, + "grad_norm": 0.21540866792201996, + "learning_rate": 0.0006, + "loss": 3.8325204849243164, + "step": 2070 + }, + { + "epoch": 28.76889471384884, + "grad_norm": 0.2698654532432556, + "learning_rate": 0.0006, + "loss": 3.7965879440307617, + "step": 2071 + }, + { + "epoch": 28.782874617737004, + "grad_norm": 0.3101225793361664, + "learning_rate": 0.0006, + "loss": 3.78842830657959, + "step": 2072 + }, + { + "epoch": 28.796854521625164, + "grad_norm": 0.2607600688934326, + "learning_rate": 0.0006, + "loss": 3.770064115524292, + "step": 2073 + }, + { + "epoch": 28.810834425513324, + "grad_norm": 0.20558302104473114, + "learning_rate": 0.0006, + "loss": 3.7448501586914062, + "step": 2074 + }, + { + "epoch": 28.824814329401484, + "grad_norm": 0.20030120015144348, + "learning_rate": 0.0006, + "loss": 3.7689406871795654, + "step": 2075 + }, + { + "epoch": 28.838794233289647, + "grad_norm": 0.21781118214130402, + "learning_rate": 0.0006, + "loss": 3.7682244777679443, + "step": 2076 + }, + { + "epoch": 28.852774137177807, + "grad_norm": 0.23543044924736023, + "learning_rate": 0.0006, + "loss": 3.8094193935394287, + "step": 2077 + }, + { + "epoch": 28.866754041065967, + "grad_norm": 0.21634669601917267, + "learning_rate": 0.0006, + "loss": 3.792099952697754, + "step": 2078 + }, + { + "epoch": 28.88073394495413, + "grad_norm": 0.2251661866903305, + "learning_rate": 0.0006, + "loss": 3.7849509716033936, + "step": 2079 + }, + { + "epoch": 28.89471384884229, + "grad_norm": 0.23872914910316467, + "learning_rate": 0.0006, + "loss": 3.8391621112823486, + "step": 2080 + }, + { + "epoch": 28.90869375273045, + "grad_norm": 0.22259248793125153, + "learning_rate": 0.0006, + "loss": 3.8272876739501953, + "step": 2081 + }, + { + "epoch": 28.92267365661861, + "grad_norm": 0.22052262723445892, + "learning_rate": 0.0006, + "loss": 3.7986836433410645, + "step": 2082 + }, + { + "epoch": 28.936653560506773, + "grad_norm": 0.24487647414207458, + "learning_rate": 0.0006, + "loss": 3.798004150390625, + "step": 2083 + }, + { + "epoch": 28.950633464394933, + "grad_norm": 0.22992238402366638, + "learning_rate": 0.0006, + "loss": 3.788522720336914, + "step": 2084 + }, + { + "epoch": 28.964613368283093, + "grad_norm": 0.22521597146987915, + "learning_rate": 0.0006, + "loss": 3.767259120941162, + "step": 2085 + }, + { + "epoch": 28.978593272171253, + "grad_norm": 0.2201499044895172, + "learning_rate": 0.0006, + "loss": 3.7850542068481445, + "step": 2086 + }, + { + "epoch": 28.992573176059416, + "grad_norm": 0.22226814925670624, + "learning_rate": 0.0006, + "loss": 3.8013534545898438, + "step": 2087 + }, + { + "epoch": 29.0, + "grad_norm": 0.27624809741973877, + "learning_rate": 0.0006, + "loss": 3.762004852294922, + "step": 2088 + }, + { + "epoch": 29.0, + "eval_loss": 4.034304618835449, + "eval_runtime": 44.6573, + "eval_samples_per_second": 54.683, + "eval_steps_per_second": 3.426, + "step": 2088 + }, + { + "epoch": 29.01397990388816, + "grad_norm": 0.2550967037677765, + "learning_rate": 0.0006, + "loss": 3.7724227905273438, + "step": 2089 + }, + { + "epoch": 29.027959807776323, + "grad_norm": 0.26730602979660034, + "learning_rate": 0.0006, + "loss": 3.7728946208953857, + "step": 2090 + }, + { + "epoch": 29.041939711664483, + "grad_norm": 0.2394205927848816, + "learning_rate": 0.0006, + "loss": 3.7737584114074707, + "step": 2091 + }, + { + "epoch": 29.055919615552643, + "grad_norm": 0.22488200664520264, + "learning_rate": 0.0006, + "loss": 3.761014938354492, + "step": 2092 + }, + { + "epoch": 29.069899519440803, + "grad_norm": 0.2389903962612152, + "learning_rate": 0.0006, + "loss": 3.766557216644287, + "step": 2093 + }, + { + "epoch": 29.083879423328966, + "grad_norm": 0.234152153134346, + "learning_rate": 0.0006, + "loss": 3.7447147369384766, + "step": 2094 + }, + { + "epoch": 29.097859327217126, + "grad_norm": 0.23123252391815186, + "learning_rate": 0.0006, + "loss": 3.77197527885437, + "step": 2095 + }, + { + "epoch": 29.111839231105286, + "grad_norm": 0.23263143002986908, + "learning_rate": 0.0006, + "loss": 3.7390198707580566, + "step": 2096 + }, + { + "epoch": 29.125819134993446, + "grad_norm": 0.23235775530338287, + "learning_rate": 0.0006, + "loss": 3.7675256729125977, + "step": 2097 + }, + { + "epoch": 29.13979903888161, + "grad_norm": 0.2208816260099411, + "learning_rate": 0.0006, + "loss": 3.7588067054748535, + "step": 2098 + }, + { + "epoch": 29.15377894276977, + "grad_norm": 0.21216371655464172, + "learning_rate": 0.0006, + "loss": 3.7370502948760986, + "step": 2099 + }, + { + "epoch": 29.16775884665793, + "grad_norm": 0.2210543155670166, + "learning_rate": 0.0006, + "loss": 3.767308473587036, + "step": 2100 + }, + { + "epoch": 29.18173875054609, + "grad_norm": 0.21628431975841522, + "learning_rate": 0.0006, + "loss": 3.7298972606658936, + "step": 2101 + }, + { + "epoch": 29.195718654434252, + "grad_norm": 0.21493588387966156, + "learning_rate": 0.0006, + "loss": 3.7806448936462402, + "step": 2102 + }, + { + "epoch": 29.209698558322412, + "grad_norm": 0.25978055596351624, + "learning_rate": 0.0006, + "loss": 3.7716293334960938, + "step": 2103 + }, + { + "epoch": 29.22367846221057, + "grad_norm": 0.2744791507720947, + "learning_rate": 0.0006, + "loss": 3.76897931098938, + "step": 2104 + }, + { + "epoch": 29.23765836609873, + "grad_norm": 0.22959400713443756, + "learning_rate": 0.0006, + "loss": 3.7545714378356934, + "step": 2105 + }, + { + "epoch": 29.251638269986895, + "grad_norm": 0.20369231700897217, + "learning_rate": 0.0006, + "loss": 3.7944722175598145, + "step": 2106 + }, + { + "epoch": 29.265618173875055, + "grad_norm": 0.21663758158683777, + "learning_rate": 0.0006, + "loss": 3.7564756870269775, + "step": 2107 + }, + { + "epoch": 29.279598077763215, + "grad_norm": 0.21862861514091492, + "learning_rate": 0.0006, + "loss": 3.7722725868225098, + "step": 2108 + }, + { + "epoch": 29.293577981651374, + "grad_norm": 0.2044878453016281, + "learning_rate": 0.0006, + "loss": 3.7471303939819336, + "step": 2109 + }, + { + "epoch": 29.307557885539538, + "grad_norm": 0.23015929758548737, + "learning_rate": 0.0006, + "loss": 3.7584962844848633, + "step": 2110 + }, + { + "epoch": 29.321537789427698, + "grad_norm": 0.22548329830169678, + "learning_rate": 0.0006, + "loss": 3.795933723449707, + "step": 2111 + }, + { + "epoch": 29.335517693315857, + "grad_norm": 0.2000468522310257, + "learning_rate": 0.0006, + "loss": 3.766310691833496, + "step": 2112 + }, + { + "epoch": 29.34949759720402, + "grad_norm": 0.19711551070213318, + "learning_rate": 0.0006, + "loss": 3.7296276092529297, + "step": 2113 + }, + { + "epoch": 29.36347750109218, + "grad_norm": 0.18838997185230255, + "learning_rate": 0.0006, + "loss": 3.7685282230377197, + "step": 2114 + }, + { + "epoch": 29.37745740498034, + "grad_norm": 0.1897876113653183, + "learning_rate": 0.0006, + "loss": 3.7280936241149902, + "step": 2115 + }, + { + "epoch": 29.3914373088685, + "grad_norm": 0.21697933971881866, + "learning_rate": 0.0006, + "loss": 3.7991929054260254, + "step": 2116 + }, + { + "epoch": 29.405417212756664, + "grad_norm": 0.23445849120616913, + "learning_rate": 0.0006, + "loss": 3.7857418060302734, + "step": 2117 + }, + { + "epoch": 29.419397116644824, + "grad_norm": 0.24155527353286743, + "learning_rate": 0.0006, + "loss": 3.7897872924804688, + "step": 2118 + }, + { + "epoch": 29.433377020532983, + "grad_norm": 0.2610265016555786, + "learning_rate": 0.0006, + "loss": 3.7867324352264404, + "step": 2119 + }, + { + "epoch": 29.447356924421143, + "grad_norm": 0.2809581160545349, + "learning_rate": 0.0006, + "loss": 3.783799648284912, + "step": 2120 + }, + { + "epoch": 29.461336828309307, + "grad_norm": 0.2621572017669678, + "learning_rate": 0.0006, + "loss": 3.7778549194335938, + "step": 2121 + }, + { + "epoch": 29.475316732197467, + "grad_norm": 0.26002970337867737, + "learning_rate": 0.0006, + "loss": 3.787945508956909, + "step": 2122 + }, + { + "epoch": 29.489296636085626, + "grad_norm": 0.24866686761379242, + "learning_rate": 0.0006, + "loss": 3.7406349182128906, + "step": 2123 + }, + { + "epoch": 29.503276539973786, + "grad_norm": 0.25588324666023254, + "learning_rate": 0.0006, + "loss": 3.785625457763672, + "step": 2124 + }, + { + "epoch": 29.51725644386195, + "grad_norm": 0.24724243581295013, + "learning_rate": 0.0006, + "loss": 3.7581701278686523, + "step": 2125 + }, + { + "epoch": 29.53123634775011, + "grad_norm": 0.23544734716415405, + "learning_rate": 0.0006, + "loss": 3.8163957595825195, + "step": 2126 + }, + { + "epoch": 29.54521625163827, + "grad_norm": 0.2108801156282425, + "learning_rate": 0.0006, + "loss": 3.7881739139556885, + "step": 2127 + }, + { + "epoch": 29.55919615552643, + "grad_norm": 0.20459668338298798, + "learning_rate": 0.0006, + "loss": 3.7641284465789795, + "step": 2128 + }, + { + "epoch": 29.573176059414592, + "grad_norm": 0.24020728468894958, + "learning_rate": 0.0006, + "loss": 3.7748730182647705, + "step": 2129 + }, + { + "epoch": 29.587155963302752, + "grad_norm": 0.256273478269577, + "learning_rate": 0.0006, + "loss": 3.8076486587524414, + "step": 2130 + }, + { + "epoch": 29.601135867190912, + "grad_norm": 0.23295973241329193, + "learning_rate": 0.0006, + "loss": 3.7687063217163086, + "step": 2131 + }, + { + "epoch": 29.615115771079076, + "grad_norm": 0.21554847061634064, + "learning_rate": 0.0006, + "loss": 3.781867027282715, + "step": 2132 + }, + { + "epoch": 29.629095674967235, + "grad_norm": 0.20645774900913239, + "learning_rate": 0.0006, + "loss": 3.7813425064086914, + "step": 2133 + }, + { + "epoch": 29.643075578855395, + "grad_norm": 0.2018265724182129, + "learning_rate": 0.0006, + "loss": 3.772895574569702, + "step": 2134 + }, + { + "epoch": 29.657055482743555, + "grad_norm": 0.20170100033283234, + "learning_rate": 0.0006, + "loss": 3.7819175720214844, + "step": 2135 + }, + { + "epoch": 29.67103538663172, + "grad_norm": 0.22640688717365265, + "learning_rate": 0.0006, + "loss": 3.7999017238616943, + "step": 2136 + }, + { + "epoch": 29.68501529051988, + "grad_norm": 0.23747675120830536, + "learning_rate": 0.0006, + "loss": 3.804999828338623, + "step": 2137 + }, + { + "epoch": 29.698995194408038, + "grad_norm": 0.20005857944488525, + "learning_rate": 0.0006, + "loss": 3.7815160751342773, + "step": 2138 + }, + { + "epoch": 29.712975098296198, + "grad_norm": 0.17901667952537537, + "learning_rate": 0.0006, + "loss": 3.7898688316345215, + "step": 2139 + }, + { + "epoch": 29.72695500218436, + "grad_norm": 0.1890905797481537, + "learning_rate": 0.0006, + "loss": 3.8001184463500977, + "step": 2140 + }, + { + "epoch": 29.74093490607252, + "grad_norm": 0.19565847516059875, + "learning_rate": 0.0006, + "loss": 3.7522482872009277, + "step": 2141 + }, + { + "epoch": 29.75491480996068, + "grad_norm": 0.19429196417331696, + "learning_rate": 0.0006, + "loss": 3.768972158432007, + "step": 2142 + }, + { + "epoch": 29.76889471384884, + "grad_norm": 0.23846636712551117, + "learning_rate": 0.0006, + "loss": 3.765216112136841, + "step": 2143 + }, + { + "epoch": 29.782874617737004, + "grad_norm": 0.23820780217647552, + "learning_rate": 0.0006, + "loss": 3.8027703762054443, + "step": 2144 + }, + { + "epoch": 29.796854521625164, + "grad_norm": 0.21104726195335388, + "learning_rate": 0.0006, + "loss": 3.7682833671569824, + "step": 2145 + }, + { + "epoch": 29.810834425513324, + "grad_norm": 0.1911051720380783, + "learning_rate": 0.0006, + "loss": 3.781782627105713, + "step": 2146 + }, + { + "epoch": 29.824814329401484, + "grad_norm": 0.18881288170814514, + "learning_rate": 0.0006, + "loss": 3.7703428268432617, + "step": 2147 + }, + { + "epoch": 29.838794233289647, + "grad_norm": 0.18292994797229767, + "learning_rate": 0.0006, + "loss": 3.769176721572876, + "step": 2148 + }, + { + "epoch": 29.852774137177807, + "grad_norm": 0.1777714639902115, + "learning_rate": 0.0006, + "loss": 3.7488298416137695, + "step": 2149 + }, + { + "epoch": 29.866754041065967, + "grad_norm": 0.2037898749113083, + "learning_rate": 0.0006, + "loss": 3.804396390914917, + "step": 2150 + }, + { + "epoch": 29.88073394495413, + "grad_norm": 0.2121828943490982, + "learning_rate": 0.0006, + "loss": 3.75870943069458, + "step": 2151 + }, + { + "epoch": 29.89471384884229, + "grad_norm": 0.23231184482574463, + "learning_rate": 0.0006, + "loss": 3.80178165435791, + "step": 2152 + }, + { + "epoch": 29.90869375273045, + "grad_norm": 0.24045611917972565, + "learning_rate": 0.0006, + "loss": 3.7690834999084473, + "step": 2153 + }, + { + "epoch": 29.92267365661861, + "grad_norm": 0.19830496609210968, + "learning_rate": 0.0006, + "loss": 3.764401912689209, + "step": 2154 + }, + { + "epoch": 29.936653560506773, + "grad_norm": 0.17704227566719055, + "learning_rate": 0.0006, + "loss": 3.7634594440460205, + "step": 2155 + }, + { + "epoch": 29.950633464394933, + "grad_norm": 0.17783164978027344, + "learning_rate": 0.0006, + "loss": 3.7856998443603516, + "step": 2156 + }, + { + "epoch": 29.964613368283093, + "grad_norm": 0.19684971868991852, + "learning_rate": 0.0006, + "loss": 3.805774211883545, + "step": 2157 + }, + { + "epoch": 29.978593272171253, + "grad_norm": 0.21662312746047974, + "learning_rate": 0.0006, + "loss": 3.757896661758423, + "step": 2158 + }, + { + "epoch": 29.992573176059416, + "grad_norm": 0.22000661492347717, + "learning_rate": 0.0006, + "loss": 3.7747678756713867, + "step": 2159 + }, + { + "epoch": 30.0, + "grad_norm": 0.21501901745796204, + "learning_rate": 0.0006, + "loss": 3.785585880279541, + "step": 2160 + }, + { + "epoch": 30.0, + "eval_loss": 4.034003734588623, + "eval_runtime": 44.9097, + "eval_samples_per_second": 54.376, + "eval_steps_per_second": 3.407, + "step": 2160 + }, + { + "epoch": 30.01397990388816, + "grad_norm": 0.19710904359817505, + "learning_rate": 0.0006, + "loss": 3.756235122680664, + "step": 2161 + }, + { + "epoch": 30.027959807776323, + "grad_norm": 0.19829736649990082, + "learning_rate": 0.0006, + "loss": 3.734067916870117, + "step": 2162 + }, + { + "epoch": 30.041939711664483, + "grad_norm": 0.21622520685195923, + "learning_rate": 0.0006, + "loss": 3.7329437732696533, + "step": 2163 + }, + { + "epoch": 30.055919615552643, + "grad_norm": 0.22544652223587036, + "learning_rate": 0.0006, + "loss": 3.748716354370117, + "step": 2164 + }, + { + "epoch": 30.069899519440803, + "grad_norm": 0.21098364889621735, + "learning_rate": 0.0006, + "loss": 3.779047727584839, + "step": 2165 + }, + { + "epoch": 30.083879423328966, + "grad_norm": 0.21309930086135864, + "learning_rate": 0.0006, + "loss": 3.7690274715423584, + "step": 2166 + }, + { + "epoch": 30.097859327217126, + "grad_norm": 0.23025690019130707, + "learning_rate": 0.0006, + "loss": 3.7500953674316406, + "step": 2167 + }, + { + "epoch": 30.111839231105286, + "grad_norm": 0.25107935070991516, + "learning_rate": 0.0006, + "loss": 3.745492458343506, + "step": 2168 + }, + { + "epoch": 30.125819134993446, + "grad_norm": 0.29873573780059814, + "learning_rate": 0.0006, + "loss": 3.759793758392334, + "step": 2169 + }, + { + "epoch": 30.13979903888161, + "grad_norm": 0.2810286283493042, + "learning_rate": 0.0006, + "loss": 3.772998809814453, + "step": 2170 + }, + { + "epoch": 30.15377894276977, + "grad_norm": 0.2102176398038864, + "learning_rate": 0.0006, + "loss": 3.740170955657959, + "step": 2171 + }, + { + "epoch": 30.16775884665793, + "grad_norm": 0.24143251776695251, + "learning_rate": 0.0006, + "loss": 3.7317001819610596, + "step": 2172 + }, + { + "epoch": 30.18173875054609, + "grad_norm": 0.2643064558506012, + "learning_rate": 0.0006, + "loss": 3.773263692855835, + "step": 2173 + }, + { + "epoch": 30.195718654434252, + "grad_norm": 0.27571243047714233, + "learning_rate": 0.0006, + "loss": 3.7619900703430176, + "step": 2174 + }, + { + "epoch": 30.209698558322412, + "grad_norm": 0.25359588861465454, + "learning_rate": 0.0006, + "loss": 3.7608513832092285, + "step": 2175 + }, + { + "epoch": 30.22367846221057, + "grad_norm": 0.2500684857368469, + "learning_rate": 0.0006, + "loss": 3.75856614112854, + "step": 2176 + }, + { + "epoch": 30.23765836609873, + "grad_norm": 0.23100309073925018, + "learning_rate": 0.0006, + "loss": 3.749786853790283, + "step": 2177 + }, + { + "epoch": 30.251638269986895, + "grad_norm": 0.24384984374046326, + "learning_rate": 0.0006, + "loss": 3.762244701385498, + "step": 2178 + }, + { + "epoch": 30.265618173875055, + "grad_norm": 0.24593998491764069, + "learning_rate": 0.0006, + "loss": 3.754594326019287, + "step": 2179 + }, + { + "epoch": 30.279598077763215, + "grad_norm": 0.2529342770576477, + "learning_rate": 0.0006, + "loss": 3.7641053199768066, + "step": 2180 + }, + { + "epoch": 30.293577981651374, + "grad_norm": 0.25954094529151917, + "learning_rate": 0.0006, + "loss": 3.810336112976074, + "step": 2181 + }, + { + "epoch": 30.307557885539538, + "grad_norm": 0.2249951958656311, + "learning_rate": 0.0006, + "loss": 3.7542617321014404, + "step": 2182 + }, + { + "epoch": 30.321537789427698, + "grad_norm": 0.19795064628124237, + "learning_rate": 0.0006, + "loss": 3.7734434604644775, + "step": 2183 + }, + { + "epoch": 30.335517693315857, + "grad_norm": 0.20744608342647552, + "learning_rate": 0.0006, + "loss": 3.7816128730773926, + "step": 2184 + }, + { + "epoch": 30.34949759720402, + "grad_norm": 0.19988055527210236, + "learning_rate": 0.0006, + "loss": 3.7631936073303223, + "step": 2185 + }, + { + "epoch": 30.36347750109218, + "grad_norm": 0.22226445376873016, + "learning_rate": 0.0006, + "loss": 3.762910842895508, + "step": 2186 + }, + { + "epoch": 30.37745740498034, + "grad_norm": 0.21986067295074463, + "learning_rate": 0.0006, + "loss": 3.733893394470215, + "step": 2187 + }, + { + "epoch": 30.3914373088685, + "grad_norm": 0.2170228660106659, + "learning_rate": 0.0006, + "loss": 3.726433515548706, + "step": 2188 + }, + { + "epoch": 30.405417212756664, + "grad_norm": 0.2179550975561142, + "learning_rate": 0.0006, + "loss": 3.792311668395996, + "step": 2189 + }, + { + "epoch": 30.419397116644824, + "grad_norm": 0.208037331700325, + "learning_rate": 0.0006, + "loss": 3.774639129638672, + "step": 2190 + }, + { + "epoch": 30.433377020532983, + "grad_norm": 0.20745441317558289, + "learning_rate": 0.0006, + "loss": 3.776130199432373, + "step": 2191 + }, + { + "epoch": 30.447356924421143, + "grad_norm": 0.1988024264574051, + "learning_rate": 0.0006, + "loss": 3.7453784942626953, + "step": 2192 + }, + { + "epoch": 30.461336828309307, + "grad_norm": 0.194968581199646, + "learning_rate": 0.0006, + "loss": 3.764653205871582, + "step": 2193 + }, + { + "epoch": 30.475316732197467, + "grad_norm": 0.20658300817012787, + "learning_rate": 0.0006, + "loss": 3.796513080596924, + "step": 2194 + }, + { + "epoch": 30.489296636085626, + "grad_norm": 0.2123410701751709, + "learning_rate": 0.0006, + "loss": 3.7630836963653564, + "step": 2195 + }, + { + "epoch": 30.503276539973786, + "grad_norm": 0.20894059538841248, + "learning_rate": 0.0006, + "loss": 3.7265470027923584, + "step": 2196 + }, + { + "epoch": 30.51725644386195, + "grad_norm": 0.2016828954219818, + "learning_rate": 0.0006, + "loss": 3.8083386421203613, + "step": 2197 + }, + { + "epoch": 30.53123634775011, + "grad_norm": 0.19584205746650696, + "learning_rate": 0.0006, + "loss": 3.7492105960845947, + "step": 2198 + }, + { + "epoch": 30.54521625163827, + "grad_norm": 0.18635272979736328, + "learning_rate": 0.0006, + "loss": 3.711009979248047, + "step": 2199 + }, + { + "epoch": 30.55919615552643, + "grad_norm": 0.1920594871044159, + "learning_rate": 0.0006, + "loss": 3.760801315307617, + "step": 2200 + }, + { + "epoch": 30.573176059414592, + "grad_norm": 0.1978331208229065, + "learning_rate": 0.0006, + "loss": 3.780529022216797, + "step": 2201 + }, + { + "epoch": 30.587155963302752, + "grad_norm": 0.20076943933963776, + "learning_rate": 0.0006, + "loss": 3.7767038345336914, + "step": 2202 + }, + { + "epoch": 30.601135867190912, + "grad_norm": 0.2067444622516632, + "learning_rate": 0.0006, + "loss": 3.7607920169830322, + "step": 2203 + }, + { + "epoch": 30.615115771079076, + "grad_norm": 0.2081940472126007, + "learning_rate": 0.0006, + "loss": 3.741936206817627, + "step": 2204 + }, + { + "epoch": 30.629095674967235, + "grad_norm": 0.21212869882583618, + "learning_rate": 0.0006, + "loss": 3.7597827911376953, + "step": 2205 + }, + { + "epoch": 30.643075578855395, + "grad_norm": 0.21539026498794556, + "learning_rate": 0.0006, + "loss": 3.764646053314209, + "step": 2206 + }, + { + "epoch": 30.657055482743555, + "grad_norm": 0.19788387417793274, + "learning_rate": 0.0006, + "loss": 3.7535128593444824, + "step": 2207 + }, + { + "epoch": 30.67103538663172, + "grad_norm": 0.20757688581943512, + "learning_rate": 0.0006, + "loss": 3.7414169311523438, + "step": 2208 + }, + { + "epoch": 30.68501529051988, + "grad_norm": 0.199361652135849, + "learning_rate": 0.0006, + "loss": 3.7578506469726562, + "step": 2209 + }, + { + "epoch": 30.698995194408038, + "grad_norm": 0.1909894198179245, + "learning_rate": 0.0006, + "loss": 3.736250400543213, + "step": 2210 + }, + { + "epoch": 30.712975098296198, + "grad_norm": 0.19766664505004883, + "learning_rate": 0.0006, + "loss": 3.7435379028320312, + "step": 2211 + }, + { + "epoch": 30.72695500218436, + "grad_norm": 0.21857766807079315, + "learning_rate": 0.0006, + "loss": 3.7478690147399902, + "step": 2212 + }, + { + "epoch": 30.74093490607252, + "grad_norm": 0.22385898232460022, + "learning_rate": 0.0006, + "loss": 3.7522530555725098, + "step": 2213 + }, + { + "epoch": 30.75491480996068, + "grad_norm": 0.2329241931438446, + "learning_rate": 0.0006, + "loss": 3.7568247318267822, + "step": 2214 + }, + { + "epoch": 30.76889471384884, + "grad_norm": 0.2218400090932846, + "learning_rate": 0.0006, + "loss": 3.7662744522094727, + "step": 2215 + }, + { + "epoch": 30.782874617737004, + "grad_norm": 0.21350212395191193, + "learning_rate": 0.0006, + "loss": 3.7683777809143066, + "step": 2216 + }, + { + "epoch": 30.796854521625164, + "grad_norm": 0.22357074916362762, + "learning_rate": 0.0006, + "loss": 3.763437032699585, + "step": 2217 + }, + { + "epoch": 30.810834425513324, + "grad_norm": 0.22268560528755188, + "learning_rate": 0.0006, + "loss": 3.772836685180664, + "step": 2218 + }, + { + "epoch": 30.824814329401484, + "grad_norm": 0.2434026449918747, + "learning_rate": 0.0006, + "loss": 3.752986431121826, + "step": 2219 + }, + { + "epoch": 30.838794233289647, + "grad_norm": 0.2298414409160614, + "learning_rate": 0.0006, + "loss": 3.7837061882019043, + "step": 2220 + }, + { + "epoch": 30.852774137177807, + "grad_norm": 0.227672278881073, + "learning_rate": 0.0006, + "loss": 3.746065378189087, + "step": 2221 + }, + { + "epoch": 30.866754041065967, + "grad_norm": 0.2562827169895172, + "learning_rate": 0.0006, + "loss": 3.7741947174072266, + "step": 2222 + }, + { + "epoch": 30.88073394495413, + "grad_norm": 0.23657815158367157, + "learning_rate": 0.0006, + "loss": 3.746457099914551, + "step": 2223 + }, + { + "epoch": 30.89471384884229, + "grad_norm": 0.2158907800912857, + "learning_rate": 0.0006, + "loss": 3.7821710109710693, + "step": 2224 + }, + { + "epoch": 30.90869375273045, + "grad_norm": 0.22501254081726074, + "learning_rate": 0.0006, + "loss": 3.7528274059295654, + "step": 2225 + }, + { + "epoch": 30.92267365661861, + "grad_norm": 0.20252224802970886, + "learning_rate": 0.0006, + "loss": 3.749418258666992, + "step": 2226 + }, + { + "epoch": 30.936653560506773, + "grad_norm": 0.2067883312702179, + "learning_rate": 0.0006, + "loss": 3.7560606002807617, + "step": 2227 + }, + { + "epoch": 30.950633464394933, + "grad_norm": 0.23104053735733032, + "learning_rate": 0.0006, + "loss": 3.7883846759796143, + "step": 2228 + }, + { + "epoch": 30.964613368283093, + "grad_norm": 0.21476604044437408, + "learning_rate": 0.0006, + "loss": 3.7976977825164795, + "step": 2229 + }, + { + "epoch": 30.978593272171253, + "grad_norm": 0.2130427062511444, + "learning_rate": 0.0006, + "loss": 3.7429304122924805, + "step": 2230 + }, + { + "epoch": 30.992573176059416, + "grad_norm": 0.2047216147184372, + "learning_rate": 0.0006, + "loss": 3.7669787406921387, + "step": 2231 + }, + { + "epoch": 31.0, + "grad_norm": 0.22254081070423126, + "learning_rate": 0.0006, + "loss": 3.7794251441955566, + "step": 2232 + }, + { + "epoch": 31.0, + "eval_loss": 4.039162635803223, + "eval_runtime": 44.9069, + "eval_samples_per_second": 54.379, + "eval_steps_per_second": 3.407, + "step": 2232 + }, + { + "epoch": 31.01397990388816, + "grad_norm": 0.2278132289648056, + "learning_rate": 0.0006, + "loss": 3.7363929748535156, + "step": 2233 + }, + { + "epoch": 31.027959807776323, + "grad_norm": 0.2377072274684906, + "learning_rate": 0.0006, + "loss": 3.72847318649292, + "step": 2234 + }, + { + "epoch": 31.041939711664483, + "grad_norm": 0.23790542781352997, + "learning_rate": 0.0006, + "loss": 3.767193078994751, + "step": 2235 + }, + { + "epoch": 31.055919615552643, + "grad_norm": 0.2587272524833679, + "learning_rate": 0.0006, + "loss": 3.7564640045166016, + "step": 2236 + }, + { + "epoch": 31.069899519440803, + "grad_norm": 0.27550312876701355, + "learning_rate": 0.0006, + "loss": 3.727578639984131, + "step": 2237 + }, + { + "epoch": 31.083879423328966, + "grad_norm": 0.2488662451505661, + "learning_rate": 0.0006, + "loss": 3.7420730590820312, + "step": 2238 + }, + { + "epoch": 31.097859327217126, + "grad_norm": 0.22699029743671417, + "learning_rate": 0.0006, + "loss": 3.7323155403137207, + "step": 2239 + }, + { + "epoch": 31.111839231105286, + "grad_norm": 0.23360148072242737, + "learning_rate": 0.0006, + "loss": 3.719024181365967, + "step": 2240 + }, + { + "epoch": 31.125819134993446, + "grad_norm": 0.24322988092899323, + "learning_rate": 0.0006, + "loss": 3.74485445022583, + "step": 2241 + }, + { + "epoch": 31.13979903888161, + "grad_norm": 0.2474174052476883, + "learning_rate": 0.0006, + "loss": 3.746826171875, + "step": 2242 + }, + { + "epoch": 31.15377894276977, + "grad_norm": 0.2417406439781189, + "learning_rate": 0.0006, + "loss": 3.7285032272338867, + "step": 2243 + }, + { + "epoch": 31.16775884665793, + "grad_norm": 0.2390318512916565, + "learning_rate": 0.0006, + "loss": 3.7464442253112793, + "step": 2244 + }, + { + "epoch": 31.18173875054609, + "grad_norm": 0.21819323301315308, + "learning_rate": 0.0006, + "loss": 3.735110282897949, + "step": 2245 + }, + { + "epoch": 31.195718654434252, + "grad_norm": 0.21953554451465607, + "learning_rate": 0.0006, + "loss": 3.7270030975341797, + "step": 2246 + }, + { + "epoch": 31.209698558322412, + "grad_norm": 0.1930384635925293, + "learning_rate": 0.0006, + "loss": 3.7519941329956055, + "step": 2247 + }, + { + "epoch": 31.22367846221057, + "grad_norm": 0.19799190759658813, + "learning_rate": 0.0006, + "loss": 3.7428221702575684, + "step": 2248 + }, + { + "epoch": 31.23765836609873, + "grad_norm": 0.20948201417922974, + "learning_rate": 0.0006, + "loss": 3.733120918273926, + "step": 2249 + }, + { + "epoch": 31.251638269986895, + "grad_norm": 0.23768769204616547, + "learning_rate": 0.0006, + "loss": 3.7059035301208496, + "step": 2250 + }, + { + "epoch": 31.265618173875055, + "grad_norm": 0.2808842957019806, + "learning_rate": 0.0006, + "loss": 3.7245287895202637, + "step": 2251 + }, + { + "epoch": 31.279598077763215, + "grad_norm": 0.27633124589920044, + "learning_rate": 0.0006, + "loss": 3.7436366081237793, + "step": 2252 + }, + { + "epoch": 31.293577981651374, + "grad_norm": 0.24137185513973236, + "learning_rate": 0.0006, + "loss": 3.7651219367980957, + "step": 2253 + }, + { + "epoch": 31.307557885539538, + "grad_norm": 0.22056810557842255, + "learning_rate": 0.0006, + "loss": 3.7417521476745605, + "step": 2254 + }, + { + "epoch": 31.321537789427698, + "grad_norm": 0.20137323439121246, + "learning_rate": 0.0006, + "loss": 3.750187397003174, + "step": 2255 + }, + { + "epoch": 31.335517693315857, + "grad_norm": 0.2142433375120163, + "learning_rate": 0.0006, + "loss": 3.7292675971984863, + "step": 2256 + }, + { + "epoch": 31.34949759720402, + "grad_norm": 0.21193967759609222, + "learning_rate": 0.0006, + "loss": 3.7459473609924316, + "step": 2257 + }, + { + "epoch": 31.36347750109218, + "grad_norm": 0.21418534219264984, + "learning_rate": 0.0006, + "loss": 3.754359722137451, + "step": 2258 + }, + { + "epoch": 31.37745740498034, + "grad_norm": 0.23507359623908997, + "learning_rate": 0.0006, + "loss": 3.763413906097412, + "step": 2259 + }, + { + "epoch": 31.3914373088685, + "grad_norm": 0.20393887162208557, + "learning_rate": 0.0006, + "loss": 3.73878812789917, + "step": 2260 + }, + { + "epoch": 31.405417212756664, + "grad_norm": 0.21752159297466278, + "learning_rate": 0.0006, + "loss": 3.750549793243408, + "step": 2261 + }, + { + "epoch": 31.419397116644824, + "grad_norm": 0.22629529237747192, + "learning_rate": 0.0006, + "loss": 3.7791430950164795, + "step": 2262 + }, + { + "epoch": 31.433377020532983, + "grad_norm": 0.2114613950252533, + "learning_rate": 0.0006, + "loss": 3.7709264755249023, + "step": 2263 + }, + { + "epoch": 31.447356924421143, + "grad_norm": 0.23241667449474335, + "learning_rate": 0.0006, + "loss": 3.745750665664673, + "step": 2264 + }, + { + "epoch": 31.461336828309307, + "grad_norm": 0.2434246987104416, + "learning_rate": 0.0006, + "loss": 3.769727945327759, + "step": 2265 + }, + { + "epoch": 31.475316732197467, + "grad_norm": 0.247820645570755, + "learning_rate": 0.0006, + "loss": 3.7528204917907715, + "step": 2266 + }, + { + "epoch": 31.489296636085626, + "grad_norm": 0.21287164092063904, + "learning_rate": 0.0006, + "loss": 3.728661060333252, + "step": 2267 + }, + { + "epoch": 31.503276539973786, + "grad_norm": 0.20983846485614777, + "learning_rate": 0.0006, + "loss": 3.7524428367614746, + "step": 2268 + }, + { + "epoch": 31.51725644386195, + "grad_norm": 0.23799288272857666, + "learning_rate": 0.0006, + "loss": 3.7276647090911865, + "step": 2269 + }, + { + "epoch": 31.53123634775011, + "grad_norm": 0.247065007686615, + "learning_rate": 0.0006, + "loss": 3.7506704330444336, + "step": 2270 + }, + { + "epoch": 31.54521625163827, + "grad_norm": 0.20670939981937408, + "learning_rate": 0.0006, + "loss": 3.71852445602417, + "step": 2271 + }, + { + "epoch": 31.55919615552643, + "grad_norm": 0.19463716447353363, + "learning_rate": 0.0006, + "loss": 3.732757568359375, + "step": 2272 + }, + { + "epoch": 31.573176059414592, + "grad_norm": 0.20368841290473938, + "learning_rate": 0.0006, + "loss": 3.746676445007324, + "step": 2273 + }, + { + "epoch": 31.587155963302752, + "grad_norm": 0.19691342115402222, + "learning_rate": 0.0006, + "loss": 3.7535760402679443, + "step": 2274 + }, + { + "epoch": 31.601135867190912, + "grad_norm": 0.2026553899049759, + "learning_rate": 0.0006, + "loss": 3.7406957149505615, + "step": 2275 + }, + { + "epoch": 31.615115771079076, + "grad_norm": 0.21494299173355103, + "learning_rate": 0.0006, + "loss": 3.735888957977295, + "step": 2276 + }, + { + "epoch": 31.629095674967235, + "grad_norm": 0.21644766628742218, + "learning_rate": 0.0006, + "loss": 3.723767042160034, + "step": 2277 + }, + { + "epoch": 31.643075578855395, + "grad_norm": 0.20087581872940063, + "learning_rate": 0.0006, + "loss": 3.7622008323669434, + "step": 2278 + }, + { + "epoch": 31.657055482743555, + "grad_norm": 0.1949695646762848, + "learning_rate": 0.0006, + "loss": 3.7726354598999023, + "step": 2279 + }, + { + "epoch": 31.67103538663172, + "grad_norm": 0.19120797514915466, + "learning_rate": 0.0006, + "loss": 3.7454679012298584, + "step": 2280 + }, + { + "epoch": 31.68501529051988, + "grad_norm": 0.19480115175247192, + "learning_rate": 0.0006, + "loss": 3.743934392929077, + "step": 2281 + }, + { + "epoch": 31.698995194408038, + "grad_norm": 0.1891610324382782, + "learning_rate": 0.0006, + "loss": 3.7724897861480713, + "step": 2282 + }, + { + "epoch": 31.712975098296198, + "grad_norm": 0.18533185124397278, + "learning_rate": 0.0006, + "loss": 3.7556838989257812, + "step": 2283 + }, + { + "epoch": 31.72695500218436, + "grad_norm": 0.20079447329044342, + "learning_rate": 0.0006, + "loss": 3.76758074760437, + "step": 2284 + }, + { + "epoch": 31.74093490607252, + "grad_norm": 0.2103433609008789, + "learning_rate": 0.0006, + "loss": 3.769477367401123, + "step": 2285 + }, + { + "epoch": 31.75491480996068, + "grad_norm": 0.21428923308849335, + "learning_rate": 0.0006, + "loss": 3.7317447662353516, + "step": 2286 + }, + { + "epoch": 31.76889471384884, + "grad_norm": 0.20154133439064026, + "learning_rate": 0.0006, + "loss": 3.749814987182617, + "step": 2287 + }, + { + "epoch": 31.782874617737004, + "grad_norm": 0.18998542428016663, + "learning_rate": 0.0006, + "loss": 3.7655510902404785, + "step": 2288 + }, + { + "epoch": 31.796854521625164, + "grad_norm": 0.2068665474653244, + "learning_rate": 0.0006, + "loss": 3.7375988960266113, + "step": 2289 + }, + { + "epoch": 31.810834425513324, + "grad_norm": 0.22979815304279327, + "learning_rate": 0.0006, + "loss": 3.728095531463623, + "step": 2290 + }, + { + "epoch": 31.824814329401484, + "grad_norm": 0.2378212958574295, + "learning_rate": 0.0006, + "loss": 3.73091459274292, + "step": 2291 + }, + { + "epoch": 31.838794233289647, + "grad_norm": 0.2353672832250595, + "learning_rate": 0.0006, + "loss": 3.7491769790649414, + "step": 2292 + }, + { + "epoch": 31.852774137177807, + "grad_norm": 0.22341586649417877, + "learning_rate": 0.0006, + "loss": 3.777111530303955, + "step": 2293 + }, + { + "epoch": 31.866754041065967, + "grad_norm": 0.20436930656433105, + "learning_rate": 0.0006, + "loss": 3.740997552871704, + "step": 2294 + }, + { + "epoch": 31.88073394495413, + "grad_norm": 0.20836040377616882, + "learning_rate": 0.0006, + "loss": 3.755582571029663, + "step": 2295 + }, + { + "epoch": 31.89471384884229, + "grad_norm": 0.2045193612575531, + "learning_rate": 0.0006, + "loss": 3.7583560943603516, + "step": 2296 + }, + { + "epoch": 31.90869375273045, + "grad_norm": 0.2025591880083084, + "learning_rate": 0.0006, + "loss": 3.773345470428467, + "step": 2297 + }, + { + "epoch": 31.92267365661861, + "grad_norm": 0.20309099555015564, + "learning_rate": 0.0006, + "loss": 3.7392163276672363, + "step": 2298 + }, + { + "epoch": 31.936653560506773, + "grad_norm": 0.2129351645708084, + "learning_rate": 0.0006, + "loss": 3.7801311016082764, + "step": 2299 + }, + { + "epoch": 31.950633464394933, + "grad_norm": 0.19950738549232483, + "learning_rate": 0.0006, + "loss": 3.779261589050293, + "step": 2300 + }, + { + "epoch": 31.964613368283093, + "grad_norm": 0.22837352752685547, + "learning_rate": 0.0006, + "loss": 3.782731294631958, + "step": 2301 + }, + { + "epoch": 31.978593272171253, + "grad_norm": 0.2576889097690582, + "learning_rate": 0.0006, + "loss": 3.7778096199035645, + "step": 2302 + }, + { + "epoch": 31.992573176059416, + "grad_norm": 0.2770138382911682, + "learning_rate": 0.0006, + "loss": 3.735755443572998, + "step": 2303 + }, + { + "epoch": 32.0, + "grad_norm": 0.2632865309715271, + "learning_rate": 0.0006, + "loss": 3.7562808990478516, + "step": 2304 + }, + { + "epoch": 32.0, + "eval_loss": 4.031628608703613, + "eval_runtime": 44.2115, + "eval_samples_per_second": 55.234, + "eval_steps_per_second": 3.461, + "step": 2304 + }, + { + "epoch": 32.01397990388816, + "grad_norm": 0.20234128832817078, + "learning_rate": 0.0006, + "loss": 3.734489917755127, + "step": 2305 + }, + { + "epoch": 32.02795980777632, + "grad_norm": 0.24983637034893036, + "learning_rate": 0.0006, + "loss": 3.7351019382476807, + "step": 2306 + }, + { + "epoch": 32.04193971166448, + "grad_norm": 0.27358478307724, + "learning_rate": 0.0006, + "loss": 3.708712100982666, + "step": 2307 + }, + { + "epoch": 32.05591961555265, + "grad_norm": 0.24693739414215088, + "learning_rate": 0.0006, + "loss": 3.731858491897583, + "step": 2308 + }, + { + "epoch": 32.0698995194408, + "grad_norm": 0.22751131653785706, + "learning_rate": 0.0006, + "loss": 3.7074670791625977, + "step": 2309 + }, + { + "epoch": 32.083879423328966, + "grad_norm": 0.23400720953941345, + "learning_rate": 0.0006, + "loss": 3.714092493057251, + "step": 2310 + }, + { + "epoch": 32.09785932721712, + "grad_norm": 0.20711684226989746, + "learning_rate": 0.0006, + "loss": 3.754727840423584, + "step": 2311 + }, + { + "epoch": 32.111839231105286, + "grad_norm": 0.21589399874210358, + "learning_rate": 0.0006, + "loss": 3.6953847408294678, + "step": 2312 + }, + { + "epoch": 32.12581913499345, + "grad_norm": 0.24575738608837128, + "learning_rate": 0.0006, + "loss": 3.7078802585601807, + "step": 2313 + }, + { + "epoch": 32.139799038881605, + "grad_norm": 0.23152033984661102, + "learning_rate": 0.0006, + "loss": 3.7402305603027344, + "step": 2314 + }, + { + "epoch": 32.15377894276977, + "grad_norm": 0.22639606893062592, + "learning_rate": 0.0006, + "loss": 3.7264223098754883, + "step": 2315 + }, + { + "epoch": 32.16775884665793, + "grad_norm": 0.24701760709285736, + "learning_rate": 0.0006, + "loss": 3.7497639656066895, + "step": 2316 + }, + { + "epoch": 32.18173875054609, + "grad_norm": 0.274832159280777, + "learning_rate": 0.0006, + "loss": 3.7557122707366943, + "step": 2317 + }, + { + "epoch": 32.19571865443425, + "grad_norm": 0.27472418546676636, + "learning_rate": 0.0006, + "loss": 3.6863393783569336, + "step": 2318 + }, + { + "epoch": 32.20969855832241, + "grad_norm": 0.2625530958175659, + "learning_rate": 0.0006, + "loss": 3.7203545570373535, + "step": 2319 + }, + { + "epoch": 32.22367846221057, + "grad_norm": 0.2576068341732025, + "learning_rate": 0.0006, + "loss": 3.734747886657715, + "step": 2320 + }, + { + "epoch": 32.237658366098735, + "grad_norm": 0.25946059823036194, + "learning_rate": 0.0006, + "loss": 3.7501730918884277, + "step": 2321 + }, + { + "epoch": 32.25163826998689, + "grad_norm": 0.2524135410785675, + "learning_rate": 0.0006, + "loss": 3.75177001953125, + "step": 2322 + }, + { + "epoch": 32.265618173875055, + "grad_norm": 0.2568551003932953, + "learning_rate": 0.0006, + "loss": 3.752450704574585, + "step": 2323 + }, + { + "epoch": 32.27959807776322, + "grad_norm": 0.2489749640226364, + "learning_rate": 0.0006, + "loss": 3.711735486984253, + "step": 2324 + }, + { + "epoch": 32.293577981651374, + "grad_norm": 0.2425498366355896, + "learning_rate": 0.0006, + "loss": 3.7004239559173584, + "step": 2325 + }, + { + "epoch": 32.30755788553954, + "grad_norm": 0.24359773099422455, + "learning_rate": 0.0006, + "loss": 3.733870029449463, + "step": 2326 + }, + { + "epoch": 32.3215377894277, + "grad_norm": 0.22314727306365967, + "learning_rate": 0.0006, + "loss": 3.699841022491455, + "step": 2327 + }, + { + "epoch": 32.33551769331586, + "grad_norm": 0.2047620266675949, + "learning_rate": 0.0006, + "loss": 3.732534170150757, + "step": 2328 + }, + { + "epoch": 32.34949759720402, + "grad_norm": 0.24393224716186523, + "learning_rate": 0.0006, + "loss": 3.7200770378112793, + "step": 2329 + }, + { + "epoch": 32.36347750109218, + "grad_norm": 0.23884256184101105, + "learning_rate": 0.0006, + "loss": 3.722318410873413, + "step": 2330 + }, + { + "epoch": 32.37745740498034, + "grad_norm": 0.23262189328670502, + "learning_rate": 0.0006, + "loss": 3.759033203125, + "step": 2331 + }, + { + "epoch": 32.391437308868504, + "grad_norm": 0.22542893886566162, + "learning_rate": 0.0006, + "loss": 3.729198694229126, + "step": 2332 + }, + { + "epoch": 32.40541721275666, + "grad_norm": 0.22479060292243958, + "learning_rate": 0.0006, + "loss": 3.7298169136047363, + "step": 2333 + }, + { + "epoch": 32.419397116644824, + "grad_norm": 0.21571804583072662, + "learning_rate": 0.0006, + "loss": 3.699937343597412, + "step": 2334 + }, + { + "epoch": 32.43337702053299, + "grad_norm": 0.20804545283317566, + "learning_rate": 0.0006, + "loss": 3.7495696544647217, + "step": 2335 + }, + { + "epoch": 32.44735692442114, + "grad_norm": 0.22751706838607788, + "learning_rate": 0.0006, + "loss": 3.7369821071624756, + "step": 2336 + }, + { + "epoch": 32.46133682830931, + "grad_norm": 0.2326795756816864, + "learning_rate": 0.0006, + "loss": 3.7636334896087646, + "step": 2337 + }, + { + "epoch": 32.47531673219746, + "grad_norm": 0.19971159100532532, + "learning_rate": 0.0006, + "loss": 3.72151517868042, + "step": 2338 + }, + { + "epoch": 32.489296636085626, + "grad_norm": 0.21078036725521088, + "learning_rate": 0.0006, + "loss": 3.7050065994262695, + "step": 2339 + }, + { + "epoch": 32.50327653997379, + "grad_norm": 0.22198088467121124, + "learning_rate": 0.0006, + "loss": 3.7654409408569336, + "step": 2340 + }, + { + "epoch": 32.517256443861946, + "grad_norm": 0.20995207130908966, + "learning_rate": 0.0006, + "loss": 3.7516250610351562, + "step": 2341 + }, + { + "epoch": 32.53123634775011, + "grad_norm": 0.20757141709327698, + "learning_rate": 0.0006, + "loss": 3.7412633895874023, + "step": 2342 + }, + { + "epoch": 32.54521625163827, + "grad_norm": 0.20053881406784058, + "learning_rate": 0.0006, + "loss": 3.7477493286132812, + "step": 2343 + }, + { + "epoch": 32.55919615552643, + "grad_norm": 0.20223091542720795, + "learning_rate": 0.0006, + "loss": 3.7149064540863037, + "step": 2344 + }, + { + "epoch": 32.57317605941459, + "grad_norm": 0.20179468393325806, + "learning_rate": 0.0006, + "loss": 3.70635724067688, + "step": 2345 + }, + { + "epoch": 32.58715596330275, + "grad_norm": 0.19670480489730835, + "learning_rate": 0.0006, + "loss": 3.7276744842529297, + "step": 2346 + }, + { + "epoch": 32.60113586719091, + "grad_norm": 0.1992012858390808, + "learning_rate": 0.0006, + "loss": 3.7659356594085693, + "step": 2347 + }, + { + "epoch": 32.615115771079076, + "grad_norm": 0.20124201476573944, + "learning_rate": 0.0006, + "loss": 3.722212791442871, + "step": 2348 + }, + { + "epoch": 32.62909567496723, + "grad_norm": 0.21972708404064178, + "learning_rate": 0.0006, + "loss": 3.751830577850342, + "step": 2349 + }, + { + "epoch": 32.643075578855395, + "grad_norm": 0.20454947650432587, + "learning_rate": 0.0006, + "loss": 3.7196669578552246, + "step": 2350 + }, + { + "epoch": 32.65705548274356, + "grad_norm": 0.1783330887556076, + "learning_rate": 0.0006, + "loss": 3.721461772918701, + "step": 2351 + }, + { + "epoch": 32.671035386631715, + "grad_norm": 0.2027900367975235, + "learning_rate": 0.0006, + "loss": 3.753718614578247, + "step": 2352 + }, + { + "epoch": 32.68501529051988, + "grad_norm": 0.21232381463050842, + "learning_rate": 0.0006, + "loss": 3.732736349105835, + "step": 2353 + }, + { + "epoch": 32.69899519440804, + "grad_norm": 0.2214568555355072, + "learning_rate": 0.0006, + "loss": 3.7250165939331055, + "step": 2354 + }, + { + "epoch": 32.7129750982962, + "grad_norm": 0.2626485228538513, + "learning_rate": 0.0006, + "loss": 3.72263503074646, + "step": 2355 + }, + { + "epoch": 32.72695500218436, + "grad_norm": 0.30096277594566345, + "learning_rate": 0.0006, + "loss": 3.7599854469299316, + "step": 2356 + }, + { + "epoch": 32.74093490607252, + "grad_norm": 0.3374342620372772, + "learning_rate": 0.0006, + "loss": 3.7493844032287598, + "step": 2357 + }, + { + "epoch": 32.75491480996068, + "grad_norm": 0.3051377534866333, + "learning_rate": 0.0006, + "loss": 3.7515692710876465, + "step": 2358 + }, + { + "epoch": 32.768894713848844, + "grad_norm": 0.2130587249994278, + "learning_rate": 0.0006, + "loss": 3.751307964324951, + "step": 2359 + }, + { + "epoch": 32.782874617737, + "grad_norm": 0.25198230147361755, + "learning_rate": 0.0006, + "loss": 3.7500064373016357, + "step": 2360 + }, + { + "epoch": 32.796854521625164, + "grad_norm": 0.27613863348960876, + "learning_rate": 0.0006, + "loss": 3.7257039546966553, + "step": 2361 + }, + { + "epoch": 32.81083442551333, + "grad_norm": 0.23749367892742157, + "learning_rate": 0.0006, + "loss": 3.778343439102173, + "step": 2362 + }, + { + "epoch": 32.824814329401484, + "grad_norm": 0.2063702642917633, + "learning_rate": 0.0006, + "loss": 3.7493772506713867, + "step": 2363 + }, + { + "epoch": 32.83879423328965, + "grad_norm": 0.21169374883174896, + "learning_rate": 0.0006, + "loss": 3.722567081451416, + "step": 2364 + }, + { + "epoch": 32.8527741371778, + "grad_norm": 0.23291490972042084, + "learning_rate": 0.0006, + "loss": 3.7555532455444336, + "step": 2365 + }, + { + "epoch": 32.86675404106597, + "grad_norm": 0.21486155688762665, + "learning_rate": 0.0006, + "loss": 3.7401528358459473, + "step": 2366 + }, + { + "epoch": 32.88073394495413, + "grad_norm": 0.2296247035264969, + "learning_rate": 0.0006, + "loss": 3.7867965698242188, + "step": 2367 + }, + { + "epoch": 32.89471384884229, + "grad_norm": 0.2335108071565628, + "learning_rate": 0.0006, + "loss": 3.768036365509033, + "step": 2368 + }, + { + "epoch": 32.90869375273045, + "grad_norm": 0.23921863734722137, + "learning_rate": 0.0006, + "loss": 3.725252151489258, + "step": 2369 + }, + { + "epoch": 32.92267365661861, + "grad_norm": 0.20303526520729065, + "learning_rate": 0.0006, + "loss": 3.7806248664855957, + "step": 2370 + }, + { + "epoch": 32.93665356050677, + "grad_norm": 0.19293150305747986, + "learning_rate": 0.0006, + "loss": 3.759281873703003, + "step": 2371 + }, + { + "epoch": 32.95063346439493, + "grad_norm": 0.20609107613563538, + "learning_rate": 0.0006, + "loss": 3.764190196990967, + "step": 2372 + }, + { + "epoch": 32.964613368283096, + "grad_norm": 0.2014189213514328, + "learning_rate": 0.0006, + "loss": 3.7365214824676514, + "step": 2373 + }, + { + "epoch": 32.97859327217125, + "grad_norm": 0.22045451402664185, + "learning_rate": 0.0006, + "loss": 3.7435812950134277, + "step": 2374 + }, + { + "epoch": 32.992573176059416, + "grad_norm": 0.24228639900684357, + "learning_rate": 0.0006, + "loss": 3.751309394836426, + "step": 2375 + }, + { + "epoch": 33.0, + "grad_norm": 0.2645106613636017, + "learning_rate": 0.0006, + "loss": 3.7629928588867188, + "step": 2376 + }, + { + "epoch": 33.0, + "eval_loss": 4.026789665222168, + "eval_runtime": 44.9957, + "eval_samples_per_second": 54.272, + "eval_steps_per_second": 3.4, + "step": 2376 + }, + { + "epoch": 33.01397990388816, + "grad_norm": 0.21402551233768463, + "learning_rate": 0.0006, + "loss": 3.72019100189209, + "step": 2377 + }, + { + "epoch": 33.02795980777632, + "grad_norm": 0.23886585235595703, + "learning_rate": 0.0006, + "loss": 3.687084674835205, + "step": 2378 + }, + { + "epoch": 33.04193971166448, + "grad_norm": 0.29936572909355164, + "learning_rate": 0.0006, + "loss": 3.697310447692871, + "step": 2379 + }, + { + "epoch": 33.05591961555265, + "grad_norm": 0.30007585883140564, + "learning_rate": 0.0006, + "loss": 3.6913352012634277, + "step": 2380 + }, + { + "epoch": 33.0698995194408, + "grad_norm": 0.26594656705856323, + "learning_rate": 0.0006, + "loss": 3.740802526473999, + "step": 2381 + }, + { + "epoch": 33.083879423328966, + "grad_norm": 0.2658730447292328, + "learning_rate": 0.0006, + "loss": 3.692746162414551, + "step": 2382 + }, + { + "epoch": 33.09785932721712, + "grad_norm": 0.26755523681640625, + "learning_rate": 0.0006, + "loss": 3.7534420490264893, + "step": 2383 + }, + { + "epoch": 33.111839231105286, + "grad_norm": 0.23070940375328064, + "learning_rate": 0.0006, + "loss": 3.717876672744751, + "step": 2384 + }, + { + "epoch": 33.12581913499345, + "grad_norm": 0.2476235181093216, + "learning_rate": 0.0006, + "loss": 3.7072248458862305, + "step": 2385 + }, + { + "epoch": 33.139799038881605, + "grad_norm": 0.2454477846622467, + "learning_rate": 0.0006, + "loss": 3.729762077331543, + "step": 2386 + }, + { + "epoch": 33.15377894276977, + "grad_norm": 0.24090935289859772, + "learning_rate": 0.0006, + "loss": 3.721374988555908, + "step": 2387 + }, + { + "epoch": 33.16775884665793, + "grad_norm": 0.2440263032913208, + "learning_rate": 0.0006, + "loss": 3.730433464050293, + "step": 2388 + }, + { + "epoch": 33.18173875054609, + "grad_norm": 0.21699118614196777, + "learning_rate": 0.0006, + "loss": 3.724730968475342, + "step": 2389 + }, + { + "epoch": 33.19571865443425, + "grad_norm": 0.2302001267671585, + "learning_rate": 0.0006, + "loss": 3.69376277923584, + "step": 2390 + }, + { + "epoch": 33.20969855832241, + "grad_norm": 0.24707409739494324, + "learning_rate": 0.0006, + "loss": 3.705653667449951, + "step": 2391 + }, + { + "epoch": 33.22367846221057, + "grad_norm": 0.22896641492843628, + "learning_rate": 0.0006, + "loss": 3.747000217437744, + "step": 2392 + }, + { + "epoch": 33.237658366098735, + "grad_norm": 0.2278730720281601, + "learning_rate": 0.0006, + "loss": 3.733464241027832, + "step": 2393 + }, + { + "epoch": 33.25163826998689, + "grad_norm": 0.23909862339496613, + "learning_rate": 0.0006, + "loss": 3.733661413192749, + "step": 2394 + }, + { + "epoch": 33.265618173875055, + "grad_norm": 0.2349950075149536, + "learning_rate": 0.0006, + "loss": 3.7337965965270996, + "step": 2395 + }, + { + "epoch": 33.27959807776322, + "grad_norm": 0.22655968368053436, + "learning_rate": 0.0006, + "loss": 3.70503306388855, + "step": 2396 + }, + { + "epoch": 33.293577981651374, + "grad_norm": 0.22167043387889862, + "learning_rate": 0.0006, + "loss": 3.738797903060913, + "step": 2397 + }, + { + "epoch": 33.30755788553954, + "grad_norm": 0.2278883010149002, + "learning_rate": 0.0006, + "loss": 3.712550640106201, + "step": 2398 + }, + { + "epoch": 33.3215377894277, + "grad_norm": 0.2220565229654312, + "learning_rate": 0.0006, + "loss": 3.7278006076812744, + "step": 2399 + }, + { + "epoch": 33.33551769331586, + "grad_norm": 0.21888740360736847, + "learning_rate": 0.0006, + "loss": 3.72243595123291, + "step": 2400 + }, + { + "epoch": 33.34949759720402, + "grad_norm": 0.21587581932544708, + "learning_rate": 0.0006, + "loss": 3.7177581787109375, + "step": 2401 + }, + { + "epoch": 33.36347750109218, + "grad_norm": 0.1923578530550003, + "learning_rate": 0.0006, + "loss": 3.711294651031494, + "step": 2402 + }, + { + "epoch": 33.37745740498034, + "grad_norm": 0.1994934380054474, + "learning_rate": 0.0006, + "loss": 3.762061595916748, + "step": 2403 + }, + { + "epoch": 33.391437308868504, + "grad_norm": 0.20074427127838135, + "learning_rate": 0.0006, + "loss": 3.708559036254883, + "step": 2404 + }, + { + "epoch": 33.40541721275666, + "grad_norm": 0.21349482238292694, + "learning_rate": 0.0006, + "loss": 3.7089147567749023, + "step": 2405 + }, + { + "epoch": 33.419397116644824, + "grad_norm": 0.25523608922958374, + "learning_rate": 0.0006, + "loss": 3.7241058349609375, + "step": 2406 + }, + { + "epoch": 33.43337702053299, + "grad_norm": 0.27654796838760376, + "learning_rate": 0.0006, + "loss": 3.723618984222412, + "step": 2407 + }, + { + "epoch": 33.44735692442114, + "grad_norm": 0.2651479244232178, + "learning_rate": 0.0006, + "loss": 3.7367782592773438, + "step": 2408 + }, + { + "epoch": 33.46133682830931, + "grad_norm": 0.23403556644916534, + "learning_rate": 0.0006, + "loss": 3.7198312282562256, + "step": 2409 + }, + { + "epoch": 33.47531673219746, + "grad_norm": 0.20970726013183594, + "learning_rate": 0.0006, + "loss": 3.7088186740875244, + "step": 2410 + }, + { + "epoch": 33.489296636085626, + "grad_norm": 0.18532544374465942, + "learning_rate": 0.0006, + "loss": 3.7162208557128906, + "step": 2411 + }, + { + "epoch": 33.50327653997379, + "grad_norm": 0.19590279459953308, + "learning_rate": 0.0006, + "loss": 3.766357898712158, + "step": 2412 + }, + { + "epoch": 33.517256443861946, + "grad_norm": 0.203349307179451, + "learning_rate": 0.0006, + "loss": 3.732177257537842, + "step": 2413 + }, + { + "epoch": 33.53123634775011, + "grad_norm": 0.2015952616930008, + "learning_rate": 0.0006, + "loss": 3.741609573364258, + "step": 2414 + }, + { + "epoch": 33.54521625163827, + "grad_norm": 0.20024161040782928, + "learning_rate": 0.0006, + "loss": 3.6894431114196777, + "step": 2415 + }, + { + "epoch": 33.55919615552643, + "grad_norm": 0.20932617783546448, + "learning_rate": 0.0006, + "loss": 3.721979856491089, + "step": 2416 + }, + { + "epoch": 33.57317605941459, + "grad_norm": 0.22069773077964783, + "learning_rate": 0.0006, + "loss": 3.712203025817871, + "step": 2417 + }, + { + "epoch": 33.58715596330275, + "grad_norm": 0.22341343760490417, + "learning_rate": 0.0006, + "loss": 3.7469263076782227, + "step": 2418 + }, + { + "epoch": 33.60113586719091, + "grad_norm": 0.21758507192134857, + "learning_rate": 0.0006, + "loss": 3.721778392791748, + "step": 2419 + }, + { + "epoch": 33.615115771079076, + "grad_norm": 0.20480088889598846, + "learning_rate": 0.0006, + "loss": 3.743570327758789, + "step": 2420 + }, + { + "epoch": 33.62909567496723, + "grad_norm": 0.23068399727344513, + "learning_rate": 0.0006, + "loss": 3.7203001976013184, + "step": 2421 + }, + { + "epoch": 33.643075578855395, + "grad_norm": 0.2526263892650604, + "learning_rate": 0.0006, + "loss": 3.7336440086364746, + "step": 2422 + }, + { + "epoch": 33.65705548274356, + "grad_norm": 0.218627467751503, + "learning_rate": 0.0006, + "loss": 3.730762243270874, + "step": 2423 + }, + { + "epoch": 33.671035386631715, + "grad_norm": 0.21883417665958405, + "learning_rate": 0.0006, + "loss": 3.749356508255005, + "step": 2424 + }, + { + "epoch": 33.68501529051988, + "grad_norm": 0.22885626554489136, + "learning_rate": 0.0006, + "loss": 3.7426199913024902, + "step": 2425 + }, + { + "epoch": 33.69899519440804, + "grad_norm": 0.23709580302238464, + "learning_rate": 0.0006, + "loss": 3.691652774810791, + "step": 2426 + }, + { + "epoch": 33.7129750982962, + "grad_norm": 0.2258225381374359, + "learning_rate": 0.0006, + "loss": 3.7368886470794678, + "step": 2427 + }, + { + "epoch": 33.72695500218436, + "grad_norm": 0.1993306577205658, + "learning_rate": 0.0006, + "loss": 3.722733497619629, + "step": 2428 + }, + { + "epoch": 33.74093490607252, + "grad_norm": 0.20307473838329315, + "learning_rate": 0.0006, + "loss": 3.7507500648498535, + "step": 2429 + }, + { + "epoch": 33.75491480996068, + "grad_norm": 0.20076696574687958, + "learning_rate": 0.0006, + "loss": 3.6896910667419434, + "step": 2430 + }, + { + "epoch": 33.768894713848844, + "grad_norm": 0.21118830144405365, + "learning_rate": 0.0006, + "loss": 3.7176647186279297, + "step": 2431 + }, + { + "epoch": 33.782874617737, + "grad_norm": 0.21605782210826874, + "learning_rate": 0.0006, + "loss": 3.7423641681671143, + "step": 2432 + }, + { + "epoch": 33.796854521625164, + "grad_norm": 0.22233152389526367, + "learning_rate": 0.0006, + "loss": 3.7296109199523926, + "step": 2433 + }, + { + "epoch": 33.81083442551333, + "grad_norm": 0.2253616899251938, + "learning_rate": 0.0006, + "loss": 3.7095072269439697, + "step": 2434 + }, + { + "epoch": 33.824814329401484, + "grad_norm": 0.2105807662010193, + "learning_rate": 0.0006, + "loss": 3.760921001434326, + "step": 2435 + }, + { + "epoch": 33.83879423328965, + "grad_norm": 0.20413213968276978, + "learning_rate": 0.0006, + "loss": 3.7356553077697754, + "step": 2436 + }, + { + "epoch": 33.8527741371778, + "grad_norm": 0.19781213998794556, + "learning_rate": 0.0006, + "loss": 3.726787567138672, + "step": 2437 + }, + { + "epoch": 33.86675404106597, + "grad_norm": 0.199616938829422, + "learning_rate": 0.0006, + "loss": 3.7200419902801514, + "step": 2438 + }, + { + "epoch": 33.88073394495413, + "grad_norm": 0.19702564179897308, + "learning_rate": 0.0006, + "loss": 3.714287281036377, + "step": 2439 + }, + { + "epoch": 33.89471384884229, + "grad_norm": 0.19456833600997925, + "learning_rate": 0.0006, + "loss": 3.739231586456299, + "step": 2440 + }, + { + "epoch": 33.90869375273045, + "grad_norm": 0.1890697181224823, + "learning_rate": 0.0006, + "loss": 3.7088429927825928, + "step": 2441 + }, + { + "epoch": 33.92267365661861, + "grad_norm": 0.1845911741256714, + "learning_rate": 0.0006, + "loss": 3.760782241821289, + "step": 2442 + }, + { + "epoch": 33.93665356050677, + "grad_norm": 0.19045902788639069, + "learning_rate": 0.0006, + "loss": 3.736957311630249, + "step": 2443 + }, + { + "epoch": 33.95063346439493, + "grad_norm": 0.1934187412261963, + "learning_rate": 0.0006, + "loss": 3.756351947784424, + "step": 2444 + }, + { + "epoch": 33.964613368283096, + "grad_norm": 0.19774580001831055, + "learning_rate": 0.0006, + "loss": 3.7332229614257812, + "step": 2445 + }, + { + "epoch": 33.97859327217125, + "grad_norm": 0.20653048157691956, + "learning_rate": 0.0006, + "loss": 3.7112321853637695, + "step": 2446 + }, + { + "epoch": 33.992573176059416, + "grad_norm": 0.18618541955947876, + "learning_rate": 0.0006, + "loss": 3.735710620880127, + "step": 2447 + }, + { + "epoch": 34.0, + "grad_norm": 0.22846414148807526, + "learning_rate": 0.0006, + "loss": 3.739706039428711, + "step": 2448 + }, + { + "epoch": 34.0, + "eval_loss": 4.0099663734436035, + "eval_runtime": 45.2096, + "eval_samples_per_second": 54.015, + "eval_steps_per_second": 3.384, + "step": 2448 + }, + { + "epoch": 34.01397990388816, + "grad_norm": 0.20987462997436523, + "learning_rate": 0.0006, + "loss": 3.6798832416534424, + "step": 2449 + }, + { + "epoch": 34.02795980777632, + "grad_norm": 0.2230423390865326, + "learning_rate": 0.0006, + "loss": 3.7157368659973145, + "step": 2450 + }, + { + "epoch": 34.04193971166448, + "grad_norm": 0.24115242063999176, + "learning_rate": 0.0006, + "loss": 3.696037769317627, + "step": 2451 + }, + { + "epoch": 34.05591961555265, + "grad_norm": 0.24499665200710297, + "learning_rate": 0.0006, + "loss": 3.695420742034912, + "step": 2452 + }, + { + "epoch": 34.0698995194408, + "grad_norm": 0.23336757719516754, + "learning_rate": 0.0006, + "loss": 3.7252023220062256, + "step": 2453 + }, + { + "epoch": 34.083879423328966, + "grad_norm": 0.23716159164905548, + "learning_rate": 0.0006, + "loss": 3.714542865753174, + "step": 2454 + }, + { + "epoch": 34.09785932721712, + "grad_norm": 0.2305644154548645, + "learning_rate": 0.0006, + "loss": 3.6989386081695557, + "step": 2455 + }, + { + "epoch": 34.111839231105286, + "grad_norm": 0.2281671017408371, + "learning_rate": 0.0006, + "loss": 3.6952829360961914, + "step": 2456 + }, + { + "epoch": 34.12581913499345, + "grad_norm": 0.21031132340431213, + "learning_rate": 0.0006, + "loss": 3.7337589263916016, + "step": 2457 + }, + { + "epoch": 34.139799038881605, + "grad_norm": 0.2233671098947525, + "learning_rate": 0.0006, + "loss": 3.6923675537109375, + "step": 2458 + }, + { + "epoch": 34.15377894276977, + "grad_norm": 0.22766625881195068, + "learning_rate": 0.0006, + "loss": 3.70849609375, + "step": 2459 + }, + { + "epoch": 34.16775884665793, + "grad_norm": 0.22433766722679138, + "learning_rate": 0.0006, + "loss": 3.718319892883301, + "step": 2460 + }, + { + "epoch": 34.18173875054609, + "grad_norm": 0.20621491968631744, + "learning_rate": 0.0006, + "loss": 3.6874704360961914, + "step": 2461 + }, + { + "epoch": 34.19571865443425, + "grad_norm": 0.21353304386138916, + "learning_rate": 0.0006, + "loss": 3.663358688354492, + "step": 2462 + }, + { + "epoch": 34.20969855832241, + "grad_norm": 0.20652951300144196, + "learning_rate": 0.0006, + "loss": 3.718107223510742, + "step": 2463 + }, + { + "epoch": 34.22367846221057, + "grad_norm": 0.19780176877975464, + "learning_rate": 0.0006, + "loss": 3.7255396842956543, + "step": 2464 + }, + { + "epoch": 34.237658366098735, + "grad_norm": 0.20636138319969177, + "learning_rate": 0.0006, + "loss": 3.696850538253784, + "step": 2465 + }, + { + "epoch": 34.25163826998689, + "grad_norm": 0.23691460490226746, + "learning_rate": 0.0006, + "loss": 3.687997341156006, + "step": 2466 + }, + { + "epoch": 34.265618173875055, + "grad_norm": 0.2380511611700058, + "learning_rate": 0.0006, + "loss": 3.716610908508301, + "step": 2467 + }, + { + "epoch": 34.27959807776322, + "grad_norm": 0.21508945524692535, + "learning_rate": 0.0006, + "loss": 3.6993470191955566, + "step": 2468 + }, + { + "epoch": 34.293577981651374, + "grad_norm": 0.20441125333309174, + "learning_rate": 0.0006, + "loss": 3.7194275856018066, + "step": 2469 + }, + { + "epoch": 34.30755788553954, + "grad_norm": 0.19704242050647736, + "learning_rate": 0.0006, + "loss": 3.675929546356201, + "step": 2470 + }, + { + "epoch": 34.3215377894277, + "grad_norm": 0.1918456256389618, + "learning_rate": 0.0006, + "loss": 3.7189574241638184, + "step": 2471 + }, + { + "epoch": 34.33551769331586, + "grad_norm": 0.19687092304229736, + "learning_rate": 0.0006, + "loss": 3.725809335708618, + "step": 2472 + }, + { + "epoch": 34.34949759720402, + "grad_norm": 0.2048639953136444, + "learning_rate": 0.0006, + "loss": 3.7461748123168945, + "step": 2473 + }, + { + "epoch": 34.36347750109218, + "grad_norm": 0.21086618304252625, + "learning_rate": 0.0006, + "loss": 3.6849746704101562, + "step": 2474 + }, + { + "epoch": 34.37745740498034, + "grad_norm": 0.2172154039144516, + "learning_rate": 0.0006, + "loss": 3.7379322052001953, + "step": 2475 + }, + { + "epoch": 34.391437308868504, + "grad_norm": 0.22725504636764526, + "learning_rate": 0.0006, + "loss": 3.7341527938842773, + "step": 2476 + }, + { + "epoch": 34.40541721275666, + "grad_norm": 0.22309242188930511, + "learning_rate": 0.0006, + "loss": 3.724946975708008, + "step": 2477 + }, + { + "epoch": 34.419397116644824, + "grad_norm": 0.25252285599708557, + "learning_rate": 0.0006, + "loss": 3.710257053375244, + "step": 2478 + }, + { + "epoch": 34.43337702053299, + "grad_norm": 0.2549746334552765, + "learning_rate": 0.0006, + "loss": 3.7105040550231934, + "step": 2479 + }, + { + "epoch": 34.44735692442114, + "grad_norm": 0.22544030845165253, + "learning_rate": 0.0006, + "loss": 3.7340707778930664, + "step": 2480 + }, + { + "epoch": 34.46133682830931, + "grad_norm": 0.22275063395500183, + "learning_rate": 0.0006, + "loss": 3.7141473293304443, + "step": 2481 + }, + { + "epoch": 34.47531673219746, + "grad_norm": 0.25373485684394836, + "learning_rate": 0.0006, + "loss": 3.7014691829681396, + "step": 2482 + }, + { + "epoch": 34.489296636085626, + "grad_norm": 0.2573327124118805, + "learning_rate": 0.0006, + "loss": 3.682562828063965, + "step": 2483 + }, + { + "epoch": 34.50327653997379, + "grad_norm": 0.2452341616153717, + "learning_rate": 0.0006, + "loss": 3.757261276245117, + "step": 2484 + }, + { + "epoch": 34.517256443861946, + "grad_norm": 0.2477131187915802, + "learning_rate": 0.0006, + "loss": 3.7216877937316895, + "step": 2485 + }, + { + "epoch": 34.53123634775011, + "grad_norm": 0.24740098416805267, + "learning_rate": 0.0006, + "loss": 3.705704927444458, + "step": 2486 + }, + { + "epoch": 34.54521625163827, + "grad_norm": 0.27306219935417175, + "learning_rate": 0.0006, + "loss": 3.7014641761779785, + "step": 2487 + }, + { + "epoch": 34.55919615552643, + "grad_norm": 0.26376286149024963, + "learning_rate": 0.0006, + "loss": 3.686056137084961, + "step": 2488 + }, + { + "epoch": 34.57317605941459, + "grad_norm": 0.2796899378299713, + "learning_rate": 0.0006, + "loss": 3.7171077728271484, + "step": 2489 + }, + { + "epoch": 34.58715596330275, + "grad_norm": 0.24279902875423431, + "learning_rate": 0.0006, + "loss": 3.7448348999023438, + "step": 2490 + }, + { + "epoch": 34.60113586719091, + "grad_norm": 0.22772833704948425, + "learning_rate": 0.0006, + "loss": 3.7028117179870605, + "step": 2491 + }, + { + "epoch": 34.615115771079076, + "grad_norm": 0.22157910466194153, + "learning_rate": 0.0006, + "loss": 3.750023603439331, + "step": 2492 + }, + { + "epoch": 34.62909567496723, + "grad_norm": 0.24342703819274902, + "learning_rate": 0.0006, + "loss": 3.7181010246276855, + "step": 2493 + }, + { + "epoch": 34.643075578855395, + "grad_norm": 0.2554340362548828, + "learning_rate": 0.0006, + "loss": 3.6994080543518066, + "step": 2494 + }, + { + "epoch": 34.65705548274356, + "grad_norm": 0.21296930313110352, + "learning_rate": 0.0006, + "loss": 3.7534523010253906, + "step": 2495 + }, + { + "epoch": 34.671035386631715, + "grad_norm": 0.19117674231529236, + "learning_rate": 0.0006, + "loss": 3.7267889976501465, + "step": 2496 + }, + { + "epoch": 34.68501529051988, + "grad_norm": 0.2306399643421173, + "learning_rate": 0.0006, + "loss": 3.723212242126465, + "step": 2497 + }, + { + "epoch": 34.69899519440804, + "grad_norm": 0.23063263297080994, + "learning_rate": 0.0006, + "loss": 3.730070114135742, + "step": 2498 + }, + { + "epoch": 34.7129750982962, + "grad_norm": 0.19422881305217743, + "learning_rate": 0.0006, + "loss": 3.694833755493164, + "step": 2499 + }, + { + "epoch": 34.72695500218436, + "grad_norm": 0.20246362686157227, + "learning_rate": 0.0006, + "loss": 3.71140718460083, + "step": 2500 + }, + { + "epoch": 34.74093490607252, + "grad_norm": 0.1942741572856903, + "learning_rate": 0.0006, + "loss": 3.7530534267425537, + "step": 2501 + }, + { + "epoch": 34.75491480996068, + "grad_norm": 0.19686029851436615, + "learning_rate": 0.0006, + "loss": 3.7059555053710938, + "step": 2502 + }, + { + "epoch": 34.768894713848844, + "grad_norm": 0.20120355486869812, + "learning_rate": 0.0006, + "loss": 3.7271084785461426, + "step": 2503 + }, + { + "epoch": 34.782874617737, + "grad_norm": 0.20880399644374847, + "learning_rate": 0.0006, + "loss": 3.712137460708618, + "step": 2504 + }, + { + "epoch": 34.796854521625164, + "grad_norm": 0.22139988839626312, + "learning_rate": 0.0006, + "loss": 3.731245517730713, + "step": 2505 + }, + { + "epoch": 34.81083442551333, + "grad_norm": 0.22756224870681763, + "learning_rate": 0.0006, + "loss": 3.708987236022949, + "step": 2506 + }, + { + "epoch": 34.824814329401484, + "grad_norm": 0.22332409024238586, + "learning_rate": 0.0006, + "loss": 3.7365565299987793, + "step": 2507 + }, + { + "epoch": 34.83879423328965, + "grad_norm": 0.19599054753780365, + "learning_rate": 0.0006, + "loss": 3.7266454696655273, + "step": 2508 + }, + { + "epoch": 34.8527741371778, + "grad_norm": 0.19843019545078278, + "learning_rate": 0.0006, + "loss": 3.7225422859191895, + "step": 2509 + }, + { + "epoch": 34.86675404106597, + "grad_norm": 0.20147928595542908, + "learning_rate": 0.0006, + "loss": 3.7282514572143555, + "step": 2510 + }, + { + "epoch": 34.88073394495413, + "grad_norm": 0.19489876925945282, + "learning_rate": 0.0006, + "loss": 3.694852113723755, + "step": 2511 + }, + { + "epoch": 34.89471384884229, + "grad_norm": 0.20680078864097595, + "learning_rate": 0.0006, + "loss": 3.74678635597229, + "step": 2512 + }, + { + "epoch": 34.90869375273045, + "grad_norm": 0.2233233004808426, + "learning_rate": 0.0006, + "loss": 3.726475238800049, + "step": 2513 + }, + { + "epoch": 34.92267365661861, + "grad_norm": 0.20702993869781494, + "learning_rate": 0.0006, + "loss": 3.6946351528167725, + "step": 2514 + }, + { + "epoch": 34.93665356050677, + "grad_norm": 0.2081725299358368, + "learning_rate": 0.0006, + "loss": 3.7101621627807617, + "step": 2515 + }, + { + "epoch": 34.95063346439493, + "grad_norm": 0.20551837980747223, + "learning_rate": 0.0006, + "loss": 3.7060177326202393, + "step": 2516 + }, + { + "epoch": 34.964613368283096, + "grad_norm": 0.2106839418411255, + "learning_rate": 0.0006, + "loss": 3.7460474967956543, + "step": 2517 + }, + { + "epoch": 34.97859327217125, + "grad_norm": 0.18512766063213348, + "learning_rate": 0.0006, + "loss": 3.719280242919922, + "step": 2518 + }, + { + "epoch": 34.992573176059416, + "grad_norm": 0.1802142709493637, + "learning_rate": 0.0006, + "loss": 3.698255777359009, + "step": 2519 + }, + { + "epoch": 35.0, + "grad_norm": 0.2028084248304367, + "learning_rate": 0.0006, + "loss": 3.711136817932129, + "step": 2520 + }, + { + "epoch": 35.0, + "eval_loss": 4.006688117980957, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 2520 + }, + { + "epoch": 35.01397990388816, + "grad_norm": 0.1973012387752533, + "learning_rate": 0.0006, + "loss": 3.7108325958251953, + "step": 2521 + }, + { + "epoch": 35.02795980777632, + "grad_norm": 0.23763646185398102, + "learning_rate": 0.0006, + "loss": 3.675785541534424, + "step": 2522 + }, + { + "epoch": 35.04193971166448, + "grad_norm": 0.24403199553489685, + "learning_rate": 0.0006, + "loss": 3.7034249305725098, + "step": 2523 + }, + { + "epoch": 35.05591961555265, + "grad_norm": 0.19050131738185883, + "learning_rate": 0.0006, + "loss": 3.6984221935272217, + "step": 2524 + }, + { + "epoch": 35.0698995194408, + "grad_norm": 0.21389710903167725, + "learning_rate": 0.0006, + "loss": 3.6641085147857666, + "step": 2525 + }, + { + "epoch": 35.083879423328966, + "grad_norm": 0.23103152215480804, + "learning_rate": 0.0006, + "loss": 3.722912311553955, + "step": 2526 + }, + { + "epoch": 35.09785932721712, + "grad_norm": 0.2197326272726059, + "learning_rate": 0.0006, + "loss": 3.696568727493286, + "step": 2527 + }, + { + "epoch": 35.111839231105286, + "grad_norm": 0.20877327024936676, + "learning_rate": 0.0006, + "loss": 3.666700601577759, + "step": 2528 + }, + { + "epoch": 35.12581913499345, + "grad_norm": 0.20904001593589783, + "learning_rate": 0.0006, + "loss": 3.6896979808807373, + "step": 2529 + }, + { + "epoch": 35.139799038881605, + "grad_norm": 0.1947423666715622, + "learning_rate": 0.0006, + "loss": 3.6647095680236816, + "step": 2530 + }, + { + "epoch": 35.15377894276977, + "grad_norm": 0.2134019434452057, + "learning_rate": 0.0006, + "loss": 3.696993589401245, + "step": 2531 + }, + { + "epoch": 35.16775884665793, + "grad_norm": 0.2299254685640335, + "learning_rate": 0.0006, + "loss": 3.7067925930023193, + "step": 2532 + }, + { + "epoch": 35.18173875054609, + "grad_norm": 0.219585582613945, + "learning_rate": 0.0006, + "loss": 3.6680960655212402, + "step": 2533 + }, + { + "epoch": 35.19571865443425, + "grad_norm": 0.2146025449037552, + "learning_rate": 0.0006, + "loss": 3.7185046672821045, + "step": 2534 + }, + { + "epoch": 35.20969855832241, + "grad_norm": 0.22748060524463654, + "learning_rate": 0.0006, + "loss": 3.659202814102173, + "step": 2535 + }, + { + "epoch": 35.22367846221057, + "grad_norm": 0.22272273898124695, + "learning_rate": 0.0006, + "loss": 3.7002370357513428, + "step": 2536 + }, + { + "epoch": 35.237658366098735, + "grad_norm": 0.23827379941940308, + "learning_rate": 0.0006, + "loss": 3.714664936065674, + "step": 2537 + }, + { + "epoch": 35.25163826998689, + "grad_norm": 0.2328156679868698, + "learning_rate": 0.0006, + "loss": 3.665173292160034, + "step": 2538 + }, + { + "epoch": 35.265618173875055, + "grad_norm": 0.2573475241661072, + "learning_rate": 0.0006, + "loss": 3.7073206901550293, + "step": 2539 + }, + { + "epoch": 35.27959807776322, + "grad_norm": 0.2411472052335739, + "learning_rate": 0.0006, + "loss": 3.697751045227051, + "step": 2540 + }, + { + "epoch": 35.293577981651374, + "grad_norm": 0.22836148738861084, + "learning_rate": 0.0006, + "loss": 3.7219419479370117, + "step": 2541 + }, + { + "epoch": 35.30755788553954, + "grad_norm": 0.2225421667098999, + "learning_rate": 0.0006, + "loss": 3.69516658782959, + "step": 2542 + }, + { + "epoch": 35.3215377894277, + "grad_norm": 0.2180362343788147, + "learning_rate": 0.0006, + "loss": 3.714043378829956, + "step": 2543 + }, + { + "epoch": 35.33551769331586, + "grad_norm": 0.23638299107551575, + "learning_rate": 0.0006, + "loss": 3.7449421882629395, + "step": 2544 + }, + { + "epoch": 35.34949759720402, + "grad_norm": 0.21792089939117432, + "learning_rate": 0.0006, + "loss": 3.7029948234558105, + "step": 2545 + }, + { + "epoch": 35.36347750109218, + "grad_norm": 0.23266112804412842, + "learning_rate": 0.0006, + "loss": 3.683509111404419, + "step": 2546 + }, + { + "epoch": 35.37745740498034, + "grad_norm": 0.24203059077262878, + "learning_rate": 0.0006, + "loss": 3.68572998046875, + "step": 2547 + }, + { + "epoch": 35.391437308868504, + "grad_norm": 0.2543564438819885, + "learning_rate": 0.0006, + "loss": 3.6902432441711426, + "step": 2548 + }, + { + "epoch": 35.40541721275666, + "grad_norm": 0.22990189492702484, + "learning_rate": 0.0006, + "loss": 3.708810329437256, + "step": 2549 + }, + { + "epoch": 35.419397116644824, + "grad_norm": 0.2594352662563324, + "learning_rate": 0.0006, + "loss": 3.7312886714935303, + "step": 2550 + }, + { + "epoch": 35.43337702053299, + "grad_norm": 0.27525269985198975, + "learning_rate": 0.0006, + "loss": 3.6963448524475098, + "step": 2551 + }, + { + "epoch": 35.44735692442114, + "grad_norm": 0.2436525970697403, + "learning_rate": 0.0006, + "loss": 3.6733713150024414, + "step": 2552 + }, + { + "epoch": 35.46133682830931, + "grad_norm": 0.25500908493995667, + "learning_rate": 0.0006, + "loss": 3.7104358673095703, + "step": 2553 + }, + { + "epoch": 35.47531673219746, + "grad_norm": 0.23504602909088135, + "learning_rate": 0.0006, + "loss": 3.7052388191223145, + "step": 2554 + }, + { + "epoch": 35.489296636085626, + "grad_norm": 0.2277563363313675, + "learning_rate": 0.0006, + "loss": 3.708714008331299, + "step": 2555 + }, + { + "epoch": 35.50327653997379, + "grad_norm": 0.25224778056144714, + "learning_rate": 0.0006, + "loss": 3.699676990509033, + "step": 2556 + }, + { + "epoch": 35.517256443861946, + "grad_norm": 0.28308045864105225, + "learning_rate": 0.0006, + "loss": 3.7005362510681152, + "step": 2557 + }, + { + "epoch": 35.53123634775011, + "grad_norm": 0.25858840346336365, + "learning_rate": 0.0006, + "loss": 3.689999580383301, + "step": 2558 + }, + { + "epoch": 35.54521625163827, + "grad_norm": 0.23497405648231506, + "learning_rate": 0.0006, + "loss": 3.695793867111206, + "step": 2559 + }, + { + "epoch": 35.55919615552643, + "grad_norm": 0.22375957667827606, + "learning_rate": 0.0006, + "loss": 3.7011494636535645, + "step": 2560 + }, + { + "epoch": 35.57317605941459, + "grad_norm": 0.21056118607521057, + "learning_rate": 0.0006, + "loss": 3.722623586654663, + "step": 2561 + }, + { + "epoch": 35.58715596330275, + "grad_norm": 0.22504374384880066, + "learning_rate": 0.0006, + "loss": 3.7211966514587402, + "step": 2562 + }, + { + "epoch": 35.60113586719091, + "grad_norm": 0.22349773347377777, + "learning_rate": 0.0006, + "loss": 3.6901848316192627, + "step": 2563 + }, + { + "epoch": 35.615115771079076, + "grad_norm": 0.219499409198761, + "learning_rate": 0.0006, + "loss": 3.709026575088501, + "step": 2564 + }, + { + "epoch": 35.62909567496723, + "grad_norm": 0.20461080968379974, + "learning_rate": 0.0006, + "loss": 3.72456693649292, + "step": 2565 + }, + { + "epoch": 35.643075578855395, + "grad_norm": 0.2083883285522461, + "learning_rate": 0.0006, + "loss": 3.6845502853393555, + "step": 2566 + }, + { + "epoch": 35.65705548274356, + "grad_norm": 0.19694562256336212, + "learning_rate": 0.0006, + "loss": 3.668515682220459, + "step": 2567 + }, + { + "epoch": 35.671035386631715, + "grad_norm": 0.2107984870672226, + "learning_rate": 0.0006, + "loss": 3.700723648071289, + "step": 2568 + }, + { + "epoch": 35.68501529051988, + "grad_norm": 0.18878720700740814, + "learning_rate": 0.0006, + "loss": 3.689150333404541, + "step": 2569 + }, + { + "epoch": 35.69899519440804, + "grad_norm": 0.20058824121952057, + "learning_rate": 0.0006, + "loss": 3.7048301696777344, + "step": 2570 + }, + { + "epoch": 35.7129750982962, + "grad_norm": 0.2200566679239273, + "learning_rate": 0.0006, + "loss": 3.6944580078125, + "step": 2571 + }, + { + "epoch": 35.72695500218436, + "grad_norm": 0.22200417518615723, + "learning_rate": 0.0006, + "loss": 3.715193510055542, + "step": 2572 + }, + { + "epoch": 35.74093490607252, + "grad_norm": 0.21011404693126678, + "learning_rate": 0.0006, + "loss": 3.737387180328369, + "step": 2573 + }, + { + "epoch": 35.75491480996068, + "grad_norm": 0.21139226853847504, + "learning_rate": 0.0006, + "loss": 3.695596694946289, + "step": 2574 + }, + { + "epoch": 35.768894713848844, + "grad_norm": 0.2112506479024887, + "learning_rate": 0.0006, + "loss": 3.7264227867126465, + "step": 2575 + }, + { + "epoch": 35.782874617737, + "grad_norm": 0.21528391540050507, + "learning_rate": 0.0006, + "loss": 3.7089385986328125, + "step": 2576 + }, + { + "epoch": 35.796854521625164, + "grad_norm": 0.2127804309129715, + "learning_rate": 0.0006, + "loss": 3.6995301246643066, + "step": 2577 + }, + { + "epoch": 35.81083442551333, + "grad_norm": 0.19839410483837128, + "learning_rate": 0.0006, + "loss": 3.7233223915100098, + "step": 2578 + }, + { + "epoch": 35.824814329401484, + "grad_norm": 0.19098423421382904, + "learning_rate": 0.0006, + "loss": 3.7108311653137207, + "step": 2579 + }, + { + "epoch": 35.83879423328965, + "grad_norm": 0.18697232007980347, + "learning_rate": 0.0006, + "loss": 3.725001811981201, + "step": 2580 + }, + { + "epoch": 35.8527741371778, + "grad_norm": 0.21051937341690063, + "learning_rate": 0.0006, + "loss": 3.7310993671417236, + "step": 2581 + }, + { + "epoch": 35.86675404106597, + "grad_norm": 0.2239079475402832, + "learning_rate": 0.0006, + "loss": 3.739056348800659, + "step": 2582 + }, + { + "epoch": 35.88073394495413, + "grad_norm": 0.2581230700016022, + "learning_rate": 0.0006, + "loss": 3.697061061859131, + "step": 2583 + }, + { + "epoch": 35.89471384884229, + "grad_norm": 0.25388655066490173, + "learning_rate": 0.0006, + "loss": 3.7173471450805664, + "step": 2584 + }, + { + "epoch": 35.90869375273045, + "grad_norm": 0.2557796537876129, + "learning_rate": 0.0006, + "loss": 3.7121596336364746, + "step": 2585 + }, + { + "epoch": 35.92267365661861, + "grad_norm": 0.21846474707126617, + "learning_rate": 0.0006, + "loss": 3.7342100143432617, + "step": 2586 + }, + { + "epoch": 35.93665356050677, + "grad_norm": 0.19810006022453308, + "learning_rate": 0.0006, + "loss": 3.7266340255737305, + "step": 2587 + }, + { + "epoch": 35.95063346439493, + "grad_norm": 0.28599923849105835, + "learning_rate": 0.0006, + "loss": 3.711876392364502, + "step": 2588 + }, + { + "epoch": 35.964613368283096, + "grad_norm": 0.3380447030067444, + "learning_rate": 0.0006, + "loss": 3.7611794471740723, + "step": 2589 + }, + { + "epoch": 35.97859327217125, + "grad_norm": 0.2946915328502655, + "learning_rate": 0.0006, + "loss": 3.7659358978271484, + "step": 2590 + }, + { + "epoch": 35.992573176059416, + "grad_norm": 0.2310202419757843, + "learning_rate": 0.0006, + "loss": 3.7124969959259033, + "step": 2591 + }, + { + "epoch": 36.0, + "grad_norm": 0.22294320166110992, + "learning_rate": 0.0006, + "loss": 3.725590705871582, + "step": 2592 + }, + { + "epoch": 36.0, + "eval_loss": 4.015472412109375, + "eval_runtime": 44.4903, + "eval_samples_per_second": 54.888, + "eval_steps_per_second": 3.439, + "step": 2592 + }, + { + "epoch": 36.01397990388816, + "grad_norm": 0.2442479431629181, + "learning_rate": 0.0006, + "loss": 3.6670360565185547, + "step": 2593 + }, + { + "epoch": 36.02795980777632, + "grad_norm": 0.27702075242996216, + "learning_rate": 0.0006, + "loss": 3.685915946960449, + "step": 2594 + }, + { + "epoch": 36.04193971166448, + "grad_norm": 0.22300852835178375, + "learning_rate": 0.0006, + "loss": 3.6993556022644043, + "step": 2595 + }, + { + "epoch": 36.05591961555265, + "grad_norm": 0.22456000745296478, + "learning_rate": 0.0006, + "loss": 3.6937754154205322, + "step": 2596 + }, + { + "epoch": 36.0698995194408, + "grad_norm": 0.23157717287540436, + "learning_rate": 0.0006, + "loss": 3.6573898792266846, + "step": 2597 + }, + { + "epoch": 36.083879423328966, + "grad_norm": 0.23002618551254272, + "learning_rate": 0.0006, + "loss": 3.6565046310424805, + "step": 2598 + }, + { + "epoch": 36.09785932721712, + "grad_norm": 0.223054900765419, + "learning_rate": 0.0006, + "loss": 3.6964457035064697, + "step": 2599 + }, + { + "epoch": 36.111839231105286, + "grad_norm": 0.21883328258991241, + "learning_rate": 0.0006, + "loss": 3.674757480621338, + "step": 2600 + }, + { + "epoch": 36.12581913499345, + "grad_norm": 0.21729037165641785, + "learning_rate": 0.0006, + "loss": 3.684323310852051, + "step": 2601 + }, + { + "epoch": 36.139799038881605, + "grad_norm": 0.21299415826797485, + "learning_rate": 0.0006, + "loss": 3.6554017066955566, + "step": 2602 + }, + { + "epoch": 36.15377894276977, + "grad_norm": 0.22723016142845154, + "learning_rate": 0.0006, + "loss": 3.666767120361328, + "step": 2603 + }, + { + "epoch": 36.16775884665793, + "grad_norm": 0.23663052916526794, + "learning_rate": 0.0006, + "loss": 3.692861557006836, + "step": 2604 + }, + { + "epoch": 36.18173875054609, + "grad_norm": 0.23544131219387054, + "learning_rate": 0.0006, + "loss": 3.6648998260498047, + "step": 2605 + }, + { + "epoch": 36.19571865443425, + "grad_norm": 0.24303849041461945, + "learning_rate": 0.0006, + "loss": 3.66096568107605, + "step": 2606 + }, + { + "epoch": 36.20969855832241, + "grad_norm": 0.23385047912597656, + "learning_rate": 0.0006, + "loss": 3.6636829376220703, + "step": 2607 + }, + { + "epoch": 36.22367846221057, + "grad_norm": 0.21988974511623383, + "learning_rate": 0.0006, + "loss": 3.685072660446167, + "step": 2608 + }, + { + "epoch": 36.237658366098735, + "grad_norm": 0.2365395724773407, + "learning_rate": 0.0006, + "loss": 3.7292234897613525, + "step": 2609 + }, + { + "epoch": 36.25163826998689, + "grad_norm": 0.23791152238845825, + "learning_rate": 0.0006, + "loss": 3.6870808601379395, + "step": 2610 + }, + { + "epoch": 36.265618173875055, + "grad_norm": 0.22954145073890686, + "learning_rate": 0.0006, + "loss": 3.705406904220581, + "step": 2611 + }, + { + "epoch": 36.27959807776322, + "grad_norm": 0.22748000919818878, + "learning_rate": 0.0006, + "loss": 3.680781841278076, + "step": 2612 + }, + { + "epoch": 36.293577981651374, + "grad_norm": 0.21827450394630432, + "learning_rate": 0.0006, + "loss": 3.6794490814208984, + "step": 2613 + }, + { + "epoch": 36.30755788553954, + "grad_norm": 0.2406153380870819, + "learning_rate": 0.0006, + "loss": 3.690225124359131, + "step": 2614 + }, + { + "epoch": 36.3215377894277, + "grad_norm": 0.2406231164932251, + "learning_rate": 0.0006, + "loss": 3.665867805480957, + "step": 2615 + }, + { + "epoch": 36.33551769331586, + "grad_norm": 0.20494551956653595, + "learning_rate": 0.0006, + "loss": 3.701937198638916, + "step": 2616 + }, + { + "epoch": 36.34949759720402, + "grad_norm": 0.1995103359222412, + "learning_rate": 0.0006, + "loss": 3.702033758163452, + "step": 2617 + }, + { + "epoch": 36.36347750109218, + "grad_norm": 0.1902446299791336, + "learning_rate": 0.0006, + "loss": 3.6809959411621094, + "step": 2618 + }, + { + "epoch": 36.37745740498034, + "grad_norm": 0.1810801923274994, + "learning_rate": 0.0006, + "loss": 3.689852714538574, + "step": 2619 + }, + { + "epoch": 36.391437308868504, + "grad_norm": 0.1882476955652237, + "learning_rate": 0.0006, + "loss": 3.710911273956299, + "step": 2620 + }, + { + "epoch": 36.40541721275666, + "grad_norm": 0.1912514567375183, + "learning_rate": 0.0006, + "loss": 3.7054009437561035, + "step": 2621 + }, + { + "epoch": 36.419397116644824, + "grad_norm": 0.19080901145935059, + "learning_rate": 0.0006, + "loss": 3.681145191192627, + "step": 2622 + }, + { + "epoch": 36.43337702053299, + "grad_norm": 0.193472221493721, + "learning_rate": 0.0006, + "loss": 3.661360740661621, + "step": 2623 + }, + { + "epoch": 36.44735692442114, + "grad_norm": 0.2034357339143753, + "learning_rate": 0.0006, + "loss": 3.706930160522461, + "step": 2624 + }, + { + "epoch": 36.46133682830931, + "grad_norm": 0.19924600422382355, + "learning_rate": 0.0006, + "loss": 3.6903364658355713, + "step": 2625 + }, + { + "epoch": 36.47531673219746, + "grad_norm": 0.20556052029132843, + "learning_rate": 0.0006, + "loss": 3.6974234580993652, + "step": 2626 + }, + { + "epoch": 36.489296636085626, + "grad_norm": 0.19628804922103882, + "learning_rate": 0.0006, + "loss": 3.6947717666625977, + "step": 2627 + }, + { + "epoch": 36.50327653997379, + "grad_norm": 0.18071836233139038, + "learning_rate": 0.0006, + "loss": 3.717582941055298, + "step": 2628 + }, + { + "epoch": 36.517256443861946, + "grad_norm": 0.20531553030014038, + "learning_rate": 0.0006, + "loss": 3.680610179901123, + "step": 2629 + }, + { + "epoch": 36.53123634775011, + "grad_norm": 0.23789429664611816, + "learning_rate": 0.0006, + "loss": 3.711493968963623, + "step": 2630 + }, + { + "epoch": 36.54521625163827, + "grad_norm": 0.23027348518371582, + "learning_rate": 0.0006, + "loss": 3.6827993392944336, + "step": 2631 + }, + { + "epoch": 36.55919615552643, + "grad_norm": 0.21941570937633514, + "learning_rate": 0.0006, + "loss": 3.682286262512207, + "step": 2632 + }, + { + "epoch": 36.57317605941459, + "grad_norm": 0.21213553845882416, + "learning_rate": 0.0006, + "loss": 3.6828765869140625, + "step": 2633 + }, + { + "epoch": 36.58715596330275, + "grad_norm": 0.21929772198200226, + "learning_rate": 0.0006, + "loss": 3.697030544281006, + "step": 2634 + }, + { + "epoch": 36.60113586719091, + "grad_norm": 0.2101750522851944, + "learning_rate": 0.0006, + "loss": 3.723201274871826, + "step": 2635 + }, + { + "epoch": 36.615115771079076, + "grad_norm": 0.19014132022857666, + "learning_rate": 0.0006, + "loss": 3.6989338397979736, + "step": 2636 + }, + { + "epoch": 36.62909567496723, + "grad_norm": 0.21566815674304962, + "learning_rate": 0.0006, + "loss": 3.6968226432800293, + "step": 2637 + }, + { + "epoch": 36.643075578855395, + "grad_norm": 0.20500224828720093, + "learning_rate": 0.0006, + "loss": 3.689640522003174, + "step": 2638 + }, + { + "epoch": 36.65705548274356, + "grad_norm": 0.210358127951622, + "learning_rate": 0.0006, + "loss": 3.6996328830718994, + "step": 2639 + }, + { + "epoch": 36.671035386631715, + "grad_norm": 0.2061213105916977, + "learning_rate": 0.0006, + "loss": 3.7019221782684326, + "step": 2640 + }, + { + "epoch": 36.68501529051988, + "grad_norm": 0.21494871377944946, + "learning_rate": 0.0006, + "loss": 3.6634578704833984, + "step": 2641 + }, + { + "epoch": 36.69899519440804, + "grad_norm": 0.19586549699306488, + "learning_rate": 0.0006, + "loss": 3.708131790161133, + "step": 2642 + }, + { + "epoch": 36.7129750982962, + "grad_norm": 0.22805732488632202, + "learning_rate": 0.0006, + "loss": 3.6977362632751465, + "step": 2643 + }, + { + "epoch": 36.72695500218436, + "grad_norm": 0.28397148847579956, + "learning_rate": 0.0006, + "loss": 3.6847963333129883, + "step": 2644 + }, + { + "epoch": 36.74093490607252, + "grad_norm": 0.28333187103271484, + "learning_rate": 0.0006, + "loss": 3.734257459640503, + "step": 2645 + }, + { + "epoch": 36.75491480996068, + "grad_norm": 0.22314953804016113, + "learning_rate": 0.0006, + "loss": 3.6871445178985596, + "step": 2646 + }, + { + "epoch": 36.768894713848844, + "grad_norm": 0.20580267906188965, + "learning_rate": 0.0006, + "loss": 3.692736864089966, + "step": 2647 + }, + { + "epoch": 36.782874617737, + "grad_norm": 0.22695036232471466, + "learning_rate": 0.0006, + "loss": 3.697096824645996, + "step": 2648 + }, + { + "epoch": 36.796854521625164, + "grad_norm": 0.25916165113449097, + "learning_rate": 0.0006, + "loss": 3.7099573612213135, + "step": 2649 + }, + { + "epoch": 36.81083442551333, + "grad_norm": 0.26024341583251953, + "learning_rate": 0.0006, + "loss": 3.7161359786987305, + "step": 2650 + }, + { + "epoch": 36.824814329401484, + "grad_norm": 0.2340802699327469, + "learning_rate": 0.0006, + "loss": 3.708864688873291, + "step": 2651 + }, + { + "epoch": 36.83879423328965, + "grad_norm": 0.23312288522720337, + "learning_rate": 0.0006, + "loss": 3.7351365089416504, + "step": 2652 + }, + { + "epoch": 36.8527741371778, + "grad_norm": 0.22953253984451294, + "learning_rate": 0.0006, + "loss": 3.735302209854126, + "step": 2653 + }, + { + "epoch": 36.86675404106597, + "grad_norm": 0.21928828954696655, + "learning_rate": 0.0006, + "loss": 3.72445011138916, + "step": 2654 + }, + { + "epoch": 36.88073394495413, + "grad_norm": 0.22865602374076843, + "learning_rate": 0.0006, + "loss": 3.714867115020752, + "step": 2655 + }, + { + "epoch": 36.89471384884229, + "grad_norm": 0.23255643248558044, + "learning_rate": 0.0006, + "loss": 3.695101261138916, + "step": 2656 + }, + { + "epoch": 36.90869375273045, + "grad_norm": 0.2491452544927597, + "learning_rate": 0.0006, + "loss": 3.70692777633667, + "step": 2657 + }, + { + "epoch": 36.92267365661861, + "grad_norm": 0.27367597818374634, + "learning_rate": 0.0006, + "loss": 3.6906654834747314, + "step": 2658 + }, + { + "epoch": 36.93665356050677, + "grad_norm": 0.26728564500808716, + "learning_rate": 0.0006, + "loss": 3.7092056274414062, + "step": 2659 + }, + { + "epoch": 36.95063346439493, + "grad_norm": 0.207070454955101, + "learning_rate": 0.0006, + "loss": 3.7152137756347656, + "step": 2660 + }, + { + "epoch": 36.964613368283096, + "grad_norm": 0.21671561896800995, + "learning_rate": 0.0006, + "loss": 3.7130112648010254, + "step": 2661 + }, + { + "epoch": 36.97859327217125, + "grad_norm": 0.2140914648771286, + "learning_rate": 0.0006, + "loss": 3.7286999225616455, + "step": 2662 + }, + { + "epoch": 36.992573176059416, + "grad_norm": 0.21324342489242554, + "learning_rate": 0.0006, + "loss": 3.6828715801239014, + "step": 2663 + }, + { + "epoch": 37.0, + "grad_norm": 0.22366146743297577, + "learning_rate": 0.0006, + "loss": 3.69199800491333, + "step": 2664 + }, + { + "epoch": 37.0, + "eval_loss": 4.011842727661133, + "eval_runtime": 44.7825, + "eval_samples_per_second": 54.53, + "eval_steps_per_second": 3.417, + "step": 2664 + }, + { + "epoch": 37.01397990388816, + "grad_norm": 0.22093228995800018, + "learning_rate": 0.0006, + "loss": 3.6940979957580566, + "step": 2665 + }, + { + "epoch": 37.02795980777632, + "grad_norm": 0.20821493864059448, + "learning_rate": 0.0006, + "loss": 3.670813798904419, + "step": 2666 + }, + { + "epoch": 37.04193971166448, + "grad_norm": 0.22330114245414734, + "learning_rate": 0.0006, + "loss": 3.6392664909362793, + "step": 2667 + }, + { + "epoch": 37.05591961555265, + "grad_norm": 0.2224634289741516, + "learning_rate": 0.0006, + "loss": 3.660856246948242, + "step": 2668 + }, + { + "epoch": 37.0698995194408, + "grad_norm": 0.2255052626132965, + "learning_rate": 0.0006, + "loss": 3.6393589973449707, + "step": 2669 + }, + { + "epoch": 37.083879423328966, + "grad_norm": 0.23462942242622375, + "learning_rate": 0.0006, + "loss": 3.684429168701172, + "step": 2670 + }, + { + "epoch": 37.09785932721712, + "grad_norm": 0.23743386566638947, + "learning_rate": 0.0006, + "loss": 3.67622709274292, + "step": 2671 + }, + { + "epoch": 37.111839231105286, + "grad_norm": 0.2276267409324646, + "learning_rate": 0.0006, + "loss": 3.6487984657287598, + "step": 2672 + }, + { + "epoch": 37.12581913499345, + "grad_norm": 0.24448423087596893, + "learning_rate": 0.0006, + "loss": 3.67645525932312, + "step": 2673 + }, + { + "epoch": 37.139799038881605, + "grad_norm": 0.2428973764181137, + "learning_rate": 0.0006, + "loss": 3.681497097015381, + "step": 2674 + }, + { + "epoch": 37.15377894276977, + "grad_norm": 0.21918512880802155, + "learning_rate": 0.0006, + "loss": 3.67134428024292, + "step": 2675 + }, + { + "epoch": 37.16775884665793, + "grad_norm": 0.2103680670261383, + "learning_rate": 0.0006, + "loss": 3.6508708000183105, + "step": 2676 + }, + { + "epoch": 37.18173875054609, + "grad_norm": 0.20674929022789001, + "learning_rate": 0.0006, + "loss": 3.6904029846191406, + "step": 2677 + }, + { + "epoch": 37.19571865443425, + "grad_norm": 0.21867282688617706, + "learning_rate": 0.0006, + "loss": 3.697535514831543, + "step": 2678 + }, + { + "epoch": 37.20969855832241, + "grad_norm": 0.22919587790966034, + "learning_rate": 0.0006, + "loss": 3.675565004348755, + "step": 2679 + }, + { + "epoch": 37.22367846221057, + "grad_norm": 0.22255578637123108, + "learning_rate": 0.0006, + "loss": 3.6830129623413086, + "step": 2680 + }, + { + "epoch": 37.237658366098735, + "grad_norm": 0.22460198402404785, + "learning_rate": 0.0006, + "loss": 3.6872951984405518, + "step": 2681 + }, + { + "epoch": 37.25163826998689, + "grad_norm": 0.23677165806293488, + "learning_rate": 0.0006, + "loss": 3.6779165267944336, + "step": 2682 + }, + { + "epoch": 37.265618173875055, + "grad_norm": 0.23231394588947296, + "learning_rate": 0.0006, + "loss": 3.6831178665161133, + "step": 2683 + }, + { + "epoch": 37.27959807776322, + "grad_norm": 0.22131343185901642, + "learning_rate": 0.0006, + "loss": 3.664295196533203, + "step": 2684 + }, + { + "epoch": 37.293577981651374, + "grad_norm": 0.23424340784549713, + "learning_rate": 0.0006, + "loss": 3.696678638458252, + "step": 2685 + }, + { + "epoch": 37.30755788553954, + "grad_norm": 0.22695423662662506, + "learning_rate": 0.0006, + "loss": 3.6697473526000977, + "step": 2686 + }, + { + "epoch": 37.3215377894277, + "grad_norm": 0.2165997475385666, + "learning_rate": 0.0006, + "loss": 3.6801891326904297, + "step": 2687 + }, + { + "epoch": 37.33551769331586, + "grad_norm": 0.2241077572107315, + "learning_rate": 0.0006, + "loss": 3.6957011222839355, + "step": 2688 + }, + { + "epoch": 37.34949759720402, + "grad_norm": 0.21191732585430145, + "learning_rate": 0.0006, + "loss": 3.6812620162963867, + "step": 2689 + }, + { + "epoch": 37.36347750109218, + "grad_norm": 0.1827201396226883, + "learning_rate": 0.0006, + "loss": 3.6797738075256348, + "step": 2690 + }, + { + "epoch": 37.37745740498034, + "grad_norm": 0.20793627202510834, + "learning_rate": 0.0006, + "loss": 3.672819137573242, + "step": 2691 + }, + { + "epoch": 37.391437308868504, + "grad_norm": 0.19737116992473602, + "learning_rate": 0.0006, + "loss": 3.667839527130127, + "step": 2692 + }, + { + "epoch": 37.40541721275666, + "grad_norm": 0.18670497834682465, + "learning_rate": 0.0006, + "loss": 3.651561737060547, + "step": 2693 + }, + { + "epoch": 37.419397116644824, + "grad_norm": 0.21385592222213745, + "learning_rate": 0.0006, + "loss": 3.717456340789795, + "step": 2694 + }, + { + "epoch": 37.43337702053299, + "grad_norm": 0.20590044558048248, + "learning_rate": 0.0006, + "loss": 3.6950271129608154, + "step": 2695 + }, + { + "epoch": 37.44735692442114, + "grad_norm": 0.1992103010416031, + "learning_rate": 0.0006, + "loss": 3.687854290008545, + "step": 2696 + }, + { + "epoch": 37.46133682830931, + "grad_norm": 0.2004154473543167, + "learning_rate": 0.0006, + "loss": 3.695838451385498, + "step": 2697 + }, + { + "epoch": 37.47531673219746, + "grad_norm": 0.2019810527563095, + "learning_rate": 0.0006, + "loss": 3.690431594848633, + "step": 2698 + }, + { + "epoch": 37.489296636085626, + "grad_norm": 0.2192547768354416, + "learning_rate": 0.0006, + "loss": 3.6743836402893066, + "step": 2699 + }, + { + "epoch": 37.50327653997379, + "grad_norm": 0.2568076550960541, + "learning_rate": 0.0006, + "loss": 3.6857337951660156, + "step": 2700 + }, + { + "epoch": 37.517256443861946, + "grad_norm": 0.20050311088562012, + "learning_rate": 0.0006, + "loss": 3.6811180114746094, + "step": 2701 + }, + { + "epoch": 37.53123634775011, + "grad_norm": 0.21008558571338654, + "learning_rate": 0.0006, + "loss": 3.700563907623291, + "step": 2702 + }, + { + "epoch": 37.54521625163827, + "grad_norm": 0.2393747717142105, + "learning_rate": 0.0006, + "loss": 3.679438591003418, + "step": 2703 + }, + { + "epoch": 37.55919615552643, + "grad_norm": 0.2531895041465759, + "learning_rate": 0.0006, + "loss": 3.682903289794922, + "step": 2704 + }, + { + "epoch": 37.57317605941459, + "grad_norm": 0.2372656762599945, + "learning_rate": 0.0006, + "loss": 3.7128796577453613, + "step": 2705 + }, + { + "epoch": 37.58715596330275, + "grad_norm": 0.20020034909248352, + "learning_rate": 0.0006, + "loss": 3.701916217803955, + "step": 2706 + }, + { + "epoch": 37.60113586719091, + "grad_norm": 0.20250852406024933, + "learning_rate": 0.0006, + "loss": 3.6761491298675537, + "step": 2707 + }, + { + "epoch": 37.615115771079076, + "grad_norm": 0.19259589910507202, + "learning_rate": 0.0006, + "loss": 3.715104579925537, + "step": 2708 + }, + { + "epoch": 37.62909567496723, + "grad_norm": 0.19649392366409302, + "learning_rate": 0.0006, + "loss": 3.687556266784668, + "step": 2709 + }, + { + "epoch": 37.643075578855395, + "grad_norm": 0.1909446269273758, + "learning_rate": 0.0006, + "loss": 3.684046745300293, + "step": 2710 + }, + { + "epoch": 37.65705548274356, + "grad_norm": 0.19589872658252716, + "learning_rate": 0.0006, + "loss": 3.707886219024658, + "step": 2711 + }, + { + "epoch": 37.671035386631715, + "grad_norm": 0.19472210109233856, + "learning_rate": 0.0006, + "loss": 3.6837692260742188, + "step": 2712 + }, + { + "epoch": 37.68501529051988, + "grad_norm": 0.22622711956501007, + "learning_rate": 0.0006, + "loss": 3.703619956970215, + "step": 2713 + }, + { + "epoch": 37.69899519440804, + "grad_norm": 0.24314729869365692, + "learning_rate": 0.0006, + "loss": 3.7345223426818848, + "step": 2714 + }, + { + "epoch": 37.7129750982962, + "grad_norm": 0.23934306204319, + "learning_rate": 0.0006, + "loss": 3.687809705734253, + "step": 2715 + }, + { + "epoch": 37.72695500218436, + "grad_norm": 0.24838587641716003, + "learning_rate": 0.0006, + "loss": 3.708613872528076, + "step": 2716 + }, + { + "epoch": 37.74093490607252, + "grad_norm": 0.23191452026367188, + "learning_rate": 0.0006, + "loss": 3.7090163230895996, + "step": 2717 + }, + { + "epoch": 37.75491480996068, + "grad_norm": 0.24574638903141022, + "learning_rate": 0.0006, + "loss": 3.68489146232605, + "step": 2718 + }, + { + "epoch": 37.768894713848844, + "grad_norm": 0.2706749439239502, + "learning_rate": 0.0006, + "loss": 3.687061309814453, + "step": 2719 + }, + { + "epoch": 37.782874617737, + "grad_norm": 0.25955191254615784, + "learning_rate": 0.0006, + "loss": 3.694173812866211, + "step": 2720 + }, + { + "epoch": 37.796854521625164, + "grad_norm": 0.22040610015392303, + "learning_rate": 0.0006, + "loss": 3.701871871948242, + "step": 2721 + }, + { + "epoch": 37.81083442551333, + "grad_norm": 0.22328512370586395, + "learning_rate": 0.0006, + "loss": 3.7082555294036865, + "step": 2722 + }, + { + "epoch": 37.824814329401484, + "grad_norm": 0.2290581911802292, + "learning_rate": 0.0006, + "loss": 3.7023987770080566, + "step": 2723 + }, + { + "epoch": 37.83879423328965, + "grad_norm": 0.23129472136497498, + "learning_rate": 0.0006, + "loss": 3.7101752758026123, + "step": 2724 + }, + { + "epoch": 37.8527741371778, + "grad_norm": 0.21203753352165222, + "learning_rate": 0.0006, + "loss": 3.712129592895508, + "step": 2725 + }, + { + "epoch": 37.86675404106597, + "grad_norm": 0.21938200294971466, + "learning_rate": 0.0006, + "loss": 3.7086095809936523, + "step": 2726 + }, + { + "epoch": 37.88073394495413, + "grad_norm": 0.2203572541475296, + "learning_rate": 0.0006, + "loss": 3.6789026260375977, + "step": 2727 + }, + { + "epoch": 37.89471384884229, + "grad_norm": 0.18146046996116638, + "learning_rate": 0.0006, + "loss": 3.666893243789673, + "step": 2728 + }, + { + "epoch": 37.90869375273045, + "grad_norm": 0.1879623532295227, + "learning_rate": 0.0006, + "loss": 3.69246768951416, + "step": 2729 + }, + { + "epoch": 37.92267365661861, + "grad_norm": 0.18311670422554016, + "learning_rate": 0.0006, + "loss": 3.682036876678467, + "step": 2730 + }, + { + "epoch": 37.93665356050677, + "grad_norm": 0.1898486614227295, + "learning_rate": 0.0006, + "loss": 3.6683125495910645, + "step": 2731 + }, + { + "epoch": 37.95063346439493, + "grad_norm": 0.1858556717634201, + "learning_rate": 0.0006, + "loss": 3.6879611015319824, + "step": 2732 + }, + { + "epoch": 37.964613368283096, + "grad_norm": 0.19914504885673523, + "learning_rate": 0.0006, + "loss": 3.690250873565674, + "step": 2733 + }, + { + "epoch": 37.97859327217125, + "grad_norm": 0.20406974852085114, + "learning_rate": 0.0006, + "loss": 3.6812171936035156, + "step": 2734 + }, + { + "epoch": 37.992573176059416, + "grad_norm": 0.2003912478685379, + "learning_rate": 0.0006, + "loss": 3.6852147579193115, + "step": 2735 + }, + { + "epoch": 38.0, + "grad_norm": 0.22644472122192383, + "learning_rate": 0.0006, + "loss": 3.645207405090332, + "step": 2736 + }, + { + "epoch": 38.0, + "eval_loss": 3.995000123977661, + "eval_runtime": 45.1644, + "eval_samples_per_second": 54.069, + "eval_steps_per_second": 3.388, + "step": 2736 + }, + { + "epoch": 38.01397990388816, + "grad_norm": 0.1989814043045044, + "learning_rate": 0.0006, + "loss": 3.6511387825012207, + "step": 2737 + }, + { + "epoch": 38.02795980777632, + "grad_norm": 0.203324094414711, + "learning_rate": 0.0006, + "loss": 3.6513094902038574, + "step": 2738 + }, + { + "epoch": 38.04193971166448, + "grad_norm": 0.21504290401935577, + "learning_rate": 0.0006, + "loss": 3.647711992263794, + "step": 2739 + }, + { + "epoch": 38.05591961555265, + "grad_norm": 0.23464815318584442, + "learning_rate": 0.0006, + "loss": 3.6418747901916504, + "step": 2740 + }, + { + "epoch": 38.0698995194408, + "grad_norm": 0.242184117436409, + "learning_rate": 0.0006, + "loss": 3.6741859912872314, + "step": 2741 + }, + { + "epoch": 38.083879423328966, + "grad_norm": 0.23488445580005646, + "learning_rate": 0.0006, + "loss": 3.6710941791534424, + "step": 2742 + }, + { + "epoch": 38.09785932721712, + "grad_norm": 0.20800170302391052, + "learning_rate": 0.0006, + "loss": 3.660001754760742, + "step": 2743 + }, + { + "epoch": 38.111839231105286, + "grad_norm": 0.19505052268505096, + "learning_rate": 0.0006, + "loss": 3.684129238128662, + "step": 2744 + }, + { + "epoch": 38.12581913499345, + "grad_norm": 0.2185833901166916, + "learning_rate": 0.0006, + "loss": 3.656033515930176, + "step": 2745 + }, + { + "epoch": 38.139799038881605, + "grad_norm": 0.21850253641605377, + "learning_rate": 0.0006, + "loss": 3.6818184852600098, + "step": 2746 + }, + { + "epoch": 38.15377894276977, + "grad_norm": 0.2109488695859909, + "learning_rate": 0.0006, + "loss": 3.6485435962677, + "step": 2747 + }, + { + "epoch": 38.16775884665793, + "grad_norm": 0.21059907972812653, + "learning_rate": 0.0006, + "loss": 3.6734395027160645, + "step": 2748 + }, + { + "epoch": 38.18173875054609, + "grad_norm": 0.20741555094718933, + "learning_rate": 0.0006, + "loss": 3.6672463417053223, + "step": 2749 + }, + { + "epoch": 38.19571865443425, + "grad_norm": 0.2130175530910492, + "learning_rate": 0.0006, + "loss": 3.692840576171875, + "step": 2750 + }, + { + "epoch": 38.20969855832241, + "grad_norm": 0.1899138242006302, + "learning_rate": 0.0006, + "loss": 3.675316333770752, + "step": 2751 + }, + { + "epoch": 38.22367846221057, + "grad_norm": 0.218918576836586, + "learning_rate": 0.0006, + "loss": 3.634105920791626, + "step": 2752 + }, + { + "epoch": 38.237658366098735, + "grad_norm": 0.23649370670318604, + "learning_rate": 0.0006, + "loss": 3.6526122093200684, + "step": 2753 + }, + { + "epoch": 38.25163826998689, + "grad_norm": 0.22011931240558624, + "learning_rate": 0.0006, + "loss": 3.6859593391418457, + "step": 2754 + }, + { + "epoch": 38.265618173875055, + "grad_norm": 0.2143620252609253, + "learning_rate": 0.0006, + "loss": 3.656838893890381, + "step": 2755 + }, + { + "epoch": 38.27959807776322, + "grad_norm": 0.24068567156791687, + "learning_rate": 0.0006, + "loss": 3.67006254196167, + "step": 2756 + }, + { + "epoch": 38.293577981651374, + "grad_norm": 0.25773152709007263, + "learning_rate": 0.0006, + "loss": 3.6648950576782227, + "step": 2757 + }, + { + "epoch": 38.30755788553954, + "grad_norm": 0.24213455617427826, + "learning_rate": 0.0006, + "loss": 3.6918864250183105, + "step": 2758 + }, + { + "epoch": 38.3215377894277, + "grad_norm": 0.22463668882846832, + "learning_rate": 0.0006, + "loss": 3.6662540435791016, + "step": 2759 + }, + { + "epoch": 38.33551769331586, + "grad_norm": 0.22541455924510956, + "learning_rate": 0.0006, + "loss": 3.6563215255737305, + "step": 2760 + }, + { + "epoch": 38.34949759720402, + "grad_norm": 0.21833783388137817, + "learning_rate": 0.0006, + "loss": 3.650446891784668, + "step": 2761 + }, + { + "epoch": 38.36347750109218, + "grad_norm": 0.22799745202064514, + "learning_rate": 0.0006, + "loss": 3.7007250785827637, + "step": 2762 + }, + { + "epoch": 38.37745740498034, + "grad_norm": 0.23739562928676605, + "learning_rate": 0.0006, + "loss": 3.667130708694458, + "step": 2763 + }, + { + "epoch": 38.391437308868504, + "grad_norm": 0.23744846880435944, + "learning_rate": 0.0006, + "loss": 3.678760528564453, + "step": 2764 + }, + { + "epoch": 38.40541721275666, + "grad_norm": 0.2677105963230133, + "learning_rate": 0.0006, + "loss": 3.6829030513763428, + "step": 2765 + }, + { + "epoch": 38.419397116644824, + "grad_norm": 0.24490566551685333, + "learning_rate": 0.0006, + "loss": 3.707911491394043, + "step": 2766 + }, + { + "epoch": 38.43337702053299, + "grad_norm": 0.23477254807949066, + "learning_rate": 0.0006, + "loss": 3.680157423019409, + "step": 2767 + }, + { + "epoch": 38.44735692442114, + "grad_norm": 0.26611173152923584, + "learning_rate": 0.0006, + "loss": 3.660834550857544, + "step": 2768 + }, + { + "epoch": 38.46133682830931, + "grad_norm": 0.24505069851875305, + "learning_rate": 0.0006, + "loss": 3.696178436279297, + "step": 2769 + }, + { + "epoch": 38.47531673219746, + "grad_norm": 0.22933335602283478, + "learning_rate": 0.0006, + "loss": 3.6506235599517822, + "step": 2770 + }, + { + "epoch": 38.489296636085626, + "grad_norm": 0.23662401735782623, + "learning_rate": 0.0006, + "loss": 3.680819511413574, + "step": 2771 + }, + { + "epoch": 38.50327653997379, + "grad_norm": 0.27774113416671753, + "learning_rate": 0.0006, + "loss": 3.699146270751953, + "step": 2772 + }, + { + "epoch": 38.517256443861946, + "grad_norm": 0.2881671190261841, + "learning_rate": 0.0006, + "loss": 3.6509652137756348, + "step": 2773 + }, + { + "epoch": 38.53123634775011, + "grad_norm": 0.26570361852645874, + "learning_rate": 0.0006, + "loss": 3.6808385848999023, + "step": 2774 + }, + { + "epoch": 38.54521625163827, + "grad_norm": 0.23043136298656464, + "learning_rate": 0.0006, + "loss": 3.7082371711730957, + "step": 2775 + }, + { + "epoch": 38.55919615552643, + "grad_norm": 0.23730400204658508, + "learning_rate": 0.0006, + "loss": 3.653615951538086, + "step": 2776 + }, + { + "epoch": 38.57317605941459, + "grad_norm": 0.2332635223865509, + "learning_rate": 0.0006, + "loss": 3.6869683265686035, + "step": 2777 + }, + { + "epoch": 38.58715596330275, + "grad_norm": 0.22913676500320435, + "learning_rate": 0.0006, + "loss": 3.6998367309570312, + "step": 2778 + }, + { + "epoch": 38.60113586719091, + "grad_norm": 0.226078599691391, + "learning_rate": 0.0006, + "loss": 3.7051444053649902, + "step": 2779 + }, + { + "epoch": 38.615115771079076, + "grad_norm": 0.2336396723985672, + "learning_rate": 0.0006, + "loss": 3.6964943408966064, + "step": 2780 + }, + { + "epoch": 38.62909567496723, + "grad_norm": 0.23270335793495178, + "learning_rate": 0.0006, + "loss": 3.6741909980773926, + "step": 2781 + }, + { + "epoch": 38.643075578855395, + "grad_norm": 0.19324959814548492, + "learning_rate": 0.0006, + "loss": 3.64506196975708, + "step": 2782 + }, + { + "epoch": 38.65705548274356, + "grad_norm": 0.18551453948020935, + "learning_rate": 0.0006, + "loss": 3.6834206581115723, + "step": 2783 + }, + { + "epoch": 38.671035386631715, + "grad_norm": 0.17392469942569733, + "learning_rate": 0.0006, + "loss": 3.67282772064209, + "step": 2784 + }, + { + "epoch": 38.68501529051988, + "grad_norm": 0.19093742966651917, + "learning_rate": 0.0006, + "loss": 3.6648201942443848, + "step": 2785 + }, + { + "epoch": 38.69899519440804, + "grad_norm": 0.2124558985233307, + "learning_rate": 0.0006, + "loss": 3.712191581726074, + "step": 2786 + }, + { + "epoch": 38.7129750982962, + "grad_norm": 0.2220139354467392, + "learning_rate": 0.0006, + "loss": 3.675504207611084, + "step": 2787 + }, + { + "epoch": 38.72695500218436, + "grad_norm": 0.17677755653858185, + "learning_rate": 0.0006, + "loss": 3.6693475246429443, + "step": 2788 + }, + { + "epoch": 38.74093490607252, + "grad_norm": 0.2002430409193039, + "learning_rate": 0.0006, + "loss": 3.6906018257141113, + "step": 2789 + }, + { + "epoch": 38.75491480996068, + "grad_norm": 0.18844179809093475, + "learning_rate": 0.0006, + "loss": 3.660121440887451, + "step": 2790 + }, + { + "epoch": 38.768894713848844, + "grad_norm": 0.19319336116313934, + "learning_rate": 0.0006, + "loss": 3.6592631340026855, + "step": 2791 + }, + { + "epoch": 38.782874617737, + "grad_norm": 0.18624325096607208, + "learning_rate": 0.0006, + "loss": 3.6935300827026367, + "step": 2792 + }, + { + "epoch": 38.796854521625164, + "grad_norm": 0.2049761712551117, + "learning_rate": 0.0006, + "loss": 3.6702702045440674, + "step": 2793 + }, + { + "epoch": 38.81083442551333, + "grad_norm": 0.2030584216117859, + "learning_rate": 0.0006, + "loss": 3.714639663696289, + "step": 2794 + }, + { + "epoch": 38.824814329401484, + "grad_norm": 0.18989548087120056, + "learning_rate": 0.0006, + "loss": 3.678253412246704, + "step": 2795 + }, + { + "epoch": 38.83879423328965, + "grad_norm": 0.19944126904010773, + "learning_rate": 0.0006, + "loss": 3.648367166519165, + "step": 2796 + }, + { + "epoch": 38.8527741371778, + "grad_norm": 0.2062688171863556, + "learning_rate": 0.0006, + "loss": 3.701514720916748, + "step": 2797 + }, + { + "epoch": 38.86675404106597, + "grad_norm": 0.21475110948085785, + "learning_rate": 0.0006, + "loss": 3.6725993156433105, + "step": 2798 + }, + { + "epoch": 38.88073394495413, + "grad_norm": 0.2240881323814392, + "learning_rate": 0.0006, + "loss": 3.6944539546966553, + "step": 2799 + }, + { + "epoch": 38.89471384884229, + "grad_norm": 0.23074312508106232, + "learning_rate": 0.0006, + "loss": 3.747671365737915, + "step": 2800 + }, + { + "epoch": 38.90869375273045, + "grad_norm": 0.2447938323020935, + "learning_rate": 0.0006, + "loss": 3.6856026649475098, + "step": 2801 + }, + { + "epoch": 38.92267365661861, + "grad_norm": 0.2136487364768982, + "learning_rate": 0.0006, + "loss": 3.710397720336914, + "step": 2802 + }, + { + "epoch": 38.93665356050677, + "grad_norm": 0.21676769852638245, + "learning_rate": 0.0006, + "loss": 3.6911189556121826, + "step": 2803 + }, + { + "epoch": 38.95063346439493, + "grad_norm": 0.2226478010416031, + "learning_rate": 0.0006, + "loss": 3.6902880668640137, + "step": 2804 + }, + { + "epoch": 38.964613368283096, + "grad_norm": 0.2071496546268463, + "learning_rate": 0.0006, + "loss": 3.6831371784210205, + "step": 2805 + }, + { + "epoch": 38.97859327217125, + "grad_norm": 0.19568349421024323, + "learning_rate": 0.0006, + "loss": 3.6897640228271484, + "step": 2806 + }, + { + "epoch": 38.992573176059416, + "grad_norm": 0.19067516922950745, + "learning_rate": 0.0006, + "loss": 3.7096242904663086, + "step": 2807 + }, + { + "epoch": 39.0, + "grad_norm": 0.22872281074523926, + "learning_rate": 0.0006, + "loss": 3.689342975616455, + "step": 2808 + }, + { + "epoch": 39.0, + "eval_loss": 4.001968860626221, + "eval_runtime": 44.8452, + "eval_samples_per_second": 54.454, + "eval_steps_per_second": 3.412, + "step": 2808 + }, + { + "epoch": 39.01397990388816, + "grad_norm": 0.21685896813869476, + "learning_rate": 0.0006, + "loss": 3.638145923614502, + "step": 2809 + }, + { + "epoch": 39.02795980777632, + "grad_norm": 0.20085014402866364, + "learning_rate": 0.0006, + "loss": 3.626654624938965, + "step": 2810 + }, + { + "epoch": 39.04193971166448, + "grad_norm": 0.20615799725055695, + "learning_rate": 0.0006, + "loss": 3.6280088424682617, + "step": 2811 + }, + { + "epoch": 39.05591961555265, + "grad_norm": 0.23471905291080475, + "learning_rate": 0.0006, + "loss": 3.6444239616394043, + "step": 2812 + }, + { + "epoch": 39.0698995194408, + "grad_norm": 0.22207780182361603, + "learning_rate": 0.0006, + "loss": 3.6276912689208984, + "step": 2813 + }, + { + "epoch": 39.083879423328966, + "grad_norm": 0.23354043066501617, + "learning_rate": 0.0006, + "loss": 3.7007269859313965, + "step": 2814 + }, + { + "epoch": 39.09785932721712, + "grad_norm": 0.22520557045936584, + "learning_rate": 0.0006, + "loss": 3.6487162113189697, + "step": 2815 + }, + { + "epoch": 39.111839231105286, + "grad_norm": 0.20489682257175446, + "learning_rate": 0.0006, + "loss": 3.6523492336273193, + "step": 2816 + }, + { + "epoch": 39.12581913499345, + "grad_norm": 0.20979270339012146, + "learning_rate": 0.0006, + "loss": 3.6574230194091797, + "step": 2817 + }, + { + "epoch": 39.139799038881605, + "grad_norm": 0.2256486713886261, + "learning_rate": 0.0006, + "loss": 3.6499013900756836, + "step": 2818 + }, + { + "epoch": 39.15377894276977, + "grad_norm": 0.1960437297821045, + "learning_rate": 0.0006, + "loss": 3.6780271530151367, + "step": 2819 + }, + { + "epoch": 39.16775884665793, + "grad_norm": 0.19279663264751434, + "learning_rate": 0.0006, + "loss": 3.623819589614868, + "step": 2820 + }, + { + "epoch": 39.18173875054609, + "grad_norm": 0.19151495397090912, + "learning_rate": 0.0006, + "loss": 3.612868070602417, + "step": 2821 + }, + { + "epoch": 39.19571865443425, + "grad_norm": 0.19399534165859222, + "learning_rate": 0.0006, + "loss": 3.6518092155456543, + "step": 2822 + }, + { + "epoch": 39.20969855832241, + "grad_norm": 0.21723251044750214, + "learning_rate": 0.0006, + "loss": 3.681509494781494, + "step": 2823 + }, + { + "epoch": 39.22367846221057, + "grad_norm": 0.2487006038427353, + "learning_rate": 0.0006, + "loss": 3.6569719314575195, + "step": 2824 + }, + { + "epoch": 39.237658366098735, + "grad_norm": 0.2640652656555176, + "learning_rate": 0.0006, + "loss": 3.680734634399414, + "step": 2825 + }, + { + "epoch": 39.25163826998689, + "grad_norm": 0.21862825751304626, + "learning_rate": 0.0006, + "loss": 3.6741840839385986, + "step": 2826 + }, + { + "epoch": 39.265618173875055, + "grad_norm": 0.19515705108642578, + "learning_rate": 0.0006, + "loss": 3.657750129699707, + "step": 2827 + }, + { + "epoch": 39.27959807776322, + "grad_norm": 0.1971602737903595, + "learning_rate": 0.0006, + "loss": 3.6524124145507812, + "step": 2828 + }, + { + "epoch": 39.293577981651374, + "grad_norm": 0.20822174847126007, + "learning_rate": 0.0006, + "loss": 3.69527006149292, + "step": 2829 + }, + { + "epoch": 39.30755788553954, + "grad_norm": 0.2566370368003845, + "learning_rate": 0.0006, + "loss": 3.6770880222320557, + "step": 2830 + }, + { + "epoch": 39.3215377894277, + "grad_norm": 0.24984225630760193, + "learning_rate": 0.0006, + "loss": 3.6733901500701904, + "step": 2831 + }, + { + "epoch": 39.33551769331586, + "grad_norm": 0.233322873711586, + "learning_rate": 0.0006, + "loss": 3.645519256591797, + "step": 2832 + }, + { + "epoch": 39.34949759720402, + "grad_norm": 0.21584749221801758, + "learning_rate": 0.0006, + "loss": 3.6211934089660645, + "step": 2833 + }, + { + "epoch": 39.36347750109218, + "grad_norm": 0.2188950479030609, + "learning_rate": 0.0006, + "loss": 3.6434195041656494, + "step": 2834 + }, + { + "epoch": 39.37745740498034, + "grad_norm": 0.21998439729213715, + "learning_rate": 0.0006, + "loss": 3.6720595359802246, + "step": 2835 + }, + { + "epoch": 39.391437308868504, + "grad_norm": 0.2459399700164795, + "learning_rate": 0.0006, + "loss": 3.667083740234375, + "step": 2836 + }, + { + "epoch": 39.40541721275666, + "grad_norm": 0.23579223453998566, + "learning_rate": 0.0006, + "loss": 3.665452480316162, + "step": 2837 + }, + { + "epoch": 39.419397116644824, + "grad_norm": 0.19401362538337708, + "learning_rate": 0.0006, + "loss": 3.684218406677246, + "step": 2838 + }, + { + "epoch": 39.43337702053299, + "grad_norm": 0.1894487738609314, + "learning_rate": 0.0006, + "loss": 3.670626163482666, + "step": 2839 + }, + { + "epoch": 39.44735692442114, + "grad_norm": 0.1936904937028885, + "learning_rate": 0.0006, + "loss": 3.6367318630218506, + "step": 2840 + }, + { + "epoch": 39.46133682830931, + "grad_norm": 0.1867629438638687, + "learning_rate": 0.0006, + "loss": 3.670098304748535, + "step": 2841 + }, + { + "epoch": 39.47531673219746, + "grad_norm": 0.18849903345108032, + "learning_rate": 0.0006, + "loss": 3.6877760887145996, + "step": 2842 + }, + { + "epoch": 39.489296636085626, + "grad_norm": 0.18247179687023163, + "learning_rate": 0.0006, + "loss": 3.7132980823516846, + "step": 2843 + }, + { + "epoch": 39.50327653997379, + "grad_norm": 0.19206349551677704, + "learning_rate": 0.0006, + "loss": 3.630319595336914, + "step": 2844 + }, + { + "epoch": 39.517256443861946, + "grad_norm": 0.21730613708496094, + "learning_rate": 0.0006, + "loss": 3.6818761825561523, + "step": 2845 + }, + { + "epoch": 39.53123634775011, + "grad_norm": 0.22482407093048096, + "learning_rate": 0.0006, + "loss": 3.6385269165039062, + "step": 2846 + }, + { + "epoch": 39.54521625163827, + "grad_norm": 0.24560105800628662, + "learning_rate": 0.0006, + "loss": 3.660067558288574, + "step": 2847 + }, + { + "epoch": 39.55919615552643, + "grad_norm": 0.23720617592334747, + "learning_rate": 0.0006, + "loss": 3.6811556816101074, + "step": 2848 + }, + { + "epoch": 39.57317605941459, + "grad_norm": 0.18990741670131683, + "learning_rate": 0.0006, + "loss": 3.6733779907226562, + "step": 2849 + }, + { + "epoch": 39.58715596330275, + "grad_norm": 0.2135438323020935, + "learning_rate": 0.0006, + "loss": 3.662020683288574, + "step": 2850 + }, + { + "epoch": 39.60113586719091, + "grad_norm": 0.24248908460140228, + "learning_rate": 0.0006, + "loss": 3.6794259548187256, + "step": 2851 + }, + { + "epoch": 39.615115771079076, + "grad_norm": 0.23115725815296173, + "learning_rate": 0.0006, + "loss": 3.6732406616210938, + "step": 2852 + }, + { + "epoch": 39.62909567496723, + "grad_norm": 0.23760166764259338, + "learning_rate": 0.0006, + "loss": 3.7062699794769287, + "step": 2853 + }, + { + "epoch": 39.643075578855395, + "grad_norm": 0.24670571088790894, + "learning_rate": 0.0006, + "loss": 3.692385673522949, + "step": 2854 + }, + { + "epoch": 39.65705548274356, + "grad_norm": 0.20983918011188507, + "learning_rate": 0.0006, + "loss": 3.691361427307129, + "step": 2855 + }, + { + "epoch": 39.671035386631715, + "grad_norm": 0.1915138065814972, + "learning_rate": 0.0006, + "loss": 3.6985888481140137, + "step": 2856 + }, + { + "epoch": 39.68501529051988, + "grad_norm": 0.23440803587436676, + "learning_rate": 0.0006, + "loss": 3.6484973430633545, + "step": 2857 + }, + { + "epoch": 39.69899519440804, + "grad_norm": 0.2483232468366623, + "learning_rate": 0.0006, + "loss": 3.6861510276794434, + "step": 2858 + }, + { + "epoch": 39.7129750982962, + "grad_norm": 0.21373426914215088, + "learning_rate": 0.0006, + "loss": 3.6528866291046143, + "step": 2859 + }, + { + "epoch": 39.72695500218436, + "grad_norm": 0.19849136471748352, + "learning_rate": 0.0006, + "loss": 3.6435961723327637, + "step": 2860 + }, + { + "epoch": 39.74093490607252, + "grad_norm": 0.21748292446136475, + "learning_rate": 0.0006, + "loss": 3.678481101989746, + "step": 2861 + }, + { + "epoch": 39.75491480996068, + "grad_norm": 0.22488188743591309, + "learning_rate": 0.0006, + "loss": 3.711717128753662, + "step": 2862 + }, + { + "epoch": 39.768894713848844, + "grad_norm": 0.22251835465431213, + "learning_rate": 0.0006, + "loss": 3.690516471862793, + "step": 2863 + }, + { + "epoch": 39.782874617737, + "grad_norm": 0.22101449966430664, + "learning_rate": 0.0006, + "loss": 3.6679611206054688, + "step": 2864 + }, + { + "epoch": 39.796854521625164, + "grad_norm": 0.20345936715602875, + "learning_rate": 0.0006, + "loss": 3.6935629844665527, + "step": 2865 + }, + { + "epoch": 39.81083442551333, + "grad_norm": 0.23772259056568146, + "learning_rate": 0.0006, + "loss": 3.697561264038086, + "step": 2866 + }, + { + "epoch": 39.824814329401484, + "grad_norm": 0.24446387588977814, + "learning_rate": 0.0006, + "loss": 3.696723461151123, + "step": 2867 + }, + { + "epoch": 39.83879423328965, + "grad_norm": 0.2365843653678894, + "learning_rate": 0.0006, + "loss": 3.6511402130126953, + "step": 2868 + }, + { + "epoch": 39.8527741371778, + "grad_norm": 0.25421974062919617, + "learning_rate": 0.0006, + "loss": 3.68449068069458, + "step": 2869 + }, + { + "epoch": 39.86675404106597, + "grad_norm": 0.2504308819770813, + "learning_rate": 0.0006, + "loss": 3.685884952545166, + "step": 2870 + }, + { + "epoch": 39.88073394495413, + "grad_norm": 0.24695490300655365, + "learning_rate": 0.0006, + "loss": 3.6667490005493164, + "step": 2871 + }, + { + "epoch": 39.89471384884229, + "grad_norm": 0.2633236348628998, + "learning_rate": 0.0006, + "loss": 3.6828866004943848, + "step": 2872 + }, + { + "epoch": 39.90869375273045, + "grad_norm": 0.2421039491891861, + "learning_rate": 0.0006, + "loss": 3.681187391281128, + "step": 2873 + }, + { + "epoch": 39.92267365661861, + "grad_norm": 0.21202950179576874, + "learning_rate": 0.0006, + "loss": 3.679069995880127, + "step": 2874 + }, + { + "epoch": 39.93665356050677, + "grad_norm": 0.2344917505979538, + "learning_rate": 0.0006, + "loss": 3.6810007095336914, + "step": 2875 + }, + { + "epoch": 39.95063346439493, + "grad_norm": 0.2115124762058258, + "learning_rate": 0.0006, + "loss": 3.653219223022461, + "step": 2876 + }, + { + "epoch": 39.964613368283096, + "grad_norm": 0.21588370203971863, + "learning_rate": 0.0006, + "loss": 3.6972861289978027, + "step": 2877 + }, + { + "epoch": 39.97859327217125, + "grad_norm": 0.26215407252311707, + "learning_rate": 0.0006, + "loss": 3.6796963214874268, + "step": 2878 + }, + { + "epoch": 39.992573176059416, + "grad_norm": 0.23645395040512085, + "learning_rate": 0.0006, + "loss": 3.696091413497925, + "step": 2879 + }, + { + "epoch": 40.0, + "grad_norm": 0.21817512810230255, + "learning_rate": 0.0006, + "loss": 3.668196678161621, + "step": 2880 + }, + { + "epoch": 40.0, + "eval_loss": 3.9873862266540527, + "eval_runtime": 44.1149, + "eval_samples_per_second": 55.355, + "eval_steps_per_second": 3.468, + "step": 2880 + }, + { + "epoch": 40.01397990388816, + "grad_norm": 0.2031477391719818, + "learning_rate": 0.0006, + "loss": 3.6494622230529785, + "step": 2881 + }, + { + "epoch": 40.02795980777632, + "grad_norm": 0.2223939746618271, + "learning_rate": 0.0006, + "loss": 3.6587047576904297, + "step": 2882 + }, + { + "epoch": 40.04193971166448, + "grad_norm": 0.21485820412635803, + "learning_rate": 0.0006, + "loss": 3.62253737449646, + "step": 2883 + }, + { + "epoch": 40.05591961555265, + "grad_norm": 0.23364055156707764, + "learning_rate": 0.0006, + "loss": 3.619035005569458, + "step": 2884 + }, + { + "epoch": 40.0698995194408, + "grad_norm": 0.23141583800315857, + "learning_rate": 0.0006, + "loss": 3.6650376319885254, + "step": 2885 + }, + { + "epoch": 40.083879423328966, + "grad_norm": 0.2131720930337906, + "learning_rate": 0.0006, + "loss": 3.646428108215332, + "step": 2886 + }, + { + "epoch": 40.09785932721712, + "grad_norm": 0.2337951511144638, + "learning_rate": 0.0006, + "loss": 3.6284823417663574, + "step": 2887 + }, + { + "epoch": 40.111839231105286, + "grad_norm": 0.2790892720222473, + "learning_rate": 0.0006, + "loss": 3.6558361053466797, + "step": 2888 + }, + { + "epoch": 40.12581913499345, + "grad_norm": 0.28444936871528625, + "learning_rate": 0.0006, + "loss": 3.644402503967285, + "step": 2889 + }, + { + "epoch": 40.139799038881605, + "grad_norm": 0.2550848126411438, + "learning_rate": 0.0006, + "loss": 3.671562671661377, + "step": 2890 + }, + { + "epoch": 40.15377894276977, + "grad_norm": 0.22960248589515686, + "learning_rate": 0.0006, + "loss": 3.6998534202575684, + "step": 2891 + }, + { + "epoch": 40.16775884665793, + "grad_norm": 0.23920369148254395, + "learning_rate": 0.0006, + "loss": 3.653874635696411, + "step": 2892 + }, + { + "epoch": 40.18173875054609, + "grad_norm": 0.24586012959480286, + "learning_rate": 0.0006, + "loss": 3.620765209197998, + "step": 2893 + }, + { + "epoch": 40.19571865443425, + "grad_norm": 0.26394739747047424, + "learning_rate": 0.0006, + "loss": 3.638437509536743, + "step": 2894 + }, + { + "epoch": 40.20969855832241, + "grad_norm": 0.27566927671432495, + "learning_rate": 0.0006, + "loss": 3.6684799194335938, + "step": 2895 + }, + { + "epoch": 40.22367846221057, + "grad_norm": 0.25469011068344116, + "learning_rate": 0.0006, + "loss": 3.6113009452819824, + "step": 2896 + }, + { + "epoch": 40.237658366098735, + "grad_norm": 0.2403056025505066, + "learning_rate": 0.0006, + "loss": 3.650771141052246, + "step": 2897 + }, + { + "epoch": 40.25163826998689, + "grad_norm": 0.262423038482666, + "learning_rate": 0.0006, + "loss": 3.635892391204834, + "step": 2898 + }, + { + "epoch": 40.265618173875055, + "grad_norm": 0.23696045577526093, + "learning_rate": 0.0006, + "loss": 3.6396005153656006, + "step": 2899 + }, + { + "epoch": 40.27959807776322, + "grad_norm": 0.208719402551651, + "learning_rate": 0.0006, + "loss": 3.6681132316589355, + "step": 2900 + }, + { + "epoch": 40.293577981651374, + "grad_norm": 0.21554480493068695, + "learning_rate": 0.0006, + "loss": 3.6417553424835205, + "step": 2901 + }, + { + "epoch": 40.30755788553954, + "grad_norm": 0.2290734499692917, + "learning_rate": 0.0006, + "loss": 3.6659927368164062, + "step": 2902 + }, + { + "epoch": 40.3215377894277, + "grad_norm": 0.20803220570087433, + "learning_rate": 0.0006, + "loss": 3.6443324089050293, + "step": 2903 + }, + { + "epoch": 40.33551769331586, + "grad_norm": 0.20334568619728088, + "learning_rate": 0.0006, + "loss": 3.6824207305908203, + "step": 2904 + }, + { + "epoch": 40.34949759720402, + "grad_norm": 0.2000233381986618, + "learning_rate": 0.0006, + "loss": 3.644399642944336, + "step": 2905 + }, + { + "epoch": 40.36347750109218, + "grad_norm": 0.21990752220153809, + "learning_rate": 0.0006, + "loss": 3.668160915374756, + "step": 2906 + }, + { + "epoch": 40.37745740498034, + "grad_norm": 0.24385249614715576, + "learning_rate": 0.0006, + "loss": 3.634392261505127, + "step": 2907 + }, + { + "epoch": 40.391437308868504, + "grad_norm": 0.21272684633731842, + "learning_rate": 0.0006, + "loss": 3.6504263877868652, + "step": 2908 + }, + { + "epoch": 40.40541721275666, + "grad_norm": 0.2003277838230133, + "learning_rate": 0.0006, + "loss": 3.6707763671875, + "step": 2909 + }, + { + "epoch": 40.419397116644824, + "grad_norm": 0.2086087465286255, + "learning_rate": 0.0006, + "loss": 3.66988468170166, + "step": 2910 + }, + { + "epoch": 40.43337702053299, + "grad_norm": 0.19706451892852783, + "learning_rate": 0.0006, + "loss": 3.662794828414917, + "step": 2911 + }, + { + "epoch": 40.44735692442114, + "grad_norm": 0.18795762956142426, + "learning_rate": 0.0006, + "loss": 3.628016233444214, + "step": 2912 + }, + { + "epoch": 40.46133682830931, + "grad_norm": 0.19931825995445251, + "learning_rate": 0.0006, + "loss": 3.6791915893554688, + "step": 2913 + }, + { + "epoch": 40.47531673219746, + "grad_norm": 0.21295934915542603, + "learning_rate": 0.0006, + "loss": 3.688632011413574, + "step": 2914 + }, + { + "epoch": 40.489296636085626, + "grad_norm": 0.2104834020137787, + "learning_rate": 0.0006, + "loss": 3.6270499229431152, + "step": 2915 + }, + { + "epoch": 40.50327653997379, + "grad_norm": 0.19942966103553772, + "learning_rate": 0.0006, + "loss": 3.651721477508545, + "step": 2916 + }, + { + "epoch": 40.517256443861946, + "grad_norm": 0.18890425562858582, + "learning_rate": 0.0006, + "loss": 3.6778619289398193, + "step": 2917 + }, + { + "epoch": 40.53123634775011, + "grad_norm": 0.19861607253551483, + "learning_rate": 0.0006, + "loss": 3.658832550048828, + "step": 2918 + }, + { + "epoch": 40.54521625163827, + "grad_norm": 0.21553616225719452, + "learning_rate": 0.0006, + "loss": 3.6566901206970215, + "step": 2919 + }, + { + "epoch": 40.55919615552643, + "grad_norm": 0.21698440611362457, + "learning_rate": 0.0006, + "loss": 3.6795129776000977, + "step": 2920 + }, + { + "epoch": 40.57317605941459, + "grad_norm": 0.20310913026332855, + "learning_rate": 0.0006, + "loss": 3.645244598388672, + "step": 2921 + }, + { + "epoch": 40.58715596330275, + "grad_norm": 0.2075812816619873, + "learning_rate": 0.0006, + "loss": 3.678452491760254, + "step": 2922 + }, + { + "epoch": 40.60113586719091, + "grad_norm": 0.20606619119644165, + "learning_rate": 0.0006, + "loss": 3.6150245666503906, + "step": 2923 + }, + { + "epoch": 40.615115771079076, + "grad_norm": 0.21511296927928925, + "learning_rate": 0.0006, + "loss": 3.6682112216949463, + "step": 2924 + }, + { + "epoch": 40.62909567496723, + "grad_norm": 0.19771839678287506, + "learning_rate": 0.0006, + "loss": 3.6639556884765625, + "step": 2925 + }, + { + "epoch": 40.643075578855395, + "grad_norm": 0.20419852435588837, + "learning_rate": 0.0006, + "loss": 3.664982318878174, + "step": 2926 + }, + { + "epoch": 40.65705548274356, + "grad_norm": 0.20119430124759674, + "learning_rate": 0.0006, + "loss": 3.661625385284424, + "step": 2927 + }, + { + "epoch": 40.671035386631715, + "grad_norm": 0.21590501070022583, + "learning_rate": 0.0006, + "loss": 3.673719644546509, + "step": 2928 + }, + { + "epoch": 40.68501529051988, + "grad_norm": 0.19165395200252533, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 2929 + }, + { + "epoch": 40.69899519440804, + "grad_norm": 0.19620473682880402, + "learning_rate": 0.0006, + "loss": 3.7008142471313477, + "step": 2930 + }, + { + "epoch": 40.7129750982962, + "grad_norm": 0.23002777993679047, + "learning_rate": 0.0006, + "loss": 3.654296875, + "step": 2931 + }, + { + "epoch": 40.72695500218436, + "grad_norm": 0.22007468342781067, + "learning_rate": 0.0006, + "loss": 3.688178539276123, + "step": 2932 + }, + { + "epoch": 40.74093490607252, + "grad_norm": 0.2030077874660492, + "learning_rate": 0.0006, + "loss": 3.6514129638671875, + "step": 2933 + }, + { + "epoch": 40.75491480996068, + "grad_norm": 0.20960700511932373, + "learning_rate": 0.0006, + "loss": 3.651864528656006, + "step": 2934 + }, + { + "epoch": 40.768894713848844, + "grad_norm": 0.2132565975189209, + "learning_rate": 0.0006, + "loss": 3.680915355682373, + "step": 2935 + }, + { + "epoch": 40.782874617737, + "grad_norm": 0.2411353588104248, + "learning_rate": 0.0006, + "loss": 3.647167682647705, + "step": 2936 + }, + { + "epoch": 40.796854521625164, + "grad_norm": 0.24621541798114777, + "learning_rate": 0.0006, + "loss": 3.6784768104553223, + "step": 2937 + }, + { + "epoch": 40.81083442551333, + "grad_norm": 0.23324407637119293, + "learning_rate": 0.0006, + "loss": 3.6855263710021973, + "step": 2938 + }, + { + "epoch": 40.824814329401484, + "grad_norm": 0.21749550104141235, + "learning_rate": 0.0006, + "loss": 3.672682285308838, + "step": 2939 + }, + { + "epoch": 40.83879423328965, + "grad_norm": 0.1957911103963852, + "learning_rate": 0.0006, + "loss": 3.635678291320801, + "step": 2940 + }, + { + "epoch": 40.8527741371778, + "grad_norm": 0.21262411773204803, + "learning_rate": 0.0006, + "loss": 3.6829824447631836, + "step": 2941 + }, + { + "epoch": 40.86675404106597, + "grad_norm": 0.19940680265426636, + "learning_rate": 0.0006, + "loss": 3.720932960510254, + "step": 2942 + }, + { + "epoch": 40.88073394495413, + "grad_norm": 0.1964999884366989, + "learning_rate": 0.0006, + "loss": 3.678405284881592, + "step": 2943 + }, + { + "epoch": 40.89471384884229, + "grad_norm": 0.21459022164344788, + "learning_rate": 0.0006, + "loss": 3.6788480281829834, + "step": 2944 + }, + { + "epoch": 40.90869375273045, + "grad_norm": 0.2251381129026413, + "learning_rate": 0.0006, + "loss": 3.679459571838379, + "step": 2945 + }, + { + "epoch": 40.92267365661861, + "grad_norm": 0.19951461255550385, + "learning_rate": 0.0006, + "loss": 3.6610841751098633, + "step": 2946 + }, + { + "epoch": 40.93665356050677, + "grad_norm": 0.2057943493127823, + "learning_rate": 0.0006, + "loss": 3.649491786956787, + "step": 2947 + }, + { + "epoch": 40.95063346439493, + "grad_norm": 0.19601917266845703, + "learning_rate": 0.0006, + "loss": 3.724552631378174, + "step": 2948 + }, + { + "epoch": 40.964613368283096, + "grad_norm": 0.20982769131660461, + "learning_rate": 0.0006, + "loss": 3.648465394973755, + "step": 2949 + }, + { + "epoch": 40.97859327217125, + "grad_norm": 0.21103954315185547, + "learning_rate": 0.0006, + "loss": 3.692239999771118, + "step": 2950 + }, + { + "epoch": 40.992573176059416, + "grad_norm": 0.2007385492324829, + "learning_rate": 0.0006, + "loss": 3.659999132156372, + "step": 2951 + }, + { + "epoch": 41.0, + "grad_norm": 0.22357431054115295, + "learning_rate": 0.0006, + "loss": 3.6461124420166016, + "step": 2952 + }, + { + "epoch": 41.0, + "eval_loss": 3.9891226291656494, + "eval_runtime": 44.65, + "eval_samples_per_second": 54.692, + "eval_steps_per_second": 3.427, + "step": 2952 + }, + { + "epoch": 41.01397990388816, + "grad_norm": 0.20387817919254303, + "learning_rate": 0.0006, + "loss": 3.643923282623291, + "step": 2953 + }, + { + "epoch": 41.02795980777632, + "grad_norm": 0.1988423764705658, + "learning_rate": 0.0006, + "loss": 3.6152570247650146, + "step": 2954 + }, + { + "epoch": 41.04193971166448, + "grad_norm": 0.19998641312122345, + "learning_rate": 0.0006, + "loss": 3.667520523071289, + "step": 2955 + }, + { + "epoch": 41.05591961555265, + "grad_norm": 0.18347714841365814, + "learning_rate": 0.0006, + "loss": 3.6289002895355225, + "step": 2956 + }, + { + "epoch": 41.0698995194408, + "grad_norm": 0.21235640347003937, + "learning_rate": 0.0006, + "loss": 3.6422951221466064, + "step": 2957 + }, + { + "epoch": 41.083879423328966, + "grad_norm": 0.1990172415971756, + "learning_rate": 0.0006, + "loss": 3.625697135925293, + "step": 2958 + }, + { + "epoch": 41.09785932721712, + "grad_norm": 0.18313643336296082, + "learning_rate": 0.0006, + "loss": 3.672356605529785, + "step": 2959 + }, + { + "epoch": 41.111839231105286, + "grad_norm": 0.17956401407718658, + "learning_rate": 0.0006, + "loss": 3.6093602180480957, + "step": 2960 + }, + { + "epoch": 41.12581913499345, + "grad_norm": 0.19487550854682922, + "learning_rate": 0.0006, + "loss": 3.6004128456115723, + "step": 2961 + }, + { + "epoch": 41.139799038881605, + "grad_norm": 0.2117495834827423, + "learning_rate": 0.0006, + "loss": 3.6468565464019775, + "step": 2962 + }, + { + "epoch": 41.15377894276977, + "grad_norm": 0.20602662861347198, + "learning_rate": 0.0006, + "loss": 3.6299140453338623, + "step": 2963 + }, + { + "epoch": 41.16775884665793, + "grad_norm": 0.21859265863895416, + "learning_rate": 0.0006, + "loss": 3.630052328109741, + "step": 2964 + }, + { + "epoch": 41.18173875054609, + "grad_norm": 0.22684140503406525, + "learning_rate": 0.0006, + "loss": 3.5995004177093506, + "step": 2965 + }, + { + "epoch": 41.19571865443425, + "grad_norm": 0.25682681798934937, + "learning_rate": 0.0006, + "loss": 3.613131523132324, + "step": 2966 + }, + { + "epoch": 41.20969855832241, + "grad_norm": 0.2508181631565094, + "learning_rate": 0.0006, + "loss": 3.644259452819824, + "step": 2967 + }, + { + "epoch": 41.22367846221057, + "grad_norm": 0.24200427532196045, + "learning_rate": 0.0006, + "loss": 3.6651816368103027, + "step": 2968 + }, + { + "epoch": 41.237658366098735, + "grad_norm": 0.21753790974617004, + "learning_rate": 0.0006, + "loss": 3.686199188232422, + "step": 2969 + }, + { + "epoch": 41.25163826998689, + "grad_norm": 0.19811955094337463, + "learning_rate": 0.0006, + "loss": 3.63014817237854, + "step": 2970 + }, + { + "epoch": 41.265618173875055, + "grad_norm": 0.19316327571868896, + "learning_rate": 0.0006, + "loss": 3.6532740592956543, + "step": 2971 + }, + { + "epoch": 41.27959807776322, + "grad_norm": 0.21440976858139038, + "learning_rate": 0.0006, + "loss": 3.6546850204467773, + "step": 2972 + }, + { + "epoch": 41.293577981651374, + "grad_norm": 0.2732681334018707, + "learning_rate": 0.0006, + "loss": 3.6135244369506836, + "step": 2973 + }, + { + "epoch": 41.30755788553954, + "grad_norm": 0.2588619589805603, + "learning_rate": 0.0006, + "loss": 3.657963275909424, + "step": 2974 + }, + { + "epoch": 41.3215377894277, + "grad_norm": 0.20054970681667328, + "learning_rate": 0.0006, + "loss": 3.6391024589538574, + "step": 2975 + }, + { + "epoch": 41.33551769331586, + "grad_norm": 0.23703549802303314, + "learning_rate": 0.0006, + "loss": 3.6609978675842285, + "step": 2976 + }, + { + "epoch": 41.34949759720402, + "grad_norm": 0.24222144484519958, + "learning_rate": 0.0006, + "loss": 3.659271478652954, + "step": 2977 + }, + { + "epoch": 41.36347750109218, + "grad_norm": 0.2228497713804245, + "learning_rate": 0.0006, + "loss": 3.607358455657959, + "step": 2978 + }, + { + "epoch": 41.37745740498034, + "grad_norm": 0.22105038166046143, + "learning_rate": 0.0006, + "loss": 3.64198899269104, + "step": 2979 + }, + { + "epoch": 41.391437308868504, + "grad_norm": 0.23753555119037628, + "learning_rate": 0.0006, + "loss": 3.63116455078125, + "step": 2980 + }, + { + "epoch": 41.40541721275666, + "grad_norm": 0.24492689967155457, + "learning_rate": 0.0006, + "loss": 3.636122465133667, + "step": 2981 + }, + { + "epoch": 41.419397116644824, + "grad_norm": 0.20610782504081726, + "learning_rate": 0.0006, + "loss": 3.656487226486206, + "step": 2982 + }, + { + "epoch": 41.43337702053299, + "grad_norm": 0.20781412720680237, + "learning_rate": 0.0006, + "loss": 3.669196605682373, + "step": 2983 + }, + { + "epoch": 41.44735692442114, + "grad_norm": 0.23892036080360413, + "learning_rate": 0.0006, + "loss": 3.6345765590667725, + "step": 2984 + }, + { + "epoch": 41.46133682830931, + "grad_norm": 0.2477712333202362, + "learning_rate": 0.0006, + "loss": 3.6599812507629395, + "step": 2985 + }, + { + "epoch": 41.47531673219746, + "grad_norm": 0.25314703583717346, + "learning_rate": 0.0006, + "loss": 3.6737258434295654, + "step": 2986 + }, + { + "epoch": 41.489296636085626, + "grad_norm": 0.2386070191860199, + "learning_rate": 0.0006, + "loss": 3.666586399078369, + "step": 2987 + }, + { + "epoch": 41.50327653997379, + "grad_norm": 0.27259722352027893, + "learning_rate": 0.0006, + "loss": 3.658761501312256, + "step": 2988 + }, + { + "epoch": 41.517256443861946, + "grad_norm": 0.3312860429286957, + "learning_rate": 0.0006, + "loss": 3.629699230194092, + "step": 2989 + }, + { + "epoch": 41.53123634775011, + "grad_norm": 0.3321581780910492, + "learning_rate": 0.0006, + "loss": 3.66628360748291, + "step": 2990 + }, + { + "epoch": 41.54521625163827, + "grad_norm": 0.2850016951560974, + "learning_rate": 0.0006, + "loss": 3.690005302429199, + "step": 2991 + }, + { + "epoch": 41.55919615552643, + "grad_norm": 0.2544100880622864, + "learning_rate": 0.0006, + "loss": 3.6554486751556396, + "step": 2992 + }, + { + "epoch": 41.57317605941459, + "grad_norm": 0.28541380167007446, + "learning_rate": 0.0006, + "loss": 3.672952175140381, + "step": 2993 + }, + { + "epoch": 41.58715596330275, + "grad_norm": 0.2909766435623169, + "learning_rate": 0.0006, + "loss": 3.6649627685546875, + "step": 2994 + }, + { + "epoch": 41.60113586719091, + "grad_norm": 0.26089969277381897, + "learning_rate": 0.0006, + "loss": 3.6512341499328613, + "step": 2995 + }, + { + "epoch": 41.615115771079076, + "grad_norm": 0.21815894544124603, + "learning_rate": 0.0006, + "loss": 3.612436056137085, + "step": 2996 + }, + { + "epoch": 41.62909567496723, + "grad_norm": 0.20712246000766754, + "learning_rate": 0.0006, + "loss": 3.6482479572296143, + "step": 2997 + }, + { + "epoch": 41.643075578855395, + "grad_norm": 0.23280103504657745, + "learning_rate": 0.0006, + "loss": 3.6648616790771484, + "step": 2998 + }, + { + "epoch": 41.65705548274356, + "grad_norm": 0.21623823046684265, + "learning_rate": 0.0006, + "loss": 3.6714487075805664, + "step": 2999 + }, + { + "epoch": 41.671035386631715, + "grad_norm": 0.2081632912158966, + "learning_rate": 0.0006, + "loss": 3.693014144897461, + "step": 3000 + }, + { + "epoch": 41.68501529051988, + "grad_norm": 0.23109425604343414, + "learning_rate": 0.0006, + "loss": 3.667262554168701, + "step": 3001 + }, + { + "epoch": 41.69899519440804, + "grad_norm": 0.2304934561252594, + "learning_rate": 0.0006, + "loss": 3.666405439376831, + "step": 3002 + }, + { + "epoch": 41.7129750982962, + "grad_norm": 0.23132432997226715, + "learning_rate": 0.0006, + "loss": 3.690964698791504, + "step": 3003 + }, + { + "epoch": 41.72695500218436, + "grad_norm": 0.2085159569978714, + "learning_rate": 0.0006, + "loss": 3.6620168685913086, + "step": 3004 + }, + { + "epoch": 41.74093490607252, + "grad_norm": 0.1919657438993454, + "learning_rate": 0.0006, + "loss": 3.67447566986084, + "step": 3005 + }, + { + "epoch": 41.75491480996068, + "grad_norm": 0.20189036428928375, + "learning_rate": 0.0006, + "loss": 3.6434998512268066, + "step": 3006 + }, + { + "epoch": 41.768894713848844, + "grad_norm": 0.23530980944633484, + "learning_rate": 0.0006, + "loss": 3.644280433654785, + "step": 3007 + }, + { + "epoch": 41.782874617737, + "grad_norm": 0.2550027370452881, + "learning_rate": 0.0006, + "loss": 3.6686060428619385, + "step": 3008 + }, + { + "epoch": 41.796854521625164, + "grad_norm": 0.2285512536764145, + "learning_rate": 0.0006, + "loss": 3.7013134956359863, + "step": 3009 + }, + { + "epoch": 41.81083442551333, + "grad_norm": 0.20538675785064697, + "learning_rate": 0.0006, + "loss": 3.6568830013275146, + "step": 3010 + }, + { + "epoch": 41.824814329401484, + "grad_norm": 0.2007976472377777, + "learning_rate": 0.0006, + "loss": 3.680250883102417, + "step": 3011 + }, + { + "epoch": 41.83879423328965, + "grad_norm": 0.20060500502586365, + "learning_rate": 0.0006, + "loss": 3.6565070152282715, + "step": 3012 + }, + { + "epoch": 41.8527741371778, + "grad_norm": 0.21055014431476593, + "learning_rate": 0.0006, + "loss": 3.661667823791504, + "step": 3013 + }, + { + "epoch": 41.86675404106597, + "grad_norm": 0.2201126217842102, + "learning_rate": 0.0006, + "loss": 3.650052070617676, + "step": 3014 + }, + { + "epoch": 41.88073394495413, + "grad_norm": 0.20397843420505524, + "learning_rate": 0.0006, + "loss": 3.6535415649414062, + "step": 3015 + }, + { + "epoch": 41.89471384884229, + "grad_norm": 0.1993463635444641, + "learning_rate": 0.0006, + "loss": 3.665696144104004, + "step": 3016 + }, + { + "epoch": 41.90869375273045, + "grad_norm": 0.20448797941207886, + "learning_rate": 0.0006, + "loss": 3.6448118686676025, + "step": 3017 + }, + { + "epoch": 41.92267365661861, + "grad_norm": 0.2064918726682663, + "learning_rate": 0.0006, + "loss": 3.6881537437438965, + "step": 3018 + }, + { + "epoch": 41.93665356050677, + "grad_norm": 0.20554372668266296, + "learning_rate": 0.0006, + "loss": 3.688559055328369, + "step": 3019 + }, + { + "epoch": 41.95063346439493, + "grad_norm": 0.1862783133983612, + "learning_rate": 0.0006, + "loss": 3.6713812351226807, + "step": 3020 + }, + { + "epoch": 41.964613368283096, + "grad_norm": 0.18139860033988953, + "learning_rate": 0.0006, + "loss": 3.6612548828125, + "step": 3021 + }, + { + "epoch": 41.97859327217125, + "grad_norm": 0.1844220608472824, + "learning_rate": 0.0006, + "loss": 3.641725540161133, + "step": 3022 + }, + { + "epoch": 41.992573176059416, + "grad_norm": 0.1885213702917099, + "learning_rate": 0.0006, + "loss": 3.663257122039795, + "step": 3023 + }, + { + "epoch": 42.0, + "grad_norm": 0.2250746339559555, + "learning_rate": 0.0006, + "loss": 3.6479320526123047, + "step": 3024 + }, + { + "epoch": 42.0, + "eval_loss": 3.993955135345459, + "eval_runtime": 44.4709, + "eval_samples_per_second": 54.912, + "eval_steps_per_second": 3.44, + "step": 3024 + }, + { + "epoch": 42.01397990388816, + "grad_norm": 0.21096517145633698, + "learning_rate": 0.0006, + "loss": 3.6729278564453125, + "step": 3025 + }, + { + "epoch": 42.02795980777632, + "grad_norm": 0.2106277495622635, + "learning_rate": 0.0006, + "loss": 3.629892349243164, + "step": 3026 + }, + { + "epoch": 42.04193971166448, + "grad_norm": 0.2673060894012451, + "learning_rate": 0.0006, + "loss": 3.643604040145874, + "step": 3027 + }, + { + "epoch": 42.05591961555265, + "grad_norm": 0.28180691599845886, + "learning_rate": 0.0006, + "loss": 3.596560478210449, + "step": 3028 + }, + { + "epoch": 42.0698995194408, + "grad_norm": 0.25607243180274963, + "learning_rate": 0.0006, + "loss": 3.597935199737549, + "step": 3029 + }, + { + "epoch": 42.083879423328966, + "grad_norm": 0.22120746970176697, + "learning_rate": 0.0006, + "loss": 3.6219305992126465, + "step": 3030 + }, + { + "epoch": 42.09785932721712, + "grad_norm": 0.2164907306432724, + "learning_rate": 0.0006, + "loss": 3.6220779418945312, + "step": 3031 + }, + { + "epoch": 42.111839231105286, + "grad_norm": 0.23800921440124512, + "learning_rate": 0.0006, + "loss": 3.63372540473938, + "step": 3032 + }, + { + "epoch": 42.12581913499345, + "grad_norm": 0.21812695264816284, + "learning_rate": 0.0006, + "loss": 3.636105537414551, + "step": 3033 + }, + { + "epoch": 42.139799038881605, + "grad_norm": 0.2027447372674942, + "learning_rate": 0.0006, + "loss": 3.6167502403259277, + "step": 3034 + }, + { + "epoch": 42.15377894276977, + "grad_norm": 0.20157714188098907, + "learning_rate": 0.0006, + "loss": 3.6141409873962402, + "step": 3035 + }, + { + "epoch": 42.16775884665793, + "grad_norm": 0.20780996978282928, + "learning_rate": 0.0006, + "loss": 3.6323471069335938, + "step": 3036 + }, + { + "epoch": 42.18173875054609, + "grad_norm": 0.20025081932544708, + "learning_rate": 0.0006, + "loss": 3.625446081161499, + "step": 3037 + }, + { + "epoch": 42.19571865443425, + "grad_norm": 0.20019082725048065, + "learning_rate": 0.0006, + "loss": 3.631418228149414, + "step": 3038 + }, + { + "epoch": 42.20969855832241, + "grad_norm": 0.21194526553153992, + "learning_rate": 0.0006, + "loss": 3.6180832386016846, + "step": 3039 + }, + { + "epoch": 42.22367846221057, + "grad_norm": 0.2016245573759079, + "learning_rate": 0.0006, + "loss": 3.6388602256774902, + "step": 3040 + }, + { + "epoch": 42.237658366098735, + "grad_norm": 0.1892252415418625, + "learning_rate": 0.0006, + "loss": 3.6086854934692383, + "step": 3041 + }, + { + "epoch": 42.25163826998689, + "grad_norm": 0.1878061145544052, + "learning_rate": 0.0006, + "loss": 3.599428176879883, + "step": 3042 + }, + { + "epoch": 42.265618173875055, + "grad_norm": 0.20258742570877075, + "learning_rate": 0.0006, + "loss": 3.6177172660827637, + "step": 3043 + }, + { + "epoch": 42.27959807776322, + "grad_norm": 0.2114444226026535, + "learning_rate": 0.0006, + "loss": 3.641916275024414, + "step": 3044 + }, + { + "epoch": 42.293577981651374, + "grad_norm": 0.19873645901679993, + "learning_rate": 0.0006, + "loss": 3.6585676670074463, + "step": 3045 + }, + { + "epoch": 42.30755788553954, + "grad_norm": 0.20361217856407166, + "learning_rate": 0.0006, + "loss": 3.648475170135498, + "step": 3046 + }, + { + "epoch": 42.3215377894277, + "grad_norm": 0.20227114856243134, + "learning_rate": 0.0006, + "loss": 3.63625431060791, + "step": 3047 + }, + { + "epoch": 42.33551769331586, + "grad_norm": 0.18246233463287354, + "learning_rate": 0.0006, + "loss": 3.6380200386047363, + "step": 3048 + }, + { + "epoch": 42.34949759720402, + "grad_norm": 0.17944976687431335, + "learning_rate": 0.0006, + "loss": 3.6325912475585938, + "step": 3049 + }, + { + "epoch": 42.36347750109218, + "grad_norm": 0.188584566116333, + "learning_rate": 0.0006, + "loss": 3.6418886184692383, + "step": 3050 + }, + { + "epoch": 42.37745740498034, + "grad_norm": 0.1917790323495865, + "learning_rate": 0.0006, + "loss": 3.664421558380127, + "step": 3051 + }, + { + "epoch": 42.391437308868504, + "grad_norm": 0.175637349486351, + "learning_rate": 0.0006, + "loss": 3.641819953918457, + "step": 3052 + }, + { + "epoch": 42.40541721275666, + "grad_norm": 0.18751518428325653, + "learning_rate": 0.0006, + "loss": 3.646697998046875, + "step": 3053 + }, + { + "epoch": 42.419397116644824, + "grad_norm": 0.1805887520313263, + "learning_rate": 0.0006, + "loss": 3.637866735458374, + "step": 3054 + }, + { + "epoch": 42.43337702053299, + "grad_norm": 0.19680845737457275, + "learning_rate": 0.0006, + "loss": 3.602511405944824, + "step": 3055 + }, + { + "epoch": 42.44735692442114, + "grad_norm": 0.20605766773223877, + "learning_rate": 0.0006, + "loss": 3.6472771167755127, + "step": 3056 + }, + { + "epoch": 42.46133682830931, + "grad_norm": 0.18083851039409637, + "learning_rate": 0.0006, + "loss": 3.6672325134277344, + "step": 3057 + }, + { + "epoch": 42.47531673219746, + "grad_norm": 0.19665084779262543, + "learning_rate": 0.0006, + "loss": 3.625300884246826, + "step": 3058 + }, + { + "epoch": 42.489296636085626, + "grad_norm": 0.22506165504455566, + "learning_rate": 0.0006, + "loss": 3.592872142791748, + "step": 3059 + }, + { + "epoch": 42.50327653997379, + "grad_norm": 0.2051578164100647, + "learning_rate": 0.0006, + "loss": 3.6302249431610107, + "step": 3060 + }, + { + "epoch": 42.517256443861946, + "grad_norm": 0.18957172334194183, + "learning_rate": 0.0006, + "loss": 3.6277074813842773, + "step": 3061 + }, + { + "epoch": 42.53123634775011, + "grad_norm": 0.21467208862304688, + "learning_rate": 0.0006, + "loss": 3.6121392250061035, + "step": 3062 + }, + { + "epoch": 42.54521625163827, + "grad_norm": 0.21618402004241943, + "learning_rate": 0.0006, + "loss": 3.664738655090332, + "step": 3063 + }, + { + "epoch": 42.55919615552643, + "grad_norm": 0.2259770780801773, + "learning_rate": 0.0006, + "loss": 3.652042865753174, + "step": 3064 + }, + { + "epoch": 42.57317605941459, + "grad_norm": 0.22667232155799866, + "learning_rate": 0.0006, + "loss": 3.6552934646606445, + "step": 3065 + }, + { + "epoch": 42.58715596330275, + "grad_norm": 0.21405228972434998, + "learning_rate": 0.0006, + "loss": 3.644043445587158, + "step": 3066 + }, + { + "epoch": 42.60113586719091, + "grad_norm": 0.20855450630187988, + "learning_rate": 0.0006, + "loss": 3.6534876823425293, + "step": 3067 + }, + { + "epoch": 42.615115771079076, + "grad_norm": 0.22474415600299835, + "learning_rate": 0.0006, + "loss": 3.656677484512329, + "step": 3068 + }, + { + "epoch": 42.62909567496723, + "grad_norm": 0.23401428759098053, + "learning_rate": 0.0006, + "loss": 3.6788997650146484, + "step": 3069 + }, + { + "epoch": 42.643075578855395, + "grad_norm": 0.21567967534065247, + "learning_rate": 0.0006, + "loss": 3.675379753112793, + "step": 3070 + }, + { + "epoch": 42.65705548274356, + "grad_norm": 0.21704941987991333, + "learning_rate": 0.0006, + "loss": 3.630707263946533, + "step": 3071 + }, + { + "epoch": 42.671035386631715, + "grad_norm": 0.2718963921070099, + "learning_rate": 0.0006, + "loss": 3.6653294563293457, + "step": 3072 + }, + { + "epoch": 42.68501529051988, + "grad_norm": 0.30198901891708374, + "learning_rate": 0.0006, + "loss": 3.6761326789855957, + "step": 3073 + }, + { + "epoch": 42.69899519440804, + "grad_norm": 0.27593618631362915, + "learning_rate": 0.0006, + "loss": 3.6610732078552246, + "step": 3074 + }, + { + "epoch": 42.7129750982962, + "grad_norm": 0.22495242953300476, + "learning_rate": 0.0006, + "loss": 3.656907320022583, + "step": 3075 + }, + { + "epoch": 42.72695500218436, + "grad_norm": 0.19872353971004486, + "learning_rate": 0.0006, + "loss": 3.6611597537994385, + "step": 3076 + }, + { + "epoch": 42.74093490607252, + "grad_norm": 0.21527111530303955, + "learning_rate": 0.0006, + "loss": 3.676821708679199, + "step": 3077 + }, + { + "epoch": 42.75491480996068, + "grad_norm": 0.22314463555812836, + "learning_rate": 0.0006, + "loss": 3.629460334777832, + "step": 3078 + }, + { + "epoch": 42.768894713848844, + "grad_norm": 0.23461024463176727, + "learning_rate": 0.0006, + "loss": 3.665390968322754, + "step": 3079 + }, + { + "epoch": 42.782874617737, + "grad_norm": 0.2582414448261261, + "learning_rate": 0.0006, + "loss": 3.6420979499816895, + "step": 3080 + }, + { + "epoch": 42.796854521625164, + "grad_norm": 0.2505052983760834, + "learning_rate": 0.0006, + "loss": 3.67236328125, + "step": 3081 + }, + { + "epoch": 42.81083442551333, + "grad_norm": 0.22617632150650024, + "learning_rate": 0.0006, + "loss": 3.654897689819336, + "step": 3082 + }, + { + "epoch": 42.824814329401484, + "grad_norm": 0.2340085208415985, + "learning_rate": 0.0006, + "loss": 3.6423635482788086, + "step": 3083 + }, + { + "epoch": 42.83879423328965, + "grad_norm": 0.26765671372413635, + "learning_rate": 0.0006, + "loss": 3.622769832611084, + "step": 3084 + }, + { + "epoch": 42.8527741371778, + "grad_norm": 0.29490381479263306, + "learning_rate": 0.0006, + "loss": 3.656053066253662, + "step": 3085 + }, + { + "epoch": 42.86675404106597, + "grad_norm": 0.29776132106781006, + "learning_rate": 0.0006, + "loss": 3.6454644203186035, + "step": 3086 + }, + { + "epoch": 42.88073394495413, + "grad_norm": 0.23994849622249603, + "learning_rate": 0.0006, + "loss": 3.674665927886963, + "step": 3087 + }, + { + "epoch": 42.89471384884229, + "grad_norm": 0.21456265449523926, + "learning_rate": 0.0006, + "loss": 3.670175790786743, + "step": 3088 + }, + { + "epoch": 42.90869375273045, + "grad_norm": 0.25727778673171997, + "learning_rate": 0.0006, + "loss": 3.6425390243530273, + "step": 3089 + }, + { + "epoch": 42.92267365661861, + "grad_norm": 0.30310627818107605, + "learning_rate": 0.0006, + "loss": 3.68511962890625, + "step": 3090 + }, + { + "epoch": 42.93665356050677, + "grad_norm": 0.2792291045188904, + "learning_rate": 0.0006, + "loss": 3.681732654571533, + "step": 3091 + }, + { + "epoch": 42.95063346439493, + "grad_norm": 0.23614276945590973, + "learning_rate": 0.0006, + "loss": 3.6417222023010254, + "step": 3092 + }, + { + "epoch": 42.964613368283096, + "grad_norm": 0.23602448403835297, + "learning_rate": 0.0006, + "loss": 3.6602869033813477, + "step": 3093 + }, + { + "epoch": 42.97859327217125, + "grad_norm": 0.21968287229537964, + "learning_rate": 0.0006, + "loss": 3.6618118286132812, + "step": 3094 + }, + { + "epoch": 42.992573176059416, + "grad_norm": 0.2177523374557495, + "learning_rate": 0.0006, + "loss": 3.666904926300049, + "step": 3095 + }, + { + "epoch": 43.0, + "grad_norm": 0.23960894346237183, + "learning_rate": 0.0006, + "loss": 3.710965633392334, + "step": 3096 + }, + { + "epoch": 43.0, + "eval_loss": 3.977475166320801, + "eval_runtime": 44.5209, + "eval_samples_per_second": 54.851, + "eval_steps_per_second": 3.437, + "step": 3096 + }, + { + "epoch": 43.01397990388816, + "grad_norm": 0.24180234968662262, + "learning_rate": 0.0006, + "loss": 3.5949223041534424, + "step": 3097 + }, + { + "epoch": 43.02795980777632, + "grad_norm": 0.3331127166748047, + "learning_rate": 0.0006, + "loss": 3.625802755355835, + "step": 3098 + }, + { + "epoch": 43.04193971166448, + "grad_norm": 0.38338130712509155, + "learning_rate": 0.0006, + "loss": 3.6390271186828613, + "step": 3099 + }, + { + "epoch": 43.05591961555265, + "grad_norm": 0.32292598485946655, + "learning_rate": 0.0006, + "loss": 3.630621910095215, + "step": 3100 + }, + { + "epoch": 43.0698995194408, + "grad_norm": 0.24179677665233612, + "learning_rate": 0.0006, + "loss": 3.6124491691589355, + "step": 3101 + }, + { + "epoch": 43.083879423328966, + "grad_norm": 0.2622842788696289, + "learning_rate": 0.0006, + "loss": 3.6207399368286133, + "step": 3102 + }, + { + "epoch": 43.09785932721712, + "grad_norm": 0.264297217130661, + "learning_rate": 0.0006, + "loss": 3.637218475341797, + "step": 3103 + }, + { + "epoch": 43.111839231105286, + "grad_norm": 0.25815117359161377, + "learning_rate": 0.0006, + "loss": 3.614841938018799, + "step": 3104 + }, + { + "epoch": 43.12581913499345, + "grad_norm": 0.2209406942129135, + "learning_rate": 0.0006, + "loss": 3.604722738265991, + "step": 3105 + }, + { + "epoch": 43.139799038881605, + "grad_norm": 0.22333410382270813, + "learning_rate": 0.0006, + "loss": 3.6388449668884277, + "step": 3106 + }, + { + "epoch": 43.15377894276977, + "grad_norm": 0.2194417119026184, + "learning_rate": 0.0006, + "loss": 3.611644744873047, + "step": 3107 + }, + { + "epoch": 43.16775884665793, + "grad_norm": 0.21270349621772766, + "learning_rate": 0.0006, + "loss": 3.6180214881896973, + "step": 3108 + }, + { + "epoch": 43.18173875054609, + "grad_norm": 0.21358032524585724, + "learning_rate": 0.0006, + "loss": 3.646512985229492, + "step": 3109 + }, + { + "epoch": 43.19571865443425, + "grad_norm": 0.2180788666009903, + "learning_rate": 0.0006, + "loss": 3.641981363296509, + "step": 3110 + }, + { + "epoch": 43.20969855832241, + "grad_norm": 0.21979685127735138, + "learning_rate": 0.0006, + "loss": 3.6251654624938965, + "step": 3111 + }, + { + "epoch": 43.22367846221057, + "grad_norm": 0.2072533220052719, + "learning_rate": 0.0006, + "loss": 3.665372371673584, + "step": 3112 + }, + { + "epoch": 43.237658366098735, + "grad_norm": 0.2085742950439453, + "learning_rate": 0.0006, + "loss": 3.647730827331543, + "step": 3113 + }, + { + "epoch": 43.25163826998689, + "grad_norm": 0.1934993416070938, + "learning_rate": 0.0006, + "loss": 3.6296567916870117, + "step": 3114 + }, + { + "epoch": 43.265618173875055, + "grad_norm": 0.1954783797264099, + "learning_rate": 0.0006, + "loss": 3.6412858963012695, + "step": 3115 + }, + { + "epoch": 43.27959807776322, + "grad_norm": 0.1932750642299652, + "learning_rate": 0.0006, + "loss": 3.6246860027313232, + "step": 3116 + }, + { + "epoch": 43.293577981651374, + "grad_norm": 0.19765302538871765, + "learning_rate": 0.0006, + "loss": 3.618922710418701, + "step": 3117 + }, + { + "epoch": 43.30755788553954, + "grad_norm": 0.1987425684928894, + "learning_rate": 0.0006, + "loss": 3.633185863494873, + "step": 3118 + }, + { + "epoch": 43.3215377894277, + "grad_norm": 0.1894739419221878, + "learning_rate": 0.0006, + "loss": 3.595709800720215, + "step": 3119 + }, + { + "epoch": 43.33551769331586, + "grad_norm": 0.19455872476100922, + "learning_rate": 0.0006, + "loss": 3.6309051513671875, + "step": 3120 + }, + { + "epoch": 43.34949759720402, + "grad_norm": 0.21448275446891785, + "learning_rate": 0.0006, + "loss": 3.6425981521606445, + "step": 3121 + }, + { + "epoch": 43.36347750109218, + "grad_norm": 0.24527893960475922, + "learning_rate": 0.0006, + "loss": 3.6497793197631836, + "step": 3122 + }, + { + "epoch": 43.37745740498034, + "grad_norm": 0.253231942653656, + "learning_rate": 0.0006, + "loss": 3.644453525543213, + "step": 3123 + }, + { + "epoch": 43.391437308868504, + "grad_norm": 0.2048978954553604, + "learning_rate": 0.0006, + "loss": 3.5963876247406006, + "step": 3124 + }, + { + "epoch": 43.40541721275666, + "grad_norm": 0.19951528310775757, + "learning_rate": 0.0006, + "loss": 3.6274406909942627, + "step": 3125 + }, + { + "epoch": 43.419397116644824, + "grad_norm": 0.2293875813484192, + "learning_rate": 0.0006, + "loss": 3.6482725143432617, + "step": 3126 + }, + { + "epoch": 43.43337702053299, + "grad_norm": 0.22379456460475922, + "learning_rate": 0.0006, + "loss": 3.6466073989868164, + "step": 3127 + }, + { + "epoch": 43.44735692442114, + "grad_norm": 0.2275441288948059, + "learning_rate": 0.0006, + "loss": 3.6529078483581543, + "step": 3128 + }, + { + "epoch": 43.46133682830931, + "grad_norm": 0.23014242947101593, + "learning_rate": 0.0006, + "loss": 3.6084837913513184, + "step": 3129 + }, + { + "epoch": 43.47531673219746, + "grad_norm": 0.22280924022197723, + "learning_rate": 0.0006, + "loss": 3.611320734024048, + "step": 3130 + }, + { + "epoch": 43.489296636085626, + "grad_norm": 0.19498756527900696, + "learning_rate": 0.0006, + "loss": 3.630185604095459, + "step": 3131 + }, + { + "epoch": 43.50327653997379, + "grad_norm": 0.21357767283916473, + "learning_rate": 0.0006, + "loss": 3.6509933471679688, + "step": 3132 + }, + { + "epoch": 43.517256443861946, + "grad_norm": 0.21775896847248077, + "learning_rate": 0.0006, + "loss": 3.635112762451172, + "step": 3133 + }, + { + "epoch": 43.53123634775011, + "grad_norm": 0.2035629004240036, + "learning_rate": 0.0006, + "loss": 3.658327102661133, + "step": 3134 + }, + { + "epoch": 43.54521625163827, + "grad_norm": 0.20083840191364288, + "learning_rate": 0.0006, + "loss": 3.632441997528076, + "step": 3135 + }, + { + "epoch": 43.55919615552643, + "grad_norm": 0.1922001987695694, + "learning_rate": 0.0006, + "loss": 3.6417734622955322, + "step": 3136 + }, + { + "epoch": 43.57317605941459, + "grad_norm": 0.21049264073371887, + "learning_rate": 0.0006, + "loss": 3.671274423599243, + "step": 3137 + }, + { + "epoch": 43.58715596330275, + "grad_norm": 0.21432001888751984, + "learning_rate": 0.0006, + "loss": 3.6216118335723877, + "step": 3138 + }, + { + "epoch": 43.60113586719091, + "grad_norm": 0.25448811054229736, + "learning_rate": 0.0006, + "loss": 3.658283233642578, + "step": 3139 + }, + { + "epoch": 43.615115771079076, + "grad_norm": 0.24313904345035553, + "learning_rate": 0.0006, + "loss": 3.6447594165802, + "step": 3140 + }, + { + "epoch": 43.62909567496723, + "grad_norm": 0.2332659363746643, + "learning_rate": 0.0006, + "loss": 3.625528573989868, + "step": 3141 + }, + { + "epoch": 43.643075578855395, + "grad_norm": 0.23222137987613678, + "learning_rate": 0.0006, + "loss": 3.6524429321289062, + "step": 3142 + }, + { + "epoch": 43.65705548274356, + "grad_norm": 0.2147051990032196, + "learning_rate": 0.0006, + "loss": 3.6517302989959717, + "step": 3143 + }, + { + "epoch": 43.671035386631715, + "grad_norm": 0.2464994341135025, + "learning_rate": 0.0006, + "loss": 3.654947519302368, + "step": 3144 + }, + { + "epoch": 43.68501529051988, + "grad_norm": 0.2365981936454773, + "learning_rate": 0.0006, + "loss": 3.638695240020752, + "step": 3145 + }, + { + "epoch": 43.69899519440804, + "grad_norm": 0.2325262874364853, + "learning_rate": 0.0006, + "loss": 3.6496055126190186, + "step": 3146 + }, + { + "epoch": 43.7129750982962, + "grad_norm": 0.2196085900068283, + "learning_rate": 0.0006, + "loss": 3.6323978900909424, + "step": 3147 + }, + { + "epoch": 43.72695500218436, + "grad_norm": 0.20404237508773804, + "learning_rate": 0.0006, + "loss": 3.6572763919830322, + "step": 3148 + }, + { + "epoch": 43.74093490607252, + "grad_norm": 0.2363257110118866, + "learning_rate": 0.0006, + "loss": 3.6347732543945312, + "step": 3149 + }, + { + "epoch": 43.75491480996068, + "grad_norm": 0.23671524226665497, + "learning_rate": 0.0006, + "loss": 3.650017023086548, + "step": 3150 + }, + { + "epoch": 43.768894713848844, + "grad_norm": 0.20892305672168732, + "learning_rate": 0.0006, + "loss": 3.638185977935791, + "step": 3151 + }, + { + "epoch": 43.782874617737, + "grad_norm": 0.18670055270195007, + "learning_rate": 0.0006, + "loss": 3.6647696495056152, + "step": 3152 + }, + { + "epoch": 43.796854521625164, + "grad_norm": 0.21818184852600098, + "learning_rate": 0.0006, + "loss": 3.663623332977295, + "step": 3153 + }, + { + "epoch": 43.81083442551333, + "grad_norm": 0.23472464084625244, + "learning_rate": 0.0006, + "loss": 3.650595188140869, + "step": 3154 + }, + { + "epoch": 43.824814329401484, + "grad_norm": 0.2266419678926468, + "learning_rate": 0.0006, + "loss": 3.6362059116363525, + "step": 3155 + }, + { + "epoch": 43.83879423328965, + "grad_norm": 0.2250787913799286, + "learning_rate": 0.0006, + "loss": 3.647970199584961, + "step": 3156 + }, + { + "epoch": 43.8527741371778, + "grad_norm": 0.21493776142597198, + "learning_rate": 0.0006, + "loss": 3.6510982513427734, + "step": 3157 + }, + { + "epoch": 43.86675404106597, + "grad_norm": 0.20783160626888275, + "learning_rate": 0.0006, + "loss": 3.654845714569092, + "step": 3158 + }, + { + "epoch": 43.88073394495413, + "grad_norm": 0.2222554087638855, + "learning_rate": 0.0006, + "loss": 3.6565685272216797, + "step": 3159 + }, + { + "epoch": 43.89471384884229, + "grad_norm": 0.2148049771785736, + "learning_rate": 0.0006, + "loss": 3.630779266357422, + "step": 3160 + }, + { + "epoch": 43.90869375273045, + "grad_norm": 0.2222086787223816, + "learning_rate": 0.0006, + "loss": 3.6312813758850098, + "step": 3161 + }, + { + "epoch": 43.92267365661861, + "grad_norm": 0.24049264192581177, + "learning_rate": 0.0006, + "loss": 3.6185736656188965, + "step": 3162 + }, + { + "epoch": 43.93665356050677, + "grad_norm": 0.2228843867778778, + "learning_rate": 0.0006, + "loss": 3.595583438873291, + "step": 3163 + }, + { + "epoch": 43.95063346439493, + "grad_norm": 0.20714408159255981, + "learning_rate": 0.0006, + "loss": 3.6649322509765625, + "step": 3164 + }, + { + "epoch": 43.964613368283096, + "grad_norm": 0.2048991471529007, + "learning_rate": 0.0006, + "loss": 3.6513710021972656, + "step": 3165 + }, + { + "epoch": 43.97859327217125, + "grad_norm": 0.21874114871025085, + "learning_rate": 0.0006, + "loss": 3.6471524238586426, + "step": 3166 + }, + { + "epoch": 43.992573176059416, + "grad_norm": 0.21309879422187805, + "learning_rate": 0.0006, + "loss": 3.647021770477295, + "step": 3167 + }, + { + "epoch": 44.0, + "grad_norm": 0.23717166483402252, + "learning_rate": 0.0006, + "loss": 3.6903820037841797, + "step": 3168 + }, + { + "epoch": 44.0, + "eval_loss": 3.9844837188720703, + "eval_runtime": 44.29, + "eval_samples_per_second": 55.137, + "eval_steps_per_second": 3.455, + "step": 3168 + }, + { + "epoch": 44.01397990388816, + "grad_norm": 0.21503832936286926, + "learning_rate": 0.0006, + "loss": 3.6054744720458984, + "step": 3169 + }, + { + "epoch": 44.02795980777632, + "grad_norm": 0.2289554923772812, + "learning_rate": 0.0006, + "loss": 3.6560556888580322, + "step": 3170 + }, + { + "epoch": 44.04193971166448, + "grad_norm": 0.24250416457653046, + "learning_rate": 0.0006, + "loss": 3.611820697784424, + "step": 3171 + }, + { + "epoch": 44.05591961555265, + "grad_norm": 0.2526668310165405, + "learning_rate": 0.0006, + "loss": 3.6273183822631836, + "step": 3172 + }, + { + "epoch": 44.0698995194408, + "grad_norm": 0.26702383160591125, + "learning_rate": 0.0006, + "loss": 3.5856852531433105, + "step": 3173 + }, + { + "epoch": 44.083879423328966, + "grad_norm": 0.2715195417404175, + "learning_rate": 0.0006, + "loss": 3.631045341491699, + "step": 3174 + }, + { + "epoch": 44.09785932721712, + "grad_norm": 0.3505614995956421, + "learning_rate": 0.0006, + "loss": 3.628720760345459, + "step": 3175 + }, + { + "epoch": 44.111839231105286, + "grad_norm": 0.2760702967643738, + "learning_rate": 0.0006, + "loss": 3.6283509731292725, + "step": 3176 + }, + { + "epoch": 44.12581913499345, + "grad_norm": 0.21105222404003143, + "learning_rate": 0.0006, + "loss": 3.6495566368103027, + "step": 3177 + }, + { + "epoch": 44.139799038881605, + "grad_norm": 0.2852860987186432, + "learning_rate": 0.0006, + "loss": 3.640768527984619, + "step": 3178 + }, + { + "epoch": 44.15377894276977, + "grad_norm": 0.2941005825996399, + "learning_rate": 0.0006, + "loss": 3.6303114891052246, + "step": 3179 + }, + { + "epoch": 44.16775884665793, + "grad_norm": 0.2792299687862396, + "learning_rate": 0.0006, + "loss": 3.6053574085235596, + "step": 3180 + }, + { + "epoch": 44.18173875054609, + "grad_norm": 0.23168638348579407, + "learning_rate": 0.0006, + "loss": 3.62430477142334, + "step": 3181 + }, + { + "epoch": 44.19571865443425, + "grad_norm": 0.23713921010494232, + "learning_rate": 0.0006, + "loss": 3.601106643676758, + "step": 3182 + }, + { + "epoch": 44.20969855832241, + "grad_norm": 0.23341049253940582, + "learning_rate": 0.0006, + "loss": 3.631762742996216, + "step": 3183 + }, + { + "epoch": 44.22367846221057, + "grad_norm": 0.23094508051872253, + "learning_rate": 0.0006, + "loss": 3.586683750152588, + "step": 3184 + }, + { + "epoch": 44.237658366098735, + "grad_norm": 0.24085712432861328, + "learning_rate": 0.0006, + "loss": 3.6251423358917236, + "step": 3185 + }, + { + "epoch": 44.25163826998689, + "grad_norm": 0.24999955296516418, + "learning_rate": 0.0006, + "loss": 3.6554198265075684, + "step": 3186 + }, + { + "epoch": 44.265618173875055, + "grad_norm": 0.21759621798992157, + "learning_rate": 0.0006, + "loss": 3.6249518394470215, + "step": 3187 + }, + { + "epoch": 44.27959807776322, + "grad_norm": 0.2490139901638031, + "learning_rate": 0.0006, + "loss": 3.6163341999053955, + "step": 3188 + }, + { + "epoch": 44.293577981651374, + "grad_norm": 0.23420892655849457, + "learning_rate": 0.0006, + "loss": 3.615469455718994, + "step": 3189 + }, + { + "epoch": 44.30755788553954, + "grad_norm": 0.2292138934135437, + "learning_rate": 0.0006, + "loss": 3.6085104942321777, + "step": 3190 + }, + { + "epoch": 44.3215377894277, + "grad_norm": 0.22595474123954773, + "learning_rate": 0.0006, + "loss": 3.6317405700683594, + "step": 3191 + }, + { + "epoch": 44.33551769331586, + "grad_norm": 0.22418338060379028, + "learning_rate": 0.0006, + "loss": 3.6287777423858643, + "step": 3192 + }, + { + "epoch": 44.34949759720402, + "grad_norm": 0.2453135848045349, + "learning_rate": 0.0006, + "loss": 3.6228437423706055, + "step": 3193 + }, + { + "epoch": 44.36347750109218, + "grad_norm": 0.2627771198749542, + "learning_rate": 0.0006, + "loss": 3.6581034660339355, + "step": 3194 + }, + { + "epoch": 44.37745740498034, + "grad_norm": 0.24114494025707245, + "learning_rate": 0.0006, + "loss": 3.653505563735962, + "step": 3195 + }, + { + "epoch": 44.391437308868504, + "grad_norm": 0.2103721648454666, + "learning_rate": 0.0006, + "loss": 3.5698580741882324, + "step": 3196 + }, + { + "epoch": 44.40541721275666, + "grad_norm": 0.21172291040420532, + "learning_rate": 0.0006, + "loss": 3.573453426361084, + "step": 3197 + }, + { + "epoch": 44.419397116644824, + "grad_norm": 0.20298106968402863, + "learning_rate": 0.0006, + "loss": 3.6350207328796387, + "step": 3198 + }, + { + "epoch": 44.43337702053299, + "grad_norm": 0.2029009759426117, + "learning_rate": 0.0006, + "loss": 3.6025917530059814, + "step": 3199 + }, + { + "epoch": 44.44735692442114, + "grad_norm": 0.18960542976856232, + "learning_rate": 0.0006, + "loss": 3.625028133392334, + "step": 3200 + }, + { + "epoch": 44.46133682830931, + "grad_norm": 0.20758579671382904, + "learning_rate": 0.0006, + "loss": 3.647071123123169, + "step": 3201 + }, + { + "epoch": 44.47531673219746, + "grad_norm": 0.21896769106388092, + "learning_rate": 0.0006, + "loss": 3.6481196880340576, + "step": 3202 + }, + { + "epoch": 44.489296636085626, + "grad_norm": 0.20817387104034424, + "learning_rate": 0.0006, + "loss": 3.629366874694824, + "step": 3203 + }, + { + "epoch": 44.50327653997379, + "grad_norm": 0.2099488228559494, + "learning_rate": 0.0006, + "loss": 3.6757798194885254, + "step": 3204 + }, + { + "epoch": 44.517256443861946, + "grad_norm": 0.21376627683639526, + "learning_rate": 0.0006, + "loss": 3.638324737548828, + "step": 3205 + }, + { + "epoch": 44.53123634775011, + "grad_norm": 0.19089072942733765, + "learning_rate": 0.0006, + "loss": 3.6497435569763184, + "step": 3206 + }, + { + "epoch": 44.54521625163827, + "grad_norm": 0.20489120483398438, + "learning_rate": 0.0006, + "loss": 3.634019374847412, + "step": 3207 + }, + { + "epoch": 44.55919615552643, + "grad_norm": 0.21991780400276184, + "learning_rate": 0.0006, + "loss": 3.6255834102630615, + "step": 3208 + }, + { + "epoch": 44.57317605941459, + "grad_norm": 0.23417581617832184, + "learning_rate": 0.0006, + "loss": 3.631927728652954, + "step": 3209 + }, + { + "epoch": 44.58715596330275, + "grad_norm": 0.22819049656391144, + "learning_rate": 0.0006, + "loss": 3.640167713165283, + "step": 3210 + }, + { + "epoch": 44.60113586719091, + "grad_norm": 0.21443316340446472, + "learning_rate": 0.0006, + "loss": 3.645709991455078, + "step": 3211 + }, + { + "epoch": 44.615115771079076, + "grad_norm": 0.19252653419971466, + "learning_rate": 0.0006, + "loss": 3.591294288635254, + "step": 3212 + }, + { + "epoch": 44.62909567496723, + "grad_norm": 0.18925397098064423, + "learning_rate": 0.0006, + "loss": 3.6163625717163086, + "step": 3213 + }, + { + "epoch": 44.643075578855395, + "grad_norm": 0.21605387330055237, + "learning_rate": 0.0006, + "loss": 3.6826887130737305, + "step": 3214 + }, + { + "epoch": 44.65705548274356, + "grad_norm": 0.21301978826522827, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 3215 + }, + { + "epoch": 44.671035386631715, + "grad_norm": 0.20065832138061523, + "learning_rate": 0.0006, + "loss": 3.648879289627075, + "step": 3216 + }, + { + "epoch": 44.68501529051988, + "grad_norm": 0.21413499116897583, + "learning_rate": 0.0006, + "loss": 3.6327264308929443, + "step": 3217 + }, + { + "epoch": 44.69899519440804, + "grad_norm": 0.22769849002361298, + "learning_rate": 0.0006, + "loss": 3.6486430168151855, + "step": 3218 + }, + { + "epoch": 44.7129750982962, + "grad_norm": 0.227064847946167, + "learning_rate": 0.0006, + "loss": 3.633342981338501, + "step": 3219 + }, + { + "epoch": 44.72695500218436, + "grad_norm": 0.21335656940937042, + "learning_rate": 0.0006, + "loss": 3.648621082305908, + "step": 3220 + }, + { + "epoch": 44.74093490607252, + "grad_norm": 0.2085563838481903, + "learning_rate": 0.0006, + "loss": 3.647826671600342, + "step": 3221 + }, + { + "epoch": 44.75491480996068, + "grad_norm": 0.19203904271125793, + "learning_rate": 0.0006, + "loss": 3.6296122074127197, + "step": 3222 + }, + { + "epoch": 44.768894713848844, + "grad_norm": 0.1969112604856491, + "learning_rate": 0.0006, + "loss": 3.6477179527282715, + "step": 3223 + }, + { + "epoch": 44.782874617737, + "grad_norm": 0.21630392968654633, + "learning_rate": 0.0006, + "loss": 3.628805637359619, + "step": 3224 + }, + { + "epoch": 44.796854521625164, + "grad_norm": 0.20641647279262543, + "learning_rate": 0.0006, + "loss": 3.650993824005127, + "step": 3225 + }, + { + "epoch": 44.81083442551333, + "grad_norm": 0.1954173892736435, + "learning_rate": 0.0006, + "loss": 3.6362831592559814, + "step": 3226 + }, + { + "epoch": 44.824814329401484, + "grad_norm": 0.20479747653007507, + "learning_rate": 0.0006, + "loss": 3.6467390060424805, + "step": 3227 + }, + { + "epoch": 44.83879423328965, + "grad_norm": 0.20502690970897675, + "learning_rate": 0.0006, + "loss": 3.6260130405426025, + "step": 3228 + }, + { + "epoch": 44.8527741371778, + "grad_norm": 0.20348094403743744, + "learning_rate": 0.0006, + "loss": 3.6836767196655273, + "step": 3229 + }, + { + "epoch": 44.86675404106597, + "grad_norm": 0.18748269975185394, + "learning_rate": 0.0006, + "loss": 3.610104560852051, + "step": 3230 + }, + { + "epoch": 44.88073394495413, + "grad_norm": 0.18822219967842102, + "learning_rate": 0.0006, + "loss": 3.61354398727417, + "step": 3231 + }, + { + "epoch": 44.89471384884229, + "grad_norm": 0.20972031354904175, + "learning_rate": 0.0006, + "loss": 3.644336700439453, + "step": 3232 + }, + { + "epoch": 44.90869375273045, + "grad_norm": 0.2013155072927475, + "learning_rate": 0.0006, + "loss": 3.659287929534912, + "step": 3233 + }, + { + "epoch": 44.92267365661861, + "grad_norm": 0.2056475579738617, + "learning_rate": 0.0006, + "loss": 3.6545677185058594, + "step": 3234 + }, + { + "epoch": 44.93665356050677, + "grad_norm": 0.2104482203722, + "learning_rate": 0.0006, + "loss": 3.6094017028808594, + "step": 3235 + }, + { + "epoch": 44.95063346439493, + "grad_norm": 0.1993035078048706, + "learning_rate": 0.0006, + "loss": 3.6209053993225098, + "step": 3236 + }, + { + "epoch": 44.964613368283096, + "grad_norm": 0.1883099526166916, + "learning_rate": 0.0006, + "loss": 3.6011457443237305, + "step": 3237 + }, + { + "epoch": 44.97859327217125, + "grad_norm": 0.1927674412727356, + "learning_rate": 0.0006, + "loss": 3.606609344482422, + "step": 3238 + }, + { + "epoch": 44.992573176059416, + "grad_norm": 0.1878899335861206, + "learning_rate": 0.0006, + "loss": 3.6701109409332275, + "step": 3239 + }, + { + "epoch": 45.0, + "grad_norm": 0.2237395942211151, + "learning_rate": 0.0006, + "loss": 3.6617302894592285, + "step": 3240 + }, + { + "epoch": 45.0, + "eval_loss": 3.9812564849853516, + "eval_runtime": 44.8635, + "eval_samples_per_second": 54.432, + "eval_steps_per_second": 3.41, + "step": 3240 + }, + { + "epoch": 45.01397990388816, + "grad_norm": 0.21368487179279327, + "learning_rate": 0.0006, + "loss": 3.599107265472412, + "step": 3241 + }, + { + "epoch": 45.02795980777632, + "grad_norm": 0.2234211564064026, + "learning_rate": 0.0006, + "loss": 3.5943236351013184, + "step": 3242 + }, + { + "epoch": 45.04193971166448, + "grad_norm": 0.2222544252872467, + "learning_rate": 0.0006, + "loss": 3.6152291297912598, + "step": 3243 + }, + { + "epoch": 45.05591961555265, + "grad_norm": 0.24686792492866516, + "learning_rate": 0.0006, + "loss": 3.6006085872650146, + "step": 3244 + }, + { + "epoch": 45.0698995194408, + "grad_norm": 0.24634984135627747, + "learning_rate": 0.0006, + "loss": 3.6023471355438232, + "step": 3245 + }, + { + "epoch": 45.083879423328966, + "grad_norm": 0.2150750756263733, + "learning_rate": 0.0006, + "loss": 3.5690598487854004, + "step": 3246 + }, + { + "epoch": 45.09785932721712, + "grad_norm": 0.196721151471138, + "learning_rate": 0.0006, + "loss": 3.592653751373291, + "step": 3247 + }, + { + "epoch": 45.111839231105286, + "grad_norm": 0.21874476969242096, + "learning_rate": 0.0006, + "loss": 3.586243152618408, + "step": 3248 + }, + { + "epoch": 45.12581913499345, + "grad_norm": 0.21021611988544464, + "learning_rate": 0.0006, + "loss": 3.599384307861328, + "step": 3249 + }, + { + "epoch": 45.139799038881605, + "grad_norm": 0.19754183292388916, + "learning_rate": 0.0006, + "loss": 3.623816967010498, + "step": 3250 + }, + { + "epoch": 45.15377894276977, + "grad_norm": 0.21218672394752502, + "learning_rate": 0.0006, + "loss": 3.5901236534118652, + "step": 3251 + }, + { + "epoch": 45.16775884665793, + "grad_norm": 0.23569360375404358, + "learning_rate": 0.0006, + "loss": 3.600029945373535, + "step": 3252 + }, + { + "epoch": 45.18173875054609, + "grad_norm": 0.25429826974868774, + "learning_rate": 0.0006, + "loss": 3.607773542404175, + "step": 3253 + }, + { + "epoch": 45.19571865443425, + "grad_norm": 0.23416805267333984, + "learning_rate": 0.0006, + "loss": 3.63248348236084, + "step": 3254 + }, + { + "epoch": 45.20969855832241, + "grad_norm": 0.20821864902973175, + "learning_rate": 0.0006, + "loss": 3.641927719116211, + "step": 3255 + }, + { + "epoch": 45.22367846221057, + "grad_norm": 0.21849380433559418, + "learning_rate": 0.0006, + "loss": 3.665098190307617, + "step": 3256 + }, + { + "epoch": 45.237658366098735, + "grad_norm": 0.22939491271972656, + "learning_rate": 0.0006, + "loss": 3.6106104850769043, + "step": 3257 + }, + { + "epoch": 45.25163826998689, + "grad_norm": 0.24144501984119415, + "learning_rate": 0.0006, + "loss": 3.5872416496276855, + "step": 3258 + }, + { + "epoch": 45.265618173875055, + "grad_norm": 0.21790480613708496, + "learning_rate": 0.0006, + "loss": 3.6268889904022217, + "step": 3259 + }, + { + "epoch": 45.27959807776322, + "grad_norm": 0.22702264785766602, + "learning_rate": 0.0006, + "loss": 3.5972542762756348, + "step": 3260 + }, + { + "epoch": 45.293577981651374, + "grad_norm": 0.22465437650680542, + "learning_rate": 0.0006, + "loss": 3.6339592933654785, + "step": 3261 + }, + { + "epoch": 45.30755788553954, + "grad_norm": 0.21804460883140564, + "learning_rate": 0.0006, + "loss": 3.6062779426574707, + "step": 3262 + }, + { + "epoch": 45.3215377894277, + "grad_norm": 0.1985616534948349, + "learning_rate": 0.0006, + "loss": 3.629815101623535, + "step": 3263 + }, + { + "epoch": 45.33551769331586, + "grad_norm": 0.22264975309371948, + "learning_rate": 0.0006, + "loss": 3.631214141845703, + "step": 3264 + }, + { + "epoch": 45.34949759720402, + "grad_norm": 0.22178539633750916, + "learning_rate": 0.0006, + "loss": 3.620854377746582, + "step": 3265 + }, + { + "epoch": 45.36347750109218, + "grad_norm": 0.22392240166664124, + "learning_rate": 0.0006, + "loss": 3.6611738204956055, + "step": 3266 + }, + { + "epoch": 45.37745740498034, + "grad_norm": 0.2178916484117508, + "learning_rate": 0.0006, + "loss": 3.639893054962158, + "step": 3267 + }, + { + "epoch": 45.391437308868504, + "grad_norm": 0.2173885703086853, + "learning_rate": 0.0006, + "loss": 3.611750364303589, + "step": 3268 + }, + { + "epoch": 45.40541721275666, + "grad_norm": 0.2107069045305252, + "learning_rate": 0.0006, + "loss": 3.595181465148926, + "step": 3269 + }, + { + "epoch": 45.419397116644824, + "grad_norm": 0.19623015820980072, + "learning_rate": 0.0006, + "loss": 3.6096351146698, + "step": 3270 + }, + { + "epoch": 45.43337702053299, + "grad_norm": 0.23091304302215576, + "learning_rate": 0.0006, + "loss": 3.603667974472046, + "step": 3271 + }, + { + "epoch": 45.44735692442114, + "grad_norm": 0.22909007966518402, + "learning_rate": 0.0006, + "loss": 3.62846040725708, + "step": 3272 + }, + { + "epoch": 45.46133682830931, + "grad_norm": 0.2104928195476532, + "learning_rate": 0.0006, + "loss": 3.6543164253234863, + "step": 3273 + }, + { + "epoch": 45.47531673219746, + "grad_norm": 0.22994203865528107, + "learning_rate": 0.0006, + "loss": 3.621878147125244, + "step": 3274 + }, + { + "epoch": 45.489296636085626, + "grad_norm": 0.21652749180793762, + "learning_rate": 0.0006, + "loss": 3.6095705032348633, + "step": 3275 + }, + { + "epoch": 45.50327653997379, + "grad_norm": 0.20125073194503784, + "learning_rate": 0.0006, + "loss": 3.6213903427124023, + "step": 3276 + }, + { + "epoch": 45.517256443861946, + "grad_norm": 0.19995734095573425, + "learning_rate": 0.0006, + "loss": 3.6526503562927246, + "step": 3277 + }, + { + "epoch": 45.53123634775011, + "grad_norm": 0.2071387618780136, + "learning_rate": 0.0006, + "loss": 3.626208782196045, + "step": 3278 + }, + { + "epoch": 45.54521625163827, + "grad_norm": 0.222015842795372, + "learning_rate": 0.0006, + "loss": 3.61144757270813, + "step": 3279 + }, + { + "epoch": 45.55919615552643, + "grad_norm": 0.20780639350414276, + "learning_rate": 0.0006, + "loss": 3.64092755317688, + "step": 3280 + }, + { + "epoch": 45.57317605941459, + "grad_norm": 0.19297364354133606, + "learning_rate": 0.0006, + "loss": 3.6308364868164062, + "step": 3281 + }, + { + "epoch": 45.58715596330275, + "grad_norm": 0.1928786337375641, + "learning_rate": 0.0006, + "loss": 3.6258254051208496, + "step": 3282 + }, + { + "epoch": 45.60113586719091, + "grad_norm": 0.1940007209777832, + "learning_rate": 0.0006, + "loss": 3.622849464416504, + "step": 3283 + }, + { + "epoch": 45.615115771079076, + "grad_norm": 0.19643044471740723, + "learning_rate": 0.0006, + "loss": 3.6461117267608643, + "step": 3284 + }, + { + "epoch": 45.62909567496723, + "grad_norm": 0.19996654987335205, + "learning_rate": 0.0006, + "loss": 3.61572265625, + "step": 3285 + }, + { + "epoch": 45.643075578855395, + "grad_norm": 0.20202603936195374, + "learning_rate": 0.0006, + "loss": 3.610734462738037, + "step": 3286 + }, + { + "epoch": 45.65705548274356, + "grad_norm": 0.19249361753463745, + "learning_rate": 0.0006, + "loss": 3.607048511505127, + "step": 3287 + }, + { + "epoch": 45.671035386631715, + "grad_norm": 0.1894780397415161, + "learning_rate": 0.0006, + "loss": 3.6450905799865723, + "step": 3288 + }, + { + "epoch": 45.68501529051988, + "grad_norm": 0.19901636242866516, + "learning_rate": 0.0006, + "loss": 3.6313018798828125, + "step": 3289 + }, + { + "epoch": 45.69899519440804, + "grad_norm": 0.1875065118074417, + "learning_rate": 0.0006, + "loss": 3.641326427459717, + "step": 3290 + }, + { + "epoch": 45.7129750982962, + "grad_norm": 0.19832095503807068, + "learning_rate": 0.0006, + "loss": 3.6612308025360107, + "step": 3291 + }, + { + "epoch": 45.72695500218436, + "grad_norm": 0.20353806018829346, + "learning_rate": 0.0006, + "loss": 3.623152017593384, + "step": 3292 + }, + { + "epoch": 45.74093490607252, + "grad_norm": 0.1984023153781891, + "learning_rate": 0.0006, + "loss": 3.627358913421631, + "step": 3293 + }, + { + "epoch": 45.75491480996068, + "grad_norm": 0.2002221643924713, + "learning_rate": 0.0006, + "loss": 3.6334757804870605, + "step": 3294 + }, + { + "epoch": 45.768894713848844, + "grad_norm": 0.21099092066287994, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3295 + }, + { + "epoch": 45.782874617737, + "grad_norm": 0.19109416007995605, + "learning_rate": 0.0006, + "loss": 3.62795352935791, + "step": 3296 + }, + { + "epoch": 45.796854521625164, + "grad_norm": 0.18424192070960999, + "learning_rate": 0.0006, + "loss": 3.6151700019836426, + "step": 3297 + }, + { + "epoch": 45.81083442551333, + "grad_norm": 0.20823849737644196, + "learning_rate": 0.0006, + "loss": 3.641907215118408, + "step": 3298 + }, + { + "epoch": 45.824814329401484, + "grad_norm": 0.21407285332679749, + "learning_rate": 0.0006, + "loss": 3.6430726051330566, + "step": 3299 + }, + { + "epoch": 45.83879423328965, + "grad_norm": 0.23493780195713043, + "learning_rate": 0.0006, + "loss": 3.610065460205078, + "step": 3300 + }, + { + "epoch": 45.8527741371778, + "grad_norm": 0.21910642087459564, + "learning_rate": 0.0006, + "loss": 3.630603313446045, + "step": 3301 + }, + { + "epoch": 45.86675404106597, + "grad_norm": 0.1838075965642929, + "learning_rate": 0.0006, + "loss": 3.634315013885498, + "step": 3302 + }, + { + "epoch": 45.88073394495413, + "grad_norm": 0.22131477296352386, + "learning_rate": 0.0006, + "loss": 3.6142020225524902, + "step": 3303 + }, + { + "epoch": 45.89471384884229, + "grad_norm": 0.2497209906578064, + "learning_rate": 0.0006, + "loss": 3.689103126525879, + "step": 3304 + }, + { + "epoch": 45.90869375273045, + "grad_norm": 0.24403175711631775, + "learning_rate": 0.0006, + "loss": 3.6321184635162354, + "step": 3305 + }, + { + "epoch": 45.92267365661861, + "grad_norm": 0.22527103126049042, + "learning_rate": 0.0006, + "loss": 3.6486921310424805, + "step": 3306 + }, + { + "epoch": 45.93665356050677, + "grad_norm": 0.20127955079078674, + "learning_rate": 0.0006, + "loss": 3.6109299659729004, + "step": 3307 + }, + { + "epoch": 45.95063346439493, + "grad_norm": 0.18997317552566528, + "learning_rate": 0.0006, + "loss": 3.6157617568969727, + "step": 3308 + }, + { + "epoch": 45.964613368283096, + "grad_norm": 0.19921870529651642, + "learning_rate": 0.0006, + "loss": 3.691776990890503, + "step": 3309 + }, + { + "epoch": 45.97859327217125, + "grad_norm": 0.2124646008014679, + "learning_rate": 0.0006, + "loss": 3.61795711517334, + "step": 3310 + }, + { + "epoch": 45.992573176059416, + "grad_norm": 0.20002500712871552, + "learning_rate": 0.0006, + "loss": 3.6266353130340576, + "step": 3311 + }, + { + "epoch": 46.0, + "grad_norm": 0.22992220520973206, + "learning_rate": 0.0006, + "loss": 3.647242784500122, + "step": 3312 + }, + { + "epoch": 46.0, + "eval_loss": 3.9855220317840576, + "eval_runtime": 44.9108, + "eval_samples_per_second": 54.374, + "eval_steps_per_second": 3.407, + "step": 3312 + }, + { + "epoch": 46.01397990388816, + "grad_norm": 0.1976146101951599, + "learning_rate": 0.0006, + "loss": 3.5675041675567627, + "step": 3313 + }, + { + "epoch": 46.02795980777632, + "grad_norm": 0.2238360494375229, + "learning_rate": 0.0006, + "loss": 3.6077466011047363, + "step": 3314 + }, + { + "epoch": 46.04193971166448, + "grad_norm": 0.288669228553772, + "learning_rate": 0.0006, + "loss": 3.589958667755127, + "step": 3315 + }, + { + "epoch": 46.05591961555265, + "grad_norm": 0.30626827478408813, + "learning_rate": 0.0006, + "loss": 3.604401111602783, + "step": 3316 + }, + { + "epoch": 46.0698995194408, + "grad_norm": 0.2721095681190491, + "learning_rate": 0.0006, + "loss": 3.620197296142578, + "step": 3317 + }, + { + "epoch": 46.083879423328966, + "grad_norm": 0.2152107059955597, + "learning_rate": 0.0006, + "loss": 3.607327938079834, + "step": 3318 + }, + { + "epoch": 46.09785932721712, + "grad_norm": 0.2205267995595932, + "learning_rate": 0.0006, + "loss": 3.6020898818969727, + "step": 3319 + }, + { + "epoch": 46.111839231105286, + "grad_norm": 0.25419551134109497, + "learning_rate": 0.0006, + "loss": 3.59277606010437, + "step": 3320 + }, + { + "epoch": 46.12581913499345, + "grad_norm": 0.2379811704158783, + "learning_rate": 0.0006, + "loss": 3.560422897338867, + "step": 3321 + }, + { + "epoch": 46.139799038881605, + "grad_norm": 0.20928747951984406, + "learning_rate": 0.0006, + "loss": 3.6373965740203857, + "step": 3322 + }, + { + "epoch": 46.15377894276977, + "grad_norm": 0.21654292941093445, + "learning_rate": 0.0006, + "loss": 3.620784282684326, + "step": 3323 + }, + { + "epoch": 46.16775884665793, + "grad_norm": 0.22994576394557953, + "learning_rate": 0.0006, + "loss": 3.589960813522339, + "step": 3324 + }, + { + "epoch": 46.18173875054609, + "grad_norm": 0.24989335238933563, + "learning_rate": 0.0006, + "loss": 3.599091053009033, + "step": 3325 + }, + { + "epoch": 46.19571865443425, + "grad_norm": 0.27068355679512024, + "learning_rate": 0.0006, + "loss": 3.5933146476745605, + "step": 3326 + }, + { + "epoch": 46.20969855832241, + "grad_norm": 0.2581503391265869, + "learning_rate": 0.0006, + "loss": 3.5935447216033936, + "step": 3327 + }, + { + "epoch": 46.22367846221057, + "grad_norm": 0.23368583619594574, + "learning_rate": 0.0006, + "loss": 3.6120412349700928, + "step": 3328 + }, + { + "epoch": 46.237658366098735, + "grad_norm": 0.21808452904224396, + "learning_rate": 0.0006, + "loss": 3.6155190467834473, + "step": 3329 + }, + { + "epoch": 46.25163826998689, + "grad_norm": 0.2152830809354782, + "learning_rate": 0.0006, + "loss": 3.6039974689483643, + "step": 3330 + }, + { + "epoch": 46.265618173875055, + "grad_norm": 0.20902983844280243, + "learning_rate": 0.0006, + "loss": 3.586416721343994, + "step": 3331 + }, + { + "epoch": 46.27959807776322, + "grad_norm": 0.21693682670593262, + "learning_rate": 0.0006, + "loss": 3.601595401763916, + "step": 3332 + }, + { + "epoch": 46.293577981651374, + "grad_norm": 0.21157346665859222, + "learning_rate": 0.0006, + "loss": 3.619825601577759, + "step": 3333 + }, + { + "epoch": 46.30755788553954, + "grad_norm": 0.19628529250621796, + "learning_rate": 0.0006, + "loss": 3.5845298767089844, + "step": 3334 + }, + { + "epoch": 46.3215377894277, + "grad_norm": 0.19599373638629913, + "learning_rate": 0.0006, + "loss": 3.614483594894409, + "step": 3335 + }, + { + "epoch": 46.33551769331586, + "grad_norm": 0.21777382493019104, + "learning_rate": 0.0006, + "loss": 3.5865678787231445, + "step": 3336 + }, + { + "epoch": 46.34949759720402, + "grad_norm": 0.24697323143482208, + "learning_rate": 0.0006, + "loss": 3.6168298721313477, + "step": 3337 + }, + { + "epoch": 46.36347750109218, + "grad_norm": 0.29521632194519043, + "learning_rate": 0.0006, + "loss": 3.627875804901123, + "step": 3338 + }, + { + "epoch": 46.37745740498034, + "grad_norm": 0.2548002004623413, + "learning_rate": 0.0006, + "loss": 3.6286001205444336, + "step": 3339 + }, + { + "epoch": 46.391437308868504, + "grad_norm": 0.20501002669334412, + "learning_rate": 0.0006, + "loss": 3.625035524368286, + "step": 3340 + }, + { + "epoch": 46.40541721275666, + "grad_norm": 0.21849584579467773, + "learning_rate": 0.0006, + "loss": 3.621872901916504, + "step": 3341 + }, + { + "epoch": 46.419397116644824, + "grad_norm": 0.22302033007144928, + "learning_rate": 0.0006, + "loss": 3.6088266372680664, + "step": 3342 + }, + { + "epoch": 46.43337702053299, + "grad_norm": 0.21138787269592285, + "learning_rate": 0.0006, + "loss": 3.6211094856262207, + "step": 3343 + }, + { + "epoch": 46.44735692442114, + "grad_norm": 0.22372713685035706, + "learning_rate": 0.0006, + "loss": 3.5799427032470703, + "step": 3344 + }, + { + "epoch": 46.46133682830931, + "grad_norm": 0.22019316256046295, + "learning_rate": 0.0006, + "loss": 3.616044044494629, + "step": 3345 + }, + { + "epoch": 46.47531673219746, + "grad_norm": 0.21947625279426575, + "learning_rate": 0.0006, + "loss": 3.613643169403076, + "step": 3346 + }, + { + "epoch": 46.489296636085626, + "grad_norm": 0.21935684978961945, + "learning_rate": 0.0006, + "loss": 3.6255440711975098, + "step": 3347 + }, + { + "epoch": 46.50327653997379, + "grad_norm": 0.20366479456424713, + "learning_rate": 0.0006, + "loss": 3.613892078399658, + "step": 3348 + }, + { + "epoch": 46.517256443861946, + "grad_norm": 0.21755267679691315, + "learning_rate": 0.0006, + "loss": 3.617886543273926, + "step": 3349 + }, + { + "epoch": 46.53123634775011, + "grad_norm": 0.20023910701274872, + "learning_rate": 0.0006, + "loss": 3.6172280311584473, + "step": 3350 + }, + { + "epoch": 46.54521625163827, + "grad_norm": 0.20375007390975952, + "learning_rate": 0.0006, + "loss": 3.595829486846924, + "step": 3351 + }, + { + "epoch": 46.55919615552643, + "grad_norm": 0.21125391125679016, + "learning_rate": 0.0006, + "loss": 3.632533550262451, + "step": 3352 + }, + { + "epoch": 46.57317605941459, + "grad_norm": 0.2359670102596283, + "learning_rate": 0.0006, + "loss": 3.597811222076416, + "step": 3353 + }, + { + "epoch": 46.58715596330275, + "grad_norm": 0.21696777641773224, + "learning_rate": 0.0006, + "loss": 3.627127170562744, + "step": 3354 + }, + { + "epoch": 46.60113586719091, + "grad_norm": 0.21501564979553223, + "learning_rate": 0.0006, + "loss": 3.630887985229492, + "step": 3355 + }, + { + "epoch": 46.615115771079076, + "grad_norm": 0.21446822583675385, + "learning_rate": 0.0006, + "loss": 3.6075234413146973, + "step": 3356 + }, + { + "epoch": 46.62909567496723, + "grad_norm": 0.21508967876434326, + "learning_rate": 0.0006, + "loss": 3.626603603363037, + "step": 3357 + }, + { + "epoch": 46.643075578855395, + "grad_norm": 0.19969215989112854, + "learning_rate": 0.0006, + "loss": 3.6160733699798584, + "step": 3358 + }, + { + "epoch": 46.65705548274356, + "grad_norm": 0.19982007145881653, + "learning_rate": 0.0006, + "loss": 3.632960319519043, + "step": 3359 + }, + { + "epoch": 46.671035386631715, + "grad_norm": 0.1981230527162552, + "learning_rate": 0.0006, + "loss": 3.608591079711914, + "step": 3360 + }, + { + "epoch": 46.68501529051988, + "grad_norm": 0.19948643445968628, + "learning_rate": 0.0006, + "loss": 3.6100947856903076, + "step": 3361 + }, + { + "epoch": 46.69899519440804, + "grad_norm": 0.18967196345329285, + "learning_rate": 0.0006, + "loss": 3.6203439235687256, + "step": 3362 + }, + { + "epoch": 46.7129750982962, + "grad_norm": 0.20035311579704285, + "learning_rate": 0.0006, + "loss": 3.64508056640625, + "step": 3363 + }, + { + "epoch": 46.72695500218436, + "grad_norm": 0.21049824357032776, + "learning_rate": 0.0006, + "loss": 3.620095729827881, + "step": 3364 + }, + { + "epoch": 46.74093490607252, + "grad_norm": 0.21411995589733124, + "learning_rate": 0.0006, + "loss": 3.650815963745117, + "step": 3365 + }, + { + "epoch": 46.75491480996068, + "grad_norm": 0.18666061758995056, + "learning_rate": 0.0006, + "loss": 3.625699758529663, + "step": 3366 + }, + { + "epoch": 46.768894713848844, + "grad_norm": 0.1927071362733841, + "learning_rate": 0.0006, + "loss": 3.6165151596069336, + "step": 3367 + }, + { + "epoch": 46.782874617737, + "grad_norm": 0.2063879817724228, + "learning_rate": 0.0006, + "loss": 3.6182332038879395, + "step": 3368 + }, + { + "epoch": 46.796854521625164, + "grad_norm": 0.19215327501296997, + "learning_rate": 0.0006, + "loss": 3.607239246368408, + "step": 3369 + }, + { + "epoch": 46.81083442551333, + "grad_norm": 0.2074592262506485, + "learning_rate": 0.0006, + "loss": 3.624856948852539, + "step": 3370 + }, + { + "epoch": 46.824814329401484, + "grad_norm": 0.2184106856584549, + "learning_rate": 0.0006, + "loss": 3.628757953643799, + "step": 3371 + }, + { + "epoch": 46.83879423328965, + "grad_norm": 0.2203136682510376, + "learning_rate": 0.0006, + "loss": 3.625958204269409, + "step": 3372 + }, + { + "epoch": 46.8527741371778, + "grad_norm": 0.21920061111450195, + "learning_rate": 0.0006, + "loss": 3.6060733795166016, + "step": 3373 + }, + { + "epoch": 46.86675404106597, + "grad_norm": 0.2122412472963333, + "learning_rate": 0.0006, + "loss": 3.6126952171325684, + "step": 3374 + }, + { + "epoch": 46.88073394495413, + "grad_norm": 0.1971784383058548, + "learning_rate": 0.0006, + "loss": 3.637129783630371, + "step": 3375 + }, + { + "epoch": 46.89471384884229, + "grad_norm": 0.20824873447418213, + "learning_rate": 0.0006, + "loss": 3.62868070602417, + "step": 3376 + }, + { + "epoch": 46.90869375273045, + "grad_norm": 0.20157678425312042, + "learning_rate": 0.0006, + "loss": 3.6321873664855957, + "step": 3377 + }, + { + "epoch": 46.92267365661861, + "grad_norm": 0.1958925426006317, + "learning_rate": 0.0006, + "loss": 3.6513354778289795, + "step": 3378 + }, + { + "epoch": 46.93665356050677, + "grad_norm": 0.1969553828239441, + "learning_rate": 0.0006, + "loss": 3.6346323490142822, + "step": 3379 + }, + { + "epoch": 46.95063346439493, + "grad_norm": 0.19311924278736115, + "learning_rate": 0.0006, + "loss": 3.6673245429992676, + "step": 3380 + }, + { + "epoch": 46.964613368283096, + "grad_norm": 0.20341862738132477, + "learning_rate": 0.0006, + "loss": 3.680025339126587, + "step": 3381 + }, + { + "epoch": 46.97859327217125, + "grad_norm": 0.20667442679405212, + "learning_rate": 0.0006, + "loss": 3.632290840148926, + "step": 3382 + }, + { + "epoch": 46.992573176059416, + "grad_norm": 0.19141609966754913, + "learning_rate": 0.0006, + "loss": 3.659360647201538, + "step": 3383 + }, + { + "epoch": 47.0, + "grad_norm": 0.20981188118457794, + "learning_rate": 0.0006, + "loss": 3.653548240661621, + "step": 3384 + }, + { + "epoch": 47.0, + "eval_loss": 3.9833984375, + "eval_runtime": 44.4693, + "eval_samples_per_second": 54.914, + "eval_steps_per_second": 3.441, + "step": 3384 + }, + { + "epoch": 47.01397990388816, + "grad_norm": 0.1958128660917282, + "learning_rate": 0.0006, + "loss": 3.5778727531433105, + "step": 3385 + }, + { + "epoch": 47.02795980777632, + "grad_norm": 0.19728390872478485, + "learning_rate": 0.0006, + "loss": 3.5827393531799316, + "step": 3386 + }, + { + "epoch": 47.04193971166448, + "grad_norm": 0.18564026057720184, + "learning_rate": 0.0006, + "loss": 3.573071002960205, + "step": 3387 + }, + { + "epoch": 47.05591961555265, + "grad_norm": 0.20563258230686188, + "learning_rate": 0.0006, + "loss": 3.564330577850342, + "step": 3388 + }, + { + "epoch": 47.0698995194408, + "grad_norm": 0.21382158994674683, + "learning_rate": 0.0006, + "loss": 3.5976946353912354, + "step": 3389 + }, + { + "epoch": 47.083879423328966, + "grad_norm": 0.2383693903684616, + "learning_rate": 0.0006, + "loss": 3.5970897674560547, + "step": 3390 + }, + { + "epoch": 47.09785932721712, + "grad_norm": 0.24709449708461761, + "learning_rate": 0.0006, + "loss": 3.613409996032715, + "step": 3391 + }, + { + "epoch": 47.111839231105286, + "grad_norm": 0.2329784333705902, + "learning_rate": 0.0006, + "loss": 3.571023464202881, + "step": 3392 + }, + { + "epoch": 47.12581913499345, + "grad_norm": 0.2096954584121704, + "learning_rate": 0.0006, + "loss": 3.573697090148926, + "step": 3393 + }, + { + "epoch": 47.139799038881605, + "grad_norm": 0.21630050241947174, + "learning_rate": 0.0006, + "loss": 3.6085095405578613, + "step": 3394 + }, + { + "epoch": 47.15377894276977, + "grad_norm": 0.22828878462314606, + "learning_rate": 0.0006, + "loss": 3.605466842651367, + "step": 3395 + }, + { + "epoch": 47.16775884665793, + "grad_norm": 0.24957625567913055, + "learning_rate": 0.0006, + "loss": 3.588324546813965, + "step": 3396 + }, + { + "epoch": 47.18173875054609, + "grad_norm": 0.25446194410324097, + "learning_rate": 0.0006, + "loss": 3.6161458492279053, + "step": 3397 + }, + { + "epoch": 47.19571865443425, + "grad_norm": 0.24938438832759857, + "learning_rate": 0.0006, + "loss": 3.6017847061157227, + "step": 3398 + }, + { + "epoch": 47.20969855832241, + "grad_norm": 0.23318032920360565, + "learning_rate": 0.0006, + "loss": 3.6077046394348145, + "step": 3399 + }, + { + "epoch": 47.22367846221057, + "grad_norm": 0.2179042547941208, + "learning_rate": 0.0006, + "loss": 3.598104953765869, + "step": 3400 + }, + { + "epoch": 47.237658366098735, + "grad_norm": 0.213354229927063, + "learning_rate": 0.0006, + "loss": 3.6328814029693604, + "step": 3401 + }, + { + "epoch": 47.25163826998689, + "grad_norm": 0.23104089498519897, + "learning_rate": 0.0006, + "loss": 3.6161890029907227, + "step": 3402 + }, + { + "epoch": 47.265618173875055, + "grad_norm": 0.22219021618366241, + "learning_rate": 0.0006, + "loss": 3.620314121246338, + "step": 3403 + }, + { + "epoch": 47.27959807776322, + "grad_norm": 0.21618683636188507, + "learning_rate": 0.0006, + "loss": 3.5955371856689453, + "step": 3404 + }, + { + "epoch": 47.293577981651374, + "grad_norm": 0.22280243039131165, + "learning_rate": 0.0006, + "loss": 3.618302345275879, + "step": 3405 + }, + { + "epoch": 47.30755788553954, + "grad_norm": 0.2268427014350891, + "learning_rate": 0.0006, + "loss": 3.6035101413726807, + "step": 3406 + }, + { + "epoch": 47.3215377894277, + "grad_norm": 0.20324429869651794, + "learning_rate": 0.0006, + "loss": 3.612598419189453, + "step": 3407 + }, + { + "epoch": 47.33551769331586, + "grad_norm": 0.19353045523166656, + "learning_rate": 0.0006, + "loss": 3.5951499938964844, + "step": 3408 + }, + { + "epoch": 47.34949759720402, + "grad_norm": 0.19008080661296844, + "learning_rate": 0.0006, + "loss": 3.6177732944488525, + "step": 3409 + }, + { + "epoch": 47.36347750109218, + "grad_norm": 0.19530250132083893, + "learning_rate": 0.0006, + "loss": 3.597903251647949, + "step": 3410 + }, + { + "epoch": 47.37745740498034, + "grad_norm": 0.2083505541086197, + "learning_rate": 0.0006, + "loss": 3.6062350273132324, + "step": 3411 + }, + { + "epoch": 47.391437308868504, + "grad_norm": 0.2241518199443817, + "learning_rate": 0.0006, + "loss": 3.6084704399108887, + "step": 3412 + }, + { + "epoch": 47.40541721275666, + "grad_norm": 0.25763124227523804, + "learning_rate": 0.0006, + "loss": 3.600295066833496, + "step": 3413 + }, + { + "epoch": 47.419397116644824, + "grad_norm": 0.2689114212989807, + "learning_rate": 0.0006, + "loss": 3.648848533630371, + "step": 3414 + }, + { + "epoch": 47.43337702053299, + "grad_norm": 0.30106639862060547, + "learning_rate": 0.0006, + "loss": 3.6248483657836914, + "step": 3415 + }, + { + "epoch": 47.44735692442114, + "grad_norm": 0.31840384006500244, + "learning_rate": 0.0006, + "loss": 3.6256890296936035, + "step": 3416 + }, + { + "epoch": 47.46133682830931, + "grad_norm": 0.2603468894958496, + "learning_rate": 0.0006, + "loss": 3.6225175857543945, + "step": 3417 + }, + { + "epoch": 47.47531673219746, + "grad_norm": 0.33408305048942566, + "learning_rate": 0.0006, + "loss": 3.590303897857666, + "step": 3418 + }, + { + "epoch": 47.489296636085626, + "grad_norm": 0.3677918612957001, + "learning_rate": 0.0006, + "loss": 3.6005120277404785, + "step": 3419 + }, + { + "epoch": 47.50327653997379, + "grad_norm": 0.23077215254306793, + "learning_rate": 0.0006, + "loss": 3.6093883514404297, + "step": 3420 + }, + { + "epoch": 47.517256443861946, + "grad_norm": 0.27272120118141174, + "learning_rate": 0.0006, + "loss": 3.580151081085205, + "step": 3421 + }, + { + "epoch": 47.53123634775011, + "grad_norm": 0.22629371285438538, + "learning_rate": 0.0006, + "loss": 3.6375746726989746, + "step": 3422 + }, + { + "epoch": 47.54521625163827, + "grad_norm": 0.2376468926668167, + "learning_rate": 0.0006, + "loss": 3.6492481231689453, + "step": 3423 + }, + { + "epoch": 47.55919615552643, + "grad_norm": 0.21200433373451233, + "learning_rate": 0.0006, + "loss": 3.6258158683776855, + "step": 3424 + }, + { + "epoch": 47.57317605941459, + "grad_norm": 0.2246236652135849, + "learning_rate": 0.0006, + "loss": 3.6199564933776855, + "step": 3425 + }, + { + "epoch": 47.58715596330275, + "grad_norm": 0.21713437139987946, + "learning_rate": 0.0006, + "loss": 3.638197898864746, + "step": 3426 + }, + { + "epoch": 47.60113586719091, + "grad_norm": 0.1964627057313919, + "learning_rate": 0.0006, + "loss": 3.6334147453308105, + "step": 3427 + }, + { + "epoch": 47.615115771079076, + "grad_norm": 0.21705810725688934, + "learning_rate": 0.0006, + "loss": 3.6298668384552, + "step": 3428 + }, + { + "epoch": 47.62909567496723, + "grad_norm": 0.20376256108283997, + "learning_rate": 0.0006, + "loss": 3.6127166748046875, + "step": 3429 + }, + { + "epoch": 47.643075578855395, + "grad_norm": 0.20046672224998474, + "learning_rate": 0.0006, + "loss": 3.633683681488037, + "step": 3430 + }, + { + "epoch": 47.65705548274356, + "grad_norm": 0.21494409441947937, + "learning_rate": 0.0006, + "loss": 3.635828971862793, + "step": 3431 + }, + { + "epoch": 47.671035386631715, + "grad_norm": 0.24550487101078033, + "learning_rate": 0.0006, + "loss": 3.6056854724884033, + "step": 3432 + }, + { + "epoch": 47.68501529051988, + "grad_norm": 0.24416600167751312, + "learning_rate": 0.0006, + "loss": 3.618785858154297, + "step": 3433 + }, + { + "epoch": 47.69899519440804, + "grad_norm": 0.22872993350028992, + "learning_rate": 0.0006, + "loss": 3.6189026832580566, + "step": 3434 + }, + { + "epoch": 47.7129750982962, + "grad_norm": 0.23609530925750732, + "learning_rate": 0.0006, + "loss": 3.623661518096924, + "step": 3435 + }, + { + "epoch": 47.72695500218436, + "grad_norm": 0.22905564308166504, + "learning_rate": 0.0006, + "loss": 3.6155691146850586, + "step": 3436 + }, + { + "epoch": 47.74093490607252, + "grad_norm": 0.25507304072380066, + "learning_rate": 0.0006, + "loss": 3.5848331451416016, + "step": 3437 + }, + { + "epoch": 47.75491480996068, + "grad_norm": 0.24594344198703766, + "learning_rate": 0.0006, + "loss": 3.588374614715576, + "step": 3438 + }, + { + "epoch": 47.768894713848844, + "grad_norm": 0.23131750524044037, + "learning_rate": 0.0006, + "loss": 3.6164474487304688, + "step": 3439 + }, + { + "epoch": 47.782874617737, + "grad_norm": 0.21967829763889313, + "learning_rate": 0.0006, + "loss": 3.619150161743164, + "step": 3440 + }, + { + "epoch": 47.796854521625164, + "grad_norm": 0.226309135556221, + "learning_rate": 0.0006, + "loss": 3.5946340560913086, + "step": 3441 + }, + { + "epoch": 47.81083442551333, + "grad_norm": 0.23141087591648102, + "learning_rate": 0.0006, + "loss": 3.614711046218872, + "step": 3442 + }, + { + "epoch": 47.824814329401484, + "grad_norm": 0.20917707681655884, + "learning_rate": 0.0006, + "loss": 3.610058307647705, + "step": 3443 + }, + { + "epoch": 47.83879423328965, + "grad_norm": 0.22864583134651184, + "learning_rate": 0.0006, + "loss": 3.6396052837371826, + "step": 3444 + }, + { + "epoch": 47.8527741371778, + "grad_norm": 0.22201144695281982, + "learning_rate": 0.0006, + "loss": 3.6462526321411133, + "step": 3445 + }, + { + "epoch": 47.86675404106597, + "grad_norm": 0.21199125051498413, + "learning_rate": 0.0006, + "loss": 3.6090314388275146, + "step": 3446 + }, + { + "epoch": 47.88073394495413, + "grad_norm": 0.2236194908618927, + "learning_rate": 0.0006, + "loss": 3.6308231353759766, + "step": 3447 + }, + { + "epoch": 47.89471384884229, + "grad_norm": 0.21571075916290283, + "learning_rate": 0.0006, + "loss": 3.5899293422698975, + "step": 3448 + }, + { + "epoch": 47.90869375273045, + "grad_norm": 0.2320997267961502, + "learning_rate": 0.0006, + "loss": 3.6360764503479004, + "step": 3449 + }, + { + "epoch": 47.92267365661861, + "grad_norm": 0.2304147630929947, + "learning_rate": 0.0006, + "loss": 3.61220121383667, + "step": 3450 + }, + { + "epoch": 47.93665356050677, + "grad_norm": 0.2321154624223709, + "learning_rate": 0.0006, + "loss": 3.6104419231414795, + "step": 3451 + }, + { + "epoch": 47.95063346439493, + "grad_norm": 0.20895935595035553, + "learning_rate": 0.0006, + "loss": 3.6372952461242676, + "step": 3452 + }, + { + "epoch": 47.964613368283096, + "grad_norm": 0.19926418364048004, + "learning_rate": 0.0006, + "loss": 3.652947425842285, + "step": 3453 + }, + { + "epoch": 47.97859327217125, + "grad_norm": 0.22443149983882904, + "learning_rate": 0.0006, + "loss": 3.6005635261535645, + "step": 3454 + }, + { + "epoch": 47.992573176059416, + "grad_norm": 0.2361244559288025, + "learning_rate": 0.0006, + "loss": 3.626563549041748, + "step": 3455 + }, + { + "epoch": 48.0, + "grad_norm": 0.2542579174041748, + "learning_rate": 0.0006, + "loss": 3.619098663330078, + "step": 3456 + }, + { + "epoch": 48.0, + "eval_loss": 3.9787564277648926, + "eval_runtime": 44.3429, + "eval_samples_per_second": 55.071, + "eval_steps_per_second": 3.45, + "step": 3456 + }, + { + "epoch": 48.01397990388816, + "grad_norm": 0.21771088242530823, + "learning_rate": 0.0006, + "loss": 3.538780927658081, + "step": 3457 + }, + { + "epoch": 48.02795980777632, + "grad_norm": 0.23467740416526794, + "learning_rate": 0.0006, + "loss": 3.5875978469848633, + "step": 3458 + }, + { + "epoch": 48.04193971166448, + "grad_norm": 0.2527692914009094, + "learning_rate": 0.0006, + "loss": 3.5939159393310547, + "step": 3459 + }, + { + "epoch": 48.05591961555265, + "grad_norm": 0.21477685868740082, + "learning_rate": 0.0006, + "loss": 3.600374698638916, + "step": 3460 + }, + { + "epoch": 48.0698995194408, + "grad_norm": 0.22008976340293884, + "learning_rate": 0.0006, + "loss": 3.6058406829833984, + "step": 3461 + }, + { + "epoch": 48.083879423328966, + "grad_norm": 0.23344817757606506, + "learning_rate": 0.0006, + "loss": 3.5864410400390625, + "step": 3462 + }, + { + "epoch": 48.09785932721712, + "grad_norm": 0.24451610445976257, + "learning_rate": 0.0006, + "loss": 3.5827221870422363, + "step": 3463 + }, + { + "epoch": 48.111839231105286, + "grad_norm": 0.24536925554275513, + "learning_rate": 0.0006, + "loss": 3.566275119781494, + "step": 3464 + }, + { + "epoch": 48.12581913499345, + "grad_norm": 0.24060940742492676, + "learning_rate": 0.0006, + "loss": 3.575841188430786, + "step": 3465 + }, + { + "epoch": 48.139799038881605, + "grad_norm": 0.24829573929309845, + "learning_rate": 0.0006, + "loss": 3.6215152740478516, + "step": 3466 + }, + { + "epoch": 48.15377894276977, + "grad_norm": 0.2651045024394989, + "learning_rate": 0.0006, + "loss": 3.604381561279297, + "step": 3467 + }, + { + "epoch": 48.16775884665793, + "grad_norm": 0.2654518187046051, + "learning_rate": 0.0006, + "loss": 3.5989198684692383, + "step": 3468 + }, + { + "epoch": 48.18173875054609, + "grad_norm": 0.25179797410964966, + "learning_rate": 0.0006, + "loss": 3.596402168273926, + "step": 3469 + }, + { + "epoch": 48.19571865443425, + "grad_norm": 0.24018050730228424, + "learning_rate": 0.0006, + "loss": 3.6376051902770996, + "step": 3470 + }, + { + "epoch": 48.20969855832241, + "grad_norm": 0.22079682350158691, + "learning_rate": 0.0006, + "loss": 3.5990993976593018, + "step": 3471 + }, + { + "epoch": 48.22367846221057, + "grad_norm": 0.23267143964767456, + "learning_rate": 0.0006, + "loss": 3.614759683609009, + "step": 3472 + }, + { + "epoch": 48.237658366098735, + "grad_norm": 0.21822260320186615, + "learning_rate": 0.0006, + "loss": 3.6057262420654297, + "step": 3473 + }, + { + "epoch": 48.25163826998689, + "grad_norm": 0.23391997814178467, + "learning_rate": 0.0006, + "loss": 3.581972599029541, + "step": 3474 + }, + { + "epoch": 48.265618173875055, + "grad_norm": 0.22634121775627136, + "learning_rate": 0.0006, + "loss": 3.592149496078491, + "step": 3475 + }, + { + "epoch": 48.27959807776322, + "grad_norm": 0.2142419070005417, + "learning_rate": 0.0006, + "loss": 3.616722583770752, + "step": 3476 + }, + { + "epoch": 48.293577981651374, + "grad_norm": 0.227144256234169, + "learning_rate": 0.0006, + "loss": 3.6018447875976562, + "step": 3477 + }, + { + "epoch": 48.30755788553954, + "grad_norm": 0.25466978549957275, + "learning_rate": 0.0006, + "loss": 3.5795769691467285, + "step": 3478 + }, + { + "epoch": 48.3215377894277, + "grad_norm": 0.2409234344959259, + "learning_rate": 0.0006, + "loss": 3.5845530033111572, + "step": 3479 + }, + { + "epoch": 48.33551769331586, + "grad_norm": 0.22001305222511292, + "learning_rate": 0.0006, + "loss": 3.5861806869506836, + "step": 3480 + }, + { + "epoch": 48.34949759720402, + "grad_norm": 0.24980100989341736, + "learning_rate": 0.0006, + "loss": 3.6032233238220215, + "step": 3481 + }, + { + "epoch": 48.36347750109218, + "grad_norm": 0.28788816928863525, + "learning_rate": 0.0006, + "loss": 3.5876364707946777, + "step": 3482 + }, + { + "epoch": 48.37745740498034, + "grad_norm": 0.26172295212745667, + "learning_rate": 0.0006, + "loss": 3.5711276531219482, + "step": 3483 + }, + { + "epoch": 48.391437308868504, + "grad_norm": 0.23881542682647705, + "learning_rate": 0.0006, + "loss": 3.57108473777771, + "step": 3484 + }, + { + "epoch": 48.40541721275666, + "grad_norm": 0.22385981678962708, + "learning_rate": 0.0006, + "loss": 3.6197509765625, + "step": 3485 + }, + { + "epoch": 48.419397116644824, + "grad_norm": 0.21007859706878662, + "learning_rate": 0.0006, + "loss": 3.609449625015259, + "step": 3486 + }, + { + "epoch": 48.43337702053299, + "grad_norm": 0.21170279383659363, + "learning_rate": 0.0006, + "loss": 3.5981619358062744, + "step": 3487 + }, + { + "epoch": 48.44735692442114, + "grad_norm": 0.2100721150636673, + "learning_rate": 0.0006, + "loss": 3.606505870819092, + "step": 3488 + }, + { + "epoch": 48.46133682830931, + "grad_norm": 0.20408287644386292, + "learning_rate": 0.0006, + "loss": 3.6033859252929688, + "step": 3489 + }, + { + "epoch": 48.47531673219746, + "grad_norm": 0.20343686640262604, + "learning_rate": 0.0006, + "loss": 3.6249616146087646, + "step": 3490 + }, + { + "epoch": 48.489296636085626, + "grad_norm": 0.20570123195648193, + "learning_rate": 0.0006, + "loss": 3.5700693130493164, + "step": 3491 + }, + { + "epoch": 48.50327653997379, + "grad_norm": 0.2511707544326782, + "learning_rate": 0.0006, + "loss": 3.6432406902313232, + "step": 3492 + }, + { + "epoch": 48.517256443861946, + "grad_norm": 0.265960693359375, + "learning_rate": 0.0006, + "loss": 3.6329426765441895, + "step": 3493 + }, + { + "epoch": 48.53123634775011, + "grad_norm": 0.25830161571502686, + "learning_rate": 0.0006, + "loss": 3.593940258026123, + "step": 3494 + }, + { + "epoch": 48.54521625163827, + "grad_norm": 0.2232893705368042, + "learning_rate": 0.0006, + "loss": 3.623812198638916, + "step": 3495 + }, + { + "epoch": 48.55919615552643, + "grad_norm": 0.20818902552127838, + "learning_rate": 0.0006, + "loss": 3.5982813835144043, + "step": 3496 + }, + { + "epoch": 48.57317605941459, + "grad_norm": 0.2756865918636322, + "learning_rate": 0.0006, + "loss": 3.617436170578003, + "step": 3497 + }, + { + "epoch": 48.58715596330275, + "grad_norm": 0.2361520677804947, + "learning_rate": 0.0006, + "loss": 3.598113536834717, + "step": 3498 + }, + { + "epoch": 48.60113586719091, + "grad_norm": 0.1956835240125656, + "learning_rate": 0.0006, + "loss": 3.581003189086914, + "step": 3499 + }, + { + "epoch": 48.615115771079076, + "grad_norm": 0.2863931953907013, + "learning_rate": 0.0006, + "loss": 3.596768379211426, + "step": 3500 + }, + { + "epoch": 48.62909567496723, + "grad_norm": 0.29865020513534546, + "learning_rate": 0.0006, + "loss": 3.576995372772217, + "step": 3501 + }, + { + "epoch": 48.643075578855395, + "grad_norm": 0.23084872961044312, + "learning_rate": 0.0006, + "loss": 3.6431074142456055, + "step": 3502 + }, + { + "epoch": 48.65705548274356, + "grad_norm": 0.2081640362739563, + "learning_rate": 0.0006, + "loss": 3.6002132892608643, + "step": 3503 + }, + { + "epoch": 48.671035386631715, + "grad_norm": 0.20566335320472717, + "learning_rate": 0.0006, + "loss": 3.62365460395813, + "step": 3504 + }, + { + "epoch": 48.68501529051988, + "grad_norm": 0.2066725790500641, + "learning_rate": 0.0006, + "loss": 3.6063363552093506, + "step": 3505 + }, + { + "epoch": 48.69899519440804, + "grad_norm": 0.19830003380775452, + "learning_rate": 0.0006, + "loss": 3.617750883102417, + "step": 3506 + }, + { + "epoch": 48.7129750982962, + "grad_norm": 0.20409031212329865, + "learning_rate": 0.0006, + "loss": 3.6110005378723145, + "step": 3507 + }, + { + "epoch": 48.72695500218436, + "grad_norm": 0.20836064219474792, + "learning_rate": 0.0006, + "loss": 3.6148147583007812, + "step": 3508 + }, + { + "epoch": 48.74093490607252, + "grad_norm": 0.21660791337490082, + "learning_rate": 0.0006, + "loss": 3.641488790512085, + "step": 3509 + }, + { + "epoch": 48.75491480996068, + "grad_norm": 0.21075023710727692, + "learning_rate": 0.0006, + "loss": 3.6327688694000244, + "step": 3510 + }, + { + "epoch": 48.768894713848844, + "grad_norm": 0.19346074759960175, + "learning_rate": 0.0006, + "loss": 3.6025185585021973, + "step": 3511 + }, + { + "epoch": 48.782874617737, + "grad_norm": 0.20215240120887756, + "learning_rate": 0.0006, + "loss": 3.595707416534424, + "step": 3512 + }, + { + "epoch": 48.796854521625164, + "grad_norm": 0.1913122832775116, + "learning_rate": 0.0006, + "loss": 3.618406295776367, + "step": 3513 + }, + { + "epoch": 48.81083442551333, + "grad_norm": 0.18517033755779266, + "learning_rate": 0.0006, + "loss": 3.6212055683135986, + "step": 3514 + }, + { + "epoch": 48.824814329401484, + "grad_norm": 0.20453064143657684, + "learning_rate": 0.0006, + "loss": 3.5941221714019775, + "step": 3515 + }, + { + "epoch": 48.83879423328965, + "grad_norm": 0.20777031779289246, + "learning_rate": 0.0006, + "loss": 3.630701780319214, + "step": 3516 + }, + { + "epoch": 48.8527741371778, + "grad_norm": 0.23713789880275726, + "learning_rate": 0.0006, + "loss": 3.629256248474121, + "step": 3517 + }, + { + "epoch": 48.86675404106597, + "grad_norm": 0.1945258378982544, + "learning_rate": 0.0006, + "loss": 3.607020854949951, + "step": 3518 + }, + { + "epoch": 48.88073394495413, + "grad_norm": 0.19601863622665405, + "learning_rate": 0.0006, + "loss": 3.6200907230377197, + "step": 3519 + }, + { + "epoch": 48.89471384884229, + "grad_norm": 0.20068836212158203, + "learning_rate": 0.0006, + "loss": 3.58575701713562, + "step": 3520 + }, + { + "epoch": 48.90869375273045, + "grad_norm": 0.21790200471878052, + "learning_rate": 0.0006, + "loss": 3.6451416015625, + "step": 3521 + }, + { + "epoch": 48.92267365661861, + "grad_norm": 0.22265756130218506, + "learning_rate": 0.0006, + "loss": 3.621331214904785, + "step": 3522 + }, + { + "epoch": 48.93665356050677, + "grad_norm": 0.20316730439662933, + "learning_rate": 0.0006, + "loss": 3.614537239074707, + "step": 3523 + }, + { + "epoch": 48.95063346439493, + "grad_norm": 0.20275238156318665, + "learning_rate": 0.0006, + "loss": 3.5913281440734863, + "step": 3524 + }, + { + "epoch": 48.964613368283096, + "grad_norm": 0.20239883661270142, + "learning_rate": 0.0006, + "loss": 3.608638286590576, + "step": 3525 + }, + { + "epoch": 48.97859327217125, + "grad_norm": 0.21154041588306427, + "learning_rate": 0.0006, + "loss": 3.6233115196228027, + "step": 3526 + }, + { + "epoch": 48.992573176059416, + "grad_norm": 0.22368352115154266, + "learning_rate": 0.0006, + "loss": 3.599665880203247, + "step": 3527 + }, + { + "epoch": 49.0, + "grad_norm": 0.2675703763961792, + "learning_rate": 0.0006, + "loss": 3.637458086013794, + "step": 3528 + }, + { + "epoch": 49.0, + "eval_loss": 3.985574245452881, + "eval_runtime": 44.55, + "eval_samples_per_second": 54.815, + "eval_steps_per_second": 3.434, + "step": 3528 + }, + { + "epoch": 49.01397990388816, + "grad_norm": 0.2911863625049591, + "learning_rate": 0.0006, + "loss": 3.606170654296875, + "step": 3529 + }, + { + "epoch": 49.02795980777632, + "grad_norm": 0.26640036702156067, + "learning_rate": 0.0006, + "loss": 3.5662899017333984, + "step": 3530 + }, + { + "epoch": 49.04193971166448, + "grad_norm": 0.23250512778759003, + "learning_rate": 0.0006, + "loss": 3.5928688049316406, + "step": 3531 + }, + { + "epoch": 49.05591961555265, + "grad_norm": 0.2603093385696411, + "learning_rate": 0.0006, + "loss": 3.5702433586120605, + "step": 3532 + }, + { + "epoch": 49.0698995194408, + "grad_norm": 0.2711663246154785, + "learning_rate": 0.0006, + "loss": 3.591977596282959, + "step": 3533 + }, + { + "epoch": 49.083879423328966, + "grad_norm": 0.2536148130893707, + "learning_rate": 0.0006, + "loss": 3.5924272537231445, + "step": 3534 + }, + { + "epoch": 49.09785932721712, + "grad_norm": 0.22995208203792572, + "learning_rate": 0.0006, + "loss": 3.5760092735290527, + "step": 3535 + }, + { + "epoch": 49.111839231105286, + "grad_norm": 0.22327162325382233, + "learning_rate": 0.0006, + "loss": 3.6072137355804443, + "step": 3536 + }, + { + "epoch": 49.12581913499345, + "grad_norm": 0.2256365567445755, + "learning_rate": 0.0006, + "loss": 3.6156117916107178, + "step": 3537 + }, + { + "epoch": 49.139799038881605, + "grad_norm": 0.23647814989089966, + "learning_rate": 0.0006, + "loss": 3.5862512588500977, + "step": 3538 + }, + { + "epoch": 49.15377894276977, + "grad_norm": 0.23442648351192474, + "learning_rate": 0.0006, + "loss": 3.606386184692383, + "step": 3539 + }, + { + "epoch": 49.16775884665793, + "grad_norm": 0.22148385643959045, + "learning_rate": 0.0006, + "loss": 3.5564064979553223, + "step": 3540 + }, + { + "epoch": 49.18173875054609, + "grad_norm": 0.24589644372463226, + "learning_rate": 0.0006, + "loss": 3.5625576972961426, + "step": 3541 + }, + { + "epoch": 49.19571865443425, + "grad_norm": 0.23955261707305908, + "learning_rate": 0.0006, + "loss": 3.617833137512207, + "step": 3542 + }, + { + "epoch": 49.20969855832241, + "grad_norm": 0.2781425416469574, + "learning_rate": 0.0006, + "loss": 3.6153502464294434, + "step": 3543 + }, + { + "epoch": 49.22367846221057, + "grad_norm": 0.2622034549713135, + "learning_rate": 0.0006, + "loss": 3.608530044555664, + "step": 3544 + }, + { + "epoch": 49.237658366098735, + "grad_norm": 0.28407761454582214, + "learning_rate": 0.0006, + "loss": 3.572207450866699, + "step": 3545 + }, + { + "epoch": 49.25163826998689, + "grad_norm": 0.2722281217575073, + "learning_rate": 0.0006, + "loss": 3.591392755508423, + "step": 3546 + }, + { + "epoch": 49.265618173875055, + "grad_norm": 0.20608903467655182, + "learning_rate": 0.0006, + "loss": 3.598421573638916, + "step": 3547 + }, + { + "epoch": 49.27959807776322, + "grad_norm": 0.27233049273490906, + "learning_rate": 0.0006, + "loss": 3.5819201469421387, + "step": 3548 + }, + { + "epoch": 49.293577981651374, + "grad_norm": 0.26182129979133606, + "learning_rate": 0.0006, + "loss": 3.5855109691619873, + "step": 3549 + }, + { + "epoch": 49.30755788553954, + "grad_norm": 0.20255911350250244, + "learning_rate": 0.0006, + "loss": 3.569438934326172, + "step": 3550 + }, + { + "epoch": 49.3215377894277, + "grad_norm": 0.20045310258865356, + "learning_rate": 0.0006, + "loss": 3.5888795852661133, + "step": 3551 + }, + { + "epoch": 49.33551769331586, + "grad_norm": 0.18505392968654633, + "learning_rate": 0.0006, + "loss": 3.565467596054077, + "step": 3552 + }, + { + "epoch": 49.34949759720402, + "grad_norm": 0.2057398110628128, + "learning_rate": 0.0006, + "loss": 3.5850436687469482, + "step": 3553 + }, + { + "epoch": 49.36347750109218, + "grad_norm": 0.20007790625095367, + "learning_rate": 0.0006, + "loss": 3.5963945388793945, + "step": 3554 + }, + { + "epoch": 49.37745740498034, + "grad_norm": 0.179341122508049, + "learning_rate": 0.0006, + "loss": 3.5747077465057373, + "step": 3555 + }, + { + "epoch": 49.391437308868504, + "grad_norm": 0.1978122442960739, + "learning_rate": 0.0006, + "loss": 3.605037212371826, + "step": 3556 + }, + { + "epoch": 49.40541721275666, + "grad_norm": 0.1936761885881424, + "learning_rate": 0.0006, + "loss": 3.6293420791625977, + "step": 3557 + }, + { + "epoch": 49.419397116644824, + "grad_norm": 0.20393748581409454, + "learning_rate": 0.0006, + "loss": 3.5616302490234375, + "step": 3558 + }, + { + "epoch": 49.43337702053299, + "grad_norm": 0.19082997739315033, + "learning_rate": 0.0006, + "loss": 3.605088472366333, + "step": 3559 + }, + { + "epoch": 49.44735692442114, + "grad_norm": 0.19642551243305206, + "learning_rate": 0.0006, + "loss": 3.610870361328125, + "step": 3560 + }, + { + "epoch": 49.46133682830931, + "grad_norm": 0.21815423667430878, + "learning_rate": 0.0006, + "loss": 3.60211181640625, + "step": 3561 + }, + { + "epoch": 49.47531673219746, + "grad_norm": 0.20342762768268585, + "learning_rate": 0.0006, + "loss": 3.597529411315918, + "step": 3562 + }, + { + "epoch": 49.489296636085626, + "grad_norm": 0.19032546877861023, + "learning_rate": 0.0006, + "loss": 3.5728795528411865, + "step": 3563 + }, + { + "epoch": 49.50327653997379, + "grad_norm": 0.18237556517124176, + "learning_rate": 0.0006, + "loss": 3.5983595848083496, + "step": 3564 + }, + { + "epoch": 49.517256443861946, + "grad_norm": 0.20585589110851288, + "learning_rate": 0.0006, + "loss": 3.578320264816284, + "step": 3565 + }, + { + "epoch": 49.53123634775011, + "grad_norm": 0.20158857107162476, + "learning_rate": 0.0006, + "loss": 3.5918798446655273, + "step": 3566 + }, + { + "epoch": 49.54521625163827, + "grad_norm": 0.20195038616657257, + "learning_rate": 0.0006, + "loss": 3.605422258377075, + "step": 3567 + }, + { + "epoch": 49.55919615552643, + "grad_norm": 0.19884084165096283, + "learning_rate": 0.0006, + "loss": 3.5964083671569824, + "step": 3568 + }, + { + "epoch": 49.57317605941459, + "grad_norm": 0.21243083477020264, + "learning_rate": 0.0006, + "loss": 3.5885486602783203, + "step": 3569 + }, + { + "epoch": 49.58715596330275, + "grad_norm": 0.21059481799602509, + "learning_rate": 0.0006, + "loss": 3.572526454925537, + "step": 3570 + }, + { + "epoch": 49.60113586719091, + "grad_norm": 0.20644313097000122, + "learning_rate": 0.0006, + "loss": 3.583679676055908, + "step": 3571 + }, + { + "epoch": 49.615115771079076, + "grad_norm": 0.21343673765659332, + "learning_rate": 0.0006, + "loss": 3.6211650371551514, + "step": 3572 + }, + { + "epoch": 49.62909567496723, + "grad_norm": 0.23395343124866486, + "learning_rate": 0.0006, + "loss": 3.6003336906433105, + "step": 3573 + }, + { + "epoch": 49.643075578855395, + "grad_norm": 0.19978424906730652, + "learning_rate": 0.0006, + "loss": 3.6066763401031494, + "step": 3574 + }, + { + "epoch": 49.65705548274356, + "grad_norm": 0.21529823541641235, + "learning_rate": 0.0006, + "loss": 3.601284980773926, + "step": 3575 + }, + { + "epoch": 49.671035386631715, + "grad_norm": 0.21672746539115906, + "learning_rate": 0.0006, + "loss": 3.6084227561950684, + "step": 3576 + }, + { + "epoch": 49.68501529051988, + "grad_norm": 0.20889638364315033, + "learning_rate": 0.0006, + "loss": 3.591568946838379, + "step": 3577 + }, + { + "epoch": 49.69899519440804, + "grad_norm": 0.1960221230983734, + "learning_rate": 0.0006, + "loss": 3.6180830001831055, + "step": 3578 + }, + { + "epoch": 49.7129750982962, + "grad_norm": 0.19712410867214203, + "learning_rate": 0.0006, + "loss": 3.6197333335876465, + "step": 3579 + }, + { + "epoch": 49.72695500218436, + "grad_norm": 0.20665284991264343, + "learning_rate": 0.0006, + "loss": 3.6251301765441895, + "step": 3580 + }, + { + "epoch": 49.74093490607252, + "grad_norm": 0.21018871665000916, + "learning_rate": 0.0006, + "loss": 3.621973991394043, + "step": 3581 + }, + { + "epoch": 49.75491480996068, + "grad_norm": 0.20777495205402374, + "learning_rate": 0.0006, + "loss": 3.5826358795166016, + "step": 3582 + }, + { + "epoch": 49.768894713848844, + "grad_norm": 0.18880195915699005, + "learning_rate": 0.0006, + "loss": 3.5946998596191406, + "step": 3583 + }, + { + "epoch": 49.782874617737, + "grad_norm": 0.19894644618034363, + "learning_rate": 0.0006, + "loss": 3.5912184715270996, + "step": 3584 + }, + { + "epoch": 49.796854521625164, + "grad_norm": 0.20128944516181946, + "learning_rate": 0.0006, + "loss": 3.6370394229888916, + "step": 3585 + }, + { + "epoch": 49.81083442551333, + "grad_norm": 0.19332024455070496, + "learning_rate": 0.0006, + "loss": 3.619018077850342, + "step": 3586 + }, + { + "epoch": 49.824814329401484, + "grad_norm": 0.19303865730762482, + "learning_rate": 0.0006, + "loss": 3.578667163848877, + "step": 3587 + }, + { + "epoch": 49.83879423328965, + "grad_norm": 0.20154757797718048, + "learning_rate": 0.0006, + "loss": 3.61959171295166, + "step": 3588 + }, + { + "epoch": 49.8527741371778, + "grad_norm": 0.19653639197349548, + "learning_rate": 0.0006, + "loss": 3.6437559127807617, + "step": 3589 + }, + { + "epoch": 49.86675404106597, + "grad_norm": 0.21873407065868378, + "learning_rate": 0.0006, + "loss": 3.6131112575531006, + "step": 3590 + }, + { + "epoch": 49.88073394495413, + "grad_norm": 0.20130383968353271, + "learning_rate": 0.0006, + "loss": 3.624028444290161, + "step": 3591 + }, + { + "epoch": 49.89471384884229, + "grad_norm": 0.20206475257873535, + "learning_rate": 0.0006, + "loss": 3.5997328758239746, + "step": 3592 + }, + { + "epoch": 49.90869375273045, + "grad_norm": 0.20393261313438416, + "learning_rate": 0.0006, + "loss": 3.596066474914551, + "step": 3593 + }, + { + "epoch": 49.92267365661861, + "grad_norm": 0.19703544676303864, + "learning_rate": 0.0006, + "loss": 3.624542713165283, + "step": 3594 + }, + { + "epoch": 49.93665356050677, + "grad_norm": 0.2102314680814743, + "learning_rate": 0.0006, + "loss": 3.6082515716552734, + "step": 3595 + }, + { + "epoch": 49.95063346439493, + "grad_norm": 0.23791316151618958, + "learning_rate": 0.0006, + "loss": 3.6185569763183594, + "step": 3596 + }, + { + "epoch": 49.964613368283096, + "grad_norm": 0.24536125361919403, + "learning_rate": 0.0006, + "loss": 3.599207878112793, + "step": 3597 + }, + { + "epoch": 49.97859327217125, + "grad_norm": 0.23160327970981598, + "learning_rate": 0.0006, + "loss": 3.600921869277954, + "step": 3598 + }, + { + "epoch": 49.992573176059416, + "grad_norm": 0.22740362584590912, + "learning_rate": 0.0006, + "loss": 3.6112914085388184, + "step": 3599 + }, + { + "epoch": 50.0, + "grad_norm": 0.24303272366523743, + "learning_rate": 0.0006, + "loss": 3.6385838985443115, + "step": 3600 + }, + { + "epoch": 50.0, + "eval_loss": 3.9811089038848877, + "eval_runtime": 44.9913, + "eval_samples_per_second": 54.277, + "eval_steps_per_second": 3.401, + "step": 3600 + }, + { + "epoch": 50.01397990388816, + "grad_norm": 0.20118683576583862, + "learning_rate": 0.0006, + "loss": 3.561751127243042, + "step": 3601 + }, + { + "epoch": 50.02795980777632, + "grad_norm": 0.18722538650035858, + "learning_rate": 0.0006, + "loss": 3.5742180347442627, + "step": 3602 + }, + { + "epoch": 50.04193971166448, + "grad_norm": 0.21248385310173035, + "learning_rate": 0.0006, + "loss": 3.5759401321411133, + "step": 3603 + }, + { + "epoch": 50.05591961555265, + "grad_norm": 0.21006572246551514, + "learning_rate": 0.0006, + "loss": 3.5737462043762207, + "step": 3604 + }, + { + "epoch": 50.0698995194408, + "grad_norm": 0.20671233534812927, + "learning_rate": 0.0006, + "loss": 3.548205852508545, + "step": 3605 + }, + { + "epoch": 50.083879423328966, + "grad_norm": 0.20704609155654907, + "learning_rate": 0.0006, + "loss": 3.5862209796905518, + "step": 3606 + }, + { + "epoch": 50.09785932721712, + "grad_norm": 0.20611345767974854, + "learning_rate": 0.0006, + "loss": 3.5696640014648438, + "step": 3607 + }, + { + "epoch": 50.111839231105286, + "grad_norm": 0.20986805856227875, + "learning_rate": 0.0006, + "loss": 3.5755579471588135, + "step": 3608 + }, + { + "epoch": 50.12581913499345, + "grad_norm": 0.21727709472179413, + "learning_rate": 0.0006, + "loss": 3.5967745780944824, + "step": 3609 + }, + { + "epoch": 50.139799038881605, + "grad_norm": 0.21854986250400543, + "learning_rate": 0.0006, + "loss": 3.6115779876708984, + "step": 3610 + }, + { + "epoch": 50.15377894276977, + "grad_norm": 0.22904936969280243, + "learning_rate": 0.0006, + "loss": 3.5639889240264893, + "step": 3611 + }, + { + "epoch": 50.16775884665793, + "grad_norm": 0.23774254322052002, + "learning_rate": 0.0006, + "loss": 3.6023900508880615, + "step": 3612 + }, + { + "epoch": 50.18173875054609, + "grad_norm": 0.21548497676849365, + "learning_rate": 0.0006, + "loss": 3.5722856521606445, + "step": 3613 + }, + { + "epoch": 50.19571865443425, + "grad_norm": 0.20503196120262146, + "learning_rate": 0.0006, + "loss": 3.5899252891540527, + "step": 3614 + }, + { + "epoch": 50.20969855832241, + "grad_norm": 0.22084423899650574, + "learning_rate": 0.0006, + "loss": 3.56020450592041, + "step": 3615 + }, + { + "epoch": 50.22367846221057, + "grad_norm": 0.24276728928089142, + "learning_rate": 0.0006, + "loss": 3.585695743560791, + "step": 3616 + }, + { + "epoch": 50.237658366098735, + "grad_norm": 0.23182106018066406, + "learning_rate": 0.0006, + "loss": 3.580676555633545, + "step": 3617 + }, + { + "epoch": 50.25163826998689, + "grad_norm": 0.2341945767402649, + "learning_rate": 0.0006, + "loss": 3.579713821411133, + "step": 3618 + }, + { + "epoch": 50.265618173875055, + "grad_norm": 0.27971863746643066, + "learning_rate": 0.0006, + "loss": 3.568251371383667, + "step": 3619 + }, + { + "epoch": 50.27959807776322, + "grad_norm": 0.24740517139434814, + "learning_rate": 0.0006, + "loss": 3.5798869132995605, + "step": 3620 + }, + { + "epoch": 50.293577981651374, + "grad_norm": 0.20561005175113678, + "learning_rate": 0.0006, + "loss": 3.5610039234161377, + "step": 3621 + }, + { + "epoch": 50.30755788553954, + "grad_norm": 0.2085379660129547, + "learning_rate": 0.0006, + "loss": 3.5620288848876953, + "step": 3622 + }, + { + "epoch": 50.3215377894277, + "grad_norm": 0.20868757367134094, + "learning_rate": 0.0006, + "loss": 3.6090598106384277, + "step": 3623 + }, + { + "epoch": 50.33551769331586, + "grad_norm": 0.18991491198539734, + "learning_rate": 0.0006, + "loss": 3.55255126953125, + "step": 3624 + }, + { + "epoch": 50.34949759720402, + "grad_norm": 0.24742646515369415, + "learning_rate": 0.0006, + "loss": 3.60585880279541, + "step": 3625 + }, + { + "epoch": 50.36347750109218, + "grad_norm": 0.26971301436424255, + "learning_rate": 0.0006, + "loss": 3.5913054943084717, + "step": 3626 + }, + { + "epoch": 50.37745740498034, + "grad_norm": 0.24294881522655487, + "learning_rate": 0.0006, + "loss": 3.5570878982543945, + "step": 3627 + }, + { + "epoch": 50.391437308868504, + "grad_norm": 0.2194664478302002, + "learning_rate": 0.0006, + "loss": 3.5800397396087646, + "step": 3628 + }, + { + "epoch": 50.40541721275666, + "grad_norm": 0.2148507982492447, + "learning_rate": 0.0006, + "loss": 3.6182782649993896, + "step": 3629 + }, + { + "epoch": 50.419397116644824, + "grad_norm": 0.22235016524791718, + "learning_rate": 0.0006, + "loss": 3.5784103870391846, + "step": 3630 + }, + { + "epoch": 50.43337702053299, + "grad_norm": 0.23176309466362, + "learning_rate": 0.0006, + "loss": 3.559011459350586, + "step": 3631 + }, + { + "epoch": 50.44735692442114, + "grad_norm": 0.2267913520336151, + "learning_rate": 0.0006, + "loss": 3.5854780673980713, + "step": 3632 + }, + { + "epoch": 50.46133682830931, + "grad_norm": 0.22565901279449463, + "learning_rate": 0.0006, + "loss": 3.5891294479370117, + "step": 3633 + }, + { + "epoch": 50.47531673219746, + "grad_norm": 0.23724839091300964, + "learning_rate": 0.0006, + "loss": 3.575702428817749, + "step": 3634 + }, + { + "epoch": 50.489296636085626, + "grad_norm": 0.23679722845554352, + "learning_rate": 0.0006, + "loss": 3.588639259338379, + "step": 3635 + }, + { + "epoch": 50.50327653997379, + "grad_norm": 0.23909232020378113, + "learning_rate": 0.0006, + "loss": 3.5828709602355957, + "step": 3636 + }, + { + "epoch": 50.517256443861946, + "grad_norm": 0.24186119437217712, + "learning_rate": 0.0006, + "loss": 3.596708059310913, + "step": 3637 + }, + { + "epoch": 50.53123634775011, + "grad_norm": 0.2325516790151596, + "learning_rate": 0.0006, + "loss": 3.610769510269165, + "step": 3638 + }, + { + "epoch": 50.54521625163827, + "grad_norm": 0.205137237906456, + "learning_rate": 0.0006, + "loss": 3.612844228744507, + "step": 3639 + }, + { + "epoch": 50.55919615552643, + "grad_norm": 0.20860300958156586, + "learning_rate": 0.0006, + "loss": 3.623669147491455, + "step": 3640 + }, + { + "epoch": 50.57317605941459, + "grad_norm": 0.20029069483280182, + "learning_rate": 0.0006, + "loss": 3.6108334064483643, + "step": 3641 + }, + { + "epoch": 50.58715596330275, + "grad_norm": 0.18841931223869324, + "learning_rate": 0.0006, + "loss": 3.6073007583618164, + "step": 3642 + }, + { + "epoch": 50.60113586719091, + "grad_norm": 0.20113889873027802, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3643 + }, + { + "epoch": 50.615115771079076, + "grad_norm": 0.23595206439495087, + "learning_rate": 0.0006, + "loss": 3.634650707244873, + "step": 3644 + }, + { + "epoch": 50.62909567496723, + "grad_norm": 0.24625661969184875, + "learning_rate": 0.0006, + "loss": 3.593716621398926, + "step": 3645 + }, + { + "epoch": 50.643075578855395, + "grad_norm": 0.2182614505290985, + "learning_rate": 0.0006, + "loss": 3.6006946563720703, + "step": 3646 + }, + { + "epoch": 50.65705548274356, + "grad_norm": 0.20867182314395905, + "learning_rate": 0.0006, + "loss": 3.6249008178710938, + "step": 3647 + }, + { + "epoch": 50.671035386631715, + "grad_norm": 0.20451945066452026, + "learning_rate": 0.0006, + "loss": 3.5870985984802246, + "step": 3648 + }, + { + "epoch": 50.68501529051988, + "grad_norm": 0.19160118699073792, + "learning_rate": 0.0006, + "loss": 3.6104488372802734, + "step": 3649 + }, + { + "epoch": 50.69899519440804, + "grad_norm": 0.18884453177452087, + "learning_rate": 0.0006, + "loss": 3.607893943786621, + "step": 3650 + }, + { + "epoch": 50.7129750982962, + "grad_norm": 0.19570060074329376, + "learning_rate": 0.0006, + "loss": 3.5938732624053955, + "step": 3651 + }, + { + "epoch": 50.72695500218436, + "grad_norm": 0.21978189051151276, + "learning_rate": 0.0006, + "loss": 3.5894908905029297, + "step": 3652 + }, + { + "epoch": 50.74093490607252, + "grad_norm": 0.19930903613567352, + "learning_rate": 0.0006, + "loss": 3.6067557334899902, + "step": 3653 + }, + { + "epoch": 50.75491480996068, + "grad_norm": 0.19450204074382782, + "learning_rate": 0.0006, + "loss": 3.5989646911621094, + "step": 3654 + }, + { + "epoch": 50.768894713848844, + "grad_norm": 0.1925407201051712, + "learning_rate": 0.0006, + "loss": 3.604339599609375, + "step": 3655 + }, + { + "epoch": 50.782874617737, + "grad_norm": 0.19232864677906036, + "learning_rate": 0.0006, + "loss": 3.5789241790771484, + "step": 3656 + }, + { + "epoch": 50.796854521625164, + "grad_norm": 0.1937529742717743, + "learning_rate": 0.0006, + "loss": 3.6060590744018555, + "step": 3657 + }, + { + "epoch": 50.81083442551333, + "grad_norm": 0.19863007962703705, + "learning_rate": 0.0006, + "loss": 3.5944440364837646, + "step": 3658 + }, + { + "epoch": 50.824814329401484, + "grad_norm": 0.18879804015159607, + "learning_rate": 0.0006, + "loss": 3.6017069816589355, + "step": 3659 + }, + { + "epoch": 50.83879423328965, + "grad_norm": 0.20111720263957977, + "learning_rate": 0.0006, + "loss": 3.593327522277832, + "step": 3660 + }, + { + "epoch": 50.8527741371778, + "grad_norm": 0.22593358159065247, + "learning_rate": 0.0006, + "loss": 3.5856096744537354, + "step": 3661 + }, + { + "epoch": 50.86675404106597, + "grad_norm": 0.22624441981315613, + "learning_rate": 0.0006, + "loss": 3.6144661903381348, + "step": 3662 + }, + { + "epoch": 50.88073394495413, + "grad_norm": 0.22052904963493347, + "learning_rate": 0.0006, + "loss": 3.5895116329193115, + "step": 3663 + }, + { + "epoch": 50.89471384884229, + "grad_norm": 0.2248559594154358, + "learning_rate": 0.0006, + "loss": 3.6400208473205566, + "step": 3664 + }, + { + "epoch": 50.90869375273045, + "grad_norm": 0.20209142565727234, + "learning_rate": 0.0006, + "loss": 3.6059279441833496, + "step": 3665 + }, + { + "epoch": 50.92267365661861, + "grad_norm": 0.2075854390859604, + "learning_rate": 0.0006, + "loss": 3.590074062347412, + "step": 3666 + }, + { + "epoch": 50.93665356050677, + "grad_norm": 0.20524698495864868, + "learning_rate": 0.0006, + "loss": 3.600741147994995, + "step": 3667 + }, + { + "epoch": 50.95063346439493, + "grad_norm": 0.1922466903924942, + "learning_rate": 0.0006, + "loss": 3.5984225273132324, + "step": 3668 + }, + { + "epoch": 50.964613368283096, + "grad_norm": 0.18852637708187103, + "learning_rate": 0.0006, + "loss": 3.6204333305358887, + "step": 3669 + }, + { + "epoch": 50.97859327217125, + "grad_norm": 0.22050459682941437, + "learning_rate": 0.0006, + "loss": 3.6371538639068604, + "step": 3670 + }, + { + "epoch": 50.992573176059416, + "grad_norm": 0.21477681398391724, + "learning_rate": 0.0006, + "loss": 3.608738899230957, + "step": 3671 + }, + { + "epoch": 51.0, + "grad_norm": 0.22061094641685486, + "learning_rate": 0.0006, + "loss": 3.6209959983825684, + "step": 3672 + }, + { + "epoch": 51.0, + "eval_loss": 3.9762842655181885, + "eval_runtime": 44.8353, + "eval_samples_per_second": 54.466, + "eval_steps_per_second": 3.412, + "step": 3672 + }, + { + "epoch": 51.01397990388816, + "grad_norm": 0.19009192287921906, + "learning_rate": 0.0006, + "loss": 3.5604426860809326, + "step": 3673 + }, + { + "epoch": 51.02795980777632, + "grad_norm": 0.2217264175415039, + "learning_rate": 0.0006, + "loss": 3.5595664978027344, + "step": 3674 + }, + { + "epoch": 51.04193971166448, + "grad_norm": 0.2747595012187958, + "learning_rate": 0.0006, + "loss": 3.5800085067749023, + "step": 3675 + }, + { + "epoch": 51.05591961555265, + "grad_norm": 0.26963043212890625, + "learning_rate": 0.0006, + "loss": 3.5529065132141113, + "step": 3676 + }, + { + "epoch": 51.0698995194408, + "grad_norm": 0.2304207682609558, + "learning_rate": 0.0006, + "loss": 3.585238456726074, + "step": 3677 + }, + { + "epoch": 51.083879423328966, + "grad_norm": 0.22073867917060852, + "learning_rate": 0.0006, + "loss": 3.542267322540283, + "step": 3678 + }, + { + "epoch": 51.09785932721712, + "grad_norm": 0.22550931572914124, + "learning_rate": 0.0006, + "loss": 3.5693743228912354, + "step": 3679 + }, + { + "epoch": 51.111839231105286, + "grad_norm": 0.2347114384174347, + "learning_rate": 0.0006, + "loss": 3.5830154418945312, + "step": 3680 + }, + { + "epoch": 51.12581913499345, + "grad_norm": 0.24889813363552094, + "learning_rate": 0.0006, + "loss": 3.581010341644287, + "step": 3681 + }, + { + "epoch": 51.139799038881605, + "grad_norm": 0.2401021122932434, + "learning_rate": 0.0006, + "loss": 3.619450092315674, + "step": 3682 + }, + { + "epoch": 51.15377894276977, + "grad_norm": 0.22221142053604126, + "learning_rate": 0.0006, + "loss": 3.573624610900879, + "step": 3683 + }, + { + "epoch": 51.16775884665793, + "grad_norm": 0.2429024577140808, + "learning_rate": 0.0006, + "loss": 3.548610210418701, + "step": 3684 + }, + { + "epoch": 51.18173875054609, + "grad_norm": 0.26470765471458435, + "learning_rate": 0.0006, + "loss": 3.5582218170166016, + "step": 3685 + }, + { + "epoch": 51.19571865443425, + "grad_norm": 0.2632715404033661, + "learning_rate": 0.0006, + "loss": 3.5976979732513428, + "step": 3686 + }, + { + "epoch": 51.20969855832241, + "grad_norm": 0.2567448616027832, + "learning_rate": 0.0006, + "loss": 3.592031478881836, + "step": 3687 + }, + { + "epoch": 51.22367846221057, + "grad_norm": 0.25299885869026184, + "learning_rate": 0.0006, + "loss": 3.579765796661377, + "step": 3688 + }, + { + "epoch": 51.237658366098735, + "grad_norm": 0.22765189409255981, + "learning_rate": 0.0006, + "loss": 3.5677521228790283, + "step": 3689 + }, + { + "epoch": 51.25163826998689, + "grad_norm": 0.23369887471199036, + "learning_rate": 0.0006, + "loss": 3.585879325866699, + "step": 3690 + }, + { + "epoch": 51.265618173875055, + "grad_norm": 0.21358822286128998, + "learning_rate": 0.0006, + "loss": 3.568866729736328, + "step": 3691 + }, + { + "epoch": 51.27959807776322, + "grad_norm": 0.2127659171819687, + "learning_rate": 0.0006, + "loss": 3.614520311355591, + "step": 3692 + }, + { + "epoch": 51.293577981651374, + "grad_norm": 0.22829636931419373, + "learning_rate": 0.0006, + "loss": 3.6004438400268555, + "step": 3693 + }, + { + "epoch": 51.30755788553954, + "grad_norm": 0.223104789853096, + "learning_rate": 0.0006, + "loss": 3.5791001319885254, + "step": 3694 + }, + { + "epoch": 51.3215377894277, + "grad_norm": 0.2084331065416336, + "learning_rate": 0.0006, + "loss": 3.572514295578003, + "step": 3695 + }, + { + "epoch": 51.33551769331586, + "grad_norm": 0.21115142107009888, + "learning_rate": 0.0006, + "loss": 3.5736331939697266, + "step": 3696 + }, + { + "epoch": 51.34949759720402, + "grad_norm": 0.2158546894788742, + "learning_rate": 0.0006, + "loss": 3.587161064147949, + "step": 3697 + }, + { + "epoch": 51.36347750109218, + "grad_norm": 0.2478281408548355, + "learning_rate": 0.0006, + "loss": 3.5879693031311035, + "step": 3698 + }, + { + "epoch": 51.37745740498034, + "grad_norm": 0.25137850642204285, + "learning_rate": 0.0006, + "loss": 3.58297061920166, + "step": 3699 + }, + { + "epoch": 51.391437308868504, + "grad_norm": 0.22961364686489105, + "learning_rate": 0.0006, + "loss": 3.5556459426879883, + "step": 3700 + }, + { + "epoch": 51.40541721275666, + "grad_norm": 0.22561277449131012, + "learning_rate": 0.0006, + "loss": 3.60197114944458, + "step": 3701 + }, + { + "epoch": 51.419397116644824, + "grad_norm": 0.20331767201423645, + "learning_rate": 0.0006, + "loss": 3.5815134048461914, + "step": 3702 + }, + { + "epoch": 51.43337702053299, + "grad_norm": 0.1941518634557724, + "learning_rate": 0.0006, + "loss": 3.6055145263671875, + "step": 3703 + }, + { + "epoch": 51.44735692442114, + "grad_norm": 0.19306789338588715, + "learning_rate": 0.0006, + "loss": 3.6101536750793457, + "step": 3704 + }, + { + "epoch": 51.46133682830931, + "grad_norm": 0.1830628365278244, + "learning_rate": 0.0006, + "loss": 3.5978426933288574, + "step": 3705 + }, + { + "epoch": 51.47531673219746, + "grad_norm": 0.19231490790843964, + "learning_rate": 0.0006, + "loss": 3.54502534866333, + "step": 3706 + }, + { + "epoch": 51.489296636085626, + "grad_norm": 0.19109117984771729, + "learning_rate": 0.0006, + "loss": 3.5957441329956055, + "step": 3707 + }, + { + "epoch": 51.50327653997379, + "grad_norm": 0.2032860815525055, + "learning_rate": 0.0006, + "loss": 3.5626730918884277, + "step": 3708 + }, + { + "epoch": 51.517256443861946, + "grad_norm": 0.19685189425945282, + "learning_rate": 0.0006, + "loss": 3.580399990081787, + "step": 3709 + }, + { + "epoch": 51.53123634775011, + "grad_norm": 0.19273017346858978, + "learning_rate": 0.0006, + "loss": 3.5428152084350586, + "step": 3710 + }, + { + "epoch": 51.54521625163827, + "grad_norm": 0.20198430120944977, + "learning_rate": 0.0006, + "loss": 3.607492446899414, + "step": 3711 + }, + { + "epoch": 51.55919615552643, + "grad_norm": 0.2267402559518814, + "learning_rate": 0.0006, + "loss": 3.580479621887207, + "step": 3712 + }, + { + "epoch": 51.57317605941459, + "grad_norm": 0.2247764617204666, + "learning_rate": 0.0006, + "loss": 3.5921316146850586, + "step": 3713 + }, + { + "epoch": 51.58715596330275, + "grad_norm": 0.23907902836799622, + "learning_rate": 0.0006, + "loss": 3.6014928817749023, + "step": 3714 + }, + { + "epoch": 51.60113586719091, + "grad_norm": 0.25907906889915466, + "learning_rate": 0.0006, + "loss": 3.5900192260742188, + "step": 3715 + }, + { + "epoch": 51.615115771079076, + "grad_norm": 0.26282405853271484, + "learning_rate": 0.0006, + "loss": 3.5727553367614746, + "step": 3716 + }, + { + "epoch": 51.62909567496723, + "grad_norm": 0.2541179060935974, + "learning_rate": 0.0006, + "loss": 3.5835776329040527, + "step": 3717 + }, + { + "epoch": 51.643075578855395, + "grad_norm": 0.23372016847133636, + "learning_rate": 0.0006, + "loss": 3.5902652740478516, + "step": 3718 + }, + { + "epoch": 51.65705548274356, + "grad_norm": 0.22827622294425964, + "learning_rate": 0.0006, + "loss": 3.6048200130462646, + "step": 3719 + }, + { + "epoch": 51.671035386631715, + "grad_norm": 0.21026845276355743, + "learning_rate": 0.0006, + "loss": 3.5587573051452637, + "step": 3720 + }, + { + "epoch": 51.68501529051988, + "grad_norm": 0.23485958576202393, + "learning_rate": 0.0006, + "loss": 3.6212477684020996, + "step": 3721 + }, + { + "epoch": 51.69899519440804, + "grad_norm": 0.2676871120929718, + "learning_rate": 0.0006, + "loss": 3.597837448120117, + "step": 3722 + }, + { + "epoch": 51.7129750982962, + "grad_norm": 0.23661476373672485, + "learning_rate": 0.0006, + "loss": 3.616079330444336, + "step": 3723 + }, + { + "epoch": 51.72695500218436, + "grad_norm": 0.2212267816066742, + "learning_rate": 0.0006, + "loss": 3.6103296279907227, + "step": 3724 + }, + { + "epoch": 51.74093490607252, + "grad_norm": 0.22888682782649994, + "learning_rate": 0.0006, + "loss": 3.6099889278411865, + "step": 3725 + }, + { + "epoch": 51.75491480996068, + "grad_norm": 0.21740387380123138, + "learning_rate": 0.0006, + "loss": 3.5859200954437256, + "step": 3726 + }, + { + "epoch": 51.768894713848844, + "grad_norm": 0.20819106698036194, + "learning_rate": 0.0006, + "loss": 3.5875396728515625, + "step": 3727 + }, + { + "epoch": 51.782874617737, + "grad_norm": 0.21574485301971436, + "learning_rate": 0.0006, + "loss": 3.6203761100769043, + "step": 3728 + }, + { + "epoch": 51.796854521625164, + "grad_norm": 0.21275651454925537, + "learning_rate": 0.0006, + "loss": 3.6066012382507324, + "step": 3729 + }, + { + "epoch": 51.81083442551333, + "grad_norm": 0.2043808251619339, + "learning_rate": 0.0006, + "loss": 3.571417808532715, + "step": 3730 + }, + { + "epoch": 51.824814329401484, + "grad_norm": 0.2082396298646927, + "learning_rate": 0.0006, + "loss": 3.6076579093933105, + "step": 3731 + }, + { + "epoch": 51.83879423328965, + "grad_norm": 0.23331953585147858, + "learning_rate": 0.0006, + "loss": 3.621837615966797, + "step": 3732 + }, + { + "epoch": 51.8527741371778, + "grad_norm": 0.25569960474967957, + "learning_rate": 0.0006, + "loss": 3.602004051208496, + "step": 3733 + }, + { + "epoch": 51.86675404106597, + "grad_norm": 0.230540469288826, + "learning_rate": 0.0006, + "loss": 3.5829110145568848, + "step": 3734 + }, + { + "epoch": 51.88073394495413, + "grad_norm": 0.20307230949401855, + "learning_rate": 0.0006, + "loss": 3.5572190284729004, + "step": 3735 + }, + { + "epoch": 51.89471384884229, + "grad_norm": 0.20902153849601746, + "learning_rate": 0.0006, + "loss": 3.5939853191375732, + "step": 3736 + }, + { + "epoch": 51.90869375273045, + "grad_norm": 0.20433510839939117, + "learning_rate": 0.0006, + "loss": 3.6104702949523926, + "step": 3737 + }, + { + "epoch": 51.92267365661861, + "grad_norm": 0.2285638302564621, + "learning_rate": 0.0006, + "loss": 3.5588834285736084, + "step": 3738 + }, + { + "epoch": 51.93665356050677, + "grad_norm": 0.2388262301683426, + "learning_rate": 0.0006, + "loss": 3.6203103065490723, + "step": 3739 + }, + { + "epoch": 51.95063346439493, + "grad_norm": 0.22572419047355652, + "learning_rate": 0.0006, + "loss": 3.6191892623901367, + "step": 3740 + }, + { + "epoch": 51.964613368283096, + "grad_norm": 0.21060727536678314, + "learning_rate": 0.0006, + "loss": 3.620879650115967, + "step": 3741 + }, + { + "epoch": 51.97859327217125, + "grad_norm": 0.2045326828956604, + "learning_rate": 0.0006, + "loss": 3.5959091186523438, + "step": 3742 + }, + { + "epoch": 51.992573176059416, + "grad_norm": 0.21882471442222595, + "learning_rate": 0.0006, + "loss": 3.6504573822021484, + "step": 3743 + }, + { + "epoch": 52.0, + "grad_norm": 0.24379056692123413, + "learning_rate": 0.0006, + "loss": 3.6293625831604004, + "step": 3744 + }, + { + "epoch": 52.0, + "eval_loss": 3.9772427082061768, + "eval_runtime": 44.248, + "eval_samples_per_second": 55.189, + "eval_steps_per_second": 3.458, + "step": 3744 + }, + { + "epoch": 52.01397990388816, + "grad_norm": 0.19682207703590393, + "learning_rate": 0.0006, + "loss": 3.604281425476074, + "step": 3745 + }, + { + "epoch": 52.02795980777632, + "grad_norm": 0.23003028333187103, + "learning_rate": 0.0006, + "loss": 3.588266372680664, + "step": 3746 + }, + { + "epoch": 52.04193971166448, + "grad_norm": 0.2458166778087616, + "learning_rate": 0.0006, + "loss": 3.59077787399292, + "step": 3747 + }, + { + "epoch": 52.05591961555265, + "grad_norm": 0.23873521387577057, + "learning_rate": 0.0006, + "loss": 3.556537628173828, + "step": 3748 + }, + { + "epoch": 52.0698995194408, + "grad_norm": 0.21737053990364075, + "learning_rate": 0.0006, + "loss": 3.5758891105651855, + "step": 3749 + }, + { + "epoch": 52.083879423328966, + "grad_norm": 0.22239601612091064, + "learning_rate": 0.0006, + "loss": 3.552678346633911, + "step": 3750 + }, + { + "epoch": 52.09785932721712, + "grad_norm": 0.21818044781684875, + "learning_rate": 0.0006, + "loss": 3.577249526977539, + "step": 3751 + }, + { + "epoch": 52.111839231105286, + "grad_norm": 0.24513746798038483, + "learning_rate": 0.0006, + "loss": 3.569178581237793, + "step": 3752 + }, + { + "epoch": 52.12581913499345, + "grad_norm": 0.2801238000392914, + "learning_rate": 0.0006, + "loss": 3.556199073791504, + "step": 3753 + }, + { + "epoch": 52.139799038881605, + "grad_norm": 0.2722291648387909, + "learning_rate": 0.0006, + "loss": 3.5571072101593018, + "step": 3754 + }, + { + "epoch": 52.15377894276977, + "grad_norm": 0.2146541327238083, + "learning_rate": 0.0006, + "loss": 3.5831902027130127, + "step": 3755 + }, + { + "epoch": 52.16775884665793, + "grad_norm": 0.21040776371955872, + "learning_rate": 0.0006, + "loss": 3.6021504402160645, + "step": 3756 + }, + { + "epoch": 52.18173875054609, + "grad_norm": 0.24059702455997467, + "learning_rate": 0.0006, + "loss": 3.57401704788208, + "step": 3757 + }, + { + "epoch": 52.19571865443425, + "grad_norm": 0.25043657422065735, + "learning_rate": 0.0006, + "loss": 3.5776405334472656, + "step": 3758 + }, + { + "epoch": 52.20969855832241, + "grad_norm": 0.24292849004268646, + "learning_rate": 0.0006, + "loss": 3.5602574348449707, + "step": 3759 + }, + { + "epoch": 52.22367846221057, + "grad_norm": 0.2159980833530426, + "learning_rate": 0.0006, + "loss": 3.552079200744629, + "step": 3760 + }, + { + "epoch": 52.237658366098735, + "grad_norm": 0.19305892288684845, + "learning_rate": 0.0006, + "loss": 3.581195831298828, + "step": 3761 + }, + { + "epoch": 52.25163826998689, + "grad_norm": 0.2115706503391266, + "learning_rate": 0.0006, + "loss": 3.5689306259155273, + "step": 3762 + }, + { + "epoch": 52.265618173875055, + "grad_norm": 0.21885409951210022, + "learning_rate": 0.0006, + "loss": 3.5549206733703613, + "step": 3763 + }, + { + "epoch": 52.27959807776322, + "grad_norm": 0.2069413661956787, + "learning_rate": 0.0006, + "loss": 3.5743770599365234, + "step": 3764 + }, + { + "epoch": 52.293577981651374, + "grad_norm": 0.21922551095485687, + "learning_rate": 0.0006, + "loss": 3.5780110359191895, + "step": 3765 + }, + { + "epoch": 52.30755788553954, + "grad_norm": 0.21675541996955872, + "learning_rate": 0.0006, + "loss": 3.575730800628662, + "step": 3766 + }, + { + "epoch": 52.3215377894277, + "grad_norm": 0.21250510215759277, + "learning_rate": 0.0006, + "loss": 3.546060085296631, + "step": 3767 + }, + { + "epoch": 52.33551769331586, + "grad_norm": 0.23665618896484375, + "learning_rate": 0.0006, + "loss": 3.5887606143951416, + "step": 3768 + }, + { + "epoch": 52.34949759720402, + "grad_norm": 0.2525961399078369, + "learning_rate": 0.0006, + "loss": 3.5885281562805176, + "step": 3769 + }, + { + "epoch": 52.36347750109218, + "grad_norm": 0.26285895705223083, + "learning_rate": 0.0006, + "loss": 3.5880684852600098, + "step": 3770 + }, + { + "epoch": 52.37745740498034, + "grad_norm": 0.24714398384094238, + "learning_rate": 0.0006, + "loss": 3.548165798187256, + "step": 3771 + }, + { + "epoch": 52.391437308868504, + "grad_norm": 0.2234657257795334, + "learning_rate": 0.0006, + "loss": 3.56547212600708, + "step": 3772 + }, + { + "epoch": 52.40541721275666, + "grad_norm": 0.20636901259422302, + "learning_rate": 0.0006, + "loss": 3.5702133178710938, + "step": 3773 + }, + { + "epoch": 52.419397116644824, + "grad_norm": 0.20656965672969818, + "learning_rate": 0.0006, + "loss": 3.614602565765381, + "step": 3774 + }, + { + "epoch": 52.43337702053299, + "grad_norm": 0.20018167793750763, + "learning_rate": 0.0006, + "loss": 3.6063036918640137, + "step": 3775 + }, + { + "epoch": 52.44735692442114, + "grad_norm": 0.21859782934188843, + "learning_rate": 0.0006, + "loss": 3.5728869438171387, + "step": 3776 + }, + { + "epoch": 52.46133682830931, + "grad_norm": 0.21622174978256226, + "learning_rate": 0.0006, + "loss": 3.5657505989074707, + "step": 3777 + }, + { + "epoch": 52.47531673219746, + "grad_norm": 0.19779632985591888, + "learning_rate": 0.0006, + "loss": 3.5841145515441895, + "step": 3778 + }, + { + "epoch": 52.489296636085626, + "grad_norm": 0.21635952591896057, + "learning_rate": 0.0006, + "loss": 3.582096576690674, + "step": 3779 + }, + { + "epoch": 52.50327653997379, + "grad_norm": 0.21348397433757782, + "learning_rate": 0.0006, + "loss": 3.5654468536376953, + "step": 3780 + }, + { + "epoch": 52.517256443861946, + "grad_norm": 0.19572246074676514, + "learning_rate": 0.0006, + "loss": 3.5806241035461426, + "step": 3781 + }, + { + "epoch": 52.53123634775011, + "grad_norm": 0.1887553185224533, + "learning_rate": 0.0006, + "loss": 3.5752944946289062, + "step": 3782 + }, + { + "epoch": 52.54521625163827, + "grad_norm": 0.2192932814359665, + "learning_rate": 0.0006, + "loss": 3.5846266746520996, + "step": 3783 + }, + { + "epoch": 52.55919615552643, + "grad_norm": 0.23833444714546204, + "learning_rate": 0.0006, + "loss": 3.563093900680542, + "step": 3784 + }, + { + "epoch": 52.57317605941459, + "grad_norm": 0.26471760869026184, + "learning_rate": 0.0006, + "loss": 3.5582051277160645, + "step": 3785 + }, + { + "epoch": 52.58715596330275, + "grad_norm": 0.2767478823661804, + "learning_rate": 0.0006, + "loss": 3.5650997161865234, + "step": 3786 + }, + { + "epoch": 52.60113586719091, + "grad_norm": 0.26556241512298584, + "learning_rate": 0.0006, + "loss": 3.5944058895111084, + "step": 3787 + }, + { + "epoch": 52.615115771079076, + "grad_norm": 0.2733243405818939, + "learning_rate": 0.0006, + "loss": 3.5781195163726807, + "step": 3788 + }, + { + "epoch": 52.62909567496723, + "grad_norm": 0.24836041033267975, + "learning_rate": 0.0006, + "loss": 3.582634687423706, + "step": 3789 + }, + { + "epoch": 52.643075578855395, + "grad_norm": 0.2119593471288681, + "learning_rate": 0.0006, + "loss": 3.5851502418518066, + "step": 3790 + }, + { + "epoch": 52.65705548274356, + "grad_norm": 0.23237599432468414, + "learning_rate": 0.0006, + "loss": 3.5877747535705566, + "step": 3791 + }, + { + "epoch": 52.671035386631715, + "grad_norm": 0.21037372946739197, + "learning_rate": 0.0006, + "loss": 3.579045295715332, + "step": 3792 + }, + { + "epoch": 52.68501529051988, + "grad_norm": 0.19258099794387817, + "learning_rate": 0.0006, + "loss": 3.599151611328125, + "step": 3793 + }, + { + "epoch": 52.69899519440804, + "grad_norm": 0.18808242678642273, + "learning_rate": 0.0006, + "loss": 3.580679416656494, + "step": 3794 + }, + { + "epoch": 52.7129750982962, + "grad_norm": 0.18208397924900055, + "learning_rate": 0.0006, + "loss": 3.5940206050872803, + "step": 3795 + }, + { + "epoch": 52.72695500218436, + "grad_norm": 0.18173424899578094, + "learning_rate": 0.0006, + "loss": 3.5997331142425537, + "step": 3796 + }, + { + "epoch": 52.74093490607252, + "grad_norm": 0.1868390142917633, + "learning_rate": 0.0006, + "loss": 3.60007905960083, + "step": 3797 + }, + { + "epoch": 52.75491480996068, + "grad_norm": 0.1859273761510849, + "learning_rate": 0.0006, + "loss": 3.602668285369873, + "step": 3798 + }, + { + "epoch": 52.768894713848844, + "grad_norm": 0.18063156306743622, + "learning_rate": 0.0006, + "loss": 3.579869270324707, + "step": 3799 + }, + { + "epoch": 52.782874617737, + "grad_norm": 0.18920548260211945, + "learning_rate": 0.0006, + "loss": 3.6056337356567383, + "step": 3800 + }, + { + "epoch": 52.796854521625164, + "grad_norm": 0.20110033452510834, + "learning_rate": 0.0006, + "loss": 3.5694475173950195, + "step": 3801 + }, + { + "epoch": 52.81083442551333, + "grad_norm": 0.20331093668937683, + "learning_rate": 0.0006, + "loss": 3.5940358638763428, + "step": 3802 + }, + { + "epoch": 52.824814329401484, + "grad_norm": 0.2035607248544693, + "learning_rate": 0.0006, + "loss": 3.621305465698242, + "step": 3803 + }, + { + "epoch": 52.83879423328965, + "grad_norm": 0.1974431872367859, + "learning_rate": 0.0006, + "loss": 3.5959153175354004, + "step": 3804 + }, + { + "epoch": 52.8527741371778, + "grad_norm": 0.1832808405160904, + "learning_rate": 0.0006, + "loss": 3.582113265991211, + "step": 3805 + }, + { + "epoch": 52.86675404106597, + "grad_norm": 0.20269927382469177, + "learning_rate": 0.0006, + "loss": 3.5923209190368652, + "step": 3806 + }, + { + "epoch": 52.88073394495413, + "grad_norm": 0.20628313720226288, + "learning_rate": 0.0006, + "loss": 3.599729537963867, + "step": 3807 + }, + { + "epoch": 52.89471384884229, + "grad_norm": 0.2144002914428711, + "learning_rate": 0.0006, + "loss": 3.601041793823242, + "step": 3808 + }, + { + "epoch": 52.90869375273045, + "grad_norm": 0.215015709400177, + "learning_rate": 0.0006, + "loss": 3.5873360633850098, + "step": 3809 + }, + { + "epoch": 52.92267365661861, + "grad_norm": 0.23122714459896088, + "learning_rate": 0.0006, + "loss": 3.5839362144470215, + "step": 3810 + }, + { + "epoch": 52.93665356050677, + "grad_norm": 0.2381119281053543, + "learning_rate": 0.0006, + "loss": 3.564755439758301, + "step": 3811 + }, + { + "epoch": 52.95063346439493, + "grad_norm": 0.22975024580955505, + "learning_rate": 0.0006, + "loss": 3.594020128250122, + "step": 3812 + }, + { + "epoch": 52.964613368283096, + "grad_norm": 0.2419184148311615, + "learning_rate": 0.0006, + "loss": 3.5917205810546875, + "step": 3813 + }, + { + "epoch": 52.97859327217125, + "grad_norm": 0.21143122017383575, + "learning_rate": 0.0006, + "loss": 3.626842975616455, + "step": 3814 + }, + { + "epoch": 52.992573176059416, + "grad_norm": 0.195548415184021, + "learning_rate": 0.0006, + "loss": 3.5798377990722656, + "step": 3815 + }, + { + "epoch": 53.0, + "grad_norm": 0.22441816329956055, + "learning_rate": 0.0006, + "loss": 3.5652856826782227, + "step": 3816 + }, + { + "epoch": 53.0, + "eval_loss": 3.9635632038116455, + "eval_runtime": 44.772, + "eval_samples_per_second": 54.543, + "eval_steps_per_second": 3.417, + "step": 3816 + }, + { + "epoch": 53.01397990388816, + "grad_norm": 0.2547561228275299, + "learning_rate": 0.0006, + "loss": 3.562561511993408, + "step": 3817 + }, + { + "epoch": 53.02795980777632, + "grad_norm": 0.36890196800231934, + "learning_rate": 0.0006, + "loss": 3.534581184387207, + "step": 3818 + }, + { + "epoch": 53.04193971166448, + "grad_norm": 0.42631810903549194, + "learning_rate": 0.0006, + "loss": 3.5438239574432373, + "step": 3819 + }, + { + "epoch": 53.05591961555265, + "grad_norm": 0.29458126425743103, + "learning_rate": 0.0006, + "loss": 3.5594735145568848, + "step": 3820 + }, + { + "epoch": 53.0698995194408, + "grad_norm": 0.24320989847183228, + "learning_rate": 0.0006, + "loss": 3.5715155601501465, + "step": 3821 + }, + { + "epoch": 53.083879423328966, + "grad_norm": 0.3012531101703644, + "learning_rate": 0.0006, + "loss": 3.5324978828430176, + "step": 3822 + }, + { + "epoch": 53.09785932721712, + "grad_norm": 0.2789555788040161, + "learning_rate": 0.0006, + "loss": 3.5848183631896973, + "step": 3823 + }, + { + "epoch": 53.111839231105286, + "grad_norm": 0.2488897293806076, + "learning_rate": 0.0006, + "loss": 3.5853679180145264, + "step": 3824 + }, + { + "epoch": 53.12581913499345, + "grad_norm": 0.3016898036003113, + "learning_rate": 0.0006, + "loss": 3.585637092590332, + "step": 3825 + }, + { + "epoch": 53.139799038881605, + "grad_norm": 0.30293571949005127, + "learning_rate": 0.0006, + "loss": 3.5745015144348145, + "step": 3826 + }, + { + "epoch": 53.15377894276977, + "grad_norm": 0.24611566960811615, + "learning_rate": 0.0006, + "loss": 3.5761728286743164, + "step": 3827 + }, + { + "epoch": 53.16775884665793, + "grad_norm": 0.23852500319480896, + "learning_rate": 0.0006, + "loss": 3.59317946434021, + "step": 3828 + }, + { + "epoch": 53.18173875054609, + "grad_norm": 0.27882838249206543, + "learning_rate": 0.0006, + "loss": 3.589779853820801, + "step": 3829 + }, + { + "epoch": 53.19571865443425, + "grad_norm": 0.3252250552177429, + "learning_rate": 0.0006, + "loss": 3.564526081085205, + "step": 3830 + }, + { + "epoch": 53.20969855832241, + "grad_norm": 0.29635530710220337, + "learning_rate": 0.0006, + "loss": 3.5309946537017822, + "step": 3831 + }, + { + "epoch": 53.22367846221057, + "grad_norm": 0.25211700797080994, + "learning_rate": 0.0006, + "loss": 3.5795631408691406, + "step": 3832 + }, + { + "epoch": 53.237658366098735, + "grad_norm": 0.20772705972194672, + "learning_rate": 0.0006, + "loss": 3.5649163722991943, + "step": 3833 + }, + { + "epoch": 53.25163826998689, + "grad_norm": 0.2460525780916214, + "learning_rate": 0.0006, + "loss": 3.5484111309051514, + "step": 3834 + }, + { + "epoch": 53.265618173875055, + "grad_norm": 0.24652884900569916, + "learning_rate": 0.0006, + "loss": 3.5631136894226074, + "step": 3835 + }, + { + "epoch": 53.27959807776322, + "grad_norm": 0.23740890622138977, + "learning_rate": 0.0006, + "loss": 3.6234607696533203, + "step": 3836 + }, + { + "epoch": 53.293577981651374, + "grad_norm": 0.2463800311088562, + "learning_rate": 0.0006, + "loss": 3.5578083992004395, + "step": 3837 + }, + { + "epoch": 53.30755788553954, + "grad_norm": 0.23402568697929382, + "learning_rate": 0.0006, + "loss": 3.559845209121704, + "step": 3838 + }, + { + "epoch": 53.3215377894277, + "grad_norm": 0.2539580762386322, + "learning_rate": 0.0006, + "loss": 3.5863685607910156, + "step": 3839 + }, + { + "epoch": 53.33551769331586, + "grad_norm": 0.24994857609272003, + "learning_rate": 0.0006, + "loss": 3.5758700370788574, + "step": 3840 + }, + { + "epoch": 53.34949759720402, + "grad_norm": 0.21340647339820862, + "learning_rate": 0.0006, + "loss": 3.588602066040039, + "step": 3841 + }, + { + "epoch": 53.36347750109218, + "grad_norm": 0.2029065042734146, + "learning_rate": 0.0006, + "loss": 3.58594012260437, + "step": 3842 + }, + { + "epoch": 53.37745740498034, + "grad_norm": 0.20266403257846832, + "learning_rate": 0.0006, + "loss": 3.5906057357788086, + "step": 3843 + }, + { + "epoch": 53.391437308868504, + "grad_norm": 0.19940714538097382, + "learning_rate": 0.0006, + "loss": 3.5458335876464844, + "step": 3844 + }, + { + "epoch": 53.40541721275666, + "grad_norm": 0.21295064687728882, + "learning_rate": 0.0006, + "loss": 3.5589025020599365, + "step": 3845 + }, + { + "epoch": 53.419397116644824, + "grad_norm": 0.2150672823190689, + "learning_rate": 0.0006, + "loss": 3.5907669067382812, + "step": 3846 + }, + { + "epoch": 53.43337702053299, + "grad_norm": 0.21469077467918396, + "learning_rate": 0.0006, + "loss": 3.5403499603271484, + "step": 3847 + }, + { + "epoch": 53.44735692442114, + "grad_norm": 0.20485323667526245, + "learning_rate": 0.0006, + "loss": 3.5634326934814453, + "step": 3848 + }, + { + "epoch": 53.46133682830931, + "grad_norm": 0.1981327086687088, + "learning_rate": 0.0006, + "loss": 3.579385280609131, + "step": 3849 + }, + { + "epoch": 53.47531673219746, + "grad_norm": 0.1898331642150879, + "learning_rate": 0.0006, + "loss": 3.5824122428894043, + "step": 3850 + }, + { + "epoch": 53.489296636085626, + "grad_norm": 0.18228355050086975, + "learning_rate": 0.0006, + "loss": 3.533255100250244, + "step": 3851 + }, + { + "epoch": 53.50327653997379, + "grad_norm": 0.1803922951221466, + "learning_rate": 0.0006, + "loss": 3.589881420135498, + "step": 3852 + }, + { + "epoch": 53.517256443861946, + "grad_norm": 0.19590361416339874, + "learning_rate": 0.0006, + "loss": 3.599487066268921, + "step": 3853 + }, + { + "epoch": 53.53123634775011, + "grad_norm": 0.1935775727033615, + "learning_rate": 0.0006, + "loss": 3.5769765377044678, + "step": 3854 + }, + { + "epoch": 53.54521625163827, + "grad_norm": 0.1790810525417328, + "learning_rate": 0.0006, + "loss": 3.594104290008545, + "step": 3855 + }, + { + "epoch": 53.55919615552643, + "grad_norm": 0.17993320524692535, + "learning_rate": 0.0006, + "loss": 3.555650234222412, + "step": 3856 + }, + { + "epoch": 53.57317605941459, + "grad_norm": 0.19114883244037628, + "learning_rate": 0.0006, + "loss": 3.599574089050293, + "step": 3857 + }, + { + "epoch": 53.58715596330275, + "grad_norm": 0.18493886291980743, + "learning_rate": 0.0006, + "loss": 3.555177927017212, + "step": 3858 + }, + { + "epoch": 53.60113586719091, + "grad_norm": 0.19346027076244354, + "learning_rate": 0.0006, + "loss": 3.601219654083252, + "step": 3859 + }, + { + "epoch": 53.615115771079076, + "grad_norm": 0.2002234011888504, + "learning_rate": 0.0006, + "loss": 3.5614418983459473, + "step": 3860 + }, + { + "epoch": 53.62909567496723, + "grad_norm": 0.17705366015434265, + "learning_rate": 0.0006, + "loss": 3.587432384490967, + "step": 3861 + }, + { + "epoch": 53.643075578855395, + "grad_norm": 0.19825726747512817, + "learning_rate": 0.0006, + "loss": 3.570539951324463, + "step": 3862 + }, + { + "epoch": 53.65705548274356, + "grad_norm": 0.2038952112197876, + "learning_rate": 0.0006, + "loss": 3.575758934020996, + "step": 3863 + }, + { + "epoch": 53.671035386631715, + "grad_norm": 0.21109119057655334, + "learning_rate": 0.0006, + "loss": 3.6013951301574707, + "step": 3864 + }, + { + "epoch": 53.68501529051988, + "grad_norm": 0.21738514304161072, + "learning_rate": 0.0006, + "loss": 3.567424774169922, + "step": 3865 + }, + { + "epoch": 53.69899519440804, + "grad_norm": 0.214813694357872, + "learning_rate": 0.0006, + "loss": 3.599733352661133, + "step": 3866 + }, + { + "epoch": 53.7129750982962, + "grad_norm": 0.20838409662246704, + "learning_rate": 0.0006, + "loss": 3.595839738845825, + "step": 3867 + }, + { + "epoch": 53.72695500218436, + "grad_norm": 0.2088911384344101, + "learning_rate": 0.0006, + "loss": 3.6030569076538086, + "step": 3868 + }, + { + "epoch": 53.74093490607252, + "grad_norm": 0.22705569863319397, + "learning_rate": 0.0006, + "loss": 3.5876665115356445, + "step": 3869 + }, + { + "epoch": 53.75491480996068, + "grad_norm": 0.22327932715415955, + "learning_rate": 0.0006, + "loss": 3.5555529594421387, + "step": 3870 + }, + { + "epoch": 53.768894713848844, + "grad_norm": 0.2092375010251999, + "learning_rate": 0.0006, + "loss": 3.599871873855591, + "step": 3871 + }, + { + "epoch": 53.782874617737, + "grad_norm": 0.20672307908535004, + "learning_rate": 0.0006, + "loss": 3.598846435546875, + "step": 3872 + }, + { + "epoch": 53.796854521625164, + "grad_norm": 0.2090507596731186, + "learning_rate": 0.0006, + "loss": 3.564012050628662, + "step": 3873 + }, + { + "epoch": 53.81083442551333, + "grad_norm": 0.2044386863708496, + "learning_rate": 0.0006, + "loss": 3.585221529006958, + "step": 3874 + }, + { + "epoch": 53.824814329401484, + "grad_norm": 0.2065548598766327, + "learning_rate": 0.0006, + "loss": 3.595351457595825, + "step": 3875 + }, + { + "epoch": 53.83879423328965, + "grad_norm": 0.22895927727222443, + "learning_rate": 0.0006, + "loss": 3.5720505714416504, + "step": 3876 + }, + { + "epoch": 53.8527741371778, + "grad_norm": 0.22099260985851288, + "learning_rate": 0.0006, + "loss": 3.572587251663208, + "step": 3877 + }, + { + "epoch": 53.86675404106597, + "grad_norm": 0.19928759336471558, + "learning_rate": 0.0006, + "loss": 3.5641839504241943, + "step": 3878 + }, + { + "epoch": 53.88073394495413, + "grad_norm": 0.2735077440738678, + "learning_rate": 0.0006, + "loss": 3.575535774230957, + "step": 3879 + }, + { + "epoch": 53.89471384884229, + "grad_norm": 0.2642554044723511, + "learning_rate": 0.0006, + "loss": 3.5993123054504395, + "step": 3880 + }, + { + "epoch": 53.90869375273045, + "grad_norm": 0.22406205534934998, + "learning_rate": 0.0006, + "loss": 3.5968177318573, + "step": 3881 + }, + { + "epoch": 53.92267365661861, + "grad_norm": 0.22148431837558746, + "learning_rate": 0.0006, + "loss": 3.5668797492980957, + "step": 3882 + }, + { + "epoch": 53.93665356050677, + "grad_norm": 0.20805056393146515, + "learning_rate": 0.0006, + "loss": 3.60849666595459, + "step": 3883 + }, + { + "epoch": 53.95063346439493, + "grad_norm": 0.18656247854232788, + "learning_rate": 0.0006, + "loss": 3.5883405208587646, + "step": 3884 + }, + { + "epoch": 53.964613368283096, + "grad_norm": 0.19937767088413239, + "learning_rate": 0.0006, + "loss": 3.5897698402404785, + "step": 3885 + }, + { + "epoch": 53.97859327217125, + "grad_norm": 0.19680732488632202, + "learning_rate": 0.0006, + "loss": 3.568530559539795, + "step": 3886 + }, + { + "epoch": 53.992573176059416, + "grad_norm": 0.218981072306633, + "learning_rate": 0.0006, + "loss": 3.6194474697113037, + "step": 3887 + }, + { + "epoch": 54.0, + "grad_norm": 0.26408281922340393, + "learning_rate": 0.0006, + "loss": 3.5224976539611816, + "step": 3888 + }, + { + "epoch": 54.0, + "eval_loss": 3.983997106552124, + "eval_runtime": 44.9507, + "eval_samples_per_second": 54.326, + "eval_steps_per_second": 3.404, + "step": 3888 + }, + { + "epoch": 54.01397990388816, + "grad_norm": 0.2230917066335678, + "learning_rate": 0.0006, + "loss": 3.578058958053589, + "step": 3889 + }, + { + "epoch": 54.02795980777632, + "grad_norm": 0.23055201768875122, + "learning_rate": 0.0006, + "loss": 3.549612283706665, + "step": 3890 + }, + { + "epoch": 54.04193971166448, + "grad_norm": 0.23317518830299377, + "learning_rate": 0.0006, + "loss": 3.5662591457366943, + "step": 3891 + }, + { + "epoch": 54.05591961555265, + "grad_norm": 0.27022141218185425, + "learning_rate": 0.0006, + "loss": 3.547062873840332, + "step": 3892 + }, + { + "epoch": 54.0698995194408, + "grad_norm": 0.2665329873561859, + "learning_rate": 0.0006, + "loss": 3.540881633758545, + "step": 3893 + }, + { + "epoch": 54.083879423328966, + "grad_norm": 0.23968365788459778, + "learning_rate": 0.0006, + "loss": 3.574781894683838, + "step": 3894 + }, + { + "epoch": 54.09785932721712, + "grad_norm": 0.22174887359142303, + "learning_rate": 0.0006, + "loss": 3.514077663421631, + "step": 3895 + }, + { + "epoch": 54.111839231105286, + "grad_norm": 0.24605485796928406, + "learning_rate": 0.0006, + "loss": 3.534174919128418, + "step": 3896 + }, + { + "epoch": 54.12581913499345, + "grad_norm": 0.22874566912651062, + "learning_rate": 0.0006, + "loss": 3.574282169342041, + "step": 3897 + }, + { + "epoch": 54.139799038881605, + "grad_norm": 0.2113833874464035, + "learning_rate": 0.0006, + "loss": 3.548687696456909, + "step": 3898 + }, + { + "epoch": 54.15377894276977, + "grad_norm": 0.20756855607032776, + "learning_rate": 0.0006, + "loss": 3.556060791015625, + "step": 3899 + }, + { + "epoch": 54.16775884665793, + "grad_norm": 0.2070261538028717, + "learning_rate": 0.0006, + "loss": 3.5585689544677734, + "step": 3900 + }, + { + "epoch": 54.18173875054609, + "grad_norm": 0.20014794170856476, + "learning_rate": 0.0006, + "loss": 3.5898427963256836, + "step": 3901 + }, + { + "epoch": 54.19571865443425, + "grad_norm": 0.19851888716220856, + "learning_rate": 0.0006, + "loss": 3.564826011657715, + "step": 3902 + }, + { + "epoch": 54.20969855832241, + "grad_norm": 0.20333127677440643, + "learning_rate": 0.0006, + "loss": 3.540660858154297, + "step": 3903 + }, + { + "epoch": 54.22367846221057, + "grad_norm": 0.20291075110435486, + "learning_rate": 0.0006, + "loss": 3.544628143310547, + "step": 3904 + }, + { + "epoch": 54.237658366098735, + "grad_norm": 0.2055949866771698, + "learning_rate": 0.0006, + "loss": 3.547478675842285, + "step": 3905 + }, + { + "epoch": 54.25163826998689, + "grad_norm": 0.20305688679218292, + "learning_rate": 0.0006, + "loss": 3.5793099403381348, + "step": 3906 + }, + { + "epoch": 54.265618173875055, + "grad_norm": 0.21053043007850647, + "learning_rate": 0.0006, + "loss": 3.529263973236084, + "step": 3907 + }, + { + "epoch": 54.27959807776322, + "grad_norm": 0.2461051046848297, + "learning_rate": 0.0006, + "loss": 3.598266124725342, + "step": 3908 + }, + { + "epoch": 54.293577981651374, + "grad_norm": 0.25074276328086853, + "learning_rate": 0.0006, + "loss": 3.557170867919922, + "step": 3909 + }, + { + "epoch": 54.30755788553954, + "grad_norm": 0.23321498930454254, + "learning_rate": 0.0006, + "loss": 3.5532279014587402, + "step": 3910 + }, + { + "epoch": 54.3215377894277, + "grad_norm": 0.19062374532222748, + "learning_rate": 0.0006, + "loss": 3.5718722343444824, + "step": 3911 + }, + { + "epoch": 54.33551769331586, + "grad_norm": 0.22571852803230286, + "learning_rate": 0.0006, + "loss": 3.539036750793457, + "step": 3912 + }, + { + "epoch": 54.34949759720402, + "grad_norm": 0.23314784467220306, + "learning_rate": 0.0006, + "loss": 3.5444631576538086, + "step": 3913 + }, + { + "epoch": 54.36347750109218, + "grad_norm": 0.22334037721157074, + "learning_rate": 0.0006, + "loss": 3.5567970275878906, + "step": 3914 + }, + { + "epoch": 54.37745740498034, + "grad_norm": 0.21900276839733124, + "learning_rate": 0.0006, + "loss": 3.600113868713379, + "step": 3915 + }, + { + "epoch": 54.391437308868504, + "grad_norm": 0.20166733860969543, + "learning_rate": 0.0006, + "loss": 3.54038667678833, + "step": 3916 + }, + { + "epoch": 54.40541721275666, + "grad_norm": 0.21886761486530304, + "learning_rate": 0.0006, + "loss": 3.5708651542663574, + "step": 3917 + }, + { + "epoch": 54.419397116644824, + "grad_norm": 0.26383060216903687, + "learning_rate": 0.0006, + "loss": 3.5572509765625, + "step": 3918 + }, + { + "epoch": 54.43337702053299, + "grad_norm": 0.26116663217544556, + "learning_rate": 0.0006, + "loss": 3.528968334197998, + "step": 3919 + }, + { + "epoch": 54.44735692442114, + "grad_norm": 0.20640771090984344, + "learning_rate": 0.0006, + "loss": 3.587789535522461, + "step": 3920 + }, + { + "epoch": 54.46133682830931, + "grad_norm": 0.23454350233078003, + "learning_rate": 0.0006, + "loss": 3.586834192276001, + "step": 3921 + }, + { + "epoch": 54.47531673219746, + "grad_norm": 0.24828442931175232, + "learning_rate": 0.0006, + "loss": 3.5884881019592285, + "step": 3922 + }, + { + "epoch": 54.489296636085626, + "grad_norm": 0.23654282093048096, + "learning_rate": 0.0006, + "loss": 3.5754570960998535, + "step": 3923 + }, + { + "epoch": 54.50327653997379, + "grad_norm": 0.22721099853515625, + "learning_rate": 0.0006, + "loss": 3.5575859546661377, + "step": 3924 + }, + { + "epoch": 54.517256443861946, + "grad_norm": 0.2157498002052307, + "learning_rate": 0.0006, + "loss": 3.5929436683654785, + "step": 3925 + }, + { + "epoch": 54.53123634775011, + "grad_norm": 0.21604257822036743, + "learning_rate": 0.0006, + "loss": 3.5788726806640625, + "step": 3926 + }, + { + "epoch": 54.54521625163827, + "grad_norm": 0.22310106456279755, + "learning_rate": 0.0006, + "loss": 3.5873899459838867, + "step": 3927 + }, + { + "epoch": 54.55919615552643, + "grad_norm": 0.2121969312429428, + "learning_rate": 0.0006, + "loss": 3.575186252593994, + "step": 3928 + }, + { + "epoch": 54.57317605941459, + "grad_norm": 0.19073615968227386, + "learning_rate": 0.0006, + "loss": 3.5963356494903564, + "step": 3929 + }, + { + "epoch": 54.58715596330275, + "grad_norm": 0.18745607137680054, + "learning_rate": 0.0006, + "loss": 3.593679428100586, + "step": 3930 + }, + { + "epoch": 54.60113586719091, + "grad_norm": 0.19518259167671204, + "learning_rate": 0.0006, + "loss": 3.5730791091918945, + "step": 3931 + }, + { + "epoch": 54.615115771079076, + "grad_norm": 0.20948481559753418, + "learning_rate": 0.0006, + "loss": 3.5646820068359375, + "step": 3932 + }, + { + "epoch": 54.62909567496723, + "grad_norm": 0.1929631531238556, + "learning_rate": 0.0006, + "loss": 3.5550060272216797, + "step": 3933 + }, + { + "epoch": 54.643075578855395, + "grad_norm": 0.2104327380657196, + "learning_rate": 0.0006, + "loss": 3.5774357318878174, + "step": 3934 + }, + { + "epoch": 54.65705548274356, + "grad_norm": 0.1952148675918579, + "learning_rate": 0.0006, + "loss": 3.58856201171875, + "step": 3935 + }, + { + "epoch": 54.671035386631715, + "grad_norm": 0.17762340605258942, + "learning_rate": 0.0006, + "loss": 3.5324528217315674, + "step": 3936 + }, + { + "epoch": 54.68501529051988, + "grad_norm": 0.18349695205688477, + "learning_rate": 0.0006, + "loss": 3.5663890838623047, + "step": 3937 + }, + { + "epoch": 54.69899519440804, + "grad_norm": 0.2038232684135437, + "learning_rate": 0.0006, + "loss": 3.5811679363250732, + "step": 3938 + }, + { + "epoch": 54.7129750982962, + "grad_norm": 0.2431754469871521, + "learning_rate": 0.0006, + "loss": 3.56833553314209, + "step": 3939 + }, + { + "epoch": 54.72695500218436, + "grad_norm": 0.27498456835746765, + "learning_rate": 0.0006, + "loss": 3.5977981090545654, + "step": 3940 + }, + { + "epoch": 54.74093490607252, + "grad_norm": 0.20809921622276306, + "learning_rate": 0.0006, + "loss": 3.57193922996521, + "step": 3941 + }, + { + "epoch": 54.75491480996068, + "grad_norm": 0.18073450028896332, + "learning_rate": 0.0006, + "loss": 3.5610151290893555, + "step": 3942 + }, + { + "epoch": 54.768894713848844, + "grad_norm": 0.194604754447937, + "learning_rate": 0.0006, + "loss": 3.5716047286987305, + "step": 3943 + }, + { + "epoch": 54.782874617737, + "grad_norm": 0.20566268265247345, + "learning_rate": 0.0006, + "loss": 3.578401565551758, + "step": 3944 + }, + { + "epoch": 54.796854521625164, + "grad_norm": 0.21028153598308563, + "learning_rate": 0.0006, + "loss": 3.610511064529419, + "step": 3945 + }, + { + "epoch": 54.81083442551333, + "grad_norm": 0.21413563191890717, + "learning_rate": 0.0006, + "loss": 3.601574659347534, + "step": 3946 + }, + { + "epoch": 54.824814329401484, + "grad_norm": 0.2137378603219986, + "learning_rate": 0.0006, + "loss": 3.603997230529785, + "step": 3947 + }, + { + "epoch": 54.83879423328965, + "grad_norm": 0.2162058800458908, + "learning_rate": 0.0006, + "loss": 3.5829391479492188, + "step": 3948 + }, + { + "epoch": 54.8527741371778, + "grad_norm": 0.21700997650623322, + "learning_rate": 0.0006, + "loss": 3.595317840576172, + "step": 3949 + }, + { + "epoch": 54.86675404106597, + "grad_norm": 0.20864669978618622, + "learning_rate": 0.0006, + "loss": 3.601891040802002, + "step": 3950 + }, + { + "epoch": 54.88073394495413, + "grad_norm": 0.19780485332012177, + "learning_rate": 0.0006, + "loss": 3.567460775375366, + "step": 3951 + }, + { + "epoch": 54.89471384884229, + "grad_norm": 0.2017168402671814, + "learning_rate": 0.0006, + "loss": 3.5737192630767822, + "step": 3952 + }, + { + "epoch": 54.90869375273045, + "grad_norm": 0.22847825288772583, + "learning_rate": 0.0006, + "loss": 3.60937762260437, + "step": 3953 + }, + { + "epoch": 54.92267365661861, + "grad_norm": 0.23698270320892334, + "learning_rate": 0.0006, + "loss": 3.6013574600219727, + "step": 3954 + }, + { + "epoch": 54.93665356050677, + "grad_norm": 0.238611102104187, + "learning_rate": 0.0006, + "loss": 3.5689988136291504, + "step": 3955 + }, + { + "epoch": 54.95063346439493, + "grad_norm": 0.2680057883262634, + "learning_rate": 0.0006, + "loss": 3.5650172233581543, + "step": 3956 + }, + { + "epoch": 54.964613368283096, + "grad_norm": 0.25712481141090393, + "learning_rate": 0.0006, + "loss": 3.576777935028076, + "step": 3957 + }, + { + "epoch": 54.97859327217125, + "grad_norm": 0.2232409566640854, + "learning_rate": 0.0006, + "loss": 3.583169937133789, + "step": 3958 + }, + { + "epoch": 54.992573176059416, + "grad_norm": 0.21233153343200684, + "learning_rate": 0.0006, + "loss": 3.602219581604004, + "step": 3959 + }, + { + "epoch": 55.0, + "grad_norm": 0.24345774948596954, + "learning_rate": 0.0006, + "loss": 3.5118026733398438, + "step": 3960 + }, + { + "epoch": 55.0, + "eval_loss": 3.9819064140319824, + "eval_runtime": 44.6627, + "eval_samples_per_second": 54.677, + "eval_steps_per_second": 3.426, + "step": 3960 + }, + { + "epoch": 55.01397990388816, + "grad_norm": 0.229562908411026, + "learning_rate": 0.0006, + "loss": 3.5591073036193848, + "step": 3961 + }, + { + "epoch": 55.02795980777632, + "grad_norm": 0.21731624007225037, + "learning_rate": 0.0006, + "loss": 3.5544848442077637, + "step": 3962 + }, + { + "epoch": 55.04193971166448, + "grad_norm": 0.23528429865837097, + "learning_rate": 0.0006, + "loss": 3.5654311180114746, + "step": 3963 + }, + { + "epoch": 55.05591961555265, + "grad_norm": 0.23147839307785034, + "learning_rate": 0.0006, + "loss": 3.537006378173828, + "step": 3964 + }, + { + "epoch": 55.0698995194408, + "grad_norm": 0.22218112647533417, + "learning_rate": 0.0006, + "loss": 3.5218982696533203, + "step": 3965 + }, + { + "epoch": 55.083879423328966, + "grad_norm": 0.20697443187236786, + "learning_rate": 0.0006, + "loss": 3.5623579025268555, + "step": 3966 + }, + { + "epoch": 55.09785932721712, + "grad_norm": 0.2108476608991623, + "learning_rate": 0.0006, + "loss": 3.528214454650879, + "step": 3967 + }, + { + "epoch": 55.111839231105286, + "grad_norm": 0.21664242446422577, + "learning_rate": 0.0006, + "loss": 3.5429646968841553, + "step": 3968 + }, + { + "epoch": 55.12581913499345, + "grad_norm": 0.21359260380268097, + "learning_rate": 0.0006, + "loss": 3.5873513221740723, + "step": 3969 + }, + { + "epoch": 55.139799038881605, + "grad_norm": 0.23289452493190765, + "learning_rate": 0.0006, + "loss": 3.5551905632019043, + "step": 3970 + }, + { + "epoch": 55.15377894276977, + "grad_norm": 0.25835689902305603, + "learning_rate": 0.0006, + "loss": 3.5380427837371826, + "step": 3971 + }, + { + "epoch": 55.16775884665793, + "grad_norm": 0.25449255108833313, + "learning_rate": 0.0006, + "loss": 3.5276808738708496, + "step": 3972 + }, + { + "epoch": 55.18173875054609, + "grad_norm": 0.2472638338804245, + "learning_rate": 0.0006, + "loss": 3.539194107055664, + "step": 3973 + }, + { + "epoch": 55.19571865443425, + "grad_norm": 0.21743768453598022, + "learning_rate": 0.0006, + "loss": 3.557185173034668, + "step": 3974 + }, + { + "epoch": 55.20969855832241, + "grad_norm": 0.22787386178970337, + "learning_rate": 0.0006, + "loss": 3.581993579864502, + "step": 3975 + }, + { + "epoch": 55.22367846221057, + "grad_norm": 0.2332824170589447, + "learning_rate": 0.0006, + "loss": 3.5439846515655518, + "step": 3976 + }, + { + "epoch": 55.237658366098735, + "grad_norm": 0.2054908573627472, + "learning_rate": 0.0006, + "loss": 3.5528793334960938, + "step": 3977 + }, + { + "epoch": 55.25163826998689, + "grad_norm": 0.2087554633617401, + "learning_rate": 0.0006, + "loss": 3.536464214324951, + "step": 3978 + }, + { + "epoch": 55.265618173875055, + "grad_norm": 0.22214409708976746, + "learning_rate": 0.0006, + "loss": 3.56184458732605, + "step": 3979 + }, + { + "epoch": 55.27959807776322, + "grad_norm": 0.23214097321033478, + "learning_rate": 0.0006, + "loss": 3.5560522079467773, + "step": 3980 + }, + { + "epoch": 55.293577981651374, + "grad_norm": 0.23317331075668335, + "learning_rate": 0.0006, + "loss": 3.5433850288391113, + "step": 3981 + }, + { + "epoch": 55.30755788553954, + "grad_norm": 0.2303774058818817, + "learning_rate": 0.0006, + "loss": 3.5505576133728027, + "step": 3982 + }, + { + "epoch": 55.3215377894277, + "grad_norm": 0.2400730401277542, + "learning_rate": 0.0006, + "loss": 3.557952404022217, + "step": 3983 + }, + { + "epoch": 55.33551769331586, + "grad_norm": 0.23933538794517517, + "learning_rate": 0.0006, + "loss": 3.536656141281128, + "step": 3984 + }, + { + "epoch": 55.34949759720402, + "grad_norm": 0.23796266317367554, + "learning_rate": 0.0006, + "loss": 3.5777554512023926, + "step": 3985 + }, + { + "epoch": 55.36347750109218, + "grad_norm": 0.26078858971595764, + "learning_rate": 0.0006, + "loss": 3.549121379852295, + "step": 3986 + }, + { + "epoch": 55.37745740498034, + "grad_norm": 0.22726459801197052, + "learning_rate": 0.0006, + "loss": 3.605684518814087, + "step": 3987 + }, + { + "epoch": 55.391437308868504, + "grad_norm": 0.19872179627418518, + "learning_rate": 0.0006, + "loss": 3.5501739978790283, + "step": 3988 + }, + { + "epoch": 55.40541721275666, + "grad_norm": 0.2027827352285385, + "learning_rate": 0.0006, + "loss": 3.625922441482544, + "step": 3989 + }, + { + "epoch": 55.419397116644824, + "grad_norm": 0.24207144975662231, + "learning_rate": 0.0006, + "loss": 3.595451831817627, + "step": 3990 + }, + { + "epoch": 55.43337702053299, + "grad_norm": 0.23449009656906128, + "learning_rate": 0.0006, + "loss": 3.577167510986328, + "step": 3991 + }, + { + "epoch": 55.44735692442114, + "grad_norm": 0.22529540956020355, + "learning_rate": 0.0006, + "loss": 3.5585317611694336, + "step": 3992 + }, + { + "epoch": 55.46133682830931, + "grad_norm": 0.2354331612586975, + "learning_rate": 0.0006, + "loss": 3.574819564819336, + "step": 3993 + }, + { + "epoch": 55.47531673219746, + "grad_norm": 0.2251061201095581, + "learning_rate": 0.0006, + "loss": 3.580498695373535, + "step": 3994 + }, + { + "epoch": 55.489296636085626, + "grad_norm": 0.22107349336147308, + "learning_rate": 0.0006, + "loss": 3.578591823577881, + "step": 3995 + }, + { + "epoch": 55.50327653997379, + "grad_norm": 0.24686408042907715, + "learning_rate": 0.0006, + "loss": 3.541625499725342, + "step": 3996 + }, + { + "epoch": 55.517256443861946, + "grad_norm": 0.23731260001659393, + "learning_rate": 0.0006, + "loss": 3.5508079528808594, + "step": 3997 + }, + { + "epoch": 55.53123634775011, + "grad_norm": 0.21246901154518127, + "learning_rate": 0.0006, + "loss": 3.569500207901001, + "step": 3998 + }, + { + "epoch": 55.54521625163827, + "grad_norm": 0.21369415521621704, + "learning_rate": 0.0006, + "loss": 3.546938896179199, + "step": 3999 + }, + { + "epoch": 55.55919615552643, + "grad_norm": 0.2102644443511963, + "learning_rate": 0.0006, + "loss": 3.5842084884643555, + "step": 4000 + }, + { + "epoch": 55.57317605941459, + "grad_norm": 0.2355998456478119, + "learning_rate": 0.0006, + "loss": 3.5493381023406982, + "step": 4001 + }, + { + "epoch": 55.58715596330275, + "grad_norm": 0.2670288681983948, + "learning_rate": 0.0006, + "loss": 3.5909032821655273, + "step": 4002 + }, + { + "epoch": 55.60113586719091, + "grad_norm": 0.2958407998085022, + "learning_rate": 0.0006, + "loss": 3.624906063079834, + "step": 4003 + }, + { + "epoch": 55.615115771079076, + "grad_norm": 0.2948441505432129, + "learning_rate": 0.0006, + "loss": 3.553528070449829, + "step": 4004 + }, + { + "epoch": 55.62909567496723, + "grad_norm": 0.24873173236846924, + "learning_rate": 0.0006, + "loss": 3.5851495265960693, + "step": 4005 + }, + { + "epoch": 55.643075578855395, + "grad_norm": 0.22191756963729858, + "learning_rate": 0.0006, + "loss": 3.556459903717041, + "step": 4006 + }, + { + "epoch": 55.65705548274356, + "grad_norm": 0.22677776217460632, + "learning_rate": 0.0006, + "loss": 3.579428195953369, + "step": 4007 + }, + { + "epoch": 55.671035386631715, + "grad_norm": 0.22263763844966888, + "learning_rate": 0.0006, + "loss": 3.5878806114196777, + "step": 4008 + }, + { + "epoch": 55.68501529051988, + "grad_norm": 0.24498602747917175, + "learning_rate": 0.0006, + "loss": 3.5989317893981934, + "step": 4009 + }, + { + "epoch": 55.69899519440804, + "grad_norm": 0.26294007897377014, + "learning_rate": 0.0006, + "loss": 3.5866756439208984, + "step": 4010 + }, + { + "epoch": 55.7129750982962, + "grad_norm": 0.22105370461940765, + "learning_rate": 0.0006, + "loss": 3.594365119934082, + "step": 4011 + }, + { + "epoch": 55.72695500218436, + "grad_norm": 0.20973286032676697, + "learning_rate": 0.0006, + "loss": 3.551156997680664, + "step": 4012 + }, + { + "epoch": 55.74093490607252, + "grad_norm": 0.2123304158449173, + "learning_rate": 0.0006, + "loss": 3.587405204772949, + "step": 4013 + }, + { + "epoch": 55.75491480996068, + "grad_norm": 0.22134795784950256, + "learning_rate": 0.0006, + "loss": 3.59114146232605, + "step": 4014 + }, + { + "epoch": 55.768894713848844, + "grad_norm": 0.20822957158088684, + "learning_rate": 0.0006, + "loss": 3.5910749435424805, + "step": 4015 + }, + { + "epoch": 55.782874617737, + "grad_norm": 0.22392229735851288, + "learning_rate": 0.0006, + "loss": 3.5800669193267822, + "step": 4016 + }, + { + "epoch": 55.796854521625164, + "grad_norm": 0.2214914709329605, + "learning_rate": 0.0006, + "loss": 3.5553741455078125, + "step": 4017 + }, + { + "epoch": 55.81083442551333, + "grad_norm": 0.1993025690317154, + "learning_rate": 0.0006, + "loss": 3.567298412322998, + "step": 4018 + }, + { + "epoch": 55.824814329401484, + "grad_norm": 0.21043774485588074, + "learning_rate": 0.0006, + "loss": 3.537358045578003, + "step": 4019 + }, + { + "epoch": 55.83879423328965, + "grad_norm": 0.18501818180084229, + "learning_rate": 0.0006, + "loss": 3.5971930027008057, + "step": 4020 + }, + { + "epoch": 55.8527741371778, + "grad_norm": 0.19626867771148682, + "learning_rate": 0.0006, + "loss": 3.563570976257324, + "step": 4021 + }, + { + "epoch": 55.86675404106597, + "grad_norm": 0.19328820705413818, + "learning_rate": 0.0006, + "loss": 3.600377082824707, + "step": 4022 + }, + { + "epoch": 55.88073394495413, + "grad_norm": 0.2013237327337265, + "learning_rate": 0.0006, + "loss": 3.5916812419891357, + "step": 4023 + }, + { + "epoch": 55.89471384884229, + "grad_norm": 0.22775673866271973, + "learning_rate": 0.0006, + "loss": 3.5572638511657715, + "step": 4024 + }, + { + "epoch": 55.90869375273045, + "grad_norm": 0.2452211230993271, + "learning_rate": 0.0006, + "loss": 3.54378080368042, + "step": 4025 + }, + { + "epoch": 55.92267365661861, + "grad_norm": 0.23337189853191376, + "learning_rate": 0.0006, + "loss": 3.5853466987609863, + "step": 4026 + }, + { + "epoch": 55.93665356050677, + "grad_norm": 0.20073719322681427, + "learning_rate": 0.0006, + "loss": 3.5793843269348145, + "step": 4027 + }, + { + "epoch": 55.95063346439493, + "grad_norm": 0.1963811218738556, + "learning_rate": 0.0006, + "loss": 3.5783073902130127, + "step": 4028 + }, + { + "epoch": 55.964613368283096, + "grad_norm": 0.19921033084392548, + "learning_rate": 0.0006, + "loss": 3.5455331802368164, + "step": 4029 + }, + { + "epoch": 55.97859327217125, + "grad_norm": 0.22151921689510345, + "learning_rate": 0.0006, + "loss": 3.551476001739502, + "step": 4030 + }, + { + "epoch": 55.992573176059416, + "grad_norm": 0.2636640965938568, + "learning_rate": 0.0006, + "loss": 3.5859174728393555, + "step": 4031 + }, + { + "epoch": 56.0, + "grad_norm": 0.282680869102478, + "learning_rate": 0.0006, + "loss": 3.5818469524383545, + "step": 4032 + }, + { + "epoch": 56.0, + "eval_loss": 3.982189178466797, + "eval_runtime": 44.2577, + "eval_samples_per_second": 55.177, + "eval_steps_per_second": 3.457, + "step": 4032 + }, + { + "epoch": 56.01397990388816, + "grad_norm": 0.23316597938537598, + "learning_rate": 0.0006, + "loss": 3.5500292778015137, + "step": 4033 + }, + { + "epoch": 56.02795980777632, + "grad_norm": 0.22836777567863464, + "learning_rate": 0.0006, + "loss": 3.5661063194274902, + "step": 4034 + }, + { + "epoch": 56.04193971166448, + "grad_norm": 0.2607800364494324, + "learning_rate": 0.0006, + "loss": 3.5496177673339844, + "step": 4035 + }, + { + "epoch": 56.05591961555265, + "grad_norm": 0.2620518207550049, + "learning_rate": 0.0006, + "loss": 3.562621831893921, + "step": 4036 + }, + { + "epoch": 56.0698995194408, + "grad_norm": 0.2344953864812851, + "learning_rate": 0.0006, + "loss": 3.5371389389038086, + "step": 4037 + }, + { + "epoch": 56.083879423328966, + "grad_norm": 0.2523435950279236, + "learning_rate": 0.0006, + "loss": 3.565216541290283, + "step": 4038 + }, + { + "epoch": 56.09785932721712, + "grad_norm": 0.26315048336982727, + "learning_rate": 0.0006, + "loss": 3.5510857105255127, + "step": 4039 + }, + { + "epoch": 56.111839231105286, + "grad_norm": 0.256817102432251, + "learning_rate": 0.0006, + "loss": 3.576132297515869, + "step": 4040 + }, + { + "epoch": 56.12581913499345, + "grad_norm": 0.25146403908729553, + "learning_rate": 0.0006, + "loss": 3.550875663757324, + "step": 4041 + }, + { + "epoch": 56.139799038881605, + "grad_norm": 0.2471698820590973, + "learning_rate": 0.0006, + "loss": 3.5574288368225098, + "step": 4042 + }, + { + "epoch": 56.15377894276977, + "grad_norm": 0.2324669510126114, + "learning_rate": 0.0006, + "loss": 3.524637222290039, + "step": 4043 + }, + { + "epoch": 56.16775884665793, + "grad_norm": 0.21824438869953156, + "learning_rate": 0.0006, + "loss": 3.563664436340332, + "step": 4044 + }, + { + "epoch": 56.18173875054609, + "grad_norm": 0.2381063550710678, + "learning_rate": 0.0006, + "loss": 3.573061943054199, + "step": 4045 + }, + { + "epoch": 56.19571865443425, + "grad_norm": 0.23728328943252563, + "learning_rate": 0.0006, + "loss": 3.5563716888427734, + "step": 4046 + }, + { + "epoch": 56.20969855832241, + "grad_norm": 0.20998933911323547, + "learning_rate": 0.0006, + "loss": 3.540152072906494, + "step": 4047 + }, + { + "epoch": 56.22367846221057, + "grad_norm": 0.2249690741300583, + "learning_rate": 0.0006, + "loss": 3.5699682235717773, + "step": 4048 + }, + { + "epoch": 56.237658366098735, + "grad_norm": 0.22615988552570343, + "learning_rate": 0.0006, + "loss": 3.5604777336120605, + "step": 4049 + }, + { + "epoch": 56.25163826998689, + "grad_norm": 0.20918409526348114, + "learning_rate": 0.0006, + "loss": 3.5612001419067383, + "step": 4050 + }, + { + "epoch": 56.265618173875055, + "grad_norm": 0.22025109827518463, + "learning_rate": 0.0006, + "loss": 3.520402193069458, + "step": 4051 + }, + { + "epoch": 56.27959807776322, + "grad_norm": 0.22722174227237701, + "learning_rate": 0.0006, + "loss": 3.52360200881958, + "step": 4052 + }, + { + "epoch": 56.293577981651374, + "grad_norm": 0.2115592360496521, + "learning_rate": 0.0006, + "loss": 3.562689781188965, + "step": 4053 + }, + { + "epoch": 56.30755788553954, + "grad_norm": 0.19253599643707275, + "learning_rate": 0.0006, + "loss": 3.545013427734375, + "step": 4054 + }, + { + "epoch": 56.3215377894277, + "grad_norm": 0.2534266710281372, + "learning_rate": 0.0006, + "loss": 3.530149459838867, + "step": 4055 + }, + { + "epoch": 56.33551769331586, + "grad_norm": 0.2871302366256714, + "learning_rate": 0.0006, + "loss": 3.5667316913604736, + "step": 4056 + }, + { + "epoch": 56.34949759720402, + "grad_norm": 0.2686561048030853, + "learning_rate": 0.0006, + "loss": 3.5341169834136963, + "step": 4057 + }, + { + "epoch": 56.36347750109218, + "grad_norm": 0.21016116440296173, + "learning_rate": 0.0006, + "loss": 3.5151243209838867, + "step": 4058 + }, + { + "epoch": 56.37745740498034, + "grad_norm": 0.20810428261756897, + "learning_rate": 0.0006, + "loss": 3.5641677379608154, + "step": 4059 + }, + { + "epoch": 56.391437308868504, + "grad_norm": 0.2732172906398773, + "learning_rate": 0.0006, + "loss": 3.546082019805908, + "step": 4060 + }, + { + "epoch": 56.40541721275666, + "grad_norm": 0.26587602496147156, + "learning_rate": 0.0006, + "loss": 3.5465946197509766, + "step": 4061 + }, + { + "epoch": 56.419397116644824, + "grad_norm": 0.20492126047611237, + "learning_rate": 0.0006, + "loss": 3.5686211585998535, + "step": 4062 + }, + { + "epoch": 56.43337702053299, + "grad_norm": 0.2147696167230606, + "learning_rate": 0.0006, + "loss": 3.5808653831481934, + "step": 4063 + }, + { + "epoch": 56.44735692442114, + "grad_norm": 0.21947690844535828, + "learning_rate": 0.0006, + "loss": 3.530872344970703, + "step": 4064 + }, + { + "epoch": 56.46133682830931, + "grad_norm": 0.21305148303508759, + "learning_rate": 0.0006, + "loss": 3.5480992794036865, + "step": 4065 + }, + { + "epoch": 56.47531673219746, + "grad_norm": 0.2066979706287384, + "learning_rate": 0.0006, + "loss": 3.5198287963867188, + "step": 4066 + }, + { + "epoch": 56.489296636085626, + "grad_norm": 0.19393840432167053, + "learning_rate": 0.0006, + "loss": 3.555344581604004, + "step": 4067 + }, + { + "epoch": 56.50327653997379, + "grad_norm": 0.19889849424362183, + "learning_rate": 0.0006, + "loss": 3.56475830078125, + "step": 4068 + }, + { + "epoch": 56.517256443861946, + "grad_norm": 0.19851456582546234, + "learning_rate": 0.0006, + "loss": 3.5790982246398926, + "step": 4069 + }, + { + "epoch": 56.53123634775011, + "grad_norm": 0.19570177793502808, + "learning_rate": 0.0006, + "loss": 3.558379888534546, + "step": 4070 + }, + { + "epoch": 56.54521625163827, + "grad_norm": 0.21364007890224457, + "learning_rate": 0.0006, + "loss": 3.586343288421631, + "step": 4071 + }, + { + "epoch": 56.55919615552643, + "grad_norm": 0.22896543145179749, + "learning_rate": 0.0006, + "loss": 3.5565874576568604, + "step": 4072 + }, + { + "epoch": 56.57317605941459, + "grad_norm": 0.21665218472480774, + "learning_rate": 0.0006, + "loss": 3.5737056732177734, + "step": 4073 + }, + { + "epoch": 56.58715596330275, + "grad_norm": 0.1964256912469864, + "learning_rate": 0.0006, + "loss": 3.555798053741455, + "step": 4074 + }, + { + "epoch": 56.60113586719091, + "grad_norm": 0.2056122124195099, + "learning_rate": 0.0006, + "loss": 3.548685073852539, + "step": 4075 + }, + { + "epoch": 56.615115771079076, + "grad_norm": 0.21677979826927185, + "learning_rate": 0.0006, + "loss": 3.569136619567871, + "step": 4076 + }, + { + "epoch": 56.62909567496723, + "grad_norm": 0.2029557228088379, + "learning_rate": 0.0006, + "loss": 3.5723280906677246, + "step": 4077 + }, + { + "epoch": 56.643075578855395, + "grad_norm": 0.22111767530441284, + "learning_rate": 0.0006, + "loss": 3.5784404277801514, + "step": 4078 + }, + { + "epoch": 56.65705548274356, + "grad_norm": 0.245675191283226, + "learning_rate": 0.0006, + "loss": 3.559330940246582, + "step": 4079 + }, + { + "epoch": 56.671035386631715, + "grad_norm": 0.19715000689029694, + "learning_rate": 0.0006, + "loss": 3.5694894790649414, + "step": 4080 + }, + { + "epoch": 56.68501529051988, + "grad_norm": 0.2112303525209427, + "learning_rate": 0.0006, + "loss": 3.5932059288024902, + "step": 4081 + }, + { + "epoch": 56.69899519440804, + "grad_norm": 0.23710735142230988, + "learning_rate": 0.0006, + "loss": 3.59895658493042, + "step": 4082 + }, + { + "epoch": 56.7129750982962, + "grad_norm": 0.2507518529891968, + "learning_rate": 0.0006, + "loss": 3.58455228805542, + "step": 4083 + }, + { + "epoch": 56.72695500218436, + "grad_norm": 0.24770016968250275, + "learning_rate": 0.0006, + "loss": 3.566256046295166, + "step": 4084 + }, + { + "epoch": 56.74093490607252, + "grad_norm": 0.2407187819480896, + "learning_rate": 0.0006, + "loss": 3.6002347469329834, + "step": 4085 + }, + { + "epoch": 56.75491480996068, + "grad_norm": 0.21417197585105896, + "learning_rate": 0.0006, + "loss": 3.5579819679260254, + "step": 4086 + }, + { + "epoch": 56.768894713848844, + "grad_norm": 0.21014295518398285, + "learning_rate": 0.0006, + "loss": 3.574289321899414, + "step": 4087 + }, + { + "epoch": 56.782874617737, + "grad_norm": 0.2265855073928833, + "learning_rate": 0.0006, + "loss": 3.589186906814575, + "step": 4088 + }, + { + "epoch": 56.796854521625164, + "grad_norm": 0.22685059905052185, + "learning_rate": 0.0006, + "loss": 3.567077159881592, + "step": 4089 + }, + { + "epoch": 56.81083442551333, + "grad_norm": 0.21579493582248688, + "learning_rate": 0.0006, + "loss": 3.5568556785583496, + "step": 4090 + }, + { + "epoch": 56.824814329401484, + "grad_norm": 0.2049565464258194, + "learning_rate": 0.0006, + "loss": 3.5547285079956055, + "step": 4091 + }, + { + "epoch": 56.83879423328965, + "grad_norm": 0.21019354462623596, + "learning_rate": 0.0006, + "loss": 3.606884479522705, + "step": 4092 + }, + { + "epoch": 56.8527741371778, + "grad_norm": 0.26110008358955383, + "learning_rate": 0.0006, + "loss": 3.5626933574676514, + "step": 4093 + }, + { + "epoch": 56.86675404106597, + "grad_norm": 0.22148117423057556, + "learning_rate": 0.0006, + "loss": 3.5739552974700928, + "step": 4094 + }, + { + "epoch": 56.88073394495413, + "grad_norm": 0.20535576343536377, + "learning_rate": 0.0006, + "loss": 3.566840648651123, + "step": 4095 + }, + { + "epoch": 56.89471384884229, + "grad_norm": 0.1928025484085083, + "learning_rate": 0.0006, + "loss": 3.5637013912200928, + "step": 4096 + }, + { + "epoch": 56.90869375273045, + "grad_norm": 0.1989327371120453, + "learning_rate": 0.0006, + "loss": 3.5881259441375732, + "step": 4097 + }, + { + "epoch": 56.92267365661861, + "grad_norm": 0.21137912571430206, + "learning_rate": 0.0006, + "loss": 3.5513358116149902, + "step": 4098 + }, + { + "epoch": 56.93665356050677, + "grad_norm": 0.22471629083156586, + "learning_rate": 0.0006, + "loss": 3.5630130767822266, + "step": 4099 + }, + { + "epoch": 56.95063346439493, + "grad_norm": 0.2323181927204132, + "learning_rate": 0.0006, + "loss": 3.559762477874756, + "step": 4100 + }, + { + "epoch": 56.964613368283096, + "grad_norm": 0.2020239382982254, + "learning_rate": 0.0006, + "loss": 3.596774101257324, + "step": 4101 + }, + { + "epoch": 56.97859327217125, + "grad_norm": 0.21822074055671692, + "learning_rate": 0.0006, + "loss": 3.598115921020508, + "step": 4102 + }, + { + "epoch": 56.992573176059416, + "grad_norm": 0.20600785315036774, + "learning_rate": 0.0006, + "loss": 3.5579686164855957, + "step": 4103 + }, + { + "epoch": 57.0, + "grad_norm": 0.23575574159622192, + "learning_rate": 0.0006, + "loss": 3.57532000541687, + "step": 4104 + }, + { + "epoch": 57.0, + "eval_loss": 3.9726130962371826, + "eval_runtime": 44.7918, + "eval_samples_per_second": 54.519, + "eval_steps_per_second": 3.416, + "step": 4104 + }, + { + "epoch": 57.01397990388816, + "grad_norm": 0.2366827428340912, + "learning_rate": 0.0006, + "loss": 3.552804946899414, + "step": 4105 + }, + { + "epoch": 57.02795980777632, + "grad_norm": 0.2728131115436554, + "learning_rate": 0.0006, + "loss": 3.5407862663269043, + "step": 4106 + }, + { + "epoch": 57.04193971166448, + "grad_norm": 0.2685103416442871, + "learning_rate": 0.0006, + "loss": 3.525047779083252, + "step": 4107 + }, + { + "epoch": 57.05591961555265, + "grad_norm": 0.26493778824806213, + "learning_rate": 0.0006, + "loss": 3.527106523513794, + "step": 4108 + }, + { + "epoch": 57.0698995194408, + "grad_norm": 0.290961354970932, + "learning_rate": 0.0006, + "loss": 3.5482702255249023, + "step": 4109 + }, + { + "epoch": 57.083879423328966, + "grad_norm": 0.33083876967430115, + "learning_rate": 0.0006, + "loss": 3.5123658180236816, + "step": 4110 + }, + { + "epoch": 57.09785932721712, + "grad_norm": 0.28544098138809204, + "learning_rate": 0.0006, + "loss": 3.5563549995422363, + "step": 4111 + }, + { + "epoch": 57.111839231105286, + "grad_norm": 0.2516465187072754, + "learning_rate": 0.0006, + "loss": 3.547360420227051, + "step": 4112 + }, + { + "epoch": 57.12581913499345, + "grad_norm": 0.2485780417919159, + "learning_rate": 0.0006, + "loss": 3.5234861373901367, + "step": 4113 + }, + { + "epoch": 57.139799038881605, + "grad_norm": 0.246695414185524, + "learning_rate": 0.0006, + "loss": 3.573009490966797, + "step": 4114 + }, + { + "epoch": 57.15377894276977, + "grad_norm": 0.24958990514278412, + "learning_rate": 0.0006, + "loss": 3.5322680473327637, + "step": 4115 + }, + { + "epoch": 57.16775884665793, + "grad_norm": 0.20882244408130646, + "learning_rate": 0.0006, + "loss": 3.5463480949401855, + "step": 4116 + }, + { + "epoch": 57.18173875054609, + "grad_norm": 0.2372189313173294, + "learning_rate": 0.0006, + "loss": 3.543396472930908, + "step": 4117 + }, + { + "epoch": 57.19571865443425, + "grad_norm": 0.24817894399166107, + "learning_rate": 0.0006, + "loss": 3.5594849586486816, + "step": 4118 + }, + { + "epoch": 57.20969855832241, + "grad_norm": 0.2231832891702652, + "learning_rate": 0.0006, + "loss": 3.5276806354522705, + "step": 4119 + }, + { + "epoch": 57.22367846221057, + "grad_norm": 0.2211553156375885, + "learning_rate": 0.0006, + "loss": 3.5423057079315186, + "step": 4120 + }, + { + "epoch": 57.237658366098735, + "grad_norm": 0.2495127022266388, + "learning_rate": 0.0006, + "loss": 3.57668399810791, + "step": 4121 + }, + { + "epoch": 57.25163826998689, + "grad_norm": 0.2548885941505432, + "learning_rate": 0.0006, + "loss": 3.5487570762634277, + "step": 4122 + }, + { + "epoch": 57.265618173875055, + "grad_norm": 0.22884942591190338, + "learning_rate": 0.0006, + "loss": 3.560772180557251, + "step": 4123 + }, + { + "epoch": 57.27959807776322, + "grad_norm": 0.20817993581295013, + "learning_rate": 0.0006, + "loss": 3.5540637969970703, + "step": 4124 + }, + { + "epoch": 57.293577981651374, + "grad_norm": 0.2075389176607132, + "learning_rate": 0.0006, + "loss": 3.5382890701293945, + "step": 4125 + }, + { + "epoch": 57.30755788553954, + "grad_norm": 0.2081303596496582, + "learning_rate": 0.0006, + "loss": 3.554612874984741, + "step": 4126 + }, + { + "epoch": 57.3215377894277, + "grad_norm": 0.2108871191740036, + "learning_rate": 0.0006, + "loss": 3.583320379257202, + "step": 4127 + }, + { + "epoch": 57.33551769331586, + "grad_norm": 0.21608266234397888, + "learning_rate": 0.0006, + "loss": 3.5358712673187256, + "step": 4128 + }, + { + "epoch": 57.34949759720402, + "grad_norm": 0.21208034455776215, + "learning_rate": 0.0006, + "loss": 3.561821937561035, + "step": 4129 + }, + { + "epoch": 57.36347750109218, + "grad_norm": 0.2109878957271576, + "learning_rate": 0.0006, + "loss": 3.5592710971832275, + "step": 4130 + }, + { + "epoch": 57.37745740498034, + "grad_norm": 0.2175656110048294, + "learning_rate": 0.0006, + "loss": 3.5616424083709717, + "step": 4131 + }, + { + "epoch": 57.391437308868504, + "grad_norm": 0.2170158475637436, + "learning_rate": 0.0006, + "loss": 3.5580999851226807, + "step": 4132 + }, + { + "epoch": 57.40541721275666, + "grad_norm": 0.22486525774002075, + "learning_rate": 0.0006, + "loss": 3.562096118927002, + "step": 4133 + }, + { + "epoch": 57.419397116644824, + "grad_norm": 0.22458943724632263, + "learning_rate": 0.0006, + "loss": 3.5784192085266113, + "step": 4134 + }, + { + "epoch": 57.43337702053299, + "grad_norm": 0.20545627176761627, + "learning_rate": 0.0006, + "loss": 3.5740323066711426, + "step": 4135 + }, + { + "epoch": 57.44735692442114, + "grad_norm": 0.22105063498020172, + "learning_rate": 0.0006, + "loss": 3.537400245666504, + "step": 4136 + }, + { + "epoch": 57.46133682830931, + "grad_norm": 0.26679784059524536, + "learning_rate": 0.0006, + "loss": 3.5323081016540527, + "step": 4137 + }, + { + "epoch": 57.47531673219746, + "grad_norm": 0.2646673321723938, + "learning_rate": 0.0006, + "loss": 3.54030442237854, + "step": 4138 + }, + { + "epoch": 57.489296636085626, + "grad_norm": 0.22486890852451324, + "learning_rate": 0.0006, + "loss": 3.558323621749878, + "step": 4139 + }, + { + "epoch": 57.50327653997379, + "grad_norm": 0.20868313312530518, + "learning_rate": 0.0006, + "loss": 3.5296707153320312, + "step": 4140 + }, + { + "epoch": 57.517256443861946, + "grad_norm": 0.22973674535751343, + "learning_rate": 0.0006, + "loss": 3.5401687622070312, + "step": 4141 + }, + { + "epoch": 57.53123634775011, + "grad_norm": 0.22321778535842896, + "learning_rate": 0.0006, + "loss": 3.566683530807495, + "step": 4142 + }, + { + "epoch": 57.54521625163827, + "grad_norm": 0.20808766782283783, + "learning_rate": 0.0006, + "loss": 3.5398507118225098, + "step": 4143 + }, + { + "epoch": 57.55919615552643, + "grad_norm": 0.19632819294929504, + "learning_rate": 0.0006, + "loss": 3.5785460472106934, + "step": 4144 + }, + { + "epoch": 57.57317605941459, + "grad_norm": 0.18699012696743011, + "learning_rate": 0.0006, + "loss": 3.5495004653930664, + "step": 4145 + }, + { + "epoch": 57.58715596330275, + "grad_norm": 0.19161473214626312, + "learning_rate": 0.0006, + "loss": 3.550243854522705, + "step": 4146 + }, + { + "epoch": 57.60113586719091, + "grad_norm": 0.21041646599769592, + "learning_rate": 0.0006, + "loss": 3.5801823139190674, + "step": 4147 + }, + { + "epoch": 57.615115771079076, + "grad_norm": 0.2043760120868683, + "learning_rate": 0.0006, + "loss": 3.580418825149536, + "step": 4148 + }, + { + "epoch": 57.62909567496723, + "grad_norm": 0.21515823900699615, + "learning_rate": 0.0006, + "loss": 3.58026385307312, + "step": 4149 + }, + { + "epoch": 57.643075578855395, + "grad_norm": 0.20913724601268768, + "learning_rate": 0.0006, + "loss": 3.5452992916107178, + "step": 4150 + }, + { + "epoch": 57.65705548274356, + "grad_norm": 0.22621729969978333, + "learning_rate": 0.0006, + "loss": 3.5332765579223633, + "step": 4151 + }, + { + "epoch": 57.671035386631715, + "grad_norm": 0.26475241780281067, + "learning_rate": 0.0006, + "loss": 3.5701823234558105, + "step": 4152 + }, + { + "epoch": 57.68501529051988, + "grad_norm": 0.2567952275276184, + "learning_rate": 0.0006, + "loss": 3.597219228744507, + "step": 4153 + }, + { + "epoch": 57.69899519440804, + "grad_norm": 0.19640378654003143, + "learning_rate": 0.0006, + "loss": 3.5865941047668457, + "step": 4154 + }, + { + "epoch": 57.7129750982962, + "grad_norm": 0.21714240312576294, + "learning_rate": 0.0006, + "loss": 3.555518627166748, + "step": 4155 + }, + { + "epoch": 57.72695500218436, + "grad_norm": 0.2604375183582306, + "learning_rate": 0.0006, + "loss": 3.5756402015686035, + "step": 4156 + }, + { + "epoch": 57.74093490607252, + "grad_norm": 0.24627837538719177, + "learning_rate": 0.0006, + "loss": 3.550668239593506, + "step": 4157 + }, + { + "epoch": 57.75491480996068, + "grad_norm": 0.21893182396888733, + "learning_rate": 0.0006, + "loss": 3.5560038089752197, + "step": 4158 + }, + { + "epoch": 57.768894713848844, + "grad_norm": 0.23481261730194092, + "learning_rate": 0.0006, + "loss": 3.543942451477051, + "step": 4159 + }, + { + "epoch": 57.782874617737, + "grad_norm": 0.21777133643627167, + "learning_rate": 0.0006, + "loss": 3.5652658939361572, + "step": 4160 + }, + { + "epoch": 57.796854521625164, + "grad_norm": 0.2158525437116623, + "learning_rate": 0.0006, + "loss": 3.5803327560424805, + "step": 4161 + }, + { + "epoch": 57.81083442551333, + "grad_norm": 0.19519925117492676, + "learning_rate": 0.0006, + "loss": 3.5814499855041504, + "step": 4162 + }, + { + "epoch": 57.824814329401484, + "grad_norm": 0.2017558217048645, + "learning_rate": 0.0006, + "loss": 3.558722972869873, + "step": 4163 + }, + { + "epoch": 57.83879423328965, + "grad_norm": 0.22046449780464172, + "learning_rate": 0.0006, + "loss": 3.559990882873535, + "step": 4164 + }, + { + "epoch": 57.8527741371778, + "grad_norm": 0.22240568697452545, + "learning_rate": 0.0006, + "loss": 3.5427942276000977, + "step": 4165 + }, + { + "epoch": 57.86675404106597, + "grad_norm": 0.20282965898513794, + "learning_rate": 0.0006, + "loss": 3.5449461936950684, + "step": 4166 + }, + { + "epoch": 57.88073394495413, + "grad_norm": 0.20970730483531952, + "learning_rate": 0.0006, + "loss": 3.592543601989746, + "step": 4167 + }, + { + "epoch": 57.89471384884229, + "grad_norm": 0.21963168680667877, + "learning_rate": 0.0006, + "loss": 3.5564393997192383, + "step": 4168 + }, + { + "epoch": 57.90869375273045, + "grad_norm": 0.20854730904102325, + "learning_rate": 0.0006, + "loss": 3.565591335296631, + "step": 4169 + }, + { + "epoch": 57.92267365661861, + "grad_norm": 0.24149510264396667, + "learning_rate": 0.0006, + "loss": 3.574720859527588, + "step": 4170 + }, + { + "epoch": 57.93665356050677, + "grad_norm": 0.26011863350868225, + "learning_rate": 0.0006, + "loss": 3.593156337738037, + "step": 4171 + }, + { + "epoch": 57.95063346439493, + "grad_norm": 0.24111896753311157, + "learning_rate": 0.0006, + "loss": 3.5871872901916504, + "step": 4172 + }, + { + "epoch": 57.964613368283096, + "grad_norm": 0.22362647950649261, + "learning_rate": 0.0006, + "loss": 3.568572998046875, + "step": 4173 + }, + { + "epoch": 57.97859327217125, + "grad_norm": 0.23621505498886108, + "learning_rate": 0.0006, + "loss": 3.5627479553222656, + "step": 4174 + }, + { + "epoch": 57.992573176059416, + "grad_norm": 0.2252524048089981, + "learning_rate": 0.0006, + "loss": 3.594430446624756, + "step": 4175 + }, + { + "epoch": 58.0, + "grad_norm": 0.24568618834018707, + "learning_rate": 0.0006, + "loss": 3.5520875453948975, + "step": 4176 + }, + { + "epoch": 58.0, + "eval_loss": 3.978929042816162, + "eval_runtime": 44.8688, + "eval_samples_per_second": 54.425, + "eval_steps_per_second": 3.41, + "step": 4176 + }, + { + "epoch": 58.01397990388816, + "grad_norm": 0.23220741748809814, + "learning_rate": 0.0006, + "loss": 3.5401225090026855, + "step": 4177 + }, + { + "epoch": 58.02795980777632, + "grad_norm": 0.214580699801445, + "learning_rate": 0.0006, + "loss": 3.507652759552002, + "step": 4178 + }, + { + "epoch": 58.04193971166448, + "grad_norm": 0.20596857368946075, + "learning_rate": 0.0006, + "loss": 3.5591790676116943, + "step": 4179 + }, + { + "epoch": 58.05591961555265, + "grad_norm": 0.23054419457912445, + "learning_rate": 0.0006, + "loss": 3.518101692199707, + "step": 4180 + }, + { + "epoch": 58.0698995194408, + "grad_norm": 0.2410690039396286, + "learning_rate": 0.0006, + "loss": 3.5270299911499023, + "step": 4181 + }, + { + "epoch": 58.083879423328966, + "grad_norm": 0.24333222210407257, + "learning_rate": 0.0006, + "loss": 3.5732290744781494, + "step": 4182 + }, + { + "epoch": 58.09785932721712, + "grad_norm": 0.2547648549079895, + "learning_rate": 0.0006, + "loss": 3.5470314025878906, + "step": 4183 + }, + { + "epoch": 58.111839231105286, + "grad_norm": 0.2366316169500351, + "learning_rate": 0.0006, + "loss": 3.500774621963501, + "step": 4184 + }, + { + "epoch": 58.12581913499345, + "grad_norm": 0.22653642296791077, + "learning_rate": 0.0006, + "loss": 3.5242254734039307, + "step": 4185 + }, + { + "epoch": 58.139799038881605, + "grad_norm": 0.25555330514907837, + "learning_rate": 0.0006, + "loss": 3.5272228717803955, + "step": 4186 + }, + { + "epoch": 58.15377894276977, + "grad_norm": 0.26559844613075256, + "learning_rate": 0.0006, + "loss": 3.5599403381347656, + "step": 4187 + }, + { + "epoch": 58.16775884665793, + "grad_norm": 0.2473350614309311, + "learning_rate": 0.0006, + "loss": 3.5130624771118164, + "step": 4188 + }, + { + "epoch": 58.18173875054609, + "grad_norm": 0.22858835756778717, + "learning_rate": 0.0006, + "loss": 3.508342742919922, + "step": 4189 + }, + { + "epoch": 58.19571865443425, + "grad_norm": 0.2151159793138504, + "learning_rate": 0.0006, + "loss": 3.533581256866455, + "step": 4190 + }, + { + "epoch": 58.20969855832241, + "grad_norm": 0.2042093276977539, + "learning_rate": 0.0006, + "loss": 3.5269458293914795, + "step": 4191 + }, + { + "epoch": 58.22367846221057, + "grad_norm": 0.20638196170330048, + "learning_rate": 0.0006, + "loss": 3.5137884616851807, + "step": 4192 + }, + { + "epoch": 58.237658366098735, + "grad_norm": 0.2018391191959381, + "learning_rate": 0.0006, + "loss": 3.533733367919922, + "step": 4193 + }, + { + "epoch": 58.25163826998689, + "grad_norm": 0.21045200526714325, + "learning_rate": 0.0006, + "loss": 3.5585010051727295, + "step": 4194 + }, + { + "epoch": 58.265618173875055, + "grad_norm": 0.2040393352508545, + "learning_rate": 0.0006, + "loss": 3.547539234161377, + "step": 4195 + }, + { + "epoch": 58.27959807776322, + "grad_norm": 0.2538772523403168, + "learning_rate": 0.0006, + "loss": 3.5487847328186035, + "step": 4196 + }, + { + "epoch": 58.293577981651374, + "grad_norm": 0.30126553773880005, + "learning_rate": 0.0006, + "loss": 3.5717992782592773, + "step": 4197 + }, + { + "epoch": 58.30755788553954, + "grad_norm": 0.2787485718727112, + "learning_rate": 0.0006, + "loss": 3.543076992034912, + "step": 4198 + }, + { + "epoch": 58.3215377894277, + "grad_norm": 0.23167021572589874, + "learning_rate": 0.0006, + "loss": 3.518887519836426, + "step": 4199 + }, + { + "epoch": 58.33551769331586, + "grad_norm": 0.23871110379695892, + "learning_rate": 0.0006, + "loss": 3.536757469177246, + "step": 4200 + }, + { + "epoch": 58.34949759720402, + "grad_norm": 0.2542787492275238, + "learning_rate": 0.0006, + "loss": 3.573086738586426, + "step": 4201 + }, + { + "epoch": 58.36347750109218, + "grad_norm": 0.2967284023761749, + "learning_rate": 0.0006, + "loss": 3.5866525173187256, + "step": 4202 + }, + { + "epoch": 58.37745740498034, + "grad_norm": 0.28304803371429443, + "learning_rate": 0.0006, + "loss": 3.5601437091827393, + "step": 4203 + }, + { + "epoch": 58.391437308868504, + "grad_norm": 0.20651954412460327, + "learning_rate": 0.0006, + "loss": 3.5591554641723633, + "step": 4204 + }, + { + "epoch": 58.40541721275666, + "grad_norm": 0.23101729154586792, + "learning_rate": 0.0006, + "loss": 3.5714032649993896, + "step": 4205 + }, + { + "epoch": 58.419397116644824, + "grad_norm": 0.24556246399879456, + "learning_rate": 0.0006, + "loss": 3.550046443939209, + "step": 4206 + }, + { + "epoch": 58.43337702053299, + "grad_norm": 0.2307356745004654, + "learning_rate": 0.0006, + "loss": 3.571850299835205, + "step": 4207 + }, + { + "epoch": 58.44735692442114, + "grad_norm": 0.23186670243740082, + "learning_rate": 0.0006, + "loss": 3.555757999420166, + "step": 4208 + }, + { + "epoch": 58.46133682830931, + "grad_norm": 0.20662686228752136, + "learning_rate": 0.0006, + "loss": 3.5590686798095703, + "step": 4209 + }, + { + "epoch": 58.47531673219746, + "grad_norm": 0.20381265878677368, + "learning_rate": 0.0006, + "loss": 3.5228846073150635, + "step": 4210 + }, + { + "epoch": 58.489296636085626, + "grad_norm": 0.20927058160305023, + "learning_rate": 0.0006, + "loss": 3.5376980304718018, + "step": 4211 + }, + { + "epoch": 58.50327653997379, + "grad_norm": 0.22782307863235474, + "learning_rate": 0.0006, + "loss": 3.5477585792541504, + "step": 4212 + }, + { + "epoch": 58.517256443861946, + "grad_norm": 0.20143239200115204, + "learning_rate": 0.0006, + "loss": 3.5429391860961914, + "step": 4213 + }, + { + "epoch": 58.53123634775011, + "grad_norm": 0.2120865285396576, + "learning_rate": 0.0006, + "loss": 3.5543365478515625, + "step": 4214 + }, + { + "epoch": 58.54521625163827, + "grad_norm": 0.2032771110534668, + "learning_rate": 0.0006, + "loss": 3.5307888984680176, + "step": 4215 + }, + { + "epoch": 58.55919615552643, + "grad_norm": 0.20994187891483307, + "learning_rate": 0.0006, + "loss": 3.581739664077759, + "step": 4216 + }, + { + "epoch": 58.57317605941459, + "grad_norm": 0.23686161637306213, + "learning_rate": 0.0006, + "loss": 3.5274312496185303, + "step": 4217 + }, + { + "epoch": 58.58715596330275, + "grad_norm": 0.21081998944282532, + "learning_rate": 0.0006, + "loss": 3.547239303588867, + "step": 4218 + }, + { + "epoch": 58.60113586719091, + "grad_norm": 0.20353151857852936, + "learning_rate": 0.0006, + "loss": 3.5522308349609375, + "step": 4219 + }, + { + "epoch": 58.615115771079076, + "grad_norm": 0.20888762176036835, + "learning_rate": 0.0006, + "loss": 3.5535459518432617, + "step": 4220 + }, + { + "epoch": 58.62909567496723, + "grad_norm": 0.2024519443511963, + "learning_rate": 0.0006, + "loss": 3.5320982933044434, + "step": 4221 + }, + { + "epoch": 58.643075578855395, + "grad_norm": 0.19622337818145752, + "learning_rate": 0.0006, + "loss": 3.5581917762756348, + "step": 4222 + }, + { + "epoch": 58.65705548274356, + "grad_norm": 0.1966600865125656, + "learning_rate": 0.0006, + "loss": 3.5412650108337402, + "step": 4223 + }, + { + "epoch": 58.671035386631715, + "grad_norm": 0.19325542449951172, + "learning_rate": 0.0006, + "loss": 3.570521593093872, + "step": 4224 + }, + { + "epoch": 58.68501529051988, + "grad_norm": 0.20674128830432892, + "learning_rate": 0.0006, + "loss": 3.5727484226226807, + "step": 4225 + }, + { + "epoch": 58.69899519440804, + "grad_norm": 0.1959284245967865, + "learning_rate": 0.0006, + "loss": 3.5655486583709717, + "step": 4226 + }, + { + "epoch": 58.7129750982962, + "grad_norm": 0.2044358104467392, + "learning_rate": 0.0006, + "loss": 3.5477449893951416, + "step": 4227 + }, + { + "epoch": 58.72695500218436, + "grad_norm": 0.21381069719791412, + "learning_rate": 0.0006, + "loss": 3.533381462097168, + "step": 4228 + }, + { + "epoch": 58.74093490607252, + "grad_norm": 0.20168009400367737, + "learning_rate": 0.0006, + "loss": 3.5401244163513184, + "step": 4229 + }, + { + "epoch": 58.75491480996068, + "grad_norm": 0.20853811502456665, + "learning_rate": 0.0006, + "loss": 3.5669009685516357, + "step": 4230 + }, + { + "epoch": 58.768894713848844, + "grad_norm": 0.2135785073041916, + "learning_rate": 0.0006, + "loss": 3.5697989463806152, + "step": 4231 + }, + { + "epoch": 58.782874617737, + "grad_norm": 0.20372799038887024, + "learning_rate": 0.0006, + "loss": 3.592245101928711, + "step": 4232 + }, + { + "epoch": 58.796854521625164, + "grad_norm": 0.20562207698822021, + "learning_rate": 0.0006, + "loss": 3.5732932090759277, + "step": 4233 + }, + { + "epoch": 58.81083442551333, + "grad_norm": 0.1932520568370819, + "learning_rate": 0.0006, + "loss": 3.581766128540039, + "step": 4234 + }, + { + "epoch": 58.824814329401484, + "grad_norm": 0.20229186117649078, + "learning_rate": 0.0006, + "loss": 3.5758426189422607, + "step": 4235 + }, + { + "epoch": 58.83879423328965, + "grad_norm": 0.21348924934864044, + "learning_rate": 0.0006, + "loss": 3.573164939880371, + "step": 4236 + }, + { + "epoch": 58.8527741371778, + "grad_norm": 0.2240375131368637, + "learning_rate": 0.0006, + "loss": 3.578442096710205, + "step": 4237 + }, + { + "epoch": 58.86675404106597, + "grad_norm": 0.22859376668930054, + "learning_rate": 0.0006, + "loss": 3.5597116947174072, + "step": 4238 + }, + { + "epoch": 58.88073394495413, + "grad_norm": 0.22347290813922882, + "learning_rate": 0.0006, + "loss": 3.557039260864258, + "step": 4239 + }, + { + "epoch": 58.89471384884229, + "grad_norm": 0.19835364818572998, + "learning_rate": 0.0006, + "loss": 3.5832467079162598, + "step": 4240 + }, + { + "epoch": 58.90869375273045, + "grad_norm": 0.21189740300178528, + "learning_rate": 0.0006, + "loss": 3.5421836376190186, + "step": 4241 + }, + { + "epoch": 58.92267365661861, + "grad_norm": 0.21234451234340668, + "learning_rate": 0.0006, + "loss": 3.6048710346221924, + "step": 4242 + }, + { + "epoch": 58.93665356050677, + "grad_norm": 0.2107880860567093, + "learning_rate": 0.0006, + "loss": 3.58248233795166, + "step": 4243 + }, + { + "epoch": 58.95063346439493, + "grad_norm": 0.21674086153507233, + "learning_rate": 0.0006, + "loss": 3.582352876663208, + "step": 4244 + }, + { + "epoch": 58.964613368283096, + "grad_norm": 0.21057581901550293, + "learning_rate": 0.0006, + "loss": 3.5387773513793945, + "step": 4245 + }, + { + "epoch": 58.97859327217125, + "grad_norm": 0.20203082263469696, + "learning_rate": 0.0006, + "loss": 3.5805740356445312, + "step": 4246 + }, + { + "epoch": 58.992573176059416, + "grad_norm": 0.21071292459964752, + "learning_rate": 0.0006, + "loss": 3.5644760131835938, + "step": 4247 + }, + { + "epoch": 59.0, + "grad_norm": 0.2473233938217163, + "learning_rate": 0.0006, + "loss": 3.56392765045166, + "step": 4248 + }, + { + "epoch": 59.0, + "eval_loss": 3.9670467376708984, + "eval_runtime": 44.7697, + "eval_samples_per_second": 54.546, + "eval_steps_per_second": 3.417, + "step": 4248 + }, + { + "epoch": 59.01397990388816, + "grad_norm": 0.22915491461753845, + "learning_rate": 0.0006, + "loss": 3.5110130310058594, + "step": 4249 + }, + { + "epoch": 59.02795980777632, + "grad_norm": 0.2629511058330536, + "learning_rate": 0.0006, + "loss": 3.5493721961975098, + "step": 4250 + }, + { + "epoch": 59.04193971166448, + "grad_norm": 0.2954505383968353, + "learning_rate": 0.0006, + "loss": 3.555753707885742, + "step": 4251 + }, + { + "epoch": 59.05591961555265, + "grad_norm": 0.2728694677352905, + "learning_rate": 0.0006, + "loss": 3.5089950561523438, + "step": 4252 + }, + { + "epoch": 59.0698995194408, + "grad_norm": 0.25955384969711304, + "learning_rate": 0.0006, + "loss": 3.509044647216797, + "step": 4253 + }, + { + "epoch": 59.083879423328966, + "grad_norm": 0.32285967469215393, + "learning_rate": 0.0006, + "loss": 3.5324721336364746, + "step": 4254 + }, + { + "epoch": 59.09785932721712, + "grad_norm": 0.2913302779197693, + "learning_rate": 0.0006, + "loss": 3.5004022121429443, + "step": 4255 + }, + { + "epoch": 59.111839231105286, + "grad_norm": 0.23795513808727264, + "learning_rate": 0.0006, + "loss": 3.515099048614502, + "step": 4256 + }, + { + "epoch": 59.12581913499345, + "grad_norm": 0.2788177728652954, + "learning_rate": 0.0006, + "loss": 3.524991035461426, + "step": 4257 + }, + { + "epoch": 59.139799038881605, + "grad_norm": 0.32389938831329346, + "learning_rate": 0.0006, + "loss": 3.5330004692077637, + "step": 4258 + }, + { + "epoch": 59.15377894276977, + "grad_norm": 0.2921825647354126, + "learning_rate": 0.0006, + "loss": 3.530616283416748, + "step": 4259 + }, + { + "epoch": 59.16775884665793, + "grad_norm": 0.28415167331695557, + "learning_rate": 0.0006, + "loss": 3.5276989936828613, + "step": 4260 + }, + { + "epoch": 59.18173875054609, + "grad_norm": 0.283626526594162, + "learning_rate": 0.0006, + "loss": 3.564985752105713, + "step": 4261 + }, + { + "epoch": 59.19571865443425, + "grad_norm": 0.2655615210533142, + "learning_rate": 0.0006, + "loss": 3.536499500274658, + "step": 4262 + }, + { + "epoch": 59.20969855832241, + "grad_norm": 0.2794124484062195, + "learning_rate": 0.0006, + "loss": 3.570883274078369, + "step": 4263 + }, + { + "epoch": 59.22367846221057, + "grad_norm": 0.2803778052330017, + "learning_rate": 0.0006, + "loss": 3.5143651962280273, + "step": 4264 + }, + { + "epoch": 59.237658366098735, + "grad_norm": 0.2584295868873596, + "learning_rate": 0.0006, + "loss": 3.548056125640869, + "step": 4265 + }, + { + "epoch": 59.25163826998689, + "grad_norm": 0.26859962940216064, + "learning_rate": 0.0006, + "loss": 3.511655807495117, + "step": 4266 + }, + { + "epoch": 59.265618173875055, + "grad_norm": 0.26620036363601685, + "learning_rate": 0.0006, + "loss": 3.5554311275482178, + "step": 4267 + }, + { + "epoch": 59.27959807776322, + "grad_norm": 0.2325621247291565, + "learning_rate": 0.0006, + "loss": 3.5126709938049316, + "step": 4268 + }, + { + "epoch": 59.293577981651374, + "grad_norm": 0.24758809804916382, + "learning_rate": 0.0006, + "loss": 3.5747783184051514, + "step": 4269 + }, + { + "epoch": 59.30755788553954, + "grad_norm": 0.26378121972084045, + "learning_rate": 0.0006, + "loss": 3.538012742996216, + "step": 4270 + }, + { + "epoch": 59.3215377894277, + "grad_norm": 0.24299141764640808, + "learning_rate": 0.0006, + "loss": 3.533834457397461, + "step": 4271 + }, + { + "epoch": 59.33551769331586, + "grad_norm": 0.20792774856090546, + "learning_rate": 0.0006, + "loss": 3.5645856857299805, + "step": 4272 + }, + { + "epoch": 59.34949759720402, + "grad_norm": 0.21124716103076935, + "learning_rate": 0.0006, + "loss": 3.5616869926452637, + "step": 4273 + }, + { + "epoch": 59.36347750109218, + "grad_norm": 0.2644400894641876, + "learning_rate": 0.0006, + "loss": 3.531334400177002, + "step": 4274 + }, + { + "epoch": 59.37745740498034, + "grad_norm": 0.27659082412719727, + "learning_rate": 0.0006, + "loss": 3.5557894706726074, + "step": 4275 + }, + { + "epoch": 59.391437308868504, + "grad_norm": 0.21931052207946777, + "learning_rate": 0.0006, + "loss": 3.537261486053467, + "step": 4276 + }, + { + "epoch": 59.40541721275666, + "grad_norm": 0.20661118626594543, + "learning_rate": 0.0006, + "loss": 3.568042755126953, + "step": 4277 + }, + { + "epoch": 59.419397116644824, + "grad_norm": 0.2157975435256958, + "learning_rate": 0.0006, + "loss": 3.550891160964966, + "step": 4278 + }, + { + "epoch": 59.43337702053299, + "grad_norm": 0.20762090384960175, + "learning_rate": 0.0006, + "loss": 3.565798282623291, + "step": 4279 + }, + { + "epoch": 59.44735692442114, + "grad_norm": 0.19575528800487518, + "learning_rate": 0.0006, + "loss": 3.5518856048583984, + "step": 4280 + }, + { + "epoch": 59.46133682830931, + "grad_norm": 0.20730678737163544, + "learning_rate": 0.0006, + "loss": 3.5412862300872803, + "step": 4281 + }, + { + "epoch": 59.47531673219746, + "grad_norm": 0.21095411479473114, + "learning_rate": 0.0006, + "loss": 3.5491604804992676, + "step": 4282 + }, + { + "epoch": 59.489296636085626, + "grad_norm": 0.2229546755552292, + "learning_rate": 0.0006, + "loss": 3.534517765045166, + "step": 4283 + }, + { + "epoch": 59.50327653997379, + "grad_norm": 0.22375687956809998, + "learning_rate": 0.0006, + "loss": 3.5696470737457275, + "step": 4284 + }, + { + "epoch": 59.517256443861946, + "grad_norm": 0.2563750743865967, + "learning_rate": 0.0006, + "loss": 3.6050190925598145, + "step": 4285 + }, + { + "epoch": 59.53123634775011, + "grad_norm": 0.3055726885795593, + "learning_rate": 0.0006, + "loss": 3.572263240814209, + "step": 4286 + }, + { + "epoch": 59.54521625163827, + "grad_norm": 0.3095283508300781, + "learning_rate": 0.0006, + "loss": 3.545631170272827, + "step": 4287 + }, + { + "epoch": 59.55919615552643, + "grad_norm": 0.24958640336990356, + "learning_rate": 0.0006, + "loss": 3.549663543701172, + "step": 4288 + }, + { + "epoch": 59.57317605941459, + "grad_norm": 0.22277019917964935, + "learning_rate": 0.0006, + "loss": 3.5721545219421387, + "step": 4289 + }, + { + "epoch": 59.58715596330275, + "grad_norm": 0.22153833508491516, + "learning_rate": 0.0006, + "loss": 3.5103156566619873, + "step": 4290 + }, + { + "epoch": 59.60113586719091, + "grad_norm": 0.25579726696014404, + "learning_rate": 0.0006, + "loss": 3.550353527069092, + "step": 4291 + }, + { + "epoch": 59.615115771079076, + "grad_norm": 0.2242603898048401, + "learning_rate": 0.0006, + "loss": 3.5284783840179443, + "step": 4292 + }, + { + "epoch": 59.62909567496723, + "grad_norm": 0.21665683388710022, + "learning_rate": 0.0006, + "loss": 3.553835868835449, + "step": 4293 + }, + { + "epoch": 59.643075578855395, + "grad_norm": 0.21703463792800903, + "learning_rate": 0.0006, + "loss": 3.5393173694610596, + "step": 4294 + }, + { + "epoch": 59.65705548274356, + "grad_norm": 0.21264998614788055, + "learning_rate": 0.0006, + "loss": 3.566108465194702, + "step": 4295 + }, + { + "epoch": 59.671035386631715, + "grad_norm": 0.1935717612504959, + "learning_rate": 0.0006, + "loss": 3.5934512615203857, + "step": 4296 + }, + { + "epoch": 59.68501529051988, + "grad_norm": 0.20164808630943298, + "learning_rate": 0.0006, + "loss": 3.545046329498291, + "step": 4297 + }, + { + "epoch": 59.69899519440804, + "grad_norm": 0.19589892029762268, + "learning_rate": 0.0006, + "loss": 3.5302319526672363, + "step": 4298 + }, + { + "epoch": 59.7129750982962, + "grad_norm": 0.1893095225095749, + "learning_rate": 0.0006, + "loss": 3.5947837829589844, + "step": 4299 + }, + { + "epoch": 59.72695500218436, + "grad_norm": 0.20218202471733093, + "learning_rate": 0.0006, + "loss": 3.5889904499053955, + "step": 4300 + }, + { + "epoch": 59.74093490607252, + "grad_norm": 0.19681277871131897, + "learning_rate": 0.0006, + "loss": 3.581536293029785, + "step": 4301 + }, + { + "epoch": 59.75491480996068, + "grad_norm": 0.20112384855747223, + "learning_rate": 0.0006, + "loss": 3.5509750843048096, + "step": 4302 + }, + { + "epoch": 59.768894713848844, + "grad_norm": 0.1969940960407257, + "learning_rate": 0.0006, + "loss": 3.5462636947631836, + "step": 4303 + }, + { + "epoch": 59.782874617737, + "grad_norm": 0.20936219394207, + "learning_rate": 0.0006, + "loss": 3.5284390449523926, + "step": 4304 + }, + { + "epoch": 59.796854521625164, + "grad_norm": 0.21717803180217743, + "learning_rate": 0.0006, + "loss": 3.5669212341308594, + "step": 4305 + }, + { + "epoch": 59.81083442551333, + "grad_norm": 0.20210883021354675, + "learning_rate": 0.0006, + "loss": 3.5366921424865723, + "step": 4306 + }, + { + "epoch": 59.824814329401484, + "grad_norm": 0.224124476313591, + "learning_rate": 0.0006, + "loss": 3.5457663536071777, + "step": 4307 + }, + { + "epoch": 59.83879423328965, + "grad_norm": 0.2186291366815567, + "learning_rate": 0.0006, + "loss": 3.5732779502868652, + "step": 4308 + }, + { + "epoch": 59.8527741371778, + "grad_norm": 0.19785884022712708, + "learning_rate": 0.0006, + "loss": 3.5471811294555664, + "step": 4309 + }, + { + "epoch": 59.86675404106597, + "grad_norm": 0.24774281680583954, + "learning_rate": 0.0006, + "loss": 3.5839807987213135, + "step": 4310 + }, + { + "epoch": 59.88073394495413, + "grad_norm": 0.25087007880210876, + "learning_rate": 0.0006, + "loss": 3.56972336769104, + "step": 4311 + }, + { + "epoch": 59.89471384884229, + "grad_norm": 0.21474683284759521, + "learning_rate": 0.0006, + "loss": 3.5199289321899414, + "step": 4312 + }, + { + "epoch": 59.90869375273045, + "grad_norm": 0.2087765336036682, + "learning_rate": 0.0006, + "loss": 3.5777320861816406, + "step": 4313 + }, + { + "epoch": 59.92267365661861, + "grad_norm": 0.2228539139032364, + "learning_rate": 0.0006, + "loss": 3.531118392944336, + "step": 4314 + }, + { + "epoch": 59.93665356050677, + "grad_norm": 0.2456534057855606, + "learning_rate": 0.0006, + "loss": 3.5448033809661865, + "step": 4315 + }, + { + "epoch": 59.95063346439493, + "grad_norm": 0.2699171006679535, + "learning_rate": 0.0006, + "loss": 3.560724973678589, + "step": 4316 + }, + { + "epoch": 59.964613368283096, + "grad_norm": 0.2664966881275177, + "learning_rate": 0.0006, + "loss": 3.5932974815368652, + "step": 4317 + }, + { + "epoch": 59.97859327217125, + "grad_norm": 0.2137683779001236, + "learning_rate": 0.0006, + "loss": 3.5610086917877197, + "step": 4318 + }, + { + "epoch": 59.992573176059416, + "grad_norm": 0.2067531794309616, + "learning_rate": 0.0006, + "loss": 3.5588603019714355, + "step": 4319 + }, + { + "epoch": 60.0, + "grad_norm": 0.2458500862121582, + "learning_rate": 0.0006, + "loss": 3.5636165142059326, + "step": 4320 + }, + { + "epoch": 60.0, + "eval_loss": 3.967288017272949, + "eval_runtime": 44.2225, + "eval_samples_per_second": 55.221, + "eval_steps_per_second": 3.46, + "step": 4320 + }, + { + "epoch": 60.01397990388816, + "grad_norm": 0.25330978631973267, + "learning_rate": 0.0006, + "loss": 3.524343490600586, + "step": 4321 + }, + { + "epoch": 60.02795980777632, + "grad_norm": 0.3005860447883606, + "learning_rate": 0.0006, + "loss": 3.533761501312256, + "step": 4322 + }, + { + "epoch": 60.04193971166448, + "grad_norm": 0.29054996371269226, + "learning_rate": 0.0006, + "loss": 3.536410331726074, + "step": 4323 + }, + { + "epoch": 60.05591961555265, + "grad_norm": 0.23265458643436432, + "learning_rate": 0.0006, + "loss": 3.4965157508850098, + "step": 4324 + }, + { + "epoch": 60.0698995194408, + "grad_norm": 0.2330862134695053, + "learning_rate": 0.0006, + "loss": 3.4899768829345703, + "step": 4325 + }, + { + "epoch": 60.083879423328966, + "grad_norm": 0.23188516497612, + "learning_rate": 0.0006, + "loss": 3.504887580871582, + "step": 4326 + }, + { + "epoch": 60.09785932721712, + "grad_norm": 0.2152940034866333, + "learning_rate": 0.0006, + "loss": 3.5274603366851807, + "step": 4327 + }, + { + "epoch": 60.111839231105286, + "grad_norm": 0.21918490529060364, + "learning_rate": 0.0006, + "loss": 3.5223636627197266, + "step": 4328 + }, + { + "epoch": 60.12581913499345, + "grad_norm": 0.23193582892417908, + "learning_rate": 0.0006, + "loss": 3.5171899795532227, + "step": 4329 + }, + { + "epoch": 60.139799038881605, + "grad_norm": 0.2336687296628952, + "learning_rate": 0.0006, + "loss": 3.5403029918670654, + "step": 4330 + }, + { + "epoch": 60.15377894276977, + "grad_norm": 0.23833593726158142, + "learning_rate": 0.0006, + "loss": 3.5055623054504395, + "step": 4331 + }, + { + "epoch": 60.16775884665793, + "grad_norm": 0.2389385998249054, + "learning_rate": 0.0006, + "loss": 3.5423574447631836, + "step": 4332 + }, + { + "epoch": 60.18173875054609, + "grad_norm": 0.21729786694049835, + "learning_rate": 0.0006, + "loss": 3.508272647857666, + "step": 4333 + }, + { + "epoch": 60.19571865443425, + "grad_norm": 0.2118137627840042, + "learning_rate": 0.0006, + "loss": 3.556934356689453, + "step": 4334 + }, + { + "epoch": 60.20969855832241, + "grad_norm": 0.23217040300369263, + "learning_rate": 0.0006, + "loss": 3.546459674835205, + "step": 4335 + }, + { + "epoch": 60.22367846221057, + "grad_norm": 0.2446565330028534, + "learning_rate": 0.0006, + "loss": 3.5662269592285156, + "step": 4336 + }, + { + "epoch": 60.237658366098735, + "grad_norm": 0.22065940499305725, + "learning_rate": 0.0006, + "loss": 3.550262451171875, + "step": 4337 + }, + { + "epoch": 60.25163826998689, + "grad_norm": 0.22212697565555573, + "learning_rate": 0.0006, + "loss": 3.5495731830596924, + "step": 4338 + }, + { + "epoch": 60.265618173875055, + "grad_norm": 0.21770696341991425, + "learning_rate": 0.0006, + "loss": 3.5345935821533203, + "step": 4339 + }, + { + "epoch": 60.27959807776322, + "grad_norm": 0.2089550793170929, + "learning_rate": 0.0006, + "loss": 3.5704336166381836, + "step": 4340 + }, + { + "epoch": 60.293577981651374, + "grad_norm": 0.20426379144191742, + "learning_rate": 0.0006, + "loss": 3.546909809112549, + "step": 4341 + }, + { + "epoch": 60.30755788553954, + "grad_norm": 0.2038658708333969, + "learning_rate": 0.0006, + "loss": 3.5444231033325195, + "step": 4342 + }, + { + "epoch": 60.3215377894277, + "grad_norm": 0.20485089719295502, + "learning_rate": 0.0006, + "loss": 3.561206817626953, + "step": 4343 + }, + { + "epoch": 60.33551769331586, + "grad_norm": 0.19151435792446136, + "learning_rate": 0.0006, + "loss": 3.5226097106933594, + "step": 4344 + }, + { + "epoch": 60.34949759720402, + "grad_norm": 0.19078181684017181, + "learning_rate": 0.0006, + "loss": 3.5431442260742188, + "step": 4345 + }, + { + "epoch": 60.36347750109218, + "grad_norm": 0.2032487392425537, + "learning_rate": 0.0006, + "loss": 3.5317721366882324, + "step": 4346 + }, + { + "epoch": 60.37745740498034, + "grad_norm": 0.18330955505371094, + "learning_rate": 0.0006, + "loss": 3.521145820617676, + "step": 4347 + }, + { + "epoch": 60.391437308868504, + "grad_norm": 0.18987730145454407, + "learning_rate": 0.0006, + "loss": 3.4980595111846924, + "step": 4348 + }, + { + "epoch": 60.40541721275666, + "grad_norm": 0.19873160123825073, + "learning_rate": 0.0006, + "loss": 3.5639595985412598, + "step": 4349 + }, + { + "epoch": 60.419397116644824, + "grad_norm": 0.20323137938976288, + "learning_rate": 0.0006, + "loss": 3.5364837646484375, + "step": 4350 + }, + { + "epoch": 60.43337702053299, + "grad_norm": 0.20755112171173096, + "learning_rate": 0.0006, + "loss": 3.565398931503296, + "step": 4351 + }, + { + "epoch": 60.44735692442114, + "grad_norm": 0.19222456216812134, + "learning_rate": 0.0006, + "loss": 3.569659948348999, + "step": 4352 + }, + { + "epoch": 60.46133682830931, + "grad_norm": 0.18698982894420624, + "learning_rate": 0.0006, + "loss": 3.5305557250976562, + "step": 4353 + }, + { + "epoch": 60.47531673219746, + "grad_norm": 0.19300664961338043, + "learning_rate": 0.0006, + "loss": 3.5398356914520264, + "step": 4354 + }, + { + "epoch": 60.489296636085626, + "grad_norm": 0.19573862850666046, + "learning_rate": 0.0006, + "loss": 3.5549232959747314, + "step": 4355 + }, + { + "epoch": 60.50327653997379, + "grad_norm": 0.21893447637557983, + "learning_rate": 0.0006, + "loss": 3.5427680015563965, + "step": 4356 + }, + { + "epoch": 60.517256443861946, + "grad_norm": 0.2375156730413437, + "learning_rate": 0.0006, + "loss": 3.5368900299072266, + "step": 4357 + }, + { + "epoch": 60.53123634775011, + "grad_norm": 0.2430058717727661, + "learning_rate": 0.0006, + "loss": 3.5812578201293945, + "step": 4358 + }, + { + "epoch": 60.54521625163827, + "grad_norm": 0.21769747138023376, + "learning_rate": 0.0006, + "loss": 3.563126564025879, + "step": 4359 + }, + { + "epoch": 60.55919615552643, + "grad_norm": 0.19841895997524261, + "learning_rate": 0.0006, + "loss": 3.5683727264404297, + "step": 4360 + }, + { + "epoch": 60.57317605941459, + "grad_norm": 0.22039084136486053, + "learning_rate": 0.0006, + "loss": 3.5417304039001465, + "step": 4361 + }, + { + "epoch": 60.58715596330275, + "grad_norm": 0.22528418898582458, + "learning_rate": 0.0006, + "loss": 3.5606675148010254, + "step": 4362 + }, + { + "epoch": 60.60113586719091, + "grad_norm": 0.19975383579730988, + "learning_rate": 0.0006, + "loss": 3.5345380306243896, + "step": 4363 + }, + { + "epoch": 60.615115771079076, + "grad_norm": 0.18953508138656616, + "learning_rate": 0.0006, + "loss": 3.523921012878418, + "step": 4364 + }, + { + "epoch": 60.62909567496723, + "grad_norm": 0.19997848570346832, + "learning_rate": 0.0006, + "loss": 3.553741931915283, + "step": 4365 + }, + { + "epoch": 60.643075578855395, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.57025408744812, + "step": 4366 + }, + { + "epoch": 60.65705548274356, + "grad_norm": 0.20452328026294708, + "learning_rate": 0.0006, + "loss": 3.5293073654174805, + "step": 4367 + }, + { + "epoch": 60.671035386631715, + "grad_norm": 0.18740518391132355, + "learning_rate": 0.0006, + "loss": 3.520880699157715, + "step": 4368 + }, + { + "epoch": 60.68501529051988, + "grad_norm": 0.19408279657363892, + "learning_rate": 0.0006, + "loss": 3.553086757659912, + "step": 4369 + }, + { + "epoch": 60.69899519440804, + "grad_norm": 0.19472180306911469, + "learning_rate": 0.0006, + "loss": 3.557744026184082, + "step": 4370 + }, + { + "epoch": 60.7129750982962, + "grad_norm": 0.18123279511928558, + "learning_rate": 0.0006, + "loss": 3.547276258468628, + "step": 4371 + }, + { + "epoch": 60.72695500218436, + "grad_norm": 0.21011893451213837, + "learning_rate": 0.0006, + "loss": 3.544990062713623, + "step": 4372 + }, + { + "epoch": 60.74093490607252, + "grad_norm": 0.25020623207092285, + "learning_rate": 0.0006, + "loss": 3.541600227355957, + "step": 4373 + }, + { + "epoch": 60.75491480996068, + "grad_norm": 0.2579628825187683, + "learning_rate": 0.0006, + "loss": 3.547964096069336, + "step": 4374 + }, + { + "epoch": 60.768894713848844, + "grad_norm": 0.23156116902828217, + "learning_rate": 0.0006, + "loss": 3.550957202911377, + "step": 4375 + }, + { + "epoch": 60.782874617737, + "grad_norm": 0.22070197761058807, + "learning_rate": 0.0006, + "loss": 3.4950358867645264, + "step": 4376 + }, + { + "epoch": 60.796854521625164, + "grad_norm": 0.222877636551857, + "learning_rate": 0.0006, + "loss": 3.5622036457061768, + "step": 4377 + }, + { + "epoch": 60.81083442551333, + "grad_norm": 0.21662060916423798, + "learning_rate": 0.0006, + "loss": 3.551515579223633, + "step": 4378 + }, + { + "epoch": 60.824814329401484, + "grad_norm": 0.22380465269088745, + "learning_rate": 0.0006, + "loss": 3.5552866458892822, + "step": 4379 + }, + { + "epoch": 60.83879423328965, + "grad_norm": 0.24023373425006866, + "learning_rate": 0.0006, + "loss": 3.5741777420043945, + "step": 4380 + }, + { + "epoch": 60.8527741371778, + "grad_norm": 0.1921556293964386, + "learning_rate": 0.0006, + "loss": 3.535435199737549, + "step": 4381 + }, + { + "epoch": 60.86675404106597, + "grad_norm": 0.20002295076847076, + "learning_rate": 0.0006, + "loss": 3.5660810470581055, + "step": 4382 + }, + { + "epoch": 60.88073394495413, + "grad_norm": 0.22797644138336182, + "learning_rate": 0.0006, + "loss": 3.5361297130584717, + "step": 4383 + }, + { + "epoch": 60.89471384884229, + "grad_norm": 0.24129843711853027, + "learning_rate": 0.0006, + "loss": 3.578810214996338, + "step": 4384 + }, + { + "epoch": 60.90869375273045, + "grad_norm": 0.2363646924495697, + "learning_rate": 0.0006, + "loss": 3.5245485305786133, + "step": 4385 + }, + { + "epoch": 60.92267365661861, + "grad_norm": 0.22811074554920197, + "learning_rate": 0.0006, + "loss": 3.551769733428955, + "step": 4386 + }, + { + "epoch": 60.93665356050677, + "grad_norm": 0.2204643338918686, + "learning_rate": 0.0006, + "loss": 3.5833442211151123, + "step": 4387 + }, + { + "epoch": 60.95063346439493, + "grad_norm": 0.21389783918857574, + "learning_rate": 0.0006, + "loss": 3.531735897064209, + "step": 4388 + }, + { + "epoch": 60.964613368283096, + "grad_norm": 0.22142091393470764, + "learning_rate": 0.0006, + "loss": 3.5482523441314697, + "step": 4389 + }, + { + "epoch": 60.97859327217125, + "grad_norm": 0.21186122298240662, + "learning_rate": 0.0006, + "loss": 3.540555477142334, + "step": 4390 + }, + { + "epoch": 60.992573176059416, + "grad_norm": 0.19939634203910828, + "learning_rate": 0.0006, + "loss": 3.576408624649048, + "step": 4391 + }, + { + "epoch": 61.0, + "grad_norm": 0.23696118593215942, + "learning_rate": 0.0006, + "loss": 3.5633749961853027, + "step": 4392 + }, + { + "epoch": 61.0, + "eval_loss": 3.9743118286132812, + "eval_runtime": 44.7392, + "eval_samples_per_second": 54.583, + "eval_steps_per_second": 3.42, + "step": 4392 + }, + { + "epoch": 61.01397990388816, + "grad_norm": 0.24024035036563873, + "learning_rate": 0.0006, + "loss": 3.532285690307617, + "step": 4393 + }, + { + "epoch": 61.02795980777632, + "grad_norm": 0.2475728690624237, + "learning_rate": 0.0006, + "loss": 3.543304920196533, + "step": 4394 + }, + { + "epoch": 61.04193971166448, + "grad_norm": 0.23326511681079865, + "learning_rate": 0.0006, + "loss": 3.5022737979888916, + "step": 4395 + }, + { + "epoch": 61.05591961555265, + "grad_norm": 0.21414779126644135, + "learning_rate": 0.0006, + "loss": 3.5337772369384766, + "step": 4396 + }, + { + "epoch": 61.0698995194408, + "grad_norm": 0.2234504371881485, + "learning_rate": 0.0006, + "loss": 3.539985179901123, + "step": 4397 + }, + { + "epoch": 61.083879423328966, + "grad_norm": 0.2199121117591858, + "learning_rate": 0.0006, + "loss": 3.5312232971191406, + "step": 4398 + }, + { + "epoch": 61.09785932721712, + "grad_norm": 0.2444634735584259, + "learning_rate": 0.0006, + "loss": 3.527348518371582, + "step": 4399 + }, + { + "epoch": 61.111839231105286, + "grad_norm": 0.29022055864334106, + "learning_rate": 0.0006, + "loss": 3.4902563095092773, + "step": 4400 + }, + { + "epoch": 61.12581913499345, + "grad_norm": 0.29494911432266235, + "learning_rate": 0.0006, + "loss": 3.498292922973633, + "step": 4401 + }, + { + "epoch": 61.139799038881605, + "grad_norm": 0.22292214632034302, + "learning_rate": 0.0006, + "loss": 3.533914089202881, + "step": 4402 + }, + { + "epoch": 61.15377894276977, + "grad_norm": 0.22136220335960388, + "learning_rate": 0.0006, + "loss": 3.5109519958496094, + "step": 4403 + }, + { + "epoch": 61.16775884665793, + "grad_norm": 0.2325095534324646, + "learning_rate": 0.0006, + "loss": 3.5289368629455566, + "step": 4404 + }, + { + "epoch": 61.18173875054609, + "grad_norm": 0.2413562536239624, + "learning_rate": 0.0006, + "loss": 3.518467903137207, + "step": 4405 + }, + { + "epoch": 61.19571865443425, + "grad_norm": 0.25906774401664734, + "learning_rate": 0.0006, + "loss": 3.525516986846924, + "step": 4406 + }, + { + "epoch": 61.20969855832241, + "grad_norm": 0.27686211466789246, + "learning_rate": 0.0006, + "loss": 3.5516865253448486, + "step": 4407 + }, + { + "epoch": 61.22367846221057, + "grad_norm": 0.2906339764595032, + "learning_rate": 0.0006, + "loss": 3.541128158569336, + "step": 4408 + }, + { + "epoch": 61.237658366098735, + "grad_norm": 0.27868953347206116, + "learning_rate": 0.0006, + "loss": 3.5193347930908203, + "step": 4409 + }, + { + "epoch": 61.25163826998689, + "grad_norm": 0.27658969163894653, + "learning_rate": 0.0006, + "loss": 3.502227783203125, + "step": 4410 + }, + { + "epoch": 61.265618173875055, + "grad_norm": 0.2933507561683655, + "learning_rate": 0.0006, + "loss": 3.530291795730591, + "step": 4411 + }, + { + "epoch": 61.27959807776322, + "grad_norm": 0.2631373405456543, + "learning_rate": 0.0006, + "loss": 3.551851749420166, + "step": 4412 + }, + { + "epoch": 61.293577981651374, + "grad_norm": 0.2546952962875366, + "learning_rate": 0.0006, + "loss": 3.5503034591674805, + "step": 4413 + }, + { + "epoch": 61.30755788553954, + "grad_norm": 0.23794181644916534, + "learning_rate": 0.0006, + "loss": 3.546926498413086, + "step": 4414 + }, + { + "epoch": 61.3215377894277, + "grad_norm": 0.24853180348873138, + "learning_rate": 0.0006, + "loss": 3.514120101928711, + "step": 4415 + }, + { + "epoch": 61.33551769331586, + "grad_norm": 0.22304897010326385, + "learning_rate": 0.0006, + "loss": 3.5430846214294434, + "step": 4416 + }, + { + "epoch": 61.34949759720402, + "grad_norm": 0.2315143197774887, + "learning_rate": 0.0006, + "loss": 3.520509719848633, + "step": 4417 + }, + { + "epoch": 61.36347750109218, + "grad_norm": 0.22943219542503357, + "learning_rate": 0.0006, + "loss": 3.5467031002044678, + "step": 4418 + }, + { + "epoch": 61.37745740498034, + "grad_norm": 0.20610259473323822, + "learning_rate": 0.0006, + "loss": 3.523524761199951, + "step": 4419 + }, + { + "epoch": 61.391437308868504, + "grad_norm": 0.23042091727256775, + "learning_rate": 0.0006, + "loss": 3.5619053840637207, + "step": 4420 + }, + { + "epoch": 61.40541721275666, + "grad_norm": 0.23525655269622803, + "learning_rate": 0.0006, + "loss": 3.5647311210632324, + "step": 4421 + }, + { + "epoch": 61.419397116644824, + "grad_norm": 0.24424530565738678, + "learning_rate": 0.0006, + "loss": 3.5278732776641846, + "step": 4422 + }, + { + "epoch": 61.43337702053299, + "grad_norm": 0.22195497155189514, + "learning_rate": 0.0006, + "loss": 3.500657558441162, + "step": 4423 + }, + { + "epoch": 61.44735692442114, + "grad_norm": 0.20596756041049957, + "learning_rate": 0.0006, + "loss": 3.5107016563415527, + "step": 4424 + }, + { + "epoch": 61.46133682830931, + "grad_norm": 0.21293926239013672, + "learning_rate": 0.0006, + "loss": 3.5248196125030518, + "step": 4425 + }, + { + "epoch": 61.47531673219746, + "grad_norm": 0.21993403136730194, + "learning_rate": 0.0006, + "loss": 3.5247411727905273, + "step": 4426 + }, + { + "epoch": 61.489296636085626, + "grad_norm": 0.19609302282333374, + "learning_rate": 0.0006, + "loss": 3.543978452682495, + "step": 4427 + }, + { + "epoch": 61.50327653997379, + "grad_norm": 0.2064359486103058, + "learning_rate": 0.0006, + "loss": 3.525879144668579, + "step": 4428 + }, + { + "epoch": 61.517256443861946, + "grad_norm": 0.221832275390625, + "learning_rate": 0.0006, + "loss": 3.542086601257324, + "step": 4429 + }, + { + "epoch": 61.53123634775011, + "grad_norm": 0.20173773169517517, + "learning_rate": 0.0006, + "loss": 3.5395596027374268, + "step": 4430 + }, + { + "epoch": 61.54521625163827, + "grad_norm": 0.21064360439777374, + "learning_rate": 0.0006, + "loss": 3.5651049613952637, + "step": 4431 + }, + { + "epoch": 61.55919615552643, + "grad_norm": 0.2079596370458603, + "learning_rate": 0.0006, + "loss": 3.513719081878662, + "step": 4432 + }, + { + "epoch": 61.57317605941459, + "grad_norm": 0.1862022429704666, + "learning_rate": 0.0006, + "loss": 3.5438897609710693, + "step": 4433 + }, + { + "epoch": 61.58715596330275, + "grad_norm": 0.202021524310112, + "learning_rate": 0.0006, + "loss": 3.5497570037841797, + "step": 4434 + }, + { + "epoch": 61.60113586719091, + "grad_norm": 0.2252725064754486, + "learning_rate": 0.0006, + "loss": 3.5361452102661133, + "step": 4435 + }, + { + "epoch": 61.615115771079076, + "grad_norm": 0.22194477915763855, + "learning_rate": 0.0006, + "loss": 3.5436792373657227, + "step": 4436 + }, + { + "epoch": 61.62909567496723, + "grad_norm": 0.20660430192947388, + "learning_rate": 0.0006, + "loss": 3.5347955226898193, + "step": 4437 + }, + { + "epoch": 61.643075578855395, + "grad_norm": 0.19738668203353882, + "learning_rate": 0.0006, + "loss": 3.5478930473327637, + "step": 4438 + }, + { + "epoch": 61.65705548274356, + "grad_norm": 0.19570894539356232, + "learning_rate": 0.0006, + "loss": 3.581364154815674, + "step": 4439 + }, + { + "epoch": 61.671035386631715, + "grad_norm": 0.2311817854642868, + "learning_rate": 0.0006, + "loss": 3.5336194038391113, + "step": 4440 + }, + { + "epoch": 61.68501529051988, + "grad_norm": 0.23114202916622162, + "learning_rate": 0.0006, + "loss": 3.5473289489746094, + "step": 4441 + }, + { + "epoch": 61.69899519440804, + "grad_norm": 0.2412044256925583, + "learning_rate": 0.0006, + "loss": 3.558802604675293, + "step": 4442 + }, + { + "epoch": 61.7129750982962, + "grad_norm": 0.22932057082653046, + "learning_rate": 0.0006, + "loss": 3.553133726119995, + "step": 4443 + }, + { + "epoch": 61.72695500218436, + "grad_norm": 0.23192140460014343, + "learning_rate": 0.0006, + "loss": 3.5247159004211426, + "step": 4444 + }, + { + "epoch": 61.74093490607252, + "grad_norm": 0.23548972606658936, + "learning_rate": 0.0006, + "loss": 3.5654778480529785, + "step": 4445 + }, + { + "epoch": 61.75491480996068, + "grad_norm": 0.20992626249790192, + "learning_rate": 0.0006, + "loss": 3.5568647384643555, + "step": 4446 + }, + { + "epoch": 61.768894713848844, + "grad_norm": 0.20303797721862793, + "learning_rate": 0.0006, + "loss": 3.564765453338623, + "step": 4447 + }, + { + "epoch": 61.782874617737, + "grad_norm": 0.2019573301076889, + "learning_rate": 0.0006, + "loss": 3.523521900177002, + "step": 4448 + }, + { + "epoch": 61.796854521625164, + "grad_norm": 0.20591112971305847, + "learning_rate": 0.0006, + "loss": 3.5361227989196777, + "step": 4449 + }, + { + "epoch": 61.81083442551333, + "grad_norm": 0.21811535954475403, + "learning_rate": 0.0006, + "loss": 3.56982159614563, + "step": 4450 + }, + { + "epoch": 61.824814329401484, + "grad_norm": 0.24934124946594238, + "learning_rate": 0.0006, + "loss": 3.5518784523010254, + "step": 4451 + }, + { + "epoch": 61.83879423328965, + "grad_norm": 0.28142663836479187, + "learning_rate": 0.0006, + "loss": 3.5480635166168213, + "step": 4452 + }, + { + "epoch": 61.8527741371778, + "grad_norm": 0.27585235238075256, + "learning_rate": 0.0006, + "loss": 3.56685733795166, + "step": 4453 + }, + { + "epoch": 61.86675404106597, + "grad_norm": 0.24309827387332916, + "learning_rate": 0.0006, + "loss": 3.551058769226074, + "step": 4454 + }, + { + "epoch": 61.88073394495413, + "grad_norm": 0.22480300068855286, + "learning_rate": 0.0006, + "loss": 3.5644495487213135, + "step": 4455 + }, + { + "epoch": 61.89471384884229, + "grad_norm": 0.19861266016960144, + "learning_rate": 0.0006, + "loss": 3.5529613494873047, + "step": 4456 + }, + { + "epoch": 61.90869375273045, + "grad_norm": 0.20176313817501068, + "learning_rate": 0.0006, + "loss": 3.5173492431640625, + "step": 4457 + }, + { + "epoch": 61.92267365661861, + "grad_norm": 0.1964731365442276, + "learning_rate": 0.0006, + "loss": 3.5555479526519775, + "step": 4458 + }, + { + "epoch": 61.93665356050677, + "grad_norm": 0.20427751541137695, + "learning_rate": 0.0006, + "loss": 3.5312647819519043, + "step": 4459 + }, + { + "epoch": 61.95063346439493, + "grad_norm": 0.21940940618515015, + "learning_rate": 0.0006, + "loss": 3.536012649536133, + "step": 4460 + }, + { + "epoch": 61.964613368283096, + "grad_norm": 0.2100883573293686, + "learning_rate": 0.0006, + "loss": 3.5627548694610596, + "step": 4461 + }, + { + "epoch": 61.97859327217125, + "grad_norm": 0.21980689465999603, + "learning_rate": 0.0006, + "loss": 3.5933351516723633, + "step": 4462 + }, + { + "epoch": 61.992573176059416, + "grad_norm": 0.23822137713432312, + "learning_rate": 0.0006, + "loss": 3.567392349243164, + "step": 4463 + }, + { + "epoch": 62.0, + "grad_norm": 0.293637752532959, + "learning_rate": 0.0006, + "loss": 3.5707521438598633, + "step": 4464 + }, + { + "epoch": 62.0, + "eval_loss": 3.9813005924224854, + "eval_runtime": 44.8261, + "eval_samples_per_second": 54.477, + "eval_steps_per_second": 3.413, + "step": 4464 + }, + { + "epoch": 62.01397990388816, + "grad_norm": 0.2819560766220093, + "learning_rate": 0.0006, + "loss": 3.5146231651306152, + "step": 4465 + }, + { + "epoch": 62.02795980777632, + "grad_norm": 0.2446105033159256, + "learning_rate": 0.0006, + "loss": 3.48366117477417, + "step": 4466 + }, + { + "epoch": 62.04193971166448, + "grad_norm": 0.26826128363609314, + "learning_rate": 0.0006, + "loss": 3.511063814163208, + "step": 4467 + }, + { + "epoch": 62.05591961555265, + "grad_norm": 0.28266897797584534, + "learning_rate": 0.0006, + "loss": 3.560831069946289, + "step": 4468 + }, + { + "epoch": 62.0698995194408, + "grad_norm": 0.262866348028183, + "learning_rate": 0.0006, + "loss": 3.5248615741729736, + "step": 4469 + }, + { + "epoch": 62.083879423328966, + "grad_norm": 0.22957175970077515, + "learning_rate": 0.0006, + "loss": 3.518132209777832, + "step": 4470 + }, + { + "epoch": 62.09785932721712, + "grad_norm": 0.2311105579137802, + "learning_rate": 0.0006, + "loss": 3.520376443862915, + "step": 4471 + }, + { + "epoch": 62.111839231105286, + "grad_norm": 0.2455885261297226, + "learning_rate": 0.0006, + "loss": 3.532329797744751, + "step": 4472 + }, + { + "epoch": 62.12581913499345, + "grad_norm": 0.22050215303897858, + "learning_rate": 0.0006, + "loss": 3.5367608070373535, + "step": 4473 + }, + { + "epoch": 62.139799038881605, + "grad_norm": 0.2187507450580597, + "learning_rate": 0.0006, + "loss": 3.5165085792541504, + "step": 4474 + }, + { + "epoch": 62.15377894276977, + "grad_norm": 0.23510432243347168, + "learning_rate": 0.0006, + "loss": 3.5357909202575684, + "step": 4475 + }, + { + "epoch": 62.16775884665793, + "grad_norm": 0.22336673736572266, + "learning_rate": 0.0006, + "loss": 3.5183372497558594, + "step": 4476 + }, + { + "epoch": 62.18173875054609, + "grad_norm": 0.22019170224666595, + "learning_rate": 0.0006, + "loss": 3.532637596130371, + "step": 4477 + }, + { + "epoch": 62.19571865443425, + "grad_norm": 0.20902299880981445, + "learning_rate": 0.0006, + "loss": 3.5421581268310547, + "step": 4478 + }, + { + "epoch": 62.20969855832241, + "grad_norm": 0.22846505045890808, + "learning_rate": 0.0006, + "loss": 3.5008513927459717, + "step": 4479 + }, + { + "epoch": 62.22367846221057, + "grad_norm": 0.23657570779323578, + "learning_rate": 0.0006, + "loss": 3.5454330444335938, + "step": 4480 + }, + { + "epoch": 62.237658366098735, + "grad_norm": 0.22021226584911346, + "learning_rate": 0.0006, + "loss": 3.535137891769409, + "step": 4481 + }, + { + "epoch": 62.25163826998689, + "grad_norm": 0.21457694470882416, + "learning_rate": 0.0006, + "loss": 3.5051913261413574, + "step": 4482 + }, + { + "epoch": 62.265618173875055, + "grad_norm": 0.20432431995868683, + "learning_rate": 0.0006, + "loss": 3.5237550735473633, + "step": 4483 + }, + { + "epoch": 62.27959807776322, + "grad_norm": 0.20499777793884277, + "learning_rate": 0.0006, + "loss": 3.537209987640381, + "step": 4484 + }, + { + "epoch": 62.293577981651374, + "grad_norm": 0.21323661506175995, + "learning_rate": 0.0006, + "loss": 3.518765687942505, + "step": 4485 + }, + { + "epoch": 62.30755788553954, + "grad_norm": 0.19734761118888855, + "learning_rate": 0.0006, + "loss": 3.5132994651794434, + "step": 4486 + }, + { + "epoch": 62.3215377894277, + "grad_norm": 0.1844230592250824, + "learning_rate": 0.0006, + "loss": 3.5348291397094727, + "step": 4487 + }, + { + "epoch": 62.33551769331586, + "grad_norm": 0.20451737940311432, + "learning_rate": 0.0006, + "loss": 3.5055956840515137, + "step": 4488 + }, + { + "epoch": 62.34949759720402, + "grad_norm": 0.20004220306873322, + "learning_rate": 0.0006, + "loss": 3.558253526687622, + "step": 4489 + }, + { + "epoch": 62.36347750109218, + "grad_norm": 0.20544862747192383, + "learning_rate": 0.0006, + "loss": 3.5031163692474365, + "step": 4490 + }, + { + "epoch": 62.37745740498034, + "grad_norm": 0.23045147955417633, + "learning_rate": 0.0006, + "loss": 3.526170253753662, + "step": 4491 + }, + { + "epoch": 62.391437308868504, + "grad_norm": 0.2580485939979553, + "learning_rate": 0.0006, + "loss": 3.561131238937378, + "step": 4492 + }, + { + "epoch": 62.40541721275666, + "grad_norm": 0.24825656414031982, + "learning_rate": 0.0006, + "loss": 3.5550408363342285, + "step": 4493 + }, + { + "epoch": 62.419397116644824, + "grad_norm": 0.2317914366722107, + "learning_rate": 0.0006, + "loss": 3.543360948562622, + "step": 4494 + }, + { + "epoch": 62.43337702053299, + "grad_norm": 0.2186558097600937, + "learning_rate": 0.0006, + "loss": 3.5293631553649902, + "step": 4495 + }, + { + "epoch": 62.44735692442114, + "grad_norm": 0.22694920003414154, + "learning_rate": 0.0006, + "loss": 3.5315871238708496, + "step": 4496 + }, + { + "epoch": 62.46133682830931, + "grad_norm": 0.24042636156082153, + "learning_rate": 0.0006, + "loss": 3.507556915283203, + "step": 4497 + }, + { + "epoch": 62.47531673219746, + "grad_norm": 0.23853783309459686, + "learning_rate": 0.0006, + "loss": 3.546670913696289, + "step": 4498 + }, + { + "epoch": 62.489296636085626, + "grad_norm": 0.23252007365226746, + "learning_rate": 0.0006, + "loss": 3.522880792617798, + "step": 4499 + }, + { + "epoch": 62.50327653997379, + "grad_norm": 0.20553545653820038, + "learning_rate": 0.0006, + "loss": 3.5367445945739746, + "step": 4500 + }, + { + "epoch": 62.517256443861946, + "grad_norm": 0.19607895612716675, + "learning_rate": 0.0006, + "loss": 3.5319433212280273, + "step": 4501 + }, + { + "epoch": 62.53123634775011, + "grad_norm": 0.21482273936271667, + "learning_rate": 0.0006, + "loss": 3.525094509124756, + "step": 4502 + }, + { + "epoch": 62.54521625163827, + "grad_norm": 0.18248772621154785, + "learning_rate": 0.0006, + "loss": 3.5324039459228516, + "step": 4503 + }, + { + "epoch": 62.55919615552643, + "grad_norm": 0.19388431310653687, + "learning_rate": 0.0006, + "loss": 3.5579934120178223, + "step": 4504 + }, + { + "epoch": 62.57317605941459, + "grad_norm": 0.1987910121679306, + "learning_rate": 0.0006, + "loss": 3.5049524307250977, + "step": 4505 + }, + { + "epoch": 62.58715596330275, + "grad_norm": 0.2176462560892105, + "learning_rate": 0.0006, + "loss": 3.517348051071167, + "step": 4506 + }, + { + "epoch": 62.60113586719091, + "grad_norm": 0.20312298834323883, + "learning_rate": 0.0006, + "loss": 3.589355230331421, + "step": 4507 + }, + { + "epoch": 62.615115771079076, + "grad_norm": 0.20725034177303314, + "learning_rate": 0.0006, + "loss": 3.5353567600250244, + "step": 4508 + }, + { + "epoch": 62.62909567496723, + "grad_norm": 0.1944240778684616, + "learning_rate": 0.0006, + "loss": 3.5435595512390137, + "step": 4509 + }, + { + "epoch": 62.643075578855395, + "grad_norm": 0.1925448626279831, + "learning_rate": 0.0006, + "loss": 3.5406274795532227, + "step": 4510 + }, + { + "epoch": 62.65705548274356, + "grad_norm": 0.1932716965675354, + "learning_rate": 0.0006, + "loss": 3.582890748977661, + "step": 4511 + }, + { + "epoch": 62.671035386631715, + "grad_norm": 0.1993696093559265, + "learning_rate": 0.0006, + "loss": 3.533501148223877, + "step": 4512 + }, + { + "epoch": 62.68501529051988, + "grad_norm": 0.22586803138256073, + "learning_rate": 0.0006, + "loss": 3.5265021324157715, + "step": 4513 + }, + { + "epoch": 62.69899519440804, + "grad_norm": 0.22882722318172455, + "learning_rate": 0.0006, + "loss": 3.5486440658569336, + "step": 4514 + }, + { + "epoch": 62.7129750982962, + "grad_norm": 0.21674324572086334, + "learning_rate": 0.0006, + "loss": 3.5362353324890137, + "step": 4515 + }, + { + "epoch": 62.72695500218436, + "grad_norm": 0.1941487342119217, + "learning_rate": 0.0006, + "loss": 3.5191574096679688, + "step": 4516 + }, + { + "epoch": 62.74093490607252, + "grad_norm": 0.2034437507390976, + "learning_rate": 0.0006, + "loss": 3.5412280559539795, + "step": 4517 + }, + { + "epoch": 62.75491480996068, + "grad_norm": 0.22009888291358948, + "learning_rate": 0.0006, + "loss": 3.589108467102051, + "step": 4518 + }, + { + "epoch": 62.768894713848844, + "grad_norm": 0.21187400817871094, + "learning_rate": 0.0006, + "loss": 3.527048349380493, + "step": 4519 + }, + { + "epoch": 62.782874617737, + "grad_norm": 0.2089816778898239, + "learning_rate": 0.0006, + "loss": 3.551755905151367, + "step": 4520 + }, + { + "epoch": 62.796854521625164, + "grad_norm": 0.2095830738544464, + "learning_rate": 0.0006, + "loss": 3.5302011966705322, + "step": 4521 + }, + { + "epoch": 62.81083442551333, + "grad_norm": 0.20930075645446777, + "learning_rate": 0.0006, + "loss": 3.5276856422424316, + "step": 4522 + }, + { + "epoch": 62.824814329401484, + "grad_norm": 0.1876252442598343, + "learning_rate": 0.0006, + "loss": 3.5467052459716797, + "step": 4523 + }, + { + "epoch": 62.83879423328965, + "grad_norm": 0.21137461066246033, + "learning_rate": 0.0006, + "loss": 3.5446524620056152, + "step": 4524 + }, + { + "epoch": 62.8527741371778, + "grad_norm": 0.21340630948543549, + "learning_rate": 0.0006, + "loss": 3.580069065093994, + "step": 4525 + }, + { + "epoch": 62.86675404106597, + "grad_norm": 0.22623291611671448, + "learning_rate": 0.0006, + "loss": 3.5203771591186523, + "step": 4526 + }, + { + "epoch": 62.88073394495413, + "grad_norm": 0.20891177654266357, + "learning_rate": 0.0006, + "loss": 3.5408263206481934, + "step": 4527 + }, + { + "epoch": 62.89471384884229, + "grad_norm": 0.19802644848823547, + "learning_rate": 0.0006, + "loss": 3.521557569503784, + "step": 4528 + }, + { + "epoch": 62.90869375273045, + "grad_norm": 0.20889638364315033, + "learning_rate": 0.0006, + "loss": 3.535468578338623, + "step": 4529 + }, + { + "epoch": 62.92267365661861, + "grad_norm": 0.20450912415981293, + "learning_rate": 0.0006, + "loss": 3.5473756790161133, + "step": 4530 + }, + { + "epoch": 62.93665356050677, + "grad_norm": 0.24126461148262024, + "learning_rate": 0.0006, + "loss": 3.5418906211853027, + "step": 4531 + }, + { + "epoch": 62.95063346439493, + "grad_norm": 0.2789648473262787, + "learning_rate": 0.0006, + "loss": 3.5500879287719727, + "step": 4532 + }, + { + "epoch": 62.964613368283096, + "grad_norm": 0.2855475842952728, + "learning_rate": 0.0006, + "loss": 3.5589256286621094, + "step": 4533 + }, + { + "epoch": 62.97859327217125, + "grad_norm": 0.2353338748216629, + "learning_rate": 0.0006, + "loss": 3.576944351196289, + "step": 4534 + }, + { + "epoch": 62.992573176059416, + "grad_norm": 0.2360614389181137, + "learning_rate": 0.0006, + "loss": 3.550532341003418, + "step": 4535 + }, + { + "epoch": 63.0, + "grad_norm": 0.28869640827178955, + "learning_rate": 0.0006, + "loss": 3.4976563453674316, + "step": 4536 + }, + { + "epoch": 63.0, + "eval_loss": 3.967819929122925, + "eval_runtime": 44.8611, + "eval_samples_per_second": 54.435, + "eval_steps_per_second": 3.411, + "step": 4536 + }, + { + "epoch": 63.01397990388816, + "grad_norm": 0.2646687626838684, + "learning_rate": 0.0006, + "loss": 3.498749017715454, + "step": 4537 + }, + { + "epoch": 63.02795980777632, + "grad_norm": 0.26432088017463684, + "learning_rate": 0.0006, + "loss": 3.5114989280700684, + "step": 4538 + }, + { + "epoch": 63.04193971166448, + "grad_norm": 0.2657051980495453, + "learning_rate": 0.0006, + "loss": 3.5383224487304688, + "step": 4539 + }, + { + "epoch": 63.05591961555265, + "grad_norm": 0.24790945649147034, + "learning_rate": 0.0006, + "loss": 3.5148894786834717, + "step": 4540 + }, + { + "epoch": 63.0698995194408, + "grad_norm": 0.2703767716884613, + "learning_rate": 0.0006, + "loss": 3.5212574005126953, + "step": 4541 + }, + { + "epoch": 63.083879423328966, + "grad_norm": 0.28064072132110596, + "learning_rate": 0.0006, + "loss": 3.4917726516723633, + "step": 4542 + }, + { + "epoch": 63.09785932721712, + "grad_norm": 0.30201056599617004, + "learning_rate": 0.0006, + "loss": 3.524174213409424, + "step": 4543 + }, + { + "epoch": 63.111839231105286, + "grad_norm": 0.2668539583683014, + "learning_rate": 0.0006, + "loss": 3.5284507274627686, + "step": 4544 + }, + { + "epoch": 63.12581913499345, + "grad_norm": 0.23223146796226501, + "learning_rate": 0.0006, + "loss": 3.500607967376709, + "step": 4545 + }, + { + "epoch": 63.139799038881605, + "grad_norm": 0.22300627827644348, + "learning_rate": 0.0006, + "loss": 3.509087562561035, + "step": 4546 + }, + { + "epoch": 63.15377894276977, + "grad_norm": 0.217527836561203, + "learning_rate": 0.0006, + "loss": 3.518986225128174, + "step": 4547 + }, + { + "epoch": 63.16775884665793, + "grad_norm": 0.2347487509250641, + "learning_rate": 0.0006, + "loss": 3.5288784503936768, + "step": 4548 + }, + { + "epoch": 63.18173875054609, + "grad_norm": 0.21052609384059906, + "learning_rate": 0.0006, + "loss": 3.534576892852783, + "step": 4549 + }, + { + "epoch": 63.19571865443425, + "grad_norm": 0.20836210250854492, + "learning_rate": 0.0006, + "loss": 3.540663242340088, + "step": 4550 + }, + { + "epoch": 63.20969855832241, + "grad_norm": 0.2257382571697235, + "learning_rate": 0.0006, + "loss": 3.5042576789855957, + "step": 4551 + }, + { + "epoch": 63.22367846221057, + "grad_norm": 0.25684455037117004, + "learning_rate": 0.0006, + "loss": 3.546757221221924, + "step": 4552 + }, + { + "epoch": 63.237658366098735, + "grad_norm": 0.25408735871315, + "learning_rate": 0.0006, + "loss": 3.5245237350463867, + "step": 4553 + }, + { + "epoch": 63.25163826998689, + "grad_norm": 0.2105615735054016, + "learning_rate": 0.0006, + "loss": 3.4935879707336426, + "step": 4554 + }, + { + "epoch": 63.265618173875055, + "grad_norm": 0.23599031567573547, + "learning_rate": 0.0006, + "loss": 3.5445284843444824, + "step": 4555 + }, + { + "epoch": 63.27959807776322, + "grad_norm": 0.2786335349082947, + "learning_rate": 0.0006, + "loss": 3.5432677268981934, + "step": 4556 + }, + { + "epoch": 63.293577981651374, + "grad_norm": 0.26032358407974243, + "learning_rate": 0.0006, + "loss": 3.542494297027588, + "step": 4557 + }, + { + "epoch": 63.30755788553954, + "grad_norm": 0.23259027302265167, + "learning_rate": 0.0006, + "loss": 3.5343332290649414, + "step": 4558 + }, + { + "epoch": 63.3215377894277, + "grad_norm": 0.2183394432067871, + "learning_rate": 0.0006, + "loss": 3.552696466445923, + "step": 4559 + }, + { + "epoch": 63.33551769331586, + "grad_norm": 0.23014239966869354, + "learning_rate": 0.0006, + "loss": 3.507399559020996, + "step": 4560 + }, + { + "epoch": 63.34949759720402, + "grad_norm": 0.22618430852890015, + "learning_rate": 0.0006, + "loss": 3.5329864025115967, + "step": 4561 + }, + { + "epoch": 63.36347750109218, + "grad_norm": 0.22740741074085236, + "learning_rate": 0.0006, + "loss": 3.5098977088928223, + "step": 4562 + }, + { + "epoch": 63.37745740498034, + "grad_norm": 0.21428990364074707, + "learning_rate": 0.0006, + "loss": 3.5244359970092773, + "step": 4563 + }, + { + "epoch": 63.391437308868504, + "grad_norm": 0.224009707570076, + "learning_rate": 0.0006, + "loss": 3.491610288619995, + "step": 4564 + }, + { + "epoch": 63.40541721275666, + "grad_norm": 0.24859225749969482, + "learning_rate": 0.0006, + "loss": 3.534926414489746, + "step": 4565 + }, + { + "epoch": 63.419397116644824, + "grad_norm": 0.27701491117477417, + "learning_rate": 0.0006, + "loss": 3.501753091812134, + "step": 4566 + }, + { + "epoch": 63.43337702053299, + "grad_norm": 0.27911627292633057, + "learning_rate": 0.0006, + "loss": 3.5505383014678955, + "step": 4567 + }, + { + "epoch": 63.44735692442114, + "grad_norm": 0.25913184881210327, + "learning_rate": 0.0006, + "loss": 3.5086495876312256, + "step": 4568 + }, + { + "epoch": 63.46133682830931, + "grad_norm": 0.19867996871471405, + "learning_rate": 0.0006, + "loss": 3.497912645339966, + "step": 4569 + }, + { + "epoch": 63.47531673219746, + "grad_norm": 0.21337668597698212, + "learning_rate": 0.0006, + "loss": 3.511085033416748, + "step": 4570 + }, + { + "epoch": 63.489296636085626, + "grad_norm": 0.2221735268831253, + "learning_rate": 0.0006, + "loss": 3.504108190536499, + "step": 4571 + }, + { + "epoch": 63.50327653997379, + "grad_norm": 0.20739667117595673, + "learning_rate": 0.0006, + "loss": 3.50193452835083, + "step": 4572 + }, + { + "epoch": 63.517256443861946, + "grad_norm": 0.20149169862270355, + "learning_rate": 0.0006, + "loss": 3.5508787631988525, + "step": 4573 + }, + { + "epoch": 63.53123634775011, + "grad_norm": 0.19348420202732086, + "learning_rate": 0.0006, + "loss": 3.521906852722168, + "step": 4574 + }, + { + "epoch": 63.54521625163827, + "grad_norm": 0.19946886599063873, + "learning_rate": 0.0006, + "loss": 3.509187698364258, + "step": 4575 + }, + { + "epoch": 63.55919615552643, + "grad_norm": 0.21359245479106903, + "learning_rate": 0.0006, + "loss": 3.5194101333618164, + "step": 4576 + }, + { + "epoch": 63.57317605941459, + "grad_norm": 0.21726977825164795, + "learning_rate": 0.0006, + "loss": 3.553684711456299, + "step": 4577 + }, + { + "epoch": 63.58715596330275, + "grad_norm": 0.21707940101623535, + "learning_rate": 0.0006, + "loss": 3.5474231243133545, + "step": 4578 + }, + { + "epoch": 63.60113586719091, + "grad_norm": 0.2226727306842804, + "learning_rate": 0.0006, + "loss": 3.556403636932373, + "step": 4579 + }, + { + "epoch": 63.615115771079076, + "grad_norm": 0.22008022665977478, + "learning_rate": 0.0006, + "loss": 3.4910531044006348, + "step": 4580 + }, + { + "epoch": 63.62909567496723, + "grad_norm": 0.20050542056560516, + "learning_rate": 0.0006, + "loss": 3.5085577964782715, + "step": 4581 + }, + { + "epoch": 63.643075578855395, + "grad_norm": 0.21937592327594757, + "learning_rate": 0.0006, + "loss": 3.530182361602783, + "step": 4582 + }, + { + "epoch": 63.65705548274356, + "grad_norm": 0.23152779042720795, + "learning_rate": 0.0006, + "loss": 3.551499843597412, + "step": 4583 + }, + { + "epoch": 63.671035386631715, + "grad_norm": 0.22870875895023346, + "learning_rate": 0.0006, + "loss": 3.5576539039611816, + "step": 4584 + }, + { + "epoch": 63.68501529051988, + "grad_norm": 0.23679395020008087, + "learning_rate": 0.0006, + "loss": 3.5392303466796875, + "step": 4585 + }, + { + "epoch": 63.69899519440804, + "grad_norm": 0.2301628291606903, + "learning_rate": 0.0006, + "loss": 3.53672194480896, + "step": 4586 + }, + { + "epoch": 63.7129750982962, + "grad_norm": 0.20859898626804352, + "learning_rate": 0.0006, + "loss": 3.5405986309051514, + "step": 4587 + }, + { + "epoch": 63.72695500218436, + "grad_norm": 0.2263292521238327, + "learning_rate": 0.0006, + "loss": 3.557982921600342, + "step": 4588 + }, + { + "epoch": 63.74093490607252, + "grad_norm": 0.21420416235923767, + "learning_rate": 0.0006, + "loss": 3.531942129135132, + "step": 4589 + }, + { + "epoch": 63.75491480996068, + "grad_norm": 0.21604575216770172, + "learning_rate": 0.0006, + "loss": 3.54978346824646, + "step": 4590 + }, + { + "epoch": 63.768894713848844, + "grad_norm": 0.2530747354030609, + "learning_rate": 0.0006, + "loss": 3.576831817626953, + "step": 4591 + }, + { + "epoch": 63.782874617737, + "grad_norm": 0.26169830560684204, + "learning_rate": 0.0006, + "loss": 3.5594139099121094, + "step": 4592 + }, + { + "epoch": 63.796854521625164, + "grad_norm": 0.23454166948795319, + "learning_rate": 0.0006, + "loss": 3.527966022491455, + "step": 4593 + }, + { + "epoch": 63.81083442551333, + "grad_norm": 0.25329118967056274, + "learning_rate": 0.0006, + "loss": 3.555817127227783, + "step": 4594 + }, + { + "epoch": 63.824814329401484, + "grad_norm": 0.26875534653663635, + "learning_rate": 0.0006, + "loss": 3.5659937858581543, + "step": 4595 + }, + { + "epoch": 63.83879423328965, + "grad_norm": 0.2446713000535965, + "learning_rate": 0.0006, + "loss": 3.520578384399414, + "step": 4596 + }, + { + "epoch": 63.8527741371778, + "grad_norm": 0.24629594385623932, + "learning_rate": 0.0006, + "loss": 3.562185764312744, + "step": 4597 + }, + { + "epoch": 63.86675404106597, + "grad_norm": 0.25355106592178345, + "learning_rate": 0.0006, + "loss": 3.549164295196533, + "step": 4598 + }, + { + "epoch": 63.88073394495413, + "grad_norm": 0.23251968622207642, + "learning_rate": 0.0006, + "loss": 3.529660224914551, + "step": 4599 + }, + { + "epoch": 63.89471384884229, + "grad_norm": 0.21848365664482117, + "learning_rate": 0.0006, + "loss": 3.582645893096924, + "step": 4600 + }, + { + "epoch": 63.90869375273045, + "grad_norm": 0.2525595426559448, + "learning_rate": 0.0006, + "loss": 3.5324134826660156, + "step": 4601 + }, + { + "epoch": 63.92267365661861, + "grad_norm": 0.2766541838645935, + "learning_rate": 0.0006, + "loss": 3.525892734527588, + "step": 4602 + }, + { + "epoch": 63.93665356050677, + "grad_norm": 0.2581831216812134, + "learning_rate": 0.0006, + "loss": 3.568148374557495, + "step": 4603 + }, + { + "epoch": 63.95063346439493, + "grad_norm": 0.2600967288017273, + "learning_rate": 0.0006, + "loss": 3.5735561847686768, + "step": 4604 + }, + { + "epoch": 63.964613368283096, + "grad_norm": 0.3125685155391693, + "learning_rate": 0.0006, + "loss": 3.513974666595459, + "step": 4605 + }, + { + "epoch": 63.97859327217125, + "grad_norm": 0.2686053514480591, + "learning_rate": 0.0006, + "loss": 3.533506155014038, + "step": 4606 + }, + { + "epoch": 63.992573176059416, + "grad_norm": 0.23033086955547333, + "learning_rate": 0.0006, + "loss": 3.5701582431793213, + "step": 4607 + }, + { + "epoch": 64.0, + "grad_norm": 0.2688716948032379, + "learning_rate": 0.0006, + "loss": 3.5370922088623047, + "step": 4608 + }, + { + "epoch": 64.0, + "eval_loss": 3.9788827896118164, + "eval_runtime": 44.2801, + "eval_samples_per_second": 55.149, + "eval_steps_per_second": 3.455, + "step": 4608 + }, + { + "epoch": 64.01397990388816, + "grad_norm": 0.27457329630851746, + "learning_rate": 0.0006, + "loss": 3.4789271354675293, + "step": 4609 + }, + { + "epoch": 64.02795980777633, + "grad_norm": 0.29753434658050537, + "learning_rate": 0.0006, + "loss": 3.5277628898620605, + "step": 4610 + }, + { + "epoch": 64.04193971166448, + "grad_norm": 0.36113694310188293, + "learning_rate": 0.0006, + "loss": 3.5066421031951904, + "step": 4611 + }, + { + "epoch": 64.05591961555264, + "grad_norm": 0.37955453991889954, + "learning_rate": 0.0006, + "loss": 3.532745361328125, + "step": 4612 + }, + { + "epoch": 64.06989951944081, + "grad_norm": 0.3055022060871124, + "learning_rate": 0.0006, + "loss": 3.526583671569824, + "step": 4613 + }, + { + "epoch": 64.08387942332897, + "grad_norm": 0.25849053263664246, + "learning_rate": 0.0006, + "loss": 3.525885581970215, + "step": 4614 + }, + { + "epoch": 64.09785932721712, + "grad_norm": 0.31513285636901855, + "learning_rate": 0.0006, + "loss": 3.5116710662841797, + "step": 4615 + }, + { + "epoch": 64.1118392311053, + "grad_norm": 0.3306029736995697, + "learning_rate": 0.0006, + "loss": 3.52685284614563, + "step": 4616 + }, + { + "epoch": 64.12581913499345, + "grad_norm": 0.3205282688140869, + "learning_rate": 0.0006, + "loss": 3.5442304611206055, + "step": 4617 + }, + { + "epoch": 64.1397990388816, + "grad_norm": 0.30371955037117004, + "learning_rate": 0.0006, + "loss": 3.523794174194336, + "step": 4618 + }, + { + "epoch": 64.15377894276976, + "grad_norm": 0.23337553441524506, + "learning_rate": 0.0006, + "loss": 3.530444860458374, + "step": 4619 + }, + { + "epoch": 64.16775884665793, + "grad_norm": 0.2223677784204483, + "learning_rate": 0.0006, + "loss": 3.5071358680725098, + "step": 4620 + }, + { + "epoch": 64.18173875054609, + "grad_norm": 0.21216993033885956, + "learning_rate": 0.0006, + "loss": 3.504469156265259, + "step": 4621 + }, + { + "epoch": 64.19571865443424, + "grad_norm": 0.21772179007530212, + "learning_rate": 0.0006, + "loss": 3.543393135070801, + "step": 4622 + }, + { + "epoch": 64.20969855832242, + "grad_norm": 0.2010853886604309, + "learning_rate": 0.0006, + "loss": 3.5219016075134277, + "step": 4623 + }, + { + "epoch": 64.22367846221057, + "grad_norm": 0.20491622388362885, + "learning_rate": 0.0006, + "loss": 3.4971656799316406, + "step": 4624 + }, + { + "epoch": 64.23765836609873, + "grad_norm": 0.19605079293251038, + "learning_rate": 0.0006, + "loss": 3.511746883392334, + "step": 4625 + }, + { + "epoch": 64.2516382699869, + "grad_norm": 0.2011575698852539, + "learning_rate": 0.0006, + "loss": 3.4981908798217773, + "step": 4626 + }, + { + "epoch": 64.26561817387505, + "grad_norm": 0.20687544345855713, + "learning_rate": 0.0006, + "loss": 3.5076913833618164, + "step": 4627 + }, + { + "epoch": 64.27959807776321, + "grad_norm": 0.20696480572223663, + "learning_rate": 0.0006, + "loss": 3.536569595336914, + "step": 4628 + }, + { + "epoch": 64.29357798165138, + "grad_norm": 0.200603649020195, + "learning_rate": 0.0006, + "loss": 3.525024175643921, + "step": 4629 + }, + { + "epoch": 64.30755788553954, + "grad_norm": 0.2087119072675705, + "learning_rate": 0.0006, + "loss": 3.508463144302368, + "step": 4630 + }, + { + "epoch": 64.3215377894277, + "grad_norm": 0.20823124051094055, + "learning_rate": 0.0006, + "loss": 3.5153684616088867, + "step": 4631 + }, + { + "epoch": 64.33551769331586, + "grad_norm": 0.19936303794384003, + "learning_rate": 0.0006, + "loss": 3.4908385276794434, + "step": 4632 + }, + { + "epoch": 64.34949759720402, + "grad_norm": 0.20928572118282318, + "learning_rate": 0.0006, + "loss": 3.5094854831695557, + "step": 4633 + }, + { + "epoch": 64.36347750109218, + "grad_norm": 0.22391293942928314, + "learning_rate": 0.0006, + "loss": 3.514522075653076, + "step": 4634 + }, + { + "epoch": 64.37745740498035, + "grad_norm": 0.19804537296295166, + "learning_rate": 0.0006, + "loss": 3.5072293281555176, + "step": 4635 + }, + { + "epoch": 64.3914373088685, + "grad_norm": 0.18472325801849365, + "learning_rate": 0.0006, + "loss": 3.5149683952331543, + "step": 4636 + }, + { + "epoch": 64.40541721275666, + "grad_norm": 0.20187066495418549, + "learning_rate": 0.0006, + "loss": 3.5198612213134766, + "step": 4637 + }, + { + "epoch": 64.41939711664482, + "grad_norm": 0.19778090715408325, + "learning_rate": 0.0006, + "loss": 3.540841817855835, + "step": 4638 + }, + { + "epoch": 64.43337702053299, + "grad_norm": 0.20325049757957458, + "learning_rate": 0.0006, + "loss": 3.522329330444336, + "step": 4639 + }, + { + "epoch": 64.44735692442114, + "grad_norm": 0.21200744807720184, + "learning_rate": 0.0006, + "loss": 3.5492870807647705, + "step": 4640 + }, + { + "epoch": 64.4613368283093, + "grad_norm": 0.21482640504837036, + "learning_rate": 0.0006, + "loss": 3.5450363159179688, + "step": 4641 + }, + { + "epoch": 64.47531673219747, + "grad_norm": 0.2257383018732071, + "learning_rate": 0.0006, + "loss": 3.518486976623535, + "step": 4642 + }, + { + "epoch": 64.48929663608563, + "grad_norm": 0.20710107684135437, + "learning_rate": 0.0006, + "loss": 3.5212514400482178, + "step": 4643 + }, + { + "epoch": 64.50327653997378, + "grad_norm": 0.20518364012241364, + "learning_rate": 0.0006, + "loss": 3.5239462852478027, + "step": 4644 + }, + { + "epoch": 64.51725644386195, + "grad_norm": 0.20311623811721802, + "learning_rate": 0.0006, + "loss": 3.5299072265625, + "step": 4645 + }, + { + "epoch": 64.53123634775011, + "grad_norm": 0.2045847624540329, + "learning_rate": 0.0006, + "loss": 3.5337295532226562, + "step": 4646 + }, + { + "epoch": 64.54521625163827, + "grad_norm": 0.20734596252441406, + "learning_rate": 0.0006, + "loss": 3.5001375675201416, + "step": 4647 + }, + { + "epoch": 64.55919615552644, + "grad_norm": 0.2103254497051239, + "learning_rate": 0.0006, + "loss": 3.50685977935791, + "step": 4648 + }, + { + "epoch": 64.57317605941459, + "grad_norm": 0.19903342425823212, + "learning_rate": 0.0006, + "loss": 3.5295052528381348, + "step": 4649 + }, + { + "epoch": 64.58715596330275, + "grad_norm": 0.21105562150478363, + "learning_rate": 0.0006, + "loss": 3.5062971115112305, + "step": 4650 + }, + { + "epoch": 64.60113586719092, + "grad_norm": 0.2149161994457245, + "learning_rate": 0.0006, + "loss": 3.5040459632873535, + "step": 4651 + }, + { + "epoch": 64.61511577107908, + "grad_norm": 0.19698478281497955, + "learning_rate": 0.0006, + "loss": 3.541640281677246, + "step": 4652 + }, + { + "epoch": 64.62909567496723, + "grad_norm": 0.22909119725227356, + "learning_rate": 0.0006, + "loss": 3.546515941619873, + "step": 4653 + }, + { + "epoch": 64.6430755788554, + "grad_norm": 0.2322760671377182, + "learning_rate": 0.0006, + "loss": 3.5374197959899902, + "step": 4654 + }, + { + "epoch": 64.65705548274356, + "grad_norm": 0.2173723429441452, + "learning_rate": 0.0006, + "loss": 3.543529510498047, + "step": 4655 + }, + { + "epoch": 64.67103538663171, + "grad_norm": 0.21360787749290466, + "learning_rate": 0.0006, + "loss": 3.560333251953125, + "step": 4656 + }, + { + "epoch": 64.68501529051987, + "grad_norm": 0.23260995745658875, + "learning_rate": 0.0006, + "loss": 3.5468926429748535, + "step": 4657 + }, + { + "epoch": 64.69899519440804, + "grad_norm": 0.23099006712436676, + "learning_rate": 0.0006, + "loss": 3.5222787857055664, + "step": 4658 + }, + { + "epoch": 64.7129750982962, + "grad_norm": 0.20590323209762573, + "learning_rate": 0.0006, + "loss": 3.538832426071167, + "step": 4659 + }, + { + "epoch": 64.72695500218435, + "grad_norm": 0.2339620441198349, + "learning_rate": 0.0006, + "loss": 3.5201845169067383, + "step": 4660 + }, + { + "epoch": 64.74093490607252, + "grad_norm": 0.27160516381263733, + "learning_rate": 0.0006, + "loss": 3.5465309619903564, + "step": 4661 + }, + { + "epoch": 64.75491480996068, + "grad_norm": 0.2624864876270294, + "learning_rate": 0.0006, + "loss": 3.5205435752868652, + "step": 4662 + }, + { + "epoch": 64.76889471384884, + "grad_norm": 0.23907902836799622, + "learning_rate": 0.0006, + "loss": 3.553205728530884, + "step": 4663 + }, + { + "epoch": 64.78287461773701, + "grad_norm": 0.2217475026845932, + "learning_rate": 0.0006, + "loss": 3.514068603515625, + "step": 4664 + }, + { + "epoch": 64.79685452162516, + "grad_norm": 0.20445777475833893, + "learning_rate": 0.0006, + "loss": 3.5382182598114014, + "step": 4665 + }, + { + "epoch": 64.81083442551332, + "grad_norm": 0.2027028501033783, + "learning_rate": 0.0006, + "loss": 3.549323081970215, + "step": 4666 + }, + { + "epoch": 64.82481432940149, + "grad_norm": 0.2211705446243286, + "learning_rate": 0.0006, + "loss": 3.5627710819244385, + "step": 4667 + }, + { + "epoch": 64.83879423328965, + "grad_norm": 0.23401948809623718, + "learning_rate": 0.0006, + "loss": 3.5169739723205566, + "step": 4668 + }, + { + "epoch": 64.8527741371778, + "grad_norm": 0.21921628713607788, + "learning_rate": 0.0006, + "loss": 3.5405478477478027, + "step": 4669 + }, + { + "epoch": 64.86675404106597, + "grad_norm": 0.20840027928352356, + "learning_rate": 0.0006, + "loss": 3.528883218765259, + "step": 4670 + }, + { + "epoch": 64.88073394495413, + "grad_norm": 0.21593457460403442, + "learning_rate": 0.0006, + "loss": 3.570455551147461, + "step": 4671 + }, + { + "epoch": 64.89471384884229, + "grad_norm": 0.22351567447185516, + "learning_rate": 0.0006, + "loss": 3.567831516265869, + "step": 4672 + }, + { + "epoch": 64.90869375273044, + "grad_norm": 0.22733932733535767, + "learning_rate": 0.0006, + "loss": 3.55277156829834, + "step": 4673 + }, + { + "epoch": 64.92267365661861, + "grad_norm": 0.19557999074459076, + "learning_rate": 0.0006, + "loss": 3.523028612136841, + "step": 4674 + }, + { + "epoch": 64.93665356050677, + "grad_norm": 0.22674734890460968, + "learning_rate": 0.0006, + "loss": 3.565629720687866, + "step": 4675 + }, + { + "epoch": 64.95063346439493, + "grad_norm": 0.23879630863666534, + "learning_rate": 0.0006, + "loss": 3.5556788444519043, + "step": 4676 + }, + { + "epoch": 64.9646133682831, + "grad_norm": 0.24172860383987427, + "learning_rate": 0.0006, + "loss": 3.580190658569336, + "step": 4677 + }, + { + "epoch": 64.97859327217125, + "grad_norm": 0.24994441866874695, + "learning_rate": 0.0006, + "loss": 3.506659507751465, + "step": 4678 + }, + { + "epoch": 64.99257317605941, + "grad_norm": 0.20717456936836243, + "learning_rate": 0.0006, + "loss": 3.526215076446533, + "step": 4679 + }, + { + "epoch": 65.0, + "grad_norm": 0.23991262912750244, + "learning_rate": 0.0006, + "loss": 3.5615687370300293, + "step": 4680 + }, + { + "epoch": 65.0, + "eval_loss": 3.974820137023926, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 4680 + }, + { + "epoch": 65.01397990388816, + "grad_norm": 0.22059205174446106, + "learning_rate": 0.0006, + "loss": 3.4952855110168457, + "step": 4681 + }, + { + "epoch": 65.02795980777633, + "grad_norm": 0.23085950314998627, + "learning_rate": 0.0006, + "loss": 3.5180296897888184, + "step": 4682 + }, + { + "epoch": 65.04193971166448, + "grad_norm": 0.20950855314731598, + "learning_rate": 0.0006, + "loss": 3.5476295948028564, + "step": 4683 + }, + { + "epoch": 65.05591961555264, + "grad_norm": 0.1958799958229065, + "learning_rate": 0.0006, + "loss": 3.5180916786193848, + "step": 4684 + }, + { + "epoch": 65.06989951944081, + "grad_norm": 0.20676101744174957, + "learning_rate": 0.0006, + "loss": 3.4882211685180664, + "step": 4685 + }, + { + "epoch": 65.08387942332897, + "grad_norm": 0.24798569083213806, + "learning_rate": 0.0006, + "loss": 3.5030102729797363, + "step": 4686 + }, + { + "epoch": 65.09785932721712, + "grad_norm": 0.2997048795223236, + "learning_rate": 0.0006, + "loss": 3.5148534774780273, + "step": 4687 + }, + { + "epoch": 65.1118392311053, + "grad_norm": 0.27347132563591003, + "learning_rate": 0.0006, + "loss": 3.534639358520508, + "step": 4688 + }, + { + "epoch": 65.12581913499345, + "grad_norm": 0.2220011204481125, + "learning_rate": 0.0006, + "loss": 3.50504994392395, + "step": 4689 + }, + { + "epoch": 65.1397990388816, + "grad_norm": 0.2552279829978943, + "learning_rate": 0.0006, + "loss": 3.4893431663513184, + "step": 4690 + }, + { + "epoch": 65.15377894276976, + "grad_norm": 0.32200172543525696, + "learning_rate": 0.0006, + "loss": 3.515808582305908, + "step": 4691 + }, + { + "epoch": 65.16775884665793, + "grad_norm": 0.31339603662490845, + "learning_rate": 0.0006, + "loss": 3.493312358856201, + "step": 4692 + }, + { + "epoch": 65.18173875054609, + "grad_norm": 0.30790913105010986, + "learning_rate": 0.0006, + "loss": 3.5001792907714844, + "step": 4693 + }, + { + "epoch": 65.19571865443424, + "grad_norm": 0.25261157751083374, + "learning_rate": 0.0006, + "loss": 3.491820812225342, + "step": 4694 + }, + { + "epoch": 65.20969855832242, + "grad_norm": 0.20875515043735504, + "learning_rate": 0.0006, + "loss": 3.5120949745178223, + "step": 4695 + }, + { + "epoch": 65.22367846221057, + "grad_norm": 0.22966094315052032, + "learning_rate": 0.0006, + "loss": 3.4509716033935547, + "step": 4696 + }, + { + "epoch": 65.23765836609873, + "grad_norm": 0.22414445877075195, + "learning_rate": 0.0006, + "loss": 3.5032718181610107, + "step": 4697 + }, + { + "epoch": 65.2516382699869, + "grad_norm": 0.21083641052246094, + "learning_rate": 0.0006, + "loss": 3.4912984371185303, + "step": 4698 + }, + { + "epoch": 65.26561817387505, + "grad_norm": 0.21424371004104614, + "learning_rate": 0.0006, + "loss": 3.493704080581665, + "step": 4699 + }, + { + "epoch": 65.27959807776321, + "grad_norm": 0.21155135333538055, + "learning_rate": 0.0006, + "loss": 3.523045063018799, + "step": 4700 + }, + { + "epoch": 65.29357798165138, + "grad_norm": 0.2245800942182541, + "learning_rate": 0.0006, + "loss": 3.5085060596466064, + "step": 4701 + }, + { + "epoch": 65.30755788553954, + "grad_norm": 0.2271309345960617, + "learning_rate": 0.0006, + "loss": 3.51690673828125, + "step": 4702 + }, + { + "epoch": 65.3215377894277, + "grad_norm": 0.23873905837535858, + "learning_rate": 0.0006, + "loss": 3.533975124359131, + "step": 4703 + }, + { + "epoch": 65.33551769331586, + "grad_norm": 0.22801156342029572, + "learning_rate": 0.0006, + "loss": 3.554079532623291, + "step": 4704 + }, + { + "epoch": 65.34949759720402, + "grad_norm": 0.20530614256858826, + "learning_rate": 0.0006, + "loss": 3.5536623001098633, + "step": 4705 + }, + { + "epoch": 65.36347750109218, + "grad_norm": 0.19286230206489563, + "learning_rate": 0.0006, + "loss": 3.5279109477996826, + "step": 4706 + }, + { + "epoch": 65.37745740498035, + "grad_norm": 0.20883116126060486, + "learning_rate": 0.0006, + "loss": 3.526639223098755, + "step": 4707 + }, + { + "epoch": 65.3914373088685, + "grad_norm": 0.20705194771289825, + "learning_rate": 0.0006, + "loss": 3.5389089584350586, + "step": 4708 + }, + { + "epoch": 65.40541721275666, + "grad_norm": 0.1948518604040146, + "learning_rate": 0.0006, + "loss": 3.504940986633301, + "step": 4709 + }, + { + "epoch": 65.41939711664482, + "grad_norm": 0.20147304236888885, + "learning_rate": 0.0006, + "loss": 3.5085673332214355, + "step": 4710 + }, + { + "epoch": 65.43337702053299, + "grad_norm": 0.2229771912097931, + "learning_rate": 0.0006, + "loss": 3.4806604385375977, + "step": 4711 + }, + { + "epoch": 65.44735692442114, + "grad_norm": 0.252258837223053, + "learning_rate": 0.0006, + "loss": 3.5160961151123047, + "step": 4712 + }, + { + "epoch": 65.4613368283093, + "grad_norm": 0.2482563853263855, + "learning_rate": 0.0006, + "loss": 3.522674560546875, + "step": 4713 + }, + { + "epoch": 65.47531673219747, + "grad_norm": 0.22155597805976868, + "learning_rate": 0.0006, + "loss": 3.5124268531799316, + "step": 4714 + }, + { + "epoch": 65.48929663608563, + "grad_norm": 0.223913311958313, + "learning_rate": 0.0006, + "loss": 3.5122427940368652, + "step": 4715 + }, + { + "epoch": 65.50327653997378, + "grad_norm": 0.20946767926216125, + "learning_rate": 0.0006, + "loss": 3.552161693572998, + "step": 4716 + }, + { + "epoch": 65.51725644386195, + "grad_norm": 0.21044479310512543, + "learning_rate": 0.0006, + "loss": 3.5450949668884277, + "step": 4717 + }, + { + "epoch": 65.53123634775011, + "grad_norm": 0.25752949714660645, + "learning_rate": 0.0006, + "loss": 3.5267398357391357, + "step": 4718 + }, + { + "epoch": 65.54521625163827, + "grad_norm": 0.28068798780441284, + "learning_rate": 0.0006, + "loss": 3.537827491760254, + "step": 4719 + }, + { + "epoch": 65.55919615552644, + "grad_norm": 0.2259511947631836, + "learning_rate": 0.0006, + "loss": 3.540821075439453, + "step": 4720 + }, + { + "epoch": 65.57317605941459, + "grad_norm": 0.2032593935728073, + "learning_rate": 0.0006, + "loss": 3.540170669555664, + "step": 4721 + }, + { + "epoch": 65.58715596330275, + "grad_norm": 0.2432602047920227, + "learning_rate": 0.0006, + "loss": 3.5356297492980957, + "step": 4722 + }, + { + "epoch": 65.60113586719092, + "grad_norm": 0.20527289807796478, + "learning_rate": 0.0006, + "loss": 3.4675498008728027, + "step": 4723 + }, + { + "epoch": 65.61511577107908, + "grad_norm": 0.18697771430015564, + "learning_rate": 0.0006, + "loss": 3.5208992958068848, + "step": 4724 + }, + { + "epoch": 65.62909567496723, + "grad_norm": 0.2044762223958969, + "learning_rate": 0.0006, + "loss": 3.5583274364471436, + "step": 4725 + }, + { + "epoch": 65.6430755788554, + "grad_norm": 0.22855281829833984, + "learning_rate": 0.0006, + "loss": 3.5497756004333496, + "step": 4726 + }, + { + "epoch": 65.65705548274356, + "grad_norm": 0.21672320365905762, + "learning_rate": 0.0006, + "loss": 3.530869960784912, + "step": 4727 + }, + { + "epoch": 65.67103538663171, + "grad_norm": 0.20629048347473145, + "learning_rate": 0.0006, + "loss": 3.5381593704223633, + "step": 4728 + }, + { + "epoch": 65.68501529051987, + "grad_norm": 0.21036849915981293, + "learning_rate": 0.0006, + "loss": 3.531111478805542, + "step": 4729 + }, + { + "epoch": 65.69899519440804, + "grad_norm": 0.19463932514190674, + "learning_rate": 0.0006, + "loss": 3.523106098175049, + "step": 4730 + }, + { + "epoch": 65.7129750982962, + "grad_norm": 0.2210976481437683, + "learning_rate": 0.0006, + "loss": 3.5480356216430664, + "step": 4731 + }, + { + "epoch": 65.72695500218435, + "grad_norm": 0.2288331687450409, + "learning_rate": 0.0006, + "loss": 3.5317163467407227, + "step": 4732 + }, + { + "epoch": 65.74093490607252, + "grad_norm": 0.22445930540561676, + "learning_rate": 0.0006, + "loss": 3.5453107357025146, + "step": 4733 + }, + { + "epoch": 65.75491480996068, + "grad_norm": 0.20268939435482025, + "learning_rate": 0.0006, + "loss": 3.5546514987945557, + "step": 4734 + }, + { + "epoch": 65.76889471384884, + "grad_norm": 0.2070288211107254, + "learning_rate": 0.0006, + "loss": 3.5345590114593506, + "step": 4735 + }, + { + "epoch": 65.78287461773701, + "grad_norm": 0.2052922248840332, + "learning_rate": 0.0006, + "loss": 3.538299083709717, + "step": 4736 + }, + { + "epoch": 65.79685452162516, + "grad_norm": 0.2146841138601303, + "learning_rate": 0.0006, + "loss": 3.541652202606201, + "step": 4737 + }, + { + "epoch": 65.81083442551332, + "grad_norm": 0.21826434135437012, + "learning_rate": 0.0006, + "loss": 3.4880056381225586, + "step": 4738 + }, + { + "epoch": 65.82481432940149, + "grad_norm": 0.18492230772972107, + "learning_rate": 0.0006, + "loss": 3.5282340049743652, + "step": 4739 + }, + { + "epoch": 65.83879423328965, + "grad_norm": 0.2422342747449875, + "learning_rate": 0.0006, + "loss": 3.5482215881347656, + "step": 4740 + }, + { + "epoch": 65.8527741371778, + "grad_norm": 0.300968199968338, + "learning_rate": 0.0006, + "loss": 3.545173168182373, + "step": 4741 + }, + { + "epoch": 65.86675404106597, + "grad_norm": 0.23397785425186157, + "learning_rate": 0.0006, + "loss": 3.5014636516571045, + "step": 4742 + }, + { + "epoch": 65.88073394495413, + "grad_norm": 0.20114080607891083, + "learning_rate": 0.0006, + "loss": 3.517125368118286, + "step": 4743 + }, + { + "epoch": 65.89471384884229, + "grad_norm": 0.23073594272136688, + "learning_rate": 0.0006, + "loss": 3.5259623527526855, + "step": 4744 + }, + { + "epoch": 65.90869375273044, + "grad_norm": 0.25975924730300903, + "learning_rate": 0.0006, + "loss": 3.5394439697265625, + "step": 4745 + }, + { + "epoch": 65.92267365661861, + "grad_norm": 0.2565694749355316, + "learning_rate": 0.0006, + "loss": 3.5301175117492676, + "step": 4746 + }, + { + "epoch": 65.93665356050677, + "grad_norm": 0.24380211532115936, + "learning_rate": 0.0006, + "loss": 3.5519638061523438, + "step": 4747 + }, + { + "epoch": 65.95063346439493, + "grad_norm": 0.2337062805891037, + "learning_rate": 0.0006, + "loss": 3.5365114212036133, + "step": 4748 + }, + { + "epoch": 65.9646133682831, + "grad_norm": 0.2107299268245697, + "learning_rate": 0.0006, + "loss": 3.5433106422424316, + "step": 4749 + }, + { + "epoch": 65.97859327217125, + "grad_norm": 0.2159995585680008, + "learning_rate": 0.0006, + "loss": 3.539796829223633, + "step": 4750 + }, + { + "epoch": 65.99257317605941, + "grad_norm": 0.23707467317581177, + "learning_rate": 0.0006, + "loss": 3.5315332412719727, + "step": 4751 + }, + { + "epoch": 66.0, + "grad_norm": 0.27253037691116333, + "learning_rate": 0.0006, + "loss": 3.5477747917175293, + "step": 4752 + }, + { + "epoch": 66.0, + "eval_loss": 3.973580837249756, + "eval_runtime": 44.8472, + "eval_samples_per_second": 54.452, + "eval_steps_per_second": 3.412, + "step": 4752 + }, + { + "epoch": 66.01397990388816, + "grad_norm": 0.22843532264232635, + "learning_rate": 0.0006, + "loss": 3.463778018951416, + "step": 4753 + }, + { + "epoch": 66.02795980777633, + "grad_norm": 0.24956060945987701, + "learning_rate": 0.0006, + "loss": 3.5249979496002197, + "step": 4754 + }, + { + "epoch": 66.04193971166448, + "grad_norm": 0.3091195821762085, + "learning_rate": 0.0006, + "loss": 3.4742040634155273, + "step": 4755 + }, + { + "epoch": 66.05591961555264, + "grad_norm": 0.346617192029953, + "learning_rate": 0.0006, + "loss": 3.4870445728302, + "step": 4756 + }, + { + "epoch": 66.06989951944081, + "grad_norm": 0.2875824570655823, + "learning_rate": 0.0006, + "loss": 3.5412697792053223, + "step": 4757 + }, + { + "epoch": 66.08387942332897, + "grad_norm": 0.2508425712585449, + "learning_rate": 0.0006, + "loss": 3.488759756088257, + "step": 4758 + }, + { + "epoch": 66.09785932721712, + "grad_norm": 0.2538967728614807, + "learning_rate": 0.0006, + "loss": 3.536404609680176, + "step": 4759 + }, + { + "epoch": 66.1118392311053, + "grad_norm": 0.24713276326656342, + "learning_rate": 0.0006, + "loss": 3.502939462661743, + "step": 4760 + }, + { + "epoch": 66.12581913499345, + "grad_norm": 0.2381032407283783, + "learning_rate": 0.0006, + "loss": 3.5297226905822754, + "step": 4761 + }, + { + "epoch": 66.1397990388816, + "grad_norm": 0.23749777674674988, + "learning_rate": 0.0006, + "loss": 3.510740280151367, + "step": 4762 + }, + { + "epoch": 66.15377894276976, + "grad_norm": 0.24993619322776794, + "learning_rate": 0.0006, + "loss": 3.4966745376586914, + "step": 4763 + }, + { + "epoch": 66.16775884665793, + "grad_norm": 0.25855013728141785, + "learning_rate": 0.0006, + "loss": 3.545177936553955, + "step": 4764 + }, + { + "epoch": 66.18173875054609, + "grad_norm": 0.2206948697566986, + "learning_rate": 0.0006, + "loss": 3.5404415130615234, + "step": 4765 + }, + { + "epoch": 66.19571865443424, + "grad_norm": 0.2627105116844177, + "learning_rate": 0.0006, + "loss": 3.5475361347198486, + "step": 4766 + }, + { + "epoch": 66.20969855832242, + "grad_norm": 0.29578864574432373, + "learning_rate": 0.0006, + "loss": 3.510110855102539, + "step": 4767 + }, + { + "epoch": 66.22367846221057, + "grad_norm": 0.257691353559494, + "learning_rate": 0.0006, + "loss": 3.5143630504608154, + "step": 4768 + }, + { + "epoch": 66.23765836609873, + "grad_norm": 0.24346867203712463, + "learning_rate": 0.0006, + "loss": 3.5007784366607666, + "step": 4769 + }, + { + "epoch": 66.2516382699869, + "grad_norm": 0.230575293302536, + "learning_rate": 0.0006, + "loss": 3.5051684379577637, + "step": 4770 + }, + { + "epoch": 66.26561817387505, + "grad_norm": 0.23823921382427216, + "learning_rate": 0.0006, + "loss": 3.4773342609405518, + "step": 4771 + }, + { + "epoch": 66.27959807776321, + "grad_norm": 0.20743288099765778, + "learning_rate": 0.0006, + "loss": 3.496393918991089, + "step": 4772 + }, + { + "epoch": 66.29357798165138, + "grad_norm": 0.21969960629940033, + "learning_rate": 0.0006, + "loss": 3.494748830795288, + "step": 4773 + }, + { + "epoch": 66.30755788553954, + "grad_norm": 0.20902593433856964, + "learning_rate": 0.0006, + "loss": 3.529416561126709, + "step": 4774 + }, + { + "epoch": 66.3215377894277, + "grad_norm": 0.2380436211824417, + "learning_rate": 0.0006, + "loss": 3.508625030517578, + "step": 4775 + }, + { + "epoch": 66.33551769331586, + "grad_norm": 0.26387956738471985, + "learning_rate": 0.0006, + "loss": 3.4886221885681152, + "step": 4776 + }, + { + "epoch": 66.34949759720402, + "grad_norm": 0.24655069410800934, + "learning_rate": 0.0006, + "loss": 3.5089354515075684, + "step": 4777 + }, + { + "epoch": 66.36347750109218, + "grad_norm": 0.2446470856666565, + "learning_rate": 0.0006, + "loss": 3.5295841693878174, + "step": 4778 + }, + { + "epoch": 66.37745740498035, + "grad_norm": 0.23909035325050354, + "learning_rate": 0.0006, + "loss": 3.500223159790039, + "step": 4779 + }, + { + "epoch": 66.3914373088685, + "grad_norm": 0.21958141028881073, + "learning_rate": 0.0006, + "loss": 3.5225610733032227, + "step": 4780 + }, + { + "epoch": 66.40541721275666, + "grad_norm": 0.20134378969669342, + "learning_rate": 0.0006, + "loss": 3.5055198669433594, + "step": 4781 + }, + { + "epoch": 66.41939711664482, + "grad_norm": 0.22621650993824005, + "learning_rate": 0.0006, + "loss": 3.5356178283691406, + "step": 4782 + }, + { + "epoch": 66.43337702053299, + "grad_norm": 0.214684396982193, + "learning_rate": 0.0006, + "loss": 3.5069541931152344, + "step": 4783 + }, + { + "epoch": 66.44735692442114, + "grad_norm": 0.217989981174469, + "learning_rate": 0.0006, + "loss": 3.499561071395874, + "step": 4784 + }, + { + "epoch": 66.4613368283093, + "grad_norm": 0.21457986533641815, + "learning_rate": 0.0006, + "loss": 3.5139474868774414, + "step": 4785 + }, + { + "epoch": 66.47531673219747, + "grad_norm": 0.24017205834388733, + "learning_rate": 0.0006, + "loss": 3.5267739295959473, + "step": 4786 + }, + { + "epoch": 66.48929663608563, + "grad_norm": 0.22864149510860443, + "learning_rate": 0.0006, + "loss": 3.5324792861938477, + "step": 4787 + }, + { + "epoch": 66.50327653997378, + "grad_norm": 0.219966322183609, + "learning_rate": 0.0006, + "loss": 3.491529703140259, + "step": 4788 + }, + { + "epoch": 66.51725644386195, + "grad_norm": 0.23360539972782135, + "learning_rate": 0.0006, + "loss": 3.4962849617004395, + "step": 4789 + }, + { + "epoch": 66.53123634775011, + "grad_norm": 0.24652886390686035, + "learning_rate": 0.0006, + "loss": 3.510777473449707, + "step": 4790 + }, + { + "epoch": 66.54521625163827, + "grad_norm": 0.23419316112995148, + "learning_rate": 0.0006, + "loss": 3.5549509525299072, + "step": 4791 + }, + { + "epoch": 66.55919615552644, + "grad_norm": 0.2514760494232178, + "learning_rate": 0.0006, + "loss": 3.49761962890625, + "step": 4792 + }, + { + "epoch": 66.57317605941459, + "grad_norm": 0.24227535724639893, + "learning_rate": 0.0006, + "loss": 3.5556445121765137, + "step": 4793 + }, + { + "epoch": 66.58715596330275, + "grad_norm": 0.24751204252243042, + "learning_rate": 0.0006, + "loss": 3.5131940841674805, + "step": 4794 + }, + { + "epoch": 66.60113586719092, + "grad_norm": 0.24366872012615204, + "learning_rate": 0.0006, + "loss": 3.5310516357421875, + "step": 4795 + }, + { + "epoch": 66.61511577107908, + "grad_norm": 0.2177760899066925, + "learning_rate": 0.0006, + "loss": 3.5267493724823, + "step": 4796 + }, + { + "epoch": 66.62909567496723, + "grad_norm": 0.19654381275177002, + "learning_rate": 0.0006, + "loss": 3.5158896446228027, + "step": 4797 + }, + { + "epoch": 66.6430755788554, + "grad_norm": 0.2041735202074051, + "learning_rate": 0.0006, + "loss": 3.5645484924316406, + "step": 4798 + }, + { + "epoch": 66.65705548274356, + "grad_norm": 0.21368929743766785, + "learning_rate": 0.0006, + "loss": 3.5481250286102295, + "step": 4799 + }, + { + "epoch": 66.67103538663171, + "grad_norm": 0.2047458291053772, + "learning_rate": 0.0006, + "loss": 3.498279571533203, + "step": 4800 + }, + { + "epoch": 66.68501529051987, + "grad_norm": 0.21750541031360626, + "learning_rate": 0.0006, + "loss": 3.5349860191345215, + "step": 4801 + }, + { + "epoch": 66.69899519440804, + "grad_norm": 0.2415834218263626, + "learning_rate": 0.0006, + "loss": 3.5091004371643066, + "step": 4802 + }, + { + "epoch": 66.7129750982962, + "grad_norm": 0.19963665306568146, + "learning_rate": 0.0006, + "loss": 3.5369873046875, + "step": 4803 + }, + { + "epoch": 66.72695500218435, + "grad_norm": 0.23620283603668213, + "learning_rate": 0.0006, + "loss": 3.5239949226379395, + "step": 4804 + }, + { + "epoch": 66.74093490607252, + "grad_norm": 0.2616693079471588, + "learning_rate": 0.0006, + "loss": 3.545588493347168, + "step": 4805 + }, + { + "epoch": 66.75491480996068, + "grad_norm": 0.23235733807086945, + "learning_rate": 0.0006, + "loss": 3.5250823497772217, + "step": 4806 + }, + { + "epoch": 66.76889471384884, + "grad_norm": 0.20908917486667633, + "learning_rate": 0.0006, + "loss": 3.547023057937622, + "step": 4807 + }, + { + "epoch": 66.78287461773701, + "grad_norm": 0.23014947772026062, + "learning_rate": 0.0006, + "loss": 3.527070999145508, + "step": 4808 + }, + { + "epoch": 66.79685452162516, + "grad_norm": 0.2468312382698059, + "learning_rate": 0.0006, + "loss": 3.5456371307373047, + "step": 4809 + }, + { + "epoch": 66.81083442551332, + "grad_norm": 0.21409334242343903, + "learning_rate": 0.0006, + "loss": 3.5282058715820312, + "step": 4810 + }, + { + "epoch": 66.82481432940149, + "grad_norm": 0.20337609946727753, + "learning_rate": 0.0006, + "loss": 3.5054173469543457, + "step": 4811 + }, + { + "epoch": 66.83879423328965, + "grad_norm": 0.20335888862609863, + "learning_rate": 0.0006, + "loss": 3.5417919158935547, + "step": 4812 + }, + { + "epoch": 66.8527741371778, + "grad_norm": 0.20672455430030823, + "learning_rate": 0.0006, + "loss": 3.549217700958252, + "step": 4813 + }, + { + "epoch": 66.86675404106597, + "grad_norm": 0.19788624346256256, + "learning_rate": 0.0006, + "loss": 3.5244839191436768, + "step": 4814 + }, + { + "epoch": 66.88073394495413, + "grad_norm": 0.19756834208965302, + "learning_rate": 0.0006, + "loss": 3.5210156440734863, + "step": 4815 + }, + { + "epoch": 66.89471384884229, + "grad_norm": 0.18592269718647003, + "learning_rate": 0.0006, + "loss": 3.522824764251709, + "step": 4816 + }, + { + "epoch": 66.90869375273044, + "grad_norm": 0.2011021077632904, + "learning_rate": 0.0006, + "loss": 3.521613597869873, + "step": 4817 + }, + { + "epoch": 66.92267365661861, + "grad_norm": 0.20816446840763092, + "learning_rate": 0.0006, + "loss": 3.562373161315918, + "step": 4818 + }, + { + "epoch": 66.93665356050677, + "grad_norm": 0.1967775523662567, + "learning_rate": 0.0006, + "loss": 3.5357818603515625, + "step": 4819 + }, + { + "epoch": 66.95063346439493, + "grad_norm": 0.20569968223571777, + "learning_rate": 0.0006, + "loss": 3.5232982635498047, + "step": 4820 + }, + { + "epoch": 66.9646133682831, + "grad_norm": 0.2095642238855362, + "learning_rate": 0.0006, + "loss": 3.5395994186401367, + "step": 4821 + }, + { + "epoch": 66.97859327217125, + "grad_norm": 0.22340409457683563, + "learning_rate": 0.0006, + "loss": 3.5163097381591797, + "step": 4822 + }, + { + "epoch": 66.99257317605941, + "grad_norm": 0.2131485939025879, + "learning_rate": 0.0006, + "loss": 3.555629253387451, + "step": 4823 + }, + { + "epoch": 67.0, + "grad_norm": 0.22373832762241364, + "learning_rate": 0.0006, + "loss": 3.5017800331115723, + "step": 4824 + }, + { + "epoch": 67.0, + "eval_loss": 3.9781124591827393, + "eval_runtime": 44.8111, + "eval_samples_per_second": 54.495, + "eval_steps_per_second": 3.414, + "step": 4824 + }, + { + "epoch": 67.01397990388816, + "grad_norm": 0.21282735466957092, + "learning_rate": 0.0006, + "loss": 3.482837677001953, + "step": 4825 + }, + { + "epoch": 67.02795980777633, + "grad_norm": 0.23839101195335388, + "learning_rate": 0.0006, + "loss": 3.5095958709716797, + "step": 4826 + }, + { + "epoch": 67.04193971166448, + "grad_norm": 0.2598385810852051, + "learning_rate": 0.0006, + "loss": 3.463888645172119, + "step": 4827 + }, + { + "epoch": 67.05591961555264, + "grad_norm": 0.24132144451141357, + "learning_rate": 0.0006, + "loss": 3.478180408477783, + "step": 4828 + }, + { + "epoch": 67.06989951944081, + "grad_norm": 0.23276527225971222, + "learning_rate": 0.0006, + "loss": 3.5064096450805664, + "step": 4829 + }, + { + "epoch": 67.08387942332897, + "grad_norm": 0.21749058365821838, + "learning_rate": 0.0006, + "loss": 3.5057930946350098, + "step": 4830 + }, + { + "epoch": 67.09785932721712, + "grad_norm": 0.22310365736484528, + "learning_rate": 0.0006, + "loss": 3.492342233657837, + "step": 4831 + }, + { + "epoch": 67.1118392311053, + "grad_norm": 0.23109206557273865, + "learning_rate": 0.0006, + "loss": 3.4776313304901123, + "step": 4832 + }, + { + "epoch": 67.12581913499345, + "grad_norm": 0.21820154786109924, + "learning_rate": 0.0006, + "loss": 3.4983036518096924, + "step": 4833 + }, + { + "epoch": 67.1397990388816, + "grad_norm": 0.214705228805542, + "learning_rate": 0.0006, + "loss": 3.4997382164001465, + "step": 4834 + }, + { + "epoch": 67.15377894276976, + "grad_norm": 0.230570450425148, + "learning_rate": 0.0006, + "loss": 3.5172224044799805, + "step": 4835 + }, + { + "epoch": 67.16775884665793, + "grad_norm": 0.21726474165916443, + "learning_rate": 0.0006, + "loss": 3.4625420570373535, + "step": 4836 + }, + { + "epoch": 67.18173875054609, + "grad_norm": 0.21541455388069153, + "learning_rate": 0.0006, + "loss": 3.5274102687835693, + "step": 4837 + }, + { + "epoch": 67.19571865443424, + "grad_norm": 0.21431861817836761, + "learning_rate": 0.0006, + "loss": 3.5112781524658203, + "step": 4838 + }, + { + "epoch": 67.20969855832242, + "grad_norm": 0.22660572826862335, + "learning_rate": 0.0006, + "loss": 3.4687018394470215, + "step": 4839 + }, + { + "epoch": 67.22367846221057, + "grad_norm": 0.21821390092372894, + "learning_rate": 0.0006, + "loss": 3.5137336254119873, + "step": 4840 + }, + { + "epoch": 67.23765836609873, + "grad_norm": 0.20666861534118652, + "learning_rate": 0.0006, + "loss": 3.5264923572540283, + "step": 4841 + }, + { + "epoch": 67.2516382699869, + "grad_norm": 0.2266923040151596, + "learning_rate": 0.0006, + "loss": 3.5288591384887695, + "step": 4842 + }, + { + "epoch": 67.26561817387505, + "grad_norm": 0.20246101915836334, + "learning_rate": 0.0006, + "loss": 3.5267882347106934, + "step": 4843 + }, + { + "epoch": 67.27959807776321, + "grad_norm": 0.20115883648395538, + "learning_rate": 0.0006, + "loss": 3.5004916191101074, + "step": 4844 + }, + { + "epoch": 67.29357798165138, + "grad_norm": 0.21547555923461914, + "learning_rate": 0.0006, + "loss": 3.5347824096679688, + "step": 4845 + }, + { + "epoch": 67.30755788553954, + "grad_norm": 0.22675341367721558, + "learning_rate": 0.0006, + "loss": 3.5119810104370117, + "step": 4846 + }, + { + "epoch": 67.3215377894277, + "grad_norm": 0.2440510094165802, + "learning_rate": 0.0006, + "loss": 3.489138126373291, + "step": 4847 + }, + { + "epoch": 67.33551769331586, + "grad_norm": 0.3055892884731293, + "learning_rate": 0.0006, + "loss": 3.5096774101257324, + "step": 4848 + }, + { + "epoch": 67.34949759720402, + "grad_norm": 0.3053153455257416, + "learning_rate": 0.0006, + "loss": 3.4901437759399414, + "step": 4849 + }, + { + "epoch": 67.36347750109218, + "grad_norm": 0.27368026971817017, + "learning_rate": 0.0006, + "loss": 3.5251317024230957, + "step": 4850 + }, + { + "epoch": 67.37745740498035, + "grad_norm": 0.2427835315465927, + "learning_rate": 0.0006, + "loss": 3.5069375038146973, + "step": 4851 + }, + { + "epoch": 67.3914373088685, + "grad_norm": 0.22328020632266998, + "learning_rate": 0.0006, + "loss": 3.5156240463256836, + "step": 4852 + }, + { + "epoch": 67.40541721275666, + "grad_norm": 0.22034069895744324, + "learning_rate": 0.0006, + "loss": 3.527740001678467, + "step": 4853 + }, + { + "epoch": 67.41939711664482, + "grad_norm": 0.23175004124641418, + "learning_rate": 0.0006, + "loss": 3.5049824714660645, + "step": 4854 + }, + { + "epoch": 67.43337702053299, + "grad_norm": 0.251209020614624, + "learning_rate": 0.0006, + "loss": 3.521754503250122, + "step": 4855 + }, + { + "epoch": 67.44735692442114, + "grad_norm": 0.26046663522720337, + "learning_rate": 0.0006, + "loss": 3.507568359375, + "step": 4856 + }, + { + "epoch": 67.4613368283093, + "grad_norm": 0.2206648588180542, + "learning_rate": 0.0006, + "loss": 3.513352870941162, + "step": 4857 + }, + { + "epoch": 67.47531673219747, + "grad_norm": 0.21608634293079376, + "learning_rate": 0.0006, + "loss": 3.4996538162231445, + "step": 4858 + }, + { + "epoch": 67.48929663608563, + "grad_norm": 0.24478112161159515, + "learning_rate": 0.0006, + "loss": 3.5210018157958984, + "step": 4859 + }, + { + "epoch": 67.50327653997378, + "grad_norm": 0.24971047043800354, + "learning_rate": 0.0006, + "loss": 3.5325865745544434, + "step": 4860 + }, + { + "epoch": 67.51725644386195, + "grad_norm": 0.26053082942962646, + "learning_rate": 0.0006, + "loss": 3.546248435974121, + "step": 4861 + }, + { + "epoch": 67.53123634775011, + "grad_norm": 0.2662231922149658, + "learning_rate": 0.0006, + "loss": 3.5073113441467285, + "step": 4862 + }, + { + "epoch": 67.54521625163827, + "grad_norm": 0.24797172844409943, + "learning_rate": 0.0006, + "loss": 3.536888360977173, + "step": 4863 + }, + { + "epoch": 67.55919615552644, + "grad_norm": 0.2383667528629303, + "learning_rate": 0.0006, + "loss": 3.5343832969665527, + "step": 4864 + }, + { + "epoch": 67.57317605941459, + "grad_norm": 0.2696457803249359, + "learning_rate": 0.0006, + "loss": 3.51254940032959, + "step": 4865 + }, + { + "epoch": 67.58715596330275, + "grad_norm": 0.2644849419593811, + "learning_rate": 0.0006, + "loss": 3.5213255882263184, + "step": 4866 + }, + { + "epoch": 67.60113586719092, + "grad_norm": 0.2375287413597107, + "learning_rate": 0.0006, + "loss": 3.5177063941955566, + "step": 4867 + }, + { + "epoch": 67.61511577107908, + "grad_norm": 0.2249385118484497, + "learning_rate": 0.0006, + "loss": 3.541508674621582, + "step": 4868 + }, + { + "epoch": 67.62909567496723, + "grad_norm": 0.2155243158340454, + "learning_rate": 0.0006, + "loss": 3.5091710090637207, + "step": 4869 + }, + { + "epoch": 67.6430755788554, + "grad_norm": 0.20459716022014618, + "learning_rate": 0.0006, + "loss": 3.5284833908081055, + "step": 4870 + }, + { + "epoch": 67.65705548274356, + "grad_norm": 0.22957809269428253, + "learning_rate": 0.0006, + "loss": 3.4831137657165527, + "step": 4871 + }, + { + "epoch": 67.67103538663171, + "grad_norm": 0.2776307165622711, + "learning_rate": 0.0006, + "loss": 3.5084991455078125, + "step": 4872 + }, + { + "epoch": 67.68501529051987, + "grad_norm": 0.2769255042076111, + "learning_rate": 0.0006, + "loss": 3.5352253913879395, + "step": 4873 + }, + { + "epoch": 67.69899519440804, + "grad_norm": 0.2233399897813797, + "learning_rate": 0.0006, + "loss": 3.5451040267944336, + "step": 4874 + }, + { + "epoch": 67.7129750982962, + "grad_norm": 0.20665188133716583, + "learning_rate": 0.0006, + "loss": 3.528292417526245, + "step": 4875 + }, + { + "epoch": 67.72695500218435, + "grad_norm": 0.22606195509433746, + "learning_rate": 0.0006, + "loss": 3.519838571548462, + "step": 4876 + }, + { + "epoch": 67.74093490607252, + "grad_norm": 0.22447355091571808, + "learning_rate": 0.0006, + "loss": 3.562148094177246, + "step": 4877 + }, + { + "epoch": 67.75491480996068, + "grad_norm": 0.2255096584558487, + "learning_rate": 0.0006, + "loss": 3.53926420211792, + "step": 4878 + }, + { + "epoch": 67.76889471384884, + "grad_norm": 0.2142494022846222, + "learning_rate": 0.0006, + "loss": 3.533456563949585, + "step": 4879 + }, + { + "epoch": 67.78287461773701, + "grad_norm": 0.2157258242368698, + "learning_rate": 0.0006, + "loss": 3.534109592437744, + "step": 4880 + }, + { + "epoch": 67.79685452162516, + "grad_norm": 0.20596624910831451, + "learning_rate": 0.0006, + "loss": 3.5252795219421387, + "step": 4881 + }, + { + "epoch": 67.81083442551332, + "grad_norm": 0.24075612425804138, + "learning_rate": 0.0006, + "loss": 3.549905300140381, + "step": 4882 + }, + { + "epoch": 67.82481432940149, + "grad_norm": 0.27206453680992126, + "learning_rate": 0.0006, + "loss": 3.4850993156433105, + "step": 4883 + }, + { + "epoch": 67.83879423328965, + "grad_norm": 0.2525651454925537, + "learning_rate": 0.0006, + "loss": 3.4936270713806152, + "step": 4884 + }, + { + "epoch": 67.8527741371778, + "grad_norm": 0.20669442415237427, + "learning_rate": 0.0006, + "loss": 3.5201377868652344, + "step": 4885 + }, + { + "epoch": 67.86675404106597, + "grad_norm": 0.19694887101650238, + "learning_rate": 0.0006, + "loss": 3.5146493911743164, + "step": 4886 + }, + { + "epoch": 67.88073394495413, + "grad_norm": 0.20657725632190704, + "learning_rate": 0.0006, + "loss": 3.539475917816162, + "step": 4887 + }, + { + "epoch": 67.89471384884229, + "grad_norm": 0.2321559488773346, + "learning_rate": 0.0006, + "loss": 3.541250705718994, + "step": 4888 + }, + { + "epoch": 67.90869375273044, + "grad_norm": 0.22864052653312683, + "learning_rate": 0.0006, + "loss": 3.5151207447052, + "step": 4889 + }, + { + "epoch": 67.92267365661861, + "grad_norm": 0.2121419608592987, + "learning_rate": 0.0006, + "loss": 3.5219309329986572, + "step": 4890 + }, + { + "epoch": 67.93665356050677, + "grad_norm": 0.2194126695394516, + "learning_rate": 0.0006, + "loss": 3.5411415100097656, + "step": 4891 + }, + { + "epoch": 67.95063346439493, + "grad_norm": 0.23670069873332977, + "learning_rate": 0.0006, + "loss": 3.56632137298584, + "step": 4892 + }, + { + "epoch": 67.9646133682831, + "grad_norm": 0.22159531712532043, + "learning_rate": 0.0006, + "loss": 3.5245089530944824, + "step": 4893 + }, + { + "epoch": 67.97859327217125, + "grad_norm": 0.20856274664402008, + "learning_rate": 0.0006, + "loss": 3.5363054275512695, + "step": 4894 + }, + { + "epoch": 67.99257317605941, + "grad_norm": 0.21568304300308228, + "learning_rate": 0.0006, + "loss": 3.5226120948791504, + "step": 4895 + }, + { + "epoch": 68.0, + "grad_norm": 0.22287404537200928, + "learning_rate": 0.0006, + "loss": 3.5020053386688232, + "step": 4896 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 2.0864255847951237e+18, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4896/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5184/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5184/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5184/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5184/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f73cad798721aa1d2fe5078a0fc1961edcbb601c --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66ae7a3d7fb6f9cc37dd1618371758166042881b39b0ffcf561ab5a085fa3069 +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5184/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..764350bb45cd489b5d7fa31e0ca648940ba19913 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f59ddbb30187616fd356ee2f452297c3c001858d56e746e28c2b7d4ec2942a61 +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5184/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..b6b1ca5656b0b9fce69d6ed3e19d7b490836ecb6 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98c7c5250b8c59c11b97672104acae6312307496657e4096138a4f89167c7eb3 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5184/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..7d71302a1dbcd7978d891a024ddac6ce0b88424a --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d36b908a7ba5ddcf2dee305446019ad723e6853a2fdb357780389a6c4365685e +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5184/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..87c25f34fb9c3e31517de12eec62aa55b15b7f35 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f27f1d0b18f28ca972b7026932ac402d35af3b241ee72040352067f9ee1e6988 +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5184/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5184/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5184/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..b94b75a7c2f8454b77b2f368922b43adf3e2a54b --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/trainer_state.json @@ -0,0 +1,36890 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 72.0, + "eval_steps": 500, + "global_step": 5184, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + }, + { + "epoch": 8.0, + "eval_loss": 5.100707530975342, + "eval_runtime": 44.2493, + "eval_samples_per_second": 55.187, + "eval_steps_per_second": 3.458, + "step": 576 + }, + { + "epoch": 8.013979903888162, + "grad_norm": 0.3658510148525238, + "learning_rate": 0.0006, + "loss": 4.759055137634277, + "step": 577 + }, + { + "epoch": 8.027959807776321, + "grad_norm": 0.41794446110725403, + "learning_rate": 0.0006, + "loss": 4.737661838531494, + "step": 578 + }, + { + "epoch": 8.041939711664483, + "grad_norm": 0.43284085392951965, + "learning_rate": 0.0006, + "loss": 4.775538444519043, + "step": 579 + }, + { + "epoch": 8.055919615552643, + "grad_norm": 0.4716675281524658, + "learning_rate": 0.0006, + "loss": 4.762231826782227, + "step": 580 + }, + { + "epoch": 8.069899519440805, + "grad_norm": 0.3849579393863678, + "learning_rate": 0.0006, + "loss": 4.753598690032959, + "step": 581 + }, + { + "epoch": 8.083879423328964, + "grad_norm": 0.3721151053905487, + "learning_rate": 0.0006, + "loss": 4.728978157043457, + "step": 582 + }, + { + "epoch": 8.097859327217126, + "grad_norm": 0.37009572982788086, + "learning_rate": 0.0006, + "loss": 4.759153366088867, + "step": 583 + }, + { + "epoch": 8.111839231105286, + "grad_norm": 0.37051302194595337, + "learning_rate": 0.0006, + "loss": 4.744197368621826, + "step": 584 + }, + { + "epoch": 8.125819134993447, + "grad_norm": 0.331238329410553, + "learning_rate": 0.0006, + "loss": 4.7338385581970215, + "step": 585 + }, + { + "epoch": 8.139799038881607, + "grad_norm": 0.3737713694572449, + "learning_rate": 0.0006, + "loss": 4.719110488891602, + "step": 586 + }, + { + "epoch": 8.153778942769769, + "grad_norm": 0.3713214695453644, + "learning_rate": 0.0006, + "loss": 4.734012126922607, + "step": 587 + }, + { + "epoch": 8.167758846657929, + "grad_norm": 0.4060780107975006, + "learning_rate": 0.0006, + "loss": 4.746830940246582, + "step": 588 + }, + { + "epoch": 8.18173875054609, + "grad_norm": 0.39814314246177673, + "learning_rate": 0.0006, + "loss": 4.722851753234863, + "step": 589 + }, + { + "epoch": 8.19571865443425, + "grad_norm": 0.3175652325153351, + "learning_rate": 0.0006, + "loss": 4.745110034942627, + "step": 590 + }, + { + "epoch": 8.209698558322412, + "grad_norm": 0.37214916944503784, + "learning_rate": 0.0006, + "loss": 4.7362775802612305, + "step": 591 + }, + { + "epoch": 8.223678462210572, + "grad_norm": 0.3873472809791565, + "learning_rate": 0.0006, + "loss": 4.738964557647705, + "step": 592 + }, + { + "epoch": 8.237658366098733, + "grad_norm": 0.3299207091331482, + "learning_rate": 0.0006, + "loss": 4.713451385498047, + "step": 593 + }, + { + "epoch": 8.251638269986893, + "grad_norm": 0.32445064187049866, + "learning_rate": 0.0006, + "loss": 4.725602149963379, + "step": 594 + }, + { + "epoch": 8.265618173875055, + "grad_norm": 0.32903164625167847, + "learning_rate": 0.0006, + "loss": 4.732064247131348, + "step": 595 + }, + { + "epoch": 8.279598077763215, + "grad_norm": 0.3166804313659668, + "learning_rate": 0.0006, + "loss": 4.678950786590576, + "step": 596 + }, + { + "epoch": 8.293577981651376, + "grad_norm": 0.2750290334224701, + "learning_rate": 0.0006, + "loss": 4.719513416290283, + "step": 597 + }, + { + "epoch": 8.307557885539538, + "grad_norm": 0.291029691696167, + "learning_rate": 0.0006, + "loss": 4.715405464172363, + "step": 598 + }, + { + "epoch": 8.321537789427698, + "grad_norm": 0.34105145931243896, + "learning_rate": 0.0006, + "loss": 4.722611427307129, + "step": 599 + }, + { + "epoch": 8.33551769331586, + "grad_norm": 0.3078882694244385, + "learning_rate": 0.0006, + "loss": 4.668856620788574, + "step": 600 + }, + { + "epoch": 8.349497597204019, + "grad_norm": 0.3218833804130554, + "learning_rate": 0.0006, + "loss": 4.719579696655273, + "step": 601 + }, + { + "epoch": 8.36347750109218, + "grad_norm": 0.35716721415519714, + "learning_rate": 0.0006, + "loss": 4.690774440765381, + "step": 602 + }, + { + "epoch": 8.37745740498034, + "grad_norm": 0.3045452833175659, + "learning_rate": 0.0006, + "loss": 4.696503639221191, + "step": 603 + }, + { + "epoch": 8.391437308868502, + "grad_norm": 0.3127244710922241, + "learning_rate": 0.0006, + "loss": 4.701899528503418, + "step": 604 + }, + { + "epoch": 8.405417212756662, + "grad_norm": 0.34988710284233093, + "learning_rate": 0.0006, + "loss": 4.677641868591309, + "step": 605 + }, + { + "epoch": 8.419397116644824, + "grad_norm": 0.34035569429397583, + "learning_rate": 0.0006, + "loss": 4.707778453826904, + "step": 606 + }, + { + "epoch": 8.433377020532983, + "grad_norm": 0.3341112732887268, + "learning_rate": 0.0006, + "loss": 4.724853038787842, + "step": 607 + }, + { + "epoch": 8.447356924421145, + "grad_norm": 0.41744324564933777, + "learning_rate": 0.0006, + "loss": 4.680908203125, + "step": 608 + }, + { + "epoch": 8.461336828309305, + "grad_norm": 0.40402331948280334, + "learning_rate": 0.0006, + "loss": 4.726455211639404, + "step": 609 + }, + { + "epoch": 8.475316732197467, + "grad_norm": 0.4727570414543152, + "learning_rate": 0.0006, + "loss": 4.6793084144592285, + "step": 610 + }, + { + "epoch": 8.489296636085626, + "grad_norm": 0.43002694845199585, + "learning_rate": 0.0006, + "loss": 4.663918972015381, + "step": 611 + }, + { + "epoch": 8.503276539973788, + "grad_norm": 0.36124858260154724, + "learning_rate": 0.0006, + "loss": 4.657375335693359, + "step": 612 + }, + { + "epoch": 8.517256443861948, + "grad_norm": 0.37644803524017334, + "learning_rate": 0.0006, + "loss": 4.676977157592773, + "step": 613 + }, + { + "epoch": 8.53123634775011, + "grad_norm": 0.32347747683525085, + "learning_rate": 0.0006, + "loss": 4.708547115325928, + "step": 614 + }, + { + "epoch": 8.54521625163827, + "grad_norm": 0.3071717619895935, + "learning_rate": 0.0006, + "loss": 4.650189399719238, + "step": 615 + }, + { + "epoch": 8.55919615552643, + "grad_norm": 0.30222490429878235, + "learning_rate": 0.0006, + "loss": 4.647942543029785, + "step": 616 + }, + { + "epoch": 8.57317605941459, + "grad_norm": 0.31545212864875793, + "learning_rate": 0.0006, + "loss": 4.660242080688477, + "step": 617 + }, + { + "epoch": 8.587155963302752, + "grad_norm": 0.31644752621650696, + "learning_rate": 0.0006, + "loss": 4.666710376739502, + "step": 618 + }, + { + "epoch": 8.601135867190912, + "grad_norm": 0.26057198643684387, + "learning_rate": 0.0006, + "loss": 4.668096542358398, + "step": 619 + }, + { + "epoch": 8.615115771079074, + "grad_norm": 0.25473910570144653, + "learning_rate": 0.0006, + "loss": 4.641562461853027, + "step": 620 + }, + { + "epoch": 8.629095674967235, + "grad_norm": 0.2456732839345932, + "learning_rate": 0.0006, + "loss": 4.6545281410217285, + "step": 621 + }, + { + "epoch": 8.643075578855395, + "grad_norm": 0.25180476903915405, + "learning_rate": 0.0006, + "loss": 4.6506524085998535, + "step": 622 + }, + { + "epoch": 8.657055482743557, + "grad_norm": 0.21761579811573029, + "learning_rate": 0.0006, + "loss": 4.638909339904785, + "step": 623 + }, + { + "epoch": 8.671035386631717, + "grad_norm": 0.23590542376041412, + "learning_rate": 0.0006, + "loss": 4.6572747230529785, + "step": 624 + }, + { + "epoch": 8.685015290519878, + "grad_norm": 0.23870624601840973, + "learning_rate": 0.0006, + "loss": 4.643742084503174, + "step": 625 + }, + { + "epoch": 8.698995194408038, + "grad_norm": 0.2191203385591507, + "learning_rate": 0.0006, + "loss": 4.632617950439453, + "step": 626 + }, + { + "epoch": 8.7129750982962, + "grad_norm": 0.22107063233852386, + "learning_rate": 0.0006, + "loss": 4.625616073608398, + "step": 627 + }, + { + "epoch": 8.72695500218436, + "grad_norm": 0.20833902060985565, + "learning_rate": 0.0006, + "loss": 4.609896659851074, + "step": 628 + }, + { + "epoch": 8.740934906072521, + "grad_norm": 0.254967600107193, + "learning_rate": 0.0006, + "loss": 4.651735782623291, + "step": 629 + }, + { + "epoch": 8.754914809960681, + "grad_norm": 0.31587523221969604, + "learning_rate": 0.0006, + "loss": 4.6404032707214355, + "step": 630 + }, + { + "epoch": 8.768894713848843, + "grad_norm": 0.28598251938819885, + "learning_rate": 0.0006, + "loss": 4.602679252624512, + "step": 631 + }, + { + "epoch": 8.782874617737003, + "grad_norm": 0.23216590285301208, + "learning_rate": 0.0006, + "loss": 4.610319137573242, + "step": 632 + }, + { + "epoch": 8.796854521625164, + "grad_norm": 0.29212239384651184, + "learning_rate": 0.0006, + "loss": 4.600744247436523, + "step": 633 + }, + { + "epoch": 8.810834425513324, + "grad_norm": 0.3375801146030426, + "learning_rate": 0.0006, + "loss": 4.627819061279297, + "step": 634 + }, + { + "epoch": 8.824814329401486, + "grad_norm": 0.4207753837108612, + "learning_rate": 0.0006, + "loss": 4.634505271911621, + "step": 635 + }, + { + "epoch": 8.838794233289645, + "grad_norm": 0.4640173614025116, + "learning_rate": 0.0006, + "loss": 4.636714935302734, + "step": 636 + }, + { + "epoch": 8.852774137177807, + "grad_norm": 0.5255663990974426, + "learning_rate": 0.0006, + "loss": 4.659462928771973, + "step": 637 + }, + { + "epoch": 8.866754041065967, + "grad_norm": 0.5108268857002258, + "learning_rate": 0.0006, + "loss": 4.633192539215088, + "step": 638 + }, + { + "epoch": 8.880733944954128, + "grad_norm": 0.3821936845779419, + "learning_rate": 0.0006, + "loss": 4.621200084686279, + "step": 639 + }, + { + "epoch": 8.89471384884229, + "grad_norm": 0.3918485939502716, + "learning_rate": 0.0006, + "loss": 4.632599830627441, + "step": 640 + }, + { + "epoch": 8.90869375273045, + "grad_norm": 0.3416556119918823, + "learning_rate": 0.0006, + "loss": 4.620438098907471, + "step": 641 + }, + { + "epoch": 8.922673656618612, + "grad_norm": 0.3191553056240082, + "learning_rate": 0.0006, + "loss": 4.617823600769043, + "step": 642 + }, + { + "epoch": 8.936653560506771, + "grad_norm": 0.3368529677391052, + "learning_rate": 0.0006, + "loss": 4.617222785949707, + "step": 643 + }, + { + "epoch": 8.950633464394933, + "grad_norm": 0.3255428969860077, + "learning_rate": 0.0006, + "loss": 4.633878707885742, + "step": 644 + }, + { + "epoch": 8.964613368283093, + "grad_norm": 0.31394779682159424, + "learning_rate": 0.0006, + "loss": 4.642603874206543, + "step": 645 + }, + { + "epoch": 8.978593272171254, + "grad_norm": 0.29999351501464844, + "learning_rate": 0.0006, + "loss": 4.5925211906433105, + "step": 646 + }, + { + "epoch": 8.992573176059414, + "grad_norm": 0.309154748916626, + "learning_rate": 0.0006, + "loss": 4.61745023727417, + "step": 647 + }, + { + "epoch": 9.0, + "grad_norm": 0.2660452425479889, + "learning_rate": 0.0006, + "loss": 4.575107097625732, + "step": 648 + }, + { + "epoch": 9.0, + "eval_loss": 4.8804192543029785, + "eval_runtime": 45.0015, + "eval_samples_per_second": 54.265, + "eval_steps_per_second": 3.4, + "step": 648 + }, + { + "epoch": 9.013979903888162, + "grad_norm": 0.24159297347068787, + "learning_rate": 0.0006, + "loss": 4.571323871612549, + "step": 649 + }, + { + "epoch": 9.027959807776321, + "grad_norm": 0.2835831046104431, + "learning_rate": 0.0006, + "loss": 4.614255905151367, + "step": 650 + }, + { + "epoch": 9.041939711664483, + "grad_norm": 0.2646859288215637, + "learning_rate": 0.0006, + "loss": 4.578947067260742, + "step": 651 + }, + { + "epoch": 9.055919615552643, + "grad_norm": 0.28868553042411804, + "learning_rate": 0.0006, + "loss": 4.575977325439453, + "step": 652 + }, + { + "epoch": 9.069899519440805, + "grad_norm": 0.2899586856365204, + "learning_rate": 0.0006, + "loss": 4.541798114776611, + "step": 653 + }, + { + "epoch": 9.083879423328964, + "grad_norm": 0.32786068320274353, + "learning_rate": 0.0006, + "loss": 4.575140953063965, + "step": 654 + }, + { + "epoch": 9.097859327217126, + "grad_norm": 0.35675594210624695, + "learning_rate": 0.0006, + "loss": 4.58184814453125, + "step": 655 + }, + { + "epoch": 9.111839231105286, + "grad_norm": 0.3380381166934967, + "learning_rate": 0.0006, + "loss": 4.546271324157715, + "step": 656 + }, + { + "epoch": 9.125819134993447, + "grad_norm": 0.3035511374473572, + "learning_rate": 0.0006, + "loss": 4.591629981994629, + "step": 657 + }, + { + "epoch": 9.139799038881607, + "grad_norm": 0.2733091711997986, + "learning_rate": 0.0006, + "loss": 4.559020042419434, + "step": 658 + }, + { + "epoch": 9.153778942769769, + "grad_norm": 0.2870676815509796, + "learning_rate": 0.0006, + "loss": 4.552787780761719, + "step": 659 + }, + { + "epoch": 9.167758846657929, + "grad_norm": 0.37471064925193787, + "learning_rate": 0.0006, + "loss": 4.572757244110107, + "step": 660 + }, + { + "epoch": 9.18173875054609, + "grad_norm": 0.37889063358306885, + "learning_rate": 0.0006, + "loss": 4.573302268981934, + "step": 661 + }, + { + "epoch": 9.19571865443425, + "grad_norm": 0.29983851313591003, + "learning_rate": 0.0006, + "loss": 4.571202754974365, + "step": 662 + }, + { + "epoch": 9.209698558322412, + "grad_norm": 0.27595147490501404, + "learning_rate": 0.0006, + "loss": 4.529508590698242, + "step": 663 + }, + { + "epoch": 9.223678462210572, + "grad_norm": 0.22693437337875366, + "learning_rate": 0.0006, + "loss": 4.572267532348633, + "step": 664 + }, + { + "epoch": 9.237658366098733, + "grad_norm": 0.27147138118743896, + "learning_rate": 0.0006, + "loss": 4.529747009277344, + "step": 665 + }, + { + "epoch": 9.251638269986893, + "grad_norm": 0.24952703714370728, + "learning_rate": 0.0006, + "loss": 4.553647994995117, + "step": 666 + }, + { + "epoch": 9.265618173875055, + "grad_norm": 0.3086707592010498, + "learning_rate": 0.0006, + "loss": 4.494636058807373, + "step": 667 + }, + { + "epoch": 9.279598077763215, + "grad_norm": 0.3265218138694763, + "learning_rate": 0.0006, + "loss": 4.522481918334961, + "step": 668 + }, + { + "epoch": 9.293577981651376, + "grad_norm": 0.2744608223438263, + "learning_rate": 0.0006, + "loss": 4.544595241546631, + "step": 669 + }, + { + "epoch": 9.307557885539538, + "grad_norm": 0.26698485016822815, + "learning_rate": 0.0006, + "loss": 4.506407260894775, + "step": 670 + }, + { + "epoch": 9.321537789427698, + "grad_norm": 0.2775942087173462, + "learning_rate": 0.0006, + "loss": 4.534619331359863, + "step": 671 + }, + { + "epoch": 9.33551769331586, + "grad_norm": 0.2421862781047821, + "learning_rate": 0.0006, + "loss": 4.523318290710449, + "step": 672 + }, + { + "epoch": 9.349497597204019, + "grad_norm": 0.2756497263908386, + "learning_rate": 0.0006, + "loss": 4.517561912536621, + "step": 673 + }, + { + "epoch": 9.36347750109218, + "grad_norm": 0.28845369815826416, + "learning_rate": 0.0006, + "loss": 4.530844688415527, + "step": 674 + }, + { + "epoch": 9.37745740498034, + "grad_norm": 0.32285866141319275, + "learning_rate": 0.0006, + "loss": 4.55369758605957, + "step": 675 + }, + { + "epoch": 9.391437308868502, + "grad_norm": 0.3726065754890442, + "learning_rate": 0.0006, + "loss": 4.524348258972168, + "step": 676 + }, + { + "epoch": 9.405417212756662, + "grad_norm": 0.39524078369140625, + "learning_rate": 0.0006, + "loss": 4.535778045654297, + "step": 677 + }, + { + "epoch": 9.419397116644824, + "grad_norm": 0.3859797716140747, + "learning_rate": 0.0006, + "loss": 4.538474082946777, + "step": 678 + }, + { + "epoch": 9.433377020532983, + "grad_norm": 0.36151406168937683, + "learning_rate": 0.0006, + "loss": 4.54434061050415, + "step": 679 + }, + { + "epoch": 9.447356924421145, + "grad_norm": 0.40345999598503113, + "learning_rate": 0.0006, + "loss": 4.532961845397949, + "step": 680 + }, + { + "epoch": 9.461336828309305, + "grad_norm": 0.38864144682884216, + "learning_rate": 0.0006, + "loss": 4.567630767822266, + "step": 681 + }, + { + "epoch": 9.475316732197467, + "grad_norm": 0.3816355764865875, + "learning_rate": 0.0006, + "loss": 4.535771369934082, + "step": 682 + }, + { + "epoch": 9.489296636085626, + "grad_norm": 0.38756558299064636, + "learning_rate": 0.0006, + "loss": 4.4971089363098145, + "step": 683 + }, + { + "epoch": 9.503276539973788, + "grad_norm": 0.4572933614253998, + "learning_rate": 0.0006, + "loss": 4.534860134124756, + "step": 684 + }, + { + "epoch": 9.517256443861948, + "grad_norm": 0.42368650436401367, + "learning_rate": 0.0006, + "loss": 4.542638301849365, + "step": 685 + }, + { + "epoch": 9.53123634775011, + "grad_norm": 0.36939486861228943, + "learning_rate": 0.0006, + "loss": 4.571430206298828, + "step": 686 + }, + { + "epoch": 9.54521625163827, + "grad_norm": 0.3900398313999176, + "learning_rate": 0.0006, + "loss": 4.544435501098633, + "step": 687 + }, + { + "epoch": 9.55919615552643, + "grad_norm": 0.37829288840293884, + "learning_rate": 0.0006, + "loss": 4.564268112182617, + "step": 688 + }, + { + "epoch": 9.57317605941459, + "grad_norm": 0.3553886115550995, + "learning_rate": 0.0006, + "loss": 4.5373430252075195, + "step": 689 + }, + { + "epoch": 9.587155963302752, + "grad_norm": 0.3613419532775879, + "learning_rate": 0.0006, + "loss": 4.559074401855469, + "step": 690 + }, + { + "epoch": 9.601135867190912, + "grad_norm": 0.32644546031951904, + "learning_rate": 0.0006, + "loss": 4.533667087554932, + "step": 691 + }, + { + "epoch": 9.615115771079074, + "grad_norm": 0.3264399468898773, + "learning_rate": 0.0006, + "loss": 4.508299350738525, + "step": 692 + }, + { + "epoch": 9.629095674967235, + "grad_norm": 0.3534526526927948, + "learning_rate": 0.0006, + "loss": 4.542442798614502, + "step": 693 + }, + { + "epoch": 9.643075578855395, + "grad_norm": 0.3333452343940735, + "learning_rate": 0.0006, + "loss": 4.497692584991455, + "step": 694 + }, + { + "epoch": 9.657055482743557, + "grad_norm": 0.3214292526245117, + "learning_rate": 0.0006, + "loss": 4.512363433837891, + "step": 695 + }, + { + "epoch": 9.671035386631717, + "grad_norm": 0.2805672585964203, + "learning_rate": 0.0006, + "loss": 4.496874809265137, + "step": 696 + }, + { + "epoch": 9.685015290519878, + "grad_norm": 0.2618725895881653, + "learning_rate": 0.0006, + "loss": 4.51375675201416, + "step": 697 + }, + { + "epoch": 9.698995194408038, + "grad_norm": 0.2556597888469696, + "learning_rate": 0.0006, + "loss": 4.512338638305664, + "step": 698 + }, + { + "epoch": 9.7129750982962, + "grad_norm": 0.23784305155277252, + "learning_rate": 0.0006, + "loss": 4.486503601074219, + "step": 699 + }, + { + "epoch": 9.72695500218436, + "grad_norm": 0.2240338921546936, + "learning_rate": 0.0006, + "loss": 4.486850261688232, + "step": 700 + }, + { + "epoch": 9.740934906072521, + "grad_norm": 0.24686725437641144, + "learning_rate": 0.0006, + "loss": 4.501359462738037, + "step": 701 + }, + { + "epoch": 9.754914809960681, + "grad_norm": 0.20819595456123352, + "learning_rate": 0.0006, + "loss": 4.495186805725098, + "step": 702 + }, + { + "epoch": 9.768894713848843, + "grad_norm": 0.21858957409858704, + "learning_rate": 0.0006, + "loss": 4.475093364715576, + "step": 703 + }, + { + "epoch": 9.782874617737003, + "grad_norm": 0.22676466405391693, + "learning_rate": 0.0006, + "loss": 4.4702534675598145, + "step": 704 + }, + { + "epoch": 9.796854521625164, + "grad_norm": 0.18317611515522003, + "learning_rate": 0.0006, + "loss": 4.471231937408447, + "step": 705 + }, + { + "epoch": 9.810834425513324, + "grad_norm": 0.20979148149490356, + "learning_rate": 0.0006, + "loss": 4.454103946685791, + "step": 706 + }, + { + "epoch": 9.824814329401486, + "grad_norm": 0.2146051526069641, + "learning_rate": 0.0006, + "loss": 4.505178928375244, + "step": 707 + }, + { + "epoch": 9.838794233289645, + "grad_norm": 0.2344852089881897, + "learning_rate": 0.0006, + "loss": 4.437984943389893, + "step": 708 + }, + { + "epoch": 9.852774137177807, + "grad_norm": 0.26532089710235596, + "learning_rate": 0.0006, + "loss": 4.477126121520996, + "step": 709 + }, + { + "epoch": 9.866754041065967, + "grad_norm": 0.2737913131713867, + "learning_rate": 0.0006, + "loss": 4.498421669006348, + "step": 710 + }, + { + "epoch": 9.880733944954128, + "grad_norm": 0.26651278138160706, + "learning_rate": 0.0006, + "loss": 4.480839729309082, + "step": 711 + }, + { + "epoch": 9.89471384884229, + "grad_norm": 0.26576584577560425, + "learning_rate": 0.0006, + "loss": 4.490936279296875, + "step": 712 + }, + { + "epoch": 9.90869375273045, + "grad_norm": 0.22483965754508972, + "learning_rate": 0.0006, + "loss": 4.477953910827637, + "step": 713 + }, + { + "epoch": 9.922673656618612, + "grad_norm": 0.23576045036315918, + "learning_rate": 0.0006, + "loss": 4.4731292724609375, + "step": 714 + }, + { + "epoch": 9.936653560506771, + "grad_norm": 0.2731139361858368, + "learning_rate": 0.0006, + "loss": 4.441622734069824, + "step": 715 + }, + { + "epoch": 9.950633464394933, + "grad_norm": 0.2677643597126007, + "learning_rate": 0.0006, + "loss": 4.49604606628418, + "step": 716 + }, + { + "epoch": 9.964613368283093, + "grad_norm": 0.21940895915031433, + "learning_rate": 0.0006, + "loss": 4.485573768615723, + "step": 717 + }, + { + "epoch": 9.978593272171254, + "grad_norm": 0.2060987651348114, + "learning_rate": 0.0006, + "loss": 4.482657432556152, + "step": 718 + }, + { + "epoch": 9.992573176059414, + "grad_norm": 0.22163978219032288, + "learning_rate": 0.0006, + "loss": 4.478459358215332, + "step": 719 + }, + { + "epoch": 10.0, + "grad_norm": 0.2505086064338684, + "learning_rate": 0.0006, + "loss": 4.4393510818481445, + "step": 720 + }, + { + "epoch": 10.0, + "eval_loss": 4.695676803588867, + "eval_runtime": 49.0751, + "eval_samples_per_second": 49.76, + "eval_steps_per_second": 3.118, + "step": 720 + }, + { + "epoch": 10.013979903888162, + "grad_norm": 0.23820190131664276, + "learning_rate": 0.0006, + "loss": 4.437685489654541, + "step": 721 + }, + { + "epoch": 10.027959807776321, + "grad_norm": 0.2220371812582016, + "learning_rate": 0.0006, + "loss": 4.449873924255371, + "step": 722 + }, + { + "epoch": 10.041939711664483, + "grad_norm": 0.20369848608970642, + "learning_rate": 0.0006, + "loss": 4.448882579803467, + "step": 723 + }, + { + "epoch": 10.055919615552643, + "grad_norm": 0.2360001504421234, + "learning_rate": 0.0006, + "loss": 4.399251937866211, + "step": 724 + }, + { + "epoch": 10.069899519440805, + "grad_norm": 0.23537491261959076, + "learning_rate": 0.0006, + "loss": 4.442960739135742, + "step": 725 + }, + { + "epoch": 10.083879423328964, + "grad_norm": 0.24433870613574982, + "learning_rate": 0.0006, + "loss": 4.44808292388916, + "step": 726 + }, + { + "epoch": 10.097859327217126, + "grad_norm": 0.3406696021556854, + "learning_rate": 0.0006, + "loss": 4.443426132202148, + "step": 727 + }, + { + "epoch": 10.111839231105286, + "grad_norm": 0.4102286100387573, + "learning_rate": 0.0006, + "loss": 4.424919605255127, + "step": 728 + }, + { + "epoch": 10.125819134993447, + "grad_norm": 0.36462604999542236, + "learning_rate": 0.0006, + "loss": 4.45366907119751, + "step": 729 + }, + { + "epoch": 10.139799038881607, + "grad_norm": 0.4374827444553375, + "learning_rate": 0.0006, + "loss": 4.415630340576172, + "step": 730 + }, + { + "epoch": 10.153778942769769, + "grad_norm": 0.45248138904571533, + "learning_rate": 0.0006, + "loss": 4.448849678039551, + "step": 731 + }, + { + "epoch": 10.167758846657929, + "grad_norm": 0.3806457221508026, + "learning_rate": 0.0006, + "loss": 4.443390846252441, + "step": 732 + }, + { + "epoch": 10.18173875054609, + "grad_norm": 0.3491523861885071, + "learning_rate": 0.0006, + "loss": 4.4648637771606445, + "step": 733 + }, + { + "epoch": 10.19571865443425, + "grad_norm": 0.3327210247516632, + "learning_rate": 0.0006, + "loss": 4.460919380187988, + "step": 734 + }, + { + "epoch": 10.209698558322412, + "grad_norm": 0.29772236943244934, + "learning_rate": 0.0006, + "loss": 4.45159912109375, + "step": 735 + }, + { + "epoch": 10.223678462210572, + "grad_norm": 0.33083397150039673, + "learning_rate": 0.0006, + "loss": 4.463382720947266, + "step": 736 + }, + { + "epoch": 10.237658366098733, + "grad_norm": 0.3930598795413971, + "learning_rate": 0.0006, + "loss": 4.434510231018066, + "step": 737 + }, + { + "epoch": 10.251638269986893, + "grad_norm": 0.4342896044254303, + "learning_rate": 0.0006, + "loss": 4.451700210571289, + "step": 738 + }, + { + "epoch": 10.265618173875055, + "grad_norm": 0.4544043242931366, + "learning_rate": 0.0006, + "loss": 4.437224388122559, + "step": 739 + }, + { + "epoch": 10.279598077763215, + "grad_norm": 0.4487038254737854, + "learning_rate": 0.0006, + "loss": 4.46157693862915, + "step": 740 + }, + { + "epoch": 10.293577981651376, + "grad_norm": 0.4420500695705414, + "learning_rate": 0.0006, + "loss": 4.399561405181885, + "step": 741 + }, + { + "epoch": 10.307557885539538, + "grad_norm": 0.4167289435863495, + "learning_rate": 0.0006, + "loss": 4.41792106628418, + "step": 742 + }, + { + "epoch": 10.321537789427698, + "grad_norm": 0.3186971843242645, + "learning_rate": 0.0006, + "loss": 4.435683250427246, + "step": 743 + }, + { + "epoch": 10.33551769331586, + "grad_norm": 0.3077184855937958, + "learning_rate": 0.0006, + "loss": 4.481947898864746, + "step": 744 + }, + { + "epoch": 10.349497597204019, + "grad_norm": 0.26811280846595764, + "learning_rate": 0.0006, + "loss": 4.4339447021484375, + "step": 745 + }, + { + "epoch": 10.36347750109218, + "grad_norm": 0.28448057174682617, + "learning_rate": 0.0006, + "loss": 4.441644668579102, + "step": 746 + }, + { + "epoch": 10.37745740498034, + "grad_norm": 0.30731502175331116, + "learning_rate": 0.0006, + "loss": 4.428773880004883, + "step": 747 + }, + { + "epoch": 10.391437308868502, + "grad_norm": 0.28036001324653625, + "learning_rate": 0.0006, + "loss": 4.4433135986328125, + "step": 748 + }, + { + "epoch": 10.405417212756662, + "grad_norm": 0.2882847189903259, + "learning_rate": 0.0006, + "loss": 4.433401107788086, + "step": 749 + }, + { + "epoch": 10.419397116644824, + "grad_norm": 0.23622776567935944, + "learning_rate": 0.0006, + "loss": 4.444611549377441, + "step": 750 + }, + { + "epoch": 10.433377020532983, + "grad_norm": 0.2306167632341385, + "learning_rate": 0.0006, + "loss": 4.397875785827637, + "step": 751 + }, + { + "epoch": 10.447356924421145, + "grad_norm": 0.22725090384483337, + "learning_rate": 0.0006, + "loss": 4.429759502410889, + "step": 752 + }, + { + "epoch": 10.461336828309305, + "grad_norm": 0.250709593296051, + "learning_rate": 0.0006, + "loss": 4.415618896484375, + "step": 753 + }, + { + "epoch": 10.475316732197467, + "grad_norm": 0.22341276705265045, + "learning_rate": 0.0006, + "loss": 4.389362335205078, + "step": 754 + }, + { + "epoch": 10.489296636085626, + "grad_norm": 0.22595296800136566, + "learning_rate": 0.0006, + "loss": 4.383584022521973, + "step": 755 + }, + { + "epoch": 10.503276539973788, + "grad_norm": 0.24277575314044952, + "learning_rate": 0.0006, + "loss": 4.403777599334717, + "step": 756 + }, + { + "epoch": 10.517256443861948, + "grad_norm": 0.2670708894729614, + "learning_rate": 0.0006, + "loss": 4.398499011993408, + "step": 757 + }, + { + "epoch": 10.53123634775011, + "grad_norm": 0.2640696167945862, + "learning_rate": 0.0006, + "loss": 4.426726818084717, + "step": 758 + }, + { + "epoch": 10.54521625163827, + "grad_norm": 0.2248653769493103, + "learning_rate": 0.0006, + "loss": 4.400103569030762, + "step": 759 + }, + { + "epoch": 10.55919615552643, + "grad_norm": 0.21466240286827087, + "learning_rate": 0.0006, + "loss": 4.404158592224121, + "step": 760 + }, + { + "epoch": 10.57317605941459, + "grad_norm": 0.236923947930336, + "learning_rate": 0.0006, + "loss": 4.37059211730957, + "step": 761 + }, + { + "epoch": 10.587155963302752, + "grad_norm": 0.2515387535095215, + "learning_rate": 0.0006, + "loss": 4.415055274963379, + "step": 762 + }, + { + "epoch": 10.601135867190912, + "grad_norm": 0.23461885750293732, + "learning_rate": 0.0006, + "loss": 4.375036239624023, + "step": 763 + }, + { + "epoch": 10.615115771079074, + "grad_norm": 0.20975761115550995, + "learning_rate": 0.0006, + "loss": 4.3903398513793945, + "step": 764 + }, + { + "epoch": 10.629095674967235, + "grad_norm": 0.19859997928142548, + "learning_rate": 0.0006, + "loss": 4.379380226135254, + "step": 765 + }, + { + "epoch": 10.643075578855395, + "grad_norm": 0.22310325503349304, + "learning_rate": 0.0006, + "loss": 4.382110595703125, + "step": 766 + }, + { + "epoch": 10.657055482743557, + "grad_norm": 0.23940646648406982, + "learning_rate": 0.0006, + "loss": 4.393403053283691, + "step": 767 + }, + { + "epoch": 10.671035386631717, + "grad_norm": 0.2230468988418579, + "learning_rate": 0.0006, + "loss": 4.391970634460449, + "step": 768 + }, + { + "epoch": 10.685015290519878, + "grad_norm": 0.18139775097370148, + "learning_rate": 0.0006, + "loss": 4.399993896484375, + "step": 769 + }, + { + "epoch": 10.698995194408038, + "grad_norm": 0.19936902821063995, + "learning_rate": 0.0006, + "loss": 4.373854160308838, + "step": 770 + }, + { + "epoch": 10.7129750982962, + "grad_norm": 0.22132465243339539, + "learning_rate": 0.0006, + "loss": 4.377530097961426, + "step": 771 + }, + { + "epoch": 10.72695500218436, + "grad_norm": 0.24254944920539856, + "learning_rate": 0.0006, + "loss": 4.398683547973633, + "step": 772 + }, + { + "epoch": 10.740934906072521, + "grad_norm": 0.2666397988796234, + "learning_rate": 0.0006, + "loss": 4.3879899978637695, + "step": 773 + }, + { + "epoch": 10.754914809960681, + "grad_norm": 0.24728631973266602, + "learning_rate": 0.0006, + "loss": 4.356976509094238, + "step": 774 + }, + { + "epoch": 10.768894713848843, + "grad_norm": 0.2612453103065491, + "learning_rate": 0.0006, + "loss": 4.391525745391846, + "step": 775 + }, + { + "epoch": 10.782874617737003, + "grad_norm": 0.24060510098934174, + "learning_rate": 0.0006, + "loss": 4.376985549926758, + "step": 776 + }, + { + "epoch": 10.796854521625164, + "grad_norm": 0.22708238661289215, + "learning_rate": 0.0006, + "loss": 4.368545055389404, + "step": 777 + }, + { + "epoch": 10.810834425513324, + "grad_norm": 0.26931291818618774, + "learning_rate": 0.0006, + "loss": 4.369227409362793, + "step": 778 + }, + { + "epoch": 10.824814329401486, + "grad_norm": 0.265288770198822, + "learning_rate": 0.0006, + "loss": 4.378131866455078, + "step": 779 + }, + { + "epoch": 10.838794233289645, + "grad_norm": 0.3015305697917938, + "learning_rate": 0.0006, + "loss": 4.376267910003662, + "step": 780 + }, + { + "epoch": 10.852774137177807, + "grad_norm": 0.3345746099948883, + "learning_rate": 0.0006, + "loss": 4.3751420974731445, + "step": 781 + }, + { + "epoch": 10.866754041065967, + "grad_norm": 0.32446005940437317, + "learning_rate": 0.0006, + "loss": 4.370899200439453, + "step": 782 + }, + { + "epoch": 10.880733944954128, + "grad_norm": 0.27070069313049316, + "learning_rate": 0.0006, + "loss": 4.391958236694336, + "step": 783 + }, + { + "epoch": 10.89471384884229, + "grad_norm": 0.25584667921066284, + "learning_rate": 0.0006, + "loss": 4.407493591308594, + "step": 784 + }, + { + "epoch": 10.90869375273045, + "grad_norm": 0.2710244655609131, + "learning_rate": 0.0006, + "loss": 4.374400615692139, + "step": 785 + }, + { + "epoch": 10.922673656618612, + "grad_norm": 0.32413622736930847, + "learning_rate": 0.0006, + "loss": 4.379607200622559, + "step": 786 + }, + { + "epoch": 10.936653560506771, + "grad_norm": 0.3253782391548157, + "learning_rate": 0.0006, + "loss": 4.376441955566406, + "step": 787 + }, + { + "epoch": 10.950633464394933, + "grad_norm": 0.30534613132476807, + "learning_rate": 0.0006, + "loss": 4.382739067077637, + "step": 788 + }, + { + "epoch": 10.964613368283093, + "grad_norm": 0.35726621747016907, + "learning_rate": 0.0006, + "loss": 4.3765869140625, + "step": 789 + }, + { + "epoch": 10.978593272171254, + "grad_norm": 0.32763028144836426, + "learning_rate": 0.0006, + "loss": 4.391537189483643, + "step": 790 + }, + { + "epoch": 10.992573176059414, + "grad_norm": 0.31811195611953735, + "learning_rate": 0.0006, + "loss": 4.371829032897949, + "step": 791 + }, + { + "epoch": 11.0, + "grad_norm": 0.37317267060279846, + "learning_rate": 0.0006, + "loss": 4.381916522979736, + "step": 792 + }, + { + "epoch": 11.0, + "eval_loss": 4.588687896728516, + "eval_runtime": 44.8041, + "eval_samples_per_second": 54.504, + "eval_steps_per_second": 3.415, + "step": 792 + }, + { + "epoch": 11.013979903888162, + "grad_norm": 0.37882938981056213, + "learning_rate": 0.0006, + "loss": 4.3463640213012695, + "step": 793 + }, + { + "epoch": 11.027959807776321, + "grad_norm": 0.34719496965408325, + "learning_rate": 0.0006, + "loss": 4.329861640930176, + "step": 794 + }, + { + "epoch": 11.041939711664483, + "grad_norm": 0.36161214113235474, + "learning_rate": 0.0006, + "loss": 4.3287835121154785, + "step": 795 + }, + { + "epoch": 11.055919615552643, + "grad_norm": 0.3743649125099182, + "learning_rate": 0.0006, + "loss": 4.334251403808594, + "step": 796 + }, + { + "epoch": 11.069899519440805, + "grad_norm": 0.32266443967819214, + "learning_rate": 0.0006, + "loss": 4.364782810211182, + "step": 797 + }, + { + "epoch": 11.083879423328964, + "grad_norm": 0.27460047602653503, + "learning_rate": 0.0006, + "loss": 4.348380088806152, + "step": 798 + }, + { + "epoch": 11.097859327217126, + "grad_norm": 0.30498892068862915, + "learning_rate": 0.0006, + "loss": 4.347856521606445, + "step": 799 + }, + { + "epoch": 11.111839231105286, + "grad_norm": 0.29740771651268005, + "learning_rate": 0.0006, + "loss": 4.343471050262451, + "step": 800 + }, + { + "epoch": 11.125819134993447, + "grad_norm": 0.3004681169986725, + "learning_rate": 0.0006, + "loss": 4.337590217590332, + "step": 801 + }, + { + "epoch": 11.139799038881607, + "grad_norm": 0.3000192642211914, + "learning_rate": 0.0006, + "loss": 4.349949836730957, + "step": 802 + }, + { + "epoch": 11.153778942769769, + "grad_norm": 0.27461889386177063, + "learning_rate": 0.0006, + "loss": 4.338934898376465, + "step": 803 + }, + { + "epoch": 11.167758846657929, + "grad_norm": 0.2856169641017914, + "learning_rate": 0.0006, + "loss": 4.320754051208496, + "step": 804 + }, + { + "epoch": 11.18173875054609, + "grad_norm": 0.29822713136672974, + "learning_rate": 0.0006, + "loss": 4.357949733734131, + "step": 805 + }, + { + "epoch": 11.19571865443425, + "grad_norm": 0.34061339497566223, + "learning_rate": 0.0006, + "loss": 4.327282905578613, + "step": 806 + }, + { + "epoch": 11.209698558322412, + "grad_norm": 0.3379063010215759, + "learning_rate": 0.0006, + "loss": 4.355471611022949, + "step": 807 + }, + { + "epoch": 11.223678462210572, + "grad_norm": 0.2859216630458832, + "learning_rate": 0.0006, + "loss": 4.352344989776611, + "step": 808 + }, + { + "epoch": 11.237658366098733, + "grad_norm": 0.29522669315338135, + "learning_rate": 0.0006, + "loss": 4.349186897277832, + "step": 809 + }, + { + "epoch": 11.251638269986893, + "grad_norm": 0.273798406124115, + "learning_rate": 0.0006, + "loss": 4.342379570007324, + "step": 810 + }, + { + "epoch": 11.265618173875055, + "grad_norm": 0.25298982858657837, + "learning_rate": 0.0006, + "loss": 4.358835220336914, + "step": 811 + }, + { + "epoch": 11.279598077763215, + "grad_norm": 0.2170463651418686, + "learning_rate": 0.0006, + "loss": 4.3422017097473145, + "step": 812 + }, + { + "epoch": 11.293577981651376, + "grad_norm": 0.24855731427669525, + "learning_rate": 0.0006, + "loss": 4.322849750518799, + "step": 813 + }, + { + "epoch": 11.307557885539538, + "grad_norm": 0.22564345598220825, + "learning_rate": 0.0006, + "loss": 4.316864967346191, + "step": 814 + }, + { + "epoch": 11.321537789427698, + "grad_norm": 0.21532197296619415, + "learning_rate": 0.0006, + "loss": 4.326743125915527, + "step": 815 + }, + { + "epoch": 11.33551769331586, + "grad_norm": 0.20514146983623505, + "learning_rate": 0.0006, + "loss": 4.326531887054443, + "step": 816 + }, + { + "epoch": 11.349497597204019, + "grad_norm": 0.19035090506076813, + "learning_rate": 0.0006, + "loss": 4.318154335021973, + "step": 817 + }, + { + "epoch": 11.36347750109218, + "grad_norm": 0.17889662086963654, + "learning_rate": 0.0006, + "loss": 4.35410213470459, + "step": 818 + }, + { + "epoch": 11.37745740498034, + "grad_norm": 0.20564863085746765, + "learning_rate": 0.0006, + "loss": 4.350226879119873, + "step": 819 + }, + { + "epoch": 11.391437308868502, + "grad_norm": 0.2412603348493576, + "learning_rate": 0.0006, + "loss": 4.325137138366699, + "step": 820 + }, + { + "epoch": 11.405417212756662, + "grad_norm": 0.2603496015071869, + "learning_rate": 0.0006, + "loss": 4.335752487182617, + "step": 821 + }, + { + "epoch": 11.419397116644824, + "grad_norm": 0.2968119978904724, + "learning_rate": 0.0006, + "loss": 4.3317670822143555, + "step": 822 + }, + { + "epoch": 11.433377020532983, + "grad_norm": 0.3280937969684601, + "learning_rate": 0.0006, + "loss": 4.322279453277588, + "step": 823 + }, + { + "epoch": 11.447356924421145, + "grad_norm": 0.3598847985267639, + "learning_rate": 0.0006, + "loss": 4.312255859375, + "step": 824 + }, + { + "epoch": 11.461336828309305, + "grad_norm": 0.3996485471725464, + "learning_rate": 0.0006, + "loss": 4.327103614807129, + "step": 825 + }, + { + "epoch": 11.475316732197467, + "grad_norm": 0.4352041780948639, + "learning_rate": 0.0006, + "loss": 4.368639945983887, + "step": 826 + }, + { + "epoch": 11.489296636085626, + "grad_norm": 0.4451918601989746, + "learning_rate": 0.0006, + "loss": 4.335113048553467, + "step": 827 + }, + { + "epoch": 11.503276539973788, + "grad_norm": 0.4403933584690094, + "learning_rate": 0.0006, + "loss": 4.369889259338379, + "step": 828 + }, + { + "epoch": 11.517256443861948, + "grad_norm": 0.34862443804740906, + "learning_rate": 0.0006, + "loss": 4.316292762756348, + "step": 829 + }, + { + "epoch": 11.53123634775011, + "grad_norm": 0.3240634500980377, + "learning_rate": 0.0006, + "loss": 4.328078746795654, + "step": 830 + }, + { + "epoch": 11.54521625163827, + "grad_norm": 0.2445751428604126, + "learning_rate": 0.0006, + "loss": 4.291940689086914, + "step": 831 + }, + { + "epoch": 11.55919615552643, + "grad_norm": 0.24376554787158966, + "learning_rate": 0.0006, + "loss": 4.339217662811279, + "step": 832 + }, + { + "epoch": 11.57317605941459, + "grad_norm": 0.22419725358486176, + "learning_rate": 0.0006, + "loss": 4.2887468338012695, + "step": 833 + }, + { + "epoch": 11.587155963302752, + "grad_norm": 0.22318261861801147, + "learning_rate": 0.0006, + "loss": 4.298492908477783, + "step": 834 + }, + { + "epoch": 11.601135867190912, + "grad_norm": 0.2357342392206192, + "learning_rate": 0.0006, + "loss": 4.328692436218262, + "step": 835 + }, + { + "epoch": 11.615115771079074, + "grad_norm": 0.25450602173805237, + "learning_rate": 0.0006, + "loss": 4.360058784484863, + "step": 836 + }, + { + "epoch": 11.629095674967235, + "grad_norm": 0.24540965259075165, + "learning_rate": 0.0006, + "loss": 4.311890602111816, + "step": 837 + }, + { + "epoch": 11.643075578855395, + "grad_norm": 0.2535638213157654, + "learning_rate": 0.0006, + "loss": 4.327730178833008, + "step": 838 + }, + { + "epoch": 11.657055482743557, + "grad_norm": 0.23063556849956512, + "learning_rate": 0.0006, + "loss": 4.303299903869629, + "step": 839 + }, + { + "epoch": 11.671035386631717, + "grad_norm": 0.21813632547855377, + "learning_rate": 0.0006, + "loss": 4.315352439880371, + "step": 840 + }, + { + "epoch": 11.685015290519878, + "grad_norm": 0.2170359194278717, + "learning_rate": 0.0006, + "loss": 4.278632164001465, + "step": 841 + }, + { + "epoch": 11.698995194408038, + "grad_norm": 0.21059377491474152, + "learning_rate": 0.0006, + "loss": 4.306049346923828, + "step": 842 + }, + { + "epoch": 11.7129750982962, + "grad_norm": 0.19872888922691345, + "learning_rate": 0.0006, + "loss": 4.3091535568237305, + "step": 843 + }, + { + "epoch": 11.72695500218436, + "grad_norm": 0.20059862732887268, + "learning_rate": 0.0006, + "loss": 4.2884063720703125, + "step": 844 + }, + { + "epoch": 11.740934906072521, + "grad_norm": 0.19952483475208282, + "learning_rate": 0.0006, + "loss": 4.293610572814941, + "step": 845 + }, + { + "epoch": 11.754914809960681, + "grad_norm": 0.19794537127017975, + "learning_rate": 0.0006, + "loss": 4.288822174072266, + "step": 846 + }, + { + "epoch": 11.768894713848843, + "grad_norm": 0.213914692401886, + "learning_rate": 0.0006, + "loss": 4.320849418640137, + "step": 847 + }, + { + "epoch": 11.782874617737003, + "grad_norm": 0.18500955402851105, + "learning_rate": 0.0006, + "loss": 4.29300594329834, + "step": 848 + }, + { + "epoch": 11.796854521625164, + "grad_norm": 0.19446656107902527, + "learning_rate": 0.0006, + "loss": 4.3079352378845215, + "step": 849 + }, + { + "epoch": 11.810834425513324, + "grad_norm": 0.22191768884658813, + "learning_rate": 0.0006, + "loss": 4.295967102050781, + "step": 850 + }, + { + "epoch": 11.824814329401486, + "grad_norm": 0.20748084783554077, + "learning_rate": 0.0006, + "loss": 4.332365989685059, + "step": 851 + }, + { + "epoch": 11.838794233289645, + "grad_norm": 0.20993955433368683, + "learning_rate": 0.0006, + "loss": 4.294618129730225, + "step": 852 + }, + { + "epoch": 11.852774137177807, + "grad_norm": 0.23506952822208405, + "learning_rate": 0.0006, + "loss": 4.313426971435547, + "step": 853 + }, + { + "epoch": 11.866754041065967, + "grad_norm": 0.2379443347454071, + "learning_rate": 0.0006, + "loss": 4.297664642333984, + "step": 854 + }, + { + "epoch": 11.880733944954128, + "grad_norm": 0.2127852737903595, + "learning_rate": 0.0006, + "loss": 4.2807698249816895, + "step": 855 + }, + { + "epoch": 11.89471384884229, + "grad_norm": 0.2125532180070877, + "learning_rate": 0.0006, + "loss": 4.310990333557129, + "step": 856 + }, + { + "epoch": 11.90869375273045, + "grad_norm": 0.1996062994003296, + "learning_rate": 0.0006, + "loss": 4.253237724304199, + "step": 857 + }, + { + "epoch": 11.922673656618612, + "grad_norm": 0.20747603476047516, + "learning_rate": 0.0006, + "loss": 4.294193267822266, + "step": 858 + }, + { + "epoch": 11.936653560506771, + "grad_norm": 0.24082425236701965, + "learning_rate": 0.0006, + "loss": 4.269967079162598, + "step": 859 + }, + { + "epoch": 11.950633464394933, + "grad_norm": 0.28993573784828186, + "learning_rate": 0.0006, + "loss": 4.294550895690918, + "step": 860 + }, + { + "epoch": 11.964613368283093, + "grad_norm": 0.29576948285102844, + "learning_rate": 0.0006, + "loss": 4.3188252449035645, + "step": 861 + }, + { + "epoch": 11.978593272171254, + "grad_norm": 0.2754935026168823, + "learning_rate": 0.0006, + "loss": 4.312817573547363, + "step": 862 + }, + { + "epoch": 11.992573176059414, + "grad_norm": 0.3062523305416107, + "learning_rate": 0.0006, + "loss": 4.288214683532715, + "step": 863 + }, + { + "epoch": 12.0, + "grad_norm": 0.3367644250392914, + "learning_rate": 0.0006, + "loss": 4.314888954162598, + "step": 864 + }, + { + "epoch": 12.0, + "eval_loss": 4.516861438751221, + "eval_runtime": 44.2584, + "eval_samples_per_second": 55.176, + "eval_steps_per_second": 3.457, + "step": 864 + }, + { + "epoch": 12.013979903888162, + "grad_norm": 0.2976512014865875, + "learning_rate": 0.0006, + "loss": 4.278797149658203, + "step": 865 + }, + { + "epoch": 12.027959807776321, + "grad_norm": 0.32217127084732056, + "learning_rate": 0.0006, + "loss": 4.2823615074157715, + "step": 866 + }, + { + "epoch": 12.041939711664483, + "grad_norm": 0.31538400053977966, + "learning_rate": 0.0006, + "loss": 4.252805709838867, + "step": 867 + }, + { + "epoch": 12.055919615552643, + "grad_norm": 0.3501375913619995, + "learning_rate": 0.0006, + "loss": 4.276501655578613, + "step": 868 + }, + { + "epoch": 12.069899519440805, + "grad_norm": 0.3452056646347046, + "learning_rate": 0.0006, + "loss": 4.275739669799805, + "step": 869 + }, + { + "epoch": 12.083879423328964, + "grad_norm": 0.36963316798210144, + "learning_rate": 0.0006, + "loss": 4.3215227127075195, + "step": 870 + }, + { + "epoch": 12.097859327217126, + "grad_norm": 0.41605016589164734, + "learning_rate": 0.0006, + "loss": 4.28739595413208, + "step": 871 + }, + { + "epoch": 12.111839231105286, + "grad_norm": 0.37700653076171875, + "learning_rate": 0.0006, + "loss": 4.291154861450195, + "step": 872 + }, + { + "epoch": 12.125819134993447, + "grad_norm": 0.3194253444671631, + "learning_rate": 0.0006, + "loss": 4.259326934814453, + "step": 873 + }, + { + "epoch": 12.139799038881607, + "grad_norm": 0.31770631670951843, + "learning_rate": 0.0006, + "loss": 4.270082473754883, + "step": 874 + }, + { + "epoch": 12.153778942769769, + "grad_norm": 0.3748120069503784, + "learning_rate": 0.0006, + "loss": 4.2727274894714355, + "step": 875 + }, + { + "epoch": 12.167758846657929, + "grad_norm": 0.3821348547935486, + "learning_rate": 0.0006, + "loss": 4.2848286628723145, + "step": 876 + }, + { + "epoch": 12.18173875054609, + "grad_norm": 0.31894201040267944, + "learning_rate": 0.0006, + "loss": 4.289551258087158, + "step": 877 + }, + { + "epoch": 12.19571865443425, + "grad_norm": 0.2695826292037964, + "learning_rate": 0.0006, + "loss": 4.2797346115112305, + "step": 878 + }, + { + "epoch": 12.209698558322412, + "grad_norm": 0.23966269195079803, + "learning_rate": 0.0006, + "loss": 4.24021577835083, + "step": 879 + }, + { + "epoch": 12.223678462210572, + "grad_norm": 0.24342599511146545, + "learning_rate": 0.0006, + "loss": 4.277721881866455, + "step": 880 + }, + { + "epoch": 12.237658366098733, + "grad_norm": 0.2522958815097809, + "learning_rate": 0.0006, + "loss": 4.263946533203125, + "step": 881 + }, + { + "epoch": 12.251638269986893, + "grad_norm": 0.2708299458026886, + "learning_rate": 0.0006, + "loss": 4.274540901184082, + "step": 882 + }, + { + "epoch": 12.265618173875055, + "grad_norm": 0.2978788912296295, + "learning_rate": 0.0006, + "loss": 4.2674970626831055, + "step": 883 + }, + { + "epoch": 12.279598077763215, + "grad_norm": 0.2898774743080139, + "learning_rate": 0.0006, + "loss": 4.235060691833496, + "step": 884 + }, + { + "epoch": 12.293577981651376, + "grad_norm": 0.27941837906837463, + "learning_rate": 0.0006, + "loss": 4.284140586853027, + "step": 885 + }, + { + "epoch": 12.307557885539538, + "grad_norm": 0.25050559639930725, + "learning_rate": 0.0006, + "loss": 4.270134925842285, + "step": 886 + }, + { + "epoch": 12.321537789427698, + "grad_norm": 0.21867156028747559, + "learning_rate": 0.0006, + "loss": 4.241571426391602, + "step": 887 + }, + { + "epoch": 12.33551769331586, + "grad_norm": 0.24735847115516663, + "learning_rate": 0.0006, + "loss": 4.253087997436523, + "step": 888 + }, + { + "epoch": 12.349497597204019, + "grad_norm": 0.23069104552268982, + "learning_rate": 0.0006, + "loss": 4.258606910705566, + "step": 889 + }, + { + "epoch": 12.36347750109218, + "grad_norm": 0.2594369947910309, + "learning_rate": 0.0006, + "loss": 4.307351112365723, + "step": 890 + }, + { + "epoch": 12.37745740498034, + "grad_norm": 0.25349098443984985, + "learning_rate": 0.0006, + "loss": 4.264268398284912, + "step": 891 + }, + { + "epoch": 12.391437308868502, + "grad_norm": 0.2550840675830841, + "learning_rate": 0.0006, + "loss": 4.247092247009277, + "step": 892 + }, + { + "epoch": 12.405417212756662, + "grad_norm": 0.2107602059841156, + "learning_rate": 0.0006, + "loss": 4.240527153015137, + "step": 893 + }, + { + "epoch": 12.419397116644824, + "grad_norm": 0.2025548368692398, + "learning_rate": 0.0006, + "loss": 4.244686126708984, + "step": 894 + }, + { + "epoch": 12.433377020532983, + "grad_norm": 0.22061701118946075, + "learning_rate": 0.0006, + "loss": 4.233231544494629, + "step": 895 + }, + { + "epoch": 12.447356924421145, + "grad_norm": 0.19503085315227509, + "learning_rate": 0.0006, + "loss": 4.23851203918457, + "step": 896 + }, + { + "epoch": 12.461336828309305, + "grad_norm": 0.19313643872737885, + "learning_rate": 0.0006, + "loss": 4.190886497497559, + "step": 897 + }, + { + "epoch": 12.475316732197467, + "grad_norm": 0.21094176173210144, + "learning_rate": 0.0006, + "loss": 4.277888298034668, + "step": 898 + }, + { + "epoch": 12.489296636085626, + "grad_norm": 0.1980651170015335, + "learning_rate": 0.0006, + "loss": 4.251066207885742, + "step": 899 + }, + { + "epoch": 12.503276539973788, + "grad_norm": 0.179737389087677, + "learning_rate": 0.0006, + "loss": 4.194703102111816, + "step": 900 + }, + { + "epoch": 12.517256443861948, + "grad_norm": 0.19069281220436096, + "learning_rate": 0.0006, + "loss": 4.242412567138672, + "step": 901 + }, + { + "epoch": 12.53123634775011, + "grad_norm": 0.191154345870018, + "learning_rate": 0.0006, + "loss": 4.2432780265808105, + "step": 902 + }, + { + "epoch": 12.54521625163827, + "grad_norm": 0.19760103523731232, + "learning_rate": 0.0006, + "loss": 4.23294734954834, + "step": 903 + }, + { + "epoch": 12.55919615552643, + "grad_norm": 0.19982324540615082, + "learning_rate": 0.0006, + "loss": 4.249764442443848, + "step": 904 + }, + { + "epoch": 12.57317605941459, + "grad_norm": 0.1986108422279358, + "learning_rate": 0.0006, + "loss": 4.213435649871826, + "step": 905 + }, + { + "epoch": 12.587155963302752, + "grad_norm": 0.19727319478988647, + "learning_rate": 0.0006, + "loss": 4.247962951660156, + "step": 906 + }, + { + "epoch": 12.601135867190912, + "grad_norm": 0.23404482007026672, + "learning_rate": 0.0006, + "loss": 4.237396240234375, + "step": 907 + }, + { + "epoch": 12.615115771079074, + "grad_norm": 0.21136441826820374, + "learning_rate": 0.0006, + "loss": 4.236040115356445, + "step": 908 + }, + { + "epoch": 12.629095674967235, + "grad_norm": 0.2209048718214035, + "learning_rate": 0.0006, + "loss": 4.234212875366211, + "step": 909 + }, + { + "epoch": 12.643075578855395, + "grad_norm": 0.22120307385921478, + "learning_rate": 0.0006, + "loss": 4.2711076736450195, + "step": 910 + }, + { + "epoch": 12.657055482743557, + "grad_norm": 0.22733066976070404, + "learning_rate": 0.0006, + "loss": 4.231651306152344, + "step": 911 + }, + { + "epoch": 12.671035386631717, + "grad_norm": 0.2435602843761444, + "learning_rate": 0.0006, + "loss": 4.249372482299805, + "step": 912 + }, + { + "epoch": 12.685015290519878, + "grad_norm": 0.28881654143333435, + "learning_rate": 0.0006, + "loss": 4.2626051902771, + "step": 913 + }, + { + "epoch": 12.698995194408038, + "grad_norm": 0.3211199641227722, + "learning_rate": 0.0006, + "loss": 4.254220485687256, + "step": 914 + }, + { + "epoch": 12.7129750982962, + "grad_norm": 0.3118100166320801, + "learning_rate": 0.0006, + "loss": 4.233747959136963, + "step": 915 + }, + { + "epoch": 12.72695500218436, + "grad_norm": 0.33411866426467896, + "learning_rate": 0.0006, + "loss": 4.270386219024658, + "step": 916 + }, + { + "epoch": 12.740934906072521, + "grad_norm": 0.2968253195285797, + "learning_rate": 0.0006, + "loss": 4.242254257202148, + "step": 917 + }, + { + "epoch": 12.754914809960681, + "grad_norm": 0.2959132194519043, + "learning_rate": 0.0006, + "loss": 4.232100486755371, + "step": 918 + }, + { + "epoch": 12.768894713848843, + "grad_norm": 0.2729283273220062, + "learning_rate": 0.0006, + "loss": 4.233869552612305, + "step": 919 + }, + { + "epoch": 12.782874617737003, + "grad_norm": 0.2669033408164978, + "learning_rate": 0.0006, + "loss": 4.261008262634277, + "step": 920 + }, + { + "epoch": 12.796854521625164, + "grad_norm": 0.2738507091999054, + "learning_rate": 0.0006, + "loss": 4.2286763191223145, + "step": 921 + }, + { + "epoch": 12.810834425513324, + "grad_norm": 0.29105183482170105, + "learning_rate": 0.0006, + "loss": 4.281410217285156, + "step": 922 + }, + { + "epoch": 12.824814329401486, + "grad_norm": 0.31330201029777527, + "learning_rate": 0.0006, + "loss": 4.264181613922119, + "step": 923 + }, + { + "epoch": 12.838794233289645, + "grad_norm": 0.31324025988578796, + "learning_rate": 0.0006, + "loss": 4.250385284423828, + "step": 924 + }, + { + "epoch": 12.852774137177807, + "grad_norm": 0.2727925181388855, + "learning_rate": 0.0006, + "loss": 4.24821138381958, + "step": 925 + }, + { + "epoch": 12.866754041065967, + "grad_norm": 0.27350082993507385, + "learning_rate": 0.0006, + "loss": 4.230215072631836, + "step": 926 + }, + { + "epoch": 12.880733944954128, + "grad_norm": 0.2269950658082962, + "learning_rate": 0.0006, + "loss": 4.210305213928223, + "step": 927 + }, + { + "epoch": 12.89471384884229, + "grad_norm": 0.24667619168758392, + "learning_rate": 0.0006, + "loss": 4.239969253540039, + "step": 928 + }, + { + "epoch": 12.90869375273045, + "grad_norm": 0.22510501742362976, + "learning_rate": 0.0006, + "loss": 4.192750930786133, + "step": 929 + }, + { + "epoch": 12.922673656618612, + "grad_norm": 0.22887611389160156, + "learning_rate": 0.0006, + "loss": 4.264463424682617, + "step": 930 + }, + { + "epoch": 12.936653560506771, + "grad_norm": 0.22195978462696075, + "learning_rate": 0.0006, + "loss": 4.205256938934326, + "step": 931 + }, + { + "epoch": 12.950633464394933, + "grad_norm": 0.23184578120708466, + "learning_rate": 0.0006, + "loss": 4.214578628540039, + "step": 932 + }, + { + "epoch": 12.964613368283093, + "grad_norm": 0.2186676561832428, + "learning_rate": 0.0006, + "loss": 4.227711200714111, + "step": 933 + }, + { + "epoch": 12.978593272171254, + "grad_norm": 0.2160426527261734, + "learning_rate": 0.0006, + "loss": 4.221796989440918, + "step": 934 + }, + { + "epoch": 12.992573176059414, + "grad_norm": 0.21562792360782623, + "learning_rate": 0.0006, + "loss": 4.21957540512085, + "step": 935 + }, + { + "epoch": 13.0, + "grad_norm": 0.22538058459758759, + "learning_rate": 0.0006, + "loss": 4.2353973388671875, + "step": 936 + }, + { + "epoch": 13.0, + "eval_loss": 4.426600933074951, + "eval_runtime": 44.8138, + "eval_samples_per_second": 54.492, + "eval_steps_per_second": 3.414, + "step": 936 + }, + { + "epoch": 13.013979903888162, + "grad_norm": 0.24888049066066742, + "learning_rate": 0.0006, + "loss": 4.18648624420166, + "step": 937 + }, + { + "epoch": 13.027959807776321, + "grad_norm": 0.28330180048942566, + "learning_rate": 0.0006, + "loss": 4.188892364501953, + "step": 938 + }, + { + "epoch": 13.041939711664483, + "grad_norm": 0.31152188777923584, + "learning_rate": 0.0006, + "loss": 4.2053399085998535, + "step": 939 + }, + { + "epoch": 13.055919615552643, + "grad_norm": 0.2842433452606201, + "learning_rate": 0.0006, + "loss": 4.191902160644531, + "step": 940 + }, + { + "epoch": 13.069899519440805, + "grad_norm": 0.23664532601833344, + "learning_rate": 0.0006, + "loss": 4.1831865310668945, + "step": 941 + }, + { + "epoch": 13.083879423328964, + "grad_norm": 0.24204140901565552, + "learning_rate": 0.0006, + "loss": 4.202641487121582, + "step": 942 + }, + { + "epoch": 13.097859327217126, + "grad_norm": 0.235311359167099, + "learning_rate": 0.0006, + "loss": 4.174511909484863, + "step": 943 + }, + { + "epoch": 13.111839231105286, + "grad_norm": 0.27127715945243835, + "learning_rate": 0.0006, + "loss": 4.201844215393066, + "step": 944 + }, + { + "epoch": 13.125819134993447, + "grad_norm": 0.2722373604774475, + "learning_rate": 0.0006, + "loss": 4.157383918762207, + "step": 945 + }, + { + "epoch": 13.139799038881607, + "grad_norm": 0.25446659326553345, + "learning_rate": 0.0006, + "loss": 4.221236228942871, + "step": 946 + }, + { + "epoch": 13.153778942769769, + "grad_norm": 0.273017019033432, + "learning_rate": 0.0006, + "loss": 4.195512771606445, + "step": 947 + }, + { + "epoch": 13.167758846657929, + "grad_norm": 0.24766312539577484, + "learning_rate": 0.0006, + "loss": 4.220959663391113, + "step": 948 + }, + { + "epoch": 13.18173875054609, + "grad_norm": 0.24636317789554596, + "learning_rate": 0.0006, + "loss": 4.214302062988281, + "step": 949 + }, + { + "epoch": 13.19571865443425, + "grad_norm": 0.3177756667137146, + "learning_rate": 0.0006, + "loss": 4.213500022888184, + "step": 950 + }, + { + "epoch": 13.209698558322412, + "grad_norm": 0.44579195976257324, + "learning_rate": 0.0006, + "loss": 4.227644920349121, + "step": 951 + }, + { + "epoch": 13.223678462210572, + "grad_norm": 0.4217414855957031, + "learning_rate": 0.0006, + "loss": 4.180937767028809, + "step": 952 + }, + { + "epoch": 13.237658366098733, + "grad_norm": 0.30148059129714966, + "learning_rate": 0.0006, + "loss": 4.207760810852051, + "step": 953 + }, + { + "epoch": 13.251638269986893, + "grad_norm": 0.3192492127418518, + "learning_rate": 0.0006, + "loss": 4.197999000549316, + "step": 954 + }, + { + "epoch": 13.265618173875055, + "grad_norm": 0.37334588170051575, + "learning_rate": 0.0006, + "loss": 4.208001136779785, + "step": 955 + }, + { + "epoch": 13.279598077763215, + "grad_norm": 0.4059637784957886, + "learning_rate": 0.0006, + "loss": 4.211322784423828, + "step": 956 + }, + { + "epoch": 13.293577981651376, + "grad_norm": 0.3389599323272705, + "learning_rate": 0.0006, + "loss": 4.204404354095459, + "step": 957 + }, + { + "epoch": 13.307557885539538, + "grad_norm": 0.2675766050815582, + "learning_rate": 0.0006, + "loss": 4.245941162109375, + "step": 958 + }, + { + "epoch": 13.321537789427698, + "grad_norm": 0.2730264365673065, + "learning_rate": 0.0006, + "loss": 4.2221221923828125, + "step": 959 + }, + { + "epoch": 13.33551769331586, + "grad_norm": 0.26458224654197693, + "learning_rate": 0.0006, + "loss": 4.205596923828125, + "step": 960 + }, + { + "epoch": 13.349497597204019, + "grad_norm": 0.2872551381587982, + "learning_rate": 0.0006, + "loss": 4.196977615356445, + "step": 961 + }, + { + "epoch": 13.36347750109218, + "grad_norm": 0.2954796850681305, + "learning_rate": 0.0006, + "loss": 4.202796936035156, + "step": 962 + }, + { + "epoch": 13.37745740498034, + "grad_norm": 0.2619425654411316, + "learning_rate": 0.0006, + "loss": 4.196845054626465, + "step": 963 + }, + { + "epoch": 13.391437308868502, + "grad_norm": 0.30088478326797485, + "learning_rate": 0.0006, + "loss": 4.219697952270508, + "step": 964 + }, + { + "epoch": 13.405417212756662, + "grad_norm": 0.30388689041137695, + "learning_rate": 0.0006, + "loss": 4.187566757202148, + "step": 965 + }, + { + "epoch": 13.419397116644824, + "grad_norm": 0.27918127179145813, + "learning_rate": 0.0006, + "loss": 4.223600387573242, + "step": 966 + }, + { + "epoch": 13.433377020532983, + "grad_norm": 0.27634528279304504, + "learning_rate": 0.0006, + "loss": 4.165332317352295, + "step": 967 + }, + { + "epoch": 13.447356924421145, + "grad_norm": 0.28830021619796753, + "learning_rate": 0.0006, + "loss": 4.204029560089111, + "step": 968 + }, + { + "epoch": 13.461336828309305, + "grad_norm": 0.29220864176750183, + "learning_rate": 0.0006, + "loss": 4.218057155609131, + "step": 969 + }, + { + "epoch": 13.475316732197467, + "grad_norm": 0.3089624345302582, + "learning_rate": 0.0006, + "loss": 4.200654983520508, + "step": 970 + }, + { + "epoch": 13.489296636085626, + "grad_norm": 0.36479851603507996, + "learning_rate": 0.0006, + "loss": 4.182811737060547, + "step": 971 + }, + { + "epoch": 13.503276539973788, + "grad_norm": 0.37561097741127014, + "learning_rate": 0.0006, + "loss": 4.190266132354736, + "step": 972 + }, + { + "epoch": 13.517256443861948, + "grad_norm": 0.3263583183288574, + "learning_rate": 0.0006, + "loss": 4.214815616607666, + "step": 973 + }, + { + "epoch": 13.53123634775011, + "grad_norm": 0.21552999317646027, + "learning_rate": 0.0006, + "loss": 4.171380043029785, + "step": 974 + }, + { + "epoch": 13.54521625163827, + "grad_norm": 0.247328519821167, + "learning_rate": 0.0006, + "loss": 4.175377368927002, + "step": 975 + }, + { + "epoch": 13.55919615552643, + "grad_norm": 0.23740540444850922, + "learning_rate": 0.0006, + "loss": 4.212357997894287, + "step": 976 + }, + { + "epoch": 13.57317605941459, + "grad_norm": 0.21533876657485962, + "learning_rate": 0.0006, + "loss": 4.203285217285156, + "step": 977 + }, + { + "epoch": 13.587155963302752, + "grad_norm": 0.21462024748325348, + "learning_rate": 0.0006, + "loss": 4.178012371063232, + "step": 978 + }, + { + "epoch": 13.601135867190912, + "grad_norm": 0.2279169261455536, + "learning_rate": 0.0006, + "loss": 4.193912982940674, + "step": 979 + }, + { + "epoch": 13.615115771079074, + "grad_norm": 0.2202417552471161, + "learning_rate": 0.0006, + "loss": 4.167629718780518, + "step": 980 + }, + { + "epoch": 13.629095674967235, + "grad_norm": 0.20586472749710083, + "learning_rate": 0.0006, + "loss": 4.159290313720703, + "step": 981 + }, + { + "epoch": 13.643075578855395, + "grad_norm": 0.20200690627098083, + "learning_rate": 0.0006, + "loss": 4.210315227508545, + "step": 982 + }, + { + "epoch": 13.657055482743557, + "grad_norm": 0.21710257232189178, + "learning_rate": 0.0006, + "loss": 4.21730375289917, + "step": 983 + }, + { + "epoch": 13.671035386631717, + "grad_norm": 0.22058045864105225, + "learning_rate": 0.0006, + "loss": 4.1996073722839355, + "step": 984 + }, + { + "epoch": 13.685015290519878, + "grad_norm": 0.21549592912197113, + "learning_rate": 0.0006, + "loss": 4.209203720092773, + "step": 985 + }, + { + "epoch": 13.698995194408038, + "grad_norm": 0.22274717688560486, + "learning_rate": 0.0006, + "loss": 4.220660209655762, + "step": 986 + }, + { + "epoch": 13.7129750982962, + "grad_norm": 0.22791637480258942, + "learning_rate": 0.0006, + "loss": 4.158679962158203, + "step": 987 + }, + { + "epoch": 13.72695500218436, + "grad_norm": 0.216218963265419, + "learning_rate": 0.0006, + "loss": 4.188124656677246, + "step": 988 + }, + { + "epoch": 13.740934906072521, + "grad_norm": 0.19149383902549744, + "learning_rate": 0.0006, + "loss": 4.181729316711426, + "step": 989 + }, + { + "epoch": 13.754914809960681, + "grad_norm": 0.18964019417762756, + "learning_rate": 0.0006, + "loss": 4.184767246246338, + "step": 990 + }, + { + "epoch": 13.768894713848843, + "grad_norm": 0.1778000295162201, + "learning_rate": 0.0006, + "loss": 4.1802263259887695, + "step": 991 + }, + { + "epoch": 13.782874617737003, + "grad_norm": 0.18277616798877716, + "learning_rate": 0.0006, + "loss": 4.1657867431640625, + "step": 992 + }, + { + "epoch": 13.796854521625164, + "grad_norm": 0.18610034883022308, + "learning_rate": 0.0006, + "loss": 4.156744956970215, + "step": 993 + }, + { + "epoch": 13.810834425513324, + "grad_norm": 0.19332963228225708, + "learning_rate": 0.0006, + "loss": 4.143558502197266, + "step": 994 + }, + { + "epoch": 13.824814329401486, + "grad_norm": 0.19758112728595734, + "learning_rate": 0.0006, + "loss": 4.195793151855469, + "step": 995 + }, + { + "epoch": 13.838794233289645, + "grad_norm": 0.1933647245168686, + "learning_rate": 0.0006, + "loss": 4.169734954833984, + "step": 996 + }, + { + "epoch": 13.852774137177807, + "grad_norm": 0.2362028956413269, + "learning_rate": 0.0006, + "loss": 4.175025939941406, + "step": 997 + }, + { + "epoch": 13.866754041065967, + "grad_norm": 0.2465490996837616, + "learning_rate": 0.0006, + "loss": 4.173909664154053, + "step": 998 + }, + { + "epoch": 13.880733944954128, + "grad_norm": 0.23449952900409698, + "learning_rate": 0.0006, + "loss": 4.173429489135742, + "step": 999 + }, + { + "epoch": 13.89471384884229, + "grad_norm": 0.2282160222530365, + "learning_rate": 0.0006, + "loss": 4.158538341522217, + "step": 1000 + }, + { + "epoch": 13.90869375273045, + "grad_norm": 0.21066738665103912, + "learning_rate": 0.0006, + "loss": 4.171584129333496, + "step": 1001 + }, + { + "epoch": 13.922673656618612, + "grad_norm": 0.18787573277950287, + "learning_rate": 0.0006, + "loss": 4.1837544441223145, + "step": 1002 + }, + { + "epoch": 13.936653560506771, + "grad_norm": 0.2001059353351593, + "learning_rate": 0.0006, + "loss": 4.160369873046875, + "step": 1003 + }, + { + "epoch": 13.950633464394933, + "grad_norm": 0.21644988656044006, + "learning_rate": 0.0006, + "loss": 4.221372604370117, + "step": 1004 + }, + { + "epoch": 13.964613368283093, + "grad_norm": 0.22083887457847595, + "learning_rate": 0.0006, + "loss": 4.149261474609375, + "step": 1005 + }, + { + "epoch": 13.978593272171254, + "grad_norm": 0.2201409637928009, + "learning_rate": 0.0006, + "loss": 4.192010879516602, + "step": 1006 + }, + { + "epoch": 13.992573176059414, + "grad_norm": 0.18888601660728455, + "learning_rate": 0.0006, + "loss": 4.17539119720459, + "step": 1007 + }, + { + "epoch": 14.0, + "grad_norm": 0.2073872834444046, + "learning_rate": 0.0006, + "loss": 4.145265579223633, + "step": 1008 + }, + { + "epoch": 14.0, + "eval_loss": 4.36876106262207, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 1008 + }, + { + "epoch": 14.013979903888162, + "grad_norm": 0.20773135125637054, + "learning_rate": 0.0006, + "loss": 4.132615089416504, + "step": 1009 + }, + { + "epoch": 14.027959807776321, + "grad_norm": 0.22409620881080627, + "learning_rate": 0.0006, + "loss": 4.172839164733887, + "step": 1010 + }, + { + "epoch": 14.041939711664483, + "grad_norm": 0.24046066403388977, + "learning_rate": 0.0006, + "loss": 4.126678943634033, + "step": 1011 + }, + { + "epoch": 14.055919615552643, + "grad_norm": 0.29185160994529724, + "learning_rate": 0.0006, + "loss": 4.177952766418457, + "step": 1012 + }, + { + "epoch": 14.069899519440805, + "grad_norm": 0.2984033226966858, + "learning_rate": 0.0006, + "loss": 4.155030250549316, + "step": 1013 + }, + { + "epoch": 14.083879423328964, + "grad_norm": 0.30262473225593567, + "learning_rate": 0.0006, + "loss": 4.145394325256348, + "step": 1014 + }, + { + "epoch": 14.097859327217126, + "grad_norm": 0.3278133273124695, + "learning_rate": 0.0006, + "loss": 4.172739028930664, + "step": 1015 + }, + { + "epoch": 14.111839231105286, + "grad_norm": 0.3285452425479889, + "learning_rate": 0.0006, + "loss": 4.153196334838867, + "step": 1016 + }, + { + "epoch": 14.125819134993447, + "grad_norm": 0.33912697434425354, + "learning_rate": 0.0006, + "loss": 4.098162651062012, + "step": 1017 + }, + { + "epoch": 14.139799038881607, + "grad_norm": 0.32080814242362976, + "learning_rate": 0.0006, + "loss": 4.157135009765625, + "step": 1018 + }, + { + "epoch": 14.153778942769769, + "grad_norm": 0.31288477778434753, + "learning_rate": 0.0006, + "loss": 4.142683029174805, + "step": 1019 + }, + { + "epoch": 14.167758846657929, + "grad_norm": 0.350289523601532, + "learning_rate": 0.0006, + "loss": 4.134700775146484, + "step": 1020 + }, + { + "epoch": 14.18173875054609, + "grad_norm": 0.34274575114250183, + "learning_rate": 0.0006, + "loss": 4.1578569412231445, + "step": 1021 + }, + { + "epoch": 14.19571865443425, + "grad_norm": 0.2843035161495209, + "learning_rate": 0.0006, + "loss": 4.13760232925415, + "step": 1022 + }, + { + "epoch": 14.209698558322412, + "grad_norm": 0.28235161304473877, + "learning_rate": 0.0006, + "loss": 4.1492462158203125, + "step": 1023 + }, + { + "epoch": 14.223678462210572, + "grad_norm": 0.24407248198986053, + "learning_rate": 0.0006, + "loss": 4.144372463226318, + "step": 1024 + }, + { + "epoch": 14.237658366098733, + "grad_norm": 0.2489742934703827, + "learning_rate": 0.0006, + "loss": 4.137950897216797, + "step": 1025 + }, + { + "epoch": 14.251638269986893, + "grad_norm": 0.26035651564598083, + "learning_rate": 0.0006, + "loss": 4.144070625305176, + "step": 1026 + }, + { + "epoch": 14.265618173875055, + "grad_norm": 0.2726516127586365, + "learning_rate": 0.0006, + "loss": 4.145204067230225, + "step": 1027 + }, + { + "epoch": 14.279598077763215, + "grad_norm": 0.2723483443260193, + "learning_rate": 0.0006, + "loss": 4.118407249450684, + "step": 1028 + }, + { + "epoch": 14.293577981651376, + "grad_norm": 0.27476269006729126, + "learning_rate": 0.0006, + "loss": 4.111325263977051, + "step": 1029 + }, + { + "epoch": 14.307557885539538, + "grad_norm": 0.26202502846717834, + "learning_rate": 0.0006, + "loss": 4.122248649597168, + "step": 1030 + }, + { + "epoch": 14.321537789427698, + "grad_norm": 0.2472032904624939, + "learning_rate": 0.0006, + "loss": 4.157790184020996, + "step": 1031 + }, + { + "epoch": 14.33551769331586, + "grad_norm": 0.2518343925476074, + "learning_rate": 0.0006, + "loss": 4.109132766723633, + "step": 1032 + }, + { + "epoch": 14.349497597204019, + "grad_norm": 0.2652401924133301, + "learning_rate": 0.0006, + "loss": 4.144079685211182, + "step": 1033 + }, + { + "epoch": 14.36347750109218, + "grad_norm": 0.2356770783662796, + "learning_rate": 0.0006, + "loss": 4.128426551818848, + "step": 1034 + }, + { + "epoch": 14.37745740498034, + "grad_norm": 0.2164214551448822, + "learning_rate": 0.0006, + "loss": 4.1644392013549805, + "step": 1035 + }, + { + "epoch": 14.391437308868502, + "grad_norm": 0.22383111715316772, + "learning_rate": 0.0006, + "loss": 4.165862083435059, + "step": 1036 + }, + { + "epoch": 14.405417212756662, + "grad_norm": 0.23152419924736023, + "learning_rate": 0.0006, + "loss": 4.140036582946777, + "step": 1037 + }, + { + "epoch": 14.419397116644824, + "grad_norm": 0.2387741357088089, + "learning_rate": 0.0006, + "loss": 4.130461692810059, + "step": 1038 + }, + { + "epoch": 14.433377020532983, + "grad_norm": 0.24018129706382751, + "learning_rate": 0.0006, + "loss": 4.148482322692871, + "step": 1039 + }, + { + "epoch": 14.447356924421145, + "grad_norm": 0.25487351417541504, + "learning_rate": 0.0006, + "loss": 4.158121109008789, + "step": 1040 + }, + { + "epoch": 14.461336828309305, + "grad_norm": 0.28220096230506897, + "learning_rate": 0.0006, + "loss": 4.160198211669922, + "step": 1041 + }, + { + "epoch": 14.475316732197467, + "grad_norm": 0.2574434280395508, + "learning_rate": 0.0006, + "loss": 4.168512344360352, + "step": 1042 + }, + { + "epoch": 14.489296636085626, + "grad_norm": 0.22569820284843445, + "learning_rate": 0.0006, + "loss": 4.1595001220703125, + "step": 1043 + }, + { + "epoch": 14.503276539973788, + "grad_norm": 0.2473423182964325, + "learning_rate": 0.0006, + "loss": 4.084580898284912, + "step": 1044 + }, + { + "epoch": 14.517256443861948, + "grad_norm": 0.24281060695648193, + "learning_rate": 0.0006, + "loss": 4.139714241027832, + "step": 1045 + }, + { + "epoch": 14.53123634775011, + "grad_norm": 0.24691344797611237, + "learning_rate": 0.0006, + "loss": 4.115398406982422, + "step": 1046 + }, + { + "epoch": 14.54521625163827, + "grad_norm": 0.2583645284175873, + "learning_rate": 0.0006, + "loss": 4.142148494720459, + "step": 1047 + }, + { + "epoch": 14.55919615552643, + "grad_norm": 0.23258574306964874, + "learning_rate": 0.0006, + "loss": 4.16251277923584, + "step": 1048 + }, + { + "epoch": 14.57317605941459, + "grad_norm": 0.22103039920330048, + "learning_rate": 0.0006, + "loss": 4.1308441162109375, + "step": 1049 + }, + { + "epoch": 14.587155963302752, + "grad_norm": 0.23713579773902893, + "learning_rate": 0.0006, + "loss": 4.1565985679626465, + "step": 1050 + }, + { + "epoch": 14.601135867190912, + "grad_norm": 0.24406634271144867, + "learning_rate": 0.0006, + "loss": 4.14628267288208, + "step": 1051 + }, + { + "epoch": 14.615115771079074, + "grad_norm": 0.26821228861808777, + "learning_rate": 0.0006, + "loss": 4.138063430786133, + "step": 1052 + }, + { + "epoch": 14.629095674967235, + "grad_norm": 0.25483864545822144, + "learning_rate": 0.0006, + "loss": 4.1311163902282715, + "step": 1053 + }, + { + "epoch": 14.643075578855395, + "grad_norm": 0.23937982320785522, + "learning_rate": 0.0006, + "loss": 4.150882244110107, + "step": 1054 + }, + { + "epoch": 14.657055482743557, + "grad_norm": 0.21896475553512573, + "learning_rate": 0.0006, + "loss": 4.114015102386475, + "step": 1055 + }, + { + "epoch": 14.671035386631717, + "grad_norm": 0.20821231603622437, + "learning_rate": 0.0006, + "loss": 4.139034271240234, + "step": 1056 + }, + { + "epoch": 14.685015290519878, + "grad_norm": 0.1978551596403122, + "learning_rate": 0.0006, + "loss": 4.1810503005981445, + "step": 1057 + }, + { + "epoch": 14.698995194408038, + "grad_norm": 0.1945771872997284, + "learning_rate": 0.0006, + "loss": 4.120734214782715, + "step": 1058 + }, + { + "epoch": 14.7129750982962, + "grad_norm": 0.19518673419952393, + "learning_rate": 0.0006, + "loss": 4.14264440536499, + "step": 1059 + }, + { + "epoch": 14.72695500218436, + "grad_norm": 0.202596515417099, + "learning_rate": 0.0006, + "loss": 4.151649475097656, + "step": 1060 + }, + { + "epoch": 14.740934906072521, + "grad_norm": 0.1904762089252472, + "learning_rate": 0.0006, + "loss": 4.127899169921875, + "step": 1061 + }, + { + "epoch": 14.754914809960681, + "grad_norm": 0.20685508847236633, + "learning_rate": 0.0006, + "loss": 4.093445777893066, + "step": 1062 + }, + { + "epoch": 14.768894713848843, + "grad_norm": 0.22678329050540924, + "learning_rate": 0.0006, + "loss": 4.132084369659424, + "step": 1063 + }, + { + "epoch": 14.782874617737003, + "grad_norm": 0.24631841480731964, + "learning_rate": 0.0006, + "loss": 4.154788970947266, + "step": 1064 + }, + { + "epoch": 14.796854521625164, + "grad_norm": 0.24445782601833344, + "learning_rate": 0.0006, + "loss": 4.144735336303711, + "step": 1065 + }, + { + "epoch": 14.810834425513324, + "grad_norm": 0.22330640256404877, + "learning_rate": 0.0006, + "loss": 4.159893989562988, + "step": 1066 + }, + { + "epoch": 14.824814329401486, + "grad_norm": 0.22422967851161957, + "learning_rate": 0.0006, + "loss": 4.104874610900879, + "step": 1067 + }, + { + "epoch": 14.838794233289645, + "grad_norm": 0.24583931267261505, + "learning_rate": 0.0006, + "loss": 4.139403820037842, + "step": 1068 + }, + { + "epoch": 14.852774137177807, + "grad_norm": 0.2917379140853882, + "learning_rate": 0.0006, + "loss": 4.168988227844238, + "step": 1069 + }, + { + "epoch": 14.866754041065967, + "grad_norm": 0.3171777129173279, + "learning_rate": 0.0006, + "loss": 4.131263732910156, + "step": 1070 + }, + { + "epoch": 14.880733944954128, + "grad_norm": 0.3039591312408447, + "learning_rate": 0.0006, + "loss": 4.149853706359863, + "step": 1071 + }, + { + "epoch": 14.89471384884229, + "grad_norm": 0.2690650522708893, + "learning_rate": 0.0006, + "loss": 4.154787540435791, + "step": 1072 + }, + { + "epoch": 14.90869375273045, + "grad_norm": 0.28683212399482727, + "learning_rate": 0.0006, + "loss": 4.12751579284668, + "step": 1073 + }, + { + "epoch": 14.922673656618612, + "grad_norm": 0.30022913217544556, + "learning_rate": 0.0006, + "loss": 4.141940116882324, + "step": 1074 + }, + { + "epoch": 14.936653560506771, + "grad_norm": 0.3312259316444397, + "learning_rate": 0.0006, + "loss": 4.141905784606934, + "step": 1075 + }, + { + "epoch": 14.950633464394933, + "grad_norm": 0.31159237027168274, + "learning_rate": 0.0006, + "loss": 4.160192966461182, + "step": 1076 + }, + { + "epoch": 14.964613368283093, + "grad_norm": 0.30093592405319214, + "learning_rate": 0.0006, + "loss": 4.1085076332092285, + "step": 1077 + }, + { + "epoch": 14.978593272171254, + "grad_norm": 0.2728535830974579, + "learning_rate": 0.0006, + "loss": 4.156959056854248, + "step": 1078 + }, + { + "epoch": 14.992573176059414, + "grad_norm": 0.24766813218593597, + "learning_rate": 0.0006, + "loss": 4.113999843597412, + "step": 1079 + }, + { + "epoch": 15.0, + "grad_norm": 0.2538154721260071, + "learning_rate": 0.0006, + "loss": 4.147134780883789, + "step": 1080 + }, + { + "epoch": 15.0, + "eval_loss": 4.323154926300049, + "eval_runtime": 44.8813, + "eval_samples_per_second": 54.41, + "eval_steps_per_second": 3.409, + "step": 1080 + }, + { + "epoch": 15.013979903888162, + "grad_norm": 0.22535280883312225, + "learning_rate": 0.0006, + "loss": 4.112179756164551, + "step": 1081 + }, + { + "epoch": 15.027959807776321, + "grad_norm": 0.24340929090976715, + "learning_rate": 0.0006, + "loss": 4.080923080444336, + "step": 1082 + }, + { + "epoch": 15.041939711664483, + "grad_norm": 0.23159465193748474, + "learning_rate": 0.0006, + "loss": 4.097067356109619, + "step": 1083 + }, + { + "epoch": 15.055919615552643, + "grad_norm": 0.22674769163131714, + "learning_rate": 0.0006, + "loss": 4.118601322174072, + "step": 1084 + }, + { + "epoch": 15.069899519440805, + "grad_norm": 0.2524292469024658, + "learning_rate": 0.0006, + "loss": 4.101109504699707, + "step": 1085 + }, + { + "epoch": 15.083879423328964, + "grad_norm": 0.2505405843257904, + "learning_rate": 0.0006, + "loss": 4.121405601501465, + "step": 1086 + }, + { + "epoch": 15.097859327217126, + "grad_norm": 0.2557983696460724, + "learning_rate": 0.0006, + "loss": 4.1063947677612305, + "step": 1087 + }, + { + "epoch": 15.111839231105286, + "grad_norm": 0.24452129006385803, + "learning_rate": 0.0006, + "loss": 4.086133003234863, + "step": 1088 + }, + { + "epoch": 15.125819134993447, + "grad_norm": 0.25821781158447266, + "learning_rate": 0.0006, + "loss": 4.076262950897217, + "step": 1089 + }, + { + "epoch": 15.139799038881607, + "grad_norm": 0.23650537431240082, + "learning_rate": 0.0006, + "loss": 4.101842880249023, + "step": 1090 + }, + { + "epoch": 15.153778942769769, + "grad_norm": 0.2206192910671234, + "learning_rate": 0.0006, + "loss": 4.11027193069458, + "step": 1091 + }, + { + "epoch": 15.167758846657929, + "grad_norm": 0.21843163669109344, + "learning_rate": 0.0006, + "loss": 4.098437309265137, + "step": 1092 + }, + { + "epoch": 15.18173875054609, + "grad_norm": 0.2528176009654999, + "learning_rate": 0.0006, + "loss": 4.108713150024414, + "step": 1093 + }, + { + "epoch": 15.19571865443425, + "grad_norm": 0.26697206497192383, + "learning_rate": 0.0006, + "loss": 4.113210201263428, + "step": 1094 + }, + { + "epoch": 15.209698558322412, + "grad_norm": 0.26480963826179504, + "learning_rate": 0.0006, + "loss": 4.1103620529174805, + "step": 1095 + }, + { + "epoch": 15.223678462210572, + "grad_norm": 0.24887347221374512, + "learning_rate": 0.0006, + "loss": 4.103529930114746, + "step": 1096 + }, + { + "epoch": 15.237658366098733, + "grad_norm": 0.2344668060541153, + "learning_rate": 0.0006, + "loss": 4.129784107208252, + "step": 1097 + }, + { + "epoch": 15.251638269986893, + "grad_norm": 0.22639742493629456, + "learning_rate": 0.0006, + "loss": 4.113495349884033, + "step": 1098 + }, + { + "epoch": 15.265618173875055, + "grad_norm": 0.22466333210468292, + "learning_rate": 0.0006, + "loss": 4.102309703826904, + "step": 1099 + }, + { + "epoch": 15.279598077763215, + "grad_norm": 0.25135037302970886, + "learning_rate": 0.0006, + "loss": 4.117668628692627, + "step": 1100 + }, + { + "epoch": 15.293577981651376, + "grad_norm": 0.2347089946269989, + "learning_rate": 0.0006, + "loss": 4.086637496948242, + "step": 1101 + }, + { + "epoch": 15.307557885539538, + "grad_norm": 0.2347242832183838, + "learning_rate": 0.0006, + "loss": 4.098714828491211, + "step": 1102 + }, + { + "epoch": 15.321537789427698, + "grad_norm": 0.23990283906459808, + "learning_rate": 0.0006, + "loss": 4.079837799072266, + "step": 1103 + }, + { + "epoch": 15.33551769331586, + "grad_norm": 0.22366675734519958, + "learning_rate": 0.0006, + "loss": 4.108136177062988, + "step": 1104 + }, + { + "epoch": 15.349497597204019, + "grad_norm": 0.21823780238628387, + "learning_rate": 0.0006, + "loss": 4.10054349899292, + "step": 1105 + }, + { + "epoch": 15.36347750109218, + "grad_norm": 0.23059198260307312, + "learning_rate": 0.0006, + "loss": 4.108620643615723, + "step": 1106 + }, + { + "epoch": 15.37745740498034, + "grad_norm": 0.2313755601644516, + "learning_rate": 0.0006, + "loss": 4.088565826416016, + "step": 1107 + }, + { + "epoch": 15.391437308868502, + "grad_norm": 0.2546829283237457, + "learning_rate": 0.0006, + "loss": 4.104948043823242, + "step": 1108 + }, + { + "epoch": 15.405417212756662, + "grad_norm": 0.23666726052761078, + "learning_rate": 0.0006, + "loss": 4.111965179443359, + "step": 1109 + }, + { + "epoch": 15.419397116644824, + "grad_norm": 0.21971021592617035, + "learning_rate": 0.0006, + "loss": 4.097846984863281, + "step": 1110 + }, + { + "epoch": 15.433377020532983, + "grad_norm": 0.20951911807060242, + "learning_rate": 0.0006, + "loss": 4.110099792480469, + "step": 1111 + }, + { + "epoch": 15.447356924421145, + "grad_norm": 0.19590918719768524, + "learning_rate": 0.0006, + "loss": 4.101154327392578, + "step": 1112 + }, + { + "epoch": 15.461336828309305, + "grad_norm": 0.21048946678638458, + "learning_rate": 0.0006, + "loss": 4.0986127853393555, + "step": 1113 + }, + { + "epoch": 15.475316732197467, + "grad_norm": 0.21423374116420746, + "learning_rate": 0.0006, + "loss": 4.082328796386719, + "step": 1114 + }, + { + "epoch": 15.489296636085626, + "grad_norm": 0.227146714925766, + "learning_rate": 0.0006, + "loss": 4.105281829833984, + "step": 1115 + }, + { + "epoch": 15.503276539973788, + "grad_norm": 0.2079153060913086, + "learning_rate": 0.0006, + "loss": 4.100836753845215, + "step": 1116 + }, + { + "epoch": 15.517256443861948, + "grad_norm": 0.21084675192832947, + "learning_rate": 0.0006, + "loss": 4.0934343338012695, + "step": 1117 + }, + { + "epoch": 15.53123634775011, + "grad_norm": 0.23863616585731506, + "learning_rate": 0.0006, + "loss": 4.101540565490723, + "step": 1118 + }, + { + "epoch": 15.54521625163827, + "grad_norm": 0.2518490254878998, + "learning_rate": 0.0006, + "loss": 4.12303352355957, + "step": 1119 + }, + { + "epoch": 15.55919615552643, + "grad_norm": 0.24282905459403992, + "learning_rate": 0.0006, + "loss": 4.080670356750488, + "step": 1120 + }, + { + "epoch": 15.57317605941459, + "grad_norm": 0.24171605706214905, + "learning_rate": 0.0006, + "loss": 4.117938041687012, + "step": 1121 + }, + { + "epoch": 15.587155963302752, + "grad_norm": 0.28453412652015686, + "learning_rate": 0.0006, + "loss": 4.080114364624023, + "step": 1122 + }, + { + "epoch": 15.601135867190912, + "grad_norm": 0.30322617292404175, + "learning_rate": 0.0006, + "loss": 4.079695701599121, + "step": 1123 + }, + { + "epoch": 15.615115771079074, + "grad_norm": 0.2657633125782013, + "learning_rate": 0.0006, + "loss": 4.0916290283203125, + "step": 1124 + }, + { + "epoch": 15.629095674967235, + "grad_norm": 0.2467080056667328, + "learning_rate": 0.0006, + "loss": 4.095594882965088, + "step": 1125 + }, + { + "epoch": 15.643075578855395, + "grad_norm": 0.21767394244670868, + "learning_rate": 0.0006, + "loss": 4.079174041748047, + "step": 1126 + }, + { + "epoch": 15.657055482743557, + "grad_norm": 0.2088327705860138, + "learning_rate": 0.0006, + "loss": 4.060707092285156, + "step": 1127 + }, + { + "epoch": 15.671035386631717, + "grad_norm": 0.1921205073595047, + "learning_rate": 0.0006, + "loss": 4.073911666870117, + "step": 1128 + }, + { + "epoch": 15.685015290519878, + "grad_norm": 0.209339901804924, + "learning_rate": 0.0006, + "loss": 4.089954376220703, + "step": 1129 + }, + { + "epoch": 15.698995194408038, + "grad_norm": 0.23513881862163544, + "learning_rate": 0.0006, + "loss": 4.084906578063965, + "step": 1130 + }, + { + "epoch": 15.7129750982962, + "grad_norm": 0.26140275597572327, + "learning_rate": 0.0006, + "loss": 4.086570739746094, + "step": 1131 + }, + { + "epoch": 15.72695500218436, + "grad_norm": 0.290431946516037, + "learning_rate": 0.0006, + "loss": 4.071229457855225, + "step": 1132 + }, + { + "epoch": 15.740934906072521, + "grad_norm": 0.3061376214027405, + "learning_rate": 0.0006, + "loss": 4.103148460388184, + "step": 1133 + }, + { + "epoch": 15.754914809960681, + "grad_norm": 0.26312482357025146, + "learning_rate": 0.0006, + "loss": 4.088448524475098, + "step": 1134 + }, + { + "epoch": 15.768894713848843, + "grad_norm": 0.22474883496761322, + "learning_rate": 0.0006, + "loss": 4.091766834259033, + "step": 1135 + }, + { + "epoch": 15.782874617737003, + "grad_norm": 0.2341146171092987, + "learning_rate": 0.0006, + "loss": 4.1222758293151855, + "step": 1136 + }, + { + "epoch": 15.796854521625164, + "grad_norm": 0.23556149005889893, + "learning_rate": 0.0006, + "loss": 4.094954013824463, + "step": 1137 + }, + { + "epoch": 15.810834425513324, + "grad_norm": 0.263315349817276, + "learning_rate": 0.0006, + "loss": 4.1065473556518555, + "step": 1138 + }, + { + "epoch": 15.824814329401486, + "grad_norm": 0.2700869143009186, + "learning_rate": 0.0006, + "loss": 4.0890045166015625, + "step": 1139 + }, + { + "epoch": 15.838794233289645, + "grad_norm": 0.28697484731674194, + "learning_rate": 0.0006, + "loss": 4.092496395111084, + "step": 1140 + }, + { + "epoch": 15.852774137177807, + "grad_norm": 0.2824092507362366, + "learning_rate": 0.0006, + "loss": 4.079615592956543, + "step": 1141 + }, + { + "epoch": 15.866754041065967, + "grad_norm": 0.24547280371189117, + "learning_rate": 0.0006, + "loss": 4.089683532714844, + "step": 1142 + }, + { + "epoch": 15.880733944954128, + "grad_norm": 0.23653888702392578, + "learning_rate": 0.0006, + "loss": 4.067309379577637, + "step": 1143 + }, + { + "epoch": 15.89471384884229, + "grad_norm": 0.23784421384334564, + "learning_rate": 0.0006, + "loss": 4.09156608581543, + "step": 1144 + }, + { + "epoch": 15.90869375273045, + "grad_norm": 0.22753281891345978, + "learning_rate": 0.0006, + "loss": 4.095428466796875, + "step": 1145 + }, + { + "epoch": 15.922673656618612, + "grad_norm": 0.2464212030172348, + "learning_rate": 0.0006, + "loss": 4.1036376953125, + "step": 1146 + }, + { + "epoch": 15.936653560506771, + "grad_norm": 0.25531601905822754, + "learning_rate": 0.0006, + "loss": 4.073996543884277, + "step": 1147 + }, + { + "epoch": 15.950633464394933, + "grad_norm": 0.24145905673503876, + "learning_rate": 0.0006, + "loss": 4.094479560852051, + "step": 1148 + }, + { + "epoch": 15.964613368283093, + "grad_norm": 0.24274317920207977, + "learning_rate": 0.0006, + "loss": 4.101981163024902, + "step": 1149 + }, + { + "epoch": 15.978593272171254, + "grad_norm": 0.2350679188966751, + "learning_rate": 0.0006, + "loss": 4.057965278625488, + "step": 1150 + }, + { + "epoch": 15.992573176059414, + "grad_norm": 0.24072253704071045, + "learning_rate": 0.0006, + "loss": 4.020050048828125, + "step": 1151 + }, + { + "epoch": 16.0, + "grad_norm": 0.253978967666626, + "learning_rate": 0.0006, + "loss": 4.061928749084473, + "step": 1152 + }, + { + "epoch": 16.0, + "eval_loss": 4.270665645599365, + "eval_runtime": 44.5063, + "eval_samples_per_second": 54.869, + "eval_steps_per_second": 3.438, + "step": 1152 + }, + { + "epoch": 16.01397990388816, + "grad_norm": 0.3265204131603241, + "learning_rate": 0.0006, + "loss": 4.059116363525391, + "step": 1153 + }, + { + "epoch": 16.027959807776323, + "grad_norm": 0.34139737486839294, + "learning_rate": 0.0006, + "loss": 4.062219619750977, + "step": 1154 + }, + { + "epoch": 16.041939711664483, + "grad_norm": 0.2849949598312378, + "learning_rate": 0.0006, + "loss": 4.032323837280273, + "step": 1155 + }, + { + "epoch": 16.055919615552643, + "grad_norm": 0.25031402707099915, + "learning_rate": 0.0006, + "loss": 4.075527191162109, + "step": 1156 + }, + { + "epoch": 16.069899519440803, + "grad_norm": 0.25207436084747314, + "learning_rate": 0.0006, + "loss": 4.0883097648620605, + "step": 1157 + }, + { + "epoch": 16.083879423328966, + "grad_norm": 0.28677356243133545, + "learning_rate": 0.0006, + "loss": 4.040797233581543, + "step": 1158 + }, + { + "epoch": 16.097859327217126, + "grad_norm": 0.30778825283050537, + "learning_rate": 0.0006, + "loss": 4.051504135131836, + "step": 1159 + }, + { + "epoch": 16.111839231105286, + "grad_norm": 0.3136911988258362, + "learning_rate": 0.0006, + "loss": 4.045449256896973, + "step": 1160 + }, + { + "epoch": 16.125819134993446, + "grad_norm": 0.34384530782699585, + "learning_rate": 0.0006, + "loss": 4.069897651672363, + "step": 1161 + }, + { + "epoch": 16.13979903888161, + "grad_norm": 0.3074268400669098, + "learning_rate": 0.0006, + "loss": 4.0621137619018555, + "step": 1162 + }, + { + "epoch": 16.15377894276977, + "grad_norm": 0.33090949058532715, + "learning_rate": 0.0006, + "loss": 4.084089279174805, + "step": 1163 + }, + { + "epoch": 16.16775884665793, + "grad_norm": 0.26358580589294434, + "learning_rate": 0.0006, + "loss": 4.066563606262207, + "step": 1164 + }, + { + "epoch": 16.18173875054609, + "grad_norm": 0.25586041808128357, + "learning_rate": 0.0006, + "loss": 4.08109188079834, + "step": 1165 + }, + { + "epoch": 16.195718654434252, + "grad_norm": 0.2966184616088867, + "learning_rate": 0.0006, + "loss": 4.039186477661133, + "step": 1166 + }, + { + "epoch": 16.209698558322412, + "grad_norm": 0.3064924478530884, + "learning_rate": 0.0006, + "loss": 4.08139705657959, + "step": 1167 + }, + { + "epoch": 16.22367846221057, + "grad_norm": 0.28671345114707947, + "learning_rate": 0.0006, + "loss": 4.04637336730957, + "step": 1168 + }, + { + "epoch": 16.23765836609873, + "grad_norm": 0.26209691166877747, + "learning_rate": 0.0006, + "loss": 4.052768707275391, + "step": 1169 + }, + { + "epoch": 16.251638269986895, + "grad_norm": 0.2758907079696655, + "learning_rate": 0.0006, + "loss": 4.064321517944336, + "step": 1170 + }, + { + "epoch": 16.265618173875055, + "grad_norm": 0.25961801409721375, + "learning_rate": 0.0006, + "loss": 4.057299613952637, + "step": 1171 + }, + { + "epoch": 16.279598077763215, + "grad_norm": 0.2513751685619354, + "learning_rate": 0.0006, + "loss": 4.064148902893066, + "step": 1172 + }, + { + "epoch": 16.293577981651374, + "grad_norm": 0.23920276761054993, + "learning_rate": 0.0006, + "loss": 4.101890563964844, + "step": 1173 + }, + { + "epoch": 16.307557885539538, + "grad_norm": 0.22746537625789642, + "learning_rate": 0.0006, + "loss": 4.086627006530762, + "step": 1174 + }, + { + "epoch": 16.321537789427698, + "grad_norm": 0.22633525729179382, + "learning_rate": 0.0006, + "loss": 4.04669189453125, + "step": 1175 + }, + { + "epoch": 16.335517693315857, + "grad_norm": 0.2654891610145569, + "learning_rate": 0.0006, + "loss": 4.086793422698975, + "step": 1176 + }, + { + "epoch": 16.34949759720402, + "grad_norm": 0.2872653007507324, + "learning_rate": 0.0006, + "loss": 4.077983856201172, + "step": 1177 + }, + { + "epoch": 16.36347750109218, + "grad_norm": 0.25726038217544556, + "learning_rate": 0.0006, + "loss": 4.066011428833008, + "step": 1178 + }, + { + "epoch": 16.37745740498034, + "grad_norm": 0.2592027485370636, + "learning_rate": 0.0006, + "loss": 4.0482988357543945, + "step": 1179 + }, + { + "epoch": 16.3914373088685, + "grad_norm": 0.2768886685371399, + "learning_rate": 0.0006, + "loss": 4.065151214599609, + "step": 1180 + }, + { + "epoch": 16.405417212756664, + "grad_norm": 0.2956002652645111, + "learning_rate": 0.0006, + "loss": 4.037791728973389, + "step": 1181 + }, + { + "epoch": 16.419397116644824, + "grad_norm": 0.3092120885848999, + "learning_rate": 0.0006, + "loss": 4.062164306640625, + "step": 1182 + }, + { + "epoch": 16.433377020532983, + "grad_norm": 0.29516810178756714, + "learning_rate": 0.0006, + "loss": 4.025505065917969, + "step": 1183 + }, + { + "epoch": 16.447356924421143, + "grad_norm": 0.2640177607536316, + "learning_rate": 0.0006, + "loss": 4.060182571411133, + "step": 1184 + }, + { + "epoch": 16.461336828309307, + "grad_norm": 0.2444908320903778, + "learning_rate": 0.0006, + "loss": 4.046144962310791, + "step": 1185 + }, + { + "epoch": 16.475316732197467, + "grad_norm": 0.23190705478191376, + "learning_rate": 0.0006, + "loss": 4.075569152832031, + "step": 1186 + }, + { + "epoch": 16.489296636085626, + "grad_norm": 0.2383626103401184, + "learning_rate": 0.0006, + "loss": 4.088897705078125, + "step": 1187 + }, + { + "epoch": 16.503276539973786, + "grad_norm": 0.20688803493976593, + "learning_rate": 0.0006, + "loss": 4.064517974853516, + "step": 1188 + }, + { + "epoch": 16.51725644386195, + "grad_norm": 0.22610054910182953, + "learning_rate": 0.0006, + "loss": 4.04502010345459, + "step": 1189 + }, + { + "epoch": 16.53123634775011, + "grad_norm": 0.2014893889427185, + "learning_rate": 0.0006, + "loss": 4.058279514312744, + "step": 1190 + }, + { + "epoch": 16.54521625163827, + "grad_norm": 0.21459777653217316, + "learning_rate": 0.0006, + "loss": 4.066389083862305, + "step": 1191 + }, + { + "epoch": 16.55919615552643, + "grad_norm": 0.22909940779209137, + "learning_rate": 0.0006, + "loss": 4.0557966232299805, + "step": 1192 + }, + { + "epoch": 16.573176059414592, + "grad_norm": 0.20039083063602448, + "learning_rate": 0.0006, + "loss": 4.092845916748047, + "step": 1193 + }, + { + "epoch": 16.587155963302752, + "grad_norm": 0.22651726007461548, + "learning_rate": 0.0006, + "loss": 4.034615516662598, + "step": 1194 + }, + { + "epoch": 16.601135867190912, + "grad_norm": 0.21901755034923553, + "learning_rate": 0.0006, + "loss": 4.035619735717773, + "step": 1195 + }, + { + "epoch": 16.615115771079076, + "grad_norm": 0.22930841147899628, + "learning_rate": 0.0006, + "loss": 4.080800533294678, + "step": 1196 + }, + { + "epoch": 16.629095674967235, + "grad_norm": 0.212818443775177, + "learning_rate": 0.0006, + "loss": 4.030189514160156, + "step": 1197 + }, + { + "epoch": 16.643075578855395, + "grad_norm": 0.2370826154947281, + "learning_rate": 0.0006, + "loss": 4.062643527984619, + "step": 1198 + }, + { + "epoch": 16.657055482743555, + "grad_norm": 0.24786995351314545, + "learning_rate": 0.0006, + "loss": 4.031761169433594, + "step": 1199 + }, + { + "epoch": 16.67103538663172, + "grad_norm": 0.2305847704410553, + "learning_rate": 0.0006, + "loss": 4.083752155303955, + "step": 1200 + }, + { + "epoch": 16.68501529051988, + "grad_norm": 0.23336584866046906, + "learning_rate": 0.0006, + "loss": 4.079145431518555, + "step": 1201 + }, + { + "epoch": 16.698995194408038, + "grad_norm": 0.23976293206214905, + "learning_rate": 0.0006, + "loss": 4.020473957061768, + "step": 1202 + }, + { + "epoch": 16.712975098296198, + "grad_norm": 0.222761869430542, + "learning_rate": 0.0006, + "loss": 4.065582752227783, + "step": 1203 + }, + { + "epoch": 16.72695500218436, + "grad_norm": 0.23725618422031403, + "learning_rate": 0.0006, + "loss": 4.0263776779174805, + "step": 1204 + }, + { + "epoch": 16.74093490607252, + "grad_norm": 0.23873984813690186, + "learning_rate": 0.0006, + "loss": 4.053092956542969, + "step": 1205 + }, + { + "epoch": 16.75491480996068, + "grad_norm": 0.21043002605438232, + "learning_rate": 0.0006, + "loss": 4.063965797424316, + "step": 1206 + }, + { + "epoch": 16.76889471384884, + "grad_norm": 0.19863522052764893, + "learning_rate": 0.0006, + "loss": 4.061187267303467, + "step": 1207 + }, + { + "epoch": 16.782874617737004, + "grad_norm": 0.1953752487897873, + "learning_rate": 0.0006, + "loss": 4.046016693115234, + "step": 1208 + }, + { + "epoch": 16.796854521625164, + "grad_norm": 0.2130361795425415, + "learning_rate": 0.0006, + "loss": 4.066933631896973, + "step": 1209 + }, + { + "epoch": 16.810834425513324, + "grad_norm": 0.19598130881786346, + "learning_rate": 0.0006, + "loss": 4.071558952331543, + "step": 1210 + }, + { + "epoch": 16.824814329401484, + "grad_norm": 0.20331116020679474, + "learning_rate": 0.0006, + "loss": 4.088632106781006, + "step": 1211 + }, + { + "epoch": 16.838794233289647, + "grad_norm": 0.20423150062561035, + "learning_rate": 0.0006, + "loss": 4.032224655151367, + "step": 1212 + }, + { + "epoch": 16.852774137177807, + "grad_norm": 0.2401197850704193, + "learning_rate": 0.0006, + "loss": 4.037393569946289, + "step": 1213 + }, + { + "epoch": 16.866754041065967, + "grad_norm": 0.26102620363235474, + "learning_rate": 0.0006, + "loss": 4.04738712310791, + "step": 1214 + }, + { + "epoch": 16.88073394495413, + "grad_norm": 0.2438521534204483, + "learning_rate": 0.0006, + "loss": 4.015673637390137, + "step": 1215 + }, + { + "epoch": 16.89471384884229, + "grad_norm": 0.20742061734199524, + "learning_rate": 0.0006, + "loss": 4.049060821533203, + "step": 1216 + }, + { + "epoch": 16.90869375273045, + "grad_norm": 0.22028608620166779, + "learning_rate": 0.0006, + "loss": 4.088971138000488, + "step": 1217 + }, + { + "epoch": 16.92267365661861, + "grad_norm": 0.21746744215488434, + "learning_rate": 0.0006, + "loss": 4.021710395812988, + "step": 1218 + }, + { + "epoch": 16.936653560506773, + "grad_norm": 0.2226102203130722, + "learning_rate": 0.0006, + "loss": 4.050119400024414, + "step": 1219 + }, + { + "epoch": 16.950633464394933, + "grad_norm": 0.23903657495975494, + "learning_rate": 0.0006, + "loss": 4.0570526123046875, + "step": 1220 + }, + { + "epoch": 16.964613368283093, + "grad_norm": 0.2556349039077759, + "learning_rate": 0.0006, + "loss": 4.0448808670043945, + "step": 1221 + }, + { + "epoch": 16.978593272171253, + "grad_norm": 0.28445592522621155, + "learning_rate": 0.0006, + "loss": 4.052034378051758, + "step": 1222 + }, + { + "epoch": 16.992573176059416, + "grad_norm": 0.273973673582077, + "learning_rate": 0.0006, + "loss": 4.02907657623291, + "step": 1223 + }, + { + "epoch": 17.0, + "grad_norm": 0.26125091314315796, + "learning_rate": 0.0006, + "loss": 4.10643196105957, + "step": 1224 + }, + { + "epoch": 17.0, + "eval_loss": 4.2585954666137695, + "eval_runtime": 44.8583, + "eval_samples_per_second": 54.438, + "eval_steps_per_second": 3.411, + "step": 1224 + }, + { + "epoch": 17.01397990388816, + "grad_norm": 0.2786196768283844, + "learning_rate": 0.0006, + "loss": 4.044719219207764, + "step": 1225 + }, + { + "epoch": 17.027959807776323, + "grad_norm": 0.2969571650028229, + "learning_rate": 0.0006, + "loss": 4.022037506103516, + "step": 1226 + }, + { + "epoch": 17.041939711664483, + "grad_norm": 0.32196253538131714, + "learning_rate": 0.0006, + "loss": 4.03636360168457, + "step": 1227 + }, + { + "epoch": 17.055919615552643, + "grad_norm": 0.28617000579833984, + "learning_rate": 0.0006, + "loss": 4.012125492095947, + "step": 1228 + }, + { + "epoch": 17.069899519440803, + "grad_norm": 0.26539644598960876, + "learning_rate": 0.0006, + "loss": 4.020190715789795, + "step": 1229 + }, + { + "epoch": 17.083879423328966, + "grad_norm": 0.24315394461154938, + "learning_rate": 0.0006, + "loss": 4.0553812980651855, + "step": 1230 + }, + { + "epoch": 17.097859327217126, + "grad_norm": 0.23798158764839172, + "learning_rate": 0.0006, + "loss": 4.004805088043213, + "step": 1231 + }, + { + "epoch": 17.111839231105286, + "grad_norm": 0.25723618268966675, + "learning_rate": 0.0006, + "loss": 4.00108003616333, + "step": 1232 + }, + { + "epoch": 17.125819134993446, + "grad_norm": 0.2669757604598999, + "learning_rate": 0.0006, + "loss": 4.00828742980957, + "step": 1233 + }, + { + "epoch": 17.13979903888161, + "grad_norm": 0.26421651244163513, + "learning_rate": 0.0006, + "loss": 3.995478391647339, + "step": 1234 + }, + { + "epoch": 17.15377894276977, + "grad_norm": 0.24745801091194153, + "learning_rate": 0.0006, + "loss": 4.0171027183532715, + "step": 1235 + }, + { + "epoch": 17.16775884665793, + "grad_norm": 0.27028775215148926, + "learning_rate": 0.0006, + "loss": 4.017108917236328, + "step": 1236 + }, + { + "epoch": 17.18173875054609, + "grad_norm": 0.27247968316078186, + "learning_rate": 0.0006, + "loss": 4.032601356506348, + "step": 1237 + }, + { + "epoch": 17.195718654434252, + "grad_norm": 0.24620869755744934, + "learning_rate": 0.0006, + "loss": 4.022171974182129, + "step": 1238 + }, + { + "epoch": 17.209698558322412, + "grad_norm": 0.23407386243343353, + "learning_rate": 0.0006, + "loss": 3.9946959018707275, + "step": 1239 + }, + { + "epoch": 17.22367846221057, + "grad_norm": 0.22559069097042084, + "learning_rate": 0.0006, + "loss": 4.013072490692139, + "step": 1240 + }, + { + "epoch": 17.23765836609873, + "grad_norm": 0.226687952876091, + "learning_rate": 0.0006, + "loss": 4.023543834686279, + "step": 1241 + }, + { + "epoch": 17.251638269986895, + "grad_norm": 0.24436360597610474, + "learning_rate": 0.0006, + "loss": 4.044206619262695, + "step": 1242 + }, + { + "epoch": 17.265618173875055, + "grad_norm": 0.25527626276016235, + "learning_rate": 0.0006, + "loss": 4.016424179077148, + "step": 1243 + }, + { + "epoch": 17.279598077763215, + "grad_norm": 0.26126864552497864, + "learning_rate": 0.0006, + "loss": 4.024394512176514, + "step": 1244 + }, + { + "epoch": 17.293577981651374, + "grad_norm": 0.25746744871139526, + "learning_rate": 0.0006, + "loss": 4.046844482421875, + "step": 1245 + }, + { + "epoch": 17.307557885539538, + "grad_norm": 0.26579564809799194, + "learning_rate": 0.0006, + "loss": 4.021010398864746, + "step": 1246 + }, + { + "epoch": 17.321537789427698, + "grad_norm": 0.2713971734046936, + "learning_rate": 0.0006, + "loss": 4.022331237792969, + "step": 1247 + }, + { + "epoch": 17.335517693315857, + "grad_norm": 0.24217180907726288, + "learning_rate": 0.0006, + "loss": 4.006353855133057, + "step": 1248 + }, + { + "epoch": 17.34949759720402, + "grad_norm": 0.26899752020835876, + "learning_rate": 0.0006, + "loss": 4.068023681640625, + "step": 1249 + }, + { + "epoch": 17.36347750109218, + "grad_norm": 0.26745253801345825, + "learning_rate": 0.0006, + "loss": 4.031207084655762, + "step": 1250 + }, + { + "epoch": 17.37745740498034, + "grad_norm": 0.21533764898777008, + "learning_rate": 0.0006, + "loss": 4.042410850524902, + "step": 1251 + }, + { + "epoch": 17.3914373088685, + "grad_norm": 0.21958027780056, + "learning_rate": 0.0006, + "loss": 4.02597713470459, + "step": 1252 + }, + { + "epoch": 17.405417212756664, + "grad_norm": 0.263068825006485, + "learning_rate": 0.0006, + "loss": 4.0035905838012695, + "step": 1253 + }, + { + "epoch": 17.419397116644824, + "grad_norm": 0.24044716358184814, + "learning_rate": 0.0006, + "loss": 4.005317687988281, + "step": 1254 + }, + { + "epoch": 17.433377020532983, + "grad_norm": 0.19142559170722961, + "learning_rate": 0.0006, + "loss": 3.9976844787597656, + "step": 1255 + }, + { + "epoch": 17.447356924421143, + "grad_norm": 0.18650250136852264, + "learning_rate": 0.0006, + "loss": 4.031353950500488, + "step": 1256 + }, + { + "epoch": 17.461336828309307, + "grad_norm": 0.1984022557735443, + "learning_rate": 0.0006, + "loss": 4.002097129821777, + "step": 1257 + }, + { + "epoch": 17.475316732197467, + "grad_norm": 0.20087844133377075, + "learning_rate": 0.0006, + "loss": 4.031151294708252, + "step": 1258 + }, + { + "epoch": 17.489296636085626, + "grad_norm": 0.20881228148937225, + "learning_rate": 0.0006, + "loss": 4.034793853759766, + "step": 1259 + }, + { + "epoch": 17.503276539973786, + "grad_norm": 0.23958556354045868, + "learning_rate": 0.0006, + "loss": 4.025238990783691, + "step": 1260 + }, + { + "epoch": 17.51725644386195, + "grad_norm": 0.23927845060825348, + "learning_rate": 0.0006, + "loss": 3.999828338623047, + "step": 1261 + }, + { + "epoch": 17.53123634775011, + "grad_norm": 0.20342715084552765, + "learning_rate": 0.0006, + "loss": 4.054262161254883, + "step": 1262 + }, + { + "epoch": 17.54521625163827, + "grad_norm": 0.21370555460453033, + "learning_rate": 0.0006, + "loss": 4.011582374572754, + "step": 1263 + }, + { + "epoch": 17.55919615552643, + "grad_norm": 0.23681946098804474, + "learning_rate": 0.0006, + "loss": 4.029694080352783, + "step": 1264 + }, + { + "epoch": 17.573176059414592, + "grad_norm": 0.24190311133861542, + "learning_rate": 0.0006, + "loss": 4.018783092498779, + "step": 1265 + }, + { + "epoch": 17.587155963302752, + "grad_norm": 0.23215509951114655, + "learning_rate": 0.0006, + "loss": 4.009703159332275, + "step": 1266 + }, + { + "epoch": 17.601135867190912, + "grad_norm": 0.21122977137565613, + "learning_rate": 0.0006, + "loss": 4.0345659255981445, + "step": 1267 + }, + { + "epoch": 17.615115771079076, + "grad_norm": 0.2075948715209961, + "learning_rate": 0.0006, + "loss": 4.070703506469727, + "step": 1268 + }, + { + "epoch": 17.629095674967235, + "grad_norm": 0.21667909622192383, + "learning_rate": 0.0006, + "loss": 4.020771503448486, + "step": 1269 + }, + { + "epoch": 17.643075578855395, + "grad_norm": 0.20960724353790283, + "learning_rate": 0.0006, + "loss": 4.026404857635498, + "step": 1270 + }, + { + "epoch": 17.657055482743555, + "grad_norm": 0.22575686872005463, + "learning_rate": 0.0006, + "loss": 4.01981258392334, + "step": 1271 + }, + { + "epoch": 17.67103538663172, + "grad_norm": 0.2565988302230835, + "learning_rate": 0.0006, + "loss": 4.015827178955078, + "step": 1272 + }, + { + "epoch": 17.68501529051988, + "grad_norm": 0.24831551313400269, + "learning_rate": 0.0006, + "loss": 4.012457847595215, + "step": 1273 + }, + { + "epoch": 17.698995194408038, + "grad_norm": 0.22595494985580444, + "learning_rate": 0.0006, + "loss": 4.031386375427246, + "step": 1274 + }, + { + "epoch": 17.712975098296198, + "grad_norm": 0.20687322318553925, + "learning_rate": 0.0006, + "loss": 4.014216423034668, + "step": 1275 + }, + { + "epoch": 17.72695500218436, + "grad_norm": 0.21916012465953827, + "learning_rate": 0.0006, + "loss": 4.037643909454346, + "step": 1276 + }, + { + "epoch": 17.74093490607252, + "grad_norm": 0.2243107706308365, + "learning_rate": 0.0006, + "loss": 4.033044815063477, + "step": 1277 + }, + { + "epoch": 17.75491480996068, + "grad_norm": 0.2402164787054062, + "learning_rate": 0.0006, + "loss": 4.026636123657227, + "step": 1278 + }, + { + "epoch": 17.76889471384884, + "grad_norm": 0.27957046031951904, + "learning_rate": 0.0006, + "loss": 4.0270867347717285, + "step": 1279 + }, + { + "epoch": 17.782874617737004, + "grad_norm": 0.27447596192359924, + "learning_rate": 0.0006, + "loss": 4.0120134353637695, + "step": 1280 + }, + { + "epoch": 17.796854521625164, + "grad_norm": 0.26926323771476746, + "learning_rate": 0.0006, + "loss": 4.027970314025879, + "step": 1281 + }, + { + "epoch": 17.810834425513324, + "grad_norm": 0.2535291314125061, + "learning_rate": 0.0006, + "loss": 4.002565383911133, + "step": 1282 + }, + { + "epoch": 17.824814329401484, + "grad_norm": 0.22639447450637817, + "learning_rate": 0.0006, + "loss": 4.032750606536865, + "step": 1283 + }, + { + "epoch": 17.838794233289647, + "grad_norm": 0.23384462296962738, + "learning_rate": 0.0006, + "loss": 4.03568172454834, + "step": 1284 + }, + { + "epoch": 17.852774137177807, + "grad_norm": 0.22971470654010773, + "learning_rate": 0.0006, + "loss": 4.031299591064453, + "step": 1285 + }, + { + "epoch": 17.866754041065967, + "grad_norm": 0.24540141224861145, + "learning_rate": 0.0006, + "loss": 4.0142669677734375, + "step": 1286 + }, + { + "epoch": 17.88073394495413, + "grad_norm": 0.2304888367652893, + "learning_rate": 0.0006, + "loss": 3.9964895248413086, + "step": 1287 + }, + { + "epoch": 17.89471384884229, + "grad_norm": 0.22082284092903137, + "learning_rate": 0.0006, + "loss": 4.024693489074707, + "step": 1288 + }, + { + "epoch": 17.90869375273045, + "grad_norm": 0.23677092790603638, + "learning_rate": 0.0006, + "loss": 4.002082347869873, + "step": 1289 + }, + { + "epoch": 17.92267365661861, + "grad_norm": 0.23122332990169525, + "learning_rate": 0.0006, + "loss": 4.025351524353027, + "step": 1290 + }, + { + "epoch": 17.936653560506773, + "grad_norm": 0.2548119127750397, + "learning_rate": 0.0006, + "loss": 3.9955825805664062, + "step": 1291 + }, + { + "epoch": 17.950633464394933, + "grad_norm": 0.26950931549072266, + "learning_rate": 0.0006, + "loss": 4.026151180267334, + "step": 1292 + }, + { + "epoch": 17.964613368283093, + "grad_norm": 0.3023233711719513, + "learning_rate": 0.0006, + "loss": 4.006035804748535, + "step": 1293 + }, + { + "epoch": 17.978593272171253, + "grad_norm": 0.3190958499908447, + "learning_rate": 0.0006, + "loss": 4.023565292358398, + "step": 1294 + }, + { + "epoch": 17.992573176059416, + "grad_norm": 0.28878068923950195, + "learning_rate": 0.0006, + "loss": 4.020973205566406, + "step": 1295 + }, + { + "epoch": 18.0, + "grad_norm": 0.27312418818473816, + "learning_rate": 0.0006, + "loss": 3.99906587600708, + "step": 1296 + }, + { + "epoch": 18.0, + "eval_loss": 4.224447250366211, + "eval_runtime": 52.5728, + "eval_samples_per_second": 46.45, + "eval_steps_per_second": 2.91, + "step": 1296 + }, + { + "epoch": 18.01397990388816, + "grad_norm": 0.2567712664604187, + "learning_rate": 0.0006, + "loss": 3.9755055904388428, + "step": 1297 + }, + { + "epoch": 18.027959807776323, + "grad_norm": 0.25048133730888367, + "learning_rate": 0.0006, + "loss": 4.009254455566406, + "step": 1298 + }, + { + "epoch": 18.041939711664483, + "grad_norm": 0.2556909918785095, + "learning_rate": 0.0006, + "loss": 4.001235008239746, + "step": 1299 + }, + { + "epoch": 18.055919615552643, + "grad_norm": 0.2501400113105774, + "learning_rate": 0.0006, + "loss": 3.980726480484009, + "step": 1300 + }, + { + "epoch": 18.069899519440803, + "grad_norm": 0.23977792263031006, + "learning_rate": 0.0006, + "loss": 3.964195728302002, + "step": 1301 + }, + { + "epoch": 18.083879423328966, + "grad_norm": 0.25650718808174133, + "learning_rate": 0.0006, + "loss": 4.015914440155029, + "step": 1302 + }, + { + "epoch": 18.097859327217126, + "grad_norm": 0.234053835272789, + "learning_rate": 0.0006, + "loss": 4.0159149169921875, + "step": 1303 + }, + { + "epoch": 18.111839231105286, + "grad_norm": 0.21967713534832, + "learning_rate": 0.0006, + "loss": 4.0055694580078125, + "step": 1304 + }, + { + "epoch": 18.125819134993446, + "grad_norm": 0.21790878474712372, + "learning_rate": 0.0006, + "loss": 3.986253261566162, + "step": 1305 + }, + { + "epoch": 18.13979903888161, + "grad_norm": 0.22955302894115448, + "learning_rate": 0.0006, + "loss": 3.959421157836914, + "step": 1306 + }, + { + "epoch": 18.15377894276977, + "grad_norm": 0.2559174597263336, + "learning_rate": 0.0006, + "loss": 4.0069756507873535, + "step": 1307 + }, + { + "epoch": 18.16775884665793, + "grad_norm": 0.26132866740226746, + "learning_rate": 0.0006, + "loss": 3.9874095916748047, + "step": 1308 + }, + { + "epoch": 18.18173875054609, + "grad_norm": 0.23258940875530243, + "learning_rate": 0.0006, + "loss": 3.9762492179870605, + "step": 1309 + }, + { + "epoch": 18.195718654434252, + "grad_norm": 0.22347190976142883, + "learning_rate": 0.0006, + "loss": 3.9923410415649414, + "step": 1310 + }, + { + "epoch": 18.209698558322412, + "grad_norm": 0.23095804452896118, + "learning_rate": 0.0006, + "loss": 4.019245624542236, + "step": 1311 + }, + { + "epoch": 18.22367846221057, + "grad_norm": 0.24817052483558655, + "learning_rate": 0.0006, + "loss": 3.9697511196136475, + "step": 1312 + }, + { + "epoch": 18.23765836609873, + "grad_norm": 0.2566024959087372, + "learning_rate": 0.0006, + "loss": 3.978804111480713, + "step": 1313 + }, + { + "epoch": 18.251638269986895, + "grad_norm": 0.2527952790260315, + "learning_rate": 0.0006, + "loss": 3.972018241882324, + "step": 1314 + }, + { + "epoch": 18.265618173875055, + "grad_norm": 0.2508150637149811, + "learning_rate": 0.0006, + "loss": 3.9971275329589844, + "step": 1315 + }, + { + "epoch": 18.279598077763215, + "grad_norm": 0.23242022097110748, + "learning_rate": 0.0006, + "loss": 3.9712045192718506, + "step": 1316 + }, + { + "epoch": 18.293577981651374, + "grad_norm": 0.23474404215812683, + "learning_rate": 0.0006, + "loss": 3.9926767349243164, + "step": 1317 + }, + { + "epoch": 18.307557885539538, + "grad_norm": 0.2417769432067871, + "learning_rate": 0.0006, + "loss": 3.9920949935913086, + "step": 1318 + }, + { + "epoch": 18.321537789427698, + "grad_norm": 0.23839452862739563, + "learning_rate": 0.0006, + "loss": 4.016645431518555, + "step": 1319 + }, + { + "epoch": 18.335517693315857, + "grad_norm": 0.2512452304363251, + "learning_rate": 0.0006, + "loss": 3.97586727142334, + "step": 1320 + }, + { + "epoch": 18.34949759720402, + "grad_norm": 0.27503693103790283, + "learning_rate": 0.0006, + "loss": 4.000148773193359, + "step": 1321 + }, + { + "epoch": 18.36347750109218, + "grad_norm": 0.27830836176872253, + "learning_rate": 0.0006, + "loss": 3.9972195625305176, + "step": 1322 + }, + { + "epoch": 18.37745740498034, + "grad_norm": 0.2571812570095062, + "learning_rate": 0.0006, + "loss": 3.9900810718536377, + "step": 1323 + }, + { + "epoch": 18.3914373088685, + "grad_norm": 0.2310052365064621, + "learning_rate": 0.0006, + "loss": 4.003000259399414, + "step": 1324 + }, + { + "epoch": 18.405417212756664, + "grad_norm": 0.19615735113620758, + "learning_rate": 0.0006, + "loss": 3.9536571502685547, + "step": 1325 + }, + { + "epoch": 18.419397116644824, + "grad_norm": 0.21323896944522858, + "learning_rate": 0.0006, + "loss": 3.977508068084717, + "step": 1326 + }, + { + "epoch": 18.433377020532983, + "grad_norm": 0.21404202282428741, + "learning_rate": 0.0006, + "loss": 4.015361785888672, + "step": 1327 + }, + { + "epoch": 18.447356924421143, + "grad_norm": 0.1991959661245346, + "learning_rate": 0.0006, + "loss": 4.000286102294922, + "step": 1328 + }, + { + "epoch": 18.461336828309307, + "grad_norm": 0.2073599398136139, + "learning_rate": 0.0006, + "loss": 3.973065137863159, + "step": 1329 + }, + { + "epoch": 18.475316732197467, + "grad_norm": 0.2096073031425476, + "learning_rate": 0.0006, + "loss": 3.987032890319824, + "step": 1330 + }, + { + "epoch": 18.489296636085626, + "grad_norm": 0.2380610853433609, + "learning_rate": 0.0006, + "loss": 4.035274505615234, + "step": 1331 + }, + { + "epoch": 18.503276539973786, + "grad_norm": 0.23570716381072998, + "learning_rate": 0.0006, + "loss": 4.010516166687012, + "step": 1332 + }, + { + "epoch": 18.51725644386195, + "grad_norm": 0.24805466830730438, + "learning_rate": 0.0006, + "loss": 3.9750983715057373, + "step": 1333 + }, + { + "epoch": 18.53123634775011, + "grad_norm": 0.25173231959342957, + "learning_rate": 0.0006, + "loss": 3.9742345809936523, + "step": 1334 + }, + { + "epoch": 18.54521625163827, + "grad_norm": 0.24590367078781128, + "learning_rate": 0.0006, + "loss": 4.0037312507629395, + "step": 1335 + }, + { + "epoch": 18.55919615552643, + "grad_norm": 0.24379394948482513, + "learning_rate": 0.0006, + "loss": 3.993858814239502, + "step": 1336 + }, + { + "epoch": 18.573176059414592, + "grad_norm": 0.21708883345127106, + "learning_rate": 0.0006, + "loss": 3.965670585632324, + "step": 1337 + }, + { + "epoch": 18.587155963302752, + "grad_norm": 0.21024051308631897, + "learning_rate": 0.0006, + "loss": 3.987551689147949, + "step": 1338 + }, + { + "epoch": 18.601135867190912, + "grad_norm": 0.23376783728599548, + "learning_rate": 0.0006, + "loss": 4.002841472625732, + "step": 1339 + }, + { + "epoch": 18.615115771079076, + "grad_norm": 0.25350701808929443, + "learning_rate": 0.0006, + "loss": 3.9881370067596436, + "step": 1340 + }, + { + "epoch": 18.629095674967235, + "grad_norm": 0.2542140483856201, + "learning_rate": 0.0006, + "loss": 4.003695964813232, + "step": 1341 + }, + { + "epoch": 18.643075578855395, + "grad_norm": 0.22932685911655426, + "learning_rate": 0.0006, + "loss": 4.0146002769470215, + "step": 1342 + }, + { + "epoch": 18.657055482743555, + "grad_norm": 0.21099458634853363, + "learning_rate": 0.0006, + "loss": 3.970472812652588, + "step": 1343 + }, + { + "epoch": 18.67103538663172, + "grad_norm": 0.2234615832567215, + "learning_rate": 0.0006, + "loss": 3.9821488857269287, + "step": 1344 + }, + { + "epoch": 18.68501529051988, + "grad_norm": 0.230327770113945, + "learning_rate": 0.0006, + "loss": 3.996274948120117, + "step": 1345 + }, + { + "epoch": 18.698995194408038, + "grad_norm": 0.23596233129501343, + "learning_rate": 0.0006, + "loss": 3.9747462272644043, + "step": 1346 + }, + { + "epoch": 18.712975098296198, + "grad_norm": 0.24173159897327423, + "learning_rate": 0.0006, + "loss": 4.011804103851318, + "step": 1347 + }, + { + "epoch": 18.72695500218436, + "grad_norm": 0.24087604880332947, + "learning_rate": 0.0006, + "loss": 4.008726119995117, + "step": 1348 + }, + { + "epoch": 18.74093490607252, + "grad_norm": 0.2457292526960373, + "learning_rate": 0.0006, + "loss": 3.990793228149414, + "step": 1349 + }, + { + "epoch": 18.75491480996068, + "grad_norm": 0.22946089506149292, + "learning_rate": 0.0006, + "loss": 3.980494260787964, + "step": 1350 + }, + { + "epoch": 18.76889471384884, + "grad_norm": 0.22986692190170288, + "learning_rate": 0.0006, + "loss": 3.97006893157959, + "step": 1351 + }, + { + "epoch": 18.782874617737004, + "grad_norm": 0.23358555138111115, + "learning_rate": 0.0006, + "loss": 4.008172035217285, + "step": 1352 + }, + { + "epoch": 18.796854521625164, + "grad_norm": 0.20183615386486053, + "learning_rate": 0.0006, + "loss": 3.9720888137817383, + "step": 1353 + }, + { + "epoch": 18.810834425513324, + "grad_norm": 0.19975653290748596, + "learning_rate": 0.0006, + "loss": 3.9783310890197754, + "step": 1354 + }, + { + "epoch": 18.824814329401484, + "grad_norm": 0.18911021947860718, + "learning_rate": 0.0006, + "loss": 3.985982894897461, + "step": 1355 + }, + { + "epoch": 18.838794233289647, + "grad_norm": 0.15984168648719788, + "learning_rate": 0.0006, + "loss": 3.9740548133850098, + "step": 1356 + }, + { + "epoch": 18.852774137177807, + "grad_norm": 0.1755436211824417, + "learning_rate": 0.0006, + "loss": 4.013090133666992, + "step": 1357 + }, + { + "epoch": 18.866754041065967, + "grad_norm": 0.1798417866230011, + "learning_rate": 0.0006, + "loss": 3.997880697250366, + "step": 1358 + }, + { + "epoch": 18.88073394495413, + "grad_norm": 0.20206265151500702, + "learning_rate": 0.0006, + "loss": 3.9892373085021973, + "step": 1359 + }, + { + "epoch": 18.89471384884229, + "grad_norm": 0.23685456812381744, + "learning_rate": 0.0006, + "loss": 3.9909186363220215, + "step": 1360 + }, + { + "epoch": 18.90869375273045, + "grad_norm": 0.26053836941719055, + "learning_rate": 0.0006, + "loss": 4.00327205657959, + "step": 1361 + }, + { + "epoch": 18.92267365661861, + "grad_norm": 0.26215845346450806, + "learning_rate": 0.0006, + "loss": 3.9714717864990234, + "step": 1362 + }, + { + "epoch": 18.936653560506773, + "grad_norm": 0.2433871030807495, + "learning_rate": 0.0006, + "loss": 3.949416160583496, + "step": 1363 + }, + { + "epoch": 18.950633464394933, + "grad_norm": 0.23331883549690247, + "learning_rate": 0.0006, + "loss": 3.980501413345337, + "step": 1364 + }, + { + "epoch": 18.964613368283093, + "grad_norm": 0.2346954047679901, + "learning_rate": 0.0006, + "loss": 3.9974493980407715, + "step": 1365 + }, + { + "epoch": 18.978593272171253, + "grad_norm": 0.25101345777511597, + "learning_rate": 0.0006, + "loss": 3.9800148010253906, + "step": 1366 + }, + { + "epoch": 18.992573176059416, + "grad_norm": 0.26811933517456055, + "learning_rate": 0.0006, + "loss": 4.0065741539001465, + "step": 1367 + }, + { + "epoch": 19.0, + "grad_norm": 0.2731736898422241, + "learning_rate": 0.0006, + "loss": 4.014575481414795, + "step": 1368 + }, + { + "epoch": 19.0, + "eval_loss": 4.200716972351074, + "eval_runtime": 44.6962, + "eval_samples_per_second": 54.636, + "eval_steps_per_second": 3.423, + "step": 1368 + }, + { + "epoch": 19.01397990388816, + "grad_norm": 0.2517746686935425, + "learning_rate": 0.0006, + "loss": 3.9486539363861084, + "step": 1369 + }, + { + "epoch": 19.027959807776323, + "grad_norm": 0.2482699453830719, + "learning_rate": 0.0006, + "loss": 3.95015287399292, + "step": 1370 + }, + { + "epoch": 19.041939711664483, + "grad_norm": 0.21693618595600128, + "learning_rate": 0.0006, + "loss": 3.970022201538086, + "step": 1371 + }, + { + "epoch": 19.055919615552643, + "grad_norm": 0.2035159319639206, + "learning_rate": 0.0006, + "loss": 3.941457748413086, + "step": 1372 + }, + { + "epoch": 19.069899519440803, + "grad_norm": 0.2201429009437561, + "learning_rate": 0.0006, + "loss": 3.946794033050537, + "step": 1373 + }, + { + "epoch": 19.083879423328966, + "grad_norm": 0.22910255193710327, + "learning_rate": 0.0006, + "loss": 3.94606876373291, + "step": 1374 + }, + { + "epoch": 19.097859327217126, + "grad_norm": 0.22378197312355042, + "learning_rate": 0.0006, + "loss": 3.957899570465088, + "step": 1375 + }, + { + "epoch": 19.111839231105286, + "grad_norm": 0.21728114783763885, + "learning_rate": 0.0006, + "loss": 3.9565982818603516, + "step": 1376 + }, + { + "epoch": 19.125819134993446, + "grad_norm": 0.21887634694576263, + "learning_rate": 0.0006, + "loss": 3.9649534225463867, + "step": 1377 + }, + { + "epoch": 19.13979903888161, + "grad_norm": 0.21892991662025452, + "learning_rate": 0.0006, + "loss": 3.971388101577759, + "step": 1378 + }, + { + "epoch": 19.15377894276977, + "grad_norm": 0.24582402408123016, + "learning_rate": 0.0006, + "loss": 3.9370944499969482, + "step": 1379 + }, + { + "epoch": 19.16775884665793, + "grad_norm": 0.27547118067741394, + "learning_rate": 0.0006, + "loss": 3.939406156539917, + "step": 1380 + }, + { + "epoch": 19.18173875054609, + "grad_norm": 0.3131563365459442, + "learning_rate": 0.0006, + "loss": 3.942620277404785, + "step": 1381 + }, + { + "epoch": 19.195718654434252, + "grad_norm": 0.3211703598499298, + "learning_rate": 0.0006, + "loss": 3.9388349056243896, + "step": 1382 + }, + { + "epoch": 19.209698558322412, + "grad_norm": 0.2791919410228729, + "learning_rate": 0.0006, + "loss": 3.9827399253845215, + "step": 1383 + }, + { + "epoch": 19.22367846221057, + "grad_norm": 0.2872016727924347, + "learning_rate": 0.0006, + "loss": 3.976715087890625, + "step": 1384 + }, + { + "epoch": 19.23765836609873, + "grad_norm": 0.2790389060974121, + "learning_rate": 0.0006, + "loss": 3.952850818634033, + "step": 1385 + }, + { + "epoch": 19.251638269986895, + "grad_norm": 0.31903740763664246, + "learning_rate": 0.0006, + "loss": 3.964506149291992, + "step": 1386 + }, + { + "epoch": 19.265618173875055, + "grad_norm": 0.31013646721839905, + "learning_rate": 0.0006, + "loss": 3.967219352722168, + "step": 1387 + }, + { + "epoch": 19.279598077763215, + "grad_norm": 0.2574339509010315, + "learning_rate": 0.0006, + "loss": 3.979168176651001, + "step": 1388 + }, + { + "epoch": 19.293577981651374, + "grad_norm": 0.24621108174324036, + "learning_rate": 0.0006, + "loss": 3.981734275817871, + "step": 1389 + }, + { + "epoch": 19.307557885539538, + "grad_norm": 0.25113818049430847, + "learning_rate": 0.0006, + "loss": 3.9787755012512207, + "step": 1390 + }, + { + "epoch": 19.321537789427698, + "grad_norm": 0.259971022605896, + "learning_rate": 0.0006, + "loss": 3.9648823738098145, + "step": 1391 + }, + { + "epoch": 19.335517693315857, + "grad_norm": 0.22580404579639435, + "learning_rate": 0.0006, + "loss": 3.9658002853393555, + "step": 1392 + }, + { + "epoch": 19.34949759720402, + "grad_norm": 0.2133680284023285, + "learning_rate": 0.0006, + "loss": 3.9615914821624756, + "step": 1393 + }, + { + "epoch": 19.36347750109218, + "grad_norm": 0.2387680858373642, + "learning_rate": 0.0006, + "loss": 3.993811845779419, + "step": 1394 + }, + { + "epoch": 19.37745740498034, + "grad_norm": 0.26086220145225525, + "learning_rate": 0.0006, + "loss": 3.932701826095581, + "step": 1395 + }, + { + "epoch": 19.3914373088685, + "grad_norm": 0.23255233466625214, + "learning_rate": 0.0006, + "loss": 3.8969321250915527, + "step": 1396 + }, + { + "epoch": 19.405417212756664, + "grad_norm": 0.22894541919231415, + "learning_rate": 0.0006, + "loss": 3.9569311141967773, + "step": 1397 + }, + { + "epoch": 19.419397116644824, + "grad_norm": 0.2254200130701065, + "learning_rate": 0.0006, + "loss": 3.953199863433838, + "step": 1398 + }, + { + "epoch": 19.433377020532983, + "grad_norm": 0.25802481174468994, + "learning_rate": 0.0006, + "loss": 3.9714815616607666, + "step": 1399 + }, + { + "epoch": 19.447356924421143, + "grad_norm": 0.24725162982940674, + "learning_rate": 0.0006, + "loss": 3.957339286804199, + "step": 1400 + }, + { + "epoch": 19.461336828309307, + "grad_norm": 0.2162018120288849, + "learning_rate": 0.0006, + "loss": 3.986801862716675, + "step": 1401 + }, + { + "epoch": 19.475316732197467, + "grad_norm": 0.21530906856060028, + "learning_rate": 0.0006, + "loss": 3.9766759872436523, + "step": 1402 + }, + { + "epoch": 19.489296636085626, + "grad_norm": 0.20260323584079742, + "learning_rate": 0.0006, + "loss": 3.9576425552368164, + "step": 1403 + }, + { + "epoch": 19.503276539973786, + "grad_norm": 0.188974529504776, + "learning_rate": 0.0006, + "loss": 3.9852395057678223, + "step": 1404 + }, + { + "epoch": 19.51725644386195, + "grad_norm": 0.19727374613285065, + "learning_rate": 0.0006, + "loss": 3.972484588623047, + "step": 1405 + }, + { + "epoch": 19.53123634775011, + "grad_norm": 0.23708008229732513, + "learning_rate": 0.0006, + "loss": 3.992471694946289, + "step": 1406 + }, + { + "epoch": 19.54521625163827, + "grad_norm": 0.23783449828624725, + "learning_rate": 0.0006, + "loss": 3.9788265228271484, + "step": 1407 + }, + { + "epoch": 19.55919615552643, + "grad_norm": 0.24744364619255066, + "learning_rate": 0.0006, + "loss": 3.9559011459350586, + "step": 1408 + }, + { + "epoch": 19.573176059414592, + "grad_norm": 0.24828094244003296, + "learning_rate": 0.0006, + "loss": 3.9663949012756348, + "step": 1409 + }, + { + "epoch": 19.587155963302752, + "grad_norm": 0.2681315541267395, + "learning_rate": 0.0006, + "loss": 3.9581191539764404, + "step": 1410 + }, + { + "epoch": 19.601135867190912, + "grad_norm": 0.2691532373428345, + "learning_rate": 0.0006, + "loss": 3.9832754135131836, + "step": 1411 + }, + { + "epoch": 19.615115771079076, + "grad_norm": 0.2900252640247345, + "learning_rate": 0.0006, + "loss": 3.984365940093994, + "step": 1412 + }, + { + "epoch": 19.629095674967235, + "grad_norm": 0.3194943070411682, + "learning_rate": 0.0006, + "loss": 3.9856505393981934, + "step": 1413 + }, + { + "epoch": 19.643075578855395, + "grad_norm": 0.3029029071331024, + "learning_rate": 0.0006, + "loss": 3.968992233276367, + "step": 1414 + }, + { + "epoch": 19.657055482743555, + "grad_norm": 0.2658176124095917, + "learning_rate": 0.0006, + "loss": 3.995187282562256, + "step": 1415 + }, + { + "epoch": 19.67103538663172, + "grad_norm": 0.26807504892349243, + "learning_rate": 0.0006, + "loss": 3.9756274223327637, + "step": 1416 + }, + { + "epoch": 19.68501529051988, + "grad_norm": 0.27718642354011536, + "learning_rate": 0.0006, + "loss": 3.9510018825531006, + "step": 1417 + }, + { + "epoch": 19.698995194408038, + "grad_norm": 0.26322051882743835, + "learning_rate": 0.0006, + "loss": 3.965155601501465, + "step": 1418 + }, + { + "epoch": 19.712975098296198, + "grad_norm": 0.2566570043563843, + "learning_rate": 0.0006, + "loss": 3.984218120574951, + "step": 1419 + }, + { + "epoch": 19.72695500218436, + "grad_norm": 0.2218743860721588, + "learning_rate": 0.0006, + "loss": 3.9338784217834473, + "step": 1420 + }, + { + "epoch": 19.74093490607252, + "grad_norm": 0.22894173860549927, + "learning_rate": 0.0006, + "loss": 3.9869046211242676, + "step": 1421 + }, + { + "epoch": 19.75491480996068, + "grad_norm": 0.26837027072906494, + "learning_rate": 0.0006, + "loss": 3.96799898147583, + "step": 1422 + }, + { + "epoch": 19.76889471384884, + "grad_norm": 0.2767876982688904, + "learning_rate": 0.0006, + "loss": 3.9431071281433105, + "step": 1423 + }, + { + "epoch": 19.782874617737004, + "grad_norm": 0.24402284622192383, + "learning_rate": 0.0006, + "loss": 3.9631881713867188, + "step": 1424 + }, + { + "epoch": 19.796854521625164, + "grad_norm": 0.23500724136829376, + "learning_rate": 0.0006, + "loss": 3.9943337440490723, + "step": 1425 + }, + { + "epoch": 19.810834425513324, + "grad_norm": 0.22509142756462097, + "learning_rate": 0.0006, + "loss": 3.961226224899292, + "step": 1426 + }, + { + "epoch": 19.824814329401484, + "grad_norm": 0.23524795472621918, + "learning_rate": 0.0006, + "loss": 3.9552102088928223, + "step": 1427 + }, + { + "epoch": 19.838794233289647, + "grad_norm": 0.22307050228118896, + "learning_rate": 0.0006, + "loss": 3.9623494148254395, + "step": 1428 + }, + { + "epoch": 19.852774137177807, + "grad_norm": 0.21144486963748932, + "learning_rate": 0.0006, + "loss": 3.9620237350463867, + "step": 1429 + }, + { + "epoch": 19.866754041065967, + "grad_norm": 0.20249812304973602, + "learning_rate": 0.0006, + "loss": 3.953911066055298, + "step": 1430 + }, + { + "epoch": 19.88073394495413, + "grad_norm": 0.2350354939699173, + "learning_rate": 0.0006, + "loss": 3.9616730213165283, + "step": 1431 + }, + { + "epoch": 19.89471384884229, + "grad_norm": 0.2566683292388916, + "learning_rate": 0.0006, + "loss": 3.9372501373291016, + "step": 1432 + }, + { + "epoch": 19.90869375273045, + "grad_norm": 0.2520846128463745, + "learning_rate": 0.0006, + "loss": 3.9814648628234863, + "step": 1433 + }, + { + "epoch": 19.92267365661861, + "grad_norm": 0.23989640176296234, + "learning_rate": 0.0006, + "loss": 3.9692864418029785, + "step": 1434 + }, + { + "epoch": 19.936653560506773, + "grad_norm": 0.20650425553321838, + "learning_rate": 0.0006, + "loss": 3.960256814956665, + "step": 1435 + }, + { + "epoch": 19.950633464394933, + "grad_norm": 0.20478376746177673, + "learning_rate": 0.0006, + "loss": 3.9585227966308594, + "step": 1436 + }, + { + "epoch": 19.964613368283093, + "grad_norm": 0.234436497092247, + "learning_rate": 0.0006, + "loss": 3.945631742477417, + "step": 1437 + }, + { + "epoch": 19.978593272171253, + "grad_norm": 0.19969749450683594, + "learning_rate": 0.0006, + "loss": 3.9646050930023193, + "step": 1438 + }, + { + "epoch": 19.992573176059416, + "grad_norm": 0.20638690888881683, + "learning_rate": 0.0006, + "loss": 3.9461846351623535, + "step": 1439 + }, + { + "epoch": 20.0, + "grad_norm": 0.2120274156332016, + "learning_rate": 0.0006, + "loss": 3.965153217315674, + "step": 1440 + }, + { + "epoch": 20.0, + "eval_loss": 4.168524742126465, + "eval_runtime": 44.2796, + "eval_samples_per_second": 55.15, + "eval_steps_per_second": 3.455, + "step": 1440 + }, + { + "epoch": 20.01397990388816, + "grad_norm": 0.19704894721508026, + "learning_rate": 0.0006, + "loss": 3.937016248703003, + "step": 1441 + }, + { + "epoch": 20.027959807776323, + "grad_norm": 0.18682368099689484, + "learning_rate": 0.0006, + "loss": 3.895922899246216, + "step": 1442 + }, + { + "epoch": 20.041939711664483, + "grad_norm": 0.18982571363449097, + "learning_rate": 0.0006, + "loss": 3.929841995239258, + "step": 1443 + }, + { + "epoch": 20.055919615552643, + "grad_norm": 0.20811910927295685, + "learning_rate": 0.0006, + "loss": 3.9498324394226074, + "step": 1444 + }, + { + "epoch": 20.069899519440803, + "grad_norm": 0.2149062603712082, + "learning_rate": 0.0006, + "loss": 3.929853916168213, + "step": 1445 + }, + { + "epoch": 20.083879423328966, + "grad_norm": 0.20016685128211975, + "learning_rate": 0.0006, + "loss": 3.9374136924743652, + "step": 1446 + }, + { + "epoch": 20.097859327217126, + "grad_norm": 0.19969616830348969, + "learning_rate": 0.0006, + "loss": 3.932447910308838, + "step": 1447 + }, + { + "epoch": 20.111839231105286, + "grad_norm": 0.2163356989622116, + "learning_rate": 0.0006, + "loss": 3.9325437545776367, + "step": 1448 + }, + { + "epoch": 20.125819134993446, + "grad_norm": 0.22026969492435455, + "learning_rate": 0.0006, + "loss": 3.9118852615356445, + "step": 1449 + }, + { + "epoch": 20.13979903888161, + "grad_norm": 0.23337116837501526, + "learning_rate": 0.0006, + "loss": 3.9416019916534424, + "step": 1450 + }, + { + "epoch": 20.15377894276977, + "grad_norm": 0.23971447348594666, + "learning_rate": 0.0006, + "loss": 3.9416871070861816, + "step": 1451 + }, + { + "epoch": 20.16775884665793, + "grad_norm": 0.25973960757255554, + "learning_rate": 0.0006, + "loss": 3.93826961517334, + "step": 1452 + }, + { + "epoch": 20.18173875054609, + "grad_norm": 0.2303445190191269, + "learning_rate": 0.0006, + "loss": 3.909383535385132, + "step": 1453 + }, + { + "epoch": 20.195718654434252, + "grad_norm": 0.21090206503868103, + "learning_rate": 0.0006, + "loss": 3.935939311981201, + "step": 1454 + }, + { + "epoch": 20.209698558322412, + "grad_norm": 0.2278691977262497, + "learning_rate": 0.0006, + "loss": 3.9623684883117676, + "step": 1455 + }, + { + "epoch": 20.22367846221057, + "grad_norm": 0.22291512787342072, + "learning_rate": 0.0006, + "loss": 3.9386210441589355, + "step": 1456 + }, + { + "epoch": 20.23765836609873, + "grad_norm": 0.2385793924331665, + "learning_rate": 0.0006, + "loss": 3.927365303039551, + "step": 1457 + }, + { + "epoch": 20.251638269986895, + "grad_norm": 0.23949867486953735, + "learning_rate": 0.0006, + "loss": 3.956698179244995, + "step": 1458 + }, + { + "epoch": 20.265618173875055, + "grad_norm": 0.2232269048690796, + "learning_rate": 0.0006, + "loss": 3.9465065002441406, + "step": 1459 + }, + { + "epoch": 20.279598077763215, + "grad_norm": 0.22286680340766907, + "learning_rate": 0.0006, + "loss": 3.9102284908294678, + "step": 1460 + }, + { + "epoch": 20.293577981651374, + "grad_norm": 0.24039050936698914, + "learning_rate": 0.0006, + "loss": 3.928055763244629, + "step": 1461 + }, + { + "epoch": 20.307557885539538, + "grad_norm": 0.2532738447189331, + "learning_rate": 0.0006, + "loss": 3.931753635406494, + "step": 1462 + }, + { + "epoch": 20.321537789427698, + "grad_norm": 0.2206273376941681, + "learning_rate": 0.0006, + "loss": 3.936119556427002, + "step": 1463 + }, + { + "epoch": 20.335517693315857, + "grad_norm": 0.20918945968151093, + "learning_rate": 0.0006, + "loss": 3.9228529930114746, + "step": 1464 + }, + { + "epoch": 20.34949759720402, + "grad_norm": 0.2324502319097519, + "learning_rate": 0.0006, + "loss": 3.9370768070220947, + "step": 1465 + }, + { + "epoch": 20.36347750109218, + "grad_norm": 0.26811033487319946, + "learning_rate": 0.0006, + "loss": 3.968515396118164, + "step": 1466 + }, + { + "epoch": 20.37745740498034, + "grad_norm": 0.2896045744419098, + "learning_rate": 0.0006, + "loss": 3.945124626159668, + "step": 1467 + }, + { + "epoch": 20.3914373088685, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 3.9399516582489014, + "step": 1468 + }, + { + "epoch": 20.405417212756664, + "grad_norm": 0.3076821565628052, + "learning_rate": 0.0006, + "loss": 3.9545583724975586, + "step": 1469 + }, + { + "epoch": 20.419397116644824, + "grad_norm": 0.3019449710845947, + "learning_rate": 0.0006, + "loss": 3.9502270221710205, + "step": 1470 + }, + { + "epoch": 20.433377020532983, + "grad_norm": 0.31832560896873474, + "learning_rate": 0.0006, + "loss": 3.940439224243164, + "step": 1471 + }, + { + "epoch": 20.447356924421143, + "grad_norm": 0.30303657054901123, + "learning_rate": 0.0006, + "loss": 3.9451770782470703, + "step": 1472 + }, + { + "epoch": 20.461336828309307, + "grad_norm": 0.28122979402542114, + "learning_rate": 0.0006, + "loss": 3.934508800506592, + "step": 1473 + }, + { + "epoch": 20.475316732197467, + "grad_norm": 0.27013441920280457, + "learning_rate": 0.0006, + "loss": 3.924323081970215, + "step": 1474 + }, + { + "epoch": 20.489296636085626, + "grad_norm": 0.29052063822746277, + "learning_rate": 0.0006, + "loss": 3.970916748046875, + "step": 1475 + }, + { + "epoch": 20.503276539973786, + "grad_norm": 0.2871626913547516, + "learning_rate": 0.0006, + "loss": 3.945425033569336, + "step": 1476 + }, + { + "epoch": 20.51725644386195, + "grad_norm": 0.2396184206008911, + "learning_rate": 0.0006, + "loss": 3.964290142059326, + "step": 1477 + }, + { + "epoch": 20.53123634775011, + "grad_norm": 0.21942107379436493, + "learning_rate": 0.0006, + "loss": 3.910101890563965, + "step": 1478 + }, + { + "epoch": 20.54521625163827, + "grad_norm": 0.22193685173988342, + "learning_rate": 0.0006, + "loss": 3.914005756378174, + "step": 1479 + }, + { + "epoch": 20.55919615552643, + "grad_norm": 0.20207515358924866, + "learning_rate": 0.0006, + "loss": 3.9575581550598145, + "step": 1480 + }, + { + "epoch": 20.573176059414592, + "grad_norm": 0.17855247855186462, + "learning_rate": 0.0006, + "loss": 3.941490411758423, + "step": 1481 + }, + { + "epoch": 20.587155963302752, + "grad_norm": 0.21268485486507416, + "learning_rate": 0.0006, + "loss": 3.94045352935791, + "step": 1482 + }, + { + "epoch": 20.601135867190912, + "grad_norm": 0.24890053272247314, + "learning_rate": 0.0006, + "loss": 3.932961940765381, + "step": 1483 + }, + { + "epoch": 20.615115771079076, + "grad_norm": 0.23771314322948456, + "learning_rate": 0.0006, + "loss": 3.9067630767822266, + "step": 1484 + }, + { + "epoch": 20.629095674967235, + "grad_norm": 0.20990237593650818, + "learning_rate": 0.0006, + "loss": 3.9476752281188965, + "step": 1485 + }, + { + "epoch": 20.643075578855395, + "grad_norm": 0.20058798789978027, + "learning_rate": 0.0006, + "loss": 3.9350547790527344, + "step": 1486 + }, + { + "epoch": 20.657055482743555, + "grad_norm": 0.1953001767396927, + "learning_rate": 0.0006, + "loss": 3.9437222480773926, + "step": 1487 + }, + { + "epoch": 20.67103538663172, + "grad_norm": 0.18748535215854645, + "learning_rate": 0.0006, + "loss": 3.9336047172546387, + "step": 1488 + }, + { + "epoch": 20.68501529051988, + "grad_norm": 0.18874801695346832, + "learning_rate": 0.0006, + "loss": 3.9042580127716064, + "step": 1489 + }, + { + "epoch": 20.698995194408038, + "grad_norm": 0.1844169795513153, + "learning_rate": 0.0006, + "loss": 3.9302420616149902, + "step": 1490 + }, + { + "epoch": 20.712975098296198, + "grad_norm": 0.18519413471221924, + "learning_rate": 0.0006, + "loss": 3.9527437686920166, + "step": 1491 + }, + { + "epoch": 20.72695500218436, + "grad_norm": 0.20084598660469055, + "learning_rate": 0.0006, + "loss": 3.9161760807037354, + "step": 1492 + }, + { + "epoch": 20.74093490607252, + "grad_norm": 0.2015734612941742, + "learning_rate": 0.0006, + "loss": 3.9466545581817627, + "step": 1493 + }, + { + "epoch": 20.75491480996068, + "grad_norm": 0.2210122048854828, + "learning_rate": 0.0006, + "loss": 3.8994693756103516, + "step": 1494 + }, + { + "epoch": 20.76889471384884, + "grad_norm": 0.23019762337207794, + "learning_rate": 0.0006, + "loss": 3.93685245513916, + "step": 1495 + }, + { + "epoch": 20.782874617737004, + "grad_norm": 0.21246281266212463, + "learning_rate": 0.0006, + "loss": 3.9499399662017822, + "step": 1496 + }, + { + "epoch": 20.796854521625164, + "grad_norm": 0.21142810583114624, + "learning_rate": 0.0006, + "loss": 3.9317150115966797, + "step": 1497 + }, + { + "epoch": 20.810834425513324, + "grad_norm": 0.20230524241924286, + "learning_rate": 0.0006, + "loss": 3.9389750957489014, + "step": 1498 + }, + { + "epoch": 20.824814329401484, + "grad_norm": 0.21096977591514587, + "learning_rate": 0.0006, + "loss": 3.9325194358825684, + "step": 1499 + }, + { + "epoch": 20.838794233289647, + "grad_norm": 0.2309989333152771, + "learning_rate": 0.0006, + "loss": 3.943641185760498, + "step": 1500 + }, + { + "epoch": 20.852774137177807, + "grad_norm": 0.2016306221485138, + "learning_rate": 0.0006, + "loss": 3.986043930053711, + "step": 1501 + }, + { + "epoch": 20.866754041065967, + "grad_norm": 0.2107970118522644, + "learning_rate": 0.0006, + "loss": 3.9219160079956055, + "step": 1502 + }, + { + "epoch": 20.88073394495413, + "grad_norm": 0.21580125391483307, + "learning_rate": 0.0006, + "loss": 3.942014694213867, + "step": 1503 + }, + { + "epoch": 20.89471384884229, + "grad_norm": 0.21348726749420166, + "learning_rate": 0.0006, + "loss": 3.9389920234680176, + "step": 1504 + }, + { + "epoch": 20.90869375273045, + "grad_norm": 0.23094943165779114, + "learning_rate": 0.0006, + "loss": 3.952993392944336, + "step": 1505 + }, + { + "epoch": 20.92267365661861, + "grad_norm": 0.22431740164756775, + "learning_rate": 0.0006, + "loss": 3.897671937942505, + "step": 1506 + }, + { + "epoch": 20.936653560506773, + "grad_norm": 0.20056353509426117, + "learning_rate": 0.0006, + "loss": 3.9100005626678467, + "step": 1507 + }, + { + "epoch": 20.950633464394933, + "grad_norm": 0.20604434609413147, + "learning_rate": 0.0006, + "loss": 3.9486045837402344, + "step": 1508 + }, + { + "epoch": 20.964613368283093, + "grad_norm": 0.22979380190372467, + "learning_rate": 0.0006, + "loss": 3.977163553237915, + "step": 1509 + }, + { + "epoch": 20.978593272171253, + "grad_norm": 0.2421523779630661, + "learning_rate": 0.0006, + "loss": 3.9216256141662598, + "step": 1510 + }, + { + "epoch": 20.992573176059416, + "grad_norm": 0.25776705145835876, + "learning_rate": 0.0006, + "loss": 3.9221739768981934, + "step": 1511 + }, + { + "epoch": 21.0, + "grad_norm": 0.2750694751739502, + "learning_rate": 0.0006, + "loss": 3.938098907470703, + "step": 1512 + }, + { + "epoch": 21.0, + "eval_loss": 4.159763336181641, + "eval_runtime": 44.8663, + "eval_samples_per_second": 54.428, + "eval_steps_per_second": 3.41, + "step": 1512 + }, + { + "epoch": 21.01397990388816, + "grad_norm": 0.24513043463230133, + "learning_rate": 0.0006, + "loss": 3.8939385414123535, + "step": 1513 + }, + { + "epoch": 21.027959807776323, + "grad_norm": 0.22209352254867554, + "learning_rate": 0.0006, + "loss": 3.9044857025146484, + "step": 1514 + }, + { + "epoch": 21.041939711664483, + "grad_norm": 0.22437648475170135, + "learning_rate": 0.0006, + "loss": 3.9325196743011475, + "step": 1515 + }, + { + "epoch": 21.055919615552643, + "grad_norm": 0.21168062090873718, + "learning_rate": 0.0006, + "loss": 3.882176637649536, + "step": 1516 + }, + { + "epoch": 21.069899519440803, + "grad_norm": 0.22334499657154083, + "learning_rate": 0.0006, + "loss": 3.8978934288024902, + "step": 1517 + }, + { + "epoch": 21.083879423328966, + "grad_norm": 0.21038010716438293, + "learning_rate": 0.0006, + "loss": 3.8807029724121094, + "step": 1518 + }, + { + "epoch": 21.097859327217126, + "grad_norm": 0.2243613600730896, + "learning_rate": 0.0006, + "loss": 3.924865961074829, + "step": 1519 + }, + { + "epoch": 21.111839231105286, + "grad_norm": 0.2535616159439087, + "learning_rate": 0.0006, + "loss": 3.9288227558135986, + "step": 1520 + }, + { + "epoch": 21.125819134993446, + "grad_norm": 0.2782756984233856, + "learning_rate": 0.0006, + "loss": 3.908233642578125, + "step": 1521 + }, + { + "epoch": 21.13979903888161, + "grad_norm": 0.2586214542388916, + "learning_rate": 0.0006, + "loss": 3.9151182174682617, + "step": 1522 + }, + { + "epoch": 21.15377894276977, + "grad_norm": 0.22465091943740845, + "learning_rate": 0.0006, + "loss": 3.9209084510803223, + "step": 1523 + }, + { + "epoch": 21.16775884665793, + "grad_norm": 0.2588018774986267, + "learning_rate": 0.0006, + "loss": 3.9295971393585205, + "step": 1524 + }, + { + "epoch": 21.18173875054609, + "grad_norm": 0.2637675702571869, + "learning_rate": 0.0006, + "loss": 3.9353199005126953, + "step": 1525 + }, + { + "epoch": 21.195718654434252, + "grad_norm": 0.2806383967399597, + "learning_rate": 0.0006, + "loss": 3.922337770462036, + "step": 1526 + }, + { + "epoch": 21.209698558322412, + "grad_norm": 0.27103501558303833, + "learning_rate": 0.0006, + "loss": 3.8811073303222656, + "step": 1527 + }, + { + "epoch": 21.22367846221057, + "grad_norm": 0.27203720808029175, + "learning_rate": 0.0006, + "loss": 3.9036178588867188, + "step": 1528 + }, + { + "epoch": 21.23765836609873, + "grad_norm": 0.2783355712890625, + "learning_rate": 0.0006, + "loss": 3.885456085205078, + "step": 1529 + }, + { + "epoch": 21.251638269986895, + "grad_norm": 0.2884930968284607, + "learning_rate": 0.0006, + "loss": 3.8936941623687744, + "step": 1530 + }, + { + "epoch": 21.265618173875055, + "grad_norm": 0.2829558849334717, + "learning_rate": 0.0006, + "loss": 3.927624225616455, + "step": 1531 + }, + { + "epoch": 21.279598077763215, + "grad_norm": 0.2809497117996216, + "learning_rate": 0.0006, + "loss": 3.8896753787994385, + "step": 1532 + }, + { + "epoch": 21.293577981651374, + "grad_norm": 0.27037671208381653, + "learning_rate": 0.0006, + "loss": 3.91316294670105, + "step": 1533 + }, + { + "epoch": 21.307557885539538, + "grad_norm": 0.310051292181015, + "learning_rate": 0.0006, + "loss": 3.9137332439422607, + "step": 1534 + }, + { + "epoch": 21.321537789427698, + "grad_norm": 0.30489876866340637, + "learning_rate": 0.0006, + "loss": 3.9088284969329834, + "step": 1535 + }, + { + "epoch": 21.335517693315857, + "grad_norm": 0.2607756555080414, + "learning_rate": 0.0006, + "loss": 3.9097847938537598, + "step": 1536 + }, + { + "epoch": 21.34949759720402, + "grad_norm": 0.2460775375366211, + "learning_rate": 0.0006, + "loss": 3.941211700439453, + "step": 1537 + }, + { + "epoch": 21.36347750109218, + "grad_norm": 0.24271734058856964, + "learning_rate": 0.0006, + "loss": 3.9140594005584717, + "step": 1538 + }, + { + "epoch": 21.37745740498034, + "grad_norm": 0.20012645423412323, + "learning_rate": 0.0006, + "loss": 3.888446807861328, + "step": 1539 + }, + { + "epoch": 21.3914373088685, + "grad_norm": 0.2196308672428131, + "learning_rate": 0.0006, + "loss": 3.9153785705566406, + "step": 1540 + }, + { + "epoch": 21.405417212756664, + "grad_norm": 0.22184589505195618, + "learning_rate": 0.0006, + "loss": 3.91996431350708, + "step": 1541 + }, + { + "epoch": 21.419397116644824, + "grad_norm": 0.22947315871715546, + "learning_rate": 0.0006, + "loss": 3.9268412590026855, + "step": 1542 + }, + { + "epoch": 21.433377020532983, + "grad_norm": 0.22275054454803467, + "learning_rate": 0.0006, + "loss": 3.909275531768799, + "step": 1543 + }, + { + "epoch": 21.447356924421143, + "grad_norm": 0.23103971779346466, + "learning_rate": 0.0006, + "loss": 3.925635814666748, + "step": 1544 + }, + { + "epoch": 21.461336828309307, + "grad_norm": 0.23379720747470856, + "learning_rate": 0.0006, + "loss": 3.926647186279297, + "step": 1545 + }, + { + "epoch": 21.475316732197467, + "grad_norm": 0.2244282215833664, + "learning_rate": 0.0006, + "loss": 3.9428000450134277, + "step": 1546 + }, + { + "epoch": 21.489296636085626, + "grad_norm": 0.22773298621177673, + "learning_rate": 0.0006, + "loss": 3.9378256797790527, + "step": 1547 + }, + { + "epoch": 21.503276539973786, + "grad_norm": 0.1918657273054123, + "learning_rate": 0.0006, + "loss": 3.904022216796875, + "step": 1548 + }, + { + "epoch": 21.51725644386195, + "grad_norm": 0.18415570259094238, + "learning_rate": 0.0006, + "loss": 3.9105122089385986, + "step": 1549 + }, + { + "epoch": 21.53123634775011, + "grad_norm": 0.22141380608081818, + "learning_rate": 0.0006, + "loss": 3.9153857231140137, + "step": 1550 + }, + { + "epoch": 21.54521625163827, + "grad_norm": 0.22533352673053741, + "learning_rate": 0.0006, + "loss": 3.9148974418640137, + "step": 1551 + }, + { + "epoch": 21.55919615552643, + "grad_norm": 0.2124762088060379, + "learning_rate": 0.0006, + "loss": 3.926311731338501, + "step": 1552 + }, + { + "epoch": 21.573176059414592, + "grad_norm": 0.239680215716362, + "learning_rate": 0.0006, + "loss": 3.9260334968566895, + "step": 1553 + }, + { + "epoch": 21.587155963302752, + "grad_norm": 0.24158740043640137, + "learning_rate": 0.0006, + "loss": 3.933223247528076, + "step": 1554 + }, + { + "epoch": 21.601135867190912, + "grad_norm": 0.2216576784849167, + "learning_rate": 0.0006, + "loss": 3.9065442085266113, + "step": 1555 + }, + { + "epoch": 21.615115771079076, + "grad_norm": 0.20099912583827972, + "learning_rate": 0.0006, + "loss": 3.923278570175171, + "step": 1556 + }, + { + "epoch": 21.629095674967235, + "grad_norm": 0.2337288111448288, + "learning_rate": 0.0006, + "loss": 3.92032527923584, + "step": 1557 + }, + { + "epoch": 21.643075578855395, + "grad_norm": 0.23574814200401306, + "learning_rate": 0.0006, + "loss": 3.896244525909424, + "step": 1558 + }, + { + "epoch": 21.657055482743555, + "grad_norm": 0.21338573098182678, + "learning_rate": 0.0006, + "loss": 3.930345058441162, + "step": 1559 + }, + { + "epoch": 21.67103538663172, + "grad_norm": 0.2375067174434662, + "learning_rate": 0.0006, + "loss": 3.864104986190796, + "step": 1560 + }, + { + "epoch": 21.68501529051988, + "grad_norm": 0.22490349411964417, + "learning_rate": 0.0006, + "loss": 3.883296012878418, + "step": 1561 + }, + { + "epoch": 21.698995194408038, + "grad_norm": 0.23021313548088074, + "learning_rate": 0.0006, + "loss": 3.915200710296631, + "step": 1562 + }, + { + "epoch": 21.712975098296198, + "grad_norm": 0.22590875625610352, + "learning_rate": 0.0006, + "loss": 3.903597354888916, + "step": 1563 + }, + { + "epoch": 21.72695500218436, + "grad_norm": 0.19066260755062103, + "learning_rate": 0.0006, + "loss": 3.9162631034851074, + "step": 1564 + }, + { + "epoch": 21.74093490607252, + "grad_norm": 0.18134327232837677, + "learning_rate": 0.0006, + "loss": 3.9167914390563965, + "step": 1565 + }, + { + "epoch": 21.75491480996068, + "grad_norm": 0.1782190054655075, + "learning_rate": 0.0006, + "loss": 3.900925636291504, + "step": 1566 + }, + { + "epoch": 21.76889471384884, + "grad_norm": 0.19034099578857422, + "learning_rate": 0.0006, + "loss": 3.896559238433838, + "step": 1567 + }, + { + "epoch": 21.782874617737004, + "grad_norm": 0.21509577333927155, + "learning_rate": 0.0006, + "loss": 3.891681671142578, + "step": 1568 + }, + { + "epoch": 21.796854521625164, + "grad_norm": 0.2370351105928421, + "learning_rate": 0.0006, + "loss": 3.886570453643799, + "step": 1569 + }, + { + "epoch": 21.810834425513324, + "grad_norm": 0.25546324253082275, + "learning_rate": 0.0006, + "loss": 3.9247193336486816, + "step": 1570 + }, + { + "epoch": 21.824814329401484, + "grad_norm": 0.2513384222984314, + "learning_rate": 0.0006, + "loss": 3.9120583534240723, + "step": 1571 + }, + { + "epoch": 21.838794233289647, + "grad_norm": 0.24691323935985565, + "learning_rate": 0.0006, + "loss": 3.9144935607910156, + "step": 1572 + }, + { + "epoch": 21.852774137177807, + "grad_norm": 0.2573968172073364, + "learning_rate": 0.0006, + "loss": 3.9517531394958496, + "step": 1573 + }, + { + "epoch": 21.866754041065967, + "grad_norm": 0.25461453199386597, + "learning_rate": 0.0006, + "loss": 3.93508243560791, + "step": 1574 + }, + { + "epoch": 21.88073394495413, + "grad_norm": 0.23756568133831024, + "learning_rate": 0.0006, + "loss": 3.8885269165039062, + "step": 1575 + }, + { + "epoch": 21.89471384884229, + "grad_norm": 0.2193172425031662, + "learning_rate": 0.0006, + "loss": 3.9103426933288574, + "step": 1576 + }, + { + "epoch": 21.90869375273045, + "grad_norm": 0.2350149303674698, + "learning_rate": 0.0006, + "loss": 3.9399590492248535, + "step": 1577 + }, + { + "epoch": 21.92267365661861, + "grad_norm": 0.23759333789348602, + "learning_rate": 0.0006, + "loss": 3.9433584213256836, + "step": 1578 + }, + { + "epoch": 21.936653560506773, + "grad_norm": 0.21108432114124298, + "learning_rate": 0.0006, + "loss": 3.9241819381713867, + "step": 1579 + }, + { + "epoch": 21.950633464394933, + "grad_norm": 0.22088949382305145, + "learning_rate": 0.0006, + "loss": 3.9231910705566406, + "step": 1580 + }, + { + "epoch": 21.964613368283093, + "grad_norm": 0.22125045955181122, + "learning_rate": 0.0006, + "loss": 3.896329164505005, + "step": 1581 + }, + { + "epoch": 21.978593272171253, + "grad_norm": 0.20745202898979187, + "learning_rate": 0.0006, + "loss": 3.8920536041259766, + "step": 1582 + }, + { + "epoch": 21.992573176059416, + "grad_norm": 0.2409721463918686, + "learning_rate": 0.0006, + "loss": 3.9061317443847656, + "step": 1583 + }, + { + "epoch": 22.0, + "grad_norm": 0.2669669985771179, + "learning_rate": 0.0006, + "loss": 3.922062397003174, + "step": 1584 + }, + { + "epoch": 22.0, + "eval_loss": 4.140966415405273, + "eval_runtime": 46.7132, + "eval_samples_per_second": 52.276, + "eval_steps_per_second": 3.275, + "step": 1584 + }, + { + "epoch": 22.01397990388816, + "grad_norm": 0.26155969500541687, + "learning_rate": 0.0006, + "loss": 3.888944625854492, + "step": 1585 + }, + { + "epoch": 22.027959807776323, + "grad_norm": 0.2579149007797241, + "learning_rate": 0.0006, + "loss": 3.8924355506896973, + "step": 1586 + }, + { + "epoch": 22.041939711664483, + "grad_norm": 0.2429896742105484, + "learning_rate": 0.0006, + "loss": 3.8714070320129395, + "step": 1587 + }, + { + "epoch": 22.055919615552643, + "grad_norm": 0.23497673869132996, + "learning_rate": 0.0006, + "loss": 3.905089855194092, + "step": 1588 + }, + { + "epoch": 22.069899519440803, + "grad_norm": 0.24074940383434296, + "learning_rate": 0.0006, + "loss": 3.886845111846924, + "step": 1589 + }, + { + "epoch": 22.083879423328966, + "grad_norm": 0.2226274162530899, + "learning_rate": 0.0006, + "loss": 3.8554329872131348, + "step": 1590 + }, + { + "epoch": 22.097859327217126, + "grad_norm": 0.22924423217773438, + "learning_rate": 0.0006, + "loss": 3.8914356231689453, + "step": 1591 + }, + { + "epoch": 22.111839231105286, + "grad_norm": 0.2459387183189392, + "learning_rate": 0.0006, + "loss": 3.902522087097168, + "step": 1592 + }, + { + "epoch": 22.125819134993446, + "grad_norm": 0.2704590857028961, + "learning_rate": 0.0006, + "loss": 3.896497964859009, + "step": 1593 + }, + { + "epoch": 22.13979903888161, + "grad_norm": 0.2848219871520996, + "learning_rate": 0.0006, + "loss": 3.88423228263855, + "step": 1594 + }, + { + "epoch": 22.15377894276977, + "grad_norm": 0.22996552288532257, + "learning_rate": 0.0006, + "loss": 3.9034953117370605, + "step": 1595 + }, + { + "epoch": 22.16775884665793, + "grad_norm": 0.2117270529270172, + "learning_rate": 0.0006, + "loss": 3.888279914855957, + "step": 1596 + }, + { + "epoch": 22.18173875054609, + "grad_norm": 0.19724160432815552, + "learning_rate": 0.0006, + "loss": 3.860525131225586, + "step": 1597 + }, + { + "epoch": 22.195718654434252, + "grad_norm": 0.2012624740600586, + "learning_rate": 0.0006, + "loss": 3.8930106163024902, + "step": 1598 + }, + { + "epoch": 22.209698558322412, + "grad_norm": 0.20243871212005615, + "learning_rate": 0.0006, + "loss": 3.8727619647979736, + "step": 1599 + }, + { + "epoch": 22.22367846221057, + "grad_norm": 0.21737465262413025, + "learning_rate": 0.0006, + "loss": 3.887969493865967, + "step": 1600 + }, + { + "epoch": 22.23765836609873, + "grad_norm": 0.23969845473766327, + "learning_rate": 0.0006, + "loss": 3.8629722595214844, + "step": 1601 + }, + { + "epoch": 22.251638269986895, + "grad_norm": 0.22874902188777924, + "learning_rate": 0.0006, + "loss": 3.9135584831237793, + "step": 1602 + }, + { + "epoch": 22.265618173875055, + "grad_norm": 0.209506556391716, + "learning_rate": 0.0006, + "loss": 3.8734190464019775, + "step": 1603 + }, + { + "epoch": 22.279598077763215, + "grad_norm": 0.22235789895057678, + "learning_rate": 0.0006, + "loss": 3.884854793548584, + "step": 1604 + }, + { + "epoch": 22.293577981651374, + "grad_norm": 0.21975041925907135, + "learning_rate": 0.0006, + "loss": 3.8860888481140137, + "step": 1605 + }, + { + "epoch": 22.307557885539538, + "grad_norm": 0.21474459767341614, + "learning_rate": 0.0006, + "loss": 3.9052200317382812, + "step": 1606 + }, + { + "epoch": 22.321537789427698, + "grad_norm": 0.2103329747915268, + "learning_rate": 0.0006, + "loss": 3.8516340255737305, + "step": 1607 + }, + { + "epoch": 22.335517693315857, + "grad_norm": 0.1981191635131836, + "learning_rate": 0.0006, + "loss": 3.9017434120178223, + "step": 1608 + }, + { + "epoch": 22.34949759720402, + "grad_norm": 0.20679591596126556, + "learning_rate": 0.0006, + "loss": 3.889885425567627, + "step": 1609 + }, + { + "epoch": 22.36347750109218, + "grad_norm": 0.20809867978096008, + "learning_rate": 0.0006, + "loss": 3.881868362426758, + "step": 1610 + }, + { + "epoch": 22.37745740498034, + "grad_norm": 0.21394680440425873, + "learning_rate": 0.0006, + "loss": 3.89980411529541, + "step": 1611 + }, + { + "epoch": 22.3914373088685, + "grad_norm": 0.2334284782409668, + "learning_rate": 0.0006, + "loss": 3.8672266006469727, + "step": 1612 + }, + { + "epoch": 22.405417212756664, + "grad_norm": 0.26521918177604675, + "learning_rate": 0.0006, + "loss": 3.8918118476867676, + "step": 1613 + }, + { + "epoch": 22.419397116644824, + "grad_norm": 0.2652994394302368, + "learning_rate": 0.0006, + "loss": 3.8683271408081055, + "step": 1614 + }, + { + "epoch": 22.433377020532983, + "grad_norm": 0.2568066716194153, + "learning_rate": 0.0006, + "loss": 3.892523765563965, + "step": 1615 + }, + { + "epoch": 22.447356924421143, + "grad_norm": 0.260052353143692, + "learning_rate": 0.0006, + "loss": 3.897305488586426, + "step": 1616 + }, + { + "epoch": 22.461336828309307, + "grad_norm": 0.2744271457195282, + "learning_rate": 0.0006, + "loss": 3.8962221145629883, + "step": 1617 + }, + { + "epoch": 22.475316732197467, + "grad_norm": 0.23755787312984467, + "learning_rate": 0.0006, + "loss": 3.888184070587158, + "step": 1618 + }, + { + "epoch": 22.489296636085626, + "grad_norm": 0.2515312135219574, + "learning_rate": 0.0006, + "loss": 3.8946003913879395, + "step": 1619 + }, + { + "epoch": 22.503276539973786, + "grad_norm": 0.24835044145584106, + "learning_rate": 0.0006, + "loss": 3.8711423873901367, + "step": 1620 + }, + { + "epoch": 22.51725644386195, + "grad_norm": 0.22615326941013336, + "learning_rate": 0.0006, + "loss": 3.8878846168518066, + "step": 1621 + }, + { + "epoch": 22.53123634775011, + "grad_norm": 0.20482423901557922, + "learning_rate": 0.0006, + "loss": 3.8782598972320557, + "step": 1622 + }, + { + "epoch": 22.54521625163827, + "grad_norm": 0.20436473190784454, + "learning_rate": 0.0006, + "loss": 3.9075279235839844, + "step": 1623 + }, + { + "epoch": 22.55919615552643, + "grad_norm": 0.2066277265548706, + "learning_rate": 0.0006, + "loss": 3.89908766746521, + "step": 1624 + }, + { + "epoch": 22.573176059414592, + "grad_norm": 0.20735307037830353, + "learning_rate": 0.0006, + "loss": 3.865204334259033, + "step": 1625 + }, + { + "epoch": 22.587155963302752, + "grad_norm": 0.20955748856067657, + "learning_rate": 0.0006, + "loss": 3.8835532665252686, + "step": 1626 + }, + { + "epoch": 22.601135867190912, + "grad_norm": 0.21354222297668457, + "learning_rate": 0.0006, + "loss": 3.9012551307678223, + "step": 1627 + }, + { + "epoch": 22.615115771079076, + "grad_norm": 0.2075091004371643, + "learning_rate": 0.0006, + "loss": 3.8733482360839844, + "step": 1628 + }, + { + "epoch": 22.629095674967235, + "grad_norm": 0.20207874476909637, + "learning_rate": 0.0006, + "loss": 3.9193859100341797, + "step": 1629 + }, + { + "epoch": 22.643075578855395, + "grad_norm": 0.21863923966884613, + "learning_rate": 0.0006, + "loss": 3.883518695831299, + "step": 1630 + }, + { + "epoch": 22.657055482743555, + "grad_norm": 0.22117522358894348, + "learning_rate": 0.0006, + "loss": 3.9163284301757812, + "step": 1631 + }, + { + "epoch": 22.67103538663172, + "grad_norm": 0.2078622728586197, + "learning_rate": 0.0006, + "loss": 3.868274688720703, + "step": 1632 + }, + { + "epoch": 22.68501529051988, + "grad_norm": 0.22745893895626068, + "learning_rate": 0.0006, + "loss": 3.9171340465545654, + "step": 1633 + }, + { + "epoch": 22.698995194408038, + "grad_norm": 0.2312736064195633, + "learning_rate": 0.0006, + "loss": 3.9487013816833496, + "step": 1634 + }, + { + "epoch": 22.712975098296198, + "grad_norm": 0.20491497218608856, + "learning_rate": 0.0006, + "loss": 3.91833758354187, + "step": 1635 + }, + { + "epoch": 22.72695500218436, + "grad_norm": 0.1899084597826004, + "learning_rate": 0.0006, + "loss": 3.876225709915161, + "step": 1636 + }, + { + "epoch": 22.74093490607252, + "grad_norm": 0.18581682443618774, + "learning_rate": 0.0006, + "loss": 3.8667988777160645, + "step": 1637 + }, + { + "epoch": 22.75491480996068, + "grad_norm": 0.19855599105358124, + "learning_rate": 0.0006, + "loss": 3.900789260864258, + "step": 1638 + }, + { + "epoch": 22.76889471384884, + "grad_norm": 0.19951458275318146, + "learning_rate": 0.0006, + "loss": 3.8850367069244385, + "step": 1639 + }, + { + "epoch": 22.782874617737004, + "grad_norm": 0.22802744805812836, + "learning_rate": 0.0006, + "loss": 3.9181363582611084, + "step": 1640 + }, + { + "epoch": 22.796854521625164, + "grad_norm": 0.24279919266700745, + "learning_rate": 0.0006, + "loss": 3.8843770027160645, + "step": 1641 + }, + { + "epoch": 22.810834425513324, + "grad_norm": 0.23554913699626923, + "learning_rate": 0.0006, + "loss": 3.8802413940429688, + "step": 1642 + }, + { + "epoch": 22.824814329401484, + "grad_norm": 0.22343270480632782, + "learning_rate": 0.0006, + "loss": 3.8524107933044434, + "step": 1643 + }, + { + "epoch": 22.838794233289647, + "grad_norm": 0.2185724526643753, + "learning_rate": 0.0006, + "loss": 3.9117047786712646, + "step": 1644 + }, + { + "epoch": 22.852774137177807, + "grad_norm": 0.2114841341972351, + "learning_rate": 0.0006, + "loss": 3.90325927734375, + "step": 1645 + }, + { + "epoch": 22.866754041065967, + "grad_norm": 0.21072550117969513, + "learning_rate": 0.0006, + "loss": 3.8988137245178223, + "step": 1646 + }, + { + "epoch": 22.88073394495413, + "grad_norm": 0.2250078171491623, + "learning_rate": 0.0006, + "loss": 3.9201531410217285, + "step": 1647 + }, + { + "epoch": 22.89471384884229, + "grad_norm": 0.20928071439266205, + "learning_rate": 0.0006, + "loss": 3.91666316986084, + "step": 1648 + }, + { + "epoch": 22.90869375273045, + "grad_norm": 0.24096311628818512, + "learning_rate": 0.0006, + "loss": 3.8797364234924316, + "step": 1649 + }, + { + "epoch": 22.92267365661861, + "grad_norm": 0.2591194212436676, + "learning_rate": 0.0006, + "loss": 3.883273124694824, + "step": 1650 + }, + { + "epoch": 22.936653560506773, + "grad_norm": 0.27342668175697327, + "learning_rate": 0.0006, + "loss": 3.8645026683807373, + "step": 1651 + }, + { + "epoch": 22.950633464394933, + "grad_norm": 0.2448573112487793, + "learning_rate": 0.0006, + "loss": 3.9093551635742188, + "step": 1652 + }, + { + "epoch": 22.964613368283093, + "grad_norm": 0.19899503886699677, + "learning_rate": 0.0006, + "loss": 3.9001057147979736, + "step": 1653 + }, + { + "epoch": 22.978593272171253, + "grad_norm": 0.2023746520280838, + "learning_rate": 0.0006, + "loss": 3.886474370956421, + "step": 1654 + }, + { + "epoch": 22.992573176059416, + "grad_norm": 0.19894269108772278, + "learning_rate": 0.0006, + "loss": 3.9004204273223877, + "step": 1655 + }, + { + "epoch": 23.0, + "grad_norm": 0.2401709407567978, + "learning_rate": 0.0006, + "loss": 3.8665566444396973, + "step": 1656 + }, + { + "epoch": 23.0, + "eval_loss": 4.112459659576416, + "eval_runtime": 44.8325, + "eval_samples_per_second": 54.469, + "eval_steps_per_second": 3.413, + "step": 1656 + }, + { + "epoch": 23.01397990388816, + "grad_norm": 0.22662921249866486, + "learning_rate": 0.0006, + "loss": 3.853271961212158, + "step": 1657 + }, + { + "epoch": 23.027959807776323, + "grad_norm": 0.24406856298446655, + "learning_rate": 0.0006, + "loss": 3.8691890239715576, + "step": 1658 + }, + { + "epoch": 23.041939711664483, + "grad_norm": 0.2266651839017868, + "learning_rate": 0.0006, + "loss": 3.838599681854248, + "step": 1659 + }, + { + "epoch": 23.055919615552643, + "grad_norm": 0.22303511202335358, + "learning_rate": 0.0006, + "loss": 3.8678267002105713, + "step": 1660 + }, + { + "epoch": 23.069899519440803, + "grad_norm": 0.2272164225578308, + "learning_rate": 0.0006, + "loss": 3.9045681953430176, + "step": 1661 + }, + { + "epoch": 23.083879423328966, + "grad_norm": 0.25004875659942627, + "learning_rate": 0.0006, + "loss": 3.856503963470459, + "step": 1662 + }, + { + "epoch": 23.097859327217126, + "grad_norm": 0.26016247272491455, + "learning_rate": 0.0006, + "loss": 3.878587007522583, + "step": 1663 + }, + { + "epoch": 23.111839231105286, + "grad_norm": 0.28539901971817017, + "learning_rate": 0.0006, + "loss": 3.864248514175415, + "step": 1664 + }, + { + "epoch": 23.125819134993446, + "grad_norm": 0.27504822611808777, + "learning_rate": 0.0006, + "loss": 3.821448802947998, + "step": 1665 + }, + { + "epoch": 23.13979903888161, + "grad_norm": 0.238910973072052, + "learning_rate": 0.0006, + "loss": 3.8635847568511963, + "step": 1666 + }, + { + "epoch": 23.15377894276977, + "grad_norm": 0.24179652333259583, + "learning_rate": 0.0006, + "loss": 3.8339638710021973, + "step": 1667 + }, + { + "epoch": 23.16775884665793, + "grad_norm": 0.2199544757604599, + "learning_rate": 0.0006, + "loss": 3.868396759033203, + "step": 1668 + }, + { + "epoch": 23.18173875054609, + "grad_norm": 0.1965002566576004, + "learning_rate": 0.0006, + "loss": 3.8761439323425293, + "step": 1669 + }, + { + "epoch": 23.195718654434252, + "grad_norm": 0.20426614582538605, + "learning_rate": 0.0006, + "loss": 3.822899580001831, + "step": 1670 + }, + { + "epoch": 23.209698558322412, + "grad_norm": 0.2197263389825821, + "learning_rate": 0.0006, + "loss": 3.887728452682495, + "step": 1671 + }, + { + "epoch": 23.22367846221057, + "grad_norm": 0.22844573855400085, + "learning_rate": 0.0006, + "loss": 3.8550517559051514, + "step": 1672 + }, + { + "epoch": 23.23765836609873, + "grad_norm": 0.2347746044397354, + "learning_rate": 0.0006, + "loss": 3.903310537338257, + "step": 1673 + }, + { + "epoch": 23.251638269986895, + "grad_norm": 0.24167625606060028, + "learning_rate": 0.0006, + "loss": 3.8397774696350098, + "step": 1674 + }, + { + "epoch": 23.265618173875055, + "grad_norm": 0.2691650688648224, + "learning_rate": 0.0006, + "loss": 3.853254795074463, + "step": 1675 + }, + { + "epoch": 23.279598077763215, + "grad_norm": 0.29421621561050415, + "learning_rate": 0.0006, + "loss": 3.86065411567688, + "step": 1676 + }, + { + "epoch": 23.293577981651374, + "grad_norm": 0.31074345111846924, + "learning_rate": 0.0006, + "loss": 3.8716742992401123, + "step": 1677 + }, + { + "epoch": 23.307557885539538, + "grad_norm": 0.3044569194316864, + "learning_rate": 0.0006, + "loss": 3.8738951683044434, + "step": 1678 + }, + { + "epoch": 23.321537789427698, + "grad_norm": 0.30496764183044434, + "learning_rate": 0.0006, + "loss": 3.884446620941162, + "step": 1679 + }, + { + "epoch": 23.335517693315857, + "grad_norm": 0.31122756004333496, + "learning_rate": 0.0006, + "loss": 3.878495693206787, + "step": 1680 + }, + { + "epoch": 23.34949759720402, + "grad_norm": 0.32268181443214417, + "learning_rate": 0.0006, + "loss": 3.8793649673461914, + "step": 1681 + }, + { + "epoch": 23.36347750109218, + "grad_norm": 0.3297140598297119, + "learning_rate": 0.0006, + "loss": 3.87484073638916, + "step": 1682 + }, + { + "epoch": 23.37745740498034, + "grad_norm": 0.26007479429244995, + "learning_rate": 0.0006, + "loss": 3.8510947227478027, + "step": 1683 + }, + { + "epoch": 23.3914373088685, + "grad_norm": 0.2627335786819458, + "learning_rate": 0.0006, + "loss": 3.8783209323883057, + "step": 1684 + }, + { + "epoch": 23.405417212756664, + "grad_norm": 0.256452739238739, + "learning_rate": 0.0006, + "loss": 3.8594281673431396, + "step": 1685 + }, + { + "epoch": 23.419397116644824, + "grad_norm": 0.23892226815223694, + "learning_rate": 0.0006, + "loss": 3.898951292037964, + "step": 1686 + }, + { + "epoch": 23.433377020532983, + "grad_norm": 0.21625587344169617, + "learning_rate": 0.0006, + "loss": 3.8679966926574707, + "step": 1687 + }, + { + "epoch": 23.447356924421143, + "grad_norm": 0.21924619376659393, + "learning_rate": 0.0006, + "loss": 3.8774075508117676, + "step": 1688 + }, + { + "epoch": 23.461336828309307, + "grad_norm": 0.21500127017498016, + "learning_rate": 0.0006, + "loss": 3.870619297027588, + "step": 1689 + }, + { + "epoch": 23.475316732197467, + "grad_norm": 0.22580556571483612, + "learning_rate": 0.0006, + "loss": 3.887722969055176, + "step": 1690 + }, + { + "epoch": 23.489296636085626, + "grad_norm": 0.2500104308128357, + "learning_rate": 0.0006, + "loss": 3.88789963722229, + "step": 1691 + }, + { + "epoch": 23.503276539973786, + "grad_norm": 0.22462762892246246, + "learning_rate": 0.0006, + "loss": 3.863997459411621, + "step": 1692 + }, + { + "epoch": 23.51725644386195, + "grad_norm": 0.21427781879901886, + "learning_rate": 0.0006, + "loss": 3.8827033042907715, + "step": 1693 + }, + { + "epoch": 23.53123634775011, + "grad_norm": 0.22278577089309692, + "learning_rate": 0.0006, + "loss": 3.8659563064575195, + "step": 1694 + }, + { + "epoch": 23.54521625163827, + "grad_norm": 0.22801144421100616, + "learning_rate": 0.0006, + "loss": 3.9031362533569336, + "step": 1695 + }, + { + "epoch": 23.55919615552643, + "grad_norm": 0.25071898102760315, + "learning_rate": 0.0006, + "loss": 3.887746810913086, + "step": 1696 + }, + { + "epoch": 23.573176059414592, + "grad_norm": 0.2564085125923157, + "learning_rate": 0.0006, + "loss": 3.8918356895446777, + "step": 1697 + }, + { + "epoch": 23.587155963302752, + "grad_norm": 0.24603120982646942, + "learning_rate": 0.0006, + "loss": 3.850416421890259, + "step": 1698 + }, + { + "epoch": 23.601135867190912, + "grad_norm": 0.20539002120494843, + "learning_rate": 0.0006, + "loss": 3.862060070037842, + "step": 1699 + }, + { + "epoch": 23.615115771079076, + "grad_norm": 0.2022249400615692, + "learning_rate": 0.0006, + "loss": 3.899008274078369, + "step": 1700 + }, + { + "epoch": 23.629095674967235, + "grad_norm": 0.2435392290353775, + "learning_rate": 0.0006, + "loss": 3.844388961791992, + "step": 1701 + }, + { + "epoch": 23.643075578855395, + "grad_norm": 0.21146756410598755, + "learning_rate": 0.0006, + "loss": 3.8972439765930176, + "step": 1702 + }, + { + "epoch": 23.657055482743555, + "grad_norm": 0.2025400996208191, + "learning_rate": 0.0006, + "loss": 3.865253448486328, + "step": 1703 + }, + { + "epoch": 23.67103538663172, + "grad_norm": 0.21129970252513885, + "learning_rate": 0.0006, + "loss": 3.8768205642700195, + "step": 1704 + }, + { + "epoch": 23.68501529051988, + "grad_norm": 0.22982284426689148, + "learning_rate": 0.0006, + "loss": 3.8792667388916016, + "step": 1705 + }, + { + "epoch": 23.698995194408038, + "grad_norm": 0.23013733327388763, + "learning_rate": 0.0006, + "loss": 3.880897045135498, + "step": 1706 + }, + { + "epoch": 23.712975098296198, + "grad_norm": 0.2277672290802002, + "learning_rate": 0.0006, + "loss": 3.8738410472869873, + "step": 1707 + }, + { + "epoch": 23.72695500218436, + "grad_norm": 0.2343369573354721, + "learning_rate": 0.0006, + "loss": 3.8587026596069336, + "step": 1708 + }, + { + "epoch": 23.74093490607252, + "grad_norm": 0.23159530758857727, + "learning_rate": 0.0006, + "loss": 3.856306552886963, + "step": 1709 + }, + { + "epoch": 23.75491480996068, + "grad_norm": 0.19541035592556, + "learning_rate": 0.0006, + "loss": 3.8294754028320312, + "step": 1710 + }, + { + "epoch": 23.76889471384884, + "grad_norm": 0.22999322414398193, + "learning_rate": 0.0006, + "loss": 3.882676124572754, + "step": 1711 + }, + { + "epoch": 23.782874617737004, + "grad_norm": 0.23442843556404114, + "learning_rate": 0.0006, + "loss": 3.8887529373168945, + "step": 1712 + }, + { + "epoch": 23.796854521625164, + "grad_norm": 0.22914239764213562, + "learning_rate": 0.0006, + "loss": 3.867673635482788, + "step": 1713 + }, + { + "epoch": 23.810834425513324, + "grad_norm": 0.20683827996253967, + "learning_rate": 0.0006, + "loss": 3.8999581336975098, + "step": 1714 + }, + { + "epoch": 23.824814329401484, + "grad_norm": 0.19281277060508728, + "learning_rate": 0.0006, + "loss": 3.8997726440429688, + "step": 1715 + }, + { + "epoch": 23.838794233289647, + "grad_norm": 0.20058563351631165, + "learning_rate": 0.0006, + "loss": 3.8583860397338867, + "step": 1716 + }, + { + "epoch": 23.852774137177807, + "grad_norm": 0.19856606423854828, + "learning_rate": 0.0006, + "loss": 3.88948392868042, + "step": 1717 + }, + { + "epoch": 23.866754041065967, + "grad_norm": 0.2099323868751526, + "learning_rate": 0.0006, + "loss": 3.878458261489868, + "step": 1718 + }, + { + "epoch": 23.88073394495413, + "grad_norm": 0.22945016622543335, + "learning_rate": 0.0006, + "loss": 3.84116268157959, + "step": 1719 + }, + { + "epoch": 23.89471384884229, + "grad_norm": 0.22646087408065796, + "learning_rate": 0.0006, + "loss": 3.9006617069244385, + "step": 1720 + }, + { + "epoch": 23.90869375273045, + "grad_norm": 0.20282860100269318, + "learning_rate": 0.0006, + "loss": 3.8781144618988037, + "step": 1721 + }, + { + "epoch": 23.92267365661861, + "grad_norm": 0.1918555349111557, + "learning_rate": 0.0006, + "loss": 3.8560891151428223, + "step": 1722 + }, + { + "epoch": 23.936653560506773, + "grad_norm": 0.19286513328552246, + "learning_rate": 0.0006, + "loss": 3.873220920562744, + "step": 1723 + }, + { + "epoch": 23.950633464394933, + "grad_norm": 0.21071338653564453, + "learning_rate": 0.0006, + "loss": 3.9147067070007324, + "step": 1724 + }, + { + "epoch": 23.964613368283093, + "grad_norm": 0.20956715941429138, + "learning_rate": 0.0006, + "loss": 3.8762729167938232, + "step": 1725 + }, + { + "epoch": 23.978593272171253, + "grad_norm": 0.23053105175495148, + "learning_rate": 0.0006, + "loss": 3.873781681060791, + "step": 1726 + }, + { + "epoch": 23.992573176059416, + "grad_norm": 0.2719029486179352, + "learning_rate": 0.0006, + "loss": 3.862342357635498, + "step": 1727 + }, + { + "epoch": 24.0, + "grad_norm": 0.2933610677719116, + "learning_rate": 0.0006, + "loss": 3.8657689094543457, + "step": 1728 + }, + { + "epoch": 24.0, + "eval_loss": 4.0959153175354, + "eval_runtime": 44.3631, + "eval_samples_per_second": 55.046, + "eval_steps_per_second": 3.449, + "step": 1728 + }, + { + "epoch": 24.01397990388816, + "grad_norm": 0.24905365705490112, + "learning_rate": 0.0006, + "loss": 3.838136911392212, + "step": 1729 + }, + { + "epoch": 24.027959807776323, + "grad_norm": 0.25948020815849304, + "learning_rate": 0.0006, + "loss": 3.8581268787384033, + "step": 1730 + }, + { + "epoch": 24.041939711664483, + "grad_norm": 0.24965140223503113, + "learning_rate": 0.0006, + "loss": 3.8628978729248047, + "step": 1731 + }, + { + "epoch": 24.055919615552643, + "grad_norm": 0.23428823053836823, + "learning_rate": 0.0006, + "loss": 3.8188819885253906, + "step": 1732 + }, + { + "epoch": 24.069899519440803, + "grad_norm": 0.22191211581230164, + "learning_rate": 0.0006, + "loss": 3.8616039752960205, + "step": 1733 + }, + { + "epoch": 24.083879423328966, + "grad_norm": 0.20257535576820374, + "learning_rate": 0.0006, + "loss": 3.8632802963256836, + "step": 1734 + }, + { + "epoch": 24.097859327217126, + "grad_norm": 0.20385196805000305, + "learning_rate": 0.0006, + "loss": 3.885817050933838, + "step": 1735 + }, + { + "epoch": 24.111839231105286, + "grad_norm": 0.19921693205833435, + "learning_rate": 0.0006, + "loss": 3.838515043258667, + "step": 1736 + }, + { + "epoch": 24.125819134993446, + "grad_norm": 0.20221556723117828, + "learning_rate": 0.0006, + "loss": 3.8585309982299805, + "step": 1737 + }, + { + "epoch": 24.13979903888161, + "grad_norm": 0.20124691724777222, + "learning_rate": 0.0006, + "loss": 3.81656551361084, + "step": 1738 + }, + { + "epoch": 24.15377894276977, + "grad_norm": 0.1810830533504486, + "learning_rate": 0.0006, + "loss": 3.841783046722412, + "step": 1739 + }, + { + "epoch": 24.16775884665793, + "grad_norm": 0.18414196372032166, + "learning_rate": 0.0006, + "loss": 3.8614797592163086, + "step": 1740 + }, + { + "epoch": 24.18173875054609, + "grad_norm": 0.18930725753307343, + "learning_rate": 0.0006, + "loss": 3.8382534980773926, + "step": 1741 + }, + { + "epoch": 24.195718654434252, + "grad_norm": 0.19658128917217255, + "learning_rate": 0.0006, + "loss": 3.881742477416992, + "step": 1742 + }, + { + "epoch": 24.209698558322412, + "grad_norm": 0.20175589621067047, + "learning_rate": 0.0006, + "loss": 3.8760581016540527, + "step": 1743 + }, + { + "epoch": 24.22367846221057, + "grad_norm": 0.19416265189647675, + "learning_rate": 0.0006, + "loss": 3.8373687267303467, + "step": 1744 + }, + { + "epoch": 24.23765836609873, + "grad_norm": 0.20206521451473236, + "learning_rate": 0.0006, + "loss": 3.8322830200195312, + "step": 1745 + }, + { + "epoch": 24.251638269986895, + "grad_norm": 0.21797429025173187, + "learning_rate": 0.0006, + "loss": 3.849905490875244, + "step": 1746 + }, + { + "epoch": 24.265618173875055, + "grad_norm": 0.21295784413814545, + "learning_rate": 0.0006, + "loss": 3.847714900970459, + "step": 1747 + }, + { + "epoch": 24.279598077763215, + "grad_norm": 0.22023876011371613, + "learning_rate": 0.0006, + "loss": 3.8221592903137207, + "step": 1748 + }, + { + "epoch": 24.293577981651374, + "grad_norm": 0.2125576138496399, + "learning_rate": 0.0006, + "loss": 3.8070976734161377, + "step": 1749 + }, + { + "epoch": 24.307557885539538, + "grad_norm": 0.18673811852931976, + "learning_rate": 0.0006, + "loss": 3.866878032684326, + "step": 1750 + }, + { + "epoch": 24.321537789427698, + "grad_norm": 0.1972627341747284, + "learning_rate": 0.0006, + "loss": 3.846404552459717, + "step": 1751 + }, + { + "epoch": 24.335517693315857, + "grad_norm": 0.21846632659435272, + "learning_rate": 0.0006, + "loss": 3.8528640270233154, + "step": 1752 + }, + { + "epoch": 24.34949759720402, + "grad_norm": 0.22234080731868744, + "learning_rate": 0.0006, + "loss": 3.8268141746520996, + "step": 1753 + }, + { + "epoch": 24.36347750109218, + "grad_norm": 0.23002761602401733, + "learning_rate": 0.0006, + "loss": 3.832444667816162, + "step": 1754 + }, + { + "epoch": 24.37745740498034, + "grad_norm": 0.22526559233665466, + "learning_rate": 0.0006, + "loss": 3.864406108856201, + "step": 1755 + }, + { + "epoch": 24.3914373088685, + "grad_norm": 0.2290039211511612, + "learning_rate": 0.0006, + "loss": 3.8449103832244873, + "step": 1756 + }, + { + "epoch": 24.405417212756664, + "grad_norm": 0.23145617544651031, + "learning_rate": 0.0006, + "loss": 3.8183751106262207, + "step": 1757 + }, + { + "epoch": 24.419397116644824, + "grad_norm": 0.24287554621696472, + "learning_rate": 0.0006, + "loss": 3.809481382369995, + "step": 1758 + }, + { + "epoch": 24.433377020532983, + "grad_norm": 0.2672404646873474, + "learning_rate": 0.0006, + "loss": 3.877800464630127, + "step": 1759 + }, + { + "epoch": 24.447356924421143, + "grad_norm": 0.26292186975479126, + "learning_rate": 0.0006, + "loss": 3.8329367637634277, + "step": 1760 + }, + { + "epoch": 24.461336828309307, + "grad_norm": 0.26235947012901306, + "learning_rate": 0.0006, + "loss": 3.8414158821105957, + "step": 1761 + }, + { + "epoch": 24.475316732197467, + "grad_norm": 0.2638382613658905, + "learning_rate": 0.0006, + "loss": 3.849188804626465, + "step": 1762 + }, + { + "epoch": 24.489296636085626, + "grad_norm": 0.2564602196216583, + "learning_rate": 0.0006, + "loss": 3.865501880645752, + "step": 1763 + }, + { + "epoch": 24.503276539973786, + "grad_norm": 0.21352271735668182, + "learning_rate": 0.0006, + "loss": 3.87910795211792, + "step": 1764 + }, + { + "epoch": 24.51725644386195, + "grad_norm": 0.2470584511756897, + "learning_rate": 0.0006, + "loss": 3.858750343322754, + "step": 1765 + }, + { + "epoch": 24.53123634775011, + "grad_norm": 0.24907536804676056, + "learning_rate": 0.0006, + "loss": 3.8532559871673584, + "step": 1766 + }, + { + "epoch": 24.54521625163827, + "grad_norm": 0.2426205575466156, + "learning_rate": 0.0006, + "loss": 3.8659827709198, + "step": 1767 + }, + { + "epoch": 24.55919615552643, + "grad_norm": 0.23481151461601257, + "learning_rate": 0.0006, + "loss": 3.863948345184326, + "step": 1768 + }, + { + "epoch": 24.573176059414592, + "grad_norm": 0.22717779874801636, + "learning_rate": 0.0006, + "loss": 3.848527193069458, + "step": 1769 + }, + { + "epoch": 24.587155963302752, + "grad_norm": 0.2267129123210907, + "learning_rate": 0.0006, + "loss": 3.8600735664367676, + "step": 1770 + }, + { + "epoch": 24.601135867190912, + "grad_norm": 0.24967710673809052, + "learning_rate": 0.0006, + "loss": 3.84291934967041, + "step": 1771 + }, + { + "epoch": 24.615115771079076, + "grad_norm": 0.25308957695961, + "learning_rate": 0.0006, + "loss": 3.846181631088257, + "step": 1772 + }, + { + "epoch": 24.629095674967235, + "grad_norm": 0.2689298391342163, + "learning_rate": 0.0006, + "loss": 3.8572893142700195, + "step": 1773 + }, + { + "epoch": 24.643075578855395, + "grad_norm": 0.26458555459976196, + "learning_rate": 0.0006, + "loss": 3.8583621978759766, + "step": 1774 + }, + { + "epoch": 24.657055482743555, + "grad_norm": 0.24416811764240265, + "learning_rate": 0.0006, + "loss": 3.8648223876953125, + "step": 1775 + }, + { + "epoch": 24.67103538663172, + "grad_norm": 0.22218526899814606, + "learning_rate": 0.0006, + "loss": 3.839395523071289, + "step": 1776 + }, + { + "epoch": 24.68501529051988, + "grad_norm": 0.2147492915391922, + "learning_rate": 0.0006, + "loss": 3.875734567642212, + "step": 1777 + }, + { + "epoch": 24.698995194408038, + "grad_norm": 0.2346794754266739, + "learning_rate": 0.0006, + "loss": 3.854768991470337, + "step": 1778 + }, + { + "epoch": 24.712975098296198, + "grad_norm": 0.21406520903110504, + "learning_rate": 0.0006, + "loss": 3.8269104957580566, + "step": 1779 + }, + { + "epoch": 24.72695500218436, + "grad_norm": 0.20716224610805511, + "learning_rate": 0.0006, + "loss": 3.8245768547058105, + "step": 1780 + }, + { + "epoch": 24.74093490607252, + "grad_norm": 0.21445901691913605, + "learning_rate": 0.0006, + "loss": 3.8877978324890137, + "step": 1781 + }, + { + "epoch": 24.75491480996068, + "grad_norm": 0.21964985132217407, + "learning_rate": 0.0006, + "loss": 3.8602452278137207, + "step": 1782 + }, + { + "epoch": 24.76889471384884, + "grad_norm": 0.209807351231575, + "learning_rate": 0.0006, + "loss": 3.853428602218628, + "step": 1783 + }, + { + "epoch": 24.782874617737004, + "grad_norm": 0.19564911723136902, + "learning_rate": 0.0006, + "loss": 3.832275867462158, + "step": 1784 + }, + { + "epoch": 24.796854521625164, + "grad_norm": 0.21394333243370056, + "learning_rate": 0.0006, + "loss": 3.8543171882629395, + "step": 1785 + }, + { + "epoch": 24.810834425513324, + "grad_norm": 0.23156948387622833, + "learning_rate": 0.0006, + "loss": 3.8539412021636963, + "step": 1786 + }, + { + "epoch": 24.824814329401484, + "grad_norm": 0.2378678321838379, + "learning_rate": 0.0006, + "loss": 3.8409833908081055, + "step": 1787 + }, + { + "epoch": 24.838794233289647, + "grad_norm": 0.23816189169883728, + "learning_rate": 0.0006, + "loss": 3.855379581451416, + "step": 1788 + }, + { + "epoch": 24.852774137177807, + "grad_norm": 0.23109886050224304, + "learning_rate": 0.0006, + "loss": 3.8689517974853516, + "step": 1789 + }, + { + "epoch": 24.866754041065967, + "grad_norm": 0.2042883038520813, + "learning_rate": 0.0006, + "loss": 3.8730404376983643, + "step": 1790 + }, + { + "epoch": 24.88073394495413, + "grad_norm": 0.2039479911327362, + "learning_rate": 0.0006, + "loss": 3.8474984169006348, + "step": 1791 + }, + { + "epoch": 24.89471384884229, + "grad_norm": 0.213027223944664, + "learning_rate": 0.0006, + "loss": 3.8539695739746094, + "step": 1792 + }, + { + "epoch": 24.90869375273045, + "grad_norm": 0.2280654013156891, + "learning_rate": 0.0006, + "loss": 3.8633079528808594, + "step": 1793 + }, + { + "epoch": 24.92267365661861, + "grad_norm": 0.20864921808242798, + "learning_rate": 0.0006, + "loss": 3.8110368251800537, + "step": 1794 + }, + { + "epoch": 24.936653560506773, + "grad_norm": 0.23002111911773682, + "learning_rate": 0.0006, + "loss": 3.8334741592407227, + "step": 1795 + }, + { + "epoch": 24.950633464394933, + "grad_norm": 0.232331782579422, + "learning_rate": 0.0006, + "loss": 3.871887683868408, + "step": 1796 + }, + { + "epoch": 24.964613368283093, + "grad_norm": 0.24141235649585724, + "learning_rate": 0.0006, + "loss": 3.8614959716796875, + "step": 1797 + }, + { + "epoch": 24.978593272171253, + "grad_norm": 0.2545177638530731, + "learning_rate": 0.0006, + "loss": 3.8563568592071533, + "step": 1798 + }, + { + "epoch": 24.992573176059416, + "grad_norm": 0.25186386704444885, + "learning_rate": 0.0006, + "loss": 3.882166862487793, + "step": 1799 + }, + { + "epoch": 25.0, + "grad_norm": 0.260195791721344, + "learning_rate": 0.0006, + "loss": 3.884554862976074, + "step": 1800 + }, + { + "epoch": 25.0, + "eval_loss": 4.08809757232666, + "eval_runtime": 44.7947, + "eval_samples_per_second": 54.515, + "eval_steps_per_second": 3.416, + "step": 1800 + }, + { + "epoch": 25.01397990388816, + "grad_norm": 0.25396403670310974, + "learning_rate": 0.0006, + "loss": 3.8217287063598633, + "step": 1801 + }, + { + "epoch": 25.027959807776323, + "grad_norm": 0.2773195207118988, + "learning_rate": 0.0006, + "loss": 3.809542417526245, + "step": 1802 + }, + { + "epoch": 25.041939711664483, + "grad_norm": 0.3073263168334961, + "learning_rate": 0.0006, + "loss": 3.825706958770752, + "step": 1803 + }, + { + "epoch": 25.055919615552643, + "grad_norm": 0.30885398387908936, + "learning_rate": 0.0006, + "loss": 3.8081188201904297, + "step": 1804 + }, + { + "epoch": 25.069899519440803, + "grad_norm": 0.27356019616127014, + "learning_rate": 0.0006, + "loss": 3.8538241386413574, + "step": 1805 + }, + { + "epoch": 25.083879423328966, + "grad_norm": 0.22830164432525635, + "learning_rate": 0.0006, + "loss": 3.8246965408325195, + "step": 1806 + }, + { + "epoch": 25.097859327217126, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.8552842140197754, + "step": 1807 + }, + { + "epoch": 25.111839231105286, + "grad_norm": 0.21718722581863403, + "learning_rate": 0.0006, + "loss": 3.8489418029785156, + "step": 1808 + }, + { + "epoch": 25.125819134993446, + "grad_norm": 0.2480861395597458, + "learning_rate": 0.0006, + "loss": 3.821455955505371, + "step": 1809 + }, + { + "epoch": 25.13979903888161, + "grad_norm": 0.2796635627746582, + "learning_rate": 0.0006, + "loss": 3.8202435970306396, + "step": 1810 + }, + { + "epoch": 25.15377894276977, + "grad_norm": 0.2829958200454712, + "learning_rate": 0.0006, + "loss": 3.8293306827545166, + "step": 1811 + }, + { + "epoch": 25.16775884665793, + "grad_norm": 0.2510125935077667, + "learning_rate": 0.0006, + "loss": 3.8342957496643066, + "step": 1812 + }, + { + "epoch": 25.18173875054609, + "grad_norm": 0.22923722863197327, + "learning_rate": 0.0006, + "loss": 3.8448352813720703, + "step": 1813 + }, + { + "epoch": 25.195718654434252, + "grad_norm": 0.21439228951931, + "learning_rate": 0.0006, + "loss": 3.8343517780303955, + "step": 1814 + }, + { + "epoch": 25.209698558322412, + "grad_norm": 0.1965373307466507, + "learning_rate": 0.0006, + "loss": 3.8163528442382812, + "step": 1815 + }, + { + "epoch": 25.22367846221057, + "grad_norm": 0.20121058821678162, + "learning_rate": 0.0006, + "loss": 3.8007280826568604, + "step": 1816 + }, + { + "epoch": 25.23765836609873, + "grad_norm": 0.21383272111415863, + "learning_rate": 0.0006, + "loss": 3.8200385570526123, + "step": 1817 + }, + { + "epoch": 25.251638269986895, + "grad_norm": 0.2066601663827896, + "learning_rate": 0.0006, + "loss": 3.8333921432495117, + "step": 1818 + }, + { + "epoch": 25.265618173875055, + "grad_norm": 0.2104874551296234, + "learning_rate": 0.0006, + "loss": 3.838012218475342, + "step": 1819 + }, + { + "epoch": 25.279598077763215, + "grad_norm": 0.19733119010925293, + "learning_rate": 0.0006, + "loss": 3.835139274597168, + "step": 1820 + }, + { + "epoch": 25.293577981651374, + "grad_norm": 0.2119498997926712, + "learning_rate": 0.0006, + "loss": 3.8099722862243652, + "step": 1821 + }, + { + "epoch": 25.307557885539538, + "grad_norm": 0.21863529086112976, + "learning_rate": 0.0006, + "loss": 3.7801573276519775, + "step": 1822 + }, + { + "epoch": 25.321537789427698, + "grad_norm": 0.2113322764635086, + "learning_rate": 0.0006, + "loss": 3.809903621673584, + "step": 1823 + }, + { + "epoch": 25.335517693315857, + "grad_norm": 0.21594023704528809, + "learning_rate": 0.0006, + "loss": 3.8485071659088135, + "step": 1824 + }, + { + "epoch": 25.34949759720402, + "grad_norm": 0.21475964784622192, + "learning_rate": 0.0006, + "loss": 3.7894768714904785, + "step": 1825 + }, + { + "epoch": 25.36347750109218, + "grad_norm": 0.21174900233745575, + "learning_rate": 0.0006, + "loss": 3.821711540222168, + "step": 1826 + }, + { + "epoch": 25.37745740498034, + "grad_norm": 0.2065584659576416, + "learning_rate": 0.0006, + "loss": 3.8439841270446777, + "step": 1827 + }, + { + "epoch": 25.3914373088685, + "grad_norm": 0.19157007336616516, + "learning_rate": 0.0006, + "loss": 3.864245891571045, + "step": 1828 + }, + { + "epoch": 25.405417212756664, + "grad_norm": 0.19983816146850586, + "learning_rate": 0.0006, + "loss": 3.8317415714263916, + "step": 1829 + }, + { + "epoch": 25.419397116644824, + "grad_norm": 0.20506152510643005, + "learning_rate": 0.0006, + "loss": 3.8009896278381348, + "step": 1830 + }, + { + "epoch": 25.433377020532983, + "grad_norm": 0.19056960940361023, + "learning_rate": 0.0006, + "loss": 3.8383498191833496, + "step": 1831 + }, + { + "epoch": 25.447356924421143, + "grad_norm": 0.19262190163135529, + "learning_rate": 0.0006, + "loss": 3.838902235031128, + "step": 1832 + }, + { + "epoch": 25.461336828309307, + "grad_norm": 0.19859355688095093, + "learning_rate": 0.0006, + "loss": 3.82452392578125, + "step": 1833 + }, + { + "epoch": 25.475316732197467, + "grad_norm": 0.2144225388765335, + "learning_rate": 0.0006, + "loss": 3.8110032081604004, + "step": 1834 + }, + { + "epoch": 25.489296636085626, + "grad_norm": 0.20566298067569733, + "learning_rate": 0.0006, + "loss": 3.8662471771240234, + "step": 1835 + }, + { + "epoch": 25.503276539973786, + "grad_norm": 0.2071852684020996, + "learning_rate": 0.0006, + "loss": 3.821134090423584, + "step": 1836 + }, + { + "epoch": 25.51725644386195, + "grad_norm": 0.2095036506652832, + "learning_rate": 0.0006, + "loss": 3.824092388153076, + "step": 1837 + }, + { + "epoch": 25.53123634775011, + "grad_norm": 0.20136208832263947, + "learning_rate": 0.0006, + "loss": 3.8669862747192383, + "step": 1838 + }, + { + "epoch": 25.54521625163827, + "grad_norm": 0.1983811855316162, + "learning_rate": 0.0006, + "loss": 3.8120107650756836, + "step": 1839 + }, + { + "epoch": 25.55919615552643, + "grad_norm": 0.22859714925289154, + "learning_rate": 0.0006, + "loss": 3.8519299030303955, + "step": 1840 + }, + { + "epoch": 25.573176059414592, + "grad_norm": 0.23672667145729065, + "learning_rate": 0.0006, + "loss": 3.8245458602905273, + "step": 1841 + }, + { + "epoch": 25.587155963302752, + "grad_norm": 0.22698380053043365, + "learning_rate": 0.0006, + "loss": 3.8406805992126465, + "step": 1842 + }, + { + "epoch": 25.601135867190912, + "grad_norm": 0.25684037804603577, + "learning_rate": 0.0006, + "loss": 3.8584351539611816, + "step": 1843 + }, + { + "epoch": 25.615115771079076, + "grad_norm": 0.28180673718452454, + "learning_rate": 0.0006, + "loss": 3.8085098266601562, + "step": 1844 + }, + { + "epoch": 25.629095674967235, + "grad_norm": 0.2814631462097168, + "learning_rate": 0.0006, + "loss": 3.845083236694336, + "step": 1845 + }, + { + "epoch": 25.643075578855395, + "grad_norm": 0.23630981147289276, + "learning_rate": 0.0006, + "loss": 3.847749710083008, + "step": 1846 + }, + { + "epoch": 25.657055482743555, + "grad_norm": 0.22463662922382355, + "learning_rate": 0.0006, + "loss": 3.8172082901000977, + "step": 1847 + }, + { + "epoch": 25.67103538663172, + "grad_norm": 0.26551681756973267, + "learning_rate": 0.0006, + "loss": 3.8205654621124268, + "step": 1848 + }, + { + "epoch": 25.68501529051988, + "grad_norm": 0.27824243903160095, + "learning_rate": 0.0006, + "loss": 3.846076011657715, + "step": 1849 + }, + { + "epoch": 25.698995194408038, + "grad_norm": 0.266998291015625, + "learning_rate": 0.0006, + "loss": 3.8543574810028076, + "step": 1850 + }, + { + "epoch": 25.712975098296198, + "grad_norm": 0.22980351746082306, + "learning_rate": 0.0006, + "loss": 3.855511426925659, + "step": 1851 + }, + { + "epoch": 25.72695500218436, + "grad_norm": 0.23482872545719147, + "learning_rate": 0.0006, + "loss": 3.8687663078308105, + "step": 1852 + }, + { + "epoch": 25.74093490607252, + "grad_norm": 0.21119585633277893, + "learning_rate": 0.0006, + "loss": 3.8147101402282715, + "step": 1853 + }, + { + "epoch": 25.75491480996068, + "grad_norm": 0.21200446784496307, + "learning_rate": 0.0006, + "loss": 3.858473777770996, + "step": 1854 + }, + { + "epoch": 25.76889471384884, + "grad_norm": 0.20497842133045197, + "learning_rate": 0.0006, + "loss": 3.8545501232147217, + "step": 1855 + }, + { + "epoch": 25.782874617737004, + "grad_norm": 0.19328081607818604, + "learning_rate": 0.0006, + "loss": 3.7941341400146484, + "step": 1856 + }, + { + "epoch": 25.796854521625164, + "grad_norm": 0.2191578894853592, + "learning_rate": 0.0006, + "loss": 3.8408665657043457, + "step": 1857 + }, + { + "epoch": 25.810834425513324, + "grad_norm": 0.2548826038837433, + "learning_rate": 0.0006, + "loss": 3.854130744934082, + "step": 1858 + }, + { + "epoch": 25.824814329401484, + "grad_norm": 0.2290351390838623, + "learning_rate": 0.0006, + "loss": 3.8680176734924316, + "step": 1859 + }, + { + "epoch": 25.838794233289647, + "grad_norm": 0.20760944485664368, + "learning_rate": 0.0006, + "loss": 3.83731746673584, + "step": 1860 + }, + { + "epoch": 25.852774137177807, + "grad_norm": 0.19587582349777222, + "learning_rate": 0.0006, + "loss": 3.8173444271087646, + "step": 1861 + }, + { + "epoch": 25.866754041065967, + "grad_norm": 0.20762693881988525, + "learning_rate": 0.0006, + "loss": 3.8479790687561035, + "step": 1862 + }, + { + "epoch": 25.88073394495413, + "grad_norm": 0.20633186399936676, + "learning_rate": 0.0006, + "loss": 3.852285385131836, + "step": 1863 + }, + { + "epoch": 25.89471384884229, + "grad_norm": 0.21484960615634918, + "learning_rate": 0.0006, + "loss": 3.832592725753784, + "step": 1864 + }, + { + "epoch": 25.90869375273045, + "grad_norm": 0.19569595158100128, + "learning_rate": 0.0006, + "loss": 3.838071584701538, + "step": 1865 + }, + { + "epoch": 25.92267365661861, + "grad_norm": 0.19532904028892517, + "learning_rate": 0.0006, + "loss": 3.854252815246582, + "step": 1866 + }, + { + "epoch": 25.936653560506773, + "grad_norm": 0.1909649819135666, + "learning_rate": 0.0006, + "loss": 3.8444578647613525, + "step": 1867 + }, + { + "epoch": 25.950633464394933, + "grad_norm": 0.17476283013820648, + "learning_rate": 0.0006, + "loss": 3.836519241333008, + "step": 1868 + }, + { + "epoch": 25.964613368283093, + "grad_norm": 0.1895206719636917, + "learning_rate": 0.0006, + "loss": 3.8282582759857178, + "step": 1869 + }, + { + "epoch": 25.978593272171253, + "grad_norm": 0.20038437843322754, + "learning_rate": 0.0006, + "loss": 3.80542254447937, + "step": 1870 + }, + { + "epoch": 25.992573176059416, + "grad_norm": 0.20728608965873718, + "learning_rate": 0.0006, + "loss": 3.8584811687469482, + "step": 1871 + }, + { + "epoch": 26.0, + "grad_norm": 0.22110891342163086, + "learning_rate": 0.0006, + "loss": 3.8020238876342773, + "step": 1872 + }, + { + "epoch": 26.0, + "eval_loss": 4.072164058685303, + "eval_runtime": 44.9089, + "eval_samples_per_second": 54.377, + "eval_steps_per_second": 3.407, + "step": 1872 + }, + { + "epoch": 26.01397990388816, + "grad_norm": 0.2222519814968109, + "learning_rate": 0.0006, + "loss": 3.8309168815612793, + "step": 1873 + }, + { + "epoch": 26.027959807776323, + "grad_norm": 0.2637656033039093, + "learning_rate": 0.0006, + "loss": 3.8025143146514893, + "step": 1874 + }, + { + "epoch": 26.041939711664483, + "grad_norm": 0.2665974795818329, + "learning_rate": 0.0006, + "loss": 3.8244004249572754, + "step": 1875 + }, + { + "epoch": 26.055919615552643, + "grad_norm": 0.22475720942020416, + "learning_rate": 0.0006, + "loss": 3.80039119720459, + "step": 1876 + }, + { + "epoch": 26.069899519440803, + "grad_norm": 0.22994336485862732, + "learning_rate": 0.0006, + "loss": 3.7700726985931396, + "step": 1877 + }, + { + "epoch": 26.083879423328966, + "grad_norm": 0.24214622378349304, + "learning_rate": 0.0006, + "loss": 3.818725109100342, + "step": 1878 + }, + { + "epoch": 26.097859327217126, + "grad_norm": 0.22701293230056763, + "learning_rate": 0.0006, + "loss": 3.833803176879883, + "step": 1879 + }, + { + "epoch": 26.111839231105286, + "grad_norm": 0.21452295780181885, + "learning_rate": 0.0006, + "loss": 3.8391427993774414, + "step": 1880 + }, + { + "epoch": 26.125819134993446, + "grad_norm": 0.20179636776447296, + "learning_rate": 0.0006, + "loss": 3.802957057952881, + "step": 1881 + }, + { + "epoch": 26.13979903888161, + "grad_norm": 0.2087477445602417, + "learning_rate": 0.0006, + "loss": 3.8339905738830566, + "step": 1882 + }, + { + "epoch": 26.15377894276977, + "grad_norm": 0.23583556711673737, + "learning_rate": 0.0006, + "loss": 3.802438259124756, + "step": 1883 + }, + { + "epoch": 26.16775884665793, + "grad_norm": 0.2504311501979828, + "learning_rate": 0.0006, + "loss": 3.80244517326355, + "step": 1884 + }, + { + "epoch": 26.18173875054609, + "grad_norm": 0.24903984367847443, + "learning_rate": 0.0006, + "loss": 3.788865566253662, + "step": 1885 + }, + { + "epoch": 26.195718654434252, + "grad_norm": 0.2707931101322174, + "learning_rate": 0.0006, + "loss": 3.800051212310791, + "step": 1886 + }, + { + "epoch": 26.209698558322412, + "grad_norm": 0.24902892112731934, + "learning_rate": 0.0006, + "loss": 3.8068337440490723, + "step": 1887 + }, + { + "epoch": 26.22367846221057, + "grad_norm": 0.22655536234378815, + "learning_rate": 0.0006, + "loss": 3.779439926147461, + "step": 1888 + }, + { + "epoch": 26.23765836609873, + "grad_norm": 0.24797996878623962, + "learning_rate": 0.0006, + "loss": 3.822831153869629, + "step": 1889 + }, + { + "epoch": 26.251638269986895, + "grad_norm": 0.2821420431137085, + "learning_rate": 0.0006, + "loss": 3.807954788208008, + "step": 1890 + }, + { + "epoch": 26.265618173875055, + "grad_norm": 0.30392691493034363, + "learning_rate": 0.0006, + "loss": 3.776951789855957, + "step": 1891 + }, + { + "epoch": 26.279598077763215, + "grad_norm": 0.32641273736953735, + "learning_rate": 0.0006, + "loss": 3.8216311931610107, + "step": 1892 + }, + { + "epoch": 26.293577981651374, + "grad_norm": 0.32674387097358704, + "learning_rate": 0.0006, + "loss": 3.815596580505371, + "step": 1893 + }, + { + "epoch": 26.307557885539538, + "grad_norm": 0.29137250781059265, + "learning_rate": 0.0006, + "loss": 3.8170812129974365, + "step": 1894 + }, + { + "epoch": 26.321537789427698, + "grad_norm": 0.24291734397411346, + "learning_rate": 0.0006, + "loss": 3.810352087020874, + "step": 1895 + }, + { + "epoch": 26.335517693315857, + "grad_norm": 0.24023209512233734, + "learning_rate": 0.0006, + "loss": 3.8075947761535645, + "step": 1896 + }, + { + "epoch": 26.34949759720402, + "grad_norm": 0.24334804713726044, + "learning_rate": 0.0006, + "loss": 3.831556797027588, + "step": 1897 + }, + { + "epoch": 26.36347750109218, + "grad_norm": 0.2109663337469101, + "learning_rate": 0.0006, + "loss": 3.838347911834717, + "step": 1898 + }, + { + "epoch": 26.37745740498034, + "grad_norm": 0.19668002426624298, + "learning_rate": 0.0006, + "loss": 3.774737596511841, + "step": 1899 + }, + { + "epoch": 26.3914373088685, + "grad_norm": 0.21329134702682495, + "learning_rate": 0.0006, + "loss": 3.8237252235412598, + "step": 1900 + }, + { + "epoch": 26.405417212756664, + "grad_norm": 0.20381781458854675, + "learning_rate": 0.0006, + "loss": 3.802569627761841, + "step": 1901 + }, + { + "epoch": 26.419397116644824, + "grad_norm": 0.19083160161972046, + "learning_rate": 0.0006, + "loss": 3.8301358222961426, + "step": 1902 + }, + { + "epoch": 26.433377020532983, + "grad_norm": 0.20012904703617096, + "learning_rate": 0.0006, + "loss": 3.7966408729553223, + "step": 1903 + }, + { + "epoch": 26.447356924421143, + "grad_norm": 0.19483457505702972, + "learning_rate": 0.0006, + "loss": 3.8431968688964844, + "step": 1904 + }, + { + "epoch": 26.461336828309307, + "grad_norm": 0.19946353137493134, + "learning_rate": 0.0006, + "loss": 3.8023815155029297, + "step": 1905 + }, + { + "epoch": 26.475316732197467, + "grad_norm": 0.1984100341796875, + "learning_rate": 0.0006, + "loss": 3.8283071517944336, + "step": 1906 + }, + { + "epoch": 26.489296636085626, + "grad_norm": 0.2148299664258957, + "learning_rate": 0.0006, + "loss": 3.8377504348754883, + "step": 1907 + }, + { + "epoch": 26.503276539973786, + "grad_norm": 0.22139184176921844, + "learning_rate": 0.0006, + "loss": 3.823051691055298, + "step": 1908 + }, + { + "epoch": 26.51725644386195, + "grad_norm": 0.18289034068584442, + "learning_rate": 0.0006, + "loss": 3.8027071952819824, + "step": 1909 + }, + { + "epoch": 26.53123634775011, + "grad_norm": 0.1816026121377945, + "learning_rate": 0.0006, + "loss": 3.823786735534668, + "step": 1910 + }, + { + "epoch": 26.54521625163827, + "grad_norm": 0.19074322283267975, + "learning_rate": 0.0006, + "loss": 3.813331127166748, + "step": 1911 + }, + { + "epoch": 26.55919615552643, + "grad_norm": 0.20301467180252075, + "learning_rate": 0.0006, + "loss": 3.8218350410461426, + "step": 1912 + }, + { + "epoch": 26.573176059414592, + "grad_norm": 0.25266432762145996, + "learning_rate": 0.0006, + "loss": 3.8455142974853516, + "step": 1913 + }, + { + "epoch": 26.587155963302752, + "grad_norm": 0.25804755091667175, + "learning_rate": 0.0006, + "loss": 3.799227476119995, + "step": 1914 + }, + { + "epoch": 26.601135867190912, + "grad_norm": 0.2555372416973114, + "learning_rate": 0.0006, + "loss": 3.8125686645507812, + "step": 1915 + }, + { + "epoch": 26.615115771079076, + "grad_norm": 0.2266194075345993, + "learning_rate": 0.0006, + "loss": 3.858363628387451, + "step": 1916 + }, + { + "epoch": 26.629095674967235, + "grad_norm": 0.1933048665523529, + "learning_rate": 0.0006, + "loss": 3.8078083992004395, + "step": 1917 + }, + { + "epoch": 26.643075578855395, + "grad_norm": 0.19936731457710266, + "learning_rate": 0.0006, + "loss": 3.81748628616333, + "step": 1918 + }, + { + "epoch": 26.657055482743555, + "grad_norm": 0.22041693329811096, + "learning_rate": 0.0006, + "loss": 3.833272933959961, + "step": 1919 + }, + { + "epoch": 26.67103538663172, + "grad_norm": 0.20679150521755219, + "learning_rate": 0.0006, + "loss": 3.8127288818359375, + "step": 1920 + }, + { + "epoch": 26.68501529051988, + "grad_norm": 0.21545100212097168, + "learning_rate": 0.0006, + "loss": 3.816051483154297, + "step": 1921 + }, + { + "epoch": 26.698995194408038, + "grad_norm": 0.23554518818855286, + "learning_rate": 0.0006, + "loss": 3.8180980682373047, + "step": 1922 + }, + { + "epoch": 26.712975098296198, + "grad_norm": 0.21942466497421265, + "learning_rate": 0.0006, + "loss": 3.803107976913452, + "step": 1923 + }, + { + "epoch": 26.72695500218436, + "grad_norm": 0.22335010766983032, + "learning_rate": 0.0006, + "loss": 3.847890853881836, + "step": 1924 + }, + { + "epoch": 26.74093490607252, + "grad_norm": 0.24731314182281494, + "learning_rate": 0.0006, + "loss": 3.7945008277893066, + "step": 1925 + }, + { + "epoch": 26.75491480996068, + "grad_norm": 0.2804568111896515, + "learning_rate": 0.0006, + "loss": 3.8400068283081055, + "step": 1926 + }, + { + "epoch": 26.76889471384884, + "grad_norm": 0.28787222504615784, + "learning_rate": 0.0006, + "loss": 3.839771270751953, + "step": 1927 + }, + { + "epoch": 26.782874617737004, + "grad_norm": 0.2949632406234741, + "learning_rate": 0.0006, + "loss": 3.8225326538085938, + "step": 1928 + }, + { + "epoch": 26.796854521625164, + "grad_norm": 0.31546032428741455, + "learning_rate": 0.0006, + "loss": 3.8182597160339355, + "step": 1929 + }, + { + "epoch": 26.810834425513324, + "grad_norm": 0.2956962585449219, + "learning_rate": 0.0006, + "loss": 3.8315680027008057, + "step": 1930 + }, + { + "epoch": 26.824814329401484, + "grad_norm": 0.26943835616111755, + "learning_rate": 0.0006, + "loss": 3.787720203399658, + "step": 1931 + }, + { + "epoch": 26.838794233289647, + "grad_norm": 0.24272359907627106, + "learning_rate": 0.0006, + "loss": 3.7973692417144775, + "step": 1932 + }, + { + "epoch": 26.852774137177807, + "grad_norm": 0.20553994178771973, + "learning_rate": 0.0006, + "loss": 3.8241593837738037, + "step": 1933 + }, + { + "epoch": 26.866754041065967, + "grad_norm": 0.21927912533283234, + "learning_rate": 0.0006, + "loss": 3.8608899116516113, + "step": 1934 + }, + { + "epoch": 26.88073394495413, + "grad_norm": 0.22878016531467438, + "learning_rate": 0.0006, + "loss": 3.8341972827911377, + "step": 1935 + }, + { + "epoch": 26.89471384884229, + "grad_norm": 0.2085554301738739, + "learning_rate": 0.0006, + "loss": 3.8261351585388184, + "step": 1936 + }, + { + "epoch": 26.90869375273045, + "grad_norm": 0.21259072422981262, + "learning_rate": 0.0006, + "loss": 3.862056255340576, + "step": 1937 + }, + { + "epoch": 26.92267365661861, + "grad_norm": 0.21354122459888458, + "learning_rate": 0.0006, + "loss": 3.80879545211792, + "step": 1938 + }, + { + "epoch": 26.936653560506773, + "grad_norm": 0.2350253462791443, + "learning_rate": 0.0006, + "loss": 3.817826271057129, + "step": 1939 + }, + { + "epoch": 26.950633464394933, + "grad_norm": 0.23833836615085602, + "learning_rate": 0.0006, + "loss": 3.8220884799957275, + "step": 1940 + }, + { + "epoch": 26.964613368283093, + "grad_norm": 0.2368069440126419, + "learning_rate": 0.0006, + "loss": 3.843264579772949, + "step": 1941 + }, + { + "epoch": 26.978593272171253, + "grad_norm": 0.22663559019565582, + "learning_rate": 0.0006, + "loss": 3.81339430809021, + "step": 1942 + }, + { + "epoch": 26.992573176059416, + "grad_norm": 0.2151402235031128, + "learning_rate": 0.0006, + "loss": 3.8262834548950195, + "step": 1943 + }, + { + "epoch": 27.0, + "grad_norm": 0.24320295453071594, + "learning_rate": 0.0006, + "loss": 3.858567237854004, + "step": 1944 + }, + { + "epoch": 27.0, + "eval_loss": 4.0613322257995605, + "eval_runtime": 44.766, + "eval_samples_per_second": 54.55, + "eval_steps_per_second": 3.418, + "step": 1944 + }, + { + "epoch": 27.01397990388816, + "grad_norm": 0.21188032627105713, + "learning_rate": 0.0006, + "loss": 3.7631278038024902, + "step": 1945 + }, + { + "epoch": 27.027959807776323, + "grad_norm": 0.22298137843608856, + "learning_rate": 0.0006, + "loss": 3.784029245376587, + "step": 1946 + }, + { + "epoch": 27.041939711664483, + "grad_norm": 0.26530158519744873, + "learning_rate": 0.0006, + "loss": 3.795860767364502, + "step": 1947 + }, + { + "epoch": 27.055919615552643, + "grad_norm": 0.24476729333400726, + "learning_rate": 0.0006, + "loss": 3.77512264251709, + "step": 1948 + }, + { + "epoch": 27.069899519440803, + "grad_norm": 0.1934421956539154, + "learning_rate": 0.0006, + "loss": 3.7797446250915527, + "step": 1949 + }, + { + "epoch": 27.083879423328966, + "grad_norm": 0.19777092337608337, + "learning_rate": 0.0006, + "loss": 3.798935890197754, + "step": 1950 + }, + { + "epoch": 27.097859327217126, + "grad_norm": 0.2071693390607834, + "learning_rate": 0.0006, + "loss": 3.763094425201416, + "step": 1951 + }, + { + "epoch": 27.111839231105286, + "grad_norm": 0.18394742906093597, + "learning_rate": 0.0006, + "loss": 3.7892322540283203, + "step": 1952 + }, + { + "epoch": 27.125819134993446, + "grad_norm": 0.17878273129463196, + "learning_rate": 0.0006, + "loss": 3.787968158721924, + "step": 1953 + }, + { + "epoch": 27.13979903888161, + "grad_norm": 0.18792171776294708, + "learning_rate": 0.0006, + "loss": 3.7719640731811523, + "step": 1954 + }, + { + "epoch": 27.15377894276977, + "grad_norm": 0.18718759715557098, + "learning_rate": 0.0006, + "loss": 3.791835308074951, + "step": 1955 + }, + { + "epoch": 27.16775884665793, + "grad_norm": 0.18716055154800415, + "learning_rate": 0.0006, + "loss": 3.7490220069885254, + "step": 1956 + }, + { + "epoch": 27.18173875054609, + "grad_norm": 0.18429182469844818, + "learning_rate": 0.0006, + "loss": 3.8020081520080566, + "step": 1957 + }, + { + "epoch": 27.195718654434252, + "grad_norm": 0.18571704626083374, + "learning_rate": 0.0006, + "loss": 3.8152215480804443, + "step": 1958 + }, + { + "epoch": 27.209698558322412, + "grad_norm": 0.1788843423128128, + "learning_rate": 0.0006, + "loss": 3.8173317909240723, + "step": 1959 + }, + { + "epoch": 27.22367846221057, + "grad_norm": 0.20459426939487457, + "learning_rate": 0.0006, + "loss": 3.7760040760040283, + "step": 1960 + }, + { + "epoch": 27.23765836609873, + "grad_norm": 0.22360935807228088, + "learning_rate": 0.0006, + "loss": 3.8140203952789307, + "step": 1961 + }, + { + "epoch": 27.251638269986895, + "grad_norm": 0.2062767595052719, + "learning_rate": 0.0006, + "loss": 3.792001247406006, + "step": 1962 + }, + { + "epoch": 27.265618173875055, + "grad_norm": 0.20628073811531067, + "learning_rate": 0.0006, + "loss": 3.7873167991638184, + "step": 1963 + }, + { + "epoch": 27.279598077763215, + "grad_norm": 0.19888348877429962, + "learning_rate": 0.0006, + "loss": 3.7903614044189453, + "step": 1964 + }, + { + "epoch": 27.293577981651374, + "grad_norm": 0.22033332288265228, + "learning_rate": 0.0006, + "loss": 3.802497148513794, + "step": 1965 + }, + { + "epoch": 27.307557885539538, + "grad_norm": 0.23476941883563995, + "learning_rate": 0.0006, + "loss": 3.794090986251831, + "step": 1966 + }, + { + "epoch": 27.321537789427698, + "grad_norm": 0.19639968872070312, + "learning_rate": 0.0006, + "loss": 3.831794023513794, + "step": 1967 + }, + { + "epoch": 27.335517693315857, + "grad_norm": 0.18169641494750977, + "learning_rate": 0.0006, + "loss": 3.7687768936157227, + "step": 1968 + }, + { + "epoch": 27.34949759720402, + "grad_norm": 0.17781762778759003, + "learning_rate": 0.0006, + "loss": 3.7868471145629883, + "step": 1969 + }, + { + "epoch": 27.36347750109218, + "grad_norm": 0.18990416824817657, + "learning_rate": 0.0006, + "loss": 3.8340392112731934, + "step": 1970 + }, + { + "epoch": 27.37745740498034, + "grad_norm": 0.2031438797712326, + "learning_rate": 0.0006, + "loss": 3.804513454437256, + "step": 1971 + }, + { + "epoch": 27.3914373088685, + "grad_norm": 0.21233421564102173, + "learning_rate": 0.0006, + "loss": 3.7908449172973633, + "step": 1972 + }, + { + "epoch": 27.405417212756664, + "grad_norm": 0.22480927407741547, + "learning_rate": 0.0006, + "loss": 3.7894086837768555, + "step": 1973 + }, + { + "epoch": 27.419397116644824, + "grad_norm": 0.22713422775268555, + "learning_rate": 0.0006, + "loss": 3.826005458831787, + "step": 1974 + }, + { + "epoch": 27.433377020532983, + "grad_norm": 0.21637366712093353, + "learning_rate": 0.0006, + "loss": 3.8232319355010986, + "step": 1975 + }, + { + "epoch": 27.447356924421143, + "grad_norm": 0.24092449247837067, + "learning_rate": 0.0006, + "loss": 3.813279628753662, + "step": 1976 + }, + { + "epoch": 27.461336828309307, + "grad_norm": 0.21143047511577606, + "learning_rate": 0.0006, + "loss": 3.811586856842041, + "step": 1977 + }, + { + "epoch": 27.475316732197467, + "grad_norm": 0.21049432456493378, + "learning_rate": 0.0006, + "loss": 3.8227009773254395, + "step": 1978 + }, + { + "epoch": 27.489296636085626, + "grad_norm": 0.21853850781917572, + "learning_rate": 0.0006, + "loss": 3.7992515563964844, + "step": 1979 + }, + { + "epoch": 27.503276539973786, + "grad_norm": 0.22405001521110535, + "learning_rate": 0.0006, + "loss": 3.8311715126037598, + "step": 1980 + }, + { + "epoch": 27.51725644386195, + "grad_norm": 0.24085809290409088, + "learning_rate": 0.0006, + "loss": 3.801962375640869, + "step": 1981 + }, + { + "epoch": 27.53123634775011, + "grad_norm": 0.2612341642379761, + "learning_rate": 0.0006, + "loss": 3.7867887020111084, + "step": 1982 + }, + { + "epoch": 27.54521625163827, + "grad_norm": 0.25136062502861023, + "learning_rate": 0.0006, + "loss": 3.8302273750305176, + "step": 1983 + }, + { + "epoch": 27.55919615552643, + "grad_norm": 0.2485426515340805, + "learning_rate": 0.0006, + "loss": 3.770616054534912, + "step": 1984 + }, + { + "epoch": 27.573176059414592, + "grad_norm": 0.28883907198905945, + "learning_rate": 0.0006, + "loss": 3.8152146339416504, + "step": 1985 + }, + { + "epoch": 27.587155963302752, + "grad_norm": 0.28177911043167114, + "learning_rate": 0.0006, + "loss": 3.7966861724853516, + "step": 1986 + }, + { + "epoch": 27.601135867190912, + "grad_norm": 0.2573191523551941, + "learning_rate": 0.0006, + "loss": 3.820788621902466, + "step": 1987 + }, + { + "epoch": 27.615115771079076, + "grad_norm": 0.22225657105445862, + "learning_rate": 0.0006, + "loss": 3.778477191925049, + "step": 1988 + }, + { + "epoch": 27.629095674967235, + "grad_norm": 0.20118530094623566, + "learning_rate": 0.0006, + "loss": 3.8416988849639893, + "step": 1989 + }, + { + "epoch": 27.643075578855395, + "grad_norm": 0.21168658137321472, + "learning_rate": 0.0006, + "loss": 3.798020839691162, + "step": 1990 + }, + { + "epoch": 27.657055482743555, + "grad_norm": 0.2460680454969406, + "learning_rate": 0.0006, + "loss": 3.805917263031006, + "step": 1991 + }, + { + "epoch": 27.67103538663172, + "grad_norm": 0.2700909674167633, + "learning_rate": 0.0006, + "loss": 3.8042726516723633, + "step": 1992 + }, + { + "epoch": 27.68501529051988, + "grad_norm": 0.25814294815063477, + "learning_rate": 0.0006, + "loss": 3.799159049987793, + "step": 1993 + }, + { + "epoch": 27.698995194408038, + "grad_norm": 0.2231985628604889, + "learning_rate": 0.0006, + "loss": 3.778750419616699, + "step": 1994 + }, + { + "epoch": 27.712975098296198, + "grad_norm": 0.20807890594005585, + "learning_rate": 0.0006, + "loss": 3.787919044494629, + "step": 1995 + }, + { + "epoch": 27.72695500218436, + "grad_norm": 0.19537150859832764, + "learning_rate": 0.0006, + "loss": 3.7917299270629883, + "step": 1996 + }, + { + "epoch": 27.74093490607252, + "grad_norm": 0.21057647466659546, + "learning_rate": 0.0006, + "loss": 3.8096866607666016, + "step": 1997 + }, + { + "epoch": 27.75491480996068, + "grad_norm": 0.18983247876167297, + "learning_rate": 0.0006, + "loss": 3.7881717681884766, + "step": 1998 + }, + { + "epoch": 27.76889471384884, + "grad_norm": 0.18701069056987762, + "learning_rate": 0.0006, + "loss": 3.810790538787842, + "step": 1999 + }, + { + "epoch": 27.782874617737004, + "grad_norm": 0.1920134723186493, + "learning_rate": 0.0006, + "loss": 3.8161087036132812, + "step": 2000 + }, + { + "epoch": 27.796854521625164, + "grad_norm": 0.20413947105407715, + "learning_rate": 0.0006, + "loss": 3.790499687194824, + "step": 2001 + }, + { + "epoch": 27.810834425513324, + "grad_norm": 0.1920027732849121, + "learning_rate": 0.0006, + "loss": 3.8194262981414795, + "step": 2002 + }, + { + "epoch": 27.824814329401484, + "grad_norm": 0.18630221486091614, + "learning_rate": 0.0006, + "loss": 3.8267152309417725, + "step": 2003 + }, + { + "epoch": 27.838794233289647, + "grad_norm": 0.1787925660610199, + "learning_rate": 0.0006, + "loss": 3.8147521018981934, + "step": 2004 + }, + { + "epoch": 27.852774137177807, + "grad_norm": 0.19187216460704803, + "learning_rate": 0.0006, + "loss": 3.7751095294952393, + "step": 2005 + }, + { + "epoch": 27.866754041065967, + "grad_norm": 0.18825744092464447, + "learning_rate": 0.0006, + "loss": 3.807401657104492, + "step": 2006 + }, + { + "epoch": 27.88073394495413, + "grad_norm": 0.1879836469888687, + "learning_rate": 0.0006, + "loss": 3.8302509784698486, + "step": 2007 + }, + { + "epoch": 27.89471384884229, + "grad_norm": 0.19136391580104828, + "learning_rate": 0.0006, + "loss": 3.7886242866516113, + "step": 2008 + }, + { + "epoch": 27.90869375273045, + "grad_norm": 0.18774119019508362, + "learning_rate": 0.0006, + "loss": 3.8202977180480957, + "step": 2009 + }, + { + "epoch": 27.92267365661861, + "grad_norm": 0.17794452607631683, + "learning_rate": 0.0006, + "loss": 3.813382387161255, + "step": 2010 + }, + { + "epoch": 27.936653560506773, + "grad_norm": 0.1876268833875656, + "learning_rate": 0.0006, + "loss": 3.810610294342041, + "step": 2011 + }, + { + "epoch": 27.950633464394933, + "grad_norm": 0.19262051582336426, + "learning_rate": 0.0006, + "loss": 3.8113245964050293, + "step": 2012 + }, + { + "epoch": 27.964613368283093, + "grad_norm": 0.19371771812438965, + "learning_rate": 0.0006, + "loss": 3.804790496826172, + "step": 2013 + }, + { + "epoch": 27.978593272171253, + "grad_norm": 0.1922861784696579, + "learning_rate": 0.0006, + "loss": 3.8278889656066895, + "step": 2014 + }, + { + "epoch": 27.992573176059416, + "grad_norm": 0.19748565554618835, + "learning_rate": 0.0006, + "loss": 3.8127200603485107, + "step": 2015 + }, + { + "epoch": 28.0, + "grad_norm": 0.25027501583099365, + "learning_rate": 0.0006, + "loss": 3.7899413108825684, + "step": 2016 + }, + { + "epoch": 28.0, + "eval_loss": 4.047704219818115, + "eval_runtime": 44.293, + "eval_samples_per_second": 55.133, + "eval_steps_per_second": 3.454, + "step": 2016 + }, + { + "epoch": 28.01397990388816, + "grad_norm": 0.25172367691993713, + "learning_rate": 0.0006, + "loss": 3.75449538230896, + "step": 2017 + }, + { + "epoch": 28.027959807776323, + "grad_norm": 0.23494598269462585, + "learning_rate": 0.0006, + "loss": 3.7609024047851562, + "step": 2018 + }, + { + "epoch": 28.041939711664483, + "grad_norm": 0.22459708154201508, + "learning_rate": 0.0006, + "loss": 3.7843551635742188, + "step": 2019 + }, + { + "epoch": 28.055919615552643, + "grad_norm": 0.2038632035255432, + "learning_rate": 0.0006, + "loss": 3.7818198204040527, + "step": 2020 + }, + { + "epoch": 28.069899519440803, + "grad_norm": 0.22050008177757263, + "learning_rate": 0.0006, + "loss": 3.787442684173584, + "step": 2021 + }, + { + "epoch": 28.083879423328966, + "grad_norm": 0.24645832180976868, + "learning_rate": 0.0006, + "loss": 3.768704414367676, + "step": 2022 + }, + { + "epoch": 28.097859327217126, + "grad_norm": 0.2440163493156433, + "learning_rate": 0.0006, + "loss": 3.7783756256103516, + "step": 2023 + }, + { + "epoch": 28.111839231105286, + "grad_norm": 0.2482181042432785, + "learning_rate": 0.0006, + "loss": 3.786881923675537, + "step": 2024 + }, + { + "epoch": 28.125819134993446, + "grad_norm": 0.23494760692119598, + "learning_rate": 0.0006, + "loss": 3.790039300918579, + "step": 2025 + }, + { + "epoch": 28.13979903888161, + "grad_norm": 0.2172182947397232, + "learning_rate": 0.0006, + "loss": 3.818756580352783, + "step": 2026 + }, + { + "epoch": 28.15377894276977, + "grad_norm": 0.2103179395198822, + "learning_rate": 0.0006, + "loss": 3.7768917083740234, + "step": 2027 + }, + { + "epoch": 28.16775884665793, + "grad_norm": 0.22322365641593933, + "learning_rate": 0.0006, + "loss": 3.8223648071289062, + "step": 2028 + }, + { + "epoch": 28.18173875054609, + "grad_norm": 0.24199382960796356, + "learning_rate": 0.0006, + "loss": 3.781357765197754, + "step": 2029 + }, + { + "epoch": 28.195718654434252, + "grad_norm": 0.2500663101673126, + "learning_rate": 0.0006, + "loss": 3.8061184883117676, + "step": 2030 + }, + { + "epoch": 28.209698558322412, + "grad_norm": 0.2439824491739273, + "learning_rate": 0.0006, + "loss": 3.7886464595794678, + "step": 2031 + }, + { + "epoch": 28.22367846221057, + "grad_norm": 0.24563106894493103, + "learning_rate": 0.0006, + "loss": 3.7901692390441895, + "step": 2032 + }, + { + "epoch": 28.23765836609873, + "grad_norm": 0.2287624627351761, + "learning_rate": 0.0006, + "loss": 3.789931058883667, + "step": 2033 + }, + { + "epoch": 28.251638269986895, + "grad_norm": 0.2231188714504242, + "learning_rate": 0.0006, + "loss": 3.7879133224487305, + "step": 2034 + }, + { + "epoch": 28.265618173875055, + "grad_norm": 0.23090387880802155, + "learning_rate": 0.0006, + "loss": 3.7826130390167236, + "step": 2035 + }, + { + "epoch": 28.279598077763215, + "grad_norm": 0.216018944978714, + "learning_rate": 0.0006, + "loss": 3.7764949798583984, + "step": 2036 + }, + { + "epoch": 28.293577981651374, + "grad_norm": 0.22649185359477997, + "learning_rate": 0.0006, + "loss": 3.7911291122436523, + "step": 2037 + }, + { + "epoch": 28.307557885539538, + "grad_norm": 0.2350836843252182, + "learning_rate": 0.0006, + "loss": 3.7668724060058594, + "step": 2038 + }, + { + "epoch": 28.321537789427698, + "grad_norm": 0.23206329345703125, + "learning_rate": 0.0006, + "loss": 3.782243251800537, + "step": 2039 + }, + { + "epoch": 28.335517693315857, + "grad_norm": 0.21896308660507202, + "learning_rate": 0.0006, + "loss": 3.7605721950531006, + "step": 2040 + }, + { + "epoch": 28.34949759720402, + "grad_norm": 0.20381200313568115, + "learning_rate": 0.0006, + "loss": 3.743945598602295, + "step": 2041 + }, + { + "epoch": 28.36347750109218, + "grad_norm": 0.19196000695228577, + "learning_rate": 0.0006, + "loss": 3.808107852935791, + "step": 2042 + }, + { + "epoch": 28.37745740498034, + "grad_norm": 0.19517889618873596, + "learning_rate": 0.0006, + "loss": 3.7906723022460938, + "step": 2043 + }, + { + "epoch": 28.3914373088685, + "grad_norm": 0.20455795526504517, + "learning_rate": 0.0006, + "loss": 3.7421011924743652, + "step": 2044 + }, + { + "epoch": 28.405417212756664, + "grad_norm": 0.1867467314004898, + "learning_rate": 0.0006, + "loss": 3.775509834289551, + "step": 2045 + }, + { + "epoch": 28.419397116644824, + "grad_norm": 0.2029324471950531, + "learning_rate": 0.0006, + "loss": 3.771353244781494, + "step": 2046 + }, + { + "epoch": 28.433377020532983, + "grad_norm": 0.19967497885227203, + "learning_rate": 0.0006, + "loss": 3.7821149826049805, + "step": 2047 + }, + { + "epoch": 28.447356924421143, + "grad_norm": 0.19440607726573944, + "learning_rate": 0.0006, + "loss": 3.8114213943481445, + "step": 2048 + }, + { + "epoch": 28.461336828309307, + "grad_norm": 0.19679802656173706, + "learning_rate": 0.0006, + "loss": 3.7699532508850098, + "step": 2049 + }, + { + "epoch": 28.475316732197467, + "grad_norm": 0.1939811110496521, + "learning_rate": 0.0006, + "loss": 3.7673027515411377, + "step": 2050 + }, + { + "epoch": 28.489296636085626, + "grad_norm": 0.18712401390075684, + "learning_rate": 0.0006, + "loss": 3.816699266433716, + "step": 2051 + }, + { + "epoch": 28.503276539973786, + "grad_norm": 0.202956885099411, + "learning_rate": 0.0006, + "loss": 3.7746071815490723, + "step": 2052 + }, + { + "epoch": 28.51725644386195, + "grad_norm": 0.19098156690597534, + "learning_rate": 0.0006, + "loss": 3.8065481185913086, + "step": 2053 + }, + { + "epoch": 28.53123634775011, + "grad_norm": 0.21144428849220276, + "learning_rate": 0.0006, + "loss": 3.7890982627868652, + "step": 2054 + }, + { + "epoch": 28.54521625163827, + "grad_norm": 0.21882614493370056, + "learning_rate": 0.0006, + "loss": 3.8168821334838867, + "step": 2055 + }, + { + "epoch": 28.55919615552643, + "grad_norm": 0.22200101613998413, + "learning_rate": 0.0006, + "loss": 3.804454803466797, + "step": 2056 + }, + { + "epoch": 28.573176059414592, + "grad_norm": 0.22404780983924866, + "learning_rate": 0.0006, + "loss": 3.808764934539795, + "step": 2057 + }, + { + "epoch": 28.587155963302752, + "grad_norm": 0.22770099341869354, + "learning_rate": 0.0006, + "loss": 3.74835467338562, + "step": 2058 + }, + { + "epoch": 28.601135867190912, + "grad_norm": 0.23214420676231384, + "learning_rate": 0.0006, + "loss": 3.7480111122131348, + "step": 2059 + }, + { + "epoch": 28.615115771079076, + "grad_norm": 0.21786348521709442, + "learning_rate": 0.0006, + "loss": 3.8095176219940186, + "step": 2060 + }, + { + "epoch": 28.629095674967235, + "grad_norm": 0.21004106104373932, + "learning_rate": 0.0006, + "loss": 3.792745590209961, + "step": 2061 + }, + { + "epoch": 28.643075578855395, + "grad_norm": 0.21076138317584991, + "learning_rate": 0.0006, + "loss": 3.7878952026367188, + "step": 2062 + }, + { + "epoch": 28.657055482743555, + "grad_norm": 0.2184346616268158, + "learning_rate": 0.0006, + "loss": 3.757188320159912, + "step": 2063 + }, + { + "epoch": 28.67103538663172, + "grad_norm": 0.22100569307804108, + "learning_rate": 0.0006, + "loss": 3.8131773471832275, + "step": 2064 + }, + { + "epoch": 28.68501529051988, + "grad_norm": 0.23257511854171753, + "learning_rate": 0.0006, + "loss": 3.793826103210449, + "step": 2065 + }, + { + "epoch": 28.698995194408038, + "grad_norm": 0.22312869131565094, + "learning_rate": 0.0006, + "loss": 3.782083749771118, + "step": 2066 + }, + { + "epoch": 28.712975098296198, + "grad_norm": 0.2318405956029892, + "learning_rate": 0.0006, + "loss": 3.7814879417419434, + "step": 2067 + }, + { + "epoch": 28.72695500218436, + "grad_norm": 0.23719379305839539, + "learning_rate": 0.0006, + "loss": 3.8320484161376953, + "step": 2068 + }, + { + "epoch": 28.74093490607252, + "grad_norm": 0.23100806772708893, + "learning_rate": 0.0006, + "loss": 3.7921783924102783, + "step": 2069 + }, + { + "epoch": 28.75491480996068, + "grad_norm": 0.21540866792201996, + "learning_rate": 0.0006, + "loss": 3.8325204849243164, + "step": 2070 + }, + { + "epoch": 28.76889471384884, + "grad_norm": 0.2698654532432556, + "learning_rate": 0.0006, + "loss": 3.7965879440307617, + "step": 2071 + }, + { + "epoch": 28.782874617737004, + "grad_norm": 0.3101225793361664, + "learning_rate": 0.0006, + "loss": 3.78842830657959, + "step": 2072 + }, + { + "epoch": 28.796854521625164, + "grad_norm": 0.2607600688934326, + "learning_rate": 0.0006, + "loss": 3.770064115524292, + "step": 2073 + }, + { + "epoch": 28.810834425513324, + "grad_norm": 0.20558302104473114, + "learning_rate": 0.0006, + "loss": 3.7448501586914062, + "step": 2074 + }, + { + "epoch": 28.824814329401484, + "grad_norm": 0.20030120015144348, + "learning_rate": 0.0006, + "loss": 3.7689406871795654, + "step": 2075 + }, + { + "epoch": 28.838794233289647, + "grad_norm": 0.21781118214130402, + "learning_rate": 0.0006, + "loss": 3.7682244777679443, + "step": 2076 + }, + { + "epoch": 28.852774137177807, + "grad_norm": 0.23543044924736023, + "learning_rate": 0.0006, + "loss": 3.8094193935394287, + "step": 2077 + }, + { + "epoch": 28.866754041065967, + "grad_norm": 0.21634669601917267, + "learning_rate": 0.0006, + "loss": 3.792099952697754, + "step": 2078 + }, + { + "epoch": 28.88073394495413, + "grad_norm": 0.2251661866903305, + "learning_rate": 0.0006, + "loss": 3.7849509716033936, + "step": 2079 + }, + { + "epoch": 28.89471384884229, + "grad_norm": 0.23872914910316467, + "learning_rate": 0.0006, + "loss": 3.8391621112823486, + "step": 2080 + }, + { + "epoch": 28.90869375273045, + "grad_norm": 0.22259248793125153, + "learning_rate": 0.0006, + "loss": 3.8272876739501953, + "step": 2081 + }, + { + "epoch": 28.92267365661861, + "grad_norm": 0.22052262723445892, + "learning_rate": 0.0006, + "loss": 3.7986836433410645, + "step": 2082 + }, + { + "epoch": 28.936653560506773, + "grad_norm": 0.24487647414207458, + "learning_rate": 0.0006, + "loss": 3.798004150390625, + "step": 2083 + }, + { + "epoch": 28.950633464394933, + "grad_norm": 0.22992238402366638, + "learning_rate": 0.0006, + "loss": 3.788522720336914, + "step": 2084 + }, + { + "epoch": 28.964613368283093, + "grad_norm": 0.22521597146987915, + "learning_rate": 0.0006, + "loss": 3.767259120941162, + "step": 2085 + }, + { + "epoch": 28.978593272171253, + "grad_norm": 0.2201499044895172, + "learning_rate": 0.0006, + "loss": 3.7850542068481445, + "step": 2086 + }, + { + "epoch": 28.992573176059416, + "grad_norm": 0.22226814925670624, + "learning_rate": 0.0006, + "loss": 3.8013534545898438, + "step": 2087 + }, + { + "epoch": 29.0, + "grad_norm": 0.27624809741973877, + "learning_rate": 0.0006, + "loss": 3.762004852294922, + "step": 2088 + }, + { + "epoch": 29.0, + "eval_loss": 4.034304618835449, + "eval_runtime": 44.6573, + "eval_samples_per_second": 54.683, + "eval_steps_per_second": 3.426, + "step": 2088 + }, + { + "epoch": 29.01397990388816, + "grad_norm": 0.2550967037677765, + "learning_rate": 0.0006, + "loss": 3.7724227905273438, + "step": 2089 + }, + { + "epoch": 29.027959807776323, + "grad_norm": 0.26730602979660034, + "learning_rate": 0.0006, + "loss": 3.7728946208953857, + "step": 2090 + }, + { + "epoch": 29.041939711664483, + "grad_norm": 0.2394205927848816, + "learning_rate": 0.0006, + "loss": 3.7737584114074707, + "step": 2091 + }, + { + "epoch": 29.055919615552643, + "grad_norm": 0.22488200664520264, + "learning_rate": 0.0006, + "loss": 3.761014938354492, + "step": 2092 + }, + { + "epoch": 29.069899519440803, + "grad_norm": 0.2389903962612152, + "learning_rate": 0.0006, + "loss": 3.766557216644287, + "step": 2093 + }, + { + "epoch": 29.083879423328966, + "grad_norm": 0.234152153134346, + "learning_rate": 0.0006, + "loss": 3.7447147369384766, + "step": 2094 + }, + { + "epoch": 29.097859327217126, + "grad_norm": 0.23123252391815186, + "learning_rate": 0.0006, + "loss": 3.77197527885437, + "step": 2095 + }, + { + "epoch": 29.111839231105286, + "grad_norm": 0.23263143002986908, + "learning_rate": 0.0006, + "loss": 3.7390198707580566, + "step": 2096 + }, + { + "epoch": 29.125819134993446, + "grad_norm": 0.23235775530338287, + "learning_rate": 0.0006, + "loss": 3.7675256729125977, + "step": 2097 + }, + { + "epoch": 29.13979903888161, + "grad_norm": 0.2208816260099411, + "learning_rate": 0.0006, + "loss": 3.7588067054748535, + "step": 2098 + }, + { + "epoch": 29.15377894276977, + "grad_norm": 0.21216371655464172, + "learning_rate": 0.0006, + "loss": 3.7370502948760986, + "step": 2099 + }, + { + "epoch": 29.16775884665793, + "grad_norm": 0.2210543155670166, + "learning_rate": 0.0006, + "loss": 3.767308473587036, + "step": 2100 + }, + { + "epoch": 29.18173875054609, + "grad_norm": 0.21628431975841522, + "learning_rate": 0.0006, + "loss": 3.7298972606658936, + "step": 2101 + }, + { + "epoch": 29.195718654434252, + "grad_norm": 0.21493588387966156, + "learning_rate": 0.0006, + "loss": 3.7806448936462402, + "step": 2102 + }, + { + "epoch": 29.209698558322412, + "grad_norm": 0.25978055596351624, + "learning_rate": 0.0006, + "loss": 3.7716293334960938, + "step": 2103 + }, + { + "epoch": 29.22367846221057, + "grad_norm": 0.2744791507720947, + "learning_rate": 0.0006, + "loss": 3.76897931098938, + "step": 2104 + }, + { + "epoch": 29.23765836609873, + "grad_norm": 0.22959400713443756, + "learning_rate": 0.0006, + "loss": 3.7545714378356934, + "step": 2105 + }, + { + "epoch": 29.251638269986895, + "grad_norm": 0.20369231700897217, + "learning_rate": 0.0006, + "loss": 3.7944722175598145, + "step": 2106 + }, + { + "epoch": 29.265618173875055, + "grad_norm": 0.21663758158683777, + "learning_rate": 0.0006, + "loss": 3.7564756870269775, + "step": 2107 + }, + { + "epoch": 29.279598077763215, + "grad_norm": 0.21862861514091492, + "learning_rate": 0.0006, + "loss": 3.7722725868225098, + "step": 2108 + }, + { + "epoch": 29.293577981651374, + "grad_norm": 0.2044878453016281, + "learning_rate": 0.0006, + "loss": 3.7471303939819336, + "step": 2109 + }, + { + "epoch": 29.307557885539538, + "grad_norm": 0.23015929758548737, + "learning_rate": 0.0006, + "loss": 3.7584962844848633, + "step": 2110 + }, + { + "epoch": 29.321537789427698, + "grad_norm": 0.22548329830169678, + "learning_rate": 0.0006, + "loss": 3.795933723449707, + "step": 2111 + }, + { + "epoch": 29.335517693315857, + "grad_norm": 0.2000468522310257, + "learning_rate": 0.0006, + "loss": 3.766310691833496, + "step": 2112 + }, + { + "epoch": 29.34949759720402, + "grad_norm": 0.19711551070213318, + "learning_rate": 0.0006, + "loss": 3.7296276092529297, + "step": 2113 + }, + { + "epoch": 29.36347750109218, + "grad_norm": 0.18838997185230255, + "learning_rate": 0.0006, + "loss": 3.7685282230377197, + "step": 2114 + }, + { + "epoch": 29.37745740498034, + "grad_norm": 0.1897876113653183, + "learning_rate": 0.0006, + "loss": 3.7280936241149902, + "step": 2115 + }, + { + "epoch": 29.3914373088685, + "grad_norm": 0.21697933971881866, + "learning_rate": 0.0006, + "loss": 3.7991929054260254, + "step": 2116 + }, + { + "epoch": 29.405417212756664, + "grad_norm": 0.23445849120616913, + "learning_rate": 0.0006, + "loss": 3.7857418060302734, + "step": 2117 + }, + { + "epoch": 29.419397116644824, + "grad_norm": 0.24155527353286743, + "learning_rate": 0.0006, + "loss": 3.7897872924804688, + "step": 2118 + }, + { + "epoch": 29.433377020532983, + "grad_norm": 0.2610265016555786, + "learning_rate": 0.0006, + "loss": 3.7867324352264404, + "step": 2119 + }, + { + "epoch": 29.447356924421143, + "grad_norm": 0.2809581160545349, + "learning_rate": 0.0006, + "loss": 3.783799648284912, + "step": 2120 + }, + { + "epoch": 29.461336828309307, + "grad_norm": 0.2621572017669678, + "learning_rate": 0.0006, + "loss": 3.7778549194335938, + "step": 2121 + }, + { + "epoch": 29.475316732197467, + "grad_norm": 0.26002970337867737, + "learning_rate": 0.0006, + "loss": 3.787945508956909, + "step": 2122 + }, + { + "epoch": 29.489296636085626, + "grad_norm": 0.24866686761379242, + "learning_rate": 0.0006, + "loss": 3.7406349182128906, + "step": 2123 + }, + { + "epoch": 29.503276539973786, + "grad_norm": 0.25588324666023254, + "learning_rate": 0.0006, + "loss": 3.785625457763672, + "step": 2124 + }, + { + "epoch": 29.51725644386195, + "grad_norm": 0.24724243581295013, + "learning_rate": 0.0006, + "loss": 3.7581701278686523, + "step": 2125 + }, + { + "epoch": 29.53123634775011, + "grad_norm": 0.23544734716415405, + "learning_rate": 0.0006, + "loss": 3.8163957595825195, + "step": 2126 + }, + { + "epoch": 29.54521625163827, + "grad_norm": 0.2108801156282425, + "learning_rate": 0.0006, + "loss": 3.7881739139556885, + "step": 2127 + }, + { + "epoch": 29.55919615552643, + "grad_norm": 0.20459668338298798, + "learning_rate": 0.0006, + "loss": 3.7641284465789795, + "step": 2128 + }, + { + "epoch": 29.573176059414592, + "grad_norm": 0.24020728468894958, + "learning_rate": 0.0006, + "loss": 3.7748730182647705, + "step": 2129 + }, + { + "epoch": 29.587155963302752, + "grad_norm": 0.256273478269577, + "learning_rate": 0.0006, + "loss": 3.8076486587524414, + "step": 2130 + }, + { + "epoch": 29.601135867190912, + "grad_norm": 0.23295973241329193, + "learning_rate": 0.0006, + "loss": 3.7687063217163086, + "step": 2131 + }, + { + "epoch": 29.615115771079076, + "grad_norm": 0.21554847061634064, + "learning_rate": 0.0006, + "loss": 3.781867027282715, + "step": 2132 + }, + { + "epoch": 29.629095674967235, + "grad_norm": 0.20645774900913239, + "learning_rate": 0.0006, + "loss": 3.7813425064086914, + "step": 2133 + }, + { + "epoch": 29.643075578855395, + "grad_norm": 0.2018265724182129, + "learning_rate": 0.0006, + "loss": 3.772895574569702, + "step": 2134 + }, + { + "epoch": 29.657055482743555, + "grad_norm": 0.20170100033283234, + "learning_rate": 0.0006, + "loss": 3.7819175720214844, + "step": 2135 + }, + { + "epoch": 29.67103538663172, + "grad_norm": 0.22640688717365265, + "learning_rate": 0.0006, + "loss": 3.7999017238616943, + "step": 2136 + }, + { + "epoch": 29.68501529051988, + "grad_norm": 0.23747675120830536, + "learning_rate": 0.0006, + "loss": 3.804999828338623, + "step": 2137 + }, + { + "epoch": 29.698995194408038, + "grad_norm": 0.20005857944488525, + "learning_rate": 0.0006, + "loss": 3.7815160751342773, + "step": 2138 + }, + { + "epoch": 29.712975098296198, + "grad_norm": 0.17901667952537537, + "learning_rate": 0.0006, + "loss": 3.7898688316345215, + "step": 2139 + }, + { + "epoch": 29.72695500218436, + "grad_norm": 0.1890905797481537, + "learning_rate": 0.0006, + "loss": 3.8001184463500977, + "step": 2140 + }, + { + "epoch": 29.74093490607252, + "grad_norm": 0.19565847516059875, + "learning_rate": 0.0006, + "loss": 3.7522482872009277, + "step": 2141 + }, + { + "epoch": 29.75491480996068, + "grad_norm": 0.19429196417331696, + "learning_rate": 0.0006, + "loss": 3.768972158432007, + "step": 2142 + }, + { + "epoch": 29.76889471384884, + "grad_norm": 0.23846636712551117, + "learning_rate": 0.0006, + "loss": 3.765216112136841, + "step": 2143 + }, + { + "epoch": 29.782874617737004, + "grad_norm": 0.23820780217647552, + "learning_rate": 0.0006, + "loss": 3.8027703762054443, + "step": 2144 + }, + { + "epoch": 29.796854521625164, + "grad_norm": 0.21104726195335388, + "learning_rate": 0.0006, + "loss": 3.7682833671569824, + "step": 2145 + }, + { + "epoch": 29.810834425513324, + "grad_norm": 0.1911051720380783, + "learning_rate": 0.0006, + "loss": 3.781782627105713, + "step": 2146 + }, + { + "epoch": 29.824814329401484, + "grad_norm": 0.18881288170814514, + "learning_rate": 0.0006, + "loss": 3.7703428268432617, + "step": 2147 + }, + { + "epoch": 29.838794233289647, + "grad_norm": 0.18292994797229767, + "learning_rate": 0.0006, + "loss": 3.769176721572876, + "step": 2148 + }, + { + "epoch": 29.852774137177807, + "grad_norm": 0.1777714639902115, + "learning_rate": 0.0006, + "loss": 3.7488298416137695, + "step": 2149 + }, + { + "epoch": 29.866754041065967, + "grad_norm": 0.2037898749113083, + "learning_rate": 0.0006, + "loss": 3.804396390914917, + "step": 2150 + }, + { + "epoch": 29.88073394495413, + "grad_norm": 0.2121828943490982, + "learning_rate": 0.0006, + "loss": 3.75870943069458, + "step": 2151 + }, + { + "epoch": 29.89471384884229, + "grad_norm": 0.23231184482574463, + "learning_rate": 0.0006, + "loss": 3.80178165435791, + "step": 2152 + }, + { + "epoch": 29.90869375273045, + "grad_norm": 0.24045611917972565, + "learning_rate": 0.0006, + "loss": 3.7690834999084473, + "step": 2153 + }, + { + "epoch": 29.92267365661861, + "grad_norm": 0.19830496609210968, + "learning_rate": 0.0006, + "loss": 3.764401912689209, + "step": 2154 + }, + { + "epoch": 29.936653560506773, + "grad_norm": 0.17704227566719055, + "learning_rate": 0.0006, + "loss": 3.7634594440460205, + "step": 2155 + }, + { + "epoch": 29.950633464394933, + "grad_norm": 0.17783164978027344, + "learning_rate": 0.0006, + "loss": 3.7856998443603516, + "step": 2156 + }, + { + "epoch": 29.964613368283093, + "grad_norm": 0.19684971868991852, + "learning_rate": 0.0006, + "loss": 3.805774211883545, + "step": 2157 + }, + { + "epoch": 29.978593272171253, + "grad_norm": 0.21662312746047974, + "learning_rate": 0.0006, + "loss": 3.757896661758423, + "step": 2158 + }, + { + "epoch": 29.992573176059416, + "grad_norm": 0.22000661492347717, + "learning_rate": 0.0006, + "loss": 3.7747678756713867, + "step": 2159 + }, + { + "epoch": 30.0, + "grad_norm": 0.21501901745796204, + "learning_rate": 0.0006, + "loss": 3.785585880279541, + "step": 2160 + }, + { + "epoch": 30.0, + "eval_loss": 4.034003734588623, + "eval_runtime": 44.9097, + "eval_samples_per_second": 54.376, + "eval_steps_per_second": 3.407, + "step": 2160 + }, + { + "epoch": 30.01397990388816, + "grad_norm": 0.19710904359817505, + "learning_rate": 0.0006, + "loss": 3.756235122680664, + "step": 2161 + }, + { + "epoch": 30.027959807776323, + "grad_norm": 0.19829736649990082, + "learning_rate": 0.0006, + "loss": 3.734067916870117, + "step": 2162 + }, + { + "epoch": 30.041939711664483, + "grad_norm": 0.21622520685195923, + "learning_rate": 0.0006, + "loss": 3.7329437732696533, + "step": 2163 + }, + { + "epoch": 30.055919615552643, + "grad_norm": 0.22544652223587036, + "learning_rate": 0.0006, + "loss": 3.748716354370117, + "step": 2164 + }, + { + "epoch": 30.069899519440803, + "grad_norm": 0.21098364889621735, + "learning_rate": 0.0006, + "loss": 3.779047727584839, + "step": 2165 + }, + { + "epoch": 30.083879423328966, + "grad_norm": 0.21309930086135864, + "learning_rate": 0.0006, + "loss": 3.7690274715423584, + "step": 2166 + }, + { + "epoch": 30.097859327217126, + "grad_norm": 0.23025690019130707, + "learning_rate": 0.0006, + "loss": 3.7500953674316406, + "step": 2167 + }, + { + "epoch": 30.111839231105286, + "grad_norm": 0.25107935070991516, + "learning_rate": 0.0006, + "loss": 3.745492458343506, + "step": 2168 + }, + { + "epoch": 30.125819134993446, + "grad_norm": 0.29873573780059814, + "learning_rate": 0.0006, + "loss": 3.759793758392334, + "step": 2169 + }, + { + "epoch": 30.13979903888161, + "grad_norm": 0.2810286283493042, + "learning_rate": 0.0006, + "loss": 3.772998809814453, + "step": 2170 + }, + { + "epoch": 30.15377894276977, + "grad_norm": 0.2102176398038864, + "learning_rate": 0.0006, + "loss": 3.740170955657959, + "step": 2171 + }, + { + "epoch": 30.16775884665793, + "grad_norm": 0.24143251776695251, + "learning_rate": 0.0006, + "loss": 3.7317001819610596, + "step": 2172 + }, + { + "epoch": 30.18173875054609, + "grad_norm": 0.2643064558506012, + "learning_rate": 0.0006, + "loss": 3.773263692855835, + "step": 2173 + }, + { + "epoch": 30.195718654434252, + "grad_norm": 0.27571243047714233, + "learning_rate": 0.0006, + "loss": 3.7619900703430176, + "step": 2174 + }, + { + "epoch": 30.209698558322412, + "grad_norm": 0.25359588861465454, + "learning_rate": 0.0006, + "loss": 3.7608513832092285, + "step": 2175 + }, + { + "epoch": 30.22367846221057, + "grad_norm": 0.2500684857368469, + "learning_rate": 0.0006, + "loss": 3.75856614112854, + "step": 2176 + }, + { + "epoch": 30.23765836609873, + "grad_norm": 0.23100309073925018, + "learning_rate": 0.0006, + "loss": 3.749786853790283, + "step": 2177 + }, + { + "epoch": 30.251638269986895, + "grad_norm": 0.24384984374046326, + "learning_rate": 0.0006, + "loss": 3.762244701385498, + "step": 2178 + }, + { + "epoch": 30.265618173875055, + "grad_norm": 0.24593998491764069, + "learning_rate": 0.0006, + "loss": 3.754594326019287, + "step": 2179 + }, + { + "epoch": 30.279598077763215, + "grad_norm": 0.2529342770576477, + "learning_rate": 0.0006, + "loss": 3.7641053199768066, + "step": 2180 + }, + { + "epoch": 30.293577981651374, + "grad_norm": 0.25954094529151917, + "learning_rate": 0.0006, + "loss": 3.810336112976074, + "step": 2181 + }, + { + "epoch": 30.307557885539538, + "grad_norm": 0.2249951958656311, + "learning_rate": 0.0006, + "loss": 3.7542617321014404, + "step": 2182 + }, + { + "epoch": 30.321537789427698, + "grad_norm": 0.19795064628124237, + "learning_rate": 0.0006, + "loss": 3.7734434604644775, + "step": 2183 + }, + { + "epoch": 30.335517693315857, + "grad_norm": 0.20744608342647552, + "learning_rate": 0.0006, + "loss": 3.7816128730773926, + "step": 2184 + }, + { + "epoch": 30.34949759720402, + "grad_norm": 0.19988055527210236, + "learning_rate": 0.0006, + "loss": 3.7631936073303223, + "step": 2185 + }, + { + "epoch": 30.36347750109218, + "grad_norm": 0.22226445376873016, + "learning_rate": 0.0006, + "loss": 3.762910842895508, + "step": 2186 + }, + { + "epoch": 30.37745740498034, + "grad_norm": 0.21986067295074463, + "learning_rate": 0.0006, + "loss": 3.733893394470215, + "step": 2187 + }, + { + "epoch": 30.3914373088685, + "grad_norm": 0.2170228660106659, + "learning_rate": 0.0006, + "loss": 3.726433515548706, + "step": 2188 + }, + { + "epoch": 30.405417212756664, + "grad_norm": 0.2179550975561142, + "learning_rate": 0.0006, + "loss": 3.792311668395996, + "step": 2189 + }, + { + "epoch": 30.419397116644824, + "grad_norm": 0.208037331700325, + "learning_rate": 0.0006, + "loss": 3.774639129638672, + "step": 2190 + }, + { + "epoch": 30.433377020532983, + "grad_norm": 0.20745441317558289, + "learning_rate": 0.0006, + "loss": 3.776130199432373, + "step": 2191 + }, + { + "epoch": 30.447356924421143, + "grad_norm": 0.1988024264574051, + "learning_rate": 0.0006, + "loss": 3.7453784942626953, + "step": 2192 + }, + { + "epoch": 30.461336828309307, + "grad_norm": 0.194968581199646, + "learning_rate": 0.0006, + "loss": 3.764653205871582, + "step": 2193 + }, + { + "epoch": 30.475316732197467, + "grad_norm": 0.20658300817012787, + "learning_rate": 0.0006, + "loss": 3.796513080596924, + "step": 2194 + }, + { + "epoch": 30.489296636085626, + "grad_norm": 0.2123410701751709, + "learning_rate": 0.0006, + "loss": 3.7630836963653564, + "step": 2195 + }, + { + "epoch": 30.503276539973786, + "grad_norm": 0.20894059538841248, + "learning_rate": 0.0006, + "loss": 3.7265470027923584, + "step": 2196 + }, + { + "epoch": 30.51725644386195, + "grad_norm": 0.2016828954219818, + "learning_rate": 0.0006, + "loss": 3.8083386421203613, + "step": 2197 + }, + { + "epoch": 30.53123634775011, + "grad_norm": 0.19584205746650696, + "learning_rate": 0.0006, + "loss": 3.7492105960845947, + "step": 2198 + }, + { + "epoch": 30.54521625163827, + "grad_norm": 0.18635272979736328, + "learning_rate": 0.0006, + "loss": 3.711009979248047, + "step": 2199 + }, + { + "epoch": 30.55919615552643, + "grad_norm": 0.1920594871044159, + "learning_rate": 0.0006, + "loss": 3.760801315307617, + "step": 2200 + }, + { + "epoch": 30.573176059414592, + "grad_norm": 0.1978331208229065, + "learning_rate": 0.0006, + "loss": 3.780529022216797, + "step": 2201 + }, + { + "epoch": 30.587155963302752, + "grad_norm": 0.20076943933963776, + "learning_rate": 0.0006, + "loss": 3.7767038345336914, + "step": 2202 + }, + { + "epoch": 30.601135867190912, + "grad_norm": 0.2067444622516632, + "learning_rate": 0.0006, + "loss": 3.7607920169830322, + "step": 2203 + }, + { + "epoch": 30.615115771079076, + "grad_norm": 0.2081940472126007, + "learning_rate": 0.0006, + "loss": 3.741936206817627, + "step": 2204 + }, + { + "epoch": 30.629095674967235, + "grad_norm": 0.21212869882583618, + "learning_rate": 0.0006, + "loss": 3.7597827911376953, + "step": 2205 + }, + { + "epoch": 30.643075578855395, + "grad_norm": 0.21539026498794556, + "learning_rate": 0.0006, + "loss": 3.764646053314209, + "step": 2206 + }, + { + "epoch": 30.657055482743555, + "grad_norm": 0.19788387417793274, + "learning_rate": 0.0006, + "loss": 3.7535128593444824, + "step": 2207 + }, + { + "epoch": 30.67103538663172, + "grad_norm": 0.20757688581943512, + "learning_rate": 0.0006, + "loss": 3.7414169311523438, + "step": 2208 + }, + { + "epoch": 30.68501529051988, + "grad_norm": 0.199361652135849, + "learning_rate": 0.0006, + "loss": 3.7578506469726562, + "step": 2209 + }, + { + "epoch": 30.698995194408038, + "grad_norm": 0.1909894198179245, + "learning_rate": 0.0006, + "loss": 3.736250400543213, + "step": 2210 + }, + { + "epoch": 30.712975098296198, + "grad_norm": 0.19766664505004883, + "learning_rate": 0.0006, + "loss": 3.7435379028320312, + "step": 2211 + }, + { + "epoch": 30.72695500218436, + "grad_norm": 0.21857766807079315, + "learning_rate": 0.0006, + "loss": 3.7478690147399902, + "step": 2212 + }, + { + "epoch": 30.74093490607252, + "grad_norm": 0.22385898232460022, + "learning_rate": 0.0006, + "loss": 3.7522530555725098, + "step": 2213 + }, + { + "epoch": 30.75491480996068, + "grad_norm": 0.2329241931438446, + "learning_rate": 0.0006, + "loss": 3.7568247318267822, + "step": 2214 + }, + { + "epoch": 30.76889471384884, + "grad_norm": 0.2218400090932846, + "learning_rate": 0.0006, + "loss": 3.7662744522094727, + "step": 2215 + }, + { + "epoch": 30.782874617737004, + "grad_norm": 0.21350212395191193, + "learning_rate": 0.0006, + "loss": 3.7683777809143066, + "step": 2216 + }, + { + "epoch": 30.796854521625164, + "grad_norm": 0.22357074916362762, + "learning_rate": 0.0006, + "loss": 3.763437032699585, + "step": 2217 + }, + { + "epoch": 30.810834425513324, + "grad_norm": 0.22268560528755188, + "learning_rate": 0.0006, + "loss": 3.772836685180664, + "step": 2218 + }, + { + "epoch": 30.824814329401484, + "grad_norm": 0.2434026449918747, + "learning_rate": 0.0006, + "loss": 3.752986431121826, + "step": 2219 + }, + { + "epoch": 30.838794233289647, + "grad_norm": 0.2298414409160614, + "learning_rate": 0.0006, + "loss": 3.7837061882019043, + "step": 2220 + }, + { + "epoch": 30.852774137177807, + "grad_norm": 0.227672278881073, + "learning_rate": 0.0006, + "loss": 3.746065378189087, + "step": 2221 + }, + { + "epoch": 30.866754041065967, + "grad_norm": 0.2562827169895172, + "learning_rate": 0.0006, + "loss": 3.7741947174072266, + "step": 2222 + }, + { + "epoch": 30.88073394495413, + "grad_norm": 0.23657815158367157, + "learning_rate": 0.0006, + "loss": 3.746457099914551, + "step": 2223 + }, + { + "epoch": 30.89471384884229, + "grad_norm": 0.2158907800912857, + "learning_rate": 0.0006, + "loss": 3.7821710109710693, + "step": 2224 + }, + { + "epoch": 30.90869375273045, + "grad_norm": 0.22501254081726074, + "learning_rate": 0.0006, + "loss": 3.7528274059295654, + "step": 2225 + }, + { + "epoch": 30.92267365661861, + "grad_norm": 0.20252224802970886, + "learning_rate": 0.0006, + "loss": 3.749418258666992, + "step": 2226 + }, + { + "epoch": 30.936653560506773, + "grad_norm": 0.2067883312702179, + "learning_rate": 0.0006, + "loss": 3.7560606002807617, + "step": 2227 + }, + { + "epoch": 30.950633464394933, + "grad_norm": 0.23104053735733032, + "learning_rate": 0.0006, + "loss": 3.7883846759796143, + "step": 2228 + }, + { + "epoch": 30.964613368283093, + "grad_norm": 0.21476604044437408, + "learning_rate": 0.0006, + "loss": 3.7976977825164795, + "step": 2229 + }, + { + "epoch": 30.978593272171253, + "grad_norm": 0.2130427062511444, + "learning_rate": 0.0006, + "loss": 3.7429304122924805, + "step": 2230 + }, + { + "epoch": 30.992573176059416, + "grad_norm": 0.2047216147184372, + "learning_rate": 0.0006, + "loss": 3.7669787406921387, + "step": 2231 + }, + { + "epoch": 31.0, + "grad_norm": 0.22254081070423126, + "learning_rate": 0.0006, + "loss": 3.7794251441955566, + "step": 2232 + }, + { + "epoch": 31.0, + "eval_loss": 4.039162635803223, + "eval_runtime": 44.9069, + "eval_samples_per_second": 54.379, + "eval_steps_per_second": 3.407, + "step": 2232 + }, + { + "epoch": 31.01397990388816, + "grad_norm": 0.2278132289648056, + "learning_rate": 0.0006, + "loss": 3.7363929748535156, + "step": 2233 + }, + { + "epoch": 31.027959807776323, + "grad_norm": 0.2377072274684906, + "learning_rate": 0.0006, + "loss": 3.72847318649292, + "step": 2234 + }, + { + "epoch": 31.041939711664483, + "grad_norm": 0.23790542781352997, + "learning_rate": 0.0006, + "loss": 3.767193078994751, + "step": 2235 + }, + { + "epoch": 31.055919615552643, + "grad_norm": 0.2587272524833679, + "learning_rate": 0.0006, + "loss": 3.7564640045166016, + "step": 2236 + }, + { + "epoch": 31.069899519440803, + "grad_norm": 0.27550312876701355, + "learning_rate": 0.0006, + "loss": 3.727578639984131, + "step": 2237 + }, + { + "epoch": 31.083879423328966, + "grad_norm": 0.2488662451505661, + "learning_rate": 0.0006, + "loss": 3.7420730590820312, + "step": 2238 + }, + { + "epoch": 31.097859327217126, + "grad_norm": 0.22699029743671417, + "learning_rate": 0.0006, + "loss": 3.7323155403137207, + "step": 2239 + }, + { + "epoch": 31.111839231105286, + "grad_norm": 0.23360148072242737, + "learning_rate": 0.0006, + "loss": 3.719024181365967, + "step": 2240 + }, + { + "epoch": 31.125819134993446, + "grad_norm": 0.24322988092899323, + "learning_rate": 0.0006, + "loss": 3.74485445022583, + "step": 2241 + }, + { + "epoch": 31.13979903888161, + "grad_norm": 0.2474174052476883, + "learning_rate": 0.0006, + "loss": 3.746826171875, + "step": 2242 + }, + { + "epoch": 31.15377894276977, + "grad_norm": 0.2417406439781189, + "learning_rate": 0.0006, + "loss": 3.7285032272338867, + "step": 2243 + }, + { + "epoch": 31.16775884665793, + "grad_norm": 0.2390318512916565, + "learning_rate": 0.0006, + "loss": 3.7464442253112793, + "step": 2244 + }, + { + "epoch": 31.18173875054609, + "grad_norm": 0.21819323301315308, + "learning_rate": 0.0006, + "loss": 3.735110282897949, + "step": 2245 + }, + { + "epoch": 31.195718654434252, + "grad_norm": 0.21953554451465607, + "learning_rate": 0.0006, + "loss": 3.7270030975341797, + "step": 2246 + }, + { + "epoch": 31.209698558322412, + "grad_norm": 0.1930384635925293, + "learning_rate": 0.0006, + "loss": 3.7519941329956055, + "step": 2247 + }, + { + "epoch": 31.22367846221057, + "grad_norm": 0.19799190759658813, + "learning_rate": 0.0006, + "loss": 3.7428221702575684, + "step": 2248 + }, + { + "epoch": 31.23765836609873, + "grad_norm": 0.20948201417922974, + "learning_rate": 0.0006, + "loss": 3.733120918273926, + "step": 2249 + }, + { + "epoch": 31.251638269986895, + "grad_norm": 0.23768769204616547, + "learning_rate": 0.0006, + "loss": 3.7059035301208496, + "step": 2250 + }, + { + "epoch": 31.265618173875055, + "grad_norm": 0.2808842957019806, + "learning_rate": 0.0006, + "loss": 3.7245287895202637, + "step": 2251 + }, + { + "epoch": 31.279598077763215, + "grad_norm": 0.27633124589920044, + "learning_rate": 0.0006, + "loss": 3.7436366081237793, + "step": 2252 + }, + { + "epoch": 31.293577981651374, + "grad_norm": 0.24137185513973236, + "learning_rate": 0.0006, + "loss": 3.7651219367980957, + "step": 2253 + }, + { + "epoch": 31.307557885539538, + "grad_norm": 0.22056810557842255, + "learning_rate": 0.0006, + "loss": 3.7417521476745605, + "step": 2254 + }, + { + "epoch": 31.321537789427698, + "grad_norm": 0.20137323439121246, + "learning_rate": 0.0006, + "loss": 3.750187397003174, + "step": 2255 + }, + { + "epoch": 31.335517693315857, + "grad_norm": 0.2142433375120163, + "learning_rate": 0.0006, + "loss": 3.7292675971984863, + "step": 2256 + }, + { + "epoch": 31.34949759720402, + "grad_norm": 0.21193967759609222, + "learning_rate": 0.0006, + "loss": 3.7459473609924316, + "step": 2257 + }, + { + "epoch": 31.36347750109218, + "grad_norm": 0.21418534219264984, + "learning_rate": 0.0006, + "loss": 3.754359722137451, + "step": 2258 + }, + { + "epoch": 31.37745740498034, + "grad_norm": 0.23507359623908997, + "learning_rate": 0.0006, + "loss": 3.763413906097412, + "step": 2259 + }, + { + "epoch": 31.3914373088685, + "grad_norm": 0.20393887162208557, + "learning_rate": 0.0006, + "loss": 3.73878812789917, + "step": 2260 + }, + { + "epoch": 31.405417212756664, + "grad_norm": 0.21752159297466278, + "learning_rate": 0.0006, + "loss": 3.750549793243408, + "step": 2261 + }, + { + "epoch": 31.419397116644824, + "grad_norm": 0.22629529237747192, + "learning_rate": 0.0006, + "loss": 3.7791430950164795, + "step": 2262 + }, + { + "epoch": 31.433377020532983, + "grad_norm": 0.2114613950252533, + "learning_rate": 0.0006, + "loss": 3.7709264755249023, + "step": 2263 + }, + { + "epoch": 31.447356924421143, + "grad_norm": 0.23241667449474335, + "learning_rate": 0.0006, + "loss": 3.745750665664673, + "step": 2264 + }, + { + "epoch": 31.461336828309307, + "grad_norm": 0.2434246987104416, + "learning_rate": 0.0006, + "loss": 3.769727945327759, + "step": 2265 + }, + { + "epoch": 31.475316732197467, + "grad_norm": 0.247820645570755, + "learning_rate": 0.0006, + "loss": 3.7528204917907715, + "step": 2266 + }, + { + "epoch": 31.489296636085626, + "grad_norm": 0.21287164092063904, + "learning_rate": 0.0006, + "loss": 3.728661060333252, + "step": 2267 + }, + { + "epoch": 31.503276539973786, + "grad_norm": 0.20983846485614777, + "learning_rate": 0.0006, + "loss": 3.7524428367614746, + "step": 2268 + }, + { + "epoch": 31.51725644386195, + "grad_norm": 0.23799288272857666, + "learning_rate": 0.0006, + "loss": 3.7276647090911865, + "step": 2269 + }, + { + "epoch": 31.53123634775011, + "grad_norm": 0.247065007686615, + "learning_rate": 0.0006, + "loss": 3.7506704330444336, + "step": 2270 + }, + { + "epoch": 31.54521625163827, + "grad_norm": 0.20670939981937408, + "learning_rate": 0.0006, + "loss": 3.71852445602417, + "step": 2271 + }, + { + "epoch": 31.55919615552643, + "grad_norm": 0.19463716447353363, + "learning_rate": 0.0006, + "loss": 3.732757568359375, + "step": 2272 + }, + { + "epoch": 31.573176059414592, + "grad_norm": 0.20368841290473938, + "learning_rate": 0.0006, + "loss": 3.746676445007324, + "step": 2273 + }, + { + "epoch": 31.587155963302752, + "grad_norm": 0.19691342115402222, + "learning_rate": 0.0006, + "loss": 3.7535760402679443, + "step": 2274 + }, + { + "epoch": 31.601135867190912, + "grad_norm": 0.2026553899049759, + "learning_rate": 0.0006, + "loss": 3.7406957149505615, + "step": 2275 + }, + { + "epoch": 31.615115771079076, + "grad_norm": 0.21494299173355103, + "learning_rate": 0.0006, + "loss": 3.735888957977295, + "step": 2276 + }, + { + "epoch": 31.629095674967235, + "grad_norm": 0.21644766628742218, + "learning_rate": 0.0006, + "loss": 3.723767042160034, + "step": 2277 + }, + { + "epoch": 31.643075578855395, + "grad_norm": 0.20087581872940063, + "learning_rate": 0.0006, + "loss": 3.7622008323669434, + "step": 2278 + }, + { + "epoch": 31.657055482743555, + "grad_norm": 0.1949695646762848, + "learning_rate": 0.0006, + "loss": 3.7726354598999023, + "step": 2279 + }, + { + "epoch": 31.67103538663172, + "grad_norm": 0.19120797514915466, + "learning_rate": 0.0006, + "loss": 3.7454679012298584, + "step": 2280 + }, + { + "epoch": 31.68501529051988, + "grad_norm": 0.19480115175247192, + "learning_rate": 0.0006, + "loss": 3.743934392929077, + "step": 2281 + }, + { + "epoch": 31.698995194408038, + "grad_norm": 0.1891610324382782, + "learning_rate": 0.0006, + "loss": 3.7724897861480713, + "step": 2282 + }, + { + "epoch": 31.712975098296198, + "grad_norm": 0.18533185124397278, + "learning_rate": 0.0006, + "loss": 3.7556838989257812, + "step": 2283 + }, + { + "epoch": 31.72695500218436, + "grad_norm": 0.20079447329044342, + "learning_rate": 0.0006, + "loss": 3.76758074760437, + "step": 2284 + }, + { + "epoch": 31.74093490607252, + "grad_norm": 0.2103433609008789, + "learning_rate": 0.0006, + "loss": 3.769477367401123, + "step": 2285 + }, + { + "epoch": 31.75491480996068, + "grad_norm": 0.21428923308849335, + "learning_rate": 0.0006, + "loss": 3.7317447662353516, + "step": 2286 + }, + { + "epoch": 31.76889471384884, + "grad_norm": 0.20154133439064026, + "learning_rate": 0.0006, + "loss": 3.749814987182617, + "step": 2287 + }, + { + "epoch": 31.782874617737004, + "grad_norm": 0.18998542428016663, + "learning_rate": 0.0006, + "loss": 3.7655510902404785, + "step": 2288 + }, + { + "epoch": 31.796854521625164, + "grad_norm": 0.2068665474653244, + "learning_rate": 0.0006, + "loss": 3.7375988960266113, + "step": 2289 + }, + { + "epoch": 31.810834425513324, + "grad_norm": 0.22979815304279327, + "learning_rate": 0.0006, + "loss": 3.728095531463623, + "step": 2290 + }, + { + "epoch": 31.824814329401484, + "grad_norm": 0.2378212958574295, + "learning_rate": 0.0006, + "loss": 3.73091459274292, + "step": 2291 + }, + { + "epoch": 31.838794233289647, + "grad_norm": 0.2353672832250595, + "learning_rate": 0.0006, + "loss": 3.7491769790649414, + "step": 2292 + }, + { + "epoch": 31.852774137177807, + "grad_norm": 0.22341586649417877, + "learning_rate": 0.0006, + "loss": 3.777111530303955, + "step": 2293 + }, + { + "epoch": 31.866754041065967, + "grad_norm": 0.20436930656433105, + "learning_rate": 0.0006, + "loss": 3.740997552871704, + "step": 2294 + }, + { + "epoch": 31.88073394495413, + "grad_norm": 0.20836040377616882, + "learning_rate": 0.0006, + "loss": 3.755582571029663, + "step": 2295 + }, + { + "epoch": 31.89471384884229, + "grad_norm": 0.2045193612575531, + "learning_rate": 0.0006, + "loss": 3.7583560943603516, + "step": 2296 + }, + { + "epoch": 31.90869375273045, + "grad_norm": 0.2025591880083084, + "learning_rate": 0.0006, + "loss": 3.773345470428467, + "step": 2297 + }, + { + "epoch": 31.92267365661861, + "grad_norm": 0.20309099555015564, + "learning_rate": 0.0006, + "loss": 3.7392163276672363, + "step": 2298 + }, + { + "epoch": 31.936653560506773, + "grad_norm": 0.2129351645708084, + "learning_rate": 0.0006, + "loss": 3.7801311016082764, + "step": 2299 + }, + { + "epoch": 31.950633464394933, + "grad_norm": 0.19950738549232483, + "learning_rate": 0.0006, + "loss": 3.779261589050293, + "step": 2300 + }, + { + "epoch": 31.964613368283093, + "grad_norm": 0.22837352752685547, + "learning_rate": 0.0006, + "loss": 3.782731294631958, + "step": 2301 + }, + { + "epoch": 31.978593272171253, + "grad_norm": 0.2576889097690582, + "learning_rate": 0.0006, + "loss": 3.7778096199035645, + "step": 2302 + }, + { + "epoch": 31.992573176059416, + "grad_norm": 0.2770138382911682, + "learning_rate": 0.0006, + "loss": 3.735755443572998, + "step": 2303 + }, + { + "epoch": 32.0, + "grad_norm": 0.2632865309715271, + "learning_rate": 0.0006, + "loss": 3.7562808990478516, + "step": 2304 + }, + { + "epoch": 32.0, + "eval_loss": 4.031628608703613, + "eval_runtime": 44.2115, + "eval_samples_per_second": 55.234, + "eval_steps_per_second": 3.461, + "step": 2304 + }, + { + "epoch": 32.01397990388816, + "grad_norm": 0.20234128832817078, + "learning_rate": 0.0006, + "loss": 3.734489917755127, + "step": 2305 + }, + { + "epoch": 32.02795980777632, + "grad_norm": 0.24983637034893036, + "learning_rate": 0.0006, + "loss": 3.7351019382476807, + "step": 2306 + }, + { + "epoch": 32.04193971166448, + "grad_norm": 0.27358478307724, + "learning_rate": 0.0006, + "loss": 3.708712100982666, + "step": 2307 + }, + { + "epoch": 32.05591961555265, + "grad_norm": 0.24693739414215088, + "learning_rate": 0.0006, + "loss": 3.731858491897583, + "step": 2308 + }, + { + "epoch": 32.0698995194408, + "grad_norm": 0.22751131653785706, + "learning_rate": 0.0006, + "loss": 3.7074670791625977, + "step": 2309 + }, + { + "epoch": 32.083879423328966, + "grad_norm": 0.23400720953941345, + "learning_rate": 0.0006, + "loss": 3.714092493057251, + "step": 2310 + }, + { + "epoch": 32.09785932721712, + "grad_norm": 0.20711684226989746, + "learning_rate": 0.0006, + "loss": 3.754727840423584, + "step": 2311 + }, + { + "epoch": 32.111839231105286, + "grad_norm": 0.21589399874210358, + "learning_rate": 0.0006, + "loss": 3.6953847408294678, + "step": 2312 + }, + { + "epoch": 32.12581913499345, + "grad_norm": 0.24575738608837128, + "learning_rate": 0.0006, + "loss": 3.7078802585601807, + "step": 2313 + }, + { + "epoch": 32.139799038881605, + "grad_norm": 0.23152033984661102, + "learning_rate": 0.0006, + "loss": 3.7402305603027344, + "step": 2314 + }, + { + "epoch": 32.15377894276977, + "grad_norm": 0.22639606893062592, + "learning_rate": 0.0006, + "loss": 3.7264223098754883, + "step": 2315 + }, + { + "epoch": 32.16775884665793, + "grad_norm": 0.24701760709285736, + "learning_rate": 0.0006, + "loss": 3.7497639656066895, + "step": 2316 + }, + { + "epoch": 32.18173875054609, + "grad_norm": 0.274832159280777, + "learning_rate": 0.0006, + "loss": 3.7557122707366943, + "step": 2317 + }, + { + "epoch": 32.19571865443425, + "grad_norm": 0.27472418546676636, + "learning_rate": 0.0006, + "loss": 3.6863393783569336, + "step": 2318 + }, + { + "epoch": 32.20969855832241, + "grad_norm": 0.2625530958175659, + "learning_rate": 0.0006, + "loss": 3.7203545570373535, + "step": 2319 + }, + { + "epoch": 32.22367846221057, + "grad_norm": 0.2576068341732025, + "learning_rate": 0.0006, + "loss": 3.734747886657715, + "step": 2320 + }, + { + "epoch": 32.237658366098735, + "grad_norm": 0.25946059823036194, + "learning_rate": 0.0006, + "loss": 3.7501730918884277, + "step": 2321 + }, + { + "epoch": 32.25163826998689, + "grad_norm": 0.2524135410785675, + "learning_rate": 0.0006, + "loss": 3.75177001953125, + "step": 2322 + }, + { + "epoch": 32.265618173875055, + "grad_norm": 0.2568551003932953, + "learning_rate": 0.0006, + "loss": 3.752450704574585, + "step": 2323 + }, + { + "epoch": 32.27959807776322, + "grad_norm": 0.2489749640226364, + "learning_rate": 0.0006, + "loss": 3.711735486984253, + "step": 2324 + }, + { + "epoch": 32.293577981651374, + "grad_norm": 0.2425498366355896, + "learning_rate": 0.0006, + "loss": 3.7004239559173584, + "step": 2325 + }, + { + "epoch": 32.30755788553954, + "grad_norm": 0.24359773099422455, + "learning_rate": 0.0006, + "loss": 3.733870029449463, + "step": 2326 + }, + { + "epoch": 32.3215377894277, + "grad_norm": 0.22314727306365967, + "learning_rate": 0.0006, + "loss": 3.699841022491455, + "step": 2327 + }, + { + "epoch": 32.33551769331586, + "grad_norm": 0.2047620266675949, + "learning_rate": 0.0006, + "loss": 3.732534170150757, + "step": 2328 + }, + { + "epoch": 32.34949759720402, + "grad_norm": 0.24393224716186523, + "learning_rate": 0.0006, + "loss": 3.7200770378112793, + "step": 2329 + }, + { + "epoch": 32.36347750109218, + "grad_norm": 0.23884256184101105, + "learning_rate": 0.0006, + "loss": 3.722318410873413, + "step": 2330 + }, + { + "epoch": 32.37745740498034, + "grad_norm": 0.23262189328670502, + "learning_rate": 0.0006, + "loss": 3.759033203125, + "step": 2331 + }, + { + "epoch": 32.391437308868504, + "grad_norm": 0.22542893886566162, + "learning_rate": 0.0006, + "loss": 3.729198694229126, + "step": 2332 + }, + { + "epoch": 32.40541721275666, + "grad_norm": 0.22479060292243958, + "learning_rate": 0.0006, + "loss": 3.7298169136047363, + "step": 2333 + }, + { + "epoch": 32.419397116644824, + "grad_norm": 0.21571804583072662, + "learning_rate": 0.0006, + "loss": 3.699937343597412, + "step": 2334 + }, + { + "epoch": 32.43337702053299, + "grad_norm": 0.20804545283317566, + "learning_rate": 0.0006, + "loss": 3.7495696544647217, + "step": 2335 + }, + { + "epoch": 32.44735692442114, + "grad_norm": 0.22751706838607788, + "learning_rate": 0.0006, + "loss": 3.7369821071624756, + "step": 2336 + }, + { + "epoch": 32.46133682830931, + "grad_norm": 0.2326795756816864, + "learning_rate": 0.0006, + "loss": 3.7636334896087646, + "step": 2337 + }, + { + "epoch": 32.47531673219746, + "grad_norm": 0.19971159100532532, + "learning_rate": 0.0006, + "loss": 3.72151517868042, + "step": 2338 + }, + { + "epoch": 32.489296636085626, + "grad_norm": 0.21078036725521088, + "learning_rate": 0.0006, + "loss": 3.7050065994262695, + "step": 2339 + }, + { + "epoch": 32.50327653997379, + "grad_norm": 0.22198088467121124, + "learning_rate": 0.0006, + "loss": 3.7654409408569336, + "step": 2340 + }, + { + "epoch": 32.517256443861946, + "grad_norm": 0.20995207130908966, + "learning_rate": 0.0006, + "loss": 3.7516250610351562, + "step": 2341 + }, + { + "epoch": 32.53123634775011, + "grad_norm": 0.20757141709327698, + "learning_rate": 0.0006, + "loss": 3.7412633895874023, + "step": 2342 + }, + { + "epoch": 32.54521625163827, + "grad_norm": 0.20053881406784058, + "learning_rate": 0.0006, + "loss": 3.7477493286132812, + "step": 2343 + }, + { + "epoch": 32.55919615552643, + "grad_norm": 0.20223091542720795, + "learning_rate": 0.0006, + "loss": 3.7149064540863037, + "step": 2344 + }, + { + "epoch": 32.57317605941459, + "grad_norm": 0.20179468393325806, + "learning_rate": 0.0006, + "loss": 3.70635724067688, + "step": 2345 + }, + { + "epoch": 32.58715596330275, + "grad_norm": 0.19670480489730835, + "learning_rate": 0.0006, + "loss": 3.7276744842529297, + "step": 2346 + }, + { + "epoch": 32.60113586719091, + "grad_norm": 0.1992012858390808, + "learning_rate": 0.0006, + "loss": 3.7659356594085693, + "step": 2347 + }, + { + "epoch": 32.615115771079076, + "grad_norm": 0.20124201476573944, + "learning_rate": 0.0006, + "loss": 3.722212791442871, + "step": 2348 + }, + { + "epoch": 32.62909567496723, + "grad_norm": 0.21972708404064178, + "learning_rate": 0.0006, + "loss": 3.751830577850342, + "step": 2349 + }, + { + "epoch": 32.643075578855395, + "grad_norm": 0.20454947650432587, + "learning_rate": 0.0006, + "loss": 3.7196669578552246, + "step": 2350 + }, + { + "epoch": 32.65705548274356, + "grad_norm": 0.1783330887556076, + "learning_rate": 0.0006, + "loss": 3.721461772918701, + "step": 2351 + }, + { + "epoch": 32.671035386631715, + "grad_norm": 0.2027900367975235, + "learning_rate": 0.0006, + "loss": 3.753718614578247, + "step": 2352 + }, + { + "epoch": 32.68501529051988, + "grad_norm": 0.21232381463050842, + "learning_rate": 0.0006, + "loss": 3.732736349105835, + "step": 2353 + }, + { + "epoch": 32.69899519440804, + "grad_norm": 0.2214568555355072, + "learning_rate": 0.0006, + "loss": 3.7250165939331055, + "step": 2354 + }, + { + "epoch": 32.7129750982962, + "grad_norm": 0.2626485228538513, + "learning_rate": 0.0006, + "loss": 3.72263503074646, + "step": 2355 + }, + { + "epoch": 32.72695500218436, + "grad_norm": 0.30096277594566345, + "learning_rate": 0.0006, + "loss": 3.7599854469299316, + "step": 2356 + }, + { + "epoch": 32.74093490607252, + "grad_norm": 0.3374342620372772, + "learning_rate": 0.0006, + "loss": 3.7493844032287598, + "step": 2357 + }, + { + "epoch": 32.75491480996068, + "grad_norm": 0.3051377534866333, + "learning_rate": 0.0006, + "loss": 3.7515692710876465, + "step": 2358 + }, + { + "epoch": 32.768894713848844, + "grad_norm": 0.2130587249994278, + "learning_rate": 0.0006, + "loss": 3.751307964324951, + "step": 2359 + }, + { + "epoch": 32.782874617737, + "grad_norm": 0.25198230147361755, + "learning_rate": 0.0006, + "loss": 3.7500064373016357, + "step": 2360 + }, + { + "epoch": 32.796854521625164, + "grad_norm": 0.27613863348960876, + "learning_rate": 0.0006, + "loss": 3.7257039546966553, + "step": 2361 + }, + { + "epoch": 32.81083442551333, + "grad_norm": 0.23749367892742157, + "learning_rate": 0.0006, + "loss": 3.778343439102173, + "step": 2362 + }, + { + "epoch": 32.824814329401484, + "grad_norm": 0.2063702642917633, + "learning_rate": 0.0006, + "loss": 3.7493772506713867, + "step": 2363 + }, + { + "epoch": 32.83879423328965, + "grad_norm": 0.21169374883174896, + "learning_rate": 0.0006, + "loss": 3.722567081451416, + "step": 2364 + }, + { + "epoch": 32.8527741371778, + "grad_norm": 0.23291490972042084, + "learning_rate": 0.0006, + "loss": 3.7555532455444336, + "step": 2365 + }, + { + "epoch": 32.86675404106597, + "grad_norm": 0.21486155688762665, + "learning_rate": 0.0006, + "loss": 3.7401528358459473, + "step": 2366 + }, + { + "epoch": 32.88073394495413, + "grad_norm": 0.2296247035264969, + "learning_rate": 0.0006, + "loss": 3.7867965698242188, + "step": 2367 + }, + { + "epoch": 32.89471384884229, + "grad_norm": 0.2335108071565628, + "learning_rate": 0.0006, + "loss": 3.768036365509033, + "step": 2368 + }, + { + "epoch": 32.90869375273045, + "grad_norm": 0.23921863734722137, + "learning_rate": 0.0006, + "loss": 3.725252151489258, + "step": 2369 + }, + { + "epoch": 32.92267365661861, + "grad_norm": 0.20303526520729065, + "learning_rate": 0.0006, + "loss": 3.7806248664855957, + "step": 2370 + }, + { + "epoch": 32.93665356050677, + "grad_norm": 0.19293150305747986, + "learning_rate": 0.0006, + "loss": 3.759281873703003, + "step": 2371 + }, + { + "epoch": 32.95063346439493, + "grad_norm": 0.20609107613563538, + "learning_rate": 0.0006, + "loss": 3.764190196990967, + "step": 2372 + }, + { + "epoch": 32.964613368283096, + "grad_norm": 0.2014189213514328, + "learning_rate": 0.0006, + "loss": 3.7365214824676514, + "step": 2373 + }, + { + "epoch": 32.97859327217125, + "grad_norm": 0.22045451402664185, + "learning_rate": 0.0006, + "loss": 3.7435812950134277, + "step": 2374 + }, + { + "epoch": 32.992573176059416, + "grad_norm": 0.24228639900684357, + "learning_rate": 0.0006, + "loss": 3.751309394836426, + "step": 2375 + }, + { + "epoch": 33.0, + "grad_norm": 0.2645106613636017, + "learning_rate": 0.0006, + "loss": 3.7629928588867188, + "step": 2376 + }, + { + "epoch": 33.0, + "eval_loss": 4.026789665222168, + "eval_runtime": 44.9957, + "eval_samples_per_second": 54.272, + "eval_steps_per_second": 3.4, + "step": 2376 + }, + { + "epoch": 33.01397990388816, + "grad_norm": 0.21402551233768463, + "learning_rate": 0.0006, + "loss": 3.72019100189209, + "step": 2377 + }, + { + "epoch": 33.02795980777632, + "grad_norm": 0.23886585235595703, + "learning_rate": 0.0006, + "loss": 3.687084674835205, + "step": 2378 + }, + { + "epoch": 33.04193971166448, + "grad_norm": 0.29936572909355164, + "learning_rate": 0.0006, + "loss": 3.697310447692871, + "step": 2379 + }, + { + "epoch": 33.05591961555265, + "grad_norm": 0.30007585883140564, + "learning_rate": 0.0006, + "loss": 3.6913352012634277, + "step": 2380 + }, + { + "epoch": 33.0698995194408, + "grad_norm": 0.26594656705856323, + "learning_rate": 0.0006, + "loss": 3.740802526473999, + "step": 2381 + }, + { + "epoch": 33.083879423328966, + "grad_norm": 0.2658730447292328, + "learning_rate": 0.0006, + "loss": 3.692746162414551, + "step": 2382 + }, + { + "epoch": 33.09785932721712, + "grad_norm": 0.26755523681640625, + "learning_rate": 0.0006, + "loss": 3.7534420490264893, + "step": 2383 + }, + { + "epoch": 33.111839231105286, + "grad_norm": 0.23070940375328064, + "learning_rate": 0.0006, + "loss": 3.717876672744751, + "step": 2384 + }, + { + "epoch": 33.12581913499345, + "grad_norm": 0.2476235181093216, + "learning_rate": 0.0006, + "loss": 3.7072248458862305, + "step": 2385 + }, + { + "epoch": 33.139799038881605, + "grad_norm": 0.2454477846622467, + "learning_rate": 0.0006, + "loss": 3.729762077331543, + "step": 2386 + }, + { + "epoch": 33.15377894276977, + "grad_norm": 0.24090935289859772, + "learning_rate": 0.0006, + "loss": 3.721374988555908, + "step": 2387 + }, + { + "epoch": 33.16775884665793, + "grad_norm": 0.2440263032913208, + "learning_rate": 0.0006, + "loss": 3.730433464050293, + "step": 2388 + }, + { + "epoch": 33.18173875054609, + "grad_norm": 0.21699118614196777, + "learning_rate": 0.0006, + "loss": 3.724730968475342, + "step": 2389 + }, + { + "epoch": 33.19571865443425, + "grad_norm": 0.2302001267671585, + "learning_rate": 0.0006, + "loss": 3.69376277923584, + "step": 2390 + }, + { + "epoch": 33.20969855832241, + "grad_norm": 0.24707409739494324, + "learning_rate": 0.0006, + "loss": 3.705653667449951, + "step": 2391 + }, + { + "epoch": 33.22367846221057, + "grad_norm": 0.22896641492843628, + "learning_rate": 0.0006, + "loss": 3.747000217437744, + "step": 2392 + }, + { + "epoch": 33.237658366098735, + "grad_norm": 0.2278730720281601, + "learning_rate": 0.0006, + "loss": 3.733464241027832, + "step": 2393 + }, + { + "epoch": 33.25163826998689, + "grad_norm": 0.23909862339496613, + "learning_rate": 0.0006, + "loss": 3.733661413192749, + "step": 2394 + }, + { + "epoch": 33.265618173875055, + "grad_norm": 0.2349950075149536, + "learning_rate": 0.0006, + "loss": 3.7337965965270996, + "step": 2395 + }, + { + "epoch": 33.27959807776322, + "grad_norm": 0.22655968368053436, + "learning_rate": 0.0006, + "loss": 3.70503306388855, + "step": 2396 + }, + { + "epoch": 33.293577981651374, + "grad_norm": 0.22167043387889862, + "learning_rate": 0.0006, + "loss": 3.738797903060913, + "step": 2397 + }, + { + "epoch": 33.30755788553954, + "grad_norm": 0.2278883010149002, + "learning_rate": 0.0006, + "loss": 3.712550640106201, + "step": 2398 + }, + { + "epoch": 33.3215377894277, + "grad_norm": 0.2220565229654312, + "learning_rate": 0.0006, + "loss": 3.7278006076812744, + "step": 2399 + }, + { + "epoch": 33.33551769331586, + "grad_norm": 0.21888740360736847, + "learning_rate": 0.0006, + "loss": 3.72243595123291, + "step": 2400 + }, + { + "epoch": 33.34949759720402, + "grad_norm": 0.21587581932544708, + "learning_rate": 0.0006, + "loss": 3.7177581787109375, + "step": 2401 + }, + { + "epoch": 33.36347750109218, + "grad_norm": 0.1923578530550003, + "learning_rate": 0.0006, + "loss": 3.711294651031494, + "step": 2402 + }, + { + "epoch": 33.37745740498034, + "grad_norm": 0.1994934380054474, + "learning_rate": 0.0006, + "loss": 3.762061595916748, + "step": 2403 + }, + { + "epoch": 33.391437308868504, + "grad_norm": 0.20074427127838135, + "learning_rate": 0.0006, + "loss": 3.708559036254883, + "step": 2404 + }, + { + "epoch": 33.40541721275666, + "grad_norm": 0.21349482238292694, + "learning_rate": 0.0006, + "loss": 3.7089147567749023, + "step": 2405 + }, + { + "epoch": 33.419397116644824, + "grad_norm": 0.25523608922958374, + "learning_rate": 0.0006, + "loss": 3.7241058349609375, + "step": 2406 + }, + { + "epoch": 33.43337702053299, + "grad_norm": 0.27654796838760376, + "learning_rate": 0.0006, + "loss": 3.723618984222412, + "step": 2407 + }, + { + "epoch": 33.44735692442114, + "grad_norm": 0.2651479244232178, + "learning_rate": 0.0006, + "loss": 3.7367782592773438, + "step": 2408 + }, + { + "epoch": 33.46133682830931, + "grad_norm": 0.23403556644916534, + "learning_rate": 0.0006, + "loss": 3.7198312282562256, + "step": 2409 + }, + { + "epoch": 33.47531673219746, + "grad_norm": 0.20970726013183594, + "learning_rate": 0.0006, + "loss": 3.7088186740875244, + "step": 2410 + }, + { + "epoch": 33.489296636085626, + "grad_norm": 0.18532544374465942, + "learning_rate": 0.0006, + "loss": 3.7162208557128906, + "step": 2411 + }, + { + "epoch": 33.50327653997379, + "grad_norm": 0.19590279459953308, + "learning_rate": 0.0006, + "loss": 3.766357898712158, + "step": 2412 + }, + { + "epoch": 33.517256443861946, + "grad_norm": 0.203349307179451, + "learning_rate": 0.0006, + "loss": 3.732177257537842, + "step": 2413 + }, + { + "epoch": 33.53123634775011, + "grad_norm": 0.2015952616930008, + "learning_rate": 0.0006, + "loss": 3.741609573364258, + "step": 2414 + }, + { + "epoch": 33.54521625163827, + "grad_norm": 0.20024161040782928, + "learning_rate": 0.0006, + "loss": 3.6894431114196777, + "step": 2415 + }, + { + "epoch": 33.55919615552643, + "grad_norm": 0.20932617783546448, + "learning_rate": 0.0006, + "loss": 3.721979856491089, + "step": 2416 + }, + { + "epoch": 33.57317605941459, + "grad_norm": 0.22069773077964783, + "learning_rate": 0.0006, + "loss": 3.712203025817871, + "step": 2417 + }, + { + "epoch": 33.58715596330275, + "grad_norm": 0.22341343760490417, + "learning_rate": 0.0006, + "loss": 3.7469263076782227, + "step": 2418 + }, + { + "epoch": 33.60113586719091, + "grad_norm": 0.21758507192134857, + "learning_rate": 0.0006, + "loss": 3.721778392791748, + "step": 2419 + }, + { + "epoch": 33.615115771079076, + "grad_norm": 0.20480088889598846, + "learning_rate": 0.0006, + "loss": 3.743570327758789, + "step": 2420 + }, + { + "epoch": 33.62909567496723, + "grad_norm": 0.23068399727344513, + "learning_rate": 0.0006, + "loss": 3.7203001976013184, + "step": 2421 + }, + { + "epoch": 33.643075578855395, + "grad_norm": 0.2526263892650604, + "learning_rate": 0.0006, + "loss": 3.7336440086364746, + "step": 2422 + }, + { + "epoch": 33.65705548274356, + "grad_norm": 0.218627467751503, + "learning_rate": 0.0006, + "loss": 3.730762243270874, + "step": 2423 + }, + { + "epoch": 33.671035386631715, + "grad_norm": 0.21883417665958405, + "learning_rate": 0.0006, + "loss": 3.749356508255005, + "step": 2424 + }, + { + "epoch": 33.68501529051988, + "grad_norm": 0.22885626554489136, + "learning_rate": 0.0006, + "loss": 3.7426199913024902, + "step": 2425 + }, + { + "epoch": 33.69899519440804, + "grad_norm": 0.23709580302238464, + "learning_rate": 0.0006, + "loss": 3.691652774810791, + "step": 2426 + }, + { + "epoch": 33.7129750982962, + "grad_norm": 0.2258225381374359, + "learning_rate": 0.0006, + "loss": 3.7368886470794678, + "step": 2427 + }, + { + "epoch": 33.72695500218436, + "grad_norm": 0.1993306577205658, + "learning_rate": 0.0006, + "loss": 3.722733497619629, + "step": 2428 + }, + { + "epoch": 33.74093490607252, + "grad_norm": 0.20307473838329315, + "learning_rate": 0.0006, + "loss": 3.7507500648498535, + "step": 2429 + }, + { + "epoch": 33.75491480996068, + "grad_norm": 0.20076696574687958, + "learning_rate": 0.0006, + "loss": 3.6896910667419434, + "step": 2430 + }, + { + "epoch": 33.768894713848844, + "grad_norm": 0.21118830144405365, + "learning_rate": 0.0006, + "loss": 3.7176647186279297, + "step": 2431 + }, + { + "epoch": 33.782874617737, + "grad_norm": 0.21605782210826874, + "learning_rate": 0.0006, + "loss": 3.7423641681671143, + "step": 2432 + }, + { + "epoch": 33.796854521625164, + "grad_norm": 0.22233152389526367, + "learning_rate": 0.0006, + "loss": 3.7296109199523926, + "step": 2433 + }, + { + "epoch": 33.81083442551333, + "grad_norm": 0.2253616899251938, + "learning_rate": 0.0006, + "loss": 3.7095072269439697, + "step": 2434 + }, + { + "epoch": 33.824814329401484, + "grad_norm": 0.2105807662010193, + "learning_rate": 0.0006, + "loss": 3.760921001434326, + "step": 2435 + }, + { + "epoch": 33.83879423328965, + "grad_norm": 0.20413213968276978, + "learning_rate": 0.0006, + "loss": 3.7356553077697754, + "step": 2436 + }, + { + "epoch": 33.8527741371778, + "grad_norm": 0.19781213998794556, + "learning_rate": 0.0006, + "loss": 3.726787567138672, + "step": 2437 + }, + { + "epoch": 33.86675404106597, + "grad_norm": 0.199616938829422, + "learning_rate": 0.0006, + "loss": 3.7200419902801514, + "step": 2438 + }, + { + "epoch": 33.88073394495413, + "grad_norm": 0.19702564179897308, + "learning_rate": 0.0006, + "loss": 3.714287281036377, + "step": 2439 + }, + { + "epoch": 33.89471384884229, + "grad_norm": 0.19456833600997925, + "learning_rate": 0.0006, + "loss": 3.739231586456299, + "step": 2440 + }, + { + "epoch": 33.90869375273045, + "grad_norm": 0.1890697181224823, + "learning_rate": 0.0006, + "loss": 3.7088429927825928, + "step": 2441 + }, + { + "epoch": 33.92267365661861, + "grad_norm": 0.1845911741256714, + "learning_rate": 0.0006, + "loss": 3.760782241821289, + "step": 2442 + }, + { + "epoch": 33.93665356050677, + "grad_norm": 0.19045902788639069, + "learning_rate": 0.0006, + "loss": 3.736957311630249, + "step": 2443 + }, + { + "epoch": 33.95063346439493, + "grad_norm": 0.1934187412261963, + "learning_rate": 0.0006, + "loss": 3.756351947784424, + "step": 2444 + }, + { + "epoch": 33.964613368283096, + "grad_norm": 0.19774580001831055, + "learning_rate": 0.0006, + "loss": 3.7332229614257812, + "step": 2445 + }, + { + "epoch": 33.97859327217125, + "grad_norm": 0.20653048157691956, + "learning_rate": 0.0006, + "loss": 3.7112321853637695, + "step": 2446 + }, + { + "epoch": 33.992573176059416, + "grad_norm": 0.18618541955947876, + "learning_rate": 0.0006, + "loss": 3.735710620880127, + "step": 2447 + }, + { + "epoch": 34.0, + "grad_norm": 0.22846414148807526, + "learning_rate": 0.0006, + "loss": 3.739706039428711, + "step": 2448 + }, + { + "epoch": 34.0, + "eval_loss": 4.0099663734436035, + "eval_runtime": 45.2096, + "eval_samples_per_second": 54.015, + "eval_steps_per_second": 3.384, + "step": 2448 + }, + { + "epoch": 34.01397990388816, + "grad_norm": 0.20987462997436523, + "learning_rate": 0.0006, + "loss": 3.6798832416534424, + "step": 2449 + }, + { + "epoch": 34.02795980777632, + "grad_norm": 0.2230423390865326, + "learning_rate": 0.0006, + "loss": 3.7157368659973145, + "step": 2450 + }, + { + "epoch": 34.04193971166448, + "grad_norm": 0.24115242063999176, + "learning_rate": 0.0006, + "loss": 3.696037769317627, + "step": 2451 + }, + { + "epoch": 34.05591961555265, + "grad_norm": 0.24499665200710297, + "learning_rate": 0.0006, + "loss": 3.695420742034912, + "step": 2452 + }, + { + "epoch": 34.0698995194408, + "grad_norm": 0.23336757719516754, + "learning_rate": 0.0006, + "loss": 3.7252023220062256, + "step": 2453 + }, + { + "epoch": 34.083879423328966, + "grad_norm": 0.23716159164905548, + "learning_rate": 0.0006, + "loss": 3.714542865753174, + "step": 2454 + }, + { + "epoch": 34.09785932721712, + "grad_norm": 0.2305644154548645, + "learning_rate": 0.0006, + "loss": 3.6989386081695557, + "step": 2455 + }, + { + "epoch": 34.111839231105286, + "grad_norm": 0.2281671017408371, + "learning_rate": 0.0006, + "loss": 3.6952829360961914, + "step": 2456 + }, + { + "epoch": 34.12581913499345, + "grad_norm": 0.21031132340431213, + "learning_rate": 0.0006, + "loss": 3.7337589263916016, + "step": 2457 + }, + { + "epoch": 34.139799038881605, + "grad_norm": 0.2233671098947525, + "learning_rate": 0.0006, + "loss": 3.6923675537109375, + "step": 2458 + }, + { + "epoch": 34.15377894276977, + "grad_norm": 0.22766625881195068, + "learning_rate": 0.0006, + "loss": 3.70849609375, + "step": 2459 + }, + { + "epoch": 34.16775884665793, + "grad_norm": 0.22433766722679138, + "learning_rate": 0.0006, + "loss": 3.718319892883301, + "step": 2460 + }, + { + "epoch": 34.18173875054609, + "grad_norm": 0.20621491968631744, + "learning_rate": 0.0006, + "loss": 3.6874704360961914, + "step": 2461 + }, + { + "epoch": 34.19571865443425, + "grad_norm": 0.21353304386138916, + "learning_rate": 0.0006, + "loss": 3.663358688354492, + "step": 2462 + }, + { + "epoch": 34.20969855832241, + "grad_norm": 0.20652951300144196, + "learning_rate": 0.0006, + "loss": 3.718107223510742, + "step": 2463 + }, + { + "epoch": 34.22367846221057, + "grad_norm": 0.19780176877975464, + "learning_rate": 0.0006, + "loss": 3.7255396842956543, + "step": 2464 + }, + { + "epoch": 34.237658366098735, + "grad_norm": 0.20636138319969177, + "learning_rate": 0.0006, + "loss": 3.696850538253784, + "step": 2465 + }, + { + "epoch": 34.25163826998689, + "grad_norm": 0.23691460490226746, + "learning_rate": 0.0006, + "loss": 3.687997341156006, + "step": 2466 + }, + { + "epoch": 34.265618173875055, + "grad_norm": 0.2380511611700058, + "learning_rate": 0.0006, + "loss": 3.716610908508301, + "step": 2467 + }, + { + "epoch": 34.27959807776322, + "grad_norm": 0.21508945524692535, + "learning_rate": 0.0006, + "loss": 3.6993470191955566, + "step": 2468 + }, + { + "epoch": 34.293577981651374, + "grad_norm": 0.20441125333309174, + "learning_rate": 0.0006, + "loss": 3.7194275856018066, + "step": 2469 + }, + { + "epoch": 34.30755788553954, + "grad_norm": 0.19704242050647736, + "learning_rate": 0.0006, + "loss": 3.675929546356201, + "step": 2470 + }, + { + "epoch": 34.3215377894277, + "grad_norm": 0.1918456256389618, + "learning_rate": 0.0006, + "loss": 3.7189574241638184, + "step": 2471 + }, + { + "epoch": 34.33551769331586, + "grad_norm": 0.19687092304229736, + "learning_rate": 0.0006, + "loss": 3.725809335708618, + "step": 2472 + }, + { + "epoch": 34.34949759720402, + "grad_norm": 0.2048639953136444, + "learning_rate": 0.0006, + "loss": 3.7461748123168945, + "step": 2473 + }, + { + "epoch": 34.36347750109218, + "grad_norm": 0.21086618304252625, + "learning_rate": 0.0006, + "loss": 3.6849746704101562, + "step": 2474 + }, + { + "epoch": 34.37745740498034, + "grad_norm": 0.2172154039144516, + "learning_rate": 0.0006, + "loss": 3.7379322052001953, + "step": 2475 + }, + { + "epoch": 34.391437308868504, + "grad_norm": 0.22725504636764526, + "learning_rate": 0.0006, + "loss": 3.7341527938842773, + "step": 2476 + }, + { + "epoch": 34.40541721275666, + "grad_norm": 0.22309242188930511, + "learning_rate": 0.0006, + "loss": 3.724946975708008, + "step": 2477 + }, + { + "epoch": 34.419397116644824, + "grad_norm": 0.25252285599708557, + "learning_rate": 0.0006, + "loss": 3.710257053375244, + "step": 2478 + }, + { + "epoch": 34.43337702053299, + "grad_norm": 0.2549746334552765, + "learning_rate": 0.0006, + "loss": 3.7105040550231934, + "step": 2479 + }, + { + "epoch": 34.44735692442114, + "grad_norm": 0.22544030845165253, + "learning_rate": 0.0006, + "loss": 3.7340707778930664, + "step": 2480 + }, + { + "epoch": 34.46133682830931, + "grad_norm": 0.22275063395500183, + "learning_rate": 0.0006, + "loss": 3.7141473293304443, + "step": 2481 + }, + { + "epoch": 34.47531673219746, + "grad_norm": 0.25373485684394836, + "learning_rate": 0.0006, + "loss": 3.7014691829681396, + "step": 2482 + }, + { + "epoch": 34.489296636085626, + "grad_norm": 0.2573327124118805, + "learning_rate": 0.0006, + "loss": 3.682562828063965, + "step": 2483 + }, + { + "epoch": 34.50327653997379, + "grad_norm": 0.2452341616153717, + "learning_rate": 0.0006, + "loss": 3.757261276245117, + "step": 2484 + }, + { + "epoch": 34.517256443861946, + "grad_norm": 0.2477131187915802, + "learning_rate": 0.0006, + "loss": 3.7216877937316895, + "step": 2485 + }, + { + "epoch": 34.53123634775011, + "grad_norm": 0.24740098416805267, + "learning_rate": 0.0006, + "loss": 3.705704927444458, + "step": 2486 + }, + { + "epoch": 34.54521625163827, + "grad_norm": 0.27306219935417175, + "learning_rate": 0.0006, + "loss": 3.7014641761779785, + "step": 2487 + }, + { + "epoch": 34.55919615552643, + "grad_norm": 0.26376286149024963, + "learning_rate": 0.0006, + "loss": 3.686056137084961, + "step": 2488 + }, + { + "epoch": 34.57317605941459, + "grad_norm": 0.2796899378299713, + "learning_rate": 0.0006, + "loss": 3.7171077728271484, + "step": 2489 + }, + { + "epoch": 34.58715596330275, + "grad_norm": 0.24279902875423431, + "learning_rate": 0.0006, + "loss": 3.7448348999023438, + "step": 2490 + }, + { + "epoch": 34.60113586719091, + "grad_norm": 0.22772833704948425, + "learning_rate": 0.0006, + "loss": 3.7028117179870605, + "step": 2491 + }, + { + "epoch": 34.615115771079076, + "grad_norm": 0.22157910466194153, + "learning_rate": 0.0006, + "loss": 3.750023603439331, + "step": 2492 + }, + { + "epoch": 34.62909567496723, + "grad_norm": 0.24342703819274902, + "learning_rate": 0.0006, + "loss": 3.7181010246276855, + "step": 2493 + }, + { + "epoch": 34.643075578855395, + "grad_norm": 0.2554340362548828, + "learning_rate": 0.0006, + "loss": 3.6994080543518066, + "step": 2494 + }, + { + "epoch": 34.65705548274356, + "grad_norm": 0.21296930313110352, + "learning_rate": 0.0006, + "loss": 3.7534523010253906, + "step": 2495 + }, + { + "epoch": 34.671035386631715, + "grad_norm": 0.19117674231529236, + "learning_rate": 0.0006, + "loss": 3.7267889976501465, + "step": 2496 + }, + { + "epoch": 34.68501529051988, + "grad_norm": 0.2306399643421173, + "learning_rate": 0.0006, + "loss": 3.723212242126465, + "step": 2497 + }, + { + "epoch": 34.69899519440804, + "grad_norm": 0.23063263297080994, + "learning_rate": 0.0006, + "loss": 3.730070114135742, + "step": 2498 + }, + { + "epoch": 34.7129750982962, + "grad_norm": 0.19422881305217743, + "learning_rate": 0.0006, + "loss": 3.694833755493164, + "step": 2499 + }, + { + "epoch": 34.72695500218436, + "grad_norm": 0.20246362686157227, + "learning_rate": 0.0006, + "loss": 3.71140718460083, + "step": 2500 + }, + { + "epoch": 34.74093490607252, + "grad_norm": 0.1942741572856903, + "learning_rate": 0.0006, + "loss": 3.7530534267425537, + "step": 2501 + }, + { + "epoch": 34.75491480996068, + "grad_norm": 0.19686029851436615, + "learning_rate": 0.0006, + "loss": 3.7059555053710938, + "step": 2502 + }, + { + "epoch": 34.768894713848844, + "grad_norm": 0.20120355486869812, + "learning_rate": 0.0006, + "loss": 3.7271084785461426, + "step": 2503 + }, + { + "epoch": 34.782874617737, + "grad_norm": 0.20880399644374847, + "learning_rate": 0.0006, + "loss": 3.712137460708618, + "step": 2504 + }, + { + "epoch": 34.796854521625164, + "grad_norm": 0.22139988839626312, + "learning_rate": 0.0006, + "loss": 3.731245517730713, + "step": 2505 + }, + { + "epoch": 34.81083442551333, + "grad_norm": 0.22756224870681763, + "learning_rate": 0.0006, + "loss": 3.708987236022949, + "step": 2506 + }, + { + "epoch": 34.824814329401484, + "grad_norm": 0.22332409024238586, + "learning_rate": 0.0006, + "loss": 3.7365565299987793, + "step": 2507 + }, + { + "epoch": 34.83879423328965, + "grad_norm": 0.19599054753780365, + "learning_rate": 0.0006, + "loss": 3.7266454696655273, + "step": 2508 + }, + { + "epoch": 34.8527741371778, + "grad_norm": 0.19843019545078278, + "learning_rate": 0.0006, + "loss": 3.7225422859191895, + "step": 2509 + }, + { + "epoch": 34.86675404106597, + "grad_norm": 0.20147928595542908, + "learning_rate": 0.0006, + "loss": 3.7282514572143555, + "step": 2510 + }, + { + "epoch": 34.88073394495413, + "grad_norm": 0.19489876925945282, + "learning_rate": 0.0006, + "loss": 3.694852113723755, + "step": 2511 + }, + { + "epoch": 34.89471384884229, + "grad_norm": 0.20680078864097595, + "learning_rate": 0.0006, + "loss": 3.74678635597229, + "step": 2512 + }, + { + "epoch": 34.90869375273045, + "grad_norm": 0.2233233004808426, + "learning_rate": 0.0006, + "loss": 3.726475238800049, + "step": 2513 + }, + { + "epoch": 34.92267365661861, + "grad_norm": 0.20702993869781494, + "learning_rate": 0.0006, + "loss": 3.6946351528167725, + "step": 2514 + }, + { + "epoch": 34.93665356050677, + "grad_norm": 0.2081725299358368, + "learning_rate": 0.0006, + "loss": 3.7101621627807617, + "step": 2515 + }, + { + "epoch": 34.95063346439493, + "grad_norm": 0.20551837980747223, + "learning_rate": 0.0006, + "loss": 3.7060177326202393, + "step": 2516 + }, + { + "epoch": 34.964613368283096, + "grad_norm": 0.2106839418411255, + "learning_rate": 0.0006, + "loss": 3.7460474967956543, + "step": 2517 + }, + { + "epoch": 34.97859327217125, + "grad_norm": 0.18512766063213348, + "learning_rate": 0.0006, + "loss": 3.719280242919922, + "step": 2518 + }, + { + "epoch": 34.992573176059416, + "grad_norm": 0.1802142709493637, + "learning_rate": 0.0006, + "loss": 3.698255777359009, + "step": 2519 + }, + { + "epoch": 35.0, + "grad_norm": 0.2028084248304367, + "learning_rate": 0.0006, + "loss": 3.711136817932129, + "step": 2520 + }, + { + "epoch": 35.0, + "eval_loss": 4.006688117980957, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 2520 + }, + { + "epoch": 35.01397990388816, + "grad_norm": 0.1973012387752533, + "learning_rate": 0.0006, + "loss": 3.7108325958251953, + "step": 2521 + }, + { + "epoch": 35.02795980777632, + "grad_norm": 0.23763646185398102, + "learning_rate": 0.0006, + "loss": 3.675785541534424, + "step": 2522 + }, + { + "epoch": 35.04193971166448, + "grad_norm": 0.24403199553489685, + "learning_rate": 0.0006, + "loss": 3.7034249305725098, + "step": 2523 + }, + { + "epoch": 35.05591961555265, + "grad_norm": 0.19050131738185883, + "learning_rate": 0.0006, + "loss": 3.6984221935272217, + "step": 2524 + }, + { + "epoch": 35.0698995194408, + "grad_norm": 0.21389710903167725, + "learning_rate": 0.0006, + "loss": 3.6641085147857666, + "step": 2525 + }, + { + "epoch": 35.083879423328966, + "grad_norm": 0.23103152215480804, + "learning_rate": 0.0006, + "loss": 3.722912311553955, + "step": 2526 + }, + { + "epoch": 35.09785932721712, + "grad_norm": 0.2197326272726059, + "learning_rate": 0.0006, + "loss": 3.696568727493286, + "step": 2527 + }, + { + "epoch": 35.111839231105286, + "grad_norm": 0.20877327024936676, + "learning_rate": 0.0006, + "loss": 3.666700601577759, + "step": 2528 + }, + { + "epoch": 35.12581913499345, + "grad_norm": 0.20904001593589783, + "learning_rate": 0.0006, + "loss": 3.6896979808807373, + "step": 2529 + }, + { + "epoch": 35.139799038881605, + "grad_norm": 0.1947423666715622, + "learning_rate": 0.0006, + "loss": 3.6647095680236816, + "step": 2530 + }, + { + "epoch": 35.15377894276977, + "grad_norm": 0.2134019434452057, + "learning_rate": 0.0006, + "loss": 3.696993589401245, + "step": 2531 + }, + { + "epoch": 35.16775884665793, + "grad_norm": 0.2299254685640335, + "learning_rate": 0.0006, + "loss": 3.7067925930023193, + "step": 2532 + }, + { + "epoch": 35.18173875054609, + "grad_norm": 0.219585582613945, + "learning_rate": 0.0006, + "loss": 3.6680960655212402, + "step": 2533 + }, + { + "epoch": 35.19571865443425, + "grad_norm": 0.2146025449037552, + "learning_rate": 0.0006, + "loss": 3.7185046672821045, + "step": 2534 + }, + { + "epoch": 35.20969855832241, + "grad_norm": 0.22748060524463654, + "learning_rate": 0.0006, + "loss": 3.659202814102173, + "step": 2535 + }, + { + "epoch": 35.22367846221057, + "grad_norm": 0.22272273898124695, + "learning_rate": 0.0006, + "loss": 3.7002370357513428, + "step": 2536 + }, + { + "epoch": 35.237658366098735, + "grad_norm": 0.23827379941940308, + "learning_rate": 0.0006, + "loss": 3.714664936065674, + "step": 2537 + }, + { + "epoch": 35.25163826998689, + "grad_norm": 0.2328156679868698, + "learning_rate": 0.0006, + "loss": 3.665173292160034, + "step": 2538 + }, + { + "epoch": 35.265618173875055, + "grad_norm": 0.2573475241661072, + "learning_rate": 0.0006, + "loss": 3.7073206901550293, + "step": 2539 + }, + { + "epoch": 35.27959807776322, + "grad_norm": 0.2411472052335739, + "learning_rate": 0.0006, + "loss": 3.697751045227051, + "step": 2540 + }, + { + "epoch": 35.293577981651374, + "grad_norm": 0.22836148738861084, + "learning_rate": 0.0006, + "loss": 3.7219419479370117, + "step": 2541 + }, + { + "epoch": 35.30755788553954, + "grad_norm": 0.2225421667098999, + "learning_rate": 0.0006, + "loss": 3.69516658782959, + "step": 2542 + }, + { + "epoch": 35.3215377894277, + "grad_norm": 0.2180362343788147, + "learning_rate": 0.0006, + "loss": 3.714043378829956, + "step": 2543 + }, + { + "epoch": 35.33551769331586, + "grad_norm": 0.23638299107551575, + "learning_rate": 0.0006, + "loss": 3.7449421882629395, + "step": 2544 + }, + { + "epoch": 35.34949759720402, + "grad_norm": 0.21792089939117432, + "learning_rate": 0.0006, + "loss": 3.7029948234558105, + "step": 2545 + }, + { + "epoch": 35.36347750109218, + "grad_norm": 0.23266112804412842, + "learning_rate": 0.0006, + "loss": 3.683509111404419, + "step": 2546 + }, + { + "epoch": 35.37745740498034, + "grad_norm": 0.24203059077262878, + "learning_rate": 0.0006, + "loss": 3.68572998046875, + "step": 2547 + }, + { + "epoch": 35.391437308868504, + "grad_norm": 0.2543564438819885, + "learning_rate": 0.0006, + "loss": 3.6902432441711426, + "step": 2548 + }, + { + "epoch": 35.40541721275666, + "grad_norm": 0.22990189492702484, + "learning_rate": 0.0006, + "loss": 3.708810329437256, + "step": 2549 + }, + { + "epoch": 35.419397116644824, + "grad_norm": 0.2594352662563324, + "learning_rate": 0.0006, + "loss": 3.7312886714935303, + "step": 2550 + }, + { + "epoch": 35.43337702053299, + "grad_norm": 0.27525269985198975, + "learning_rate": 0.0006, + "loss": 3.6963448524475098, + "step": 2551 + }, + { + "epoch": 35.44735692442114, + "grad_norm": 0.2436525970697403, + "learning_rate": 0.0006, + "loss": 3.6733713150024414, + "step": 2552 + }, + { + "epoch": 35.46133682830931, + "grad_norm": 0.25500908493995667, + "learning_rate": 0.0006, + "loss": 3.7104358673095703, + "step": 2553 + }, + { + "epoch": 35.47531673219746, + "grad_norm": 0.23504602909088135, + "learning_rate": 0.0006, + "loss": 3.7052388191223145, + "step": 2554 + }, + { + "epoch": 35.489296636085626, + "grad_norm": 0.2277563363313675, + "learning_rate": 0.0006, + "loss": 3.708714008331299, + "step": 2555 + }, + { + "epoch": 35.50327653997379, + "grad_norm": 0.25224778056144714, + "learning_rate": 0.0006, + "loss": 3.699676990509033, + "step": 2556 + }, + { + "epoch": 35.517256443861946, + "grad_norm": 0.28308045864105225, + "learning_rate": 0.0006, + "loss": 3.7005362510681152, + "step": 2557 + }, + { + "epoch": 35.53123634775011, + "grad_norm": 0.25858840346336365, + "learning_rate": 0.0006, + "loss": 3.689999580383301, + "step": 2558 + }, + { + "epoch": 35.54521625163827, + "grad_norm": 0.23497405648231506, + "learning_rate": 0.0006, + "loss": 3.695793867111206, + "step": 2559 + }, + { + "epoch": 35.55919615552643, + "grad_norm": 0.22375957667827606, + "learning_rate": 0.0006, + "loss": 3.7011494636535645, + "step": 2560 + }, + { + "epoch": 35.57317605941459, + "grad_norm": 0.21056118607521057, + "learning_rate": 0.0006, + "loss": 3.722623586654663, + "step": 2561 + }, + { + "epoch": 35.58715596330275, + "grad_norm": 0.22504374384880066, + "learning_rate": 0.0006, + "loss": 3.7211966514587402, + "step": 2562 + }, + { + "epoch": 35.60113586719091, + "grad_norm": 0.22349773347377777, + "learning_rate": 0.0006, + "loss": 3.6901848316192627, + "step": 2563 + }, + { + "epoch": 35.615115771079076, + "grad_norm": 0.219499409198761, + "learning_rate": 0.0006, + "loss": 3.709026575088501, + "step": 2564 + }, + { + "epoch": 35.62909567496723, + "grad_norm": 0.20461080968379974, + "learning_rate": 0.0006, + "loss": 3.72456693649292, + "step": 2565 + }, + { + "epoch": 35.643075578855395, + "grad_norm": 0.2083883285522461, + "learning_rate": 0.0006, + "loss": 3.6845502853393555, + "step": 2566 + }, + { + "epoch": 35.65705548274356, + "grad_norm": 0.19694562256336212, + "learning_rate": 0.0006, + "loss": 3.668515682220459, + "step": 2567 + }, + { + "epoch": 35.671035386631715, + "grad_norm": 0.2107984870672226, + "learning_rate": 0.0006, + "loss": 3.700723648071289, + "step": 2568 + }, + { + "epoch": 35.68501529051988, + "grad_norm": 0.18878720700740814, + "learning_rate": 0.0006, + "loss": 3.689150333404541, + "step": 2569 + }, + { + "epoch": 35.69899519440804, + "grad_norm": 0.20058824121952057, + "learning_rate": 0.0006, + "loss": 3.7048301696777344, + "step": 2570 + }, + { + "epoch": 35.7129750982962, + "grad_norm": 0.2200566679239273, + "learning_rate": 0.0006, + "loss": 3.6944580078125, + "step": 2571 + }, + { + "epoch": 35.72695500218436, + "grad_norm": 0.22200417518615723, + "learning_rate": 0.0006, + "loss": 3.715193510055542, + "step": 2572 + }, + { + "epoch": 35.74093490607252, + "grad_norm": 0.21011404693126678, + "learning_rate": 0.0006, + "loss": 3.737387180328369, + "step": 2573 + }, + { + "epoch": 35.75491480996068, + "grad_norm": 0.21139226853847504, + "learning_rate": 0.0006, + "loss": 3.695596694946289, + "step": 2574 + }, + { + "epoch": 35.768894713848844, + "grad_norm": 0.2112506479024887, + "learning_rate": 0.0006, + "loss": 3.7264227867126465, + "step": 2575 + }, + { + "epoch": 35.782874617737, + "grad_norm": 0.21528391540050507, + "learning_rate": 0.0006, + "loss": 3.7089385986328125, + "step": 2576 + }, + { + "epoch": 35.796854521625164, + "grad_norm": 0.2127804309129715, + "learning_rate": 0.0006, + "loss": 3.6995301246643066, + "step": 2577 + }, + { + "epoch": 35.81083442551333, + "grad_norm": 0.19839410483837128, + "learning_rate": 0.0006, + "loss": 3.7233223915100098, + "step": 2578 + }, + { + "epoch": 35.824814329401484, + "grad_norm": 0.19098423421382904, + "learning_rate": 0.0006, + "loss": 3.7108311653137207, + "step": 2579 + }, + { + "epoch": 35.83879423328965, + "grad_norm": 0.18697232007980347, + "learning_rate": 0.0006, + "loss": 3.725001811981201, + "step": 2580 + }, + { + "epoch": 35.8527741371778, + "grad_norm": 0.21051937341690063, + "learning_rate": 0.0006, + "loss": 3.7310993671417236, + "step": 2581 + }, + { + "epoch": 35.86675404106597, + "grad_norm": 0.2239079475402832, + "learning_rate": 0.0006, + "loss": 3.739056348800659, + "step": 2582 + }, + { + "epoch": 35.88073394495413, + "grad_norm": 0.2581230700016022, + "learning_rate": 0.0006, + "loss": 3.697061061859131, + "step": 2583 + }, + { + "epoch": 35.89471384884229, + "grad_norm": 0.25388655066490173, + "learning_rate": 0.0006, + "loss": 3.7173471450805664, + "step": 2584 + }, + { + "epoch": 35.90869375273045, + "grad_norm": 0.2557796537876129, + "learning_rate": 0.0006, + "loss": 3.7121596336364746, + "step": 2585 + }, + { + "epoch": 35.92267365661861, + "grad_norm": 0.21846474707126617, + "learning_rate": 0.0006, + "loss": 3.7342100143432617, + "step": 2586 + }, + { + "epoch": 35.93665356050677, + "grad_norm": 0.19810006022453308, + "learning_rate": 0.0006, + "loss": 3.7266340255737305, + "step": 2587 + }, + { + "epoch": 35.95063346439493, + "grad_norm": 0.28599923849105835, + "learning_rate": 0.0006, + "loss": 3.711876392364502, + "step": 2588 + }, + { + "epoch": 35.964613368283096, + "grad_norm": 0.3380447030067444, + "learning_rate": 0.0006, + "loss": 3.7611794471740723, + "step": 2589 + }, + { + "epoch": 35.97859327217125, + "grad_norm": 0.2946915328502655, + "learning_rate": 0.0006, + "loss": 3.7659358978271484, + "step": 2590 + }, + { + "epoch": 35.992573176059416, + "grad_norm": 0.2310202419757843, + "learning_rate": 0.0006, + "loss": 3.7124969959259033, + "step": 2591 + }, + { + "epoch": 36.0, + "grad_norm": 0.22294320166110992, + "learning_rate": 0.0006, + "loss": 3.725590705871582, + "step": 2592 + }, + { + "epoch": 36.0, + "eval_loss": 4.015472412109375, + "eval_runtime": 44.4903, + "eval_samples_per_second": 54.888, + "eval_steps_per_second": 3.439, + "step": 2592 + }, + { + "epoch": 36.01397990388816, + "grad_norm": 0.2442479431629181, + "learning_rate": 0.0006, + "loss": 3.6670360565185547, + "step": 2593 + }, + { + "epoch": 36.02795980777632, + "grad_norm": 0.27702075242996216, + "learning_rate": 0.0006, + "loss": 3.685915946960449, + "step": 2594 + }, + { + "epoch": 36.04193971166448, + "grad_norm": 0.22300852835178375, + "learning_rate": 0.0006, + "loss": 3.6993556022644043, + "step": 2595 + }, + { + "epoch": 36.05591961555265, + "grad_norm": 0.22456000745296478, + "learning_rate": 0.0006, + "loss": 3.6937754154205322, + "step": 2596 + }, + { + "epoch": 36.0698995194408, + "grad_norm": 0.23157717287540436, + "learning_rate": 0.0006, + "loss": 3.6573898792266846, + "step": 2597 + }, + { + "epoch": 36.083879423328966, + "grad_norm": 0.23002618551254272, + "learning_rate": 0.0006, + "loss": 3.6565046310424805, + "step": 2598 + }, + { + "epoch": 36.09785932721712, + "grad_norm": 0.223054900765419, + "learning_rate": 0.0006, + "loss": 3.6964457035064697, + "step": 2599 + }, + { + "epoch": 36.111839231105286, + "grad_norm": 0.21883328258991241, + "learning_rate": 0.0006, + "loss": 3.674757480621338, + "step": 2600 + }, + { + "epoch": 36.12581913499345, + "grad_norm": 0.21729037165641785, + "learning_rate": 0.0006, + "loss": 3.684323310852051, + "step": 2601 + }, + { + "epoch": 36.139799038881605, + "grad_norm": 0.21299415826797485, + "learning_rate": 0.0006, + "loss": 3.6554017066955566, + "step": 2602 + }, + { + "epoch": 36.15377894276977, + "grad_norm": 0.22723016142845154, + "learning_rate": 0.0006, + "loss": 3.666767120361328, + "step": 2603 + }, + { + "epoch": 36.16775884665793, + "grad_norm": 0.23663052916526794, + "learning_rate": 0.0006, + "loss": 3.692861557006836, + "step": 2604 + }, + { + "epoch": 36.18173875054609, + "grad_norm": 0.23544131219387054, + "learning_rate": 0.0006, + "loss": 3.6648998260498047, + "step": 2605 + }, + { + "epoch": 36.19571865443425, + "grad_norm": 0.24303849041461945, + "learning_rate": 0.0006, + "loss": 3.66096568107605, + "step": 2606 + }, + { + "epoch": 36.20969855832241, + "grad_norm": 0.23385047912597656, + "learning_rate": 0.0006, + "loss": 3.6636829376220703, + "step": 2607 + }, + { + "epoch": 36.22367846221057, + "grad_norm": 0.21988974511623383, + "learning_rate": 0.0006, + "loss": 3.685072660446167, + "step": 2608 + }, + { + "epoch": 36.237658366098735, + "grad_norm": 0.2365395724773407, + "learning_rate": 0.0006, + "loss": 3.7292234897613525, + "step": 2609 + }, + { + "epoch": 36.25163826998689, + "grad_norm": 0.23791152238845825, + "learning_rate": 0.0006, + "loss": 3.6870808601379395, + "step": 2610 + }, + { + "epoch": 36.265618173875055, + "grad_norm": 0.22954145073890686, + "learning_rate": 0.0006, + "loss": 3.705406904220581, + "step": 2611 + }, + { + "epoch": 36.27959807776322, + "grad_norm": 0.22748000919818878, + "learning_rate": 0.0006, + "loss": 3.680781841278076, + "step": 2612 + }, + { + "epoch": 36.293577981651374, + "grad_norm": 0.21827450394630432, + "learning_rate": 0.0006, + "loss": 3.6794490814208984, + "step": 2613 + }, + { + "epoch": 36.30755788553954, + "grad_norm": 0.2406153380870819, + "learning_rate": 0.0006, + "loss": 3.690225124359131, + "step": 2614 + }, + { + "epoch": 36.3215377894277, + "grad_norm": 0.2406231164932251, + "learning_rate": 0.0006, + "loss": 3.665867805480957, + "step": 2615 + }, + { + "epoch": 36.33551769331586, + "grad_norm": 0.20494551956653595, + "learning_rate": 0.0006, + "loss": 3.701937198638916, + "step": 2616 + }, + { + "epoch": 36.34949759720402, + "grad_norm": 0.1995103359222412, + "learning_rate": 0.0006, + "loss": 3.702033758163452, + "step": 2617 + }, + { + "epoch": 36.36347750109218, + "grad_norm": 0.1902446299791336, + "learning_rate": 0.0006, + "loss": 3.6809959411621094, + "step": 2618 + }, + { + "epoch": 36.37745740498034, + "grad_norm": 0.1810801923274994, + "learning_rate": 0.0006, + "loss": 3.689852714538574, + "step": 2619 + }, + { + "epoch": 36.391437308868504, + "grad_norm": 0.1882476955652237, + "learning_rate": 0.0006, + "loss": 3.710911273956299, + "step": 2620 + }, + { + "epoch": 36.40541721275666, + "grad_norm": 0.1912514567375183, + "learning_rate": 0.0006, + "loss": 3.7054009437561035, + "step": 2621 + }, + { + "epoch": 36.419397116644824, + "grad_norm": 0.19080901145935059, + "learning_rate": 0.0006, + "loss": 3.681145191192627, + "step": 2622 + }, + { + "epoch": 36.43337702053299, + "grad_norm": 0.193472221493721, + "learning_rate": 0.0006, + "loss": 3.661360740661621, + "step": 2623 + }, + { + "epoch": 36.44735692442114, + "grad_norm": 0.2034357339143753, + "learning_rate": 0.0006, + "loss": 3.706930160522461, + "step": 2624 + }, + { + "epoch": 36.46133682830931, + "grad_norm": 0.19924600422382355, + "learning_rate": 0.0006, + "loss": 3.6903364658355713, + "step": 2625 + }, + { + "epoch": 36.47531673219746, + "grad_norm": 0.20556052029132843, + "learning_rate": 0.0006, + "loss": 3.6974234580993652, + "step": 2626 + }, + { + "epoch": 36.489296636085626, + "grad_norm": 0.19628804922103882, + "learning_rate": 0.0006, + "loss": 3.6947717666625977, + "step": 2627 + }, + { + "epoch": 36.50327653997379, + "grad_norm": 0.18071836233139038, + "learning_rate": 0.0006, + "loss": 3.717582941055298, + "step": 2628 + }, + { + "epoch": 36.517256443861946, + "grad_norm": 0.20531553030014038, + "learning_rate": 0.0006, + "loss": 3.680610179901123, + "step": 2629 + }, + { + "epoch": 36.53123634775011, + "grad_norm": 0.23789429664611816, + "learning_rate": 0.0006, + "loss": 3.711493968963623, + "step": 2630 + }, + { + "epoch": 36.54521625163827, + "grad_norm": 0.23027348518371582, + "learning_rate": 0.0006, + "loss": 3.6827993392944336, + "step": 2631 + }, + { + "epoch": 36.55919615552643, + "grad_norm": 0.21941570937633514, + "learning_rate": 0.0006, + "loss": 3.682286262512207, + "step": 2632 + }, + { + "epoch": 36.57317605941459, + "grad_norm": 0.21213553845882416, + "learning_rate": 0.0006, + "loss": 3.6828765869140625, + "step": 2633 + }, + { + "epoch": 36.58715596330275, + "grad_norm": 0.21929772198200226, + "learning_rate": 0.0006, + "loss": 3.697030544281006, + "step": 2634 + }, + { + "epoch": 36.60113586719091, + "grad_norm": 0.2101750522851944, + "learning_rate": 0.0006, + "loss": 3.723201274871826, + "step": 2635 + }, + { + "epoch": 36.615115771079076, + "grad_norm": 0.19014132022857666, + "learning_rate": 0.0006, + "loss": 3.6989338397979736, + "step": 2636 + }, + { + "epoch": 36.62909567496723, + "grad_norm": 0.21566815674304962, + "learning_rate": 0.0006, + "loss": 3.6968226432800293, + "step": 2637 + }, + { + "epoch": 36.643075578855395, + "grad_norm": 0.20500224828720093, + "learning_rate": 0.0006, + "loss": 3.689640522003174, + "step": 2638 + }, + { + "epoch": 36.65705548274356, + "grad_norm": 0.210358127951622, + "learning_rate": 0.0006, + "loss": 3.6996328830718994, + "step": 2639 + }, + { + "epoch": 36.671035386631715, + "grad_norm": 0.2061213105916977, + "learning_rate": 0.0006, + "loss": 3.7019221782684326, + "step": 2640 + }, + { + "epoch": 36.68501529051988, + "grad_norm": 0.21494871377944946, + "learning_rate": 0.0006, + "loss": 3.6634578704833984, + "step": 2641 + }, + { + "epoch": 36.69899519440804, + "grad_norm": 0.19586549699306488, + "learning_rate": 0.0006, + "loss": 3.708131790161133, + "step": 2642 + }, + { + "epoch": 36.7129750982962, + "grad_norm": 0.22805732488632202, + "learning_rate": 0.0006, + "loss": 3.6977362632751465, + "step": 2643 + }, + { + "epoch": 36.72695500218436, + "grad_norm": 0.28397148847579956, + "learning_rate": 0.0006, + "loss": 3.6847963333129883, + "step": 2644 + }, + { + "epoch": 36.74093490607252, + "grad_norm": 0.28333187103271484, + "learning_rate": 0.0006, + "loss": 3.734257459640503, + "step": 2645 + }, + { + "epoch": 36.75491480996068, + "grad_norm": 0.22314953804016113, + "learning_rate": 0.0006, + "loss": 3.6871445178985596, + "step": 2646 + }, + { + "epoch": 36.768894713848844, + "grad_norm": 0.20580267906188965, + "learning_rate": 0.0006, + "loss": 3.692736864089966, + "step": 2647 + }, + { + "epoch": 36.782874617737, + "grad_norm": 0.22695036232471466, + "learning_rate": 0.0006, + "loss": 3.697096824645996, + "step": 2648 + }, + { + "epoch": 36.796854521625164, + "grad_norm": 0.25916165113449097, + "learning_rate": 0.0006, + "loss": 3.7099573612213135, + "step": 2649 + }, + { + "epoch": 36.81083442551333, + "grad_norm": 0.26024341583251953, + "learning_rate": 0.0006, + "loss": 3.7161359786987305, + "step": 2650 + }, + { + "epoch": 36.824814329401484, + "grad_norm": 0.2340802699327469, + "learning_rate": 0.0006, + "loss": 3.708864688873291, + "step": 2651 + }, + { + "epoch": 36.83879423328965, + "grad_norm": 0.23312288522720337, + "learning_rate": 0.0006, + "loss": 3.7351365089416504, + "step": 2652 + }, + { + "epoch": 36.8527741371778, + "grad_norm": 0.22953253984451294, + "learning_rate": 0.0006, + "loss": 3.735302209854126, + "step": 2653 + }, + { + "epoch": 36.86675404106597, + "grad_norm": 0.21928828954696655, + "learning_rate": 0.0006, + "loss": 3.72445011138916, + "step": 2654 + }, + { + "epoch": 36.88073394495413, + "grad_norm": 0.22865602374076843, + "learning_rate": 0.0006, + "loss": 3.714867115020752, + "step": 2655 + }, + { + "epoch": 36.89471384884229, + "grad_norm": 0.23255643248558044, + "learning_rate": 0.0006, + "loss": 3.695101261138916, + "step": 2656 + }, + { + "epoch": 36.90869375273045, + "grad_norm": 0.2491452544927597, + "learning_rate": 0.0006, + "loss": 3.70692777633667, + "step": 2657 + }, + { + "epoch": 36.92267365661861, + "grad_norm": 0.27367597818374634, + "learning_rate": 0.0006, + "loss": 3.6906654834747314, + "step": 2658 + }, + { + "epoch": 36.93665356050677, + "grad_norm": 0.26728564500808716, + "learning_rate": 0.0006, + "loss": 3.7092056274414062, + "step": 2659 + }, + { + "epoch": 36.95063346439493, + "grad_norm": 0.207070454955101, + "learning_rate": 0.0006, + "loss": 3.7152137756347656, + "step": 2660 + }, + { + "epoch": 36.964613368283096, + "grad_norm": 0.21671561896800995, + "learning_rate": 0.0006, + "loss": 3.7130112648010254, + "step": 2661 + }, + { + "epoch": 36.97859327217125, + "grad_norm": 0.2140914648771286, + "learning_rate": 0.0006, + "loss": 3.7286999225616455, + "step": 2662 + }, + { + "epoch": 36.992573176059416, + "grad_norm": 0.21324342489242554, + "learning_rate": 0.0006, + "loss": 3.6828715801239014, + "step": 2663 + }, + { + "epoch": 37.0, + "grad_norm": 0.22366146743297577, + "learning_rate": 0.0006, + "loss": 3.69199800491333, + "step": 2664 + }, + { + "epoch": 37.0, + "eval_loss": 4.011842727661133, + "eval_runtime": 44.7825, + "eval_samples_per_second": 54.53, + "eval_steps_per_second": 3.417, + "step": 2664 + }, + { + "epoch": 37.01397990388816, + "grad_norm": 0.22093228995800018, + "learning_rate": 0.0006, + "loss": 3.6940979957580566, + "step": 2665 + }, + { + "epoch": 37.02795980777632, + "grad_norm": 0.20821493864059448, + "learning_rate": 0.0006, + "loss": 3.670813798904419, + "step": 2666 + }, + { + "epoch": 37.04193971166448, + "grad_norm": 0.22330114245414734, + "learning_rate": 0.0006, + "loss": 3.6392664909362793, + "step": 2667 + }, + { + "epoch": 37.05591961555265, + "grad_norm": 0.2224634289741516, + "learning_rate": 0.0006, + "loss": 3.660856246948242, + "step": 2668 + }, + { + "epoch": 37.0698995194408, + "grad_norm": 0.2255052626132965, + "learning_rate": 0.0006, + "loss": 3.6393589973449707, + "step": 2669 + }, + { + "epoch": 37.083879423328966, + "grad_norm": 0.23462942242622375, + "learning_rate": 0.0006, + "loss": 3.684429168701172, + "step": 2670 + }, + { + "epoch": 37.09785932721712, + "grad_norm": 0.23743386566638947, + "learning_rate": 0.0006, + "loss": 3.67622709274292, + "step": 2671 + }, + { + "epoch": 37.111839231105286, + "grad_norm": 0.2276267409324646, + "learning_rate": 0.0006, + "loss": 3.6487984657287598, + "step": 2672 + }, + { + "epoch": 37.12581913499345, + "grad_norm": 0.24448423087596893, + "learning_rate": 0.0006, + "loss": 3.67645525932312, + "step": 2673 + }, + { + "epoch": 37.139799038881605, + "grad_norm": 0.2428973764181137, + "learning_rate": 0.0006, + "loss": 3.681497097015381, + "step": 2674 + }, + { + "epoch": 37.15377894276977, + "grad_norm": 0.21918512880802155, + "learning_rate": 0.0006, + "loss": 3.67134428024292, + "step": 2675 + }, + { + "epoch": 37.16775884665793, + "grad_norm": 0.2103680670261383, + "learning_rate": 0.0006, + "loss": 3.6508708000183105, + "step": 2676 + }, + { + "epoch": 37.18173875054609, + "grad_norm": 0.20674929022789001, + "learning_rate": 0.0006, + "loss": 3.6904029846191406, + "step": 2677 + }, + { + "epoch": 37.19571865443425, + "grad_norm": 0.21867282688617706, + "learning_rate": 0.0006, + "loss": 3.697535514831543, + "step": 2678 + }, + { + "epoch": 37.20969855832241, + "grad_norm": 0.22919587790966034, + "learning_rate": 0.0006, + "loss": 3.675565004348755, + "step": 2679 + }, + { + "epoch": 37.22367846221057, + "grad_norm": 0.22255578637123108, + "learning_rate": 0.0006, + "loss": 3.6830129623413086, + "step": 2680 + }, + { + "epoch": 37.237658366098735, + "grad_norm": 0.22460198402404785, + "learning_rate": 0.0006, + "loss": 3.6872951984405518, + "step": 2681 + }, + { + "epoch": 37.25163826998689, + "grad_norm": 0.23677165806293488, + "learning_rate": 0.0006, + "loss": 3.6779165267944336, + "step": 2682 + }, + { + "epoch": 37.265618173875055, + "grad_norm": 0.23231394588947296, + "learning_rate": 0.0006, + "loss": 3.6831178665161133, + "step": 2683 + }, + { + "epoch": 37.27959807776322, + "grad_norm": 0.22131343185901642, + "learning_rate": 0.0006, + "loss": 3.664295196533203, + "step": 2684 + }, + { + "epoch": 37.293577981651374, + "grad_norm": 0.23424340784549713, + "learning_rate": 0.0006, + "loss": 3.696678638458252, + "step": 2685 + }, + { + "epoch": 37.30755788553954, + "grad_norm": 0.22695423662662506, + "learning_rate": 0.0006, + "loss": 3.6697473526000977, + "step": 2686 + }, + { + "epoch": 37.3215377894277, + "grad_norm": 0.2165997475385666, + "learning_rate": 0.0006, + "loss": 3.6801891326904297, + "step": 2687 + }, + { + "epoch": 37.33551769331586, + "grad_norm": 0.2241077572107315, + "learning_rate": 0.0006, + "loss": 3.6957011222839355, + "step": 2688 + }, + { + "epoch": 37.34949759720402, + "grad_norm": 0.21191732585430145, + "learning_rate": 0.0006, + "loss": 3.6812620162963867, + "step": 2689 + }, + { + "epoch": 37.36347750109218, + "grad_norm": 0.1827201396226883, + "learning_rate": 0.0006, + "loss": 3.6797738075256348, + "step": 2690 + }, + { + "epoch": 37.37745740498034, + "grad_norm": 0.20793627202510834, + "learning_rate": 0.0006, + "loss": 3.672819137573242, + "step": 2691 + }, + { + "epoch": 37.391437308868504, + "grad_norm": 0.19737116992473602, + "learning_rate": 0.0006, + "loss": 3.667839527130127, + "step": 2692 + }, + { + "epoch": 37.40541721275666, + "grad_norm": 0.18670497834682465, + "learning_rate": 0.0006, + "loss": 3.651561737060547, + "step": 2693 + }, + { + "epoch": 37.419397116644824, + "grad_norm": 0.21385592222213745, + "learning_rate": 0.0006, + "loss": 3.717456340789795, + "step": 2694 + }, + { + "epoch": 37.43337702053299, + "grad_norm": 0.20590044558048248, + "learning_rate": 0.0006, + "loss": 3.6950271129608154, + "step": 2695 + }, + { + "epoch": 37.44735692442114, + "grad_norm": 0.1992103010416031, + "learning_rate": 0.0006, + "loss": 3.687854290008545, + "step": 2696 + }, + { + "epoch": 37.46133682830931, + "grad_norm": 0.2004154473543167, + "learning_rate": 0.0006, + "loss": 3.695838451385498, + "step": 2697 + }, + { + "epoch": 37.47531673219746, + "grad_norm": 0.2019810527563095, + "learning_rate": 0.0006, + "loss": 3.690431594848633, + "step": 2698 + }, + { + "epoch": 37.489296636085626, + "grad_norm": 0.2192547768354416, + "learning_rate": 0.0006, + "loss": 3.6743836402893066, + "step": 2699 + }, + { + "epoch": 37.50327653997379, + "grad_norm": 0.2568076550960541, + "learning_rate": 0.0006, + "loss": 3.6857337951660156, + "step": 2700 + }, + { + "epoch": 37.517256443861946, + "grad_norm": 0.20050311088562012, + "learning_rate": 0.0006, + "loss": 3.6811180114746094, + "step": 2701 + }, + { + "epoch": 37.53123634775011, + "grad_norm": 0.21008558571338654, + "learning_rate": 0.0006, + "loss": 3.700563907623291, + "step": 2702 + }, + { + "epoch": 37.54521625163827, + "grad_norm": 0.2393747717142105, + "learning_rate": 0.0006, + "loss": 3.679438591003418, + "step": 2703 + }, + { + "epoch": 37.55919615552643, + "grad_norm": 0.2531895041465759, + "learning_rate": 0.0006, + "loss": 3.682903289794922, + "step": 2704 + }, + { + "epoch": 37.57317605941459, + "grad_norm": 0.2372656762599945, + "learning_rate": 0.0006, + "loss": 3.7128796577453613, + "step": 2705 + }, + { + "epoch": 37.58715596330275, + "grad_norm": 0.20020034909248352, + "learning_rate": 0.0006, + "loss": 3.701916217803955, + "step": 2706 + }, + { + "epoch": 37.60113586719091, + "grad_norm": 0.20250852406024933, + "learning_rate": 0.0006, + "loss": 3.6761491298675537, + "step": 2707 + }, + { + "epoch": 37.615115771079076, + "grad_norm": 0.19259589910507202, + "learning_rate": 0.0006, + "loss": 3.715104579925537, + "step": 2708 + }, + { + "epoch": 37.62909567496723, + "grad_norm": 0.19649392366409302, + "learning_rate": 0.0006, + "loss": 3.687556266784668, + "step": 2709 + }, + { + "epoch": 37.643075578855395, + "grad_norm": 0.1909446269273758, + "learning_rate": 0.0006, + "loss": 3.684046745300293, + "step": 2710 + }, + { + "epoch": 37.65705548274356, + "grad_norm": 0.19589872658252716, + "learning_rate": 0.0006, + "loss": 3.707886219024658, + "step": 2711 + }, + { + "epoch": 37.671035386631715, + "grad_norm": 0.19472210109233856, + "learning_rate": 0.0006, + "loss": 3.6837692260742188, + "step": 2712 + }, + { + "epoch": 37.68501529051988, + "grad_norm": 0.22622711956501007, + "learning_rate": 0.0006, + "loss": 3.703619956970215, + "step": 2713 + }, + { + "epoch": 37.69899519440804, + "grad_norm": 0.24314729869365692, + "learning_rate": 0.0006, + "loss": 3.7345223426818848, + "step": 2714 + }, + { + "epoch": 37.7129750982962, + "grad_norm": 0.23934306204319, + "learning_rate": 0.0006, + "loss": 3.687809705734253, + "step": 2715 + }, + { + "epoch": 37.72695500218436, + "grad_norm": 0.24838587641716003, + "learning_rate": 0.0006, + "loss": 3.708613872528076, + "step": 2716 + }, + { + "epoch": 37.74093490607252, + "grad_norm": 0.23191452026367188, + "learning_rate": 0.0006, + "loss": 3.7090163230895996, + "step": 2717 + }, + { + "epoch": 37.75491480996068, + "grad_norm": 0.24574638903141022, + "learning_rate": 0.0006, + "loss": 3.68489146232605, + "step": 2718 + }, + { + "epoch": 37.768894713848844, + "grad_norm": 0.2706749439239502, + "learning_rate": 0.0006, + "loss": 3.687061309814453, + "step": 2719 + }, + { + "epoch": 37.782874617737, + "grad_norm": 0.25955191254615784, + "learning_rate": 0.0006, + "loss": 3.694173812866211, + "step": 2720 + }, + { + "epoch": 37.796854521625164, + "grad_norm": 0.22040610015392303, + "learning_rate": 0.0006, + "loss": 3.701871871948242, + "step": 2721 + }, + { + "epoch": 37.81083442551333, + "grad_norm": 0.22328512370586395, + "learning_rate": 0.0006, + "loss": 3.7082555294036865, + "step": 2722 + }, + { + "epoch": 37.824814329401484, + "grad_norm": 0.2290581911802292, + "learning_rate": 0.0006, + "loss": 3.7023987770080566, + "step": 2723 + }, + { + "epoch": 37.83879423328965, + "grad_norm": 0.23129472136497498, + "learning_rate": 0.0006, + "loss": 3.7101752758026123, + "step": 2724 + }, + { + "epoch": 37.8527741371778, + "grad_norm": 0.21203753352165222, + "learning_rate": 0.0006, + "loss": 3.712129592895508, + "step": 2725 + }, + { + "epoch": 37.86675404106597, + "grad_norm": 0.21938200294971466, + "learning_rate": 0.0006, + "loss": 3.7086095809936523, + "step": 2726 + }, + { + "epoch": 37.88073394495413, + "grad_norm": 0.2203572541475296, + "learning_rate": 0.0006, + "loss": 3.6789026260375977, + "step": 2727 + }, + { + "epoch": 37.89471384884229, + "grad_norm": 0.18146046996116638, + "learning_rate": 0.0006, + "loss": 3.666893243789673, + "step": 2728 + }, + { + "epoch": 37.90869375273045, + "grad_norm": 0.1879623532295227, + "learning_rate": 0.0006, + "loss": 3.69246768951416, + "step": 2729 + }, + { + "epoch": 37.92267365661861, + "grad_norm": 0.18311670422554016, + "learning_rate": 0.0006, + "loss": 3.682036876678467, + "step": 2730 + }, + { + "epoch": 37.93665356050677, + "grad_norm": 0.1898486614227295, + "learning_rate": 0.0006, + "loss": 3.6683125495910645, + "step": 2731 + }, + { + "epoch": 37.95063346439493, + "grad_norm": 0.1858556717634201, + "learning_rate": 0.0006, + "loss": 3.6879611015319824, + "step": 2732 + }, + { + "epoch": 37.964613368283096, + "grad_norm": 0.19914504885673523, + "learning_rate": 0.0006, + "loss": 3.690250873565674, + "step": 2733 + }, + { + "epoch": 37.97859327217125, + "grad_norm": 0.20406974852085114, + "learning_rate": 0.0006, + "loss": 3.6812171936035156, + "step": 2734 + }, + { + "epoch": 37.992573176059416, + "grad_norm": 0.2003912478685379, + "learning_rate": 0.0006, + "loss": 3.6852147579193115, + "step": 2735 + }, + { + "epoch": 38.0, + "grad_norm": 0.22644472122192383, + "learning_rate": 0.0006, + "loss": 3.645207405090332, + "step": 2736 + }, + { + "epoch": 38.0, + "eval_loss": 3.995000123977661, + "eval_runtime": 45.1644, + "eval_samples_per_second": 54.069, + "eval_steps_per_second": 3.388, + "step": 2736 + }, + { + "epoch": 38.01397990388816, + "grad_norm": 0.1989814043045044, + "learning_rate": 0.0006, + "loss": 3.6511387825012207, + "step": 2737 + }, + { + "epoch": 38.02795980777632, + "grad_norm": 0.203324094414711, + "learning_rate": 0.0006, + "loss": 3.6513094902038574, + "step": 2738 + }, + { + "epoch": 38.04193971166448, + "grad_norm": 0.21504290401935577, + "learning_rate": 0.0006, + "loss": 3.647711992263794, + "step": 2739 + }, + { + "epoch": 38.05591961555265, + "grad_norm": 0.23464815318584442, + "learning_rate": 0.0006, + "loss": 3.6418747901916504, + "step": 2740 + }, + { + "epoch": 38.0698995194408, + "grad_norm": 0.242184117436409, + "learning_rate": 0.0006, + "loss": 3.6741859912872314, + "step": 2741 + }, + { + "epoch": 38.083879423328966, + "grad_norm": 0.23488445580005646, + "learning_rate": 0.0006, + "loss": 3.6710941791534424, + "step": 2742 + }, + { + "epoch": 38.09785932721712, + "grad_norm": 0.20800170302391052, + "learning_rate": 0.0006, + "loss": 3.660001754760742, + "step": 2743 + }, + { + "epoch": 38.111839231105286, + "grad_norm": 0.19505052268505096, + "learning_rate": 0.0006, + "loss": 3.684129238128662, + "step": 2744 + }, + { + "epoch": 38.12581913499345, + "grad_norm": 0.2185833901166916, + "learning_rate": 0.0006, + "loss": 3.656033515930176, + "step": 2745 + }, + { + "epoch": 38.139799038881605, + "grad_norm": 0.21850253641605377, + "learning_rate": 0.0006, + "loss": 3.6818184852600098, + "step": 2746 + }, + { + "epoch": 38.15377894276977, + "grad_norm": 0.2109488695859909, + "learning_rate": 0.0006, + "loss": 3.6485435962677, + "step": 2747 + }, + { + "epoch": 38.16775884665793, + "grad_norm": 0.21059907972812653, + "learning_rate": 0.0006, + "loss": 3.6734395027160645, + "step": 2748 + }, + { + "epoch": 38.18173875054609, + "grad_norm": 0.20741555094718933, + "learning_rate": 0.0006, + "loss": 3.6672463417053223, + "step": 2749 + }, + { + "epoch": 38.19571865443425, + "grad_norm": 0.2130175530910492, + "learning_rate": 0.0006, + "loss": 3.692840576171875, + "step": 2750 + }, + { + "epoch": 38.20969855832241, + "grad_norm": 0.1899138242006302, + "learning_rate": 0.0006, + "loss": 3.675316333770752, + "step": 2751 + }, + { + "epoch": 38.22367846221057, + "grad_norm": 0.218918576836586, + "learning_rate": 0.0006, + "loss": 3.634105920791626, + "step": 2752 + }, + { + "epoch": 38.237658366098735, + "grad_norm": 0.23649370670318604, + "learning_rate": 0.0006, + "loss": 3.6526122093200684, + "step": 2753 + }, + { + "epoch": 38.25163826998689, + "grad_norm": 0.22011931240558624, + "learning_rate": 0.0006, + "loss": 3.6859593391418457, + "step": 2754 + }, + { + "epoch": 38.265618173875055, + "grad_norm": 0.2143620252609253, + "learning_rate": 0.0006, + "loss": 3.656838893890381, + "step": 2755 + }, + { + "epoch": 38.27959807776322, + "grad_norm": 0.24068567156791687, + "learning_rate": 0.0006, + "loss": 3.67006254196167, + "step": 2756 + }, + { + "epoch": 38.293577981651374, + "grad_norm": 0.25773152709007263, + "learning_rate": 0.0006, + "loss": 3.6648950576782227, + "step": 2757 + }, + { + "epoch": 38.30755788553954, + "grad_norm": 0.24213455617427826, + "learning_rate": 0.0006, + "loss": 3.6918864250183105, + "step": 2758 + }, + { + "epoch": 38.3215377894277, + "grad_norm": 0.22463668882846832, + "learning_rate": 0.0006, + "loss": 3.6662540435791016, + "step": 2759 + }, + { + "epoch": 38.33551769331586, + "grad_norm": 0.22541455924510956, + "learning_rate": 0.0006, + "loss": 3.6563215255737305, + "step": 2760 + }, + { + "epoch": 38.34949759720402, + "grad_norm": 0.21833783388137817, + "learning_rate": 0.0006, + "loss": 3.650446891784668, + "step": 2761 + }, + { + "epoch": 38.36347750109218, + "grad_norm": 0.22799745202064514, + "learning_rate": 0.0006, + "loss": 3.7007250785827637, + "step": 2762 + }, + { + "epoch": 38.37745740498034, + "grad_norm": 0.23739562928676605, + "learning_rate": 0.0006, + "loss": 3.667130708694458, + "step": 2763 + }, + { + "epoch": 38.391437308868504, + "grad_norm": 0.23744846880435944, + "learning_rate": 0.0006, + "loss": 3.678760528564453, + "step": 2764 + }, + { + "epoch": 38.40541721275666, + "grad_norm": 0.2677105963230133, + "learning_rate": 0.0006, + "loss": 3.6829030513763428, + "step": 2765 + }, + { + "epoch": 38.419397116644824, + "grad_norm": 0.24490566551685333, + "learning_rate": 0.0006, + "loss": 3.707911491394043, + "step": 2766 + }, + { + "epoch": 38.43337702053299, + "grad_norm": 0.23477254807949066, + "learning_rate": 0.0006, + "loss": 3.680157423019409, + "step": 2767 + }, + { + "epoch": 38.44735692442114, + "grad_norm": 0.26611173152923584, + "learning_rate": 0.0006, + "loss": 3.660834550857544, + "step": 2768 + }, + { + "epoch": 38.46133682830931, + "grad_norm": 0.24505069851875305, + "learning_rate": 0.0006, + "loss": 3.696178436279297, + "step": 2769 + }, + { + "epoch": 38.47531673219746, + "grad_norm": 0.22933335602283478, + "learning_rate": 0.0006, + "loss": 3.6506235599517822, + "step": 2770 + }, + { + "epoch": 38.489296636085626, + "grad_norm": 0.23662401735782623, + "learning_rate": 0.0006, + "loss": 3.680819511413574, + "step": 2771 + }, + { + "epoch": 38.50327653997379, + "grad_norm": 0.27774113416671753, + "learning_rate": 0.0006, + "loss": 3.699146270751953, + "step": 2772 + }, + { + "epoch": 38.517256443861946, + "grad_norm": 0.2881671190261841, + "learning_rate": 0.0006, + "loss": 3.6509652137756348, + "step": 2773 + }, + { + "epoch": 38.53123634775011, + "grad_norm": 0.26570361852645874, + "learning_rate": 0.0006, + "loss": 3.6808385848999023, + "step": 2774 + }, + { + "epoch": 38.54521625163827, + "grad_norm": 0.23043136298656464, + "learning_rate": 0.0006, + "loss": 3.7082371711730957, + "step": 2775 + }, + { + "epoch": 38.55919615552643, + "grad_norm": 0.23730400204658508, + "learning_rate": 0.0006, + "loss": 3.653615951538086, + "step": 2776 + }, + { + "epoch": 38.57317605941459, + "grad_norm": 0.2332635223865509, + "learning_rate": 0.0006, + "loss": 3.6869683265686035, + "step": 2777 + }, + { + "epoch": 38.58715596330275, + "grad_norm": 0.22913676500320435, + "learning_rate": 0.0006, + "loss": 3.6998367309570312, + "step": 2778 + }, + { + "epoch": 38.60113586719091, + "grad_norm": 0.226078599691391, + "learning_rate": 0.0006, + "loss": 3.7051444053649902, + "step": 2779 + }, + { + "epoch": 38.615115771079076, + "grad_norm": 0.2336396723985672, + "learning_rate": 0.0006, + "loss": 3.6964943408966064, + "step": 2780 + }, + { + "epoch": 38.62909567496723, + "grad_norm": 0.23270335793495178, + "learning_rate": 0.0006, + "loss": 3.6741909980773926, + "step": 2781 + }, + { + "epoch": 38.643075578855395, + "grad_norm": 0.19324959814548492, + "learning_rate": 0.0006, + "loss": 3.64506196975708, + "step": 2782 + }, + { + "epoch": 38.65705548274356, + "grad_norm": 0.18551453948020935, + "learning_rate": 0.0006, + "loss": 3.6834206581115723, + "step": 2783 + }, + { + "epoch": 38.671035386631715, + "grad_norm": 0.17392469942569733, + "learning_rate": 0.0006, + "loss": 3.67282772064209, + "step": 2784 + }, + { + "epoch": 38.68501529051988, + "grad_norm": 0.19093742966651917, + "learning_rate": 0.0006, + "loss": 3.6648201942443848, + "step": 2785 + }, + { + "epoch": 38.69899519440804, + "grad_norm": 0.2124558985233307, + "learning_rate": 0.0006, + "loss": 3.712191581726074, + "step": 2786 + }, + { + "epoch": 38.7129750982962, + "grad_norm": 0.2220139354467392, + "learning_rate": 0.0006, + "loss": 3.675504207611084, + "step": 2787 + }, + { + "epoch": 38.72695500218436, + "grad_norm": 0.17677755653858185, + "learning_rate": 0.0006, + "loss": 3.6693475246429443, + "step": 2788 + }, + { + "epoch": 38.74093490607252, + "grad_norm": 0.2002430409193039, + "learning_rate": 0.0006, + "loss": 3.6906018257141113, + "step": 2789 + }, + { + "epoch": 38.75491480996068, + "grad_norm": 0.18844179809093475, + "learning_rate": 0.0006, + "loss": 3.660121440887451, + "step": 2790 + }, + { + "epoch": 38.768894713848844, + "grad_norm": 0.19319336116313934, + "learning_rate": 0.0006, + "loss": 3.6592631340026855, + "step": 2791 + }, + { + "epoch": 38.782874617737, + "grad_norm": 0.18624325096607208, + "learning_rate": 0.0006, + "loss": 3.6935300827026367, + "step": 2792 + }, + { + "epoch": 38.796854521625164, + "grad_norm": 0.2049761712551117, + "learning_rate": 0.0006, + "loss": 3.6702702045440674, + "step": 2793 + }, + { + "epoch": 38.81083442551333, + "grad_norm": 0.2030584216117859, + "learning_rate": 0.0006, + "loss": 3.714639663696289, + "step": 2794 + }, + { + "epoch": 38.824814329401484, + "grad_norm": 0.18989548087120056, + "learning_rate": 0.0006, + "loss": 3.678253412246704, + "step": 2795 + }, + { + "epoch": 38.83879423328965, + "grad_norm": 0.19944126904010773, + "learning_rate": 0.0006, + "loss": 3.648367166519165, + "step": 2796 + }, + { + "epoch": 38.8527741371778, + "grad_norm": 0.2062688171863556, + "learning_rate": 0.0006, + "loss": 3.701514720916748, + "step": 2797 + }, + { + "epoch": 38.86675404106597, + "grad_norm": 0.21475110948085785, + "learning_rate": 0.0006, + "loss": 3.6725993156433105, + "step": 2798 + }, + { + "epoch": 38.88073394495413, + "grad_norm": 0.2240881323814392, + "learning_rate": 0.0006, + "loss": 3.6944539546966553, + "step": 2799 + }, + { + "epoch": 38.89471384884229, + "grad_norm": 0.23074312508106232, + "learning_rate": 0.0006, + "loss": 3.747671365737915, + "step": 2800 + }, + { + "epoch": 38.90869375273045, + "grad_norm": 0.2447938323020935, + "learning_rate": 0.0006, + "loss": 3.6856026649475098, + "step": 2801 + }, + { + "epoch": 38.92267365661861, + "grad_norm": 0.2136487364768982, + "learning_rate": 0.0006, + "loss": 3.710397720336914, + "step": 2802 + }, + { + "epoch": 38.93665356050677, + "grad_norm": 0.21676769852638245, + "learning_rate": 0.0006, + "loss": 3.6911189556121826, + "step": 2803 + }, + { + "epoch": 38.95063346439493, + "grad_norm": 0.2226478010416031, + "learning_rate": 0.0006, + "loss": 3.6902880668640137, + "step": 2804 + }, + { + "epoch": 38.964613368283096, + "grad_norm": 0.2071496546268463, + "learning_rate": 0.0006, + "loss": 3.6831371784210205, + "step": 2805 + }, + { + "epoch": 38.97859327217125, + "grad_norm": 0.19568349421024323, + "learning_rate": 0.0006, + "loss": 3.6897640228271484, + "step": 2806 + }, + { + "epoch": 38.992573176059416, + "grad_norm": 0.19067516922950745, + "learning_rate": 0.0006, + "loss": 3.7096242904663086, + "step": 2807 + }, + { + "epoch": 39.0, + "grad_norm": 0.22872281074523926, + "learning_rate": 0.0006, + "loss": 3.689342975616455, + "step": 2808 + }, + { + "epoch": 39.0, + "eval_loss": 4.001968860626221, + "eval_runtime": 44.8452, + "eval_samples_per_second": 54.454, + "eval_steps_per_second": 3.412, + "step": 2808 + }, + { + "epoch": 39.01397990388816, + "grad_norm": 0.21685896813869476, + "learning_rate": 0.0006, + "loss": 3.638145923614502, + "step": 2809 + }, + { + "epoch": 39.02795980777632, + "grad_norm": 0.20085014402866364, + "learning_rate": 0.0006, + "loss": 3.626654624938965, + "step": 2810 + }, + { + "epoch": 39.04193971166448, + "grad_norm": 0.20615799725055695, + "learning_rate": 0.0006, + "loss": 3.6280088424682617, + "step": 2811 + }, + { + "epoch": 39.05591961555265, + "grad_norm": 0.23471905291080475, + "learning_rate": 0.0006, + "loss": 3.6444239616394043, + "step": 2812 + }, + { + "epoch": 39.0698995194408, + "grad_norm": 0.22207780182361603, + "learning_rate": 0.0006, + "loss": 3.6276912689208984, + "step": 2813 + }, + { + "epoch": 39.083879423328966, + "grad_norm": 0.23354043066501617, + "learning_rate": 0.0006, + "loss": 3.7007269859313965, + "step": 2814 + }, + { + "epoch": 39.09785932721712, + "grad_norm": 0.22520557045936584, + "learning_rate": 0.0006, + "loss": 3.6487162113189697, + "step": 2815 + }, + { + "epoch": 39.111839231105286, + "grad_norm": 0.20489682257175446, + "learning_rate": 0.0006, + "loss": 3.6523492336273193, + "step": 2816 + }, + { + "epoch": 39.12581913499345, + "grad_norm": 0.20979270339012146, + "learning_rate": 0.0006, + "loss": 3.6574230194091797, + "step": 2817 + }, + { + "epoch": 39.139799038881605, + "grad_norm": 0.2256486713886261, + "learning_rate": 0.0006, + "loss": 3.6499013900756836, + "step": 2818 + }, + { + "epoch": 39.15377894276977, + "grad_norm": 0.1960437297821045, + "learning_rate": 0.0006, + "loss": 3.6780271530151367, + "step": 2819 + }, + { + "epoch": 39.16775884665793, + "grad_norm": 0.19279663264751434, + "learning_rate": 0.0006, + "loss": 3.623819589614868, + "step": 2820 + }, + { + "epoch": 39.18173875054609, + "grad_norm": 0.19151495397090912, + "learning_rate": 0.0006, + "loss": 3.612868070602417, + "step": 2821 + }, + { + "epoch": 39.19571865443425, + "grad_norm": 0.19399534165859222, + "learning_rate": 0.0006, + "loss": 3.6518092155456543, + "step": 2822 + }, + { + "epoch": 39.20969855832241, + "grad_norm": 0.21723251044750214, + "learning_rate": 0.0006, + "loss": 3.681509494781494, + "step": 2823 + }, + { + "epoch": 39.22367846221057, + "grad_norm": 0.2487006038427353, + "learning_rate": 0.0006, + "loss": 3.6569719314575195, + "step": 2824 + }, + { + "epoch": 39.237658366098735, + "grad_norm": 0.2640652656555176, + "learning_rate": 0.0006, + "loss": 3.680734634399414, + "step": 2825 + }, + { + "epoch": 39.25163826998689, + "grad_norm": 0.21862825751304626, + "learning_rate": 0.0006, + "loss": 3.6741840839385986, + "step": 2826 + }, + { + "epoch": 39.265618173875055, + "grad_norm": 0.19515705108642578, + "learning_rate": 0.0006, + "loss": 3.657750129699707, + "step": 2827 + }, + { + "epoch": 39.27959807776322, + "grad_norm": 0.1971602737903595, + "learning_rate": 0.0006, + "loss": 3.6524124145507812, + "step": 2828 + }, + { + "epoch": 39.293577981651374, + "grad_norm": 0.20822174847126007, + "learning_rate": 0.0006, + "loss": 3.69527006149292, + "step": 2829 + }, + { + "epoch": 39.30755788553954, + "grad_norm": 0.2566370368003845, + "learning_rate": 0.0006, + "loss": 3.6770880222320557, + "step": 2830 + }, + { + "epoch": 39.3215377894277, + "grad_norm": 0.24984225630760193, + "learning_rate": 0.0006, + "loss": 3.6733901500701904, + "step": 2831 + }, + { + "epoch": 39.33551769331586, + "grad_norm": 0.233322873711586, + "learning_rate": 0.0006, + "loss": 3.645519256591797, + "step": 2832 + }, + { + "epoch": 39.34949759720402, + "grad_norm": 0.21584749221801758, + "learning_rate": 0.0006, + "loss": 3.6211934089660645, + "step": 2833 + }, + { + "epoch": 39.36347750109218, + "grad_norm": 0.2188950479030609, + "learning_rate": 0.0006, + "loss": 3.6434195041656494, + "step": 2834 + }, + { + "epoch": 39.37745740498034, + "grad_norm": 0.21998439729213715, + "learning_rate": 0.0006, + "loss": 3.6720595359802246, + "step": 2835 + }, + { + "epoch": 39.391437308868504, + "grad_norm": 0.2459399700164795, + "learning_rate": 0.0006, + "loss": 3.667083740234375, + "step": 2836 + }, + { + "epoch": 39.40541721275666, + "grad_norm": 0.23579223453998566, + "learning_rate": 0.0006, + "loss": 3.665452480316162, + "step": 2837 + }, + { + "epoch": 39.419397116644824, + "grad_norm": 0.19401362538337708, + "learning_rate": 0.0006, + "loss": 3.684218406677246, + "step": 2838 + }, + { + "epoch": 39.43337702053299, + "grad_norm": 0.1894487738609314, + "learning_rate": 0.0006, + "loss": 3.670626163482666, + "step": 2839 + }, + { + "epoch": 39.44735692442114, + "grad_norm": 0.1936904937028885, + "learning_rate": 0.0006, + "loss": 3.6367318630218506, + "step": 2840 + }, + { + "epoch": 39.46133682830931, + "grad_norm": 0.1867629438638687, + "learning_rate": 0.0006, + "loss": 3.670098304748535, + "step": 2841 + }, + { + "epoch": 39.47531673219746, + "grad_norm": 0.18849903345108032, + "learning_rate": 0.0006, + "loss": 3.6877760887145996, + "step": 2842 + }, + { + "epoch": 39.489296636085626, + "grad_norm": 0.18247179687023163, + "learning_rate": 0.0006, + "loss": 3.7132980823516846, + "step": 2843 + }, + { + "epoch": 39.50327653997379, + "grad_norm": 0.19206349551677704, + "learning_rate": 0.0006, + "loss": 3.630319595336914, + "step": 2844 + }, + { + "epoch": 39.517256443861946, + "grad_norm": 0.21730613708496094, + "learning_rate": 0.0006, + "loss": 3.6818761825561523, + "step": 2845 + }, + { + "epoch": 39.53123634775011, + "grad_norm": 0.22482407093048096, + "learning_rate": 0.0006, + "loss": 3.6385269165039062, + "step": 2846 + }, + { + "epoch": 39.54521625163827, + "grad_norm": 0.24560105800628662, + "learning_rate": 0.0006, + "loss": 3.660067558288574, + "step": 2847 + }, + { + "epoch": 39.55919615552643, + "grad_norm": 0.23720617592334747, + "learning_rate": 0.0006, + "loss": 3.6811556816101074, + "step": 2848 + }, + { + "epoch": 39.57317605941459, + "grad_norm": 0.18990741670131683, + "learning_rate": 0.0006, + "loss": 3.6733779907226562, + "step": 2849 + }, + { + "epoch": 39.58715596330275, + "grad_norm": 0.2135438323020935, + "learning_rate": 0.0006, + "loss": 3.662020683288574, + "step": 2850 + }, + { + "epoch": 39.60113586719091, + "grad_norm": 0.24248908460140228, + "learning_rate": 0.0006, + "loss": 3.6794259548187256, + "step": 2851 + }, + { + "epoch": 39.615115771079076, + "grad_norm": 0.23115725815296173, + "learning_rate": 0.0006, + "loss": 3.6732406616210938, + "step": 2852 + }, + { + "epoch": 39.62909567496723, + "grad_norm": 0.23760166764259338, + "learning_rate": 0.0006, + "loss": 3.7062699794769287, + "step": 2853 + }, + { + "epoch": 39.643075578855395, + "grad_norm": 0.24670571088790894, + "learning_rate": 0.0006, + "loss": 3.692385673522949, + "step": 2854 + }, + { + "epoch": 39.65705548274356, + "grad_norm": 0.20983918011188507, + "learning_rate": 0.0006, + "loss": 3.691361427307129, + "step": 2855 + }, + { + "epoch": 39.671035386631715, + "grad_norm": 0.1915138065814972, + "learning_rate": 0.0006, + "loss": 3.6985888481140137, + "step": 2856 + }, + { + "epoch": 39.68501529051988, + "grad_norm": 0.23440803587436676, + "learning_rate": 0.0006, + "loss": 3.6484973430633545, + "step": 2857 + }, + { + "epoch": 39.69899519440804, + "grad_norm": 0.2483232468366623, + "learning_rate": 0.0006, + "loss": 3.6861510276794434, + "step": 2858 + }, + { + "epoch": 39.7129750982962, + "grad_norm": 0.21373426914215088, + "learning_rate": 0.0006, + "loss": 3.6528866291046143, + "step": 2859 + }, + { + "epoch": 39.72695500218436, + "grad_norm": 0.19849136471748352, + "learning_rate": 0.0006, + "loss": 3.6435961723327637, + "step": 2860 + }, + { + "epoch": 39.74093490607252, + "grad_norm": 0.21748292446136475, + "learning_rate": 0.0006, + "loss": 3.678481101989746, + "step": 2861 + }, + { + "epoch": 39.75491480996068, + "grad_norm": 0.22488188743591309, + "learning_rate": 0.0006, + "loss": 3.711717128753662, + "step": 2862 + }, + { + "epoch": 39.768894713848844, + "grad_norm": 0.22251835465431213, + "learning_rate": 0.0006, + "loss": 3.690516471862793, + "step": 2863 + }, + { + "epoch": 39.782874617737, + "grad_norm": 0.22101449966430664, + "learning_rate": 0.0006, + "loss": 3.6679611206054688, + "step": 2864 + }, + { + "epoch": 39.796854521625164, + "grad_norm": 0.20345936715602875, + "learning_rate": 0.0006, + "loss": 3.6935629844665527, + "step": 2865 + }, + { + "epoch": 39.81083442551333, + "grad_norm": 0.23772259056568146, + "learning_rate": 0.0006, + "loss": 3.697561264038086, + "step": 2866 + }, + { + "epoch": 39.824814329401484, + "grad_norm": 0.24446387588977814, + "learning_rate": 0.0006, + "loss": 3.696723461151123, + "step": 2867 + }, + { + "epoch": 39.83879423328965, + "grad_norm": 0.2365843653678894, + "learning_rate": 0.0006, + "loss": 3.6511402130126953, + "step": 2868 + }, + { + "epoch": 39.8527741371778, + "grad_norm": 0.25421974062919617, + "learning_rate": 0.0006, + "loss": 3.68449068069458, + "step": 2869 + }, + { + "epoch": 39.86675404106597, + "grad_norm": 0.2504308819770813, + "learning_rate": 0.0006, + "loss": 3.685884952545166, + "step": 2870 + }, + { + "epoch": 39.88073394495413, + "grad_norm": 0.24695490300655365, + "learning_rate": 0.0006, + "loss": 3.6667490005493164, + "step": 2871 + }, + { + "epoch": 39.89471384884229, + "grad_norm": 0.2633236348628998, + "learning_rate": 0.0006, + "loss": 3.6828866004943848, + "step": 2872 + }, + { + "epoch": 39.90869375273045, + "grad_norm": 0.2421039491891861, + "learning_rate": 0.0006, + "loss": 3.681187391281128, + "step": 2873 + }, + { + "epoch": 39.92267365661861, + "grad_norm": 0.21202950179576874, + "learning_rate": 0.0006, + "loss": 3.679069995880127, + "step": 2874 + }, + { + "epoch": 39.93665356050677, + "grad_norm": 0.2344917505979538, + "learning_rate": 0.0006, + "loss": 3.6810007095336914, + "step": 2875 + }, + { + "epoch": 39.95063346439493, + "grad_norm": 0.2115124762058258, + "learning_rate": 0.0006, + "loss": 3.653219223022461, + "step": 2876 + }, + { + "epoch": 39.964613368283096, + "grad_norm": 0.21588370203971863, + "learning_rate": 0.0006, + "loss": 3.6972861289978027, + "step": 2877 + }, + { + "epoch": 39.97859327217125, + "grad_norm": 0.26215407252311707, + "learning_rate": 0.0006, + "loss": 3.6796963214874268, + "step": 2878 + }, + { + "epoch": 39.992573176059416, + "grad_norm": 0.23645395040512085, + "learning_rate": 0.0006, + "loss": 3.696091413497925, + "step": 2879 + }, + { + "epoch": 40.0, + "grad_norm": 0.21817512810230255, + "learning_rate": 0.0006, + "loss": 3.668196678161621, + "step": 2880 + }, + { + "epoch": 40.0, + "eval_loss": 3.9873862266540527, + "eval_runtime": 44.1149, + "eval_samples_per_second": 55.355, + "eval_steps_per_second": 3.468, + "step": 2880 + }, + { + "epoch": 40.01397990388816, + "grad_norm": 0.2031477391719818, + "learning_rate": 0.0006, + "loss": 3.6494622230529785, + "step": 2881 + }, + { + "epoch": 40.02795980777632, + "grad_norm": 0.2223939746618271, + "learning_rate": 0.0006, + "loss": 3.6587047576904297, + "step": 2882 + }, + { + "epoch": 40.04193971166448, + "grad_norm": 0.21485820412635803, + "learning_rate": 0.0006, + "loss": 3.62253737449646, + "step": 2883 + }, + { + "epoch": 40.05591961555265, + "grad_norm": 0.23364055156707764, + "learning_rate": 0.0006, + "loss": 3.619035005569458, + "step": 2884 + }, + { + "epoch": 40.0698995194408, + "grad_norm": 0.23141583800315857, + "learning_rate": 0.0006, + "loss": 3.6650376319885254, + "step": 2885 + }, + { + "epoch": 40.083879423328966, + "grad_norm": 0.2131720930337906, + "learning_rate": 0.0006, + "loss": 3.646428108215332, + "step": 2886 + }, + { + "epoch": 40.09785932721712, + "grad_norm": 0.2337951511144638, + "learning_rate": 0.0006, + "loss": 3.6284823417663574, + "step": 2887 + }, + { + "epoch": 40.111839231105286, + "grad_norm": 0.2790892720222473, + "learning_rate": 0.0006, + "loss": 3.6558361053466797, + "step": 2888 + }, + { + "epoch": 40.12581913499345, + "grad_norm": 0.28444936871528625, + "learning_rate": 0.0006, + "loss": 3.644402503967285, + "step": 2889 + }, + { + "epoch": 40.139799038881605, + "grad_norm": 0.2550848126411438, + "learning_rate": 0.0006, + "loss": 3.671562671661377, + "step": 2890 + }, + { + "epoch": 40.15377894276977, + "grad_norm": 0.22960248589515686, + "learning_rate": 0.0006, + "loss": 3.6998534202575684, + "step": 2891 + }, + { + "epoch": 40.16775884665793, + "grad_norm": 0.23920369148254395, + "learning_rate": 0.0006, + "loss": 3.653874635696411, + "step": 2892 + }, + { + "epoch": 40.18173875054609, + "grad_norm": 0.24586012959480286, + "learning_rate": 0.0006, + "loss": 3.620765209197998, + "step": 2893 + }, + { + "epoch": 40.19571865443425, + "grad_norm": 0.26394739747047424, + "learning_rate": 0.0006, + "loss": 3.638437509536743, + "step": 2894 + }, + { + "epoch": 40.20969855832241, + "grad_norm": 0.27566927671432495, + "learning_rate": 0.0006, + "loss": 3.6684799194335938, + "step": 2895 + }, + { + "epoch": 40.22367846221057, + "grad_norm": 0.25469011068344116, + "learning_rate": 0.0006, + "loss": 3.6113009452819824, + "step": 2896 + }, + { + "epoch": 40.237658366098735, + "grad_norm": 0.2403056025505066, + "learning_rate": 0.0006, + "loss": 3.650771141052246, + "step": 2897 + }, + { + "epoch": 40.25163826998689, + "grad_norm": 0.262423038482666, + "learning_rate": 0.0006, + "loss": 3.635892391204834, + "step": 2898 + }, + { + "epoch": 40.265618173875055, + "grad_norm": 0.23696045577526093, + "learning_rate": 0.0006, + "loss": 3.6396005153656006, + "step": 2899 + }, + { + "epoch": 40.27959807776322, + "grad_norm": 0.208719402551651, + "learning_rate": 0.0006, + "loss": 3.6681132316589355, + "step": 2900 + }, + { + "epoch": 40.293577981651374, + "grad_norm": 0.21554480493068695, + "learning_rate": 0.0006, + "loss": 3.6417553424835205, + "step": 2901 + }, + { + "epoch": 40.30755788553954, + "grad_norm": 0.2290734499692917, + "learning_rate": 0.0006, + "loss": 3.6659927368164062, + "step": 2902 + }, + { + "epoch": 40.3215377894277, + "grad_norm": 0.20803220570087433, + "learning_rate": 0.0006, + "loss": 3.6443324089050293, + "step": 2903 + }, + { + "epoch": 40.33551769331586, + "grad_norm": 0.20334568619728088, + "learning_rate": 0.0006, + "loss": 3.6824207305908203, + "step": 2904 + }, + { + "epoch": 40.34949759720402, + "grad_norm": 0.2000233381986618, + "learning_rate": 0.0006, + "loss": 3.644399642944336, + "step": 2905 + }, + { + "epoch": 40.36347750109218, + "grad_norm": 0.21990752220153809, + "learning_rate": 0.0006, + "loss": 3.668160915374756, + "step": 2906 + }, + { + "epoch": 40.37745740498034, + "grad_norm": 0.24385249614715576, + "learning_rate": 0.0006, + "loss": 3.634392261505127, + "step": 2907 + }, + { + "epoch": 40.391437308868504, + "grad_norm": 0.21272684633731842, + "learning_rate": 0.0006, + "loss": 3.6504263877868652, + "step": 2908 + }, + { + "epoch": 40.40541721275666, + "grad_norm": 0.2003277838230133, + "learning_rate": 0.0006, + "loss": 3.6707763671875, + "step": 2909 + }, + { + "epoch": 40.419397116644824, + "grad_norm": 0.2086087465286255, + "learning_rate": 0.0006, + "loss": 3.66988468170166, + "step": 2910 + }, + { + "epoch": 40.43337702053299, + "grad_norm": 0.19706451892852783, + "learning_rate": 0.0006, + "loss": 3.662794828414917, + "step": 2911 + }, + { + "epoch": 40.44735692442114, + "grad_norm": 0.18795762956142426, + "learning_rate": 0.0006, + "loss": 3.628016233444214, + "step": 2912 + }, + { + "epoch": 40.46133682830931, + "grad_norm": 0.19931825995445251, + "learning_rate": 0.0006, + "loss": 3.6791915893554688, + "step": 2913 + }, + { + "epoch": 40.47531673219746, + "grad_norm": 0.21295934915542603, + "learning_rate": 0.0006, + "loss": 3.688632011413574, + "step": 2914 + }, + { + "epoch": 40.489296636085626, + "grad_norm": 0.2104834020137787, + "learning_rate": 0.0006, + "loss": 3.6270499229431152, + "step": 2915 + }, + { + "epoch": 40.50327653997379, + "grad_norm": 0.19942966103553772, + "learning_rate": 0.0006, + "loss": 3.651721477508545, + "step": 2916 + }, + { + "epoch": 40.517256443861946, + "grad_norm": 0.18890425562858582, + "learning_rate": 0.0006, + "loss": 3.6778619289398193, + "step": 2917 + }, + { + "epoch": 40.53123634775011, + "grad_norm": 0.19861607253551483, + "learning_rate": 0.0006, + "loss": 3.658832550048828, + "step": 2918 + }, + { + "epoch": 40.54521625163827, + "grad_norm": 0.21553616225719452, + "learning_rate": 0.0006, + "loss": 3.6566901206970215, + "step": 2919 + }, + { + "epoch": 40.55919615552643, + "grad_norm": 0.21698440611362457, + "learning_rate": 0.0006, + "loss": 3.6795129776000977, + "step": 2920 + }, + { + "epoch": 40.57317605941459, + "grad_norm": 0.20310913026332855, + "learning_rate": 0.0006, + "loss": 3.645244598388672, + "step": 2921 + }, + { + "epoch": 40.58715596330275, + "grad_norm": 0.2075812816619873, + "learning_rate": 0.0006, + "loss": 3.678452491760254, + "step": 2922 + }, + { + "epoch": 40.60113586719091, + "grad_norm": 0.20606619119644165, + "learning_rate": 0.0006, + "loss": 3.6150245666503906, + "step": 2923 + }, + { + "epoch": 40.615115771079076, + "grad_norm": 0.21511296927928925, + "learning_rate": 0.0006, + "loss": 3.6682112216949463, + "step": 2924 + }, + { + "epoch": 40.62909567496723, + "grad_norm": 0.19771839678287506, + "learning_rate": 0.0006, + "loss": 3.6639556884765625, + "step": 2925 + }, + { + "epoch": 40.643075578855395, + "grad_norm": 0.20419852435588837, + "learning_rate": 0.0006, + "loss": 3.664982318878174, + "step": 2926 + }, + { + "epoch": 40.65705548274356, + "grad_norm": 0.20119430124759674, + "learning_rate": 0.0006, + "loss": 3.661625385284424, + "step": 2927 + }, + { + "epoch": 40.671035386631715, + "grad_norm": 0.21590501070022583, + "learning_rate": 0.0006, + "loss": 3.673719644546509, + "step": 2928 + }, + { + "epoch": 40.68501529051988, + "grad_norm": 0.19165395200252533, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 2929 + }, + { + "epoch": 40.69899519440804, + "grad_norm": 0.19620473682880402, + "learning_rate": 0.0006, + "loss": 3.7008142471313477, + "step": 2930 + }, + { + "epoch": 40.7129750982962, + "grad_norm": 0.23002777993679047, + "learning_rate": 0.0006, + "loss": 3.654296875, + "step": 2931 + }, + { + "epoch": 40.72695500218436, + "grad_norm": 0.22007468342781067, + "learning_rate": 0.0006, + "loss": 3.688178539276123, + "step": 2932 + }, + { + "epoch": 40.74093490607252, + "grad_norm": 0.2030077874660492, + "learning_rate": 0.0006, + "loss": 3.6514129638671875, + "step": 2933 + }, + { + "epoch": 40.75491480996068, + "grad_norm": 0.20960700511932373, + "learning_rate": 0.0006, + "loss": 3.651864528656006, + "step": 2934 + }, + { + "epoch": 40.768894713848844, + "grad_norm": 0.2132565975189209, + "learning_rate": 0.0006, + "loss": 3.680915355682373, + "step": 2935 + }, + { + "epoch": 40.782874617737, + "grad_norm": 0.2411353588104248, + "learning_rate": 0.0006, + "loss": 3.647167682647705, + "step": 2936 + }, + { + "epoch": 40.796854521625164, + "grad_norm": 0.24621541798114777, + "learning_rate": 0.0006, + "loss": 3.6784768104553223, + "step": 2937 + }, + { + "epoch": 40.81083442551333, + "grad_norm": 0.23324407637119293, + "learning_rate": 0.0006, + "loss": 3.6855263710021973, + "step": 2938 + }, + { + "epoch": 40.824814329401484, + "grad_norm": 0.21749550104141235, + "learning_rate": 0.0006, + "loss": 3.672682285308838, + "step": 2939 + }, + { + "epoch": 40.83879423328965, + "grad_norm": 0.1957911103963852, + "learning_rate": 0.0006, + "loss": 3.635678291320801, + "step": 2940 + }, + { + "epoch": 40.8527741371778, + "grad_norm": 0.21262411773204803, + "learning_rate": 0.0006, + "loss": 3.6829824447631836, + "step": 2941 + }, + { + "epoch": 40.86675404106597, + "grad_norm": 0.19940680265426636, + "learning_rate": 0.0006, + "loss": 3.720932960510254, + "step": 2942 + }, + { + "epoch": 40.88073394495413, + "grad_norm": 0.1964999884366989, + "learning_rate": 0.0006, + "loss": 3.678405284881592, + "step": 2943 + }, + { + "epoch": 40.89471384884229, + "grad_norm": 0.21459022164344788, + "learning_rate": 0.0006, + "loss": 3.6788480281829834, + "step": 2944 + }, + { + "epoch": 40.90869375273045, + "grad_norm": 0.2251381129026413, + "learning_rate": 0.0006, + "loss": 3.679459571838379, + "step": 2945 + }, + { + "epoch": 40.92267365661861, + "grad_norm": 0.19951461255550385, + "learning_rate": 0.0006, + "loss": 3.6610841751098633, + "step": 2946 + }, + { + "epoch": 40.93665356050677, + "grad_norm": 0.2057943493127823, + "learning_rate": 0.0006, + "loss": 3.649491786956787, + "step": 2947 + }, + { + "epoch": 40.95063346439493, + "grad_norm": 0.19601917266845703, + "learning_rate": 0.0006, + "loss": 3.724552631378174, + "step": 2948 + }, + { + "epoch": 40.964613368283096, + "grad_norm": 0.20982769131660461, + "learning_rate": 0.0006, + "loss": 3.648465394973755, + "step": 2949 + }, + { + "epoch": 40.97859327217125, + "grad_norm": 0.21103954315185547, + "learning_rate": 0.0006, + "loss": 3.692239999771118, + "step": 2950 + }, + { + "epoch": 40.992573176059416, + "grad_norm": 0.2007385492324829, + "learning_rate": 0.0006, + "loss": 3.659999132156372, + "step": 2951 + }, + { + "epoch": 41.0, + "grad_norm": 0.22357431054115295, + "learning_rate": 0.0006, + "loss": 3.6461124420166016, + "step": 2952 + }, + { + "epoch": 41.0, + "eval_loss": 3.9891226291656494, + "eval_runtime": 44.65, + "eval_samples_per_second": 54.692, + "eval_steps_per_second": 3.427, + "step": 2952 + }, + { + "epoch": 41.01397990388816, + "grad_norm": 0.20387817919254303, + "learning_rate": 0.0006, + "loss": 3.643923282623291, + "step": 2953 + }, + { + "epoch": 41.02795980777632, + "grad_norm": 0.1988423764705658, + "learning_rate": 0.0006, + "loss": 3.6152570247650146, + "step": 2954 + }, + { + "epoch": 41.04193971166448, + "grad_norm": 0.19998641312122345, + "learning_rate": 0.0006, + "loss": 3.667520523071289, + "step": 2955 + }, + { + "epoch": 41.05591961555265, + "grad_norm": 0.18347714841365814, + "learning_rate": 0.0006, + "loss": 3.6289002895355225, + "step": 2956 + }, + { + "epoch": 41.0698995194408, + "grad_norm": 0.21235640347003937, + "learning_rate": 0.0006, + "loss": 3.6422951221466064, + "step": 2957 + }, + { + "epoch": 41.083879423328966, + "grad_norm": 0.1990172415971756, + "learning_rate": 0.0006, + "loss": 3.625697135925293, + "step": 2958 + }, + { + "epoch": 41.09785932721712, + "grad_norm": 0.18313643336296082, + "learning_rate": 0.0006, + "loss": 3.672356605529785, + "step": 2959 + }, + { + "epoch": 41.111839231105286, + "grad_norm": 0.17956401407718658, + "learning_rate": 0.0006, + "loss": 3.6093602180480957, + "step": 2960 + }, + { + "epoch": 41.12581913499345, + "grad_norm": 0.19487550854682922, + "learning_rate": 0.0006, + "loss": 3.6004128456115723, + "step": 2961 + }, + { + "epoch": 41.139799038881605, + "grad_norm": 0.2117495834827423, + "learning_rate": 0.0006, + "loss": 3.6468565464019775, + "step": 2962 + }, + { + "epoch": 41.15377894276977, + "grad_norm": 0.20602662861347198, + "learning_rate": 0.0006, + "loss": 3.6299140453338623, + "step": 2963 + }, + { + "epoch": 41.16775884665793, + "grad_norm": 0.21859265863895416, + "learning_rate": 0.0006, + "loss": 3.630052328109741, + "step": 2964 + }, + { + "epoch": 41.18173875054609, + "grad_norm": 0.22684140503406525, + "learning_rate": 0.0006, + "loss": 3.5995004177093506, + "step": 2965 + }, + { + "epoch": 41.19571865443425, + "grad_norm": 0.25682681798934937, + "learning_rate": 0.0006, + "loss": 3.613131523132324, + "step": 2966 + }, + { + "epoch": 41.20969855832241, + "grad_norm": 0.2508181631565094, + "learning_rate": 0.0006, + "loss": 3.644259452819824, + "step": 2967 + }, + { + "epoch": 41.22367846221057, + "grad_norm": 0.24200427532196045, + "learning_rate": 0.0006, + "loss": 3.6651816368103027, + "step": 2968 + }, + { + "epoch": 41.237658366098735, + "grad_norm": 0.21753790974617004, + "learning_rate": 0.0006, + "loss": 3.686199188232422, + "step": 2969 + }, + { + "epoch": 41.25163826998689, + "grad_norm": 0.19811955094337463, + "learning_rate": 0.0006, + "loss": 3.63014817237854, + "step": 2970 + }, + { + "epoch": 41.265618173875055, + "grad_norm": 0.19316327571868896, + "learning_rate": 0.0006, + "loss": 3.6532740592956543, + "step": 2971 + }, + { + "epoch": 41.27959807776322, + "grad_norm": 0.21440976858139038, + "learning_rate": 0.0006, + "loss": 3.6546850204467773, + "step": 2972 + }, + { + "epoch": 41.293577981651374, + "grad_norm": 0.2732681334018707, + "learning_rate": 0.0006, + "loss": 3.6135244369506836, + "step": 2973 + }, + { + "epoch": 41.30755788553954, + "grad_norm": 0.2588619589805603, + "learning_rate": 0.0006, + "loss": 3.657963275909424, + "step": 2974 + }, + { + "epoch": 41.3215377894277, + "grad_norm": 0.20054970681667328, + "learning_rate": 0.0006, + "loss": 3.6391024589538574, + "step": 2975 + }, + { + "epoch": 41.33551769331586, + "grad_norm": 0.23703549802303314, + "learning_rate": 0.0006, + "loss": 3.6609978675842285, + "step": 2976 + }, + { + "epoch": 41.34949759720402, + "grad_norm": 0.24222144484519958, + "learning_rate": 0.0006, + "loss": 3.659271478652954, + "step": 2977 + }, + { + "epoch": 41.36347750109218, + "grad_norm": 0.2228497713804245, + "learning_rate": 0.0006, + "loss": 3.607358455657959, + "step": 2978 + }, + { + "epoch": 41.37745740498034, + "grad_norm": 0.22105038166046143, + "learning_rate": 0.0006, + "loss": 3.64198899269104, + "step": 2979 + }, + { + "epoch": 41.391437308868504, + "grad_norm": 0.23753555119037628, + "learning_rate": 0.0006, + "loss": 3.63116455078125, + "step": 2980 + }, + { + "epoch": 41.40541721275666, + "grad_norm": 0.24492689967155457, + "learning_rate": 0.0006, + "loss": 3.636122465133667, + "step": 2981 + }, + { + "epoch": 41.419397116644824, + "grad_norm": 0.20610782504081726, + "learning_rate": 0.0006, + "loss": 3.656487226486206, + "step": 2982 + }, + { + "epoch": 41.43337702053299, + "grad_norm": 0.20781412720680237, + "learning_rate": 0.0006, + "loss": 3.669196605682373, + "step": 2983 + }, + { + "epoch": 41.44735692442114, + "grad_norm": 0.23892036080360413, + "learning_rate": 0.0006, + "loss": 3.6345765590667725, + "step": 2984 + }, + { + "epoch": 41.46133682830931, + "grad_norm": 0.2477712333202362, + "learning_rate": 0.0006, + "loss": 3.6599812507629395, + "step": 2985 + }, + { + "epoch": 41.47531673219746, + "grad_norm": 0.25314703583717346, + "learning_rate": 0.0006, + "loss": 3.6737258434295654, + "step": 2986 + }, + { + "epoch": 41.489296636085626, + "grad_norm": 0.2386070191860199, + "learning_rate": 0.0006, + "loss": 3.666586399078369, + "step": 2987 + }, + { + "epoch": 41.50327653997379, + "grad_norm": 0.27259722352027893, + "learning_rate": 0.0006, + "loss": 3.658761501312256, + "step": 2988 + }, + { + "epoch": 41.517256443861946, + "grad_norm": 0.3312860429286957, + "learning_rate": 0.0006, + "loss": 3.629699230194092, + "step": 2989 + }, + { + "epoch": 41.53123634775011, + "grad_norm": 0.3321581780910492, + "learning_rate": 0.0006, + "loss": 3.66628360748291, + "step": 2990 + }, + { + "epoch": 41.54521625163827, + "grad_norm": 0.2850016951560974, + "learning_rate": 0.0006, + "loss": 3.690005302429199, + "step": 2991 + }, + { + "epoch": 41.55919615552643, + "grad_norm": 0.2544100880622864, + "learning_rate": 0.0006, + "loss": 3.6554486751556396, + "step": 2992 + }, + { + "epoch": 41.57317605941459, + "grad_norm": 0.28541380167007446, + "learning_rate": 0.0006, + "loss": 3.672952175140381, + "step": 2993 + }, + { + "epoch": 41.58715596330275, + "grad_norm": 0.2909766435623169, + "learning_rate": 0.0006, + "loss": 3.6649627685546875, + "step": 2994 + }, + { + "epoch": 41.60113586719091, + "grad_norm": 0.26089969277381897, + "learning_rate": 0.0006, + "loss": 3.6512341499328613, + "step": 2995 + }, + { + "epoch": 41.615115771079076, + "grad_norm": 0.21815894544124603, + "learning_rate": 0.0006, + "loss": 3.612436056137085, + "step": 2996 + }, + { + "epoch": 41.62909567496723, + "grad_norm": 0.20712246000766754, + "learning_rate": 0.0006, + "loss": 3.6482479572296143, + "step": 2997 + }, + { + "epoch": 41.643075578855395, + "grad_norm": 0.23280103504657745, + "learning_rate": 0.0006, + "loss": 3.6648616790771484, + "step": 2998 + }, + { + "epoch": 41.65705548274356, + "grad_norm": 0.21623823046684265, + "learning_rate": 0.0006, + "loss": 3.6714487075805664, + "step": 2999 + }, + { + "epoch": 41.671035386631715, + "grad_norm": 0.2081632912158966, + "learning_rate": 0.0006, + "loss": 3.693014144897461, + "step": 3000 + }, + { + "epoch": 41.68501529051988, + "grad_norm": 0.23109425604343414, + "learning_rate": 0.0006, + "loss": 3.667262554168701, + "step": 3001 + }, + { + "epoch": 41.69899519440804, + "grad_norm": 0.2304934561252594, + "learning_rate": 0.0006, + "loss": 3.666405439376831, + "step": 3002 + }, + { + "epoch": 41.7129750982962, + "grad_norm": 0.23132432997226715, + "learning_rate": 0.0006, + "loss": 3.690964698791504, + "step": 3003 + }, + { + "epoch": 41.72695500218436, + "grad_norm": 0.2085159569978714, + "learning_rate": 0.0006, + "loss": 3.6620168685913086, + "step": 3004 + }, + { + "epoch": 41.74093490607252, + "grad_norm": 0.1919657438993454, + "learning_rate": 0.0006, + "loss": 3.67447566986084, + "step": 3005 + }, + { + "epoch": 41.75491480996068, + "grad_norm": 0.20189036428928375, + "learning_rate": 0.0006, + "loss": 3.6434998512268066, + "step": 3006 + }, + { + "epoch": 41.768894713848844, + "grad_norm": 0.23530980944633484, + "learning_rate": 0.0006, + "loss": 3.644280433654785, + "step": 3007 + }, + { + "epoch": 41.782874617737, + "grad_norm": 0.2550027370452881, + "learning_rate": 0.0006, + "loss": 3.6686060428619385, + "step": 3008 + }, + { + "epoch": 41.796854521625164, + "grad_norm": 0.2285512536764145, + "learning_rate": 0.0006, + "loss": 3.7013134956359863, + "step": 3009 + }, + { + "epoch": 41.81083442551333, + "grad_norm": 0.20538675785064697, + "learning_rate": 0.0006, + "loss": 3.6568830013275146, + "step": 3010 + }, + { + "epoch": 41.824814329401484, + "grad_norm": 0.2007976472377777, + "learning_rate": 0.0006, + "loss": 3.680250883102417, + "step": 3011 + }, + { + "epoch": 41.83879423328965, + "grad_norm": 0.20060500502586365, + "learning_rate": 0.0006, + "loss": 3.6565070152282715, + "step": 3012 + }, + { + "epoch": 41.8527741371778, + "grad_norm": 0.21055014431476593, + "learning_rate": 0.0006, + "loss": 3.661667823791504, + "step": 3013 + }, + { + "epoch": 41.86675404106597, + "grad_norm": 0.2201126217842102, + "learning_rate": 0.0006, + "loss": 3.650052070617676, + "step": 3014 + }, + { + "epoch": 41.88073394495413, + "grad_norm": 0.20397843420505524, + "learning_rate": 0.0006, + "loss": 3.6535415649414062, + "step": 3015 + }, + { + "epoch": 41.89471384884229, + "grad_norm": 0.1993463635444641, + "learning_rate": 0.0006, + "loss": 3.665696144104004, + "step": 3016 + }, + { + "epoch": 41.90869375273045, + "grad_norm": 0.20448797941207886, + "learning_rate": 0.0006, + "loss": 3.6448118686676025, + "step": 3017 + }, + { + "epoch": 41.92267365661861, + "grad_norm": 0.2064918726682663, + "learning_rate": 0.0006, + "loss": 3.6881537437438965, + "step": 3018 + }, + { + "epoch": 41.93665356050677, + "grad_norm": 0.20554372668266296, + "learning_rate": 0.0006, + "loss": 3.688559055328369, + "step": 3019 + }, + { + "epoch": 41.95063346439493, + "grad_norm": 0.1862783133983612, + "learning_rate": 0.0006, + "loss": 3.6713812351226807, + "step": 3020 + }, + { + "epoch": 41.964613368283096, + "grad_norm": 0.18139860033988953, + "learning_rate": 0.0006, + "loss": 3.6612548828125, + "step": 3021 + }, + { + "epoch": 41.97859327217125, + "grad_norm": 0.1844220608472824, + "learning_rate": 0.0006, + "loss": 3.641725540161133, + "step": 3022 + }, + { + "epoch": 41.992573176059416, + "grad_norm": 0.1885213702917099, + "learning_rate": 0.0006, + "loss": 3.663257122039795, + "step": 3023 + }, + { + "epoch": 42.0, + "grad_norm": 0.2250746339559555, + "learning_rate": 0.0006, + "loss": 3.6479320526123047, + "step": 3024 + }, + { + "epoch": 42.0, + "eval_loss": 3.993955135345459, + "eval_runtime": 44.4709, + "eval_samples_per_second": 54.912, + "eval_steps_per_second": 3.44, + "step": 3024 + }, + { + "epoch": 42.01397990388816, + "grad_norm": 0.21096517145633698, + "learning_rate": 0.0006, + "loss": 3.6729278564453125, + "step": 3025 + }, + { + "epoch": 42.02795980777632, + "grad_norm": 0.2106277495622635, + "learning_rate": 0.0006, + "loss": 3.629892349243164, + "step": 3026 + }, + { + "epoch": 42.04193971166448, + "grad_norm": 0.2673060894012451, + "learning_rate": 0.0006, + "loss": 3.643604040145874, + "step": 3027 + }, + { + "epoch": 42.05591961555265, + "grad_norm": 0.28180691599845886, + "learning_rate": 0.0006, + "loss": 3.596560478210449, + "step": 3028 + }, + { + "epoch": 42.0698995194408, + "grad_norm": 0.25607243180274963, + "learning_rate": 0.0006, + "loss": 3.597935199737549, + "step": 3029 + }, + { + "epoch": 42.083879423328966, + "grad_norm": 0.22120746970176697, + "learning_rate": 0.0006, + "loss": 3.6219305992126465, + "step": 3030 + }, + { + "epoch": 42.09785932721712, + "grad_norm": 0.2164907306432724, + "learning_rate": 0.0006, + "loss": 3.6220779418945312, + "step": 3031 + }, + { + "epoch": 42.111839231105286, + "grad_norm": 0.23800921440124512, + "learning_rate": 0.0006, + "loss": 3.63372540473938, + "step": 3032 + }, + { + "epoch": 42.12581913499345, + "grad_norm": 0.21812695264816284, + "learning_rate": 0.0006, + "loss": 3.636105537414551, + "step": 3033 + }, + { + "epoch": 42.139799038881605, + "grad_norm": 0.2027447372674942, + "learning_rate": 0.0006, + "loss": 3.6167502403259277, + "step": 3034 + }, + { + "epoch": 42.15377894276977, + "grad_norm": 0.20157714188098907, + "learning_rate": 0.0006, + "loss": 3.6141409873962402, + "step": 3035 + }, + { + "epoch": 42.16775884665793, + "grad_norm": 0.20780996978282928, + "learning_rate": 0.0006, + "loss": 3.6323471069335938, + "step": 3036 + }, + { + "epoch": 42.18173875054609, + "grad_norm": 0.20025081932544708, + "learning_rate": 0.0006, + "loss": 3.625446081161499, + "step": 3037 + }, + { + "epoch": 42.19571865443425, + "grad_norm": 0.20019082725048065, + "learning_rate": 0.0006, + "loss": 3.631418228149414, + "step": 3038 + }, + { + "epoch": 42.20969855832241, + "grad_norm": 0.21194526553153992, + "learning_rate": 0.0006, + "loss": 3.6180832386016846, + "step": 3039 + }, + { + "epoch": 42.22367846221057, + "grad_norm": 0.2016245573759079, + "learning_rate": 0.0006, + "loss": 3.6388602256774902, + "step": 3040 + }, + { + "epoch": 42.237658366098735, + "grad_norm": 0.1892252415418625, + "learning_rate": 0.0006, + "loss": 3.6086854934692383, + "step": 3041 + }, + { + "epoch": 42.25163826998689, + "grad_norm": 0.1878061145544052, + "learning_rate": 0.0006, + "loss": 3.599428176879883, + "step": 3042 + }, + { + "epoch": 42.265618173875055, + "grad_norm": 0.20258742570877075, + "learning_rate": 0.0006, + "loss": 3.6177172660827637, + "step": 3043 + }, + { + "epoch": 42.27959807776322, + "grad_norm": 0.2114444226026535, + "learning_rate": 0.0006, + "loss": 3.641916275024414, + "step": 3044 + }, + { + "epoch": 42.293577981651374, + "grad_norm": 0.19873645901679993, + "learning_rate": 0.0006, + "loss": 3.6585676670074463, + "step": 3045 + }, + { + "epoch": 42.30755788553954, + "grad_norm": 0.20361217856407166, + "learning_rate": 0.0006, + "loss": 3.648475170135498, + "step": 3046 + }, + { + "epoch": 42.3215377894277, + "grad_norm": 0.20227114856243134, + "learning_rate": 0.0006, + "loss": 3.63625431060791, + "step": 3047 + }, + { + "epoch": 42.33551769331586, + "grad_norm": 0.18246233463287354, + "learning_rate": 0.0006, + "loss": 3.6380200386047363, + "step": 3048 + }, + { + "epoch": 42.34949759720402, + "grad_norm": 0.17944976687431335, + "learning_rate": 0.0006, + "loss": 3.6325912475585938, + "step": 3049 + }, + { + "epoch": 42.36347750109218, + "grad_norm": 0.188584566116333, + "learning_rate": 0.0006, + "loss": 3.6418886184692383, + "step": 3050 + }, + { + "epoch": 42.37745740498034, + "grad_norm": 0.1917790323495865, + "learning_rate": 0.0006, + "loss": 3.664421558380127, + "step": 3051 + }, + { + "epoch": 42.391437308868504, + "grad_norm": 0.175637349486351, + "learning_rate": 0.0006, + "loss": 3.641819953918457, + "step": 3052 + }, + { + "epoch": 42.40541721275666, + "grad_norm": 0.18751518428325653, + "learning_rate": 0.0006, + "loss": 3.646697998046875, + "step": 3053 + }, + { + "epoch": 42.419397116644824, + "grad_norm": 0.1805887520313263, + "learning_rate": 0.0006, + "loss": 3.637866735458374, + "step": 3054 + }, + { + "epoch": 42.43337702053299, + "grad_norm": 0.19680845737457275, + "learning_rate": 0.0006, + "loss": 3.602511405944824, + "step": 3055 + }, + { + "epoch": 42.44735692442114, + "grad_norm": 0.20605766773223877, + "learning_rate": 0.0006, + "loss": 3.6472771167755127, + "step": 3056 + }, + { + "epoch": 42.46133682830931, + "grad_norm": 0.18083851039409637, + "learning_rate": 0.0006, + "loss": 3.6672325134277344, + "step": 3057 + }, + { + "epoch": 42.47531673219746, + "grad_norm": 0.19665084779262543, + "learning_rate": 0.0006, + "loss": 3.625300884246826, + "step": 3058 + }, + { + "epoch": 42.489296636085626, + "grad_norm": 0.22506165504455566, + "learning_rate": 0.0006, + "loss": 3.592872142791748, + "step": 3059 + }, + { + "epoch": 42.50327653997379, + "grad_norm": 0.2051578164100647, + "learning_rate": 0.0006, + "loss": 3.6302249431610107, + "step": 3060 + }, + { + "epoch": 42.517256443861946, + "grad_norm": 0.18957172334194183, + "learning_rate": 0.0006, + "loss": 3.6277074813842773, + "step": 3061 + }, + { + "epoch": 42.53123634775011, + "grad_norm": 0.21467208862304688, + "learning_rate": 0.0006, + "loss": 3.6121392250061035, + "step": 3062 + }, + { + "epoch": 42.54521625163827, + "grad_norm": 0.21618402004241943, + "learning_rate": 0.0006, + "loss": 3.664738655090332, + "step": 3063 + }, + { + "epoch": 42.55919615552643, + "grad_norm": 0.2259770780801773, + "learning_rate": 0.0006, + "loss": 3.652042865753174, + "step": 3064 + }, + { + "epoch": 42.57317605941459, + "grad_norm": 0.22667232155799866, + "learning_rate": 0.0006, + "loss": 3.6552934646606445, + "step": 3065 + }, + { + "epoch": 42.58715596330275, + "grad_norm": 0.21405228972434998, + "learning_rate": 0.0006, + "loss": 3.644043445587158, + "step": 3066 + }, + { + "epoch": 42.60113586719091, + "grad_norm": 0.20855450630187988, + "learning_rate": 0.0006, + "loss": 3.6534876823425293, + "step": 3067 + }, + { + "epoch": 42.615115771079076, + "grad_norm": 0.22474415600299835, + "learning_rate": 0.0006, + "loss": 3.656677484512329, + "step": 3068 + }, + { + "epoch": 42.62909567496723, + "grad_norm": 0.23401428759098053, + "learning_rate": 0.0006, + "loss": 3.6788997650146484, + "step": 3069 + }, + { + "epoch": 42.643075578855395, + "grad_norm": 0.21567967534065247, + "learning_rate": 0.0006, + "loss": 3.675379753112793, + "step": 3070 + }, + { + "epoch": 42.65705548274356, + "grad_norm": 0.21704941987991333, + "learning_rate": 0.0006, + "loss": 3.630707263946533, + "step": 3071 + }, + { + "epoch": 42.671035386631715, + "grad_norm": 0.2718963921070099, + "learning_rate": 0.0006, + "loss": 3.6653294563293457, + "step": 3072 + }, + { + "epoch": 42.68501529051988, + "grad_norm": 0.30198901891708374, + "learning_rate": 0.0006, + "loss": 3.6761326789855957, + "step": 3073 + }, + { + "epoch": 42.69899519440804, + "grad_norm": 0.27593618631362915, + "learning_rate": 0.0006, + "loss": 3.6610732078552246, + "step": 3074 + }, + { + "epoch": 42.7129750982962, + "grad_norm": 0.22495242953300476, + "learning_rate": 0.0006, + "loss": 3.656907320022583, + "step": 3075 + }, + { + "epoch": 42.72695500218436, + "grad_norm": 0.19872353971004486, + "learning_rate": 0.0006, + "loss": 3.6611597537994385, + "step": 3076 + }, + { + "epoch": 42.74093490607252, + "grad_norm": 0.21527111530303955, + "learning_rate": 0.0006, + "loss": 3.676821708679199, + "step": 3077 + }, + { + "epoch": 42.75491480996068, + "grad_norm": 0.22314463555812836, + "learning_rate": 0.0006, + "loss": 3.629460334777832, + "step": 3078 + }, + { + "epoch": 42.768894713848844, + "grad_norm": 0.23461024463176727, + "learning_rate": 0.0006, + "loss": 3.665390968322754, + "step": 3079 + }, + { + "epoch": 42.782874617737, + "grad_norm": 0.2582414448261261, + "learning_rate": 0.0006, + "loss": 3.6420979499816895, + "step": 3080 + }, + { + "epoch": 42.796854521625164, + "grad_norm": 0.2505052983760834, + "learning_rate": 0.0006, + "loss": 3.67236328125, + "step": 3081 + }, + { + "epoch": 42.81083442551333, + "grad_norm": 0.22617632150650024, + "learning_rate": 0.0006, + "loss": 3.654897689819336, + "step": 3082 + }, + { + "epoch": 42.824814329401484, + "grad_norm": 0.2340085208415985, + "learning_rate": 0.0006, + "loss": 3.6423635482788086, + "step": 3083 + }, + { + "epoch": 42.83879423328965, + "grad_norm": 0.26765671372413635, + "learning_rate": 0.0006, + "loss": 3.622769832611084, + "step": 3084 + }, + { + "epoch": 42.8527741371778, + "grad_norm": 0.29490381479263306, + "learning_rate": 0.0006, + "loss": 3.656053066253662, + "step": 3085 + }, + { + "epoch": 42.86675404106597, + "grad_norm": 0.29776132106781006, + "learning_rate": 0.0006, + "loss": 3.6454644203186035, + "step": 3086 + }, + { + "epoch": 42.88073394495413, + "grad_norm": 0.23994849622249603, + "learning_rate": 0.0006, + "loss": 3.674665927886963, + "step": 3087 + }, + { + "epoch": 42.89471384884229, + "grad_norm": 0.21456265449523926, + "learning_rate": 0.0006, + "loss": 3.670175790786743, + "step": 3088 + }, + { + "epoch": 42.90869375273045, + "grad_norm": 0.25727778673171997, + "learning_rate": 0.0006, + "loss": 3.6425390243530273, + "step": 3089 + }, + { + "epoch": 42.92267365661861, + "grad_norm": 0.30310627818107605, + "learning_rate": 0.0006, + "loss": 3.68511962890625, + "step": 3090 + }, + { + "epoch": 42.93665356050677, + "grad_norm": 0.2792291045188904, + "learning_rate": 0.0006, + "loss": 3.681732654571533, + "step": 3091 + }, + { + "epoch": 42.95063346439493, + "grad_norm": 0.23614276945590973, + "learning_rate": 0.0006, + "loss": 3.6417222023010254, + "step": 3092 + }, + { + "epoch": 42.964613368283096, + "grad_norm": 0.23602448403835297, + "learning_rate": 0.0006, + "loss": 3.6602869033813477, + "step": 3093 + }, + { + "epoch": 42.97859327217125, + "grad_norm": 0.21968287229537964, + "learning_rate": 0.0006, + "loss": 3.6618118286132812, + "step": 3094 + }, + { + "epoch": 42.992573176059416, + "grad_norm": 0.2177523374557495, + "learning_rate": 0.0006, + "loss": 3.666904926300049, + "step": 3095 + }, + { + "epoch": 43.0, + "grad_norm": 0.23960894346237183, + "learning_rate": 0.0006, + "loss": 3.710965633392334, + "step": 3096 + }, + { + "epoch": 43.0, + "eval_loss": 3.977475166320801, + "eval_runtime": 44.5209, + "eval_samples_per_second": 54.851, + "eval_steps_per_second": 3.437, + "step": 3096 + }, + { + "epoch": 43.01397990388816, + "grad_norm": 0.24180234968662262, + "learning_rate": 0.0006, + "loss": 3.5949223041534424, + "step": 3097 + }, + { + "epoch": 43.02795980777632, + "grad_norm": 0.3331127166748047, + "learning_rate": 0.0006, + "loss": 3.625802755355835, + "step": 3098 + }, + { + "epoch": 43.04193971166448, + "grad_norm": 0.38338130712509155, + "learning_rate": 0.0006, + "loss": 3.6390271186828613, + "step": 3099 + }, + { + "epoch": 43.05591961555265, + "grad_norm": 0.32292598485946655, + "learning_rate": 0.0006, + "loss": 3.630621910095215, + "step": 3100 + }, + { + "epoch": 43.0698995194408, + "grad_norm": 0.24179677665233612, + "learning_rate": 0.0006, + "loss": 3.6124491691589355, + "step": 3101 + }, + { + "epoch": 43.083879423328966, + "grad_norm": 0.2622842788696289, + "learning_rate": 0.0006, + "loss": 3.6207399368286133, + "step": 3102 + }, + { + "epoch": 43.09785932721712, + "grad_norm": 0.264297217130661, + "learning_rate": 0.0006, + "loss": 3.637218475341797, + "step": 3103 + }, + { + "epoch": 43.111839231105286, + "grad_norm": 0.25815117359161377, + "learning_rate": 0.0006, + "loss": 3.614841938018799, + "step": 3104 + }, + { + "epoch": 43.12581913499345, + "grad_norm": 0.2209406942129135, + "learning_rate": 0.0006, + "loss": 3.604722738265991, + "step": 3105 + }, + { + "epoch": 43.139799038881605, + "grad_norm": 0.22333410382270813, + "learning_rate": 0.0006, + "loss": 3.6388449668884277, + "step": 3106 + }, + { + "epoch": 43.15377894276977, + "grad_norm": 0.2194417119026184, + "learning_rate": 0.0006, + "loss": 3.611644744873047, + "step": 3107 + }, + { + "epoch": 43.16775884665793, + "grad_norm": 0.21270349621772766, + "learning_rate": 0.0006, + "loss": 3.6180214881896973, + "step": 3108 + }, + { + "epoch": 43.18173875054609, + "grad_norm": 0.21358032524585724, + "learning_rate": 0.0006, + "loss": 3.646512985229492, + "step": 3109 + }, + { + "epoch": 43.19571865443425, + "grad_norm": 0.2180788666009903, + "learning_rate": 0.0006, + "loss": 3.641981363296509, + "step": 3110 + }, + { + "epoch": 43.20969855832241, + "grad_norm": 0.21979685127735138, + "learning_rate": 0.0006, + "loss": 3.6251654624938965, + "step": 3111 + }, + { + "epoch": 43.22367846221057, + "grad_norm": 0.2072533220052719, + "learning_rate": 0.0006, + "loss": 3.665372371673584, + "step": 3112 + }, + { + "epoch": 43.237658366098735, + "grad_norm": 0.2085742950439453, + "learning_rate": 0.0006, + "loss": 3.647730827331543, + "step": 3113 + }, + { + "epoch": 43.25163826998689, + "grad_norm": 0.1934993416070938, + "learning_rate": 0.0006, + "loss": 3.6296567916870117, + "step": 3114 + }, + { + "epoch": 43.265618173875055, + "grad_norm": 0.1954783797264099, + "learning_rate": 0.0006, + "loss": 3.6412858963012695, + "step": 3115 + }, + { + "epoch": 43.27959807776322, + "grad_norm": 0.1932750642299652, + "learning_rate": 0.0006, + "loss": 3.6246860027313232, + "step": 3116 + }, + { + "epoch": 43.293577981651374, + "grad_norm": 0.19765302538871765, + "learning_rate": 0.0006, + "loss": 3.618922710418701, + "step": 3117 + }, + { + "epoch": 43.30755788553954, + "grad_norm": 0.1987425684928894, + "learning_rate": 0.0006, + "loss": 3.633185863494873, + "step": 3118 + }, + { + "epoch": 43.3215377894277, + "grad_norm": 0.1894739419221878, + "learning_rate": 0.0006, + "loss": 3.595709800720215, + "step": 3119 + }, + { + "epoch": 43.33551769331586, + "grad_norm": 0.19455872476100922, + "learning_rate": 0.0006, + "loss": 3.6309051513671875, + "step": 3120 + }, + { + "epoch": 43.34949759720402, + "grad_norm": 0.21448275446891785, + "learning_rate": 0.0006, + "loss": 3.6425981521606445, + "step": 3121 + }, + { + "epoch": 43.36347750109218, + "grad_norm": 0.24527893960475922, + "learning_rate": 0.0006, + "loss": 3.6497793197631836, + "step": 3122 + }, + { + "epoch": 43.37745740498034, + "grad_norm": 0.253231942653656, + "learning_rate": 0.0006, + "loss": 3.644453525543213, + "step": 3123 + }, + { + "epoch": 43.391437308868504, + "grad_norm": 0.2048978954553604, + "learning_rate": 0.0006, + "loss": 3.5963876247406006, + "step": 3124 + }, + { + "epoch": 43.40541721275666, + "grad_norm": 0.19951528310775757, + "learning_rate": 0.0006, + "loss": 3.6274406909942627, + "step": 3125 + }, + { + "epoch": 43.419397116644824, + "grad_norm": 0.2293875813484192, + "learning_rate": 0.0006, + "loss": 3.6482725143432617, + "step": 3126 + }, + { + "epoch": 43.43337702053299, + "grad_norm": 0.22379456460475922, + "learning_rate": 0.0006, + "loss": 3.6466073989868164, + "step": 3127 + }, + { + "epoch": 43.44735692442114, + "grad_norm": 0.2275441288948059, + "learning_rate": 0.0006, + "loss": 3.6529078483581543, + "step": 3128 + }, + { + "epoch": 43.46133682830931, + "grad_norm": 0.23014242947101593, + "learning_rate": 0.0006, + "loss": 3.6084837913513184, + "step": 3129 + }, + { + "epoch": 43.47531673219746, + "grad_norm": 0.22280924022197723, + "learning_rate": 0.0006, + "loss": 3.611320734024048, + "step": 3130 + }, + { + "epoch": 43.489296636085626, + "grad_norm": 0.19498756527900696, + "learning_rate": 0.0006, + "loss": 3.630185604095459, + "step": 3131 + }, + { + "epoch": 43.50327653997379, + "grad_norm": 0.21357767283916473, + "learning_rate": 0.0006, + "loss": 3.6509933471679688, + "step": 3132 + }, + { + "epoch": 43.517256443861946, + "grad_norm": 0.21775896847248077, + "learning_rate": 0.0006, + "loss": 3.635112762451172, + "step": 3133 + }, + { + "epoch": 43.53123634775011, + "grad_norm": 0.2035629004240036, + "learning_rate": 0.0006, + "loss": 3.658327102661133, + "step": 3134 + }, + { + "epoch": 43.54521625163827, + "grad_norm": 0.20083840191364288, + "learning_rate": 0.0006, + "loss": 3.632441997528076, + "step": 3135 + }, + { + "epoch": 43.55919615552643, + "grad_norm": 0.1922001987695694, + "learning_rate": 0.0006, + "loss": 3.6417734622955322, + "step": 3136 + }, + { + "epoch": 43.57317605941459, + "grad_norm": 0.21049264073371887, + "learning_rate": 0.0006, + "loss": 3.671274423599243, + "step": 3137 + }, + { + "epoch": 43.58715596330275, + "grad_norm": 0.21432001888751984, + "learning_rate": 0.0006, + "loss": 3.6216118335723877, + "step": 3138 + }, + { + "epoch": 43.60113586719091, + "grad_norm": 0.25448811054229736, + "learning_rate": 0.0006, + "loss": 3.658283233642578, + "step": 3139 + }, + { + "epoch": 43.615115771079076, + "grad_norm": 0.24313904345035553, + "learning_rate": 0.0006, + "loss": 3.6447594165802, + "step": 3140 + }, + { + "epoch": 43.62909567496723, + "grad_norm": 0.2332659363746643, + "learning_rate": 0.0006, + "loss": 3.625528573989868, + "step": 3141 + }, + { + "epoch": 43.643075578855395, + "grad_norm": 0.23222137987613678, + "learning_rate": 0.0006, + "loss": 3.6524429321289062, + "step": 3142 + }, + { + "epoch": 43.65705548274356, + "grad_norm": 0.2147051990032196, + "learning_rate": 0.0006, + "loss": 3.6517302989959717, + "step": 3143 + }, + { + "epoch": 43.671035386631715, + "grad_norm": 0.2464994341135025, + "learning_rate": 0.0006, + "loss": 3.654947519302368, + "step": 3144 + }, + { + "epoch": 43.68501529051988, + "grad_norm": 0.2365981936454773, + "learning_rate": 0.0006, + "loss": 3.638695240020752, + "step": 3145 + }, + { + "epoch": 43.69899519440804, + "grad_norm": 0.2325262874364853, + "learning_rate": 0.0006, + "loss": 3.6496055126190186, + "step": 3146 + }, + { + "epoch": 43.7129750982962, + "grad_norm": 0.2196085900068283, + "learning_rate": 0.0006, + "loss": 3.6323978900909424, + "step": 3147 + }, + { + "epoch": 43.72695500218436, + "grad_norm": 0.20404237508773804, + "learning_rate": 0.0006, + "loss": 3.6572763919830322, + "step": 3148 + }, + { + "epoch": 43.74093490607252, + "grad_norm": 0.2363257110118866, + "learning_rate": 0.0006, + "loss": 3.6347732543945312, + "step": 3149 + }, + { + "epoch": 43.75491480996068, + "grad_norm": 0.23671524226665497, + "learning_rate": 0.0006, + "loss": 3.650017023086548, + "step": 3150 + }, + { + "epoch": 43.768894713848844, + "grad_norm": 0.20892305672168732, + "learning_rate": 0.0006, + "loss": 3.638185977935791, + "step": 3151 + }, + { + "epoch": 43.782874617737, + "grad_norm": 0.18670055270195007, + "learning_rate": 0.0006, + "loss": 3.6647696495056152, + "step": 3152 + }, + { + "epoch": 43.796854521625164, + "grad_norm": 0.21818184852600098, + "learning_rate": 0.0006, + "loss": 3.663623332977295, + "step": 3153 + }, + { + "epoch": 43.81083442551333, + "grad_norm": 0.23472464084625244, + "learning_rate": 0.0006, + "loss": 3.650595188140869, + "step": 3154 + }, + { + "epoch": 43.824814329401484, + "grad_norm": 0.2266419678926468, + "learning_rate": 0.0006, + "loss": 3.6362059116363525, + "step": 3155 + }, + { + "epoch": 43.83879423328965, + "grad_norm": 0.2250787913799286, + "learning_rate": 0.0006, + "loss": 3.647970199584961, + "step": 3156 + }, + { + "epoch": 43.8527741371778, + "grad_norm": 0.21493776142597198, + "learning_rate": 0.0006, + "loss": 3.6510982513427734, + "step": 3157 + }, + { + "epoch": 43.86675404106597, + "grad_norm": 0.20783160626888275, + "learning_rate": 0.0006, + "loss": 3.654845714569092, + "step": 3158 + }, + { + "epoch": 43.88073394495413, + "grad_norm": 0.2222554087638855, + "learning_rate": 0.0006, + "loss": 3.6565685272216797, + "step": 3159 + }, + { + "epoch": 43.89471384884229, + "grad_norm": 0.2148049771785736, + "learning_rate": 0.0006, + "loss": 3.630779266357422, + "step": 3160 + }, + { + "epoch": 43.90869375273045, + "grad_norm": 0.2222086787223816, + "learning_rate": 0.0006, + "loss": 3.6312813758850098, + "step": 3161 + }, + { + "epoch": 43.92267365661861, + "grad_norm": 0.24049264192581177, + "learning_rate": 0.0006, + "loss": 3.6185736656188965, + "step": 3162 + }, + { + "epoch": 43.93665356050677, + "grad_norm": 0.2228843867778778, + "learning_rate": 0.0006, + "loss": 3.595583438873291, + "step": 3163 + }, + { + "epoch": 43.95063346439493, + "grad_norm": 0.20714408159255981, + "learning_rate": 0.0006, + "loss": 3.6649322509765625, + "step": 3164 + }, + { + "epoch": 43.964613368283096, + "grad_norm": 0.2048991471529007, + "learning_rate": 0.0006, + "loss": 3.6513710021972656, + "step": 3165 + }, + { + "epoch": 43.97859327217125, + "grad_norm": 0.21874114871025085, + "learning_rate": 0.0006, + "loss": 3.6471524238586426, + "step": 3166 + }, + { + "epoch": 43.992573176059416, + "grad_norm": 0.21309879422187805, + "learning_rate": 0.0006, + "loss": 3.647021770477295, + "step": 3167 + }, + { + "epoch": 44.0, + "grad_norm": 0.23717166483402252, + "learning_rate": 0.0006, + "loss": 3.6903820037841797, + "step": 3168 + }, + { + "epoch": 44.0, + "eval_loss": 3.9844837188720703, + "eval_runtime": 44.29, + "eval_samples_per_second": 55.137, + "eval_steps_per_second": 3.455, + "step": 3168 + }, + { + "epoch": 44.01397990388816, + "grad_norm": 0.21503832936286926, + "learning_rate": 0.0006, + "loss": 3.6054744720458984, + "step": 3169 + }, + { + "epoch": 44.02795980777632, + "grad_norm": 0.2289554923772812, + "learning_rate": 0.0006, + "loss": 3.6560556888580322, + "step": 3170 + }, + { + "epoch": 44.04193971166448, + "grad_norm": 0.24250416457653046, + "learning_rate": 0.0006, + "loss": 3.611820697784424, + "step": 3171 + }, + { + "epoch": 44.05591961555265, + "grad_norm": 0.2526668310165405, + "learning_rate": 0.0006, + "loss": 3.6273183822631836, + "step": 3172 + }, + { + "epoch": 44.0698995194408, + "grad_norm": 0.26702383160591125, + "learning_rate": 0.0006, + "loss": 3.5856852531433105, + "step": 3173 + }, + { + "epoch": 44.083879423328966, + "grad_norm": 0.2715195417404175, + "learning_rate": 0.0006, + "loss": 3.631045341491699, + "step": 3174 + }, + { + "epoch": 44.09785932721712, + "grad_norm": 0.3505614995956421, + "learning_rate": 0.0006, + "loss": 3.628720760345459, + "step": 3175 + }, + { + "epoch": 44.111839231105286, + "grad_norm": 0.2760702967643738, + "learning_rate": 0.0006, + "loss": 3.6283509731292725, + "step": 3176 + }, + { + "epoch": 44.12581913499345, + "grad_norm": 0.21105222404003143, + "learning_rate": 0.0006, + "loss": 3.6495566368103027, + "step": 3177 + }, + { + "epoch": 44.139799038881605, + "grad_norm": 0.2852860987186432, + "learning_rate": 0.0006, + "loss": 3.640768527984619, + "step": 3178 + }, + { + "epoch": 44.15377894276977, + "grad_norm": 0.2941005825996399, + "learning_rate": 0.0006, + "loss": 3.6303114891052246, + "step": 3179 + }, + { + "epoch": 44.16775884665793, + "grad_norm": 0.2792299687862396, + "learning_rate": 0.0006, + "loss": 3.6053574085235596, + "step": 3180 + }, + { + "epoch": 44.18173875054609, + "grad_norm": 0.23168638348579407, + "learning_rate": 0.0006, + "loss": 3.62430477142334, + "step": 3181 + }, + { + "epoch": 44.19571865443425, + "grad_norm": 0.23713921010494232, + "learning_rate": 0.0006, + "loss": 3.601106643676758, + "step": 3182 + }, + { + "epoch": 44.20969855832241, + "grad_norm": 0.23341049253940582, + "learning_rate": 0.0006, + "loss": 3.631762742996216, + "step": 3183 + }, + { + "epoch": 44.22367846221057, + "grad_norm": 0.23094508051872253, + "learning_rate": 0.0006, + "loss": 3.586683750152588, + "step": 3184 + }, + { + "epoch": 44.237658366098735, + "grad_norm": 0.24085712432861328, + "learning_rate": 0.0006, + "loss": 3.6251423358917236, + "step": 3185 + }, + { + "epoch": 44.25163826998689, + "grad_norm": 0.24999955296516418, + "learning_rate": 0.0006, + "loss": 3.6554198265075684, + "step": 3186 + }, + { + "epoch": 44.265618173875055, + "grad_norm": 0.21759621798992157, + "learning_rate": 0.0006, + "loss": 3.6249518394470215, + "step": 3187 + }, + { + "epoch": 44.27959807776322, + "grad_norm": 0.2490139901638031, + "learning_rate": 0.0006, + "loss": 3.6163341999053955, + "step": 3188 + }, + { + "epoch": 44.293577981651374, + "grad_norm": 0.23420892655849457, + "learning_rate": 0.0006, + "loss": 3.615469455718994, + "step": 3189 + }, + { + "epoch": 44.30755788553954, + "grad_norm": 0.2292138934135437, + "learning_rate": 0.0006, + "loss": 3.6085104942321777, + "step": 3190 + }, + { + "epoch": 44.3215377894277, + "grad_norm": 0.22595474123954773, + "learning_rate": 0.0006, + "loss": 3.6317405700683594, + "step": 3191 + }, + { + "epoch": 44.33551769331586, + "grad_norm": 0.22418338060379028, + "learning_rate": 0.0006, + "loss": 3.6287777423858643, + "step": 3192 + }, + { + "epoch": 44.34949759720402, + "grad_norm": 0.2453135848045349, + "learning_rate": 0.0006, + "loss": 3.6228437423706055, + "step": 3193 + }, + { + "epoch": 44.36347750109218, + "grad_norm": 0.2627771198749542, + "learning_rate": 0.0006, + "loss": 3.6581034660339355, + "step": 3194 + }, + { + "epoch": 44.37745740498034, + "grad_norm": 0.24114494025707245, + "learning_rate": 0.0006, + "loss": 3.653505563735962, + "step": 3195 + }, + { + "epoch": 44.391437308868504, + "grad_norm": 0.2103721648454666, + "learning_rate": 0.0006, + "loss": 3.5698580741882324, + "step": 3196 + }, + { + "epoch": 44.40541721275666, + "grad_norm": 0.21172291040420532, + "learning_rate": 0.0006, + "loss": 3.573453426361084, + "step": 3197 + }, + { + "epoch": 44.419397116644824, + "grad_norm": 0.20298106968402863, + "learning_rate": 0.0006, + "loss": 3.6350207328796387, + "step": 3198 + }, + { + "epoch": 44.43337702053299, + "grad_norm": 0.2029009759426117, + "learning_rate": 0.0006, + "loss": 3.6025917530059814, + "step": 3199 + }, + { + "epoch": 44.44735692442114, + "grad_norm": 0.18960542976856232, + "learning_rate": 0.0006, + "loss": 3.625028133392334, + "step": 3200 + }, + { + "epoch": 44.46133682830931, + "grad_norm": 0.20758579671382904, + "learning_rate": 0.0006, + "loss": 3.647071123123169, + "step": 3201 + }, + { + "epoch": 44.47531673219746, + "grad_norm": 0.21896769106388092, + "learning_rate": 0.0006, + "loss": 3.6481196880340576, + "step": 3202 + }, + { + "epoch": 44.489296636085626, + "grad_norm": 0.20817387104034424, + "learning_rate": 0.0006, + "loss": 3.629366874694824, + "step": 3203 + }, + { + "epoch": 44.50327653997379, + "grad_norm": 0.2099488228559494, + "learning_rate": 0.0006, + "loss": 3.6757798194885254, + "step": 3204 + }, + { + "epoch": 44.517256443861946, + "grad_norm": 0.21376627683639526, + "learning_rate": 0.0006, + "loss": 3.638324737548828, + "step": 3205 + }, + { + "epoch": 44.53123634775011, + "grad_norm": 0.19089072942733765, + "learning_rate": 0.0006, + "loss": 3.6497435569763184, + "step": 3206 + }, + { + "epoch": 44.54521625163827, + "grad_norm": 0.20489120483398438, + "learning_rate": 0.0006, + "loss": 3.634019374847412, + "step": 3207 + }, + { + "epoch": 44.55919615552643, + "grad_norm": 0.21991780400276184, + "learning_rate": 0.0006, + "loss": 3.6255834102630615, + "step": 3208 + }, + { + "epoch": 44.57317605941459, + "grad_norm": 0.23417581617832184, + "learning_rate": 0.0006, + "loss": 3.631927728652954, + "step": 3209 + }, + { + "epoch": 44.58715596330275, + "grad_norm": 0.22819049656391144, + "learning_rate": 0.0006, + "loss": 3.640167713165283, + "step": 3210 + }, + { + "epoch": 44.60113586719091, + "grad_norm": 0.21443316340446472, + "learning_rate": 0.0006, + "loss": 3.645709991455078, + "step": 3211 + }, + { + "epoch": 44.615115771079076, + "grad_norm": 0.19252653419971466, + "learning_rate": 0.0006, + "loss": 3.591294288635254, + "step": 3212 + }, + { + "epoch": 44.62909567496723, + "grad_norm": 0.18925397098064423, + "learning_rate": 0.0006, + "loss": 3.6163625717163086, + "step": 3213 + }, + { + "epoch": 44.643075578855395, + "grad_norm": 0.21605387330055237, + "learning_rate": 0.0006, + "loss": 3.6826887130737305, + "step": 3214 + }, + { + "epoch": 44.65705548274356, + "grad_norm": 0.21301978826522827, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 3215 + }, + { + "epoch": 44.671035386631715, + "grad_norm": 0.20065832138061523, + "learning_rate": 0.0006, + "loss": 3.648879289627075, + "step": 3216 + }, + { + "epoch": 44.68501529051988, + "grad_norm": 0.21413499116897583, + "learning_rate": 0.0006, + "loss": 3.6327264308929443, + "step": 3217 + }, + { + "epoch": 44.69899519440804, + "grad_norm": 0.22769849002361298, + "learning_rate": 0.0006, + "loss": 3.6486430168151855, + "step": 3218 + }, + { + "epoch": 44.7129750982962, + "grad_norm": 0.227064847946167, + "learning_rate": 0.0006, + "loss": 3.633342981338501, + "step": 3219 + }, + { + "epoch": 44.72695500218436, + "grad_norm": 0.21335656940937042, + "learning_rate": 0.0006, + "loss": 3.648621082305908, + "step": 3220 + }, + { + "epoch": 44.74093490607252, + "grad_norm": 0.2085563838481903, + "learning_rate": 0.0006, + "loss": 3.647826671600342, + "step": 3221 + }, + { + "epoch": 44.75491480996068, + "grad_norm": 0.19203904271125793, + "learning_rate": 0.0006, + "loss": 3.6296122074127197, + "step": 3222 + }, + { + "epoch": 44.768894713848844, + "grad_norm": 0.1969112604856491, + "learning_rate": 0.0006, + "loss": 3.6477179527282715, + "step": 3223 + }, + { + "epoch": 44.782874617737, + "grad_norm": 0.21630392968654633, + "learning_rate": 0.0006, + "loss": 3.628805637359619, + "step": 3224 + }, + { + "epoch": 44.796854521625164, + "grad_norm": 0.20641647279262543, + "learning_rate": 0.0006, + "loss": 3.650993824005127, + "step": 3225 + }, + { + "epoch": 44.81083442551333, + "grad_norm": 0.1954173892736435, + "learning_rate": 0.0006, + "loss": 3.6362831592559814, + "step": 3226 + }, + { + "epoch": 44.824814329401484, + "grad_norm": 0.20479747653007507, + "learning_rate": 0.0006, + "loss": 3.6467390060424805, + "step": 3227 + }, + { + "epoch": 44.83879423328965, + "grad_norm": 0.20502690970897675, + "learning_rate": 0.0006, + "loss": 3.6260130405426025, + "step": 3228 + }, + { + "epoch": 44.8527741371778, + "grad_norm": 0.20348094403743744, + "learning_rate": 0.0006, + "loss": 3.6836767196655273, + "step": 3229 + }, + { + "epoch": 44.86675404106597, + "grad_norm": 0.18748269975185394, + "learning_rate": 0.0006, + "loss": 3.610104560852051, + "step": 3230 + }, + { + "epoch": 44.88073394495413, + "grad_norm": 0.18822219967842102, + "learning_rate": 0.0006, + "loss": 3.61354398727417, + "step": 3231 + }, + { + "epoch": 44.89471384884229, + "grad_norm": 0.20972031354904175, + "learning_rate": 0.0006, + "loss": 3.644336700439453, + "step": 3232 + }, + { + "epoch": 44.90869375273045, + "grad_norm": 0.2013155072927475, + "learning_rate": 0.0006, + "loss": 3.659287929534912, + "step": 3233 + }, + { + "epoch": 44.92267365661861, + "grad_norm": 0.2056475579738617, + "learning_rate": 0.0006, + "loss": 3.6545677185058594, + "step": 3234 + }, + { + "epoch": 44.93665356050677, + "grad_norm": 0.2104482203722, + "learning_rate": 0.0006, + "loss": 3.6094017028808594, + "step": 3235 + }, + { + "epoch": 44.95063346439493, + "grad_norm": 0.1993035078048706, + "learning_rate": 0.0006, + "loss": 3.6209053993225098, + "step": 3236 + }, + { + "epoch": 44.964613368283096, + "grad_norm": 0.1883099526166916, + "learning_rate": 0.0006, + "loss": 3.6011457443237305, + "step": 3237 + }, + { + "epoch": 44.97859327217125, + "grad_norm": 0.1927674412727356, + "learning_rate": 0.0006, + "loss": 3.606609344482422, + "step": 3238 + }, + { + "epoch": 44.992573176059416, + "grad_norm": 0.1878899335861206, + "learning_rate": 0.0006, + "loss": 3.6701109409332275, + "step": 3239 + }, + { + "epoch": 45.0, + "grad_norm": 0.2237395942211151, + "learning_rate": 0.0006, + "loss": 3.6617302894592285, + "step": 3240 + }, + { + "epoch": 45.0, + "eval_loss": 3.9812564849853516, + "eval_runtime": 44.8635, + "eval_samples_per_second": 54.432, + "eval_steps_per_second": 3.41, + "step": 3240 + }, + { + "epoch": 45.01397990388816, + "grad_norm": 0.21368487179279327, + "learning_rate": 0.0006, + "loss": 3.599107265472412, + "step": 3241 + }, + { + "epoch": 45.02795980777632, + "grad_norm": 0.2234211564064026, + "learning_rate": 0.0006, + "loss": 3.5943236351013184, + "step": 3242 + }, + { + "epoch": 45.04193971166448, + "grad_norm": 0.2222544252872467, + "learning_rate": 0.0006, + "loss": 3.6152291297912598, + "step": 3243 + }, + { + "epoch": 45.05591961555265, + "grad_norm": 0.24686792492866516, + "learning_rate": 0.0006, + "loss": 3.6006085872650146, + "step": 3244 + }, + { + "epoch": 45.0698995194408, + "grad_norm": 0.24634984135627747, + "learning_rate": 0.0006, + "loss": 3.6023471355438232, + "step": 3245 + }, + { + "epoch": 45.083879423328966, + "grad_norm": 0.2150750756263733, + "learning_rate": 0.0006, + "loss": 3.5690598487854004, + "step": 3246 + }, + { + "epoch": 45.09785932721712, + "grad_norm": 0.196721151471138, + "learning_rate": 0.0006, + "loss": 3.592653751373291, + "step": 3247 + }, + { + "epoch": 45.111839231105286, + "grad_norm": 0.21874476969242096, + "learning_rate": 0.0006, + "loss": 3.586243152618408, + "step": 3248 + }, + { + "epoch": 45.12581913499345, + "grad_norm": 0.21021611988544464, + "learning_rate": 0.0006, + "loss": 3.599384307861328, + "step": 3249 + }, + { + "epoch": 45.139799038881605, + "grad_norm": 0.19754183292388916, + "learning_rate": 0.0006, + "loss": 3.623816967010498, + "step": 3250 + }, + { + "epoch": 45.15377894276977, + "grad_norm": 0.21218672394752502, + "learning_rate": 0.0006, + "loss": 3.5901236534118652, + "step": 3251 + }, + { + "epoch": 45.16775884665793, + "grad_norm": 0.23569360375404358, + "learning_rate": 0.0006, + "loss": 3.600029945373535, + "step": 3252 + }, + { + "epoch": 45.18173875054609, + "grad_norm": 0.25429826974868774, + "learning_rate": 0.0006, + "loss": 3.607773542404175, + "step": 3253 + }, + { + "epoch": 45.19571865443425, + "grad_norm": 0.23416805267333984, + "learning_rate": 0.0006, + "loss": 3.63248348236084, + "step": 3254 + }, + { + "epoch": 45.20969855832241, + "grad_norm": 0.20821864902973175, + "learning_rate": 0.0006, + "loss": 3.641927719116211, + "step": 3255 + }, + { + "epoch": 45.22367846221057, + "grad_norm": 0.21849380433559418, + "learning_rate": 0.0006, + "loss": 3.665098190307617, + "step": 3256 + }, + { + "epoch": 45.237658366098735, + "grad_norm": 0.22939491271972656, + "learning_rate": 0.0006, + "loss": 3.6106104850769043, + "step": 3257 + }, + { + "epoch": 45.25163826998689, + "grad_norm": 0.24144501984119415, + "learning_rate": 0.0006, + "loss": 3.5872416496276855, + "step": 3258 + }, + { + "epoch": 45.265618173875055, + "grad_norm": 0.21790480613708496, + "learning_rate": 0.0006, + "loss": 3.6268889904022217, + "step": 3259 + }, + { + "epoch": 45.27959807776322, + "grad_norm": 0.22702264785766602, + "learning_rate": 0.0006, + "loss": 3.5972542762756348, + "step": 3260 + }, + { + "epoch": 45.293577981651374, + "grad_norm": 0.22465437650680542, + "learning_rate": 0.0006, + "loss": 3.6339592933654785, + "step": 3261 + }, + { + "epoch": 45.30755788553954, + "grad_norm": 0.21804460883140564, + "learning_rate": 0.0006, + "loss": 3.6062779426574707, + "step": 3262 + }, + { + "epoch": 45.3215377894277, + "grad_norm": 0.1985616534948349, + "learning_rate": 0.0006, + "loss": 3.629815101623535, + "step": 3263 + }, + { + "epoch": 45.33551769331586, + "grad_norm": 0.22264975309371948, + "learning_rate": 0.0006, + "loss": 3.631214141845703, + "step": 3264 + }, + { + "epoch": 45.34949759720402, + "grad_norm": 0.22178539633750916, + "learning_rate": 0.0006, + "loss": 3.620854377746582, + "step": 3265 + }, + { + "epoch": 45.36347750109218, + "grad_norm": 0.22392240166664124, + "learning_rate": 0.0006, + "loss": 3.6611738204956055, + "step": 3266 + }, + { + "epoch": 45.37745740498034, + "grad_norm": 0.2178916484117508, + "learning_rate": 0.0006, + "loss": 3.639893054962158, + "step": 3267 + }, + { + "epoch": 45.391437308868504, + "grad_norm": 0.2173885703086853, + "learning_rate": 0.0006, + "loss": 3.611750364303589, + "step": 3268 + }, + { + "epoch": 45.40541721275666, + "grad_norm": 0.2107069045305252, + "learning_rate": 0.0006, + "loss": 3.595181465148926, + "step": 3269 + }, + { + "epoch": 45.419397116644824, + "grad_norm": 0.19623015820980072, + "learning_rate": 0.0006, + "loss": 3.6096351146698, + "step": 3270 + }, + { + "epoch": 45.43337702053299, + "grad_norm": 0.23091304302215576, + "learning_rate": 0.0006, + "loss": 3.603667974472046, + "step": 3271 + }, + { + "epoch": 45.44735692442114, + "grad_norm": 0.22909007966518402, + "learning_rate": 0.0006, + "loss": 3.62846040725708, + "step": 3272 + }, + { + "epoch": 45.46133682830931, + "grad_norm": 0.2104928195476532, + "learning_rate": 0.0006, + "loss": 3.6543164253234863, + "step": 3273 + }, + { + "epoch": 45.47531673219746, + "grad_norm": 0.22994203865528107, + "learning_rate": 0.0006, + "loss": 3.621878147125244, + "step": 3274 + }, + { + "epoch": 45.489296636085626, + "grad_norm": 0.21652749180793762, + "learning_rate": 0.0006, + "loss": 3.6095705032348633, + "step": 3275 + }, + { + "epoch": 45.50327653997379, + "grad_norm": 0.20125073194503784, + "learning_rate": 0.0006, + "loss": 3.6213903427124023, + "step": 3276 + }, + { + "epoch": 45.517256443861946, + "grad_norm": 0.19995734095573425, + "learning_rate": 0.0006, + "loss": 3.6526503562927246, + "step": 3277 + }, + { + "epoch": 45.53123634775011, + "grad_norm": 0.2071387618780136, + "learning_rate": 0.0006, + "loss": 3.626208782196045, + "step": 3278 + }, + { + "epoch": 45.54521625163827, + "grad_norm": 0.222015842795372, + "learning_rate": 0.0006, + "loss": 3.61144757270813, + "step": 3279 + }, + { + "epoch": 45.55919615552643, + "grad_norm": 0.20780639350414276, + "learning_rate": 0.0006, + "loss": 3.64092755317688, + "step": 3280 + }, + { + "epoch": 45.57317605941459, + "grad_norm": 0.19297364354133606, + "learning_rate": 0.0006, + "loss": 3.6308364868164062, + "step": 3281 + }, + { + "epoch": 45.58715596330275, + "grad_norm": 0.1928786337375641, + "learning_rate": 0.0006, + "loss": 3.6258254051208496, + "step": 3282 + }, + { + "epoch": 45.60113586719091, + "grad_norm": 0.1940007209777832, + "learning_rate": 0.0006, + "loss": 3.622849464416504, + "step": 3283 + }, + { + "epoch": 45.615115771079076, + "grad_norm": 0.19643044471740723, + "learning_rate": 0.0006, + "loss": 3.6461117267608643, + "step": 3284 + }, + { + "epoch": 45.62909567496723, + "grad_norm": 0.19996654987335205, + "learning_rate": 0.0006, + "loss": 3.61572265625, + "step": 3285 + }, + { + "epoch": 45.643075578855395, + "grad_norm": 0.20202603936195374, + "learning_rate": 0.0006, + "loss": 3.610734462738037, + "step": 3286 + }, + { + "epoch": 45.65705548274356, + "grad_norm": 0.19249361753463745, + "learning_rate": 0.0006, + "loss": 3.607048511505127, + "step": 3287 + }, + { + "epoch": 45.671035386631715, + "grad_norm": 0.1894780397415161, + "learning_rate": 0.0006, + "loss": 3.6450905799865723, + "step": 3288 + }, + { + "epoch": 45.68501529051988, + "grad_norm": 0.19901636242866516, + "learning_rate": 0.0006, + "loss": 3.6313018798828125, + "step": 3289 + }, + { + "epoch": 45.69899519440804, + "grad_norm": 0.1875065118074417, + "learning_rate": 0.0006, + "loss": 3.641326427459717, + "step": 3290 + }, + { + "epoch": 45.7129750982962, + "grad_norm": 0.19832095503807068, + "learning_rate": 0.0006, + "loss": 3.6612308025360107, + "step": 3291 + }, + { + "epoch": 45.72695500218436, + "grad_norm": 0.20353806018829346, + "learning_rate": 0.0006, + "loss": 3.623152017593384, + "step": 3292 + }, + { + "epoch": 45.74093490607252, + "grad_norm": 0.1984023153781891, + "learning_rate": 0.0006, + "loss": 3.627358913421631, + "step": 3293 + }, + { + "epoch": 45.75491480996068, + "grad_norm": 0.2002221643924713, + "learning_rate": 0.0006, + "loss": 3.6334757804870605, + "step": 3294 + }, + { + "epoch": 45.768894713848844, + "grad_norm": 0.21099092066287994, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3295 + }, + { + "epoch": 45.782874617737, + "grad_norm": 0.19109416007995605, + "learning_rate": 0.0006, + "loss": 3.62795352935791, + "step": 3296 + }, + { + "epoch": 45.796854521625164, + "grad_norm": 0.18424192070960999, + "learning_rate": 0.0006, + "loss": 3.6151700019836426, + "step": 3297 + }, + { + "epoch": 45.81083442551333, + "grad_norm": 0.20823849737644196, + "learning_rate": 0.0006, + "loss": 3.641907215118408, + "step": 3298 + }, + { + "epoch": 45.824814329401484, + "grad_norm": 0.21407285332679749, + "learning_rate": 0.0006, + "loss": 3.6430726051330566, + "step": 3299 + }, + { + "epoch": 45.83879423328965, + "grad_norm": 0.23493780195713043, + "learning_rate": 0.0006, + "loss": 3.610065460205078, + "step": 3300 + }, + { + "epoch": 45.8527741371778, + "grad_norm": 0.21910642087459564, + "learning_rate": 0.0006, + "loss": 3.630603313446045, + "step": 3301 + }, + { + "epoch": 45.86675404106597, + "grad_norm": 0.1838075965642929, + "learning_rate": 0.0006, + "loss": 3.634315013885498, + "step": 3302 + }, + { + "epoch": 45.88073394495413, + "grad_norm": 0.22131477296352386, + "learning_rate": 0.0006, + "loss": 3.6142020225524902, + "step": 3303 + }, + { + "epoch": 45.89471384884229, + "grad_norm": 0.2497209906578064, + "learning_rate": 0.0006, + "loss": 3.689103126525879, + "step": 3304 + }, + { + "epoch": 45.90869375273045, + "grad_norm": 0.24403175711631775, + "learning_rate": 0.0006, + "loss": 3.6321184635162354, + "step": 3305 + }, + { + "epoch": 45.92267365661861, + "grad_norm": 0.22527103126049042, + "learning_rate": 0.0006, + "loss": 3.6486921310424805, + "step": 3306 + }, + { + "epoch": 45.93665356050677, + "grad_norm": 0.20127955079078674, + "learning_rate": 0.0006, + "loss": 3.6109299659729004, + "step": 3307 + }, + { + "epoch": 45.95063346439493, + "grad_norm": 0.18997317552566528, + "learning_rate": 0.0006, + "loss": 3.6157617568969727, + "step": 3308 + }, + { + "epoch": 45.964613368283096, + "grad_norm": 0.19921870529651642, + "learning_rate": 0.0006, + "loss": 3.691776990890503, + "step": 3309 + }, + { + "epoch": 45.97859327217125, + "grad_norm": 0.2124646008014679, + "learning_rate": 0.0006, + "loss": 3.61795711517334, + "step": 3310 + }, + { + "epoch": 45.992573176059416, + "grad_norm": 0.20002500712871552, + "learning_rate": 0.0006, + "loss": 3.6266353130340576, + "step": 3311 + }, + { + "epoch": 46.0, + "grad_norm": 0.22992220520973206, + "learning_rate": 0.0006, + "loss": 3.647242784500122, + "step": 3312 + }, + { + "epoch": 46.0, + "eval_loss": 3.9855220317840576, + "eval_runtime": 44.9108, + "eval_samples_per_second": 54.374, + "eval_steps_per_second": 3.407, + "step": 3312 + }, + { + "epoch": 46.01397990388816, + "grad_norm": 0.1976146101951599, + "learning_rate": 0.0006, + "loss": 3.5675041675567627, + "step": 3313 + }, + { + "epoch": 46.02795980777632, + "grad_norm": 0.2238360494375229, + "learning_rate": 0.0006, + "loss": 3.6077466011047363, + "step": 3314 + }, + { + "epoch": 46.04193971166448, + "grad_norm": 0.288669228553772, + "learning_rate": 0.0006, + "loss": 3.589958667755127, + "step": 3315 + }, + { + "epoch": 46.05591961555265, + "grad_norm": 0.30626827478408813, + "learning_rate": 0.0006, + "loss": 3.604401111602783, + "step": 3316 + }, + { + "epoch": 46.0698995194408, + "grad_norm": 0.2721095681190491, + "learning_rate": 0.0006, + "loss": 3.620197296142578, + "step": 3317 + }, + { + "epoch": 46.083879423328966, + "grad_norm": 0.2152107059955597, + "learning_rate": 0.0006, + "loss": 3.607327938079834, + "step": 3318 + }, + { + "epoch": 46.09785932721712, + "grad_norm": 0.2205267995595932, + "learning_rate": 0.0006, + "loss": 3.6020898818969727, + "step": 3319 + }, + { + "epoch": 46.111839231105286, + "grad_norm": 0.25419551134109497, + "learning_rate": 0.0006, + "loss": 3.59277606010437, + "step": 3320 + }, + { + "epoch": 46.12581913499345, + "grad_norm": 0.2379811704158783, + "learning_rate": 0.0006, + "loss": 3.560422897338867, + "step": 3321 + }, + { + "epoch": 46.139799038881605, + "grad_norm": 0.20928747951984406, + "learning_rate": 0.0006, + "loss": 3.6373965740203857, + "step": 3322 + }, + { + "epoch": 46.15377894276977, + "grad_norm": 0.21654292941093445, + "learning_rate": 0.0006, + "loss": 3.620784282684326, + "step": 3323 + }, + { + "epoch": 46.16775884665793, + "grad_norm": 0.22994576394557953, + "learning_rate": 0.0006, + "loss": 3.589960813522339, + "step": 3324 + }, + { + "epoch": 46.18173875054609, + "grad_norm": 0.24989335238933563, + "learning_rate": 0.0006, + "loss": 3.599091053009033, + "step": 3325 + }, + { + "epoch": 46.19571865443425, + "grad_norm": 0.27068355679512024, + "learning_rate": 0.0006, + "loss": 3.5933146476745605, + "step": 3326 + }, + { + "epoch": 46.20969855832241, + "grad_norm": 0.2581503391265869, + "learning_rate": 0.0006, + "loss": 3.5935447216033936, + "step": 3327 + }, + { + "epoch": 46.22367846221057, + "grad_norm": 0.23368583619594574, + "learning_rate": 0.0006, + "loss": 3.6120412349700928, + "step": 3328 + }, + { + "epoch": 46.237658366098735, + "grad_norm": 0.21808452904224396, + "learning_rate": 0.0006, + "loss": 3.6155190467834473, + "step": 3329 + }, + { + "epoch": 46.25163826998689, + "grad_norm": 0.2152830809354782, + "learning_rate": 0.0006, + "loss": 3.6039974689483643, + "step": 3330 + }, + { + "epoch": 46.265618173875055, + "grad_norm": 0.20902983844280243, + "learning_rate": 0.0006, + "loss": 3.586416721343994, + "step": 3331 + }, + { + "epoch": 46.27959807776322, + "grad_norm": 0.21693682670593262, + "learning_rate": 0.0006, + "loss": 3.601595401763916, + "step": 3332 + }, + { + "epoch": 46.293577981651374, + "grad_norm": 0.21157346665859222, + "learning_rate": 0.0006, + "loss": 3.619825601577759, + "step": 3333 + }, + { + "epoch": 46.30755788553954, + "grad_norm": 0.19628529250621796, + "learning_rate": 0.0006, + "loss": 3.5845298767089844, + "step": 3334 + }, + { + "epoch": 46.3215377894277, + "grad_norm": 0.19599373638629913, + "learning_rate": 0.0006, + "loss": 3.614483594894409, + "step": 3335 + }, + { + "epoch": 46.33551769331586, + "grad_norm": 0.21777382493019104, + "learning_rate": 0.0006, + "loss": 3.5865678787231445, + "step": 3336 + }, + { + "epoch": 46.34949759720402, + "grad_norm": 0.24697323143482208, + "learning_rate": 0.0006, + "loss": 3.6168298721313477, + "step": 3337 + }, + { + "epoch": 46.36347750109218, + "grad_norm": 0.29521632194519043, + "learning_rate": 0.0006, + "loss": 3.627875804901123, + "step": 3338 + }, + { + "epoch": 46.37745740498034, + "grad_norm": 0.2548002004623413, + "learning_rate": 0.0006, + "loss": 3.6286001205444336, + "step": 3339 + }, + { + "epoch": 46.391437308868504, + "grad_norm": 0.20501002669334412, + "learning_rate": 0.0006, + "loss": 3.625035524368286, + "step": 3340 + }, + { + "epoch": 46.40541721275666, + "grad_norm": 0.21849584579467773, + "learning_rate": 0.0006, + "loss": 3.621872901916504, + "step": 3341 + }, + { + "epoch": 46.419397116644824, + "grad_norm": 0.22302033007144928, + "learning_rate": 0.0006, + "loss": 3.6088266372680664, + "step": 3342 + }, + { + "epoch": 46.43337702053299, + "grad_norm": 0.21138787269592285, + "learning_rate": 0.0006, + "loss": 3.6211094856262207, + "step": 3343 + }, + { + "epoch": 46.44735692442114, + "grad_norm": 0.22372713685035706, + "learning_rate": 0.0006, + "loss": 3.5799427032470703, + "step": 3344 + }, + { + "epoch": 46.46133682830931, + "grad_norm": 0.22019316256046295, + "learning_rate": 0.0006, + "loss": 3.616044044494629, + "step": 3345 + }, + { + "epoch": 46.47531673219746, + "grad_norm": 0.21947625279426575, + "learning_rate": 0.0006, + "loss": 3.613643169403076, + "step": 3346 + }, + { + "epoch": 46.489296636085626, + "grad_norm": 0.21935684978961945, + "learning_rate": 0.0006, + "loss": 3.6255440711975098, + "step": 3347 + }, + { + "epoch": 46.50327653997379, + "grad_norm": 0.20366479456424713, + "learning_rate": 0.0006, + "loss": 3.613892078399658, + "step": 3348 + }, + { + "epoch": 46.517256443861946, + "grad_norm": 0.21755267679691315, + "learning_rate": 0.0006, + "loss": 3.617886543273926, + "step": 3349 + }, + { + "epoch": 46.53123634775011, + "grad_norm": 0.20023910701274872, + "learning_rate": 0.0006, + "loss": 3.6172280311584473, + "step": 3350 + }, + { + "epoch": 46.54521625163827, + "grad_norm": 0.20375007390975952, + "learning_rate": 0.0006, + "loss": 3.595829486846924, + "step": 3351 + }, + { + "epoch": 46.55919615552643, + "grad_norm": 0.21125391125679016, + "learning_rate": 0.0006, + "loss": 3.632533550262451, + "step": 3352 + }, + { + "epoch": 46.57317605941459, + "grad_norm": 0.2359670102596283, + "learning_rate": 0.0006, + "loss": 3.597811222076416, + "step": 3353 + }, + { + "epoch": 46.58715596330275, + "grad_norm": 0.21696777641773224, + "learning_rate": 0.0006, + "loss": 3.627127170562744, + "step": 3354 + }, + { + "epoch": 46.60113586719091, + "grad_norm": 0.21501564979553223, + "learning_rate": 0.0006, + "loss": 3.630887985229492, + "step": 3355 + }, + { + "epoch": 46.615115771079076, + "grad_norm": 0.21446822583675385, + "learning_rate": 0.0006, + "loss": 3.6075234413146973, + "step": 3356 + }, + { + "epoch": 46.62909567496723, + "grad_norm": 0.21508967876434326, + "learning_rate": 0.0006, + "loss": 3.626603603363037, + "step": 3357 + }, + { + "epoch": 46.643075578855395, + "grad_norm": 0.19969215989112854, + "learning_rate": 0.0006, + "loss": 3.6160733699798584, + "step": 3358 + }, + { + "epoch": 46.65705548274356, + "grad_norm": 0.19982007145881653, + "learning_rate": 0.0006, + "loss": 3.632960319519043, + "step": 3359 + }, + { + "epoch": 46.671035386631715, + "grad_norm": 0.1981230527162552, + "learning_rate": 0.0006, + "loss": 3.608591079711914, + "step": 3360 + }, + { + "epoch": 46.68501529051988, + "grad_norm": 0.19948643445968628, + "learning_rate": 0.0006, + "loss": 3.6100947856903076, + "step": 3361 + }, + { + "epoch": 46.69899519440804, + "grad_norm": 0.18967196345329285, + "learning_rate": 0.0006, + "loss": 3.6203439235687256, + "step": 3362 + }, + { + "epoch": 46.7129750982962, + "grad_norm": 0.20035311579704285, + "learning_rate": 0.0006, + "loss": 3.64508056640625, + "step": 3363 + }, + { + "epoch": 46.72695500218436, + "grad_norm": 0.21049824357032776, + "learning_rate": 0.0006, + "loss": 3.620095729827881, + "step": 3364 + }, + { + "epoch": 46.74093490607252, + "grad_norm": 0.21411995589733124, + "learning_rate": 0.0006, + "loss": 3.650815963745117, + "step": 3365 + }, + { + "epoch": 46.75491480996068, + "grad_norm": 0.18666061758995056, + "learning_rate": 0.0006, + "loss": 3.625699758529663, + "step": 3366 + }, + { + "epoch": 46.768894713848844, + "grad_norm": 0.1927071362733841, + "learning_rate": 0.0006, + "loss": 3.6165151596069336, + "step": 3367 + }, + { + "epoch": 46.782874617737, + "grad_norm": 0.2063879817724228, + "learning_rate": 0.0006, + "loss": 3.6182332038879395, + "step": 3368 + }, + { + "epoch": 46.796854521625164, + "grad_norm": 0.19215327501296997, + "learning_rate": 0.0006, + "loss": 3.607239246368408, + "step": 3369 + }, + { + "epoch": 46.81083442551333, + "grad_norm": 0.2074592262506485, + "learning_rate": 0.0006, + "loss": 3.624856948852539, + "step": 3370 + }, + { + "epoch": 46.824814329401484, + "grad_norm": 0.2184106856584549, + "learning_rate": 0.0006, + "loss": 3.628757953643799, + "step": 3371 + }, + { + "epoch": 46.83879423328965, + "grad_norm": 0.2203136682510376, + "learning_rate": 0.0006, + "loss": 3.625958204269409, + "step": 3372 + }, + { + "epoch": 46.8527741371778, + "grad_norm": 0.21920061111450195, + "learning_rate": 0.0006, + "loss": 3.6060733795166016, + "step": 3373 + }, + { + "epoch": 46.86675404106597, + "grad_norm": 0.2122412472963333, + "learning_rate": 0.0006, + "loss": 3.6126952171325684, + "step": 3374 + }, + { + "epoch": 46.88073394495413, + "grad_norm": 0.1971784383058548, + "learning_rate": 0.0006, + "loss": 3.637129783630371, + "step": 3375 + }, + { + "epoch": 46.89471384884229, + "grad_norm": 0.20824873447418213, + "learning_rate": 0.0006, + "loss": 3.62868070602417, + "step": 3376 + }, + { + "epoch": 46.90869375273045, + "grad_norm": 0.20157678425312042, + "learning_rate": 0.0006, + "loss": 3.6321873664855957, + "step": 3377 + }, + { + "epoch": 46.92267365661861, + "grad_norm": 0.1958925426006317, + "learning_rate": 0.0006, + "loss": 3.6513354778289795, + "step": 3378 + }, + { + "epoch": 46.93665356050677, + "grad_norm": 0.1969553828239441, + "learning_rate": 0.0006, + "loss": 3.6346323490142822, + "step": 3379 + }, + { + "epoch": 46.95063346439493, + "grad_norm": 0.19311924278736115, + "learning_rate": 0.0006, + "loss": 3.6673245429992676, + "step": 3380 + }, + { + "epoch": 46.964613368283096, + "grad_norm": 0.20341862738132477, + "learning_rate": 0.0006, + "loss": 3.680025339126587, + "step": 3381 + }, + { + "epoch": 46.97859327217125, + "grad_norm": 0.20667442679405212, + "learning_rate": 0.0006, + "loss": 3.632290840148926, + "step": 3382 + }, + { + "epoch": 46.992573176059416, + "grad_norm": 0.19141609966754913, + "learning_rate": 0.0006, + "loss": 3.659360647201538, + "step": 3383 + }, + { + "epoch": 47.0, + "grad_norm": 0.20981188118457794, + "learning_rate": 0.0006, + "loss": 3.653548240661621, + "step": 3384 + }, + { + "epoch": 47.0, + "eval_loss": 3.9833984375, + "eval_runtime": 44.4693, + "eval_samples_per_second": 54.914, + "eval_steps_per_second": 3.441, + "step": 3384 + }, + { + "epoch": 47.01397990388816, + "grad_norm": 0.1958128660917282, + "learning_rate": 0.0006, + "loss": 3.5778727531433105, + "step": 3385 + }, + { + "epoch": 47.02795980777632, + "grad_norm": 0.19728390872478485, + "learning_rate": 0.0006, + "loss": 3.5827393531799316, + "step": 3386 + }, + { + "epoch": 47.04193971166448, + "grad_norm": 0.18564026057720184, + "learning_rate": 0.0006, + "loss": 3.573071002960205, + "step": 3387 + }, + { + "epoch": 47.05591961555265, + "grad_norm": 0.20563258230686188, + "learning_rate": 0.0006, + "loss": 3.564330577850342, + "step": 3388 + }, + { + "epoch": 47.0698995194408, + "grad_norm": 0.21382158994674683, + "learning_rate": 0.0006, + "loss": 3.5976946353912354, + "step": 3389 + }, + { + "epoch": 47.083879423328966, + "grad_norm": 0.2383693903684616, + "learning_rate": 0.0006, + "loss": 3.5970897674560547, + "step": 3390 + }, + { + "epoch": 47.09785932721712, + "grad_norm": 0.24709449708461761, + "learning_rate": 0.0006, + "loss": 3.613409996032715, + "step": 3391 + }, + { + "epoch": 47.111839231105286, + "grad_norm": 0.2329784333705902, + "learning_rate": 0.0006, + "loss": 3.571023464202881, + "step": 3392 + }, + { + "epoch": 47.12581913499345, + "grad_norm": 0.2096954584121704, + "learning_rate": 0.0006, + "loss": 3.573697090148926, + "step": 3393 + }, + { + "epoch": 47.139799038881605, + "grad_norm": 0.21630050241947174, + "learning_rate": 0.0006, + "loss": 3.6085095405578613, + "step": 3394 + }, + { + "epoch": 47.15377894276977, + "grad_norm": 0.22828878462314606, + "learning_rate": 0.0006, + "loss": 3.605466842651367, + "step": 3395 + }, + { + "epoch": 47.16775884665793, + "grad_norm": 0.24957625567913055, + "learning_rate": 0.0006, + "loss": 3.588324546813965, + "step": 3396 + }, + { + "epoch": 47.18173875054609, + "grad_norm": 0.25446194410324097, + "learning_rate": 0.0006, + "loss": 3.6161458492279053, + "step": 3397 + }, + { + "epoch": 47.19571865443425, + "grad_norm": 0.24938438832759857, + "learning_rate": 0.0006, + "loss": 3.6017847061157227, + "step": 3398 + }, + { + "epoch": 47.20969855832241, + "grad_norm": 0.23318032920360565, + "learning_rate": 0.0006, + "loss": 3.6077046394348145, + "step": 3399 + }, + { + "epoch": 47.22367846221057, + "grad_norm": 0.2179042547941208, + "learning_rate": 0.0006, + "loss": 3.598104953765869, + "step": 3400 + }, + { + "epoch": 47.237658366098735, + "grad_norm": 0.213354229927063, + "learning_rate": 0.0006, + "loss": 3.6328814029693604, + "step": 3401 + }, + { + "epoch": 47.25163826998689, + "grad_norm": 0.23104089498519897, + "learning_rate": 0.0006, + "loss": 3.6161890029907227, + "step": 3402 + }, + { + "epoch": 47.265618173875055, + "grad_norm": 0.22219021618366241, + "learning_rate": 0.0006, + "loss": 3.620314121246338, + "step": 3403 + }, + { + "epoch": 47.27959807776322, + "grad_norm": 0.21618683636188507, + "learning_rate": 0.0006, + "loss": 3.5955371856689453, + "step": 3404 + }, + { + "epoch": 47.293577981651374, + "grad_norm": 0.22280243039131165, + "learning_rate": 0.0006, + "loss": 3.618302345275879, + "step": 3405 + }, + { + "epoch": 47.30755788553954, + "grad_norm": 0.2268427014350891, + "learning_rate": 0.0006, + "loss": 3.6035101413726807, + "step": 3406 + }, + { + "epoch": 47.3215377894277, + "grad_norm": 0.20324429869651794, + "learning_rate": 0.0006, + "loss": 3.612598419189453, + "step": 3407 + }, + { + "epoch": 47.33551769331586, + "grad_norm": 0.19353045523166656, + "learning_rate": 0.0006, + "loss": 3.5951499938964844, + "step": 3408 + }, + { + "epoch": 47.34949759720402, + "grad_norm": 0.19008080661296844, + "learning_rate": 0.0006, + "loss": 3.6177732944488525, + "step": 3409 + }, + { + "epoch": 47.36347750109218, + "grad_norm": 0.19530250132083893, + "learning_rate": 0.0006, + "loss": 3.597903251647949, + "step": 3410 + }, + { + "epoch": 47.37745740498034, + "grad_norm": 0.2083505541086197, + "learning_rate": 0.0006, + "loss": 3.6062350273132324, + "step": 3411 + }, + { + "epoch": 47.391437308868504, + "grad_norm": 0.2241518199443817, + "learning_rate": 0.0006, + "loss": 3.6084704399108887, + "step": 3412 + }, + { + "epoch": 47.40541721275666, + "grad_norm": 0.25763124227523804, + "learning_rate": 0.0006, + "loss": 3.600295066833496, + "step": 3413 + }, + { + "epoch": 47.419397116644824, + "grad_norm": 0.2689114212989807, + "learning_rate": 0.0006, + "loss": 3.648848533630371, + "step": 3414 + }, + { + "epoch": 47.43337702053299, + "grad_norm": 0.30106639862060547, + "learning_rate": 0.0006, + "loss": 3.6248483657836914, + "step": 3415 + }, + { + "epoch": 47.44735692442114, + "grad_norm": 0.31840384006500244, + "learning_rate": 0.0006, + "loss": 3.6256890296936035, + "step": 3416 + }, + { + "epoch": 47.46133682830931, + "grad_norm": 0.2603468894958496, + "learning_rate": 0.0006, + "loss": 3.6225175857543945, + "step": 3417 + }, + { + "epoch": 47.47531673219746, + "grad_norm": 0.33408305048942566, + "learning_rate": 0.0006, + "loss": 3.590303897857666, + "step": 3418 + }, + { + "epoch": 47.489296636085626, + "grad_norm": 0.3677918612957001, + "learning_rate": 0.0006, + "loss": 3.6005120277404785, + "step": 3419 + }, + { + "epoch": 47.50327653997379, + "grad_norm": 0.23077215254306793, + "learning_rate": 0.0006, + "loss": 3.6093883514404297, + "step": 3420 + }, + { + "epoch": 47.517256443861946, + "grad_norm": 0.27272120118141174, + "learning_rate": 0.0006, + "loss": 3.580151081085205, + "step": 3421 + }, + { + "epoch": 47.53123634775011, + "grad_norm": 0.22629371285438538, + "learning_rate": 0.0006, + "loss": 3.6375746726989746, + "step": 3422 + }, + { + "epoch": 47.54521625163827, + "grad_norm": 0.2376468926668167, + "learning_rate": 0.0006, + "loss": 3.6492481231689453, + "step": 3423 + }, + { + "epoch": 47.55919615552643, + "grad_norm": 0.21200433373451233, + "learning_rate": 0.0006, + "loss": 3.6258158683776855, + "step": 3424 + }, + { + "epoch": 47.57317605941459, + "grad_norm": 0.2246236652135849, + "learning_rate": 0.0006, + "loss": 3.6199564933776855, + "step": 3425 + }, + { + "epoch": 47.58715596330275, + "grad_norm": 0.21713437139987946, + "learning_rate": 0.0006, + "loss": 3.638197898864746, + "step": 3426 + }, + { + "epoch": 47.60113586719091, + "grad_norm": 0.1964627057313919, + "learning_rate": 0.0006, + "loss": 3.6334147453308105, + "step": 3427 + }, + { + "epoch": 47.615115771079076, + "grad_norm": 0.21705810725688934, + "learning_rate": 0.0006, + "loss": 3.6298668384552, + "step": 3428 + }, + { + "epoch": 47.62909567496723, + "grad_norm": 0.20376256108283997, + "learning_rate": 0.0006, + "loss": 3.6127166748046875, + "step": 3429 + }, + { + "epoch": 47.643075578855395, + "grad_norm": 0.20046672224998474, + "learning_rate": 0.0006, + "loss": 3.633683681488037, + "step": 3430 + }, + { + "epoch": 47.65705548274356, + "grad_norm": 0.21494409441947937, + "learning_rate": 0.0006, + "loss": 3.635828971862793, + "step": 3431 + }, + { + "epoch": 47.671035386631715, + "grad_norm": 0.24550487101078033, + "learning_rate": 0.0006, + "loss": 3.6056854724884033, + "step": 3432 + }, + { + "epoch": 47.68501529051988, + "grad_norm": 0.24416600167751312, + "learning_rate": 0.0006, + "loss": 3.618785858154297, + "step": 3433 + }, + { + "epoch": 47.69899519440804, + "grad_norm": 0.22872993350028992, + "learning_rate": 0.0006, + "loss": 3.6189026832580566, + "step": 3434 + }, + { + "epoch": 47.7129750982962, + "grad_norm": 0.23609530925750732, + "learning_rate": 0.0006, + "loss": 3.623661518096924, + "step": 3435 + }, + { + "epoch": 47.72695500218436, + "grad_norm": 0.22905564308166504, + "learning_rate": 0.0006, + "loss": 3.6155691146850586, + "step": 3436 + }, + { + "epoch": 47.74093490607252, + "grad_norm": 0.25507304072380066, + "learning_rate": 0.0006, + "loss": 3.5848331451416016, + "step": 3437 + }, + { + "epoch": 47.75491480996068, + "grad_norm": 0.24594344198703766, + "learning_rate": 0.0006, + "loss": 3.588374614715576, + "step": 3438 + }, + { + "epoch": 47.768894713848844, + "grad_norm": 0.23131750524044037, + "learning_rate": 0.0006, + "loss": 3.6164474487304688, + "step": 3439 + }, + { + "epoch": 47.782874617737, + "grad_norm": 0.21967829763889313, + "learning_rate": 0.0006, + "loss": 3.619150161743164, + "step": 3440 + }, + { + "epoch": 47.796854521625164, + "grad_norm": 0.226309135556221, + "learning_rate": 0.0006, + "loss": 3.5946340560913086, + "step": 3441 + }, + { + "epoch": 47.81083442551333, + "grad_norm": 0.23141087591648102, + "learning_rate": 0.0006, + "loss": 3.614711046218872, + "step": 3442 + }, + { + "epoch": 47.824814329401484, + "grad_norm": 0.20917707681655884, + "learning_rate": 0.0006, + "loss": 3.610058307647705, + "step": 3443 + }, + { + "epoch": 47.83879423328965, + "grad_norm": 0.22864583134651184, + "learning_rate": 0.0006, + "loss": 3.6396052837371826, + "step": 3444 + }, + { + "epoch": 47.8527741371778, + "grad_norm": 0.22201144695281982, + "learning_rate": 0.0006, + "loss": 3.6462526321411133, + "step": 3445 + }, + { + "epoch": 47.86675404106597, + "grad_norm": 0.21199125051498413, + "learning_rate": 0.0006, + "loss": 3.6090314388275146, + "step": 3446 + }, + { + "epoch": 47.88073394495413, + "grad_norm": 0.2236194908618927, + "learning_rate": 0.0006, + "loss": 3.6308231353759766, + "step": 3447 + }, + { + "epoch": 47.89471384884229, + "grad_norm": 0.21571075916290283, + "learning_rate": 0.0006, + "loss": 3.5899293422698975, + "step": 3448 + }, + { + "epoch": 47.90869375273045, + "grad_norm": 0.2320997267961502, + "learning_rate": 0.0006, + "loss": 3.6360764503479004, + "step": 3449 + }, + { + "epoch": 47.92267365661861, + "grad_norm": 0.2304147630929947, + "learning_rate": 0.0006, + "loss": 3.61220121383667, + "step": 3450 + }, + { + "epoch": 47.93665356050677, + "grad_norm": 0.2321154624223709, + "learning_rate": 0.0006, + "loss": 3.6104419231414795, + "step": 3451 + }, + { + "epoch": 47.95063346439493, + "grad_norm": 0.20895935595035553, + "learning_rate": 0.0006, + "loss": 3.6372952461242676, + "step": 3452 + }, + { + "epoch": 47.964613368283096, + "grad_norm": 0.19926418364048004, + "learning_rate": 0.0006, + "loss": 3.652947425842285, + "step": 3453 + }, + { + "epoch": 47.97859327217125, + "grad_norm": 0.22443149983882904, + "learning_rate": 0.0006, + "loss": 3.6005635261535645, + "step": 3454 + }, + { + "epoch": 47.992573176059416, + "grad_norm": 0.2361244559288025, + "learning_rate": 0.0006, + "loss": 3.626563549041748, + "step": 3455 + }, + { + "epoch": 48.0, + "grad_norm": 0.2542579174041748, + "learning_rate": 0.0006, + "loss": 3.619098663330078, + "step": 3456 + }, + { + "epoch": 48.0, + "eval_loss": 3.9787564277648926, + "eval_runtime": 44.3429, + "eval_samples_per_second": 55.071, + "eval_steps_per_second": 3.45, + "step": 3456 + }, + { + "epoch": 48.01397990388816, + "grad_norm": 0.21771088242530823, + "learning_rate": 0.0006, + "loss": 3.538780927658081, + "step": 3457 + }, + { + "epoch": 48.02795980777632, + "grad_norm": 0.23467740416526794, + "learning_rate": 0.0006, + "loss": 3.5875978469848633, + "step": 3458 + }, + { + "epoch": 48.04193971166448, + "grad_norm": 0.2527692914009094, + "learning_rate": 0.0006, + "loss": 3.5939159393310547, + "step": 3459 + }, + { + "epoch": 48.05591961555265, + "grad_norm": 0.21477685868740082, + "learning_rate": 0.0006, + "loss": 3.600374698638916, + "step": 3460 + }, + { + "epoch": 48.0698995194408, + "grad_norm": 0.22008976340293884, + "learning_rate": 0.0006, + "loss": 3.6058406829833984, + "step": 3461 + }, + { + "epoch": 48.083879423328966, + "grad_norm": 0.23344817757606506, + "learning_rate": 0.0006, + "loss": 3.5864410400390625, + "step": 3462 + }, + { + "epoch": 48.09785932721712, + "grad_norm": 0.24451610445976257, + "learning_rate": 0.0006, + "loss": 3.5827221870422363, + "step": 3463 + }, + { + "epoch": 48.111839231105286, + "grad_norm": 0.24536925554275513, + "learning_rate": 0.0006, + "loss": 3.566275119781494, + "step": 3464 + }, + { + "epoch": 48.12581913499345, + "grad_norm": 0.24060940742492676, + "learning_rate": 0.0006, + "loss": 3.575841188430786, + "step": 3465 + }, + { + "epoch": 48.139799038881605, + "grad_norm": 0.24829573929309845, + "learning_rate": 0.0006, + "loss": 3.6215152740478516, + "step": 3466 + }, + { + "epoch": 48.15377894276977, + "grad_norm": 0.2651045024394989, + "learning_rate": 0.0006, + "loss": 3.604381561279297, + "step": 3467 + }, + { + "epoch": 48.16775884665793, + "grad_norm": 0.2654518187046051, + "learning_rate": 0.0006, + "loss": 3.5989198684692383, + "step": 3468 + }, + { + "epoch": 48.18173875054609, + "grad_norm": 0.25179797410964966, + "learning_rate": 0.0006, + "loss": 3.596402168273926, + "step": 3469 + }, + { + "epoch": 48.19571865443425, + "grad_norm": 0.24018050730228424, + "learning_rate": 0.0006, + "loss": 3.6376051902770996, + "step": 3470 + }, + { + "epoch": 48.20969855832241, + "grad_norm": 0.22079682350158691, + "learning_rate": 0.0006, + "loss": 3.5990993976593018, + "step": 3471 + }, + { + "epoch": 48.22367846221057, + "grad_norm": 0.23267143964767456, + "learning_rate": 0.0006, + "loss": 3.614759683609009, + "step": 3472 + }, + { + "epoch": 48.237658366098735, + "grad_norm": 0.21822260320186615, + "learning_rate": 0.0006, + "loss": 3.6057262420654297, + "step": 3473 + }, + { + "epoch": 48.25163826998689, + "grad_norm": 0.23391997814178467, + "learning_rate": 0.0006, + "loss": 3.581972599029541, + "step": 3474 + }, + { + "epoch": 48.265618173875055, + "grad_norm": 0.22634121775627136, + "learning_rate": 0.0006, + "loss": 3.592149496078491, + "step": 3475 + }, + { + "epoch": 48.27959807776322, + "grad_norm": 0.2142419070005417, + "learning_rate": 0.0006, + "loss": 3.616722583770752, + "step": 3476 + }, + { + "epoch": 48.293577981651374, + "grad_norm": 0.227144256234169, + "learning_rate": 0.0006, + "loss": 3.6018447875976562, + "step": 3477 + }, + { + "epoch": 48.30755788553954, + "grad_norm": 0.25466978549957275, + "learning_rate": 0.0006, + "loss": 3.5795769691467285, + "step": 3478 + }, + { + "epoch": 48.3215377894277, + "grad_norm": 0.2409234344959259, + "learning_rate": 0.0006, + "loss": 3.5845530033111572, + "step": 3479 + }, + { + "epoch": 48.33551769331586, + "grad_norm": 0.22001305222511292, + "learning_rate": 0.0006, + "loss": 3.5861806869506836, + "step": 3480 + }, + { + "epoch": 48.34949759720402, + "grad_norm": 0.24980100989341736, + "learning_rate": 0.0006, + "loss": 3.6032233238220215, + "step": 3481 + }, + { + "epoch": 48.36347750109218, + "grad_norm": 0.28788816928863525, + "learning_rate": 0.0006, + "loss": 3.5876364707946777, + "step": 3482 + }, + { + "epoch": 48.37745740498034, + "grad_norm": 0.26172295212745667, + "learning_rate": 0.0006, + "loss": 3.5711276531219482, + "step": 3483 + }, + { + "epoch": 48.391437308868504, + "grad_norm": 0.23881542682647705, + "learning_rate": 0.0006, + "loss": 3.57108473777771, + "step": 3484 + }, + { + "epoch": 48.40541721275666, + "grad_norm": 0.22385981678962708, + "learning_rate": 0.0006, + "loss": 3.6197509765625, + "step": 3485 + }, + { + "epoch": 48.419397116644824, + "grad_norm": 0.21007859706878662, + "learning_rate": 0.0006, + "loss": 3.609449625015259, + "step": 3486 + }, + { + "epoch": 48.43337702053299, + "grad_norm": 0.21170279383659363, + "learning_rate": 0.0006, + "loss": 3.5981619358062744, + "step": 3487 + }, + { + "epoch": 48.44735692442114, + "grad_norm": 0.2100721150636673, + "learning_rate": 0.0006, + "loss": 3.606505870819092, + "step": 3488 + }, + { + "epoch": 48.46133682830931, + "grad_norm": 0.20408287644386292, + "learning_rate": 0.0006, + "loss": 3.6033859252929688, + "step": 3489 + }, + { + "epoch": 48.47531673219746, + "grad_norm": 0.20343686640262604, + "learning_rate": 0.0006, + "loss": 3.6249616146087646, + "step": 3490 + }, + { + "epoch": 48.489296636085626, + "grad_norm": 0.20570123195648193, + "learning_rate": 0.0006, + "loss": 3.5700693130493164, + "step": 3491 + }, + { + "epoch": 48.50327653997379, + "grad_norm": 0.2511707544326782, + "learning_rate": 0.0006, + "loss": 3.6432406902313232, + "step": 3492 + }, + { + "epoch": 48.517256443861946, + "grad_norm": 0.265960693359375, + "learning_rate": 0.0006, + "loss": 3.6329426765441895, + "step": 3493 + }, + { + "epoch": 48.53123634775011, + "grad_norm": 0.25830161571502686, + "learning_rate": 0.0006, + "loss": 3.593940258026123, + "step": 3494 + }, + { + "epoch": 48.54521625163827, + "grad_norm": 0.2232893705368042, + "learning_rate": 0.0006, + "loss": 3.623812198638916, + "step": 3495 + }, + { + "epoch": 48.55919615552643, + "grad_norm": 0.20818902552127838, + "learning_rate": 0.0006, + "loss": 3.5982813835144043, + "step": 3496 + }, + { + "epoch": 48.57317605941459, + "grad_norm": 0.2756865918636322, + "learning_rate": 0.0006, + "loss": 3.617436170578003, + "step": 3497 + }, + { + "epoch": 48.58715596330275, + "grad_norm": 0.2361520677804947, + "learning_rate": 0.0006, + "loss": 3.598113536834717, + "step": 3498 + }, + { + "epoch": 48.60113586719091, + "grad_norm": 0.1956835240125656, + "learning_rate": 0.0006, + "loss": 3.581003189086914, + "step": 3499 + }, + { + "epoch": 48.615115771079076, + "grad_norm": 0.2863931953907013, + "learning_rate": 0.0006, + "loss": 3.596768379211426, + "step": 3500 + }, + { + "epoch": 48.62909567496723, + "grad_norm": 0.29865020513534546, + "learning_rate": 0.0006, + "loss": 3.576995372772217, + "step": 3501 + }, + { + "epoch": 48.643075578855395, + "grad_norm": 0.23084872961044312, + "learning_rate": 0.0006, + "loss": 3.6431074142456055, + "step": 3502 + }, + { + "epoch": 48.65705548274356, + "grad_norm": 0.2081640362739563, + "learning_rate": 0.0006, + "loss": 3.6002132892608643, + "step": 3503 + }, + { + "epoch": 48.671035386631715, + "grad_norm": 0.20566335320472717, + "learning_rate": 0.0006, + "loss": 3.62365460395813, + "step": 3504 + }, + { + "epoch": 48.68501529051988, + "grad_norm": 0.2066725790500641, + "learning_rate": 0.0006, + "loss": 3.6063363552093506, + "step": 3505 + }, + { + "epoch": 48.69899519440804, + "grad_norm": 0.19830003380775452, + "learning_rate": 0.0006, + "loss": 3.617750883102417, + "step": 3506 + }, + { + "epoch": 48.7129750982962, + "grad_norm": 0.20409031212329865, + "learning_rate": 0.0006, + "loss": 3.6110005378723145, + "step": 3507 + }, + { + "epoch": 48.72695500218436, + "grad_norm": 0.20836064219474792, + "learning_rate": 0.0006, + "loss": 3.6148147583007812, + "step": 3508 + }, + { + "epoch": 48.74093490607252, + "grad_norm": 0.21660791337490082, + "learning_rate": 0.0006, + "loss": 3.641488790512085, + "step": 3509 + }, + { + "epoch": 48.75491480996068, + "grad_norm": 0.21075023710727692, + "learning_rate": 0.0006, + "loss": 3.6327688694000244, + "step": 3510 + }, + { + "epoch": 48.768894713848844, + "grad_norm": 0.19346074759960175, + "learning_rate": 0.0006, + "loss": 3.6025185585021973, + "step": 3511 + }, + { + "epoch": 48.782874617737, + "grad_norm": 0.20215240120887756, + "learning_rate": 0.0006, + "loss": 3.595707416534424, + "step": 3512 + }, + { + "epoch": 48.796854521625164, + "grad_norm": 0.1913122832775116, + "learning_rate": 0.0006, + "loss": 3.618406295776367, + "step": 3513 + }, + { + "epoch": 48.81083442551333, + "grad_norm": 0.18517033755779266, + "learning_rate": 0.0006, + "loss": 3.6212055683135986, + "step": 3514 + }, + { + "epoch": 48.824814329401484, + "grad_norm": 0.20453064143657684, + "learning_rate": 0.0006, + "loss": 3.5941221714019775, + "step": 3515 + }, + { + "epoch": 48.83879423328965, + "grad_norm": 0.20777031779289246, + "learning_rate": 0.0006, + "loss": 3.630701780319214, + "step": 3516 + }, + { + "epoch": 48.8527741371778, + "grad_norm": 0.23713789880275726, + "learning_rate": 0.0006, + "loss": 3.629256248474121, + "step": 3517 + }, + { + "epoch": 48.86675404106597, + "grad_norm": 0.1945258378982544, + "learning_rate": 0.0006, + "loss": 3.607020854949951, + "step": 3518 + }, + { + "epoch": 48.88073394495413, + "grad_norm": 0.19601863622665405, + "learning_rate": 0.0006, + "loss": 3.6200907230377197, + "step": 3519 + }, + { + "epoch": 48.89471384884229, + "grad_norm": 0.20068836212158203, + "learning_rate": 0.0006, + "loss": 3.58575701713562, + "step": 3520 + }, + { + "epoch": 48.90869375273045, + "grad_norm": 0.21790200471878052, + "learning_rate": 0.0006, + "loss": 3.6451416015625, + "step": 3521 + }, + { + "epoch": 48.92267365661861, + "grad_norm": 0.22265756130218506, + "learning_rate": 0.0006, + "loss": 3.621331214904785, + "step": 3522 + }, + { + "epoch": 48.93665356050677, + "grad_norm": 0.20316730439662933, + "learning_rate": 0.0006, + "loss": 3.614537239074707, + "step": 3523 + }, + { + "epoch": 48.95063346439493, + "grad_norm": 0.20275238156318665, + "learning_rate": 0.0006, + "loss": 3.5913281440734863, + "step": 3524 + }, + { + "epoch": 48.964613368283096, + "grad_norm": 0.20239883661270142, + "learning_rate": 0.0006, + "loss": 3.608638286590576, + "step": 3525 + }, + { + "epoch": 48.97859327217125, + "grad_norm": 0.21154041588306427, + "learning_rate": 0.0006, + "loss": 3.6233115196228027, + "step": 3526 + }, + { + "epoch": 48.992573176059416, + "grad_norm": 0.22368352115154266, + "learning_rate": 0.0006, + "loss": 3.599665880203247, + "step": 3527 + }, + { + "epoch": 49.0, + "grad_norm": 0.2675703763961792, + "learning_rate": 0.0006, + "loss": 3.637458086013794, + "step": 3528 + }, + { + "epoch": 49.0, + "eval_loss": 3.985574245452881, + "eval_runtime": 44.55, + "eval_samples_per_second": 54.815, + "eval_steps_per_second": 3.434, + "step": 3528 + }, + { + "epoch": 49.01397990388816, + "grad_norm": 0.2911863625049591, + "learning_rate": 0.0006, + "loss": 3.606170654296875, + "step": 3529 + }, + { + "epoch": 49.02795980777632, + "grad_norm": 0.26640036702156067, + "learning_rate": 0.0006, + "loss": 3.5662899017333984, + "step": 3530 + }, + { + "epoch": 49.04193971166448, + "grad_norm": 0.23250512778759003, + "learning_rate": 0.0006, + "loss": 3.5928688049316406, + "step": 3531 + }, + { + "epoch": 49.05591961555265, + "grad_norm": 0.2603093385696411, + "learning_rate": 0.0006, + "loss": 3.5702433586120605, + "step": 3532 + }, + { + "epoch": 49.0698995194408, + "grad_norm": 0.2711663246154785, + "learning_rate": 0.0006, + "loss": 3.591977596282959, + "step": 3533 + }, + { + "epoch": 49.083879423328966, + "grad_norm": 0.2536148130893707, + "learning_rate": 0.0006, + "loss": 3.5924272537231445, + "step": 3534 + }, + { + "epoch": 49.09785932721712, + "grad_norm": 0.22995208203792572, + "learning_rate": 0.0006, + "loss": 3.5760092735290527, + "step": 3535 + }, + { + "epoch": 49.111839231105286, + "grad_norm": 0.22327162325382233, + "learning_rate": 0.0006, + "loss": 3.6072137355804443, + "step": 3536 + }, + { + "epoch": 49.12581913499345, + "grad_norm": 0.2256365567445755, + "learning_rate": 0.0006, + "loss": 3.6156117916107178, + "step": 3537 + }, + { + "epoch": 49.139799038881605, + "grad_norm": 0.23647814989089966, + "learning_rate": 0.0006, + "loss": 3.5862512588500977, + "step": 3538 + }, + { + "epoch": 49.15377894276977, + "grad_norm": 0.23442648351192474, + "learning_rate": 0.0006, + "loss": 3.606386184692383, + "step": 3539 + }, + { + "epoch": 49.16775884665793, + "grad_norm": 0.22148385643959045, + "learning_rate": 0.0006, + "loss": 3.5564064979553223, + "step": 3540 + }, + { + "epoch": 49.18173875054609, + "grad_norm": 0.24589644372463226, + "learning_rate": 0.0006, + "loss": 3.5625576972961426, + "step": 3541 + }, + { + "epoch": 49.19571865443425, + "grad_norm": 0.23955261707305908, + "learning_rate": 0.0006, + "loss": 3.617833137512207, + "step": 3542 + }, + { + "epoch": 49.20969855832241, + "grad_norm": 0.2781425416469574, + "learning_rate": 0.0006, + "loss": 3.6153502464294434, + "step": 3543 + }, + { + "epoch": 49.22367846221057, + "grad_norm": 0.2622034549713135, + "learning_rate": 0.0006, + "loss": 3.608530044555664, + "step": 3544 + }, + { + "epoch": 49.237658366098735, + "grad_norm": 0.28407761454582214, + "learning_rate": 0.0006, + "loss": 3.572207450866699, + "step": 3545 + }, + { + "epoch": 49.25163826998689, + "grad_norm": 0.2722281217575073, + "learning_rate": 0.0006, + "loss": 3.591392755508423, + "step": 3546 + }, + { + "epoch": 49.265618173875055, + "grad_norm": 0.20608903467655182, + "learning_rate": 0.0006, + "loss": 3.598421573638916, + "step": 3547 + }, + { + "epoch": 49.27959807776322, + "grad_norm": 0.27233049273490906, + "learning_rate": 0.0006, + "loss": 3.5819201469421387, + "step": 3548 + }, + { + "epoch": 49.293577981651374, + "grad_norm": 0.26182129979133606, + "learning_rate": 0.0006, + "loss": 3.5855109691619873, + "step": 3549 + }, + { + "epoch": 49.30755788553954, + "grad_norm": 0.20255911350250244, + "learning_rate": 0.0006, + "loss": 3.569438934326172, + "step": 3550 + }, + { + "epoch": 49.3215377894277, + "grad_norm": 0.20045310258865356, + "learning_rate": 0.0006, + "loss": 3.5888795852661133, + "step": 3551 + }, + { + "epoch": 49.33551769331586, + "grad_norm": 0.18505392968654633, + "learning_rate": 0.0006, + "loss": 3.565467596054077, + "step": 3552 + }, + { + "epoch": 49.34949759720402, + "grad_norm": 0.2057398110628128, + "learning_rate": 0.0006, + "loss": 3.5850436687469482, + "step": 3553 + }, + { + "epoch": 49.36347750109218, + "grad_norm": 0.20007790625095367, + "learning_rate": 0.0006, + "loss": 3.5963945388793945, + "step": 3554 + }, + { + "epoch": 49.37745740498034, + "grad_norm": 0.179341122508049, + "learning_rate": 0.0006, + "loss": 3.5747077465057373, + "step": 3555 + }, + { + "epoch": 49.391437308868504, + "grad_norm": 0.1978122442960739, + "learning_rate": 0.0006, + "loss": 3.605037212371826, + "step": 3556 + }, + { + "epoch": 49.40541721275666, + "grad_norm": 0.1936761885881424, + "learning_rate": 0.0006, + "loss": 3.6293420791625977, + "step": 3557 + }, + { + "epoch": 49.419397116644824, + "grad_norm": 0.20393748581409454, + "learning_rate": 0.0006, + "loss": 3.5616302490234375, + "step": 3558 + }, + { + "epoch": 49.43337702053299, + "grad_norm": 0.19082997739315033, + "learning_rate": 0.0006, + "loss": 3.605088472366333, + "step": 3559 + }, + { + "epoch": 49.44735692442114, + "grad_norm": 0.19642551243305206, + "learning_rate": 0.0006, + "loss": 3.610870361328125, + "step": 3560 + }, + { + "epoch": 49.46133682830931, + "grad_norm": 0.21815423667430878, + "learning_rate": 0.0006, + "loss": 3.60211181640625, + "step": 3561 + }, + { + "epoch": 49.47531673219746, + "grad_norm": 0.20342762768268585, + "learning_rate": 0.0006, + "loss": 3.597529411315918, + "step": 3562 + }, + { + "epoch": 49.489296636085626, + "grad_norm": 0.19032546877861023, + "learning_rate": 0.0006, + "loss": 3.5728795528411865, + "step": 3563 + }, + { + "epoch": 49.50327653997379, + "grad_norm": 0.18237556517124176, + "learning_rate": 0.0006, + "loss": 3.5983595848083496, + "step": 3564 + }, + { + "epoch": 49.517256443861946, + "grad_norm": 0.20585589110851288, + "learning_rate": 0.0006, + "loss": 3.578320264816284, + "step": 3565 + }, + { + "epoch": 49.53123634775011, + "grad_norm": 0.20158857107162476, + "learning_rate": 0.0006, + "loss": 3.5918798446655273, + "step": 3566 + }, + { + "epoch": 49.54521625163827, + "grad_norm": 0.20195038616657257, + "learning_rate": 0.0006, + "loss": 3.605422258377075, + "step": 3567 + }, + { + "epoch": 49.55919615552643, + "grad_norm": 0.19884084165096283, + "learning_rate": 0.0006, + "loss": 3.5964083671569824, + "step": 3568 + }, + { + "epoch": 49.57317605941459, + "grad_norm": 0.21243083477020264, + "learning_rate": 0.0006, + "loss": 3.5885486602783203, + "step": 3569 + }, + { + "epoch": 49.58715596330275, + "grad_norm": 0.21059481799602509, + "learning_rate": 0.0006, + "loss": 3.572526454925537, + "step": 3570 + }, + { + "epoch": 49.60113586719091, + "grad_norm": 0.20644313097000122, + "learning_rate": 0.0006, + "loss": 3.583679676055908, + "step": 3571 + }, + { + "epoch": 49.615115771079076, + "grad_norm": 0.21343673765659332, + "learning_rate": 0.0006, + "loss": 3.6211650371551514, + "step": 3572 + }, + { + "epoch": 49.62909567496723, + "grad_norm": 0.23395343124866486, + "learning_rate": 0.0006, + "loss": 3.6003336906433105, + "step": 3573 + }, + { + "epoch": 49.643075578855395, + "grad_norm": 0.19978424906730652, + "learning_rate": 0.0006, + "loss": 3.6066763401031494, + "step": 3574 + }, + { + "epoch": 49.65705548274356, + "grad_norm": 0.21529823541641235, + "learning_rate": 0.0006, + "loss": 3.601284980773926, + "step": 3575 + }, + { + "epoch": 49.671035386631715, + "grad_norm": 0.21672746539115906, + "learning_rate": 0.0006, + "loss": 3.6084227561950684, + "step": 3576 + }, + { + "epoch": 49.68501529051988, + "grad_norm": 0.20889638364315033, + "learning_rate": 0.0006, + "loss": 3.591568946838379, + "step": 3577 + }, + { + "epoch": 49.69899519440804, + "grad_norm": 0.1960221230983734, + "learning_rate": 0.0006, + "loss": 3.6180830001831055, + "step": 3578 + }, + { + "epoch": 49.7129750982962, + "grad_norm": 0.19712410867214203, + "learning_rate": 0.0006, + "loss": 3.6197333335876465, + "step": 3579 + }, + { + "epoch": 49.72695500218436, + "grad_norm": 0.20665284991264343, + "learning_rate": 0.0006, + "loss": 3.6251301765441895, + "step": 3580 + }, + { + "epoch": 49.74093490607252, + "grad_norm": 0.21018871665000916, + "learning_rate": 0.0006, + "loss": 3.621973991394043, + "step": 3581 + }, + { + "epoch": 49.75491480996068, + "grad_norm": 0.20777495205402374, + "learning_rate": 0.0006, + "loss": 3.5826358795166016, + "step": 3582 + }, + { + "epoch": 49.768894713848844, + "grad_norm": 0.18880195915699005, + "learning_rate": 0.0006, + "loss": 3.5946998596191406, + "step": 3583 + }, + { + "epoch": 49.782874617737, + "grad_norm": 0.19894644618034363, + "learning_rate": 0.0006, + "loss": 3.5912184715270996, + "step": 3584 + }, + { + "epoch": 49.796854521625164, + "grad_norm": 0.20128944516181946, + "learning_rate": 0.0006, + "loss": 3.6370394229888916, + "step": 3585 + }, + { + "epoch": 49.81083442551333, + "grad_norm": 0.19332024455070496, + "learning_rate": 0.0006, + "loss": 3.619018077850342, + "step": 3586 + }, + { + "epoch": 49.824814329401484, + "grad_norm": 0.19303865730762482, + "learning_rate": 0.0006, + "loss": 3.578667163848877, + "step": 3587 + }, + { + "epoch": 49.83879423328965, + "grad_norm": 0.20154757797718048, + "learning_rate": 0.0006, + "loss": 3.61959171295166, + "step": 3588 + }, + { + "epoch": 49.8527741371778, + "grad_norm": 0.19653639197349548, + "learning_rate": 0.0006, + "loss": 3.6437559127807617, + "step": 3589 + }, + { + "epoch": 49.86675404106597, + "grad_norm": 0.21873407065868378, + "learning_rate": 0.0006, + "loss": 3.6131112575531006, + "step": 3590 + }, + { + "epoch": 49.88073394495413, + "grad_norm": 0.20130383968353271, + "learning_rate": 0.0006, + "loss": 3.624028444290161, + "step": 3591 + }, + { + "epoch": 49.89471384884229, + "grad_norm": 0.20206475257873535, + "learning_rate": 0.0006, + "loss": 3.5997328758239746, + "step": 3592 + }, + { + "epoch": 49.90869375273045, + "grad_norm": 0.20393261313438416, + "learning_rate": 0.0006, + "loss": 3.596066474914551, + "step": 3593 + }, + { + "epoch": 49.92267365661861, + "grad_norm": 0.19703544676303864, + "learning_rate": 0.0006, + "loss": 3.624542713165283, + "step": 3594 + }, + { + "epoch": 49.93665356050677, + "grad_norm": 0.2102314680814743, + "learning_rate": 0.0006, + "loss": 3.6082515716552734, + "step": 3595 + }, + { + "epoch": 49.95063346439493, + "grad_norm": 0.23791316151618958, + "learning_rate": 0.0006, + "loss": 3.6185569763183594, + "step": 3596 + }, + { + "epoch": 49.964613368283096, + "grad_norm": 0.24536125361919403, + "learning_rate": 0.0006, + "loss": 3.599207878112793, + "step": 3597 + }, + { + "epoch": 49.97859327217125, + "grad_norm": 0.23160327970981598, + "learning_rate": 0.0006, + "loss": 3.600921869277954, + "step": 3598 + }, + { + "epoch": 49.992573176059416, + "grad_norm": 0.22740362584590912, + "learning_rate": 0.0006, + "loss": 3.6112914085388184, + "step": 3599 + }, + { + "epoch": 50.0, + "grad_norm": 0.24303272366523743, + "learning_rate": 0.0006, + "loss": 3.6385838985443115, + "step": 3600 + }, + { + "epoch": 50.0, + "eval_loss": 3.9811089038848877, + "eval_runtime": 44.9913, + "eval_samples_per_second": 54.277, + "eval_steps_per_second": 3.401, + "step": 3600 + }, + { + "epoch": 50.01397990388816, + "grad_norm": 0.20118683576583862, + "learning_rate": 0.0006, + "loss": 3.561751127243042, + "step": 3601 + }, + { + "epoch": 50.02795980777632, + "grad_norm": 0.18722538650035858, + "learning_rate": 0.0006, + "loss": 3.5742180347442627, + "step": 3602 + }, + { + "epoch": 50.04193971166448, + "grad_norm": 0.21248385310173035, + "learning_rate": 0.0006, + "loss": 3.5759401321411133, + "step": 3603 + }, + { + "epoch": 50.05591961555265, + "grad_norm": 0.21006572246551514, + "learning_rate": 0.0006, + "loss": 3.5737462043762207, + "step": 3604 + }, + { + "epoch": 50.0698995194408, + "grad_norm": 0.20671233534812927, + "learning_rate": 0.0006, + "loss": 3.548205852508545, + "step": 3605 + }, + { + "epoch": 50.083879423328966, + "grad_norm": 0.20704609155654907, + "learning_rate": 0.0006, + "loss": 3.5862209796905518, + "step": 3606 + }, + { + "epoch": 50.09785932721712, + "grad_norm": 0.20611345767974854, + "learning_rate": 0.0006, + "loss": 3.5696640014648438, + "step": 3607 + }, + { + "epoch": 50.111839231105286, + "grad_norm": 0.20986805856227875, + "learning_rate": 0.0006, + "loss": 3.5755579471588135, + "step": 3608 + }, + { + "epoch": 50.12581913499345, + "grad_norm": 0.21727709472179413, + "learning_rate": 0.0006, + "loss": 3.5967745780944824, + "step": 3609 + }, + { + "epoch": 50.139799038881605, + "grad_norm": 0.21854986250400543, + "learning_rate": 0.0006, + "loss": 3.6115779876708984, + "step": 3610 + }, + { + "epoch": 50.15377894276977, + "grad_norm": 0.22904936969280243, + "learning_rate": 0.0006, + "loss": 3.5639889240264893, + "step": 3611 + }, + { + "epoch": 50.16775884665793, + "grad_norm": 0.23774254322052002, + "learning_rate": 0.0006, + "loss": 3.6023900508880615, + "step": 3612 + }, + { + "epoch": 50.18173875054609, + "grad_norm": 0.21548497676849365, + "learning_rate": 0.0006, + "loss": 3.5722856521606445, + "step": 3613 + }, + { + "epoch": 50.19571865443425, + "grad_norm": 0.20503196120262146, + "learning_rate": 0.0006, + "loss": 3.5899252891540527, + "step": 3614 + }, + { + "epoch": 50.20969855832241, + "grad_norm": 0.22084423899650574, + "learning_rate": 0.0006, + "loss": 3.56020450592041, + "step": 3615 + }, + { + "epoch": 50.22367846221057, + "grad_norm": 0.24276728928089142, + "learning_rate": 0.0006, + "loss": 3.585695743560791, + "step": 3616 + }, + { + "epoch": 50.237658366098735, + "grad_norm": 0.23182106018066406, + "learning_rate": 0.0006, + "loss": 3.580676555633545, + "step": 3617 + }, + { + "epoch": 50.25163826998689, + "grad_norm": 0.2341945767402649, + "learning_rate": 0.0006, + "loss": 3.579713821411133, + "step": 3618 + }, + { + "epoch": 50.265618173875055, + "grad_norm": 0.27971863746643066, + "learning_rate": 0.0006, + "loss": 3.568251371383667, + "step": 3619 + }, + { + "epoch": 50.27959807776322, + "grad_norm": 0.24740517139434814, + "learning_rate": 0.0006, + "loss": 3.5798869132995605, + "step": 3620 + }, + { + "epoch": 50.293577981651374, + "grad_norm": 0.20561005175113678, + "learning_rate": 0.0006, + "loss": 3.5610039234161377, + "step": 3621 + }, + { + "epoch": 50.30755788553954, + "grad_norm": 0.2085379660129547, + "learning_rate": 0.0006, + "loss": 3.5620288848876953, + "step": 3622 + }, + { + "epoch": 50.3215377894277, + "grad_norm": 0.20868757367134094, + "learning_rate": 0.0006, + "loss": 3.6090598106384277, + "step": 3623 + }, + { + "epoch": 50.33551769331586, + "grad_norm": 0.18991491198539734, + "learning_rate": 0.0006, + "loss": 3.55255126953125, + "step": 3624 + }, + { + "epoch": 50.34949759720402, + "grad_norm": 0.24742646515369415, + "learning_rate": 0.0006, + "loss": 3.60585880279541, + "step": 3625 + }, + { + "epoch": 50.36347750109218, + "grad_norm": 0.26971301436424255, + "learning_rate": 0.0006, + "loss": 3.5913054943084717, + "step": 3626 + }, + { + "epoch": 50.37745740498034, + "grad_norm": 0.24294881522655487, + "learning_rate": 0.0006, + "loss": 3.5570878982543945, + "step": 3627 + }, + { + "epoch": 50.391437308868504, + "grad_norm": 0.2194664478302002, + "learning_rate": 0.0006, + "loss": 3.5800397396087646, + "step": 3628 + }, + { + "epoch": 50.40541721275666, + "grad_norm": 0.2148507982492447, + "learning_rate": 0.0006, + "loss": 3.6182782649993896, + "step": 3629 + }, + { + "epoch": 50.419397116644824, + "grad_norm": 0.22235016524791718, + "learning_rate": 0.0006, + "loss": 3.5784103870391846, + "step": 3630 + }, + { + "epoch": 50.43337702053299, + "grad_norm": 0.23176309466362, + "learning_rate": 0.0006, + "loss": 3.559011459350586, + "step": 3631 + }, + { + "epoch": 50.44735692442114, + "grad_norm": 0.2267913520336151, + "learning_rate": 0.0006, + "loss": 3.5854780673980713, + "step": 3632 + }, + { + "epoch": 50.46133682830931, + "grad_norm": 0.22565901279449463, + "learning_rate": 0.0006, + "loss": 3.5891294479370117, + "step": 3633 + }, + { + "epoch": 50.47531673219746, + "grad_norm": 0.23724839091300964, + "learning_rate": 0.0006, + "loss": 3.575702428817749, + "step": 3634 + }, + { + "epoch": 50.489296636085626, + "grad_norm": 0.23679722845554352, + "learning_rate": 0.0006, + "loss": 3.588639259338379, + "step": 3635 + }, + { + "epoch": 50.50327653997379, + "grad_norm": 0.23909232020378113, + "learning_rate": 0.0006, + "loss": 3.5828709602355957, + "step": 3636 + }, + { + "epoch": 50.517256443861946, + "grad_norm": 0.24186119437217712, + "learning_rate": 0.0006, + "loss": 3.596708059310913, + "step": 3637 + }, + { + "epoch": 50.53123634775011, + "grad_norm": 0.2325516790151596, + "learning_rate": 0.0006, + "loss": 3.610769510269165, + "step": 3638 + }, + { + "epoch": 50.54521625163827, + "grad_norm": 0.205137237906456, + "learning_rate": 0.0006, + "loss": 3.612844228744507, + "step": 3639 + }, + { + "epoch": 50.55919615552643, + "grad_norm": 0.20860300958156586, + "learning_rate": 0.0006, + "loss": 3.623669147491455, + "step": 3640 + }, + { + "epoch": 50.57317605941459, + "grad_norm": 0.20029069483280182, + "learning_rate": 0.0006, + "loss": 3.6108334064483643, + "step": 3641 + }, + { + "epoch": 50.58715596330275, + "grad_norm": 0.18841931223869324, + "learning_rate": 0.0006, + "loss": 3.6073007583618164, + "step": 3642 + }, + { + "epoch": 50.60113586719091, + "grad_norm": 0.20113889873027802, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3643 + }, + { + "epoch": 50.615115771079076, + "grad_norm": 0.23595206439495087, + "learning_rate": 0.0006, + "loss": 3.634650707244873, + "step": 3644 + }, + { + "epoch": 50.62909567496723, + "grad_norm": 0.24625661969184875, + "learning_rate": 0.0006, + "loss": 3.593716621398926, + "step": 3645 + }, + { + "epoch": 50.643075578855395, + "grad_norm": 0.2182614505290985, + "learning_rate": 0.0006, + "loss": 3.6006946563720703, + "step": 3646 + }, + { + "epoch": 50.65705548274356, + "grad_norm": 0.20867182314395905, + "learning_rate": 0.0006, + "loss": 3.6249008178710938, + "step": 3647 + }, + { + "epoch": 50.671035386631715, + "grad_norm": 0.20451945066452026, + "learning_rate": 0.0006, + "loss": 3.5870985984802246, + "step": 3648 + }, + { + "epoch": 50.68501529051988, + "grad_norm": 0.19160118699073792, + "learning_rate": 0.0006, + "loss": 3.6104488372802734, + "step": 3649 + }, + { + "epoch": 50.69899519440804, + "grad_norm": 0.18884453177452087, + "learning_rate": 0.0006, + "loss": 3.607893943786621, + "step": 3650 + }, + { + "epoch": 50.7129750982962, + "grad_norm": 0.19570060074329376, + "learning_rate": 0.0006, + "loss": 3.5938732624053955, + "step": 3651 + }, + { + "epoch": 50.72695500218436, + "grad_norm": 0.21978189051151276, + "learning_rate": 0.0006, + "loss": 3.5894908905029297, + "step": 3652 + }, + { + "epoch": 50.74093490607252, + "grad_norm": 0.19930903613567352, + "learning_rate": 0.0006, + "loss": 3.6067557334899902, + "step": 3653 + }, + { + "epoch": 50.75491480996068, + "grad_norm": 0.19450204074382782, + "learning_rate": 0.0006, + "loss": 3.5989646911621094, + "step": 3654 + }, + { + "epoch": 50.768894713848844, + "grad_norm": 0.1925407201051712, + "learning_rate": 0.0006, + "loss": 3.604339599609375, + "step": 3655 + }, + { + "epoch": 50.782874617737, + "grad_norm": 0.19232864677906036, + "learning_rate": 0.0006, + "loss": 3.5789241790771484, + "step": 3656 + }, + { + "epoch": 50.796854521625164, + "grad_norm": 0.1937529742717743, + "learning_rate": 0.0006, + "loss": 3.6060590744018555, + "step": 3657 + }, + { + "epoch": 50.81083442551333, + "grad_norm": 0.19863007962703705, + "learning_rate": 0.0006, + "loss": 3.5944440364837646, + "step": 3658 + }, + { + "epoch": 50.824814329401484, + "grad_norm": 0.18879804015159607, + "learning_rate": 0.0006, + "loss": 3.6017069816589355, + "step": 3659 + }, + { + "epoch": 50.83879423328965, + "grad_norm": 0.20111720263957977, + "learning_rate": 0.0006, + "loss": 3.593327522277832, + "step": 3660 + }, + { + "epoch": 50.8527741371778, + "grad_norm": 0.22593358159065247, + "learning_rate": 0.0006, + "loss": 3.5856096744537354, + "step": 3661 + }, + { + "epoch": 50.86675404106597, + "grad_norm": 0.22624441981315613, + "learning_rate": 0.0006, + "loss": 3.6144661903381348, + "step": 3662 + }, + { + "epoch": 50.88073394495413, + "grad_norm": 0.22052904963493347, + "learning_rate": 0.0006, + "loss": 3.5895116329193115, + "step": 3663 + }, + { + "epoch": 50.89471384884229, + "grad_norm": 0.2248559594154358, + "learning_rate": 0.0006, + "loss": 3.6400208473205566, + "step": 3664 + }, + { + "epoch": 50.90869375273045, + "grad_norm": 0.20209142565727234, + "learning_rate": 0.0006, + "loss": 3.6059279441833496, + "step": 3665 + }, + { + "epoch": 50.92267365661861, + "grad_norm": 0.2075854390859604, + "learning_rate": 0.0006, + "loss": 3.590074062347412, + "step": 3666 + }, + { + "epoch": 50.93665356050677, + "grad_norm": 0.20524698495864868, + "learning_rate": 0.0006, + "loss": 3.600741147994995, + "step": 3667 + }, + { + "epoch": 50.95063346439493, + "grad_norm": 0.1922466903924942, + "learning_rate": 0.0006, + "loss": 3.5984225273132324, + "step": 3668 + }, + { + "epoch": 50.964613368283096, + "grad_norm": 0.18852637708187103, + "learning_rate": 0.0006, + "loss": 3.6204333305358887, + "step": 3669 + }, + { + "epoch": 50.97859327217125, + "grad_norm": 0.22050459682941437, + "learning_rate": 0.0006, + "loss": 3.6371538639068604, + "step": 3670 + }, + { + "epoch": 50.992573176059416, + "grad_norm": 0.21477681398391724, + "learning_rate": 0.0006, + "loss": 3.608738899230957, + "step": 3671 + }, + { + "epoch": 51.0, + "grad_norm": 0.22061094641685486, + "learning_rate": 0.0006, + "loss": 3.6209959983825684, + "step": 3672 + }, + { + "epoch": 51.0, + "eval_loss": 3.9762842655181885, + "eval_runtime": 44.8353, + "eval_samples_per_second": 54.466, + "eval_steps_per_second": 3.412, + "step": 3672 + }, + { + "epoch": 51.01397990388816, + "grad_norm": 0.19009192287921906, + "learning_rate": 0.0006, + "loss": 3.5604426860809326, + "step": 3673 + }, + { + "epoch": 51.02795980777632, + "grad_norm": 0.2217264175415039, + "learning_rate": 0.0006, + "loss": 3.5595664978027344, + "step": 3674 + }, + { + "epoch": 51.04193971166448, + "grad_norm": 0.2747595012187958, + "learning_rate": 0.0006, + "loss": 3.5800085067749023, + "step": 3675 + }, + { + "epoch": 51.05591961555265, + "grad_norm": 0.26963043212890625, + "learning_rate": 0.0006, + "loss": 3.5529065132141113, + "step": 3676 + }, + { + "epoch": 51.0698995194408, + "grad_norm": 0.2304207682609558, + "learning_rate": 0.0006, + "loss": 3.585238456726074, + "step": 3677 + }, + { + "epoch": 51.083879423328966, + "grad_norm": 0.22073867917060852, + "learning_rate": 0.0006, + "loss": 3.542267322540283, + "step": 3678 + }, + { + "epoch": 51.09785932721712, + "grad_norm": 0.22550931572914124, + "learning_rate": 0.0006, + "loss": 3.5693743228912354, + "step": 3679 + }, + { + "epoch": 51.111839231105286, + "grad_norm": 0.2347114384174347, + "learning_rate": 0.0006, + "loss": 3.5830154418945312, + "step": 3680 + }, + { + "epoch": 51.12581913499345, + "grad_norm": 0.24889813363552094, + "learning_rate": 0.0006, + "loss": 3.581010341644287, + "step": 3681 + }, + { + "epoch": 51.139799038881605, + "grad_norm": 0.2401021122932434, + "learning_rate": 0.0006, + "loss": 3.619450092315674, + "step": 3682 + }, + { + "epoch": 51.15377894276977, + "grad_norm": 0.22221142053604126, + "learning_rate": 0.0006, + "loss": 3.573624610900879, + "step": 3683 + }, + { + "epoch": 51.16775884665793, + "grad_norm": 0.2429024577140808, + "learning_rate": 0.0006, + "loss": 3.548610210418701, + "step": 3684 + }, + { + "epoch": 51.18173875054609, + "grad_norm": 0.26470765471458435, + "learning_rate": 0.0006, + "loss": 3.5582218170166016, + "step": 3685 + }, + { + "epoch": 51.19571865443425, + "grad_norm": 0.2632715404033661, + "learning_rate": 0.0006, + "loss": 3.5976979732513428, + "step": 3686 + }, + { + "epoch": 51.20969855832241, + "grad_norm": 0.2567448616027832, + "learning_rate": 0.0006, + "loss": 3.592031478881836, + "step": 3687 + }, + { + "epoch": 51.22367846221057, + "grad_norm": 0.25299885869026184, + "learning_rate": 0.0006, + "loss": 3.579765796661377, + "step": 3688 + }, + { + "epoch": 51.237658366098735, + "grad_norm": 0.22765189409255981, + "learning_rate": 0.0006, + "loss": 3.5677521228790283, + "step": 3689 + }, + { + "epoch": 51.25163826998689, + "grad_norm": 0.23369887471199036, + "learning_rate": 0.0006, + "loss": 3.585879325866699, + "step": 3690 + }, + { + "epoch": 51.265618173875055, + "grad_norm": 0.21358822286128998, + "learning_rate": 0.0006, + "loss": 3.568866729736328, + "step": 3691 + }, + { + "epoch": 51.27959807776322, + "grad_norm": 0.2127659171819687, + "learning_rate": 0.0006, + "loss": 3.614520311355591, + "step": 3692 + }, + { + "epoch": 51.293577981651374, + "grad_norm": 0.22829636931419373, + "learning_rate": 0.0006, + "loss": 3.6004438400268555, + "step": 3693 + }, + { + "epoch": 51.30755788553954, + "grad_norm": 0.223104789853096, + "learning_rate": 0.0006, + "loss": 3.5791001319885254, + "step": 3694 + }, + { + "epoch": 51.3215377894277, + "grad_norm": 0.2084331065416336, + "learning_rate": 0.0006, + "loss": 3.572514295578003, + "step": 3695 + }, + { + "epoch": 51.33551769331586, + "grad_norm": 0.21115142107009888, + "learning_rate": 0.0006, + "loss": 3.5736331939697266, + "step": 3696 + }, + { + "epoch": 51.34949759720402, + "grad_norm": 0.2158546894788742, + "learning_rate": 0.0006, + "loss": 3.587161064147949, + "step": 3697 + }, + { + "epoch": 51.36347750109218, + "grad_norm": 0.2478281408548355, + "learning_rate": 0.0006, + "loss": 3.5879693031311035, + "step": 3698 + }, + { + "epoch": 51.37745740498034, + "grad_norm": 0.25137850642204285, + "learning_rate": 0.0006, + "loss": 3.58297061920166, + "step": 3699 + }, + { + "epoch": 51.391437308868504, + "grad_norm": 0.22961364686489105, + "learning_rate": 0.0006, + "loss": 3.5556459426879883, + "step": 3700 + }, + { + "epoch": 51.40541721275666, + "grad_norm": 0.22561277449131012, + "learning_rate": 0.0006, + "loss": 3.60197114944458, + "step": 3701 + }, + { + "epoch": 51.419397116644824, + "grad_norm": 0.20331767201423645, + "learning_rate": 0.0006, + "loss": 3.5815134048461914, + "step": 3702 + }, + { + "epoch": 51.43337702053299, + "grad_norm": 0.1941518634557724, + "learning_rate": 0.0006, + "loss": 3.6055145263671875, + "step": 3703 + }, + { + "epoch": 51.44735692442114, + "grad_norm": 0.19306789338588715, + "learning_rate": 0.0006, + "loss": 3.6101536750793457, + "step": 3704 + }, + { + "epoch": 51.46133682830931, + "grad_norm": 0.1830628365278244, + "learning_rate": 0.0006, + "loss": 3.5978426933288574, + "step": 3705 + }, + { + "epoch": 51.47531673219746, + "grad_norm": 0.19231490790843964, + "learning_rate": 0.0006, + "loss": 3.54502534866333, + "step": 3706 + }, + { + "epoch": 51.489296636085626, + "grad_norm": 0.19109117984771729, + "learning_rate": 0.0006, + "loss": 3.5957441329956055, + "step": 3707 + }, + { + "epoch": 51.50327653997379, + "grad_norm": 0.2032860815525055, + "learning_rate": 0.0006, + "loss": 3.5626730918884277, + "step": 3708 + }, + { + "epoch": 51.517256443861946, + "grad_norm": 0.19685189425945282, + "learning_rate": 0.0006, + "loss": 3.580399990081787, + "step": 3709 + }, + { + "epoch": 51.53123634775011, + "grad_norm": 0.19273017346858978, + "learning_rate": 0.0006, + "loss": 3.5428152084350586, + "step": 3710 + }, + { + "epoch": 51.54521625163827, + "grad_norm": 0.20198430120944977, + "learning_rate": 0.0006, + "loss": 3.607492446899414, + "step": 3711 + }, + { + "epoch": 51.55919615552643, + "grad_norm": 0.2267402559518814, + "learning_rate": 0.0006, + "loss": 3.580479621887207, + "step": 3712 + }, + { + "epoch": 51.57317605941459, + "grad_norm": 0.2247764617204666, + "learning_rate": 0.0006, + "loss": 3.5921316146850586, + "step": 3713 + }, + { + "epoch": 51.58715596330275, + "grad_norm": 0.23907902836799622, + "learning_rate": 0.0006, + "loss": 3.6014928817749023, + "step": 3714 + }, + { + "epoch": 51.60113586719091, + "grad_norm": 0.25907906889915466, + "learning_rate": 0.0006, + "loss": 3.5900192260742188, + "step": 3715 + }, + { + "epoch": 51.615115771079076, + "grad_norm": 0.26282405853271484, + "learning_rate": 0.0006, + "loss": 3.5727553367614746, + "step": 3716 + }, + { + "epoch": 51.62909567496723, + "grad_norm": 0.2541179060935974, + "learning_rate": 0.0006, + "loss": 3.5835776329040527, + "step": 3717 + }, + { + "epoch": 51.643075578855395, + "grad_norm": 0.23372016847133636, + "learning_rate": 0.0006, + "loss": 3.5902652740478516, + "step": 3718 + }, + { + "epoch": 51.65705548274356, + "grad_norm": 0.22827622294425964, + "learning_rate": 0.0006, + "loss": 3.6048200130462646, + "step": 3719 + }, + { + "epoch": 51.671035386631715, + "grad_norm": 0.21026845276355743, + "learning_rate": 0.0006, + "loss": 3.5587573051452637, + "step": 3720 + }, + { + "epoch": 51.68501529051988, + "grad_norm": 0.23485958576202393, + "learning_rate": 0.0006, + "loss": 3.6212477684020996, + "step": 3721 + }, + { + "epoch": 51.69899519440804, + "grad_norm": 0.2676871120929718, + "learning_rate": 0.0006, + "loss": 3.597837448120117, + "step": 3722 + }, + { + "epoch": 51.7129750982962, + "grad_norm": 0.23661476373672485, + "learning_rate": 0.0006, + "loss": 3.616079330444336, + "step": 3723 + }, + { + "epoch": 51.72695500218436, + "grad_norm": 0.2212267816066742, + "learning_rate": 0.0006, + "loss": 3.6103296279907227, + "step": 3724 + }, + { + "epoch": 51.74093490607252, + "grad_norm": 0.22888682782649994, + "learning_rate": 0.0006, + "loss": 3.6099889278411865, + "step": 3725 + }, + { + "epoch": 51.75491480996068, + "grad_norm": 0.21740387380123138, + "learning_rate": 0.0006, + "loss": 3.5859200954437256, + "step": 3726 + }, + { + "epoch": 51.768894713848844, + "grad_norm": 0.20819106698036194, + "learning_rate": 0.0006, + "loss": 3.5875396728515625, + "step": 3727 + }, + { + "epoch": 51.782874617737, + "grad_norm": 0.21574485301971436, + "learning_rate": 0.0006, + "loss": 3.6203761100769043, + "step": 3728 + }, + { + "epoch": 51.796854521625164, + "grad_norm": 0.21275651454925537, + "learning_rate": 0.0006, + "loss": 3.6066012382507324, + "step": 3729 + }, + { + "epoch": 51.81083442551333, + "grad_norm": 0.2043808251619339, + "learning_rate": 0.0006, + "loss": 3.571417808532715, + "step": 3730 + }, + { + "epoch": 51.824814329401484, + "grad_norm": 0.2082396298646927, + "learning_rate": 0.0006, + "loss": 3.6076579093933105, + "step": 3731 + }, + { + "epoch": 51.83879423328965, + "grad_norm": 0.23331953585147858, + "learning_rate": 0.0006, + "loss": 3.621837615966797, + "step": 3732 + }, + { + "epoch": 51.8527741371778, + "grad_norm": 0.25569960474967957, + "learning_rate": 0.0006, + "loss": 3.602004051208496, + "step": 3733 + }, + { + "epoch": 51.86675404106597, + "grad_norm": 0.230540469288826, + "learning_rate": 0.0006, + "loss": 3.5829110145568848, + "step": 3734 + }, + { + "epoch": 51.88073394495413, + "grad_norm": 0.20307230949401855, + "learning_rate": 0.0006, + "loss": 3.5572190284729004, + "step": 3735 + }, + { + "epoch": 51.89471384884229, + "grad_norm": 0.20902153849601746, + "learning_rate": 0.0006, + "loss": 3.5939853191375732, + "step": 3736 + }, + { + "epoch": 51.90869375273045, + "grad_norm": 0.20433510839939117, + "learning_rate": 0.0006, + "loss": 3.6104702949523926, + "step": 3737 + }, + { + "epoch": 51.92267365661861, + "grad_norm": 0.2285638302564621, + "learning_rate": 0.0006, + "loss": 3.5588834285736084, + "step": 3738 + }, + { + "epoch": 51.93665356050677, + "grad_norm": 0.2388262301683426, + "learning_rate": 0.0006, + "loss": 3.6203103065490723, + "step": 3739 + }, + { + "epoch": 51.95063346439493, + "grad_norm": 0.22572419047355652, + "learning_rate": 0.0006, + "loss": 3.6191892623901367, + "step": 3740 + }, + { + "epoch": 51.964613368283096, + "grad_norm": 0.21060727536678314, + "learning_rate": 0.0006, + "loss": 3.620879650115967, + "step": 3741 + }, + { + "epoch": 51.97859327217125, + "grad_norm": 0.2045326828956604, + "learning_rate": 0.0006, + "loss": 3.5959091186523438, + "step": 3742 + }, + { + "epoch": 51.992573176059416, + "grad_norm": 0.21882471442222595, + "learning_rate": 0.0006, + "loss": 3.6504573822021484, + "step": 3743 + }, + { + "epoch": 52.0, + "grad_norm": 0.24379056692123413, + "learning_rate": 0.0006, + "loss": 3.6293625831604004, + "step": 3744 + }, + { + "epoch": 52.0, + "eval_loss": 3.9772427082061768, + "eval_runtime": 44.248, + "eval_samples_per_second": 55.189, + "eval_steps_per_second": 3.458, + "step": 3744 + }, + { + "epoch": 52.01397990388816, + "grad_norm": 0.19682207703590393, + "learning_rate": 0.0006, + "loss": 3.604281425476074, + "step": 3745 + }, + { + "epoch": 52.02795980777632, + "grad_norm": 0.23003028333187103, + "learning_rate": 0.0006, + "loss": 3.588266372680664, + "step": 3746 + }, + { + "epoch": 52.04193971166448, + "grad_norm": 0.2458166778087616, + "learning_rate": 0.0006, + "loss": 3.59077787399292, + "step": 3747 + }, + { + "epoch": 52.05591961555265, + "grad_norm": 0.23873521387577057, + "learning_rate": 0.0006, + "loss": 3.556537628173828, + "step": 3748 + }, + { + "epoch": 52.0698995194408, + "grad_norm": 0.21737053990364075, + "learning_rate": 0.0006, + "loss": 3.5758891105651855, + "step": 3749 + }, + { + "epoch": 52.083879423328966, + "grad_norm": 0.22239601612091064, + "learning_rate": 0.0006, + "loss": 3.552678346633911, + "step": 3750 + }, + { + "epoch": 52.09785932721712, + "grad_norm": 0.21818044781684875, + "learning_rate": 0.0006, + "loss": 3.577249526977539, + "step": 3751 + }, + { + "epoch": 52.111839231105286, + "grad_norm": 0.24513746798038483, + "learning_rate": 0.0006, + "loss": 3.569178581237793, + "step": 3752 + }, + { + "epoch": 52.12581913499345, + "grad_norm": 0.2801238000392914, + "learning_rate": 0.0006, + "loss": 3.556199073791504, + "step": 3753 + }, + { + "epoch": 52.139799038881605, + "grad_norm": 0.2722291648387909, + "learning_rate": 0.0006, + "loss": 3.5571072101593018, + "step": 3754 + }, + { + "epoch": 52.15377894276977, + "grad_norm": 0.2146541327238083, + "learning_rate": 0.0006, + "loss": 3.5831902027130127, + "step": 3755 + }, + { + "epoch": 52.16775884665793, + "grad_norm": 0.21040776371955872, + "learning_rate": 0.0006, + "loss": 3.6021504402160645, + "step": 3756 + }, + { + "epoch": 52.18173875054609, + "grad_norm": 0.24059702455997467, + "learning_rate": 0.0006, + "loss": 3.57401704788208, + "step": 3757 + }, + { + "epoch": 52.19571865443425, + "grad_norm": 0.25043657422065735, + "learning_rate": 0.0006, + "loss": 3.5776405334472656, + "step": 3758 + }, + { + "epoch": 52.20969855832241, + "grad_norm": 0.24292849004268646, + "learning_rate": 0.0006, + "loss": 3.5602574348449707, + "step": 3759 + }, + { + "epoch": 52.22367846221057, + "grad_norm": 0.2159980833530426, + "learning_rate": 0.0006, + "loss": 3.552079200744629, + "step": 3760 + }, + { + "epoch": 52.237658366098735, + "grad_norm": 0.19305892288684845, + "learning_rate": 0.0006, + "loss": 3.581195831298828, + "step": 3761 + }, + { + "epoch": 52.25163826998689, + "grad_norm": 0.2115706503391266, + "learning_rate": 0.0006, + "loss": 3.5689306259155273, + "step": 3762 + }, + { + "epoch": 52.265618173875055, + "grad_norm": 0.21885409951210022, + "learning_rate": 0.0006, + "loss": 3.5549206733703613, + "step": 3763 + }, + { + "epoch": 52.27959807776322, + "grad_norm": 0.2069413661956787, + "learning_rate": 0.0006, + "loss": 3.5743770599365234, + "step": 3764 + }, + { + "epoch": 52.293577981651374, + "grad_norm": 0.21922551095485687, + "learning_rate": 0.0006, + "loss": 3.5780110359191895, + "step": 3765 + }, + { + "epoch": 52.30755788553954, + "grad_norm": 0.21675541996955872, + "learning_rate": 0.0006, + "loss": 3.575730800628662, + "step": 3766 + }, + { + "epoch": 52.3215377894277, + "grad_norm": 0.21250510215759277, + "learning_rate": 0.0006, + "loss": 3.546060085296631, + "step": 3767 + }, + { + "epoch": 52.33551769331586, + "grad_norm": 0.23665618896484375, + "learning_rate": 0.0006, + "loss": 3.5887606143951416, + "step": 3768 + }, + { + "epoch": 52.34949759720402, + "grad_norm": 0.2525961399078369, + "learning_rate": 0.0006, + "loss": 3.5885281562805176, + "step": 3769 + }, + { + "epoch": 52.36347750109218, + "grad_norm": 0.26285895705223083, + "learning_rate": 0.0006, + "loss": 3.5880684852600098, + "step": 3770 + }, + { + "epoch": 52.37745740498034, + "grad_norm": 0.24714398384094238, + "learning_rate": 0.0006, + "loss": 3.548165798187256, + "step": 3771 + }, + { + "epoch": 52.391437308868504, + "grad_norm": 0.2234657257795334, + "learning_rate": 0.0006, + "loss": 3.56547212600708, + "step": 3772 + }, + { + "epoch": 52.40541721275666, + "grad_norm": 0.20636901259422302, + "learning_rate": 0.0006, + "loss": 3.5702133178710938, + "step": 3773 + }, + { + "epoch": 52.419397116644824, + "grad_norm": 0.20656965672969818, + "learning_rate": 0.0006, + "loss": 3.614602565765381, + "step": 3774 + }, + { + "epoch": 52.43337702053299, + "grad_norm": 0.20018167793750763, + "learning_rate": 0.0006, + "loss": 3.6063036918640137, + "step": 3775 + }, + { + "epoch": 52.44735692442114, + "grad_norm": 0.21859782934188843, + "learning_rate": 0.0006, + "loss": 3.5728869438171387, + "step": 3776 + }, + { + "epoch": 52.46133682830931, + "grad_norm": 0.21622174978256226, + "learning_rate": 0.0006, + "loss": 3.5657505989074707, + "step": 3777 + }, + { + "epoch": 52.47531673219746, + "grad_norm": 0.19779632985591888, + "learning_rate": 0.0006, + "loss": 3.5841145515441895, + "step": 3778 + }, + { + "epoch": 52.489296636085626, + "grad_norm": 0.21635952591896057, + "learning_rate": 0.0006, + "loss": 3.582096576690674, + "step": 3779 + }, + { + "epoch": 52.50327653997379, + "grad_norm": 0.21348397433757782, + "learning_rate": 0.0006, + "loss": 3.5654468536376953, + "step": 3780 + }, + { + "epoch": 52.517256443861946, + "grad_norm": 0.19572246074676514, + "learning_rate": 0.0006, + "loss": 3.5806241035461426, + "step": 3781 + }, + { + "epoch": 52.53123634775011, + "grad_norm": 0.1887553185224533, + "learning_rate": 0.0006, + "loss": 3.5752944946289062, + "step": 3782 + }, + { + "epoch": 52.54521625163827, + "grad_norm": 0.2192932814359665, + "learning_rate": 0.0006, + "loss": 3.5846266746520996, + "step": 3783 + }, + { + "epoch": 52.55919615552643, + "grad_norm": 0.23833444714546204, + "learning_rate": 0.0006, + "loss": 3.563093900680542, + "step": 3784 + }, + { + "epoch": 52.57317605941459, + "grad_norm": 0.26471760869026184, + "learning_rate": 0.0006, + "loss": 3.5582051277160645, + "step": 3785 + }, + { + "epoch": 52.58715596330275, + "grad_norm": 0.2767478823661804, + "learning_rate": 0.0006, + "loss": 3.5650997161865234, + "step": 3786 + }, + { + "epoch": 52.60113586719091, + "grad_norm": 0.26556241512298584, + "learning_rate": 0.0006, + "loss": 3.5944058895111084, + "step": 3787 + }, + { + "epoch": 52.615115771079076, + "grad_norm": 0.2733243405818939, + "learning_rate": 0.0006, + "loss": 3.5781195163726807, + "step": 3788 + }, + { + "epoch": 52.62909567496723, + "grad_norm": 0.24836041033267975, + "learning_rate": 0.0006, + "loss": 3.582634687423706, + "step": 3789 + }, + { + "epoch": 52.643075578855395, + "grad_norm": 0.2119593471288681, + "learning_rate": 0.0006, + "loss": 3.5851502418518066, + "step": 3790 + }, + { + "epoch": 52.65705548274356, + "grad_norm": 0.23237599432468414, + "learning_rate": 0.0006, + "loss": 3.5877747535705566, + "step": 3791 + }, + { + "epoch": 52.671035386631715, + "grad_norm": 0.21037372946739197, + "learning_rate": 0.0006, + "loss": 3.579045295715332, + "step": 3792 + }, + { + "epoch": 52.68501529051988, + "grad_norm": 0.19258099794387817, + "learning_rate": 0.0006, + "loss": 3.599151611328125, + "step": 3793 + }, + { + "epoch": 52.69899519440804, + "grad_norm": 0.18808242678642273, + "learning_rate": 0.0006, + "loss": 3.580679416656494, + "step": 3794 + }, + { + "epoch": 52.7129750982962, + "grad_norm": 0.18208397924900055, + "learning_rate": 0.0006, + "loss": 3.5940206050872803, + "step": 3795 + }, + { + "epoch": 52.72695500218436, + "grad_norm": 0.18173424899578094, + "learning_rate": 0.0006, + "loss": 3.5997331142425537, + "step": 3796 + }, + { + "epoch": 52.74093490607252, + "grad_norm": 0.1868390142917633, + "learning_rate": 0.0006, + "loss": 3.60007905960083, + "step": 3797 + }, + { + "epoch": 52.75491480996068, + "grad_norm": 0.1859273761510849, + "learning_rate": 0.0006, + "loss": 3.602668285369873, + "step": 3798 + }, + { + "epoch": 52.768894713848844, + "grad_norm": 0.18063156306743622, + "learning_rate": 0.0006, + "loss": 3.579869270324707, + "step": 3799 + }, + { + "epoch": 52.782874617737, + "grad_norm": 0.18920548260211945, + "learning_rate": 0.0006, + "loss": 3.6056337356567383, + "step": 3800 + }, + { + "epoch": 52.796854521625164, + "grad_norm": 0.20110033452510834, + "learning_rate": 0.0006, + "loss": 3.5694475173950195, + "step": 3801 + }, + { + "epoch": 52.81083442551333, + "grad_norm": 0.20331093668937683, + "learning_rate": 0.0006, + "loss": 3.5940358638763428, + "step": 3802 + }, + { + "epoch": 52.824814329401484, + "grad_norm": 0.2035607248544693, + "learning_rate": 0.0006, + "loss": 3.621305465698242, + "step": 3803 + }, + { + "epoch": 52.83879423328965, + "grad_norm": 0.1974431872367859, + "learning_rate": 0.0006, + "loss": 3.5959153175354004, + "step": 3804 + }, + { + "epoch": 52.8527741371778, + "grad_norm": 0.1832808405160904, + "learning_rate": 0.0006, + "loss": 3.582113265991211, + "step": 3805 + }, + { + "epoch": 52.86675404106597, + "grad_norm": 0.20269927382469177, + "learning_rate": 0.0006, + "loss": 3.5923209190368652, + "step": 3806 + }, + { + "epoch": 52.88073394495413, + "grad_norm": 0.20628313720226288, + "learning_rate": 0.0006, + "loss": 3.599729537963867, + "step": 3807 + }, + { + "epoch": 52.89471384884229, + "grad_norm": 0.2144002914428711, + "learning_rate": 0.0006, + "loss": 3.601041793823242, + "step": 3808 + }, + { + "epoch": 52.90869375273045, + "grad_norm": 0.215015709400177, + "learning_rate": 0.0006, + "loss": 3.5873360633850098, + "step": 3809 + }, + { + "epoch": 52.92267365661861, + "grad_norm": 0.23122714459896088, + "learning_rate": 0.0006, + "loss": 3.5839362144470215, + "step": 3810 + }, + { + "epoch": 52.93665356050677, + "grad_norm": 0.2381119281053543, + "learning_rate": 0.0006, + "loss": 3.564755439758301, + "step": 3811 + }, + { + "epoch": 52.95063346439493, + "grad_norm": 0.22975024580955505, + "learning_rate": 0.0006, + "loss": 3.594020128250122, + "step": 3812 + }, + { + "epoch": 52.964613368283096, + "grad_norm": 0.2419184148311615, + "learning_rate": 0.0006, + "loss": 3.5917205810546875, + "step": 3813 + }, + { + "epoch": 52.97859327217125, + "grad_norm": 0.21143122017383575, + "learning_rate": 0.0006, + "loss": 3.626842975616455, + "step": 3814 + }, + { + "epoch": 52.992573176059416, + "grad_norm": 0.195548415184021, + "learning_rate": 0.0006, + "loss": 3.5798377990722656, + "step": 3815 + }, + { + "epoch": 53.0, + "grad_norm": 0.22441816329956055, + "learning_rate": 0.0006, + "loss": 3.5652856826782227, + "step": 3816 + }, + { + "epoch": 53.0, + "eval_loss": 3.9635632038116455, + "eval_runtime": 44.772, + "eval_samples_per_second": 54.543, + "eval_steps_per_second": 3.417, + "step": 3816 + }, + { + "epoch": 53.01397990388816, + "grad_norm": 0.2547561228275299, + "learning_rate": 0.0006, + "loss": 3.562561511993408, + "step": 3817 + }, + { + "epoch": 53.02795980777632, + "grad_norm": 0.36890196800231934, + "learning_rate": 0.0006, + "loss": 3.534581184387207, + "step": 3818 + }, + { + "epoch": 53.04193971166448, + "grad_norm": 0.42631810903549194, + "learning_rate": 0.0006, + "loss": 3.5438239574432373, + "step": 3819 + }, + { + "epoch": 53.05591961555265, + "grad_norm": 0.29458126425743103, + "learning_rate": 0.0006, + "loss": 3.5594735145568848, + "step": 3820 + }, + { + "epoch": 53.0698995194408, + "grad_norm": 0.24320989847183228, + "learning_rate": 0.0006, + "loss": 3.5715155601501465, + "step": 3821 + }, + { + "epoch": 53.083879423328966, + "grad_norm": 0.3012531101703644, + "learning_rate": 0.0006, + "loss": 3.5324978828430176, + "step": 3822 + }, + { + "epoch": 53.09785932721712, + "grad_norm": 0.2789555788040161, + "learning_rate": 0.0006, + "loss": 3.5848183631896973, + "step": 3823 + }, + { + "epoch": 53.111839231105286, + "grad_norm": 0.2488897293806076, + "learning_rate": 0.0006, + "loss": 3.5853679180145264, + "step": 3824 + }, + { + "epoch": 53.12581913499345, + "grad_norm": 0.3016898036003113, + "learning_rate": 0.0006, + "loss": 3.585637092590332, + "step": 3825 + }, + { + "epoch": 53.139799038881605, + "grad_norm": 0.30293571949005127, + "learning_rate": 0.0006, + "loss": 3.5745015144348145, + "step": 3826 + }, + { + "epoch": 53.15377894276977, + "grad_norm": 0.24611566960811615, + "learning_rate": 0.0006, + "loss": 3.5761728286743164, + "step": 3827 + }, + { + "epoch": 53.16775884665793, + "grad_norm": 0.23852500319480896, + "learning_rate": 0.0006, + "loss": 3.59317946434021, + "step": 3828 + }, + { + "epoch": 53.18173875054609, + "grad_norm": 0.27882838249206543, + "learning_rate": 0.0006, + "loss": 3.589779853820801, + "step": 3829 + }, + { + "epoch": 53.19571865443425, + "grad_norm": 0.3252250552177429, + "learning_rate": 0.0006, + "loss": 3.564526081085205, + "step": 3830 + }, + { + "epoch": 53.20969855832241, + "grad_norm": 0.29635530710220337, + "learning_rate": 0.0006, + "loss": 3.5309946537017822, + "step": 3831 + }, + { + "epoch": 53.22367846221057, + "grad_norm": 0.25211700797080994, + "learning_rate": 0.0006, + "loss": 3.5795631408691406, + "step": 3832 + }, + { + "epoch": 53.237658366098735, + "grad_norm": 0.20772705972194672, + "learning_rate": 0.0006, + "loss": 3.5649163722991943, + "step": 3833 + }, + { + "epoch": 53.25163826998689, + "grad_norm": 0.2460525780916214, + "learning_rate": 0.0006, + "loss": 3.5484111309051514, + "step": 3834 + }, + { + "epoch": 53.265618173875055, + "grad_norm": 0.24652884900569916, + "learning_rate": 0.0006, + "loss": 3.5631136894226074, + "step": 3835 + }, + { + "epoch": 53.27959807776322, + "grad_norm": 0.23740890622138977, + "learning_rate": 0.0006, + "loss": 3.6234607696533203, + "step": 3836 + }, + { + "epoch": 53.293577981651374, + "grad_norm": 0.2463800311088562, + "learning_rate": 0.0006, + "loss": 3.5578083992004395, + "step": 3837 + }, + { + "epoch": 53.30755788553954, + "grad_norm": 0.23402568697929382, + "learning_rate": 0.0006, + "loss": 3.559845209121704, + "step": 3838 + }, + { + "epoch": 53.3215377894277, + "grad_norm": 0.2539580762386322, + "learning_rate": 0.0006, + "loss": 3.5863685607910156, + "step": 3839 + }, + { + "epoch": 53.33551769331586, + "grad_norm": 0.24994857609272003, + "learning_rate": 0.0006, + "loss": 3.5758700370788574, + "step": 3840 + }, + { + "epoch": 53.34949759720402, + "grad_norm": 0.21340647339820862, + "learning_rate": 0.0006, + "loss": 3.588602066040039, + "step": 3841 + }, + { + "epoch": 53.36347750109218, + "grad_norm": 0.2029065042734146, + "learning_rate": 0.0006, + "loss": 3.58594012260437, + "step": 3842 + }, + { + "epoch": 53.37745740498034, + "grad_norm": 0.20266403257846832, + "learning_rate": 0.0006, + "loss": 3.5906057357788086, + "step": 3843 + }, + { + "epoch": 53.391437308868504, + "grad_norm": 0.19940714538097382, + "learning_rate": 0.0006, + "loss": 3.5458335876464844, + "step": 3844 + }, + { + "epoch": 53.40541721275666, + "grad_norm": 0.21295064687728882, + "learning_rate": 0.0006, + "loss": 3.5589025020599365, + "step": 3845 + }, + { + "epoch": 53.419397116644824, + "grad_norm": 0.2150672823190689, + "learning_rate": 0.0006, + "loss": 3.5907669067382812, + "step": 3846 + }, + { + "epoch": 53.43337702053299, + "grad_norm": 0.21469077467918396, + "learning_rate": 0.0006, + "loss": 3.5403499603271484, + "step": 3847 + }, + { + "epoch": 53.44735692442114, + "grad_norm": 0.20485323667526245, + "learning_rate": 0.0006, + "loss": 3.5634326934814453, + "step": 3848 + }, + { + "epoch": 53.46133682830931, + "grad_norm": 0.1981327086687088, + "learning_rate": 0.0006, + "loss": 3.579385280609131, + "step": 3849 + }, + { + "epoch": 53.47531673219746, + "grad_norm": 0.1898331642150879, + "learning_rate": 0.0006, + "loss": 3.5824122428894043, + "step": 3850 + }, + { + "epoch": 53.489296636085626, + "grad_norm": 0.18228355050086975, + "learning_rate": 0.0006, + "loss": 3.533255100250244, + "step": 3851 + }, + { + "epoch": 53.50327653997379, + "grad_norm": 0.1803922951221466, + "learning_rate": 0.0006, + "loss": 3.589881420135498, + "step": 3852 + }, + { + "epoch": 53.517256443861946, + "grad_norm": 0.19590361416339874, + "learning_rate": 0.0006, + "loss": 3.599487066268921, + "step": 3853 + }, + { + "epoch": 53.53123634775011, + "grad_norm": 0.1935775727033615, + "learning_rate": 0.0006, + "loss": 3.5769765377044678, + "step": 3854 + }, + { + "epoch": 53.54521625163827, + "grad_norm": 0.1790810525417328, + "learning_rate": 0.0006, + "loss": 3.594104290008545, + "step": 3855 + }, + { + "epoch": 53.55919615552643, + "grad_norm": 0.17993320524692535, + "learning_rate": 0.0006, + "loss": 3.555650234222412, + "step": 3856 + }, + { + "epoch": 53.57317605941459, + "grad_norm": 0.19114883244037628, + "learning_rate": 0.0006, + "loss": 3.599574089050293, + "step": 3857 + }, + { + "epoch": 53.58715596330275, + "grad_norm": 0.18493886291980743, + "learning_rate": 0.0006, + "loss": 3.555177927017212, + "step": 3858 + }, + { + "epoch": 53.60113586719091, + "grad_norm": 0.19346027076244354, + "learning_rate": 0.0006, + "loss": 3.601219654083252, + "step": 3859 + }, + { + "epoch": 53.615115771079076, + "grad_norm": 0.2002234011888504, + "learning_rate": 0.0006, + "loss": 3.5614418983459473, + "step": 3860 + }, + { + "epoch": 53.62909567496723, + "grad_norm": 0.17705366015434265, + "learning_rate": 0.0006, + "loss": 3.587432384490967, + "step": 3861 + }, + { + "epoch": 53.643075578855395, + "grad_norm": 0.19825726747512817, + "learning_rate": 0.0006, + "loss": 3.570539951324463, + "step": 3862 + }, + { + "epoch": 53.65705548274356, + "grad_norm": 0.2038952112197876, + "learning_rate": 0.0006, + "loss": 3.575758934020996, + "step": 3863 + }, + { + "epoch": 53.671035386631715, + "grad_norm": 0.21109119057655334, + "learning_rate": 0.0006, + "loss": 3.6013951301574707, + "step": 3864 + }, + { + "epoch": 53.68501529051988, + "grad_norm": 0.21738514304161072, + "learning_rate": 0.0006, + "loss": 3.567424774169922, + "step": 3865 + }, + { + "epoch": 53.69899519440804, + "grad_norm": 0.214813694357872, + "learning_rate": 0.0006, + "loss": 3.599733352661133, + "step": 3866 + }, + { + "epoch": 53.7129750982962, + "grad_norm": 0.20838409662246704, + "learning_rate": 0.0006, + "loss": 3.595839738845825, + "step": 3867 + }, + { + "epoch": 53.72695500218436, + "grad_norm": 0.2088911384344101, + "learning_rate": 0.0006, + "loss": 3.6030569076538086, + "step": 3868 + }, + { + "epoch": 53.74093490607252, + "grad_norm": 0.22705569863319397, + "learning_rate": 0.0006, + "loss": 3.5876665115356445, + "step": 3869 + }, + { + "epoch": 53.75491480996068, + "grad_norm": 0.22327932715415955, + "learning_rate": 0.0006, + "loss": 3.5555529594421387, + "step": 3870 + }, + { + "epoch": 53.768894713848844, + "grad_norm": 0.2092375010251999, + "learning_rate": 0.0006, + "loss": 3.599871873855591, + "step": 3871 + }, + { + "epoch": 53.782874617737, + "grad_norm": 0.20672307908535004, + "learning_rate": 0.0006, + "loss": 3.598846435546875, + "step": 3872 + }, + { + "epoch": 53.796854521625164, + "grad_norm": 0.2090507596731186, + "learning_rate": 0.0006, + "loss": 3.564012050628662, + "step": 3873 + }, + { + "epoch": 53.81083442551333, + "grad_norm": 0.2044386863708496, + "learning_rate": 0.0006, + "loss": 3.585221529006958, + "step": 3874 + }, + { + "epoch": 53.824814329401484, + "grad_norm": 0.2065548598766327, + "learning_rate": 0.0006, + "loss": 3.595351457595825, + "step": 3875 + }, + { + "epoch": 53.83879423328965, + "grad_norm": 0.22895927727222443, + "learning_rate": 0.0006, + "loss": 3.5720505714416504, + "step": 3876 + }, + { + "epoch": 53.8527741371778, + "grad_norm": 0.22099260985851288, + "learning_rate": 0.0006, + "loss": 3.572587251663208, + "step": 3877 + }, + { + "epoch": 53.86675404106597, + "grad_norm": 0.19928759336471558, + "learning_rate": 0.0006, + "loss": 3.5641839504241943, + "step": 3878 + }, + { + "epoch": 53.88073394495413, + "grad_norm": 0.2735077440738678, + "learning_rate": 0.0006, + "loss": 3.575535774230957, + "step": 3879 + }, + { + "epoch": 53.89471384884229, + "grad_norm": 0.2642554044723511, + "learning_rate": 0.0006, + "loss": 3.5993123054504395, + "step": 3880 + }, + { + "epoch": 53.90869375273045, + "grad_norm": 0.22406205534934998, + "learning_rate": 0.0006, + "loss": 3.5968177318573, + "step": 3881 + }, + { + "epoch": 53.92267365661861, + "grad_norm": 0.22148431837558746, + "learning_rate": 0.0006, + "loss": 3.5668797492980957, + "step": 3882 + }, + { + "epoch": 53.93665356050677, + "grad_norm": 0.20805056393146515, + "learning_rate": 0.0006, + "loss": 3.60849666595459, + "step": 3883 + }, + { + "epoch": 53.95063346439493, + "grad_norm": 0.18656247854232788, + "learning_rate": 0.0006, + "loss": 3.5883405208587646, + "step": 3884 + }, + { + "epoch": 53.964613368283096, + "grad_norm": 0.19937767088413239, + "learning_rate": 0.0006, + "loss": 3.5897698402404785, + "step": 3885 + }, + { + "epoch": 53.97859327217125, + "grad_norm": 0.19680732488632202, + "learning_rate": 0.0006, + "loss": 3.568530559539795, + "step": 3886 + }, + { + "epoch": 53.992573176059416, + "grad_norm": 0.218981072306633, + "learning_rate": 0.0006, + "loss": 3.6194474697113037, + "step": 3887 + }, + { + "epoch": 54.0, + "grad_norm": 0.26408281922340393, + "learning_rate": 0.0006, + "loss": 3.5224976539611816, + "step": 3888 + }, + { + "epoch": 54.0, + "eval_loss": 3.983997106552124, + "eval_runtime": 44.9507, + "eval_samples_per_second": 54.326, + "eval_steps_per_second": 3.404, + "step": 3888 + }, + { + "epoch": 54.01397990388816, + "grad_norm": 0.2230917066335678, + "learning_rate": 0.0006, + "loss": 3.578058958053589, + "step": 3889 + }, + { + "epoch": 54.02795980777632, + "grad_norm": 0.23055201768875122, + "learning_rate": 0.0006, + "loss": 3.549612283706665, + "step": 3890 + }, + { + "epoch": 54.04193971166448, + "grad_norm": 0.23317518830299377, + "learning_rate": 0.0006, + "loss": 3.5662591457366943, + "step": 3891 + }, + { + "epoch": 54.05591961555265, + "grad_norm": 0.27022141218185425, + "learning_rate": 0.0006, + "loss": 3.547062873840332, + "step": 3892 + }, + { + "epoch": 54.0698995194408, + "grad_norm": 0.2665329873561859, + "learning_rate": 0.0006, + "loss": 3.540881633758545, + "step": 3893 + }, + { + "epoch": 54.083879423328966, + "grad_norm": 0.23968365788459778, + "learning_rate": 0.0006, + "loss": 3.574781894683838, + "step": 3894 + }, + { + "epoch": 54.09785932721712, + "grad_norm": 0.22174887359142303, + "learning_rate": 0.0006, + "loss": 3.514077663421631, + "step": 3895 + }, + { + "epoch": 54.111839231105286, + "grad_norm": 0.24605485796928406, + "learning_rate": 0.0006, + "loss": 3.534174919128418, + "step": 3896 + }, + { + "epoch": 54.12581913499345, + "grad_norm": 0.22874566912651062, + "learning_rate": 0.0006, + "loss": 3.574282169342041, + "step": 3897 + }, + { + "epoch": 54.139799038881605, + "grad_norm": 0.2113833874464035, + "learning_rate": 0.0006, + "loss": 3.548687696456909, + "step": 3898 + }, + { + "epoch": 54.15377894276977, + "grad_norm": 0.20756855607032776, + "learning_rate": 0.0006, + "loss": 3.556060791015625, + "step": 3899 + }, + { + "epoch": 54.16775884665793, + "grad_norm": 0.2070261538028717, + "learning_rate": 0.0006, + "loss": 3.5585689544677734, + "step": 3900 + }, + { + "epoch": 54.18173875054609, + "grad_norm": 0.20014794170856476, + "learning_rate": 0.0006, + "loss": 3.5898427963256836, + "step": 3901 + }, + { + "epoch": 54.19571865443425, + "grad_norm": 0.19851888716220856, + "learning_rate": 0.0006, + "loss": 3.564826011657715, + "step": 3902 + }, + { + "epoch": 54.20969855832241, + "grad_norm": 0.20333127677440643, + "learning_rate": 0.0006, + "loss": 3.540660858154297, + "step": 3903 + }, + { + "epoch": 54.22367846221057, + "grad_norm": 0.20291075110435486, + "learning_rate": 0.0006, + "loss": 3.544628143310547, + "step": 3904 + }, + { + "epoch": 54.237658366098735, + "grad_norm": 0.2055949866771698, + "learning_rate": 0.0006, + "loss": 3.547478675842285, + "step": 3905 + }, + { + "epoch": 54.25163826998689, + "grad_norm": 0.20305688679218292, + "learning_rate": 0.0006, + "loss": 3.5793099403381348, + "step": 3906 + }, + { + "epoch": 54.265618173875055, + "grad_norm": 0.21053043007850647, + "learning_rate": 0.0006, + "loss": 3.529263973236084, + "step": 3907 + }, + { + "epoch": 54.27959807776322, + "grad_norm": 0.2461051046848297, + "learning_rate": 0.0006, + "loss": 3.598266124725342, + "step": 3908 + }, + { + "epoch": 54.293577981651374, + "grad_norm": 0.25074276328086853, + "learning_rate": 0.0006, + "loss": 3.557170867919922, + "step": 3909 + }, + { + "epoch": 54.30755788553954, + "grad_norm": 0.23321498930454254, + "learning_rate": 0.0006, + "loss": 3.5532279014587402, + "step": 3910 + }, + { + "epoch": 54.3215377894277, + "grad_norm": 0.19062374532222748, + "learning_rate": 0.0006, + "loss": 3.5718722343444824, + "step": 3911 + }, + { + "epoch": 54.33551769331586, + "grad_norm": 0.22571852803230286, + "learning_rate": 0.0006, + "loss": 3.539036750793457, + "step": 3912 + }, + { + "epoch": 54.34949759720402, + "grad_norm": 0.23314784467220306, + "learning_rate": 0.0006, + "loss": 3.5444631576538086, + "step": 3913 + }, + { + "epoch": 54.36347750109218, + "grad_norm": 0.22334037721157074, + "learning_rate": 0.0006, + "loss": 3.5567970275878906, + "step": 3914 + }, + { + "epoch": 54.37745740498034, + "grad_norm": 0.21900276839733124, + "learning_rate": 0.0006, + "loss": 3.600113868713379, + "step": 3915 + }, + { + "epoch": 54.391437308868504, + "grad_norm": 0.20166733860969543, + "learning_rate": 0.0006, + "loss": 3.54038667678833, + "step": 3916 + }, + { + "epoch": 54.40541721275666, + "grad_norm": 0.21886761486530304, + "learning_rate": 0.0006, + "loss": 3.5708651542663574, + "step": 3917 + }, + { + "epoch": 54.419397116644824, + "grad_norm": 0.26383060216903687, + "learning_rate": 0.0006, + "loss": 3.5572509765625, + "step": 3918 + }, + { + "epoch": 54.43337702053299, + "grad_norm": 0.26116663217544556, + "learning_rate": 0.0006, + "loss": 3.528968334197998, + "step": 3919 + }, + { + "epoch": 54.44735692442114, + "grad_norm": 0.20640771090984344, + "learning_rate": 0.0006, + "loss": 3.587789535522461, + "step": 3920 + }, + { + "epoch": 54.46133682830931, + "grad_norm": 0.23454350233078003, + "learning_rate": 0.0006, + "loss": 3.586834192276001, + "step": 3921 + }, + { + "epoch": 54.47531673219746, + "grad_norm": 0.24828442931175232, + "learning_rate": 0.0006, + "loss": 3.5884881019592285, + "step": 3922 + }, + { + "epoch": 54.489296636085626, + "grad_norm": 0.23654282093048096, + "learning_rate": 0.0006, + "loss": 3.5754570960998535, + "step": 3923 + }, + { + "epoch": 54.50327653997379, + "grad_norm": 0.22721099853515625, + "learning_rate": 0.0006, + "loss": 3.5575859546661377, + "step": 3924 + }, + { + "epoch": 54.517256443861946, + "grad_norm": 0.2157498002052307, + "learning_rate": 0.0006, + "loss": 3.5929436683654785, + "step": 3925 + }, + { + "epoch": 54.53123634775011, + "grad_norm": 0.21604257822036743, + "learning_rate": 0.0006, + "loss": 3.5788726806640625, + "step": 3926 + }, + { + "epoch": 54.54521625163827, + "grad_norm": 0.22310106456279755, + "learning_rate": 0.0006, + "loss": 3.5873899459838867, + "step": 3927 + }, + { + "epoch": 54.55919615552643, + "grad_norm": 0.2121969312429428, + "learning_rate": 0.0006, + "loss": 3.575186252593994, + "step": 3928 + }, + { + "epoch": 54.57317605941459, + "grad_norm": 0.19073615968227386, + "learning_rate": 0.0006, + "loss": 3.5963356494903564, + "step": 3929 + }, + { + "epoch": 54.58715596330275, + "grad_norm": 0.18745607137680054, + "learning_rate": 0.0006, + "loss": 3.593679428100586, + "step": 3930 + }, + { + "epoch": 54.60113586719091, + "grad_norm": 0.19518259167671204, + "learning_rate": 0.0006, + "loss": 3.5730791091918945, + "step": 3931 + }, + { + "epoch": 54.615115771079076, + "grad_norm": 0.20948481559753418, + "learning_rate": 0.0006, + "loss": 3.5646820068359375, + "step": 3932 + }, + { + "epoch": 54.62909567496723, + "grad_norm": 0.1929631531238556, + "learning_rate": 0.0006, + "loss": 3.5550060272216797, + "step": 3933 + }, + { + "epoch": 54.643075578855395, + "grad_norm": 0.2104327380657196, + "learning_rate": 0.0006, + "loss": 3.5774357318878174, + "step": 3934 + }, + { + "epoch": 54.65705548274356, + "grad_norm": 0.1952148675918579, + "learning_rate": 0.0006, + "loss": 3.58856201171875, + "step": 3935 + }, + { + "epoch": 54.671035386631715, + "grad_norm": 0.17762340605258942, + "learning_rate": 0.0006, + "loss": 3.5324528217315674, + "step": 3936 + }, + { + "epoch": 54.68501529051988, + "grad_norm": 0.18349695205688477, + "learning_rate": 0.0006, + "loss": 3.5663890838623047, + "step": 3937 + }, + { + "epoch": 54.69899519440804, + "grad_norm": 0.2038232684135437, + "learning_rate": 0.0006, + "loss": 3.5811679363250732, + "step": 3938 + }, + { + "epoch": 54.7129750982962, + "grad_norm": 0.2431754469871521, + "learning_rate": 0.0006, + "loss": 3.56833553314209, + "step": 3939 + }, + { + "epoch": 54.72695500218436, + "grad_norm": 0.27498456835746765, + "learning_rate": 0.0006, + "loss": 3.5977981090545654, + "step": 3940 + }, + { + "epoch": 54.74093490607252, + "grad_norm": 0.20809921622276306, + "learning_rate": 0.0006, + "loss": 3.57193922996521, + "step": 3941 + }, + { + "epoch": 54.75491480996068, + "grad_norm": 0.18073450028896332, + "learning_rate": 0.0006, + "loss": 3.5610151290893555, + "step": 3942 + }, + { + "epoch": 54.768894713848844, + "grad_norm": 0.194604754447937, + "learning_rate": 0.0006, + "loss": 3.5716047286987305, + "step": 3943 + }, + { + "epoch": 54.782874617737, + "grad_norm": 0.20566268265247345, + "learning_rate": 0.0006, + "loss": 3.578401565551758, + "step": 3944 + }, + { + "epoch": 54.796854521625164, + "grad_norm": 0.21028153598308563, + "learning_rate": 0.0006, + "loss": 3.610511064529419, + "step": 3945 + }, + { + "epoch": 54.81083442551333, + "grad_norm": 0.21413563191890717, + "learning_rate": 0.0006, + "loss": 3.601574659347534, + "step": 3946 + }, + { + "epoch": 54.824814329401484, + "grad_norm": 0.2137378603219986, + "learning_rate": 0.0006, + "loss": 3.603997230529785, + "step": 3947 + }, + { + "epoch": 54.83879423328965, + "grad_norm": 0.2162058800458908, + "learning_rate": 0.0006, + "loss": 3.5829391479492188, + "step": 3948 + }, + { + "epoch": 54.8527741371778, + "grad_norm": 0.21700997650623322, + "learning_rate": 0.0006, + "loss": 3.595317840576172, + "step": 3949 + }, + { + "epoch": 54.86675404106597, + "grad_norm": 0.20864669978618622, + "learning_rate": 0.0006, + "loss": 3.601891040802002, + "step": 3950 + }, + { + "epoch": 54.88073394495413, + "grad_norm": 0.19780485332012177, + "learning_rate": 0.0006, + "loss": 3.567460775375366, + "step": 3951 + }, + { + "epoch": 54.89471384884229, + "grad_norm": 0.2017168402671814, + "learning_rate": 0.0006, + "loss": 3.5737192630767822, + "step": 3952 + }, + { + "epoch": 54.90869375273045, + "grad_norm": 0.22847825288772583, + "learning_rate": 0.0006, + "loss": 3.60937762260437, + "step": 3953 + }, + { + "epoch": 54.92267365661861, + "grad_norm": 0.23698270320892334, + "learning_rate": 0.0006, + "loss": 3.6013574600219727, + "step": 3954 + }, + { + "epoch": 54.93665356050677, + "grad_norm": 0.238611102104187, + "learning_rate": 0.0006, + "loss": 3.5689988136291504, + "step": 3955 + }, + { + "epoch": 54.95063346439493, + "grad_norm": 0.2680057883262634, + "learning_rate": 0.0006, + "loss": 3.5650172233581543, + "step": 3956 + }, + { + "epoch": 54.964613368283096, + "grad_norm": 0.25712481141090393, + "learning_rate": 0.0006, + "loss": 3.576777935028076, + "step": 3957 + }, + { + "epoch": 54.97859327217125, + "grad_norm": 0.2232409566640854, + "learning_rate": 0.0006, + "loss": 3.583169937133789, + "step": 3958 + }, + { + "epoch": 54.992573176059416, + "grad_norm": 0.21233153343200684, + "learning_rate": 0.0006, + "loss": 3.602219581604004, + "step": 3959 + }, + { + "epoch": 55.0, + "grad_norm": 0.24345774948596954, + "learning_rate": 0.0006, + "loss": 3.5118026733398438, + "step": 3960 + }, + { + "epoch": 55.0, + "eval_loss": 3.9819064140319824, + "eval_runtime": 44.6627, + "eval_samples_per_second": 54.677, + "eval_steps_per_second": 3.426, + "step": 3960 + }, + { + "epoch": 55.01397990388816, + "grad_norm": 0.229562908411026, + "learning_rate": 0.0006, + "loss": 3.5591073036193848, + "step": 3961 + }, + { + "epoch": 55.02795980777632, + "grad_norm": 0.21731624007225037, + "learning_rate": 0.0006, + "loss": 3.5544848442077637, + "step": 3962 + }, + { + "epoch": 55.04193971166448, + "grad_norm": 0.23528429865837097, + "learning_rate": 0.0006, + "loss": 3.5654311180114746, + "step": 3963 + }, + { + "epoch": 55.05591961555265, + "grad_norm": 0.23147839307785034, + "learning_rate": 0.0006, + "loss": 3.537006378173828, + "step": 3964 + }, + { + "epoch": 55.0698995194408, + "grad_norm": 0.22218112647533417, + "learning_rate": 0.0006, + "loss": 3.5218982696533203, + "step": 3965 + }, + { + "epoch": 55.083879423328966, + "grad_norm": 0.20697443187236786, + "learning_rate": 0.0006, + "loss": 3.5623579025268555, + "step": 3966 + }, + { + "epoch": 55.09785932721712, + "grad_norm": 0.2108476608991623, + "learning_rate": 0.0006, + "loss": 3.528214454650879, + "step": 3967 + }, + { + "epoch": 55.111839231105286, + "grad_norm": 0.21664242446422577, + "learning_rate": 0.0006, + "loss": 3.5429646968841553, + "step": 3968 + }, + { + "epoch": 55.12581913499345, + "grad_norm": 0.21359260380268097, + "learning_rate": 0.0006, + "loss": 3.5873513221740723, + "step": 3969 + }, + { + "epoch": 55.139799038881605, + "grad_norm": 0.23289452493190765, + "learning_rate": 0.0006, + "loss": 3.5551905632019043, + "step": 3970 + }, + { + "epoch": 55.15377894276977, + "grad_norm": 0.25835689902305603, + "learning_rate": 0.0006, + "loss": 3.5380427837371826, + "step": 3971 + }, + { + "epoch": 55.16775884665793, + "grad_norm": 0.25449255108833313, + "learning_rate": 0.0006, + "loss": 3.5276808738708496, + "step": 3972 + }, + { + "epoch": 55.18173875054609, + "grad_norm": 0.2472638338804245, + "learning_rate": 0.0006, + "loss": 3.539194107055664, + "step": 3973 + }, + { + "epoch": 55.19571865443425, + "grad_norm": 0.21743768453598022, + "learning_rate": 0.0006, + "loss": 3.557185173034668, + "step": 3974 + }, + { + "epoch": 55.20969855832241, + "grad_norm": 0.22787386178970337, + "learning_rate": 0.0006, + "loss": 3.581993579864502, + "step": 3975 + }, + { + "epoch": 55.22367846221057, + "grad_norm": 0.2332824170589447, + "learning_rate": 0.0006, + "loss": 3.5439846515655518, + "step": 3976 + }, + { + "epoch": 55.237658366098735, + "grad_norm": 0.2054908573627472, + "learning_rate": 0.0006, + "loss": 3.5528793334960938, + "step": 3977 + }, + { + "epoch": 55.25163826998689, + "grad_norm": 0.2087554633617401, + "learning_rate": 0.0006, + "loss": 3.536464214324951, + "step": 3978 + }, + { + "epoch": 55.265618173875055, + "grad_norm": 0.22214409708976746, + "learning_rate": 0.0006, + "loss": 3.56184458732605, + "step": 3979 + }, + { + "epoch": 55.27959807776322, + "grad_norm": 0.23214097321033478, + "learning_rate": 0.0006, + "loss": 3.5560522079467773, + "step": 3980 + }, + { + "epoch": 55.293577981651374, + "grad_norm": 0.23317331075668335, + "learning_rate": 0.0006, + "loss": 3.5433850288391113, + "step": 3981 + }, + { + "epoch": 55.30755788553954, + "grad_norm": 0.2303774058818817, + "learning_rate": 0.0006, + "loss": 3.5505576133728027, + "step": 3982 + }, + { + "epoch": 55.3215377894277, + "grad_norm": 0.2400730401277542, + "learning_rate": 0.0006, + "loss": 3.557952404022217, + "step": 3983 + }, + { + "epoch": 55.33551769331586, + "grad_norm": 0.23933538794517517, + "learning_rate": 0.0006, + "loss": 3.536656141281128, + "step": 3984 + }, + { + "epoch": 55.34949759720402, + "grad_norm": 0.23796266317367554, + "learning_rate": 0.0006, + "loss": 3.5777554512023926, + "step": 3985 + }, + { + "epoch": 55.36347750109218, + "grad_norm": 0.26078858971595764, + "learning_rate": 0.0006, + "loss": 3.549121379852295, + "step": 3986 + }, + { + "epoch": 55.37745740498034, + "grad_norm": 0.22726459801197052, + "learning_rate": 0.0006, + "loss": 3.605684518814087, + "step": 3987 + }, + { + "epoch": 55.391437308868504, + "grad_norm": 0.19872179627418518, + "learning_rate": 0.0006, + "loss": 3.5501739978790283, + "step": 3988 + }, + { + "epoch": 55.40541721275666, + "grad_norm": 0.2027827352285385, + "learning_rate": 0.0006, + "loss": 3.625922441482544, + "step": 3989 + }, + { + "epoch": 55.419397116644824, + "grad_norm": 0.24207144975662231, + "learning_rate": 0.0006, + "loss": 3.595451831817627, + "step": 3990 + }, + { + "epoch": 55.43337702053299, + "grad_norm": 0.23449009656906128, + "learning_rate": 0.0006, + "loss": 3.577167510986328, + "step": 3991 + }, + { + "epoch": 55.44735692442114, + "grad_norm": 0.22529540956020355, + "learning_rate": 0.0006, + "loss": 3.5585317611694336, + "step": 3992 + }, + { + "epoch": 55.46133682830931, + "grad_norm": 0.2354331612586975, + "learning_rate": 0.0006, + "loss": 3.574819564819336, + "step": 3993 + }, + { + "epoch": 55.47531673219746, + "grad_norm": 0.2251061201095581, + "learning_rate": 0.0006, + "loss": 3.580498695373535, + "step": 3994 + }, + { + "epoch": 55.489296636085626, + "grad_norm": 0.22107349336147308, + "learning_rate": 0.0006, + "loss": 3.578591823577881, + "step": 3995 + }, + { + "epoch": 55.50327653997379, + "grad_norm": 0.24686408042907715, + "learning_rate": 0.0006, + "loss": 3.541625499725342, + "step": 3996 + }, + { + "epoch": 55.517256443861946, + "grad_norm": 0.23731260001659393, + "learning_rate": 0.0006, + "loss": 3.5508079528808594, + "step": 3997 + }, + { + "epoch": 55.53123634775011, + "grad_norm": 0.21246901154518127, + "learning_rate": 0.0006, + "loss": 3.569500207901001, + "step": 3998 + }, + { + "epoch": 55.54521625163827, + "grad_norm": 0.21369415521621704, + "learning_rate": 0.0006, + "loss": 3.546938896179199, + "step": 3999 + }, + { + "epoch": 55.55919615552643, + "grad_norm": 0.2102644443511963, + "learning_rate": 0.0006, + "loss": 3.5842084884643555, + "step": 4000 + }, + { + "epoch": 55.57317605941459, + "grad_norm": 0.2355998456478119, + "learning_rate": 0.0006, + "loss": 3.5493381023406982, + "step": 4001 + }, + { + "epoch": 55.58715596330275, + "grad_norm": 0.2670288681983948, + "learning_rate": 0.0006, + "loss": 3.5909032821655273, + "step": 4002 + }, + { + "epoch": 55.60113586719091, + "grad_norm": 0.2958407998085022, + "learning_rate": 0.0006, + "loss": 3.624906063079834, + "step": 4003 + }, + { + "epoch": 55.615115771079076, + "grad_norm": 0.2948441505432129, + "learning_rate": 0.0006, + "loss": 3.553528070449829, + "step": 4004 + }, + { + "epoch": 55.62909567496723, + "grad_norm": 0.24873173236846924, + "learning_rate": 0.0006, + "loss": 3.5851495265960693, + "step": 4005 + }, + { + "epoch": 55.643075578855395, + "grad_norm": 0.22191756963729858, + "learning_rate": 0.0006, + "loss": 3.556459903717041, + "step": 4006 + }, + { + "epoch": 55.65705548274356, + "grad_norm": 0.22677776217460632, + "learning_rate": 0.0006, + "loss": 3.579428195953369, + "step": 4007 + }, + { + "epoch": 55.671035386631715, + "grad_norm": 0.22263763844966888, + "learning_rate": 0.0006, + "loss": 3.5878806114196777, + "step": 4008 + }, + { + "epoch": 55.68501529051988, + "grad_norm": 0.24498602747917175, + "learning_rate": 0.0006, + "loss": 3.5989317893981934, + "step": 4009 + }, + { + "epoch": 55.69899519440804, + "grad_norm": 0.26294007897377014, + "learning_rate": 0.0006, + "loss": 3.5866756439208984, + "step": 4010 + }, + { + "epoch": 55.7129750982962, + "grad_norm": 0.22105370461940765, + "learning_rate": 0.0006, + "loss": 3.594365119934082, + "step": 4011 + }, + { + "epoch": 55.72695500218436, + "grad_norm": 0.20973286032676697, + "learning_rate": 0.0006, + "loss": 3.551156997680664, + "step": 4012 + }, + { + "epoch": 55.74093490607252, + "grad_norm": 0.2123304158449173, + "learning_rate": 0.0006, + "loss": 3.587405204772949, + "step": 4013 + }, + { + "epoch": 55.75491480996068, + "grad_norm": 0.22134795784950256, + "learning_rate": 0.0006, + "loss": 3.59114146232605, + "step": 4014 + }, + { + "epoch": 55.768894713848844, + "grad_norm": 0.20822957158088684, + "learning_rate": 0.0006, + "loss": 3.5910749435424805, + "step": 4015 + }, + { + "epoch": 55.782874617737, + "grad_norm": 0.22392229735851288, + "learning_rate": 0.0006, + "loss": 3.5800669193267822, + "step": 4016 + }, + { + "epoch": 55.796854521625164, + "grad_norm": 0.2214914709329605, + "learning_rate": 0.0006, + "loss": 3.5553741455078125, + "step": 4017 + }, + { + "epoch": 55.81083442551333, + "grad_norm": 0.1993025690317154, + "learning_rate": 0.0006, + "loss": 3.567298412322998, + "step": 4018 + }, + { + "epoch": 55.824814329401484, + "grad_norm": 0.21043774485588074, + "learning_rate": 0.0006, + "loss": 3.537358045578003, + "step": 4019 + }, + { + "epoch": 55.83879423328965, + "grad_norm": 0.18501818180084229, + "learning_rate": 0.0006, + "loss": 3.5971930027008057, + "step": 4020 + }, + { + "epoch": 55.8527741371778, + "grad_norm": 0.19626867771148682, + "learning_rate": 0.0006, + "loss": 3.563570976257324, + "step": 4021 + }, + { + "epoch": 55.86675404106597, + "grad_norm": 0.19328820705413818, + "learning_rate": 0.0006, + "loss": 3.600377082824707, + "step": 4022 + }, + { + "epoch": 55.88073394495413, + "grad_norm": 0.2013237327337265, + "learning_rate": 0.0006, + "loss": 3.5916812419891357, + "step": 4023 + }, + { + "epoch": 55.89471384884229, + "grad_norm": 0.22775673866271973, + "learning_rate": 0.0006, + "loss": 3.5572638511657715, + "step": 4024 + }, + { + "epoch": 55.90869375273045, + "grad_norm": 0.2452211230993271, + "learning_rate": 0.0006, + "loss": 3.54378080368042, + "step": 4025 + }, + { + "epoch": 55.92267365661861, + "grad_norm": 0.23337189853191376, + "learning_rate": 0.0006, + "loss": 3.5853466987609863, + "step": 4026 + }, + { + "epoch": 55.93665356050677, + "grad_norm": 0.20073719322681427, + "learning_rate": 0.0006, + "loss": 3.5793843269348145, + "step": 4027 + }, + { + "epoch": 55.95063346439493, + "grad_norm": 0.1963811218738556, + "learning_rate": 0.0006, + "loss": 3.5783073902130127, + "step": 4028 + }, + { + "epoch": 55.964613368283096, + "grad_norm": 0.19921033084392548, + "learning_rate": 0.0006, + "loss": 3.5455331802368164, + "step": 4029 + }, + { + "epoch": 55.97859327217125, + "grad_norm": 0.22151921689510345, + "learning_rate": 0.0006, + "loss": 3.551476001739502, + "step": 4030 + }, + { + "epoch": 55.992573176059416, + "grad_norm": 0.2636640965938568, + "learning_rate": 0.0006, + "loss": 3.5859174728393555, + "step": 4031 + }, + { + "epoch": 56.0, + "grad_norm": 0.282680869102478, + "learning_rate": 0.0006, + "loss": 3.5818469524383545, + "step": 4032 + }, + { + "epoch": 56.0, + "eval_loss": 3.982189178466797, + "eval_runtime": 44.2577, + "eval_samples_per_second": 55.177, + "eval_steps_per_second": 3.457, + "step": 4032 + }, + { + "epoch": 56.01397990388816, + "grad_norm": 0.23316597938537598, + "learning_rate": 0.0006, + "loss": 3.5500292778015137, + "step": 4033 + }, + { + "epoch": 56.02795980777632, + "grad_norm": 0.22836777567863464, + "learning_rate": 0.0006, + "loss": 3.5661063194274902, + "step": 4034 + }, + { + "epoch": 56.04193971166448, + "grad_norm": 0.2607800364494324, + "learning_rate": 0.0006, + "loss": 3.5496177673339844, + "step": 4035 + }, + { + "epoch": 56.05591961555265, + "grad_norm": 0.2620518207550049, + "learning_rate": 0.0006, + "loss": 3.562621831893921, + "step": 4036 + }, + { + "epoch": 56.0698995194408, + "grad_norm": 0.2344953864812851, + "learning_rate": 0.0006, + "loss": 3.5371389389038086, + "step": 4037 + }, + { + "epoch": 56.083879423328966, + "grad_norm": 0.2523435950279236, + "learning_rate": 0.0006, + "loss": 3.565216541290283, + "step": 4038 + }, + { + "epoch": 56.09785932721712, + "grad_norm": 0.26315048336982727, + "learning_rate": 0.0006, + "loss": 3.5510857105255127, + "step": 4039 + }, + { + "epoch": 56.111839231105286, + "grad_norm": 0.256817102432251, + "learning_rate": 0.0006, + "loss": 3.576132297515869, + "step": 4040 + }, + { + "epoch": 56.12581913499345, + "grad_norm": 0.25146403908729553, + "learning_rate": 0.0006, + "loss": 3.550875663757324, + "step": 4041 + }, + { + "epoch": 56.139799038881605, + "grad_norm": 0.2471698820590973, + "learning_rate": 0.0006, + "loss": 3.5574288368225098, + "step": 4042 + }, + { + "epoch": 56.15377894276977, + "grad_norm": 0.2324669510126114, + "learning_rate": 0.0006, + "loss": 3.524637222290039, + "step": 4043 + }, + { + "epoch": 56.16775884665793, + "grad_norm": 0.21824438869953156, + "learning_rate": 0.0006, + "loss": 3.563664436340332, + "step": 4044 + }, + { + "epoch": 56.18173875054609, + "grad_norm": 0.2381063550710678, + "learning_rate": 0.0006, + "loss": 3.573061943054199, + "step": 4045 + }, + { + "epoch": 56.19571865443425, + "grad_norm": 0.23728328943252563, + "learning_rate": 0.0006, + "loss": 3.5563716888427734, + "step": 4046 + }, + { + "epoch": 56.20969855832241, + "grad_norm": 0.20998933911323547, + "learning_rate": 0.0006, + "loss": 3.540152072906494, + "step": 4047 + }, + { + "epoch": 56.22367846221057, + "grad_norm": 0.2249690741300583, + "learning_rate": 0.0006, + "loss": 3.5699682235717773, + "step": 4048 + }, + { + "epoch": 56.237658366098735, + "grad_norm": 0.22615988552570343, + "learning_rate": 0.0006, + "loss": 3.5604777336120605, + "step": 4049 + }, + { + "epoch": 56.25163826998689, + "grad_norm": 0.20918409526348114, + "learning_rate": 0.0006, + "loss": 3.5612001419067383, + "step": 4050 + }, + { + "epoch": 56.265618173875055, + "grad_norm": 0.22025109827518463, + "learning_rate": 0.0006, + "loss": 3.520402193069458, + "step": 4051 + }, + { + "epoch": 56.27959807776322, + "grad_norm": 0.22722174227237701, + "learning_rate": 0.0006, + "loss": 3.52360200881958, + "step": 4052 + }, + { + "epoch": 56.293577981651374, + "grad_norm": 0.2115592360496521, + "learning_rate": 0.0006, + "loss": 3.562689781188965, + "step": 4053 + }, + { + "epoch": 56.30755788553954, + "grad_norm": 0.19253599643707275, + "learning_rate": 0.0006, + "loss": 3.545013427734375, + "step": 4054 + }, + { + "epoch": 56.3215377894277, + "grad_norm": 0.2534266710281372, + "learning_rate": 0.0006, + "loss": 3.530149459838867, + "step": 4055 + }, + { + "epoch": 56.33551769331586, + "grad_norm": 0.2871302366256714, + "learning_rate": 0.0006, + "loss": 3.5667316913604736, + "step": 4056 + }, + { + "epoch": 56.34949759720402, + "grad_norm": 0.2686561048030853, + "learning_rate": 0.0006, + "loss": 3.5341169834136963, + "step": 4057 + }, + { + "epoch": 56.36347750109218, + "grad_norm": 0.21016116440296173, + "learning_rate": 0.0006, + "loss": 3.5151243209838867, + "step": 4058 + }, + { + "epoch": 56.37745740498034, + "grad_norm": 0.20810428261756897, + "learning_rate": 0.0006, + "loss": 3.5641677379608154, + "step": 4059 + }, + { + "epoch": 56.391437308868504, + "grad_norm": 0.2732172906398773, + "learning_rate": 0.0006, + "loss": 3.546082019805908, + "step": 4060 + }, + { + "epoch": 56.40541721275666, + "grad_norm": 0.26587602496147156, + "learning_rate": 0.0006, + "loss": 3.5465946197509766, + "step": 4061 + }, + { + "epoch": 56.419397116644824, + "grad_norm": 0.20492126047611237, + "learning_rate": 0.0006, + "loss": 3.5686211585998535, + "step": 4062 + }, + { + "epoch": 56.43337702053299, + "grad_norm": 0.2147696167230606, + "learning_rate": 0.0006, + "loss": 3.5808653831481934, + "step": 4063 + }, + { + "epoch": 56.44735692442114, + "grad_norm": 0.21947690844535828, + "learning_rate": 0.0006, + "loss": 3.530872344970703, + "step": 4064 + }, + { + "epoch": 56.46133682830931, + "grad_norm": 0.21305148303508759, + "learning_rate": 0.0006, + "loss": 3.5480992794036865, + "step": 4065 + }, + { + "epoch": 56.47531673219746, + "grad_norm": 0.2066979706287384, + "learning_rate": 0.0006, + "loss": 3.5198287963867188, + "step": 4066 + }, + { + "epoch": 56.489296636085626, + "grad_norm": 0.19393840432167053, + "learning_rate": 0.0006, + "loss": 3.555344581604004, + "step": 4067 + }, + { + "epoch": 56.50327653997379, + "grad_norm": 0.19889849424362183, + "learning_rate": 0.0006, + "loss": 3.56475830078125, + "step": 4068 + }, + { + "epoch": 56.517256443861946, + "grad_norm": 0.19851456582546234, + "learning_rate": 0.0006, + "loss": 3.5790982246398926, + "step": 4069 + }, + { + "epoch": 56.53123634775011, + "grad_norm": 0.19570177793502808, + "learning_rate": 0.0006, + "loss": 3.558379888534546, + "step": 4070 + }, + { + "epoch": 56.54521625163827, + "grad_norm": 0.21364007890224457, + "learning_rate": 0.0006, + "loss": 3.586343288421631, + "step": 4071 + }, + { + "epoch": 56.55919615552643, + "grad_norm": 0.22896543145179749, + "learning_rate": 0.0006, + "loss": 3.5565874576568604, + "step": 4072 + }, + { + "epoch": 56.57317605941459, + "grad_norm": 0.21665218472480774, + "learning_rate": 0.0006, + "loss": 3.5737056732177734, + "step": 4073 + }, + { + "epoch": 56.58715596330275, + "grad_norm": 0.1964256912469864, + "learning_rate": 0.0006, + "loss": 3.555798053741455, + "step": 4074 + }, + { + "epoch": 56.60113586719091, + "grad_norm": 0.2056122124195099, + "learning_rate": 0.0006, + "loss": 3.548685073852539, + "step": 4075 + }, + { + "epoch": 56.615115771079076, + "grad_norm": 0.21677979826927185, + "learning_rate": 0.0006, + "loss": 3.569136619567871, + "step": 4076 + }, + { + "epoch": 56.62909567496723, + "grad_norm": 0.2029557228088379, + "learning_rate": 0.0006, + "loss": 3.5723280906677246, + "step": 4077 + }, + { + "epoch": 56.643075578855395, + "grad_norm": 0.22111767530441284, + "learning_rate": 0.0006, + "loss": 3.5784404277801514, + "step": 4078 + }, + { + "epoch": 56.65705548274356, + "grad_norm": 0.245675191283226, + "learning_rate": 0.0006, + "loss": 3.559330940246582, + "step": 4079 + }, + { + "epoch": 56.671035386631715, + "grad_norm": 0.19715000689029694, + "learning_rate": 0.0006, + "loss": 3.5694894790649414, + "step": 4080 + }, + { + "epoch": 56.68501529051988, + "grad_norm": 0.2112303525209427, + "learning_rate": 0.0006, + "loss": 3.5932059288024902, + "step": 4081 + }, + { + "epoch": 56.69899519440804, + "grad_norm": 0.23710735142230988, + "learning_rate": 0.0006, + "loss": 3.59895658493042, + "step": 4082 + }, + { + "epoch": 56.7129750982962, + "grad_norm": 0.2507518529891968, + "learning_rate": 0.0006, + "loss": 3.58455228805542, + "step": 4083 + }, + { + "epoch": 56.72695500218436, + "grad_norm": 0.24770016968250275, + "learning_rate": 0.0006, + "loss": 3.566256046295166, + "step": 4084 + }, + { + "epoch": 56.74093490607252, + "grad_norm": 0.2407187819480896, + "learning_rate": 0.0006, + "loss": 3.6002347469329834, + "step": 4085 + }, + { + "epoch": 56.75491480996068, + "grad_norm": 0.21417197585105896, + "learning_rate": 0.0006, + "loss": 3.5579819679260254, + "step": 4086 + }, + { + "epoch": 56.768894713848844, + "grad_norm": 0.21014295518398285, + "learning_rate": 0.0006, + "loss": 3.574289321899414, + "step": 4087 + }, + { + "epoch": 56.782874617737, + "grad_norm": 0.2265855073928833, + "learning_rate": 0.0006, + "loss": 3.589186906814575, + "step": 4088 + }, + { + "epoch": 56.796854521625164, + "grad_norm": 0.22685059905052185, + "learning_rate": 0.0006, + "loss": 3.567077159881592, + "step": 4089 + }, + { + "epoch": 56.81083442551333, + "grad_norm": 0.21579493582248688, + "learning_rate": 0.0006, + "loss": 3.5568556785583496, + "step": 4090 + }, + { + "epoch": 56.824814329401484, + "grad_norm": 0.2049565464258194, + "learning_rate": 0.0006, + "loss": 3.5547285079956055, + "step": 4091 + }, + { + "epoch": 56.83879423328965, + "grad_norm": 0.21019354462623596, + "learning_rate": 0.0006, + "loss": 3.606884479522705, + "step": 4092 + }, + { + "epoch": 56.8527741371778, + "grad_norm": 0.26110008358955383, + "learning_rate": 0.0006, + "loss": 3.5626933574676514, + "step": 4093 + }, + { + "epoch": 56.86675404106597, + "grad_norm": 0.22148117423057556, + "learning_rate": 0.0006, + "loss": 3.5739552974700928, + "step": 4094 + }, + { + "epoch": 56.88073394495413, + "grad_norm": 0.20535576343536377, + "learning_rate": 0.0006, + "loss": 3.566840648651123, + "step": 4095 + }, + { + "epoch": 56.89471384884229, + "grad_norm": 0.1928025484085083, + "learning_rate": 0.0006, + "loss": 3.5637013912200928, + "step": 4096 + }, + { + "epoch": 56.90869375273045, + "grad_norm": 0.1989327371120453, + "learning_rate": 0.0006, + "loss": 3.5881259441375732, + "step": 4097 + }, + { + "epoch": 56.92267365661861, + "grad_norm": 0.21137912571430206, + "learning_rate": 0.0006, + "loss": 3.5513358116149902, + "step": 4098 + }, + { + "epoch": 56.93665356050677, + "grad_norm": 0.22471629083156586, + "learning_rate": 0.0006, + "loss": 3.5630130767822266, + "step": 4099 + }, + { + "epoch": 56.95063346439493, + "grad_norm": 0.2323181927204132, + "learning_rate": 0.0006, + "loss": 3.559762477874756, + "step": 4100 + }, + { + "epoch": 56.964613368283096, + "grad_norm": 0.2020239382982254, + "learning_rate": 0.0006, + "loss": 3.596774101257324, + "step": 4101 + }, + { + "epoch": 56.97859327217125, + "grad_norm": 0.21822074055671692, + "learning_rate": 0.0006, + "loss": 3.598115921020508, + "step": 4102 + }, + { + "epoch": 56.992573176059416, + "grad_norm": 0.20600785315036774, + "learning_rate": 0.0006, + "loss": 3.5579686164855957, + "step": 4103 + }, + { + "epoch": 57.0, + "grad_norm": 0.23575574159622192, + "learning_rate": 0.0006, + "loss": 3.57532000541687, + "step": 4104 + }, + { + "epoch": 57.0, + "eval_loss": 3.9726130962371826, + "eval_runtime": 44.7918, + "eval_samples_per_second": 54.519, + "eval_steps_per_second": 3.416, + "step": 4104 + }, + { + "epoch": 57.01397990388816, + "grad_norm": 0.2366827428340912, + "learning_rate": 0.0006, + "loss": 3.552804946899414, + "step": 4105 + }, + { + "epoch": 57.02795980777632, + "grad_norm": 0.2728131115436554, + "learning_rate": 0.0006, + "loss": 3.5407862663269043, + "step": 4106 + }, + { + "epoch": 57.04193971166448, + "grad_norm": 0.2685103416442871, + "learning_rate": 0.0006, + "loss": 3.525047779083252, + "step": 4107 + }, + { + "epoch": 57.05591961555265, + "grad_norm": 0.26493778824806213, + "learning_rate": 0.0006, + "loss": 3.527106523513794, + "step": 4108 + }, + { + "epoch": 57.0698995194408, + "grad_norm": 0.290961354970932, + "learning_rate": 0.0006, + "loss": 3.5482702255249023, + "step": 4109 + }, + { + "epoch": 57.083879423328966, + "grad_norm": 0.33083876967430115, + "learning_rate": 0.0006, + "loss": 3.5123658180236816, + "step": 4110 + }, + { + "epoch": 57.09785932721712, + "grad_norm": 0.28544098138809204, + "learning_rate": 0.0006, + "loss": 3.5563549995422363, + "step": 4111 + }, + { + "epoch": 57.111839231105286, + "grad_norm": 0.2516465187072754, + "learning_rate": 0.0006, + "loss": 3.547360420227051, + "step": 4112 + }, + { + "epoch": 57.12581913499345, + "grad_norm": 0.2485780417919159, + "learning_rate": 0.0006, + "loss": 3.5234861373901367, + "step": 4113 + }, + { + "epoch": 57.139799038881605, + "grad_norm": 0.246695414185524, + "learning_rate": 0.0006, + "loss": 3.573009490966797, + "step": 4114 + }, + { + "epoch": 57.15377894276977, + "grad_norm": 0.24958990514278412, + "learning_rate": 0.0006, + "loss": 3.5322680473327637, + "step": 4115 + }, + { + "epoch": 57.16775884665793, + "grad_norm": 0.20882244408130646, + "learning_rate": 0.0006, + "loss": 3.5463480949401855, + "step": 4116 + }, + { + "epoch": 57.18173875054609, + "grad_norm": 0.2372189313173294, + "learning_rate": 0.0006, + "loss": 3.543396472930908, + "step": 4117 + }, + { + "epoch": 57.19571865443425, + "grad_norm": 0.24817894399166107, + "learning_rate": 0.0006, + "loss": 3.5594849586486816, + "step": 4118 + }, + { + "epoch": 57.20969855832241, + "grad_norm": 0.2231832891702652, + "learning_rate": 0.0006, + "loss": 3.5276806354522705, + "step": 4119 + }, + { + "epoch": 57.22367846221057, + "grad_norm": 0.2211553156375885, + "learning_rate": 0.0006, + "loss": 3.5423057079315186, + "step": 4120 + }, + { + "epoch": 57.237658366098735, + "grad_norm": 0.2495127022266388, + "learning_rate": 0.0006, + "loss": 3.57668399810791, + "step": 4121 + }, + { + "epoch": 57.25163826998689, + "grad_norm": 0.2548885941505432, + "learning_rate": 0.0006, + "loss": 3.5487570762634277, + "step": 4122 + }, + { + "epoch": 57.265618173875055, + "grad_norm": 0.22884942591190338, + "learning_rate": 0.0006, + "loss": 3.560772180557251, + "step": 4123 + }, + { + "epoch": 57.27959807776322, + "grad_norm": 0.20817993581295013, + "learning_rate": 0.0006, + "loss": 3.5540637969970703, + "step": 4124 + }, + { + "epoch": 57.293577981651374, + "grad_norm": 0.2075389176607132, + "learning_rate": 0.0006, + "loss": 3.5382890701293945, + "step": 4125 + }, + { + "epoch": 57.30755788553954, + "grad_norm": 0.2081303596496582, + "learning_rate": 0.0006, + "loss": 3.554612874984741, + "step": 4126 + }, + { + "epoch": 57.3215377894277, + "grad_norm": 0.2108871191740036, + "learning_rate": 0.0006, + "loss": 3.583320379257202, + "step": 4127 + }, + { + "epoch": 57.33551769331586, + "grad_norm": 0.21608266234397888, + "learning_rate": 0.0006, + "loss": 3.5358712673187256, + "step": 4128 + }, + { + "epoch": 57.34949759720402, + "grad_norm": 0.21208034455776215, + "learning_rate": 0.0006, + "loss": 3.561821937561035, + "step": 4129 + }, + { + "epoch": 57.36347750109218, + "grad_norm": 0.2109878957271576, + "learning_rate": 0.0006, + "loss": 3.5592710971832275, + "step": 4130 + }, + { + "epoch": 57.37745740498034, + "grad_norm": 0.2175656110048294, + "learning_rate": 0.0006, + "loss": 3.5616424083709717, + "step": 4131 + }, + { + "epoch": 57.391437308868504, + "grad_norm": 0.2170158475637436, + "learning_rate": 0.0006, + "loss": 3.5580999851226807, + "step": 4132 + }, + { + "epoch": 57.40541721275666, + "grad_norm": 0.22486525774002075, + "learning_rate": 0.0006, + "loss": 3.562096118927002, + "step": 4133 + }, + { + "epoch": 57.419397116644824, + "grad_norm": 0.22458943724632263, + "learning_rate": 0.0006, + "loss": 3.5784192085266113, + "step": 4134 + }, + { + "epoch": 57.43337702053299, + "grad_norm": 0.20545627176761627, + "learning_rate": 0.0006, + "loss": 3.5740323066711426, + "step": 4135 + }, + { + "epoch": 57.44735692442114, + "grad_norm": 0.22105063498020172, + "learning_rate": 0.0006, + "loss": 3.537400245666504, + "step": 4136 + }, + { + "epoch": 57.46133682830931, + "grad_norm": 0.26679784059524536, + "learning_rate": 0.0006, + "loss": 3.5323081016540527, + "step": 4137 + }, + { + "epoch": 57.47531673219746, + "grad_norm": 0.2646673321723938, + "learning_rate": 0.0006, + "loss": 3.54030442237854, + "step": 4138 + }, + { + "epoch": 57.489296636085626, + "grad_norm": 0.22486890852451324, + "learning_rate": 0.0006, + "loss": 3.558323621749878, + "step": 4139 + }, + { + "epoch": 57.50327653997379, + "grad_norm": 0.20868313312530518, + "learning_rate": 0.0006, + "loss": 3.5296707153320312, + "step": 4140 + }, + { + "epoch": 57.517256443861946, + "grad_norm": 0.22973674535751343, + "learning_rate": 0.0006, + "loss": 3.5401687622070312, + "step": 4141 + }, + { + "epoch": 57.53123634775011, + "grad_norm": 0.22321778535842896, + "learning_rate": 0.0006, + "loss": 3.566683530807495, + "step": 4142 + }, + { + "epoch": 57.54521625163827, + "grad_norm": 0.20808766782283783, + "learning_rate": 0.0006, + "loss": 3.5398507118225098, + "step": 4143 + }, + { + "epoch": 57.55919615552643, + "grad_norm": 0.19632819294929504, + "learning_rate": 0.0006, + "loss": 3.5785460472106934, + "step": 4144 + }, + { + "epoch": 57.57317605941459, + "grad_norm": 0.18699012696743011, + "learning_rate": 0.0006, + "loss": 3.5495004653930664, + "step": 4145 + }, + { + "epoch": 57.58715596330275, + "grad_norm": 0.19161473214626312, + "learning_rate": 0.0006, + "loss": 3.550243854522705, + "step": 4146 + }, + { + "epoch": 57.60113586719091, + "grad_norm": 0.21041646599769592, + "learning_rate": 0.0006, + "loss": 3.5801823139190674, + "step": 4147 + }, + { + "epoch": 57.615115771079076, + "grad_norm": 0.2043760120868683, + "learning_rate": 0.0006, + "loss": 3.580418825149536, + "step": 4148 + }, + { + "epoch": 57.62909567496723, + "grad_norm": 0.21515823900699615, + "learning_rate": 0.0006, + "loss": 3.58026385307312, + "step": 4149 + }, + { + "epoch": 57.643075578855395, + "grad_norm": 0.20913724601268768, + "learning_rate": 0.0006, + "loss": 3.5452992916107178, + "step": 4150 + }, + { + "epoch": 57.65705548274356, + "grad_norm": 0.22621729969978333, + "learning_rate": 0.0006, + "loss": 3.5332765579223633, + "step": 4151 + }, + { + "epoch": 57.671035386631715, + "grad_norm": 0.26475241780281067, + "learning_rate": 0.0006, + "loss": 3.5701823234558105, + "step": 4152 + }, + { + "epoch": 57.68501529051988, + "grad_norm": 0.2567952275276184, + "learning_rate": 0.0006, + "loss": 3.597219228744507, + "step": 4153 + }, + { + "epoch": 57.69899519440804, + "grad_norm": 0.19640378654003143, + "learning_rate": 0.0006, + "loss": 3.5865941047668457, + "step": 4154 + }, + { + "epoch": 57.7129750982962, + "grad_norm": 0.21714240312576294, + "learning_rate": 0.0006, + "loss": 3.555518627166748, + "step": 4155 + }, + { + "epoch": 57.72695500218436, + "grad_norm": 0.2604375183582306, + "learning_rate": 0.0006, + "loss": 3.5756402015686035, + "step": 4156 + }, + { + "epoch": 57.74093490607252, + "grad_norm": 0.24627837538719177, + "learning_rate": 0.0006, + "loss": 3.550668239593506, + "step": 4157 + }, + { + "epoch": 57.75491480996068, + "grad_norm": 0.21893182396888733, + "learning_rate": 0.0006, + "loss": 3.5560038089752197, + "step": 4158 + }, + { + "epoch": 57.768894713848844, + "grad_norm": 0.23481261730194092, + "learning_rate": 0.0006, + "loss": 3.543942451477051, + "step": 4159 + }, + { + "epoch": 57.782874617737, + "grad_norm": 0.21777133643627167, + "learning_rate": 0.0006, + "loss": 3.5652658939361572, + "step": 4160 + }, + { + "epoch": 57.796854521625164, + "grad_norm": 0.2158525437116623, + "learning_rate": 0.0006, + "loss": 3.5803327560424805, + "step": 4161 + }, + { + "epoch": 57.81083442551333, + "grad_norm": 0.19519925117492676, + "learning_rate": 0.0006, + "loss": 3.5814499855041504, + "step": 4162 + }, + { + "epoch": 57.824814329401484, + "grad_norm": 0.2017558217048645, + "learning_rate": 0.0006, + "loss": 3.558722972869873, + "step": 4163 + }, + { + "epoch": 57.83879423328965, + "grad_norm": 0.22046449780464172, + "learning_rate": 0.0006, + "loss": 3.559990882873535, + "step": 4164 + }, + { + "epoch": 57.8527741371778, + "grad_norm": 0.22240568697452545, + "learning_rate": 0.0006, + "loss": 3.5427942276000977, + "step": 4165 + }, + { + "epoch": 57.86675404106597, + "grad_norm": 0.20282965898513794, + "learning_rate": 0.0006, + "loss": 3.5449461936950684, + "step": 4166 + }, + { + "epoch": 57.88073394495413, + "grad_norm": 0.20970730483531952, + "learning_rate": 0.0006, + "loss": 3.592543601989746, + "step": 4167 + }, + { + "epoch": 57.89471384884229, + "grad_norm": 0.21963168680667877, + "learning_rate": 0.0006, + "loss": 3.5564393997192383, + "step": 4168 + }, + { + "epoch": 57.90869375273045, + "grad_norm": 0.20854730904102325, + "learning_rate": 0.0006, + "loss": 3.565591335296631, + "step": 4169 + }, + { + "epoch": 57.92267365661861, + "grad_norm": 0.24149510264396667, + "learning_rate": 0.0006, + "loss": 3.574720859527588, + "step": 4170 + }, + { + "epoch": 57.93665356050677, + "grad_norm": 0.26011863350868225, + "learning_rate": 0.0006, + "loss": 3.593156337738037, + "step": 4171 + }, + { + "epoch": 57.95063346439493, + "grad_norm": 0.24111896753311157, + "learning_rate": 0.0006, + "loss": 3.5871872901916504, + "step": 4172 + }, + { + "epoch": 57.964613368283096, + "grad_norm": 0.22362647950649261, + "learning_rate": 0.0006, + "loss": 3.568572998046875, + "step": 4173 + }, + { + "epoch": 57.97859327217125, + "grad_norm": 0.23621505498886108, + "learning_rate": 0.0006, + "loss": 3.5627479553222656, + "step": 4174 + }, + { + "epoch": 57.992573176059416, + "grad_norm": 0.2252524048089981, + "learning_rate": 0.0006, + "loss": 3.594430446624756, + "step": 4175 + }, + { + "epoch": 58.0, + "grad_norm": 0.24568618834018707, + "learning_rate": 0.0006, + "loss": 3.5520875453948975, + "step": 4176 + }, + { + "epoch": 58.0, + "eval_loss": 3.978929042816162, + "eval_runtime": 44.8688, + "eval_samples_per_second": 54.425, + "eval_steps_per_second": 3.41, + "step": 4176 + }, + { + "epoch": 58.01397990388816, + "grad_norm": 0.23220741748809814, + "learning_rate": 0.0006, + "loss": 3.5401225090026855, + "step": 4177 + }, + { + "epoch": 58.02795980777632, + "grad_norm": 0.214580699801445, + "learning_rate": 0.0006, + "loss": 3.507652759552002, + "step": 4178 + }, + { + "epoch": 58.04193971166448, + "grad_norm": 0.20596857368946075, + "learning_rate": 0.0006, + "loss": 3.5591790676116943, + "step": 4179 + }, + { + "epoch": 58.05591961555265, + "grad_norm": 0.23054419457912445, + "learning_rate": 0.0006, + "loss": 3.518101692199707, + "step": 4180 + }, + { + "epoch": 58.0698995194408, + "grad_norm": 0.2410690039396286, + "learning_rate": 0.0006, + "loss": 3.5270299911499023, + "step": 4181 + }, + { + "epoch": 58.083879423328966, + "grad_norm": 0.24333222210407257, + "learning_rate": 0.0006, + "loss": 3.5732290744781494, + "step": 4182 + }, + { + "epoch": 58.09785932721712, + "grad_norm": 0.2547648549079895, + "learning_rate": 0.0006, + "loss": 3.5470314025878906, + "step": 4183 + }, + { + "epoch": 58.111839231105286, + "grad_norm": 0.2366316169500351, + "learning_rate": 0.0006, + "loss": 3.500774621963501, + "step": 4184 + }, + { + "epoch": 58.12581913499345, + "grad_norm": 0.22653642296791077, + "learning_rate": 0.0006, + "loss": 3.5242254734039307, + "step": 4185 + }, + { + "epoch": 58.139799038881605, + "grad_norm": 0.25555330514907837, + "learning_rate": 0.0006, + "loss": 3.5272228717803955, + "step": 4186 + }, + { + "epoch": 58.15377894276977, + "grad_norm": 0.26559844613075256, + "learning_rate": 0.0006, + "loss": 3.5599403381347656, + "step": 4187 + }, + { + "epoch": 58.16775884665793, + "grad_norm": 0.2473350614309311, + "learning_rate": 0.0006, + "loss": 3.5130624771118164, + "step": 4188 + }, + { + "epoch": 58.18173875054609, + "grad_norm": 0.22858835756778717, + "learning_rate": 0.0006, + "loss": 3.508342742919922, + "step": 4189 + }, + { + "epoch": 58.19571865443425, + "grad_norm": 0.2151159793138504, + "learning_rate": 0.0006, + "loss": 3.533581256866455, + "step": 4190 + }, + { + "epoch": 58.20969855832241, + "grad_norm": 0.2042093276977539, + "learning_rate": 0.0006, + "loss": 3.5269458293914795, + "step": 4191 + }, + { + "epoch": 58.22367846221057, + "grad_norm": 0.20638196170330048, + "learning_rate": 0.0006, + "loss": 3.5137884616851807, + "step": 4192 + }, + { + "epoch": 58.237658366098735, + "grad_norm": 0.2018391191959381, + "learning_rate": 0.0006, + "loss": 3.533733367919922, + "step": 4193 + }, + { + "epoch": 58.25163826998689, + "grad_norm": 0.21045200526714325, + "learning_rate": 0.0006, + "loss": 3.5585010051727295, + "step": 4194 + }, + { + "epoch": 58.265618173875055, + "grad_norm": 0.2040393352508545, + "learning_rate": 0.0006, + "loss": 3.547539234161377, + "step": 4195 + }, + { + "epoch": 58.27959807776322, + "grad_norm": 0.2538772523403168, + "learning_rate": 0.0006, + "loss": 3.5487847328186035, + "step": 4196 + }, + { + "epoch": 58.293577981651374, + "grad_norm": 0.30126553773880005, + "learning_rate": 0.0006, + "loss": 3.5717992782592773, + "step": 4197 + }, + { + "epoch": 58.30755788553954, + "grad_norm": 0.2787485718727112, + "learning_rate": 0.0006, + "loss": 3.543076992034912, + "step": 4198 + }, + { + "epoch": 58.3215377894277, + "grad_norm": 0.23167021572589874, + "learning_rate": 0.0006, + "loss": 3.518887519836426, + "step": 4199 + }, + { + "epoch": 58.33551769331586, + "grad_norm": 0.23871110379695892, + "learning_rate": 0.0006, + "loss": 3.536757469177246, + "step": 4200 + }, + { + "epoch": 58.34949759720402, + "grad_norm": 0.2542787492275238, + "learning_rate": 0.0006, + "loss": 3.573086738586426, + "step": 4201 + }, + { + "epoch": 58.36347750109218, + "grad_norm": 0.2967284023761749, + "learning_rate": 0.0006, + "loss": 3.5866525173187256, + "step": 4202 + }, + { + "epoch": 58.37745740498034, + "grad_norm": 0.28304803371429443, + "learning_rate": 0.0006, + "loss": 3.5601437091827393, + "step": 4203 + }, + { + "epoch": 58.391437308868504, + "grad_norm": 0.20651954412460327, + "learning_rate": 0.0006, + "loss": 3.5591554641723633, + "step": 4204 + }, + { + "epoch": 58.40541721275666, + "grad_norm": 0.23101729154586792, + "learning_rate": 0.0006, + "loss": 3.5714032649993896, + "step": 4205 + }, + { + "epoch": 58.419397116644824, + "grad_norm": 0.24556246399879456, + "learning_rate": 0.0006, + "loss": 3.550046443939209, + "step": 4206 + }, + { + "epoch": 58.43337702053299, + "grad_norm": 0.2307356745004654, + "learning_rate": 0.0006, + "loss": 3.571850299835205, + "step": 4207 + }, + { + "epoch": 58.44735692442114, + "grad_norm": 0.23186670243740082, + "learning_rate": 0.0006, + "loss": 3.555757999420166, + "step": 4208 + }, + { + "epoch": 58.46133682830931, + "grad_norm": 0.20662686228752136, + "learning_rate": 0.0006, + "loss": 3.5590686798095703, + "step": 4209 + }, + { + "epoch": 58.47531673219746, + "grad_norm": 0.20381265878677368, + "learning_rate": 0.0006, + "loss": 3.5228846073150635, + "step": 4210 + }, + { + "epoch": 58.489296636085626, + "grad_norm": 0.20927058160305023, + "learning_rate": 0.0006, + "loss": 3.5376980304718018, + "step": 4211 + }, + { + "epoch": 58.50327653997379, + "grad_norm": 0.22782307863235474, + "learning_rate": 0.0006, + "loss": 3.5477585792541504, + "step": 4212 + }, + { + "epoch": 58.517256443861946, + "grad_norm": 0.20143239200115204, + "learning_rate": 0.0006, + "loss": 3.5429391860961914, + "step": 4213 + }, + { + "epoch": 58.53123634775011, + "grad_norm": 0.2120865285396576, + "learning_rate": 0.0006, + "loss": 3.5543365478515625, + "step": 4214 + }, + { + "epoch": 58.54521625163827, + "grad_norm": 0.2032771110534668, + "learning_rate": 0.0006, + "loss": 3.5307888984680176, + "step": 4215 + }, + { + "epoch": 58.55919615552643, + "grad_norm": 0.20994187891483307, + "learning_rate": 0.0006, + "loss": 3.581739664077759, + "step": 4216 + }, + { + "epoch": 58.57317605941459, + "grad_norm": 0.23686161637306213, + "learning_rate": 0.0006, + "loss": 3.5274312496185303, + "step": 4217 + }, + { + "epoch": 58.58715596330275, + "grad_norm": 0.21081998944282532, + "learning_rate": 0.0006, + "loss": 3.547239303588867, + "step": 4218 + }, + { + "epoch": 58.60113586719091, + "grad_norm": 0.20353151857852936, + "learning_rate": 0.0006, + "loss": 3.5522308349609375, + "step": 4219 + }, + { + "epoch": 58.615115771079076, + "grad_norm": 0.20888762176036835, + "learning_rate": 0.0006, + "loss": 3.5535459518432617, + "step": 4220 + }, + { + "epoch": 58.62909567496723, + "grad_norm": 0.2024519443511963, + "learning_rate": 0.0006, + "loss": 3.5320982933044434, + "step": 4221 + }, + { + "epoch": 58.643075578855395, + "grad_norm": 0.19622337818145752, + "learning_rate": 0.0006, + "loss": 3.5581917762756348, + "step": 4222 + }, + { + "epoch": 58.65705548274356, + "grad_norm": 0.1966600865125656, + "learning_rate": 0.0006, + "loss": 3.5412650108337402, + "step": 4223 + }, + { + "epoch": 58.671035386631715, + "grad_norm": 0.19325542449951172, + "learning_rate": 0.0006, + "loss": 3.570521593093872, + "step": 4224 + }, + { + "epoch": 58.68501529051988, + "grad_norm": 0.20674128830432892, + "learning_rate": 0.0006, + "loss": 3.5727484226226807, + "step": 4225 + }, + { + "epoch": 58.69899519440804, + "grad_norm": 0.1959284245967865, + "learning_rate": 0.0006, + "loss": 3.5655486583709717, + "step": 4226 + }, + { + "epoch": 58.7129750982962, + "grad_norm": 0.2044358104467392, + "learning_rate": 0.0006, + "loss": 3.5477449893951416, + "step": 4227 + }, + { + "epoch": 58.72695500218436, + "grad_norm": 0.21381069719791412, + "learning_rate": 0.0006, + "loss": 3.533381462097168, + "step": 4228 + }, + { + "epoch": 58.74093490607252, + "grad_norm": 0.20168009400367737, + "learning_rate": 0.0006, + "loss": 3.5401244163513184, + "step": 4229 + }, + { + "epoch": 58.75491480996068, + "grad_norm": 0.20853811502456665, + "learning_rate": 0.0006, + "loss": 3.5669009685516357, + "step": 4230 + }, + { + "epoch": 58.768894713848844, + "grad_norm": 0.2135785073041916, + "learning_rate": 0.0006, + "loss": 3.5697989463806152, + "step": 4231 + }, + { + "epoch": 58.782874617737, + "grad_norm": 0.20372799038887024, + "learning_rate": 0.0006, + "loss": 3.592245101928711, + "step": 4232 + }, + { + "epoch": 58.796854521625164, + "grad_norm": 0.20562207698822021, + "learning_rate": 0.0006, + "loss": 3.5732932090759277, + "step": 4233 + }, + { + "epoch": 58.81083442551333, + "grad_norm": 0.1932520568370819, + "learning_rate": 0.0006, + "loss": 3.581766128540039, + "step": 4234 + }, + { + "epoch": 58.824814329401484, + "grad_norm": 0.20229186117649078, + "learning_rate": 0.0006, + "loss": 3.5758426189422607, + "step": 4235 + }, + { + "epoch": 58.83879423328965, + "grad_norm": 0.21348924934864044, + "learning_rate": 0.0006, + "loss": 3.573164939880371, + "step": 4236 + }, + { + "epoch": 58.8527741371778, + "grad_norm": 0.2240375131368637, + "learning_rate": 0.0006, + "loss": 3.578442096710205, + "step": 4237 + }, + { + "epoch": 58.86675404106597, + "grad_norm": 0.22859376668930054, + "learning_rate": 0.0006, + "loss": 3.5597116947174072, + "step": 4238 + }, + { + "epoch": 58.88073394495413, + "grad_norm": 0.22347290813922882, + "learning_rate": 0.0006, + "loss": 3.557039260864258, + "step": 4239 + }, + { + "epoch": 58.89471384884229, + "grad_norm": 0.19835364818572998, + "learning_rate": 0.0006, + "loss": 3.5832467079162598, + "step": 4240 + }, + { + "epoch": 58.90869375273045, + "grad_norm": 0.21189740300178528, + "learning_rate": 0.0006, + "loss": 3.5421836376190186, + "step": 4241 + }, + { + "epoch": 58.92267365661861, + "grad_norm": 0.21234451234340668, + "learning_rate": 0.0006, + "loss": 3.6048710346221924, + "step": 4242 + }, + { + "epoch": 58.93665356050677, + "grad_norm": 0.2107880860567093, + "learning_rate": 0.0006, + "loss": 3.58248233795166, + "step": 4243 + }, + { + "epoch": 58.95063346439493, + "grad_norm": 0.21674086153507233, + "learning_rate": 0.0006, + "loss": 3.582352876663208, + "step": 4244 + }, + { + "epoch": 58.964613368283096, + "grad_norm": 0.21057581901550293, + "learning_rate": 0.0006, + "loss": 3.5387773513793945, + "step": 4245 + }, + { + "epoch": 58.97859327217125, + "grad_norm": 0.20203082263469696, + "learning_rate": 0.0006, + "loss": 3.5805740356445312, + "step": 4246 + }, + { + "epoch": 58.992573176059416, + "grad_norm": 0.21071292459964752, + "learning_rate": 0.0006, + "loss": 3.5644760131835938, + "step": 4247 + }, + { + "epoch": 59.0, + "grad_norm": 0.2473233938217163, + "learning_rate": 0.0006, + "loss": 3.56392765045166, + "step": 4248 + }, + { + "epoch": 59.0, + "eval_loss": 3.9670467376708984, + "eval_runtime": 44.7697, + "eval_samples_per_second": 54.546, + "eval_steps_per_second": 3.417, + "step": 4248 + }, + { + "epoch": 59.01397990388816, + "grad_norm": 0.22915491461753845, + "learning_rate": 0.0006, + "loss": 3.5110130310058594, + "step": 4249 + }, + { + "epoch": 59.02795980777632, + "grad_norm": 0.2629511058330536, + "learning_rate": 0.0006, + "loss": 3.5493721961975098, + "step": 4250 + }, + { + "epoch": 59.04193971166448, + "grad_norm": 0.2954505383968353, + "learning_rate": 0.0006, + "loss": 3.555753707885742, + "step": 4251 + }, + { + "epoch": 59.05591961555265, + "grad_norm": 0.2728694677352905, + "learning_rate": 0.0006, + "loss": 3.5089950561523438, + "step": 4252 + }, + { + "epoch": 59.0698995194408, + "grad_norm": 0.25955384969711304, + "learning_rate": 0.0006, + "loss": 3.509044647216797, + "step": 4253 + }, + { + "epoch": 59.083879423328966, + "grad_norm": 0.32285967469215393, + "learning_rate": 0.0006, + "loss": 3.5324721336364746, + "step": 4254 + }, + { + "epoch": 59.09785932721712, + "grad_norm": 0.2913302779197693, + "learning_rate": 0.0006, + "loss": 3.5004022121429443, + "step": 4255 + }, + { + "epoch": 59.111839231105286, + "grad_norm": 0.23795513808727264, + "learning_rate": 0.0006, + "loss": 3.515099048614502, + "step": 4256 + }, + { + "epoch": 59.12581913499345, + "grad_norm": 0.2788177728652954, + "learning_rate": 0.0006, + "loss": 3.524991035461426, + "step": 4257 + }, + { + "epoch": 59.139799038881605, + "grad_norm": 0.32389938831329346, + "learning_rate": 0.0006, + "loss": 3.5330004692077637, + "step": 4258 + }, + { + "epoch": 59.15377894276977, + "grad_norm": 0.2921825647354126, + "learning_rate": 0.0006, + "loss": 3.530616283416748, + "step": 4259 + }, + { + "epoch": 59.16775884665793, + "grad_norm": 0.28415167331695557, + "learning_rate": 0.0006, + "loss": 3.5276989936828613, + "step": 4260 + }, + { + "epoch": 59.18173875054609, + "grad_norm": 0.283626526594162, + "learning_rate": 0.0006, + "loss": 3.564985752105713, + "step": 4261 + }, + { + "epoch": 59.19571865443425, + "grad_norm": 0.2655615210533142, + "learning_rate": 0.0006, + "loss": 3.536499500274658, + "step": 4262 + }, + { + "epoch": 59.20969855832241, + "grad_norm": 0.2794124484062195, + "learning_rate": 0.0006, + "loss": 3.570883274078369, + "step": 4263 + }, + { + "epoch": 59.22367846221057, + "grad_norm": 0.2803778052330017, + "learning_rate": 0.0006, + "loss": 3.5143651962280273, + "step": 4264 + }, + { + "epoch": 59.237658366098735, + "grad_norm": 0.2584295868873596, + "learning_rate": 0.0006, + "loss": 3.548056125640869, + "step": 4265 + }, + { + "epoch": 59.25163826998689, + "grad_norm": 0.26859962940216064, + "learning_rate": 0.0006, + "loss": 3.511655807495117, + "step": 4266 + }, + { + "epoch": 59.265618173875055, + "grad_norm": 0.26620036363601685, + "learning_rate": 0.0006, + "loss": 3.5554311275482178, + "step": 4267 + }, + { + "epoch": 59.27959807776322, + "grad_norm": 0.2325621247291565, + "learning_rate": 0.0006, + "loss": 3.5126709938049316, + "step": 4268 + }, + { + "epoch": 59.293577981651374, + "grad_norm": 0.24758809804916382, + "learning_rate": 0.0006, + "loss": 3.5747783184051514, + "step": 4269 + }, + { + "epoch": 59.30755788553954, + "grad_norm": 0.26378121972084045, + "learning_rate": 0.0006, + "loss": 3.538012742996216, + "step": 4270 + }, + { + "epoch": 59.3215377894277, + "grad_norm": 0.24299141764640808, + "learning_rate": 0.0006, + "loss": 3.533834457397461, + "step": 4271 + }, + { + "epoch": 59.33551769331586, + "grad_norm": 0.20792774856090546, + "learning_rate": 0.0006, + "loss": 3.5645856857299805, + "step": 4272 + }, + { + "epoch": 59.34949759720402, + "grad_norm": 0.21124716103076935, + "learning_rate": 0.0006, + "loss": 3.5616869926452637, + "step": 4273 + }, + { + "epoch": 59.36347750109218, + "grad_norm": 0.2644400894641876, + "learning_rate": 0.0006, + "loss": 3.531334400177002, + "step": 4274 + }, + { + "epoch": 59.37745740498034, + "grad_norm": 0.27659082412719727, + "learning_rate": 0.0006, + "loss": 3.5557894706726074, + "step": 4275 + }, + { + "epoch": 59.391437308868504, + "grad_norm": 0.21931052207946777, + "learning_rate": 0.0006, + "loss": 3.537261486053467, + "step": 4276 + }, + { + "epoch": 59.40541721275666, + "grad_norm": 0.20661118626594543, + "learning_rate": 0.0006, + "loss": 3.568042755126953, + "step": 4277 + }, + { + "epoch": 59.419397116644824, + "grad_norm": 0.2157975435256958, + "learning_rate": 0.0006, + "loss": 3.550891160964966, + "step": 4278 + }, + { + "epoch": 59.43337702053299, + "grad_norm": 0.20762090384960175, + "learning_rate": 0.0006, + "loss": 3.565798282623291, + "step": 4279 + }, + { + "epoch": 59.44735692442114, + "grad_norm": 0.19575528800487518, + "learning_rate": 0.0006, + "loss": 3.5518856048583984, + "step": 4280 + }, + { + "epoch": 59.46133682830931, + "grad_norm": 0.20730678737163544, + "learning_rate": 0.0006, + "loss": 3.5412862300872803, + "step": 4281 + }, + { + "epoch": 59.47531673219746, + "grad_norm": 0.21095411479473114, + "learning_rate": 0.0006, + "loss": 3.5491604804992676, + "step": 4282 + }, + { + "epoch": 59.489296636085626, + "grad_norm": 0.2229546755552292, + "learning_rate": 0.0006, + "loss": 3.534517765045166, + "step": 4283 + }, + { + "epoch": 59.50327653997379, + "grad_norm": 0.22375687956809998, + "learning_rate": 0.0006, + "loss": 3.5696470737457275, + "step": 4284 + }, + { + "epoch": 59.517256443861946, + "grad_norm": 0.2563750743865967, + "learning_rate": 0.0006, + "loss": 3.6050190925598145, + "step": 4285 + }, + { + "epoch": 59.53123634775011, + "grad_norm": 0.3055726885795593, + "learning_rate": 0.0006, + "loss": 3.572263240814209, + "step": 4286 + }, + { + "epoch": 59.54521625163827, + "grad_norm": 0.3095283508300781, + "learning_rate": 0.0006, + "loss": 3.545631170272827, + "step": 4287 + }, + { + "epoch": 59.55919615552643, + "grad_norm": 0.24958640336990356, + "learning_rate": 0.0006, + "loss": 3.549663543701172, + "step": 4288 + }, + { + "epoch": 59.57317605941459, + "grad_norm": 0.22277019917964935, + "learning_rate": 0.0006, + "loss": 3.5721545219421387, + "step": 4289 + }, + { + "epoch": 59.58715596330275, + "grad_norm": 0.22153833508491516, + "learning_rate": 0.0006, + "loss": 3.5103156566619873, + "step": 4290 + }, + { + "epoch": 59.60113586719091, + "grad_norm": 0.25579726696014404, + "learning_rate": 0.0006, + "loss": 3.550353527069092, + "step": 4291 + }, + { + "epoch": 59.615115771079076, + "grad_norm": 0.2242603898048401, + "learning_rate": 0.0006, + "loss": 3.5284783840179443, + "step": 4292 + }, + { + "epoch": 59.62909567496723, + "grad_norm": 0.21665683388710022, + "learning_rate": 0.0006, + "loss": 3.553835868835449, + "step": 4293 + }, + { + "epoch": 59.643075578855395, + "grad_norm": 0.21703463792800903, + "learning_rate": 0.0006, + "loss": 3.5393173694610596, + "step": 4294 + }, + { + "epoch": 59.65705548274356, + "grad_norm": 0.21264998614788055, + "learning_rate": 0.0006, + "loss": 3.566108465194702, + "step": 4295 + }, + { + "epoch": 59.671035386631715, + "grad_norm": 0.1935717612504959, + "learning_rate": 0.0006, + "loss": 3.5934512615203857, + "step": 4296 + }, + { + "epoch": 59.68501529051988, + "grad_norm": 0.20164808630943298, + "learning_rate": 0.0006, + "loss": 3.545046329498291, + "step": 4297 + }, + { + "epoch": 59.69899519440804, + "grad_norm": 0.19589892029762268, + "learning_rate": 0.0006, + "loss": 3.5302319526672363, + "step": 4298 + }, + { + "epoch": 59.7129750982962, + "grad_norm": 0.1893095225095749, + "learning_rate": 0.0006, + "loss": 3.5947837829589844, + "step": 4299 + }, + { + "epoch": 59.72695500218436, + "grad_norm": 0.20218202471733093, + "learning_rate": 0.0006, + "loss": 3.5889904499053955, + "step": 4300 + }, + { + "epoch": 59.74093490607252, + "grad_norm": 0.19681277871131897, + "learning_rate": 0.0006, + "loss": 3.581536293029785, + "step": 4301 + }, + { + "epoch": 59.75491480996068, + "grad_norm": 0.20112384855747223, + "learning_rate": 0.0006, + "loss": 3.5509750843048096, + "step": 4302 + }, + { + "epoch": 59.768894713848844, + "grad_norm": 0.1969940960407257, + "learning_rate": 0.0006, + "loss": 3.5462636947631836, + "step": 4303 + }, + { + "epoch": 59.782874617737, + "grad_norm": 0.20936219394207, + "learning_rate": 0.0006, + "loss": 3.5284390449523926, + "step": 4304 + }, + { + "epoch": 59.796854521625164, + "grad_norm": 0.21717803180217743, + "learning_rate": 0.0006, + "loss": 3.5669212341308594, + "step": 4305 + }, + { + "epoch": 59.81083442551333, + "grad_norm": 0.20210883021354675, + "learning_rate": 0.0006, + "loss": 3.5366921424865723, + "step": 4306 + }, + { + "epoch": 59.824814329401484, + "grad_norm": 0.224124476313591, + "learning_rate": 0.0006, + "loss": 3.5457663536071777, + "step": 4307 + }, + { + "epoch": 59.83879423328965, + "grad_norm": 0.2186291366815567, + "learning_rate": 0.0006, + "loss": 3.5732779502868652, + "step": 4308 + }, + { + "epoch": 59.8527741371778, + "grad_norm": 0.19785884022712708, + "learning_rate": 0.0006, + "loss": 3.5471811294555664, + "step": 4309 + }, + { + "epoch": 59.86675404106597, + "grad_norm": 0.24774281680583954, + "learning_rate": 0.0006, + "loss": 3.5839807987213135, + "step": 4310 + }, + { + "epoch": 59.88073394495413, + "grad_norm": 0.25087007880210876, + "learning_rate": 0.0006, + "loss": 3.56972336769104, + "step": 4311 + }, + { + "epoch": 59.89471384884229, + "grad_norm": 0.21474683284759521, + "learning_rate": 0.0006, + "loss": 3.5199289321899414, + "step": 4312 + }, + { + "epoch": 59.90869375273045, + "grad_norm": 0.2087765336036682, + "learning_rate": 0.0006, + "loss": 3.5777320861816406, + "step": 4313 + }, + { + "epoch": 59.92267365661861, + "grad_norm": 0.2228539139032364, + "learning_rate": 0.0006, + "loss": 3.531118392944336, + "step": 4314 + }, + { + "epoch": 59.93665356050677, + "grad_norm": 0.2456534057855606, + "learning_rate": 0.0006, + "loss": 3.5448033809661865, + "step": 4315 + }, + { + "epoch": 59.95063346439493, + "grad_norm": 0.2699171006679535, + "learning_rate": 0.0006, + "loss": 3.560724973678589, + "step": 4316 + }, + { + "epoch": 59.964613368283096, + "grad_norm": 0.2664966881275177, + "learning_rate": 0.0006, + "loss": 3.5932974815368652, + "step": 4317 + }, + { + "epoch": 59.97859327217125, + "grad_norm": 0.2137683779001236, + "learning_rate": 0.0006, + "loss": 3.5610086917877197, + "step": 4318 + }, + { + "epoch": 59.992573176059416, + "grad_norm": 0.2067531794309616, + "learning_rate": 0.0006, + "loss": 3.5588603019714355, + "step": 4319 + }, + { + "epoch": 60.0, + "grad_norm": 0.2458500862121582, + "learning_rate": 0.0006, + "loss": 3.5636165142059326, + "step": 4320 + }, + { + "epoch": 60.0, + "eval_loss": 3.967288017272949, + "eval_runtime": 44.2225, + "eval_samples_per_second": 55.221, + "eval_steps_per_second": 3.46, + "step": 4320 + }, + { + "epoch": 60.01397990388816, + "grad_norm": 0.25330978631973267, + "learning_rate": 0.0006, + "loss": 3.524343490600586, + "step": 4321 + }, + { + "epoch": 60.02795980777632, + "grad_norm": 0.3005860447883606, + "learning_rate": 0.0006, + "loss": 3.533761501312256, + "step": 4322 + }, + { + "epoch": 60.04193971166448, + "grad_norm": 0.29054996371269226, + "learning_rate": 0.0006, + "loss": 3.536410331726074, + "step": 4323 + }, + { + "epoch": 60.05591961555265, + "grad_norm": 0.23265458643436432, + "learning_rate": 0.0006, + "loss": 3.4965157508850098, + "step": 4324 + }, + { + "epoch": 60.0698995194408, + "grad_norm": 0.2330862134695053, + "learning_rate": 0.0006, + "loss": 3.4899768829345703, + "step": 4325 + }, + { + "epoch": 60.083879423328966, + "grad_norm": 0.23188516497612, + "learning_rate": 0.0006, + "loss": 3.504887580871582, + "step": 4326 + }, + { + "epoch": 60.09785932721712, + "grad_norm": 0.2152940034866333, + "learning_rate": 0.0006, + "loss": 3.5274603366851807, + "step": 4327 + }, + { + "epoch": 60.111839231105286, + "grad_norm": 0.21918490529060364, + "learning_rate": 0.0006, + "loss": 3.5223636627197266, + "step": 4328 + }, + { + "epoch": 60.12581913499345, + "grad_norm": 0.23193582892417908, + "learning_rate": 0.0006, + "loss": 3.5171899795532227, + "step": 4329 + }, + { + "epoch": 60.139799038881605, + "grad_norm": 0.2336687296628952, + "learning_rate": 0.0006, + "loss": 3.5403029918670654, + "step": 4330 + }, + { + "epoch": 60.15377894276977, + "grad_norm": 0.23833593726158142, + "learning_rate": 0.0006, + "loss": 3.5055623054504395, + "step": 4331 + }, + { + "epoch": 60.16775884665793, + "grad_norm": 0.2389385998249054, + "learning_rate": 0.0006, + "loss": 3.5423574447631836, + "step": 4332 + }, + { + "epoch": 60.18173875054609, + "grad_norm": 0.21729786694049835, + "learning_rate": 0.0006, + "loss": 3.508272647857666, + "step": 4333 + }, + { + "epoch": 60.19571865443425, + "grad_norm": 0.2118137627840042, + "learning_rate": 0.0006, + "loss": 3.556934356689453, + "step": 4334 + }, + { + "epoch": 60.20969855832241, + "grad_norm": 0.23217040300369263, + "learning_rate": 0.0006, + "loss": 3.546459674835205, + "step": 4335 + }, + { + "epoch": 60.22367846221057, + "grad_norm": 0.2446565330028534, + "learning_rate": 0.0006, + "loss": 3.5662269592285156, + "step": 4336 + }, + { + "epoch": 60.237658366098735, + "grad_norm": 0.22065940499305725, + "learning_rate": 0.0006, + "loss": 3.550262451171875, + "step": 4337 + }, + { + "epoch": 60.25163826998689, + "grad_norm": 0.22212697565555573, + "learning_rate": 0.0006, + "loss": 3.5495731830596924, + "step": 4338 + }, + { + "epoch": 60.265618173875055, + "grad_norm": 0.21770696341991425, + "learning_rate": 0.0006, + "loss": 3.5345935821533203, + "step": 4339 + }, + { + "epoch": 60.27959807776322, + "grad_norm": 0.2089550793170929, + "learning_rate": 0.0006, + "loss": 3.5704336166381836, + "step": 4340 + }, + { + "epoch": 60.293577981651374, + "grad_norm": 0.20426379144191742, + "learning_rate": 0.0006, + "loss": 3.546909809112549, + "step": 4341 + }, + { + "epoch": 60.30755788553954, + "grad_norm": 0.2038658708333969, + "learning_rate": 0.0006, + "loss": 3.5444231033325195, + "step": 4342 + }, + { + "epoch": 60.3215377894277, + "grad_norm": 0.20485089719295502, + "learning_rate": 0.0006, + "loss": 3.561206817626953, + "step": 4343 + }, + { + "epoch": 60.33551769331586, + "grad_norm": 0.19151435792446136, + "learning_rate": 0.0006, + "loss": 3.5226097106933594, + "step": 4344 + }, + { + "epoch": 60.34949759720402, + "grad_norm": 0.19078181684017181, + "learning_rate": 0.0006, + "loss": 3.5431442260742188, + "step": 4345 + }, + { + "epoch": 60.36347750109218, + "grad_norm": 0.2032487392425537, + "learning_rate": 0.0006, + "loss": 3.5317721366882324, + "step": 4346 + }, + { + "epoch": 60.37745740498034, + "grad_norm": 0.18330955505371094, + "learning_rate": 0.0006, + "loss": 3.521145820617676, + "step": 4347 + }, + { + "epoch": 60.391437308868504, + "grad_norm": 0.18987730145454407, + "learning_rate": 0.0006, + "loss": 3.4980595111846924, + "step": 4348 + }, + { + "epoch": 60.40541721275666, + "grad_norm": 0.19873160123825073, + "learning_rate": 0.0006, + "loss": 3.5639595985412598, + "step": 4349 + }, + { + "epoch": 60.419397116644824, + "grad_norm": 0.20323137938976288, + "learning_rate": 0.0006, + "loss": 3.5364837646484375, + "step": 4350 + }, + { + "epoch": 60.43337702053299, + "grad_norm": 0.20755112171173096, + "learning_rate": 0.0006, + "loss": 3.565398931503296, + "step": 4351 + }, + { + "epoch": 60.44735692442114, + "grad_norm": 0.19222456216812134, + "learning_rate": 0.0006, + "loss": 3.569659948348999, + "step": 4352 + }, + { + "epoch": 60.46133682830931, + "grad_norm": 0.18698982894420624, + "learning_rate": 0.0006, + "loss": 3.5305557250976562, + "step": 4353 + }, + { + "epoch": 60.47531673219746, + "grad_norm": 0.19300664961338043, + "learning_rate": 0.0006, + "loss": 3.5398356914520264, + "step": 4354 + }, + { + "epoch": 60.489296636085626, + "grad_norm": 0.19573862850666046, + "learning_rate": 0.0006, + "loss": 3.5549232959747314, + "step": 4355 + }, + { + "epoch": 60.50327653997379, + "grad_norm": 0.21893447637557983, + "learning_rate": 0.0006, + "loss": 3.5427680015563965, + "step": 4356 + }, + { + "epoch": 60.517256443861946, + "grad_norm": 0.2375156730413437, + "learning_rate": 0.0006, + "loss": 3.5368900299072266, + "step": 4357 + }, + { + "epoch": 60.53123634775011, + "grad_norm": 0.2430058717727661, + "learning_rate": 0.0006, + "loss": 3.5812578201293945, + "step": 4358 + }, + { + "epoch": 60.54521625163827, + "grad_norm": 0.21769747138023376, + "learning_rate": 0.0006, + "loss": 3.563126564025879, + "step": 4359 + }, + { + "epoch": 60.55919615552643, + "grad_norm": 0.19841895997524261, + "learning_rate": 0.0006, + "loss": 3.5683727264404297, + "step": 4360 + }, + { + "epoch": 60.57317605941459, + "grad_norm": 0.22039084136486053, + "learning_rate": 0.0006, + "loss": 3.5417304039001465, + "step": 4361 + }, + { + "epoch": 60.58715596330275, + "grad_norm": 0.22528418898582458, + "learning_rate": 0.0006, + "loss": 3.5606675148010254, + "step": 4362 + }, + { + "epoch": 60.60113586719091, + "grad_norm": 0.19975383579730988, + "learning_rate": 0.0006, + "loss": 3.5345380306243896, + "step": 4363 + }, + { + "epoch": 60.615115771079076, + "grad_norm": 0.18953508138656616, + "learning_rate": 0.0006, + "loss": 3.523921012878418, + "step": 4364 + }, + { + "epoch": 60.62909567496723, + "grad_norm": 0.19997848570346832, + "learning_rate": 0.0006, + "loss": 3.553741931915283, + "step": 4365 + }, + { + "epoch": 60.643075578855395, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.57025408744812, + "step": 4366 + }, + { + "epoch": 60.65705548274356, + "grad_norm": 0.20452328026294708, + "learning_rate": 0.0006, + "loss": 3.5293073654174805, + "step": 4367 + }, + { + "epoch": 60.671035386631715, + "grad_norm": 0.18740518391132355, + "learning_rate": 0.0006, + "loss": 3.520880699157715, + "step": 4368 + }, + { + "epoch": 60.68501529051988, + "grad_norm": 0.19408279657363892, + "learning_rate": 0.0006, + "loss": 3.553086757659912, + "step": 4369 + }, + { + "epoch": 60.69899519440804, + "grad_norm": 0.19472180306911469, + "learning_rate": 0.0006, + "loss": 3.557744026184082, + "step": 4370 + }, + { + "epoch": 60.7129750982962, + "grad_norm": 0.18123279511928558, + "learning_rate": 0.0006, + "loss": 3.547276258468628, + "step": 4371 + }, + { + "epoch": 60.72695500218436, + "grad_norm": 0.21011893451213837, + "learning_rate": 0.0006, + "loss": 3.544990062713623, + "step": 4372 + }, + { + "epoch": 60.74093490607252, + "grad_norm": 0.25020623207092285, + "learning_rate": 0.0006, + "loss": 3.541600227355957, + "step": 4373 + }, + { + "epoch": 60.75491480996068, + "grad_norm": 0.2579628825187683, + "learning_rate": 0.0006, + "loss": 3.547964096069336, + "step": 4374 + }, + { + "epoch": 60.768894713848844, + "grad_norm": 0.23156116902828217, + "learning_rate": 0.0006, + "loss": 3.550957202911377, + "step": 4375 + }, + { + "epoch": 60.782874617737, + "grad_norm": 0.22070197761058807, + "learning_rate": 0.0006, + "loss": 3.4950358867645264, + "step": 4376 + }, + { + "epoch": 60.796854521625164, + "grad_norm": 0.222877636551857, + "learning_rate": 0.0006, + "loss": 3.5622036457061768, + "step": 4377 + }, + { + "epoch": 60.81083442551333, + "grad_norm": 0.21662060916423798, + "learning_rate": 0.0006, + "loss": 3.551515579223633, + "step": 4378 + }, + { + "epoch": 60.824814329401484, + "grad_norm": 0.22380465269088745, + "learning_rate": 0.0006, + "loss": 3.5552866458892822, + "step": 4379 + }, + { + "epoch": 60.83879423328965, + "grad_norm": 0.24023373425006866, + "learning_rate": 0.0006, + "loss": 3.5741777420043945, + "step": 4380 + }, + { + "epoch": 60.8527741371778, + "grad_norm": 0.1921556293964386, + "learning_rate": 0.0006, + "loss": 3.535435199737549, + "step": 4381 + }, + { + "epoch": 60.86675404106597, + "grad_norm": 0.20002295076847076, + "learning_rate": 0.0006, + "loss": 3.5660810470581055, + "step": 4382 + }, + { + "epoch": 60.88073394495413, + "grad_norm": 0.22797644138336182, + "learning_rate": 0.0006, + "loss": 3.5361297130584717, + "step": 4383 + }, + { + "epoch": 60.89471384884229, + "grad_norm": 0.24129843711853027, + "learning_rate": 0.0006, + "loss": 3.578810214996338, + "step": 4384 + }, + { + "epoch": 60.90869375273045, + "grad_norm": 0.2363646924495697, + "learning_rate": 0.0006, + "loss": 3.5245485305786133, + "step": 4385 + }, + { + "epoch": 60.92267365661861, + "grad_norm": 0.22811074554920197, + "learning_rate": 0.0006, + "loss": 3.551769733428955, + "step": 4386 + }, + { + "epoch": 60.93665356050677, + "grad_norm": 0.2204643338918686, + "learning_rate": 0.0006, + "loss": 3.5833442211151123, + "step": 4387 + }, + { + "epoch": 60.95063346439493, + "grad_norm": 0.21389783918857574, + "learning_rate": 0.0006, + "loss": 3.531735897064209, + "step": 4388 + }, + { + "epoch": 60.964613368283096, + "grad_norm": 0.22142091393470764, + "learning_rate": 0.0006, + "loss": 3.5482523441314697, + "step": 4389 + }, + { + "epoch": 60.97859327217125, + "grad_norm": 0.21186122298240662, + "learning_rate": 0.0006, + "loss": 3.540555477142334, + "step": 4390 + }, + { + "epoch": 60.992573176059416, + "grad_norm": 0.19939634203910828, + "learning_rate": 0.0006, + "loss": 3.576408624649048, + "step": 4391 + }, + { + "epoch": 61.0, + "grad_norm": 0.23696118593215942, + "learning_rate": 0.0006, + "loss": 3.5633749961853027, + "step": 4392 + }, + { + "epoch": 61.0, + "eval_loss": 3.9743118286132812, + "eval_runtime": 44.7392, + "eval_samples_per_second": 54.583, + "eval_steps_per_second": 3.42, + "step": 4392 + }, + { + "epoch": 61.01397990388816, + "grad_norm": 0.24024035036563873, + "learning_rate": 0.0006, + "loss": 3.532285690307617, + "step": 4393 + }, + { + "epoch": 61.02795980777632, + "grad_norm": 0.2475728690624237, + "learning_rate": 0.0006, + "loss": 3.543304920196533, + "step": 4394 + }, + { + "epoch": 61.04193971166448, + "grad_norm": 0.23326511681079865, + "learning_rate": 0.0006, + "loss": 3.5022737979888916, + "step": 4395 + }, + { + "epoch": 61.05591961555265, + "grad_norm": 0.21414779126644135, + "learning_rate": 0.0006, + "loss": 3.5337772369384766, + "step": 4396 + }, + { + "epoch": 61.0698995194408, + "grad_norm": 0.2234504371881485, + "learning_rate": 0.0006, + "loss": 3.539985179901123, + "step": 4397 + }, + { + "epoch": 61.083879423328966, + "grad_norm": 0.2199121117591858, + "learning_rate": 0.0006, + "loss": 3.5312232971191406, + "step": 4398 + }, + { + "epoch": 61.09785932721712, + "grad_norm": 0.2444634735584259, + "learning_rate": 0.0006, + "loss": 3.527348518371582, + "step": 4399 + }, + { + "epoch": 61.111839231105286, + "grad_norm": 0.29022055864334106, + "learning_rate": 0.0006, + "loss": 3.4902563095092773, + "step": 4400 + }, + { + "epoch": 61.12581913499345, + "grad_norm": 0.29494911432266235, + "learning_rate": 0.0006, + "loss": 3.498292922973633, + "step": 4401 + }, + { + "epoch": 61.139799038881605, + "grad_norm": 0.22292214632034302, + "learning_rate": 0.0006, + "loss": 3.533914089202881, + "step": 4402 + }, + { + "epoch": 61.15377894276977, + "grad_norm": 0.22136220335960388, + "learning_rate": 0.0006, + "loss": 3.5109519958496094, + "step": 4403 + }, + { + "epoch": 61.16775884665793, + "grad_norm": 0.2325095534324646, + "learning_rate": 0.0006, + "loss": 3.5289368629455566, + "step": 4404 + }, + { + "epoch": 61.18173875054609, + "grad_norm": 0.2413562536239624, + "learning_rate": 0.0006, + "loss": 3.518467903137207, + "step": 4405 + }, + { + "epoch": 61.19571865443425, + "grad_norm": 0.25906774401664734, + "learning_rate": 0.0006, + "loss": 3.525516986846924, + "step": 4406 + }, + { + "epoch": 61.20969855832241, + "grad_norm": 0.27686211466789246, + "learning_rate": 0.0006, + "loss": 3.5516865253448486, + "step": 4407 + }, + { + "epoch": 61.22367846221057, + "grad_norm": 0.2906339764595032, + "learning_rate": 0.0006, + "loss": 3.541128158569336, + "step": 4408 + }, + { + "epoch": 61.237658366098735, + "grad_norm": 0.27868953347206116, + "learning_rate": 0.0006, + "loss": 3.5193347930908203, + "step": 4409 + }, + { + "epoch": 61.25163826998689, + "grad_norm": 0.27658969163894653, + "learning_rate": 0.0006, + "loss": 3.502227783203125, + "step": 4410 + }, + { + "epoch": 61.265618173875055, + "grad_norm": 0.2933507561683655, + "learning_rate": 0.0006, + "loss": 3.530291795730591, + "step": 4411 + }, + { + "epoch": 61.27959807776322, + "grad_norm": 0.2631373405456543, + "learning_rate": 0.0006, + "loss": 3.551851749420166, + "step": 4412 + }, + { + "epoch": 61.293577981651374, + "grad_norm": 0.2546952962875366, + "learning_rate": 0.0006, + "loss": 3.5503034591674805, + "step": 4413 + }, + { + "epoch": 61.30755788553954, + "grad_norm": 0.23794181644916534, + "learning_rate": 0.0006, + "loss": 3.546926498413086, + "step": 4414 + }, + { + "epoch": 61.3215377894277, + "grad_norm": 0.24853180348873138, + "learning_rate": 0.0006, + "loss": 3.514120101928711, + "step": 4415 + }, + { + "epoch": 61.33551769331586, + "grad_norm": 0.22304897010326385, + "learning_rate": 0.0006, + "loss": 3.5430846214294434, + "step": 4416 + }, + { + "epoch": 61.34949759720402, + "grad_norm": 0.2315143197774887, + "learning_rate": 0.0006, + "loss": 3.520509719848633, + "step": 4417 + }, + { + "epoch": 61.36347750109218, + "grad_norm": 0.22943219542503357, + "learning_rate": 0.0006, + "loss": 3.5467031002044678, + "step": 4418 + }, + { + "epoch": 61.37745740498034, + "grad_norm": 0.20610259473323822, + "learning_rate": 0.0006, + "loss": 3.523524761199951, + "step": 4419 + }, + { + "epoch": 61.391437308868504, + "grad_norm": 0.23042091727256775, + "learning_rate": 0.0006, + "loss": 3.5619053840637207, + "step": 4420 + }, + { + "epoch": 61.40541721275666, + "grad_norm": 0.23525655269622803, + "learning_rate": 0.0006, + "loss": 3.5647311210632324, + "step": 4421 + }, + { + "epoch": 61.419397116644824, + "grad_norm": 0.24424530565738678, + "learning_rate": 0.0006, + "loss": 3.5278732776641846, + "step": 4422 + }, + { + "epoch": 61.43337702053299, + "grad_norm": 0.22195497155189514, + "learning_rate": 0.0006, + "loss": 3.500657558441162, + "step": 4423 + }, + { + "epoch": 61.44735692442114, + "grad_norm": 0.20596756041049957, + "learning_rate": 0.0006, + "loss": 3.5107016563415527, + "step": 4424 + }, + { + "epoch": 61.46133682830931, + "grad_norm": 0.21293926239013672, + "learning_rate": 0.0006, + "loss": 3.5248196125030518, + "step": 4425 + }, + { + "epoch": 61.47531673219746, + "grad_norm": 0.21993403136730194, + "learning_rate": 0.0006, + "loss": 3.5247411727905273, + "step": 4426 + }, + { + "epoch": 61.489296636085626, + "grad_norm": 0.19609302282333374, + "learning_rate": 0.0006, + "loss": 3.543978452682495, + "step": 4427 + }, + { + "epoch": 61.50327653997379, + "grad_norm": 0.2064359486103058, + "learning_rate": 0.0006, + "loss": 3.525879144668579, + "step": 4428 + }, + { + "epoch": 61.517256443861946, + "grad_norm": 0.221832275390625, + "learning_rate": 0.0006, + "loss": 3.542086601257324, + "step": 4429 + }, + { + "epoch": 61.53123634775011, + "grad_norm": 0.20173773169517517, + "learning_rate": 0.0006, + "loss": 3.5395596027374268, + "step": 4430 + }, + { + "epoch": 61.54521625163827, + "grad_norm": 0.21064360439777374, + "learning_rate": 0.0006, + "loss": 3.5651049613952637, + "step": 4431 + }, + { + "epoch": 61.55919615552643, + "grad_norm": 0.2079596370458603, + "learning_rate": 0.0006, + "loss": 3.513719081878662, + "step": 4432 + }, + { + "epoch": 61.57317605941459, + "grad_norm": 0.1862022429704666, + "learning_rate": 0.0006, + "loss": 3.5438897609710693, + "step": 4433 + }, + { + "epoch": 61.58715596330275, + "grad_norm": 0.202021524310112, + "learning_rate": 0.0006, + "loss": 3.5497570037841797, + "step": 4434 + }, + { + "epoch": 61.60113586719091, + "grad_norm": 0.2252725064754486, + "learning_rate": 0.0006, + "loss": 3.5361452102661133, + "step": 4435 + }, + { + "epoch": 61.615115771079076, + "grad_norm": 0.22194477915763855, + "learning_rate": 0.0006, + "loss": 3.5436792373657227, + "step": 4436 + }, + { + "epoch": 61.62909567496723, + "grad_norm": 0.20660430192947388, + "learning_rate": 0.0006, + "loss": 3.5347955226898193, + "step": 4437 + }, + { + "epoch": 61.643075578855395, + "grad_norm": 0.19738668203353882, + "learning_rate": 0.0006, + "loss": 3.5478930473327637, + "step": 4438 + }, + { + "epoch": 61.65705548274356, + "grad_norm": 0.19570894539356232, + "learning_rate": 0.0006, + "loss": 3.581364154815674, + "step": 4439 + }, + { + "epoch": 61.671035386631715, + "grad_norm": 0.2311817854642868, + "learning_rate": 0.0006, + "loss": 3.5336194038391113, + "step": 4440 + }, + { + "epoch": 61.68501529051988, + "grad_norm": 0.23114202916622162, + "learning_rate": 0.0006, + "loss": 3.5473289489746094, + "step": 4441 + }, + { + "epoch": 61.69899519440804, + "grad_norm": 0.2412044256925583, + "learning_rate": 0.0006, + "loss": 3.558802604675293, + "step": 4442 + }, + { + "epoch": 61.7129750982962, + "grad_norm": 0.22932057082653046, + "learning_rate": 0.0006, + "loss": 3.553133726119995, + "step": 4443 + }, + { + "epoch": 61.72695500218436, + "grad_norm": 0.23192140460014343, + "learning_rate": 0.0006, + "loss": 3.5247159004211426, + "step": 4444 + }, + { + "epoch": 61.74093490607252, + "grad_norm": 0.23548972606658936, + "learning_rate": 0.0006, + "loss": 3.5654778480529785, + "step": 4445 + }, + { + "epoch": 61.75491480996068, + "grad_norm": 0.20992626249790192, + "learning_rate": 0.0006, + "loss": 3.5568647384643555, + "step": 4446 + }, + { + "epoch": 61.768894713848844, + "grad_norm": 0.20303797721862793, + "learning_rate": 0.0006, + "loss": 3.564765453338623, + "step": 4447 + }, + { + "epoch": 61.782874617737, + "grad_norm": 0.2019573301076889, + "learning_rate": 0.0006, + "loss": 3.523521900177002, + "step": 4448 + }, + { + "epoch": 61.796854521625164, + "grad_norm": 0.20591112971305847, + "learning_rate": 0.0006, + "loss": 3.5361227989196777, + "step": 4449 + }, + { + "epoch": 61.81083442551333, + "grad_norm": 0.21811535954475403, + "learning_rate": 0.0006, + "loss": 3.56982159614563, + "step": 4450 + }, + { + "epoch": 61.824814329401484, + "grad_norm": 0.24934124946594238, + "learning_rate": 0.0006, + "loss": 3.5518784523010254, + "step": 4451 + }, + { + "epoch": 61.83879423328965, + "grad_norm": 0.28142663836479187, + "learning_rate": 0.0006, + "loss": 3.5480635166168213, + "step": 4452 + }, + { + "epoch": 61.8527741371778, + "grad_norm": 0.27585235238075256, + "learning_rate": 0.0006, + "loss": 3.56685733795166, + "step": 4453 + }, + { + "epoch": 61.86675404106597, + "grad_norm": 0.24309827387332916, + "learning_rate": 0.0006, + "loss": 3.551058769226074, + "step": 4454 + }, + { + "epoch": 61.88073394495413, + "grad_norm": 0.22480300068855286, + "learning_rate": 0.0006, + "loss": 3.5644495487213135, + "step": 4455 + }, + { + "epoch": 61.89471384884229, + "grad_norm": 0.19861266016960144, + "learning_rate": 0.0006, + "loss": 3.5529613494873047, + "step": 4456 + }, + { + "epoch": 61.90869375273045, + "grad_norm": 0.20176313817501068, + "learning_rate": 0.0006, + "loss": 3.5173492431640625, + "step": 4457 + }, + { + "epoch": 61.92267365661861, + "grad_norm": 0.1964731365442276, + "learning_rate": 0.0006, + "loss": 3.5555479526519775, + "step": 4458 + }, + { + "epoch": 61.93665356050677, + "grad_norm": 0.20427751541137695, + "learning_rate": 0.0006, + "loss": 3.5312647819519043, + "step": 4459 + }, + { + "epoch": 61.95063346439493, + "grad_norm": 0.21940940618515015, + "learning_rate": 0.0006, + "loss": 3.536012649536133, + "step": 4460 + }, + { + "epoch": 61.964613368283096, + "grad_norm": 0.2100883573293686, + "learning_rate": 0.0006, + "loss": 3.5627548694610596, + "step": 4461 + }, + { + "epoch": 61.97859327217125, + "grad_norm": 0.21980689465999603, + "learning_rate": 0.0006, + "loss": 3.5933351516723633, + "step": 4462 + }, + { + "epoch": 61.992573176059416, + "grad_norm": 0.23822137713432312, + "learning_rate": 0.0006, + "loss": 3.567392349243164, + "step": 4463 + }, + { + "epoch": 62.0, + "grad_norm": 0.293637752532959, + "learning_rate": 0.0006, + "loss": 3.5707521438598633, + "step": 4464 + }, + { + "epoch": 62.0, + "eval_loss": 3.9813005924224854, + "eval_runtime": 44.8261, + "eval_samples_per_second": 54.477, + "eval_steps_per_second": 3.413, + "step": 4464 + }, + { + "epoch": 62.01397990388816, + "grad_norm": 0.2819560766220093, + "learning_rate": 0.0006, + "loss": 3.5146231651306152, + "step": 4465 + }, + { + "epoch": 62.02795980777632, + "grad_norm": 0.2446105033159256, + "learning_rate": 0.0006, + "loss": 3.48366117477417, + "step": 4466 + }, + { + "epoch": 62.04193971166448, + "grad_norm": 0.26826128363609314, + "learning_rate": 0.0006, + "loss": 3.511063814163208, + "step": 4467 + }, + { + "epoch": 62.05591961555265, + "grad_norm": 0.28266897797584534, + "learning_rate": 0.0006, + "loss": 3.560831069946289, + "step": 4468 + }, + { + "epoch": 62.0698995194408, + "grad_norm": 0.262866348028183, + "learning_rate": 0.0006, + "loss": 3.5248615741729736, + "step": 4469 + }, + { + "epoch": 62.083879423328966, + "grad_norm": 0.22957175970077515, + "learning_rate": 0.0006, + "loss": 3.518132209777832, + "step": 4470 + }, + { + "epoch": 62.09785932721712, + "grad_norm": 0.2311105579137802, + "learning_rate": 0.0006, + "loss": 3.520376443862915, + "step": 4471 + }, + { + "epoch": 62.111839231105286, + "grad_norm": 0.2455885261297226, + "learning_rate": 0.0006, + "loss": 3.532329797744751, + "step": 4472 + }, + { + "epoch": 62.12581913499345, + "grad_norm": 0.22050215303897858, + "learning_rate": 0.0006, + "loss": 3.5367608070373535, + "step": 4473 + }, + { + "epoch": 62.139799038881605, + "grad_norm": 0.2187507450580597, + "learning_rate": 0.0006, + "loss": 3.5165085792541504, + "step": 4474 + }, + { + "epoch": 62.15377894276977, + "grad_norm": 0.23510432243347168, + "learning_rate": 0.0006, + "loss": 3.5357909202575684, + "step": 4475 + }, + { + "epoch": 62.16775884665793, + "grad_norm": 0.22336673736572266, + "learning_rate": 0.0006, + "loss": 3.5183372497558594, + "step": 4476 + }, + { + "epoch": 62.18173875054609, + "grad_norm": 0.22019170224666595, + "learning_rate": 0.0006, + "loss": 3.532637596130371, + "step": 4477 + }, + { + "epoch": 62.19571865443425, + "grad_norm": 0.20902299880981445, + "learning_rate": 0.0006, + "loss": 3.5421581268310547, + "step": 4478 + }, + { + "epoch": 62.20969855832241, + "grad_norm": 0.22846505045890808, + "learning_rate": 0.0006, + "loss": 3.5008513927459717, + "step": 4479 + }, + { + "epoch": 62.22367846221057, + "grad_norm": 0.23657570779323578, + "learning_rate": 0.0006, + "loss": 3.5454330444335938, + "step": 4480 + }, + { + "epoch": 62.237658366098735, + "grad_norm": 0.22021226584911346, + "learning_rate": 0.0006, + "loss": 3.535137891769409, + "step": 4481 + }, + { + "epoch": 62.25163826998689, + "grad_norm": 0.21457694470882416, + "learning_rate": 0.0006, + "loss": 3.5051913261413574, + "step": 4482 + }, + { + "epoch": 62.265618173875055, + "grad_norm": 0.20432431995868683, + "learning_rate": 0.0006, + "loss": 3.5237550735473633, + "step": 4483 + }, + { + "epoch": 62.27959807776322, + "grad_norm": 0.20499777793884277, + "learning_rate": 0.0006, + "loss": 3.537209987640381, + "step": 4484 + }, + { + "epoch": 62.293577981651374, + "grad_norm": 0.21323661506175995, + "learning_rate": 0.0006, + "loss": 3.518765687942505, + "step": 4485 + }, + { + "epoch": 62.30755788553954, + "grad_norm": 0.19734761118888855, + "learning_rate": 0.0006, + "loss": 3.5132994651794434, + "step": 4486 + }, + { + "epoch": 62.3215377894277, + "grad_norm": 0.1844230592250824, + "learning_rate": 0.0006, + "loss": 3.5348291397094727, + "step": 4487 + }, + { + "epoch": 62.33551769331586, + "grad_norm": 0.20451737940311432, + "learning_rate": 0.0006, + "loss": 3.5055956840515137, + "step": 4488 + }, + { + "epoch": 62.34949759720402, + "grad_norm": 0.20004220306873322, + "learning_rate": 0.0006, + "loss": 3.558253526687622, + "step": 4489 + }, + { + "epoch": 62.36347750109218, + "grad_norm": 0.20544862747192383, + "learning_rate": 0.0006, + "loss": 3.5031163692474365, + "step": 4490 + }, + { + "epoch": 62.37745740498034, + "grad_norm": 0.23045147955417633, + "learning_rate": 0.0006, + "loss": 3.526170253753662, + "step": 4491 + }, + { + "epoch": 62.391437308868504, + "grad_norm": 0.2580485939979553, + "learning_rate": 0.0006, + "loss": 3.561131238937378, + "step": 4492 + }, + { + "epoch": 62.40541721275666, + "grad_norm": 0.24825656414031982, + "learning_rate": 0.0006, + "loss": 3.5550408363342285, + "step": 4493 + }, + { + "epoch": 62.419397116644824, + "grad_norm": 0.2317914366722107, + "learning_rate": 0.0006, + "loss": 3.543360948562622, + "step": 4494 + }, + { + "epoch": 62.43337702053299, + "grad_norm": 0.2186558097600937, + "learning_rate": 0.0006, + "loss": 3.5293631553649902, + "step": 4495 + }, + { + "epoch": 62.44735692442114, + "grad_norm": 0.22694920003414154, + "learning_rate": 0.0006, + "loss": 3.5315871238708496, + "step": 4496 + }, + { + "epoch": 62.46133682830931, + "grad_norm": 0.24042636156082153, + "learning_rate": 0.0006, + "loss": 3.507556915283203, + "step": 4497 + }, + { + "epoch": 62.47531673219746, + "grad_norm": 0.23853783309459686, + "learning_rate": 0.0006, + "loss": 3.546670913696289, + "step": 4498 + }, + { + "epoch": 62.489296636085626, + "grad_norm": 0.23252007365226746, + "learning_rate": 0.0006, + "loss": 3.522880792617798, + "step": 4499 + }, + { + "epoch": 62.50327653997379, + "grad_norm": 0.20553545653820038, + "learning_rate": 0.0006, + "loss": 3.5367445945739746, + "step": 4500 + }, + { + "epoch": 62.517256443861946, + "grad_norm": 0.19607895612716675, + "learning_rate": 0.0006, + "loss": 3.5319433212280273, + "step": 4501 + }, + { + "epoch": 62.53123634775011, + "grad_norm": 0.21482273936271667, + "learning_rate": 0.0006, + "loss": 3.525094509124756, + "step": 4502 + }, + { + "epoch": 62.54521625163827, + "grad_norm": 0.18248772621154785, + "learning_rate": 0.0006, + "loss": 3.5324039459228516, + "step": 4503 + }, + { + "epoch": 62.55919615552643, + "grad_norm": 0.19388431310653687, + "learning_rate": 0.0006, + "loss": 3.5579934120178223, + "step": 4504 + }, + { + "epoch": 62.57317605941459, + "grad_norm": 0.1987910121679306, + "learning_rate": 0.0006, + "loss": 3.5049524307250977, + "step": 4505 + }, + { + "epoch": 62.58715596330275, + "grad_norm": 0.2176462560892105, + "learning_rate": 0.0006, + "loss": 3.517348051071167, + "step": 4506 + }, + { + "epoch": 62.60113586719091, + "grad_norm": 0.20312298834323883, + "learning_rate": 0.0006, + "loss": 3.589355230331421, + "step": 4507 + }, + { + "epoch": 62.615115771079076, + "grad_norm": 0.20725034177303314, + "learning_rate": 0.0006, + "loss": 3.5353567600250244, + "step": 4508 + }, + { + "epoch": 62.62909567496723, + "grad_norm": 0.1944240778684616, + "learning_rate": 0.0006, + "loss": 3.5435595512390137, + "step": 4509 + }, + { + "epoch": 62.643075578855395, + "grad_norm": 0.1925448626279831, + "learning_rate": 0.0006, + "loss": 3.5406274795532227, + "step": 4510 + }, + { + "epoch": 62.65705548274356, + "grad_norm": 0.1932716965675354, + "learning_rate": 0.0006, + "loss": 3.582890748977661, + "step": 4511 + }, + { + "epoch": 62.671035386631715, + "grad_norm": 0.1993696093559265, + "learning_rate": 0.0006, + "loss": 3.533501148223877, + "step": 4512 + }, + { + "epoch": 62.68501529051988, + "grad_norm": 0.22586803138256073, + "learning_rate": 0.0006, + "loss": 3.5265021324157715, + "step": 4513 + }, + { + "epoch": 62.69899519440804, + "grad_norm": 0.22882722318172455, + "learning_rate": 0.0006, + "loss": 3.5486440658569336, + "step": 4514 + }, + { + "epoch": 62.7129750982962, + "grad_norm": 0.21674324572086334, + "learning_rate": 0.0006, + "loss": 3.5362353324890137, + "step": 4515 + }, + { + "epoch": 62.72695500218436, + "grad_norm": 0.1941487342119217, + "learning_rate": 0.0006, + "loss": 3.5191574096679688, + "step": 4516 + }, + { + "epoch": 62.74093490607252, + "grad_norm": 0.2034437507390976, + "learning_rate": 0.0006, + "loss": 3.5412280559539795, + "step": 4517 + }, + { + "epoch": 62.75491480996068, + "grad_norm": 0.22009888291358948, + "learning_rate": 0.0006, + "loss": 3.589108467102051, + "step": 4518 + }, + { + "epoch": 62.768894713848844, + "grad_norm": 0.21187400817871094, + "learning_rate": 0.0006, + "loss": 3.527048349380493, + "step": 4519 + }, + { + "epoch": 62.782874617737, + "grad_norm": 0.2089816778898239, + "learning_rate": 0.0006, + "loss": 3.551755905151367, + "step": 4520 + }, + { + "epoch": 62.796854521625164, + "grad_norm": 0.2095830738544464, + "learning_rate": 0.0006, + "loss": 3.5302011966705322, + "step": 4521 + }, + { + "epoch": 62.81083442551333, + "grad_norm": 0.20930075645446777, + "learning_rate": 0.0006, + "loss": 3.5276856422424316, + "step": 4522 + }, + { + "epoch": 62.824814329401484, + "grad_norm": 0.1876252442598343, + "learning_rate": 0.0006, + "loss": 3.5467052459716797, + "step": 4523 + }, + { + "epoch": 62.83879423328965, + "grad_norm": 0.21137461066246033, + "learning_rate": 0.0006, + "loss": 3.5446524620056152, + "step": 4524 + }, + { + "epoch": 62.8527741371778, + "grad_norm": 0.21340630948543549, + "learning_rate": 0.0006, + "loss": 3.580069065093994, + "step": 4525 + }, + { + "epoch": 62.86675404106597, + "grad_norm": 0.22623291611671448, + "learning_rate": 0.0006, + "loss": 3.5203771591186523, + "step": 4526 + }, + { + "epoch": 62.88073394495413, + "grad_norm": 0.20891177654266357, + "learning_rate": 0.0006, + "loss": 3.5408263206481934, + "step": 4527 + }, + { + "epoch": 62.89471384884229, + "grad_norm": 0.19802644848823547, + "learning_rate": 0.0006, + "loss": 3.521557569503784, + "step": 4528 + }, + { + "epoch": 62.90869375273045, + "grad_norm": 0.20889638364315033, + "learning_rate": 0.0006, + "loss": 3.535468578338623, + "step": 4529 + }, + { + "epoch": 62.92267365661861, + "grad_norm": 0.20450912415981293, + "learning_rate": 0.0006, + "loss": 3.5473756790161133, + "step": 4530 + }, + { + "epoch": 62.93665356050677, + "grad_norm": 0.24126461148262024, + "learning_rate": 0.0006, + "loss": 3.5418906211853027, + "step": 4531 + }, + { + "epoch": 62.95063346439493, + "grad_norm": 0.2789648473262787, + "learning_rate": 0.0006, + "loss": 3.5500879287719727, + "step": 4532 + }, + { + "epoch": 62.964613368283096, + "grad_norm": 0.2855475842952728, + "learning_rate": 0.0006, + "loss": 3.5589256286621094, + "step": 4533 + }, + { + "epoch": 62.97859327217125, + "grad_norm": 0.2353338748216629, + "learning_rate": 0.0006, + "loss": 3.576944351196289, + "step": 4534 + }, + { + "epoch": 62.992573176059416, + "grad_norm": 0.2360614389181137, + "learning_rate": 0.0006, + "loss": 3.550532341003418, + "step": 4535 + }, + { + "epoch": 63.0, + "grad_norm": 0.28869640827178955, + "learning_rate": 0.0006, + "loss": 3.4976563453674316, + "step": 4536 + }, + { + "epoch": 63.0, + "eval_loss": 3.967819929122925, + "eval_runtime": 44.8611, + "eval_samples_per_second": 54.435, + "eval_steps_per_second": 3.411, + "step": 4536 + }, + { + "epoch": 63.01397990388816, + "grad_norm": 0.2646687626838684, + "learning_rate": 0.0006, + "loss": 3.498749017715454, + "step": 4537 + }, + { + "epoch": 63.02795980777632, + "grad_norm": 0.26432088017463684, + "learning_rate": 0.0006, + "loss": 3.5114989280700684, + "step": 4538 + }, + { + "epoch": 63.04193971166448, + "grad_norm": 0.2657051980495453, + "learning_rate": 0.0006, + "loss": 3.5383224487304688, + "step": 4539 + }, + { + "epoch": 63.05591961555265, + "grad_norm": 0.24790945649147034, + "learning_rate": 0.0006, + "loss": 3.5148894786834717, + "step": 4540 + }, + { + "epoch": 63.0698995194408, + "grad_norm": 0.2703767716884613, + "learning_rate": 0.0006, + "loss": 3.5212574005126953, + "step": 4541 + }, + { + "epoch": 63.083879423328966, + "grad_norm": 0.28064072132110596, + "learning_rate": 0.0006, + "loss": 3.4917726516723633, + "step": 4542 + }, + { + "epoch": 63.09785932721712, + "grad_norm": 0.30201056599617004, + "learning_rate": 0.0006, + "loss": 3.524174213409424, + "step": 4543 + }, + { + "epoch": 63.111839231105286, + "grad_norm": 0.2668539583683014, + "learning_rate": 0.0006, + "loss": 3.5284507274627686, + "step": 4544 + }, + { + "epoch": 63.12581913499345, + "grad_norm": 0.23223146796226501, + "learning_rate": 0.0006, + "loss": 3.500607967376709, + "step": 4545 + }, + { + "epoch": 63.139799038881605, + "grad_norm": 0.22300627827644348, + "learning_rate": 0.0006, + "loss": 3.509087562561035, + "step": 4546 + }, + { + "epoch": 63.15377894276977, + "grad_norm": 0.217527836561203, + "learning_rate": 0.0006, + "loss": 3.518986225128174, + "step": 4547 + }, + { + "epoch": 63.16775884665793, + "grad_norm": 0.2347487509250641, + "learning_rate": 0.0006, + "loss": 3.5288784503936768, + "step": 4548 + }, + { + "epoch": 63.18173875054609, + "grad_norm": 0.21052609384059906, + "learning_rate": 0.0006, + "loss": 3.534576892852783, + "step": 4549 + }, + { + "epoch": 63.19571865443425, + "grad_norm": 0.20836210250854492, + "learning_rate": 0.0006, + "loss": 3.540663242340088, + "step": 4550 + }, + { + "epoch": 63.20969855832241, + "grad_norm": 0.2257382571697235, + "learning_rate": 0.0006, + "loss": 3.5042576789855957, + "step": 4551 + }, + { + "epoch": 63.22367846221057, + "grad_norm": 0.25684455037117004, + "learning_rate": 0.0006, + "loss": 3.546757221221924, + "step": 4552 + }, + { + "epoch": 63.237658366098735, + "grad_norm": 0.25408735871315, + "learning_rate": 0.0006, + "loss": 3.5245237350463867, + "step": 4553 + }, + { + "epoch": 63.25163826998689, + "grad_norm": 0.2105615735054016, + "learning_rate": 0.0006, + "loss": 3.4935879707336426, + "step": 4554 + }, + { + "epoch": 63.265618173875055, + "grad_norm": 0.23599031567573547, + "learning_rate": 0.0006, + "loss": 3.5445284843444824, + "step": 4555 + }, + { + "epoch": 63.27959807776322, + "grad_norm": 0.2786335349082947, + "learning_rate": 0.0006, + "loss": 3.5432677268981934, + "step": 4556 + }, + { + "epoch": 63.293577981651374, + "grad_norm": 0.26032358407974243, + "learning_rate": 0.0006, + "loss": 3.542494297027588, + "step": 4557 + }, + { + "epoch": 63.30755788553954, + "grad_norm": 0.23259027302265167, + "learning_rate": 0.0006, + "loss": 3.5343332290649414, + "step": 4558 + }, + { + "epoch": 63.3215377894277, + "grad_norm": 0.2183394432067871, + "learning_rate": 0.0006, + "loss": 3.552696466445923, + "step": 4559 + }, + { + "epoch": 63.33551769331586, + "grad_norm": 0.23014239966869354, + "learning_rate": 0.0006, + "loss": 3.507399559020996, + "step": 4560 + }, + { + "epoch": 63.34949759720402, + "grad_norm": 0.22618430852890015, + "learning_rate": 0.0006, + "loss": 3.5329864025115967, + "step": 4561 + }, + { + "epoch": 63.36347750109218, + "grad_norm": 0.22740741074085236, + "learning_rate": 0.0006, + "loss": 3.5098977088928223, + "step": 4562 + }, + { + "epoch": 63.37745740498034, + "grad_norm": 0.21428990364074707, + "learning_rate": 0.0006, + "loss": 3.5244359970092773, + "step": 4563 + }, + { + "epoch": 63.391437308868504, + "grad_norm": 0.224009707570076, + "learning_rate": 0.0006, + "loss": 3.491610288619995, + "step": 4564 + }, + { + "epoch": 63.40541721275666, + "grad_norm": 0.24859225749969482, + "learning_rate": 0.0006, + "loss": 3.534926414489746, + "step": 4565 + }, + { + "epoch": 63.419397116644824, + "grad_norm": 0.27701491117477417, + "learning_rate": 0.0006, + "loss": 3.501753091812134, + "step": 4566 + }, + { + "epoch": 63.43337702053299, + "grad_norm": 0.27911627292633057, + "learning_rate": 0.0006, + "loss": 3.5505383014678955, + "step": 4567 + }, + { + "epoch": 63.44735692442114, + "grad_norm": 0.25913184881210327, + "learning_rate": 0.0006, + "loss": 3.5086495876312256, + "step": 4568 + }, + { + "epoch": 63.46133682830931, + "grad_norm": 0.19867996871471405, + "learning_rate": 0.0006, + "loss": 3.497912645339966, + "step": 4569 + }, + { + "epoch": 63.47531673219746, + "grad_norm": 0.21337668597698212, + "learning_rate": 0.0006, + "loss": 3.511085033416748, + "step": 4570 + }, + { + "epoch": 63.489296636085626, + "grad_norm": 0.2221735268831253, + "learning_rate": 0.0006, + "loss": 3.504108190536499, + "step": 4571 + }, + { + "epoch": 63.50327653997379, + "grad_norm": 0.20739667117595673, + "learning_rate": 0.0006, + "loss": 3.50193452835083, + "step": 4572 + }, + { + "epoch": 63.517256443861946, + "grad_norm": 0.20149169862270355, + "learning_rate": 0.0006, + "loss": 3.5508787631988525, + "step": 4573 + }, + { + "epoch": 63.53123634775011, + "grad_norm": 0.19348420202732086, + "learning_rate": 0.0006, + "loss": 3.521906852722168, + "step": 4574 + }, + { + "epoch": 63.54521625163827, + "grad_norm": 0.19946886599063873, + "learning_rate": 0.0006, + "loss": 3.509187698364258, + "step": 4575 + }, + { + "epoch": 63.55919615552643, + "grad_norm": 0.21359245479106903, + "learning_rate": 0.0006, + "loss": 3.5194101333618164, + "step": 4576 + }, + { + "epoch": 63.57317605941459, + "grad_norm": 0.21726977825164795, + "learning_rate": 0.0006, + "loss": 3.553684711456299, + "step": 4577 + }, + { + "epoch": 63.58715596330275, + "grad_norm": 0.21707940101623535, + "learning_rate": 0.0006, + "loss": 3.5474231243133545, + "step": 4578 + }, + { + "epoch": 63.60113586719091, + "grad_norm": 0.2226727306842804, + "learning_rate": 0.0006, + "loss": 3.556403636932373, + "step": 4579 + }, + { + "epoch": 63.615115771079076, + "grad_norm": 0.22008022665977478, + "learning_rate": 0.0006, + "loss": 3.4910531044006348, + "step": 4580 + }, + { + "epoch": 63.62909567496723, + "grad_norm": 0.20050542056560516, + "learning_rate": 0.0006, + "loss": 3.5085577964782715, + "step": 4581 + }, + { + "epoch": 63.643075578855395, + "grad_norm": 0.21937592327594757, + "learning_rate": 0.0006, + "loss": 3.530182361602783, + "step": 4582 + }, + { + "epoch": 63.65705548274356, + "grad_norm": 0.23152779042720795, + "learning_rate": 0.0006, + "loss": 3.551499843597412, + "step": 4583 + }, + { + "epoch": 63.671035386631715, + "grad_norm": 0.22870875895023346, + "learning_rate": 0.0006, + "loss": 3.5576539039611816, + "step": 4584 + }, + { + "epoch": 63.68501529051988, + "grad_norm": 0.23679395020008087, + "learning_rate": 0.0006, + "loss": 3.5392303466796875, + "step": 4585 + }, + { + "epoch": 63.69899519440804, + "grad_norm": 0.2301628291606903, + "learning_rate": 0.0006, + "loss": 3.53672194480896, + "step": 4586 + }, + { + "epoch": 63.7129750982962, + "grad_norm": 0.20859898626804352, + "learning_rate": 0.0006, + "loss": 3.5405986309051514, + "step": 4587 + }, + { + "epoch": 63.72695500218436, + "grad_norm": 0.2263292521238327, + "learning_rate": 0.0006, + "loss": 3.557982921600342, + "step": 4588 + }, + { + "epoch": 63.74093490607252, + "grad_norm": 0.21420416235923767, + "learning_rate": 0.0006, + "loss": 3.531942129135132, + "step": 4589 + }, + { + "epoch": 63.75491480996068, + "grad_norm": 0.21604575216770172, + "learning_rate": 0.0006, + "loss": 3.54978346824646, + "step": 4590 + }, + { + "epoch": 63.768894713848844, + "grad_norm": 0.2530747354030609, + "learning_rate": 0.0006, + "loss": 3.576831817626953, + "step": 4591 + }, + { + "epoch": 63.782874617737, + "grad_norm": 0.26169830560684204, + "learning_rate": 0.0006, + "loss": 3.5594139099121094, + "step": 4592 + }, + { + "epoch": 63.796854521625164, + "grad_norm": 0.23454166948795319, + "learning_rate": 0.0006, + "loss": 3.527966022491455, + "step": 4593 + }, + { + "epoch": 63.81083442551333, + "grad_norm": 0.25329118967056274, + "learning_rate": 0.0006, + "loss": 3.555817127227783, + "step": 4594 + }, + { + "epoch": 63.824814329401484, + "grad_norm": 0.26875534653663635, + "learning_rate": 0.0006, + "loss": 3.5659937858581543, + "step": 4595 + }, + { + "epoch": 63.83879423328965, + "grad_norm": 0.2446713000535965, + "learning_rate": 0.0006, + "loss": 3.520578384399414, + "step": 4596 + }, + { + "epoch": 63.8527741371778, + "grad_norm": 0.24629594385623932, + "learning_rate": 0.0006, + "loss": 3.562185764312744, + "step": 4597 + }, + { + "epoch": 63.86675404106597, + "grad_norm": 0.25355106592178345, + "learning_rate": 0.0006, + "loss": 3.549164295196533, + "step": 4598 + }, + { + "epoch": 63.88073394495413, + "grad_norm": 0.23251968622207642, + "learning_rate": 0.0006, + "loss": 3.529660224914551, + "step": 4599 + }, + { + "epoch": 63.89471384884229, + "grad_norm": 0.21848365664482117, + "learning_rate": 0.0006, + "loss": 3.582645893096924, + "step": 4600 + }, + { + "epoch": 63.90869375273045, + "grad_norm": 0.2525595426559448, + "learning_rate": 0.0006, + "loss": 3.5324134826660156, + "step": 4601 + }, + { + "epoch": 63.92267365661861, + "grad_norm": 0.2766541838645935, + "learning_rate": 0.0006, + "loss": 3.525892734527588, + "step": 4602 + }, + { + "epoch": 63.93665356050677, + "grad_norm": 0.2581831216812134, + "learning_rate": 0.0006, + "loss": 3.568148374557495, + "step": 4603 + }, + { + "epoch": 63.95063346439493, + "grad_norm": 0.2600967288017273, + "learning_rate": 0.0006, + "loss": 3.5735561847686768, + "step": 4604 + }, + { + "epoch": 63.964613368283096, + "grad_norm": 0.3125685155391693, + "learning_rate": 0.0006, + "loss": 3.513974666595459, + "step": 4605 + }, + { + "epoch": 63.97859327217125, + "grad_norm": 0.2686053514480591, + "learning_rate": 0.0006, + "loss": 3.533506155014038, + "step": 4606 + }, + { + "epoch": 63.992573176059416, + "grad_norm": 0.23033086955547333, + "learning_rate": 0.0006, + "loss": 3.5701582431793213, + "step": 4607 + }, + { + "epoch": 64.0, + "grad_norm": 0.2688716948032379, + "learning_rate": 0.0006, + "loss": 3.5370922088623047, + "step": 4608 + }, + { + "epoch": 64.0, + "eval_loss": 3.9788827896118164, + "eval_runtime": 44.2801, + "eval_samples_per_second": 55.149, + "eval_steps_per_second": 3.455, + "step": 4608 + }, + { + "epoch": 64.01397990388816, + "grad_norm": 0.27457329630851746, + "learning_rate": 0.0006, + "loss": 3.4789271354675293, + "step": 4609 + }, + { + "epoch": 64.02795980777633, + "grad_norm": 0.29753434658050537, + "learning_rate": 0.0006, + "loss": 3.5277628898620605, + "step": 4610 + }, + { + "epoch": 64.04193971166448, + "grad_norm": 0.36113694310188293, + "learning_rate": 0.0006, + "loss": 3.5066421031951904, + "step": 4611 + }, + { + "epoch": 64.05591961555264, + "grad_norm": 0.37955453991889954, + "learning_rate": 0.0006, + "loss": 3.532745361328125, + "step": 4612 + }, + { + "epoch": 64.06989951944081, + "grad_norm": 0.3055022060871124, + "learning_rate": 0.0006, + "loss": 3.526583671569824, + "step": 4613 + }, + { + "epoch": 64.08387942332897, + "grad_norm": 0.25849053263664246, + "learning_rate": 0.0006, + "loss": 3.525885581970215, + "step": 4614 + }, + { + "epoch": 64.09785932721712, + "grad_norm": 0.31513285636901855, + "learning_rate": 0.0006, + "loss": 3.5116710662841797, + "step": 4615 + }, + { + "epoch": 64.1118392311053, + "grad_norm": 0.3306029736995697, + "learning_rate": 0.0006, + "loss": 3.52685284614563, + "step": 4616 + }, + { + "epoch": 64.12581913499345, + "grad_norm": 0.3205282688140869, + "learning_rate": 0.0006, + "loss": 3.5442304611206055, + "step": 4617 + }, + { + "epoch": 64.1397990388816, + "grad_norm": 0.30371955037117004, + "learning_rate": 0.0006, + "loss": 3.523794174194336, + "step": 4618 + }, + { + "epoch": 64.15377894276976, + "grad_norm": 0.23337553441524506, + "learning_rate": 0.0006, + "loss": 3.530444860458374, + "step": 4619 + }, + { + "epoch": 64.16775884665793, + "grad_norm": 0.2223677784204483, + "learning_rate": 0.0006, + "loss": 3.5071358680725098, + "step": 4620 + }, + { + "epoch": 64.18173875054609, + "grad_norm": 0.21216993033885956, + "learning_rate": 0.0006, + "loss": 3.504469156265259, + "step": 4621 + }, + { + "epoch": 64.19571865443424, + "grad_norm": 0.21772179007530212, + "learning_rate": 0.0006, + "loss": 3.543393135070801, + "step": 4622 + }, + { + "epoch": 64.20969855832242, + "grad_norm": 0.2010853886604309, + "learning_rate": 0.0006, + "loss": 3.5219016075134277, + "step": 4623 + }, + { + "epoch": 64.22367846221057, + "grad_norm": 0.20491622388362885, + "learning_rate": 0.0006, + "loss": 3.4971656799316406, + "step": 4624 + }, + { + "epoch": 64.23765836609873, + "grad_norm": 0.19605079293251038, + "learning_rate": 0.0006, + "loss": 3.511746883392334, + "step": 4625 + }, + { + "epoch": 64.2516382699869, + "grad_norm": 0.2011575698852539, + "learning_rate": 0.0006, + "loss": 3.4981908798217773, + "step": 4626 + }, + { + "epoch": 64.26561817387505, + "grad_norm": 0.20687544345855713, + "learning_rate": 0.0006, + "loss": 3.5076913833618164, + "step": 4627 + }, + { + "epoch": 64.27959807776321, + "grad_norm": 0.20696480572223663, + "learning_rate": 0.0006, + "loss": 3.536569595336914, + "step": 4628 + }, + { + "epoch": 64.29357798165138, + "grad_norm": 0.200603649020195, + "learning_rate": 0.0006, + "loss": 3.525024175643921, + "step": 4629 + }, + { + "epoch": 64.30755788553954, + "grad_norm": 0.2087119072675705, + "learning_rate": 0.0006, + "loss": 3.508463144302368, + "step": 4630 + }, + { + "epoch": 64.3215377894277, + "grad_norm": 0.20823124051094055, + "learning_rate": 0.0006, + "loss": 3.5153684616088867, + "step": 4631 + }, + { + "epoch": 64.33551769331586, + "grad_norm": 0.19936303794384003, + "learning_rate": 0.0006, + "loss": 3.4908385276794434, + "step": 4632 + }, + { + "epoch": 64.34949759720402, + "grad_norm": 0.20928572118282318, + "learning_rate": 0.0006, + "loss": 3.5094854831695557, + "step": 4633 + }, + { + "epoch": 64.36347750109218, + "grad_norm": 0.22391293942928314, + "learning_rate": 0.0006, + "loss": 3.514522075653076, + "step": 4634 + }, + { + "epoch": 64.37745740498035, + "grad_norm": 0.19804537296295166, + "learning_rate": 0.0006, + "loss": 3.5072293281555176, + "step": 4635 + }, + { + "epoch": 64.3914373088685, + "grad_norm": 0.18472325801849365, + "learning_rate": 0.0006, + "loss": 3.5149683952331543, + "step": 4636 + }, + { + "epoch": 64.40541721275666, + "grad_norm": 0.20187066495418549, + "learning_rate": 0.0006, + "loss": 3.5198612213134766, + "step": 4637 + }, + { + "epoch": 64.41939711664482, + "grad_norm": 0.19778090715408325, + "learning_rate": 0.0006, + "loss": 3.540841817855835, + "step": 4638 + }, + { + "epoch": 64.43337702053299, + "grad_norm": 0.20325049757957458, + "learning_rate": 0.0006, + "loss": 3.522329330444336, + "step": 4639 + }, + { + "epoch": 64.44735692442114, + "grad_norm": 0.21200744807720184, + "learning_rate": 0.0006, + "loss": 3.5492870807647705, + "step": 4640 + }, + { + "epoch": 64.4613368283093, + "grad_norm": 0.21482640504837036, + "learning_rate": 0.0006, + "loss": 3.5450363159179688, + "step": 4641 + }, + { + "epoch": 64.47531673219747, + "grad_norm": 0.2257383018732071, + "learning_rate": 0.0006, + "loss": 3.518486976623535, + "step": 4642 + }, + { + "epoch": 64.48929663608563, + "grad_norm": 0.20710107684135437, + "learning_rate": 0.0006, + "loss": 3.5212514400482178, + "step": 4643 + }, + { + "epoch": 64.50327653997378, + "grad_norm": 0.20518364012241364, + "learning_rate": 0.0006, + "loss": 3.5239462852478027, + "step": 4644 + }, + { + "epoch": 64.51725644386195, + "grad_norm": 0.20311623811721802, + "learning_rate": 0.0006, + "loss": 3.5299072265625, + "step": 4645 + }, + { + "epoch": 64.53123634775011, + "grad_norm": 0.2045847624540329, + "learning_rate": 0.0006, + "loss": 3.5337295532226562, + "step": 4646 + }, + { + "epoch": 64.54521625163827, + "grad_norm": 0.20734596252441406, + "learning_rate": 0.0006, + "loss": 3.5001375675201416, + "step": 4647 + }, + { + "epoch": 64.55919615552644, + "grad_norm": 0.2103254497051239, + "learning_rate": 0.0006, + "loss": 3.50685977935791, + "step": 4648 + }, + { + "epoch": 64.57317605941459, + "grad_norm": 0.19903342425823212, + "learning_rate": 0.0006, + "loss": 3.5295052528381348, + "step": 4649 + }, + { + "epoch": 64.58715596330275, + "grad_norm": 0.21105562150478363, + "learning_rate": 0.0006, + "loss": 3.5062971115112305, + "step": 4650 + }, + { + "epoch": 64.60113586719092, + "grad_norm": 0.2149161994457245, + "learning_rate": 0.0006, + "loss": 3.5040459632873535, + "step": 4651 + }, + { + "epoch": 64.61511577107908, + "grad_norm": 0.19698478281497955, + "learning_rate": 0.0006, + "loss": 3.541640281677246, + "step": 4652 + }, + { + "epoch": 64.62909567496723, + "grad_norm": 0.22909119725227356, + "learning_rate": 0.0006, + "loss": 3.546515941619873, + "step": 4653 + }, + { + "epoch": 64.6430755788554, + "grad_norm": 0.2322760671377182, + "learning_rate": 0.0006, + "loss": 3.5374197959899902, + "step": 4654 + }, + { + "epoch": 64.65705548274356, + "grad_norm": 0.2173723429441452, + "learning_rate": 0.0006, + "loss": 3.543529510498047, + "step": 4655 + }, + { + "epoch": 64.67103538663171, + "grad_norm": 0.21360787749290466, + "learning_rate": 0.0006, + "loss": 3.560333251953125, + "step": 4656 + }, + { + "epoch": 64.68501529051987, + "grad_norm": 0.23260995745658875, + "learning_rate": 0.0006, + "loss": 3.5468926429748535, + "step": 4657 + }, + { + "epoch": 64.69899519440804, + "grad_norm": 0.23099006712436676, + "learning_rate": 0.0006, + "loss": 3.5222787857055664, + "step": 4658 + }, + { + "epoch": 64.7129750982962, + "grad_norm": 0.20590323209762573, + "learning_rate": 0.0006, + "loss": 3.538832426071167, + "step": 4659 + }, + { + "epoch": 64.72695500218435, + "grad_norm": 0.2339620441198349, + "learning_rate": 0.0006, + "loss": 3.5201845169067383, + "step": 4660 + }, + { + "epoch": 64.74093490607252, + "grad_norm": 0.27160516381263733, + "learning_rate": 0.0006, + "loss": 3.5465309619903564, + "step": 4661 + }, + { + "epoch": 64.75491480996068, + "grad_norm": 0.2624864876270294, + "learning_rate": 0.0006, + "loss": 3.5205435752868652, + "step": 4662 + }, + { + "epoch": 64.76889471384884, + "grad_norm": 0.23907902836799622, + "learning_rate": 0.0006, + "loss": 3.553205728530884, + "step": 4663 + }, + { + "epoch": 64.78287461773701, + "grad_norm": 0.2217475026845932, + "learning_rate": 0.0006, + "loss": 3.514068603515625, + "step": 4664 + }, + { + "epoch": 64.79685452162516, + "grad_norm": 0.20445777475833893, + "learning_rate": 0.0006, + "loss": 3.5382182598114014, + "step": 4665 + }, + { + "epoch": 64.81083442551332, + "grad_norm": 0.2027028501033783, + "learning_rate": 0.0006, + "loss": 3.549323081970215, + "step": 4666 + }, + { + "epoch": 64.82481432940149, + "grad_norm": 0.2211705446243286, + "learning_rate": 0.0006, + "loss": 3.5627710819244385, + "step": 4667 + }, + { + "epoch": 64.83879423328965, + "grad_norm": 0.23401948809623718, + "learning_rate": 0.0006, + "loss": 3.5169739723205566, + "step": 4668 + }, + { + "epoch": 64.8527741371778, + "grad_norm": 0.21921628713607788, + "learning_rate": 0.0006, + "loss": 3.5405478477478027, + "step": 4669 + }, + { + "epoch": 64.86675404106597, + "grad_norm": 0.20840027928352356, + "learning_rate": 0.0006, + "loss": 3.528883218765259, + "step": 4670 + }, + { + "epoch": 64.88073394495413, + "grad_norm": 0.21593457460403442, + "learning_rate": 0.0006, + "loss": 3.570455551147461, + "step": 4671 + }, + { + "epoch": 64.89471384884229, + "grad_norm": 0.22351567447185516, + "learning_rate": 0.0006, + "loss": 3.567831516265869, + "step": 4672 + }, + { + "epoch": 64.90869375273044, + "grad_norm": 0.22733932733535767, + "learning_rate": 0.0006, + "loss": 3.55277156829834, + "step": 4673 + }, + { + "epoch": 64.92267365661861, + "grad_norm": 0.19557999074459076, + "learning_rate": 0.0006, + "loss": 3.523028612136841, + "step": 4674 + }, + { + "epoch": 64.93665356050677, + "grad_norm": 0.22674734890460968, + "learning_rate": 0.0006, + "loss": 3.565629720687866, + "step": 4675 + }, + { + "epoch": 64.95063346439493, + "grad_norm": 0.23879630863666534, + "learning_rate": 0.0006, + "loss": 3.5556788444519043, + "step": 4676 + }, + { + "epoch": 64.9646133682831, + "grad_norm": 0.24172860383987427, + "learning_rate": 0.0006, + "loss": 3.580190658569336, + "step": 4677 + }, + { + "epoch": 64.97859327217125, + "grad_norm": 0.24994441866874695, + "learning_rate": 0.0006, + "loss": 3.506659507751465, + "step": 4678 + }, + { + "epoch": 64.99257317605941, + "grad_norm": 0.20717456936836243, + "learning_rate": 0.0006, + "loss": 3.526215076446533, + "step": 4679 + }, + { + "epoch": 65.0, + "grad_norm": 0.23991262912750244, + "learning_rate": 0.0006, + "loss": 3.5615687370300293, + "step": 4680 + }, + { + "epoch": 65.0, + "eval_loss": 3.974820137023926, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 4680 + }, + { + "epoch": 65.01397990388816, + "grad_norm": 0.22059205174446106, + "learning_rate": 0.0006, + "loss": 3.4952855110168457, + "step": 4681 + }, + { + "epoch": 65.02795980777633, + "grad_norm": 0.23085950314998627, + "learning_rate": 0.0006, + "loss": 3.5180296897888184, + "step": 4682 + }, + { + "epoch": 65.04193971166448, + "grad_norm": 0.20950855314731598, + "learning_rate": 0.0006, + "loss": 3.5476295948028564, + "step": 4683 + }, + { + "epoch": 65.05591961555264, + "grad_norm": 0.1958799958229065, + "learning_rate": 0.0006, + "loss": 3.5180916786193848, + "step": 4684 + }, + { + "epoch": 65.06989951944081, + "grad_norm": 0.20676101744174957, + "learning_rate": 0.0006, + "loss": 3.4882211685180664, + "step": 4685 + }, + { + "epoch": 65.08387942332897, + "grad_norm": 0.24798569083213806, + "learning_rate": 0.0006, + "loss": 3.5030102729797363, + "step": 4686 + }, + { + "epoch": 65.09785932721712, + "grad_norm": 0.2997048795223236, + "learning_rate": 0.0006, + "loss": 3.5148534774780273, + "step": 4687 + }, + { + "epoch": 65.1118392311053, + "grad_norm": 0.27347132563591003, + "learning_rate": 0.0006, + "loss": 3.534639358520508, + "step": 4688 + }, + { + "epoch": 65.12581913499345, + "grad_norm": 0.2220011204481125, + "learning_rate": 0.0006, + "loss": 3.50504994392395, + "step": 4689 + }, + { + "epoch": 65.1397990388816, + "grad_norm": 0.2552279829978943, + "learning_rate": 0.0006, + "loss": 3.4893431663513184, + "step": 4690 + }, + { + "epoch": 65.15377894276976, + "grad_norm": 0.32200172543525696, + "learning_rate": 0.0006, + "loss": 3.515808582305908, + "step": 4691 + }, + { + "epoch": 65.16775884665793, + "grad_norm": 0.31339603662490845, + "learning_rate": 0.0006, + "loss": 3.493312358856201, + "step": 4692 + }, + { + "epoch": 65.18173875054609, + "grad_norm": 0.30790913105010986, + "learning_rate": 0.0006, + "loss": 3.5001792907714844, + "step": 4693 + }, + { + "epoch": 65.19571865443424, + "grad_norm": 0.25261157751083374, + "learning_rate": 0.0006, + "loss": 3.491820812225342, + "step": 4694 + }, + { + "epoch": 65.20969855832242, + "grad_norm": 0.20875515043735504, + "learning_rate": 0.0006, + "loss": 3.5120949745178223, + "step": 4695 + }, + { + "epoch": 65.22367846221057, + "grad_norm": 0.22966094315052032, + "learning_rate": 0.0006, + "loss": 3.4509716033935547, + "step": 4696 + }, + { + "epoch": 65.23765836609873, + "grad_norm": 0.22414445877075195, + "learning_rate": 0.0006, + "loss": 3.5032718181610107, + "step": 4697 + }, + { + "epoch": 65.2516382699869, + "grad_norm": 0.21083641052246094, + "learning_rate": 0.0006, + "loss": 3.4912984371185303, + "step": 4698 + }, + { + "epoch": 65.26561817387505, + "grad_norm": 0.21424371004104614, + "learning_rate": 0.0006, + "loss": 3.493704080581665, + "step": 4699 + }, + { + "epoch": 65.27959807776321, + "grad_norm": 0.21155135333538055, + "learning_rate": 0.0006, + "loss": 3.523045063018799, + "step": 4700 + }, + { + "epoch": 65.29357798165138, + "grad_norm": 0.2245800942182541, + "learning_rate": 0.0006, + "loss": 3.5085060596466064, + "step": 4701 + }, + { + "epoch": 65.30755788553954, + "grad_norm": 0.2271309345960617, + "learning_rate": 0.0006, + "loss": 3.51690673828125, + "step": 4702 + }, + { + "epoch": 65.3215377894277, + "grad_norm": 0.23873905837535858, + "learning_rate": 0.0006, + "loss": 3.533975124359131, + "step": 4703 + }, + { + "epoch": 65.33551769331586, + "grad_norm": 0.22801156342029572, + "learning_rate": 0.0006, + "loss": 3.554079532623291, + "step": 4704 + }, + { + "epoch": 65.34949759720402, + "grad_norm": 0.20530614256858826, + "learning_rate": 0.0006, + "loss": 3.5536623001098633, + "step": 4705 + }, + { + "epoch": 65.36347750109218, + "grad_norm": 0.19286230206489563, + "learning_rate": 0.0006, + "loss": 3.5279109477996826, + "step": 4706 + }, + { + "epoch": 65.37745740498035, + "grad_norm": 0.20883116126060486, + "learning_rate": 0.0006, + "loss": 3.526639223098755, + "step": 4707 + }, + { + "epoch": 65.3914373088685, + "grad_norm": 0.20705194771289825, + "learning_rate": 0.0006, + "loss": 3.5389089584350586, + "step": 4708 + }, + { + "epoch": 65.40541721275666, + "grad_norm": 0.1948518604040146, + "learning_rate": 0.0006, + "loss": 3.504940986633301, + "step": 4709 + }, + { + "epoch": 65.41939711664482, + "grad_norm": 0.20147304236888885, + "learning_rate": 0.0006, + "loss": 3.5085673332214355, + "step": 4710 + }, + { + "epoch": 65.43337702053299, + "grad_norm": 0.2229771912097931, + "learning_rate": 0.0006, + "loss": 3.4806604385375977, + "step": 4711 + }, + { + "epoch": 65.44735692442114, + "grad_norm": 0.252258837223053, + "learning_rate": 0.0006, + "loss": 3.5160961151123047, + "step": 4712 + }, + { + "epoch": 65.4613368283093, + "grad_norm": 0.2482563853263855, + "learning_rate": 0.0006, + "loss": 3.522674560546875, + "step": 4713 + }, + { + "epoch": 65.47531673219747, + "grad_norm": 0.22155597805976868, + "learning_rate": 0.0006, + "loss": 3.5124268531799316, + "step": 4714 + }, + { + "epoch": 65.48929663608563, + "grad_norm": 0.223913311958313, + "learning_rate": 0.0006, + "loss": 3.5122427940368652, + "step": 4715 + }, + { + "epoch": 65.50327653997378, + "grad_norm": 0.20946767926216125, + "learning_rate": 0.0006, + "loss": 3.552161693572998, + "step": 4716 + }, + { + "epoch": 65.51725644386195, + "grad_norm": 0.21044479310512543, + "learning_rate": 0.0006, + "loss": 3.5450949668884277, + "step": 4717 + }, + { + "epoch": 65.53123634775011, + "grad_norm": 0.25752949714660645, + "learning_rate": 0.0006, + "loss": 3.5267398357391357, + "step": 4718 + }, + { + "epoch": 65.54521625163827, + "grad_norm": 0.28068798780441284, + "learning_rate": 0.0006, + "loss": 3.537827491760254, + "step": 4719 + }, + { + "epoch": 65.55919615552644, + "grad_norm": 0.2259511947631836, + "learning_rate": 0.0006, + "loss": 3.540821075439453, + "step": 4720 + }, + { + "epoch": 65.57317605941459, + "grad_norm": 0.2032593935728073, + "learning_rate": 0.0006, + "loss": 3.540170669555664, + "step": 4721 + }, + { + "epoch": 65.58715596330275, + "grad_norm": 0.2432602047920227, + "learning_rate": 0.0006, + "loss": 3.5356297492980957, + "step": 4722 + }, + { + "epoch": 65.60113586719092, + "grad_norm": 0.20527289807796478, + "learning_rate": 0.0006, + "loss": 3.4675498008728027, + "step": 4723 + }, + { + "epoch": 65.61511577107908, + "grad_norm": 0.18697771430015564, + "learning_rate": 0.0006, + "loss": 3.5208992958068848, + "step": 4724 + }, + { + "epoch": 65.62909567496723, + "grad_norm": 0.2044762223958969, + "learning_rate": 0.0006, + "loss": 3.5583274364471436, + "step": 4725 + }, + { + "epoch": 65.6430755788554, + "grad_norm": 0.22855281829833984, + "learning_rate": 0.0006, + "loss": 3.5497756004333496, + "step": 4726 + }, + { + "epoch": 65.65705548274356, + "grad_norm": 0.21672320365905762, + "learning_rate": 0.0006, + "loss": 3.530869960784912, + "step": 4727 + }, + { + "epoch": 65.67103538663171, + "grad_norm": 0.20629048347473145, + "learning_rate": 0.0006, + "loss": 3.5381593704223633, + "step": 4728 + }, + { + "epoch": 65.68501529051987, + "grad_norm": 0.21036849915981293, + "learning_rate": 0.0006, + "loss": 3.531111478805542, + "step": 4729 + }, + { + "epoch": 65.69899519440804, + "grad_norm": 0.19463932514190674, + "learning_rate": 0.0006, + "loss": 3.523106098175049, + "step": 4730 + }, + { + "epoch": 65.7129750982962, + "grad_norm": 0.2210976481437683, + "learning_rate": 0.0006, + "loss": 3.5480356216430664, + "step": 4731 + }, + { + "epoch": 65.72695500218435, + "grad_norm": 0.2288331687450409, + "learning_rate": 0.0006, + "loss": 3.5317163467407227, + "step": 4732 + }, + { + "epoch": 65.74093490607252, + "grad_norm": 0.22445930540561676, + "learning_rate": 0.0006, + "loss": 3.5453107357025146, + "step": 4733 + }, + { + "epoch": 65.75491480996068, + "grad_norm": 0.20268939435482025, + "learning_rate": 0.0006, + "loss": 3.5546514987945557, + "step": 4734 + }, + { + "epoch": 65.76889471384884, + "grad_norm": 0.2070288211107254, + "learning_rate": 0.0006, + "loss": 3.5345590114593506, + "step": 4735 + }, + { + "epoch": 65.78287461773701, + "grad_norm": 0.2052922248840332, + "learning_rate": 0.0006, + "loss": 3.538299083709717, + "step": 4736 + }, + { + "epoch": 65.79685452162516, + "grad_norm": 0.2146841138601303, + "learning_rate": 0.0006, + "loss": 3.541652202606201, + "step": 4737 + }, + { + "epoch": 65.81083442551332, + "grad_norm": 0.21826434135437012, + "learning_rate": 0.0006, + "loss": 3.4880056381225586, + "step": 4738 + }, + { + "epoch": 65.82481432940149, + "grad_norm": 0.18492230772972107, + "learning_rate": 0.0006, + "loss": 3.5282340049743652, + "step": 4739 + }, + { + "epoch": 65.83879423328965, + "grad_norm": 0.2422342747449875, + "learning_rate": 0.0006, + "loss": 3.5482215881347656, + "step": 4740 + }, + { + "epoch": 65.8527741371778, + "grad_norm": 0.300968199968338, + "learning_rate": 0.0006, + "loss": 3.545173168182373, + "step": 4741 + }, + { + "epoch": 65.86675404106597, + "grad_norm": 0.23397785425186157, + "learning_rate": 0.0006, + "loss": 3.5014636516571045, + "step": 4742 + }, + { + "epoch": 65.88073394495413, + "grad_norm": 0.20114080607891083, + "learning_rate": 0.0006, + "loss": 3.517125368118286, + "step": 4743 + }, + { + "epoch": 65.89471384884229, + "grad_norm": 0.23073594272136688, + "learning_rate": 0.0006, + "loss": 3.5259623527526855, + "step": 4744 + }, + { + "epoch": 65.90869375273044, + "grad_norm": 0.25975924730300903, + "learning_rate": 0.0006, + "loss": 3.5394439697265625, + "step": 4745 + }, + { + "epoch": 65.92267365661861, + "grad_norm": 0.2565694749355316, + "learning_rate": 0.0006, + "loss": 3.5301175117492676, + "step": 4746 + }, + { + "epoch": 65.93665356050677, + "grad_norm": 0.24380211532115936, + "learning_rate": 0.0006, + "loss": 3.5519638061523438, + "step": 4747 + }, + { + "epoch": 65.95063346439493, + "grad_norm": 0.2337062805891037, + "learning_rate": 0.0006, + "loss": 3.5365114212036133, + "step": 4748 + }, + { + "epoch": 65.9646133682831, + "grad_norm": 0.2107299268245697, + "learning_rate": 0.0006, + "loss": 3.5433106422424316, + "step": 4749 + }, + { + "epoch": 65.97859327217125, + "grad_norm": 0.2159995585680008, + "learning_rate": 0.0006, + "loss": 3.539796829223633, + "step": 4750 + }, + { + "epoch": 65.99257317605941, + "grad_norm": 0.23707467317581177, + "learning_rate": 0.0006, + "loss": 3.5315332412719727, + "step": 4751 + }, + { + "epoch": 66.0, + "grad_norm": 0.27253037691116333, + "learning_rate": 0.0006, + "loss": 3.5477747917175293, + "step": 4752 + }, + { + "epoch": 66.0, + "eval_loss": 3.973580837249756, + "eval_runtime": 44.8472, + "eval_samples_per_second": 54.452, + "eval_steps_per_second": 3.412, + "step": 4752 + }, + { + "epoch": 66.01397990388816, + "grad_norm": 0.22843532264232635, + "learning_rate": 0.0006, + "loss": 3.463778018951416, + "step": 4753 + }, + { + "epoch": 66.02795980777633, + "grad_norm": 0.24956060945987701, + "learning_rate": 0.0006, + "loss": 3.5249979496002197, + "step": 4754 + }, + { + "epoch": 66.04193971166448, + "grad_norm": 0.3091195821762085, + "learning_rate": 0.0006, + "loss": 3.4742040634155273, + "step": 4755 + }, + { + "epoch": 66.05591961555264, + "grad_norm": 0.346617192029953, + "learning_rate": 0.0006, + "loss": 3.4870445728302, + "step": 4756 + }, + { + "epoch": 66.06989951944081, + "grad_norm": 0.2875824570655823, + "learning_rate": 0.0006, + "loss": 3.5412697792053223, + "step": 4757 + }, + { + "epoch": 66.08387942332897, + "grad_norm": 0.2508425712585449, + "learning_rate": 0.0006, + "loss": 3.488759756088257, + "step": 4758 + }, + { + "epoch": 66.09785932721712, + "grad_norm": 0.2538967728614807, + "learning_rate": 0.0006, + "loss": 3.536404609680176, + "step": 4759 + }, + { + "epoch": 66.1118392311053, + "grad_norm": 0.24713276326656342, + "learning_rate": 0.0006, + "loss": 3.502939462661743, + "step": 4760 + }, + { + "epoch": 66.12581913499345, + "grad_norm": 0.2381032407283783, + "learning_rate": 0.0006, + "loss": 3.5297226905822754, + "step": 4761 + }, + { + "epoch": 66.1397990388816, + "grad_norm": 0.23749777674674988, + "learning_rate": 0.0006, + "loss": 3.510740280151367, + "step": 4762 + }, + { + "epoch": 66.15377894276976, + "grad_norm": 0.24993619322776794, + "learning_rate": 0.0006, + "loss": 3.4966745376586914, + "step": 4763 + }, + { + "epoch": 66.16775884665793, + "grad_norm": 0.25855013728141785, + "learning_rate": 0.0006, + "loss": 3.545177936553955, + "step": 4764 + }, + { + "epoch": 66.18173875054609, + "grad_norm": 0.2206948697566986, + "learning_rate": 0.0006, + "loss": 3.5404415130615234, + "step": 4765 + }, + { + "epoch": 66.19571865443424, + "grad_norm": 0.2627105116844177, + "learning_rate": 0.0006, + "loss": 3.5475361347198486, + "step": 4766 + }, + { + "epoch": 66.20969855832242, + "grad_norm": 0.29578864574432373, + "learning_rate": 0.0006, + "loss": 3.510110855102539, + "step": 4767 + }, + { + "epoch": 66.22367846221057, + "grad_norm": 0.257691353559494, + "learning_rate": 0.0006, + "loss": 3.5143630504608154, + "step": 4768 + }, + { + "epoch": 66.23765836609873, + "grad_norm": 0.24346867203712463, + "learning_rate": 0.0006, + "loss": 3.5007784366607666, + "step": 4769 + }, + { + "epoch": 66.2516382699869, + "grad_norm": 0.230575293302536, + "learning_rate": 0.0006, + "loss": 3.5051684379577637, + "step": 4770 + }, + { + "epoch": 66.26561817387505, + "grad_norm": 0.23823921382427216, + "learning_rate": 0.0006, + "loss": 3.4773342609405518, + "step": 4771 + }, + { + "epoch": 66.27959807776321, + "grad_norm": 0.20743288099765778, + "learning_rate": 0.0006, + "loss": 3.496393918991089, + "step": 4772 + }, + { + "epoch": 66.29357798165138, + "grad_norm": 0.21969960629940033, + "learning_rate": 0.0006, + "loss": 3.494748830795288, + "step": 4773 + }, + { + "epoch": 66.30755788553954, + "grad_norm": 0.20902593433856964, + "learning_rate": 0.0006, + "loss": 3.529416561126709, + "step": 4774 + }, + { + "epoch": 66.3215377894277, + "grad_norm": 0.2380436211824417, + "learning_rate": 0.0006, + "loss": 3.508625030517578, + "step": 4775 + }, + { + "epoch": 66.33551769331586, + "grad_norm": 0.26387956738471985, + "learning_rate": 0.0006, + "loss": 3.4886221885681152, + "step": 4776 + }, + { + "epoch": 66.34949759720402, + "grad_norm": 0.24655069410800934, + "learning_rate": 0.0006, + "loss": 3.5089354515075684, + "step": 4777 + }, + { + "epoch": 66.36347750109218, + "grad_norm": 0.2446470856666565, + "learning_rate": 0.0006, + "loss": 3.5295841693878174, + "step": 4778 + }, + { + "epoch": 66.37745740498035, + "grad_norm": 0.23909035325050354, + "learning_rate": 0.0006, + "loss": 3.500223159790039, + "step": 4779 + }, + { + "epoch": 66.3914373088685, + "grad_norm": 0.21958141028881073, + "learning_rate": 0.0006, + "loss": 3.5225610733032227, + "step": 4780 + }, + { + "epoch": 66.40541721275666, + "grad_norm": 0.20134378969669342, + "learning_rate": 0.0006, + "loss": 3.5055198669433594, + "step": 4781 + }, + { + "epoch": 66.41939711664482, + "grad_norm": 0.22621650993824005, + "learning_rate": 0.0006, + "loss": 3.5356178283691406, + "step": 4782 + }, + { + "epoch": 66.43337702053299, + "grad_norm": 0.214684396982193, + "learning_rate": 0.0006, + "loss": 3.5069541931152344, + "step": 4783 + }, + { + "epoch": 66.44735692442114, + "grad_norm": 0.217989981174469, + "learning_rate": 0.0006, + "loss": 3.499561071395874, + "step": 4784 + }, + { + "epoch": 66.4613368283093, + "grad_norm": 0.21457986533641815, + "learning_rate": 0.0006, + "loss": 3.5139474868774414, + "step": 4785 + }, + { + "epoch": 66.47531673219747, + "grad_norm": 0.24017205834388733, + "learning_rate": 0.0006, + "loss": 3.5267739295959473, + "step": 4786 + }, + { + "epoch": 66.48929663608563, + "grad_norm": 0.22864149510860443, + "learning_rate": 0.0006, + "loss": 3.5324792861938477, + "step": 4787 + }, + { + "epoch": 66.50327653997378, + "grad_norm": 0.219966322183609, + "learning_rate": 0.0006, + "loss": 3.491529703140259, + "step": 4788 + }, + { + "epoch": 66.51725644386195, + "grad_norm": 0.23360539972782135, + "learning_rate": 0.0006, + "loss": 3.4962849617004395, + "step": 4789 + }, + { + "epoch": 66.53123634775011, + "grad_norm": 0.24652886390686035, + "learning_rate": 0.0006, + "loss": 3.510777473449707, + "step": 4790 + }, + { + "epoch": 66.54521625163827, + "grad_norm": 0.23419316112995148, + "learning_rate": 0.0006, + "loss": 3.5549509525299072, + "step": 4791 + }, + { + "epoch": 66.55919615552644, + "grad_norm": 0.2514760494232178, + "learning_rate": 0.0006, + "loss": 3.49761962890625, + "step": 4792 + }, + { + "epoch": 66.57317605941459, + "grad_norm": 0.24227535724639893, + "learning_rate": 0.0006, + "loss": 3.5556445121765137, + "step": 4793 + }, + { + "epoch": 66.58715596330275, + "grad_norm": 0.24751204252243042, + "learning_rate": 0.0006, + "loss": 3.5131940841674805, + "step": 4794 + }, + { + "epoch": 66.60113586719092, + "grad_norm": 0.24366872012615204, + "learning_rate": 0.0006, + "loss": 3.5310516357421875, + "step": 4795 + }, + { + "epoch": 66.61511577107908, + "grad_norm": 0.2177760899066925, + "learning_rate": 0.0006, + "loss": 3.5267493724823, + "step": 4796 + }, + { + "epoch": 66.62909567496723, + "grad_norm": 0.19654381275177002, + "learning_rate": 0.0006, + "loss": 3.5158896446228027, + "step": 4797 + }, + { + "epoch": 66.6430755788554, + "grad_norm": 0.2041735202074051, + "learning_rate": 0.0006, + "loss": 3.5645484924316406, + "step": 4798 + }, + { + "epoch": 66.65705548274356, + "grad_norm": 0.21368929743766785, + "learning_rate": 0.0006, + "loss": 3.5481250286102295, + "step": 4799 + }, + { + "epoch": 66.67103538663171, + "grad_norm": 0.2047458291053772, + "learning_rate": 0.0006, + "loss": 3.498279571533203, + "step": 4800 + }, + { + "epoch": 66.68501529051987, + "grad_norm": 0.21750541031360626, + "learning_rate": 0.0006, + "loss": 3.5349860191345215, + "step": 4801 + }, + { + "epoch": 66.69899519440804, + "grad_norm": 0.2415834218263626, + "learning_rate": 0.0006, + "loss": 3.5091004371643066, + "step": 4802 + }, + { + "epoch": 66.7129750982962, + "grad_norm": 0.19963665306568146, + "learning_rate": 0.0006, + "loss": 3.5369873046875, + "step": 4803 + }, + { + "epoch": 66.72695500218435, + "grad_norm": 0.23620283603668213, + "learning_rate": 0.0006, + "loss": 3.5239949226379395, + "step": 4804 + }, + { + "epoch": 66.74093490607252, + "grad_norm": 0.2616693079471588, + "learning_rate": 0.0006, + "loss": 3.545588493347168, + "step": 4805 + }, + { + "epoch": 66.75491480996068, + "grad_norm": 0.23235733807086945, + "learning_rate": 0.0006, + "loss": 3.5250823497772217, + "step": 4806 + }, + { + "epoch": 66.76889471384884, + "grad_norm": 0.20908917486667633, + "learning_rate": 0.0006, + "loss": 3.547023057937622, + "step": 4807 + }, + { + "epoch": 66.78287461773701, + "grad_norm": 0.23014947772026062, + "learning_rate": 0.0006, + "loss": 3.527070999145508, + "step": 4808 + }, + { + "epoch": 66.79685452162516, + "grad_norm": 0.2468312382698059, + "learning_rate": 0.0006, + "loss": 3.5456371307373047, + "step": 4809 + }, + { + "epoch": 66.81083442551332, + "grad_norm": 0.21409334242343903, + "learning_rate": 0.0006, + "loss": 3.5282058715820312, + "step": 4810 + }, + { + "epoch": 66.82481432940149, + "grad_norm": 0.20337609946727753, + "learning_rate": 0.0006, + "loss": 3.5054173469543457, + "step": 4811 + }, + { + "epoch": 66.83879423328965, + "grad_norm": 0.20335888862609863, + "learning_rate": 0.0006, + "loss": 3.5417919158935547, + "step": 4812 + }, + { + "epoch": 66.8527741371778, + "grad_norm": 0.20672455430030823, + "learning_rate": 0.0006, + "loss": 3.549217700958252, + "step": 4813 + }, + { + "epoch": 66.86675404106597, + "grad_norm": 0.19788624346256256, + "learning_rate": 0.0006, + "loss": 3.5244839191436768, + "step": 4814 + }, + { + "epoch": 66.88073394495413, + "grad_norm": 0.19756834208965302, + "learning_rate": 0.0006, + "loss": 3.5210156440734863, + "step": 4815 + }, + { + "epoch": 66.89471384884229, + "grad_norm": 0.18592269718647003, + "learning_rate": 0.0006, + "loss": 3.522824764251709, + "step": 4816 + }, + { + "epoch": 66.90869375273044, + "grad_norm": 0.2011021077632904, + "learning_rate": 0.0006, + "loss": 3.521613597869873, + "step": 4817 + }, + { + "epoch": 66.92267365661861, + "grad_norm": 0.20816446840763092, + "learning_rate": 0.0006, + "loss": 3.562373161315918, + "step": 4818 + }, + { + "epoch": 66.93665356050677, + "grad_norm": 0.1967775523662567, + "learning_rate": 0.0006, + "loss": 3.5357818603515625, + "step": 4819 + }, + { + "epoch": 66.95063346439493, + "grad_norm": 0.20569968223571777, + "learning_rate": 0.0006, + "loss": 3.5232982635498047, + "step": 4820 + }, + { + "epoch": 66.9646133682831, + "grad_norm": 0.2095642238855362, + "learning_rate": 0.0006, + "loss": 3.5395994186401367, + "step": 4821 + }, + { + "epoch": 66.97859327217125, + "grad_norm": 0.22340409457683563, + "learning_rate": 0.0006, + "loss": 3.5163097381591797, + "step": 4822 + }, + { + "epoch": 66.99257317605941, + "grad_norm": 0.2131485939025879, + "learning_rate": 0.0006, + "loss": 3.555629253387451, + "step": 4823 + }, + { + "epoch": 67.0, + "grad_norm": 0.22373832762241364, + "learning_rate": 0.0006, + "loss": 3.5017800331115723, + "step": 4824 + }, + { + "epoch": 67.0, + "eval_loss": 3.9781124591827393, + "eval_runtime": 44.8111, + "eval_samples_per_second": 54.495, + "eval_steps_per_second": 3.414, + "step": 4824 + }, + { + "epoch": 67.01397990388816, + "grad_norm": 0.21282735466957092, + "learning_rate": 0.0006, + "loss": 3.482837677001953, + "step": 4825 + }, + { + "epoch": 67.02795980777633, + "grad_norm": 0.23839101195335388, + "learning_rate": 0.0006, + "loss": 3.5095958709716797, + "step": 4826 + }, + { + "epoch": 67.04193971166448, + "grad_norm": 0.2598385810852051, + "learning_rate": 0.0006, + "loss": 3.463888645172119, + "step": 4827 + }, + { + "epoch": 67.05591961555264, + "grad_norm": 0.24132144451141357, + "learning_rate": 0.0006, + "loss": 3.478180408477783, + "step": 4828 + }, + { + "epoch": 67.06989951944081, + "grad_norm": 0.23276527225971222, + "learning_rate": 0.0006, + "loss": 3.5064096450805664, + "step": 4829 + }, + { + "epoch": 67.08387942332897, + "grad_norm": 0.21749058365821838, + "learning_rate": 0.0006, + "loss": 3.5057930946350098, + "step": 4830 + }, + { + "epoch": 67.09785932721712, + "grad_norm": 0.22310365736484528, + "learning_rate": 0.0006, + "loss": 3.492342233657837, + "step": 4831 + }, + { + "epoch": 67.1118392311053, + "grad_norm": 0.23109206557273865, + "learning_rate": 0.0006, + "loss": 3.4776313304901123, + "step": 4832 + }, + { + "epoch": 67.12581913499345, + "grad_norm": 0.21820154786109924, + "learning_rate": 0.0006, + "loss": 3.4983036518096924, + "step": 4833 + }, + { + "epoch": 67.1397990388816, + "grad_norm": 0.214705228805542, + "learning_rate": 0.0006, + "loss": 3.4997382164001465, + "step": 4834 + }, + { + "epoch": 67.15377894276976, + "grad_norm": 0.230570450425148, + "learning_rate": 0.0006, + "loss": 3.5172224044799805, + "step": 4835 + }, + { + "epoch": 67.16775884665793, + "grad_norm": 0.21726474165916443, + "learning_rate": 0.0006, + "loss": 3.4625420570373535, + "step": 4836 + }, + { + "epoch": 67.18173875054609, + "grad_norm": 0.21541455388069153, + "learning_rate": 0.0006, + "loss": 3.5274102687835693, + "step": 4837 + }, + { + "epoch": 67.19571865443424, + "grad_norm": 0.21431861817836761, + "learning_rate": 0.0006, + "loss": 3.5112781524658203, + "step": 4838 + }, + { + "epoch": 67.20969855832242, + "grad_norm": 0.22660572826862335, + "learning_rate": 0.0006, + "loss": 3.4687018394470215, + "step": 4839 + }, + { + "epoch": 67.22367846221057, + "grad_norm": 0.21821390092372894, + "learning_rate": 0.0006, + "loss": 3.5137336254119873, + "step": 4840 + }, + { + "epoch": 67.23765836609873, + "grad_norm": 0.20666861534118652, + "learning_rate": 0.0006, + "loss": 3.5264923572540283, + "step": 4841 + }, + { + "epoch": 67.2516382699869, + "grad_norm": 0.2266923040151596, + "learning_rate": 0.0006, + "loss": 3.5288591384887695, + "step": 4842 + }, + { + "epoch": 67.26561817387505, + "grad_norm": 0.20246101915836334, + "learning_rate": 0.0006, + "loss": 3.5267882347106934, + "step": 4843 + }, + { + "epoch": 67.27959807776321, + "grad_norm": 0.20115883648395538, + "learning_rate": 0.0006, + "loss": 3.5004916191101074, + "step": 4844 + }, + { + "epoch": 67.29357798165138, + "grad_norm": 0.21547555923461914, + "learning_rate": 0.0006, + "loss": 3.5347824096679688, + "step": 4845 + }, + { + "epoch": 67.30755788553954, + "grad_norm": 0.22675341367721558, + "learning_rate": 0.0006, + "loss": 3.5119810104370117, + "step": 4846 + }, + { + "epoch": 67.3215377894277, + "grad_norm": 0.2440510094165802, + "learning_rate": 0.0006, + "loss": 3.489138126373291, + "step": 4847 + }, + { + "epoch": 67.33551769331586, + "grad_norm": 0.3055892884731293, + "learning_rate": 0.0006, + "loss": 3.5096774101257324, + "step": 4848 + }, + { + "epoch": 67.34949759720402, + "grad_norm": 0.3053153455257416, + "learning_rate": 0.0006, + "loss": 3.4901437759399414, + "step": 4849 + }, + { + "epoch": 67.36347750109218, + "grad_norm": 0.27368026971817017, + "learning_rate": 0.0006, + "loss": 3.5251317024230957, + "step": 4850 + }, + { + "epoch": 67.37745740498035, + "grad_norm": 0.2427835315465927, + "learning_rate": 0.0006, + "loss": 3.5069375038146973, + "step": 4851 + }, + { + "epoch": 67.3914373088685, + "grad_norm": 0.22328020632266998, + "learning_rate": 0.0006, + "loss": 3.5156240463256836, + "step": 4852 + }, + { + "epoch": 67.40541721275666, + "grad_norm": 0.22034069895744324, + "learning_rate": 0.0006, + "loss": 3.527740001678467, + "step": 4853 + }, + { + "epoch": 67.41939711664482, + "grad_norm": 0.23175004124641418, + "learning_rate": 0.0006, + "loss": 3.5049824714660645, + "step": 4854 + }, + { + "epoch": 67.43337702053299, + "grad_norm": 0.251209020614624, + "learning_rate": 0.0006, + "loss": 3.521754503250122, + "step": 4855 + }, + { + "epoch": 67.44735692442114, + "grad_norm": 0.26046663522720337, + "learning_rate": 0.0006, + "loss": 3.507568359375, + "step": 4856 + }, + { + "epoch": 67.4613368283093, + "grad_norm": 0.2206648588180542, + "learning_rate": 0.0006, + "loss": 3.513352870941162, + "step": 4857 + }, + { + "epoch": 67.47531673219747, + "grad_norm": 0.21608634293079376, + "learning_rate": 0.0006, + "loss": 3.4996538162231445, + "step": 4858 + }, + { + "epoch": 67.48929663608563, + "grad_norm": 0.24478112161159515, + "learning_rate": 0.0006, + "loss": 3.5210018157958984, + "step": 4859 + }, + { + "epoch": 67.50327653997378, + "grad_norm": 0.24971047043800354, + "learning_rate": 0.0006, + "loss": 3.5325865745544434, + "step": 4860 + }, + { + "epoch": 67.51725644386195, + "grad_norm": 0.26053082942962646, + "learning_rate": 0.0006, + "loss": 3.546248435974121, + "step": 4861 + }, + { + "epoch": 67.53123634775011, + "grad_norm": 0.2662231922149658, + "learning_rate": 0.0006, + "loss": 3.5073113441467285, + "step": 4862 + }, + { + "epoch": 67.54521625163827, + "grad_norm": 0.24797172844409943, + "learning_rate": 0.0006, + "loss": 3.536888360977173, + "step": 4863 + }, + { + "epoch": 67.55919615552644, + "grad_norm": 0.2383667528629303, + "learning_rate": 0.0006, + "loss": 3.5343832969665527, + "step": 4864 + }, + { + "epoch": 67.57317605941459, + "grad_norm": 0.2696457803249359, + "learning_rate": 0.0006, + "loss": 3.51254940032959, + "step": 4865 + }, + { + "epoch": 67.58715596330275, + "grad_norm": 0.2644849419593811, + "learning_rate": 0.0006, + "loss": 3.5213255882263184, + "step": 4866 + }, + { + "epoch": 67.60113586719092, + "grad_norm": 0.2375287413597107, + "learning_rate": 0.0006, + "loss": 3.5177063941955566, + "step": 4867 + }, + { + "epoch": 67.61511577107908, + "grad_norm": 0.2249385118484497, + "learning_rate": 0.0006, + "loss": 3.541508674621582, + "step": 4868 + }, + { + "epoch": 67.62909567496723, + "grad_norm": 0.2155243158340454, + "learning_rate": 0.0006, + "loss": 3.5091710090637207, + "step": 4869 + }, + { + "epoch": 67.6430755788554, + "grad_norm": 0.20459716022014618, + "learning_rate": 0.0006, + "loss": 3.5284833908081055, + "step": 4870 + }, + { + "epoch": 67.65705548274356, + "grad_norm": 0.22957809269428253, + "learning_rate": 0.0006, + "loss": 3.4831137657165527, + "step": 4871 + }, + { + "epoch": 67.67103538663171, + "grad_norm": 0.2776307165622711, + "learning_rate": 0.0006, + "loss": 3.5084991455078125, + "step": 4872 + }, + { + "epoch": 67.68501529051987, + "grad_norm": 0.2769255042076111, + "learning_rate": 0.0006, + "loss": 3.5352253913879395, + "step": 4873 + }, + { + "epoch": 67.69899519440804, + "grad_norm": 0.2233399897813797, + "learning_rate": 0.0006, + "loss": 3.5451040267944336, + "step": 4874 + }, + { + "epoch": 67.7129750982962, + "grad_norm": 0.20665188133716583, + "learning_rate": 0.0006, + "loss": 3.528292417526245, + "step": 4875 + }, + { + "epoch": 67.72695500218435, + "grad_norm": 0.22606195509433746, + "learning_rate": 0.0006, + "loss": 3.519838571548462, + "step": 4876 + }, + { + "epoch": 67.74093490607252, + "grad_norm": 0.22447355091571808, + "learning_rate": 0.0006, + "loss": 3.562148094177246, + "step": 4877 + }, + { + "epoch": 67.75491480996068, + "grad_norm": 0.2255096584558487, + "learning_rate": 0.0006, + "loss": 3.53926420211792, + "step": 4878 + }, + { + "epoch": 67.76889471384884, + "grad_norm": 0.2142494022846222, + "learning_rate": 0.0006, + "loss": 3.533456563949585, + "step": 4879 + }, + { + "epoch": 67.78287461773701, + "grad_norm": 0.2157258242368698, + "learning_rate": 0.0006, + "loss": 3.534109592437744, + "step": 4880 + }, + { + "epoch": 67.79685452162516, + "grad_norm": 0.20596624910831451, + "learning_rate": 0.0006, + "loss": 3.5252795219421387, + "step": 4881 + }, + { + "epoch": 67.81083442551332, + "grad_norm": 0.24075612425804138, + "learning_rate": 0.0006, + "loss": 3.549905300140381, + "step": 4882 + }, + { + "epoch": 67.82481432940149, + "grad_norm": 0.27206453680992126, + "learning_rate": 0.0006, + "loss": 3.4850993156433105, + "step": 4883 + }, + { + "epoch": 67.83879423328965, + "grad_norm": 0.2525651454925537, + "learning_rate": 0.0006, + "loss": 3.4936270713806152, + "step": 4884 + }, + { + "epoch": 67.8527741371778, + "grad_norm": 0.20669442415237427, + "learning_rate": 0.0006, + "loss": 3.5201377868652344, + "step": 4885 + }, + { + "epoch": 67.86675404106597, + "grad_norm": 0.19694887101650238, + "learning_rate": 0.0006, + "loss": 3.5146493911743164, + "step": 4886 + }, + { + "epoch": 67.88073394495413, + "grad_norm": 0.20657725632190704, + "learning_rate": 0.0006, + "loss": 3.539475917816162, + "step": 4887 + }, + { + "epoch": 67.89471384884229, + "grad_norm": 0.2321559488773346, + "learning_rate": 0.0006, + "loss": 3.541250705718994, + "step": 4888 + }, + { + "epoch": 67.90869375273044, + "grad_norm": 0.22864052653312683, + "learning_rate": 0.0006, + "loss": 3.5151207447052, + "step": 4889 + }, + { + "epoch": 67.92267365661861, + "grad_norm": 0.2121419608592987, + "learning_rate": 0.0006, + "loss": 3.5219309329986572, + "step": 4890 + }, + { + "epoch": 67.93665356050677, + "grad_norm": 0.2194126695394516, + "learning_rate": 0.0006, + "loss": 3.5411415100097656, + "step": 4891 + }, + { + "epoch": 67.95063346439493, + "grad_norm": 0.23670069873332977, + "learning_rate": 0.0006, + "loss": 3.56632137298584, + "step": 4892 + }, + { + "epoch": 67.9646133682831, + "grad_norm": 0.22159531712532043, + "learning_rate": 0.0006, + "loss": 3.5245089530944824, + "step": 4893 + }, + { + "epoch": 67.97859327217125, + "grad_norm": 0.20856274664402008, + "learning_rate": 0.0006, + "loss": 3.5363054275512695, + "step": 4894 + }, + { + "epoch": 67.99257317605941, + "grad_norm": 0.21568304300308228, + "learning_rate": 0.0006, + "loss": 3.5226120948791504, + "step": 4895 + }, + { + "epoch": 68.0, + "grad_norm": 0.22287404537200928, + "learning_rate": 0.0006, + "loss": 3.5020053386688232, + "step": 4896 + }, + { + "epoch": 68.0, + "eval_loss": 3.976909637451172, + "eval_runtime": 44.2603, + "eval_samples_per_second": 55.174, + "eval_steps_per_second": 3.457, + "step": 4896 + }, + { + "epoch": 68.01397990388816, + "grad_norm": 0.20234280824661255, + "learning_rate": 0.0006, + "loss": 3.484044075012207, + "step": 4897 + }, + { + "epoch": 68.02795980777633, + "grad_norm": 0.2183598279953003, + "learning_rate": 0.0006, + "loss": 3.4933700561523438, + "step": 4898 + }, + { + "epoch": 68.04193971166448, + "grad_norm": 0.24236822128295898, + "learning_rate": 0.0006, + "loss": 3.5028629302978516, + "step": 4899 + }, + { + "epoch": 68.05591961555264, + "grad_norm": 0.26641783118247986, + "learning_rate": 0.0006, + "loss": 3.475382089614868, + "step": 4900 + }, + { + "epoch": 68.06989951944081, + "grad_norm": 0.2867112159729004, + "learning_rate": 0.0006, + "loss": 3.5016913414001465, + "step": 4901 + }, + { + "epoch": 68.08387942332897, + "grad_norm": 0.24962085485458374, + "learning_rate": 0.0006, + "loss": 3.484367609024048, + "step": 4902 + }, + { + "epoch": 68.09785932721712, + "grad_norm": 0.2124275118112564, + "learning_rate": 0.0006, + "loss": 3.5119738578796387, + "step": 4903 + }, + { + "epoch": 68.1118392311053, + "grad_norm": 0.24732011556625366, + "learning_rate": 0.0006, + "loss": 3.486185073852539, + "step": 4904 + }, + { + "epoch": 68.12581913499345, + "grad_norm": 0.28683924674987793, + "learning_rate": 0.0006, + "loss": 3.495997905731201, + "step": 4905 + }, + { + "epoch": 68.1397990388816, + "grad_norm": 0.25751420855522156, + "learning_rate": 0.0006, + "loss": 3.4736456871032715, + "step": 4906 + }, + { + "epoch": 68.15377894276976, + "grad_norm": 0.24258914589881897, + "learning_rate": 0.0006, + "loss": 3.4900879859924316, + "step": 4907 + }, + { + "epoch": 68.16775884665793, + "grad_norm": 0.2878887951374054, + "learning_rate": 0.0006, + "loss": 3.4851484298706055, + "step": 4908 + }, + { + "epoch": 68.18173875054609, + "grad_norm": 0.27111393213272095, + "learning_rate": 0.0006, + "loss": 3.4835691452026367, + "step": 4909 + }, + { + "epoch": 68.19571865443424, + "grad_norm": 0.2475033849477768, + "learning_rate": 0.0006, + "loss": 3.4887213706970215, + "step": 4910 + }, + { + "epoch": 68.20969855832242, + "grad_norm": 0.267839252948761, + "learning_rate": 0.0006, + "loss": 3.515256404876709, + "step": 4911 + }, + { + "epoch": 68.22367846221057, + "grad_norm": 0.2135075181722641, + "learning_rate": 0.0006, + "loss": 3.5156445503234863, + "step": 4912 + }, + { + "epoch": 68.23765836609873, + "grad_norm": 0.22425328195095062, + "learning_rate": 0.0006, + "loss": 3.505338668823242, + "step": 4913 + }, + { + "epoch": 68.2516382699869, + "grad_norm": 0.2322927862405777, + "learning_rate": 0.0006, + "loss": 3.519695281982422, + "step": 4914 + }, + { + "epoch": 68.26561817387505, + "grad_norm": 0.2472568154335022, + "learning_rate": 0.0006, + "loss": 3.4845151901245117, + "step": 4915 + }, + { + "epoch": 68.27959807776321, + "grad_norm": 0.2725318968296051, + "learning_rate": 0.0006, + "loss": 3.4981484413146973, + "step": 4916 + }, + { + "epoch": 68.29357798165138, + "grad_norm": 0.2940191626548767, + "learning_rate": 0.0006, + "loss": 3.5088295936584473, + "step": 4917 + }, + { + "epoch": 68.30755788553954, + "grad_norm": 0.24303823709487915, + "learning_rate": 0.0006, + "loss": 3.492511749267578, + "step": 4918 + }, + { + "epoch": 68.3215377894277, + "grad_norm": 0.21951992809772491, + "learning_rate": 0.0006, + "loss": 3.509099006652832, + "step": 4919 + }, + { + "epoch": 68.33551769331586, + "grad_norm": 0.22776944935321808, + "learning_rate": 0.0006, + "loss": 3.501638650894165, + "step": 4920 + }, + { + "epoch": 68.34949759720402, + "grad_norm": 0.21173885464668274, + "learning_rate": 0.0006, + "loss": 3.4885807037353516, + "step": 4921 + }, + { + "epoch": 68.36347750109218, + "grad_norm": 0.2253648191690445, + "learning_rate": 0.0006, + "loss": 3.5350418090820312, + "step": 4922 + }, + { + "epoch": 68.37745740498035, + "grad_norm": 0.24312502145767212, + "learning_rate": 0.0006, + "loss": 3.490877866744995, + "step": 4923 + }, + { + "epoch": 68.3914373088685, + "grad_norm": 0.2103606015443802, + "learning_rate": 0.0006, + "loss": 3.5088863372802734, + "step": 4924 + }, + { + "epoch": 68.40541721275666, + "grad_norm": 0.19921863079071045, + "learning_rate": 0.0006, + "loss": 3.5282039642333984, + "step": 4925 + }, + { + "epoch": 68.41939711664482, + "grad_norm": 0.2041940689086914, + "learning_rate": 0.0006, + "loss": 3.5212771892547607, + "step": 4926 + }, + { + "epoch": 68.43337702053299, + "grad_norm": 0.22238804399967194, + "learning_rate": 0.0006, + "loss": 3.4951324462890625, + "step": 4927 + }, + { + "epoch": 68.44735692442114, + "grad_norm": 0.23161815106868744, + "learning_rate": 0.0006, + "loss": 3.5463013648986816, + "step": 4928 + }, + { + "epoch": 68.4613368283093, + "grad_norm": 0.21717964112758636, + "learning_rate": 0.0006, + "loss": 3.5081775188446045, + "step": 4929 + }, + { + "epoch": 68.47531673219747, + "grad_norm": 0.21505609154701233, + "learning_rate": 0.0006, + "loss": 3.52695631980896, + "step": 4930 + }, + { + "epoch": 68.48929663608563, + "grad_norm": 0.2720189094543457, + "learning_rate": 0.0006, + "loss": 3.497748374938965, + "step": 4931 + }, + { + "epoch": 68.50327653997378, + "grad_norm": 0.2619168758392334, + "learning_rate": 0.0006, + "loss": 3.5015270709991455, + "step": 4932 + }, + { + "epoch": 68.51725644386195, + "grad_norm": 0.21718725562095642, + "learning_rate": 0.0006, + "loss": 3.533599853515625, + "step": 4933 + }, + { + "epoch": 68.53123634775011, + "grad_norm": 0.22977295517921448, + "learning_rate": 0.0006, + "loss": 3.507884979248047, + "step": 4934 + }, + { + "epoch": 68.54521625163827, + "grad_norm": 0.230342298746109, + "learning_rate": 0.0006, + "loss": 3.497065544128418, + "step": 4935 + }, + { + "epoch": 68.55919615552644, + "grad_norm": 0.2253657728433609, + "learning_rate": 0.0006, + "loss": 3.5066728591918945, + "step": 4936 + }, + { + "epoch": 68.57317605941459, + "grad_norm": 0.23173992335796356, + "learning_rate": 0.0006, + "loss": 3.5072999000549316, + "step": 4937 + }, + { + "epoch": 68.58715596330275, + "grad_norm": 0.22984914481639862, + "learning_rate": 0.0006, + "loss": 3.5296144485473633, + "step": 4938 + }, + { + "epoch": 68.60113586719092, + "grad_norm": 0.2349584549665451, + "learning_rate": 0.0006, + "loss": 3.5185141563415527, + "step": 4939 + }, + { + "epoch": 68.61511577107908, + "grad_norm": 0.2469010204076767, + "learning_rate": 0.0006, + "loss": 3.545579433441162, + "step": 4940 + }, + { + "epoch": 68.62909567496723, + "grad_norm": 0.23078389465808868, + "learning_rate": 0.0006, + "loss": 3.5281553268432617, + "step": 4941 + }, + { + "epoch": 68.6430755788554, + "grad_norm": 0.23545116186141968, + "learning_rate": 0.0006, + "loss": 3.5376791954040527, + "step": 4942 + }, + { + "epoch": 68.65705548274356, + "grad_norm": 0.22288277745246887, + "learning_rate": 0.0006, + "loss": 3.490978240966797, + "step": 4943 + }, + { + "epoch": 68.67103538663171, + "grad_norm": 0.21703778207302094, + "learning_rate": 0.0006, + "loss": 3.505856513977051, + "step": 4944 + }, + { + "epoch": 68.68501529051987, + "grad_norm": 0.24922960996627808, + "learning_rate": 0.0006, + "loss": 3.5120937824249268, + "step": 4945 + }, + { + "epoch": 68.69899519440804, + "grad_norm": 0.24075160920619965, + "learning_rate": 0.0006, + "loss": 3.515216588973999, + "step": 4946 + }, + { + "epoch": 68.7129750982962, + "grad_norm": 0.21714574098587036, + "learning_rate": 0.0006, + "loss": 3.5308592319488525, + "step": 4947 + }, + { + "epoch": 68.72695500218435, + "grad_norm": 0.21521902084350586, + "learning_rate": 0.0006, + "loss": 3.5040221214294434, + "step": 4948 + }, + { + "epoch": 68.74093490607252, + "grad_norm": 0.2078350931406021, + "learning_rate": 0.0006, + "loss": 3.5399329662323, + "step": 4949 + }, + { + "epoch": 68.75491480996068, + "grad_norm": 0.23039595782756805, + "learning_rate": 0.0006, + "loss": 3.5079939365386963, + "step": 4950 + }, + { + "epoch": 68.76889471384884, + "grad_norm": 0.23072801530361176, + "learning_rate": 0.0006, + "loss": 3.5254414081573486, + "step": 4951 + }, + { + "epoch": 68.78287461773701, + "grad_norm": 0.204904243350029, + "learning_rate": 0.0006, + "loss": 3.5212371349334717, + "step": 4952 + }, + { + "epoch": 68.79685452162516, + "grad_norm": 0.21405813097953796, + "learning_rate": 0.0006, + "loss": 3.557215690612793, + "step": 4953 + }, + { + "epoch": 68.81083442551332, + "grad_norm": 0.2332632839679718, + "learning_rate": 0.0006, + "loss": 3.522718906402588, + "step": 4954 + }, + { + "epoch": 68.82481432940149, + "grad_norm": 0.2211279273033142, + "learning_rate": 0.0006, + "loss": 3.534191608428955, + "step": 4955 + }, + { + "epoch": 68.83879423328965, + "grad_norm": 0.2153792679309845, + "learning_rate": 0.0006, + "loss": 3.497591018676758, + "step": 4956 + }, + { + "epoch": 68.8527741371778, + "grad_norm": 0.28634506464004517, + "learning_rate": 0.0006, + "loss": 3.5333778858184814, + "step": 4957 + }, + { + "epoch": 68.86675404106597, + "grad_norm": 0.2748981714248657, + "learning_rate": 0.0006, + "loss": 3.533328056335449, + "step": 4958 + }, + { + "epoch": 68.88073394495413, + "grad_norm": 0.22137348353862762, + "learning_rate": 0.0006, + "loss": 3.516744613647461, + "step": 4959 + }, + { + "epoch": 68.89471384884229, + "grad_norm": 0.21476638317108154, + "learning_rate": 0.0006, + "loss": 3.5090954303741455, + "step": 4960 + }, + { + "epoch": 68.90869375273044, + "grad_norm": 0.2204403430223465, + "learning_rate": 0.0006, + "loss": 3.534665107727051, + "step": 4961 + }, + { + "epoch": 68.92267365661861, + "grad_norm": 0.20083564519882202, + "learning_rate": 0.0006, + "loss": 3.5572776794433594, + "step": 4962 + }, + { + "epoch": 68.93665356050677, + "grad_norm": 0.23286207020282745, + "learning_rate": 0.0006, + "loss": 3.5279769897460938, + "step": 4963 + }, + { + "epoch": 68.95063346439493, + "grad_norm": 0.2934340536594391, + "learning_rate": 0.0006, + "loss": 3.5299172401428223, + "step": 4964 + }, + { + "epoch": 68.9646133682831, + "grad_norm": 0.29742664098739624, + "learning_rate": 0.0006, + "loss": 3.5258350372314453, + "step": 4965 + }, + { + "epoch": 68.97859327217125, + "grad_norm": 0.23674239218235016, + "learning_rate": 0.0006, + "loss": 3.511875629425049, + "step": 4966 + }, + { + "epoch": 68.99257317605941, + "grad_norm": 0.1859714239835739, + "learning_rate": 0.0006, + "loss": 3.5111045837402344, + "step": 4967 + }, + { + "epoch": 69.0, + "grad_norm": 0.21548990905284882, + "learning_rate": 0.0006, + "loss": 3.567469358444214, + "step": 4968 + }, + { + "epoch": 69.0, + "eval_loss": 3.987680673599243, + "eval_runtime": 44.8193, + "eval_samples_per_second": 54.485, + "eval_steps_per_second": 3.414, + "step": 4968 + }, + { + "epoch": 69.01397990388816, + "grad_norm": 0.25460419058799744, + "learning_rate": 0.0006, + "loss": 3.513350009918213, + "step": 4969 + }, + { + "epoch": 69.02795980777633, + "grad_norm": 0.2635819613933563, + "learning_rate": 0.0006, + "loss": 3.516538143157959, + "step": 4970 + }, + { + "epoch": 69.04193971166448, + "grad_norm": 0.25024983286857605, + "learning_rate": 0.0006, + "loss": 3.501711845397949, + "step": 4971 + }, + { + "epoch": 69.05591961555264, + "grad_norm": 0.23533429205417633, + "learning_rate": 0.0006, + "loss": 3.4735984802246094, + "step": 4972 + }, + { + "epoch": 69.06989951944081, + "grad_norm": 0.23477932810783386, + "learning_rate": 0.0006, + "loss": 3.532632827758789, + "step": 4973 + }, + { + "epoch": 69.08387942332897, + "grad_norm": 0.23769758641719818, + "learning_rate": 0.0006, + "loss": 3.4775495529174805, + "step": 4974 + }, + { + "epoch": 69.09785932721712, + "grad_norm": 0.24599312245845795, + "learning_rate": 0.0006, + "loss": 3.481222629547119, + "step": 4975 + }, + { + "epoch": 69.1118392311053, + "grad_norm": 0.24212618172168732, + "learning_rate": 0.0006, + "loss": 3.485240936279297, + "step": 4976 + }, + { + "epoch": 69.12581913499345, + "grad_norm": 0.2271437644958496, + "learning_rate": 0.0006, + "loss": 3.476949691772461, + "step": 4977 + }, + { + "epoch": 69.1397990388816, + "grad_norm": 0.2542489469051361, + "learning_rate": 0.0006, + "loss": 3.4601399898529053, + "step": 4978 + }, + { + "epoch": 69.15377894276976, + "grad_norm": 0.24926388263702393, + "learning_rate": 0.0006, + "loss": 3.4832189083099365, + "step": 4979 + }, + { + "epoch": 69.16775884665793, + "grad_norm": 0.22356736660003662, + "learning_rate": 0.0006, + "loss": 3.5187554359436035, + "step": 4980 + }, + { + "epoch": 69.18173875054609, + "grad_norm": 0.21727295219898224, + "learning_rate": 0.0006, + "loss": 3.5310418605804443, + "step": 4981 + }, + { + "epoch": 69.19571865443424, + "grad_norm": 0.22234170138835907, + "learning_rate": 0.0006, + "loss": 3.506479263305664, + "step": 4982 + }, + { + "epoch": 69.20969855832242, + "grad_norm": 0.21620802581310272, + "learning_rate": 0.0006, + "loss": 3.488720655441284, + "step": 4983 + }, + { + "epoch": 69.22367846221057, + "grad_norm": 0.23558273911476135, + "learning_rate": 0.0006, + "loss": 3.4884839057922363, + "step": 4984 + }, + { + "epoch": 69.23765836609873, + "grad_norm": 0.2330513894557953, + "learning_rate": 0.0006, + "loss": 3.4810781478881836, + "step": 4985 + }, + { + "epoch": 69.2516382699869, + "grad_norm": 0.23570097982883453, + "learning_rate": 0.0006, + "loss": 3.4966390132904053, + "step": 4986 + }, + { + "epoch": 69.26561817387505, + "grad_norm": 0.2415456771850586, + "learning_rate": 0.0006, + "loss": 3.499464511871338, + "step": 4987 + }, + { + "epoch": 69.27959807776321, + "grad_norm": 0.22498410940170288, + "learning_rate": 0.0006, + "loss": 3.494260311126709, + "step": 4988 + }, + { + "epoch": 69.29357798165138, + "grad_norm": 0.23802009224891663, + "learning_rate": 0.0006, + "loss": 3.4801578521728516, + "step": 4989 + }, + { + "epoch": 69.30755788553954, + "grad_norm": 0.24189673364162445, + "learning_rate": 0.0006, + "loss": 3.513599395751953, + "step": 4990 + }, + { + "epoch": 69.3215377894277, + "grad_norm": 0.21577486395835876, + "learning_rate": 0.0006, + "loss": 3.493995428085327, + "step": 4991 + }, + { + "epoch": 69.33551769331586, + "grad_norm": 0.21220745146274567, + "learning_rate": 0.0006, + "loss": 3.495041847229004, + "step": 4992 + }, + { + "epoch": 69.34949759720402, + "grad_norm": 0.248879075050354, + "learning_rate": 0.0006, + "loss": 3.5003933906555176, + "step": 4993 + }, + { + "epoch": 69.36347750109218, + "grad_norm": 0.26753994822502136, + "learning_rate": 0.0006, + "loss": 3.491333484649658, + "step": 4994 + }, + { + "epoch": 69.37745740498035, + "grad_norm": 0.24140691757202148, + "learning_rate": 0.0006, + "loss": 3.495715618133545, + "step": 4995 + }, + { + "epoch": 69.3914373088685, + "grad_norm": 0.20997264981269836, + "learning_rate": 0.0006, + "loss": 3.520455837249756, + "step": 4996 + }, + { + "epoch": 69.40541721275666, + "grad_norm": 0.21708904206752777, + "learning_rate": 0.0006, + "loss": 3.4696202278137207, + "step": 4997 + }, + { + "epoch": 69.41939711664482, + "grad_norm": 0.25731977820396423, + "learning_rate": 0.0006, + "loss": 3.4827113151550293, + "step": 4998 + }, + { + "epoch": 69.43337702053299, + "grad_norm": 0.24132139980793, + "learning_rate": 0.0006, + "loss": 3.5224547386169434, + "step": 4999 + }, + { + "epoch": 69.44735692442114, + "grad_norm": 0.21150226891040802, + "learning_rate": 0.0006, + "loss": 3.4872965812683105, + "step": 5000 + }, + { + "epoch": 69.4613368283093, + "grad_norm": 0.20874962210655212, + "learning_rate": 0.0006, + "loss": 3.477656364440918, + "step": 5001 + }, + { + "epoch": 69.47531673219747, + "grad_norm": 0.20523078739643097, + "learning_rate": 0.0006, + "loss": 3.4912261962890625, + "step": 5002 + }, + { + "epoch": 69.48929663608563, + "grad_norm": 0.20590092241764069, + "learning_rate": 0.0006, + "loss": 3.5227253437042236, + "step": 5003 + }, + { + "epoch": 69.50327653997378, + "grad_norm": 0.21837440133094788, + "learning_rate": 0.0006, + "loss": 3.514094591140747, + "step": 5004 + }, + { + "epoch": 69.51725644386195, + "grad_norm": 0.23487630486488342, + "learning_rate": 0.0006, + "loss": 3.517775535583496, + "step": 5005 + }, + { + "epoch": 69.53123634775011, + "grad_norm": 0.23771126568317413, + "learning_rate": 0.0006, + "loss": 3.5164601802825928, + "step": 5006 + }, + { + "epoch": 69.54521625163827, + "grad_norm": 0.23423148691654205, + "learning_rate": 0.0006, + "loss": 3.5120983123779297, + "step": 5007 + }, + { + "epoch": 69.55919615552644, + "grad_norm": 0.2332620471715927, + "learning_rate": 0.0006, + "loss": 3.5184125900268555, + "step": 5008 + }, + { + "epoch": 69.57317605941459, + "grad_norm": 0.24148650467395782, + "learning_rate": 0.0006, + "loss": 3.509979248046875, + "step": 5009 + }, + { + "epoch": 69.58715596330275, + "grad_norm": 0.20881295204162598, + "learning_rate": 0.0006, + "loss": 3.5542125701904297, + "step": 5010 + }, + { + "epoch": 69.60113586719092, + "grad_norm": 0.21871483325958252, + "learning_rate": 0.0006, + "loss": 3.5178754329681396, + "step": 5011 + }, + { + "epoch": 69.61511577107908, + "grad_norm": 0.21630224585533142, + "learning_rate": 0.0006, + "loss": 3.5215046405792236, + "step": 5012 + }, + { + "epoch": 69.62909567496723, + "grad_norm": 0.2211679369211197, + "learning_rate": 0.0006, + "loss": 3.5213570594787598, + "step": 5013 + }, + { + "epoch": 69.6430755788554, + "grad_norm": 0.2206520140171051, + "learning_rate": 0.0006, + "loss": 3.5378212928771973, + "step": 5014 + }, + { + "epoch": 69.65705548274356, + "grad_norm": 0.21500450372695923, + "learning_rate": 0.0006, + "loss": 3.536560535430908, + "step": 5015 + }, + { + "epoch": 69.67103538663171, + "grad_norm": 0.2839236855506897, + "learning_rate": 0.0006, + "loss": 3.4911935329437256, + "step": 5016 + }, + { + "epoch": 69.68501529051987, + "grad_norm": 0.28307443857192993, + "learning_rate": 0.0006, + "loss": 3.5304269790649414, + "step": 5017 + }, + { + "epoch": 69.69899519440804, + "grad_norm": 0.20590558648109436, + "learning_rate": 0.0006, + "loss": 3.505474328994751, + "step": 5018 + }, + { + "epoch": 69.7129750982962, + "grad_norm": 0.24152527749538422, + "learning_rate": 0.0006, + "loss": 3.501438617706299, + "step": 5019 + }, + { + "epoch": 69.72695500218435, + "grad_norm": 0.21834975481033325, + "learning_rate": 0.0006, + "loss": 3.515756130218506, + "step": 5020 + }, + { + "epoch": 69.74093490607252, + "grad_norm": 0.2066304087638855, + "learning_rate": 0.0006, + "loss": 3.507535457611084, + "step": 5021 + }, + { + "epoch": 69.75491480996068, + "grad_norm": 0.2547939419746399, + "learning_rate": 0.0006, + "loss": 3.512665033340454, + "step": 5022 + }, + { + "epoch": 69.76889471384884, + "grad_norm": 0.25813716650009155, + "learning_rate": 0.0006, + "loss": 3.517632484436035, + "step": 5023 + }, + { + "epoch": 69.78287461773701, + "grad_norm": 0.223160520195961, + "learning_rate": 0.0006, + "loss": 3.5371553897857666, + "step": 5024 + }, + { + "epoch": 69.79685452162516, + "grad_norm": 0.2616842985153198, + "learning_rate": 0.0006, + "loss": 3.519502639770508, + "step": 5025 + }, + { + "epoch": 69.81083442551332, + "grad_norm": 0.2976956367492676, + "learning_rate": 0.0006, + "loss": 3.521639108657837, + "step": 5026 + }, + { + "epoch": 69.82481432940149, + "grad_norm": 0.253215491771698, + "learning_rate": 0.0006, + "loss": 3.5242714881896973, + "step": 5027 + }, + { + "epoch": 69.83879423328965, + "grad_norm": 0.2184867113828659, + "learning_rate": 0.0006, + "loss": 3.5430054664611816, + "step": 5028 + }, + { + "epoch": 69.8527741371778, + "grad_norm": 0.2110685110092163, + "learning_rate": 0.0006, + "loss": 3.518589735031128, + "step": 5029 + }, + { + "epoch": 69.86675404106597, + "grad_norm": 0.20499959588050842, + "learning_rate": 0.0006, + "loss": 3.5182108879089355, + "step": 5030 + }, + { + "epoch": 69.88073394495413, + "grad_norm": 0.21809129416942596, + "learning_rate": 0.0006, + "loss": 3.52005672454834, + "step": 5031 + }, + { + "epoch": 69.89471384884229, + "grad_norm": 0.22639480233192444, + "learning_rate": 0.0006, + "loss": 3.5405101776123047, + "step": 5032 + }, + { + "epoch": 69.90869375273044, + "grad_norm": 0.23321937024593353, + "learning_rate": 0.0006, + "loss": 3.5433502197265625, + "step": 5033 + }, + { + "epoch": 69.92267365661861, + "grad_norm": 0.22899670898914337, + "learning_rate": 0.0006, + "loss": 3.5300326347351074, + "step": 5034 + }, + { + "epoch": 69.93665356050677, + "grad_norm": 0.20367449522018433, + "learning_rate": 0.0006, + "loss": 3.5184967517852783, + "step": 5035 + }, + { + "epoch": 69.95063346439493, + "grad_norm": 0.21195004880428314, + "learning_rate": 0.0006, + "loss": 3.518951416015625, + "step": 5036 + }, + { + "epoch": 69.9646133682831, + "grad_norm": 0.23766686022281647, + "learning_rate": 0.0006, + "loss": 3.5148468017578125, + "step": 5037 + }, + { + "epoch": 69.97859327217125, + "grad_norm": 0.2558269500732422, + "learning_rate": 0.0006, + "loss": 3.5006861686706543, + "step": 5038 + }, + { + "epoch": 69.99257317605941, + "grad_norm": 0.23287998139858246, + "learning_rate": 0.0006, + "loss": 3.533900260925293, + "step": 5039 + }, + { + "epoch": 70.0, + "grad_norm": 0.24295051395893097, + "learning_rate": 0.0006, + "loss": 3.539205551147461, + "step": 5040 + }, + { + "epoch": 70.0, + "eval_loss": 3.9832167625427246, + "eval_runtime": 44.8557, + "eval_samples_per_second": 54.441, + "eval_steps_per_second": 3.411, + "step": 5040 + }, + { + "epoch": 70.01397990388816, + "grad_norm": 0.2342662364244461, + "learning_rate": 0.0006, + "loss": 3.4744529724121094, + "step": 5041 + }, + { + "epoch": 70.02795980777633, + "grad_norm": 0.24356921017169952, + "learning_rate": 0.0006, + "loss": 3.4678807258605957, + "step": 5042 + }, + { + "epoch": 70.04193971166448, + "grad_norm": 0.23141354322433472, + "learning_rate": 0.0006, + "loss": 3.4766411781311035, + "step": 5043 + }, + { + "epoch": 70.05591961555264, + "grad_norm": 0.2291923612356186, + "learning_rate": 0.0006, + "loss": 3.520775318145752, + "step": 5044 + }, + { + "epoch": 70.06989951944081, + "grad_norm": 0.24368838965892792, + "learning_rate": 0.0006, + "loss": 3.498244285583496, + "step": 5045 + }, + { + "epoch": 70.08387942332897, + "grad_norm": 0.24241037666797638, + "learning_rate": 0.0006, + "loss": 3.5297322273254395, + "step": 5046 + }, + { + "epoch": 70.09785932721712, + "grad_norm": 0.23169396817684174, + "learning_rate": 0.0006, + "loss": 3.4835686683654785, + "step": 5047 + }, + { + "epoch": 70.1118392311053, + "grad_norm": 0.21968135237693787, + "learning_rate": 0.0006, + "loss": 3.4419684410095215, + "step": 5048 + }, + { + "epoch": 70.12581913499345, + "grad_norm": 0.22738288342952728, + "learning_rate": 0.0006, + "loss": 3.4862613677978516, + "step": 5049 + }, + { + "epoch": 70.1397990388816, + "grad_norm": 0.2366214394569397, + "learning_rate": 0.0006, + "loss": 3.4799740314483643, + "step": 5050 + }, + { + "epoch": 70.15377894276976, + "grad_norm": 0.2310013324022293, + "learning_rate": 0.0006, + "loss": 3.491863250732422, + "step": 5051 + }, + { + "epoch": 70.16775884665793, + "grad_norm": 0.22765891253948212, + "learning_rate": 0.0006, + "loss": 3.4830703735351562, + "step": 5052 + }, + { + "epoch": 70.18173875054609, + "grad_norm": 0.23263567686080933, + "learning_rate": 0.0006, + "loss": 3.4692440032958984, + "step": 5053 + }, + { + "epoch": 70.19571865443424, + "grad_norm": 0.22552041709423065, + "learning_rate": 0.0006, + "loss": 3.4950807094573975, + "step": 5054 + }, + { + "epoch": 70.20969855832242, + "grad_norm": 0.2157282680273056, + "learning_rate": 0.0006, + "loss": 3.501680374145508, + "step": 5055 + }, + { + "epoch": 70.22367846221057, + "grad_norm": 0.2158394753932953, + "learning_rate": 0.0006, + "loss": 3.4894015789031982, + "step": 5056 + }, + { + "epoch": 70.23765836609873, + "grad_norm": 0.22618336975574493, + "learning_rate": 0.0006, + "loss": 3.479133129119873, + "step": 5057 + }, + { + "epoch": 70.2516382699869, + "grad_norm": 0.23803631961345673, + "learning_rate": 0.0006, + "loss": 3.4984683990478516, + "step": 5058 + }, + { + "epoch": 70.26561817387505, + "grad_norm": 0.23439951241016388, + "learning_rate": 0.0006, + "loss": 3.503323554992676, + "step": 5059 + }, + { + "epoch": 70.27959807776321, + "grad_norm": 0.23607788980007172, + "learning_rate": 0.0006, + "loss": 3.5056004524230957, + "step": 5060 + }, + { + "epoch": 70.29357798165138, + "grad_norm": 0.22633908689022064, + "learning_rate": 0.0006, + "loss": 3.5278968811035156, + "step": 5061 + }, + { + "epoch": 70.30755788553954, + "grad_norm": 0.21656733751296997, + "learning_rate": 0.0006, + "loss": 3.5163440704345703, + "step": 5062 + }, + { + "epoch": 70.3215377894277, + "grad_norm": 0.19461899995803833, + "learning_rate": 0.0006, + "loss": 3.506269931793213, + "step": 5063 + }, + { + "epoch": 70.33551769331586, + "grad_norm": 0.22591930627822876, + "learning_rate": 0.0006, + "loss": 3.51469087600708, + "step": 5064 + }, + { + "epoch": 70.34949759720402, + "grad_norm": 0.23841705918312073, + "learning_rate": 0.0006, + "loss": 3.4775524139404297, + "step": 5065 + }, + { + "epoch": 70.36347750109218, + "grad_norm": 0.24957220256328583, + "learning_rate": 0.0006, + "loss": 3.5303030014038086, + "step": 5066 + }, + { + "epoch": 70.37745740498035, + "grad_norm": 0.2574119567871094, + "learning_rate": 0.0006, + "loss": 3.524887800216675, + "step": 5067 + }, + { + "epoch": 70.3914373088685, + "grad_norm": 0.23704029619693756, + "learning_rate": 0.0006, + "loss": 3.5258219242095947, + "step": 5068 + }, + { + "epoch": 70.40541721275666, + "grad_norm": 0.221607968211174, + "learning_rate": 0.0006, + "loss": 3.5022010803222656, + "step": 5069 + }, + { + "epoch": 70.41939711664482, + "grad_norm": 0.2071426510810852, + "learning_rate": 0.0006, + "loss": 3.499718189239502, + "step": 5070 + }, + { + "epoch": 70.43337702053299, + "grad_norm": 0.2146281599998474, + "learning_rate": 0.0006, + "loss": 3.495534896850586, + "step": 5071 + }, + { + "epoch": 70.44735692442114, + "grad_norm": 0.21276946365833282, + "learning_rate": 0.0006, + "loss": 3.5138864517211914, + "step": 5072 + }, + { + "epoch": 70.4613368283093, + "grad_norm": 0.21113698184490204, + "learning_rate": 0.0006, + "loss": 3.531108856201172, + "step": 5073 + }, + { + "epoch": 70.47531673219747, + "grad_norm": 0.233713299036026, + "learning_rate": 0.0006, + "loss": 3.499675750732422, + "step": 5074 + }, + { + "epoch": 70.48929663608563, + "grad_norm": 0.2445792704820633, + "learning_rate": 0.0006, + "loss": 3.489576816558838, + "step": 5075 + }, + { + "epoch": 70.50327653997378, + "grad_norm": 0.22929179668426514, + "learning_rate": 0.0006, + "loss": 3.511636257171631, + "step": 5076 + }, + { + "epoch": 70.51725644386195, + "grad_norm": 0.21347999572753906, + "learning_rate": 0.0006, + "loss": 3.482804536819458, + "step": 5077 + }, + { + "epoch": 70.53123634775011, + "grad_norm": 0.21338650584220886, + "learning_rate": 0.0006, + "loss": 3.4532628059387207, + "step": 5078 + }, + { + "epoch": 70.54521625163827, + "grad_norm": 0.24062009155750275, + "learning_rate": 0.0006, + "loss": 3.5084481239318848, + "step": 5079 + }, + { + "epoch": 70.55919615552644, + "grad_norm": 0.2101839929819107, + "learning_rate": 0.0006, + "loss": 3.5022215843200684, + "step": 5080 + }, + { + "epoch": 70.57317605941459, + "grad_norm": 0.21427087485790253, + "learning_rate": 0.0006, + "loss": 3.468010902404785, + "step": 5081 + }, + { + "epoch": 70.58715596330275, + "grad_norm": 0.21073004603385925, + "learning_rate": 0.0006, + "loss": 3.53702974319458, + "step": 5082 + }, + { + "epoch": 70.60113586719092, + "grad_norm": 0.2176336646080017, + "learning_rate": 0.0006, + "loss": 3.4857382774353027, + "step": 5083 + }, + { + "epoch": 70.61511577107908, + "grad_norm": 0.24387815594673157, + "learning_rate": 0.0006, + "loss": 3.5301153659820557, + "step": 5084 + }, + { + "epoch": 70.62909567496723, + "grad_norm": 0.2560335397720337, + "learning_rate": 0.0006, + "loss": 3.4792633056640625, + "step": 5085 + }, + { + "epoch": 70.6430755788554, + "grad_norm": 0.24951279163360596, + "learning_rate": 0.0006, + "loss": 3.5134525299072266, + "step": 5086 + }, + { + "epoch": 70.65705548274356, + "grad_norm": 0.23483215272426605, + "learning_rate": 0.0006, + "loss": 3.5170576572418213, + "step": 5087 + }, + { + "epoch": 70.67103538663171, + "grad_norm": 0.21526923775672913, + "learning_rate": 0.0006, + "loss": 3.4973630905151367, + "step": 5088 + }, + { + "epoch": 70.68501529051987, + "grad_norm": 0.2129240781068802, + "learning_rate": 0.0006, + "loss": 3.5371346473693848, + "step": 5089 + }, + { + "epoch": 70.69899519440804, + "grad_norm": 0.22548805177211761, + "learning_rate": 0.0006, + "loss": 3.509589195251465, + "step": 5090 + }, + { + "epoch": 70.7129750982962, + "grad_norm": 0.21366626024246216, + "learning_rate": 0.0006, + "loss": 3.5004022121429443, + "step": 5091 + }, + { + "epoch": 70.72695500218435, + "grad_norm": 0.2066943347454071, + "learning_rate": 0.0006, + "loss": 3.5086469650268555, + "step": 5092 + }, + { + "epoch": 70.74093490607252, + "grad_norm": 0.20916718244552612, + "learning_rate": 0.0006, + "loss": 3.508835554122925, + "step": 5093 + }, + { + "epoch": 70.75491480996068, + "grad_norm": 0.21769332885742188, + "learning_rate": 0.0006, + "loss": 3.470569372177124, + "step": 5094 + }, + { + "epoch": 70.76889471384884, + "grad_norm": 0.2393418401479721, + "learning_rate": 0.0006, + "loss": 3.5554609298706055, + "step": 5095 + }, + { + "epoch": 70.78287461773701, + "grad_norm": 0.22856567800045013, + "learning_rate": 0.0006, + "loss": 3.5240354537963867, + "step": 5096 + }, + { + "epoch": 70.79685452162516, + "grad_norm": 0.2168598771095276, + "learning_rate": 0.0006, + "loss": 3.5223824977874756, + "step": 5097 + }, + { + "epoch": 70.81083442551332, + "grad_norm": 0.23636406660079956, + "learning_rate": 0.0006, + "loss": 3.515028953552246, + "step": 5098 + }, + { + "epoch": 70.82481432940149, + "grad_norm": 0.25196272134780884, + "learning_rate": 0.0006, + "loss": 3.5251357555389404, + "step": 5099 + }, + { + "epoch": 70.83879423328965, + "grad_norm": 0.2760903239250183, + "learning_rate": 0.0006, + "loss": 3.5171520709991455, + "step": 5100 + }, + { + "epoch": 70.8527741371778, + "grad_norm": 0.24275866150856018, + "learning_rate": 0.0006, + "loss": 3.515378713607788, + "step": 5101 + }, + { + "epoch": 70.86675404106597, + "grad_norm": 0.20806105434894562, + "learning_rate": 0.0006, + "loss": 3.5539910793304443, + "step": 5102 + }, + { + "epoch": 70.88073394495413, + "grad_norm": 0.22015595436096191, + "learning_rate": 0.0006, + "loss": 3.5204410552978516, + "step": 5103 + }, + { + "epoch": 70.89471384884229, + "grad_norm": 0.2634579837322235, + "learning_rate": 0.0006, + "loss": 3.531816005706787, + "step": 5104 + }, + { + "epoch": 70.90869375273044, + "grad_norm": 0.2532503008842468, + "learning_rate": 0.0006, + "loss": 3.494335174560547, + "step": 5105 + }, + { + "epoch": 70.92267365661861, + "grad_norm": 0.21336589753627777, + "learning_rate": 0.0006, + "loss": 3.527202606201172, + "step": 5106 + }, + { + "epoch": 70.93665356050677, + "grad_norm": 0.20789426565170288, + "learning_rate": 0.0006, + "loss": 3.516286849975586, + "step": 5107 + }, + { + "epoch": 70.95063346439493, + "grad_norm": 0.21855080127716064, + "learning_rate": 0.0006, + "loss": 3.510622978210449, + "step": 5108 + }, + { + "epoch": 70.9646133682831, + "grad_norm": 0.21742936968803406, + "learning_rate": 0.0006, + "loss": 3.5159173011779785, + "step": 5109 + }, + { + "epoch": 70.97859327217125, + "grad_norm": 0.21697010099887848, + "learning_rate": 0.0006, + "loss": 3.5253071784973145, + "step": 5110 + }, + { + "epoch": 70.99257317605941, + "grad_norm": 0.1939983069896698, + "learning_rate": 0.0006, + "loss": 3.5092079639434814, + "step": 5111 + }, + { + "epoch": 71.0, + "grad_norm": 0.21768872439861298, + "learning_rate": 0.0006, + "loss": 3.549747943878174, + "step": 5112 + }, + { + "epoch": 71.0, + "eval_loss": 3.981994867324829, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 5112 + }, + { + "epoch": 71.01397990388816, + "grad_norm": 0.20411916077136993, + "learning_rate": 0.0006, + "loss": 3.4846625328063965, + "step": 5113 + }, + { + "epoch": 71.02795980777633, + "grad_norm": 0.23582075536251068, + "learning_rate": 0.0006, + "loss": 3.5063037872314453, + "step": 5114 + }, + { + "epoch": 71.04193971166448, + "grad_norm": 0.25915080308914185, + "learning_rate": 0.0006, + "loss": 3.487607955932617, + "step": 5115 + }, + { + "epoch": 71.05591961555264, + "grad_norm": 0.279734343290329, + "learning_rate": 0.0006, + "loss": 3.4697108268737793, + "step": 5116 + }, + { + "epoch": 71.06989951944081, + "grad_norm": 0.2628752589225769, + "learning_rate": 0.0006, + "loss": 3.493368625640869, + "step": 5117 + }, + { + "epoch": 71.08387942332897, + "grad_norm": 0.22309084236621857, + "learning_rate": 0.0006, + "loss": 3.484891891479492, + "step": 5118 + }, + { + "epoch": 71.09785932721712, + "grad_norm": 0.302577406167984, + "learning_rate": 0.0006, + "loss": 3.485151767730713, + "step": 5119 + }, + { + "epoch": 71.1118392311053, + "grad_norm": 0.37276333570480347, + "learning_rate": 0.0006, + "loss": 3.4952797889709473, + "step": 5120 + }, + { + "epoch": 71.12581913499345, + "grad_norm": 0.3283502757549286, + "learning_rate": 0.0006, + "loss": 3.4817187786102295, + "step": 5121 + }, + { + "epoch": 71.1397990388816, + "grad_norm": 0.2639681398868561, + "learning_rate": 0.0006, + "loss": 3.488034248352051, + "step": 5122 + }, + { + "epoch": 71.15377894276976, + "grad_norm": 0.23883986473083496, + "learning_rate": 0.0006, + "loss": 3.4839282035827637, + "step": 5123 + }, + { + "epoch": 71.16775884665793, + "grad_norm": 0.25839197635650635, + "learning_rate": 0.0006, + "loss": 3.4969372749328613, + "step": 5124 + }, + { + "epoch": 71.18173875054609, + "grad_norm": 0.2511022090911865, + "learning_rate": 0.0006, + "loss": 3.4977002143859863, + "step": 5125 + }, + { + "epoch": 71.19571865443424, + "grad_norm": 0.23030386865139008, + "learning_rate": 0.0006, + "loss": 3.499420404434204, + "step": 5126 + }, + { + "epoch": 71.20969855832242, + "grad_norm": 0.26834407448768616, + "learning_rate": 0.0006, + "loss": 3.492626190185547, + "step": 5127 + }, + { + "epoch": 71.22367846221057, + "grad_norm": 0.25042101740837097, + "learning_rate": 0.0006, + "loss": 3.50586199760437, + "step": 5128 + }, + { + "epoch": 71.23765836609873, + "grad_norm": 0.23350484669208527, + "learning_rate": 0.0006, + "loss": 3.4870376586914062, + "step": 5129 + }, + { + "epoch": 71.2516382699869, + "grad_norm": 0.26074114441871643, + "learning_rate": 0.0006, + "loss": 3.4873902797698975, + "step": 5130 + }, + { + "epoch": 71.26561817387505, + "grad_norm": 0.23405839502811432, + "learning_rate": 0.0006, + "loss": 3.477447032928467, + "step": 5131 + }, + { + "epoch": 71.27959807776321, + "grad_norm": 0.22196513414382935, + "learning_rate": 0.0006, + "loss": 3.513475179672241, + "step": 5132 + }, + { + "epoch": 71.29357798165138, + "grad_norm": 0.21518723666667938, + "learning_rate": 0.0006, + "loss": 3.4947776794433594, + "step": 5133 + }, + { + "epoch": 71.30755788553954, + "grad_norm": 0.2067832201719284, + "learning_rate": 0.0006, + "loss": 3.4992613792419434, + "step": 5134 + }, + { + "epoch": 71.3215377894277, + "grad_norm": 0.2346884161233902, + "learning_rate": 0.0006, + "loss": 3.510505437850952, + "step": 5135 + }, + { + "epoch": 71.33551769331586, + "grad_norm": 0.21138189733028412, + "learning_rate": 0.0006, + "loss": 3.4731202125549316, + "step": 5136 + }, + { + "epoch": 71.34949759720402, + "grad_norm": 0.21185064315795898, + "learning_rate": 0.0006, + "loss": 3.5232839584350586, + "step": 5137 + }, + { + "epoch": 71.36347750109218, + "grad_norm": 0.25712820887565613, + "learning_rate": 0.0006, + "loss": 3.46025013923645, + "step": 5138 + }, + { + "epoch": 71.37745740498035, + "grad_norm": 0.21276356279850006, + "learning_rate": 0.0006, + "loss": 3.489804983139038, + "step": 5139 + }, + { + "epoch": 71.3914373088685, + "grad_norm": 0.2022353708744049, + "learning_rate": 0.0006, + "loss": 3.504286289215088, + "step": 5140 + }, + { + "epoch": 71.40541721275666, + "grad_norm": 0.21934957802295685, + "learning_rate": 0.0006, + "loss": 3.517760753631592, + "step": 5141 + }, + { + "epoch": 71.41939711664482, + "grad_norm": 0.2196030169725418, + "learning_rate": 0.0006, + "loss": 3.5004754066467285, + "step": 5142 + }, + { + "epoch": 71.43337702053299, + "grad_norm": 0.2015426605939865, + "learning_rate": 0.0006, + "loss": 3.465399980545044, + "step": 5143 + }, + { + "epoch": 71.44735692442114, + "grad_norm": 0.20420803129673004, + "learning_rate": 0.0006, + "loss": 3.4855151176452637, + "step": 5144 + }, + { + "epoch": 71.4613368283093, + "grad_norm": 0.20710550248622894, + "learning_rate": 0.0006, + "loss": 3.479557514190674, + "step": 5145 + }, + { + "epoch": 71.47531673219747, + "grad_norm": 0.21790869534015656, + "learning_rate": 0.0006, + "loss": 3.478614330291748, + "step": 5146 + }, + { + "epoch": 71.48929663608563, + "grad_norm": 0.2018311470746994, + "learning_rate": 0.0006, + "loss": 3.488673448562622, + "step": 5147 + }, + { + "epoch": 71.50327653997378, + "grad_norm": 0.21153512597084045, + "learning_rate": 0.0006, + "loss": 3.5044631958007812, + "step": 5148 + }, + { + "epoch": 71.51725644386195, + "grad_norm": 0.21591797471046448, + "learning_rate": 0.0006, + "loss": 3.522662401199341, + "step": 5149 + }, + { + "epoch": 71.53123634775011, + "grad_norm": 0.20586389303207397, + "learning_rate": 0.0006, + "loss": 3.4791407585144043, + "step": 5150 + }, + { + "epoch": 71.54521625163827, + "grad_norm": 0.2201298475265503, + "learning_rate": 0.0006, + "loss": 3.4494271278381348, + "step": 5151 + }, + { + "epoch": 71.55919615552644, + "grad_norm": 0.22793325781822205, + "learning_rate": 0.0006, + "loss": 3.495795726776123, + "step": 5152 + }, + { + "epoch": 71.57317605941459, + "grad_norm": 0.2414522022008896, + "learning_rate": 0.0006, + "loss": 3.5030856132507324, + "step": 5153 + }, + { + "epoch": 71.58715596330275, + "grad_norm": 0.23775361478328705, + "learning_rate": 0.0006, + "loss": 3.519958972930908, + "step": 5154 + }, + { + "epoch": 71.60113586719092, + "grad_norm": 0.21599332988262177, + "learning_rate": 0.0006, + "loss": 3.518765449523926, + "step": 5155 + }, + { + "epoch": 71.61511577107908, + "grad_norm": 0.19520622491836548, + "learning_rate": 0.0006, + "loss": 3.514953136444092, + "step": 5156 + }, + { + "epoch": 71.62909567496723, + "grad_norm": 0.21063624322414398, + "learning_rate": 0.0006, + "loss": 3.507232189178467, + "step": 5157 + }, + { + "epoch": 71.6430755788554, + "grad_norm": 0.20278486609458923, + "learning_rate": 0.0006, + "loss": 3.5083611011505127, + "step": 5158 + }, + { + "epoch": 71.65705548274356, + "grad_norm": 0.20769764482975006, + "learning_rate": 0.0006, + "loss": 3.5421876907348633, + "step": 5159 + }, + { + "epoch": 71.67103538663171, + "grad_norm": 0.21942169964313507, + "learning_rate": 0.0006, + "loss": 3.511857509613037, + "step": 5160 + }, + { + "epoch": 71.68501529051987, + "grad_norm": 0.21532300114631653, + "learning_rate": 0.0006, + "loss": 3.4975109100341797, + "step": 5161 + }, + { + "epoch": 71.69899519440804, + "grad_norm": 0.20382282137870789, + "learning_rate": 0.0006, + "loss": 3.500424861907959, + "step": 5162 + }, + { + "epoch": 71.7129750982962, + "grad_norm": 0.22072380781173706, + "learning_rate": 0.0006, + "loss": 3.50101900100708, + "step": 5163 + }, + { + "epoch": 71.72695500218435, + "grad_norm": 0.21554681658744812, + "learning_rate": 0.0006, + "loss": 3.528384208679199, + "step": 5164 + }, + { + "epoch": 71.74093490607252, + "grad_norm": 0.22927747666835785, + "learning_rate": 0.0006, + "loss": 3.488309621810913, + "step": 5165 + }, + { + "epoch": 71.75491480996068, + "grad_norm": 0.23190589249134064, + "learning_rate": 0.0006, + "loss": 3.547053337097168, + "step": 5166 + }, + { + "epoch": 71.76889471384884, + "grad_norm": 0.262680321931839, + "learning_rate": 0.0006, + "loss": 3.5154809951782227, + "step": 5167 + }, + { + "epoch": 71.78287461773701, + "grad_norm": 0.29555177688598633, + "learning_rate": 0.0006, + "loss": 3.4969329833984375, + "step": 5168 + }, + { + "epoch": 71.79685452162516, + "grad_norm": 0.26300716400146484, + "learning_rate": 0.0006, + "loss": 3.4716663360595703, + "step": 5169 + }, + { + "epoch": 71.81083442551332, + "grad_norm": 0.21645912528038025, + "learning_rate": 0.0006, + "loss": 3.4847588539123535, + "step": 5170 + }, + { + "epoch": 71.82481432940149, + "grad_norm": 0.21476063132286072, + "learning_rate": 0.0006, + "loss": 3.4949374198913574, + "step": 5171 + }, + { + "epoch": 71.83879423328965, + "grad_norm": 0.26659518480300903, + "learning_rate": 0.0006, + "loss": 3.519371271133423, + "step": 5172 + }, + { + "epoch": 71.8527741371778, + "grad_norm": 0.2567320764064789, + "learning_rate": 0.0006, + "loss": 3.522982120513916, + "step": 5173 + }, + { + "epoch": 71.86675404106597, + "grad_norm": 0.21162307262420654, + "learning_rate": 0.0006, + "loss": 3.489562749862671, + "step": 5174 + }, + { + "epoch": 71.88073394495413, + "grad_norm": 0.22359566390514374, + "learning_rate": 0.0006, + "loss": 3.51139760017395, + "step": 5175 + }, + { + "epoch": 71.89471384884229, + "grad_norm": 0.19192424416542053, + "learning_rate": 0.0006, + "loss": 3.568310260772705, + "step": 5176 + }, + { + "epoch": 71.90869375273044, + "grad_norm": 0.21490535140037537, + "learning_rate": 0.0006, + "loss": 3.52728271484375, + "step": 5177 + }, + { + "epoch": 71.92267365661861, + "grad_norm": 0.21532146632671356, + "learning_rate": 0.0006, + "loss": 3.533647060394287, + "step": 5178 + }, + { + "epoch": 71.93665356050677, + "grad_norm": 0.2047201246023178, + "learning_rate": 0.0006, + "loss": 3.528214931488037, + "step": 5179 + }, + { + "epoch": 71.95063346439493, + "grad_norm": 0.20230898261070251, + "learning_rate": 0.0006, + "loss": 3.530636787414551, + "step": 5180 + }, + { + "epoch": 71.9646133682831, + "grad_norm": 0.1971510648727417, + "learning_rate": 0.0006, + "loss": 3.5658822059631348, + "step": 5181 + }, + { + "epoch": 71.97859327217125, + "grad_norm": 0.21853342652320862, + "learning_rate": 0.0006, + "loss": 3.4901480674743652, + "step": 5182 + }, + { + "epoch": 71.99257317605941, + "grad_norm": 0.2481825053691864, + "learning_rate": 0.0006, + "loss": 3.5149893760681152, + "step": 5183 + }, + { + "epoch": 72.0, + "grad_norm": 0.28394815325737, + "learning_rate": 0.0006, + "loss": 3.5142500400543213, + "step": 5184 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 2.209156501547778e+18, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5184/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5472/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5472/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5472/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5472/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..64927bd8111d67c13e7e064258a739957ef61d00 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80c1f40d01b98a3ac7cdf50054103298f1e44de36492202bd356b48e16280bc +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5472/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..3fc5d7ccbc1403efeabfd8b4a0162cbfc31ea5fa --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68f4f2d741b78407eb6332a7968893ff34287dcff5694f8e2be7fd79e75c0177 +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5472/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..f1b3141dfb1b9cb3172b06443fda1dd55ae37d4a --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:462b2ac7a54f2e24181109d9edc74f491d580d1fe99c64d714d7a896cceeae2b +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5472/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..3e4f2180e2392e4e618ec08d59c873be54936f80 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da76415e07db32e505ebd608c6df8c13148ee9a7cafd6e5a6abd865943c01c6f +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5472/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..bde6e47e59bea2a2d1c7be49dbaa3a2d4dfadf37 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec3fa8fa903a5a893f5b74cfd95272dfde1a7a2149fd0f3ecec1adb7304a55b8 +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5472/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5472/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5472/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..f437d7848480fc5cb2dcb3babcb7723dba648fd8 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/trainer_state.json @@ -0,0 +1,38938 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 76.0, + "eval_steps": 500, + "global_step": 5472, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + }, + { + "epoch": 8.0, + "eval_loss": 5.100707530975342, + "eval_runtime": 44.2493, + "eval_samples_per_second": 55.187, + "eval_steps_per_second": 3.458, + "step": 576 + }, + { + "epoch": 8.013979903888162, + "grad_norm": 0.3658510148525238, + "learning_rate": 0.0006, + "loss": 4.759055137634277, + "step": 577 + }, + { + "epoch": 8.027959807776321, + "grad_norm": 0.41794446110725403, + "learning_rate": 0.0006, + "loss": 4.737661838531494, + "step": 578 + }, + { + "epoch": 8.041939711664483, + "grad_norm": 0.43284085392951965, + "learning_rate": 0.0006, + "loss": 4.775538444519043, + "step": 579 + }, + { + "epoch": 8.055919615552643, + "grad_norm": 0.4716675281524658, + "learning_rate": 0.0006, + "loss": 4.762231826782227, + "step": 580 + }, + { + "epoch": 8.069899519440805, + "grad_norm": 0.3849579393863678, + "learning_rate": 0.0006, + "loss": 4.753598690032959, + "step": 581 + }, + { + "epoch": 8.083879423328964, + "grad_norm": 0.3721151053905487, + "learning_rate": 0.0006, + "loss": 4.728978157043457, + "step": 582 + }, + { + "epoch": 8.097859327217126, + "grad_norm": 0.37009572982788086, + "learning_rate": 0.0006, + "loss": 4.759153366088867, + "step": 583 + }, + { + "epoch": 8.111839231105286, + "grad_norm": 0.37051302194595337, + "learning_rate": 0.0006, + "loss": 4.744197368621826, + "step": 584 + }, + { + "epoch": 8.125819134993447, + "grad_norm": 0.331238329410553, + "learning_rate": 0.0006, + "loss": 4.7338385581970215, + "step": 585 + }, + { + "epoch": 8.139799038881607, + "grad_norm": 0.3737713694572449, + "learning_rate": 0.0006, + "loss": 4.719110488891602, + "step": 586 + }, + { + "epoch": 8.153778942769769, + "grad_norm": 0.3713214695453644, + "learning_rate": 0.0006, + "loss": 4.734012126922607, + "step": 587 + }, + { + "epoch": 8.167758846657929, + "grad_norm": 0.4060780107975006, + "learning_rate": 0.0006, + "loss": 4.746830940246582, + "step": 588 + }, + { + "epoch": 8.18173875054609, + "grad_norm": 0.39814314246177673, + "learning_rate": 0.0006, + "loss": 4.722851753234863, + "step": 589 + }, + { + "epoch": 8.19571865443425, + "grad_norm": 0.3175652325153351, + "learning_rate": 0.0006, + "loss": 4.745110034942627, + "step": 590 + }, + { + "epoch": 8.209698558322412, + "grad_norm": 0.37214916944503784, + "learning_rate": 0.0006, + "loss": 4.7362775802612305, + "step": 591 + }, + { + "epoch": 8.223678462210572, + "grad_norm": 0.3873472809791565, + "learning_rate": 0.0006, + "loss": 4.738964557647705, + "step": 592 + }, + { + "epoch": 8.237658366098733, + "grad_norm": 0.3299207091331482, + "learning_rate": 0.0006, + "loss": 4.713451385498047, + "step": 593 + }, + { + "epoch": 8.251638269986893, + "grad_norm": 0.32445064187049866, + "learning_rate": 0.0006, + "loss": 4.725602149963379, + "step": 594 + }, + { + "epoch": 8.265618173875055, + "grad_norm": 0.32903164625167847, + "learning_rate": 0.0006, + "loss": 4.732064247131348, + "step": 595 + }, + { + "epoch": 8.279598077763215, + "grad_norm": 0.3166804313659668, + "learning_rate": 0.0006, + "loss": 4.678950786590576, + "step": 596 + }, + { + "epoch": 8.293577981651376, + "grad_norm": 0.2750290334224701, + "learning_rate": 0.0006, + "loss": 4.719513416290283, + "step": 597 + }, + { + "epoch": 8.307557885539538, + "grad_norm": 0.291029691696167, + "learning_rate": 0.0006, + "loss": 4.715405464172363, + "step": 598 + }, + { + "epoch": 8.321537789427698, + "grad_norm": 0.34105145931243896, + "learning_rate": 0.0006, + "loss": 4.722611427307129, + "step": 599 + }, + { + "epoch": 8.33551769331586, + "grad_norm": 0.3078882694244385, + "learning_rate": 0.0006, + "loss": 4.668856620788574, + "step": 600 + }, + { + "epoch": 8.349497597204019, + "grad_norm": 0.3218833804130554, + "learning_rate": 0.0006, + "loss": 4.719579696655273, + "step": 601 + }, + { + "epoch": 8.36347750109218, + "grad_norm": 0.35716721415519714, + "learning_rate": 0.0006, + "loss": 4.690774440765381, + "step": 602 + }, + { + "epoch": 8.37745740498034, + "grad_norm": 0.3045452833175659, + "learning_rate": 0.0006, + "loss": 4.696503639221191, + "step": 603 + }, + { + "epoch": 8.391437308868502, + "grad_norm": 0.3127244710922241, + "learning_rate": 0.0006, + "loss": 4.701899528503418, + "step": 604 + }, + { + "epoch": 8.405417212756662, + "grad_norm": 0.34988710284233093, + "learning_rate": 0.0006, + "loss": 4.677641868591309, + "step": 605 + }, + { + "epoch": 8.419397116644824, + "grad_norm": 0.34035569429397583, + "learning_rate": 0.0006, + "loss": 4.707778453826904, + "step": 606 + }, + { + "epoch": 8.433377020532983, + "grad_norm": 0.3341112732887268, + "learning_rate": 0.0006, + "loss": 4.724853038787842, + "step": 607 + }, + { + "epoch": 8.447356924421145, + "grad_norm": 0.41744324564933777, + "learning_rate": 0.0006, + "loss": 4.680908203125, + "step": 608 + }, + { + "epoch": 8.461336828309305, + "grad_norm": 0.40402331948280334, + "learning_rate": 0.0006, + "loss": 4.726455211639404, + "step": 609 + }, + { + "epoch": 8.475316732197467, + "grad_norm": 0.4727570414543152, + "learning_rate": 0.0006, + "loss": 4.6793084144592285, + "step": 610 + }, + { + "epoch": 8.489296636085626, + "grad_norm": 0.43002694845199585, + "learning_rate": 0.0006, + "loss": 4.663918972015381, + "step": 611 + }, + { + "epoch": 8.503276539973788, + "grad_norm": 0.36124858260154724, + "learning_rate": 0.0006, + "loss": 4.657375335693359, + "step": 612 + }, + { + "epoch": 8.517256443861948, + "grad_norm": 0.37644803524017334, + "learning_rate": 0.0006, + "loss": 4.676977157592773, + "step": 613 + }, + { + "epoch": 8.53123634775011, + "grad_norm": 0.32347747683525085, + "learning_rate": 0.0006, + "loss": 4.708547115325928, + "step": 614 + }, + { + "epoch": 8.54521625163827, + "grad_norm": 0.3071717619895935, + "learning_rate": 0.0006, + "loss": 4.650189399719238, + "step": 615 + }, + { + "epoch": 8.55919615552643, + "grad_norm": 0.30222490429878235, + "learning_rate": 0.0006, + "loss": 4.647942543029785, + "step": 616 + }, + { + "epoch": 8.57317605941459, + "grad_norm": 0.31545212864875793, + "learning_rate": 0.0006, + "loss": 4.660242080688477, + "step": 617 + }, + { + "epoch": 8.587155963302752, + "grad_norm": 0.31644752621650696, + "learning_rate": 0.0006, + "loss": 4.666710376739502, + "step": 618 + }, + { + "epoch": 8.601135867190912, + "grad_norm": 0.26057198643684387, + "learning_rate": 0.0006, + "loss": 4.668096542358398, + "step": 619 + }, + { + "epoch": 8.615115771079074, + "grad_norm": 0.25473910570144653, + "learning_rate": 0.0006, + "loss": 4.641562461853027, + "step": 620 + }, + { + "epoch": 8.629095674967235, + "grad_norm": 0.2456732839345932, + "learning_rate": 0.0006, + "loss": 4.6545281410217285, + "step": 621 + }, + { + "epoch": 8.643075578855395, + "grad_norm": 0.25180476903915405, + "learning_rate": 0.0006, + "loss": 4.6506524085998535, + "step": 622 + }, + { + "epoch": 8.657055482743557, + "grad_norm": 0.21761579811573029, + "learning_rate": 0.0006, + "loss": 4.638909339904785, + "step": 623 + }, + { + "epoch": 8.671035386631717, + "grad_norm": 0.23590542376041412, + "learning_rate": 0.0006, + "loss": 4.6572747230529785, + "step": 624 + }, + { + "epoch": 8.685015290519878, + "grad_norm": 0.23870624601840973, + "learning_rate": 0.0006, + "loss": 4.643742084503174, + "step": 625 + }, + { + "epoch": 8.698995194408038, + "grad_norm": 0.2191203385591507, + "learning_rate": 0.0006, + "loss": 4.632617950439453, + "step": 626 + }, + { + "epoch": 8.7129750982962, + "grad_norm": 0.22107063233852386, + "learning_rate": 0.0006, + "loss": 4.625616073608398, + "step": 627 + }, + { + "epoch": 8.72695500218436, + "grad_norm": 0.20833902060985565, + "learning_rate": 0.0006, + "loss": 4.609896659851074, + "step": 628 + }, + { + "epoch": 8.740934906072521, + "grad_norm": 0.254967600107193, + "learning_rate": 0.0006, + "loss": 4.651735782623291, + "step": 629 + }, + { + "epoch": 8.754914809960681, + "grad_norm": 0.31587523221969604, + "learning_rate": 0.0006, + "loss": 4.6404032707214355, + "step": 630 + }, + { + "epoch": 8.768894713848843, + "grad_norm": 0.28598251938819885, + "learning_rate": 0.0006, + "loss": 4.602679252624512, + "step": 631 + }, + { + "epoch": 8.782874617737003, + "grad_norm": 0.23216590285301208, + "learning_rate": 0.0006, + "loss": 4.610319137573242, + "step": 632 + }, + { + "epoch": 8.796854521625164, + "grad_norm": 0.29212239384651184, + "learning_rate": 0.0006, + "loss": 4.600744247436523, + "step": 633 + }, + { + "epoch": 8.810834425513324, + "grad_norm": 0.3375801146030426, + "learning_rate": 0.0006, + "loss": 4.627819061279297, + "step": 634 + }, + { + "epoch": 8.824814329401486, + "grad_norm": 0.4207753837108612, + "learning_rate": 0.0006, + "loss": 4.634505271911621, + "step": 635 + }, + { + "epoch": 8.838794233289645, + "grad_norm": 0.4640173614025116, + "learning_rate": 0.0006, + "loss": 4.636714935302734, + "step": 636 + }, + { + "epoch": 8.852774137177807, + "grad_norm": 0.5255663990974426, + "learning_rate": 0.0006, + "loss": 4.659462928771973, + "step": 637 + }, + { + "epoch": 8.866754041065967, + "grad_norm": 0.5108268857002258, + "learning_rate": 0.0006, + "loss": 4.633192539215088, + "step": 638 + }, + { + "epoch": 8.880733944954128, + "grad_norm": 0.3821936845779419, + "learning_rate": 0.0006, + "loss": 4.621200084686279, + "step": 639 + }, + { + "epoch": 8.89471384884229, + "grad_norm": 0.3918485939502716, + "learning_rate": 0.0006, + "loss": 4.632599830627441, + "step": 640 + }, + { + "epoch": 8.90869375273045, + "grad_norm": 0.3416556119918823, + "learning_rate": 0.0006, + "loss": 4.620438098907471, + "step": 641 + }, + { + "epoch": 8.922673656618612, + "grad_norm": 0.3191553056240082, + "learning_rate": 0.0006, + "loss": 4.617823600769043, + "step": 642 + }, + { + "epoch": 8.936653560506771, + "grad_norm": 0.3368529677391052, + "learning_rate": 0.0006, + "loss": 4.617222785949707, + "step": 643 + }, + { + "epoch": 8.950633464394933, + "grad_norm": 0.3255428969860077, + "learning_rate": 0.0006, + "loss": 4.633878707885742, + "step": 644 + }, + { + "epoch": 8.964613368283093, + "grad_norm": 0.31394779682159424, + "learning_rate": 0.0006, + "loss": 4.642603874206543, + "step": 645 + }, + { + "epoch": 8.978593272171254, + "grad_norm": 0.29999351501464844, + "learning_rate": 0.0006, + "loss": 4.5925211906433105, + "step": 646 + }, + { + "epoch": 8.992573176059414, + "grad_norm": 0.309154748916626, + "learning_rate": 0.0006, + "loss": 4.61745023727417, + "step": 647 + }, + { + "epoch": 9.0, + "grad_norm": 0.2660452425479889, + "learning_rate": 0.0006, + "loss": 4.575107097625732, + "step": 648 + }, + { + "epoch": 9.0, + "eval_loss": 4.8804192543029785, + "eval_runtime": 45.0015, + "eval_samples_per_second": 54.265, + "eval_steps_per_second": 3.4, + "step": 648 + }, + { + "epoch": 9.013979903888162, + "grad_norm": 0.24159297347068787, + "learning_rate": 0.0006, + "loss": 4.571323871612549, + "step": 649 + }, + { + "epoch": 9.027959807776321, + "grad_norm": 0.2835831046104431, + "learning_rate": 0.0006, + "loss": 4.614255905151367, + "step": 650 + }, + { + "epoch": 9.041939711664483, + "grad_norm": 0.2646859288215637, + "learning_rate": 0.0006, + "loss": 4.578947067260742, + "step": 651 + }, + { + "epoch": 9.055919615552643, + "grad_norm": 0.28868553042411804, + "learning_rate": 0.0006, + "loss": 4.575977325439453, + "step": 652 + }, + { + "epoch": 9.069899519440805, + "grad_norm": 0.2899586856365204, + "learning_rate": 0.0006, + "loss": 4.541798114776611, + "step": 653 + }, + { + "epoch": 9.083879423328964, + "grad_norm": 0.32786068320274353, + "learning_rate": 0.0006, + "loss": 4.575140953063965, + "step": 654 + }, + { + "epoch": 9.097859327217126, + "grad_norm": 0.35675594210624695, + "learning_rate": 0.0006, + "loss": 4.58184814453125, + "step": 655 + }, + { + "epoch": 9.111839231105286, + "grad_norm": 0.3380381166934967, + "learning_rate": 0.0006, + "loss": 4.546271324157715, + "step": 656 + }, + { + "epoch": 9.125819134993447, + "grad_norm": 0.3035511374473572, + "learning_rate": 0.0006, + "loss": 4.591629981994629, + "step": 657 + }, + { + "epoch": 9.139799038881607, + "grad_norm": 0.2733091711997986, + "learning_rate": 0.0006, + "loss": 4.559020042419434, + "step": 658 + }, + { + "epoch": 9.153778942769769, + "grad_norm": 0.2870676815509796, + "learning_rate": 0.0006, + "loss": 4.552787780761719, + "step": 659 + }, + { + "epoch": 9.167758846657929, + "grad_norm": 0.37471064925193787, + "learning_rate": 0.0006, + "loss": 4.572757244110107, + "step": 660 + }, + { + "epoch": 9.18173875054609, + "grad_norm": 0.37889063358306885, + "learning_rate": 0.0006, + "loss": 4.573302268981934, + "step": 661 + }, + { + "epoch": 9.19571865443425, + "grad_norm": 0.29983851313591003, + "learning_rate": 0.0006, + "loss": 4.571202754974365, + "step": 662 + }, + { + "epoch": 9.209698558322412, + "grad_norm": 0.27595147490501404, + "learning_rate": 0.0006, + "loss": 4.529508590698242, + "step": 663 + }, + { + "epoch": 9.223678462210572, + "grad_norm": 0.22693437337875366, + "learning_rate": 0.0006, + "loss": 4.572267532348633, + "step": 664 + }, + { + "epoch": 9.237658366098733, + "grad_norm": 0.27147138118743896, + "learning_rate": 0.0006, + "loss": 4.529747009277344, + "step": 665 + }, + { + "epoch": 9.251638269986893, + "grad_norm": 0.24952703714370728, + "learning_rate": 0.0006, + "loss": 4.553647994995117, + "step": 666 + }, + { + "epoch": 9.265618173875055, + "grad_norm": 0.3086707592010498, + "learning_rate": 0.0006, + "loss": 4.494636058807373, + "step": 667 + }, + { + "epoch": 9.279598077763215, + "grad_norm": 0.3265218138694763, + "learning_rate": 0.0006, + "loss": 4.522481918334961, + "step": 668 + }, + { + "epoch": 9.293577981651376, + "grad_norm": 0.2744608223438263, + "learning_rate": 0.0006, + "loss": 4.544595241546631, + "step": 669 + }, + { + "epoch": 9.307557885539538, + "grad_norm": 0.26698485016822815, + "learning_rate": 0.0006, + "loss": 4.506407260894775, + "step": 670 + }, + { + "epoch": 9.321537789427698, + "grad_norm": 0.2775942087173462, + "learning_rate": 0.0006, + "loss": 4.534619331359863, + "step": 671 + }, + { + "epoch": 9.33551769331586, + "grad_norm": 0.2421862781047821, + "learning_rate": 0.0006, + "loss": 4.523318290710449, + "step": 672 + }, + { + "epoch": 9.349497597204019, + "grad_norm": 0.2756497263908386, + "learning_rate": 0.0006, + "loss": 4.517561912536621, + "step": 673 + }, + { + "epoch": 9.36347750109218, + "grad_norm": 0.28845369815826416, + "learning_rate": 0.0006, + "loss": 4.530844688415527, + "step": 674 + }, + { + "epoch": 9.37745740498034, + "grad_norm": 0.32285866141319275, + "learning_rate": 0.0006, + "loss": 4.55369758605957, + "step": 675 + }, + { + "epoch": 9.391437308868502, + "grad_norm": 0.3726065754890442, + "learning_rate": 0.0006, + "loss": 4.524348258972168, + "step": 676 + }, + { + "epoch": 9.405417212756662, + "grad_norm": 0.39524078369140625, + "learning_rate": 0.0006, + "loss": 4.535778045654297, + "step": 677 + }, + { + "epoch": 9.419397116644824, + "grad_norm": 0.3859797716140747, + "learning_rate": 0.0006, + "loss": 4.538474082946777, + "step": 678 + }, + { + "epoch": 9.433377020532983, + "grad_norm": 0.36151406168937683, + "learning_rate": 0.0006, + "loss": 4.54434061050415, + "step": 679 + }, + { + "epoch": 9.447356924421145, + "grad_norm": 0.40345999598503113, + "learning_rate": 0.0006, + "loss": 4.532961845397949, + "step": 680 + }, + { + "epoch": 9.461336828309305, + "grad_norm": 0.38864144682884216, + "learning_rate": 0.0006, + "loss": 4.567630767822266, + "step": 681 + }, + { + "epoch": 9.475316732197467, + "grad_norm": 0.3816355764865875, + "learning_rate": 0.0006, + "loss": 4.535771369934082, + "step": 682 + }, + { + "epoch": 9.489296636085626, + "grad_norm": 0.38756558299064636, + "learning_rate": 0.0006, + "loss": 4.4971089363098145, + "step": 683 + }, + { + "epoch": 9.503276539973788, + "grad_norm": 0.4572933614253998, + "learning_rate": 0.0006, + "loss": 4.534860134124756, + "step": 684 + }, + { + "epoch": 9.517256443861948, + "grad_norm": 0.42368650436401367, + "learning_rate": 0.0006, + "loss": 4.542638301849365, + "step": 685 + }, + { + "epoch": 9.53123634775011, + "grad_norm": 0.36939486861228943, + "learning_rate": 0.0006, + "loss": 4.571430206298828, + "step": 686 + }, + { + "epoch": 9.54521625163827, + "grad_norm": 0.3900398313999176, + "learning_rate": 0.0006, + "loss": 4.544435501098633, + "step": 687 + }, + { + "epoch": 9.55919615552643, + "grad_norm": 0.37829288840293884, + "learning_rate": 0.0006, + "loss": 4.564268112182617, + "step": 688 + }, + { + "epoch": 9.57317605941459, + "grad_norm": 0.3553886115550995, + "learning_rate": 0.0006, + "loss": 4.5373430252075195, + "step": 689 + }, + { + "epoch": 9.587155963302752, + "grad_norm": 0.3613419532775879, + "learning_rate": 0.0006, + "loss": 4.559074401855469, + "step": 690 + }, + { + "epoch": 9.601135867190912, + "grad_norm": 0.32644546031951904, + "learning_rate": 0.0006, + "loss": 4.533667087554932, + "step": 691 + }, + { + "epoch": 9.615115771079074, + "grad_norm": 0.3264399468898773, + "learning_rate": 0.0006, + "loss": 4.508299350738525, + "step": 692 + }, + { + "epoch": 9.629095674967235, + "grad_norm": 0.3534526526927948, + "learning_rate": 0.0006, + "loss": 4.542442798614502, + "step": 693 + }, + { + "epoch": 9.643075578855395, + "grad_norm": 0.3333452343940735, + "learning_rate": 0.0006, + "loss": 4.497692584991455, + "step": 694 + }, + { + "epoch": 9.657055482743557, + "grad_norm": 0.3214292526245117, + "learning_rate": 0.0006, + "loss": 4.512363433837891, + "step": 695 + }, + { + "epoch": 9.671035386631717, + "grad_norm": 0.2805672585964203, + "learning_rate": 0.0006, + "loss": 4.496874809265137, + "step": 696 + }, + { + "epoch": 9.685015290519878, + "grad_norm": 0.2618725895881653, + "learning_rate": 0.0006, + "loss": 4.51375675201416, + "step": 697 + }, + { + "epoch": 9.698995194408038, + "grad_norm": 0.2556597888469696, + "learning_rate": 0.0006, + "loss": 4.512338638305664, + "step": 698 + }, + { + "epoch": 9.7129750982962, + "grad_norm": 0.23784305155277252, + "learning_rate": 0.0006, + "loss": 4.486503601074219, + "step": 699 + }, + { + "epoch": 9.72695500218436, + "grad_norm": 0.2240338921546936, + "learning_rate": 0.0006, + "loss": 4.486850261688232, + "step": 700 + }, + { + "epoch": 9.740934906072521, + "grad_norm": 0.24686725437641144, + "learning_rate": 0.0006, + "loss": 4.501359462738037, + "step": 701 + }, + { + "epoch": 9.754914809960681, + "grad_norm": 0.20819595456123352, + "learning_rate": 0.0006, + "loss": 4.495186805725098, + "step": 702 + }, + { + "epoch": 9.768894713848843, + "grad_norm": 0.21858957409858704, + "learning_rate": 0.0006, + "loss": 4.475093364715576, + "step": 703 + }, + { + "epoch": 9.782874617737003, + "grad_norm": 0.22676466405391693, + "learning_rate": 0.0006, + "loss": 4.4702534675598145, + "step": 704 + }, + { + "epoch": 9.796854521625164, + "grad_norm": 0.18317611515522003, + "learning_rate": 0.0006, + "loss": 4.471231937408447, + "step": 705 + }, + { + "epoch": 9.810834425513324, + "grad_norm": 0.20979148149490356, + "learning_rate": 0.0006, + "loss": 4.454103946685791, + "step": 706 + }, + { + "epoch": 9.824814329401486, + "grad_norm": 0.2146051526069641, + "learning_rate": 0.0006, + "loss": 4.505178928375244, + "step": 707 + }, + { + "epoch": 9.838794233289645, + "grad_norm": 0.2344852089881897, + "learning_rate": 0.0006, + "loss": 4.437984943389893, + "step": 708 + }, + { + "epoch": 9.852774137177807, + "grad_norm": 0.26532089710235596, + "learning_rate": 0.0006, + "loss": 4.477126121520996, + "step": 709 + }, + { + "epoch": 9.866754041065967, + "grad_norm": 0.2737913131713867, + "learning_rate": 0.0006, + "loss": 4.498421669006348, + "step": 710 + }, + { + "epoch": 9.880733944954128, + "grad_norm": 0.26651278138160706, + "learning_rate": 0.0006, + "loss": 4.480839729309082, + "step": 711 + }, + { + "epoch": 9.89471384884229, + "grad_norm": 0.26576584577560425, + "learning_rate": 0.0006, + "loss": 4.490936279296875, + "step": 712 + }, + { + "epoch": 9.90869375273045, + "grad_norm": 0.22483965754508972, + "learning_rate": 0.0006, + "loss": 4.477953910827637, + "step": 713 + }, + { + "epoch": 9.922673656618612, + "grad_norm": 0.23576045036315918, + "learning_rate": 0.0006, + "loss": 4.4731292724609375, + "step": 714 + }, + { + "epoch": 9.936653560506771, + "grad_norm": 0.2731139361858368, + "learning_rate": 0.0006, + "loss": 4.441622734069824, + "step": 715 + }, + { + "epoch": 9.950633464394933, + "grad_norm": 0.2677643597126007, + "learning_rate": 0.0006, + "loss": 4.49604606628418, + "step": 716 + }, + { + "epoch": 9.964613368283093, + "grad_norm": 0.21940895915031433, + "learning_rate": 0.0006, + "loss": 4.485573768615723, + "step": 717 + }, + { + "epoch": 9.978593272171254, + "grad_norm": 0.2060987651348114, + "learning_rate": 0.0006, + "loss": 4.482657432556152, + "step": 718 + }, + { + "epoch": 9.992573176059414, + "grad_norm": 0.22163978219032288, + "learning_rate": 0.0006, + "loss": 4.478459358215332, + "step": 719 + }, + { + "epoch": 10.0, + "grad_norm": 0.2505086064338684, + "learning_rate": 0.0006, + "loss": 4.4393510818481445, + "step": 720 + }, + { + "epoch": 10.0, + "eval_loss": 4.695676803588867, + "eval_runtime": 49.0751, + "eval_samples_per_second": 49.76, + "eval_steps_per_second": 3.118, + "step": 720 + }, + { + "epoch": 10.013979903888162, + "grad_norm": 0.23820190131664276, + "learning_rate": 0.0006, + "loss": 4.437685489654541, + "step": 721 + }, + { + "epoch": 10.027959807776321, + "grad_norm": 0.2220371812582016, + "learning_rate": 0.0006, + "loss": 4.449873924255371, + "step": 722 + }, + { + "epoch": 10.041939711664483, + "grad_norm": 0.20369848608970642, + "learning_rate": 0.0006, + "loss": 4.448882579803467, + "step": 723 + }, + { + "epoch": 10.055919615552643, + "grad_norm": 0.2360001504421234, + "learning_rate": 0.0006, + "loss": 4.399251937866211, + "step": 724 + }, + { + "epoch": 10.069899519440805, + "grad_norm": 0.23537491261959076, + "learning_rate": 0.0006, + "loss": 4.442960739135742, + "step": 725 + }, + { + "epoch": 10.083879423328964, + "grad_norm": 0.24433870613574982, + "learning_rate": 0.0006, + "loss": 4.44808292388916, + "step": 726 + }, + { + "epoch": 10.097859327217126, + "grad_norm": 0.3406696021556854, + "learning_rate": 0.0006, + "loss": 4.443426132202148, + "step": 727 + }, + { + "epoch": 10.111839231105286, + "grad_norm": 0.4102286100387573, + "learning_rate": 0.0006, + "loss": 4.424919605255127, + "step": 728 + }, + { + "epoch": 10.125819134993447, + "grad_norm": 0.36462604999542236, + "learning_rate": 0.0006, + "loss": 4.45366907119751, + "step": 729 + }, + { + "epoch": 10.139799038881607, + "grad_norm": 0.4374827444553375, + "learning_rate": 0.0006, + "loss": 4.415630340576172, + "step": 730 + }, + { + "epoch": 10.153778942769769, + "grad_norm": 0.45248138904571533, + "learning_rate": 0.0006, + "loss": 4.448849678039551, + "step": 731 + }, + { + "epoch": 10.167758846657929, + "grad_norm": 0.3806457221508026, + "learning_rate": 0.0006, + "loss": 4.443390846252441, + "step": 732 + }, + { + "epoch": 10.18173875054609, + "grad_norm": 0.3491523861885071, + "learning_rate": 0.0006, + "loss": 4.4648637771606445, + "step": 733 + }, + { + "epoch": 10.19571865443425, + "grad_norm": 0.3327210247516632, + "learning_rate": 0.0006, + "loss": 4.460919380187988, + "step": 734 + }, + { + "epoch": 10.209698558322412, + "grad_norm": 0.29772236943244934, + "learning_rate": 0.0006, + "loss": 4.45159912109375, + "step": 735 + }, + { + "epoch": 10.223678462210572, + "grad_norm": 0.33083397150039673, + "learning_rate": 0.0006, + "loss": 4.463382720947266, + "step": 736 + }, + { + "epoch": 10.237658366098733, + "grad_norm": 0.3930598795413971, + "learning_rate": 0.0006, + "loss": 4.434510231018066, + "step": 737 + }, + { + "epoch": 10.251638269986893, + "grad_norm": 0.4342896044254303, + "learning_rate": 0.0006, + "loss": 4.451700210571289, + "step": 738 + }, + { + "epoch": 10.265618173875055, + "grad_norm": 0.4544043242931366, + "learning_rate": 0.0006, + "loss": 4.437224388122559, + "step": 739 + }, + { + "epoch": 10.279598077763215, + "grad_norm": 0.4487038254737854, + "learning_rate": 0.0006, + "loss": 4.46157693862915, + "step": 740 + }, + { + "epoch": 10.293577981651376, + "grad_norm": 0.4420500695705414, + "learning_rate": 0.0006, + "loss": 4.399561405181885, + "step": 741 + }, + { + "epoch": 10.307557885539538, + "grad_norm": 0.4167289435863495, + "learning_rate": 0.0006, + "loss": 4.41792106628418, + "step": 742 + }, + { + "epoch": 10.321537789427698, + "grad_norm": 0.3186971843242645, + "learning_rate": 0.0006, + "loss": 4.435683250427246, + "step": 743 + }, + { + "epoch": 10.33551769331586, + "grad_norm": 0.3077184855937958, + "learning_rate": 0.0006, + "loss": 4.481947898864746, + "step": 744 + }, + { + "epoch": 10.349497597204019, + "grad_norm": 0.26811280846595764, + "learning_rate": 0.0006, + "loss": 4.4339447021484375, + "step": 745 + }, + { + "epoch": 10.36347750109218, + "grad_norm": 0.28448057174682617, + "learning_rate": 0.0006, + "loss": 4.441644668579102, + "step": 746 + }, + { + "epoch": 10.37745740498034, + "grad_norm": 0.30731502175331116, + "learning_rate": 0.0006, + "loss": 4.428773880004883, + "step": 747 + }, + { + "epoch": 10.391437308868502, + "grad_norm": 0.28036001324653625, + "learning_rate": 0.0006, + "loss": 4.4433135986328125, + "step": 748 + }, + { + "epoch": 10.405417212756662, + "grad_norm": 0.2882847189903259, + "learning_rate": 0.0006, + "loss": 4.433401107788086, + "step": 749 + }, + { + "epoch": 10.419397116644824, + "grad_norm": 0.23622776567935944, + "learning_rate": 0.0006, + "loss": 4.444611549377441, + "step": 750 + }, + { + "epoch": 10.433377020532983, + "grad_norm": 0.2306167632341385, + "learning_rate": 0.0006, + "loss": 4.397875785827637, + "step": 751 + }, + { + "epoch": 10.447356924421145, + "grad_norm": 0.22725090384483337, + "learning_rate": 0.0006, + "loss": 4.429759502410889, + "step": 752 + }, + { + "epoch": 10.461336828309305, + "grad_norm": 0.250709593296051, + "learning_rate": 0.0006, + "loss": 4.415618896484375, + "step": 753 + }, + { + "epoch": 10.475316732197467, + "grad_norm": 0.22341276705265045, + "learning_rate": 0.0006, + "loss": 4.389362335205078, + "step": 754 + }, + { + "epoch": 10.489296636085626, + "grad_norm": 0.22595296800136566, + "learning_rate": 0.0006, + "loss": 4.383584022521973, + "step": 755 + }, + { + "epoch": 10.503276539973788, + "grad_norm": 0.24277575314044952, + "learning_rate": 0.0006, + "loss": 4.403777599334717, + "step": 756 + }, + { + "epoch": 10.517256443861948, + "grad_norm": 0.2670708894729614, + "learning_rate": 0.0006, + "loss": 4.398499011993408, + "step": 757 + }, + { + "epoch": 10.53123634775011, + "grad_norm": 0.2640696167945862, + "learning_rate": 0.0006, + "loss": 4.426726818084717, + "step": 758 + }, + { + "epoch": 10.54521625163827, + "grad_norm": 0.2248653769493103, + "learning_rate": 0.0006, + "loss": 4.400103569030762, + "step": 759 + }, + { + "epoch": 10.55919615552643, + "grad_norm": 0.21466240286827087, + "learning_rate": 0.0006, + "loss": 4.404158592224121, + "step": 760 + }, + { + "epoch": 10.57317605941459, + "grad_norm": 0.236923947930336, + "learning_rate": 0.0006, + "loss": 4.37059211730957, + "step": 761 + }, + { + "epoch": 10.587155963302752, + "grad_norm": 0.2515387535095215, + "learning_rate": 0.0006, + "loss": 4.415055274963379, + "step": 762 + }, + { + "epoch": 10.601135867190912, + "grad_norm": 0.23461885750293732, + "learning_rate": 0.0006, + "loss": 4.375036239624023, + "step": 763 + }, + { + "epoch": 10.615115771079074, + "grad_norm": 0.20975761115550995, + "learning_rate": 0.0006, + "loss": 4.3903398513793945, + "step": 764 + }, + { + "epoch": 10.629095674967235, + "grad_norm": 0.19859997928142548, + "learning_rate": 0.0006, + "loss": 4.379380226135254, + "step": 765 + }, + { + "epoch": 10.643075578855395, + "grad_norm": 0.22310325503349304, + "learning_rate": 0.0006, + "loss": 4.382110595703125, + "step": 766 + }, + { + "epoch": 10.657055482743557, + "grad_norm": 0.23940646648406982, + "learning_rate": 0.0006, + "loss": 4.393403053283691, + "step": 767 + }, + { + "epoch": 10.671035386631717, + "grad_norm": 0.2230468988418579, + "learning_rate": 0.0006, + "loss": 4.391970634460449, + "step": 768 + }, + { + "epoch": 10.685015290519878, + "grad_norm": 0.18139775097370148, + "learning_rate": 0.0006, + "loss": 4.399993896484375, + "step": 769 + }, + { + "epoch": 10.698995194408038, + "grad_norm": 0.19936902821063995, + "learning_rate": 0.0006, + "loss": 4.373854160308838, + "step": 770 + }, + { + "epoch": 10.7129750982962, + "grad_norm": 0.22132465243339539, + "learning_rate": 0.0006, + "loss": 4.377530097961426, + "step": 771 + }, + { + "epoch": 10.72695500218436, + "grad_norm": 0.24254944920539856, + "learning_rate": 0.0006, + "loss": 4.398683547973633, + "step": 772 + }, + { + "epoch": 10.740934906072521, + "grad_norm": 0.2666397988796234, + "learning_rate": 0.0006, + "loss": 4.3879899978637695, + "step": 773 + }, + { + "epoch": 10.754914809960681, + "grad_norm": 0.24728631973266602, + "learning_rate": 0.0006, + "loss": 4.356976509094238, + "step": 774 + }, + { + "epoch": 10.768894713848843, + "grad_norm": 0.2612453103065491, + "learning_rate": 0.0006, + "loss": 4.391525745391846, + "step": 775 + }, + { + "epoch": 10.782874617737003, + "grad_norm": 0.24060510098934174, + "learning_rate": 0.0006, + "loss": 4.376985549926758, + "step": 776 + }, + { + "epoch": 10.796854521625164, + "grad_norm": 0.22708238661289215, + "learning_rate": 0.0006, + "loss": 4.368545055389404, + "step": 777 + }, + { + "epoch": 10.810834425513324, + "grad_norm": 0.26931291818618774, + "learning_rate": 0.0006, + "loss": 4.369227409362793, + "step": 778 + }, + { + "epoch": 10.824814329401486, + "grad_norm": 0.265288770198822, + "learning_rate": 0.0006, + "loss": 4.378131866455078, + "step": 779 + }, + { + "epoch": 10.838794233289645, + "grad_norm": 0.3015305697917938, + "learning_rate": 0.0006, + "loss": 4.376267910003662, + "step": 780 + }, + { + "epoch": 10.852774137177807, + "grad_norm": 0.3345746099948883, + "learning_rate": 0.0006, + "loss": 4.3751420974731445, + "step": 781 + }, + { + "epoch": 10.866754041065967, + "grad_norm": 0.32446005940437317, + "learning_rate": 0.0006, + "loss": 4.370899200439453, + "step": 782 + }, + { + "epoch": 10.880733944954128, + "grad_norm": 0.27070069313049316, + "learning_rate": 0.0006, + "loss": 4.391958236694336, + "step": 783 + }, + { + "epoch": 10.89471384884229, + "grad_norm": 0.25584667921066284, + "learning_rate": 0.0006, + "loss": 4.407493591308594, + "step": 784 + }, + { + "epoch": 10.90869375273045, + "grad_norm": 0.2710244655609131, + "learning_rate": 0.0006, + "loss": 4.374400615692139, + "step": 785 + }, + { + "epoch": 10.922673656618612, + "grad_norm": 0.32413622736930847, + "learning_rate": 0.0006, + "loss": 4.379607200622559, + "step": 786 + }, + { + "epoch": 10.936653560506771, + "grad_norm": 0.3253782391548157, + "learning_rate": 0.0006, + "loss": 4.376441955566406, + "step": 787 + }, + { + "epoch": 10.950633464394933, + "grad_norm": 0.30534613132476807, + "learning_rate": 0.0006, + "loss": 4.382739067077637, + "step": 788 + }, + { + "epoch": 10.964613368283093, + "grad_norm": 0.35726621747016907, + "learning_rate": 0.0006, + "loss": 4.3765869140625, + "step": 789 + }, + { + "epoch": 10.978593272171254, + "grad_norm": 0.32763028144836426, + "learning_rate": 0.0006, + "loss": 4.391537189483643, + "step": 790 + }, + { + "epoch": 10.992573176059414, + "grad_norm": 0.31811195611953735, + "learning_rate": 0.0006, + "loss": 4.371829032897949, + "step": 791 + }, + { + "epoch": 11.0, + "grad_norm": 0.37317267060279846, + "learning_rate": 0.0006, + "loss": 4.381916522979736, + "step": 792 + }, + { + "epoch": 11.0, + "eval_loss": 4.588687896728516, + "eval_runtime": 44.8041, + "eval_samples_per_second": 54.504, + "eval_steps_per_second": 3.415, + "step": 792 + }, + { + "epoch": 11.013979903888162, + "grad_norm": 0.37882938981056213, + "learning_rate": 0.0006, + "loss": 4.3463640213012695, + "step": 793 + }, + { + "epoch": 11.027959807776321, + "grad_norm": 0.34719496965408325, + "learning_rate": 0.0006, + "loss": 4.329861640930176, + "step": 794 + }, + { + "epoch": 11.041939711664483, + "grad_norm": 0.36161214113235474, + "learning_rate": 0.0006, + "loss": 4.3287835121154785, + "step": 795 + }, + { + "epoch": 11.055919615552643, + "grad_norm": 0.3743649125099182, + "learning_rate": 0.0006, + "loss": 4.334251403808594, + "step": 796 + }, + { + "epoch": 11.069899519440805, + "grad_norm": 0.32266443967819214, + "learning_rate": 0.0006, + "loss": 4.364782810211182, + "step": 797 + }, + { + "epoch": 11.083879423328964, + "grad_norm": 0.27460047602653503, + "learning_rate": 0.0006, + "loss": 4.348380088806152, + "step": 798 + }, + { + "epoch": 11.097859327217126, + "grad_norm": 0.30498892068862915, + "learning_rate": 0.0006, + "loss": 4.347856521606445, + "step": 799 + }, + { + "epoch": 11.111839231105286, + "grad_norm": 0.29740771651268005, + "learning_rate": 0.0006, + "loss": 4.343471050262451, + "step": 800 + }, + { + "epoch": 11.125819134993447, + "grad_norm": 0.3004681169986725, + "learning_rate": 0.0006, + "loss": 4.337590217590332, + "step": 801 + }, + { + "epoch": 11.139799038881607, + "grad_norm": 0.3000192642211914, + "learning_rate": 0.0006, + "loss": 4.349949836730957, + "step": 802 + }, + { + "epoch": 11.153778942769769, + "grad_norm": 0.27461889386177063, + "learning_rate": 0.0006, + "loss": 4.338934898376465, + "step": 803 + }, + { + "epoch": 11.167758846657929, + "grad_norm": 0.2856169641017914, + "learning_rate": 0.0006, + "loss": 4.320754051208496, + "step": 804 + }, + { + "epoch": 11.18173875054609, + "grad_norm": 0.29822713136672974, + "learning_rate": 0.0006, + "loss": 4.357949733734131, + "step": 805 + }, + { + "epoch": 11.19571865443425, + "grad_norm": 0.34061339497566223, + "learning_rate": 0.0006, + "loss": 4.327282905578613, + "step": 806 + }, + { + "epoch": 11.209698558322412, + "grad_norm": 0.3379063010215759, + "learning_rate": 0.0006, + "loss": 4.355471611022949, + "step": 807 + }, + { + "epoch": 11.223678462210572, + "grad_norm": 0.2859216630458832, + "learning_rate": 0.0006, + "loss": 4.352344989776611, + "step": 808 + }, + { + "epoch": 11.237658366098733, + "grad_norm": 0.29522669315338135, + "learning_rate": 0.0006, + "loss": 4.349186897277832, + "step": 809 + }, + { + "epoch": 11.251638269986893, + "grad_norm": 0.273798406124115, + "learning_rate": 0.0006, + "loss": 4.342379570007324, + "step": 810 + }, + { + "epoch": 11.265618173875055, + "grad_norm": 0.25298982858657837, + "learning_rate": 0.0006, + "loss": 4.358835220336914, + "step": 811 + }, + { + "epoch": 11.279598077763215, + "grad_norm": 0.2170463651418686, + "learning_rate": 0.0006, + "loss": 4.3422017097473145, + "step": 812 + }, + { + "epoch": 11.293577981651376, + "grad_norm": 0.24855731427669525, + "learning_rate": 0.0006, + "loss": 4.322849750518799, + "step": 813 + }, + { + "epoch": 11.307557885539538, + "grad_norm": 0.22564345598220825, + "learning_rate": 0.0006, + "loss": 4.316864967346191, + "step": 814 + }, + { + "epoch": 11.321537789427698, + "grad_norm": 0.21532197296619415, + "learning_rate": 0.0006, + "loss": 4.326743125915527, + "step": 815 + }, + { + "epoch": 11.33551769331586, + "grad_norm": 0.20514146983623505, + "learning_rate": 0.0006, + "loss": 4.326531887054443, + "step": 816 + }, + { + "epoch": 11.349497597204019, + "grad_norm": 0.19035090506076813, + "learning_rate": 0.0006, + "loss": 4.318154335021973, + "step": 817 + }, + { + "epoch": 11.36347750109218, + "grad_norm": 0.17889662086963654, + "learning_rate": 0.0006, + "loss": 4.35410213470459, + "step": 818 + }, + { + "epoch": 11.37745740498034, + "grad_norm": 0.20564863085746765, + "learning_rate": 0.0006, + "loss": 4.350226879119873, + "step": 819 + }, + { + "epoch": 11.391437308868502, + "grad_norm": 0.2412603348493576, + "learning_rate": 0.0006, + "loss": 4.325137138366699, + "step": 820 + }, + { + "epoch": 11.405417212756662, + "grad_norm": 0.2603496015071869, + "learning_rate": 0.0006, + "loss": 4.335752487182617, + "step": 821 + }, + { + "epoch": 11.419397116644824, + "grad_norm": 0.2968119978904724, + "learning_rate": 0.0006, + "loss": 4.3317670822143555, + "step": 822 + }, + { + "epoch": 11.433377020532983, + "grad_norm": 0.3280937969684601, + "learning_rate": 0.0006, + "loss": 4.322279453277588, + "step": 823 + }, + { + "epoch": 11.447356924421145, + "grad_norm": 0.3598847985267639, + "learning_rate": 0.0006, + "loss": 4.312255859375, + "step": 824 + }, + { + "epoch": 11.461336828309305, + "grad_norm": 0.3996485471725464, + "learning_rate": 0.0006, + "loss": 4.327103614807129, + "step": 825 + }, + { + "epoch": 11.475316732197467, + "grad_norm": 0.4352041780948639, + "learning_rate": 0.0006, + "loss": 4.368639945983887, + "step": 826 + }, + { + "epoch": 11.489296636085626, + "grad_norm": 0.4451918601989746, + "learning_rate": 0.0006, + "loss": 4.335113048553467, + "step": 827 + }, + { + "epoch": 11.503276539973788, + "grad_norm": 0.4403933584690094, + "learning_rate": 0.0006, + "loss": 4.369889259338379, + "step": 828 + }, + { + "epoch": 11.517256443861948, + "grad_norm": 0.34862443804740906, + "learning_rate": 0.0006, + "loss": 4.316292762756348, + "step": 829 + }, + { + "epoch": 11.53123634775011, + "grad_norm": 0.3240634500980377, + "learning_rate": 0.0006, + "loss": 4.328078746795654, + "step": 830 + }, + { + "epoch": 11.54521625163827, + "grad_norm": 0.2445751428604126, + "learning_rate": 0.0006, + "loss": 4.291940689086914, + "step": 831 + }, + { + "epoch": 11.55919615552643, + "grad_norm": 0.24376554787158966, + "learning_rate": 0.0006, + "loss": 4.339217662811279, + "step": 832 + }, + { + "epoch": 11.57317605941459, + "grad_norm": 0.22419725358486176, + "learning_rate": 0.0006, + "loss": 4.2887468338012695, + "step": 833 + }, + { + "epoch": 11.587155963302752, + "grad_norm": 0.22318261861801147, + "learning_rate": 0.0006, + "loss": 4.298492908477783, + "step": 834 + }, + { + "epoch": 11.601135867190912, + "grad_norm": 0.2357342392206192, + "learning_rate": 0.0006, + "loss": 4.328692436218262, + "step": 835 + }, + { + "epoch": 11.615115771079074, + "grad_norm": 0.25450602173805237, + "learning_rate": 0.0006, + "loss": 4.360058784484863, + "step": 836 + }, + { + "epoch": 11.629095674967235, + "grad_norm": 0.24540965259075165, + "learning_rate": 0.0006, + "loss": 4.311890602111816, + "step": 837 + }, + { + "epoch": 11.643075578855395, + "grad_norm": 0.2535638213157654, + "learning_rate": 0.0006, + "loss": 4.327730178833008, + "step": 838 + }, + { + "epoch": 11.657055482743557, + "grad_norm": 0.23063556849956512, + "learning_rate": 0.0006, + "loss": 4.303299903869629, + "step": 839 + }, + { + "epoch": 11.671035386631717, + "grad_norm": 0.21813632547855377, + "learning_rate": 0.0006, + "loss": 4.315352439880371, + "step": 840 + }, + { + "epoch": 11.685015290519878, + "grad_norm": 0.2170359194278717, + "learning_rate": 0.0006, + "loss": 4.278632164001465, + "step": 841 + }, + { + "epoch": 11.698995194408038, + "grad_norm": 0.21059377491474152, + "learning_rate": 0.0006, + "loss": 4.306049346923828, + "step": 842 + }, + { + "epoch": 11.7129750982962, + "grad_norm": 0.19872888922691345, + "learning_rate": 0.0006, + "loss": 4.3091535568237305, + "step": 843 + }, + { + "epoch": 11.72695500218436, + "grad_norm": 0.20059862732887268, + "learning_rate": 0.0006, + "loss": 4.2884063720703125, + "step": 844 + }, + { + "epoch": 11.740934906072521, + "grad_norm": 0.19952483475208282, + "learning_rate": 0.0006, + "loss": 4.293610572814941, + "step": 845 + }, + { + "epoch": 11.754914809960681, + "grad_norm": 0.19794537127017975, + "learning_rate": 0.0006, + "loss": 4.288822174072266, + "step": 846 + }, + { + "epoch": 11.768894713848843, + "grad_norm": 0.213914692401886, + "learning_rate": 0.0006, + "loss": 4.320849418640137, + "step": 847 + }, + { + "epoch": 11.782874617737003, + "grad_norm": 0.18500955402851105, + "learning_rate": 0.0006, + "loss": 4.29300594329834, + "step": 848 + }, + { + "epoch": 11.796854521625164, + "grad_norm": 0.19446656107902527, + "learning_rate": 0.0006, + "loss": 4.3079352378845215, + "step": 849 + }, + { + "epoch": 11.810834425513324, + "grad_norm": 0.22191768884658813, + "learning_rate": 0.0006, + "loss": 4.295967102050781, + "step": 850 + }, + { + "epoch": 11.824814329401486, + "grad_norm": 0.20748084783554077, + "learning_rate": 0.0006, + "loss": 4.332365989685059, + "step": 851 + }, + { + "epoch": 11.838794233289645, + "grad_norm": 0.20993955433368683, + "learning_rate": 0.0006, + "loss": 4.294618129730225, + "step": 852 + }, + { + "epoch": 11.852774137177807, + "grad_norm": 0.23506952822208405, + "learning_rate": 0.0006, + "loss": 4.313426971435547, + "step": 853 + }, + { + "epoch": 11.866754041065967, + "grad_norm": 0.2379443347454071, + "learning_rate": 0.0006, + "loss": 4.297664642333984, + "step": 854 + }, + { + "epoch": 11.880733944954128, + "grad_norm": 0.2127852737903595, + "learning_rate": 0.0006, + "loss": 4.2807698249816895, + "step": 855 + }, + { + "epoch": 11.89471384884229, + "grad_norm": 0.2125532180070877, + "learning_rate": 0.0006, + "loss": 4.310990333557129, + "step": 856 + }, + { + "epoch": 11.90869375273045, + "grad_norm": 0.1996062994003296, + "learning_rate": 0.0006, + "loss": 4.253237724304199, + "step": 857 + }, + { + "epoch": 11.922673656618612, + "grad_norm": 0.20747603476047516, + "learning_rate": 0.0006, + "loss": 4.294193267822266, + "step": 858 + }, + { + "epoch": 11.936653560506771, + "grad_norm": 0.24082425236701965, + "learning_rate": 0.0006, + "loss": 4.269967079162598, + "step": 859 + }, + { + "epoch": 11.950633464394933, + "grad_norm": 0.28993573784828186, + "learning_rate": 0.0006, + "loss": 4.294550895690918, + "step": 860 + }, + { + "epoch": 11.964613368283093, + "grad_norm": 0.29576948285102844, + "learning_rate": 0.0006, + "loss": 4.3188252449035645, + "step": 861 + }, + { + "epoch": 11.978593272171254, + "grad_norm": 0.2754935026168823, + "learning_rate": 0.0006, + "loss": 4.312817573547363, + "step": 862 + }, + { + "epoch": 11.992573176059414, + "grad_norm": 0.3062523305416107, + "learning_rate": 0.0006, + "loss": 4.288214683532715, + "step": 863 + }, + { + "epoch": 12.0, + "grad_norm": 0.3367644250392914, + "learning_rate": 0.0006, + "loss": 4.314888954162598, + "step": 864 + }, + { + "epoch": 12.0, + "eval_loss": 4.516861438751221, + "eval_runtime": 44.2584, + "eval_samples_per_second": 55.176, + "eval_steps_per_second": 3.457, + "step": 864 + }, + { + "epoch": 12.013979903888162, + "grad_norm": 0.2976512014865875, + "learning_rate": 0.0006, + "loss": 4.278797149658203, + "step": 865 + }, + { + "epoch": 12.027959807776321, + "grad_norm": 0.32217127084732056, + "learning_rate": 0.0006, + "loss": 4.2823615074157715, + "step": 866 + }, + { + "epoch": 12.041939711664483, + "grad_norm": 0.31538400053977966, + "learning_rate": 0.0006, + "loss": 4.252805709838867, + "step": 867 + }, + { + "epoch": 12.055919615552643, + "grad_norm": 0.3501375913619995, + "learning_rate": 0.0006, + "loss": 4.276501655578613, + "step": 868 + }, + { + "epoch": 12.069899519440805, + "grad_norm": 0.3452056646347046, + "learning_rate": 0.0006, + "loss": 4.275739669799805, + "step": 869 + }, + { + "epoch": 12.083879423328964, + "grad_norm": 0.36963316798210144, + "learning_rate": 0.0006, + "loss": 4.3215227127075195, + "step": 870 + }, + { + "epoch": 12.097859327217126, + "grad_norm": 0.41605016589164734, + "learning_rate": 0.0006, + "loss": 4.28739595413208, + "step": 871 + }, + { + "epoch": 12.111839231105286, + "grad_norm": 0.37700653076171875, + "learning_rate": 0.0006, + "loss": 4.291154861450195, + "step": 872 + }, + { + "epoch": 12.125819134993447, + "grad_norm": 0.3194253444671631, + "learning_rate": 0.0006, + "loss": 4.259326934814453, + "step": 873 + }, + { + "epoch": 12.139799038881607, + "grad_norm": 0.31770631670951843, + "learning_rate": 0.0006, + "loss": 4.270082473754883, + "step": 874 + }, + { + "epoch": 12.153778942769769, + "grad_norm": 0.3748120069503784, + "learning_rate": 0.0006, + "loss": 4.2727274894714355, + "step": 875 + }, + { + "epoch": 12.167758846657929, + "grad_norm": 0.3821348547935486, + "learning_rate": 0.0006, + "loss": 4.2848286628723145, + "step": 876 + }, + { + "epoch": 12.18173875054609, + "grad_norm": 0.31894201040267944, + "learning_rate": 0.0006, + "loss": 4.289551258087158, + "step": 877 + }, + { + "epoch": 12.19571865443425, + "grad_norm": 0.2695826292037964, + "learning_rate": 0.0006, + "loss": 4.2797346115112305, + "step": 878 + }, + { + "epoch": 12.209698558322412, + "grad_norm": 0.23966269195079803, + "learning_rate": 0.0006, + "loss": 4.24021577835083, + "step": 879 + }, + { + "epoch": 12.223678462210572, + "grad_norm": 0.24342599511146545, + "learning_rate": 0.0006, + "loss": 4.277721881866455, + "step": 880 + }, + { + "epoch": 12.237658366098733, + "grad_norm": 0.2522958815097809, + "learning_rate": 0.0006, + "loss": 4.263946533203125, + "step": 881 + }, + { + "epoch": 12.251638269986893, + "grad_norm": 0.2708299458026886, + "learning_rate": 0.0006, + "loss": 4.274540901184082, + "step": 882 + }, + { + "epoch": 12.265618173875055, + "grad_norm": 0.2978788912296295, + "learning_rate": 0.0006, + "loss": 4.2674970626831055, + "step": 883 + }, + { + "epoch": 12.279598077763215, + "grad_norm": 0.2898774743080139, + "learning_rate": 0.0006, + "loss": 4.235060691833496, + "step": 884 + }, + { + "epoch": 12.293577981651376, + "grad_norm": 0.27941837906837463, + "learning_rate": 0.0006, + "loss": 4.284140586853027, + "step": 885 + }, + { + "epoch": 12.307557885539538, + "grad_norm": 0.25050559639930725, + "learning_rate": 0.0006, + "loss": 4.270134925842285, + "step": 886 + }, + { + "epoch": 12.321537789427698, + "grad_norm": 0.21867156028747559, + "learning_rate": 0.0006, + "loss": 4.241571426391602, + "step": 887 + }, + { + "epoch": 12.33551769331586, + "grad_norm": 0.24735847115516663, + "learning_rate": 0.0006, + "loss": 4.253087997436523, + "step": 888 + }, + { + "epoch": 12.349497597204019, + "grad_norm": 0.23069104552268982, + "learning_rate": 0.0006, + "loss": 4.258606910705566, + "step": 889 + }, + { + "epoch": 12.36347750109218, + "grad_norm": 0.2594369947910309, + "learning_rate": 0.0006, + "loss": 4.307351112365723, + "step": 890 + }, + { + "epoch": 12.37745740498034, + "grad_norm": 0.25349098443984985, + "learning_rate": 0.0006, + "loss": 4.264268398284912, + "step": 891 + }, + { + "epoch": 12.391437308868502, + "grad_norm": 0.2550840675830841, + "learning_rate": 0.0006, + "loss": 4.247092247009277, + "step": 892 + }, + { + "epoch": 12.405417212756662, + "grad_norm": 0.2107602059841156, + "learning_rate": 0.0006, + "loss": 4.240527153015137, + "step": 893 + }, + { + "epoch": 12.419397116644824, + "grad_norm": 0.2025548368692398, + "learning_rate": 0.0006, + "loss": 4.244686126708984, + "step": 894 + }, + { + "epoch": 12.433377020532983, + "grad_norm": 0.22061701118946075, + "learning_rate": 0.0006, + "loss": 4.233231544494629, + "step": 895 + }, + { + "epoch": 12.447356924421145, + "grad_norm": 0.19503085315227509, + "learning_rate": 0.0006, + "loss": 4.23851203918457, + "step": 896 + }, + { + "epoch": 12.461336828309305, + "grad_norm": 0.19313643872737885, + "learning_rate": 0.0006, + "loss": 4.190886497497559, + "step": 897 + }, + { + "epoch": 12.475316732197467, + "grad_norm": 0.21094176173210144, + "learning_rate": 0.0006, + "loss": 4.277888298034668, + "step": 898 + }, + { + "epoch": 12.489296636085626, + "grad_norm": 0.1980651170015335, + "learning_rate": 0.0006, + "loss": 4.251066207885742, + "step": 899 + }, + { + "epoch": 12.503276539973788, + "grad_norm": 0.179737389087677, + "learning_rate": 0.0006, + "loss": 4.194703102111816, + "step": 900 + }, + { + "epoch": 12.517256443861948, + "grad_norm": 0.19069281220436096, + "learning_rate": 0.0006, + "loss": 4.242412567138672, + "step": 901 + }, + { + "epoch": 12.53123634775011, + "grad_norm": 0.191154345870018, + "learning_rate": 0.0006, + "loss": 4.2432780265808105, + "step": 902 + }, + { + "epoch": 12.54521625163827, + "grad_norm": 0.19760103523731232, + "learning_rate": 0.0006, + "loss": 4.23294734954834, + "step": 903 + }, + { + "epoch": 12.55919615552643, + "grad_norm": 0.19982324540615082, + "learning_rate": 0.0006, + "loss": 4.249764442443848, + "step": 904 + }, + { + "epoch": 12.57317605941459, + "grad_norm": 0.1986108422279358, + "learning_rate": 0.0006, + "loss": 4.213435649871826, + "step": 905 + }, + { + "epoch": 12.587155963302752, + "grad_norm": 0.19727319478988647, + "learning_rate": 0.0006, + "loss": 4.247962951660156, + "step": 906 + }, + { + "epoch": 12.601135867190912, + "grad_norm": 0.23404482007026672, + "learning_rate": 0.0006, + "loss": 4.237396240234375, + "step": 907 + }, + { + "epoch": 12.615115771079074, + "grad_norm": 0.21136441826820374, + "learning_rate": 0.0006, + "loss": 4.236040115356445, + "step": 908 + }, + { + "epoch": 12.629095674967235, + "grad_norm": 0.2209048718214035, + "learning_rate": 0.0006, + "loss": 4.234212875366211, + "step": 909 + }, + { + "epoch": 12.643075578855395, + "grad_norm": 0.22120307385921478, + "learning_rate": 0.0006, + "loss": 4.2711076736450195, + "step": 910 + }, + { + "epoch": 12.657055482743557, + "grad_norm": 0.22733066976070404, + "learning_rate": 0.0006, + "loss": 4.231651306152344, + "step": 911 + }, + { + "epoch": 12.671035386631717, + "grad_norm": 0.2435602843761444, + "learning_rate": 0.0006, + "loss": 4.249372482299805, + "step": 912 + }, + { + "epoch": 12.685015290519878, + "grad_norm": 0.28881654143333435, + "learning_rate": 0.0006, + "loss": 4.2626051902771, + "step": 913 + }, + { + "epoch": 12.698995194408038, + "grad_norm": 0.3211199641227722, + "learning_rate": 0.0006, + "loss": 4.254220485687256, + "step": 914 + }, + { + "epoch": 12.7129750982962, + "grad_norm": 0.3118100166320801, + "learning_rate": 0.0006, + "loss": 4.233747959136963, + "step": 915 + }, + { + "epoch": 12.72695500218436, + "grad_norm": 0.33411866426467896, + "learning_rate": 0.0006, + "loss": 4.270386219024658, + "step": 916 + }, + { + "epoch": 12.740934906072521, + "grad_norm": 0.2968253195285797, + "learning_rate": 0.0006, + "loss": 4.242254257202148, + "step": 917 + }, + { + "epoch": 12.754914809960681, + "grad_norm": 0.2959132194519043, + "learning_rate": 0.0006, + "loss": 4.232100486755371, + "step": 918 + }, + { + "epoch": 12.768894713848843, + "grad_norm": 0.2729283273220062, + "learning_rate": 0.0006, + "loss": 4.233869552612305, + "step": 919 + }, + { + "epoch": 12.782874617737003, + "grad_norm": 0.2669033408164978, + "learning_rate": 0.0006, + "loss": 4.261008262634277, + "step": 920 + }, + { + "epoch": 12.796854521625164, + "grad_norm": 0.2738507091999054, + "learning_rate": 0.0006, + "loss": 4.2286763191223145, + "step": 921 + }, + { + "epoch": 12.810834425513324, + "grad_norm": 0.29105183482170105, + "learning_rate": 0.0006, + "loss": 4.281410217285156, + "step": 922 + }, + { + "epoch": 12.824814329401486, + "grad_norm": 0.31330201029777527, + "learning_rate": 0.0006, + "loss": 4.264181613922119, + "step": 923 + }, + { + "epoch": 12.838794233289645, + "grad_norm": 0.31324025988578796, + "learning_rate": 0.0006, + "loss": 4.250385284423828, + "step": 924 + }, + { + "epoch": 12.852774137177807, + "grad_norm": 0.2727925181388855, + "learning_rate": 0.0006, + "loss": 4.24821138381958, + "step": 925 + }, + { + "epoch": 12.866754041065967, + "grad_norm": 0.27350082993507385, + "learning_rate": 0.0006, + "loss": 4.230215072631836, + "step": 926 + }, + { + "epoch": 12.880733944954128, + "grad_norm": 0.2269950658082962, + "learning_rate": 0.0006, + "loss": 4.210305213928223, + "step": 927 + }, + { + "epoch": 12.89471384884229, + "grad_norm": 0.24667619168758392, + "learning_rate": 0.0006, + "loss": 4.239969253540039, + "step": 928 + }, + { + "epoch": 12.90869375273045, + "grad_norm": 0.22510501742362976, + "learning_rate": 0.0006, + "loss": 4.192750930786133, + "step": 929 + }, + { + "epoch": 12.922673656618612, + "grad_norm": 0.22887611389160156, + "learning_rate": 0.0006, + "loss": 4.264463424682617, + "step": 930 + }, + { + "epoch": 12.936653560506771, + "grad_norm": 0.22195978462696075, + "learning_rate": 0.0006, + "loss": 4.205256938934326, + "step": 931 + }, + { + "epoch": 12.950633464394933, + "grad_norm": 0.23184578120708466, + "learning_rate": 0.0006, + "loss": 4.214578628540039, + "step": 932 + }, + { + "epoch": 12.964613368283093, + "grad_norm": 0.2186676561832428, + "learning_rate": 0.0006, + "loss": 4.227711200714111, + "step": 933 + }, + { + "epoch": 12.978593272171254, + "grad_norm": 0.2160426527261734, + "learning_rate": 0.0006, + "loss": 4.221796989440918, + "step": 934 + }, + { + "epoch": 12.992573176059414, + "grad_norm": 0.21562792360782623, + "learning_rate": 0.0006, + "loss": 4.21957540512085, + "step": 935 + }, + { + "epoch": 13.0, + "grad_norm": 0.22538058459758759, + "learning_rate": 0.0006, + "loss": 4.2353973388671875, + "step": 936 + }, + { + "epoch": 13.0, + "eval_loss": 4.426600933074951, + "eval_runtime": 44.8138, + "eval_samples_per_second": 54.492, + "eval_steps_per_second": 3.414, + "step": 936 + }, + { + "epoch": 13.013979903888162, + "grad_norm": 0.24888049066066742, + "learning_rate": 0.0006, + "loss": 4.18648624420166, + "step": 937 + }, + { + "epoch": 13.027959807776321, + "grad_norm": 0.28330180048942566, + "learning_rate": 0.0006, + "loss": 4.188892364501953, + "step": 938 + }, + { + "epoch": 13.041939711664483, + "grad_norm": 0.31152188777923584, + "learning_rate": 0.0006, + "loss": 4.2053399085998535, + "step": 939 + }, + { + "epoch": 13.055919615552643, + "grad_norm": 0.2842433452606201, + "learning_rate": 0.0006, + "loss": 4.191902160644531, + "step": 940 + }, + { + "epoch": 13.069899519440805, + "grad_norm": 0.23664532601833344, + "learning_rate": 0.0006, + "loss": 4.1831865310668945, + "step": 941 + }, + { + "epoch": 13.083879423328964, + "grad_norm": 0.24204140901565552, + "learning_rate": 0.0006, + "loss": 4.202641487121582, + "step": 942 + }, + { + "epoch": 13.097859327217126, + "grad_norm": 0.235311359167099, + "learning_rate": 0.0006, + "loss": 4.174511909484863, + "step": 943 + }, + { + "epoch": 13.111839231105286, + "grad_norm": 0.27127715945243835, + "learning_rate": 0.0006, + "loss": 4.201844215393066, + "step": 944 + }, + { + "epoch": 13.125819134993447, + "grad_norm": 0.2722373604774475, + "learning_rate": 0.0006, + "loss": 4.157383918762207, + "step": 945 + }, + { + "epoch": 13.139799038881607, + "grad_norm": 0.25446659326553345, + "learning_rate": 0.0006, + "loss": 4.221236228942871, + "step": 946 + }, + { + "epoch": 13.153778942769769, + "grad_norm": 0.273017019033432, + "learning_rate": 0.0006, + "loss": 4.195512771606445, + "step": 947 + }, + { + "epoch": 13.167758846657929, + "grad_norm": 0.24766312539577484, + "learning_rate": 0.0006, + "loss": 4.220959663391113, + "step": 948 + }, + { + "epoch": 13.18173875054609, + "grad_norm": 0.24636317789554596, + "learning_rate": 0.0006, + "loss": 4.214302062988281, + "step": 949 + }, + { + "epoch": 13.19571865443425, + "grad_norm": 0.3177756667137146, + "learning_rate": 0.0006, + "loss": 4.213500022888184, + "step": 950 + }, + { + "epoch": 13.209698558322412, + "grad_norm": 0.44579195976257324, + "learning_rate": 0.0006, + "loss": 4.227644920349121, + "step": 951 + }, + { + "epoch": 13.223678462210572, + "grad_norm": 0.4217414855957031, + "learning_rate": 0.0006, + "loss": 4.180937767028809, + "step": 952 + }, + { + "epoch": 13.237658366098733, + "grad_norm": 0.30148059129714966, + "learning_rate": 0.0006, + "loss": 4.207760810852051, + "step": 953 + }, + { + "epoch": 13.251638269986893, + "grad_norm": 0.3192492127418518, + "learning_rate": 0.0006, + "loss": 4.197999000549316, + "step": 954 + }, + { + "epoch": 13.265618173875055, + "grad_norm": 0.37334588170051575, + "learning_rate": 0.0006, + "loss": 4.208001136779785, + "step": 955 + }, + { + "epoch": 13.279598077763215, + "grad_norm": 0.4059637784957886, + "learning_rate": 0.0006, + "loss": 4.211322784423828, + "step": 956 + }, + { + "epoch": 13.293577981651376, + "grad_norm": 0.3389599323272705, + "learning_rate": 0.0006, + "loss": 4.204404354095459, + "step": 957 + }, + { + "epoch": 13.307557885539538, + "grad_norm": 0.2675766050815582, + "learning_rate": 0.0006, + "loss": 4.245941162109375, + "step": 958 + }, + { + "epoch": 13.321537789427698, + "grad_norm": 0.2730264365673065, + "learning_rate": 0.0006, + "loss": 4.2221221923828125, + "step": 959 + }, + { + "epoch": 13.33551769331586, + "grad_norm": 0.26458224654197693, + "learning_rate": 0.0006, + "loss": 4.205596923828125, + "step": 960 + }, + { + "epoch": 13.349497597204019, + "grad_norm": 0.2872551381587982, + "learning_rate": 0.0006, + "loss": 4.196977615356445, + "step": 961 + }, + { + "epoch": 13.36347750109218, + "grad_norm": 0.2954796850681305, + "learning_rate": 0.0006, + "loss": 4.202796936035156, + "step": 962 + }, + { + "epoch": 13.37745740498034, + "grad_norm": 0.2619425654411316, + "learning_rate": 0.0006, + "loss": 4.196845054626465, + "step": 963 + }, + { + "epoch": 13.391437308868502, + "grad_norm": 0.30088478326797485, + "learning_rate": 0.0006, + "loss": 4.219697952270508, + "step": 964 + }, + { + "epoch": 13.405417212756662, + "grad_norm": 0.30388689041137695, + "learning_rate": 0.0006, + "loss": 4.187566757202148, + "step": 965 + }, + { + "epoch": 13.419397116644824, + "grad_norm": 0.27918127179145813, + "learning_rate": 0.0006, + "loss": 4.223600387573242, + "step": 966 + }, + { + "epoch": 13.433377020532983, + "grad_norm": 0.27634528279304504, + "learning_rate": 0.0006, + "loss": 4.165332317352295, + "step": 967 + }, + { + "epoch": 13.447356924421145, + "grad_norm": 0.28830021619796753, + "learning_rate": 0.0006, + "loss": 4.204029560089111, + "step": 968 + }, + { + "epoch": 13.461336828309305, + "grad_norm": 0.29220864176750183, + "learning_rate": 0.0006, + "loss": 4.218057155609131, + "step": 969 + }, + { + "epoch": 13.475316732197467, + "grad_norm": 0.3089624345302582, + "learning_rate": 0.0006, + "loss": 4.200654983520508, + "step": 970 + }, + { + "epoch": 13.489296636085626, + "grad_norm": 0.36479851603507996, + "learning_rate": 0.0006, + "loss": 4.182811737060547, + "step": 971 + }, + { + "epoch": 13.503276539973788, + "grad_norm": 0.37561097741127014, + "learning_rate": 0.0006, + "loss": 4.190266132354736, + "step": 972 + }, + { + "epoch": 13.517256443861948, + "grad_norm": 0.3263583183288574, + "learning_rate": 0.0006, + "loss": 4.214815616607666, + "step": 973 + }, + { + "epoch": 13.53123634775011, + "grad_norm": 0.21552999317646027, + "learning_rate": 0.0006, + "loss": 4.171380043029785, + "step": 974 + }, + { + "epoch": 13.54521625163827, + "grad_norm": 0.247328519821167, + "learning_rate": 0.0006, + "loss": 4.175377368927002, + "step": 975 + }, + { + "epoch": 13.55919615552643, + "grad_norm": 0.23740540444850922, + "learning_rate": 0.0006, + "loss": 4.212357997894287, + "step": 976 + }, + { + "epoch": 13.57317605941459, + "grad_norm": 0.21533876657485962, + "learning_rate": 0.0006, + "loss": 4.203285217285156, + "step": 977 + }, + { + "epoch": 13.587155963302752, + "grad_norm": 0.21462024748325348, + "learning_rate": 0.0006, + "loss": 4.178012371063232, + "step": 978 + }, + { + "epoch": 13.601135867190912, + "grad_norm": 0.2279169261455536, + "learning_rate": 0.0006, + "loss": 4.193912982940674, + "step": 979 + }, + { + "epoch": 13.615115771079074, + "grad_norm": 0.2202417552471161, + "learning_rate": 0.0006, + "loss": 4.167629718780518, + "step": 980 + }, + { + "epoch": 13.629095674967235, + "grad_norm": 0.20586472749710083, + "learning_rate": 0.0006, + "loss": 4.159290313720703, + "step": 981 + }, + { + "epoch": 13.643075578855395, + "grad_norm": 0.20200690627098083, + "learning_rate": 0.0006, + "loss": 4.210315227508545, + "step": 982 + }, + { + "epoch": 13.657055482743557, + "grad_norm": 0.21710257232189178, + "learning_rate": 0.0006, + "loss": 4.21730375289917, + "step": 983 + }, + { + "epoch": 13.671035386631717, + "grad_norm": 0.22058045864105225, + "learning_rate": 0.0006, + "loss": 4.1996073722839355, + "step": 984 + }, + { + "epoch": 13.685015290519878, + "grad_norm": 0.21549592912197113, + "learning_rate": 0.0006, + "loss": 4.209203720092773, + "step": 985 + }, + { + "epoch": 13.698995194408038, + "grad_norm": 0.22274717688560486, + "learning_rate": 0.0006, + "loss": 4.220660209655762, + "step": 986 + }, + { + "epoch": 13.7129750982962, + "grad_norm": 0.22791637480258942, + "learning_rate": 0.0006, + "loss": 4.158679962158203, + "step": 987 + }, + { + "epoch": 13.72695500218436, + "grad_norm": 0.216218963265419, + "learning_rate": 0.0006, + "loss": 4.188124656677246, + "step": 988 + }, + { + "epoch": 13.740934906072521, + "grad_norm": 0.19149383902549744, + "learning_rate": 0.0006, + "loss": 4.181729316711426, + "step": 989 + }, + { + "epoch": 13.754914809960681, + "grad_norm": 0.18964019417762756, + "learning_rate": 0.0006, + "loss": 4.184767246246338, + "step": 990 + }, + { + "epoch": 13.768894713848843, + "grad_norm": 0.1778000295162201, + "learning_rate": 0.0006, + "loss": 4.1802263259887695, + "step": 991 + }, + { + "epoch": 13.782874617737003, + "grad_norm": 0.18277616798877716, + "learning_rate": 0.0006, + "loss": 4.1657867431640625, + "step": 992 + }, + { + "epoch": 13.796854521625164, + "grad_norm": 0.18610034883022308, + "learning_rate": 0.0006, + "loss": 4.156744956970215, + "step": 993 + }, + { + "epoch": 13.810834425513324, + "grad_norm": 0.19332963228225708, + "learning_rate": 0.0006, + "loss": 4.143558502197266, + "step": 994 + }, + { + "epoch": 13.824814329401486, + "grad_norm": 0.19758112728595734, + "learning_rate": 0.0006, + "loss": 4.195793151855469, + "step": 995 + }, + { + "epoch": 13.838794233289645, + "grad_norm": 0.1933647245168686, + "learning_rate": 0.0006, + "loss": 4.169734954833984, + "step": 996 + }, + { + "epoch": 13.852774137177807, + "grad_norm": 0.2362028956413269, + "learning_rate": 0.0006, + "loss": 4.175025939941406, + "step": 997 + }, + { + "epoch": 13.866754041065967, + "grad_norm": 0.2465490996837616, + "learning_rate": 0.0006, + "loss": 4.173909664154053, + "step": 998 + }, + { + "epoch": 13.880733944954128, + "grad_norm": 0.23449952900409698, + "learning_rate": 0.0006, + "loss": 4.173429489135742, + "step": 999 + }, + { + "epoch": 13.89471384884229, + "grad_norm": 0.2282160222530365, + "learning_rate": 0.0006, + "loss": 4.158538341522217, + "step": 1000 + }, + { + "epoch": 13.90869375273045, + "grad_norm": 0.21066738665103912, + "learning_rate": 0.0006, + "loss": 4.171584129333496, + "step": 1001 + }, + { + "epoch": 13.922673656618612, + "grad_norm": 0.18787573277950287, + "learning_rate": 0.0006, + "loss": 4.1837544441223145, + "step": 1002 + }, + { + "epoch": 13.936653560506771, + "grad_norm": 0.2001059353351593, + "learning_rate": 0.0006, + "loss": 4.160369873046875, + "step": 1003 + }, + { + "epoch": 13.950633464394933, + "grad_norm": 0.21644988656044006, + "learning_rate": 0.0006, + "loss": 4.221372604370117, + "step": 1004 + }, + { + "epoch": 13.964613368283093, + "grad_norm": 0.22083887457847595, + "learning_rate": 0.0006, + "loss": 4.149261474609375, + "step": 1005 + }, + { + "epoch": 13.978593272171254, + "grad_norm": 0.2201409637928009, + "learning_rate": 0.0006, + "loss": 4.192010879516602, + "step": 1006 + }, + { + "epoch": 13.992573176059414, + "grad_norm": 0.18888601660728455, + "learning_rate": 0.0006, + "loss": 4.17539119720459, + "step": 1007 + }, + { + "epoch": 14.0, + "grad_norm": 0.2073872834444046, + "learning_rate": 0.0006, + "loss": 4.145265579223633, + "step": 1008 + }, + { + "epoch": 14.0, + "eval_loss": 4.36876106262207, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 1008 + }, + { + "epoch": 14.013979903888162, + "grad_norm": 0.20773135125637054, + "learning_rate": 0.0006, + "loss": 4.132615089416504, + "step": 1009 + }, + { + "epoch": 14.027959807776321, + "grad_norm": 0.22409620881080627, + "learning_rate": 0.0006, + "loss": 4.172839164733887, + "step": 1010 + }, + { + "epoch": 14.041939711664483, + "grad_norm": 0.24046066403388977, + "learning_rate": 0.0006, + "loss": 4.126678943634033, + "step": 1011 + }, + { + "epoch": 14.055919615552643, + "grad_norm": 0.29185160994529724, + "learning_rate": 0.0006, + "loss": 4.177952766418457, + "step": 1012 + }, + { + "epoch": 14.069899519440805, + "grad_norm": 0.2984033226966858, + "learning_rate": 0.0006, + "loss": 4.155030250549316, + "step": 1013 + }, + { + "epoch": 14.083879423328964, + "grad_norm": 0.30262473225593567, + "learning_rate": 0.0006, + "loss": 4.145394325256348, + "step": 1014 + }, + { + "epoch": 14.097859327217126, + "grad_norm": 0.3278133273124695, + "learning_rate": 0.0006, + "loss": 4.172739028930664, + "step": 1015 + }, + { + "epoch": 14.111839231105286, + "grad_norm": 0.3285452425479889, + "learning_rate": 0.0006, + "loss": 4.153196334838867, + "step": 1016 + }, + { + "epoch": 14.125819134993447, + "grad_norm": 0.33912697434425354, + "learning_rate": 0.0006, + "loss": 4.098162651062012, + "step": 1017 + }, + { + "epoch": 14.139799038881607, + "grad_norm": 0.32080814242362976, + "learning_rate": 0.0006, + "loss": 4.157135009765625, + "step": 1018 + }, + { + "epoch": 14.153778942769769, + "grad_norm": 0.31288477778434753, + "learning_rate": 0.0006, + "loss": 4.142683029174805, + "step": 1019 + }, + { + "epoch": 14.167758846657929, + "grad_norm": 0.350289523601532, + "learning_rate": 0.0006, + "loss": 4.134700775146484, + "step": 1020 + }, + { + "epoch": 14.18173875054609, + "grad_norm": 0.34274575114250183, + "learning_rate": 0.0006, + "loss": 4.1578569412231445, + "step": 1021 + }, + { + "epoch": 14.19571865443425, + "grad_norm": 0.2843035161495209, + "learning_rate": 0.0006, + "loss": 4.13760232925415, + "step": 1022 + }, + { + "epoch": 14.209698558322412, + "grad_norm": 0.28235161304473877, + "learning_rate": 0.0006, + "loss": 4.1492462158203125, + "step": 1023 + }, + { + "epoch": 14.223678462210572, + "grad_norm": 0.24407248198986053, + "learning_rate": 0.0006, + "loss": 4.144372463226318, + "step": 1024 + }, + { + "epoch": 14.237658366098733, + "grad_norm": 0.2489742934703827, + "learning_rate": 0.0006, + "loss": 4.137950897216797, + "step": 1025 + }, + { + "epoch": 14.251638269986893, + "grad_norm": 0.26035651564598083, + "learning_rate": 0.0006, + "loss": 4.144070625305176, + "step": 1026 + }, + { + "epoch": 14.265618173875055, + "grad_norm": 0.2726516127586365, + "learning_rate": 0.0006, + "loss": 4.145204067230225, + "step": 1027 + }, + { + "epoch": 14.279598077763215, + "grad_norm": 0.2723483443260193, + "learning_rate": 0.0006, + "loss": 4.118407249450684, + "step": 1028 + }, + { + "epoch": 14.293577981651376, + "grad_norm": 0.27476269006729126, + "learning_rate": 0.0006, + "loss": 4.111325263977051, + "step": 1029 + }, + { + "epoch": 14.307557885539538, + "grad_norm": 0.26202502846717834, + "learning_rate": 0.0006, + "loss": 4.122248649597168, + "step": 1030 + }, + { + "epoch": 14.321537789427698, + "grad_norm": 0.2472032904624939, + "learning_rate": 0.0006, + "loss": 4.157790184020996, + "step": 1031 + }, + { + "epoch": 14.33551769331586, + "grad_norm": 0.2518343925476074, + "learning_rate": 0.0006, + "loss": 4.109132766723633, + "step": 1032 + }, + { + "epoch": 14.349497597204019, + "grad_norm": 0.2652401924133301, + "learning_rate": 0.0006, + "loss": 4.144079685211182, + "step": 1033 + }, + { + "epoch": 14.36347750109218, + "grad_norm": 0.2356770783662796, + "learning_rate": 0.0006, + "loss": 4.128426551818848, + "step": 1034 + }, + { + "epoch": 14.37745740498034, + "grad_norm": 0.2164214551448822, + "learning_rate": 0.0006, + "loss": 4.1644392013549805, + "step": 1035 + }, + { + "epoch": 14.391437308868502, + "grad_norm": 0.22383111715316772, + "learning_rate": 0.0006, + "loss": 4.165862083435059, + "step": 1036 + }, + { + "epoch": 14.405417212756662, + "grad_norm": 0.23152419924736023, + "learning_rate": 0.0006, + "loss": 4.140036582946777, + "step": 1037 + }, + { + "epoch": 14.419397116644824, + "grad_norm": 0.2387741357088089, + "learning_rate": 0.0006, + "loss": 4.130461692810059, + "step": 1038 + }, + { + "epoch": 14.433377020532983, + "grad_norm": 0.24018129706382751, + "learning_rate": 0.0006, + "loss": 4.148482322692871, + "step": 1039 + }, + { + "epoch": 14.447356924421145, + "grad_norm": 0.25487351417541504, + "learning_rate": 0.0006, + "loss": 4.158121109008789, + "step": 1040 + }, + { + "epoch": 14.461336828309305, + "grad_norm": 0.28220096230506897, + "learning_rate": 0.0006, + "loss": 4.160198211669922, + "step": 1041 + }, + { + "epoch": 14.475316732197467, + "grad_norm": 0.2574434280395508, + "learning_rate": 0.0006, + "loss": 4.168512344360352, + "step": 1042 + }, + { + "epoch": 14.489296636085626, + "grad_norm": 0.22569820284843445, + "learning_rate": 0.0006, + "loss": 4.1595001220703125, + "step": 1043 + }, + { + "epoch": 14.503276539973788, + "grad_norm": 0.2473423182964325, + "learning_rate": 0.0006, + "loss": 4.084580898284912, + "step": 1044 + }, + { + "epoch": 14.517256443861948, + "grad_norm": 0.24281060695648193, + "learning_rate": 0.0006, + "loss": 4.139714241027832, + "step": 1045 + }, + { + "epoch": 14.53123634775011, + "grad_norm": 0.24691344797611237, + "learning_rate": 0.0006, + "loss": 4.115398406982422, + "step": 1046 + }, + { + "epoch": 14.54521625163827, + "grad_norm": 0.2583645284175873, + "learning_rate": 0.0006, + "loss": 4.142148494720459, + "step": 1047 + }, + { + "epoch": 14.55919615552643, + "grad_norm": 0.23258574306964874, + "learning_rate": 0.0006, + "loss": 4.16251277923584, + "step": 1048 + }, + { + "epoch": 14.57317605941459, + "grad_norm": 0.22103039920330048, + "learning_rate": 0.0006, + "loss": 4.1308441162109375, + "step": 1049 + }, + { + "epoch": 14.587155963302752, + "grad_norm": 0.23713579773902893, + "learning_rate": 0.0006, + "loss": 4.1565985679626465, + "step": 1050 + }, + { + "epoch": 14.601135867190912, + "grad_norm": 0.24406634271144867, + "learning_rate": 0.0006, + "loss": 4.14628267288208, + "step": 1051 + }, + { + "epoch": 14.615115771079074, + "grad_norm": 0.26821228861808777, + "learning_rate": 0.0006, + "loss": 4.138063430786133, + "step": 1052 + }, + { + "epoch": 14.629095674967235, + "grad_norm": 0.25483864545822144, + "learning_rate": 0.0006, + "loss": 4.1311163902282715, + "step": 1053 + }, + { + "epoch": 14.643075578855395, + "grad_norm": 0.23937982320785522, + "learning_rate": 0.0006, + "loss": 4.150882244110107, + "step": 1054 + }, + { + "epoch": 14.657055482743557, + "grad_norm": 0.21896475553512573, + "learning_rate": 0.0006, + "loss": 4.114015102386475, + "step": 1055 + }, + { + "epoch": 14.671035386631717, + "grad_norm": 0.20821231603622437, + "learning_rate": 0.0006, + "loss": 4.139034271240234, + "step": 1056 + }, + { + "epoch": 14.685015290519878, + "grad_norm": 0.1978551596403122, + "learning_rate": 0.0006, + "loss": 4.1810503005981445, + "step": 1057 + }, + { + "epoch": 14.698995194408038, + "grad_norm": 0.1945771872997284, + "learning_rate": 0.0006, + "loss": 4.120734214782715, + "step": 1058 + }, + { + "epoch": 14.7129750982962, + "grad_norm": 0.19518673419952393, + "learning_rate": 0.0006, + "loss": 4.14264440536499, + "step": 1059 + }, + { + "epoch": 14.72695500218436, + "grad_norm": 0.202596515417099, + "learning_rate": 0.0006, + "loss": 4.151649475097656, + "step": 1060 + }, + { + "epoch": 14.740934906072521, + "grad_norm": 0.1904762089252472, + "learning_rate": 0.0006, + "loss": 4.127899169921875, + "step": 1061 + }, + { + "epoch": 14.754914809960681, + "grad_norm": 0.20685508847236633, + "learning_rate": 0.0006, + "loss": 4.093445777893066, + "step": 1062 + }, + { + "epoch": 14.768894713848843, + "grad_norm": 0.22678329050540924, + "learning_rate": 0.0006, + "loss": 4.132084369659424, + "step": 1063 + }, + { + "epoch": 14.782874617737003, + "grad_norm": 0.24631841480731964, + "learning_rate": 0.0006, + "loss": 4.154788970947266, + "step": 1064 + }, + { + "epoch": 14.796854521625164, + "grad_norm": 0.24445782601833344, + "learning_rate": 0.0006, + "loss": 4.144735336303711, + "step": 1065 + }, + { + "epoch": 14.810834425513324, + "grad_norm": 0.22330640256404877, + "learning_rate": 0.0006, + "loss": 4.159893989562988, + "step": 1066 + }, + { + "epoch": 14.824814329401486, + "grad_norm": 0.22422967851161957, + "learning_rate": 0.0006, + "loss": 4.104874610900879, + "step": 1067 + }, + { + "epoch": 14.838794233289645, + "grad_norm": 0.24583931267261505, + "learning_rate": 0.0006, + "loss": 4.139403820037842, + "step": 1068 + }, + { + "epoch": 14.852774137177807, + "grad_norm": 0.2917379140853882, + "learning_rate": 0.0006, + "loss": 4.168988227844238, + "step": 1069 + }, + { + "epoch": 14.866754041065967, + "grad_norm": 0.3171777129173279, + "learning_rate": 0.0006, + "loss": 4.131263732910156, + "step": 1070 + }, + { + "epoch": 14.880733944954128, + "grad_norm": 0.3039591312408447, + "learning_rate": 0.0006, + "loss": 4.149853706359863, + "step": 1071 + }, + { + "epoch": 14.89471384884229, + "grad_norm": 0.2690650522708893, + "learning_rate": 0.0006, + "loss": 4.154787540435791, + "step": 1072 + }, + { + "epoch": 14.90869375273045, + "grad_norm": 0.28683212399482727, + "learning_rate": 0.0006, + "loss": 4.12751579284668, + "step": 1073 + }, + { + "epoch": 14.922673656618612, + "grad_norm": 0.30022913217544556, + "learning_rate": 0.0006, + "loss": 4.141940116882324, + "step": 1074 + }, + { + "epoch": 14.936653560506771, + "grad_norm": 0.3312259316444397, + "learning_rate": 0.0006, + "loss": 4.141905784606934, + "step": 1075 + }, + { + "epoch": 14.950633464394933, + "grad_norm": 0.31159237027168274, + "learning_rate": 0.0006, + "loss": 4.160192966461182, + "step": 1076 + }, + { + "epoch": 14.964613368283093, + "grad_norm": 0.30093592405319214, + "learning_rate": 0.0006, + "loss": 4.1085076332092285, + "step": 1077 + }, + { + "epoch": 14.978593272171254, + "grad_norm": 0.2728535830974579, + "learning_rate": 0.0006, + "loss": 4.156959056854248, + "step": 1078 + }, + { + "epoch": 14.992573176059414, + "grad_norm": 0.24766813218593597, + "learning_rate": 0.0006, + "loss": 4.113999843597412, + "step": 1079 + }, + { + "epoch": 15.0, + "grad_norm": 0.2538154721260071, + "learning_rate": 0.0006, + "loss": 4.147134780883789, + "step": 1080 + }, + { + "epoch": 15.0, + "eval_loss": 4.323154926300049, + "eval_runtime": 44.8813, + "eval_samples_per_second": 54.41, + "eval_steps_per_second": 3.409, + "step": 1080 + }, + { + "epoch": 15.013979903888162, + "grad_norm": 0.22535280883312225, + "learning_rate": 0.0006, + "loss": 4.112179756164551, + "step": 1081 + }, + { + "epoch": 15.027959807776321, + "grad_norm": 0.24340929090976715, + "learning_rate": 0.0006, + "loss": 4.080923080444336, + "step": 1082 + }, + { + "epoch": 15.041939711664483, + "grad_norm": 0.23159465193748474, + "learning_rate": 0.0006, + "loss": 4.097067356109619, + "step": 1083 + }, + { + "epoch": 15.055919615552643, + "grad_norm": 0.22674769163131714, + "learning_rate": 0.0006, + "loss": 4.118601322174072, + "step": 1084 + }, + { + "epoch": 15.069899519440805, + "grad_norm": 0.2524292469024658, + "learning_rate": 0.0006, + "loss": 4.101109504699707, + "step": 1085 + }, + { + "epoch": 15.083879423328964, + "grad_norm": 0.2505405843257904, + "learning_rate": 0.0006, + "loss": 4.121405601501465, + "step": 1086 + }, + { + "epoch": 15.097859327217126, + "grad_norm": 0.2557983696460724, + "learning_rate": 0.0006, + "loss": 4.1063947677612305, + "step": 1087 + }, + { + "epoch": 15.111839231105286, + "grad_norm": 0.24452129006385803, + "learning_rate": 0.0006, + "loss": 4.086133003234863, + "step": 1088 + }, + { + "epoch": 15.125819134993447, + "grad_norm": 0.25821781158447266, + "learning_rate": 0.0006, + "loss": 4.076262950897217, + "step": 1089 + }, + { + "epoch": 15.139799038881607, + "grad_norm": 0.23650537431240082, + "learning_rate": 0.0006, + "loss": 4.101842880249023, + "step": 1090 + }, + { + "epoch": 15.153778942769769, + "grad_norm": 0.2206192910671234, + "learning_rate": 0.0006, + "loss": 4.11027193069458, + "step": 1091 + }, + { + "epoch": 15.167758846657929, + "grad_norm": 0.21843163669109344, + "learning_rate": 0.0006, + "loss": 4.098437309265137, + "step": 1092 + }, + { + "epoch": 15.18173875054609, + "grad_norm": 0.2528176009654999, + "learning_rate": 0.0006, + "loss": 4.108713150024414, + "step": 1093 + }, + { + "epoch": 15.19571865443425, + "grad_norm": 0.26697206497192383, + "learning_rate": 0.0006, + "loss": 4.113210201263428, + "step": 1094 + }, + { + "epoch": 15.209698558322412, + "grad_norm": 0.26480963826179504, + "learning_rate": 0.0006, + "loss": 4.1103620529174805, + "step": 1095 + }, + { + "epoch": 15.223678462210572, + "grad_norm": 0.24887347221374512, + "learning_rate": 0.0006, + "loss": 4.103529930114746, + "step": 1096 + }, + { + "epoch": 15.237658366098733, + "grad_norm": 0.2344668060541153, + "learning_rate": 0.0006, + "loss": 4.129784107208252, + "step": 1097 + }, + { + "epoch": 15.251638269986893, + "grad_norm": 0.22639742493629456, + "learning_rate": 0.0006, + "loss": 4.113495349884033, + "step": 1098 + }, + { + "epoch": 15.265618173875055, + "grad_norm": 0.22466333210468292, + "learning_rate": 0.0006, + "loss": 4.102309703826904, + "step": 1099 + }, + { + "epoch": 15.279598077763215, + "grad_norm": 0.25135037302970886, + "learning_rate": 0.0006, + "loss": 4.117668628692627, + "step": 1100 + }, + { + "epoch": 15.293577981651376, + "grad_norm": 0.2347089946269989, + "learning_rate": 0.0006, + "loss": 4.086637496948242, + "step": 1101 + }, + { + "epoch": 15.307557885539538, + "grad_norm": 0.2347242832183838, + "learning_rate": 0.0006, + "loss": 4.098714828491211, + "step": 1102 + }, + { + "epoch": 15.321537789427698, + "grad_norm": 0.23990283906459808, + "learning_rate": 0.0006, + "loss": 4.079837799072266, + "step": 1103 + }, + { + "epoch": 15.33551769331586, + "grad_norm": 0.22366675734519958, + "learning_rate": 0.0006, + "loss": 4.108136177062988, + "step": 1104 + }, + { + "epoch": 15.349497597204019, + "grad_norm": 0.21823780238628387, + "learning_rate": 0.0006, + "loss": 4.10054349899292, + "step": 1105 + }, + { + "epoch": 15.36347750109218, + "grad_norm": 0.23059198260307312, + "learning_rate": 0.0006, + "loss": 4.108620643615723, + "step": 1106 + }, + { + "epoch": 15.37745740498034, + "grad_norm": 0.2313755601644516, + "learning_rate": 0.0006, + "loss": 4.088565826416016, + "step": 1107 + }, + { + "epoch": 15.391437308868502, + "grad_norm": 0.2546829283237457, + "learning_rate": 0.0006, + "loss": 4.104948043823242, + "step": 1108 + }, + { + "epoch": 15.405417212756662, + "grad_norm": 0.23666726052761078, + "learning_rate": 0.0006, + "loss": 4.111965179443359, + "step": 1109 + }, + { + "epoch": 15.419397116644824, + "grad_norm": 0.21971021592617035, + "learning_rate": 0.0006, + "loss": 4.097846984863281, + "step": 1110 + }, + { + "epoch": 15.433377020532983, + "grad_norm": 0.20951911807060242, + "learning_rate": 0.0006, + "loss": 4.110099792480469, + "step": 1111 + }, + { + "epoch": 15.447356924421145, + "grad_norm": 0.19590918719768524, + "learning_rate": 0.0006, + "loss": 4.101154327392578, + "step": 1112 + }, + { + "epoch": 15.461336828309305, + "grad_norm": 0.21048946678638458, + "learning_rate": 0.0006, + "loss": 4.0986127853393555, + "step": 1113 + }, + { + "epoch": 15.475316732197467, + "grad_norm": 0.21423374116420746, + "learning_rate": 0.0006, + "loss": 4.082328796386719, + "step": 1114 + }, + { + "epoch": 15.489296636085626, + "grad_norm": 0.227146714925766, + "learning_rate": 0.0006, + "loss": 4.105281829833984, + "step": 1115 + }, + { + "epoch": 15.503276539973788, + "grad_norm": 0.2079153060913086, + "learning_rate": 0.0006, + "loss": 4.100836753845215, + "step": 1116 + }, + { + "epoch": 15.517256443861948, + "grad_norm": 0.21084675192832947, + "learning_rate": 0.0006, + "loss": 4.0934343338012695, + "step": 1117 + }, + { + "epoch": 15.53123634775011, + "grad_norm": 0.23863616585731506, + "learning_rate": 0.0006, + "loss": 4.101540565490723, + "step": 1118 + }, + { + "epoch": 15.54521625163827, + "grad_norm": 0.2518490254878998, + "learning_rate": 0.0006, + "loss": 4.12303352355957, + "step": 1119 + }, + { + "epoch": 15.55919615552643, + "grad_norm": 0.24282905459403992, + "learning_rate": 0.0006, + "loss": 4.080670356750488, + "step": 1120 + }, + { + "epoch": 15.57317605941459, + "grad_norm": 0.24171605706214905, + "learning_rate": 0.0006, + "loss": 4.117938041687012, + "step": 1121 + }, + { + "epoch": 15.587155963302752, + "grad_norm": 0.28453412652015686, + "learning_rate": 0.0006, + "loss": 4.080114364624023, + "step": 1122 + }, + { + "epoch": 15.601135867190912, + "grad_norm": 0.30322617292404175, + "learning_rate": 0.0006, + "loss": 4.079695701599121, + "step": 1123 + }, + { + "epoch": 15.615115771079074, + "grad_norm": 0.2657633125782013, + "learning_rate": 0.0006, + "loss": 4.0916290283203125, + "step": 1124 + }, + { + "epoch": 15.629095674967235, + "grad_norm": 0.2467080056667328, + "learning_rate": 0.0006, + "loss": 4.095594882965088, + "step": 1125 + }, + { + "epoch": 15.643075578855395, + "grad_norm": 0.21767394244670868, + "learning_rate": 0.0006, + "loss": 4.079174041748047, + "step": 1126 + }, + { + "epoch": 15.657055482743557, + "grad_norm": 0.2088327705860138, + "learning_rate": 0.0006, + "loss": 4.060707092285156, + "step": 1127 + }, + { + "epoch": 15.671035386631717, + "grad_norm": 0.1921205073595047, + "learning_rate": 0.0006, + "loss": 4.073911666870117, + "step": 1128 + }, + { + "epoch": 15.685015290519878, + "grad_norm": 0.209339901804924, + "learning_rate": 0.0006, + "loss": 4.089954376220703, + "step": 1129 + }, + { + "epoch": 15.698995194408038, + "grad_norm": 0.23513881862163544, + "learning_rate": 0.0006, + "loss": 4.084906578063965, + "step": 1130 + }, + { + "epoch": 15.7129750982962, + "grad_norm": 0.26140275597572327, + "learning_rate": 0.0006, + "loss": 4.086570739746094, + "step": 1131 + }, + { + "epoch": 15.72695500218436, + "grad_norm": 0.290431946516037, + "learning_rate": 0.0006, + "loss": 4.071229457855225, + "step": 1132 + }, + { + "epoch": 15.740934906072521, + "grad_norm": 0.3061376214027405, + "learning_rate": 0.0006, + "loss": 4.103148460388184, + "step": 1133 + }, + { + "epoch": 15.754914809960681, + "grad_norm": 0.26312482357025146, + "learning_rate": 0.0006, + "loss": 4.088448524475098, + "step": 1134 + }, + { + "epoch": 15.768894713848843, + "grad_norm": 0.22474883496761322, + "learning_rate": 0.0006, + "loss": 4.091766834259033, + "step": 1135 + }, + { + "epoch": 15.782874617737003, + "grad_norm": 0.2341146171092987, + "learning_rate": 0.0006, + "loss": 4.1222758293151855, + "step": 1136 + }, + { + "epoch": 15.796854521625164, + "grad_norm": 0.23556149005889893, + "learning_rate": 0.0006, + "loss": 4.094954013824463, + "step": 1137 + }, + { + "epoch": 15.810834425513324, + "grad_norm": 0.263315349817276, + "learning_rate": 0.0006, + "loss": 4.1065473556518555, + "step": 1138 + }, + { + "epoch": 15.824814329401486, + "grad_norm": 0.2700869143009186, + "learning_rate": 0.0006, + "loss": 4.0890045166015625, + "step": 1139 + }, + { + "epoch": 15.838794233289645, + "grad_norm": 0.28697484731674194, + "learning_rate": 0.0006, + "loss": 4.092496395111084, + "step": 1140 + }, + { + "epoch": 15.852774137177807, + "grad_norm": 0.2824092507362366, + "learning_rate": 0.0006, + "loss": 4.079615592956543, + "step": 1141 + }, + { + "epoch": 15.866754041065967, + "grad_norm": 0.24547280371189117, + "learning_rate": 0.0006, + "loss": 4.089683532714844, + "step": 1142 + }, + { + "epoch": 15.880733944954128, + "grad_norm": 0.23653888702392578, + "learning_rate": 0.0006, + "loss": 4.067309379577637, + "step": 1143 + }, + { + "epoch": 15.89471384884229, + "grad_norm": 0.23784421384334564, + "learning_rate": 0.0006, + "loss": 4.09156608581543, + "step": 1144 + }, + { + "epoch": 15.90869375273045, + "grad_norm": 0.22753281891345978, + "learning_rate": 0.0006, + "loss": 4.095428466796875, + "step": 1145 + }, + { + "epoch": 15.922673656618612, + "grad_norm": 0.2464212030172348, + "learning_rate": 0.0006, + "loss": 4.1036376953125, + "step": 1146 + }, + { + "epoch": 15.936653560506771, + "grad_norm": 0.25531601905822754, + "learning_rate": 0.0006, + "loss": 4.073996543884277, + "step": 1147 + }, + { + "epoch": 15.950633464394933, + "grad_norm": 0.24145905673503876, + "learning_rate": 0.0006, + "loss": 4.094479560852051, + "step": 1148 + }, + { + "epoch": 15.964613368283093, + "grad_norm": 0.24274317920207977, + "learning_rate": 0.0006, + "loss": 4.101981163024902, + "step": 1149 + }, + { + "epoch": 15.978593272171254, + "grad_norm": 0.2350679188966751, + "learning_rate": 0.0006, + "loss": 4.057965278625488, + "step": 1150 + }, + { + "epoch": 15.992573176059414, + "grad_norm": 0.24072253704071045, + "learning_rate": 0.0006, + "loss": 4.020050048828125, + "step": 1151 + }, + { + "epoch": 16.0, + "grad_norm": 0.253978967666626, + "learning_rate": 0.0006, + "loss": 4.061928749084473, + "step": 1152 + }, + { + "epoch": 16.0, + "eval_loss": 4.270665645599365, + "eval_runtime": 44.5063, + "eval_samples_per_second": 54.869, + "eval_steps_per_second": 3.438, + "step": 1152 + }, + { + "epoch": 16.01397990388816, + "grad_norm": 0.3265204131603241, + "learning_rate": 0.0006, + "loss": 4.059116363525391, + "step": 1153 + }, + { + "epoch": 16.027959807776323, + "grad_norm": 0.34139737486839294, + "learning_rate": 0.0006, + "loss": 4.062219619750977, + "step": 1154 + }, + { + "epoch": 16.041939711664483, + "grad_norm": 0.2849949598312378, + "learning_rate": 0.0006, + "loss": 4.032323837280273, + "step": 1155 + }, + { + "epoch": 16.055919615552643, + "grad_norm": 0.25031402707099915, + "learning_rate": 0.0006, + "loss": 4.075527191162109, + "step": 1156 + }, + { + "epoch": 16.069899519440803, + "grad_norm": 0.25207436084747314, + "learning_rate": 0.0006, + "loss": 4.0883097648620605, + "step": 1157 + }, + { + "epoch": 16.083879423328966, + "grad_norm": 0.28677356243133545, + "learning_rate": 0.0006, + "loss": 4.040797233581543, + "step": 1158 + }, + { + "epoch": 16.097859327217126, + "grad_norm": 0.30778825283050537, + "learning_rate": 0.0006, + "loss": 4.051504135131836, + "step": 1159 + }, + { + "epoch": 16.111839231105286, + "grad_norm": 0.3136911988258362, + "learning_rate": 0.0006, + "loss": 4.045449256896973, + "step": 1160 + }, + { + "epoch": 16.125819134993446, + "grad_norm": 0.34384530782699585, + "learning_rate": 0.0006, + "loss": 4.069897651672363, + "step": 1161 + }, + { + "epoch": 16.13979903888161, + "grad_norm": 0.3074268400669098, + "learning_rate": 0.0006, + "loss": 4.0621137619018555, + "step": 1162 + }, + { + "epoch": 16.15377894276977, + "grad_norm": 0.33090949058532715, + "learning_rate": 0.0006, + "loss": 4.084089279174805, + "step": 1163 + }, + { + "epoch": 16.16775884665793, + "grad_norm": 0.26358580589294434, + "learning_rate": 0.0006, + "loss": 4.066563606262207, + "step": 1164 + }, + { + "epoch": 16.18173875054609, + "grad_norm": 0.25586041808128357, + "learning_rate": 0.0006, + "loss": 4.08109188079834, + "step": 1165 + }, + { + "epoch": 16.195718654434252, + "grad_norm": 0.2966184616088867, + "learning_rate": 0.0006, + "loss": 4.039186477661133, + "step": 1166 + }, + { + "epoch": 16.209698558322412, + "grad_norm": 0.3064924478530884, + "learning_rate": 0.0006, + "loss": 4.08139705657959, + "step": 1167 + }, + { + "epoch": 16.22367846221057, + "grad_norm": 0.28671345114707947, + "learning_rate": 0.0006, + "loss": 4.04637336730957, + "step": 1168 + }, + { + "epoch": 16.23765836609873, + "grad_norm": 0.26209691166877747, + "learning_rate": 0.0006, + "loss": 4.052768707275391, + "step": 1169 + }, + { + "epoch": 16.251638269986895, + "grad_norm": 0.2758907079696655, + "learning_rate": 0.0006, + "loss": 4.064321517944336, + "step": 1170 + }, + { + "epoch": 16.265618173875055, + "grad_norm": 0.25961801409721375, + "learning_rate": 0.0006, + "loss": 4.057299613952637, + "step": 1171 + }, + { + "epoch": 16.279598077763215, + "grad_norm": 0.2513751685619354, + "learning_rate": 0.0006, + "loss": 4.064148902893066, + "step": 1172 + }, + { + "epoch": 16.293577981651374, + "grad_norm": 0.23920276761054993, + "learning_rate": 0.0006, + "loss": 4.101890563964844, + "step": 1173 + }, + { + "epoch": 16.307557885539538, + "grad_norm": 0.22746537625789642, + "learning_rate": 0.0006, + "loss": 4.086627006530762, + "step": 1174 + }, + { + "epoch": 16.321537789427698, + "grad_norm": 0.22633525729179382, + "learning_rate": 0.0006, + "loss": 4.04669189453125, + "step": 1175 + }, + { + "epoch": 16.335517693315857, + "grad_norm": 0.2654891610145569, + "learning_rate": 0.0006, + "loss": 4.086793422698975, + "step": 1176 + }, + { + "epoch": 16.34949759720402, + "grad_norm": 0.2872653007507324, + "learning_rate": 0.0006, + "loss": 4.077983856201172, + "step": 1177 + }, + { + "epoch": 16.36347750109218, + "grad_norm": 0.25726038217544556, + "learning_rate": 0.0006, + "loss": 4.066011428833008, + "step": 1178 + }, + { + "epoch": 16.37745740498034, + "grad_norm": 0.2592027485370636, + "learning_rate": 0.0006, + "loss": 4.0482988357543945, + "step": 1179 + }, + { + "epoch": 16.3914373088685, + "grad_norm": 0.2768886685371399, + "learning_rate": 0.0006, + "loss": 4.065151214599609, + "step": 1180 + }, + { + "epoch": 16.405417212756664, + "grad_norm": 0.2956002652645111, + "learning_rate": 0.0006, + "loss": 4.037791728973389, + "step": 1181 + }, + { + "epoch": 16.419397116644824, + "grad_norm": 0.3092120885848999, + "learning_rate": 0.0006, + "loss": 4.062164306640625, + "step": 1182 + }, + { + "epoch": 16.433377020532983, + "grad_norm": 0.29516810178756714, + "learning_rate": 0.0006, + "loss": 4.025505065917969, + "step": 1183 + }, + { + "epoch": 16.447356924421143, + "grad_norm": 0.2640177607536316, + "learning_rate": 0.0006, + "loss": 4.060182571411133, + "step": 1184 + }, + { + "epoch": 16.461336828309307, + "grad_norm": 0.2444908320903778, + "learning_rate": 0.0006, + "loss": 4.046144962310791, + "step": 1185 + }, + { + "epoch": 16.475316732197467, + "grad_norm": 0.23190705478191376, + "learning_rate": 0.0006, + "loss": 4.075569152832031, + "step": 1186 + }, + { + "epoch": 16.489296636085626, + "grad_norm": 0.2383626103401184, + "learning_rate": 0.0006, + "loss": 4.088897705078125, + "step": 1187 + }, + { + "epoch": 16.503276539973786, + "grad_norm": 0.20688803493976593, + "learning_rate": 0.0006, + "loss": 4.064517974853516, + "step": 1188 + }, + { + "epoch": 16.51725644386195, + "grad_norm": 0.22610054910182953, + "learning_rate": 0.0006, + "loss": 4.04502010345459, + "step": 1189 + }, + { + "epoch": 16.53123634775011, + "grad_norm": 0.2014893889427185, + "learning_rate": 0.0006, + "loss": 4.058279514312744, + "step": 1190 + }, + { + "epoch": 16.54521625163827, + "grad_norm": 0.21459777653217316, + "learning_rate": 0.0006, + "loss": 4.066389083862305, + "step": 1191 + }, + { + "epoch": 16.55919615552643, + "grad_norm": 0.22909940779209137, + "learning_rate": 0.0006, + "loss": 4.0557966232299805, + "step": 1192 + }, + { + "epoch": 16.573176059414592, + "grad_norm": 0.20039083063602448, + "learning_rate": 0.0006, + "loss": 4.092845916748047, + "step": 1193 + }, + { + "epoch": 16.587155963302752, + "grad_norm": 0.22651726007461548, + "learning_rate": 0.0006, + "loss": 4.034615516662598, + "step": 1194 + }, + { + "epoch": 16.601135867190912, + "grad_norm": 0.21901755034923553, + "learning_rate": 0.0006, + "loss": 4.035619735717773, + "step": 1195 + }, + { + "epoch": 16.615115771079076, + "grad_norm": 0.22930841147899628, + "learning_rate": 0.0006, + "loss": 4.080800533294678, + "step": 1196 + }, + { + "epoch": 16.629095674967235, + "grad_norm": 0.212818443775177, + "learning_rate": 0.0006, + "loss": 4.030189514160156, + "step": 1197 + }, + { + "epoch": 16.643075578855395, + "grad_norm": 0.2370826154947281, + "learning_rate": 0.0006, + "loss": 4.062643527984619, + "step": 1198 + }, + { + "epoch": 16.657055482743555, + "grad_norm": 0.24786995351314545, + "learning_rate": 0.0006, + "loss": 4.031761169433594, + "step": 1199 + }, + { + "epoch": 16.67103538663172, + "grad_norm": 0.2305847704410553, + "learning_rate": 0.0006, + "loss": 4.083752155303955, + "step": 1200 + }, + { + "epoch": 16.68501529051988, + "grad_norm": 0.23336584866046906, + "learning_rate": 0.0006, + "loss": 4.079145431518555, + "step": 1201 + }, + { + "epoch": 16.698995194408038, + "grad_norm": 0.23976293206214905, + "learning_rate": 0.0006, + "loss": 4.020473957061768, + "step": 1202 + }, + { + "epoch": 16.712975098296198, + "grad_norm": 0.222761869430542, + "learning_rate": 0.0006, + "loss": 4.065582752227783, + "step": 1203 + }, + { + "epoch": 16.72695500218436, + "grad_norm": 0.23725618422031403, + "learning_rate": 0.0006, + "loss": 4.0263776779174805, + "step": 1204 + }, + { + "epoch": 16.74093490607252, + "grad_norm": 0.23873984813690186, + "learning_rate": 0.0006, + "loss": 4.053092956542969, + "step": 1205 + }, + { + "epoch": 16.75491480996068, + "grad_norm": 0.21043002605438232, + "learning_rate": 0.0006, + "loss": 4.063965797424316, + "step": 1206 + }, + { + "epoch": 16.76889471384884, + "grad_norm": 0.19863522052764893, + "learning_rate": 0.0006, + "loss": 4.061187267303467, + "step": 1207 + }, + { + "epoch": 16.782874617737004, + "grad_norm": 0.1953752487897873, + "learning_rate": 0.0006, + "loss": 4.046016693115234, + "step": 1208 + }, + { + "epoch": 16.796854521625164, + "grad_norm": 0.2130361795425415, + "learning_rate": 0.0006, + "loss": 4.066933631896973, + "step": 1209 + }, + { + "epoch": 16.810834425513324, + "grad_norm": 0.19598130881786346, + "learning_rate": 0.0006, + "loss": 4.071558952331543, + "step": 1210 + }, + { + "epoch": 16.824814329401484, + "grad_norm": 0.20331116020679474, + "learning_rate": 0.0006, + "loss": 4.088632106781006, + "step": 1211 + }, + { + "epoch": 16.838794233289647, + "grad_norm": 0.20423150062561035, + "learning_rate": 0.0006, + "loss": 4.032224655151367, + "step": 1212 + }, + { + "epoch": 16.852774137177807, + "grad_norm": 0.2401197850704193, + "learning_rate": 0.0006, + "loss": 4.037393569946289, + "step": 1213 + }, + { + "epoch": 16.866754041065967, + "grad_norm": 0.26102620363235474, + "learning_rate": 0.0006, + "loss": 4.04738712310791, + "step": 1214 + }, + { + "epoch": 16.88073394495413, + "grad_norm": 0.2438521534204483, + "learning_rate": 0.0006, + "loss": 4.015673637390137, + "step": 1215 + }, + { + "epoch": 16.89471384884229, + "grad_norm": 0.20742061734199524, + "learning_rate": 0.0006, + "loss": 4.049060821533203, + "step": 1216 + }, + { + "epoch": 16.90869375273045, + "grad_norm": 0.22028608620166779, + "learning_rate": 0.0006, + "loss": 4.088971138000488, + "step": 1217 + }, + { + "epoch": 16.92267365661861, + "grad_norm": 0.21746744215488434, + "learning_rate": 0.0006, + "loss": 4.021710395812988, + "step": 1218 + }, + { + "epoch": 16.936653560506773, + "grad_norm": 0.2226102203130722, + "learning_rate": 0.0006, + "loss": 4.050119400024414, + "step": 1219 + }, + { + "epoch": 16.950633464394933, + "grad_norm": 0.23903657495975494, + "learning_rate": 0.0006, + "loss": 4.0570526123046875, + "step": 1220 + }, + { + "epoch": 16.964613368283093, + "grad_norm": 0.2556349039077759, + "learning_rate": 0.0006, + "loss": 4.0448808670043945, + "step": 1221 + }, + { + "epoch": 16.978593272171253, + "grad_norm": 0.28445592522621155, + "learning_rate": 0.0006, + "loss": 4.052034378051758, + "step": 1222 + }, + { + "epoch": 16.992573176059416, + "grad_norm": 0.273973673582077, + "learning_rate": 0.0006, + "loss": 4.02907657623291, + "step": 1223 + }, + { + "epoch": 17.0, + "grad_norm": 0.26125091314315796, + "learning_rate": 0.0006, + "loss": 4.10643196105957, + "step": 1224 + }, + { + "epoch": 17.0, + "eval_loss": 4.2585954666137695, + "eval_runtime": 44.8583, + "eval_samples_per_second": 54.438, + "eval_steps_per_second": 3.411, + "step": 1224 + }, + { + "epoch": 17.01397990388816, + "grad_norm": 0.2786196768283844, + "learning_rate": 0.0006, + "loss": 4.044719219207764, + "step": 1225 + }, + { + "epoch": 17.027959807776323, + "grad_norm": 0.2969571650028229, + "learning_rate": 0.0006, + "loss": 4.022037506103516, + "step": 1226 + }, + { + "epoch": 17.041939711664483, + "grad_norm": 0.32196253538131714, + "learning_rate": 0.0006, + "loss": 4.03636360168457, + "step": 1227 + }, + { + "epoch": 17.055919615552643, + "grad_norm": 0.28617000579833984, + "learning_rate": 0.0006, + "loss": 4.012125492095947, + "step": 1228 + }, + { + "epoch": 17.069899519440803, + "grad_norm": 0.26539644598960876, + "learning_rate": 0.0006, + "loss": 4.020190715789795, + "step": 1229 + }, + { + "epoch": 17.083879423328966, + "grad_norm": 0.24315394461154938, + "learning_rate": 0.0006, + "loss": 4.0553812980651855, + "step": 1230 + }, + { + "epoch": 17.097859327217126, + "grad_norm": 0.23798158764839172, + "learning_rate": 0.0006, + "loss": 4.004805088043213, + "step": 1231 + }, + { + "epoch": 17.111839231105286, + "grad_norm": 0.25723618268966675, + "learning_rate": 0.0006, + "loss": 4.00108003616333, + "step": 1232 + }, + { + "epoch": 17.125819134993446, + "grad_norm": 0.2669757604598999, + "learning_rate": 0.0006, + "loss": 4.00828742980957, + "step": 1233 + }, + { + "epoch": 17.13979903888161, + "grad_norm": 0.26421651244163513, + "learning_rate": 0.0006, + "loss": 3.995478391647339, + "step": 1234 + }, + { + "epoch": 17.15377894276977, + "grad_norm": 0.24745801091194153, + "learning_rate": 0.0006, + "loss": 4.0171027183532715, + "step": 1235 + }, + { + "epoch": 17.16775884665793, + "grad_norm": 0.27028775215148926, + "learning_rate": 0.0006, + "loss": 4.017108917236328, + "step": 1236 + }, + { + "epoch": 17.18173875054609, + "grad_norm": 0.27247968316078186, + "learning_rate": 0.0006, + "loss": 4.032601356506348, + "step": 1237 + }, + { + "epoch": 17.195718654434252, + "grad_norm": 0.24620869755744934, + "learning_rate": 0.0006, + "loss": 4.022171974182129, + "step": 1238 + }, + { + "epoch": 17.209698558322412, + "grad_norm": 0.23407386243343353, + "learning_rate": 0.0006, + "loss": 3.9946959018707275, + "step": 1239 + }, + { + "epoch": 17.22367846221057, + "grad_norm": 0.22559069097042084, + "learning_rate": 0.0006, + "loss": 4.013072490692139, + "step": 1240 + }, + { + "epoch": 17.23765836609873, + "grad_norm": 0.226687952876091, + "learning_rate": 0.0006, + "loss": 4.023543834686279, + "step": 1241 + }, + { + "epoch": 17.251638269986895, + "grad_norm": 0.24436360597610474, + "learning_rate": 0.0006, + "loss": 4.044206619262695, + "step": 1242 + }, + { + "epoch": 17.265618173875055, + "grad_norm": 0.25527626276016235, + "learning_rate": 0.0006, + "loss": 4.016424179077148, + "step": 1243 + }, + { + "epoch": 17.279598077763215, + "grad_norm": 0.26126864552497864, + "learning_rate": 0.0006, + "loss": 4.024394512176514, + "step": 1244 + }, + { + "epoch": 17.293577981651374, + "grad_norm": 0.25746744871139526, + "learning_rate": 0.0006, + "loss": 4.046844482421875, + "step": 1245 + }, + { + "epoch": 17.307557885539538, + "grad_norm": 0.26579564809799194, + "learning_rate": 0.0006, + "loss": 4.021010398864746, + "step": 1246 + }, + { + "epoch": 17.321537789427698, + "grad_norm": 0.2713971734046936, + "learning_rate": 0.0006, + "loss": 4.022331237792969, + "step": 1247 + }, + { + "epoch": 17.335517693315857, + "grad_norm": 0.24217180907726288, + "learning_rate": 0.0006, + "loss": 4.006353855133057, + "step": 1248 + }, + { + "epoch": 17.34949759720402, + "grad_norm": 0.26899752020835876, + "learning_rate": 0.0006, + "loss": 4.068023681640625, + "step": 1249 + }, + { + "epoch": 17.36347750109218, + "grad_norm": 0.26745253801345825, + "learning_rate": 0.0006, + "loss": 4.031207084655762, + "step": 1250 + }, + { + "epoch": 17.37745740498034, + "grad_norm": 0.21533764898777008, + "learning_rate": 0.0006, + "loss": 4.042410850524902, + "step": 1251 + }, + { + "epoch": 17.3914373088685, + "grad_norm": 0.21958027780056, + "learning_rate": 0.0006, + "loss": 4.02597713470459, + "step": 1252 + }, + { + "epoch": 17.405417212756664, + "grad_norm": 0.263068825006485, + "learning_rate": 0.0006, + "loss": 4.0035905838012695, + "step": 1253 + }, + { + "epoch": 17.419397116644824, + "grad_norm": 0.24044716358184814, + "learning_rate": 0.0006, + "loss": 4.005317687988281, + "step": 1254 + }, + { + "epoch": 17.433377020532983, + "grad_norm": 0.19142559170722961, + "learning_rate": 0.0006, + "loss": 3.9976844787597656, + "step": 1255 + }, + { + "epoch": 17.447356924421143, + "grad_norm": 0.18650250136852264, + "learning_rate": 0.0006, + "loss": 4.031353950500488, + "step": 1256 + }, + { + "epoch": 17.461336828309307, + "grad_norm": 0.1984022557735443, + "learning_rate": 0.0006, + "loss": 4.002097129821777, + "step": 1257 + }, + { + "epoch": 17.475316732197467, + "grad_norm": 0.20087844133377075, + "learning_rate": 0.0006, + "loss": 4.031151294708252, + "step": 1258 + }, + { + "epoch": 17.489296636085626, + "grad_norm": 0.20881228148937225, + "learning_rate": 0.0006, + "loss": 4.034793853759766, + "step": 1259 + }, + { + "epoch": 17.503276539973786, + "grad_norm": 0.23958556354045868, + "learning_rate": 0.0006, + "loss": 4.025238990783691, + "step": 1260 + }, + { + "epoch": 17.51725644386195, + "grad_norm": 0.23927845060825348, + "learning_rate": 0.0006, + "loss": 3.999828338623047, + "step": 1261 + }, + { + "epoch": 17.53123634775011, + "grad_norm": 0.20342715084552765, + "learning_rate": 0.0006, + "loss": 4.054262161254883, + "step": 1262 + }, + { + "epoch": 17.54521625163827, + "grad_norm": 0.21370555460453033, + "learning_rate": 0.0006, + "loss": 4.011582374572754, + "step": 1263 + }, + { + "epoch": 17.55919615552643, + "grad_norm": 0.23681946098804474, + "learning_rate": 0.0006, + "loss": 4.029694080352783, + "step": 1264 + }, + { + "epoch": 17.573176059414592, + "grad_norm": 0.24190311133861542, + "learning_rate": 0.0006, + "loss": 4.018783092498779, + "step": 1265 + }, + { + "epoch": 17.587155963302752, + "grad_norm": 0.23215509951114655, + "learning_rate": 0.0006, + "loss": 4.009703159332275, + "step": 1266 + }, + { + "epoch": 17.601135867190912, + "grad_norm": 0.21122977137565613, + "learning_rate": 0.0006, + "loss": 4.0345659255981445, + "step": 1267 + }, + { + "epoch": 17.615115771079076, + "grad_norm": 0.2075948715209961, + "learning_rate": 0.0006, + "loss": 4.070703506469727, + "step": 1268 + }, + { + "epoch": 17.629095674967235, + "grad_norm": 0.21667909622192383, + "learning_rate": 0.0006, + "loss": 4.020771503448486, + "step": 1269 + }, + { + "epoch": 17.643075578855395, + "grad_norm": 0.20960724353790283, + "learning_rate": 0.0006, + "loss": 4.026404857635498, + "step": 1270 + }, + { + "epoch": 17.657055482743555, + "grad_norm": 0.22575686872005463, + "learning_rate": 0.0006, + "loss": 4.01981258392334, + "step": 1271 + }, + { + "epoch": 17.67103538663172, + "grad_norm": 0.2565988302230835, + "learning_rate": 0.0006, + "loss": 4.015827178955078, + "step": 1272 + }, + { + "epoch": 17.68501529051988, + "grad_norm": 0.24831551313400269, + "learning_rate": 0.0006, + "loss": 4.012457847595215, + "step": 1273 + }, + { + "epoch": 17.698995194408038, + "grad_norm": 0.22595494985580444, + "learning_rate": 0.0006, + "loss": 4.031386375427246, + "step": 1274 + }, + { + "epoch": 17.712975098296198, + "grad_norm": 0.20687322318553925, + "learning_rate": 0.0006, + "loss": 4.014216423034668, + "step": 1275 + }, + { + "epoch": 17.72695500218436, + "grad_norm": 0.21916012465953827, + "learning_rate": 0.0006, + "loss": 4.037643909454346, + "step": 1276 + }, + { + "epoch": 17.74093490607252, + "grad_norm": 0.2243107706308365, + "learning_rate": 0.0006, + "loss": 4.033044815063477, + "step": 1277 + }, + { + "epoch": 17.75491480996068, + "grad_norm": 0.2402164787054062, + "learning_rate": 0.0006, + "loss": 4.026636123657227, + "step": 1278 + }, + { + "epoch": 17.76889471384884, + "grad_norm": 0.27957046031951904, + "learning_rate": 0.0006, + "loss": 4.0270867347717285, + "step": 1279 + }, + { + "epoch": 17.782874617737004, + "grad_norm": 0.27447596192359924, + "learning_rate": 0.0006, + "loss": 4.0120134353637695, + "step": 1280 + }, + { + "epoch": 17.796854521625164, + "grad_norm": 0.26926323771476746, + "learning_rate": 0.0006, + "loss": 4.027970314025879, + "step": 1281 + }, + { + "epoch": 17.810834425513324, + "grad_norm": 0.2535291314125061, + "learning_rate": 0.0006, + "loss": 4.002565383911133, + "step": 1282 + }, + { + "epoch": 17.824814329401484, + "grad_norm": 0.22639447450637817, + "learning_rate": 0.0006, + "loss": 4.032750606536865, + "step": 1283 + }, + { + "epoch": 17.838794233289647, + "grad_norm": 0.23384462296962738, + "learning_rate": 0.0006, + "loss": 4.03568172454834, + "step": 1284 + }, + { + "epoch": 17.852774137177807, + "grad_norm": 0.22971470654010773, + "learning_rate": 0.0006, + "loss": 4.031299591064453, + "step": 1285 + }, + { + "epoch": 17.866754041065967, + "grad_norm": 0.24540141224861145, + "learning_rate": 0.0006, + "loss": 4.0142669677734375, + "step": 1286 + }, + { + "epoch": 17.88073394495413, + "grad_norm": 0.2304888367652893, + "learning_rate": 0.0006, + "loss": 3.9964895248413086, + "step": 1287 + }, + { + "epoch": 17.89471384884229, + "grad_norm": 0.22082284092903137, + "learning_rate": 0.0006, + "loss": 4.024693489074707, + "step": 1288 + }, + { + "epoch": 17.90869375273045, + "grad_norm": 0.23677092790603638, + "learning_rate": 0.0006, + "loss": 4.002082347869873, + "step": 1289 + }, + { + "epoch": 17.92267365661861, + "grad_norm": 0.23122332990169525, + "learning_rate": 0.0006, + "loss": 4.025351524353027, + "step": 1290 + }, + { + "epoch": 17.936653560506773, + "grad_norm": 0.2548119127750397, + "learning_rate": 0.0006, + "loss": 3.9955825805664062, + "step": 1291 + }, + { + "epoch": 17.950633464394933, + "grad_norm": 0.26950931549072266, + "learning_rate": 0.0006, + "loss": 4.026151180267334, + "step": 1292 + }, + { + "epoch": 17.964613368283093, + "grad_norm": 0.3023233711719513, + "learning_rate": 0.0006, + "loss": 4.006035804748535, + "step": 1293 + }, + { + "epoch": 17.978593272171253, + "grad_norm": 0.3190958499908447, + "learning_rate": 0.0006, + "loss": 4.023565292358398, + "step": 1294 + }, + { + "epoch": 17.992573176059416, + "grad_norm": 0.28878068923950195, + "learning_rate": 0.0006, + "loss": 4.020973205566406, + "step": 1295 + }, + { + "epoch": 18.0, + "grad_norm": 0.27312418818473816, + "learning_rate": 0.0006, + "loss": 3.99906587600708, + "step": 1296 + }, + { + "epoch": 18.0, + "eval_loss": 4.224447250366211, + "eval_runtime": 52.5728, + "eval_samples_per_second": 46.45, + "eval_steps_per_second": 2.91, + "step": 1296 + }, + { + "epoch": 18.01397990388816, + "grad_norm": 0.2567712664604187, + "learning_rate": 0.0006, + "loss": 3.9755055904388428, + "step": 1297 + }, + { + "epoch": 18.027959807776323, + "grad_norm": 0.25048133730888367, + "learning_rate": 0.0006, + "loss": 4.009254455566406, + "step": 1298 + }, + { + "epoch": 18.041939711664483, + "grad_norm": 0.2556909918785095, + "learning_rate": 0.0006, + "loss": 4.001235008239746, + "step": 1299 + }, + { + "epoch": 18.055919615552643, + "grad_norm": 0.2501400113105774, + "learning_rate": 0.0006, + "loss": 3.980726480484009, + "step": 1300 + }, + { + "epoch": 18.069899519440803, + "grad_norm": 0.23977792263031006, + "learning_rate": 0.0006, + "loss": 3.964195728302002, + "step": 1301 + }, + { + "epoch": 18.083879423328966, + "grad_norm": 0.25650718808174133, + "learning_rate": 0.0006, + "loss": 4.015914440155029, + "step": 1302 + }, + { + "epoch": 18.097859327217126, + "grad_norm": 0.234053835272789, + "learning_rate": 0.0006, + "loss": 4.0159149169921875, + "step": 1303 + }, + { + "epoch": 18.111839231105286, + "grad_norm": 0.21967713534832, + "learning_rate": 0.0006, + "loss": 4.0055694580078125, + "step": 1304 + }, + { + "epoch": 18.125819134993446, + "grad_norm": 0.21790878474712372, + "learning_rate": 0.0006, + "loss": 3.986253261566162, + "step": 1305 + }, + { + "epoch": 18.13979903888161, + "grad_norm": 0.22955302894115448, + "learning_rate": 0.0006, + "loss": 3.959421157836914, + "step": 1306 + }, + { + "epoch": 18.15377894276977, + "grad_norm": 0.2559174597263336, + "learning_rate": 0.0006, + "loss": 4.0069756507873535, + "step": 1307 + }, + { + "epoch": 18.16775884665793, + "grad_norm": 0.26132866740226746, + "learning_rate": 0.0006, + "loss": 3.9874095916748047, + "step": 1308 + }, + { + "epoch": 18.18173875054609, + "grad_norm": 0.23258940875530243, + "learning_rate": 0.0006, + "loss": 3.9762492179870605, + "step": 1309 + }, + { + "epoch": 18.195718654434252, + "grad_norm": 0.22347190976142883, + "learning_rate": 0.0006, + "loss": 3.9923410415649414, + "step": 1310 + }, + { + "epoch": 18.209698558322412, + "grad_norm": 0.23095804452896118, + "learning_rate": 0.0006, + "loss": 4.019245624542236, + "step": 1311 + }, + { + "epoch": 18.22367846221057, + "grad_norm": 0.24817052483558655, + "learning_rate": 0.0006, + "loss": 3.9697511196136475, + "step": 1312 + }, + { + "epoch": 18.23765836609873, + "grad_norm": 0.2566024959087372, + "learning_rate": 0.0006, + "loss": 3.978804111480713, + "step": 1313 + }, + { + "epoch": 18.251638269986895, + "grad_norm": 0.2527952790260315, + "learning_rate": 0.0006, + "loss": 3.972018241882324, + "step": 1314 + }, + { + "epoch": 18.265618173875055, + "grad_norm": 0.2508150637149811, + "learning_rate": 0.0006, + "loss": 3.9971275329589844, + "step": 1315 + }, + { + "epoch": 18.279598077763215, + "grad_norm": 0.23242022097110748, + "learning_rate": 0.0006, + "loss": 3.9712045192718506, + "step": 1316 + }, + { + "epoch": 18.293577981651374, + "grad_norm": 0.23474404215812683, + "learning_rate": 0.0006, + "loss": 3.9926767349243164, + "step": 1317 + }, + { + "epoch": 18.307557885539538, + "grad_norm": 0.2417769432067871, + "learning_rate": 0.0006, + "loss": 3.9920949935913086, + "step": 1318 + }, + { + "epoch": 18.321537789427698, + "grad_norm": 0.23839452862739563, + "learning_rate": 0.0006, + "loss": 4.016645431518555, + "step": 1319 + }, + { + "epoch": 18.335517693315857, + "grad_norm": 0.2512452304363251, + "learning_rate": 0.0006, + "loss": 3.97586727142334, + "step": 1320 + }, + { + "epoch": 18.34949759720402, + "grad_norm": 0.27503693103790283, + "learning_rate": 0.0006, + "loss": 4.000148773193359, + "step": 1321 + }, + { + "epoch": 18.36347750109218, + "grad_norm": 0.27830836176872253, + "learning_rate": 0.0006, + "loss": 3.9972195625305176, + "step": 1322 + }, + { + "epoch": 18.37745740498034, + "grad_norm": 0.2571812570095062, + "learning_rate": 0.0006, + "loss": 3.9900810718536377, + "step": 1323 + }, + { + "epoch": 18.3914373088685, + "grad_norm": 0.2310052365064621, + "learning_rate": 0.0006, + "loss": 4.003000259399414, + "step": 1324 + }, + { + "epoch": 18.405417212756664, + "grad_norm": 0.19615735113620758, + "learning_rate": 0.0006, + "loss": 3.9536571502685547, + "step": 1325 + }, + { + "epoch": 18.419397116644824, + "grad_norm": 0.21323896944522858, + "learning_rate": 0.0006, + "loss": 3.977508068084717, + "step": 1326 + }, + { + "epoch": 18.433377020532983, + "grad_norm": 0.21404202282428741, + "learning_rate": 0.0006, + "loss": 4.015361785888672, + "step": 1327 + }, + { + "epoch": 18.447356924421143, + "grad_norm": 0.1991959661245346, + "learning_rate": 0.0006, + "loss": 4.000286102294922, + "step": 1328 + }, + { + "epoch": 18.461336828309307, + "grad_norm": 0.2073599398136139, + "learning_rate": 0.0006, + "loss": 3.973065137863159, + "step": 1329 + }, + { + "epoch": 18.475316732197467, + "grad_norm": 0.2096073031425476, + "learning_rate": 0.0006, + "loss": 3.987032890319824, + "step": 1330 + }, + { + "epoch": 18.489296636085626, + "grad_norm": 0.2380610853433609, + "learning_rate": 0.0006, + "loss": 4.035274505615234, + "step": 1331 + }, + { + "epoch": 18.503276539973786, + "grad_norm": 0.23570716381072998, + "learning_rate": 0.0006, + "loss": 4.010516166687012, + "step": 1332 + }, + { + "epoch": 18.51725644386195, + "grad_norm": 0.24805466830730438, + "learning_rate": 0.0006, + "loss": 3.9750983715057373, + "step": 1333 + }, + { + "epoch": 18.53123634775011, + "grad_norm": 0.25173231959342957, + "learning_rate": 0.0006, + "loss": 3.9742345809936523, + "step": 1334 + }, + { + "epoch": 18.54521625163827, + "grad_norm": 0.24590367078781128, + "learning_rate": 0.0006, + "loss": 4.0037312507629395, + "step": 1335 + }, + { + "epoch": 18.55919615552643, + "grad_norm": 0.24379394948482513, + "learning_rate": 0.0006, + "loss": 3.993858814239502, + "step": 1336 + }, + { + "epoch": 18.573176059414592, + "grad_norm": 0.21708883345127106, + "learning_rate": 0.0006, + "loss": 3.965670585632324, + "step": 1337 + }, + { + "epoch": 18.587155963302752, + "grad_norm": 0.21024051308631897, + "learning_rate": 0.0006, + "loss": 3.987551689147949, + "step": 1338 + }, + { + "epoch": 18.601135867190912, + "grad_norm": 0.23376783728599548, + "learning_rate": 0.0006, + "loss": 4.002841472625732, + "step": 1339 + }, + { + "epoch": 18.615115771079076, + "grad_norm": 0.25350701808929443, + "learning_rate": 0.0006, + "loss": 3.9881370067596436, + "step": 1340 + }, + { + "epoch": 18.629095674967235, + "grad_norm": 0.2542140483856201, + "learning_rate": 0.0006, + "loss": 4.003695964813232, + "step": 1341 + }, + { + "epoch": 18.643075578855395, + "grad_norm": 0.22932685911655426, + "learning_rate": 0.0006, + "loss": 4.0146002769470215, + "step": 1342 + }, + { + "epoch": 18.657055482743555, + "grad_norm": 0.21099458634853363, + "learning_rate": 0.0006, + "loss": 3.970472812652588, + "step": 1343 + }, + { + "epoch": 18.67103538663172, + "grad_norm": 0.2234615832567215, + "learning_rate": 0.0006, + "loss": 3.9821488857269287, + "step": 1344 + }, + { + "epoch": 18.68501529051988, + "grad_norm": 0.230327770113945, + "learning_rate": 0.0006, + "loss": 3.996274948120117, + "step": 1345 + }, + { + "epoch": 18.698995194408038, + "grad_norm": 0.23596233129501343, + "learning_rate": 0.0006, + "loss": 3.9747462272644043, + "step": 1346 + }, + { + "epoch": 18.712975098296198, + "grad_norm": 0.24173159897327423, + "learning_rate": 0.0006, + "loss": 4.011804103851318, + "step": 1347 + }, + { + "epoch": 18.72695500218436, + "grad_norm": 0.24087604880332947, + "learning_rate": 0.0006, + "loss": 4.008726119995117, + "step": 1348 + }, + { + "epoch": 18.74093490607252, + "grad_norm": 0.2457292526960373, + "learning_rate": 0.0006, + "loss": 3.990793228149414, + "step": 1349 + }, + { + "epoch": 18.75491480996068, + "grad_norm": 0.22946089506149292, + "learning_rate": 0.0006, + "loss": 3.980494260787964, + "step": 1350 + }, + { + "epoch": 18.76889471384884, + "grad_norm": 0.22986692190170288, + "learning_rate": 0.0006, + "loss": 3.97006893157959, + "step": 1351 + }, + { + "epoch": 18.782874617737004, + "grad_norm": 0.23358555138111115, + "learning_rate": 0.0006, + "loss": 4.008172035217285, + "step": 1352 + }, + { + "epoch": 18.796854521625164, + "grad_norm": 0.20183615386486053, + "learning_rate": 0.0006, + "loss": 3.9720888137817383, + "step": 1353 + }, + { + "epoch": 18.810834425513324, + "grad_norm": 0.19975653290748596, + "learning_rate": 0.0006, + "loss": 3.9783310890197754, + "step": 1354 + }, + { + "epoch": 18.824814329401484, + "grad_norm": 0.18911021947860718, + "learning_rate": 0.0006, + "loss": 3.985982894897461, + "step": 1355 + }, + { + "epoch": 18.838794233289647, + "grad_norm": 0.15984168648719788, + "learning_rate": 0.0006, + "loss": 3.9740548133850098, + "step": 1356 + }, + { + "epoch": 18.852774137177807, + "grad_norm": 0.1755436211824417, + "learning_rate": 0.0006, + "loss": 4.013090133666992, + "step": 1357 + }, + { + "epoch": 18.866754041065967, + "grad_norm": 0.1798417866230011, + "learning_rate": 0.0006, + "loss": 3.997880697250366, + "step": 1358 + }, + { + "epoch": 18.88073394495413, + "grad_norm": 0.20206265151500702, + "learning_rate": 0.0006, + "loss": 3.9892373085021973, + "step": 1359 + }, + { + "epoch": 18.89471384884229, + "grad_norm": 0.23685456812381744, + "learning_rate": 0.0006, + "loss": 3.9909186363220215, + "step": 1360 + }, + { + "epoch": 18.90869375273045, + "grad_norm": 0.26053836941719055, + "learning_rate": 0.0006, + "loss": 4.00327205657959, + "step": 1361 + }, + { + "epoch": 18.92267365661861, + "grad_norm": 0.26215845346450806, + "learning_rate": 0.0006, + "loss": 3.9714717864990234, + "step": 1362 + }, + { + "epoch": 18.936653560506773, + "grad_norm": 0.2433871030807495, + "learning_rate": 0.0006, + "loss": 3.949416160583496, + "step": 1363 + }, + { + "epoch": 18.950633464394933, + "grad_norm": 0.23331883549690247, + "learning_rate": 0.0006, + "loss": 3.980501413345337, + "step": 1364 + }, + { + "epoch": 18.964613368283093, + "grad_norm": 0.2346954047679901, + "learning_rate": 0.0006, + "loss": 3.9974493980407715, + "step": 1365 + }, + { + "epoch": 18.978593272171253, + "grad_norm": 0.25101345777511597, + "learning_rate": 0.0006, + "loss": 3.9800148010253906, + "step": 1366 + }, + { + "epoch": 18.992573176059416, + "grad_norm": 0.26811933517456055, + "learning_rate": 0.0006, + "loss": 4.0065741539001465, + "step": 1367 + }, + { + "epoch": 19.0, + "grad_norm": 0.2731736898422241, + "learning_rate": 0.0006, + "loss": 4.014575481414795, + "step": 1368 + }, + { + "epoch": 19.0, + "eval_loss": 4.200716972351074, + "eval_runtime": 44.6962, + "eval_samples_per_second": 54.636, + "eval_steps_per_second": 3.423, + "step": 1368 + }, + { + "epoch": 19.01397990388816, + "grad_norm": 0.2517746686935425, + "learning_rate": 0.0006, + "loss": 3.9486539363861084, + "step": 1369 + }, + { + "epoch": 19.027959807776323, + "grad_norm": 0.2482699453830719, + "learning_rate": 0.0006, + "loss": 3.95015287399292, + "step": 1370 + }, + { + "epoch": 19.041939711664483, + "grad_norm": 0.21693618595600128, + "learning_rate": 0.0006, + "loss": 3.970022201538086, + "step": 1371 + }, + { + "epoch": 19.055919615552643, + "grad_norm": 0.2035159319639206, + "learning_rate": 0.0006, + "loss": 3.941457748413086, + "step": 1372 + }, + { + "epoch": 19.069899519440803, + "grad_norm": 0.2201429009437561, + "learning_rate": 0.0006, + "loss": 3.946794033050537, + "step": 1373 + }, + { + "epoch": 19.083879423328966, + "grad_norm": 0.22910255193710327, + "learning_rate": 0.0006, + "loss": 3.94606876373291, + "step": 1374 + }, + { + "epoch": 19.097859327217126, + "grad_norm": 0.22378197312355042, + "learning_rate": 0.0006, + "loss": 3.957899570465088, + "step": 1375 + }, + { + "epoch": 19.111839231105286, + "grad_norm": 0.21728114783763885, + "learning_rate": 0.0006, + "loss": 3.9565982818603516, + "step": 1376 + }, + { + "epoch": 19.125819134993446, + "grad_norm": 0.21887634694576263, + "learning_rate": 0.0006, + "loss": 3.9649534225463867, + "step": 1377 + }, + { + "epoch": 19.13979903888161, + "grad_norm": 0.21892991662025452, + "learning_rate": 0.0006, + "loss": 3.971388101577759, + "step": 1378 + }, + { + "epoch": 19.15377894276977, + "grad_norm": 0.24582402408123016, + "learning_rate": 0.0006, + "loss": 3.9370944499969482, + "step": 1379 + }, + { + "epoch": 19.16775884665793, + "grad_norm": 0.27547118067741394, + "learning_rate": 0.0006, + "loss": 3.939406156539917, + "step": 1380 + }, + { + "epoch": 19.18173875054609, + "grad_norm": 0.3131563365459442, + "learning_rate": 0.0006, + "loss": 3.942620277404785, + "step": 1381 + }, + { + "epoch": 19.195718654434252, + "grad_norm": 0.3211703598499298, + "learning_rate": 0.0006, + "loss": 3.9388349056243896, + "step": 1382 + }, + { + "epoch": 19.209698558322412, + "grad_norm": 0.2791919410228729, + "learning_rate": 0.0006, + "loss": 3.9827399253845215, + "step": 1383 + }, + { + "epoch": 19.22367846221057, + "grad_norm": 0.2872016727924347, + "learning_rate": 0.0006, + "loss": 3.976715087890625, + "step": 1384 + }, + { + "epoch": 19.23765836609873, + "grad_norm": 0.2790389060974121, + "learning_rate": 0.0006, + "loss": 3.952850818634033, + "step": 1385 + }, + { + "epoch": 19.251638269986895, + "grad_norm": 0.31903740763664246, + "learning_rate": 0.0006, + "loss": 3.964506149291992, + "step": 1386 + }, + { + "epoch": 19.265618173875055, + "grad_norm": 0.31013646721839905, + "learning_rate": 0.0006, + "loss": 3.967219352722168, + "step": 1387 + }, + { + "epoch": 19.279598077763215, + "grad_norm": 0.2574339509010315, + "learning_rate": 0.0006, + "loss": 3.979168176651001, + "step": 1388 + }, + { + "epoch": 19.293577981651374, + "grad_norm": 0.24621108174324036, + "learning_rate": 0.0006, + "loss": 3.981734275817871, + "step": 1389 + }, + { + "epoch": 19.307557885539538, + "grad_norm": 0.25113818049430847, + "learning_rate": 0.0006, + "loss": 3.9787755012512207, + "step": 1390 + }, + { + "epoch": 19.321537789427698, + "grad_norm": 0.259971022605896, + "learning_rate": 0.0006, + "loss": 3.9648823738098145, + "step": 1391 + }, + { + "epoch": 19.335517693315857, + "grad_norm": 0.22580404579639435, + "learning_rate": 0.0006, + "loss": 3.9658002853393555, + "step": 1392 + }, + { + "epoch": 19.34949759720402, + "grad_norm": 0.2133680284023285, + "learning_rate": 0.0006, + "loss": 3.9615914821624756, + "step": 1393 + }, + { + "epoch": 19.36347750109218, + "grad_norm": 0.2387680858373642, + "learning_rate": 0.0006, + "loss": 3.993811845779419, + "step": 1394 + }, + { + "epoch": 19.37745740498034, + "grad_norm": 0.26086220145225525, + "learning_rate": 0.0006, + "loss": 3.932701826095581, + "step": 1395 + }, + { + "epoch": 19.3914373088685, + "grad_norm": 0.23255233466625214, + "learning_rate": 0.0006, + "loss": 3.8969321250915527, + "step": 1396 + }, + { + "epoch": 19.405417212756664, + "grad_norm": 0.22894541919231415, + "learning_rate": 0.0006, + "loss": 3.9569311141967773, + "step": 1397 + }, + { + "epoch": 19.419397116644824, + "grad_norm": 0.2254200130701065, + "learning_rate": 0.0006, + "loss": 3.953199863433838, + "step": 1398 + }, + { + "epoch": 19.433377020532983, + "grad_norm": 0.25802481174468994, + "learning_rate": 0.0006, + "loss": 3.9714815616607666, + "step": 1399 + }, + { + "epoch": 19.447356924421143, + "grad_norm": 0.24725162982940674, + "learning_rate": 0.0006, + "loss": 3.957339286804199, + "step": 1400 + }, + { + "epoch": 19.461336828309307, + "grad_norm": 0.2162018120288849, + "learning_rate": 0.0006, + "loss": 3.986801862716675, + "step": 1401 + }, + { + "epoch": 19.475316732197467, + "grad_norm": 0.21530906856060028, + "learning_rate": 0.0006, + "loss": 3.9766759872436523, + "step": 1402 + }, + { + "epoch": 19.489296636085626, + "grad_norm": 0.20260323584079742, + "learning_rate": 0.0006, + "loss": 3.9576425552368164, + "step": 1403 + }, + { + "epoch": 19.503276539973786, + "grad_norm": 0.188974529504776, + "learning_rate": 0.0006, + "loss": 3.9852395057678223, + "step": 1404 + }, + { + "epoch": 19.51725644386195, + "grad_norm": 0.19727374613285065, + "learning_rate": 0.0006, + "loss": 3.972484588623047, + "step": 1405 + }, + { + "epoch": 19.53123634775011, + "grad_norm": 0.23708008229732513, + "learning_rate": 0.0006, + "loss": 3.992471694946289, + "step": 1406 + }, + { + "epoch": 19.54521625163827, + "grad_norm": 0.23783449828624725, + "learning_rate": 0.0006, + "loss": 3.9788265228271484, + "step": 1407 + }, + { + "epoch": 19.55919615552643, + "grad_norm": 0.24744364619255066, + "learning_rate": 0.0006, + "loss": 3.9559011459350586, + "step": 1408 + }, + { + "epoch": 19.573176059414592, + "grad_norm": 0.24828094244003296, + "learning_rate": 0.0006, + "loss": 3.9663949012756348, + "step": 1409 + }, + { + "epoch": 19.587155963302752, + "grad_norm": 0.2681315541267395, + "learning_rate": 0.0006, + "loss": 3.9581191539764404, + "step": 1410 + }, + { + "epoch": 19.601135867190912, + "grad_norm": 0.2691532373428345, + "learning_rate": 0.0006, + "loss": 3.9832754135131836, + "step": 1411 + }, + { + "epoch": 19.615115771079076, + "grad_norm": 0.2900252640247345, + "learning_rate": 0.0006, + "loss": 3.984365940093994, + "step": 1412 + }, + { + "epoch": 19.629095674967235, + "grad_norm": 0.3194943070411682, + "learning_rate": 0.0006, + "loss": 3.9856505393981934, + "step": 1413 + }, + { + "epoch": 19.643075578855395, + "grad_norm": 0.3029029071331024, + "learning_rate": 0.0006, + "loss": 3.968992233276367, + "step": 1414 + }, + { + "epoch": 19.657055482743555, + "grad_norm": 0.2658176124095917, + "learning_rate": 0.0006, + "loss": 3.995187282562256, + "step": 1415 + }, + { + "epoch": 19.67103538663172, + "grad_norm": 0.26807504892349243, + "learning_rate": 0.0006, + "loss": 3.9756274223327637, + "step": 1416 + }, + { + "epoch": 19.68501529051988, + "grad_norm": 0.27718642354011536, + "learning_rate": 0.0006, + "loss": 3.9510018825531006, + "step": 1417 + }, + { + "epoch": 19.698995194408038, + "grad_norm": 0.26322051882743835, + "learning_rate": 0.0006, + "loss": 3.965155601501465, + "step": 1418 + }, + { + "epoch": 19.712975098296198, + "grad_norm": 0.2566570043563843, + "learning_rate": 0.0006, + "loss": 3.984218120574951, + "step": 1419 + }, + { + "epoch": 19.72695500218436, + "grad_norm": 0.2218743860721588, + "learning_rate": 0.0006, + "loss": 3.9338784217834473, + "step": 1420 + }, + { + "epoch": 19.74093490607252, + "grad_norm": 0.22894173860549927, + "learning_rate": 0.0006, + "loss": 3.9869046211242676, + "step": 1421 + }, + { + "epoch": 19.75491480996068, + "grad_norm": 0.26837027072906494, + "learning_rate": 0.0006, + "loss": 3.96799898147583, + "step": 1422 + }, + { + "epoch": 19.76889471384884, + "grad_norm": 0.2767876982688904, + "learning_rate": 0.0006, + "loss": 3.9431071281433105, + "step": 1423 + }, + { + "epoch": 19.782874617737004, + "grad_norm": 0.24402284622192383, + "learning_rate": 0.0006, + "loss": 3.9631881713867188, + "step": 1424 + }, + { + "epoch": 19.796854521625164, + "grad_norm": 0.23500724136829376, + "learning_rate": 0.0006, + "loss": 3.9943337440490723, + "step": 1425 + }, + { + "epoch": 19.810834425513324, + "grad_norm": 0.22509142756462097, + "learning_rate": 0.0006, + "loss": 3.961226224899292, + "step": 1426 + }, + { + "epoch": 19.824814329401484, + "grad_norm": 0.23524795472621918, + "learning_rate": 0.0006, + "loss": 3.9552102088928223, + "step": 1427 + }, + { + "epoch": 19.838794233289647, + "grad_norm": 0.22307050228118896, + "learning_rate": 0.0006, + "loss": 3.9623494148254395, + "step": 1428 + }, + { + "epoch": 19.852774137177807, + "grad_norm": 0.21144486963748932, + "learning_rate": 0.0006, + "loss": 3.9620237350463867, + "step": 1429 + }, + { + "epoch": 19.866754041065967, + "grad_norm": 0.20249812304973602, + "learning_rate": 0.0006, + "loss": 3.953911066055298, + "step": 1430 + }, + { + "epoch": 19.88073394495413, + "grad_norm": 0.2350354939699173, + "learning_rate": 0.0006, + "loss": 3.9616730213165283, + "step": 1431 + }, + { + "epoch": 19.89471384884229, + "grad_norm": 0.2566683292388916, + "learning_rate": 0.0006, + "loss": 3.9372501373291016, + "step": 1432 + }, + { + "epoch": 19.90869375273045, + "grad_norm": 0.2520846128463745, + "learning_rate": 0.0006, + "loss": 3.9814648628234863, + "step": 1433 + }, + { + "epoch": 19.92267365661861, + "grad_norm": 0.23989640176296234, + "learning_rate": 0.0006, + "loss": 3.9692864418029785, + "step": 1434 + }, + { + "epoch": 19.936653560506773, + "grad_norm": 0.20650425553321838, + "learning_rate": 0.0006, + "loss": 3.960256814956665, + "step": 1435 + }, + { + "epoch": 19.950633464394933, + "grad_norm": 0.20478376746177673, + "learning_rate": 0.0006, + "loss": 3.9585227966308594, + "step": 1436 + }, + { + "epoch": 19.964613368283093, + "grad_norm": 0.234436497092247, + "learning_rate": 0.0006, + "loss": 3.945631742477417, + "step": 1437 + }, + { + "epoch": 19.978593272171253, + "grad_norm": 0.19969749450683594, + "learning_rate": 0.0006, + "loss": 3.9646050930023193, + "step": 1438 + }, + { + "epoch": 19.992573176059416, + "grad_norm": 0.20638690888881683, + "learning_rate": 0.0006, + "loss": 3.9461846351623535, + "step": 1439 + }, + { + "epoch": 20.0, + "grad_norm": 0.2120274156332016, + "learning_rate": 0.0006, + "loss": 3.965153217315674, + "step": 1440 + }, + { + "epoch": 20.0, + "eval_loss": 4.168524742126465, + "eval_runtime": 44.2796, + "eval_samples_per_second": 55.15, + "eval_steps_per_second": 3.455, + "step": 1440 + }, + { + "epoch": 20.01397990388816, + "grad_norm": 0.19704894721508026, + "learning_rate": 0.0006, + "loss": 3.937016248703003, + "step": 1441 + }, + { + "epoch": 20.027959807776323, + "grad_norm": 0.18682368099689484, + "learning_rate": 0.0006, + "loss": 3.895922899246216, + "step": 1442 + }, + { + "epoch": 20.041939711664483, + "grad_norm": 0.18982571363449097, + "learning_rate": 0.0006, + "loss": 3.929841995239258, + "step": 1443 + }, + { + "epoch": 20.055919615552643, + "grad_norm": 0.20811910927295685, + "learning_rate": 0.0006, + "loss": 3.9498324394226074, + "step": 1444 + }, + { + "epoch": 20.069899519440803, + "grad_norm": 0.2149062603712082, + "learning_rate": 0.0006, + "loss": 3.929853916168213, + "step": 1445 + }, + { + "epoch": 20.083879423328966, + "grad_norm": 0.20016685128211975, + "learning_rate": 0.0006, + "loss": 3.9374136924743652, + "step": 1446 + }, + { + "epoch": 20.097859327217126, + "grad_norm": 0.19969616830348969, + "learning_rate": 0.0006, + "loss": 3.932447910308838, + "step": 1447 + }, + { + "epoch": 20.111839231105286, + "grad_norm": 0.2163356989622116, + "learning_rate": 0.0006, + "loss": 3.9325437545776367, + "step": 1448 + }, + { + "epoch": 20.125819134993446, + "grad_norm": 0.22026969492435455, + "learning_rate": 0.0006, + "loss": 3.9118852615356445, + "step": 1449 + }, + { + "epoch": 20.13979903888161, + "grad_norm": 0.23337116837501526, + "learning_rate": 0.0006, + "loss": 3.9416019916534424, + "step": 1450 + }, + { + "epoch": 20.15377894276977, + "grad_norm": 0.23971447348594666, + "learning_rate": 0.0006, + "loss": 3.9416871070861816, + "step": 1451 + }, + { + "epoch": 20.16775884665793, + "grad_norm": 0.25973960757255554, + "learning_rate": 0.0006, + "loss": 3.93826961517334, + "step": 1452 + }, + { + "epoch": 20.18173875054609, + "grad_norm": 0.2303445190191269, + "learning_rate": 0.0006, + "loss": 3.909383535385132, + "step": 1453 + }, + { + "epoch": 20.195718654434252, + "grad_norm": 0.21090206503868103, + "learning_rate": 0.0006, + "loss": 3.935939311981201, + "step": 1454 + }, + { + "epoch": 20.209698558322412, + "grad_norm": 0.2278691977262497, + "learning_rate": 0.0006, + "loss": 3.9623684883117676, + "step": 1455 + }, + { + "epoch": 20.22367846221057, + "grad_norm": 0.22291512787342072, + "learning_rate": 0.0006, + "loss": 3.9386210441589355, + "step": 1456 + }, + { + "epoch": 20.23765836609873, + "grad_norm": 0.2385793924331665, + "learning_rate": 0.0006, + "loss": 3.927365303039551, + "step": 1457 + }, + { + "epoch": 20.251638269986895, + "grad_norm": 0.23949867486953735, + "learning_rate": 0.0006, + "loss": 3.956698179244995, + "step": 1458 + }, + { + "epoch": 20.265618173875055, + "grad_norm": 0.2232269048690796, + "learning_rate": 0.0006, + "loss": 3.9465065002441406, + "step": 1459 + }, + { + "epoch": 20.279598077763215, + "grad_norm": 0.22286680340766907, + "learning_rate": 0.0006, + "loss": 3.9102284908294678, + "step": 1460 + }, + { + "epoch": 20.293577981651374, + "grad_norm": 0.24039050936698914, + "learning_rate": 0.0006, + "loss": 3.928055763244629, + "step": 1461 + }, + { + "epoch": 20.307557885539538, + "grad_norm": 0.2532738447189331, + "learning_rate": 0.0006, + "loss": 3.931753635406494, + "step": 1462 + }, + { + "epoch": 20.321537789427698, + "grad_norm": 0.2206273376941681, + "learning_rate": 0.0006, + "loss": 3.936119556427002, + "step": 1463 + }, + { + "epoch": 20.335517693315857, + "grad_norm": 0.20918945968151093, + "learning_rate": 0.0006, + "loss": 3.9228529930114746, + "step": 1464 + }, + { + "epoch": 20.34949759720402, + "grad_norm": 0.2324502319097519, + "learning_rate": 0.0006, + "loss": 3.9370768070220947, + "step": 1465 + }, + { + "epoch": 20.36347750109218, + "grad_norm": 0.26811033487319946, + "learning_rate": 0.0006, + "loss": 3.968515396118164, + "step": 1466 + }, + { + "epoch": 20.37745740498034, + "grad_norm": 0.2896045744419098, + "learning_rate": 0.0006, + "loss": 3.945124626159668, + "step": 1467 + }, + { + "epoch": 20.3914373088685, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 3.9399516582489014, + "step": 1468 + }, + { + "epoch": 20.405417212756664, + "grad_norm": 0.3076821565628052, + "learning_rate": 0.0006, + "loss": 3.9545583724975586, + "step": 1469 + }, + { + "epoch": 20.419397116644824, + "grad_norm": 0.3019449710845947, + "learning_rate": 0.0006, + "loss": 3.9502270221710205, + "step": 1470 + }, + { + "epoch": 20.433377020532983, + "grad_norm": 0.31832560896873474, + "learning_rate": 0.0006, + "loss": 3.940439224243164, + "step": 1471 + }, + { + "epoch": 20.447356924421143, + "grad_norm": 0.30303657054901123, + "learning_rate": 0.0006, + "loss": 3.9451770782470703, + "step": 1472 + }, + { + "epoch": 20.461336828309307, + "grad_norm": 0.28122979402542114, + "learning_rate": 0.0006, + "loss": 3.934508800506592, + "step": 1473 + }, + { + "epoch": 20.475316732197467, + "grad_norm": 0.27013441920280457, + "learning_rate": 0.0006, + "loss": 3.924323081970215, + "step": 1474 + }, + { + "epoch": 20.489296636085626, + "grad_norm": 0.29052063822746277, + "learning_rate": 0.0006, + "loss": 3.970916748046875, + "step": 1475 + }, + { + "epoch": 20.503276539973786, + "grad_norm": 0.2871626913547516, + "learning_rate": 0.0006, + "loss": 3.945425033569336, + "step": 1476 + }, + { + "epoch": 20.51725644386195, + "grad_norm": 0.2396184206008911, + "learning_rate": 0.0006, + "loss": 3.964290142059326, + "step": 1477 + }, + { + "epoch": 20.53123634775011, + "grad_norm": 0.21942107379436493, + "learning_rate": 0.0006, + "loss": 3.910101890563965, + "step": 1478 + }, + { + "epoch": 20.54521625163827, + "grad_norm": 0.22193685173988342, + "learning_rate": 0.0006, + "loss": 3.914005756378174, + "step": 1479 + }, + { + "epoch": 20.55919615552643, + "grad_norm": 0.20207515358924866, + "learning_rate": 0.0006, + "loss": 3.9575581550598145, + "step": 1480 + }, + { + "epoch": 20.573176059414592, + "grad_norm": 0.17855247855186462, + "learning_rate": 0.0006, + "loss": 3.941490411758423, + "step": 1481 + }, + { + "epoch": 20.587155963302752, + "grad_norm": 0.21268485486507416, + "learning_rate": 0.0006, + "loss": 3.94045352935791, + "step": 1482 + }, + { + "epoch": 20.601135867190912, + "grad_norm": 0.24890053272247314, + "learning_rate": 0.0006, + "loss": 3.932961940765381, + "step": 1483 + }, + { + "epoch": 20.615115771079076, + "grad_norm": 0.23771314322948456, + "learning_rate": 0.0006, + "loss": 3.9067630767822266, + "step": 1484 + }, + { + "epoch": 20.629095674967235, + "grad_norm": 0.20990237593650818, + "learning_rate": 0.0006, + "loss": 3.9476752281188965, + "step": 1485 + }, + { + "epoch": 20.643075578855395, + "grad_norm": 0.20058798789978027, + "learning_rate": 0.0006, + "loss": 3.9350547790527344, + "step": 1486 + }, + { + "epoch": 20.657055482743555, + "grad_norm": 0.1953001767396927, + "learning_rate": 0.0006, + "loss": 3.9437222480773926, + "step": 1487 + }, + { + "epoch": 20.67103538663172, + "grad_norm": 0.18748535215854645, + "learning_rate": 0.0006, + "loss": 3.9336047172546387, + "step": 1488 + }, + { + "epoch": 20.68501529051988, + "grad_norm": 0.18874801695346832, + "learning_rate": 0.0006, + "loss": 3.9042580127716064, + "step": 1489 + }, + { + "epoch": 20.698995194408038, + "grad_norm": 0.1844169795513153, + "learning_rate": 0.0006, + "loss": 3.9302420616149902, + "step": 1490 + }, + { + "epoch": 20.712975098296198, + "grad_norm": 0.18519413471221924, + "learning_rate": 0.0006, + "loss": 3.9527437686920166, + "step": 1491 + }, + { + "epoch": 20.72695500218436, + "grad_norm": 0.20084598660469055, + "learning_rate": 0.0006, + "loss": 3.9161760807037354, + "step": 1492 + }, + { + "epoch": 20.74093490607252, + "grad_norm": 0.2015734612941742, + "learning_rate": 0.0006, + "loss": 3.9466545581817627, + "step": 1493 + }, + { + "epoch": 20.75491480996068, + "grad_norm": 0.2210122048854828, + "learning_rate": 0.0006, + "loss": 3.8994693756103516, + "step": 1494 + }, + { + "epoch": 20.76889471384884, + "grad_norm": 0.23019762337207794, + "learning_rate": 0.0006, + "loss": 3.93685245513916, + "step": 1495 + }, + { + "epoch": 20.782874617737004, + "grad_norm": 0.21246281266212463, + "learning_rate": 0.0006, + "loss": 3.9499399662017822, + "step": 1496 + }, + { + "epoch": 20.796854521625164, + "grad_norm": 0.21142810583114624, + "learning_rate": 0.0006, + "loss": 3.9317150115966797, + "step": 1497 + }, + { + "epoch": 20.810834425513324, + "grad_norm": 0.20230524241924286, + "learning_rate": 0.0006, + "loss": 3.9389750957489014, + "step": 1498 + }, + { + "epoch": 20.824814329401484, + "grad_norm": 0.21096977591514587, + "learning_rate": 0.0006, + "loss": 3.9325194358825684, + "step": 1499 + }, + { + "epoch": 20.838794233289647, + "grad_norm": 0.2309989333152771, + "learning_rate": 0.0006, + "loss": 3.943641185760498, + "step": 1500 + }, + { + "epoch": 20.852774137177807, + "grad_norm": 0.2016306221485138, + "learning_rate": 0.0006, + "loss": 3.986043930053711, + "step": 1501 + }, + { + "epoch": 20.866754041065967, + "grad_norm": 0.2107970118522644, + "learning_rate": 0.0006, + "loss": 3.9219160079956055, + "step": 1502 + }, + { + "epoch": 20.88073394495413, + "grad_norm": 0.21580125391483307, + "learning_rate": 0.0006, + "loss": 3.942014694213867, + "step": 1503 + }, + { + "epoch": 20.89471384884229, + "grad_norm": 0.21348726749420166, + "learning_rate": 0.0006, + "loss": 3.9389920234680176, + "step": 1504 + }, + { + "epoch": 20.90869375273045, + "grad_norm": 0.23094943165779114, + "learning_rate": 0.0006, + "loss": 3.952993392944336, + "step": 1505 + }, + { + "epoch": 20.92267365661861, + "grad_norm": 0.22431740164756775, + "learning_rate": 0.0006, + "loss": 3.897671937942505, + "step": 1506 + }, + { + "epoch": 20.936653560506773, + "grad_norm": 0.20056353509426117, + "learning_rate": 0.0006, + "loss": 3.9100005626678467, + "step": 1507 + }, + { + "epoch": 20.950633464394933, + "grad_norm": 0.20604434609413147, + "learning_rate": 0.0006, + "loss": 3.9486045837402344, + "step": 1508 + }, + { + "epoch": 20.964613368283093, + "grad_norm": 0.22979380190372467, + "learning_rate": 0.0006, + "loss": 3.977163553237915, + "step": 1509 + }, + { + "epoch": 20.978593272171253, + "grad_norm": 0.2421523779630661, + "learning_rate": 0.0006, + "loss": 3.9216256141662598, + "step": 1510 + }, + { + "epoch": 20.992573176059416, + "grad_norm": 0.25776705145835876, + "learning_rate": 0.0006, + "loss": 3.9221739768981934, + "step": 1511 + }, + { + "epoch": 21.0, + "grad_norm": 0.2750694751739502, + "learning_rate": 0.0006, + "loss": 3.938098907470703, + "step": 1512 + }, + { + "epoch": 21.0, + "eval_loss": 4.159763336181641, + "eval_runtime": 44.8663, + "eval_samples_per_second": 54.428, + "eval_steps_per_second": 3.41, + "step": 1512 + }, + { + "epoch": 21.01397990388816, + "grad_norm": 0.24513043463230133, + "learning_rate": 0.0006, + "loss": 3.8939385414123535, + "step": 1513 + }, + { + "epoch": 21.027959807776323, + "grad_norm": 0.22209352254867554, + "learning_rate": 0.0006, + "loss": 3.9044857025146484, + "step": 1514 + }, + { + "epoch": 21.041939711664483, + "grad_norm": 0.22437648475170135, + "learning_rate": 0.0006, + "loss": 3.9325196743011475, + "step": 1515 + }, + { + "epoch": 21.055919615552643, + "grad_norm": 0.21168062090873718, + "learning_rate": 0.0006, + "loss": 3.882176637649536, + "step": 1516 + }, + { + "epoch": 21.069899519440803, + "grad_norm": 0.22334499657154083, + "learning_rate": 0.0006, + "loss": 3.8978934288024902, + "step": 1517 + }, + { + "epoch": 21.083879423328966, + "grad_norm": 0.21038010716438293, + "learning_rate": 0.0006, + "loss": 3.8807029724121094, + "step": 1518 + }, + { + "epoch": 21.097859327217126, + "grad_norm": 0.2243613600730896, + "learning_rate": 0.0006, + "loss": 3.924865961074829, + "step": 1519 + }, + { + "epoch": 21.111839231105286, + "grad_norm": 0.2535616159439087, + "learning_rate": 0.0006, + "loss": 3.9288227558135986, + "step": 1520 + }, + { + "epoch": 21.125819134993446, + "grad_norm": 0.2782756984233856, + "learning_rate": 0.0006, + "loss": 3.908233642578125, + "step": 1521 + }, + { + "epoch": 21.13979903888161, + "grad_norm": 0.2586214542388916, + "learning_rate": 0.0006, + "loss": 3.9151182174682617, + "step": 1522 + }, + { + "epoch": 21.15377894276977, + "grad_norm": 0.22465091943740845, + "learning_rate": 0.0006, + "loss": 3.9209084510803223, + "step": 1523 + }, + { + "epoch": 21.16775884665793, + "grad_norm": 0.2588018774986267, + "learning_rate": 0.0006, + "loss": 3.9295971393585205, + "step": 1524 + }, + { + "epoch": 21.18173875054609, + "grad_norm": 0.2637675702571869, + "learning_rate": 0.0006, + "loss": 3.9353199005126953, + "step": 1525 + }, + { + "epoch": 21.195718654434252, + "grad_norm": 0.2806383967399597, + "learning_rate": 0.0006, + "loss": 3.922337770462036, + "step": 1526 + }, + { + "epoch": 21.209698558322412, + "grad_norm": 0.27103501558303833, + "learning_rate": 0.0006, + "loss": 3.8811073303222656, + "step": 1527 + }, + { + "epoch": 21.22367846221057, + "grad_norm": 0.27203720808029175, + "learning_rate": 0.0006, + "loss": 3.9036178588867188, + "step": 1528 + }, + { + "epoch": 21.23765836609873, + "grad_norm": 0.2783355712890625, + "learning_rate": 0.0006, + "loss": 3.885456085205078, + "step": 1529 + }, + { + "epoch": 21.251638269986895, + "grad_norm": 0.2884930968284607, + "learning_rate": 0.0006, + "loss": 3.8936941623687744, + "step": 1530 + }, + { + "epoch": 21.265618173875055, + "grad_norm": 0.2829558849334717, + "learning_rate": 0.0006, + "loss": 3.927624225616455, + "step": 1531 + }, + { + "epoch": 21.279598077763215, + "grad_norm": 0.2809497117996216, + "learning_rate": 0.0006, + "loss": 3.8896753787994385, + "step": 1532 + }, + { + "epoch": 21.293577981651374, + "grad_norm": 0.27037671208381653, + "learning_rate": 0.0006, + "loss": 3.91316294670105, + "step": 1533 + }, + { + "epoch": 21.307557885539538, + "grad_norm": 0.310051292181015, + "learning_rate": 0.0006, + "loss": 3.9137332439422607, + "step": 1534 + }, + { + "epoch": 21.321537789427698, + "grad_norm": 0.30489876866340637, + "learning_rate": 0.0006, + "loss": 3.9088284969329834, + "step": 1535 + }, + { + "epoch": 21.335517693315857, + "grad_norm": 0.2607756555080414, + "learning_rate": 0.0006, + "loss": 3.9097847938537598, + "step": 1536 + }, + { + "epoch": 21.34949759720402, + "grad_norm": 0.2460775375366211, + "learning_rate": 0.0006, + "loss": 3.941211700439453, + "step": 1537 + }, + { + "epoch": 21.36347750109218, + "grad_norm": 0.24271734058856964, + "learning_rate": 0.0006, + "loss": 3.9140594005584717, + "step": 1538 + }, + { + "epoch": 21.37745740498034, + "grad_norm": 0.20012645423412323, + "learning_rate": 0.0006, + "loss": 3.888446807861328, + "step": 1539 + }, + { + "epoch": 21.3914373088685, + "grad_norm": 0.2196308672428131, + "learning_rate": 0.0006, + "loss": 3.9153785705566406, + "step": 1540 + }, + { + "epoch": 21.405417212756664, + "grad_norm": 0.22184589505195618, + "learning_rate": 0.0006, + "loss": 3.91996431350708, + "step": 1541 + }, + { + "epoch": 21.419397116644824, + "grad_norm": 0.22947315871715546, + "learning_rate": 0.0006, + "loss": 3.9268412590026855, + "step": 1542 + }, + { + "epoch": 21.433377020532983, + "grad_norm": 0.22275054454803467, + "learning_rate": 0.0006, + "loss": 3.909275531768799, + "step": 1543 + }, + { + "epoch": 21.447356924421143, + "grad_norm": 0.23103971779346466, + "learning_rate": 0.0006, + "loss": 3.925635814666748, + "step": 1544 + }, + { + "epoch": 21.461336828309307, + "grad_norm": 0.23379720747470856, + "learning_rate": 0.0006, + "loss": 3.926647186279297, + "step": 1545 + }, + { + "epoch": 21.475316732197467, + "grad_norm": 0.2244282215833664, + "learning_rate": 0.0006, + "loss": 3.9428000450134277, + "step": 1546 + }, + { + "epoch": 21.489296636085626, + "grad_norm": 0.22773298621177673, + "learning_rate": 0.0006, + "loss": 3.9378256797790527, + "step": 1547 + }, + { + "epoch": 21.503276539973786, + "grad_norm": 0.1918657273054123, + "learning_rate": 0.0006, + "loss": 3.904022216796875, + "step": 1548 + }, + { + "epoch": 21.51725644386195, + "grad_norm": 0.18415570259094238, + "learning_rate": 0.0006, + "loss": 3.9105122089385986, + "step": 1549 + }, + { + "epoch": 21.53123634775011, + "grad_norm": 0.22141380608081818, + "learning_rate": 0.0006, + "loss": 3.9153857231140137, + "step": 1550 + }, + { + "epoch": 21.54521625163827, + "grad_norm": 0.22533352673053741, + "learning_rate": 0.0006, + "loss": 3.9148974418640137, + "step": 1551 + }, + { + "epoch": 21.55919615552643, + "grad_norm": 0.2124762088060379, + "learning_rate": 0.0006, + "loss": 3.926311731338501, + "step": 1552 + }, + { + "epoch": 21.573176059414592, + "grad_norm": 0.239680215716362, + "learning_rate": 0.0006, + "loss": 3.9260334968566895, + "step": 1553 + }, + { + "epoch": 21.587155963302752, + "grad_norm": 0.24158740043640137, + "learning_rate": 0.0006, + "loss": 3.933223247528076, + "step": 1554 + }, + { + "epoch": 21.601135867190912, + "grad_norm": 0.2216576784849167, + "learning_rate": 0.0006, + "loss": 3.9065442085266113, + "step": 1555 + }, + { + "epoch": 21.615115771079076, + "grad_norm": 0.20099912583827972, + "learning_rate": 0.0006, + "loss": 3.923278570175171, + "step": 1556 + }, + { + "epoch": 21.629095674967235, + "grad_norm": 0.2337288111448288, + "learning_rate": 0.0006, + "loss": 3.92032527923584, + "step": 1557 + }, + { + "epoch": 21.643075578855395, + "grad_norm": 0.23574814200401306, + "learning_rate": 0.0006, + "loss": 3.896244525909424, + "step": 1558 + }, + { + "epoch": 21.657055482743555, + "grad_norm": 0.21338573098182678, + "learning_rate": 0.0006, + "loss": 3.930345058441162, + "step": 1559 + }, + { + "epoch": 21.67103538663172, + "grad_norm": 0.2375067174434662, + "learning_rate": 0.0006, + "loss": 3.864104986190796, + "step": 1560 + }, + { + "epoch": 21.68501529051988, + "grad_norm": 0.22490349411964417, + "learning_rate": 0.0006, + "loss": 3.883296012878418, + "step": 1561 + }, + { + "epoch": 21.698995194408038, + "grad_norm": 0.23021313548088074, + "learning_rate": 0.0006, + "loss": 3.915200710296631, + "step": 1562 + }, + { + "epoch": 21.712975098296198, + "grad_norm": 0.22590875625610352, + "learning_rate": 0.0006, + "loss": 3.903597354888916, + "step": 1563 + }, + { + "epoch": 21.72695500218436, + "grad_norm": 0.19066260755062103, + "learning_rate": 0.0006, + "loss": 3.9162631034851074, + "step": 1564 + }, + { + "epoch": 21.74093490607252, + "grad_norm": 0.18134327232837677, + "learning_rate": 0.0006, + "loss": 3.9167914390563965, + "step": 1565 + }, + { + "epoch": 21.75491480996068, + "grad_norm": 0.1782190054655075, + "learning_rate": 0.0006, + "loss": 3.900925636291504, + "step": 1566 + }, + { + "epoch": 21.76889471384884, + "grad_norm": 0.19034099578857422, + "learning_rate": 0.0006, + "loss": 3.896559238433838, + "step": 1567 + }, + { + "epoch": 21.782874617737004, + "grad_norm": 0.21509577333927155, + "learning_rate": 0.0006, + "loss": 3.891681671142578, + "step": 1568 + }, + { + "epoch": 21.796854521625164, + "grad_norm": 0.2370351105928421, + "learning_rate": 0.0006, + "loss": 3.886570453643799, + "step": 1569 + }, + { + "epoch": 21.810834425513324, + "grad_norm": 0.25546324253082275, + "learning_rate": 0.0006, + "loss": 3.9247193336486816, + "step": 1570 + }, + { + "epoch": 21.824814329401484, + "grad_norm": 0.2513384222984314, + "learning_rate": 0.0006, + "loss": 3.9120583534240723, + "step": 1571 + }, + { + "epoch": 21.838794233289647, + "grad_norm": 0.24691323935985565, + "learning_rate": 0.0006, + "loss": 3.9144935607910156, + "step": 1572 + }, + { + "epoch": 21.852774137177807, + "grad_norm": 0.2573968172073364, + "learning_rate": 0.0006, + "loss": 3.9517531394958496, + "step": 1573 + }, + { + "epoch": 21.866754041065967, + "grad_norm": 0.25461453199386597, + "learning_rate": 0.0006, + "loss": 3.93508243560791, + "step": 1574 + }, + { + "epoch": 21.88073394495413, + "grad_norm": 0.23756568133831024, + "learning_rate": 0.0006, + "loss": 3.8885269165039062, + "step": 1575 + }, + { + "epoch": 21.89471384884229, + "grad_norm": 0.2193172425031662, + "learning_rate": 0.0006, + "loss": 3.9103426933288574, + "step": 1576 + }, + { + "epoch": 21.90869375273045, + "grad_norm": 0.2350149303674698, + "learning_rate": 0.0006, + "loss": 3.9399590492248535, + "step": 1577 + }, + { + "epoch": 21.92267365661861, + "grad_norm": 0.23759333789348602, + "learning_rate": 0.0006, + "loss": 3.9433584213256836, + "step": 1578 + }, + { + "epoch": 21.936653560506773, + "grad_norm": 0.21108432114124298, + "learning_rate": 0.0006, + "loss": 3.9241819381713867, + "step": 1579 + }, + { + "epoch": 21.950633464394933, + "grad_norm": 0.22088949382305145, + "learning_rate": 0.0006, + "loss": 3.9231910705566406, + "step": 1580 + }, + { + "epoch": 21.964613368283093, + "grad_norm": 0.22125045955181122, + "learning_rate": 0.0006, + "loss": 3.896329164505005, + "step": 1581 + }, + { + "epoch": 21.978593272171253, + "grad_norm": 0.20745202898979187, + "learning_rate": 0.0006, + "loss": 3.8920536041259766, + "step": 1582 + }, + { + "epoch": 21.992573176059416, + "grad_norm": 0.2409721463918686, + "learning_rate": 0.0006, + "loss": 3.9061317443847656, + "step": 1583 + }, + { + "epoch": 22.0, + "grad_norm": 0.2669669985771179, + "learning_rate": 0.0006, + "loss": 3.922062397003174, + "step": 1584 + }, + { + "epoch": 22.0, + "eval_loss": 4.140966415405273, + "eval_runtime": 46.7132, + "eval_samples_per_second": 52.276, + "eval_steps_per_second": 3.275, + "step": 1584 + }, + { + "epoch": 22.01397990388816, + "grad_norm": 0.26155969500541687, + "learning_rate": 0.0006, + "loss": 3.888944625854492, + "step": 1585 + }, + { + "epoch": 22.027959807776323, + "grad_norm": 0.2579149007797241, + "learning_rate": 0.0006, + "loss": 3.8924355506896973, + "step": 1586 + }, + { + "epoch": 22.041939711664483, + "grad_norm": 0.2429896742105484, + "learning_rate": 0.0006, + "loss": 3.8714070320129395, + "step": 1587 + }, + { + "epoch": 22.055919615552643, + "grad_norm": 0.23497673869132996, + "learning_rate": 0.0006, + "loss": 3.905089855194092, + "step": 1588 + }, + { + "epoch": 22.069899519440803, + "grad_norm": 0.24074940383434296, + "learning_rate": 0.0006, + "loss": 3.886845111846924, + "step": 1589 + }, + { + "epoch": 22.083879423328966, + "grad_norm": 0.2226274162530899, + "learning_rate": 0.0006, + "loss": 3.8554329872131348, + "step": 1590 + }, + { + "epoch": 22.097859327217126, + "grad_norm": 0.22924423217773438, + "learning_rate": 0.0006, + "loss": 3.8914356231689453, + "step": 1591 + }, + { + "epoch": 22.111839231105286, + "grad_norm": 0.2459387183189392, + "learning_rate": 0.0006, + "loss": 3.902522087097168, + "step": 1592 + }, + { + "epoch": 22.125819134993446, + "grad_norm": 0.2704590857028961, + "learning_rate": 0.0006, + "loss": 3.896497964859009, + "step": 1593 + }, + { + "epoch": 22.13979903888161, + "grad_norm": 0.2848219871520996, + "learning_rate": 0.0006, + "loss": 3.88423228263855, + "step": 1594 + }, + { + "epoch": 22.15377894276977, + "grad_norm": 0.22996552288532257, + "learning_rate": 0.0006, + "loss": 3.9034953117370605, + "step": 1595 + }, + { + "epoch": 22.16775884665793, + "grad_norm": 0.2117270529270172, + "learning_rate": 0.0006, + "loss": 3.888279914855957, + "step": 1596 + }, + { + "epoch": 22.18173875054609, + "grad_norm": 0.19724160432815552, + "learning_rate": 0.0006, + "loss": 3.860525131225586, + "step": 1597 + }, + { + "epoch": 22.195718654434252, + "grad_norm": 0.2012624740600586, + "learning_rate": 0.0006, + "loss": 3.8930106163024902, + "step": 1598 + }, + { + "epoch": 22.209698558322412, + "grad_norm": 0.20243871212005615, + "learning_rate": 0.0006, + "loss": 3.8727619647979736, + "step": 1599 + }, + { + "epoch": 22.22367846221057, + "grad_norm": 0.21737465262413025, + "learning_rate": 0.0006, + "loss": 3.887969493865967, + "step": 1600 + }, + { + "epoch": 22.23765836609873, + "grad_norm": 0.23969845473766327, + "learning_rate": 0.0006, + "loss": 3.8629722595214844, + "step": 1601 + }, + { + "epoch": 22.251638269986895, + "grad_norm": 0.22874902188777924, + "learning_rate": 0.0006, + "loss": 3.9135584831237793, + "step": 1602 + }, + { + "epoch": 22.265618173875055, + "grad_norm": 0.209506556391716, + "learning_rate": 0.0006, + "loss": 3.8734190464019775, + "step": 1603 + }, + { + "epoch": 22.279598077763215, + "grad_norm": 0.22235789895057678, + "learning_rate": 0.0006, + "loss": 3.884854793548584, + "step": 1604 + }, + { + "epoch": 22.293577981651374, + "grad_norm": 0.21975041925907135, + "learning_rate": 0.0006, + "loss": 3.8860888481140137, + "step": 1605 + }, + { + "epoch": 22.307557885539538, + "grad_norm": 0.21474459767341614, + "learning_rate": 0.0006, + "loss": 3.9052200317382812, + "step": 1606 + }, + { + "epoch": 22.321537789427698, + "grad_norm": 0.2103329747915268, + "learning_rate": 0.0006, + "loss": 3.8516340255737305, + "step": 1607 + }, + { + "epoch": 22.335517693315857, + "grad_norm": 0.1981191635131836, + "learning_rate": 0.0006, + "loss": 3.9017434120178223, + "step": 1608 + }, + { + "epoch": 22.34949759720402, + "grad_norm": 0.20679591596126556, + "learning_rate": 0.0006, + "loss": 3.889885425567627, + "step": 1609 + }, + { + "epoch": 22.36347750109218, + "grad_norm": 0.20809867978096008, + "learning_rate": 0.0006, + "loss": 3.881868362426758, + "step": 1610 + }, + { + "epoch": 22.37745740498034, + "grad_norm": 0.21394680440425873, + "learning_rate": 0.0006, + "loss": 3.89980411529541, + "step": 1611 + }, + { + "epoch": 22.3914373088685, + "grad_norm": 0.2334284782409668, + "learning_rate": 0.0006, + "loss": 3.8672266006469727, + "step": 1612 + }, + { + "epoch": 22.405417212756664, + "grad_norm": 0.26521918177604675, + "learning_rate": 0.0006, + "loss": 3.8918118476867676, + "step": 1613 + }, + { + "epoch": 22.419397116644824, + "grad_norm": 0.2652994394302368, + "learning_rate": 0.0006, + "loss": 3.8683271408081055, + "step": 1614 + }, + { + "epoch": 22.433377020532983, + "grad_norm": 0.2568066716194153, + "learning_rate": 0.0006, + "loss": 3.892523765563965, + "step": 1615 + }, + { + "epoch": 22.447356924421143, + "grad_norm": 0.260052353143692, + "learning_rate": 0.0006, + "loss": 3.897305488586426, + "step": 1616 + }, + { + "epoch": 22.461336828309307, + "grad_norm": 0.2744271457195282, + "learning_rate": 0.0006, + "loss": 3.8962221145629883, + "step": 1617 + }, + { + "epoch": 22.475316732197467, + "grad_norm": 0.23755787312984467, + "learning_rate": 0.0006, + "loss": 3.888184070587158, + "step": 1618 + }, + { + "epoch": 22.489296636085626, + "grad_norm": 0.2515312135219574, + "learning_rate": 0.0006, + "loss": 3.8946003913879395, + "step": 1619 + }, + { + "epoch": 22.503276539973786, + "grad_norm": 0.24835044145584106, + "learning_rate": 0.0006, + "loss": 3.8711423873901367, + "step": 1620 + }, + { + "epoch": 22.51725644386195, + "grad_norm": 0.22615326941013336, + "learning_rate": 0.0006, + "loss": 3.8878846168518066, + "step": 1621 + }, + { + "epoch": 22.53123634775011, + "grad_norm": 0.20482423901557922, + "learning_rate": 0.0006, + "loss": 3.8782598972320557, + "step": 1622 + }, + { + "epoch": 22.54521625163827, + "grad_norm": 0.20436473190784454, + "learning_rate": 0.0006, + "loss": 3.9075279235839844, + "step": 1623 + }, + { + "epoch": 22.55919615552643, + "grad_norm": 0.2066277265548706, + "learning_rate": 0.0006, + "loss": 3.89908766746521, + "step": 1624 + }, + { + "epoch": 22.573176059414592, + "grad_norm": 0.20735307037830353, + "learning_rate": 0.0006, + "loss": 3.865204334259033, + "step": 1625 + }, + { + "epoch": 22.587155963302752, + "grad_norm": 0.20955748856067657, + "learning_rate": 0.0006, + "loss": 3.8835532665252686, + "step": 1626 + }, + { + "epoch": 22.601135867190912, + "grad_norm": 0.21354222297668457, + "learning_rate": 0.0006, + "loss": 3.9012551307678223, + "step": 1627 + }, + { + "epoch": 22.615115771079076, + "grad_norm": 0.2075091004371643, + "learning_rate": 0.0006, + "loss": 3.8733482360839844, + "step": 1628 + }, + { + "epoch": 22.629095674967235, + "grad_norm": 0.20207874476909637, + "learning_rate": 0.0006, + "loss": 3.9193859100341797, + "step": 1629 + }, + { + "epoch": 22.643075578855395, + "grad_norm": 0.21863923966884613, + "learning_rate": 0.0006, + "loss": 3.883518695831299, + "step": 1630 + }, + { + "epoch": 22.657055482743555, + "grad_norm": 0.22117522358894348, + "learning_rate": 0.0006, + "loss": 3.9163284301757812, + "step": 1631 + }, + { + "epoch": 22.67103538663172, + "grad_norm": 0.2078622728586197, + "learning_rate": 0.0006, + "loss": 3.868274688720703, + "step": 1632 + }, + { + "epoch": 22.68501529051988, + "grad_norm": 0.22745893895626068, + "learning_rate": 0.0006, + "loss": 3.9171340465545654, + "step": 1633 + }, + { + "epoch": 22.698995194408038, + "grad_norm": 0.2312736064195633, + "learning_rate": 0.0006, + "loss": 3.9487013816833496, + "step": 1634 + }, + { + "epoch": 22.712975098296198, + "grad_norm": 0.20491497218608856, + "learning_rate": 0.0006, + "loss": 3.91833758354187, + "step": 1635 + }, + { + "epoch": 22.72695500218436, + "grad_norm": 0.1899084597826004, + "learning_rate": 0.0006, + "loss": 3.876225709915161, + "step": 1636 + }, + { + "epoch": 22.74093490607252, + "grad_norm": 0.18581682443618774, + "learning_rate": 0.0006, + "loss": 3.8667988777160645, + "step": 1637 + }, + { + "epoch": 22.75491480996068, + "grad_norm": 0.19855599105358124, + "learning_rate": 0.0006, + "loss": 3.900789260864258, + "step": 1638 + }, + { + "epoch": 22.76889471384884, + "grad_norm": 0.19951458275318146, + "learning_rate": 0.0006, + "loss": 3.8850367069244385, + "step": 1639 + }, + { + "epoch": 22.782874617737004, + "grad_norm": 0.22802744805812836, + "learning_rate": 0.0006, + "loss": 3.9181363582611084, + "step": 1640 + }, + { + "epoch": 22.796854521625164, + "grad_norm": 0.24279919266700745, + "learning_rate": 0.0006, + "loss": 3.8843770027160645, + "step": 1641 + }, + { + "epoch": 22.810834425513324, + "grad_norm": 0.23554913699626923, + "learning_rate": 0.0006, + "loss": 3.8802413940429688, + "step": 1642 + }, + { + "epoch": 22.824814329401484, + "grad_norm": 0.22343270480632782, + "learning_rate": 0.0006, + "loss": 3.8524107933044434, + "step": 1643 + }, + { + "epoch": 22.838794233289647, + "grad_norm": 0.2185724526643753, + "learning_rate": 0.0006, + "loss": 3.9117047786712646, + "step": 1644 + }, + { + "epoch": 22.852774137177807, + "grad_norm": 0.2114841341972351, + "learning_rate": 0.0006, + "loss": 3.90325927734375, + "step": 1645 + }, + { + "epoch": 22.866754041065967, + "grad_norm": 0.21072550117969513, + "learning_rate": 0.0006, + "loss": 3.8988137245178223, + "step": 1646 + }, + { + "epoch": 22.88073394495413, + "grad_norm": 0.2250078171491623, + "learning_rate": 0.0006, + "loss": 3.9201531410217285, + "step": 1647 + }, + { + "epoch": 22.89471384884229, + "grad_norm": 0.20928071439266205, + "learning_rate": 0.0006, + "loss": 3.91666316986084, + "step": 1648 + }, + { + "epoch": 22.90869375273045, + "grad_norm": 0.24096311628818512, + "learning_rate": 0.0006, + "loss": 3.8797364234924316, + "step": 1649 + }, + { + "epoch": 22.92267365661861, + "grad_norm": 0.2591194212436676, + "learning_rate": 0.0006, + "loss": 3.883273124694824, + "step": 1650 + }, + { + "epoch": 22.936653560506773, + "grad_norm": 0.27342668175697327, + "learning_rate": 0.0006, + "loss": 3.8645026683807373, + "step": 1651 + }, + { + "epoch": 22.950633464394933, + "grad_norm": 0.2448573112487793, + "learning_rate": 0.0006, + "loss": 3.9093551635742188, + "step": 1652 + }, + { + "epoch": 22.964613368283093, + "grad_norm": 0.19899503886699677, + "learning_rate": 0.0006, + "loss": 3.9001057147979736, + "step": 1653 + }, + { + "epoch": 22.978593272171253, + "grad_norm": 0.2023746520280838, + "learning_rate": 0.0006, + "loss": 3.886474370956421, + "step": 1654 + }, + { + "epoch": 22.992573176059416, + "grad_norm": 0.19894269108772278, + "learning_rate": 0.0006, + "loss": 3.9004204273223877, + "step": 1655 + }, + { + "epoch": 23.0, + "grad_norm": 0.2401709407567978, + "learning_rate": 0.0006, + "loss": 3.8665566444396973, + "step": 1656 + }, + { + "epoch": 23.0, + "eval_loss": 4.112459659576416, + "eval_runtime": 44.8325, + "eval_samples_per_second": 54.469, + "eval_steps_per_second": 3.413, + "step": 1656 + }, + { + "epoch": 23.01397990388816, + "grad_norm": 0.22662921249866486, + "learning_rate": 0.0006, + "loss": 3.853271961212158, + "step": 1657 + }, + { + "epoch": 23.027959807776323, + "grad_norm": 0.24406856298446655, + "learning_rate": 0.0006, + "loss": 3.8691890239715576, + "step": 1658 + }, + { + "epoch": 23.041939711664483, + "grad_norm": 0.2266651839017868, + "learning_rate": 0.0006, + "loss": 3.838599681854248, + "step": 1659 + }, + { + "epoch": 23.055919615552643, + "grad_norm": 0.22303511202335358, + "learning_rate": 0.0006, + "loss": 3.8678267002105713, + "step": 1660 + }, + { + "epoch": 23.069899519440803, + "grad_norm": 0.2272164225578308, + "learning_rate": 0.0006, + "loss": 3.9045681953430176, + "step": 1661 + }, + { + "epoch": 23.083879423328966, + "grad_norm": 0.25004875659942627, + "learning_rate": 0.0006, + "loss": 3.856503963470459, + "step": 1662 + }, + { + "epoch": 23.097859327217126, + "grad_norm": 0.26016247272491455, + "learning_rate": 0.0006, + "loss": 3.878587007522583, + "step": 1663 + }, + { + "epoch": 23.111839231105286, + "grad_norm": 0.28539901971817017, + "learning_rate": 0.0006, + "loss": 3.864248514175415, + "step": 1664 + }, + { + "epoch": 23.125819134993446, + "grad_norm": 0.27504822611808777, + "learning_rate": 0.0006, + "loss": 3.821448802947998, + "step": 1665 + }, + { + "epoch": 23.13979903888161, + "grad_norm": 0.238910973072052, + "learning_rate": 0.0006, + "loss": 3.8635847568511963, + "step": 1666 + }, + { + "epoch": 23.15377894276977, + "grad_norm": 0.24179652333259583, + "learning_rate": 0.0006, + "loss": 3.8339638710021973, + "step": 1667 + }, + { + "epoch": 23.16775884665793, + "grad_norm": 0.2199544757604599, + "learning_rate": 0.0006, + "loss": 3.868396759033203, + "step": 1668 + }, + { + "epoch": 23.18173875054609, + "grad_norm": 0.1965002566576004, + "learning_rate": 0.0006, + "loss": 3.8761439323425293, + "step": 1669 + }, + { + "epoch": 23.195718654434252, + "grad_norm": 0.20426614582538605, + "learning_rate": 0.0006, + "loss": 3.822899580001831, + "step": 1670 + }, + { + "epoch": 23.209698558322412, + "grad_norm": 0.2197263389825821, + "learning_rate": 0.0006, + "loss": 3.887728452682495, + "step": 1671 + }, + { + "epoch": 23.22367846221057, + "grad_norm": 0.22844573855400085, + "learning_rate": 0.0006, + "loss": 3.8550517559051514, + "step": 1672 + }, + { + "epoch": 23.23765836609873, + "grad_norm": 0.2347746044397354, + "learning_rate": 0.0006, + "loss": 3.903310537338257, + "step": 1673 + }, + { + "epoch": 23.251638269986895, + "grad_norm": 0.24167625606060028, + "learning_rate": 0.0006, + "loss": 3.8397774696350098, + "step": 1674 + }, + { + "epoch": 23.265618173875055, + "grad_norm": 0.2691650688648224, + "learning_rate": 0.0006, + "loss": 3.853254795074463, + "step": 1675 + }, + { + "epoch": 23.279598077763215, + "grad_norm": 0.29421621561050415, + "learning_rate": 0.0006, + "loss": 3.86065411567688, + "step": 1676 + }, + { + "epoch": 23.293577981651374, + "grad_norm": 0.31074345111846924, + "learning_rate": 0.0006, + "loss": 3.8716742992401123, + "step": 1677 + }, + { + "epoch": 23.307557885539538, + "grad_norm": 0.3044569194316864, + "learning_rate": 0.0006, + "loss": 3.8738951683044434, + "step": 1678 + }, + { + "epoch": 23.321537789427698, + "grad_norm": 0.30496764183044434, + "learning_rate": 0.0006, + "loss": 3.884446620941162, + "step": 1679 + }, + { + "epoch": 23.335517693315857, + "grad_norm": 0.31122756004333496, + "learning_rate": 0.0006, + "loss": 3.878495693206787, + "step": 1680 + }, + { + "epoch": 23.34949759720402, + "grad_norm": 0.32268181443214417, + "learning_rate": 0.0006, + "loss": 3.8793649673461914, + "step": 1681 + }, + { + "epoch": 23.36347750109218, + "grad_norm": 0.3297140598297119, + "learning_rate": 0.0006, + "loss": 3.87484073638916, + "step": 1682 + }, + { + "epoch": 23.37745740498034, + "grad_norm": 0.26007479429244995, + "learning_rate": 0.0006, + "loss": 3.8510947227478027, + "step": 1683 + }, + { + "epoch": 23.3914373088685, + "grad_norm": 0.2627335786819458, + "learning_rate": 0.0006, + "loss": 3.8783209323883057, + "step": 1684 + }, + { + "epoch": 23.405417212756664, + "grad_norm": 0.256452739238739, + "learning_rate": 0.0006, + "loss": 3.8594281673431396, + "step": 1685 + }, + { + "epoch": 23.419397116644824, + "grad_norm": 0.23892226815223694, + "learning_rate": 0.0006, + "loss": 3.898951292037964, + "step": 1686 + }, + { + "epoch": 23.433377020532983, + "grad_norm": 0.21625587344169617, + "learning_rate": 0.0006, + "loss": 3.8679966926574707, + "step": 1687 + }, + { + "epoch": 23.447356924421143, + "grad_norm": 0.21924619376659393, + "learning_rate": 0.0006, + "loss": 3.8774075508117676, + "step": 1688 + }, + { + "epoch": 23.461336828309307, + "grad_norm": 0.21500127017498016, + "learning_rate": 0.0006, + "loss": 3.870619297027588, + "step": 1689 + }, + { + "epoch": 23.475316732197467, + "grad_norm": 0.22580556571483612, + "learning_rate": 0.0006, + "loss": 3.887722969055176, + "step": 1690 + }, + { + "epoch": 23.489296636085626, + "grad_norm": 0.2500104308128357, + "learning_rate": 0.0006, + "loss": 3.88789963722229, + "step": 1691 + }, + { + "epoch": 23.503276539973786, + "grad_norm": 0.22462762892246246, + "learning_rate": 0.0006, + "loss": 3.863997459411621, + "step": 1692 + }, + { + "epoch": 23.51725644386195, + "grad_norm": 0.21427781879901886, + "learning_rate": 0.0006, + "loss": 3.8827033042907715, + "step": 1693 + }, + { + "epoch": 23.53123634775011, + "grad_norm": 0.22278577089309692, + "learning_rate": 0.0006, + "loss": 3.8659563064575195, + "step": 1694 + }, + { + "epoch": 23.54521625163827, + "grad_norm": 0.22801144421100616, + "learning_rate": 0.0006, + "loss": 3.9031362533569336, + "step": 1695 + }, + { + "epoch": 23.55919615552643, + "grad_norm": 0.25071898102760315, + "learning_rate": 0.0006, + "loss": 3.887746810913086, + "step": 1696 + }, + { + "epoch": 23.573176059414592, + "grad_norm": 0.2564085125923157, + "learning_rate": 0.0006, + "loss": 3.8918356895446777, + "step": 1697 + }, + { + "epoch": 23.587155963302752, + "grad_norm": 0.24603120982646942, + "learning_rate": 0.0006, + "loss": 3.850416421890259, + "step": 1698 + }, + { + "epoch": 23.601135867190912, + "grad_norm": 0.20539002120494843, + "learning_rate": 0.0006, + "loss": 3.862060070037842, + "step": 1699 + }, + { + "epoch": 23.615115771079076, + "grad_norm": 0.2022249400615692, + "learning_rate": 0.0006, + "loss": 3.899008274078369, + "step": 1700 + }, + { + "epoch": 23.629095674967235, + "grad_norm": 0.2435392290353775, + "learning_rate": 0.0006, + "loss": 3.844388961791992, + "step": 1701 + }, + { + "epoch": 23.643075578855395, + "grad_norm": 0.21146756410598755, + "learning_rate": 0.0006, + "loss": 3.8972439765930176, + "step": 1702 + }, + { + "epoch": 23.657055482743555, + "grad_norm": 0.2025400996208191, + "learning_rate": 0.0006, + "loss": 3.865253448486328, + "step": 1703 + }, + { + "epoch": 23.67103538663172, + "grad_norm": 0.21129970252513885, + "learning_rate": 0.0006, + "loss": 3.8768205642700195, + "step": 1704 + }, + { + "epoch": 23.68501529051988, + "grad_norm": 0.22982284426689148, + "learning_rate": 0.0006, + "loss": 3.8792667388916016, + "step": 1705 + }, + { + "epoch": 23.698995194408038, + "grad_norm": 0.23013733327388763, + "learning_rate": 0.0006, + "loss": 3.880897045135498, + "step": 1706 + }, + { + "epoch": 23.712975098296198, + "grad_norm": 0.2277672290802002, + "learning_rate": 0.0006, + "loss": 3.8738410472869873, + "step": 1707 + }, + { + "epoch": 23.72695500218436, + "grad_norm": 0.2343369573354721, + "learning_rate": 0.0006, + "loss": 3.8587026596069336, + "step": 1708 + }, + { + "epoch": 23.74093490607252, + "grad_norm": 0.23159530758857727, + "learning_rate": 0.0006, + "loss": 3.856306552886963, + "step": 1709 + }, + { + "epoch": 23.75491480996068, + "grad_norm": 0.19541035592556, + "learning_rate": 0.0006, + "loss": 3.8294754028320312, + "step": 1710 + }, + { + "epoch": 23.76889471384884, + "grad_norm": 0.22999322414398193, + "learning_rate": 0.0006, + "loss": 3.882676124572754, + "step": 1711 + }, + { + "epoch": 23.782874617737004, + "grad_norm": 0.23442843556404114, + "learning_rate": 0.0006, + "loss": 3.8887529373168945, + "step": 1712 + }, + { + "epoch": 23.796854521625164, + "grad_norm": 0.22914239764213562, + "learning_rate": 0.0006, + "loss": 3.867673635482788, + "step": 1713 + }, + { + "epoch": 23.810834425513324, + "grad_norm": 0.20683827996253967, + "learning_rate": 0.0006, + "loss": 3.8999581336975098, + "step": 1714 + }, + { + "epoch": 23.824814329401484, + "grad_norm": 0.19281277060508728, + "learning_rate": 0.0006, + "loss": 3.8997726440429688, + "step": 1715 + }, + { + "epoch": 23.838794233289647, + "grad_norm": 0.20058563351631165, + "learning_rate": 0.0006, + "loss": 3.8583860397338867, + "step": 1716 + }, + { + "epoch": 23.852774137177807, + "grad_norm": 0.19856606423854828, + "learning_rate": 0.0006, + "loss": 3.88948392868042, + "step": 1717 + }, + { + "epoch": 23.866754041065967, + "grad_norm": 0.2099323868751526, + "learning_rate": 0.0006, + "loss": 3.878458261489868, + "step": 1718 + }, + { + "epoch": 23.88073394495413, + "grad_norm": 0.22945016622543335, + "learning_rate": 0.0006, + "loss": 3.84116268157959, + "step": 1719 + }, + { + "epoch": 23.89471384884229, + "grad_norm": 0.22646087408065796, + "learning_rate": 0.0006, + "loss": 3.9006617069244385, + "step": 1720 + }, + { + "epoch": 23.90869375273045, + "grad_norm": 0.20282860100269318, + "learning_rate": 0.0006, + "loss": 3.8781144618988037, + "step": 1721 + }, + { + "epoch": 23.92267365661861, + "grad_norm": 0.1918555349111557, + "learning_rate": 0.0006, + "loss": 3.8560891151428223, + "step": 1722 + }, + { + "epoch": 23.936653560506773, + "grad_norm": 0.19286513328552246, + "learning_rate": 0.0006, + "loss": 3.873220920562744, + "step": 1723 + }, + { + "epoch": 23.950633464394933, + "grad_norm": 0.21071338653564453, + "learning_rate": 0.0006, + "loss": 3.9147067070007324, + "step": 1724 + }, + { + "epoch": 23.964613368283093, + "grad_norm": 0.20956715941429138, + "learning_rate": 0.0006, + "loss": 3.8762729167938232, + "step": 1725 + }, + { + "epoch": 23.978593272171253, + "grad_norm": 0.23053105175495148, + "learning_rate": 0.0006, + "loss": 3.873781681060791, + "step": 1726 + }, + { + "epoch": 23.992573176059416, + "grad_norm": 0.2719029486179352, + "learning_rate": 0.0006, + "loss": 3.862342357635498, + "step": 1727 + }, + { + "epoch": 24.0, + "grad_norm": 0.2933610677719116, + "learning_rate": 0.0006, + "loss": 3.8657689094543457, + "step": 1728 + }, + { + "epoch": 24.0, + "eval_loss": 4.0959153175354, + "eval_runtime": 44.3631, + "eval_samples_per_second": 55.046, + "eval_steps_per_second": 3.449, + "step": 1728 + }, + { + "epoch": 24.01397990388816, + "grad_norm": 0.24905365705490112, + "learning_rate": 0.0006, + "loss": 3.838136911392212, + "step": 1729 + }, + { + "epoch": 24.027959807776323, + "grad_norm": 0.25948020815849304, + "learning_rate": 0.0006, + "loss": 3.8581268787384033, + "step": 1730 + }, + { + "epoch": 24.041939711664483, + "grad_norm": 0.24965140223503113, + "learning_rate": 0.0006, + "loss": 3.8628978729248047, + "step": 1731 + }, + { + "epoch": 24.055919615552643, + "grad_norm": 0.23428823053836823, + "learning_rate": 0.0006, + "loss": 3.8188819885253906, + "step": 1732 + }, + { + "epoch": 24.069899519440803, + "grad_norm": 0.22191211581230164, + "learning_rate": 0.0006, + "loss": 3.8616039752960205, + "step": 1733 + }, + { + "epoch": 24.083879423328966, + "grad_norm": 0.20257535576820374, + "learning_rate": 0.0006, + "loss": 3.8632802963256836, + "step": 1734 + }, + { + "epoch": 24.097859327217126, + "grad_norm": 0.20385196805000305, + "learning_rate": 0.0006, + "loss": 3.885817050933838, + "step": 1735 + }, + { + "epoch": 24.111839231105286, + "grad_norm": 0.19921693205833435, + "learning_rate": 0.0006, + "loss": 3.838515043258667, + "step": 1736 + }, + { + "epoch": 24.125819134993446, + "grad_norm": 0.20221556723117828, + "learning_rate": 0.0006, + "loss": 3.8585309982299805, + "step": 1737 + }, + { + "epoch": 24.13979903888161, + "grad_norm": 0.20124691724777222, + "learning_rate": 0.0006, + "loss": 3.81656551361084, + "step": 1738 + }, + { + "epoch": 24.15377894276977, + "grad_norm": 0.1810830533504486, + "learning_rate": 0.0006, + "loss": 3.841783046722412, + "step": 1739 + }, + { + "epoch": 24.16775884665793, + "grad_norm": 0.18414196372032166, + "learning_rate": 0.0006, + "loss": 3.8614797592163086, + "step": 1740 + }, + { + "epoch": 24.18173875054609, + "grad_norm": 0.18930725753307343, + "learning_rate": 0.0006, + "loss": 3.8382534980773926, + "step": 1741 + }, + { + "epoch": 24.195718654434252, + "grad_norm": 0.19658128917217255, + "learning_rate": 0.0006, + "loss": 3.881742477416992, + "step": 1742 + }, + { + "epoch": 24.209698558322412, + "grad_norm": 0.20175589621067047, + "learning_rate": 0.0006, + "loss": 3.8760581016540527, + "step": 1743 + }, + { + "epoch": 24.22367846221057, + "grad_norm": 0.19416265189647675, + "learning_rate": 0.0006, + "loss": 3.8373687267303467, + "step": 1744 + }, + { + "epoch": 24.23765836609873, + "grad_norm": 0.20206521451473236, + "learning_rate": 0.0006, + "loss": 3.8322830200195312, + "step": 1745 + }, + { + "epoch": 24.251638269986895, + "grad_norm": 0.21797429025173187, + "learning_rate": 0.0006, + "loss": 3.849905490875244, + "step": 1746 + }, + { + "epoch": 24.265618173875055, + "grad_norm": 0.21295784413814545, + "learning_rate": 0.0006, + "loss": 3.847714900970459, + "step": 1747 + }, + { + "epoch": 24.279598077763215, + "grad_norm": 0.22023876011371613, + "learning_rate": 0.0006, + "loss": 3.8221592903137207, + "step": 1748 + }, + { + "epoch": 24.293577981651374, + "grad_norm": 0.2125576138496399, + "learning_rate": 0.0006, + "loss": 3.8070976734161377, + "step": 1749 + }, + { + "epoch": 24.307557885539538, + "grad_norm": 0.18673811852931976, + "learning_rate": 0.0006, + "loss": 3.866878032684326, + "step": 1750 + }, + { + "epoch": 24.321537789427698, + "grad_norm": 0.1972627341747284, + "learning_rate": 0.0006, + "loss": 3.846404552459717, + "step": 1751 + }, + { + "epoch": 24.335517693315857, + "grad_norm": 0.21846632659435272, + "learning_rate": 0.0006, + "loss": 3.8528640270233154, + "step": 1752 + }, + { + "epoch": 24.34949759720402, + "grad_norm": 0.22234080731868744, + "learning_rate": 0.0006, + "loss": 3.8268141746520996, + "step": 1753 + }, + { + "epoch": 24.36347750109218, + "grad_norm": 0.23002761602401733, + "learning_rate": 0.0006, + "loss": 3.832444667816162, + "step": 1754 + }, + { + "epoch": 24.37745740498034, + "grad_norm": 0.22526559233665466, + "learning_rate": 0.0006, + "loss": 3.864406108856201, + "step": 1755 + }, + { + "epoch": 24.3914373088685, + "grad_norm": 0.2290039211511612, + "learning_rate": 0.0006, + "loss": 3.8449103832244873, + "step": 1756 + }, + { + "epoch": 24.405417212756664, + "grad_norm": 0.23145617544651031, + "learning_rate": 0.0006, + "loss": 3.8183751106262207, + "step": 1757 + }, + { + "epoch": 24.419397116644824, + "grad_norm": 0.24287554621696472, + "learning_rate": 0.0006, + "loss": 3.809481382369995, + "step": 1758 + }, + { + "epoch": 24.433377020532983, + "grad_norm": 0.2672404646873474, + "learning_rate": 0.0006, + "loss": 3.877800464630127, + "step": 1759 + }, + { + "epoch": 24.447356924421143, + "grad_norm": 0.26292186975479126, + "learning_rate": 0.0006, + "loss": 3.8329367637634277, + "step": 1760 + }, + { + "epoch": 24.461336828309307, + "grad_norm": 0.26235947012901306, + "learning_rate": 0.0006, + "loss": 3.8414158821105957, + "step": 1761 + }, + { + "epoch": 24.475316732197467, + "grad_norm": 0.2638382613658905, + "learning_rate": 0.0006, + "loss": 3.849188804626465, + "step": 1762 + }, + { + "epoch": 24.489296636085626, + "grad_norm": 0.2564602196216583, + "learning_rate": 0.0006, + "loss": 3.865501880645752, + "step": 1763 + }, + { + "epoch": 24.503276539973786, + "grad_norm": 0.21352271735668182, + "learning_rate": 0.0006, + "loss": 3.87910795211792, + "step": 1764 + }, + { + "epoch": 24.51725644386195, + "grad_norm": 0.2470584511756897, + "learning_rate": 0.0006, + "loss": 3.858750343322754, + "step": 1765 + }, + { + "epoch": 24.53123634775011, + "grad_norm": 0.24907536804676056, + "learning_rate": 0.0006, + "loss": 3.8532559871673584, + "step": 1766 + }, + { + "epoch": 24.54521625163827, + "grad_norm": 0.2426205575466156, + "learning_rate": 0.0006, + "loss": 3.8659827709198, + "step": 1767 + }, + { + "epoch": 24.55919615552643, + "grad_norm": 0.23481151461601257, + "learning_rate": 0.0006, + "loss": 3.863948345184326, + "step": 1768 + }, + { + "epoch": 24.573176059414592, + "grad_norm": 0.22717779874801636, + "learning_rate": 0.0006, + "loss": 3.848527193069458, + "step": 1769 + }, + { + "epoch": 24.587155963302752, + "grad_norm": 0.2267129123210907, + "learning_rate": 0.0006, + "loss": 3.8600735664367676, + "step": 1770 + }, + { + "epoch": 24.601135867190912, + "grad_norm": 0.24967710673809052, + "learning_rate": 0.0006, + "loss": 3.84291934967041, + "step": 1771 + }, + { + "epoch": 24.615115771079076, + "grad_norm": 0.25308957695961, + "learning_rate": 0.0006, + "loss": 3.846181631088257, + "step": 1772 + }, + { + "epoch": 24.629095674967235, + "grad_norm": 0.2689298391342163, + "learning_rate": 0.0006, + "loss": 3.8572893142700195, + "step": 1773 + }, + { + "epoch": 24.643075578855395, + "grad_norm": 0.26458555459976196, + "learning_rate": 0.0006, + "loss": 3.8583621978759766, + "step": 1774 + }, + { + "epoch": 24.657055482743555, + "grad_norm": 0.24416811764240265, + "learning_rate": 0.0006, + "loss": 3.8648223876953125, + "step": 1775 + }, + { + "epoch": 24.67103538663172, + "grad_norm": 0.22218526899814606, + "learning_rate": 0.0006, + "loss": 3.839395523071289, + "step": 1776 + }, + { + "epoch": 24.68501529051988, + "grad_norm": 0.2147492915391922, + "learning_rate": 0.0006, + "loss": 3.875734567642212, + "step": 1777 + }, + { + "epoch": 24.698995194408038, + "grad_norm": 0.2346794754266739, + "learning_rate": 0.0006, + "loss": 3.854768991470337, + "step": 1778 + }, + { + "epoch": 24.712975098296198, + "grad_norm": 0.21406520903110504, + "learning_rate": 0.0006, + "loss": 3.8269104957580566, + "step": 1779 + }, + { + "epoch": 24.72695500218436, + "grad_norm": 0.20716224610805511, + "learning_rate": 0.0006, + "loss": 3.8245768547058105, + "step": 1780 + }, + { + "epoch": 24.74093490607252, + "grad_norm": 0.21445901691913605, + "learning_rate": 0.0006, + "loss": 3.8877978324890137, + "step": 1781 + }, + { + "epoch": 24.75491480996068, + "grad_norm": 0.21964985132217407, + "learning_rate": 0.0006, + "loss": 3.8602452278137207, + "step": 1782 + }, + { + "epoch": 24.76889471384884, + "grad_norm": 0.209807351231575, + "learning_rate": 0.0006, + "loss": 3.853428602218628, + "step": 1783 + }, + { + "epoch": 24.782874617737004, + "grad_norm": 0.19564911723136902, + "learning_rate": 0.0006, + "loss": 3.832275867462158, + "step": 1784 + }, + { + "epoch": 24.796854521625164, + "grad_norm": 0.21394333243370056, + "learning_rate": 0.0006, + "loss": 3.8543171882629395, + "step": 1785 + }, + { + "epoch": 24.810834425513324, + "grad_norm": 0.23156948387622833, + "learning_rate": 0.0006, + "loss": 3.8539412021636963, + "step": 1786 + }, + { + "epoch": 24.824814329401484, + "grad_norm": 0.2378678321838379, + "learning_rate": 0.0006, + "loss": 3.8409833908081055, + "step": 1787 + }, + { + "epoch": 24.838794233289647, + "grad_norm": 0.23816189169883728, + "learning_rate": 0.0006, + "loss": 3.855379581451416, + "step": 1788 + }, + { + "epoch": 24.852774137177807, + "grad_norm": 0.23109886050224304, + "learning_rate": 0.0006, + "loss": 3.8689517974853516, + "step": 1789 + }, + { + "epoch": 24.866754041065967, + "grad_norm": 0.2042883038520813, + "learning_rate": 0.0006, + "loss": 3.8730404376983643, + "step": 1790 + }, + { + "epoch": 24.88073394495413, + "grad_norm": 0.2039479911327362, + "learning_rate": 0.0006, + "loss": 3.8474984169006348, + "step": 1791 + }, + { + "epoch": 24.89471384884229, + "grad_norm": 0.213027223944664, + "learning_rate": 0.0006, + "loss": 3.8539695739746094, + "step": 1792 + }, + { + "epoch": 24.90869375273045, + "grad_norm": 0.2280654013156891, + "learning_rate": 0.0006, + "loss": 3.8633079528808594, + "step": 1793 + }, + { + "epoch": 24.92267365661861, + "grad_norm": 0.20864921808242798, + "learning_rate": 0.0006, + "loss": 3.8110368251800537, + "step": 1794 + }, + { + "epoch": 24.936653560506773, + "grad_norm": 0.23002111911773682, + "learning_rate": 0.0006, + "loss": 3.8334741592407227, + "step": 1795 + }, + { + "epoch": 24.950633464394933, + "grad_norm": 0.232331782579422, + "learning_rate": 0.0006, + "loss": 3.871887683868408, + "step": 1796 + }, + { + "epoch": 24.964613368283093, + "grad_norm": 0.24141235649585724, + "learning_rate": 0.0006, + "loss": 3.8614959716796875, + "step": 1797 + }, + { + "epoch": 24.978593272171253, + "grad_norm": 0.2545177638530731, + "learning_rate": 0.0006, + "loss": 3.8563568592071533, + "step": 1798 + }, + { + "epoch": 24.992573176059416, + "grad_norm": 0.25186386704444885, + "learning_rate": 0.0006, + "loss": 3.882166862487793, + "step": 1799 + }, + { + "epoch": 25.0, + "grad_norm": 0.260195791721344, + "learning_rate": 0.0006, + "loss": 3.884554862976074, + "step": 1800 + }, + { + "epoch": 25.0, + "eval_loss": 4.08809757232666, + "eval_runtime": 44.7947, + "eval_samples_per_second": 54.515, + "eval_steps_per_second": 3.416, + "step": 1800 + }, + { + "epoch": 25.01397990388816, + "grad_norm": 0.25396403670310974, + "learning_rate": 0.0006, + "loss": 3.8217287063598633, + "step": 1801 + }, + { + "epoch": 25.027959807776323, + "grad_norm": 0.2773195207118988, + "learning_rate": 0.0006, + "loss": 3.809542417526245, + "step": 1802 + }, + { + "epoch": 25.041939711664483, + "grad_norm": 0.3073263168334961, + "learning_rate": 0.0006, + "loss": 3.825706958770752, + "step": 1803 + }, + { + "epoch": 25.055919615552643, + "grad_norm": 0.30885398387908936, + "learning_rate": 0.0006, + "loss": 3.8081188201904297, + "step": 1804 + }, + { + "epoch": 25.069899519440803, + "grad_norm": 0.27356019616127014, + "learning_rate": 0.0006, + "loss": 3.8538241386413574, + "step": 1805 + }, + { + "epoch": 25.083879423328966, + "grad_norm": 0.22830164432525635, + "learning_rate": 0.0006, + "loss": 3.8246965408325195, + "step": 1806 + }, + { + "epoch": 25.097859327217126, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.8552842140197754, + "step": 1807 + }, + { + "epoch": 25.111839231105286, + "grad_norm": 0.21718722581863403, + "learning_rate": 0.0006, + "loss": 3.8489418029785156, + "step": 1808 + }, + { + "epoch": 25.125819134993446, + "grad_norm": 0.2480861395597458, + "learning_rate": 0.0006, + "loss": 3.821455955505371, + "step": 1809 + }, + { + "epoch": 25.13979903888161, + "grad_norm": 0.2796635627746582, + "learning_rate": 0.0006, + "loss": 3.8202435970306396, + "step": 1810 + }, + { + "epoch": 25.15377894276977, + "grad_norm": 0.2829958200454712, + "learning_rate": 0.0006, + "loss": 3.8293306827545166, + "step": 1811 + }, + { + "epoch": 25.16775884665793, + "grad_norm": 0.2510125935077667, + "learning_rate": 0.0006, + "loss": 3.8342957496643066, + "step": 1812 + }, + { + "epoch": 25.18173875054609, + "grad_norm": 0.22923722863197327, + "learning_rate": 0.0006, + "loss": 3.8448352813720703, + "step": 1813 + }, + { + "epoch": 25.195718654434252, + "grad_norm": 0.21439228951931, + "learning_rate": 0.0006, + "loss": 3.8343517780303955, + "step": 1814 + }, + { + "epoch": 25.209698558322412, + "grad_norm": 0.1965373307466507, + "learning_rate": 0.0006, + "loss": 3.8163528442382812, + "step": 1815 + }, + { + "epoch": 25.22367846221057, + "grad_norm": 0.20121058821678162, + "learning_rate": 0.0006, + "loss": 3.8007280826568604, + "step": 1816 + }, + { + "epoch": 25.23765836609873, + "grad_norm": 0.21383272111415863, + "learning_rate": 0.0006, + "loss": 3.8200385570526123, + "step": 1817 + }, + { + "epoch": 25.251638269986895, + "grad_norm": 0.2066601663827896, + "learning_rate": 0.0006, + "loss": 3.8333921432495117, + "step": 1818 + }, + { + "epoch": 25.265618173875055, + "grad_norm": 0.2104874551296234, + "learning_rate": 0.0006, + "loss": 3.838012218475342, + "step": 1819 + }, + { + "epoch": 25.279598077763215, + "grad_norm": 0.19733119010925293, + "learning_rate": 0.0006, + "loss": 3.835139274597168, + "step": 1820 + }, + { + "epoch": 25.293577981651374, + "grad_norm": 0.2119498997926712, + "learning_rate": 0.0006, + "loss": 3.8099722862243652, + "step": 1821 + }, + { + "epoch": 25.307557885539538, + "grad_norm": 0.21863529086112976, + "learning_rate": 0.0006, + "loss": 3.7801573276519775, + "step": 1822 + }, + { + "epoch": 25.321537789427698, + "grad_norm": 0.2113322764635086, + "learning_rate": 0.0006, + "loss": 3.809903621673584, + "step": 1823 + }, + { + "epoch": 25.335517693315857, + "grad_norm": 0.21594023704528809, + "learning_rate": 0.0006, + "loss": 3.8485071659088135, + "step": 1824 + }, + { + "epoch": 25.34949759720402, + "grad_norm": 0.21475964784622192, + "learning_rate": 0.0006, + "loss": 3.7894768714904785, + "step": 1825 + }, + { + "epoch": 25.36347750109218, + "grad_norm": 0.21174900233745575, + "learning_rate": 0.0006, + "loss": 3.821711540222168, + "step": 1826 + }, + { + "epoch": 25.37745740498034, + "grad_norm": 0.2065584659576416, + "learning_rate": 0.0006, + "loss": 3.8439841270446777, + "step": 1827 + }, + { + "epoch": 25.3914373088685, + "grad_norm": 0.19157007336616516, + "learning_rate": 0.0006, + "loss": 3.864245891571045, + "step": 1828 + }, + { + "epoch": 25.405417212756664, + "grad_norm": 0.19983816146850586, + "learning_rate": 0.0006, + "loss": 3.8317415714263916, + "step": 1829 + }, + { + "epoch": 25.419397116644824, + "grad_norm": 0.20506152510643005, + "learning_rate": 0.0006, + "loss": 3.8009896278381348, + "step": 1830 + }, + { + "epoch": 25.433377020532983, + "grad_norm": 0.19056960940361023, + "learning_rate": 0.0006, + "loss": 3.8383498191833496, + "step": 1831 + }, + { + "epoch": 25.447356924421143, + "grad_norm": 0.19262190163135529, + "learning_rate": 0.0006, + "loss": 3.838902235031128, + "step": 1832 + }, + { + "epoch": 25.461336828309307, + "grad_norm": 0.19859355688095093, + "learning_rate": 0.0006, + "loss": 3.82452392578125, + "step": 1833 + }, + { + "epoch": 25.475316732197467, + "grad_norm": 0.2144225388765335, + "learning_rate": 0.0006, + "loss": 3.8110032081604004, + "step": 1834 + }, + { + "epoch": 25.489296636085626, + "grad_norm": 0.20566298067569733, + "learning_rate": 0.0006, + "loss": 3.8662471771240234, + "step": 1835 + }, + { + "epoch": 25.503276539973786, + "grad_norm": 0.2071852684020996, + "learning_rate": 0.0006, + "loss": 3.821134090423584, + "step": 1836 + }, + { + "epoch": 25.51725644386195, + "grad_norm": 0.2095036506652832, + "learning_rate": 0.0006, + "loss": 3.824092388153076, + "step": 1837 + }, + { + "epoch": 25.53123634775011, + "grad_norm": 0.20136208832263947, + "learning_rate": 0.0006, + "loss": 3.8669862747192383, + "step": 1838 + }, + { + "epoch": 25.54521625163827, + "grad_norm": 0.1983811855316162, + "learning_rate": 0.0006, + "loss": 3.8120107650756836, + "step": 1839 + }, + { + "epoch": 25.55919615552643, + "grad_norm": 0.22859714925289154, + "learning_rate": 0.0006, + "loss": 3.8519299030303955, + "step": 1840 + }, + { + "epoch": 25.573176059414592, + "grad_norm": 0.23672667145729065, + "learning_rate": 0.0006, + "loss": 3.8245458602905273, + "step": 1841 + }, + { + "epoch": 25.587155963302752, + "grad_norm": 0.22698380053043365, + "learning_rate": 0.0006, + "loss": 3.8406805992126465, + "step": 1842 + }, + { + "epoch": 25.601135867190912, + "grad_norm": 0.25684037804603577, + "learning_rate": 0.0006, + "loss": 3.8584351539611816, + "step": 1843 + }, + { + "epoch": 25.615115771079076, + "grad_norm": 0.28180673718452454, + "learning_rate": 0.0006, + "loss": 3.8085098266601562, + "step": 1844 + }, + { + "epoch": 25.629095674967235, + "grad_norm": 0.2814631462097168, + "learning_rate": 0.0006, + "loss": 3.845083236694336, + "step": 1845 + }, + { + "epoch": 25.643075578855395, + "grad_norm": 0.23630981147289276, + "learning_rate": 0.0006, + "loss": 3.847749710083008, + "step": 1846 + }, + { + "epoch": 25.657055482743555, + "grad_norm": 0.22463662922382355, + "learning_rate": 0.0006, + "loss": 3.8172082901000977, + "step": 1847 + }, + { + "epoch": 25.67103538663172, + "grad_norm": 0.26551681756973267, + "learning_rate": 0.0006, + "loss": 3.8205654621124268, + "step": 1848 + }, + { + "epoch": 25.68501529051988, + "grad_norm": 0.27824243903160095, + "learning_rate": 0.0006, + "loss": 3.846076011657715, + "step": 1849 + }, + { + "epoch": 25.698995194408038, + "grad_norm": 0.266998291015625, + "learning_rate": 0.0006, + "loss": 3.8543574810028076, + "step": 1850 + }, + { + "epoch": 25.712975098296198, + "grad_norm": 0.22980351746082306, + "learning_rate": 0.0006, + "loss": 3.855511426925659, + "step": 1851 + }, + { + "epoch": 25.72695500218436, + "grad_norm": 0.23482872545719147, + "learning_rate": 0.0006, + "loss": 3.8687663078308105, + "step": 1852 + }, + { + "epoch": 25.74093490607252, + "grad_norm": 0.21119585633277893, + "learning_rate": 0.0006, + "loss": 3.8147101402282715, + "step": 1853 + }, + { + "epoch": 25.75491480996068, + "grad_norm": 0.21200446784496307, + "learning_rate": 0.0006, + "loss": 3.858473777770996, + "step": 1854 + }, + { + "epoch": 25.76889471384884, + "grad_norm": 0.20497842133045197, + "learning_rate": 0.0006, + "loss": 3.8545501232147217, + "step": 1855 + }, + { + "epoch": 25.782874617737004, + "grad_norm": 0.19328081607818604, + "learning_rate": 0.0006, + "loss": 3.7941341400146484, + "step": 1856 + }, + { + "epoch": 25.796854521625164, + "grad_norm": 0.2191578894853592, + "learning_rate": 0.0006, + "loss": 3.8408665657043457, + "step": 1857 + }, + { + "epoch": 25.810834425513324, + "grad_norm": 0.2548826038837433, + "learning_rate": 0.0006, + "loss": 3.854130744934082, + "step": 1858 + }, + { + "epoch": 25.824814329401484, + "grad_norm": 0.2290351390838623, + "learning_rate": 0.0006, + "loss": 3.8680176734924316, + "step": 1859 + }, + { + "epoch": 25.838794233289647, + "grad_norm": 0.20760944485664368, + "learning_rate": 0.0006, + "loss": 3.83731746673584, + "step": 1860 + }, + { + "epoch": 25.852774137177807, + "grad_norm": 0.19587582349777222, + "learning_rate": 0.0006, + "loss": 3.8173444271087646, + "step": 1861 + }, + { + "epoch": 25.866754041065967, + "grad_norm": 0.20762693881988525, + "learning_rate": 0.0006, + "loss": 3.8479790687561035, + "step": 1862 + }, + { + "epoch": 25.88073394495413, + "grad_norm": 0.20633186399936676, + "learning_rate": 0.0006, + "loss": 3.852285385131836, + "step": 1863 + }, + { + "epoch": 25.89471384884229, + "grad_norm": 0.21484960615634918, + "learning_rate": 0.0006, + "loss": 3.832592725753784, + "step": 1864 + }, + { + "epoch": 25.90869375273045, + "grad_norm": 0.19569595158100128, + "learning_rate": 0.0006, + "loss": 3.838071584701538, + "step": 1865 + }, + { + "epoch": 25.92267365661861, + "grad_norm": 0.19532904028892517, + "learning_rate": 0.0006, + "loss": 3.854252815246582, + "step": 1866 + }, + { + "epoch": 25.936653560506773, + "grad_norm": 0.1909649819135666, + "learning_rate": 0.0006, + "loss": 3.8444578647613525, + "step": 1867 + }, + { + "epoch": 25.950633464394933, + "grad_norm": 0.17476283013820648, + "learning_rate": 0.0006, + "loss": 3.836519241333008, + "step": 1868 + }, + { + "epoch": 25.964613368283093, + "grad_norm": 0.1895206719636917, + "learning_rate": 0.0006, + "loss": 3.8282582759857178, + "step": 1869 + }, + { + "epoch": 25.978593272171253, + "grad_norm": 0.20038437843322754, + "learning_rate": 0.0006, + "loss": 3.80542254447937, + "step": 1870 + }, + { + "epoch": 25.992573176059416, + "grad_norm": 0.20728608965873718, + "learning_rate": 0.0006, + "loss": 3.8584811687469482, + "step": 1871 + }, + { + "epoch": 26.0, + "grad_norm": 0.22110891342163086, + "learning_rate": 0.0006, + "loss": 3.8020238876342773, + "step": 1872 + }, + { + "epoch": 26.0, + "eval_loss": 4.072164058685303, + "eval_runtime": 44.9089, + "eval_samples_per_second": 54.377, + "eval_steps_per_second": 3.407, + "step": 1872 + }, + { + "epoch": 26.01397990388816, + "grad_norm": 0.2222519814968109, + "learning_rate": 0.0006, + "loss": 3.8309168815612793, + "step": 1873 + }, + { + "epoch": 26.027959807776323, + "grad_norm": 0.2637656033039093, + "learning_rate": 0.0006, + "loss": 3.8025143146514893, + "step": 1874 + }, + { + "epoch": 26.041939711664483, + "grad_norm": 0.2665974795818329, + "learning_rate": 0.0006, + "loss": 3.8244004249572754, + "step": 1875 + }, + { + "epoch": 26.055919615552643, + "grad_norm": 0.22475720942020416, + "learning_rate": 0.0006, + "loss": 3.80039119720459, + "step": 1876 + }, + { + "epoch": 26.069899519440803, + "grad_norm": 0.22994336485862732, + "learning_rate": 0.0006, + "loss": 3.7700726985931396, + "step": 1877 + }, + { + "epoch": 26.083879423328966, + "grad_norm": 0.24214622378349304, + "learning_rate": 0.0006, + "loss": 3.818725109100342, + "step": 1878 + }, + { + "epoch": 26.097859327217126, + "grad_norm": 0.22701293230056763, + "learning_rate": 0.0006, + "loss": 3.833803176879883, + "step": 1879 + }, + { + "epoch": 26.111839231105286, + "grad_norm": 0.21452295780181885, + "learning_rate": 0.0006, + "loss": 3.8391427993774414, + "step": 1880 + }, + { + "epoch": 26.125819134993446, + "grad_norm": 0.20179636776447296, + "learning_rate": 0.0006, + "loss": 3.802957057952881, + "step": 1881 + }, + { + "epoch": 26.13979903888161, + "grad_norm": 0.2087477445602417, + "learning_rate": 0.0006, + "loss": 3.8339905738830566, + "step": 1882 + }, + { + "epoch": 26.15377894276977, + "grad_norm": 0.23583556711673737, + "learning_rate": 0.0006, + "loss": 3.802438259124756, + "step": 1883 + }, + { + "epoch": 26.16775884665793, + "grad_norm": 0.2504311501979828, + "learning_rate": 0.0006, + "loss": 3.80244517326355, + "step": 1884 + }, + { + "epoch": 26.18173875054609, + "grad_norm": 0.24903984367847443, + "learning_rate": 0.0006, + "loss": 3.788865566253662, + "step": 1885 + }, + { + "epoch": 26.195718654434252, + "grad_norm": 0.2707931101322174, + "learning_rate": 0.0006, + "loss": 3.800051212310791, + "step": 1886 + }, + { + "epoch": 26.209698558322412, + "grad_norm": 0.24902892112731934, + "learning_rate": 0.0006, + "loss": 3.8068337440490723, + "step": 1887 + }, + { + "epoch": 26.22367846221057, + "grad_norm": 0.22655536234378815, + "learning_rate": 0.0006, + "loss": 3.779439926147461, + "step": 1888 + }, + { + "epoch": 26.23765836609873, + "grad_norm": 0.24797996878623962, + "learning_rate": 0.0006, + "loss": 3.822831153869629, + "step": 1889 + }, + { + "epoch": 26.251638269986895, + "grad_norm": 0.2821420431137085, + "learning_rate": 0.0006, + "loss": 3.807954788208008, + "step": 1890 + }, + { + "epoch": 26.265618173875055, + "grad_norm": 0.30392691493034363, + "learning_rate": 0.0006, + "loss": 3.776951789855957, + "step": 1891 + }, + { + "epoch": 26.279598077763215, + "grad_norm": 0.32641273736953735, + "learning_rate": 0.0006, + "loss": 3.8216311931610107, + "step": 1892 + }, + { + "epoch": 26.293577981651374, + "grad_norm": 0.32674387097358704, + "learning_rate": 0.0006, + "loss": 3.815596580505371, + "step": 1893 + }, + { + "epoch": 26.307557885539538, + "grad_norm": 0.29137250781059265, + "learning_rate": 0.0006, + "loss": 3.8170812129974365, + "step": 1894 + }, + { + "epoch": 26.321537789427698, + "grad_norm": 0.24291734397411346, + "learning_rate": 0.0006, + "loss": 3.810352087020874, + "step": 1895 + }, + { + "epoch": 26.335517693315857, + "grad_norm": 0.24023209512233734, + "learning_rate": 0.0006, + "loss": 3.8075947761535645, + "step": 1896 + }, + { + "epoch": 26.34949759720402, + "grad_norm": 0.24334804713726044, + "learning_rate": 0.0006, + "loss": 3.831556797027588, + "step": 1897 + }, + { + "epoch": 26.36347750109218, + "grad_norm": 0.2109663337469101, + "learning_rate": 0.0006, + "loss": 3.838347911834717, + "step": 1898 + }, + { + "epoch": 26.37745740498034, + "grad_norm": 0.19668002426624298, + "learning_rate": 0.0006, + "loss": 3.774737596511841, + "step": 1899 + }, + { + "epoch": 26.3914373088685, + "grad_norm": 0.21329134702682495, + "learning_rate": 0.0006, + "loss": 3.8237252235412598, + "step": 1900 + }, + { + "epoch": 26.405417212756664, + "grad_norm": 0.20381781458854675, + "learning_rate": 0.0006, + "loss": 3.802569627761841, + "step": 1901 + }, + { + "epoch": 26.419397116644824, + "grad_norm": 0.19083160161972046, + "learning_rate": 0.0006, + "loss": 3.8301358222961426, + "step": 1902 + }, + { + "epoch": 26.433377020532983, + "grad_norm": 0.20012904703617096, + "learning_rate": 0.0006, + "loss": 3.7966408729553223, + "step": 1903 + }, + { + "epoch": 26.447356924421143, + "grad_norm": 0.19483457505702972, + "learning_rate": 0.0006, + "loss": 3.8431968688964844, + "step": 1904 + }, + { + "epoch": 26.461336828309307, + "grad_norm": 0.19946353137493134, + "learning_rate": 0.0006, + "loss": 3.8023815155029297, + "step": 1905 + }, + { + "epoch": 26.475316732197467, + "grad_norm": 0.1984100341796875, + "learning_rate": 0.0006, + "loss": 3.8283071517944336, + "step": 1906 + }, + { + "epoch": 26.489296636085626, + "grad_norm": 0.2148299664258957, + "learning_rate": 0.0006, + "loss": 3.8377504348754883, + "step": 1907 + }, + { + "epoch": 26.503276539973786, + "grad_norm": 0.22139184176921844, + "learning_rate": 0.0006, + "loss": 3.823051691055298, + "step": 1908 + }, + { + "epoch": 26.51725644386195, + "grad_norm": 0.18289034068584442, + "learning_rate": 0.0006, + "loss": 3.8027071952819824, + "step": 1909 + }, + { + "epoch": 26.53123634775011, + "grad_norm": 0.1816026121377945, + "learning_rate": 0.0006, + "loss": 3.823786735534668, + "step": 1910 + }, + { + "epoch": 26.54521625163827, + "grad_norm": 0.19074322283267975, + "learning_rate": 0.0006, + "loss": 3.813331127166748, + "step": 1911 + }, + { + "epoch": 26.55919615552643, + "grad_norm": 0.20301467180252075, + "learning_rate": 0.0006, + "loss": 3.8218350410461426, + "step": 1912 + }, + { + "epoch": 26.573176059414592, + "grad_norm": 0.25266432762145996, + "learning_rate": 0.0006, + "loss": 3.8455142974853516, + "step": 1913 + }, + { + "epoch": 26.587155963302752, + "grad_norm": 0.25804755091667175, + "learning_rate": 0.0006, + "loss": 3.799227476119995, + "step": 1914 + }, + { + "epoch": 26.601135867190912, + "grad_norm": 0.2555372416973114, + "learning_rate": 0.0006, + "loss": 3.8125686645507812, + "step": 1915 + }, + { + "epoch": 26.615115771079076, + "grad_norm": 0.2266194075345993, + "learning_rate": 0.0006, + "loss": 3.858363628387451, + "step": 1916 + }, + { + "epoch": 26.629095674967235, + "grad_norm": 0.1933048665523529, + "learning_rate": 0.0006, + "loss": 3.8078083992004395, + "step": 1917 + }, + { + "epoch": 26.643075578855395, + "grad_norm": 0.19936731457710266, + "learning_rate": 0.0006, + "loss": 3.81748628616333, + "step": 1918 + }, + { + "epoch": 26.657055482743555, + "grad_norm": 0.22041693329811096, + "learning_rate": 0.0006, + "loss": 3.833272933959961, + "step": 1919 + }, + { + "epoch": 26.67103538663172, + "grad_norm": 0.20679150521755219, + "learning_rate": 0.0006, + "loss": 3.8127288818359375, + "step": 1920 + }, + { + "epoch": 26.68501529051988, + "grad_norm": 0.21545100212097168, + "learning_rate": 0.0006, + "loss": 3.816051483154297, + "step": 1921 + }, + { + "epoch": 26.698995194408038, + "grad_norm": 0.23554518818855286, + "learning_rate": 0.0006, + "loss": 3.8180980682373047, + "step": 1922 + }, + { + "epoch": 26.712975098296198, + "grad_norm": 0.21942466497421265, + "learning_rate": 0.0006, + "loss": 3.803107976913452, + "step": 1923 + }, + { + "epoch": 26.72695500218436, + "grad_norm": 0.22335010766983032, + "learning_rate": 0.0006, + "loss": 3.847890853881836, + "step": 1924 + }, + { + "epoch": 26.74093490607252, + "grad_norm": 0.24731314182281494, + "learning_rate": 0.0006, + "loss": 3.7945008277893066, + "step": 1925 + }, + { + "epoch": 26.75491480996068, + "grad_norm": 0.2804568111896515, + "learning_rate": 0.0006, + "loss": 3.8400068283081055, + "step": 1926 + }, + { + "epoch": 26.76889471384884, + "grad_norm": 0.28787222504615784, + "learning_rate": 0.0006, + "loss": 3.839771270751953, + "step": 1927 + }, + { + "epoch": 26.782874617737004, + "grad_norm": 0.2949632406234741, + "learning_rate": 0.0006, + "loss": 3.8225326538085938, + "step": 1928 + }, + { + "epoch": 26.796854521625164, + "grad_norm": 0.31546032428741455, + "learning_rate": 0.0006, + "loss": 3.8182597160339355, + "step": 1929 + }, + { + "epoch": 26.810834425513324, + "grad_norm": 0.2956962585449219, + "learning_rate": 0.0006, + "loss": 3.8315680027008057, + "step": 1930 + }, + { + "epoch": 26.824814329401484, + "grad_norm": 0.26943835616111755, + "learning_rate": 0.0006, + "loss": 3.787720203399658, + "step": 1931 + }, + { + "epoch": 26.838794233289647, + "grad_norm": 0.24272359907627106, + "learning_rate": 0.0006, + "loss": 3.7973692417144775, + "step": 1932 + }, + { + "epoch": 26.852774137177807, + "grad_norm": 0.20553994178771973, + "learning_rate": 0.0006, + "loss": 3.8241593837738037, + "step": 1933 + }, + { + "epoch": 26.866754041065967, + "grad_norm": 0.21927912533283234, + "learning_rate": 0.0006, + "loss": 3.8608899116516113, + "step": 1934 + }, + { + "epoch": 26.88073394495413, + "grad_norm": 0.22878016531467438, + "learning_rate": 0.0006, + "loss": 3.8341972827911377, + "step": 1935 + }, + { + "epoch": 26.89471384884229, + "grad_norm": 0.2085554301738739, + "learning_rate": 0.0006, + "loss": 3.8261351585388184, + "step": 1936 + }, + { + "epoch": 26.90869375273045, + "grad_norm": 0.21259072422981262, + "learning_rate": 0.0006, + "loss": 3.862056255340576, + "step": 1937 + }, + { + "epoch": 26.92267365661861, + "grad_norm": 0.21354122459888458, + "learning_rate": 0.0006, + "loss": 3.80879545211792, + "step": 1938 + }, + { + "epoch": 26.936653560506773, + "grad_norm": 0.2350253462791443, + "learning_rate": 0.0006, + "loss": 3.817826271057129, + "step": 1939 + }, + { + "epoch": 26.950633464394933, + "grad_norm": 0.23833836615085602, + "learning_rate": 0.0006, + "loss": 3.8220884799957275, + "step": 1940 + }, + { + "epoch": 26.964613368283093, + "grad_norm": 0.2368069440126419, + "learning_rate": 0.0006, + "loss": 3.843264579772949, + "step": 1941 + }, + { + "epoch": 26.978593272171253, + "grad_norm": 0.22663559019565582, + "learning_rate": 0.0006, + "loss": 3.81339430809021, + "step": 1942 + }, + { + "epoch": 26.992573176059416, + "grad_norm": 0.2151402235031128, + "learning_rate": 0.0006, + "loss": 3.8262834548950195, + "step": 1943 + }, + { + "epoch": 27.0, + "grad_norm": 0.24320295453071594, + "learning_rate": 0.0006, + "loss": 3.858567237854004, + "step": 1944 + }, + { + "epoch": 27.0, + "eval_loss": 4.0613322257995605, + "eval_runtime": 44.766, + "eval_samples_per_second": 54.55, + "eval_steps_per_second": 3.418, + "step": 1944 + }, + { + "epoch": 27.01397990388816, + "grad_norm": 0.21188032627105713, + "learning_rate": 0.0006, + "loss": 3.7631278038024902, + "step": 1945 + }, + { + "epoch": 27.027959807776323, + "grad_norm": 0.22298137843608856, + "learning_rate": 0.0006, + "loss": 3.784029245376587, + "step": 1946 + }, + { + "epoch": 27.041939711664483, + "grad_norm": 0.26530158519744873, + "learning_rate": 0.0006, + "loss": 3.795860767364502, + "step": 1947 + }, + { + "epoch": 27.055919615552643, + "grad_norm": 0.24476729333400726, + "learning_rate": 0.0006, + "loss": 3.77512264251709, + "step": 1948 + }, + { + "epoch": 27.069899519440803, + "grad_norm": 0.1934421956539154, + "learning_rate": 0.0006, + "loss": 3.7797446250915527, + "step": 1949 + }, + { + "epoch": 27.083879423328966, + "grad_norm": 0.19777092337608337, + "learning_rate": 0.0006, + "loss": 3.798935890197754, + "step": 1950 + }, + { + "epoch": 27.097859327217126, + "grad_norm": 0.2071693390607834, + "learning_rate": 0.0006, + "loss": 3.763094425201416, + "step": 1951 + }, + { + "epoch": 27.111839231105286, + "grad_norm": 0.18394742906093597, + "learning_rate": 0.0006, + "loss": 3.7892322540283203, + "step": 1952 + }, + { + "epoch": 27.125819134993446, + "grad_norm": 0.17878273129463196, + "learning_rate": 0.0006, + "loss": 3.787968158721924, + "step": 1953 + }, + { + "epoch": 27.13979903888161, + "grad_norm": 0.18792171776294708, + "learning_rate": 0.0006, + "loss": 3.7719640731811523, + "step": 1954 + }, + { + "epoch": 27.15377894276977, + "grad_norm": 0.18718759715557098, + "learning_rate": 0.0006, + "loss": 3.791835308074951, + "step": 1955 + }, + { + "epoch": 27.16775884665793, + "grad_norm": 0.18716055154800415, + "learning_rate": 0.0006, + "loss": 3.7490220069885254, + "step": 1956 + }, + { + "epoch": 27.18173875054609, + "grad_norm": 0.18429182469844818, + "learning_rate": 0.0006, + "loss": 3.8020081520080566, + "step": 1957 + }, + { + "epoch": 27.195718654434252, + "grad_norm": 0.18571704626083374, + "learning_rate": 0.0006, + "loss": 3.8152215480804443, + "step": 1958 + }, + { + "epoch": 27.209698558322412, + "grad_norm": 0.1788843423128128, + "learning_rate": 0.0006, + "loss": 3.8173317909240723, + "step": 1959 + }, + { + "epoch": 27.22367846221057, + "grad_norm": 0.20459426939487457, + "learning_rate": 0.0006, + "loss": 3.7760040760040283, + "step": 1960 + }, + { + "epoch": 27.23765836609873, + "grad_norm": 0.22360935807228088, + "learning_rate": 0.0006, + "loss": 3.8140203952789307, + "step": 1961 + }, + { + "epoch": 27.251638269986895, + "grad_norm": 0.2062767595052719, + "learning_rate": 0.0006, + "loss": 3.792001247406006, + "step": 1962 + }, + { + "epoch": 27.265618173875055, + "grad_norm": 0.20628073811531067, + "learning_rate": 0.0006, + "loss": 3.7873167991638184, + "step": 1963 + }, + { + "epoch": 27.279598077763215, + "grad_norm": 0.19888348877429962, + "learning_rate": 0.0006, + "loss": 3.7903614044189453, + "step": 1964 + }, + { + "epoch": 27.293577981651374, + "grad_norm": 0.22033332288265228, + "learning_rate": 0.0006, + "loss": 3.802497148513794, + "step": 1965 + }, + { + "epoch": 27.307557885539538, + "grad_norm": 0.23476941883563995, + "learning_rate": 0.0006, + "loss": 3.794090986251831, + "step": 1966 + }, + { + "epoch": 27.321537789427698, + "grad_norm": 0.19639968872070312, + "learning_rate": 0.0006, + "loss": 3.831794023513794, + "step": 1967 + }, + { + "epoch": 27.335517693315857, + "grad_norm": 0.18169641494750977, + "learning_rate": 0.0006, + "loss": 3.7687768936157227, + "step": 1968 + }, + { + "epoch": 27.34949759720402, + "grad_norm": 0.17781762778759003, + "learning_rate": 0.0006, + "loss": 3.7868471145629883, + "step": 1969 + }, + { + "epoch": 27.36347750109218, + "grad_norm": 0.18990416824817657, + "learning_rate": 0.0006, + "loss": 3.8340392112731934, + "step": 1970 + }, + { + "epoch": 27.37745740498034, + "grad_norm": 0.2031438797712326, + "learning_rate": 0.0006, + "loss": 3.804513454437256, + "step": 1971 + }, + { + "epoch": 27.3914373088685, + "grad_norm": 0.21233421564102173, + "learning_rate": 0.0006, + "loss": 3.7908449172973633, + "step": 1972 + }, + { + "epoch": 27.405417212756664, + "grad_norm": 0.22480927407741547, + "learning_rate": 0.0006, + "loss": 3.7894086837768555, + "step": 1973 + }, + { + "epoch": 27.419397116644824, + "grad_norm": 0.22713422775268555, + "learning_rate": 0.0006, + "loss": 3.826005458831787, + "step": 1974 + }, + { + "epoch": 27.433377020532983, + "grad_norm": 0.21637366712093353, + "learning_rate": 0.0006, + "loss": 3.8232319355010986, + "step": 1975 + }, + { + "epoch": 27.447356924421143, + "grad_norm": 0.24092449247837067, + "learning_rate": 0.0006, + "loss": 3.813279628753662, + "step": 1976 + }, + { + "epoch": 27.461336828309307, + "grad_norm": 0.21143047511577606, + "learning_rate": 0.0006, + "loss": 3.811586856842041, + "step": 1977 + }, + { + "epoch": 27.475316732197467, + "grad_norm": 0.21049432456493378, + "learning_rate": 0.0006, + "loss": 3.8227009773254395, + "step": 1978 + }, + { + "epoch": 27.489296636085626, + "grad_norm": 0.21853850781917572, + "learning_rate": 0.0006, + "loss": 3.7992515563964844, + "step": 1979 + }, + { + "epoch": 27.503276539973786, + "grad_norm": 0.22405001521110535, + "learning_rate": 0.0006, + "loss": 3.8311715126037598, + "step": 1980 + }, + { + "epoch": 27.51725644386195, + "grad_norm": 0.24085809290409088, + "learning_rate": 0.0006, + "loss": 3.801962375640869, + "step": 1981 + }, + { + "epoch": 27.53123634775011, + "grad_norm": 0.2612341642379761, + "learning_rate": 0.0006, + "loss": 3.7867887020111084, + "step": 1982 + }, + { + "epoch": 27.54521625163827, + "grad_norm": 0.25136062502861023, + "learning_rate": 0.0006, + "loss": 3.8302273750305176, + "step": 1983 + }, + { + "epoch": 27.55919615552643, + "grad_norm": 0.2485426515340805, + "learning_rate": 0.0006, + "loss": 3.770616054534912, + "step": 1984 + }, + { + "epoch": 27.573176059414592, + "grad_norm": 0.28883907198905945, + "learning_rate": 0.0006, + "loss": 3.8152146339416504, + "step": 1985 + }, + { + "epoch": 27.587155963302752, + "grad_norm": 0.28177911043167114, + "learning_rate": 0.0006, + "loss": 3.7966861724853516, + "step": 1986 + }, + { + "epoch": 27.601135867190912, + "grad_norm": 0.2573191523551941, + "learning_rate": 0.0006, + "loss": 3.820788621902466, + "step": 1987 + }, + { + "epoch": 27.615115771079076, + "grad_norm": 0.22225657105445862, + "learning_rate": 0.0006, + "loss": 3.778477191925049, + "step": 1988 + }, + { + "epoch": 27.629095674967235, + "grad_norm": 0.20118530094623566, + "learning_rate": 0.0006, + "loss": 3.8416988849639893, + "step": 1989 + }, + { + "epoch": 27.643075578855395, + "grad_norm": 0.21168658137321472, + "learning_rate": 0.0006, + "loss": 3.798020839691162, + "step": 1990 + }, + { + "epoch": 27.657055482743555, + "grad_norm": 0.2460680454969406, + "learning_rate": 0.0006, + "loss": 3.805917263031006, + "step": 1991 + }, + { + "epoch": 27.67103538663172, + "grad_norm": 0.2700909674167633, + "learning_rate": 0.0006, + "loss": 3.8042726516723633, + "step": 1992 + }, + { + "epoch": 27.68501529051988, + "grad_norm": 0.25814294815063477, + "learning_rate": 0.0006, + "loss": 3.799159049987793, + "step": 1993 + }, + { + "epoch": 27.698995194408038, + "grad_norm": 0.2231985628604889, + "learning_rate": 0.0006, + "loss": 3.778750419616699, + "step": 1994 + }, + { + "epoch": 27.712975098296198, + "grad_norm": 0.20807890594005585, + "learning_rate": 0.0006, + "loss": 3.787919044494629, + "step": 1995 + }, + { + "epoch": 27.72695500218436, + "grad_norm": 0.19537150859832764, + "learning_rate": 0.0006, + "loss": 3.7917299270629883, + "step": 1996 + }, + { + "epoch": 27.74093490607252, + "grad_norm": 0.21057647466659546, + "learning_rate": 0.0006, + "loss": 3.8096866607666016, + "step": 1997 + }, + { + "epoch": 27.75491480996068, + "grad_norm": 0.18983247876167297, + "learning_rate": 0.0006, + "loss": 3.7881717681884766, + "step": 1998 + }, + { + "epoch": 27.76889471384884, + "grad_norm": 0.18701069056987762, + "learning_rate": 0.0006, + "loss": 3.810790538787842, + "step": 1999 + }, + { + "epoch": 27.782874617737004, + "grad_norm": 0.1920134723186493, + "learning_rate": 0.0006, + "loss": 3.8161087036132812, + "step": 2000 + }, + { + "epoch": 27.796854521625164, + "grad_norm": 0.20413947105407715, + "learning_rate": 0.0006, + "loss": 3.790499687194824, + "step": 2001 + }, + { + "epoch": 27.810834425513324, + "grad_norm": 0.1920027732849121, + "learning_rate": 0.0006, + "loss": 3.8194262981414795, + "step": 2002 + }, + { + "epoch": 27.824814329401484, + "grad_norm": 0.18630221486091614, + "learning_rate": 0.0006, + "loss": 3.8267152309417725, + "step": 2003 + }, + { + "epoch": 27.838794233289647, + "grad_norm": 0.1787925660610199, + "learning_rate": 0.0006, + "loss": 3.8147521018981934, + "step": 2004 + }, + { + "epoch": 27.852774137177807, + "grad_norm": 0.19187216460704803, + "learning_rate": 0.0006, + "loss": 3.7751095294952393, + "step": 2005 + }, + { + "epoch": 27.866754041065967, + "grad_norm": 0.18825744092464447, + "learning_rate": 0.0006, + "loss": 3.807401657104492, + "step": 2006 + }, + { + "epoch": 27.88073394495413, + "grad_norm": 0.1879836469888687, + "learning_rate": 0.0006, + "loss": 3.8302509784698486, + "step": 2007 + }, + { + "epoch": 27.89471384884229, + "grad_norm": 0.19136391580104828, + "learning_rate": 0.0006, + "loss": 3.7886242866516113, + "step": 2008 + }, + { + "epoch": 27.90869375273045, + "grad_norm": 0.18774119019508362, + "learning_rate": 0.0006, + "loss": 3.8202977180480957, + "step": 2009 + }, + { + "epoch": 27.92267365661861, + "grad_norm": 0.17794452607631683, + "learning_rate": 0.0006, + "loss": 3.813382387161255, + "step": 2010 + }, + { + "epoch": 27.936653560506773, + "grad_norm": 0.1876268833875656, + "learning_rate": 0.0006, + "loss": 3.810610294342041, + "step": 2011 + }, + { + "epoch": 27.950633464394933, + "grad_norm": 0.19262051582336426, + "learning_rate": 0.0006, + "loss": 3.8113245964050293, + "step": 2012 + }, + { + "epoch": 27.964613368283093, + "grad_norm": 0.19371771812438965, + "learning_rate": 0.0006, + "loss": 3.804790496826172, + "step": 2013 + }, + { + "epoch": 27.978593272171253, + "grad_norm": 0.1922861784696579, + "learning_rate": 0.0006, + "loss": 3.8278889656066895, + "step": 2014 + }, + { + "epoch": 27.992573176059416, + "grad_norm": 0.19748565554618835, + "learning_rate": 0.0006, + "loss": 3.8127200603485107, + "step": 2015 + }, + { + "epoch": 28.0, + "grad_norm": 0.25027501583099365, + "learning_rate": 0.0006, + "loss": 3.7899413108825684, + "step": 2016 + }, + { + "epoch": 28.0, + "eval_loss": 4.047704219818115, + "eval_runtime": 44.293, + "eval_samples_per_second": 55.133, + "eval_steps_per_second": 3.454, + "step": 2016 + }, + { + "epoch": 28.01397990388816, + "grad_norm": 0.25172367691993713, + "learning_rate": 0.0006, + "loss": 3.75449538230896, + "step": 2017 + }, + { + "epoch": 28.027959807776323, + "grad_norm": 0.23494598269462585, + "learning_rate": 0.0006, + "loss": 3.7609024047851562, + "step": 2018 + }, + { + "epoch": 28.041939711664483, + "grad_norm": 0.22459708154201508, + "learning_rate": 0.0006, + "loss": 3.7843551635742188, + "step": 2019 + }, + { + "epoch": 28.055919615552643, + "grad_norm": 0.2038632035255432, + "learning_rate": 0.0006, + "loss": 3.7818198204040527, + "step": 2020 + }, + { + "epoch": 28.069899519440803, + "grad_norm": 0.22050008177757263, + "learning_rate": 0.0006, + "loss": 3.787442684173584, + "step": 2021 + }, + { + "epoch": 28.083879423328966, + "grad_norm": 0.24645832180976868, + "learning_rate": 0.0006, + "loss": 3.768704414367676, + "step": 2022 + }, + { + "epoch": 28.097859327217126, + "grad_norm": 0.2440163493156433, + "learning_rate": 0.0006, + "loss": 3.7783756256103516, + "step": 2023 + }, + { + "epoch": 28.111839231105286, + "grad_norm": 0.2482181042432785, + "learning_rate": 0.0006, + "loss": 3.786881923675537, + "step": 2024 + }, + { + "epoch": 28.125819134993446, + "grad_norm": 0.23494760692119598, + "learning_rate": 0.0006, + "loss": 3.790039300918579, + "step": 2025 + }, + { + "epoch": 28.13979903888161, + "grad_norm": 0.2172182947397232, + "learning_rate": 0.0006, + "loss": 3.818756580352783, + "step": 2026 + }, + { + "epoch": 28.15377894276977, + "grad_norm": 0.2103179395198822, + "learning_rate": 0.0006, + "loss": 3.7768917083740234, + "step": 2027 + }, + { + "epoch": 28.16775884665793, + "grad_norm": 0.22322365641593933, + "learning_rate": 0.0006, + "loss": 3.8223648071289062, + "step": 2028 + }, + { + "epoch": 28.18173875054609, + "grad_norm": 0.24199382960796356, + "learning_rate": 0.0006, + "loss": 3.781357765197754, + "step": 2029 + }, + { + "epoch": 28.195718654434252, + "grad_norm": 0.2500663101673126, + "learning_rate": 0.0006, + "loss": 3.8061184883117676, + "step": 2030 + }, + { + "epoch": 28.209698558322412, + "grad_norm": 0.2439824491739273, + "learning_rate": 0.0006, + "loss": 3.7886464595794678, + "step": 2031 + }, + { + "epoch": 28.22367846221057, + "grad_norm": 0.24563106894493103, + "learning_rate": 0.0006, + "loss": 3.7901692390441895, + "step": 2032 + }, + { + "epoch": 28.23765836609873, + "grad_norm": 0.2287624627351761, + "learning_rate": 0.0006, + "loss": 3.789931058883667, + "step": 2033 + }, + { + "epoch": 28.251638269986895, + "grad_norm": 0.2231188714504242, + "learning_rate": 0.0006, + "loss": 3.7879133224487305, + "step": 2034 + }, + { + "epoch": 28.265618173875055, + "grad_norm": 0.23090387880802155, + "learning_rate": 0.0006, + "loss": 3.7826130390167236, + "step": 2035 + }, + { + "epoch": 28.279598077763215, + "grad_norm": 0.216018944978714, + "learning_rate": 0.0006, + "loss": 3.7764949798583984, + "step": 2036 + }, + { + "epoch": 28.293577981651374, + "grad_norm": 0.22649185359477997, + "learning_rate": 0.0006, + "loss": 3.7911291122436523, + "step": 2037 + }, + { + "epoch": 28.307557885539538, + "grad_norm": 0.2350836843252182, + "learning_rate": 0.0006, + "loss": 3.7668724060058594, + "step": 2038 + }, + { + "epoch": 28.321537789427698, + "grad_norm": 0.23206329345703125, + "learning_rate": 0.0006, + "loss": 3.782243251800537, + "step": 2039 + }, + { + "epoch": 28.335517693315857, + "grad_norm": 0.21896308660507202, + "learning_rate": 0.0006, + "loss": 3.7605721950531006, + "step": 2040 + }, + { + "epoch": 28.34949759720402, + "grad_norm": 0.20381200313568115, + "learning_rate": 0.0006, + "loss": 3.743945598602295, + "step": 2041 + }, + { + "epoch": 28.36347750109218, + "grad_norm": 0.19196000695228577, + "learning_rate": 0.0006, + "loss": 3.808107852935791, + "step": 2042 + }, + { + "epoch": 28.37745740498034, + "grad_norm": 0.19517889618873596, + "learning_rate": 0.0006, + "loss": 3.7906723022460938, + "step": 2043 + }, + { + "epoch": 28.3914373088685, + "grad_norm": 0.20455795526504517, + "learning_rate": 0.0006, + "loss": 3.7421011924743652, + "step": 2044 + }, + { + "epoch": 28.405417212756664, + "grad_norm": 0.1867467314004898, + "learning_rate": 0.0006, + "loss": 3.775509834289551, + "step": 2045 + }, + { + "epoch": 28.419397116644824, + "grad_norm": 0.2029324471950531, + "learning_rate": 0.0006, + "loss": 3.771353244781494, + "step": 2046 + }, + { + "epoch": 28.433377020532983, + "grad_norm": 0.19967497885227203, + "learning_rate": 0.0006, + "loss": 3.7821149826049805, + "step": 2047 + }, + { + "epoch": 28.447356924421143, + "grad_norm": 0.19440607726573944, + "learning_rate": 0.0006, + "loss": 3.8114213943481445, + "step": 2048 + }, + { + "epoch": 28.461336828309307, + "grad_norm": 0.19679802656173706, + "learning_rate": 0.0006, + "loss": 3.7699532508850098, + "step": 2049 + }, + { + "epoch": 28.475316732197467, + "grad_norm": 0.1939811110496521, + "learning_rate": 0.0006, + "loss": 3.7673027515411377, + "step": 2050 + }, + { + "epoch": 28.489296636085626, + "grad_norm": 0.18712401390075684, + "learning_rate": 0.0006, + "loss": 3.816699266433716, + "step": 2051 + }, + { + "epoch": 28.503276539973786, + "grad_norm": 0.202956885099411, + "learning_rate": 0.0006, + "loss": 3.7746071815490723, + "step": 2052 + }, + { + "epoch": 28.51725644386195, + "grad_norm": 0.19098156690597534, + "learning_rate": 0.0006, + "loss": 3.8065481185913086, + "step": 2053 + }, + { + "epoch": 28.53123634775011, + "grad_norm": 0.21144428849220276, + "learning_rate": 0.0006, + "loss": 3.7890982627868652, + "step": 2054 + }, + { + "epoch": 28.54521625163827, + "grad_norm": 0.21882614493370056, + "learning_rate": 0.0006, + "loss": 3.8168821334838867, + "step": 2055 + }, + { + "epoch": 28.55919615552643, + "grad_norm": 0.22200101613998413, + "learning_rate": 0.0006, + "loss": 3.804454803466797, + "step": 2056 + }, + { + "epoch": 28.573176059414592, + "grad_norm": 0.22404780983924866, + "learning_rate": 0.0006, + "loss": 3.808764934539795, + "step": 2057 + }, + { + "epoch": 28.587155963302752, + "grad_norm": 0.22770099341869354, + "learning_rate": 0.0006, + "loss": 3.74835467338562, + "step": 2058 + }, + { + "epoch": 28.601135867190912, + "grad_norm": 0.23214420676231384, + "learning_rate": 0.0006, + "loss": 3.7480111122131348, + "step": 2059 + }, + { + "epoch": 28.615115771079076, + "grad_norm": 0.21786348521709442, + "learning_rate": 0.0006, + "loss": 3.8095176219940186, + "step": 2060 + }, + { + "epoch": 28.629095674967235, + "grad_norm": 0.21004106104373932, + "learning_rate": 0.0006, + "loss": 3.792745590209961, + "step": 2061 + }, + { + "epoch": 28.643075578855395, + "grad_norm": 0.21076138317584991, + "learning_rate": 0.0006, + "loss": 3.7878952026367188, + "step": 2062 + }, + { + "epoch": 28.657055482743555, + "grad_norm": 0.2184346616268158, + "learning_rate": 0.0006, + "loss": 3.757188320159912, + "step": 2063 + }, + { + "epoch": 28.67103538663172, + "grad_norm": 0.22100569307804108, + "learning_rate": 0.0006, + "loss": 3.8131773471832275, + "step": 2064 + }, + { + "epoch": 28.68501529051988, + "grad_norm": 0.23257511854171753, + "learning_rate": 0.0006, + "loss": 3.793826103210449, + "step": 2065 + }, + { + "epoch": 28.698995194408038, + "grad_norm": 0.22312869131565094, + "learning_rate": 0.0006, + "loss": 3.782083749771118, + "step": 2066 + }, + { + "epoch": 28.712975098296198, + "grad_norm": 0.2318405956029892, + "learning_rate": 0.0006, + "loss": 3.7814879417419434, + "step": 2067 + }, + { + "epoch": 28.72695500218436, + "grad_norm": 0.23719379305839539, + "learning_rate": 0.0006, + "loss": 3.8320484161376953, + "step": 2068 + }, + { + "epoch": 28.74093490607252, + "grad_norm": 0.23100806772708893, + "learning_rate": 0.0006, + "loss": 3.7921783924102783, + "step": 2069 + }, + { + "epoch": 28.75491480996068, + "grad_norm": 0.21540866792201996, + "learning_rate": 0.0006, + "loss": 3.8325204849243164, + "step": 2070 + }, + { + "epoch": 28.76889471384884, + "grad_norm": 0.2698654532432556, + "learning_rate": 0.0006, + "loss": 3.7965879440307617, + "step": 2071 + }, + { + "epoch": 28.782874617737004, + "grad_norm": 0.3101225793361664, + "learning_rate": 0.0006, + "loss": 3.78842830657959, + "step": 2072 + }, + { + "epoch": 28.796854521625164, + "grad_norm": 0.2607600688934326, + "learning_rate": 0.0006, + "loss": 3.770064115524292, + "step": 2073 + }, + { + "epoch": 28.810834425513324, + "grad_norm": 0.20558302104473114, + "learning_rate": 0.0006, + "loss": 3.7448501586914062, + "step": 2074 + }, + { + "epoch": 28.824814329401484, + "grad_norm": 0.20030120015144348, + "learning_rate": 0.0006, + "loss": 3.7689406871795654, + "step": 2075 + }, + { + "epoch": 28.838794233289647, + "grad_norm": 0.21781118214130402, + "learning_rate": 0.0006, + "loss": 3.7682244777679443, + "step": 2076 + }, + { + "epoch": 28.852774137177807, + "grad_norm": 0.23543044924736023, + "learning_rate": 0.0006, + "loss": 3.8094193935394287, + "step": 2077 + }, + { + "epoch": 28.866754041065967, + "grad_norm": 0.21634669601917267, + "learning_rate": 0.0006, + "loss": 3.792099952697754, + "step": 2078 + }, + { + "epoch": 28.88073394495413, + "grad_norm": 0.2251661866903305, + "learning_rate": 0.0006, + "loss": 3.7849509716033936, + "step": 2079 + }, + { + "epoch": 28.89471384884229, + "grad_norm": 0.23872914910316467, + "learning_rate": 0.0006, + "loss": 3.8391621112823486, + "step": 2080 + }, + { + "epoch": 28.90869375273045, + "grad_norm": 0.22259248793125153, + "learning_rate": 0.0006, + "loss": 3.8272876739501953, + "step": 2081 + }, + { + "epoch": 28.92267365661861, + "grad_norm": 0.22052262723445892, + "learning_rate": 0.0006, + "loss": 3.7986836433410645, + "step": 2082 + }, + { + "epoch": 28.936653560506773, + "grad_norm": 0.24487647414207458, + "learning_rate": 0.0006, + "loss": 3.798004150390625, + "step": 2083 + }, + { + "epoch": 28.950633464394933, + "grad_norm": 0.22992238402366638, + "learning_rate": 0.0006, + "loss": 3.788522720336914, + "step": 2084 + }, + { + "epoch": 28.964613368283093, + "grad_norm": 0.22521597146987915, + "learning_rate": 0.0006, + "loss": 3.767259120941162, + "step": 2085 + }, + { + "epoch": 28.978593272171253, + "grad_norm": 0.2201499044895172, + "learning_rate": 0.0006, + "loss": 3.7850542068481445, + "step": 2086 + }, + { + "epoch": 28.992573176059416, + "grad_norm": 0.22226814925670624, + "learning_rate": 0.0006, + "loss": 3.8013534545898438, + "step": 2087 + }, + { + "epoch": 29.0, + "grad_norm": 0.27624809741973877, + "learning_rate": 0.0006, + "loss": 3.762004852294922, + "step": 2088 + }, + { + "epoch": 29.0, + "eval_loss": 4.034304618835449, + "eval_runtime": 44.6573, + "eval_samples_per_second": 54.683, + "eval_steps_per_second": 3.426, + "step": 2088 + }, + { + "epoch": 29.01397990388816, + "grad_norm": 0.2550967037677765, + "learning_rate": 0.0006, + "loss": 3.7724227905273438, + "step": 2089 + }, + { + "epoch": 29.027959807776323, + "grad_norm": 0.26730602979660034, + "learning_rate": 0.0006, + "loss": 3.7728946208953857, + "step": 2090 + }, + { + "epoch": 29.041939711664483, + "grad_norm": 0.2394205927848816, + "learning_rate": 0.0006, + "loss": 3.7737584114074707, + "step": 2091 + }, + { + "epoch": 29.055919615552643, + "grad_norm": 0.22488200664520264, + "learning_rate": 0.0006, + "loss": 3.761014938354492, + "step": 2092 + }, + { + "epoch": 29.069899519440803, + "grad_norm": 0.2389903962612152, + "learning_rate": 0.0006, + "loss": 3.766557216644287, + "step": 2093 + }, + { + "epoch": 29.083879423328966, + "grad_norm": 0.234152153134346, + "learning_rate": 0.0006, + "loss": 3.7447147369384766, + "step": 2094 + }, + { + "epoch": 29.097859327217126, + "grad_norm": 0.23123252391815186, + "learning_rate": 0.0006, + "loss": 3.77197527885437, + "step": 2095 + }, + { + "epoch": 29.111839231105286, + "grad_norm": 0.23263143002986908, + "learning_rate": 0.0006, + "loss": 3.7390198707580566, + "step": 2096 + }, + { + "epoch": 29.125819134993446, + "grad_norm": 0.23235775530338287, + "learning_rate": 0.0006, + "loss": 3.7675256729125977, + "step": 2097 + }, + { + "epoch": 29.13979903888161, + "grad_norm": 0.2208816260099411, + "learning_rate": 0.0006, + "loss": 3.7588067054748535, + "step": 2098 + }, + { + "epoch": 29.15377894276977, + "grad_norm": 0.21216371655464172, + "learning_rate": 0.0006, + "loss": 3.7370502948760986, + "step": 2099 + }, + { + "epoch": 29.16775884665793, + "grad_norm": 0.2210543155670166, + "learning_rate": 0.0006, + "loss": 3.767308473587036, + "step": 2100 + }, + { + "epoch": 29.18173875054609, + "grad_norm": 0.21628431975841522, + "learning_rate": 0.0006, + "loss": 3.7298972606658936, + "step": 2101 + }, + { + "epoch": 29.195718654434252, + "grad_norm": 0.21493588387966156, + "learning_rate": 0.0006, + "loss": 3.7806448936462402, + "step": 2102 + }, + { + "epoch": 29.209698558322412, + "grad_norm": 0.25978055596351624, + "learning_rate": 0.0006, + "loss": 3.7716293334960938, + "step": 2103 + }, + { + "epoch": 29.22367846221057, + "grad_norm": 0.2744791507720947, + "learning_rate": 0.0006, + "loss": 3.76897931098938, + "step": 2104 + }, + { + "epoch": 29.23765836609873, + "grad_norm": 0.22959400713443756, + "learning_rate": 0.0006, + "loss": 3.7545714378356934, + "step": 2105 + }, + { + "epoch": 29.251638269986895, + "grad_norm": 0.20369231700897217, + "learning_rate": 0.0006, + "loss": 3.7944722175598145, + "step": 2106 + }, + { + "epoch": 29.265618173875055, + "grad_norm": 0.21663758158683777, + "learning_rate": 0.0006, + "loss": 3.7564756870269775, + "step": 2107 + }, + { + "epoch": 29.279598077763215, + "grad_norm": 0.21862861514091492, + "learning_rate": 0.0006, + "loss": 3.7722725868225098, + "step": 2108 + }, + { + "epoch": 29.293577981651374, + "grad_norm": 0.2044878453016281, + "learning_rate": 0.0006, + "loss": 3.7471303939819336, + "step": 2109 + }, + { + "epoch": 29.307557885539538, + "grad_norm": 0.23015929758548737, + "learning_rate": 0.0006, + "loss": 3.7584962844848633, + "step": 2110 + }, + { + "epoch": 29.321537789427698, + "grad_norm": 0.22548329830169678, + "learning_rate": 0.0006, + "loss": 3.795933723449707, + "step": 2111 + }, + { + "epoch": 29.335517693315857, + "grad_norm": 0.2000468522310257, + "learning_rate": 0.0006, + "loss": 3.766310691833496, + "step": 2112 + }, + { + "epoch": 29.34949759720402, + "grad_norm": 0.19711551070213318, + "learning_rate": 0.0006, + "loss": 3.7296276092529297, + "step": 2113 + }, + { + "epoch": 29.36347750109218, + "grad_norm": 0.18838997185230255, + "learning_rate": 0.0006, + "loss": 3.7685282230377197, + "step": 2114 + }, + { + "epoch": 29.37745740498034, + "grad_norm": 0.1897876113653183, + "learning_rate": 0.0006, + "loss": 3.7280936241149902, + "step": 2115 + }, + { + "epoch": 29.3914373088685, + "grad_norm": 0.21697933971881866, + "learning_rate": 0.0006, + "loss": 3.7991929054260254, + "step": 2116 + }, + { + "epoch": 29.405417212756664, + "grad_norm": 0.23445849120616913, + "learning_rate": 0.0006, + "loss": 3.7857418060302734, + "step": 2117 + }, + { + "epoch": 29.419397116644824, + "grad_norm": 0.24155527353286743, + "learning_rate": 0.0006, + "loss": 3.7897872924804688, + "step": 2118 + }, + { + "epoch": 29.433377020532983, + "grad_norm": 0.2610265016555786, + "learning_rate": 0.0006, + "loss": 3.7867324352264404, + "step": 2119 + }, + { + "epoch": 29.447356924421143, + "grad_norm": 0.2809581160545349, + "learning_rate": 0.0006, + "loss": 3.783799648284912, + "step": 2120 + }, + { + "epoch": 29.461336828309307, + "grad_norm": 0.2621572017669678, + "learning_rate": 0.0006, + "loss": 3.7778549194335938, + "step": 2121 + }, + { + "epoch": 29.475316732197467, + "grad_norm": 0.26002970337867737, + "learning_rate": 0.0006, + "loss": 3.787945508956909, + "step": 2122 + }, + { + "epoch": 29.489296636085626, + "grad_norm": 0.24866686761379242, + "learning_rate": 0.0006, + "loss": 3.7406349182128906, + "step": 2123 + }, + { + "epoch": 29.503276539973786, + "grad_norm": 0.25588324666023254, + "learning_rate": 0.0006, + "loss": 3.785625457763672, + "step": 2124 + }, + { + "epoch": 29.51725644386195, + "grad_norm": 0.24724243581295013, + "learning_rate": 0.0006, + "loss": 3.7581701278686523, + "step": 2125 + }, + { + "epoch": 29.53123634775011, + "grad_norm": 0.23544734716415405, + "learning_rate": 0.0006, + "loss": 3.8163957595825195, + "step": 2126 + }, + { + "epoch": 29.54521625163827, + "grad_norm": 0.2108801156282425, + "learning_rate": 0.0006, + "loss": 3.7881739139556885, + "step": 2127 + }, + { + "epoch": 29.55919615552643, + "grad_norm": 0.20459668338298798, + "learning_rate": 0.0006, + "loss": 3.7641284465789795, + "step": 2128 + }, + { + "epoch": 29.573176059414592, + "grad_norm": 0.24020728468894958, + "learning_rate": 0.0006, + "loss": 3.7748730182647705, + "step": 2129 + }, + { + "epoch": 29.587155963302752, + "grad_norm": 0.256273478269577, + "learning_rate": 0.0006, + "loss": 3.8076486587524414, + "step": 2130 + }, + { + "epoch": 29.601135867190912, + "grad_norm": 0.23295973241329193, + "learning_rate": 0.0006, + "loss": 3.7687063217163086, + "step": 2131 + }, + { + "epoch": 29.615115771079076, + "grad_norm": 0.21554847061634064, + "learning_rate": 0.0006, + "loss": 3.781867027282715, + "step": 2132 + }, + { + "epoch": 29.629095674967235, + "grad_norm": 0.20645774900913239, + "learning_rate": 0.0006, + "loss": 3.7813425064086914, + "step": 2133 + }, + { + "epoch": 29.643075578855395, + "grad_norm": 0.2018265724182129, + "learning_rate": 0.0006, + "loss": 3.772895574569702, + "step": 2134 + }, + { + "epoch": 29.657055482743555, + "grad_norm": 0.20170100033283234, + "learning_rate": 0.0006, + "loss": 3.7819175720214844, + "step": 2135 + }, + { + "epoch": 29.67103538663172, + "grad_norm": 0.22640688717365265, + "learning_rate": 0.0006, + "loss": 3.7999017238616943, + "step": 2136 + }, + { + "epoch": 29.68501529051988, + "grad_norm": 0.23747675120830536, + "learning_rate": 0.0006, + "loss": 3.804999828338623, + "step": 2137 + }, + { + "epoch": 29.698995194408038, + "grad_norm": 0.20005857944488525, + "learning_rate": 0.0006, + "loss": 3.7815160751342773, + "step": 2138 + }, + { + "epoch": 29.712975098296198, + "grad_norm": 0.17901667952537537, + "learning_rate": 0.0006, + "loss": 3.7898688316345215, + "step": 2139 + }, + { + "epoch": 29.72695500218436, + "grad_norm": 0.1890905797481537, + "learning_rate": 0.0006, + "loss": 3.8001184463500977, + "step": 2140 + }, + { + "epoch": 29.74093490607252, + "grad_norm": 0.19565847516059875, + "learning_rate": 0.0006, + "loss": 3.7522482872009277, + "step": 2141 + }, + { + "epoch": 29.75491480996068, + "grad_norm": 0.19429196417331696, + "learning_rate": 0.0006, + "loss": 3.768972158432007, + "step": 2142 + }, + { + "epoch": 29.76889471384884, + "grad_norm": 0.23846636712551117, + "learning_rate": 0.0006, + "loss": 3.765216112136841, + "step": 2143 + }, + { + "epoch": 29.782874617737004, + "grad_norm": 0.23820780217647552, + "learning_rate": 0.0006, + "loss": 3.8027703762054443, + "step": 2144 + }, + { + "epoch": 29.796854521625164, + "grad_norm": 0.21104726195335388, + "learning_rate": 0.0006, + "loss": 3.7682833671569824, + "step": 2145 + }, + { + "epoch": 29.810834425513324, + "grad_norm": 0.1911051720380783, + "learning_rate": 0.0006, + "loss": 3.781782627105713, + "step": 2146 + }, + { + "epoch": 29.824814329401484, + "grad_norm": 0.18881288170814514, + "learning_rate": 0.0006, + "loss": 3.7703428268432617, + "step": 2147 + }, + { + "epoch": 29.838794233289647, + "grad_norm": 0.18292994797229767, + "learning_rate": 0.0006, + "loss": 3.769176721572876, + "step": 2148 + }, + { + "epoch": 29.852774137177807, + "grad_norm": 0.1777714639902115, + "learning_rate": 0.0006, + "loss": 3.7488298416137695, + "step": 2149 + }, + { + "epoch": 29.866754041065967, + "grad_norm": 0.2037898749113083, + "learning_rate": 0.0006, + "loss": 3.804396390914917, + "step": 2150 + }, + { + "epoch": 29.88073394495413, + "grad_norm": 0.2121828943490982, + "learning_rate": 0.0006, + "loss": 3.75870943069458, + "step": 2151 + }, + { + "epoch": 29.89471384884229, + "grad_norm": 0.23231184482574463, + "learning_rate": 0.0006, + "loss": 3.80178165435791, + "step": 2152 + }, + { + "epoch": 29.90869375273045, + "grad_norm": 0.24045611917972565, + "learning_rate": 0.0006, + "loss": 3.7690834999084473, + "step": 2153 + }, + { + "epoch": 29.92267365661861, + "grad_norm": 0.19830496609210968, + "learning_rate": 0.0006, + "loss": 3.764401912689209, + "step": 2154 + }, + { + "epoch": 29.936653560506773, + "grad_norm": 0.17704227566719055, + "learning_rate": 0.0006, + "loss": 3.7634594440460205, + "step": 2155 + }, + { + "epoch": 29.950633464394933, + "grad_norm": 0.17783164978027344, + "learning_rate": 0.0006, + "loss": 3.7856998443603516, + "step": 2156 + }, + { + "epoch": 29.964613368283093, + "grad_norm": 0.19684971868991852, + "learning_rate": 0.0006, + "loss": 3.805774211883545, + "step": 2157 + }, + { + "epoch": 29.978593272171253, + "grad_norm": 0.21662312746047974, + "learning_rate": 0.0006, + "loss": 3.757896661758423, + "step": 2158 + }, + { + "epoch": 29.992573176059416, + "grad_norm": 0.22000661492347717, + "learning_rate": 0.0006, + "loss": 3.7747678756713867, + "step": 2159 + }, + { + "epoch": 30.0, + "grad_norm": 0.21501901745796204, + "learning_rate": 0.0006, + "loss": 3.785585880279541, + "step": 2160 + }, + { + "epoch": 30.0, + "eval_loss": 4.034003734588623, + "eval_runtime": 44.9097, + "eval_samples_per_second": 54.376, + "eval_steps_per_second": 3.407, + "step": 2160 + }, + { + "epoch": 30.01397990388816, + "grad_norm": 0.19710904359817505, + "learning_rate": 0.0006, + "loss": 3.756235122680664, + "step": 2161 + }, + { + "epoch": 30.027959807776323, + "grad_norm": 0.19829736649990082, + "learning_rate": 0.0006, + "loss": 3.734067916870117, + "step": 2162 + }, + { + "epoch": 30.041939711664483, + "grad_norm": 0.21622520685195923, + "learning_rate": 0.0006, + "loss": 3.7329437732696533, + "step": 2163 + }, + { + "epoch": 30.055919615552643, + "grad_norm": 0.22544652223587036, + "learning_rate": 0.0006, + "loss": 3.748716354370117, + "step": 2164 + }, + { + "epoch": 30.069899519440803, + "grad_norm": 0.21098364889621735, + "learning_rate": 0.0006, + "loss": 3.779047727584839, + "step": 2165 + }, + { + "epoch": 30.083879423328966, + "grad_norm": 0.21309930086135864, + "learning_rate": 0.0006, + "loss": 3.7690274715423584, + "step": 2166 + }, + { + "epoch": 30.097859327217126, + "grad_norm": 0.23025690019130707, + "learning_rate": 0.0006, + "loss": 3.7500953674316406, + "step": 2167 + }, + { + "epoch": 30.111839231105286, + "grad_norm": 0.25107935070991516, + "learning_rate": 0.0006, + "loss": 3.745492458343506, + "step": 2168 + }, + { + "epoch": 30.125819134993446, + "grad_norm": 0.29873573780059814, + "learning_rate": 0.0006, + "loss": 3.759793758392334, + "step": 2169 + }, + { + "epoch": 30.13979903888161, + "grad_norm": 0.2810286283493042, + "learning_rate": 0.0006, + "loss": 3.772998809814453, + "step": 2170 + }, + { + "epoch": 30.15377894276977, + "grad_norm": 0.2102176398038864, + "learning_rate": 0.0006, + "loss": 3.740170955657959, + "step": 2171 + }, + { + "epoch": 30.16775884665793, + "grad_norm": 0.24143251776695251, + "learning_rate": 0.0006, + "loss": 3.7317001819610596, + "step": 2172 + }, + { + "epoch": 30.18173875054609, + "grad_norm": 0.2643064558506012, + "learning_rate": 0.0006, + "loss": 3.773263692855835, + "step": 2173 + }, + { + "epoch": 30.195718654434252, + "grad_norm": 0.27571243047714233, + "learning_rate": 0.0006, + "loss": 3.7619900703430176, + "step": 2174 + }, + { + "epoch": 30.209698558322412, + "grad_norm": 0.25359588861465454, + "learning_rate": 0.0006, + "loss": 3.7608513832092285, + "step": 2175 + }, + { + "epoch": 30.22367846221057, + "grad_norm": 0.2500684857368469, + "learning_rate": 0.0006, + "loss": 3.75856614112854, + "step": 2176 + }, + { + "epoch": 30.23765836609873, + "grad_norm": 0.23100309073925018, + "learning_rate": 0.0006, + "loss": 3.749786853790283, + "step": 2177 + }, + { + "epoch": 30.251638269986895, + "grad_norm": 0.24384984374046326, + "learning_rate": 0.0006, + "loss": 3.762244701385498, + "step": 2178 + }, + { + "epoch": 30.265618173875055, + "grad_norm": 0.24593998491764069, + "learning_rate": 0.0006, + "loss": 3.754594326019287, + "step": 2179 + }, + { + "epoch": 30.279598077763215, + "grad_norm": 0.2529342770576477, + "learning_rate": 0.0006, + "loss": 3.7641053199768066, + "step": 2180 + }, + { + "epoch": 30.293577981651374, + "grad_norm": 0.25954094529151917, + "learning_rate": 0.0006, + "loss": 3.810336112976074, + "step": 2181 + }, + { + "epoch": 30.307557885539538, + "grad_norm": 0.2249951958656311, + "learning_rate": 0.0006, + "loss": 3.7542617321014404, + "step": 2182 + }, + { + "epoch": 30.321537789427698, + "grad_norm": 0.19795064628124237, + "learning_rate": 0.0006, + "loss": 3.7734434604644775, + "step": 2183 + }, + { + "epoch": 30.335517693315857, + "grad_norm": 0.20744608342647552, + "learning_rate": 0.0006, + "loss": 3.7816128730773926, + "step": 2184 + }, + { + "epoch": 30.34949759720402, + "grad_norm": 0.19988055527210236, + "learning_rate": 0.0006, + "loss": 3.7631936073303223, + "step": 2185 + }, + { + "epoch": 30.36347750109218, + "grad_norm": 0.22226445376873016, + "learning_rate": 0.0006, + "loss": 3.762910842895508, + "step": 2186 + }, + { + "epoch": 30.37745740498034, + "grad_norm": 0.21986067295074463, + "learning_rate": 0.0006, + "loss": 3.733893394470215, + "step": 2187 + }, + { + "epoch": 30.3914373088685, + "grad_norm": 0.2170228660106659, + "learning_rate": 0.0006, + "loss": 3.726433515548706, + "step": 2188 + }, + { + "epoch": 30.405417212756664, + "grad_norm": 0.2179550975561142, + "learning_rate": 0.0006, + "loss": 3.792311668395996, + "step": 2189 + }, + { + "epoch": 30.419397116644824, + "grad_norm": 0.208037331700325, + "learning_rate": 0.0006, + "loss": 3.774639129638672, + "step": 2190 + }, + { + "epoch": 30.433377020532983, + "grad_norm": 0.20745441317558289, + "learning_rate": 0.0006, + "loss": 3.776130199432373, + "step": 2191 + }, + { + "epoch": 30.447356924421143, + "grad_norm": 0.1988024264574051, + "learning_rate": 0.0006, + "loss": 3.7453784942626953, + "step": 2192 + }, + { + "epoch": 30.461336828309307, + "grad_norm": 0.194968581199646, + "learning_rate": 0.0006, + "loss": 3.764653205871582, + "step": 2193 + }, + { + "epoch": 30.475316732197467, + "grad_norm": 0.20658300817012787, + "learning_rate": 0.0006, + "loss": 3.796513080596924, + "step": 2194 + }, + { + "epoch": 30.489296636085626, + "grad_norm": 0.2123410701751709, + "learning_rate": 0.0006, + "loss": 3.7630836963653564, + "step": 2195 + }, + { + "epoch": 30.503276539973786, + "grad_norm": 0.20894059538841248, + "learning_rate": 0.0006, + "loss": 3.7265470027923584, + "step": 2196 + }, + { + "epoch": 30.51725644386195, + "grad_norm": 0.2016828954219818, + "learning_rate": 0.0006, + "loss": 3.8083386421203613, + "step": 2197 + }, + { + "epoch": 30.53123634775011, + "grad_norm": 0.19584205746650696, + "learning_rate": 0.0006, + "loss": 3.7492105960845947, + "step": 2198 + }, + { + "epoch": 30.54521625163827, + "grad_norm": 0.18635272979736328, + "learning_rate": 0.0006, + "loss": 3.711009979248047, + "step": 2199 + }, + { + "epoch": 30.55919615552643, + "grad_norm": 0.1920594871044159, + "learning_rate": 0.0006, + "loss": 3.760801315307617, + "step": 2200 + }, + { + "epoch": 30.573176059414592, + "grad_norm": 0.1978331208229065, + "learning_rate": 0.0006, + "loss": 3.780529022216797, + "step": 2201 + }, + { + "epoch": 30.587155963302752, + "grad_norm": 0.20076943933963776, + "learning_rate": 0.0006, + "loss": 3.7767038345336914, + "step": 2202 + }, + { + "epoch": 30.601135867190912, + "grad_norm": 0.2067444622516632, + "learning_rate": 0.0006, + "loss": 3.7607920169830322, + "step": 2203 + }, + { + "epoch": 30.615115771079076, + "grad_norm": 0.2081940472126007, + "learning_rate": 0.0006, + "loss": 3.741936206817627, + "step": 2204 + }, + { + "epoch": 30.629095674967235, + "grad_norm": 0.21212869882583618, + "learning_rate": 0.0006, + "loss": 3.7597827911376953, + "step": 2205 + }, + { + "epoch": 30.643075578855395, + "grad_norm": 0.21539026498794556, + "learning_rate": 0.0006, + "loss": 3.764646053314209, + "step": 2206 + }, + { + "epoch": 30.657055482743555, + "grad_norm": 0.19788387417793274, + "learning_rate": 0.0006, + "loss": 3.7535128593444824, + "step": 2207 + }, + { + "epoch": 30.67103538663172, + "grad_norm": 0.20757688581943512, + "learning_rate": 0.0006, + "loss": 3.7414169311523438, + "step": 2208 + }, + { + "epoch": 30.68501529051988, + "grad_norm": 0.199361652135849, + "learning_rate": 0.0006, + "loss": 3.7578506469726562, + "step": 2209 + }, + { + "epoch": 30.698995194408038, + "grad_norm": 0.1909894198179245, + "learning_rate": 0.0006, + "loss": 3.736250400543213, + "step": 2210 + }, + { + "epoch": 30.712975098296198, + "grad_norm": 0.19766664505004883, + "learning_rate": 0.0006, + "loss": 3.7435379028320312, + "step": 2211 + }, + { + "epoch": 30.72695500218436, + "grad_norm": 0.21857766807079315, + "learning_rate": 0.0006, + "loss": 3.7478690147399902, + "step": 2212 + }, + { + "epoch": 30.74093490607252, + "grad_norm": 0.22385898232460022, + "learning_rate": 0.0006, + "loss": 3.7522530555725098, + "step": 2213 + }, + { + "epoch": 30.75491480996068, + "grad_norm": 0.2329241931438446, + "learning_rate": 0.0006, + "loss": 3.7568247318267822, + "step": 2214 + }, + { + "epoch": 30.76889471384884, + "grad_norm": 0.2218400090932846, + "learning_rate": 0.0006, + "loss": 3.7662744522094727, + "step": 2215 + }, + { + "epoch": 30.782874617737004, + "grad_norm": 0.21350212395191193, + "learning_rate": 0.0006, + "loss": 3.7683777809143066, + "step": 2216 + }, + { + "epoch": 30.796854521625164, + "grad_norm": 0.22357074916362762, + "learning_rate": 0.0006, + "loss": 3.763437032699585, + "step": 2217 + }, + { + "epoch": 30.810834425513324, + "grad_norm": 0.22268560528755188, + "learning_rate": 0.0006, + "loss": 3.772836685180664, + "step": 2218 + }, + { + "epoch": 30.824814329401484, + "grad_norm": 0.2434026449918747, + "learning_rate": 0.0006, + "loss": 3.752986431121826, + "step": 2219 + }, + { + "epoch": 30.838794233289647, + "grad_norm": 0.2298414409160614, + "learning_rate": 0.0006, + "loss": 3.7837061882019043, + "step": 2220 + }, + { + "epoch": 30.852774137177807, + "grad_norm": 0.227672278881073, + "learning_rate": 0.0006, + "loss": 3.746065378189087, + "step": 2221 + }, + { + "epoch": 30.866754041065967, + "grad_norm": 0.2562827169895172, + "learning_rate": 0.0006, + "loss": 3.7741947174072266, + "step": 2222 + }, + { + "epoch": 30.88073394495413, + "grad_norm": 0.23657815158367157, + "learning_rate": 0.0006, + "loss": 3.746457099914551, + "step": 2223 + }, + { + "epoch": 30.89471384884229, + "grad_norm": 0.2158907800912857, + "learning_rate": 0.0006, + "loss": 3.7821710109710693, + "step": 2224 + }, + { + "epoch": 30.90869375273045, + "grad_norm": 0.22501254081726074, + "learning_rate": 0.0006, + "loss": 3.7528274059295654, + "step": 2225 + }, + { + "epoch": 30.92267365661861, + "grad_norm": 0.20252224802970886, + "learning_rate": 0.0006, + "loss": 3.749418258666992, + "step": 2226 + }, + { + "epoch": 30.936653560506773, + "grad_norm": 0.2067883312702179, + "learning_rate": 0.0006, + "loss": 3.7560606002807617, + "step": 2227 + }, + { + "epoch": 30.950633464394933, + "grad_norm": 0.23104053735733032, + "learning_rate": 0.0006, + "loss": 3.7883846759796143, + "step": 2228 + }, + { + "epoch": 30.964613368283093, + "grad_norm": 0.21476604044437408, + "learning_rate": 0.0006, + "loss": 3.7976977825164795, + "step": 2229 + }, + { + "epoch": 30.978593272171253, + "grad_norm": 0.2130427062511444, + "learning_rate": 0.0006, + "loss": 3.7429304122924805, + "step": 2230 + }, + { + "epoch": 30.992573176059416, + "grad_norm": 0.2047216147184372, + "learning_rate": 0.0006, + "loss": 3.7669787406921387, + "step": 2231 + }, + { + "epoch": 31.0, + "grad_norm": 0.22254081070423126, + "learning_rate": 0.0006, + "loss": 3.7794251441955566, + "step": 2232 + }, + { + "epoch": 31.0, + "eval_loss": 4.039162635803223, + "eval_runtime": 44.9069, + "eval_samples_per_second": 54.379, + "eval_steps_per_second": 3.407, + "step": 2232 + }, + { + "epoch": 31.01397990388816, + "grad_norm": 0.2278132289648056, + "learning_rate": 0.0006, + "loss": 3.7363929748535156, + "step": 2233 + }, + { + "epoch": 31.027959807776323, + "grad_norm": 0.2377072274684906, + "learning_rate": 0.0006, + "loss": 3.72847318649292, + "step": 2234 + }, + { + "epoch": 31.041939711664483, + "grad_norm": 0.23790542781352997, + "learning_rate": 0.0006, + "loss": 3.767193078994751, + "step": 2235 + }, + { + "epoch": 31.055919615552643, + "grad_norm": 0.2587272524833679, + "learning_rate": 0.0006, + "loss": 3.7564640045166016, + "step": 2236 + }, + { + "epoch": 31.069899519440803, + "grad_norm": 0.27550312876701355, + "learning_rate": 0.0006, + "loss": 3.727578639984131, + "step": 2237 + }, + { + "epoch": 31.083879423328966, + "grad_norm": 0.2488662451505661, + "learning_rate": 0.0006, + "loss": 3.7420730590820312, + "step": 2238 + }, + { + "epoch": 31.097859327217126, + "grad_norm": 0.22699029743671417, + "learning_rate": 0.0006, + "loss": 3.7323155403137207, + "step": 2239 + }, + { + "epoch": 31.111839231105286, + "grad_norm": 0.23360148072242737, + "learning_rate": 0.0006, + "loss": 3.719024181365967, + "step": 2240 + }, + { + "epoch": 31.125819134993446, + "grad_norm": 0.24322988092899323, + "learning_rate": 0.0006, + "loss": 3.74485445022583, + "step": 2241 + }, + { + "epoch": 31.13979903888161, + "grad_norm": 0.2474174052476883, + "learning_rate": 0.0006, + "loss": 3.746826171875, + "step": 2242 + }, + { + "epoch": 31.15377894276977, + "grad_norm": 0.2417406439781189, + "learning_rate": 0.0006, + "loss": 3.7285032272338867, + "step": 2243 + }, + { + "epoch": 31.16775884665793, + "grad_norm": 0.2390318512916565, + "learning_rate": 0.0006, + "loss": 3.7464442253112793, + "step": 2244 + }, + { + "epoch": 31.18173875054609, + "grad_norm": 0.21819323301315308, + "learning_rate": 0.0006, + "loss": 3.735110282897949, + "step": 2245 + }, + { + "epoch": 31.195718654434252, + "grad_norm": 0.21953554451465607, + "learning_rate": 0.0006, + "loss": 3.7270030975341797, + "step": 2246 + }, + { + "epoch": 31.209698558322412, + "grad_norm": 0.1930384635925293, + "learning_rate": 0.0006, + "loss": 3.7519941329956055, + "step": 2247 + }, + { + "epoch": 31.22367846221057, + "grad_norm": 0.19799190759658813, + "learning_rate": 0.0006, + "loss": 3.7428221702575684, + "step": 2248 + }, + { + "epoch": 31.23765836609873, + "grad_norm": 0.20948201417922974, + "learning_rate": 0.0006, + "loss": 3.733120918273926, + "step": 2249 + }, + { + "epoch": 31.251638269986895, + "grad_norm": 0.23768769204616547, + "learning_rate": 0.0006, + "loss": 3.7059035301208496, + "step": 2250 + }, + { + "epoch": 31.265618173875055, + "grad_norm": 0.2808842957019806, + "learning_rate": 0.0006, + "loss": 3.7245287895202637, + "step": 2251 + }, + { + "epoch": 31.279598077763215, + "grad_norm": 0.27633124589920044, + "learning_rate": 0.0006, + "loss": 3.7436366081237793, + "step": 2252 + }, + { + "epoch": 31.293577981651374, + "grad_norm": 0.24137185513973236, + "learning_rate": 0.0006, + "loss": 3.7651219367980957, + "step": 2253 + }, + { + "epoch": 31.307557885539538, + "grad_norm": 0.22056810557842255, + "learning_rate": 0.0006, + "loss": 3.7417521476745605, + "step": 2254 + }, + { + "epoch": 31.321537789427698, + "grad_norm": 0.20137323439121246, + "learning_rate": 0.0006, + "loss": 3.750187397003174, + "step": 2255 + }, + { + "epoch": 31.335517693315857, + "grad_norm": 0.2142433375120163, + "learning_rate": 0.0006, + "loss": 3.7292675971984863, + "step": 2256 + }, + { + "epoch": 31.34949759720402, + "grad_norm": 0.21193967759609222, + "learning_rate": 0.0006, + "loss": 3.7459473609924316, + "step": 2257 + }, + { + "epoch": 31.36347750109218, + "grad_norm": 0.21418534219264984, + "learning_rate": 0.0006, + "loss": 3.754359722137451, + "step": 2258 + }, + { + "epoch": 31.37745740498034, + "grad_norm": 0.23507359623908997, + "learning_rate": 0.0006, + "loss": 3.763413906097412, + "step": 2259 + }, + { + "epoch": 31.3914373088685, + "grad_norm": 0.20393887162208557, + "learning_rate": 0.0006, + "loss": 3.73878812789917, + "step": 2260 + }, + { + "epoch": 31.405417212756664, + "grad_norm": 0.21752159297466278, + "learning_rate": 0.0006, + "loss": 3.750549793243408, + "step": 2261 + }, + { + "epoch": 31.419397116644824, + "grad_norm": 0.22629529237747192, + "learning_rate": 0.0006, + "loss": 3.7791430950164795, + "step": 2262 + }, + { + "epoch": 31.433377020532983, + "grad_norm": 0.2114613950252533, + "learning_rate": 0.0006, + "loss": 3.7709264755249023, + "step": 2263 + }, + { + "epoch": 31.447356924421143, + "grad_norm": 0.23241667449474335, + "learning_rate": 0.0006, + "loss": 3.745750665664673, + "step": 2264 + }, + { + "epoch": 31.461336828309307, + "grad_norm": 0.2434246987104416, + "learning_rate": 0.0006, + "loss": 3.769727945327759, + "step": 2265 + }, + { + "epoch": 31.475316732197467, + "grad_norm": 0.247820645570755, + "learning_rate": 0.0006, + "loss": 3.7528204917907715, + "step": 2266 + }, + { + "epoch": 31.489296636085626, + "grad_norm": 0.21287164092063904, + "learning_rate": 0.0006, + "loss": 3.728661060333252, + "step": 2267 + }, + { + "epoch": 31.503276539973786, + "grad_norm": 0.20983846485614777, + "learning_rate": 0.0006, + "loss": 3.7524428367614746, + "step": 2268 + }, + { + "epoch": 31.51725644386195, + "grad_norm": 0.23799288272857666, + "learning_rate": 0.0006, + "loss": 3.7276647090911865, + "step": 2269 + }, + { + "epoch": 31.53123634775011, + "grad_norm": 0.247065007686615, + "learning_rate": 0.0006, + "loss": 3.7506704330444336, + "step": 2270 + }, + { + "epoch": 31.54521625163827, + "grad_norm": 0.20670939981937408, + "learning_rate": 0.0006, + "loss": 3.71852445602417, + "step": 2271 + }, + { + "epoch": 31.55919615552643, + "grad_norm": 0.19463716447353363, + "learning_rate": 0.0006, + "loss": 3.732757568359375, + "step": 2272 + }, + { + "epoch": 31.573176059414592, + "grad_norm": 0.20368841290473938, + "learning_rate": 0.0006, + "loss": 3.746676445007324, + "step": 2273 + }, + { + "epoch": 31.587155963302752, + "grad_norm": 0.19691342115402222, + "learning_rate": 0.0006, + "loss": 3.7535760402679443, + "step": 2274 + }, + { + "epoch": 31.601135867190912, + "grad_norm": 0.2026553899049759, + "learning_rate": 0.0006, + "loss": 3.7406957149505615, + "step": 2275 + }, + { + "epoch": 31.615115771079076, + "grad_norm": 0.21494299173355103, + "learning_rate": 0.0006, + "loss": 3.735888957977295, + "step": 2276 + }, + { + "epoch": 31.629095674967235, + "grad_norm": 0.21644766628742218, + "learning_rate": 0.0006, + "loss": 3.723767042160034, + "step": 2277 + }, + { + "epoch": 31.643075578855395, + "grad_norm": 0.20087581872940063, + "learning_rate": 0.0006, + "loss": 3.7622008323669434, + "step": 2278 + }, + { + "epoch": 31.657055482743555, + "grad_norm": 0.1949695646762848, + "learning_rate": 0.0006, + "loss": 3.7726354598999023, + "step": 2279 + }, + { + "epoch": 31.67103538663172, + "grad_norm": 0.19120797514915466, + "learning_rate": 0.0006, + "loss": 3.7454679012298584, + "step": 2280 + }, + { + "epoch": 31.68501529051988, + "grad_norm": 0.19480115175247192, + "learning_rate": 0.0006, + "loss": 3.743934392929077, + "step": 2281 + }, + { + "epoch": 31.698995194408038, + "grad_norm": 0.1891610324382782, + "learning_rate": 0.0006, + "loss": 3.7724897861480713, + "step": 2282 + }, + { + "epoch": 31.712975098296198, + "grad_norm": 0.18533185124397278, + "learning_rate": 0.0006, + "loss": 3.7556838989257812, + "step": 2283 + }, + { + "epoch": 31.72695500218436, + "grad_norm": 0.20079447329044342, + "learning_rate": 0.0006, + "loss": 3.76758074760437, + "step": 2284 + }, + { + "epoch": 31.74093490607252, + "grad_norm": 0.2103433609008789, + "learning_rate": 0.0006, + "loss": 3.769477367401123, + "step": 2285 + }, + { + "epoch": 31.75491480996068, + "grad_norm": 0.21428923308849335, + "learning_rate": 0.0006, + "loss": 3.7317447662353516, + "step": 2286 + }, + { + "epoch": 31.76889471384884, + "grad_norm": 0.20154133439064026, + "learning_rate": 0.0006, + "loss": 3.749814987182617, + "step": 2287 + }, + { + "epoch": 31.782874617737004, + "grad_norm": 0.18998542428016663, + "learning_rate": 0.0006, + "loss": 3.7655510902404785, + "step": 2288 + }, + { + "epoch": 31.796854521625164, + "grad_norm": 0.2068665474653244, + "learning_rate": 0.0006, + "loss": 3.7375988960266113, + "step": 2289 + }, + { + "epoch": 31.810834425513324, + "grad_norm": 0.22979815304279327, + "learning_rate": 0.0006, + "loss": 3.728095531463623, + "step": 2290 + }, + { + "epoch": 31.824814329401484, + "grad_norm": 0.2378212958574295, + "learning_rate": 0.0006, + "loss": 3.73091459274292, + "step": 2291 + }, + { + "epoch": 31.838794233289647, + "grad_norm": 0.2353672832250595, + "learning_rate": 0.0006, + "loss": 3.7491769790649414, + "step": 2292 + }, + { + "epoch": 31.852774137177807, + "grad_norm": 0.22341586649417877, + "learning_rate": 0.0006, + "loss": 3.777111530303955, + "step": 2293 + }, + { + "epoch": 31.866754041065967, + "grad_norm": 0.20436930656433105, + "learning_rate": 0.0006, + "loss": 3.740997552871704, + "step": 2294 + }, + { + "epoch": 31.88073394495413, + "grad_norm": 0.20836040377616882, + "learning_rate": 0.0006, + "loss": 3.755582571029663, + "step": 2295 + }, + { + "epoch": 31.89471384884229, + "grad_norm": 0.2045193612575531, + "learning_rate": 0.0006, + "loss": 3.7583560943603516, + "step": 2296 + }, + { + "epoch": 31.90869375273045, + "grad_norm": 0.2025591880083084, + "learning_rate": 0.0006, + "loss": 3.773345470428467, + "step": 2297 + }, + { + "epoch": 31.92267365661861, + "grad_norm": 0.20309099555015564, + "learning_rate": 0.0006, + "loss": 3.7392163276672363, + "step": 2298 + }, + { + "epoch": 31.936653560506773, + "grad_norm": 0.2129351645708084, + "learning_rate": 0.0006, + "loss": 3.7801311016082764, + "step": 2299 + }, + { + "epoch": 31.950633464394933, + "grad_norm": 0.19950738549232483, + "learning_rate": 0.0006, + "loss": 3.779261589050293, + "step": 2300 + }, + { + "epoch": 31.964613368283093, + "grad_norm": 0.22837352752685547, + "learning_rate": 0.0006, + "loss": 3.782731294631958, + "step": 2301 + }, + { + "epoch": 31.978593272171253, + "grad_norm": 0.2576889097690582, + "learning_rate": 0.0006, + "loss": 3.7778096199035645, + "step": 2302 + }, + { + "epoch": 31.992573176059416, + "grad_norm": 0.2770138382911682, + "learning_rate": 0.0006, + "loss": 3.735755443572998, + "step": 2303 + }, + { + "epoch": 32.0, + "grad_norm": 0.2632865309715271, + "learning_rate": 0.0006, + "loss": 3.7562808990478516, + "step": 2304 + }, + { + "epoch": 32.0, + "eval_loss": 4.031628608703613, + "eval_runtime": 44.2115, + "eval_samples_per_second": 55.234, + "eval_steps_per_second": 3.461, + "step": 2304 + }, + { + "epoch": 32.01397990388816, + "grad_norm": 0.20234128832817078, + "learning_rate": 0.0006, + "loss": 3.734489917755127, + "step": 2305 + }, + { + "epoch": 32.02795980777632, + "grad_norm": 0.24983637034893036, + "learning_rate": 0.0006, + "loss": 3.7351019382476807, + "step": 2306 + }, + { + "epoch": 32.04193971166448, + "grad_norm": 0.27358478307724, + "learning_rate": 0.0006, + "loss": 3.708712100982666, + "step": 2307 + }, + { + "epoch": 32.05591961555265, + "grad_norm": 0.24693739414215088, + "learning_rate": 0.0006, + "loss": 3.731858491897583, + "step": 2308 + }, + { + "epoch": 32.0698995194408, + "grad_norm": 0.22751131653785706, + "learning_rate": 0.0006, + "loss": 3.7074670791625977, + "step": 2309 + }, + { + "epoch": 32.083879423328966, + "grad_norm": 0.23400720953941345, + "learning_rate": 0.0006, + "loss": 3.714092493057251, + "step": 2310 + }, + { + "epoch": 32.09785932721712, + "grad_norm": 0.20711684226989746, + "learning_rate": 0.0006, + "loss": 3.754727840423584, + "step": 2311 + }, + { + "epoch": 32.111839231105286, + "grad_norm": 0.21589399874210358, + "learning_rate": 0.0006, + "loss": 3.6953847408294678, + "step": 2312 + }, + { + "epoch": 32.12581913499345, + "grad_norm": 0.24575738608837128, + "learning_rate": 0.0006, + "loss": 3.7078802585601807, + "step": 2313 + }, + { + "epoch": 32.139799038881605, + "grad_norm": 0.23152033984661102, + "learning_rate": 0.0006, + "loss": 3.7402305603027344, + "step": 2314 + }, + { + "epoch": 32.15377894276977, + "grad_norm": 0.22639606893062592, + "learning_rate": 0.0006, + "loss": 3.7264223098754883, + "step": 2315 + }, + { + "epoch": 32.16775884665793, + "grad_norm": 0.24701760709285736, + "learning_rate": 0.0006, + "loss": 3.7497639656066895, + "step": 2316 + }, + { + "epoch": 32.18173875054609, + "grad_norm": 0.274832159280777, + "learning_rate": 0.0006, + "loss": 3.7557122707366943, + "step": 2317 + }, + { + "epoch": 32.19571865443425, + "grad_norm": 0.27472418546676636, + "learning_rate": 0.0006, + "loss": 3.6863393783569336, + "step": 2318 + }, + { + "epoch": 32.20969855832241, + "grad_norm": 0.2625530958175659, + "learning_rate": 0.0006, + "loss": 3.7203545570373535, + "step": 2319 + }, + { + "epoch": 32.22367846221057, + "grad_norm": 0.2576068341732025, + "learning_rate": 0.0006, + "loss": 3.734747886657715, + "step": 2320 + }, + { + "epoch": 32.237658366098735, + "grad_norm": 0.25946059823036194, + "learning_rate": 0.0006, + "loss": 3.7501730918884277, + "step": 2321 + }, + { + "epoch": 32.25163826998689, + "grad_norm": 0.2524135410785675, + "learning_rate": 0.0006, + "loss": 3.75177001953125, + "step": 2322 + }, + { + "epoch": 32.265618173875055, + "grad_norm": 0.2568551003932953, + "learning_rate": 0.0006, + "loss": 3.752450704574585, + "step": 2323 + }, + { + "epoch": 32.27959807776322, + "grad_norm": 0.2489749640226364, + "learning_rate": 0.0006, + "loss": 3.711735486984253, + "step": 2324 + }, + { + "epoch": 32.293577981651374, + "grad_norm": 0.2425498366355896, + "learning_rate": 0.0006, + "loss": 3.7004239559173584, + "step": 2325 + }, + { + "epoch": 32.30755788553954, + "grad_norm": 0.24359773099422455, + "learning_rate": 0.0006, + "loss": 3.733870029449463, + "step": 2326 + }, + { + "epoch": 32.3215377894277, + "grad_norm": 0.22314727306365967, + "learning_rate": 0.0006, + "loss": 3.699841022491455, + "step": 2327 + }, + { + "epoch": 32.33551769331586, + "grad_norm": 0.2047620266675949, + "learning_rate": 0.0006, + "loss": 3.732534170150757, + "step": 2328 + }, + { + "epoch": 32.34949759720402, + "grad_norm": 0.24393224716186523, + "learning_rate": 0.0006, + "loss": 3.7200770378112793, + "step": 2329 + }, + { + "epoch": 32.36347750109218, + "grad_norm": 0.23884256184101105, + "learning_rate": 0.0006, + "loss": 3.722318410873413, + "step": 2330 + }, + { + "epoch": 32.37745740498034, + "grad_norm": 0.23262189328670502, + "learning_rate": 0.0006, + "loss": 3.759033203125, + "step": 2331 + }, + { + "epoch": 32.391437308868504, + "grad_norm": 0.22542893886566162, + "learning_rate": 0.0006, + "loss": 3.729198694229126, + "step": 2332 + }, + { + "epoch": 32.40541721275666, + "grad_norm": 0.22479060292243958, + "learning_rate": 0.0006, + "loss": 3.7298169136047363, + "step": 2333 + }, + { + "epoch": 32.419397116644824, + "grad_norm": 0.21571804583072662, + "learning_rate": 0.0006, + "loss": 3.699937343597412, + "step": 2334 + }, + { + "epoch": 32.43337702053299, + "grad_norm": 0.20804545283317566, + "learning_rate": 0.0006, + "loss": 3.7495696544647217, + "step": 2335 + }, + { + "epoch": 32.44735692442114, + "grad_norm": 0.22751706838607788, + "learning_rate": 0.0006, + "loss": 3.7369821071624756, + "step": 2336 + }, + { + "epoch": 32.46133682830931, + "grad_norm": 0.2326795756816864, + "learning_rate": 0.0006, + "loss": 3.7636334896087646, + "step": 2337 + }, + { + "epoch": 32.47531673219746, + "grad_norm": 0.19971159100532532, + "learning_rate": 0.0006, + "loss": 3.72151517868042, + "step": 2338 + }, + { + "epoch": 32.489296636085626, + "grad_norm": 0.21078036725521088, + "learning_rate": 0.0006, + "loss": 3.7050065994262695, + "step": 2339 + }, + { + "epoch": 32.50327653997379, + "grad_norm": 0.22198088467121124, + "learning_rate": 0.0006, + "loss": 3.7654409408569336, + "step": 2340 + }, + { + "epoch": 32.517256443861946, + "grad_norm": 0.20995207130908966, + "learning_rate": 0.0006, + "loss": 3.7516250610351562, + "step": 2341 + }, + { + "epoch": 32.53123634775011, + "grad_norm": 0.20757141709327698, + "learning_rate": 0.0006, + "loss": 3.7412633895874023, + "step": 2342 + }, + { + "epoch": 32.54521625163827, + "grad_norm": 0.20053881406784058, + "learning_rate": 0.0006, + "loss": 3.7477493286132812, + "step": 2343 + }, + { + "epoch": 32.55919615552643, + "grad_norm": 0.20223091542720795, + "learning_rate": 0.0006, + "loss": 3.7149064540863037, + "step": 2344 + }, + { + "epoch": 32.57317605941459, + "grad_norm": 0.20179468393325806, + "learning_rate": 0.0006, + "loss": 3.70635724067688, + "step": 2345 + }, + { + "epoch": 32.58715596330275, + "grad_norm": 0.19670480489730835, + "learning_rate": 0.0006, + "loss": 3.7276744842529297, + "step": 2346 + }, + { + "epoch": 32.60113586719091, + "grad_norm": 0.1992012858390808, + "learning_rate": 0.0006, + "loss": 3.7659356594085693, + "step": 2347 + }, + { + "epoch": 32.615115771079076, + "grad_norm": 0.20124201476573944, + "learning_rate": 0.0006, + "loss": 3.722212791442871, + "step": 2348 + }, + { + "epoch": 32.62909567496723, + "grad_norm": 0.21972708404064178, + "learning_rate": 0.0006, + "loss": 3.751830577850342, + "step": 2349 + }, + { + "epoch": 32.643075578855395, + "grad_norm": 0.20454947650432587, + "learning_rate": 0.0006, + "loss": 3.7196669578552246, + "step": 2350 + }, + { + "epoch": 32.65705548274356, + "grad_norm": 0.1783330887556076, + "learning_rate": 0.0006, + "loss": 3.721461772918701, + "step": 2351 + }, + { + "epoch": 32.671035386631715, + "grad_norm": 0.2027900367975235, + "learning_rate": 0.0006, + "loss": 3.753718614578247, + "step": 2352 + }, + { + "epoch": 32.68501529051988, + "grad_norm": 0.21232381463050842, + "learning_rate": 0.0006, + "loss": 3.732736349105835, + "step": 2353 + }, + { + "epoch": 32.69899519440804, + "grad_norm": 0.2214568555355072, + "learning_rate": 0.0006, + "loss": 3.7250165939331055, + "step": 2354 + }, + { + "epoch": 32.7129750982962, + "grad_norm": 0.2626485228538513, + "learning_rate": 0.0006, + "loss": 3.72263503074646, + "step": 2355 + }, + { + "epoch": 32.72695500218436, + "grad_norm": 0.30096277594566345, + "learning_rate": 0.0006, + "loss": 3.7599854469299316, + "step": 2356 + }, + { + "epoch": 32.74093490607252, + "grad_norm": 0.3374342620372772, + "learning_rate": 0.0006, + "loss": 3.7493844032287598, + "step": 2357 + }, + { + "epoch": 32.75491480996068, + "grad_norm": 0.3051377534866333, + "learning_rate": 0.0006, + "loss": 3.7515692710876465, + "step": 2358 + }, + { + "epoch": 32.768894713848844, + "grad_norm": 0.2130587249994278, + "learning_rate": 0.0006, + "loss": 3.751307964324951, + "step": 2359 + }, + { + "epoch": 32.782874617737, + "grad_norm": 0.25198230147361755, + "learning_rate": 0.0006, + "loss": 3.7500064373016357, + "step": 2360 + }, + { + "epoch": 32.796854521625164, + "grad_norm": 0.27613863348960876, + "learning_rate": 0.0006, + "loss": 3.7257039546966553, + "step": 2361 + }, + { + "epoch": 32.81083442551333, + "grad_norm": 0.23749367892742157, + "learning_rate": 0.0006, + "loss": 3.778343439102173, + "step": 2362 + }, + { + "epoch": 32.824814329401484, + "grad_norm": 0.2063702642917633, + "learning_rate": 0.0006, + "loss": 3.7493772506713867, + "step": 2363 + }, + { + "epoch": 32.83879423328965, + "grad_norm": 0.21169374883174896, + "learning_rate": 0.0006, + "loss": 3.722567081451416, + "step": 2364 + }, + { + "epoch": 32.8527741371778, + "grad_norm": 0.23291490972042084, + "learning_rate": 0.0006, + "loss": 3.7555532455444336, + "step": 2365 + }, + { + "epoch": 32.86675404106597, + "grad_norm": 0.21486155688762665, + "learning_rate": 0.0006, + "loss": 3.7401528358459473, + "step": 2366 + }, + { + "epoch": 32.88073394495413, + "grad_norm": 0.2296247035264969, + "learning_rate": 0.0006, + "loss": 3.7867965698242188, + "step": 2367 + }, + { + "epoch": 32.89471384884229, + "grad_norm": 0.2335108071565628, + "learning_rate": 0.0006, + "loss": 3.768036365509033, + "step": 2368 + }, + { + "epoch": 32.90869375273045, + "grad_norm": 0.23921863734722137, + "learning_rate": 0.0006, + "loss": 3.725252151489258, + "step": 2369 + }, + { + "epoch": 32.92267365661861, + "grad_norm": 0.20303526520729065, + "learning_rate": 0.0006, + "loss": 3.7806248664855957, + "step": 2370 + }, + { + "epoch": 32.93665356050677, + "grad_norm": 0.19293150305747986, + "learning_rate": 0.0006, + "loss": 3.759281873703003, + "step": 2371 + }, + { + "epoch": 32.95063346439493, + "grad_norm": 0.20609107613563538, + "learning_rate": 0.0006, + "loss": 3.764190196990967, + "step": 2372 + }, + { + "epoch": 32.964613368283096, + "grad_norm": 0.2014189213514328, + "learning_rate": 0.0006, + "loss": 3.7365214824676514, + "step": 2373 + }, + { + "epoch": 32.97859327217125, + "grad_norm": 0.22045451402664185, + "learning_rate": 0.0006, + "loss": 3.7435812950134277, + "step": 2374 + }, + { + "epoch": 32.992573176059416, + "grad_norm": 0.24228639900684357, + "learning_rate": 0.0006, + "loss": 3.751309394836426, + "step": 2375 + }, + { + "epoch": 33.0, + "grad_norm": 0.2645106613636017, + "learning_rate": 0.0006, + "loss": 3.7629928588867188, + "step": 2376 + }, + { + "epoch": 33.0, + "eval_loss": 4.026789665222168, + "eval_runtime": 44.9957, + "eval_samples_per_second": 54.272, + "eval_steps_per_second": 3.4, + "step": 2376 + }, + { + "epoch": 33.01397990388816, + "grad_norm": 0.21402551233768463, + "learning_rate": 0.0006, + "loss": 3.72019100189209, + "step": 2377 + }, + { + "epoch": 33.02795980777632, + "grad_norm": 0.23886585235595703, + "learning_rate": 0.0006, + "loss": 3.687084674835205, + "step": 2378 + }, + { + "epoch": 33.04193971166448, + "grad_norm": 0.29936572909355164, + "learning_rate": 0.0006, + "loss": 3.697310447692871, + "step": 2379 + }, + { + "epoch": 33.05591961555265, + "grad_norm": 0.30007585883140564, + "learning_rate": 0.0006, + "loss": 3.6913352012634277, + "step": 2380 + }, + { + "epoch": 33.0698995194408, + "grad_norm": 0.26594656705856323, + "learning_rate": 0.0006, + "loss": 3.740802526473999, + "step": 2381 + }, + { + "epoch": 33.083879423328966, + "grad_norm": 0.2658730447292328, + "learning_rate": 0.0006, + "loss": 3.692746162414551, + "step": 2382 + }, + { + "epoch": 33.09785932721712, + "grad_norm": 0.26755523681640625, + "learning_rate": 0.0006, + "loss": 3.7534420490264893, + "step": 2383 + }, + { + "epoch": 33.111839231105286, + "grad_norm": 0.23070940375328064, + "learning_rate": 0.0006, + "loss": 3.717876672744751, + "step": 2384 + }, + { + "epoch": 33.12581913499345, + "grad_norm": 0.2476235181093216, + "learning_rate": 0.0006, + "loss": 3.7072248458862305, + "step": 2385 + }, + { + "epoch": 33.139799038881605, + "grad_norm": 0.2454477846622467, + "learning_rate": 0.0006, + "loss": 3.729762077331543, + "step": 2386 + }, + { + "epoch": 33.15377894276977, + "grad_norm": 0.24090935289859772, + "learning_rate": 0.0006, + "loss": 3.721374988555908, + "step": 2387 + }, + { + "epoch": 33.16775884665793, + "grad_norm": 0.2440263032913208, + "learning_rate": 0.0006, + "loss": 3.730433464050293, + "step": 2388 + }, + { + "epoch": 33.18173875054609, + "grad_norm": 0.21699118614196777, + "learning_rate": 0.0006, + "loss": 3.724730968475342, + "step": 2389 + }, + { + "epoch": 33.19571865443425, + "grad_norm": 0.2302001267671585, + "learning_rate": 0.0006, + "loss": 3.69376277923584, + "step": 2390 + }, + { + "epoch": 33.20969855832241, + "grad_norm": 0.24707409739494324, + "learning_rate": 0.0006, + "loss": 3.705653667449951, + "step": 2391 + }, + { + "epoch": 33.22367846221057, + "grad_norm": 0.22896641492843628, + "learning_rate": 0.0006, + "loss": 3.747000217437744, + "step": 2392 + }, + { + "epoch": 33.237658366098735, + "grad_norm": 0.2278730720281601, + "learning_rate": 0.0006, + "loss": 3.733464241027832, + "step": 2393 + }, + { + "epoch": 33.25163826998689, + "grad_norm": 0.23909862339496613, + "learning_rate": 0.0006, + "loss": 3.733661413192749, + "step": 2394 + }, + { + "epoch": 33.265618173875055, + "grad_norm": 0.2349950075149536, + "learning_rate": 0.0006, + "loss": 3.7337965965270996, + "step": 2395 + }, + { + "epoch": 33.27959807776322, + "grad_norm": 0.22655968368053436, + "learning_rate": 0.0006, + "loss": 3.70503306388855, + "step": 2396 + }, + { + "epoch": 33.293577981651374, + "grad_norm": 0.22167043387889862, + "learning_rate": 0.0006, + "loss": 3.738797903060913, + "step": 2397 + }, + { + "epoch": 33.30755788553954, + "grad_norm": 0.2278883010149002, + "learning_rate": 0.0006, + "loss": 3.712550640106201, + "step": 2398 + }, + { + "epoch": 33.3215377894277, + "grad_norm": 0.2220565229654312, + "learning_rate": 0.0006, + "loss": 3.7278006076812744, + "step": 2399 + }, + { + "epoch": 33.33551769331586, + "grad_norm": 0.21888740360736847, + "learning_rate": 0.0006, + "loss": 3.72243595123291, + "step": 2400 + }, + { + "epoch": 33.34949759720402, + "grad_norm": 0.21587581932544708, + "learning_rate": 0.0006, + "loss": 3.7177581787109375, + "step": 2401 + }, + { + "epoch": 33.36347750109218, + "grad_norm": 0.1923578530550003, + "learning_rate": 0.0006, + "loss": 3.711294651031494, + "step": 2402 + }, + { + "epoch": 33.37745740498034, + "grad_norm": 0.1994934380054474, + "learning_rate": 0.0006, + "loss": 3.762061595916748, + "step": 2403 + }, + { + "epoch": 33.391437308868504, + "grad_norm": 0.20074427127838135, + "learning_rate": 0.0006, + "loss": 3.708559036254883, + "step": 2404 + }, + { + "epoch": 33.40541721275666, + "grad_norm": 0.21349482238292694, + "learning_rate": 0.0006, + "loss": 3.7089147567749023, + "step": 2405 + }, + { + "epoch": 33.419397116644824, + "grad_norm": 0.25523608922958374, + "learning_rate": 0.0006, + "loss": 3.7241058349609375, + "step": 2406 + }, + { + "epoch": 33.43337702053299, + "grad_norm": 0.27654796838760376, + "learning_rate": 0.0006, + "loss": 3.723618984222412, + "step": 2407 + }, + { + "epoch": 33.44735692442114, + "grad_norm": 0.2651479244232178, + "learning_rate": 0.0006, + "loss": 3.7367782592773438, + "step": 2408 + }, + { + "epoch": 33.46133682830931, + "grad_norm": 0.23403556644916534, + "learning_rate": 0.0006, + "loss": 3.7198312282562256, + "step": 2409 + }, + { + "epoch": 33.47531673219746, + "grad_norm": 0.20970726013183594, + "learning_rate": 0.0006, + "loss": 3.7088186740875244, + "step": 2410 + }, + { + "epoch": 33.489296636085626, + "grad_norm": 0.18532544374465942, + "learning_rate": 0.0006, + "loss": 3.7162208557128906, + "step": 2411 + }, + { + "epoch": 33.50327653997379, + "grad_norm": 0.19590279459953308, + "learning_rate": 0.0006, + "loss": 3.766357898712158, + "step": 2412 + }, + { + "epoch": 33.517256443861946, + "grad_norm": 0.203349307179451, + "learning_rate": 0.0006, + "loss": 3.732177257537842, + "step": 2413 + }, + { + "epoch": 33.53123634775011, + "grad_norm": 0.2015952616930008, + "learning_rate": 0.0006, + "loss": 3.741609573364258, + "step": 2414 + }, + { + "epoch": 33.54521625163827, + "grad_norm": 0.20024161040782928, + "learning_rate": 0.0006, + "loss": 3.6894431114196777, + "step": 2415 + }, + { + "epoch": 33.55919615552643, + "grad_norm": 0.20932617783546448, + "learning_rate": 0.0006, + "loss": 3.721979856491089, + "step": 2416 + }, + { + "epoch": 33.57317605941459, + "grad_norm": 0.22069773077964783, + "learning_rate": 0.0006, + "loss": 3.712203025817871, + "step": 2417 + }, + { + "epoch": 33.58715596330275, + "grad_norm": 0.22341343760490417, + "learning_rate": 0.0006, + "loss": 3.7469263076782227, + "step": 2418 + }, + { + "epoch": 33.60113586719091, + "grad_norm": 0.21758507192134857, + "learning_rate": 0.0006, + "loss": 3.721778392791748, + "step": 2419 + }, + { + "epoch": 33.615115771079076, + "grad_norm": 0.20480088889598846, + "learning_rate": 0.0006, + "loss": 3.743570327758789, + "step": 2420 + }, + { + "epoch": 33.62909567496723, + "grad_norm": 0.23068399727344513, + "learning_rate": 0.0006, + "loss": 3.7203001976013184, + "step": 2421 + }, + { + "epoch": 33.643075578855395, + "grad_norm": 0.2526263892650604, + "learning_rate": 0.0006, + "loss": 3.7336440086364746, + "step": 2422 + }, + { + "epoch": 33.65705548274356, + "grad_norm": 0.218627467751503, + "learning_rate": 0.0006, + "loss": 3.730762243270874, + "step": 2423 + }, + { + "epoch": 33.671035386631715, + "grad_norm": 0.21883417665958405, + "learning_rate": 0.0006, + "loss": 3.749356508255005, + "step": 2424 + }, + { + "epoch": 33.68501529051988, + "grad_norm": 0.22885626554489136, + "learning_rate": 0.0006, + "loss": 3.7426199913024902, + "step": 2425 + }, + { + "epoch": 33.69899519440804, + "grad_norm": 0.23709580302238464, + "learning_rate": 0.0006, + "loss": 3.691652774810791, + "step": 2426 + }, + { + "epoch": 33.7129750982962, + "grad_norm": 0.2258225381374359, + "learning_rate": 0.0006, + "loss": 3.7368886470794678, + "step": 2427 + }, + { + "epoch": 33.72695500218436, + "grad_norm": 0.1993306577205658, + "learning_rate": 0.0006, + "loss": 3.722733497619629, + "step": 2428 + }, + { + "epoch": 33.74093490607252, + "grad_norm": 0.20307473838329315, + "learning_rate": 0.0006, + "loss": 3.7507500648498535, + "step": 2429 + }, + { + "epoch": 33.75491480996068, + "grad_norm": 0.20076696574687958, + "learning_rate": 0.0006, + "loss": 3.6896910667419434, + "step": 2430 + }, + { + "epoch": 33.768894713848844, + "grad_norm": 0.21118830144405365, + "learning_rate": 0.0006, + "loss": 3.7176647186279297, + "step": 2431 + }, + { + "epoch": 33.782874617737, + "grad_norm": 0.21605782210826874, + "learning_rate": 0.0006, + "loss": 3.7423641681671143, + "step": 2432 + }, + { + "epoch": 33.796854521625164, + "grad_norm": 0.22233152389526367, + "learning_rate": 0.0006, + "loss": 3.7296109199523926, + "step": 2433 + }, + { + "epoch": 33.81083442551333, + "grad_norm": 0.2253616899251938, + "learning_rate": 0.0006, + "loss": 3.7095072269439697, + "step": 2434 + }, + { + "epoch": 33.824814329401484, + "grad_norm": 0.2105807662010193, + "learning_rate": 0.0006, + "loss": 3.760921001434326, + "step": 2435 + }, + { + "epoch": 33.83879423328965, + "grad_norm": 0.20413213968276978, + "learning_rate": 0.0006, + "loss": 3.7356553077697754, + "step": 2436 + }, + { + "epoch": 33.8527741371778, + "grad_norm": 0.19781213998794556, + "learning_rate": 0.0006, + "loss": 3.726787567138672, + "step": 2437 + }, + { + "epoch": 33.86675404106597, + "grad_norm": 0.199616938829422, + "learning_rate": 0.0006, + "loss": 3.7200419902801514, + "step": 2438 + }, + { + "epoch": 33.88073394495413, + "grad_norm": 0.19702564179897308, + "learning_rate": 0.0006, + "loss": 3.714287281036377, + "step": 2439 + }, + { + "epoch": 33.89471384884229, + "grad_norm": 0.19456833600997925, + "learning_rate": 0.0006, + "loss": 3.739231586456299, + "step": 2440 + }, + { + "epoch": 33.90869375273045, + "grad_norm": 0.1890697181224823, + "learning_rate": 0.0006, + "loss": 3.7088429927825928, + "step": 2441 + }, + { + "epoch": 33.92267365661861, + "grad_norm": 0.1845911741256714, + "learning_rate": 0.0006, + "loss": 3.760782241821289, + "step": 2442 + }, + { + "epoch": 33.93665356050677, + "grad_norm": 0.19045902788639069, + "learning_rate": 0.0006, + "loss": 3.736957311630249, + "step": 2443 + }, + { + "epoch": 33.95063346439493, + "grad_norm": 0.1934187412261963, + "learning_rate": 0.0006, + "loss": 3.756351947784424, + "step": 2444 + }, + { + "epoch": 33.964613368283096, + "grad_norm": 0.19774580001831055, + "learning_rate": 0.0006, + "loss": 3.7332229614257812, + "step": 2445 + }, + { + "epoch": 33.97859327217125, + "grad_norm": 0.20653048157691956, + "learning_rate": 0.0006, + "loss": 3.7112321853637695, + "step": 2446 + }, + { + "epoch": 33.992573176059416, + "grad_norm": 0.18618541955947876, + "learning_rate": 0.0006, + "loss": 3.735710620880127, + "step": 2447 + }, + { + "epoch": 34.0, + "grad_norm": 0.22846414148807526, + "learning_rate": 0.0006, + "loss": 3.739706039428711, + "step": 2448 + }, + { + "epoch": 34.0, + "eval_loss": 4.0099663734436035, + "eval_runtime": 45.2096, + "eval_samples_per_second": 54.015, + "eval_steps_per_second": 3.384, + "step": 2448 + }, + { + "epoch": 34.01397990388816, + "grad_norm": 0.20987462997436523, + "learning_rate": 0.0006, + "loss": 3.6798832416534424, + "step": 2449 + }, + { + "epoch": 34.02795980777632, + "grad_norm": 0.2230423390865326, + "learning_rate": 0.0006, + "loss": 3.7157368659973145, + "step": 2450 + }, + { + "epoch": 34.04193971166448, + "grad_norm": 0.24115242063999176, + "learning_rate": 0.0006, + "loss": 3.696037769317627, + "step": 2451 + }, + { + "epoch": 34.05591961555265, + "grad_norm": 0.24499665200710297, + "learning_rate": 0.0006, + "loss": 3.695420742034912, + "step": 2452 + }, + { + "epoch": 34.0698995194408, + "grad_norm": 0.23336757719516754, + "learning_rate": 0.0006, + "loss": 3.7252023220062256, + "step": 2453 + }, + { + "epoch": 34.083879423328966, + "grad_norm": 0.23716159164905548, + "learning_rate": 0.0006, + "loss": 3.714542865753174, + "step": 2454 + }, + { + "epoch": 34.09785932721712, + "grad_norm": 0.2305644154548645, + "learning_rate": 0.0006, + "loss": 3.6989386081695557, + "step": 2455 + }, + { + "epoch": 34.111839231105286, + "grad_norm": 0.2281671017408371, + "learning_rate": 0.0006, + "loss": 3.6952829360961914, + "step": 2456 + }, + { + "epoch": 34.12581913499345, + "grad_norm": 0.21031132340431213, + "learning_rate": 0.0006, + "loss": 3.7337589263916016, + "step": 2457 + }, + { + "epoch": 34.139799038881605, + "grad_norm": 0.2233671098947525, + "learning_rate": 0.0006, + "loss": 3.6923675537109375, + "step": 2458 + }, + { + "epoch": 34.15377894276977, + "grad_norm": 0.22766625881195068, + "learning_rate": 0.0006, + "loss": 3.70849609375, + "step": 2459 + }, + { + "epoch": 34.16775884665793, + "grad_norm": 0.22433766722679138, + "learning_rate": 0.0006, + "loss": 3.718319892883301, + "step": 2460 + }, + { + "epoch": 34.18173875054609, + "grad_norm": 0.20621491968631744, + "learning_rate": 0.0006, + "loss": 3.6874704360961914, + "step": 2461 + }, + { + "epoch": 34.19571865443425, + "grad_norm": 0.21353304386138916, + "learning_rate": 0.0006, + "loss": 3.663358688354492, + "step": 2462 + }, + { + "epoch": 34.20969855832241, + "grad_norm": 0.20652951300144196, + "learning_rate": 0.0006, + "loss": 3.718107223510742, + "step": 2463 + }, + { + "epoch": 34.22367846221057, + "grad_norm": 0.19780176877975464, + "learning_rate": 0.0006, + "loss": 3.7255396842956543, + "step": 2464 + }, + { + "epoch": 34.237658366098735, + "grad_norm": 0.20636138319969177, + "learning_rate": 0.0006, + "loss": 3.696850538253784, + "step": 2465 + }, + { + "epoch": 34.25163826998689, + "grad_norm": 0.23691460490226746, + "learning_rate": 0.0006, + "loss": 3.687997341156006, + "step": 2466 + }, + { + "epoch": 34.265618173875055, + "grad_norm": 0.2380511611700058, + "learning_rate": 0.0006, + "loss": 3.716610908508301, + "step": 2467 + }, + { + "epoch": 34.27959807776322, + "grad_norm": 0.21508945524692535, + "learning_rate": 0.0006, + "loss": 3.6993470191955566, + "step": 2468 + }, + { + "epoch": 34.293577981651374, + "grad_norm": 0.20441125333309174, + "learning_rate": 0.0006, + "loss": 3.7194275856018066, + "step": 2469 + }, + { + "epoch": 34.30755788553954, + "grad_norm": 0.19704242050647736, + "learning_rate": 0.0006, + "loss": 3.675929546356201, + "step": 2470 + }, + { + "epoch": 34.3215377894277, + "grad_norm": 0.1918456256389618, + "learning_rate": 0.0006, + "loss": 3.7189574241638184, + "step": 2471 + }, + { + "epoch": 34.33551769331586, + "grad_norm": 0.19687092304229736, + "learning_rate": 0.0006, + "loss": 3.725809335708618, + "step": 2472 + }, + { + "epoch": 34.34949759720402, + "grad_norm": 0.2048639953136444, + "learning_rate": 0.0006, + "loss": 3.7461748123168945, + "step": 2473 + }, + { + "epoch": 34.36347750109218, + "grad_norm": 0.21086618304252625, + "learning_rate": 0.0006, + "loss": 3.6849746704101562, + "step": 2474 + }, + { + "epoch": 34.37745740498034, + "grad_norm": 0.2172154039144516, + "learning_rate": 0.0006, + "loss": 3.7379322052001953, + "step": 2475 + }, + { + "epoch": 34.391437308868504, + "grad_norm": 0.22725504636764526, + "learning_rate": 0.0006, + "loss": 3.7341527938842773, + "step": 2476 + }, + { + "epoch": 34.40541721275666, + "grad_norm": 0.22309242188930511, + "learning_rate": 0.0006, + "loss": 3.724946975708008, + "step": 2477 + }, + { + "epoch": 34.419397116644824, + "grad_norm": 0.25252285599708557, + "learning_rate": 0.0006, + "loss": 3.710257053375244, + "step": 2478 + }, + { + "epoch": 34.43337702053299, + "grad_norm": 0.2549746334552765, + "learning_rate": 0.0006, + "loss": 3.7105040550231934, + "step": 2479 + }, + { + "epoch": 34.44735692442114, + "grad_norm": 0.22544030845165253, + "learning_rate": 0.0006, + "loss": 3.7340707778930664, + "step": 2480 + }, + { + "epoch": 34.46133682830931, + "grad_norm": 0.22275063395500183, + "learning_rate": 0.0006, + "loss": 3.7141473293304443, + "step": 2481 + }, + { + "epoch": 34.47531673219746, + "grad_norm": 0.25373485684394836, + "learning_rate": 0.0006, + "loss": 3.7014691829681396, + "step": 2482 + }, + { + "epoch": 34.489296636085626, + "grad_norm": 0.2573327124118805, + "learning_rate": 0.0006, + "loss": 3.682562828063965, + "step": 2483 + }, + { + "epoch": 34.50327653997379, + "grad_norm": 0.2452341616153717, + "learning_rate": 0.0006, + "loss": 3.757261276245117, + "step": 2484 + }, + { + "epoch": 34.517256443861946, + "grad_norm": 0.2477131187915802, + "learning_rate": 0.0006, + "loss": 3.7216877937316895, + "step": 2485 + }, + { + "epoch": 34.53123634775011, + "grad_norm": 0.24740098416805267, + "learning_rate": 0.0006, + "loss": 3.705704927444458, + "step": 2486 + }, + { + "epoch": 34.54521625163827, + "grad_norm": 0.27306219935417175, + "learning_rate": 0.0006, + "loss": 3.7014641761779785, + "step": 2487 + }, + { + "epoch": 34.55919615552643, + "grad_norm": 0.26376286149024963, + "learning_rate": 0.0006, + "loss": 3.686056137084961, + "step": 2488 + }, + { + "epoch": 34.57317605941459, + "grad_norm": 0.2796899378299713, + "learning_rate": 0.0006, + "loss": 3.7171077728271484, + "step": 2489 + }, + { + "epoch": 34.58715596330275, + "grad_norm": 0.24279902875423431, + "learning_rate": 0.0006, + "loss": 3.7448348999023438, + "step": 2490 + }, + { + "epoch": 34.60113586719091, + "grad_norm": 0.22772833704948425, + "learning_rate": 0.0006, + "loss": 3.7028117179870605, + "step": 2491 + }, + { + "epoch": 34.615115771079076, + "grad_norm": 0.22157910466194153, + "learning_rate": 0.0006, + "loss": 3.750023603439331, + "step": 2492 + }, + { + "epoch": 34.62909567496723, + "grad_norm": 0.24342703819274902, + "learning_rate": 0.0006, + "loss": 3.7181010246276855, + "step": 2493 + }, + { + "epoch": 34.643075578855395, + "grad_norm": 0.2554340362548828, + "learning_rate": 0.0006, + "loss": 3.6994080543518066, + "step": 2494 + }, + { + "epoch": 34.65705548274356, + "grad_norm": 0.21296930313110352, + "learning_rate": 0.0006, + "loss": 3.7534523010253906, + "step": 2495 + }, + { + "epoch": 34.671035386631715, + "grad_norm": 0.19117674231529236, + "learning_rate": 0.0006, + "loss": 3.7267889976501465, + "step": 2496 + }, + { + "epoch": 34.68501529051988, + "grad_norm": 0.2306399643421173, + "learning_rate": 0.0006, + "loss": 3.723212242126465, + "step": 2497 + }, + { + "epoch": 34.69899519440804, + "grad_norm": 0.23063263297080994, + "learning_rate": 0.0006, + "loss": 3.730070114135742, + "step": 2498 + }, + { + "epoch": 34.7129750982962, + "grad_norm": 0.19422881305217743, + "learning_rate": 0.0006, + "loss": 3.694833755493164, + "step": 2499 + }, + { + "epoch": 34.72695500218436, + "grad_norm": 0.20246362686157227, + "learning_rate": 0.0006, + "loss": 3.71140718460083, + "step": 2500 + }, + { + "epoch": 34.74093490607252, + "grad_norm": 0.1942741572856903, + "learning_rate": 0.0006, + "loss": 3.7530534267425537, + "step": 2501 + }, + { + "epoch": 34.75491480996068, + "grad_norm": 0.19686029851436615, + "learning_rate": 0.0006, + "loss": 3.7059555053710938, + "step": 2502 + }, + { + "epoch": 34.768894713848844, + "grad_norm": 0.20120355486869812, + "learning_rate": 0.0006, + "loss": 3.7271084785461426, + "step": 2503 + }, + { + "epoch": 34.782874617737, + "grad_norm": 0.20880399644374847, + "learning_rate": 0.0006, + "loss": 3.712137460708618, + "step": 2504 + }, + { + "epoch": 34.796854521625164, + "grad_norm": 0.22139988839626312, + "learning_rate": 0.0006, + "loss": 3.731245517730713, + "step": 2505 + }, + { + "epoch": 34.81083442551333, + "grad_norm": 0.22756224870681763, + "learning_rate": 0.0006, + "loss": 3.708987236022949, + "step": 2506 + }, + { + "epoch": 34.824814329401484, + "grad_norm": 0.22332409024238586, + "learning_rate": 0.0006, + "loss": 3.7365565299987793, + "step": 2507 + }, + { + "epoch": 34.83879423328965, + "grad_norm": 0.19599054753780365, + "learning_rate": 0.0006, + "loss": 3.7266454696655273, + "step": 2508 + }, + { + "epoch": 34.8527741371778, + "grad_norm": 0.19843019545078278, + "learning_rate": 0.0006, + "loss": 3.7225422859191895, + "step": 2509 + }, + { + "epoch": 34.86675404106597, + "grad_norm": 0.20147928595542908, + "learning_rate": 0.0006, + "loss": 3.7282514572143555, + "step": 2510 + }, + { + "epoch": 34.88073394495413, + "grad_norm": 0.19489876925945282, + "learning_rate": 0.0006, + "loss": 3.694852113723755, + "step": 2511 + }, + { + "epoch": 34.89471384884229, + "grad_norm": 0.20680078864097595, + "learning_rate": 0.0006, + "loss": 3.74678635597229, + "step": 2512 + }, + { + "epoch": 34.90869375273045, + "grad_norm": 0.2233233004808426, + "learning_rate": 0.0006, + "loss": 3.726475238800049, + "step": 2513 + }, + { + "epoch": 34.92267365661861, + "grad_norm": 0.20702993869781494, + "learning_rate": 0.0006, + "loss": 3.6946351528167725, + "step": 2514 + }, + { + "epoch": 34.93665356050677, + "grad_norm": 0.2081725299358368, + "learning_rate": 0.0006, + "loss": 3.7101621627807617, + "step": 2515 + }, + { + "epoch": 34.95063346439493, + "grad_norm": 0.20551837980747223, + "learning_rate": 0.0006, + "loss": 3.7060177326202393, + "step": 2516 + }, + { + "epoch": 34.964613368283096, + "grad_norm": 0.2106839418411255, + "learning_rate": 0.0006, + "loss": 3.7460474967956543, + "step": 2517 + }, + { + "epoch": 34.97859327217125, + "grad_norm": 0.18512766063213348, + "learning_rate": 0.0006, + "loss": 3.719280242919922, + "step": 2518 + }, + { + "epoch": 34.992573176059416, + "grad_norm": 0.1802142709493637, + "learning_rate": 0.0006, + "loss": 3.698255777359009, + "step": 2519 + }, + { + "epoch": 35.0, + "grad_norm": 0.2028084248304367, + "learning_rate": 0.0006, + "loss": 3.711136817932129, + "step": 2520 + }, + { + "epoch": 35.0, + "eval_loss": 4.006688117980957, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 2520 + }, + { + "epoch": 35.01397990388816, + "grad_norm": 0.1973012387752533, + "learning_rate": 0.0006, + "loss": 3.7108325958251953, + "step": 2521 + }, + { + "epoch": 35.02795980777632, + "grad_norm": 0.23763646185398102, + "learning_rate": 0.0006, + "loss": 3.675785541534424, + "step": 2522 + }, + { + "epoch": 35.04193971166448, + "grad_norm": 0.24403199553489685, + "learning_rate": 0.0006, + "loss": 3.7034249305725098, + "step": 2523 + }, + { + "epoch": 35.05591961555265, + "grad_norm": 0.19050131738185883, + "learning_rate": 0.0006, + "loss": 3.6984221935272217, + "step": 2524 + }, + { + "epoch": 35.0698995194408, + "grad_norm": 0.21389710903167725, + "learning_rate": 0.0006, + "loss": 3.6641085147857666, + "step": 2525 + }, + { + "epoch": 35.083879423328966, + "grad_norm": 0.23103152215480804, + "learning_rate": 0.0006, + "loss": 3.722912311553955, + "step": 2526 + }, + { + "epoch": 35.09785932721712, + "grad_norm": 0.2197326272726059, + "learning_rate": 0.0006, + "loss": 3.696568727493286, + "step": 2527 + }, + { + "epoch": 35.111839231105286, + "grad_norm": 0.20877327024936676, + "learning_rate": 0.0006, + "loss": 3.666700601577759, + "step": 2528 + }, + { + "epoch": 35.12581913499345, + "grad_norm": 0.20904001593589783, + "learning_rate": 0.0006, + "loss": 3.6896979808807373, + "step": 2529 + }, + { + "epoch": 35.139799038881605, + "grad_norm": 0.1947423666715622, + "learning_rate": 0.0006, + "loss": 3.6647095680236816, + "step": 2530 + }, + { + "epoch": 35.15377894276977, + "grad_norm": 0.2134019434452057, + "learning_rate": 0.0006, + "loss": 3.696993589401245, + "step": 2531 + }, + { + "epoch": 35.16775884665793, + "grad_norm": 0.2299254685640335, + "learning_rate": 0.0006, + "loss": 3.7067925930023193, + "step": 2532 + }, + { + "epoch": 35.18173875054609, + "grad_norm": 0.219585582613945, + "learning_rate": 0.0006, + "loss": 3.6680960655212402, + "step": 2533 + }, + { + "epoch": 35.19571865443425, + "grad_norm": 0.2146025449037552, + "learning_rate": 0.0006, + "loss": 3.7185046672821045, + "step": 2534 + }, + { + "epoch": 35.20969855832241, + "grad_norm": 0.22748060524463654, + "learning_rate": 0.0006, + "loss": 3.659202814102173, + "step": 2535 + }, + { + "epoch": 35.22367846221057, + "grad_norm": 0.22272273898124695, + "learning_rate": 0.0006, + "loss": 3.7002370357513428, + "step": 2536 + }, + { + "epoch": 35.237658366098735, + "grad_norm": 0.23827379941940308, + "learning_rate": 0.0006, + "loss": 3.714664936065674, + "step": 2537 + }, + { + "epoch": 35.25163826998689, + "grad_norm": 0.2328156679868698, + "learning_rate": 0.0006, + "loss": 3.665173292160034, + "step": 2538 + }, + { + "epoch": 35.265618173875055, + "grad_norm": 0.2573475241661072, + "learning_rate": 0.0006, + "loss": 3.7073206901550293, + "step": 2539 + }, + { + "epoch": 35.27959807776322, + "grad_norm": 0.2411472052335739, + "learning_rate": 0.0006, + "loss": 3.697751045227051, + "step": 2540 + }, + { + "epoch": 35.293577981651374, + "grad_norm": 0.22836148738861084, + "learning_rate": 0.0006, + "loss": 3.7219419479370117, + "step": 2541 + }, + { + "epoch": 35.30755788553954, + "grad_norm": 0.2225421667098999, + "learning_rate": 0.0006, + "loss": 3.69516658782959, + "step": 2542 + }, + { + "epoch": 35.3215377894277, + "grad_norm": 0.2180362343788147, + "learning_rate": 0.0006, + "loss": 3.714043378829956, + "step": 2543 + }, + { + "epoch": 35.33551769331586, + "grad_norm": 0.23638299107551575, + "learning_rate": 0.0006, + "loss": 3.7449421882629395, + "step": 2544 + }, + { + "epoch": 35.34949759720402, + "grad_norm": 0.21792089939117432, + "learning_rate": 0.0006, + "loss": 3.7029948234558105, + "step": 2545 + }, + { + "epoch": 35.36347750109218, + "grad_norm": 0.23266112804412842, + "learning_rate": 0.0006, + "loss": 3.683509111404419, + "step": 2546 + }, + { + "epoch": 35.37745740498034, + "grad_norm": 0.24203059077262878, + "learning_rate": 0.0006, + "loss": 3.68572998046875, + "step": 2547 + }, + { + "epoch": 35.391437308868504, + "grad_norm": 0.2543564438819885, + "learning_rate": 0.0006, + "loss": 3.6902432441711426, + "step": 2548 + }, + { + "epoch": 35.40541721275666, + "grad_norm": 0.22990189492702484, + "learning_rate": 0.0006, + "loss": 3.708810329437256, + "step": 2549 + }, + { + "epoch": 35.419397116644824, + "grad_norm": 0.2594352662563324, + "learning_rate": 0.0006, + "loss": 3.7312886714935303, + "step": 2550 + }, + { + "epoch": 35.43337702053299, + "grad_norm": 0.27525269985198975, + "learning_rate": 0.0006, + "loss": 3.6963448524475098, + "step": 2551 + }, + { + "epoch": 35.44735692442114, + "grad_norm": 0.2436525970697403, + "learning_rate": 0.0006, + "loss": 3.6733713150024414, + "step": 2552 + }, + { + "epoch": 35.46133682830931, + "grad_norm": 0.25500908493995667, + "learning_rate": 0.0006, + "loss": 3.7104358673095703, + "step": 2553 + }, + { + "epoch": 35.47531673219746, + "grad_norm": 0.23504602909088135, + "learning_rate": 0.0006, + "loss": 3.7052388191223145, + "step": 2554 + }, + { + "epoch": 35.489296636085626, + "grad_norm": 0.2277563363313675, + "learning_rate": 0.0006, + "loss": 3.708714008331299, + "step": 2555 + }, + { + "epoch": 35.50327653997379, + "grad_norm": 0.25224778056144714, + "learning_rate": 0.0006, + "loss": 3.699676990509033, + "step": 2556 + }, + { + "epoch": 35.517256443861946, + "grad_norm": 0.28308045864105225, + "learning_rate": 0.0006, + "loss": 3.7005362510681152, + "step": 2557 + }, + { + "epoch": 35.53123634775011, + "grad_norm": 0.25858840346336365, + "learning_rate": 0.0006, + "loss": 3.689999580383301, + "step": 2558 + }, + { + "epoch": 35.54521625163827, + "grad_norm": 0.23497405648231506, + "learning_rate": 0.0006, + "loss": 3.695793867111206, + "step": 2559 + }, + { + "epoch": 35.55919615552643, + "grad_norm": 0.22375957667827606, + "learning_rate": 0.0006, + "loss": 3.7011494636535645, + "step": 2560 + }, + { + "epoch": 35.57317605941459, + "grad_norm": 0.21056118607521057, + "learning_rate": 0.0006, + "loss": 3.722623586654663, + "step": 2561 + }, + { + "epoch": 35.58715596330275, + "grad_norm": 0.22504374384880066, + "learning_rate": 0.0006, + "loss": 3.7211966514587402, + "step": 2562 + }, + { + "epoch": 35.60113586719091, + "grad_norm": 0.22349773347377777, + "learning_rate": 0.0006, + "loss": 3.6901848316192627, + "step": 2563 + }, + { + "epoch": 35.615115771079076, + "grad_norm": 0.219499409198761, + "learning_rate": 0.0006, + "loss": 3.709026575088501, + "step": 2564 + }, + { + "epoch": 35.62909567496723, + "grad_norm": 0.20461080968379974, + "learning_rate": 0.0006, + "loss": 3.72456693649292, + "step": 2565 + }, + { + "epoch": 35.643075578855395, + "grad_norm": 0.2083883285522461, + "learning_rate": 0.0006, + "loss": 3.6845502853393555, + "step": 2566 + }, + { + "epoch": 35.65705548274356, + "grad_norm": 0.19694562256336212, + "learning_rate": 0.0006, + "loss": 3.668515682220459, + "step": 2567 + }, + { + "epoch": 35.671035386631715, + "grad_norm": 0.2107984870672226, + "learning_rate": 0.0006, + "loss": 3.700723648071289, + "step": 2568 + }, + { + "epoch": 35.68501529051988, + "grad_norm": 0.18878720700740814, + "learning_rate": 0.0006, + "loss": 3.689150333404541, + "step": 2569 + }, + { + "epoch": 35.69899519440804, + "grad_norm": 0.20058824121952057, + "learning_rate": 0.0006, + "loss": 3.7048301696777344, + "step": 2570 + }, + { + "epoch": 35.7129750982962, + "grad_norm": 0.2200566679239273, + "learning_rate": 0.0006, + "loss": 3.6944580078125, + "step": 2571 + }, + { + "epoch": 35.72695500218436, + "grad_norm": 0.22200417518615723, + "learning_rate": 0.0006, + "loss": 3.715193510055542, + "step": 2572 + }, + { + "epoch": 35.74093490607252, + "grad_norm": 0.21011404693126678, + "learning_rate": 0.0006, + "loss": 3.737387180328369, + "step": 2573 + }, + { + "epoch": 35.75491480996068, + "grad_norm": 0.21139226853847504, + "learning_rate": 0.0006, + "loss": 3.695596694946289, + "step": 2574 + }, + { + "epoch": 35.768894713848844, + "grad_norm": 0.2112506479024887, + "learning_rate": 0.0006, + "loss": 3.7264227867126465, + "step": 2575 + }, + { + "epoch": 35.782874617737, + "grad_norm": 0.21528391540050507, + "learning_rate": 0.0006, + "loss": 3.7089385986328125, + "step": 2576 + }, + { + "epoch": 35.796854521625164, + "grad_norm": 0.2127804309129715, + "learning_rate": 0.0006, + "loss": 3.6995301246643066, + "step": 2577 + }, + { + "epoch": 35.81083442551333, + "grad_norm": 0.19839410483837128, + "learning_rate": 0.0006, + "loss": 3.7233223915100098, + "step": 2578 + }, + { + "epoch": 35.824814329401484, + "grad_norm": 0.19098423421382904, + "learning_rate": 0.0006, + "loss": 3.7108311653137207, + "step": 2579 + }, + { + "epoch": 35.83879423328965, + "grad_norm": 0.18697232007980347, + "learning_rate": 0.0006, + "loss": 3.725001811981201, + "step": 2580 + }, + { + "epoch": 35.8527741371778, + "grad_norm": 0.21051937341690063, + "learning_rate": 0.0006, + "loss": 3.7310993671417236, + "step": 2581 + }, + { + "epoch": 35.86675404106597, + "grad_norm": 0.2239079475402832, + "learning_rate": 0.0006, + "loss": 3.739056348800659, + "step": 2582 + }, + { + "epoch": 35.88073394495413, + "grad_norm": 0.2581230700016022, + "learning_rate": 0.0006, + "loss": 3.697061061859131, + "step": 2583 + }, + { + "epoch": 35.89471384884229, + "grad_norm": 0.25388655066490173, + "learning_rate": 0.0006, + "loss": 3.7173471450805664, + "step": 2584 + }, + { + "epoch": 35.90869375273045, + "grad_norm": 0.2557796537876129, + "learning_rate": 0.0006, + "loss": 3.7121596336364746, + "step": 2585 + }, + { + "epoch": 35.92267365661861, + "grad_norm": 0.21846474707126617, + "learning_rate": 0.0006, + "loss": 3.7342100143432617, + "step": 2586 + }, + { + "epoch": 35.93665356050677, + "grad_norm": 0.19810006022453308, + "learning_rate": 0.0006, + "loss": 3.7266340255737305, + "step": 2587 + }, + { + "epoch": 35.95063346439493, + "grad_norm": 0.28599923849105835, + "learning_rate": 0.0006, + "loss": 3.711876392364502, + "step": 2588 + }, + { + "epoch": 35.964613368283096, + "grad_norm": 0.3380447030067444, + "learning_rate": 0.0006, + "loss": 3.7611794471740723, + "step": 2589 + }, + { + "epoch": 35.97859327217125, + "grad_norm": 0.2946915328502655, + "learning_rate": 0.0006, + "loss": 3.7659358978271484, + "step": 2590 + }, + { + "epoch": 35.992573176059416, + "grad_norm": 0.2310202419757843, + "learning_rate": 0.0006, + "loss": 3.7124969959259033, + "step": 2591 + }, + { + "epoch": 36.0, + "grad_norm": 0.22294320166110992, + "learning_rate": 0.0006, + "loss": 3.725590705871582, + "step": 2592 + }, + { + "epoch": 36.0, + "eval_loss": 4.015472412109375, + "eval_runtime": 44.4903, + "eval_samples_per_second": 54.888, + "eval_steps_per_second": 3.439, + "step": 2592 + }, + { + "epoch": 36.01397990388816, + "grad_norm": 0.2442479431629181, + "learning_rate": 0.0006, + "loss": 3.6670360565185547, + "step": 2593 + }, + { + "epoch": 36.02795980777632, + "grad_norm": 0.27702075242996216, + "learning_rate": 0.0006, + "loss": 3.685915946960449, + "step": 2594 + }, + { + "epoch": 36.04193971166448, + "grad_norm": 0.22300852835178375, + "learning_rate": 0.0006, + "loss": 3.6993556022644043, + "step": 2595 + }, + { + "epoch": 36.05591961555265, + "grad_norm": 0.22456000745296478, + "learning_rate": 0.0006, + "loss": 3.6937754154205322, + "step": 2596 + }, + { + "epoch": 36.0698995194408, + "grad_norm": 0.23157717287540436, + "learning_rate": 0.0006, + "loss": 3.6573898792266846, + "step": 2597 + }, + { + "epoch": 36.083879423328966, + "grad_norm": 0.23002618551254272, + "learning_rate": 0.0006, + "loss": 3.6565046310424805, + "step": 2598 + }, + { + "epoch": 36.09785932721712, + "grad_norm": 0.223054900765419, + "learning_rate": 0.0006, + "loss": 3.6964457035064697, + "step": 2599 + }, + { + "epoch": 36.111839231105286, + "grad_norm": 0.21883328258991241, + "learning_rate": 0.0006, + "loss": 3.674757480621338, + "step": 2600 + }, + { + "epoch": 36.12581913499345, + "grad_norm": 0.21729037165641785, + "learning_rate": 0.0006, + "loss": 3.684323310852051, + "step": 2601 + }, + { + "epoch": 36.139799038881605, + "grad_norm": 0.21299415826797485, + "learning_rate": 0.0006, + "loss": 3.6554017066955566, + "step": 2602 + }, + { + "epoch": 36.15377894276977, + "grad_norm": 0.22723016142845154, + "learning_rate": 0.0006, + "loss": 3.666767120361328, + "step": 2603 + }, + { + "epoch": 36.16775884665793, + "grad_norm": 0.23663052916526794, + "learning_rate": 0.0006, + "loss": 3.692861557006836, + "step": 2604 + }, + { + "epoch": 36.18173875054609, + "grad_norm": 0.23544131219387054, + "learning_rate": 0.0006, + "loss": 3.6648998260498047, + "step": 2605 + }, + { + "epoch": 36.19571865443425, + "grad_norm": 0.24303849041461945, + "learning_rate": 0.0006, + "loss": 3.66096568107605, + "step": 2606 + }, + { + "epoch": 36.20969855832241, + "grad_norm": 0.23385047912597656, + "learning_rate": 0.0006, + "loss": 3.6636829376220703, + "step": 2607 + }, + { + "epoch": 36.22367846221057, + "grad_norm": 0.21988974511623383, + "learning_rate": 0.0006, + "loss": 3.685072660446167, + "step": 2608 + }, + { + "epoch": 36.237658366098735, + "grad_norm": 0.2365395724773407, + "learning_rate": 0.0006, + "loss": 3.7292234897613525, + "step": 2609 + }, + { + "epoch": 36.25163826998689, + "grad_norm": 0.23791152238845825, + "learning_rate": 0.0006, + "loss": 3.6870808601379395, + "step": 2610 + }, + { + "epoch": 36.265618173875055, + "grad_norm": 0.22954145073890686, + "learning_rate": 0.0006, + "loss": 3.705406904220581, + "step": 2611 + }, + { + "epoch": 36.27959807776322, + "grad_norm": 0.22748000919818878, + "learning_rate": 0.0006, + "loss": 3.680781841278076, + "step": 2612 + }, + { + "epoch": 36.293577981651374, + "grad_norm": 0.21827450394630432, + "learning_rate": 0.0006, + "loss": 3.6794490814208984, + "step": 2613 + }, + { + "epoch": 36.30755788553954, + "grad_norm": 0.2406153380870819, + "learning_rate": 0.0006, + "loss": 3.690225124359131, + "step": 2614 + }, + { + "epoch": 36.3215377894277, + "grad_norm": 0.2406231164932251, + "learning_rate": 0.0006, + "loss": 3.665867805480957, + "step": 2615 + }, + { + "epoch": 36.33551769331586, + "grad_norm": 0.20494551956653595, + "learning_rate": 0.0006, + "loss": 3.701937198638916, + "step": 2616 + }, + { + "epoch": 36.34949759720402, + "grad_norm": 0.1995103359222412, + "learning_rate": 0.0006, + "loss": 3.702033758163452, + "step": 2617 + }, + { + "epoch": 36.36347750109218, + "grad_norm": 0.1902446299791336, + "learning_rate": 0.0006, + "loss": 3.6809959411621094, + "step": 2618 + }, + { + "epoch": 36.37745740498034, + "grad_norm": 0.1810801923274994, + "learning_rate": 0.0006, + "loss": 3.689852714538574, + "step": 2619 + }, + { + "epoch": 36.391437308868504, + "grad_norm": 0.1882476955652237, + "learning_rate": 0.0006, + "loss": 3.710911273956299, + "step": 2620 + }, + { + "epoch": 36.40541721275666, + "grad_norm": 0.1912514567375183, + "learning_rate": 0.0006, + "loss": 3.7054009437561035, + "step": 2621 + }, + { + "epoch": 36.419397116644824, + "grad_norm": 0.19080901145935059, + "learning_rate": 0.0006, + "loss": 3.681145191192627, + "step": 2622 + }, + { + "epoch": 36.43337702053299, + "grad_norm": 0.193472221493721, + "learning_rate": 0.0006, + "loss": 3.661360740661621, + "step": 2623 + }, + { + "epoch": 36.44735692442114, + "grad_norm": 0.2034357339143753, + "learning_rate": 0.0006, + "loss": 3.706930160522461, + "step": 2624 + }, + { + "epoch": 36.46133682830931, + "grad_norm": 0.19924600422382355, + "learning_rate": 0.0006, + "loss": 3.6903364658355713, + "step": 2625 + }, + { + "epoch": 36.47531673219746, + "grad_norm": 0.20556052029132843, + "learning_rate": 0.0006, + "loss": 3.6974234580993652, + "step": 2626 + }, + { + "epoch": 36.489296636085626, + "grad_norm": 0.19628804922103882, + "learning_rate": 0.0006, + "loss": 3.6947717666625977, + "step": 2627 + }, + { + "epoch": 36.50327653997379, + "grad_norm": 0.18071836233139038, + "learning_rate": 0.0006, + "loss": 3.717582941055298, + "step": 2628 + }, + { + "epoch": 36.517256443861946, + "grad_norm": 0.20531553030014038, + "learning_rate": 0.0006, + "loss": 3.680610179901123, + "step": 2629 + }, + { + "epoch": 36.53123634775011, + "grad_norm": 0.23789429664611816, + "learning_rate": 0.0006, + "loss": 3.711493968963623, + "step": 2630 + }, + { + "epoch": 36.54521625163827, + "grad_norm": 0.23027348518371582, + "learning_rate": 0.0006, + "loss": 3.6827993392944336, + "step": 2631 + }, + { + "epoch": 36.55919615552643, + "grad_norm": 0.21941570937633514, + "learning_rate": 0.0006, + "loss": 3.682286262512207, + "step": 2632 + }, + { + "epoch": 36.57317605941459, + "grad_norm": 0.21213553845882416, + "learning_rate": 0.0006, + "loss": 3.6828765869140625, + "step": 2633 + }, + { + "epoch": 36.58715596330275, + "grad_norm": 0.21929772198200226, + "learning_rate": 0.0006, + "loss": 3.697030544281006, + "step": 2634 + }, + { + "epoch": 36.60113586719091, + "grad_norm": 0.2101750522851944, + "learning_rate": 0.0006, + "loss": 3.723201274871826, + "step": 2635 + }, + { + "epoch": 36.615115771079076, + "grad_norm": 0.19014132022857666, + "learning_rate": 0.0006, + "loss": 3.6989338397979736, + "step": 2636 + }, + { + "epoch": 36.62909567496723, + "grad_norm": 0.21566815674304962, + "learning_rate": 0.0006, + "loss": 3.6968226432800293, + "step": 2637 + }, + { + "epoch": 36.643075578855395, + "grad_norm": 0.20500224828720093, + "learning_rate": 0.0006, + "loss": 3.689640522003174, + "step": 2638 + }, + { + "epoch": 36.65705548274356, + "grad_norm": 0.210358127951622, + "learning_rate": 0.0006, + "loss": 3.6996328830718994, + "step": 2639 + }, + { + "epoch": 36.671035386631715, + "grad_norm": 0.2061213105916977, + "learning_rate": 0.0006, + "loss": 3.7019221782684326, + "step": 2640 + }, + { + "epoch": 36.68501529051988, + "grad_norm": 0.21494871377944946, + "learning_rate": 0.0006, + "loss": 3.6634578704833984, + "step": 2641 + }, + { + "epoch": 36.69899519440804, + "grad_norm": 0.19586549699306488, + "learning_rate": 0.0006, + "loss": 3.708131790161133, + "step": 2642 + }, + { + "epoch": 36.7129750982962, + "grad_norm": 0.22805732488632202, + "learning_rate": 0.0006, + "loss": 3.6977362632751465, + "step": 2643 + }, + { + "epoch": 36.72695500218436, + "grad_norm": 0.28397148847579956, + "learning_rate": 0.0006, + "loss": 3.6847963333129883, + "step": 2644 + }, + { + "epoch": 36.74093490607252, + "grad_norm": 0.28333187103271484, + "learning_rate": 0.0006, + "loss": 3.734257459640503, + "step": 2645 + }, + { + "epoch": 36.75491480996068, + "grad_norm": 0.22314953804016113, + "learning_rate": 0.0006, + "loss": 3.6871445178985596, + "step": 2646 + }, + { + "epoch": 36.768894713848844, + "grad_norm": 0.20580267906188965, + "learning_rate": 0.0006, + "loss": 3.692736864089966, + "step": 2647 + }, + { + "epoch": 36.782874617737, + "grad_norm": 0.22695036232471466, + "learning_rate": 0.0006, + "loss": 3.697096824645996, + "step": 2648 + }, + { + "epoch": 36.796854521625164, + "grad_norm": 0.25916165113449097, + "learning_rate": 0.0006, + "loss": 3.7099573612213135, + "step": 2649 + }, + { + "epoch": 36.81083442551333, + "grad_norm": 0.26024341583251953, + "learning_rate": 0.0006, + "loss": 3.7161359786987305, + "step": 2650 + }, + { + "epoch": 36.824814329401484, + "grad_norm": 0.2340802699327469, + "learning_rate": 0.0006, + "loss": 3.708864688873291, + "step": 2651 + }, + { + "epoch": 36.83879423328965, + "grad_norm": 0.23312288522720337, + "learning_rate": 0.0006, + "loss": 3.7351365089416504, + "step": 2652 + }, + { + "epoch": 36.8527741371778, + "grad_norm": 0.22953253984451294, + "learning_rate": 0.0006, + "loss": 3.735302209854126, + "step": 2653 + }, + { + "epoch": 36.86675404106597, + "grad_norm": 0.21928828954696655, + "learning_rate": 0.0006, + "loss": 3.72445011138916, + "step": 2654 + }, + { + "epoch": 36.88073394495413, + "grad_norm": 0.22865602374076843, + "learning_rate": 0.0006, + "loss": 3.714867115020752, + "step": 2655 + }, + { + "epoch": 36.89471384884229, + "grad_norm": 0.23255643248558044, + "learning_rate": 0.0006, + "loss": 3.695101261138916, + "step": 2656 + }, + { + "epoch": 36.90869375273045, + "grad_norm": 0.2491452544927597, + "learning_rate": 0.0006, + "loss": 3.70692777633667, + "step": 2657 + }, + { + "epoch": 36.92267365661861, + "grad_norm": 0.27367597818374634, + "learning_rate": 0.0006, + "loss": 3.6906654834747314, + "step": 2658 + }, + { + "epoch": 36.93665356050677, + "grad_norm": 0.26728564500808716, + "learning_rate": 0.0006, + "loss": 3.7092056274414062, + "step": 2659 + }, + { + "epoch": 36.95063346439493, + "grad_norm": 0.207070454955101, + "learning_rate": 0.0006, + "loss": 3.7152137756347656, + "step": 2660 + }, + { + "epoch": 36.964613368283096, + "grad_norm": 0.21671561896800995, + "learning_rate": 0.0006, + "loss": 3.7130112648010254, + "step": 2661 + }, + { + "epoch": 36.97859327217125, + "grad_norm": 0.2140914648771286, + "learning_rate": 0.0006, + "loss": 3.7286999225616455, + "step": 2662 + }, + { + "epoch": 36.992573176059416, + "grad_norm": 0.21324342489242554, + "learning_rate": 0.0006, + "loss": 3.6828715801239014, + "step": 2663 + }, + { + "epoch": 37.0, + "grad_norm": 0.22366146743297577, + "learning_rate": 0.0006, + "loss": 3.69199800491333, + "step": 2664 + }, + { + "epoch": 37.0, + "eval_loss": 4.011842727661133, + "eval_runtime": 44.7825, + "eval_samples_per_second": 54.53, + "eval_steps_per_second": 3.417, + "step": 2664 + }, + { + "epoch": 37.01397990388816, + "grad_norm": 0.22093228995800018, + "learning_rate": 0.0006, + "loss": 3.6940979957580566, + "step": 2665 + }, + { + "epoch": 37.02795980777632, + "grad_norm": 0.20821493864059448, + "learning_rate": 0.0006, + "loss": 3.670813798904419, + "step": 2666 + }, + { + "epoch": 37.04193971166448, + "grad_norm": 0.22330114245414734, + "learning_rate": 0.0006, + "loss": 3.6392664909362793, + "step": 2667 + }, + { + "epoch": 37.05591961555265, + "grad_norm": 0.2224634289741516, + "learning_rate": 0.0006, + "loss": 3.660856246948242, + "step": 2668 + }, + { + "epoch": 37.0698995194408, + "grad_norm": 0.2255052626132965, + "learning_rate": 0.0006, + "loss": 3.6393589973449707, + "step": 2669 + }, + { + "epoch": 37.083879423328966, + "grad_norm": 0.23462942242622375, + "learning_rate": 0.0006, + "loss": 3.684429168701172, + "step": 2670 + }, + { + "epoch": 37.09785932721712, + "grad_norm": 0.23743386566638947, + "learning_rate": 0.0006, + "loss": 3.67622709274292, + "step": 2671 + }, + { + "epoch": 37.111839231105286, + "grad_norm": 0.2276267409324646, + "learning_rate": 0.0006, + "loss": 3.6487984657287598, + "step": 2672 + }, + { + "epoch": 37.12581913499345, + "grad_norm": 0.24448423087596893, + "learning_rate": 0.0006, + "loss": 3.67645525932312, + "step": 2673 + }, + { + "epoch": 37.139799038881605, + "grad_norm": 0.2428973764181137, + "learning_rate": 0.0006, + "loss": 3.681497097015381, + "step": 2674 + }, + { + "epoch": 37.15377894276977, + "grad_norm": 0.21918512880802155, + "learning_rate": 0.0006, + "loss": 3.67134428024292, + "step": 2675 + }, + { + "epoch": 37.16775884665793, + "grad_norm": 0.2103680670261383, + "learning_rate": 0.0006, + "loss": 3.6508708000183105, + "step": 2676 + }, + { + "epoch": 37.18173875054609, + "grad_norm": 0.20674929022789001, + "learning_rate": 0.0006, + "loss": 3.6904029846191406, + "step": 2677 + }, + { + "epoch": 37.19571865443425, + "grad_norm": 0.21867282688617706, + "learning_rate": 0.0006, + "loss": 3.697535514831543, + "step": 2678 + }, + { + "epoch": 37.20969855832241, + "grad_norm": 0.22919587790966034, + "learning_rate": 0.0006, + "loss": 3.675565004348755, + "step": 2679 + }, + { + "epoch": 37.22367846221057, + "grad_norm": 0.22255578637123108, + "learning_rate": 0.0006, + "loss": 3.6830129623413086, + "step": 2680 + }, + { + "epoch": 37.237658366098735, + "grad_norm": 0.22460198402404785, + "learning_rate": 0.0006, + "loss": 3.6872951984405518, + "step": 2681 + }, + { + "epoch": 37.25163826998689, + "grad_norm": 0.23677165806293488, + "learning_rate": 0.0006, + "loss": 3.6779165267944336, + "step": 2682 + }, + { + "epoch": 37.265618173875055, + "grad_norm": 0.23231394588947296, + "learning_rate": 0.0006, + "loss": 3.6831178665161133, + "step": 2683 + }, + { + "epoch": 37.27959807776322, + "grad_norm": 0.22131343185901642, + "learning_rate": 0.0006, + "loss": 3.664295196533203, + "step": 2684 + }, + { + "epoch": 37.293577981651374, + "grad_norm": 0.23424340784549713, + "learning_rate": 0.0006, + "loss": 3.696678638458252, + "step": 2685 + }, + { + "epoch": 37.30755788553954, + "grad_norm": 0.22695423662662506, + "learning_rate": 0.0006, + "loss": 3.6697473526000977, + "step": 2686 + }, + { + "epoch": 37.3215377894277, + "grad_norm": 0.2165997475385666, + "learning_rate": 0.0006, + "loss": 3.6801891326904297, + "step": 2687 + }, + { + "epoch": 37.33551769331586, + "grad_norm": 0.2241077572107315, + "learning_rate": 0.0006, + "loss": 3.6957011222839355, + "step": 2688 + }, + { + "epoch": 37.34949759720402, + "grad_norm": 0.21191732585430145, + "learning_rate": 0.0006, + "loss": 3.6812620162963867, + "step": 2689 + }, + { + "epoch": 37.36347750109218, + "grad_norm": 0.1827201396226883, + "learning_rate": 0.0006, + "loss": 3.6797738075256348, + "step": 2690 + }, + { + "epoch": 37.37745740498034, + "grad_norm": 0.20793627202510834, + "learning_rate": 0.0006, + "loss": 3.672819137573242, + "step": 2691 + }, + { + "epoch": 37.391437308868504, + "grad_norm": 0.19737116992473602, + "learning_rate": 0.0006, + "loss": 3.667839527130127, + "step": 2692 + }, + { + "epoch": 37.40541721275666, + "grad_norm": 0.18670497834682465, + "learning_rate": 0.0006, + "loss": 3.651561737060547, + "step": 2693 + }, + { + "epoch": 37.419397116644824, + "grad_norm": 0.21385592222213745, + "learning_rate": 0.0006, + "loss": 3.717456340789795, + "step": 2694 + }, + { + "epoch": 37.43337702053299, + "grad_norm": 0.20590044558048248, + "learning_rate": 0.0006, + "loss": 3.6950271129608154, + "step": 2695 + }, + { + "epoch": 37.44735692442114, + "grad_norm": 0.1992103010416031, + "learning_rate": 0.0006, + "loss": 3.687854290008545, + "step": 2696 + }, + { + "epoch": 37.46133682830931, + "grad_norm": 0.2004154473543167, + "learning_rate": 0.0006, + "loss": 3.695838451385498, + "step": 2697 + }, + { + "epoch": 37.47531673219746, + "grad_norm": 0.2019810527563095, + "learning_rate": 0.0006, + "loss": 3.690431594848633, + "step": 2698 + }, + { + "epoch": 37.489296636085626, + "grad_norm": 0.2192547768354416, + "learning_rate": 0.0006, + "loss": 3.6743836402893066, + "step": 2699 + }, + { + "epoch": 37.50327653997379, + "grad_norm": 0.2568076550960541, + "learning_rate": 0.0006, + "loss": 3.6857337951660156, + "step": 2700 + }, + { + "epoch": 37.517256443861946, + "grad_norm": 0.20050311088562012, + "learning_rate": 0.0006, + "loss": 3.6811180114746094, + "step": 2701 + }, + { + "epoch": 37.53123634775011, + "grad_norm": 0.21008558571338654, + "learning_rate": 0.0006, + "loss": 3.700563907623291, + "step": 2702 + }, + { + "epoch": 37.54521625163827, + "grad_norm": 0.2393747717142105, + "learning_rate": 0.0006, + "loss": 3.679438591003418, + "step": 2703 + }, + { + "epoch": 37.55919615552643, + "grad_norm": 0.2531895041465759, + "learning_rate": 0.0006, + "loss": 3.682903289794922, + "step": 2704 + }, + { + "epoch": 37.57317605941459, + "grad_norm": 0.2372656762599945, + "learning_rate": 0.0006, + "loss": 3.7128796577453613, + "step": 2705 + }, + { + "epoch": 37.58715596330275, + "grad_norm": 0.20020034909248352, + "learning_rate": 0.0006, + "loss": 3.701916217803955, + "step": 2706 + }, + { + "epoch": 37.60113586719091, + "grad_norm": 0.20250852406024933, + "learning_rate": 0.0006, + "loss": 3.6761491298675537, + "step": 2707 + }, + { + "epoch": 37.615115771079076, + "grad_norm": 0.19259589910507202, + "learning_rate": 0.0006, + "loss": 3.715104579925537, + "step": 2708 + }, + { + "epoch": 37.62909567496723, + "grad_norm": 0.19649392366409302, + "learning_rate": 0.0006, + "loss": 3.687556266784668, + "step": 2709 + }, + { + "epoch": 37.643075578855395, + "grad_norm": 0.1909446269273758, + "learning_rate": 0.0006, + "loss": 3.684046745300293, + "step": 2710 + }, + { + "epoch": 37.65705548274356, + "grad_norm": 0.19589872658252716, + "learning_rate": 0.0006, + "loss": 3.707886219024658, + "step": 2711 + }, + { + "epoch": 37.671035386631715, + "grad_norm": 0.19472210109233856, + "learning_rate": 0.0006, + "loss": 3.6837692260742188, + "step": 2712 + }, + { + "epoch": 37.68501529051988, + "grad_norm": 0.22622711956501007, + "learning_rate": 0.0006, + "loss": 3.703619956970215, + "step": 2713 + }, + { + "epoch": 37.69899519440804, + "grad_norm": 0.24314729869365692, + "learning_rate": 0.0006, + "loss": 3.7345223426818848, + "step": 2714 + }, + { + "epoch": 37.7129750982962, + "grad_norm": 0.23934306204319, + "learning_rate": 0.0006, + "loss": 3.687809705734253, + "step": 2715 + }, + { + "epoch": 37.72695500218436, + "grad_norm": 0.24838587641716003, + "learning_rate": 0.0006, + "loss": 3.708613872528076, + "step": 2716 + }, + { + "epoch": 37.74093490607252, + "grad_norm": 0.23191452026367188, + "learning_rate": 0.0006, + "loss": 3.7090163230895996, + "step": 2717 + }, + { + "epoch": 37.75491480996068, + "grad_norm": 0.24574638903141022, + "learning_rate": 0.0006, + "loss": 3.68489146232605, + "step": 2718 + }, + { + "epoch": 37.768894713848844, + "grad_norm": 0.2706749439239502, + "learning_rate": 0.0006, + "loss": 3.687061309814453, + "step": 2719 + }, + { + "epoch": 37.782874617737, + "grad_norm": 0.25955191254615784, + "learning_rate": 0.0006, + "loss": 3.694173812866211, + "step": 2720 + }, + { + "epoch": 37.796854521625164, + "grad_norm": 0.22040610015392303, + "learning_rate": 0.0006, + "loss": 3.701871871948242, + "step": 2721 + }, + { + "epoch": 37.81083442551333, + "grad_norm": 0.22328512370586395, + "learning_rate": 0.0006, + "loss": 3.7082555294036865, + "step": 2722 + }, + { + "epoch": 37.824814329401484, + "grad_norm": 0.2290581911802292, + "learning_rate": 0.0006, + "loss": 3.7023987770080566, + "step": 2723 + }, + { + "epoch": 37.83879423328965, + "grad_norm": 0.23129472136497498, + "learning_rate": 0.0006, + "loss": 3.7101752758026123, + "step": 2724 + }, + { + "epoch": 37.8527741371778, + "grad_norm": 0.21203753352165222, + "learning_rate": 0.0006, + "loss": 3.712129592895508, + "step": 2725 + }, + { + "epoch": 37.86675404106597, + "grad_norm": 0.21938200294971466, + "learning_rate": 0.0006, + "loss": 3.7086095809936523, + "step": 2726 + }, + { + "epoch": 37.88073394495413, + "grad_norm": 0.2203572541475296, + "learning_rate": 0.0006, + "loss": 3.6789026260375977, + "step": 2727 + }, + { + "epoch": 37.89471384884229, + "grad_norm": 0.18146046996116638, + "learning_rate": 0.0006, + "loss": 3.666893243789673, + "step": 2728 + }, + { + "epoch": 37.90869375273045, + "grad_norm": 0.1879623532295227, + "learning_rate": 0.0006, + "loss": 3.69246768951416, + "step": 2729 + }, + { + "epoch": 37.92267365661861, + "grad_norm": 0.18311670422554016, + "learning_rate": 0.0006, + "loss": 3.682036876678467, + "step": 2730 + }, + { + "epoch": 37.93665356050677, + "grad_norm": 0.1898486614227295, + "learning_rate": 0.0006, + "loss": 3.6683125495910645, + "step": 2731 + }, + { + "epoch": 37.95063346439493, + "grad_norm": 0.1858556717634201, + "learning_rate": 0.0006, + "loss": 3.6879611015319824, + "step": 2732 + }, + { + "epoch": 37.964613368283096, + "grad_norm": 0.19914504885673523, + "learning_rate": 0.0006, + "loss": 3.690250873565674, + "step": 2733 + }, + { + "epoch": 37.97859327217125, + "grad_norm": 0.20406974852085114, + "learning_rate": 0.0006, + "loss": 3.6812171936035156, + "step": 2734 + }, + { + "epoch": 37.992573176059416, + "grad_norm": 0.2003912478685379, + "learning_rate": 0.0006, + "loss": 3.6852147579193115, + "step": 2735 + }, + { + "epoch": 38.0, + "grad_norm": 0.22644472122192383, + "learning_rate": 0.0006, + "loss": 3.645207405090332, + "step": 2736 + }, + { + "epoch": 38.0, + "eval_loss": 3.995000123977661, + "eval_runtime": 45.1644, + "eval_samples_per_second": 54.069, + "eval_steps_per_second": 3.388, + "step": 2736 + }, + { + "epoch": 38.01397990388816, + "grad_norm": 0.1989814043045044, + "learning_rate": 0.0006, + "loss": 3.6511387825012207, + "step": 2737 + }, + { + "epoch": 38.02795980777632, + "grad_norm": 0.203324094414711, + "learning_rate": 0.0006, + "loss": 3.6513094902038574, + "step": 2738 + }, + { + "epoch": 38.04193971166448, + "grad_norm": 0.21504290401935577, + "learning_rate": 0.0006, + "loss": 3.647711992263794, + "step": 2739 + }, + { + "epoch": 38.05591961555265, + "grad_norm": 0.23464815318584442, + "learning_rate": 0.0006, + "loss": 3.6418747901916504, + "step": 2740 + }, + { + "epoch": 38.0698995194408, + "grad_norm": 0.242184117436409, + "learning_rate": 0.0006, + "loss": 3.6741859912872314, + "step": 2741 + }, + { + "epoch": 38.083879423328966, + "grad_norm": 0.23488445580005646, + "learning_rate": 0.0006, + "loss": 3.6710941791534424, + "step": 2742 + }, + { + "epoch": 38.09785932721712, + "grad_norm": 0.20800170302391052, + "learning_rate": 0.0006, + "loss": 3.660001754760742, + "step": 2743 + }, + { + "epoch": 38.111839231105286, + "grad_norm": 0.19505052268505096, + "learning_rate": 0.0006, + "loss": 3.684129238128662, + "step": 2744 + }, + { + "epoch": 38.12581913499345, + "grad_norm": 0.2185833901166916, + "learning_rate": 0.0006, + "loss": 3.656033515930176, + "step": 2745 + }, + { + "epoch": 38.139799038881605, + "grad_norm": 0.21850253641605377, + "learning_rate": 0.0006, + "loss": 3.6818184852600098, + "step": 2746 + }, + { + "epoch": 38.15377894276977, + "grad_norm": 0.2109488695859909, + "learning_rate": 0.0006, + "loss": 3.6485435962677, + "step": 2747 + }, + { + "epoch": 38.16775884665793, + "grad_norm": 0.21059907972812653, + "learning_rate": 0.0006, + "loss": 3.6734395027160645, + "step": 2748 + }, + { + "epoch": 38.18173875054609, + "grad_norm": 0.20741555094718933, + "learning_rate": 0.0006, + "loss": 3.6672463417053223, + "step": 2749 + }, + { + "epoch": 38.19571865443425, + "grad_norm": 0.2130175530910492, + "learning_rate": 0.0006, + "loss": 3.692840576171875, + "step": 2750 + }, + { + "epoch": 38.20969855832241, + "grad_norm": 0.1899138242006302, + "learning_rate": 0.0006, + "loss": 3.675316333770752, + "step": 2751 + }, + { + "epoch": 38.22367846221057, + "grad_norm": 0.218918576836586, + "learning_rate": 0.0006, + "loss": 3.634105920791626, + "step": 2752 + }, + { + "epoch": 38.237658366098735, + "grad_norm": 0.23649370670318604, + "learning_rate": 0.0006, + "loss": 3.6526122093200684, + "step": 2753 + }, + { + "epoch": 38.25163826998689, + "grad_norm": 0.22011931240558624, + "learning_rate": 0.0006, + "loss": 3.6859593391418457, + "step": 2754 + }, + { + "epoch": 38.265618173875055, + "grad_norm": 0.2143620252609253, + "learning_rate": 0.0006, + "loss": 3.656838893890381, + "step": 2755 + }, + { + "epoch": 38.27959807776322, + "grad_norm": 0.24068567156791687, + "learning_rate": 0.0006, + "loss": 3.67006254196167, + "step": 2756 + }, + { + "epoch": 38.293577981651374, + "grad_norm": 0.25773152709007263, + "learning_rate": 0.0006, + "loss": 3.6648950576782227, + "step": 2757 + }, + { + "epoch": 38.30755788553954, + "grad_norm": 0.24213455617427826, + "learning_rate": 0.0006, + "loss": 3.6918864250183105, + "step": 2758 + }, + { + "epoch": 38.3215377894277, + "grad_norm": 0.22463668882846832, + "learning_rate": 0.0006, + "loss": 3.6662540435791016, + "step": 2759 + }, + { + "epoch": 38.33551769331586, + "grad_norm": 0.22541455924510956, + "learning_rate": 0.0006, + "loss": 3.6563215255737305, + "step": 2760 + }, + { + "epoch": 38.34949759720402, + "grad_norm": 0.21833783388137817, + "learning_rate": 0.0006, + "loss": 3.650446891784668, + "step": 2761 + }, + { + "epoch": 38.36347750109218, + "grad_norm": 0.22799745202064514, + "learning_rate": 0.0006, + "loss": 3.7007250785827637, + "step": 2762 + }, + { + "epoch": 38.37745740498034, + "grad_norm": 0.23739562928676605, + "learning_rate": 0.0006, + "loss": 3.667130708694458, + "step": 2763 + }, + { + "epoch": 38.391437308868504, + "grad_norm": 0.23744846880435944, + "learning_rate": 0.0006, + "loss": 3.678760528564453, + "step": 2764 + }, + { + "epoch": 38.40541721275666, + "grad_norm": 0.2677105963230133, + "learning_rate": 0.0006, + "loss": 3.6829030513763428, + "step": 2765 + }, + { + "epoch": 38.419397116644824, + "grad_norm": 0.24490566551685333, + "learning_rate": 0.0006, + "loss": 3.707911491394043, + "step": 2766 + }, + { + "epoch": 38.43337702053299, + "grad_norm": 0.23477254807949066, + "learning_rate": 0.0006, + "loss": 3.680157423019409, + "step": 2767 + }, + { + "epoch": 38.44735692442114, + "grad_norm": 0.26611173152923584, + "learning_rate": 0.0006, + "loss": 3.660834550857544, + "step": 2768 + }, + { + "epoch": 38.46133682830931, + "grad_norm": 0.24505069851875305, + "learning_rate": 0.0006, + "loss": 3.696178436279297, + "step": 2769 + }, + { + "epoch": 38.47531673219746, + "grad_norm": 0.22933335602283478, + "learning_rate": 0.0006, + "loss": 3.6506235599517822, + "step": 2770 + }, + { + "epoch": 38.489296636085626, + "grad_norm": 0.23662401735782623, + "learning_rate": 0.0006, + "loss": 3.680819511413574, + "step": 2771 + }, + { + "epoch": 38.50327653997379, + "grad_norm": 0.27774113416671753, + "learning_rate": 0.0006, + "loss": 3.699146270751953, + "step": 2772 + }, + { + "epoch": 38.517256443861946, + "grad_norm": 0.2881671190261841, + "learning_rate": 0.0006, + "loss": 3.6509652137756348, + "step": 2773 + }, + { + "epoch": 38.53123634775011, + "grad_norm": 0.26570361852645874, + "learning_rate": 0.0006, + "loss": 3.6808385848999023, + "step": 2774 + }, + { + "epoch": 38.54521625163827, + "grad_norm": 0.23043136298656464, + "learning_rate": 0.0006, + "loss": 3.7082371711730957, + "step": 2775 + }, + { + "epoch": 38.55919615552643, + "grad_norm": 0.23730400204658508, + "learning_rate": 0.0006, + "loss": 3.653615951538086, + "step": 2776 + }, + { + "epoch": 38.57317605941459, + "grad_norm": 0.2332635223865509, + "learning_rate": 0.0006, + "loss": 3.6869683265686035, + "step": 2777 + }, + { + "epoch": 38.58715596330275, + "grad_norm": 0.22913676500320435, + "learning_rate": 0.0006, + "loss": 3.6998367309570312, + "step": 2778 + }, + { + "epoch": 38.60113586719091, + "grad_norm": 0.226078599691391, + "learning_rate": 0.0006, + "loss": 3.7051444053649902, + "step": 2779 + }, + { + "epoch": 38.615115771079076, + "grad_norm": 0.2336396723985672, + "learning_rate": 0.0006, + "loss": 3.6964943408966064, + "step": 2780 + }, + { + "epoch": 38.62909567496723, + "grad_norm": 0.23270335793495178, + "learning_rate": 0.0006, + "loss": 3.6741909980773926, + "step": 2781 + }, + { + "epoch": 38.643075578855395, + "grad_norm": 0.19324959814548492, + "learning_rate": 0.0006, + "loss": 3.64506196975708, + "step": 2782 + }, + { + "epoch": 38.65705548274356, + "grad_norm": 0.18551453948020935, + "learning_rate": 0.0006, + "loss": 3.6834206581115723, + "step": 2783 + }, + { + "epoch": 38.671035386631715, + "grad_norm": 0.17392469942569733, + "learning_rate": 0.0006, + "loss": 3.67282772064209, + "step": 2784 + }, + { + "epoch": 38.68501529051988, + "grad_norm": 0.19093742966651917, + "learning_rate": 0.0006, + "loss": 3.6648201942443848, + "step": 2785 + }, + { + "epoch": 38.69899519440804, + "grad_norm": 0.2124558985233307, + "learning_rate": 0.0006, + "loss": 3.712191581726074, + "step": 2786 + }, + { + "epoch": 38.7129750982962, + "grad_norm": 0.2220139354467392, + "learning_rate": 0.0006, + "loss": 3.675504207611084, + "step": 2787 + }, + { + "epoch": 38.72695500218436, + "grad_norm": 0.17677755653858185, + "learning_rate": 0.0006, + "loss": 3.6693475246429443, + "step": 2788 + }, + { + "epoch": 38.74093490607252, + "grad_norm": 0.2002430409193039, + "learning_rate": 0.0006, + "loss": 3.6906018257141113, + "step": 2789 + }, + { + "epoch": 38.75491480996068, + "grad_norm": 0.18844179809093475, + "learning_rate": 0.0006, + "loss": 3.660121440887451, + "step": 2790 + }, + { + "epoch": 38.768894713848844, + "grad_norm": 0.19319336116313934, + "learning_rate": 0.0006, + "loss": 3.6592631340026855, + "step": 2791 + }, + { + "epoch": 38.782874617737, + "grad_norm": 0.18624325096607208, + "learning_rate": 0.0006, + "loss": 3.6935300827026367, + "step": 2792 + }, + { + "epoch": 38.796854521625164, + "grad_norm": 0.2049761712551117, + "learning_rate": 0.0006, + "loss": 3.6702702045440674, + "step": 2793 + }, + { + "epoch": 38.81083442551333, + "grad_norm": 0.2030584216117859, + "learning_rate": 0.0006, + "loss": 3.714639663696289, + "step": 2794 + }, + { + "epoch": 38.824814329401484, + "grad_norm": 0.18989548087120056, + "learning_rate": 0.0006, + "loss": 3.678253412246704, + "step": 2795 + }, + { + "epoch": 38.83879423328965, + "grad_norm": 0.19944126904010773, + "learning_rate": 0.0006, + "loss": 3.648367166519165, + "step": 2796 + }, + { + "epoch": 38.8527741371778, + "grad_norm": 0.2062688171863556, + "learning_rate": 0.0006, + "loss": 3.701514720916748, + "step": 2797 + }, + { + "epoch": 38.86675404106597, + "grad_norm": 0.21475110948085785, + "learning_rate": 0.0006, + "loss": 3.6725993156433105, + "step": 2798 + }, + { + "epoch": 38.88073394495413, + "grad_norm": 0.2240881323814392, + "learning_rate": 0.0006, + "loss": 3.6944539546966553, + "step": 2799 + }, + { + "epoch": 38.89471384884229, + "grad_norm": 0.23074312508106232, + "learning_rate": 0.0006, + "loss": 3.747671365737915, + "step": 2800 + }, + { + "epoch": 38.90869375273045, + "grad_norm": 0.2447938323020935, + "learning_rate": 0.0006, + "loss": 3.6856026649475098, + "step": 2801 + }, + { + "epoch": 38.92267365661861, + "grad_norm": 0.2136487364768982, + "learning_rate": 0.0006, + "loss": 3.710397720336914, + "step": 2802 + }, + { + "epoch": 38.93665356050677, + "grad_norm": 0.21676769852638245, + "learning_rate": 0.0006, + "loss": 3.6911189556121826, + "step": 2803 + }, + { + "epoch": 38.95063346439493, + "grad_norm": 0.2226478010416031, + "learning_rate": 0.0006, + "loss": 3.6902880668640137, + "step": 2804 + }, + { + "epoch": 38.964613368283096, + "grad_norm": 0.2071496546268463, + "learning_rate": 0.0006, + "loss": 3.6831371784210205, + "step": 2805 + }, + { + "epoch": 38.97859327217125, + "grad_norm": 0.19568349421024323, + "learning_rate": 0.0006, + "loss": 3.6897640228271484, + "step": 2806 + }, + { + "epoch": 38.992573176059416, + "grad_norm": 0.19067516922950745, + "learning_rate": 0.0006, + "loss": 3.7096242904663086, + "step": 2807 + }, + { + "epoch": 39.0, + "grad_norm": 0.22872281074523926, + "learning_rate": 0.0006, + "loss": 3.689342975616455, + "step": 2808 + }, + { + "epoch": 39.0, + "eval_loss": 4.001968860626221, + "eval_runtime": 44.8452, + "eval_samples_per_second": 54.454, + "eval_steps_per_second": 3.412, + "step": 2808 + }, + { + "epoch": 39.01397990388816, + "grad_norm": 0.21685896813869476, + "learning_rate": 0.0006, + "loss": 3.638145923614502, + "step": 2809 + }, + { + "epoch": 39.02795980777632, + "grad_norm": 0.20085014402866364, + "learning_rate": 0.0006, + "loss": 3.626654624938965, + "step": 2810 + }, + { + "epoch": 39.04193971166448, + "grad_norm": 0.20615799725055695, + "learning_rate": 0.0006, + "loss": 3.6280088424682617, + "step": 2811 + }, + { + "epoch": 39.05591961555265, + "grad_norm": 0.23471905291080475, + "learning_rate": 0.0006, + "loss": 3.6444239616394043, + "step": 2812 + }, + { + "epoch": 39.0698995194408, + "grad_norm": 0.22207780182361603, + "learning_rate": 0.0006, + "loss": 3.6276912689208984, + "step": 2813 + }, + { + "epoch": 39.083879423328966, + "grad_norm": 0.23354043066501617, + "learning_rate": 0.0006, + "loss": 3.7007269859313965, + "step": 2814 + }, + { + "epoch": 39.09785932721712, + "grad_norm": 0.22520557045936584, + "learning_rate": 0.0006, + "loss": 3.6487162113189697, + "step": 2815 + }, + { + "epoch": 39.111839231105286, + "grad_norm": 0.20489682257175446, + "learning_rate": 0.0006, + "loss": 3.6523492336273193, + "step": 2816 + }, + { + "epoch": 39.12581913499345, + "grad_norm": 0.20979270339012146, + "learning_rate": 0.0006, + "loss": 3.6574230194091797, + "step": 2817 + }, + { + "epoch": 39.139799038881605, + "grad_norm": 0.2256486713886261, + "learning_rate": 0.0006, + "loss": 3.6499013900756836, + "step": 2818 + }, + { + "epoch": 39.15377894276977, + "grad_norm": 0.1960437297821045, + "learning_rate": 0.0006, + "loss": 3.6780271530151367, + "step": 2819 + }, + { + "epoch": 39.16775884665793, + "grad_norm": 0.19279663264751434, + "learning_rate": 0.0006, + "loss": 3.623819589614868, + "step": 2820 + }, + { + "epoch": 39.18173875054609, + "grad_norm": 0.19151495397090912, + "learning_rate": 0.0006, + "loss": 3.612868070602417, + "step": 2821 + }, + { + "epoch": 39.19571865443425, + "grad_norm": 0.19399534165859222, + "learning_rate": 0.0006, + "loss": 3.6518092155456543, + "step": 2822 + }, + { + "epoch": 39.20969855832241, + "grad_norm": 0.21723251044750214, + "learning_rate": 0.0006, + "loss": 3.681509494781494, + "step": 2823 + }, + { + "epoch": 39.22367846221057, + "grad_norm": 0.2487006038427353, + "learning_rate": 0.0006, + "loss": 3.6569719314575195, + "step": 2824 + }, + { + "epoch": 39.237658366098735, + "grad_norm": 0.2640652656555176, + "learning_rate": 0.0006, + "loss": 3.680734634399414, + "step": 2825 + }, + { + "epoch": 39.25163826998689, + "grad_norm": 0.21862825751304626, + "learning_rate": 0.0006, + "loss": 3.6741840839385986, + "step": 2826 + }, + { + "epoch": 39.265618173875055, + "grad_norm": 0.19515705108642578, + "learning_rate": 0.0006, + "loss": 3.657750129699707, + "step": 2827 + }, + { + "epoch": 39.27959807776322, + "grad_norm": 0.1971602737903595, + "learning_rate": 0.0006, + "loss": 3.6524124145507812, + "step": 2828 + }, + { + "epoch": 39.293577981651374, + "grad_norm": 0.20822174847126007, + "learning_rate": 0.0006, + "loss": 3.69527006149292, + "step": 2829 + }, + { + "epoch": 39.30755788553954, + "grad_norm": 0.2566370368003845, + "learning_rate": 0.0006, + "loss": 3.6770880222320557, + "step": 2830 + }, + { + "epoch": 39.3215377894277, + "grad_norm": 0.24984225630760193, + "learning_rate": 0.0006, + "loss": 3.6733901500701904, + "step": 2831 + }, + { + "epoch": 39.33551769331586, + "grad_norm": 0.233322873711586, + "learning_rate": 0.0006, + "loss": 3.645519256591797, + "step": 2832 + }, + { + "epoch": 39.34949759720402, + "grad_norm": 0.21584749221801758, + "learning_rate": 0.0006, + "loss": 3.6211934089660645, + "step": 2833 + }, + { + "epoch": 39.36347750109218, + "grad_norm": 0.2188950479030609, + "learning_rate": 0.0006, + "loss": 3.6434195041656494, + "step": 2834 + }, + { + "epoch": 39.37745740498034, + "grad_norm": 0.21998439729213715, + "learning_rate": 0.0006, + "loss": 3.6720595359802246, + "step": 2835 + }, + { + "epoch": 39.391437308868504, + "grad_norm": 0.2459399700164795, + "learning_rate": 0.0006, + "loss": 3.667083740234375, + "step": 2836 + }, + { + "epoch": 39.40541721275666, + "grad_norm": 0.23579223453998566, + "learning_rate": 0.0006, + "loss": 3.665452480316162, + "step": 2837 + }, + { + "epoch": 39.419397116644824, + "grad_norm": 0.19401362538337708, + "learning_rate": 0.0006, + "loss": 3.684218406677246, + "step": 2838 + }, + { + "epoch": 39.43337702053299, + "grad_norm": 0.1894487738609314, + "learning_rate": 0.0006, + "loss": 3.670626163482666, + "step": 2839 + }, + { + "epoch": 39.44735692442114, + "grad_norm": 0.1936904937028885, + "learning_rate": 0.0006, + "loss": 3.6367318630218506, + "step": 2840 + }, + { + "epoch": 39.46133682830931, + "grad_norm": 0.1867629438638687, + "learning_rate": 0.0006, + "loss": 3.670098304748535, + "step": 2841 + }, + { + "epoch": 39.47531673219746, + "grad_norm": 0.18849903345108032, + "learning_rate": 0.0006, + "loss": 3.6877760887145996, + "step": 2842 + }, + { + "epoch": 39.489296636085626, + "grad_norm": 0.18247179687023163, + "learning_rate": 0.0006, + "loss": 3.7132980823516846, + "step": 2843 + }, + { + "epoch": 39.50327653997379, + "grad_norm": 0.19206349551677704, + "learning_rate": 0.0006, + "loss": 3.630319595336914, + "step": 2844 + }, + { + "epoch": 39.517256443861946, + "grad_norm": 0.21730613708496094, + "learning_rate": 0.0006, + "loss": 3.6818761825561523, + "step": 2845 + }, + { + "epoch": 39.53123634775011, + "grad_norm": 0.22482407093048096, + "learning_rate": 0.0006, + "loss": 3.6385269165039062, + "step": 2846 + }, + { + "epoch": 39.54521625163827, + "grad_norm": 0.24560105800628662, + "learning_rate": 0.0006, + "loss": 3.660067558288574, + "step": 2847 + }, + { + "epoch": 39.55919615552643, + "grad_norm": 0.23720617592334747, + "learning_rate": 0.0006, + "loss": 3.6811556816101074, + "step": 2848 + }, + { + "epoch": 39.57317605941459, + "grad_norm": 0.18990741670131683, + "learning_rate": 0.0006, + "loss": 3.6733779907226562, + "step": 2849 + }, + { + "epoch": 39.58715596330275, + "grad_norm": 0.2135438323020935, + "learning_rate": 0.0006, + "loss": 3.662020683288574, + "step": 2850 + }, + { + "epoch": 39.60113586719091, + "grad_norm": 0.24248908460140228, + "learning_rate": 0.0006, + "loss": 3.6794259548187256, + "step": 2851 + }, + { + "epoch": 39.615115771079076, + "grad_norm": 0.23115725815296173, + "learning_rate": 0.0006, + "loss": 3.6732406616210938, + "step": 2852 + }, + { + "epoch": 39.62909567496723, + "grad_norm": 0.23760166764259338, + "learning_rate": 0.0006, + "loss": 3.7062699794769287, + "step": 2853 + }, + { + "epoch": 39.643075578855395, + "grad_norm": 0.24670571088790894, + "learning_rate": 0.0006, + "loss": 3.692385673522949, + "step": 2854 + }, + { + "epoch": 39.65705548274356, + "grad_norm": 0.20983918011188507, + "learning_rate": 0.0006, + "loss": 3.691361427307129, + "step": 2855 + }, + { + "epoch": 39.671035386631715, + "grad_norm": 0.1915138065814972, + "learning_rate": 0.0006, + "loss": 3.6985888481140137, + "step": 2856 + }, + { + "epoch": 39.68501529051988, + "grad_norm": 0.23440803587436676, + "learning_rate": 0.0006, + "loss": 3.6484973430633545, + "step": 2857 + }, + { + "epoch": 39.69899519440804, + "grad_norm": 0.2483232468366623, + "learning_rate": 0.0006, + "loss": 3.6861510276794434, + "step": 2858 + }, + { + "epoch": 39.7129750982962, + "grad_norm": 0.21373426914215088, + "learning_rate": 0.0006, + "loss": 3.6528866291046143, + "step": 2859 + }, + { + "epoch": 39.72695500218436, + "grad_norm": 0.19849136471748352, + "learning_rate": 0.0006, + "loss": 3.6435961723327637, + "step": 2860 + }, + { + "epoch": 39.74093490607252, + "grad_norm": 0.21748292446136475, + "learning_rate": 0.0006, + "loss": 3.678481101989746, + "step": 2861 + }, + { + "epoch": 39.75491480996068, + "grad_norm": 0.22488188743591309, + "learning_rate": 0.0006, + "loss": 3.711717128753662, + "step": 2862 + }, + { + "epoch": 39.768894713848844, + "grad_norm": 0.22251835465431213, + "learning_rate": 0.0006, + "loss": 3.690516471862793, + "step": 2863 + }, + { + "epoch": 39.782874617737, + "grad_norm": 0.22101449966430664, + "learning_rate": 0.0006, + "loss": 3.6679611206054688, + "step": 2864 + }, + { + "epoch": 39.796854521625164, + "grad_norm": 0.20345936715602875, + "learning_rate": 0.0006, + "loss": 3.6935629844665527, + "step": 2865 + }, + { + "epoch": 39.81083442551333, + "grad_norm": 0.23772259056568146, + "learning_rate": 0.0006, + "loss": 3.697561264038086, + "step": 2866 + }, + { + "epoch": 39.824814329401484, + "grad_norm": 0.24446387588977814, + "learning_rate": 0.0006, + "loss": 3.696723461151123, + "step": 2867 + }, + { + "epoch": 39.83879423328965, + "grad_norm": 0.2365843653678894, + "learning_rate": 0.0006, + "loss": 3.6511402130126953, + "step": 2868 + }, + { + "epoch": 39.8527741371778, + "grad_norm": 0.25421974062919617, + "learning_rate": 0.0006, + "loss": 3.68449068069458, + "step": 2869 + }, + { + "epoch": 39.86675404106597, + "grad_norm": 0.2504308819770813, + "learning_rate": 0.0006, + "loss": 3.685884952545166, + "step": 2870 + }, + { + "epoch": 39.88073394495413, + "grad_norm": 0.24695490300655365, + "learning_rate": 0.0006, + "loss": 3.6667490005493164, + "step": 2871 + }, + { + "epoch": 39.89471384884229, + "grad_norm": 0.2633236348628998, + "learning_rate": 0.0006, + "loss": 3.6828866004943848, + "step": 2872 + }, + { + "epoch": 39.90869375273045, + "grad_norm": 0.2421039491891861, + "learning_rate": 0.0006, + "loss": 3.681187391281128, + "step": 2873 + }, + { + "epoch": 39.92267365661861, + "grad_norm": 0.21202950179576874, + "learning_rate": 0.0006, + "loss": 3.679069995880127, + "step": 2874 + }, + { + "epoch": 39.93665356050677, + "grad_norm": 0.2344917505979538, + "learning_rate": 0.0006, + "loss": 3.6810007095336914, + "step": 2875 + }, + { + "epoch": 39.95063346439493, + "grad_norm": 0.2115124762058258, + "learning_rate": 0.0006, + "loss": 3.653219223022461, + "step": 2876 + }, + { + "epoch": 39.964613368283096, + "grad_norm": 0.21588370203971863, + "learning_rate": 0.0006, + "loss": 3.6972861289978027, + "step": 2877 + }, + { + "epoch": 39.97859327217125, + "grad_norm": 0.26215407252311707, + "learning_rate": 0.0006, + "loss": 3.6796963214874268, + "step": 2878 + }, + { + "epoch": 39.992573176059416, + "grad_norm": 0.23645395040512085, + "learning_rate": 0.0006, + "loss": 3.696091413497925, + "step": 2879 + }, + { + "epoch": 40.0, + "grad_norm": 0.21817512810230255, + "learning_rate": 0.0006, + "loss": 3.668196678161621, + "step": 2880 + }, + { + "epoch": 40.0, + "eval_loss": 3.9873862266540527, + "eval_runtime": 44.1149, + "eval_samples_per_second": 55.355, + "eval_steps_per_second": 3.468, + "step": 2880 + }, + { + "epoch": 40.01397990388816, + "grad_norm": 0.2031477391719818, + "learning_rate": 0.0006, + "loss": 3.6494622230529785, + "step": 2881 + }, + { + "epoch": 40.02795980777632, + "grad_norm": 0.2223939746618271, + "learning_rate": 0.0006, + "loss": 3.6587047576904297, + "step": 2882 + }, + { + "epoch": 40.04193971166448, + "grad_norm": 0.21485820412635803, + "learning_rate": 0.0006, + "loss": 3.62253737449646, + "step": 2883 + }, + { + "epoch": 40.05591961555265, + "grad_norm": 0.23364055156707764, + "learning_rate": 0.0006, + "loss": 3.619035005569458, + "step": 2884 + }, + { + "epoch": 40.0698995194408, + "grad_norm": 0.23141583800315857, + "learning_rate": 0.0006, + "loss": 3.6650376319885254, + "step": 2885 + }, + { + "epoch": 40.083879423328966, + "grad_norm": 0.2131720930337906, + "learning_rate": 0.0006, + "loss": 3.646428108215332, + "step": 2886 + }, + { + "epoch": 40.09785932721712, + "grad_norm": 0.2337951511144638, + "learning_rate": 0.0006, + "loss": 3.6284823417663574, + "step": 2887 + }, + { + "epoch": 40.111839231105286, + "grad_norm": 0.2790892720222473, + "learning_rate": 0.0006, + "loss": 3.6558361053466797, + "step": 2888 + }, + { + "epoch": 40.12581913499345, + "grad_norm": 0.28444936871528625, + "learning_rate": 0.0006, + "loss": 3.644402503967285, + "step": 2889 + }, + { + "epoch": 40.139799038881605, + "grad_norm": 0.2550848126411438, + "learning_rate": 0.0006, + "loss": 3.671562671661377, + "step": 2890 + }, + { + "epoch": 40.15377894276977, + "grad_norm": 0.22960248589515686, + "learning_rate": 0.0006, + "loss": 3.6998534202575684, + "step": 2891 + }, + { + "epoch": 40.16775884665793, + "grad_norm": 0.23920369148254395, + "learning_rate": 0.0006, + "loss": 3.653874635696411, + "step": 2892 + }, + { + "epoch": 40.18173875054609, + "grad_norm": 0.24586012959480286, + "learning_rate": 0.0006, + "loss": 3.620765209197998, + "step": 2893 + }, + { + "epoch": 40.19571865443425, + "grad_norm": 0.26394739747047424, + "learning_rate": 0.0006, + "loss": 3.638437509536743, + "step": 2894 + }, + { + "epoch": 40.20969855832241, + "grad_norm": 0.27566927671432495, + "learning_rate": 0.0006, + "loss": 3.6684799194335938, + "step": 2895 + }, + { + "epoch": 40.22367846221057, + "grad_norm": 0.25469011068344116, + "learning_rate": 0.0006, + "loss": 3.6113009452819824, + "step": 2896 + }, + { + "epoch": 40.237658366098735, + "grad_norm": 0.2403056025505066, + "learning_rate": 0.0006, + "loss": 3.650771141052246, + "step": 2897 + }, + { + "epoch": 40.25163826998689, + "grad_norm": 0.262423038482666, + "learning_rate": 0.0006, + "loss": 3.635892391204834, + "step": 2898 + }, + { + "epoch": 40.265618173875055, + "grad_norm": 0.23696045577526093, + "learning_rate": 0.0006, + "loss": 3.6396005153656006, + "step": 2899 + }, + { + "epoch": 40.27959807776322, + "grad_norm": 0.208719402551651, + "learning_rate": 0.0006, + "loss": 3.6681132316589355, + "step": 2900 + }, + { + "epoch": 40.293577981651374, + "grad_norm": 0.21554480493068695, + "learning_rate": 0.0006, + "loss": 3.6417553424835205, + "step": 2901 + }, + { + "epoch": 40.30755788553954, + "grad_norm": 0.2290734499692917, + "learning_rate": 0.0006, + "loss": 3.6659927368164062, + "step": 2902 + }, + { + "epoch": 40.3215377894277, + "grad_norm": 0.20803220570087433, + "learning_rate": 0.0006, + "loss": 3.6443324089050293, + "step": 2903 + }, + { + "epoch": 40.33551769331586, + "grad_norm": 0.20334568619728088, + "learning_rate": 0.0006, + "loss": 3.6824207305908203, + "step": 2904 + }, + { + "epoch": 40.34949759720402, + "grad_norm": 0.2000233381986618, + "learning_rate": 0.0006, + "loss": 3.644399642944336, + "step": 2905 + }, + { + "epoch": 40.36347750109218, + "grad_norm": 0.21990752220153809, + "learning_rate": 0.0006, + "loss": 3.668160915374756, + "step": 2906 + }, + { + "epoch": 40.37745740498034, + "grad_norm": 0.24385249614715576, + "learning_rate": 0.0006, + "loss": 3.634392261505127, + "step": 2907 + }, + { + "epoch": 40.391437308868504, + "grad_norm": 0.21272684633731842, + "learning_rate": 0.0006, + "loss": 3.6504263877868652, + "step": 2908 + }, + { + "epoch": 40.40541721275666, + "grad_norm": 0.2003277838230133, + "learning_rate": 0.0006, + "loss": 3.6707763671875, + "step": 2909 + }, + { + "epoch": 40.419397116644824, + "grad_norm": 0.2086087465286255, + "learning_rate": 0.0006, + "loss": 3.66988468170166, + "step": 2910 + }, + { + "epoch": 40.43337702053299, + "grad_norm": 0.19706451892852783, + "learning_rate": 0.0006, + "loss": 3.662794828414917, + "step": 2911 + }, + { + "epoch": 40.44735692442114, + "grad_norm": 0.18795762956142426, + "learning_rate": 0.0006, + "loss": 3.628016233444214, + "step": 2912 + }, + { + "epoch": 40.46133682830931, + "grad_norm": 0.19931825995445251, + "learning_rate": 0.0006, + "loss": 3.6791915893554688, + "step": 2913 + }, + { + "epoch": 40.47531673219746, + "grad_norm": 0.21295934915542603, + "learning_rate": 0.0006, + "loss": 3.688632011413574, + "step": 2914 + }, + { + "epoch": 40.489296636085626, + "grad_norm": 0.2104834020137787, + "learning_rate": 0.0006, + "loss": 3.6270499229431152, + "step": 2915 + }, + { + "epoch": 40.50327653997379, + "grad_norm": 0.19942966103553772, + "learning_rate": 0.0006, + "loss": 3.651721477508545, + "step": 2916 + }, + { + "epoch": 40.517256443861946, + "grad_norm": 0.18890425562858582, + "learning_rate": 0.0006, + "loss": 3.6778619289398193, + "step": 2917 + }, + { + "epoch": 40.53123634775011, + "grad_norm": 0.19861607253551483, + "learning_rate": 0.0006, + "loss": 3.658832550048828, + "step": 2918 + }, + { + "epoch": 40.54521625163827, + "grad_norm": 0.21553616225719452, + "learning_rate": 0.0006, + "loss": 3.6566901206970215, + "step": 2919 + }, + { + "epoch": 40.55919615552643, + "grad_norm": 0.21698440611362457, + "learning_rate": 0.0006, + "loss": 3.6795129776000977, + "step": 2920 + }, + { + "epoch": 40.57317605941459, + "grad_norm": 0.20310913026332855, + "learning_rate": 0.0006, + "loss": 3.645244598388672, + "step": 2921 + }, + { + "epoch": 40.58715596330275, + "grad_norm": 0.2075812816619873, + "learning_rate": 0.0006, + "loss": 3.678452491760254, + "step": 2922 + }, + { + "epoch": 40.60113586719091, + "grad_norm": 0.20606619119644165, + "learning_rate": 0.0006, + "loss": 3.6150245666503906, + "step": 2923 + }, + { + "epoch": 40.615115771079076, + "grad_norm": 0.21511296927928925, + "learning_rate": 0.0006, + "loss": 3.6682112216949463, + "step": 2924 + }, + { + "epoch": 40.62909567496723, + "grad_norm": 0.19771839678287506, + "learning_rate": 0.0006, + "loss": 3.6639556884765625, + "step": 2925 + }, + { + "epoch": 40.643075578855395, + "grad_norm": 0.20419852435588837, + "learning_rate": 0.0006, + "loss": 3.664982318878174, + "step": 2926 + }, + { + "epoch": 40.65705548274356, + "grad_norm": 0.20119430124759674, + "learning_rate": 0.0006, + "loss": 3.661625385284424, + "step": 2927 + }, + { + "epoch": 40.671035386631715, + "grad_norm": 0.21590501070022583, + "learning_rate": 0.0006, + "loss": 3.673719644546509, + "step": 2928 + }, + { + "epoch": 40.68501529051988, + "grad_norm": 0.19165395200252533, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 2929 + }, + { + "epoch": 40.69899519440804, + "grad_norm": 0.19620473682880402, + "learning_rate": 0.0006, + "loss": 3.7008142471313477, + "step": 2930 + }, + { + "epoch": 40.7129750982962, + "grad_norm": 0.23002777993679047, + "learning_rate": 0.0006, + "loss": 3.654296875, + "step": 2931 + }, + { + "epoch": 40.72695500218436, + "grad_norm": 0.22007468342781067, + "learning_rate": 0.0006, + "loss": 3.688178539276123, + "step": 2932 + }, + { + "epoch": 40.74093490607252, + "grad_norm": 0.2030077874660492, + "learning_rate": 0.0006, + "loss": 3.6514129638671875, + "step": 2933 + }, + { + "epoch": 40.75491480996068, + "grad_norm": 0.20960700511932373, + "learning_rate": 0.0006, + "loss": 3.651864528656006, + "step": 2934 + }, + { + "epoch": 40.768894713848844, + "grad_norm": 0.2132565975189209, + "learning_rate": 0.0006, + "loss": 3.680915355682373, + "step": 2935 + }, + { + "epoch": 40.782874617737, + "grad_norm": 0.2411353588104248, + "learning_rate": 0.0006, + "loss": 3.647167682647705, + "step": 2936 + }, + { + "epoch": 40.796854521625164, + "grad_norm": 0.24621541798114777, + "learning_rate": 0.0006, + "loss": 3.6784768104553223, + "step": 2937 + }, + { + "epoch": 40.81083442551333, + "grad_norm": 0.23324407637119293, + "learning_rate": 0.0006, + "loss": 3.6855263710021973, + "step": 2938 + }, + { + "epoch": 40.824814329401484, + "grad_norm": 0.21749550104141235, + "learning_rate": 0.0006, + "loss": 3.672682285308838, + "step": 2939 + }, + { + "epoch": 40.83879423328965, + "grad_norm": 0.1957911103963852, + "learning_rate": 0.0006, + "loss": 3.635678291320801, + "step": 2940 + }, + { + "epoch": 40.8527741371778, + "grad_norm": 0.21262411773204803, + "learning_rate": 0.0006, + "loss": 3.6829824447631836, + "step": 2941 + }, + { + "epoch": 40.86675404106597, + "grad_norm": 0.19940680265426636, + "learning_rate": 0.0006, + "loss": 3.720932960510254, + "step": 2942 + }, + { + "epoch": 40.88073394495413, + "grad_norm": 0.1964999884366989, + "learning_rate": 0.0006, + "loss": 3.678405284881592, + "step": 2943 + }, + { + "epoch": 40.89471384884229, + "grad_norm": 0.21459022164344788, + "learning_rate": 0.0006, + "loss": 3.6788480281829834, + "step": 2944 + }, + { + "epoch": 40.90869375273045, + "grad_norm": 0.2251381129026413, + "learning_rate": 0.0006, + "loss": 3.679459571838379, + "step": 2945 + }, + { + "epoch": 40.92267365661861, + "grad_norm": 0.19951461255550385, + "learning_rate": 0.0006, + "loss": 3.6610841751098633, + "step": 2946 + }, + { + "epoch": 40.93665356050677, + "grad_norm": 0.2057943493127823, + "learning_rate": 0.0006, + "loss": 3.649491786956787, + "step": 2947 + }, + { + "epoch": 40.95063346439493, + "grad_norm": 0.19601917266845703, + "learning_rate": 0.0006, + "loss": 3.724552631378174, + "step": 2948 + }, + { + "epoch": 40.964613368283096, + "grad_norm": 0.20982769131660461, + "learning_rate": 0.0006, + "loss": 3.648465394973755, + "step": 2949 + }, + { + "epoch": 40.97859327217125, + "grad_norm": 0.21103954315185547, + "learning_rate": 0.0006, + "loss": 3.692239999771118, + "step": 2950 + }, + { + "epoch": 40.992573176059416, + "grad_norm": 0.2007385492324829, + "learning_rate": 0.0006, + "loss": 3.659999132156372, + "step": 2951 + }, + { + "epoch": 41.0, + "grad_norm": 0.22357431054115295, + "learning_rate": 0.0006, + "loss": 3.6461124420166016, + "step": 2952 + }, + { + "epoch": 41.0, + "eval_loss": 3.9891226291656494, + "eval_runtime": 44.65, + "eval_samples_per_second": 54.692, + "eval_steps_per_second": 3.427, + "step": 2952 + }, + { + "epoch": 41.01397990388816, + "grad_norm": 0.20387817919254303, + "learning_rate": 0.0006, + "loss": 3.643923282623291, + "step": 2953 + }, + { + "epoch": 41.02795980777632, + "grad_norm": 0.1988423764705658, + "learning_rate": 0.0006, + "loss": 3.6152570247650146, + "step": 2954 + }, + { + "epoch": 41.04193971166448, + "grad_norm": 0.19998641312122345, + "learning_rate": 0.0006, + "loss": 3.667520523071289, + "step": 2955 + }, + { + "epoch": 41.05591961555265, + "grad_norm": 0.18347714841365814, + "learning_rate": 0.0006, + "loss": 3.6289002895355225, + "step": 2956 + }, + { + "epoch": 41.0698995194408, + "grad_norm": 0.21235640347003937, + "learning_rate": 0.0006, + "loss": 3.6422951221466064, + "step": 2957 + }, + { + "epoch": 41.083879423328966, + "grad_norm": 0.1990172415971756, + "learning_rate": 0.0006, + "loss": 3.625697135925293, + "step": 2958 + }, + { + "epoch": 41.09785932721712, + "grad_norm": 0.18313643336296082, + "learning_rate": 0.0006, + "loss": 3.672356605529785, + "step": 2959 + }, + { + "epoch": 41.111839231105286, + "grad_norm": 0.17956401407718658, + "learning_rate": 0.0006, + "loss": 3.6093602180480957, + "step": 2960 + }, + { + "epoch": 41.12581913499345, + "grad_norm": 0.19487550854682922, + "learning_rate": 0.0006, + "loss": 3.6004128456115723, + "step": 2961 + }, + { + "epoch": 41.139799038881605, + "grad_norm": 0.2117495834827423, + "learning_rate": 0.0006, + "loss": 3.6468565464019775, + "step": 2962 + }, + { + "epoch": 41.15377894276977, + "grad_norm": 0.20602662861347198, + "learning_rate": 0.0006, + "loss": 3.6299140453338623, + "step": 2963 + }, + { + "epoch": 41.16775884665793, + "grad_norm": 0.21859265863895416, + "learning_rate": 0.0006, + "loss": 3.630052328109741, + "step": 2964 + }, + { + "epoch": 41.18173875054609, + "grad_norm": 0.22684140503406525, + "learning_rate": 0.0006, + "loss": 3.5995004177093506, + "step": 2965 + }, + { + "epoch": 41.19571865443425, + "grad_norm": 0.25682681798934937, + "learning_rate": 0.0006, + "loss": 3.613131523132324, + "step": 2966 + }, + { + "epoch": 41.20969855832241, + "grad_norm": 0.2508181631565094, + "learning_rate": 0.0006, + "loss": 3.644259452819824, + "step": 2967 + }, + { + "epoch": 41.22367846221057, + "grad_norm": 0.24200427532196045, + "learning_rate": 0.0006, + "loss": 3.6651816368103027, + "step": 2968 + }, + { + "epoch": 41.237658366098735, + "grad_norm": 0.21753790974617004, + "learning_rate": 0.0006, + "loss": 3.686199188232422, + "step": 2969 + }, + { + "epoch": 41.25163826998689, + "grad_norm": 0.19811955094337463, + "learning_rate": 0.0006, + "loss": 3.63014817237854, + "step": 2970 + }, + { + "epoch": 41.265618173875055, + "grad_norm": 0.19316327571868896, + "learning_rate": 0.0006, + "loss": 3.6532740592956543, + "step": 2971 + }, + { + "epoch": 41.27959807776322, + "grad_norm": 0.21440976858139038, + "learning_rate": 0.0006, + "loss": 3.6546850204467773, + "step": 2972 + }, + { + "epoch": 41.293577981651374, + "grad_norm": 0.2732681334018707, + "learning_rate": 0.0006, + "loss": 3.6135244369506836, + "step": 2973 + }, + { + "epoch": 41.30755788553954, + "grad_norm": 0.2588619589805603, + "learning_rate": 0.0006, + "loss": 3.657963275909424, + "step": 2974 + }, + { + "epoch": 41.3215377894277, + "grad_norm": 0.20054970681667328, + "learning_rate": 0.0006, + "loss": 3.6391024589538574, + "step": 2975 + }, + { + "epoch": 41.33551769331586, + "grad_norm": 0.23703549802303314, + "learning_rate": 0.0006, + "loss": 3.6609978675842285, + "step": 2976 + }, + { + "epoch": 41.34949759720402, + "grad_norm": 0.24222144484519958, + "learning_rate": 0.0006, + "loss": 3.659271478652954, + "step": 2977 + }, + { + "epoch": 41.36347750109218, + "grad_norm": 0.2228497713804245, + "learning_rate": 0.0006, + "loss": 3.607358455657959, + "step": 2978 + }, + { + "epoch": 41.37745740498034, + "grad_norm": 0.22105038166046143, + "learning_rate": 0.0006, + "loss": 3.64198899269104, + "step": 2979 + }, + { + "epoch": 41.391437308868504, + "grad_norm": 0.23753555119037628, + "learning_rate": 0.0006, + "loss": 3.63116455078125, + "step": 2980 + }, + { + "epoch": 41.40541721275666, + "grad_norm": 0.24492689967155457, + "learning_rate": 0.0006, + "loss": 3.636122465133667, + "step": 2981 + }, + { + "epoch": 41.419397116644824, + "grad_norm": 0.20610782504081726, + "learning_rate": 0.0006, + "loss": 3.656487226486206, + "step": 2982 + }, + { + "epoch": 41.43337702053299, + "grad_norm": 0.20781412720680237, + "learning_rate": 0.0006, + "loss": 3.669196605682373, + "step": 2983 + }, + { + "epoch": 41.44735692442114, + "grad_norm": 0.23892036080360413, + "learning_rate": 0.0006, + "loss": 3.6345765590667725, + "step": 2984 + }, + { + "epoch": 41.46133682830931, + "grad_norm": 0.2477712333202362, + "learning_rate": 0.0006, + "loss": 3.6599812507629395, + "step": 2985 + }, + { + "epoch": 41.47531673219746, + "grad_norm": 0.25314703583717346, + "learning_rate": 0.0006, + "loss": 3.6737258434295654, + "step": 2986 + }, + { + "epoch": 41.489296636085626, + "grad_norm": 0.2386070191860199, + "learning_rate": 0.0006, + "loss": 3.666586399078369, + "step": 2987 + }, + { + "epoch": 41.50327653997379, + "grad_norm": 0.27259722352027893, + "learning_rate": 0.0006, + "loss": 3.658761501312256, + "step": 2988 + }, + { + "epoch": 41.517256443861946, + "grad_norm": 0.3312860429286957, + "learning_rate": 0.0006, + "loss": 3.629699230194092, + "step": 2989 + }, + { + "epoch": 41.53123634775011, + "grad_norm": 0.3321581780910492, + "learning_rate": 0.0006, + "loss": 3.66628360748291, + "step": 2990 + }, + { + "epoch": 41.54521625163827, + "grad_norm": 0.2850016951560974, + "learning_rate": 0.0006, + "loss": 3.690005302429199, + "step": 2991 + }, + { + "epoch": 41.55919615552643, + "grad_norm": 0.2544100880622864, + "learning_rate": 0.0006, + "loss": 3.6554486751556396, + "step": 2992 + }, + { + "epoch": 41.57317605941459, + "grad_norm": 0.28541380167007446, + "learning_rate": 0.0006, + "loss": 3.672952175140381, + "step": 2993 + }, + { + "epoch": 41.58715596330275, + "grad_norm": 0.2909766435623169, + "learning_rate": 0.0006, + "loss": 3.6649627685546875, + "step": 2994 + }, + { + "epoch": 41.60113586719091, + "grad_norm": 0.26089969277381897, + "learning_rate": 0.0006, + "loss": 3.6512341499328613, + "step": 2995 + }, + { + "epoch": 41.615115771079076, + "grad_norm": 0.21815894544124603, + "learning_rate": 0.0006, + "loss": 3.612436056137085, + "step": 2996 + }, + { + "epoch": 41.62909567496723, + "grad_norm": 0.20712246000766754, + "learning_rate": 0.0006, + "loss": 3.6482479572296143, + "step": 2997 + }, + { + "epoch": 41.643075578855395, + "grad_norm": 0.23280103504657745, + "learning_rate": 0.0006, + "loss": 3.6648616790771484, + "step": 2998 + }, + { + "epoch": 41.65705548274356, + "grad_norm": 0.21623823046684265, + "learning_rate": 0.0006, + "loss": 3.6714487075805664, + "step": 2999 + }, + { + "epoch": 41.671035386631715, + "grad_norm": 0.2081632912158966, + "learning_rate": 0.0006, + "loss": 3.693014144897461, + "step": 3000 + }, + { + "epoch": 41.68501529051988, + "grad_norm": 0.23109425604343414, + "learning_rate": 0.0006, + "loss": 3.667262554168701, + "step": 3001 + }, + { + "epoch": 41.69899519440804, + "grad_norm": 0.2304934561252594, + "learning_rate": 0.0006, + "loss": 3.666405439376831, + "step": 3002 + }, + { + "epoch": 41.7129750982962, + "grad_norm": 0.23132432997226715, + "learning_rate": 0.0006, + "loss": 3.690964698791504, + "step": 3003 + }, + { + "epoch": 41.72695500218436, + "grad_norm": 0.2085159569978714, + "learning_rate": 0.0006, + "loss": 3.6620168685913086, + "step": 3004 + }, + { + "epoch": 41.74093490607252, + "grad_norm": 0.1919657438993454, + "learning_rate": 0.0006, + "loss": 3.67447566986084, + "step": 3005 + }, + { + "epoch": 41.75491480996068, + "grad_norm": 0.20189036428928375, + "learning_rate": 0.0006, + "loss": 3.6434998512268066, + "step": 3006 + }, + { + "epoch": 41.768894713848844, + "grad_norm": 0.23530980944633484, + "learning_rate": 0.0006, + "loss": 3.644280433654785, + "step": 3007 + }, + { + "epoch": 41.782874617737, + "grad_norm": 0.2550027370452881, + "learning_rate": 0.0006, + "loss": 3.6686060428619385, + "step": 3008 + }, + { + "epoch": 41.796854521625164, + "grad_norm": 0.2285512536764145, + "learning_rate": 0.0006, + "loss": 3.7013134956359863, + "step": 3009 + }, + { + "epoch": 41.81083442551333, + "grad_norm": 0.20538675785064697, + "learning_rate": 0.0006, + "loss": 3.6568830013275146, + "step": 3010 + }, + { + "epoch": 41.824814329401484, + "grad_norm": 0.2007976472377777, + "learning_rate": 0.0006, + "loss": 3.680250883102417, + "step": 3011 + }, + { + "epoch": 41.83879423328965, + "grad_norm": 0.20060500502586365, + "learning_rate": 0.0006, + "loss": 3.6565070152282715, + "step": 3012 + }, + { + "epoch": 41.8527741371778, + "grad_norm": 0.21055014431476593, + "learning_rate": 0.0006, + "loss": 3.661667823791504, + "step": 3013 + }, + { + "epoch": 41.86675404106597, + "grad_norm": 0.2201126217842102, + "learning_rate": 0.0006, + "loss": 3.650052070617676, + "step": 3014 + }, + { + "epoch": 41.88073394495413, + "grad_norm": 0.20397843420505524, + "learning_rate": 0.0006, + "loss": 3.6535415649414062, + "step": 3015 + }, + { + "epoch": 41.89471384884229, + "grad_norm": 0.1993463635444641, + "learning_rate": 0.0006, + "loss": 3.665696144104004, + "step": 3016 + }, + { + "epoch": 41.90869375273045, + "grad_norm": 0.20448797941207886, + "learning_rate": 0.0006, + "loss": 3.6448118686676025, + "step": 3017 + }, + { + "epoch": 41.92267365661861, + "grad_norm": 0.2064918726682663, + "learning_rate": 0.0006, + "loss": 3.6881537437438965, + "step": 3018 + }, + { + "epoch": 41.93665356050677, + "grad_norm": 0.20554372668266296, + "learning_rate": 0.0006, + "loss": 3.688559055328369, + "step": 3019 + }, + { + "epoch": 41.95063346439493, + "grad_norm": 0.1862783133983612, + "learning_rate": 0.0006, + "loss": 3.6713812351226807, + "step": 3020 + }, + { + "epoch": 41.964613368283096, + "grad_norm": 0.18139860033988953, + "learning_rate": 0.0006, + "loss": 3.6612548828125, + "step": 3021 + }, + { + "epoch": 41.97859327217125, + "grad_norm": 0.1844220608472824, + "learning_rate": 0.0006, + "loss": 3.641725540161133, + "step": 3022 + }, + { + "epoch": 41.992573176059416, + "grad_norm": 0.1885213702917099, + "learning_rate": 0.0006, + "loss": 3.663257122039795, + "step": 3023 + }, + { + "epoch": 42.0, + "grad_norm": 0.2250746339559555, + "learning_rate": 0.0006, + "loss": 3.6479320526123047, + "step": 3024 + }, + { + "epoch": 42.0, + "eval_loss": 3.993955135345459, + "eval_runtime": 44.4709, + "eval_samples_per_second": 54.912, + "eval_steps_per_second": 3.44, + "step": 3024 + }, + { + "epoch": 42.01397990388816, + "grad_norm": 0.21096517145633698, + "learning_rate": 0.0006, + "loss": 3.6729278564453125, + "step": 3025 + }, + { + "epoch": 42.02795980777632, + "grad_norm": 0.2106277495622635, + "learning_rate": 0.0006, + "loss": 3.629892349243164, + "step": 3026 + }, + { + "epoch": 42.04193971166448, + "grad_norm": 0.2673060894012451, + "learning_rate": 0.0006, + "loss": 3.643604040145874, + "step": 3027 + }, + { + "epoch": 42.05591961555265, + "grad_norm": 0.28180691599845886, + "learning_rate": 0.0006, + "loss": 3.596560478210449, + "step": 3028 + }, + { + "epoch": 42.0698995194408, + "grad_norm": 0.25607243180274963, + "learning_rate": 0.0006, + "loss": 3.597935199737549, + "step": 3029 + }, + { + "epoch": 42.083879423328966, + "grad_norm": 0.22120746970176697, + "learning_rate": 0.0006, + "loss": 3.6219305992126465, + "step": 3030 + }, + { + "epoch": 42.09785932721712, + "grad_norm": 0.2164907306432724, + "learning_rate": 0.0006, + "loss": 3.6220779418945312, + "step": 3031 + }, + { + "epoch": 42.111839231105286, + "grad_norm": 0.23800921440124512, + "learning_rate": 0.0006, + "loss": 3.63372540473938, + "step": 3032 + }, + { + "epoch": 42.12581913499345, + "grad_norm": 0.21812695264816284, + "learning_rate": 0.0006, + "loss": 3.636105537414551, + "step": 3033 + }, + { + "epoch": 42.139799038881605, + "grad_norm": 0.2027447372674942, + "learning_rate": 0.0006, + "loss": 3.6167502403259277, + "step": 3034 + }, + { + "epoch": 42.15377894276977, + "grad_norm": 0.20157714188098907, + "learning_rate": 0.0006, + "loss": 3.6141409873962402, + "step": 3035 + }, + { + "epoch": 42.16775884665793, + "grad_norm": 0.20780996978282928, + "learning_rate": 0.0006, + "loss": 3.6323471069335938, + "step": 3036 + }, + { + "epoch": 42.18173875054609, + "grad_norm": 0.20025081932544708, + "learning_rate": 0.0006, + "loss": 3.625446081161499, + "step": 3037 + }, + { + "epoch": 42.19571865443425, + "grad_norm": 0.20019082725048065, + "learning_rate": 0.0006, + "loss": 3.631418228149414, + "step": 3038 + }, + { + "epoch": 42.20969855832241, + "grad_norm": 0.21194526553153992, + "learning_rate": 0.0006, + "loss": 3.6180832386016846, + "step": 3039 + }, + { + "epoch": 42.22367846221057, + "grad_norm": 0.2016245573759079, + "learning_rate": 0.0006, + "loss": 3.6388602256774902, + "step": 3040 + }, + { + "epoch": 42.237658366098735, + "grad_norm": 0.1892252415418625, + "learning_rate": 0.0006, + "loss": 3.6086854934692383, + "step": 3041 + }, + { + "epoch": 42.25163826998689, + "grad_norm": 0.1878061145544052, + "learning_rate": 0.0006, + "loss": 3.599428176879883, + "step": 3042 + }, + { + "epoch": 42.265618173875055, + "grad_norm": 0.20258742570877075, + "learning_rate": 0.0006, + "loss": 3.6177172660827637, + "step": 3043 + }, + { + "epoch": 42.27959807776322, + "grad_norm": 0.2114444226026535, + "learning_rate": 0.0006, + "loss": 3.641916275024414, + "step": 3044 + }, + { + "epoch": 42.293577981651374, + "grad_norm": 0.19873645901679993, + "learning_rate": 0.0006, + "loss": 3.6585676670074463, + "step": 3045 + }, + { + "epoch": 42.30755788553954, + "grad_norm": 0.20361217856407166, + "learning_rate": 0.0006, + "loss": 3.648475170135498, + "step": 3046 + }, + { + "epoch": 42.3215377894277, + "grad_norm": 0.20227114856243134, + "learning_rate": 0.0006, + "loss": 3.63625431060791, + "step": 3047 + }, + { + "epoch": 42.33551769331586, + "grad_norm": 0.18246233463287354, + "learning_rate": 0.0006, + "loss": 3.6380200386047363, + "step": 3048 + }, + { + "epoch": 42.34949759720402, + "grad_norm": 0.17944976687431335, + "learning_rate": 0.0006, + "loss": 3.6325912475585938, + "step": 3049 + }, + { + "epoch": 42.36347750109218, + "grad_norm": 0.188584566116333, + "learning_rate": 0.0006, + "loss": 3.6418886184692383, + "step": 3050 + }, + { + "epoch": 42.37745740498034, + "grad_norm": 0.1917790323495865, + "learning_rate": 0.0006, + "loss": 3.664421558380127, + "step": 3051 + }, + { + "epoch": 42.391437308868504, + "grad_norm": 0.175637349486351, + "learning_rate": 0.0006, + "loss": 3.641819953918457, + "step": 3052 + }, + { + "epoch": 42.40541721275666, + "grad_norm": 0.18751518428325653, + "learning_rate": 0.0006, + "loss": 3.646697998046875, + "step": 3053 + }, + { + "epoch": 42.419397116644824, + "grad_norm": 0.1805887520313263, + "learning_rate": 0.0006, + "loss": 3.637866735458374, + "step": 3054 + }, + { + "epoch": 42.43337702053299, + "grad_norm": 0.19680845737457275, + "learning_rate": 0.0006, + "loss": 3.602511405944824, + "step": 3055 + }, + { + "epoch": 42.44735692442114, + "grad_norm": 0.20605766773223877, + "learning_rate": 0.0006, + "loss": 3.6472771167755127, + "step": 3056 + }, + { + "epoch": 42.46133682830931, + "grad_norm": 0.18083851039409637, + "learning_rate": 0.0006, + "loss": 3.6672325134277344, + "step": 3057 + }, + { + "epoch": 42.47531673219746, + "grad_norm": 0.19665084779262543, + "learning_rate": 0.0006, + "loss": 3.625300884246826, + "step": 3058 + }, + { + "epoch": 42.489296636085626, + "grad_norm": 0.22506165504455566, + "learning_rate": 0.0006, + "loss": 3.592872142791748, + "step": 3059 + }, + { + "epoch": 42.50327653997379, + "grad_norm": 0.2051578164100647, + "learning_rate": 0.0006, + "loss": 3.6302249431610107, + "step": 3060 + }, + { + "epoch": 42.517256443861946, + "grad_norm": 0.18957172334194183, + "learning_rate": 0.0006, + "loss": 3.6277074813842773, + "step": 3061 + }, + { + "epoch": 42.53123634775011, + "grad_norm": 0.21467208862304688, + "learning_rate": 0.0006, + "loss": 3.6121392250061035, + "step": 3062 + }, + { + "epoch": 42.54521625163827, + "grad_norm": 0.21618402004241943, + "learning_rate": 0.0006, + "loss": 3.664738655090332, + "step": 3063 + }, + { + "epoch": 42.55919615552643, + "grad_norm": 0.2259770780801773, + "learning_rate": 0.0006, + "loss": 3.652042865753174, + "step": 3064 + }, + { + "epoch": 42.57317605941459, + "grad_norm": 0.22667232155799866, + "learning_rate": 0.0006, + "loss": 3.6552934646606445, + "step": 3065 + }, + { + "epoch": 42.58715596330275, + "grad_norm": 0.21405228972434998, + "learning_rate": 0.0006, + "loss": 3.644043445587158, + "step": 3066 + }, + { + "epoch": 42.60113586719091, + "grad_norm": 0.20855450630187988, + "learning_rate": 0.0006, + "loss": 3.6534876823425293, + "step": 3067 + }, + { + "epoch": 42.615115771079076, + "grad_norm": 0.22474415600299835, + "learning_rate": 0.0006, + "loss": 3.656677484512329, + "step": 3068 + }, + { + "epoch": 42.62909567496723, + "grad_norm": 0.23401428759098053, + "learning_rate": 0.0006, + "loss": 3.6788997650146484, + "step": 3069 + }, + { + "epoch": 42.643075578855395, + "grad_norm": 0.21567967534065247, + "learning_rate": 0.0006, + "loss": 3.675379753112793, + "step": 3070 + }, + { + "epoch": 42.65705548274356, + "grad_norm": 0.21704941987991333, + "learning_rate": 0.0006, + "loss": 3.630707263946533, + "step": 3071 + }, + { + "epoch": 42.671035386631715, + "grad_norm": 0.2718963921070099, + "learning_rate": 0.0006, + "loss": 3.6653294563293457, + "step": 3072 + }, + { + "epoch": 42.68501529051988, + "grad_norm": 0.30198901891708374, + "learning_rate": 0.0006, + "loss": 3.6761326789855957, + "step": 3073 + }, + { + "epoch": 42.69899519440804, + "grad_norm": 0.27593618631362915, + "learning_rate": 0.0006, + "loss": 3.6610732078552246, + "step": 3074 + }, + { + "epoch": 42.7129750982962, + "grad_norm": 0.22495242953300476, + "learning_rate": 0.0006, + "loss": 3.656907320022583, + "step": 3075 + }, + { + "epoch": 42.72695500218436, + "grad_norm": 0.19872353971004486, + "learning_rate": 0.0006, + "loss": 3.6611597537994385, + "step": 3076 + }, + { + "epoch": 42.74093490607252, + "grad_norm": 0.21527111530303955, + "learning_rate": 0.0006, + "loss": 3.676821708679199, + "step": 3077 + }, + { + "epoch": 42.75491480996068, + "grad_norm": 0.22314463555812836, + "learning_rate": 0.0006, + "loss": 3.629460334777832, + "step": 3078 + }, + { + "epoch": 42.768894713848844, + "grad_norm": 0.23461024463176727, + "learning_rate": 0.0006, + "loss": 3.665390968322754, + "step": 3079 + }, + { + "epoch": 42.782874617737, + "grad_norm": 0.2582414448261261, + "learning_rate": 0.0006, + "loss": 3.6420979499816895, + "step": 3080 + }, + { + "epoch": 42.796854521625164, + "grad_norm": 0.2505052983760834, + "learning_rate": 0.0006, + "loss": 3.67236328125, + "step": 3081 + }, + { + "epoch": 42.81083442551333, + "grad_norm": 0.22617632150650024, + "learning_rate": 0.0006, + "loss": 3.654897689819336, + "step": 3082 + }, + { + "epoch": 42.824814329401484, + "grad_norm": 0.2340085208415985, + "learning_rate": 0.0006, + "loss": 3.6423635482788086, + "step": 3083 + }, + { + "epoch": 42.83879423328965, + "grad_norm": 0.26765671372413635, + "learning_rate": 0.0006, + "loss": 3.622769832611084, + "step": 3084 + }, + { + "epoch": 42.8527741371778, + "grad_norm": 0.29490381479263306, + "learning_rate": 0.0006, + "loss": 3.656053066253662, + "step": 3085 + }, + { + "epoch": 42.86675404106597, + "grad_norm": 0.29776132106781006, + "learning_rate": 0.0006, + "loss": 3.6454644203186035, + "step": 3086 + }, + { + "epoch": 42.88073394495413, + "grad_norm": 0.23994849622249603, + "learning_rate": 0.0006, + "loss": 3.674665927886963, + "step": 3087 + }, + { + "epoch": 42.89471384884229, + "grad_norm": 0.21456265449523926, + "learning_rate": 0.0006, + "loss": 3.670175790786743, + "step": 3088 + }, + { + "epoch": 42.90869375273045, + "grad_norm": 0.25727778673171997, + "learning_rate": 0.0006, + "loss": 3.6425390243530273, + "step": 3089 + }, + { + "epoch": 42.92267365661861, + "grad_norm": 0.30310627818107605, + "learning_rate": 0.0006, + "loss": 3.68511962890625, + "step": 3090 + }, + { + "epoch": 42.93665356050677, + "grad_norm": 0.2792291045188904, + "learning_rate": 0.0006, + "loss": 3.681732654571533, + "step": 3091 + }, + { + "epoch": 42.95063346439493, + "grad_norm": 0.23614276945590973, + "learning_rate": 0.0006, + "loss": 3.6417222023010254, + "step": 3092 + }, + { + "epoch": 42.964613368283096, + "grad_norm": 0.23602448403835297, + "learning_rate": 0.0006, + "loss": 3.6602869033813477, + "step": 3093 + }, + { + "epoch": 42.97859327217125, + "grad_norm": 0.21968287229537964, + "learning_rate": 0.0006, + "loss": 3.6618118286132812, + "step": 3094 + }, + { + "epoch": 42.992573176059416, + "grad_norm": 0.2177523374557495, + "learning_rate": 0.0006, + "loss": 3.666904926300049, + "step": 3095 + }, + { + "epoch": 43.0, + "grad_norm": 0.23960894346237183, + "learning_rate": 0.0006, + "loss": 3.710965633392334, + "step": 3096 + }, + { + "epoch": 43.0, + "eval_loss": 3.977475166320801, + "eval_runtime": 44.5209, + "eval_samples_per_second": 54.851, + "eval_steps_per_second": 3.437, + "step": 3096 + }, + { + "epoch": 43.01397990388816, + "grad_norm": 0.24180234968662262, + "learning_rate": 0.0006, + "loss": 3.5949223041534424, + "step": 3097 + }, + { + "epoch": 43.02795980777632, + "grad_norm": 0.3331127166748047, + "learning_rate": 0.0006, + "loss": 3.625802755355835, + "step": 3098 + }, + { + "epoch": 43.04193971166448, + "grad_norm": 0.38338130712509155, + "learning_rate": 0.0006, + "loss": 3.6390271186828613, + "step": 3099 + }, + { + "epoch": 43.05591961555265, + "grad_norm": 0.32292598485946655, + "learning_rate": 0.0006, + "loss": 3.630621910095215, + "step": 3100 + }, + { + "epoch": 43.0698995194408, + "grad_norm": 0.24179677665233612, + "learning_rate": 0.0006, + "loss": 3.6124491691589355, + "step": 3101 + }, + { + "epoch": 43.083879423328966, + "grad_norm": 0.2622842788696289, + "learning_rate": 0.0006, + "loss": 3.6207399368286133, + "step": 3102 + }, + { + "epoch": 43.09785932721712, + "grad_norm": 0.264297217130661, + "learning_rate": 0.0006, + "loss": 3.637218475341797, + "step": 3103 + }, + { + "epoch": 43.111839231105286, + "grad_norm": 0.25815117359161377, + "learning_rate": 0.0006, + "loss": 3.614841938018799, + "step": 3104 + }, + { + "epoch": 43.12581913499345, + "grad_norm": 0.2209406942129135, + "learning_rate": 0.0006, + "loss": 3.604722738265991, + "step": 3105 + }, + { + "epoch": 43.139799038881605, + "grad_norm": 0.22333410382270813, + "learning_rate": 0.0006, + "loss": 3.6388449668884277, + "step": 3106 + }, + { + "epoch": 43.15377894276977, + "grad_norm": 0.2194417119026184, + "learning_rate": 0.0006, + "loss": 3.611644744873047, + "step": 3107 + }, + { + "epoch": 43.16775884665793, + "grad_norm": 0.21270349621772766, + "learning_rate": 0.0006, + "loss": 3.6180214881896973, + "step": 3108 + }, + { + "epoch": 43.18173875054609, + "grad_norm": 0.21358032524585724, + "learning_rate": 0.0006, + "loss": 3.646512985229492, + "step": 3109 + }, + { + "epoch": 43.19571865443425, + "grad_norm": 0.2180788666009903, + "learning_rate": 0.0006, + "loss": 3.641981363296509, + "step": 3110 + }, + { + "epoch": 43.20969855832241, + "grad_norm": 0.21979685127735138, + "learning_rate": 0.0006, + "loss": 3.6251654624938965, + "step": 3111 + }, + { + "epoch": 43.22367846221057, + "grad_norm": 0.2072533220052719, + "learning_rate": 0.0006, + "loss": 3.665372371673584, + "step": 3112 + }, + { + "epoch": 43.237658366098735, + "grad_norm": 0.2085742950439453, + "learning_rate": 0.0006, + "loss": 3.647730827331543, + "step": 3113 + }, + { + "epoch": 43.25163826998689, + "grad_norm": 0.1934993416070938, + "learning_rate": 0.0006, + "loss": 3.6296567916870117, + "step": 3114 + }, + { + "epoch": 43.265618173875055, + "grad_norm": 0.1954783797264099, + "learning_rate": 0.0006, + "loss": 3.6412858963012695, + "step": 3115 + }, + { + "epoch": 43.27959807776322, + "grad_norm": 0.1932750642299652, + "learning_rate": 0.0006, + "loss": 3.6246860027313232, + "step": 3116 + }, + { + "epoch": 43.293577981651374, + "grad_norm": 0.19765302538871765, + "learning_rate": 0.0006, + "loss": 3.618922710418701, + "step": 3117 + }, + { + "epoch": 43.30755788553954, + "grad_norm": 0.1987425684928894, + "learning_rate": 0.0006, + "loss": 3.633185863494873, + "step": 3118 + }, + { + "epoch": 43.3215377894277, + "grad_norm": 0.1894739419221878, + "learning_rate": 0.0006, + "loss": 3.595709800720215, + "step": 3119 + }, + { + "epoch": 43.33551769331586, + "grad_norm": 0.19455872476100922, + "learning_rate": 0.0006, + "loss": 3.6309051513671875, + "step": 3120 + }, + { + "epoch": 43.34949759720402, + "grad_norm": 0.21448275446891785, + "learning_rate": 0.0006, + "loss": 3.6425981521606445, + "step": 3121 + }, + { + "epoch": 43.36347750109218, + "grad_norm": 0.24527893960475922, + "learning_rate": 0.0006, + "loss": 3.6497793197631836, + "step": 3122 + }, + { + "epoch": 43.37745740498034, + "grad_norm": 0.253231942653656, + "learning_rate": 0.0006, + "loss": 3.644453525543213, + "step": 3123 + }, + { + "epoch": 43.391437308868504, + "grad_norm": 0.2048978954553604, + "learning_rate": 0.0006, + "loss": 3.5963876247406006, + "step": 3124 + }, + { + "epoch": 43.40541721275666, + "grad_norm": 0.19951528310775757, + "learning_rate": 0.0006, + "loss": 3.6274406909942627, + "step": 3125 + }, + { + "epoch": 43.419397116644824, + "grad_norm": 0.2293875813484192, + "learning_rate": 0.0006, + "loss": 3.6482725143432617, + "step": 3126 + }, + { + "epoch": 43.43337702053299, + "grad_norm": 0.22379456460475922, + "learning_rate": 0.0006, + "loss": 3.6466073989868164, + "step": 3127 + }, + { + "epoch": 43.44735692442114, + "grad_norm": 0.2275441288948059, + "learning_rate": 0.0006, + "loss": 3.6529078483581543, + "step": 3128 + }, + { + "epoch": 43.46133682830931, + "grad_norm": 0.23014242947101593, + "learning_rate": 0.0006, + "loss": 3.6084837913513184, + "step": 3129 + }, + { + "epoch": 43.47531673219746, + "grad_norm": 0.22280924022197723, + "learning_rate": 0.0006, + "loss": 3.611320734024048, + "step": 3130 + }, + { + "epoch": 43.489296636085626, + "grad_norm": 0.19498756527900696, + "learning_rate": 0.0006, + "loss": 3.630185604095459, + "step": 3131 + }, + { + "epoch": 43.50327653997379, + "grad_norm": 0.21357767283916473, + "learning_rate": 0.0006, + "loss": 3.6509933471679688, + "step": 3132 + }, + { + "epoch": 43.517256443861946, + "grad_norm": 0.21775896847248077, + "learning_rate": 0.0006, + "loss": 3.635112762451172, + "step": 3133 + }, + { + "epoch": 43.53123634775011, + "grad_norm": 0.2035629004240036, + "learning_rate": 0.0006, + "loss": 3.658327102661133, + "step": 3134 + }, + { + "epoch": 43.54521625163827, + "grad_norm": 0.20083840191364288, + "learning_rate": 0.0006, + "loss": 3.632441997528076, + "step": 3135 + }, + { + "epoch": 43.55919615552643, + "grad_norm": 0.1922001987695694, + "learning_rate": 0.0006, + "loss": 3.6417734622955322, + "step": 3136 + }, + { + "epoch": 43.57317605941459, + "grad_norm": 0.21049264073371887, + "learning_rate": 0.0006, + "loss": 3.671274423599243, + "step": 3137 + }, + { + "epoch": 43.58715596330275, + "grad_norm": 0.21432001888751984, + "learning_rate": 0.0006, + "loss": 3.6216118335723877, + "step": 3138 + }, + { + "epoch": 43.60113586719091, + "grad_norm": 0.25448811054229736, + "learning_rate": 0.0006, + "loss": 3.658283233642578, + "step": 3139 + }, + { + "epoch": 43.615115771079076, + "grad_norm": 0.24313904345035553, + "learning_rate": 0.0006, + "loss": 3.6447594165802, + "step": 3140 + }, + { + "epoch": 43.62909567496723, + "grad_norm": 0.2332659363746643, + "learning_rate": 0.0006, + "loss": 3.625528573989868, + "step": 3141 + }, + { + "epoch": 43.643075578855395, + "grad_norm": 0.23222137987613678, + "learning_rate": 0.0006, + "loss": 3.6524429321289062, + "step": 3142 + }, + { + "epoch": 43.65705548274356, + "grad_norm": 0.2147051990032196, + "learning_rate": 0.0006, + "loss": 3.6517302989959717, + "step": 3143 + }, + { + "epoch": 43.671035386631715, + "grad_norm": 0.2464994341135025, + "learning_rate": 0.0006, + "loss": 3.654947519302368, + "step": 3144 + }, + { + "epoch": 43.68501529051988, + "grad_norm": 0.2365981936454773, + "learning_rate": 0.0006, + "loss": 3.638695240020752, + "step": 3145 + }, + { + "epoch": 43.69899519440804, + "grad_norm": 0.2325262874364853, + "learning_rate": 0.0006, + "loss": 3.6496055126190186, + "step": 3146 + }, + { + "epoch": 43.7129750982962, + "grad_norm": 0.2196085900068283, + "learning_rate": 0.0006, + "loss": 3.6323978900909424, + "step": 3147 + }, + { + "epoch": 43.72695500218436, + "grad_norm": 0.20404237508773804, + "learning_rate": 0.0006, + "loss": 3.6572763919830322, + "step": 3148 + }, + { + "epoch": 43.74093490607252, + "grad_norm": 0.2363257110118866, + "learning_rate": 0.0006, + "loss": 3.6347732543945312, + "step": 3149 + }, + { + "epoch": 43.75491480996068, + "grad_norm": 0.23671524226665497, + "learning_rate": 0.0006, + "loss": 3.650017023086548, + "step": 3150 + }, + { + "epoch": 43.768894713848844, + "grad_norm": 0.20892305672168732, + "learning_rate": 0.0006, + "loss": 3.638185977935791, + "step": 3151 + }, + { + "epoch": 43.782874617737, + "grad_norm": 0.18670055270195007, + "learning_rate": 0.0006, + "loss": 3.6647696495056152, + "step": 3152 + }, + { + "epoch": 43.796854521625164, + "grad_norm": 0.21818184852600098, + "learning_rate": 0.0006, + "loss": 3.663623332977295, + "step": 3153 + }, + { + "epoch": 43.81083442551333, + "grad_norm": 0.23472464084625244, + "learning_rate": 0.0006, + "loss": 3.650595188140869, + "step": 3154 + }, + { + "epoch": 43.824814329401484, + "grad_norm": 0.2266419678926468, + "learning_rate": 0.0006, + "loss": 3.6362059116363525, + "step": 3155 + }, + { + "epoch": 43.83879423328965, + "grad_norm": 0.2250787913799286, + "learning_rate": 0.0006, + "loss": 3.647970199584961, + "step": 3156 + }, + { + "epoch": 43.8527741371778, + "grad_norm": 0.21493776142597198, + "learning_rate": 0.0006, + "loss": 3.6510982513427734, + "step": 3157 + }, + { + "epoch": 43.86675404106597, + "grad_norm": 0.20783160626888275, + "learning_rate": 0.0006, + "loss": 3.654845714569092, + "step": 3158 + }, + { + "epoch": 43.88073394495413, + "grad_norm": 0.2222554087638855, + "learning_rate": 0.0006, + "loss": 3.6565685272216797, + "step": 3159 + }, + { + "epoch": 43.89471384884229, + "grad_norm": 0.2148049771785736, + "learning_rate": 0.0006, + "loss": 3.630779266357422, + "step": 3160 + }, + { + "epoch": 43.90869375273045, + "grad_norm": 0.2222086787223816, + "learning_rate": 0.0006, + "loss": 3.6312813758850098, + "step": 3161 + }, + { + "epoch": 43.92267365661861, + "grad_norm": 0.24049264192581177, + "learning_rate": 0.0006, + "loss": 3.6185736656188965, + "step": 3162 + }, + { + "epoch": 43.93665356050677, + "grad_norm": 0.2228843867778778, + "learning_rate": 0.0006, + "loss": 3.595583438873291, + "step": 3163 + }, + { + "epoch": 43.95063346439493, + "grad_norm": 0.20714408159255981, + "learning_rate": 0.0006, + "loss": 3.6649322509765625, + "step": 3164 + }, + { + "epoch": 43.964613368283096, + "grad_norm": 0.2048991471529007, + "learning_rate": 0.0006, + "loss": 3.6513710021972656, + "step": 3165 + }, + { + "epoch": 43.97859327217125, + "grad_norm": 0.21874114871025085, + "learning_rate": 0.0006, + "loss": 3.6471524238586426, + "step": 3166 + }, + { + "epoch": 43.992573176059416, + "grad_norm": 0.21309879422187805, + "learning_rate": 0.0006, + "loss": 3.647021770477295, + "step": 3167 + }, + { + "epoch": 44.0, + "grad_norm": 0.23717166483402252, + "learning_rate": 0.0006, + "loss": 3.6903820037841797, + "step": 3168 + }, + { + "epoch": 44.0, + "eval_loss": 3.9844837188720703, + "eval_runtime": 44.29, + "eval_samples_per_second": 55.137, + "eval_steps_per_second": 3.455, + "step": 3168 + }, + { + "epoch": 44.01397990388816, + "grad_norm": 0.21503832936286926, + "learning_rate": 0.0006, + "loss": 3.6054744720458984, + "step": 3169 + }, + { + "epoch": 44.02795980777632, + "grad_norm": 0.2289554923772812, + "learning_rate": 0.0006, + "loss": 3.6560556888580322, + "step": 3170 + }, + { + "epoch": 44.04193971166448, + "grad_norm": 0.24250416457653046, + "learning_rate": 0.0006, + "loss": 3.611820697784424, + "step": 3171 + }, + { + "epoch": 44.05591961555265, + "grad_norm": 0.2526668310165405, + "learning_rate": 0.0006, + "loss": 3.6273183822631836, + "step": 3172 + }, + { + "epoch": 44.0698995194408, + "grad_norm": 0.26702383160591125, + "learning_rate": 0.0006, + "loss": 3.5856852531433105, + "step": 3173 + }, + { + "epoch": 44.083879423328966, + "grad_norm": 0.2715195417404175, + "learning_rate": 0.0006, + "loss": 3.631045341491699, + "step": 3174 + }, + { + "epoch": 44.09785932721712, + "grad_norm": 0.3505614995956421, + "learning_rate": 0.0006, + "loss": 3.628720760345459, + "step": 3175 + }, + { + "epoch": 44.111839231105286, + "grad_norm": 0.2760702967643738, + "learning_rate": 0.0006, + "loss": 3.6283509731292725, + "step": 3176 + }, + { + "epoch": 44.12581913499345, + "grad_norm": 0.21105222404003143, + "learning_rate": 0.0006, + "loss": 3.6495566368103027, + "step": 3177 + }, + { + "epoch": 44.139799038881605, + "grad_norm": 0.2852860987186432, + "learning_rate": 0.0006, + "loss": 3.640768527984619, + "step": 3178 + }, + { + "epoch": 44.15377894276977, + "grad_norm": 0.2941005825996399, + "learning_rate": 0.0006, + "loss": 3.6303114891052246, + "step": 3179 + }, + { + "epoch": 44.16775884665793, + "grad_norm": 0.2792299687862396, + "learning_rate": 0.0006, + "loss": 3.6053574085235596, + "step": 3180 + }, + { + "epoch": 44.18173875054609, + "grad_norm": 0.23168638348579407, + "learning_rate": 0.0006, + "loss": 3.62430477142334, + "step": 3181 + }, + { + "epoch": 44.19571865443425, + "grad_norm": 0.23713921010494232, + "learning_rate": 0.0006, + "loss": 3.601106643676758, + "step": 3182 + }, + { + "epoch": 44.20969855832241, + "grad_norm": 0.23341049253940582, + "learning_rate": 0.0006, + "loss": 3.631762742996216, + "step": 3183 + }, + { + "epoch": 44.22367846221057, + "grad_norm": 0.23094508051872253, + "learning_rate": 0.0006, + "loss": 3.586683750152588, + "step": 3184 + }, + { + "epoch": 44.237658366098735, + "grad_norm": 0.24085712432861328, + "learning_rate": 0.0006, + "loss": 3.6251423358917236, + "step": 3185 + }, + { + "epoch": 44.25163826998689, + "grad_norm": 0.24999955296516418, + "learning_rate": 0.0006, + "loss": 3.6554198265075684, + "step": 3186 + }, + { + "epoch": 44.265618173875055, + "grad_norm": 0.21759621798992157, + "learning_rate": 0.0006, + "loss": 3.6249518394470215, + "step": 3187 + }, + { + "epoch": 44.27959807776322, + "grad_norm": 0.2490139901638031, + "learning_rate": 0.0006, + "loss": 3.6163341999053955, + "step": 3188 + }, + { + "epoch": 44.293577981651374, + "grad_norm": 0.23420892655849457, + "learning_rate": 0.0006, + "loss": 3.615469455718994, + "step": 3189 + }, + { + "epoch": 44.30755788553954, + "grad_norm": 0.2292138934135437, + "learning_rate": 0.0006, + "loss": 3.6085104942321777, + "step": 3190 + }, + { + "epoch": 44.3215377894277, + "grad_norm": 0.22595474123954773, + "learning_rate": 0.0006, + "loss": 3.6317405700683594, + "step": 3191 + }, + { + "epoch": 44.33551769331586, + "grad_norm": 0.22418338060379028, + "learning_rate": 0.0006, + "loss": 3.6287777423858643, + "step": 3192 + }, + { + "epoch": 44.34949759720402, + "grad_norm": 0.2453135848045349, + "learning_rate": 0.0006, + "loss": 3.6228437423706055, + "step": 3193 + }, + { + "epoch": 44.36347750109218, + "grad_norm": 0.2627771198749542, + "learning_rate": 0.0006, + "loss": 3.6581034660339355, + "step": 3194 + }, + { + "epoch": 44.37745740498034, + "grad_norm": 0.24114494025707245, + "learning_rate": 0.0006, + "loss": 3.653505563735962, + "step": 3195 + }, + { + "epoch": 44.391437308868504, + "grad_norm": 0.2103721648454666, + "learning_rate": 0.0006, + "loss": 3.5698580741882324, + "step": 3196 + }, + { + "epoch": 44.40541721275666, + "grad_norm": 0.21172291040420532, + "learning_rate": 0.0006, + "loss": 3.573453426361084, + "step": 3197 + }, + { + "epoch": 44.419397116644824, + "grad_norm": 0.20298106968402863, + "learning_rate": 0.0006, + "loss": 3.6350207328796387, + "step": 3198 + }, + { + "epoch": 44.43337702053299, + "grad_norm": 0.2029009759426117, + "learning_rate": 0.0006, + "loss": 3.6025917530059814, + "step": 3199 + }, + { + "epoch": 44.44735692442114, + "grad_norm": 0.18960542976856232, + "learning_rate": 0.0006, + "loss": 3.625028133392334, + "step": 3200 + }, + { + "epoch": 44.46133682830931, + "grad_norm": 0.20758579671382904, + "learning_rate": 0.0006, + "loss": 3.647071123123169, + "step": 3201 + }, + { + "epoch": 44.47531673219746, + "grad_norm": 0.21896769106388092, + "learning_rate": 0.0006, + "loss": 3.6481196880340576, + "step": 3202 + }, + { + "epoch": 44.489296636085626, + "grad_norm": 0.20817387104034424, + "learning_rate": 0.0006, + "loss": 3.629366874694824, + "step": 3203 + }, + { + "epoch": 44.50327653997379, + "grad_norm": 0.2099488228559494, + "learning_rate": 0.0006, + "loss": 3.6757798194885254, + "step": 3204 + }, + { + "epoch": 44.517256443861946, + "grad_norm": 0.21376627683639526, + "learning_rate": 0.0006, + "loss": 3.638324737548828, + "step": 3205 + }, + { + "epoch": 44.53123634775011, + "grad_norm": 0.19089072942733765, + "learning_rate": 0.0006, + "loss": 3.6497435569763184, + "step": 3206 + }, + { + "epoch": 44.54521625163827, + "grad_norm": 0.20489120483398438, + "learning_rate": 0.0006, + "loss": 3.634019374847412, + "step": 3207 + }, + { + "epoch": 44.55919615552643, + "grad_norm": 0.21991780400276184, + "learning_rate": 0.0006, + "loss": 3.6255834102630615, + "step": 3208 + }, + { + "epoch": 44.57317605941459, + "grad_norm": 0.23417581617832184, + "learning_rate": 0.0006, + "loss": 3.631927728652954, + "step": 3209 + }, + { + "epoch": 44.58715596330275, + "grad_norm": 0.22819049656391144, + "learning_rate": 0.0006, + "loss": 3.640167713165283, + "step": 3210 + }, + { + "epoch": 44.60113586719091, + "grad_norm": 0.21443316340446472, + "learning_rate": 0.0006, + "loss": 3.645709991455078, + "step": 3211 + }, + { + "epoch": 44.615115771079076, + "grad_norm": 0.19252653419971466, + "learning_rate": 0.0006, + "loss": 3.591294288635254, + "step": 3212 + }, + { + "epoch": 44.62909567496723, + "grad_norm": 0.18925397098064423, + "learning_rate": 0.0006, + "loss": 3.6163625717163086, + "step": 3213 + }, + { + "epoch": 44.643075578855395, + "grad_norm": 0.21605387330055237, + "learning_rate": 0.0006, + "loss": 3.6826887130737305, + "step": 3214 + }, + { + "epoch": 44.65705548274356, + "grad_norm": 0.21301978826522827, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 3215 + }, + { + "epoch": 44.671035386631715, + "grad_norm": 0.20065832138061523, + "learning_rate": 0.0006, + "loss": 3.648879289627075, + "step": 3216 + }, + { + "epoch": 44.68501529051988, + "grad_norm": 0.21413499116897583, + "learning_rate": 0.0006, + "loss": 3.6327264308929443, + "step": 3217 + }, + { + "epoch": 44.69899519440804, + "grad_norm": 0.22769849002361298, + "learning_rate": 0.0006, + "loss": 3.6486430168151855, + "step": 3218 + }, + { + "epoch": 44.7129750982962, + "grad_norm": 0.227064847946167, + "learning_rate": 0.0006, + "loss": 3.633342981338501, + "step": 3219 + }, + { + "epoch": 44.72695500218436, + "grad_norm": 0.21335656940937042, + "learning_rate": 0.0006, + "loss": 3.648621082305908, + "step": 3220 + }, + { + "epoch": 44.74093490607252, + "grad_norm": 0.2085563838481903, + "learning_rate": 0.0006, + "loss": 3.647826671600342, + "step": 3221 + }, + { + "epoch": 44.75491480996068, + "grad_norm": 0.19203904271125793, + "learning_rate": 0.0006, + "loss": 3.6296122074127197, + "step": 3222 + }, + { + "epoch": 44.768894713848844, + "grad_norm": 0.1969112604856491, + "learning_rate": 0.0006, + "loss": 3.6477179527282715, + "step": 3223 + }, + { + "epoch": 44.782874617737, + "grad_norm": 0.21630392968654633, + "learning_rate": 0.0006, + "loss": 3.628805637359619, + "step": 3224 + }, + { + "epoch": 44.796854521625164, + "grad_norm": 0.20641647279262543, + "learning_rate": 0.0006, + "loss": 3.650993824005127, + "step": 3225 + }, + { + "epoch": 44.81083442551333, + "grad_norm": 0.1954173892736435, + "learning_rate": 0.0006, + "loss": 3.6362831592559814, + "step": 3226 + }, + { + "epoch": 44.824814329401484, + "grad_norm": 0.20479747653007507, + "learning_rate": 0.0006, + "loss": 3.6467390060424805, + "step": 3227 + }, + { + "epoch": 44.83879423328965, + "grad_norm": 0.20502690970897675, + "learning_rate": 0.0006, + "loss": 3.6260130405426025, + "step": 3228 + }, + { + "epoch": 44.8527741371778, + "grad_norm": 0.20348094403743744, + "learning_rate": 0.0006, + "loss": 3.6836767196655273, + "step": 3229 + }, + { + "epoch": 44.86675404106597, + "grad_norm": 0.18748269975185394, + "learning_rate": 0.0006, + "loss": 3.610104560852051, + "step": 3230 + }, + { + "epoch": 44.88073394495413, + "grad_norm": 0.18822219967842102, + "learning_rate": 0.0006, + "loss": 3.61354398727417, + "step": 3231 + }, + { + "epoch": 44.89471384884229, + "grad_norm": 0.20972031354904175, + "learning_rate": 0.0006, + "loss": 3.644336700439453, + "step": 3232 + }, + { + "epoch": 44.90869375273045, + "grad_norm": 0.2013155072927475, + "learning_rate": 0.0006, + "loss": 3.659287929534912, + "step": 3233 + }, + { + "epoch": 44.92267365661861, + "grad_norm": 0.2056475579738617, + "learning_rate": 0.0006, + "loss": 3.6545677185058594, + "step": 3234 + }, + { + "epoch": 44.93665356050677, + "grad_norm": 0.2104482203722, + "learning_rate": 0.0006, + "loss": 3.6094017028808594, + "step": 3235 + }, + { + "epoch": 44.95063346439493, + "grad_norm": 0.1993035078048706, + "learning_rate": 0.0006, + "loss": 3.6209053993225098, + "step": 3236 + }, + { + "epoch": 44.964613368283096, + "grad_norm": 0.1883099526166916, + "learning_rate": 0.0006, + "loss": 3.6011457443237305, + "step": 3237 + }, + { + "epoch": 44.97859327217125, + "grad_norm": 0.1927674412727356, + "learning_rate": 0.0006, + "loss": 3.606609344482422, + "step": 3238 + }, + { + "epoch": 44.992573176059416, + "grad_norm": 0.1878899335861206, + "learning_rate": 0.0006, + "loss": 3.6701109409332275, + "step": 3239 + }, + { + "epoch": 45.0, + "grad_norm": 0.2237395942211151, + "learning_rate": 0.0006, + "loss": 3.6617302894592285, + "step": 3240 + }, + { + "epoch": 45.0, + "eval_loss": 3.9812564849853516, + "eval_runtime": 44.8635, + "eval_samples_per_second": 54.432, + "eval_steps_per_second": 3.41, + "step": 3240 + }, + { + "epoch": 45.01397990388816, + "grad_norm": 0.21368487179279327, + "learning_rate": 0.0006, + "loss": 3.599107265472412, + "step": 3241 + }, + { + "epoch": 45.02795980777632, + "grad_norm": 0.2234211564064026, + "learning_rate": 0.0006, + "loss": 3.5943236351013184, + "step": 3242 + }, + { + "epoch": 45.04193971166448, + "grad_norm": 0.2222544252872467, + "learning_rate": 0.0006, + "loss": 3.6152291297912598, + "step": 3243 + }, + { + "epoch": 45.05591961555265, + "grad_norm": 0.24686792492866516, + "learning_rate": 0.0006, + "loss": 3.6006085872650146, + "step": 3244 + }, + { + "epoch": 45.0698995194408, + "grad_norm": 0.24634984135627747, + "learning_rate": 0.0006, + "loss": 3.6023471355438232, + "step": 3245 + }, + { + "epoch": 45.083879423328966, + "grad_norm": 0.2150750756263733, + "learning_rate": 0.0006, + "loss": 3.5690598487854004, + "step": 3246 + }, + { + "epoch": 45.09785932721712, + "grad_norm": 0.196721151471138, + "learning_rate": 0.0006, + "loss": 3.592653751373291, + "step": 3247 + }, + { + "epoch": 45.111839231105286, + "grad_norm": 0.21874476969242096, + "learning_rate": 0.0006, + "loss": 3.586243152618408, + "step": 3248 + }, + { + "epoch": 45.12581913499345, + "grad_norm": 0.21021611988544464, + "learning_rate": 0.0006, + "loss": 3.599384307861328, + "step": 3249 + }, + { + "epoch": 45.139799038881605, + "grad_norm": 0.19754183292388916, + "learning_rate": 0.0006, + "loss": 3.623816967010498, + "step": 3250 + }, + { + "epoch": 45.15377894276977, + "grad_norm": 0.21218672394752502, + "learning_rate": 0.0006, + "loss": 3.5901236534118652, + "step": 3251 + }, + { + "epoch": 45.16775884665793, + "grad_norm": 0.23569360375404358, + "learning_rate": 0.0006, + "loss": 3.600029945373535, + "step": 3252 + }, + { + "epoch": 45.18173875054609, + "grad_norm": 0.25429826974868774, + "learning_rate": 0.0006, + "loss": 3.607773542404175, + "step": 3253 + }, + { + "epoch": 45.19571865443425, + "grad_norm": 0.23416805267333984, + "learning_rate": 0.0006, + "loss": 3.63248348236084, + "step": 3254 + }, + { + "epoch": 45.20969855832241, + "grad_norm": 0.20821864902973175, + "learning_rate": 0.0006, + "loss": 3.641927719116211, + "step": 3255 + }, + { + "epoch": 45.22367846221057, + "grad_norm": 0.21849380433559418, + "learning_rate": 0.0006, + "loss": 3.665098190307617, + "step": 3256 + }, + { + "epoch": 45.237658366098735, + "grad_norm": 0.22939491271972656, + "learning_rate": 0.0006, + "loss": 3.6106104850769043, + "step": 3257 + }, + { + "epoch": 45.25163826998689, + "grad_norm": 0.24144501984119415, + "learning_rate": 0.0006, + "loss": 3.5872416496276855, + "step": 3258 + }, + { + "epoch": 45.265618173875055, + "grad_norm": 0.21790480613708496, + "learning_rate": 0.0006, + "loss": 3.6268889904022217, + "step": 3259 + }, + { + "epoch": 45.27959807776322, + "grad_norm": 0.22702264785766602, + "learning_rate": 0.0006, + "loss": 3.5972542762756348, + "step": 3260 + }, + { + "epoch": 45.293577981651374, + "grad_norm": 0.22465437650680542, + "learning_rate": 0.0006, + "loss": 3.6339592933654785, + "step": 3261 + }, + { + "epoch": 45.30755788553954, + "grad_norm": 0.21804460883140564, + "learning_rate": 0.0006, + "loss": 3.6062779426574707, + "step": 3262 + }, + { + "epoch": 45.3215377894277, + "grad_norm": 0.1985616534948349, + "learning_rate": 0.0006, + "loss": 3.629815101623535, + "step": 3263 + }, + { + "epoch": 45.33551769331586, + "grad_norm": 0.22264975309371948, + "learning_rate": 0.0006, + "loss": 3.631214141845703, + "step": 3264 + }, + { + "epoch": 45.34949759720402, + "grad_norm": 0.22178539633750916, + "learning_rate": 0.0006, + "loss": 3.620854377746582, + "step": 3265 + }, + { + "epoch": 45.36347750109218, + "grad_norm": 0.22392240166664124, + "learning_rate": 0.0006, + "loss": 3.6611738204956055, + "step": 3266 + }, + { + "epoch": 45.37745740498034, + "grad_norm": 0.2178916484117508, + "learning_rate": 0.0006, + "loss": 3.639893054962158, + "step": 3267 + }, + { + "epoch": 45.391437308868504, + "grad_norm": 0.2173885703086853, + "learning_rate": 0.0006, + "loss": 3.611750364303589, + "step": 3268 + }, + { + "epoch": 45.40541721275666, + "grad_norm": 0.2107069045305252, + "learning_rate": 0.0006, + "loss": 3.595181465148926, + "step": 3269 + }, + { + "epoch": 45.419397116644824, + "grad_norm": 0.19623015820980072, + "learning_rate": 0.0006, + "loss": 3.6096351146698, + "step": 3270 + }, + { + "epoch": 45.43337702053299, + "grad_norm": 0.23091304302215576, + "learning_rate": 0.0006, + "loss": 3.603667974472046, + "step": 3271 + }, + { + "epoch": 45.44735692442114, + "grad_norm": 0.22909007966518402, + "learning_rate": 0.0006, + "loss": 3.62846040725708, + "step": 3272 + }, + { + "epoch": 45.46133682830931, + "grad_norm": 0.2104928195476532, + "learning_rate": 0.0006, + "loss": 3.6543164253234863, + "step": 3273 + }, + { + "epoch": 45.47531673219746, + "grad_norm": 0.22994203865528107, + "learning_rate": 0.0006, + "loss": 3.621878147125244, + "step": 3274 + }, + { + "epoch": 45.489296636085626, + "grad_norm": 0.21652749180793762, + "learning_rate": 0.0006, + "loss": 3.6095705032348633, + "step": 3275 + }, + { + "epoch": 45.50327653997379, + "grad_norm": 0.20125073194503784, + "learning_rate": 0.0006, + "loss": 3.6213903427124023, + "step": 3276 + }, + { + "epoch": 45.517256443861946, + "grad_norm": 0.19995734095573425, + "learning_rate": 0.0006, + "loss": 3.6526503562927246, + "step": 3277 + }, + { + "epoch": 45.53123634775011, + "grad_norm": 0.2071387618780136, + "learning_rate": 0.0006, + "loss": 3.626208782196045, + "step": 3278 + }, + { + "epoch": 45.54521625163827, + "grad_norm": 0.222015842795372, + "learning_rate": 0.0006, + "loss": 3.61144757270813, + "step": 3279 + }, + { + "epoch": 45.55919615552643, + "grad_norm": 0.20780639350414276, + "learning_rate": 0.0006, + "loss": 3.64092755317688, + "step": 3280 + }, + { + "epoch": 45.57317605941459, + "grad_norm": 0.19297364354133606, + "learning_rate": 0.0006, + "loss": 3.6308364868164062, + "step": 3281 + }, + { + "epoch": 45.58715596330275, + "grad_norm": 0.1928786337375641, + "learning_rate": 0.0006, + "loss": 3.6258254051208496, + "step": 3282 + }, + { + "epoch": 45.60113586719091, + "grad_norm": 0.1940007209777832, + "learning_rate": 0.0006, + "loss": 3.622849464416504, + "step": 3283 + }, + { + "epoch": 45.615115771079076, + "grad_norm": 0.19643044471740723, + "learning_rate": 0.0006, + "loss": 3.6461117267608643, + "step": 3284 + }, + { + "epoch": 45.62909567496723, + "grad_norm": 0.19996654987335205, + "learning_rate": 0.0006, + "loss": 3.61572265625, + "step": 3285 + }, + { + "epoch": 45.643075578855395, + "grad_norm": 0.20202603936195374, + "learning_rate": 0.0006, + "loss": 3.610734462738037, + "step": 3286 + }, + { + "epoch": 45.65705548274356, + "grad_norm": 0.19249361753463745, + "learning_rate": 0.0006, + "loss": 3.607048511505127, + "step": 3287 + }, + { + "epoch": 45.671035386631715, + "grad_norm": 0.1894780397415161, + "learning_rate": 0.0006, + "loss": 3.6450905799865723, + "step": 3288 + }, + { + "epoch": 45.68501529051988, + "grad_norm": 0.19901636242866516, + "learning_rate": 0.0006, + "loss": 3.6313018798828125, + "step": 3289 + }, + { + "epoch": 45.69899519440804, + "grad_norm": 0.1875065118074417, + "learning_rate": 0.0006, + "loss": 3.641326427459717, + "step": 3290 + }, + { + "epoch": 45.7129750982962, + "grad_norm": 0.19832095503807068, + "learning_rate": 0.0006, + "loss": 3.6612308025360107, + "step": 3291 + }, + { + "epoch": 45.72695500218436, + "grad_norm": 0.20353806018829346, + "learning_rate": 0.0006, + "loss": 3.623152017593384, + "step": 3292 + }, + { + "epoch": 45.74093490607252, + "grad_norm": 0.1984023153781891, + "learning_rate": 0.0006, + "loss": 3.627358913421631, + "step": 3293 + }, + { + "epoch": 45.75491480996068, + "grad_norm": 0.2002221643924713, + "learning_rate": 0.0006, + "loss": 3.6334757804870605, + "step": 3294 + }, + { + "epoch": 45.768894713848844, + "grad_norm": 0.21099092066287994, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3295 + }, + { + "epoch": 45.782874617737, + "grad_norm": 0.19109416007995605, + "learning_rate": 0.0006, + "loss": 3.62795352935791, + "step": 3296 + }, + { + "epoch": 45.796854521625164, + "grad_norm": 0.18424192070960999, + "learning_rate": 0.0006, + "loss": 3.6151700019836426, + "step": 3297 + }, + { + "epoch": 45.81083442551333, + "grad_norm": 0.20823849737644196, + "learning_rate": 0.0006, + "loss": 3.641907215118408, + "step": 3298 + }, + { + "epoch": 45.824814329401484, + "grad_norm": 0.21407285332679749, + "learning_rate": 0.0006, + "loss": 3.6430726051330566, + "step": 3299 + }, + { + "epoch": 45.83879423328965, + "grad_norm": 0.23493780195713043, + "learning_rate": 0.0006, + "loss": 3.610065460205078, + "step": 3300 + }, + { + "epoch": 45.8527741371778, + "grad_norm": 0.21910642087459564, + "learning_rate": 0.0006, + "loss": 3.630603313446045, + "step": 3301 + }, + { + "epoch": 45.86675404106597, + "grad_norm": 0.1838075965642929, + "learning_rate": 0.0006, + "loss": 3.634315013885498, + "step": 3302 + }, + { + "epoch": 45.88073394495413, + "grad_norm": 0.22131477296352386, + "learning_rate": 0.0006, + "loss": 3.6142020225524902, + "step": 3303 + }, + { + "epoch": 45.89471384884229, + "grad_norm": 0.2497209906578064, + "learning_rate": 0.0006, + "loss": 3.689103126525879, + "step": 3304 + }, + { + "epoch": 45.90869375273045, + "grad_norm": 0.24403175711631775, + "learning_rate": 0.0006, + "loss": 3.6321184635162354, + "step": 3305 + }, + { + "epoch": 45.92267365661861, + "grad_norm": 0.22527103126049042, + "learning_rate": 0.0006, + "loss": 3.6486921310424805, + "step": 3306 + }, + { + "epoch": 45.93665356050677, + "grad_norm": 0.20127955079078674, + "learning_rate": 0.0006, + "loss": 3.6109299659729004, + "step": 3307 + }, + { + "epoch": 45.95063346439493, + "grad_norm": 0.18997317552566528, + "learning_rate": 0.0006, + "loss": 3.6157617568969727, + "step": 3308 + }, + { + "epoch": 45.964613368283096, + "grad_norm": 0.19921870529651642, + "learning_rate": 0.0006, + "loss": 3.691776990890503, + "step": 3309 + }, + { + "epoch": 45.97859327217125, + "grad_norm": 0.2124646008014679, + "learning_rate": 0.0006, + "loss": 3.61795711517334, + "step": 3310 + }, + { + "epoch": 45.992573176059416, + "grad_norm": 0.20002500712871552, + "learning_rate": 0.0006, + "loss": 3.6266353130340576, + "step": 3311 + }, + { + "epoch": 46.0, + "grad_norm": 0.22992220520973206, + "learning_rate": 0.0006, + "loss": 3.647242784500122, + "step": 3312 + }, + { + "epoch": 46.0, + "eval_loss": 3.9855220317840576, + "eval_runtime": 44.9108, + "eval_samples_per_second": 54.374, + "eval_steps_per_second": 3.407, + "step": 3312 + }, + { + "epoch": 46.01397990388816, + "grad_norm": 0.1976146101951599, + "learning_rate": 0.0006, + "loss": 3.5675041675567627, + "step": 3313 + }, + { + "epoch": 46.02795980777632, + "grad_norm": 0.2238360494375229, + "learning_rate": 0.0006, + "loss": 3.6077466011047363, + "step": 3314 + }, + { + "epoch": 46.04193971166448, + "grad_norm": 0.288669228553772, + "learning_rate": 0.0006, + "loss": 3.589958667755127, + "step": 3315 + }, + { + "epoch": 46.05591961555265, + "grad_norm": 0.30626827478408813, + "learning_rate": 0.0006, + "loss": 3.604401111602783, + "step": 3316 + }, + { + "epoch": 46.0698995194408, + "grad_norm": 0.2721095681190491, + "learning_rate": 0.0006, + "loss": 3.620197296142578, + "step": 3317 + }, + { + "epoch": 46.083879423328966, + "grad_norm": 0.2152107059955597, + "learning_rate": 0.0006, + "loss": 3.607327938079834, + "step": 3318 + }, + { + "epoch": 46.09785932721712, + "grad_norm": 0.2205267995595932, + "learning_rate": 0.0006, + "loss": 3.6020898818969727, + "step": 3319 + }, + { + "epoch": 46.111839231105286, + "grad_norm": 0.25419551134109497, + "learning_rate": 0.0006, + "loss": 3.59277606010437, + "step": 3320 + }, + { + "epoch": 46.12581913499345, + "grad_norm": 0.2379811704158783, + "learning_rate": 0.0006, + "loss": 3.560422897338867, + "step": 3321 + }, + { + "epoch": 46.139799038881605, + "grad_norm": 0.20928747951984406, + "learning_rate": 0.0006, + "loss": 3.6373965740203857, + "step": 3322 + }, + { + "epoch": 46.15377894276977, + "grad_norm": 0.21654292941093445, + "learning_rate": 0.0006, + "loss": 3.620784282684326, + "step": 3323 + }, + { + "epoch": 46.16775884665793, + "grad_norm": 0.22994576394557953, + "learning_rate": 0.0006, + "loss": 3.589960813522339, + "step": 3324 + }, + { + "epoch": 46.18173875054609, + "grad_norm": 0.24989335238933563, + "learning_rate": 0.0006, + "loss": 3.599091053009033, + "step": 3325 + }, + { + "epoch": 46.19571865443425, + "grad_norm": 0.27068355679512024, + "learning_rate": 0.0006, + "loss": 3.5933146476745605, + "step": 3326 + }, + { + "epoch": 46.20969855832241, + "grad_norm": 0.2581503391265869, + "learning_rate": 0.0006, + "loss": 3.5935447216033936, + "step": 3327 + }, + { + "epoch": 46.22367846221057, + "grad_norm": 0.23368583619594574, + "learning_rate": 0.0006, + "loss": 3.6120412349700928, + "step": 3328 + }, + { + "epoch": 46.237658366098735, + "grad_norm": 0.21808452904224396, + "learning_rate": 0.0006, + "loss": 3.6155190467834473, + "step": 3329 + }, + { + "epoch": 46.25163826998689, + "grad_norm": 0.2152830809354782, + "learning_rate": 0.0006, + "loss": 3.6039974689483643, + "step": 3330 + }, + { + "epoch": 46.265618173875055, + "grad_norm": 0.20902983844280243, + "learning_rate": 0.0006, + "loss": 3.586416721343994, + "step": 3331 + }, + { + "epoch": 46.27959807776322, + "grad_norm": 0.21693682670593262, + "learning_rate": 0.0006, + "loss": 3.601595401763916, + "step": 3332 + }, + { + "epoch": 46.293577981651374, + "grad_norm": 0.21157346665859222, + "learning_rate": 0.0006, + "loss": 3.619825601577759, + "step": 3333 + }, + { + "epoch": 46.30755788553954, + "grad_norm": 0.19628529250621796, + "learning_rate": 0.0006, + "loss": 3.5845298767089844, + "step": 3334 + }, + { + "epoch": 46.3215377894277, + "grad_norm": 0.19599373638629913, + "learning_rate": 0.0006, + "loss": 3.614483594894409, + "step": 3335 + }, + { + "epoch": 46.33551769331586, + "grad_norm": 0.21777382493019104, + "learning_rate": 0.0006, + "loss": 3.5865678787231445, + "step": 3336 + }, + { + "epoch": 46.34949759720402, + "grad_norm": 0.24697323143482208, + "learning_rate": 0.0006, + "loss": 3.6168298721313477, + "step": 3337 + }, + { + "epoch": 46.36347750109218, + "grad_norm": 0.29521632194519043, + "learning_rate": 0.0006, + "loss": 3.627875804901123, + "step": 3338 + }, + { + "epoch": 46.37745740498034, + "grad_norm": 0.2548002004623413, + "learning_rate": 0.0006, + "loss": 3.6286001205444336, + "step": 3339 + }, + { + "epoch": 46.391437308868504, + "grad_norm": 0.20501002669334412, + "learning_rate": 0.0006, + "loss": 3.625035524368286, + "step": 3340 + }, + { + "epoch": 46.40541721275666, + "grad_norm": 0.21849584579467773, + "learning_rate": 0.0006, + "loss": 3.621872901916504, + "step": 3341 + }, + { + "epoch": 46.419397116644824, + "grad_norm": 0.22302033007144928, + "learning_rate": 0.0006, + "loss": 3.6088266372680664, + "step": 3342 + }, + { + "epoch": 46.43337702053299, + "grad_norm": 0.21138787269592285, + "learning_rate": 0.0006, + "loss": 3.6211094856262207, + "step": 3343 + }, + { + "epoch": 46.44735692442114, + "grad_norm": 0.22372713685035706, + "learning_rate": 0.0006, + "loss": 3.5799427032470703, + "step": 3344 + }, + { + "epoch": 46.46133682830931, + "grad_norm": 0.22019316256046295, + "learning_rate": 0.0006, + "loss": 3.616044044494629, + "step": 3345 + }, + { + "epoch": 46.47531673219746, + "grad_norm": 0.21947625279426575, + "learning_rate": 0.0006, + "loss": 3.613643169403076, + "step": 3346 + }, + { + "epoch": 46.489296636085626, + "grad_norm": 0.21935684978961945, + "learning_rate": 0.0006, + "loss": 3.6255440711975098, + "step": 3347 + }, + { + "epoch": 46.50327653997379, + "grad_norm": 0.20366479456424713, + "learning_rate": 0.0006, + "loss": 3.613892078399658, + "step": 3348 + }, + { + "epoch": 46.517256443861946, + "grad_norm": 0.21755267679691315, + "learning_rate": 0.0006, + "loss": 3.617886543273926, + "step": 3349 + }, + { + "epoch": 46.53123634775011, + "grad_norm": 0.20023910701274872, + "learning_rate": 0.0006, + "loss": 3.6172280311584473, + "step": 3350 + }, + { + "epoch": 46.54521625163827, + "grad_norm": 0.20375007390975952, + "learning_rate": 0.0006, + "loss": 3.595829486846924, + "step": 3351 + }, + { + "epoch": 46.55919615552643, + "grad_norm": 0.21125391125679016, + "learning_rate": 0.0006, + "loss": 3.632533550262451, + "step": 3352 + }, + { + "epoch": 46.57317605941459, + "grad_norm": 0.2359670102596283, + "learning_rate": 0.0006, + "loss": 3.597811222076416, + "step": 3353 + }, + { + "epoch": 46.58715596330275, + "grad_norm": 0.21696777641773224, + "learning_rate": 0.0006, + "loss": 3.627127170562744, + "step": 3354 + }, + { + "epoch": 46.60113586719091, + "grad_norm": 0.21501564979553223, + "learning_rate": 0.0006, + "loss": 3.630887985229492, + "step": 3355 + }, + { + "epoch": 46.615115771079076, + "grad_norm": 0.21446822583675385, + "learning_rate": 0.0006, + "loss": 3.6075234413146973, + "step": 3356 + }, + { + "epoch": 46.62909567496723, + "grad_norm": 0.21508967876434326, + "learning_rate": 0.0006, + "loss": 3.626603603363037, + "step": 3357 + }, + { + "epoch": 46.643075578855395, + "grad_norm": 0.19969215989112854, + "learning_rate": 0.0006, + "loss": 3.6160733699798584, + "step": 3358 + }, + { + "epoch": 46.65705548274356, + "grad_norm": 0.19982007145881653, + "learning_rate": 0.0006, + "loss": 3.632960319519043, + "step": 3359 + }, + { + "epoch": 46.671035386631715, + "grad_norm": 0.1981230527162552, + "learning_rate": 0.0006, + "loss": 3.608591079711914, + "step": 3360 + }, + { + "epoch": 46.68501529051988, + "grad_norm": 0.19948643445968628, + "learning_rate": 0.0006, + "loss": 3.6100947856903076, + "step": 3361 + }, + { + "epoch": 46.69899519440804, + "grad_norm": 0.18967196345329285, + "learning_rate": 0.0006, + "loss": 3.6203439235687256, + "step": 3362 + }, + { + "epoch": 46.7129750982962, + "grad_norm": 0.20035311579704285, + "learning_rate": 0.0006, + "loss": 3.64508056640625, + "step": 3363 + }, + { + "epoch": 46.72695500218436, + "grad_norm": 0.21049824357032776, + "learning_rate": 0.0006, + "loss": 3.620095729827881, + "step": 3364 + }, + { + "epoch": 46.74093490607252, + "grad_norm": 0.21411995589733124, + "learning_rate": 0.0006, + "loss": 3.650815963745117, + "step": 3365 + }, + { + "epoch": 46.75491480996068, + "grad_norm": 0.18666061758995056, + "learning_rate": 0.0006, + "loss": 3.625699758529663, + "step": 3366 + }, + { + "epoch": 46.768894713848844, + "grad_norm": 0.1927071362733841, + "learning_rate": 0.0006, + "loss": 3.6165151596069336, + "step": 3367 + }, + { + "epoch": 46.782874617737, + "grad_norm": 0.2063879817724228, + "learning_rate": 0.0006, + "loss": 3.6182332038879395, + "step": 3368 + }, + { + "epoch": 46.796854521625164, + "grad_norm": 0.19215327501296997, + "learning_rate": 0.0006, + "loss": 3.607239246368408, + "step": 3369 + }, + { + "epoch": 46.81083442551333, + "grad_norm": 0.2074592262506485, + "learning_rate": 0.0006, + "loss": 3.624856948852539, + "step": 3370 + }, + { + "epoch": 46.824814329401484, + "grad_norm": 0.2184106856584549, + "learning_rate": 0.0006, + "loss": 3.628757953643799, + "step": 3371 + }, + { + "epoch": 46.83879423328965, + "grad_norm": 0.2203136682510376, + "learning_rate": 0.0006, + "loss": 3.625958204269409, + "step": 3372 + }, + { + "epoch": 46.8527741371778, + "grad_norm": 0.21920061111450195, + "learning_rate": 0.0006, + "loss": 3.6060733795166016, + "step": 3373 + }, + { + "epoch": 46.86675404106597, + "grad_norm": 0.2122412472963333, + "learning_rate": 0.0006, + "loss": 3.6126952171325684, + "step": 3374 + }, + { + "epoch": 46.88073394495413, + "grad_norm": 0.1971784383058548, + "learning_rate": 0.0006, + "loss": 3.637129783630371, + "step": 3375 + }, + { + "epoch": 46.89471384884229, + "grad_norm": 0.20824873447418213, + "learning_rate": 0.0006, + "loss": 3.62868070602417, + "step": 3376 + }, + { + "epoch": 46.90869375273045, + "grad_norm": 0.20157678425312042, + "learning_rate": 0.0006, + "loss": 3.6321873664855957, + "step": 3377 + }, + { + "epoch": 46.92267365661861, + "grad_norm": 0.1958925426006317, + "learning_rate": 0.0006, + "loss": 3.6513354778289795, + "step": 3378 + }, + { + "epoch": 46.93665356050677, + "grad_norm": 0.1969553828239441, + "learning_rate": 0.0006, + "loss": 3.6346323490142822, + "step": 3379 + }, + { + "epoch": 46.95063346439493, + "grad_norm": 0.19311924278736115, + "learning_rate": 0.0006, + "loss": 3.6673245429992676, + "step": 3380 + }, + { + "epoch": 46.964613368283096, + "grad_norm": 0.20341862738132477, + "learning_rate": 0.0006, + "loss": 3.680025339126587, + "step": 3381 + }, + { + "epoch": 46.97859327217125, + "grad_norm": 0.20667442679405212, + "learning_rate": 0.0006, + "loss": 3.632290840148926, + "step": 3382 + }, + { + "epoch": 46.992573176059416, + "grad_norm": 0.19141609966754913, + "learning_rate": 0.0006, + "loss": 3.659360647201538, + "step": 3383 + }, + { + "epoch": 47.0, + "grad_norm": 0.20981188118457794, + "learning_rate": 0.0006, + "loss": 3.653548240661621, + "step": 3384 + }, + { + "epoch": 47.0, + "eval_loss": 3.9833984375, + "eval_runtime": 44.4693, + "eval_samples_per_second": 54.914, + "eval_steps_per_second": 3.441, + "step": 3384 + }, + { + "epoch": 47.01397990388816, + "grad_norm": 0.1958128660917282, + "learning_rate": 0.0006, + "loss": 3.5778727531433105, + "step": 3385 + }, + { + "epoch": 47.02795980777632, + "grad_norm": 0.19728390872478485, + "learning_rate": 0.0006, + "loss": 3.5827393531799316, + "step": 3386 + }, + { + "epoch": 47.04193971166448, + "grad_norm": 0.18564026057720184, + "learning_rate": 0.0006, + "loss": 3.573071002960205, + "step": 3387 + }, + { + "epoch": 47.05591961555265, + "grad_norm": 0.20563258230686188, + "learning_rate": 0.0006, + "loss": 3.564330577850342, + "step": 3388 + }, + { + "epoch": 47.0698995194408, + "grad_norm": 0.21382158994674683, + "learning_rate": 0.0006, + "loss": 3.5976946353912354, + "step": 3389 + }, + { + "epoch": 47.083879423328966, + "grad_norm": 0.2383693903684616, + "learning_rate": 0.0006, + "loss": 3.5970897674560547, + "step": 3390 + }, + { + "epoch": 47.09785932721712, + "grad_norm": 0.24709449708461761, + "learning_rate": 0.0006, + "loss": 3.613409996032715, + "step": 3391 + }, + { + "epoch": 47.111839231105286, + "grad_norm": 0.2329784333705902, + "learning_rate": 0.0006, + "loss": 3.571023464202881, + "step": 3392 + }, + { + "epoch": 47.12581913499345, + "grad_norm": 0.2096954584121704, + "learning_rate": 0.0006, + "loss": 3.573697090148926, + "step": 3393 + }, + { + "epoch": 47.139799038881605, + "grad_norm": 0.21630050241947174, + "learning_rate": 0.0006, + "loss": 3.6085095405578613, + "step": 3394 + }, + { + "epoch": 47.15377894276977, + "grad_norm": 0.22828878462314606, + "learning_rate": 0.0006, + "loss": 3.605466842651367, + "step": 3395 + }, + { + "epoch": 47.16775884665793, + "grad_norm": 0.24957625567913055, + "learning_rate": 0.0006, + "loss": 3.588324546813965, + "step": 3396 + }, + { + "epoch": 47.18173875054609, + "grad_norm": 0.25446194410324097, + "learning_rate": 0.0006, + "loss": 3.6161458492279053, + "step": 3397 + }, + { + "epoch": 47.19571865443425, + "grad_norm": 0.24938438832759857, + "learning_rate": 0.0006, + "loss": 3.6017847061157227, + "step": 3398 + }, + { + "epoch": 47.20969855832241, + "grad_norm": 0.23318032920360565, + "learning_rate": 0.0006, + "loss": 3.6077046394348145, + "step": 3399 + }, + { + "epoch": 47.22367846221057, + "grad_norm": 0.2179042547941208, + "learning_rate": 0.0006, + "loss": 3.598104953765869, + "step": 3400 + }, + { + "epoch": 47.237658366098735, + "grad_norm": 0.213354229927063, + "learning_rate": 0.0006, + "loss": 3.6328814029693604, + "step": 3401 + }, + { + "epoch": 47.25163826998689, + "grad_norm": 0.23104089498519897, + "learning_rate": 0.0006, + "loss": 3.6161890029907227, + "step": 3402 + }, + { + "epoch": 47.265618173875055, + "grad_norm": 0.22219021618366241, + "learning_rate": 0.0006, + "loss": 3.620314121246338, + "step": 3403 + }, + { + "epoch": 47.27959807776322, + "grad_norm": 0.21618683636188507, + "learning_rate": 0.0006, + "loss": 3.5955371856689453, + "step": 3404 + }, + { + "epoch": 47.293577981651374, + "grad_norm": 0.22280243039131165, + "learning_rate": 0.0006, + "loss": 3.618302345275879, + "step": 3405 + }, + { + "epoch": 47.30755788553954, + "grad_norm": 0.2268427014350891, + "learning_rate": 0.0006, + "loss": 3.6035101413726807, + "step": 3406 + }, + { + "epoch": 47.3215377894277, + "grad_norm": 0.20324429869651794, + "learning_rate": 0.0006, + "loss": 3.612598419189453, + "step": 3407 + }, + { + "epoch": 47.33551769331586, + "grad_norm": 0.19353045523166656, + "learning_rate": 0.0006, + "loss": 3.5951499938964844, + "step": 3408 + }, + { + "epoch": 47.34949759720402, + "grad_norm": 0.19008080661296844, + "learning_rate": 0.0006, + "loss": 3.6177732944488525, + "step": 3409 + }, + { + "epoch": 47.36347750109218, + "grad_norm": 0.19530250132083893, + "learning_rate": 0.0006, + "loss": 3.597903251647949, + "step": 3410 + }, + { + "epoch": 47.37745740498034, + "grad_norm": 0.2083505541086197, + "learning_rate": 0.0006, + "loss": 3.6062350273132324, + "step": 3411 + }, + { + "epoch": 47.391437308868504, + "grad_norm": 0.2241518199443817, + "learning_rate": 0.0006, + "loss": 3.6084704399108887, + "step": 3412 + }, + { + "epoch": 47.40541721275666, + "grad_norm": 0.25763124227523804, + "learning_rate": 0.0006, + "loss": 3.600295066833496, + "step": 3413 + }, + { + "epoch": 47.419397116644824, + "grad_norm": 0.2689114212989807, + "learning_rate": 0.0006, + "loss": 3.648848533630371, + "step": 3414 + }, + { + "epoch": 47.43337702053299, + "grad_norm": 0.30106639862060547, + "learning_rate": 0.0006, + "loss": 3.6248483657836914, + "step": 3415 + }, + { + "epoch": 47.44735692442114, + "grad_norm": 0.31840384006500244, + "learning_rate": 0.0006, + "loss": 3.6256890296936035, + "step": 3416 + }, + { + "epoch": 47.46133682830931, + "grad_norm": 0.2603468894958496, + "learning_rate": 0.0006, + "loss": 3.6225175857543945, + "step": 3417 + }, + { + "epoch": 47.47531673219746, + "grad_norm": 0.33408305048942566, + "learning_rate": 0.0006, + "loss": 3.590303897857666, + "step": 3418 + }, + { + "epoch": 47.489296636085626, + "grad_norm": 0.3677918612957001, + "learning_rate": 0.0006, + "loss": 3.6005120277404785, + "step": 3419 + }, + { + "epoch": 47.50327653997379, + "grad_norm": 0.23077215254306793, + "learning_rate": 0.0006, + "loss": 3.6093883514404297, + "step": 3420 + }, + { + "epoch": 47.517256443861946, + "grad_norm": 0.27272120118141174, + "learning_rate": 0.0006, + "loss": 3.580151081085205, + "step": 3421 + }, + { + "epoch": 47.53123634775011, + "grad_norm": 0.22629371285438538, + "learning_rate": 0.0006, + "loss": 3.6375746726989746, + "step": 3422 + }, + { + "epoch": 47.54521625163827, + "grad_norm": 0.2376468926668167, + "learning_rate": 0.0006, + "loss": 3.6492481231689453, + "step": 3423 + }, + { + "epoch": 47.55919615552643, + "grad_norm": 0.21200433373451233, + "learning_rate": 0.0006, + "loss": 3.6258158683776855, + "step": 3424 + }, + { + "epoch": 47.57317605941459, + "grad_norm": 0.2246236652135849, + "learning_rate": 0.0006, + "loss": 3.6199564933776855, + "step": 3425 + }, + { + "epoch": 47.58715596330275, + "grad_norm": 0.21713437139987946, + "learning_rate": 0.0006, + "loss": 3.638197898864746, + "step": 3426 + }, + { + "epoch": 47.60113586719091, + "grad_norm": 0.1964627057313919, + "learning_rate": 0.0006, + "loss": 3.6334147453308105, + "step": 3427 + }, + { + "epoch": 47.615115771079076, + "grad_norm": 0.21705810725688934, + "learning_rate": 0.0006, + "loss": 3.6298668384552, + "step": 3428 + }, + { + "epoch": 47.62909567496723, + "grad_norm": 0.20376256108283997, + "learning_rate": 0.0006, + "loss": 3.6127166748046875, + "step": 3429 + }, + { + "epoch": 47.643075578855395, + "grad_norm": 0.20046672224998474, + "learning_rate": 0.0006, + "loss": 3.633683681488037, + "step": 3430 + }, + { + "epoch": 47.65705548274356, + "grad_norm": 0.21494409441947937, + "learning_rate": 0.0006, + "loss": 3.635828971862793, + "step": 3431 + }, + { + "epoch": 47.671035386631715, + "grad_norm": 0.24550487101078033, + "learning_rate": 0.0006, + "loss": 3.6056854724884033, + "step": 3432 + }, + { + "epoch": 47.68501529051988, + "grad_norm": 0.24416600167751312, + "learning_rate": 0.0006, + "loss": 3.618785858154297, + "step": 3433 + }, + { + "epoch": 47.69899519440804, + "grad_norm": 0.22872993350028992, + "learning_rate": 0.0006, + "loss": 3.6189026832580566, + "step": 3434 + }, + { + "epoch": 47.7129750982962, + "grad_norm": 0.23609530925750732, + "learning_rate": 0.0006, + "loss": 3.623661518096924, + "step": 3435 + }, + { + "epoch": 47.72695500218436, + "grad_norm": 0.22905564308166504, + "learning_rate": 0.0006, + "loss": 3.6155691146850586, + "step": 3436 + }, + { + "epoch": 47.74093490607252, + "grad_norm": 0.25507304072380066, + "learning_rate": 0.0006, + "loss": 3.5848331451416016, + "step": 3437 + }, + { + "epoch": 47.75491480996068, + "grad_norm": 0.24594344198703766, + "learning_rate": 0.0006, + "loss": 3.588374614715576, + "step": 3438 + }, + { + "epoch": 47.768894713848844, + "grad_norm": 0.23131750524044037, + "learning_rate": 0.0006, + "loss": 3.6164474487304688, + "step": 3439 + }, + { + "epoch": 47.782874617737, + "grad_norm": 0.21967829763889313, + "learning_rate": 0.0006, + "loss": 3.619150161743164, + "step": 3440 + }, + { + "epoch": 47.796854521625164, + "grad_norm": 0.226309135556221, + "learning_rate": 0.0006, + "loss": 3.5946340560913086, + "step": 3441 + }, + { + "epoch": 47.81083442551333, + "grad_norm": 0.23141087591648102, + "learning_rate": 0.0006, + "loss": 3.614711046218872, + "step": 3442 + }, + { + "epoch": 47.824814329401484, + "grad_norm": 0.20917707681655884, + "learning_rate": 0.0006, + "loss": 3.610058307647705, + "step": 3443 + }, + { + "epoch": 47.83879423328965, + "grad_norm": 0.22864583134651184, + "learning_rate": 0.0006, + "loss": 3.6396052837371826, + "step": 3444 + }, + { + "epoch": 47.8527741371778, + "grad_norm": 0.22201144695281982, + "learning_rate": 0.0006, + "loss": 3.6462526321411133, + "step": 3445 + }, + { + "epoch": 47.86675404106597, + "grad_norm": 0.21199125051498413, + "learning_rate": 0.0006, + "loss": 3.6090314388275146, + "step": 3446 + }, + { + "epoch": 47.88073394495413, + "grad_norm": 0.2236194908618927, + "learning_rate": 0.0006, + "loss": 3.6308231353759766, + "step": 3447 + }, + { + "epoch": 47.89471384884229, + "grad_norm": 0.21571075916290283, + "learning_rate": 0.0006, + "loss": 3.5899293422698975, + "step": 3448 + }, + { + "epoch": 47.90869375273045, + "grad_norm": 0.2320997267961502, + "learning_rate": 0.0006, + "loss": 3.6360764503479004, + "step": 3449 + }, + { + "epoch": 47.92267365661861, + "grad_norm": 0.2304147630929947, + "learning_rate": 0.0006, + "loss": 3.61220121383667, + "step": 3450 + }, + { + "epoch": 47.93665356050677, + "grad_norm": 0.2321154624223709, + "learning_rate": 0.0006, + "loss": 3.6104419231414795, + "step": 3451 + }, + { + "epoch": 47.95063346439493, + "grad_norm": 0.20895935595035553, + "learning_rate": 0.0006, + "loss": 3.6372952461242676, + "step": 3452 + }, + { + "epoch": 47.964613368283096, + "grad_norm": 0.19926418364048004, + "learning_rate": 0.0006, + "loss": 3.652947425842285, + "step": 3453 + }, + { + "epoch": 47.97859327217125, + "grad_norm": 0.22443149983882904, + "learning_rate": 0.0006, + "loss": 3.6005635261535645, + "step": 3454 + }, + { + "epoch": 47.992573176059416, + "grad_norm": 0.2361244559288025, + "learning_rate": 0.0006, + "loss": 3.626563549041748, + "step": 3455 + }, + { + "epoch": 48.0, + "grad_norm": 0.2542579174041748, + "learning_rate": 0.0006, + "loss": 3.619098663330078, + "step": 3456 + }, + { + "epoch": 48.0, + "eval_loss": 3.9787564277648926, + "eval_runtime": 44.3429, + "eval_samples_per_second": 55.071, + "eval_steps_per_second": 3.45, + "step": 3456 + }, + { + "epoch": 48.01397990388816, + "grad_norm": 0.21771088242530823, + "learning_rate": 0.0006, + "loss": 3.538780927658081, + "step": 3457 + }, + { + "epoch": 48.02795980777632, + "grad_norm": 0.23467740416526794, + "learning_rate": 0.0006, + "loss": 3.5875978469848633, + "step": 3458 + }, + { + "epoch": 48.04193971166448, + "grad_norm": 0.2527692914009094, + "learning_rate": 0.0006, + "loss": 3.5939159393310547, + "step": 3459 + }, + { + "epoch": 48.05591961555265, + "grad_norm": 0.21477685868740082, + "learning_rate": 0.0006, + "loss": 3.600374698638916, + "step": 3460 + }, + { + "epoch": 48.0698995194408, + "grad_norm": 0.22008976340293884, + "learning_rate": 0.0006, + "loss": 3.6058406829833984, + "step": 3461 + }, + { + "epoch": 48.083879423328966, + "grad_norm": 0.23344817757606506, + "learning_rate": 0.0006, + "loss": 3.5864410400390625, + "step": 3462 + }, + { + "epoch": 48.09785932721712, + "grad_norm": 0.24451610445976257, + "learning_rate": 0.0006, + "loss": 3.5827221870422363, + "step": 3463 + }, + { + "epoch": 48.111839231105286, + "grad_norm": 0.24536925554275513, + "learning_rate": 0.0006, + "loss": 3.566275119781494, + "step": 3464 + }, + { + "epoch": 48.12581913499345, + "grad_norm": 0.24060940742492676, + "learning_rate": 0.0006, + "loss": 3.575841188430786, + "step": 3465 + }, + { + "epoch": 48.139799038881605, + "grad_norm": 0.24829573929309845, + "learning_rate": 0.0006, + "loss": 3.6215152740478516, + "step": 3466 + }, + { + "epoch": 48.15377894276977, + "grad_norm": 0.2651045024394989, + "learning_rate": 0.0006, + "loss": 3.604381561279297, + "step": 3467 + }, + { + "epoch": 48.16775884665793, + "grad_norm": 0.2654518187046051, + "learning_rate": 0.0006, + "loss": 3.5989198684692383, + "step": 3468 + }, + { + "epoch": 48.18173875054609, + "grad_norm": 0.25179797410964966, + "learning_rate": 0.0006, + "loss": 3.596402168273926, + "step": 3469 + }, + { + "epoch": 48.19571865443425, + "grad_norm": 0.24018050730228424, + "learning_rate": 0.0006, + "loss": 3.6376051902770996, + "step": 3470 + }, + { + "epoch": 48.20969855832241, + "grad_norm": 0.22079682350158691, + "learning_rate": 0.0006, + "loss": 3.5990993976593018, + "step": 3471 + }, + { + "epoch": 48.22367846221057, + "grad_norm": 0.23267143964767456, + "learning_rate": 0.0006, + "loss": 3.614759683609009, + "step": 3472 + }, + { + "epoch": 48.237658366098735, + "grad_norm": 0.21822260320186615, + "learning_rate": 0.0006, + "loss": 3.6057262420654297, + "step": 3473 + }, + { + "epoch": 48.25163826998689, + "grad_norm": 0.23391997814178467, + "learning_rate": 0.0006, + "loss": 3.581972599029541, + "step": 3474 + }, + { + "epoch": 48.265618173875055, + "grad_norm": 0.22634121775627136, + "learning_rate": 0.0006, + "loss": 3.592149496078491, + "step": 3475 + }, + { + "epoch": 48.27959807776322, + "grad_norm": 0.2142419070005417, + "learning_rate": 0.0006, + "loss": 3.616722583770752, + "step": 3476 + }, + { + "epoch": 48.293577981651374, + "grad_norm": 0.227144256234169, + "learning_rate": 0.0006, + "loss": 3.6018447875976562, + "step": 3477 + }, + { + "epoch": 48.30755788553954, + "grad_norm": 0.25466978549957275, + "learning_rate": 0.0006, + "loss": 3.5795769691467285, + "step": 3478 + }, + { + "epoch": 48.3215377894277, + "grad_norm": 0.2409234344959259, + "learning_rate": 0.0006, + "loss": 3.5845530033111572, + "step": 3479 + }, + { + "epoch": 48.33551769331586, + "grad_norm": 0.22001305222511292, + "learning_rate": 0.0006, + "loss": 3.5861806869506836, + "step": 3480 + }, + { + "epoch": 48.34949759720402, + "grad_norm": 0.24980100989341736, + "learning_rate": 0.0006, + "loss": 3.6032233238220215, + "step": 3481 + }, + { + "epoch": 48.36347750109218, + "grad_norm": 0.28788816928863525, + "learning_rate": 0.0006, + "loss": 3.5876364707946777, + "step": 3482 + }, + { + "epoch": 48.37745740498034, + "grad_norm": 0.26172295212745667, + "learning_rate": 0.0006, + "loss": 3.5711276531219482, + "step": 3483 + }, + { + "epoch": 48.391437308868504, + "grad_norm": 0.23881542682647705, + "learning_rate": 0.0006, + "loss": 3.57108473777771, + "step": 3484 + }, + { + "epoch": 48.40541721275666, + "grad_norm": 0.22385981678962708, + "learning_rate": 0.0006, + "loss": 3.6197509765625, + "step": 3485 + }, + { + "epoch": 48.419397116644824, + "grad_norm": 0.21007859706878662, + "learning_rate": 0.0006, + "loss": 3.609449625015259, + "step": 3486 + }, + { + "epoch": 48.43337702053299, + "grad_norm": 0.21170279383659363, + "learning_rate": 0.0006, + "loss": 3.5981619358062744, + "step": 3487 + }, + { + "epoch": 48.44735692442114, + "grad_norm": 0.2100721150636673, + "learning_rate": 0.0006, + "loss": 3.606505870819092, + "step": 3488 + }, + { + "epoch": 48.46133682830931, + "grad_norm": 0.20408287644386292, + "learning_rate": 0.0006, + "loss": 3.6033859252929688, + "step": 3489 + }, + { + "epoch": 48.47531673219746, + "grad_norm": 0.20343686640262604, + "learning_rate": 0.0006, + "loss": 3.6249616146087646, + "step": 3490 + }, + { + "epoch": 48.489296636085626, + "grad_norm": 0.20570123195648193, + "learning_rate": 0.0006, + "loss": 3.5700693130493164, + "step": 3491 + }, + { + "epoch": 48.50327653997379, + "grad_norm": 0.2511707544326782, + "learning_rate": 0.0006, + "loss": 3.6432406902313232, + "step": 3492 + }, + { + "epoch": 48.517256443861946, + "grad_norm": 0.265960693359375, + "learning_rate": 0.0006, + "loss": 3.6329426765441895, + "step": 3493 + }, + { + "epoch": 48.53123634775011, + "grad_norm": 0.25830161571502686, + "learning_rate": 0.0006, + "loss": 3.593940258026123, + "step": 3494 + }, + { + "epoch": 48.54521625163827, + "grad_norm": 0.2232893705368042, + "learning_rate": 0.0006, + "loss": 3.623812198638916, + "step": 3495 + }, + { + "epoch": 48.55919615552643, + "grad_norm": 0.20818902552127838, + "learning_rate": 0.0006, + "loss": 3.5982813835144043, + "step": 3496 + }, + { + "epoch": 48.57317605941459, + "grad_norm": 0.2756865918636322, + "learning_rate": 0.0006, + "loss": 3.617436170578003, + "step": 3497 + }, + { + "epoch": 48.58715596330275, + "grad_norm": 0.2361520677804947, + "learning_rate": 0.0006, + "loss": 3.598113536834717, + "step": 3498 + }, + { + "epoch": 48.60113586719091, + "grad_norm": 0.1956835240125656, + "learning_rate": 0.0006, + "loss": 3.581003189086914, + "step": 3499 + }, + { + "epoch": 48.615115771079076, + "grad_norm": 0.2863931953907013, + "learning_rate": 0.0006, + "loss": 3.596768379211426, + "step": 3500 + }, + { + "epoch": 48.62909567496723, + "grad_norm": 0.29865020513534546, + "learning_rate": 0.0006, + "loss": 3.576995372772217, + "step": 3501 + }, + { + "epoch": 48.643075578855395, + "grad_norm": 0.23084872961044312, + "learning_rate": 0.0006, + "loss": 3.6431074142456055, + "step": 3502 + }, + { + "epoch": 48.65705548274356, + "grad_norm": 0.2081640362739563, + "learning_rate": 0.0006, + "loss": 3.6002132892608643, + "step": 3503 + }, + { + "epoch": 48.671035386631715, + "grad_norm": 0.20566335320472717, + "learning_rate": 0.0006, + "loss": 3.62365460395813, + "step": 3504 + }, + { + "epoch": 48.68501529051988, + "grad_norm": 0.2066725790500641, + "learning_rate": 0.0006, + "loss": 3.6063363552093506, + "step": 3505 + }, + { + "epoch": 48.69899519440804, + "grad_norm": 0.19830003380775452, + "learning_rate": 0.0006, + "loss": 3.617750883102417, + "step": 3506 + }, + { + "epoch": 48.7129750982962, + "grad_norm": 0.20409031212329865, + "learning_rate": 0.0006, + "loss": 3.6110005378723145, + "step": 3507 + }, + { + "epoch": 48.72695500218436, + "grad_norm": 0.20836064219474792, + "learning_rate": 0.0006, + "loss": 3.6148147583007812, + "step": 3508 + }, + { + "epoch": 48.74093490607252, + "grad_norm": 0.21660791337490082, + "learning_rate": 0.0006, + "loss": 3.641488790512085, + "step": 3509 + }, + { + "epoch": 48.75491480996068, + "grad_norm": 0.21075023710727692, + "learning_rate": 0.0006, + "loss": 3.6327688694000244, + "step": 3510 + }, + { + "epoch": 48.768894713848844, + "grad_norm": 0.19346074759960175, + "learning_rate": 0.0006, + "loss": 3.6025185585021973, + "step": 3511 + }, + { + "epoch": 48.782874617737, + "grad_norm": 0.20215240120887756, + "learning_rate": 0.0006, + "loss": 3.595707416534424, + "step": 3512 + }, + { + "epoch": 48.796854521625164, + "grad_norm": 0.1913122832775116, + "learning_rate": 0.0006, + "loss": 3.618406295776367, + "step": 3513 + }, + { + "epoch": 48.81083442551333, + "grad_norm": 0.18517033755779266, + "learning_rate": 0.0006, + "loss": 3.6212055683135986, + "step": 3514 + }, + { + "epoch": 48.824814329401484, + "grad_norm": 0.20453064143657684, + "learning_rate": 0.0006, + "loss": 3.5941221714019775, + "step": 3515 + }, + { + "epoch": 48.83879423328965, + "grad_norm": 0.20777031779289246, + "learning_rate": 0.0006, + "loss": 3.630701780319214, + "step": 3516 + }, + { + "epoch": 48.8527741371778, + "grad_norm": 0.23713789880275726, + "learning_rate": 0.0006, + "loss": 3.629256248474121, + "step": 3517 + }, + { + "epoch": 48.86675404106597, + "grad_norm": 0.1945258378982544, + "learning_rate": 0.0006, + "loss": 3.607020854949951, + "step": 3518 + }, + { + "epoch": 48.88073394495413, + "grad_norm": 0.19601863622665405, + "learning_rate": 0.0006, + "loss": 3.6200907230377197, + "step": 3519 + }, + { + "epoch": 48.89471384884229, + "grad_norm": 0.20068836212158203, + "learning_rate": 0.0006, + "loss": 3.58575701713562, + "step": 3520 + }, + { + "epoch": 48.90869375273045, + "grad_norm": 0.21790200471878052, + "learning_rate": 0.0006, + "loss": 3.6451416015625, + "step": 3521 + }, + { + "epoch": 48.92267365661861, + "grad_norm": 0.22265756130218506, + "learning_rate": 0.0006, + "loss": 3.621331214904785, + "step": 3522 + }, + { + "epoch": 48.93665356050677, + "grad_norm": 0.20316730439662933, + "learning_rate": 0.0006, + "loss": 3.614537239074707, + "step": 3523 + }, + { + "epoch": 48.95063346439493, + "grad_norm": 0.20275238156318665, + "learning_rate": 0.0006, + "loss": 3.5913281440734863, + "step": 3524 + }, + { + "epoch": 48.964613368283096, + "grad_norm": 0.20239883661270142, + "learning_rate": 0.0006, + "loss": 3.608638286590576, + "step": 3525 + }, + { + "epoch": 48.97859327217125, + "grad_norm": 0.21154041588306427, + "learning_rate": 0.0006, + "loss": 3.6233115196228027, + "step": 3526 + }, + { + "epoch": 48.992573176059416, + "grad_norm": 0.22368352115154266, + "learning_rate": 0.0006, + "loss": 3.599665880203247, + "step": 3527 + }, + { + "epoch": 49.0, + "grad_norm": 0.2675703763961792, + "learning_rate": 0.0006, + "loss": 3.637458086013794, + "step": 3528 + }, + { + "epoch": 49.0, + "eval_loss": 3.985574245452881, + "eval_runtime": 44.55, + "eval_samples_per_second": 54.815, + "eval_steps_per_second": 3.434, + "step": 3528 + }, + { + "epoch": 49.01397990388816, + "grad_norm": 0.2911863625049591, + "learning_rate": 0.0006, + "loss": 3.606170654296875, + "step": 3529 + }, + { + "epoch": 49.02795980777632, + "grad_norm": 0.26640036702156067, + "learning_rate": 0.0006, + "loss": 3.5662899017333984, + "step": 3530 + }, + { + "epoch": 49.04193971166448, + "grad_norm": 0.23250512778759003, + "learning_rate": 0.0006, + "loss": 3.5928688049316406, + "step": 3531 + }, + { + "epoch": 49.05591961555265, + "grad_norm": 0.2603093385696411, + "learning_rate": 0.0006, + "loss": 3.5702433586120605, + "step": 3532 + }, + { + "epoch": 49.0698995194408, + "grad_norm": 0.2711663246154785, + "learning_rate": 0.0006, + "loss": 3.591977596282959, + "step": 3533 + }, + { + "epoch": 49.083879423328966, + "grad_norm": 0.2536148130893707, + "learning_rate": 0.0006, + "loss": 3.5924272537231445, + "step": 3534 + }, + { + "epoch": 49.09785932721712, + "grad_norm": 0.22995208203792572, + "learning_rate": 0.0006, + "loss": 3.5760092735290527, + "step": 3535 + }, + { + "epoch": 49.111839231105286, + "grad_norm": 0.22327162325382233, + "learning_rate": 0.0006, + "loss": 3.6072137355804443, + "step": 3536 + }, + { + "epoch": 49.12581913499345, + "grad_norm": 0.2256365567445755, + "learning_rate": 0.0006, + "loss": 3.6156117916107178, + "step": 3537 + }, + { + "epoch": 49.139799038881605, + "grad_norm": 0.23647814989089966, + "learning_rate": 0.0006, + "loss": 3.5862512588500977, + "step": 3538 + }, + { + "epoch": 49.15377894276977, + "grad_norm": 0.23442648351192474, + "learning_rate": 0.0006, + "loss": 3.606386184692383, + "step": 3539 + }, + { + "epoch": 49.16775884665793, + "grad_norm": 0.22148385643959045, + "learning_rate": 0.0006, + "loss": 3.5564064979553223, + "step": 3540 + }, + { + "epoch": 49.18173875054609, + "grad_norm": 0.24589644372463226, + "learning_rate": 0.0006, + "loss": 3.5625576972961426, + "step": 3541 + }, + { + "epoch": 49.19571865443425, + "grad_norm": 0.23955261707305908, + "learning_rate": 0.0006, + "loss": 3.617833137512207, + "step": 3542 + }, + { + "epoch": 49.20969855832241, + "grad_norm": 0.2781425416469574, + "learning_rate": 0.0006, + "loss": 3.6153502464294434, + "step": 3543 + }, + { + "epoch": 49.22367846221057, + "grad_norm": 0.2622034549713135, + "learning_rate": 0.0006, + "loss": 3.608530044555664, + "step": 3544 + }, + { + "epoch": 49.237658366098735, + "grad_norm": 0.28407761454582214, + "learning_rate": 0.0006, + "loss": 3.572207450866699, + "step": 3545 + }, + { + "epoch": 49.25163826998689, + "grad_norm": 0.2722281217575073, + "learning_rate": 0.0006, + "loss": 3.591392755508423, + "step": 3546 + }, + { + "epoch": 49.265618173875055, + "grad_norm": 0.20608903467655182, + "learning_rate": 0.0006, + "loss": 3.598421573638916, + "step": 3547 + }, + { + "epoch": 49.27959807776322, + "grad_norm": 0.27233049273490906, + "learning_rate": 0.0006, + "loss": 3.5819201469421387, + "step": 3548 + }, + { + "epoch": 49.293577981651374, + "grad_norm": 0.26182129979133606, + "learning_rate": 0.0006, + "loss": 3.5855109691619873, + "step": 3549 + }, + { + "epoch": 49.30755788553954, + "grad_norm": 0.20255911350250244, + "learning_rate": 0.0006, + "loss": 3.569438934326172, + "step": 3550 + }, + { + "epoch": 49.3215377894277, + "grad_norm": 0.20045310258865356, + "learning_rate": 0.0006, + "loss": 3.5888795852661133, + "step": 3551 + }, + { + "epoch": 49.33551769331586, + "grad_norm": 0.18505392968654633, + "learning_rate": 0.0006, + "loss": 3.565467596054077, + "step": 3552 + }, + { + "epoch": 49.34949759720402, + "grad_norm": 0.2057398110628128, + "learning_rate": 0.0006, + "loss": 3.5850436687469482, + "step": 3553 + }, + { + "epoch": 49.36347750109218, + "grad_norm": 0.20007790625095367, + "learning_rate": 0.0006, + "loss": 3.5963945388793945, + "step": 3554 + }, + { + "epoch": 49.37745740498034, + "grad_norm": 0.179341122508049, + "learning_rate": 0.0006, + "loss": 3.5747077465057373, + "step": 3555 + }, + { + "epoch": 49.391437308868504, + "grad_norm": 0.1978122442960739, + "learning_rate": 0.0006, + "loss": 3.605037212371826, + "step": 3556 + }, + { + "epoch": 49.40541721275666, + "grad_norm": 0.1936761885881424, + "learning_rate": 0.0006, + "loss": 3.6293420791625977, + "step": 3557 + }, + { + "epoch": 49.419397116644824, + "grad_norm": 0.20393748581409454, + "learning_rate": 0.0006, + "loss": 3.5616302490234375, + "step": 3558 + }, + { + "epoch": 49.43337702053299, + "grad_norm": 0.19082997739315033, + "learning_rate": 0.0006, + "loss": 3.605088472366333, + "step": 3559 + }, + { + "epoch": 49.44735692442114, + "grad_norm": 0.19642551243305206, + "learning_rate": 0.0006, + "loss": 3.610870361328125, + "step": 3560 + }, + { + "epoch": 49.46133682830931, + "grad_norm": 0.21815423667430878, + "learning_rate": 0.0006, + "loss": 3.60211181640625, + "step": 3561 + }, + { + "epoch": 49.47531673219746, + "grad_norm": 0.20342762768268585, + "learning_rate": 0.0006, + "loss": 3.597529411315918, + "step": 3562 + }, + { + "epoch": 49.489296636085626, + "grad_norm": 0.19032546877861023, + "learning_rate": 0.0006, + "loss": 3.5728795528411865, + "step": 3563 + }, + { + "epoch": 49.50327653997379, + "grad_norm": 0.18237556517124176, + "learning_rate": 0.0006, + "loss": 3.5983595848083496, + "step": 3564 + }, + { + "epoch": 49.517256443861946, + "grad_norm": 0.20585589110851288, + "learning_rate": 0.0006, + "loss": 3.578320264816284, + "step": 3565 + }, + { + "epoch": 49.53123634775011, + "grad_norm": 0.20158857107162476, + "learning_rate": 0.0006, + "loss": 3.5918798446655273, + "step": 3566 + }, + { + "epoch": 49.54521625163827, + "grad_norm": 0.20195038616657257, + "learning_rate": 0.0006, + "loss": 3.605422258377075, + "step": 3567 + }, + { + "epoch": 49.55919615552643, + "grad_norm": 0.19884084165096283, + "learning_rate": 0.0006, + "loss": 3.5964083671569824, + "step": 3568 + }, + { + "epoch": 49.57317605941459, + "grad_norm": 0.21243083477020264, + "learning_rate": 0.0006, + "loss": 3.5885486602783203, + "step": 3569 + }, + { + "epoch": 49.58715596330275, + "grad_norm": 0.21059481799602509, + "learning_rate": 0.0006, + "loss": 3.572526454925537, + "step": 3570 + }, + { + "epoch": 49.60113586719091, + "grad_norm": 0.20644313097000122, + "learning_rate": 0.0006, + "loss": 3.583679676055908, + "step": 3571 + }, + { + "epoch": 49.615115771079076, + "grad_norm": 0.21343673765659332, + "learning_rate": 0.0006, + "loss": 3.6211650371551514, + "step": 3572 + }, + { + "epoch": 49.62909567496723, + "grad_norm": 0.23395343124866486, + "learning_rate": 0.0006, + "loss": 3.6003336906433105, + "step": 3573 + }, + { + "epoch": 49.643075578855395, + "grad_norm": 0.19978424906730652, + "learning_rate": 0.0006, + "loss": 3.6066763401031494, + "step": 3574 + }, + { + "epoch": 49.65705548274356, + "grad_norm": 0.21529823541641235, + "learning_rate": 0.0006, + "loss": 3.601284980773926, + "step": 3575 + }, + { + "epoch": 49.671035386631715, + "grad_norm": 0.21672746539115906, + "learning_rate": 0.0006, + "loss": 3.6084227561950684, + "step": 3576 + }, + { + "epoch": 49.68501529051988, + "grad_norm": 0.20889638364315033, + "learning_rate": 0.0006, + "loss": 3.591568946838379, + "step": 3577 + }, + { + "epoch": 49.69899519440804, + "grad_norm": 0.1960221230983734, + "learning_rate": 0.0006, + "loss": 3.6180830001831055, + "step": 3578 + }, + { + "epoch": 49.7129750982962, + "grad_norm": 0.19712410867214203, + "learning_rate": 0.0006, + "loss": 3.6197333335876465, + "step": 3579 + }, + { + "epoch": 49.72695500218436, + "grad_norm": 0.20665284991264343, + "learning_rate": 0.0006, + "loss": 3.6251301765441895, + "step": 3580 + }, + { + "epoch": 49.74093490607252, + "grad_norm": 0.21018871665000916, + "learning_rate": 0.0006, + "loss": 3.621973991394043, + "step": 3581 + }, + { + "epoch": 49.75491480996068, + "grad_norm": 0.20777495205402374, + "learning_rate": 0.0006, + "loss": 3.5826358795166016, + "step": 3582 + }, + { + "epoch": 49.768894713848844, + "grad_norm": 0.18880195915699005, + "learning_rate": 0.0006, + "loss": 3.5946998596191406, + "step": 3583 + }, + { + "epoch": 49.782874617737, + "grad_norm": 0.19894644618034363, + "learning_rate": 0.0006, + "loss": 3.5912184715270996, + "step": 3584 + }, + { + "epoch": 49.796854521625164, + "grad_norm": 0.20128944516181946, + "learning_rate": 0.0006, + "loss": 3.6370394229888916, + "step": 3585 + }, + { + "epoch": 49.81083442551333, + "grad_norm": 0.19332024455070496, + "learning_rate": 0.0006, + "loss": 3.619018077850342, + "step": 3586 + }, + { + "epoch": 49.824814329401484, + "grad_norm": 0.19303865730762482, + "learning_rate": 0.0006, + "loss": 3.578667163848877, + "step": 3587 + }, + { + "epoch": 49.83879423328965, + "grad_norm": 0.20154757797718048, + "learning_rate": 0.0006, + "loss": 3.61959171295166, + "step": 3588 + }, + { + "epoch": 49.8527741371778, + "grad_norm": 0.19653639197349548, + "learning_rate": 0.0006, + "loss": 3.6437559127807617, + "step": 3589 + }, + { + "epoch": 49.86675404106597, + "grad_norm": 0.21873407065868378, + "learning_rate": 0.0006, + "loss": 3.6131112575531006, + "step": 3590 + }, + { + "epoch": 49.88073394495413, + "grad_norm": 0.20130383968353271, + "learning_rate": 0.0006, + "loss": 3.624028444290161, + "step": 3591 + }, + { + "epoch": 49.89471384884229, + "grad_norm": 0.20206475257873535, + "learning_rate": 0.0006, + "loss": 3.5997328758239746, + "step": 3592 + }, + { + "epoch": 49.90869375273045, + "grad_norm": 0.20393261313438416, + "learning_rate": 0.0006, + "loss": 3.596066474914551, + "step": 3593 + }, + { + "epoch": 49.92267365661861, + "grad_norm": 0.19703544676303864, + "learning_rate": 0.0006, + "loss": 3.624542713165283, + "step": 3594 + }, + { + "epoch": 49.93665356050677, + "grad_norm": 0.2102314680814743, + "learning_rate": 0.0006, + "loss": 3.6082515716552734, + "step": 3595 + }, + { + "epoch": 49.95063346439493, + "grad_norm": 0.23791316151618958, + "learning_rate": 0.0006, + "loss": 3.6185569763183594, + "step": 3596 + }, + { + "epoch": 49.964613368283096, + "grad_norm": 0.24536125361919403, + "learning_rate": 0.0006, + "loss": 3.599207878112793, + "step": 3597 + }, + { + "epoch": 49.97859327217125, + "grad_norm": 0.23160327970981598, + "learning_rate": 0.0006, + "loss": 3.600921869277954, + "step": 3598 + }, + { + "epoch": 49.992573176059416, + "grad_norm": 0.22740362584590912, + "learning_rate": 0.0006, + "loss": 3.6112914085388184, + "step": 3599 + }, + { + "epoch": 50.0, + "grad_norm": 0.24303272366523743, + "learning_rate": 0.0006, + "loss": 3.6385838985443115, + "step": 3600 + }, + { + "epoch": 50.0, + "eval_loss": 3.9811089038848877, + "eval_runtime": 44.9913, + "eval_samples_per_second": 54.277, + "eval_steps_per_second": 3.401, + "step": 3600 + }, + { + "epoch": 50.01397990388816, + "grad_norm": 0.20118683576583862, + "learning_rate": 0.0006, + "loss": 3.561751127243042, + "step": 3601 + }, + { + "epoch": 50.02795980777632, + "grad_norm": 0.18722538650035858, + "learning_rate": 0.0006, + "loss": 3.5742180347442627, + "step": 3602 + }, + { + "epoch": 50.04193971166448, + "grad_norm": 0.21248385310173035, + "learning_rate": 0.0006, + "loss": 3.5759401321411133, + "step": 3603 + }, + { + "epoch": 50.05591961555265, + "grad_norm": 0.21006572246551514, + "learning_rate": 0.0006, + "loss": 3.5737462043762207, + "step": 3604 + }, + { + "epoch": 50.0698995194408, + "grad_norm": 0.20671233534812927, + "learning_rate": 0.0006, + "loss": 3.548205852508545, + "step": 3605 + }, + { + "epoch": 50.083879423328966, + "grad_norm": 0.20704609155654907, + "learning_rate": 0.0006, + "loss": 3.5862209796905518, + "step": 3606 + }, + { + "epoch": 50.09785932721712, + "grad_norm": 0.20611345767974854, + "learning_rate": 0.0006, + "loss": 3.5696640014648438, + "step": 3607 + }, + { + "epoch": 50.111839231105286, + "grad_norm": 0.20986805856227875, + "learning_rate": 0.0006, + "loss": 3.5755579471588135, + "step": 3608 + }, + { + "epoch": 50.12581913499345, + "grad_norm": 0.21727709472179413, + "learning_rate": 0.0006, + "loss": 3.5967745780944824, + "step": 3609 + }, + { + "epoch": 50.139799038881605, + "grad_norm": 0.21854986250400543, + "learning_rate": 0.0006, + "loss": 3.6115779876708984, + "step": 3610 + }, + { + "epoch": 50.15377894276977, + "grad_norm": 0.22904936969280243, + "learning_rate": 0.0006, + "loss": 3.5639889240264893, + "step": 3611 + }, + { + "epoch": 50.16775884665793, + "grad_norm": 0.23774254322052002, + "learning_rate": 0.0006, + "loss": 3.6023900508880615, + "step": 3612 + }, + { + "epoch": 50.18173875054609, + "grad_norm": 0.21548497676849365, + "learning_rate": 0.0006, + "loss": 3.5722856521606445, + "step": 3613 + }, + { + "epoch": 50.19571865443425, + "grad_norm": 0.20503196120262146, + "learning_rate": 0.0006, + "loss": 3.5899252891540527, + "step": 3614 + }, + { + "epoch": 50.20969855832241, + "grad_norm": 0.22084423899650574, + "learning_rate": 0.0006, + "loss": 3.56020450592041, + "step": 3615 + }, + { + "epoch": 50.22367846221057, + "grad_norm": 0.24276728928089142, + "learning_rate": 0.0006, + "loss": 3.585695743560791, + "step": 3616 + }, + { + "epoch": 50.237658366098735, + "grad_norm": 0.23182106018066406, + "learning_rate": 0.0006, + "loss": 3.580676555633545, + "step": 3617 + }, + { + "epoch": 50.25163826998689, + "grad_norm": 0.2341945767402649, + "learning_rate": 0.0006, + "loss": 3.579713821411133, + "step": 3618 + }, + { + "epoch": 50.265618173875055, + "grad_norm": 0.27971863746643066, + "learning_rate": 0.0006, + "loss": 3.568251371383667, + "step": 3619 + }, + { + "epoch": 50.27959807776322, + "grad_norm": 0.24740517139434814, + "learning_rate": 0.0006, + "loss": 3.5798869132995605, + "step": 3620 + }, + { + "epoch": 50.293577981651374, + "grad_norm": 0.20561005175113678, + "learning_rate": 0.0006, + "loss": 3.5610039234161377, + "step": 3621 + }, + { + "epoch": 50.30755788553954, + "grad_norm": 0.2085379660129547, + "learning_rate": 0.0006, + "loss": 3.5620288848876953, + "step": 3622 + }, + { + "epoch": 50.3215377894277, + "grad_norm": 0.20868757367134094, + "learning_rate": 0.0006, + "loss": 3.6090598106384277, + "step": 3623 + }, + { + "epoch": 50.33551769331586, + "grad_norm": 0.18991491198539734, + "learning_rate": 0.0006, + "loss": 3.55255126953125, + "step": 3624 + }, + { + "epoch": 50.34949759720402, + "grad_norm": 0.24742646515369415, + "learning_rate": 0.0006, + "loss": 3.60585880279541, + "step": 3625 + }, + { + "epoch": 50.36347750109218, + "grad_norm": 0.26971301436424255, + "learning_rate": 0.0006, + "loss": 3.5913054943084717, + "step": 3626 + }, + { + "epoch": 50.37745740498034, + "grad_norm": 0.24294881522655487, + "learning_rate": 0.0006, + "loss": 3.5570878982543945, + "step": 3627 + }, + { + "epoch": 50.391437308868504, + "grad_norm": 0.2194664478302002, + "learning_rate": 0.0006, + "loss": 3.5800397396087646, + "step": 3628 + }, + { + "epoch": 50.40541721275666, + "grad_norm": 0.2148507982492447, + "learning_rate": 0.0006, + "loss": 3.6182782649993896, + "step": 3629 + }, + { + "epoch": 50.419397116644824, + "grad_norm": 0.22235016524791718, + "learning_rate": 0.0006, + "loss": 3.5784103870391846, + "step": 3630 + }, + { + "epoch": 50.43337702053299, + "grad_norm": 0.23176309466362, + "learning_rate": 0.0006, + "loss": 3.559011459350586, + "step": 3631 + }, + { + "epoch": 50.44735692442114, + "grad_norm": 0.2267913520336151, + "learning_rate": 0.0006, + "loss": 3.5854780673980713, + "step": 3632 + }, + { + "epoch": 50.46133682830931, + "grad_norm": 0.22565901279449463, + "learning_rate": 0.0006, + "loss": 3.5891294479370117, + "step": 3633 + }, + { + "epoch": 50.47531673219746, + "grad_norm": 0.23724839091300964, + "learning_rate": 0.0006, + "loss": 3.575702428817749, + "step": 3634 + }, + { + "epoch": 50.489296636085626, + "grad_norm": 0.23679722845554352, + "learning_rate": 0.0006, + "loss": 3.588639259338379, + "step": 3635 + }, + { + "epoch": 50.50327653997379, + "grad_norm": 0.23909232020378113, + "learning_rate": 0.0006, + "loss": 3.5828709602355957, + "step": 3636 + }, + { + "epoch": 50.517256443861946, + "grad_norm": 0.24186119437217712, + "learning_rate": 0.0006, + "loss": 3.596708059310913, + "step": 3637 + }, + { + "epoch": 50.53123634775011, + "grad_norm": 0.2325516790151596, + "learning_rate": 0.0006, + "loss": 3.610769510269165, + "step": 3638 + }, + { + "epoch": 50.54521625163827, + "grad_norm": 0.205137237906456, + "learning_rate": 0.0006, + "loss": 3.612844228744507, + "step": 3639 + }, + { + "epoch": 50.55919615552643, + "grad_norm": 0.20860300958156586, + "learning_rate": 0.0006, + "loss": 3.623669147491455, + "step": 3640 + }, + { + "epoch": 50.57317605941459, + "grad_norm": 0.20029069483280182, + "learning_rate": 0.0006, + "loss": 3.6108334064483643, + "step": 3641 + }, + { + "epoch": 50.58715596330275, + "grad_norm": 0.18841931223869324, + "learning_rate": 0.0006, + "loss": 3.6073007583618164, + "step": 3642 + }, + { + "epoch": 50.60113586719091, + "grad_norm": 0.20113889873027802, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3643 + }, + { + "epoch": 50.615115771079076, + "grad_norm": 0.23595206439495087, + "learning_rate": 0.0006, + "loss": 3.634650707244873, + "step": 3644 + }, + { + "epoch": 50.62909567496723, + "grad_norm": 0.24625661969184875, + "learning_rate": 0.0006, + "loss": 3.593716621398926, + "step": 3645 + }, + { + "epoch": 50.643075578855395, + "grad_norm": 0.2182614505290985, + "learning_rate": 0.0006, + "loss": 3.6006946563720703, + "step": 3646 + }, + { + "epoch": 50.65705548274356, + "grad_norm": 0.20867182314395905, + "learning_rate": 0.0006, + "loss": 3.6249008178710938, + "step": 3647 + }, + { + "epoch": 50.671035386631715, + "grad_norm": 0.20451945066452026, + "learning_rate": 0.0006, + "loss": 3.5870985984802246, + "step": 3648 + }, + { + "epoch": 50.68501529051988, + "grad_norm": 0.19160118699073792, + "learning_rate": 0.0006, + "loss": 3.6104488372802734, + "step": 3649 + }, + { + "epoch": 50.69899519440804, + "grad_norm": 0.18884453177452087, + "learning_rate": 0.0006, + "loss": 3.607893943786621, + "step": 3650 + }, + { + "epoch": 50.7129750982962, + "grad_norm": 0.19570060074329376, + "learning_rate": 0.0006, + "loss": 3.5938732624053955, + "step": 3651 + }, + { + "epoch": 50.72695500218436, + "grad_norm": 0.21978189051151276, + "learning_rate": 0.0006, + "loss": 3.5894908905029297, + "step": 3652 + }, + { + "epoch": 50.74093490607252, + "grad_norm": 0.19930903613567352, + "learning_rate": 0.0006, + "loss": 3.6067557334899902, + "step": 3653 + }, + { + "epoch": 50.75491480996068, + "grad_norm": 0.19450204074382782, + "learning_rate": 0.0006, + "loss": 3.5989646911621094, + "step": 3654 + }, + { + "epoch": 50.768894713848844, + "grad_norm": 0.1925407201051712, + "learning_rate": 0.0006, + "loss": 3.604339599609375, + "step": 3655 + }, + { + "epoch": 50.782874617737, + "grad_norm": 0.19232864677906036, + "learning_rate": 0.0006, + "loss": 3.5789241790771484, + "step": 3656 + }, + { + "epoch": 50.796854521625164, + "grad_norm": 0.1937529742717743, + "learning_rate": 0.0006, + "loss": 3.6060590744018555, + "step": 3657 + }, + { + "epoch": 50.81083442551333, + "grad_norm": 0.19863007962703705, + "learning_rate": 0.0006, + "loss": 3.5944440364837646, + "step": 3658 + }, + { + "epoch": 50.824814329401484, + "grad_norm": 0.18879804015159607, + "learning_rate": 0.0006, + "loss": 3.6017069816589355, + "step": 3659 + }, + { + "epoch": 50.83879423328965, + "grad_norm": 0.20111720263957977, + "learning_rate": 0.0006, + "loss": 3.593327522277832, + "step": 3660 + }, + { + "epoch": 50.8527741371778, + "grad_norm": 0.22593358159065247, + "learning_rate": 0.0006, + "loss": 3.5856096744537354, + "step": 3661 + }, + { + "epoch": 50.86675404106597, + "grad_norm": 0.22624441981315613, + "learning_rate": 0.0006, + "loss": 3.6144661903381348, + "step": 3662 + }, + { + "epoch": 50.88073394495413, + "grad_norm": 0.22052904963493347, + "learning_rate": 0.0006, + "loss": 3.5895116329193115, + "step": 3663 + }, + { + "epoch": 50.89471384884229, + "grad_norm": 0.2248559594154358, + "learning_rate": 0.0006, + "loss": 3.6400208473205566, + "step": 3664 + }, + { + "epoch": 50.90869375273045, + "grad_norm": 0.20209142565727234, + "learning_rate": 0.0006, + "loss": 3.6059279441833496, + "step": 3665 + }, + { + "epoch": 50.92267365661861, + "grad_norm": 0.2075854390859604, + "learning_rate": 0.0006, + "loss": 3.590074062347412, + "step": 3666 + }, + { + "epoch": 50.93665356050677, + "grad_norm": 0.20524698495864868, + "learning_rate": 0.0006, + "loss": 3.600741147994995, + "step": 3667 + }, + { + "epoch": 50.95063346439493, + "grad_norm": 0.1922466903924942, + "learning_rate": 0.0006, + "loss": 3.5984225273132324, + "step": 3668 + }, + { + "epoch": 50.964613368283096, + "grad_norm": 0.18852637708187103, + "learning_rate": 0.0006, + "loss": 3.6204333305358887, + "step": 3669 + }, + { + "epoch": 50.97859327217125, + "grad_norm": 0.22050459682941437, + "learning_rate": 0.0006, + "loss": 3.6371538639068604, + "step": 3670 + }, + { + "epoch": 50.992573176059416, + "grad_norm": 0.21477681398391724, + "learning_rate": 0.0006, + "loss": 3.608738899230957, + "step": 3671 + }, + { + "epoch": 51.0, + "grad_norm": 0.22061094641685486, + "learning_rate": 0.0006, + "loss": 3.6209959983825684, + "step": 3672 + }, + { + "epoch": 51.0, + "eval_loss": 3.9762842655181885, + "eval_runtime": 44.8353, + "eval_samples_per_second": 54.466, + "eval_steps_per_second": 3.412, + "step": 3672 + }, + { + "epoch": 51.01397990388816, + "grad_norm": 0.19009192287921906, + "learning_rate": 0.0006, + "loss": 3.5604426860809326, + "step": 3673 + }, + { + "epoch": 51.02795980777632, + "grad_norm": 0.2217264175415039, + "learning_rate": 0.0006, + "loss": 3.5595664978027344, + "step": 3674 + }, + { + "epoch": 51.04193971166448, + "grad_norm": 0.2747595012187958, + "learning_rate": 0.0006, + "loss": 3.5800085067749023, + "step": 3675 + }, + { + "epoch": 51.05591961555265, + "grad_norm": 0.26963043212890625, + "learning_rate": 0.0006, + "loss": 3.5529065132141113, + "step": 3676 + }, + { + "epoch": 51.0698995194408, + "grad_norm": 0.2304207682609558, + "learning_rate": 0.0006, + "loss": 3.585238456726074, + "step": 3677 + }, + { + "epoch": 51.083879423328966, + "grad_norm": 0.22073867917060852, + "learning_rate": 0.0006, + "loss": 3.542267322540283, + "step": 3678 + }, + { + "epoch": 51.09785932721712, + "grad_norm": 0.22550931572914124, + "learning_rate": 0.0006, + "loss": 3.5693743228912354, + "step": 3679 + }, + { + "epoch": 51.111839231105286, + "grad_norm": 0.2347114384174347, + "learning_rate": 0.0006, + "loss": 3.5830154418945312, + "step": 3680 + }, + { + "epoch": 51.12581913499345, + "grad_norm": 0.24889813363552094, + "learning_rate": 0.0006, + "loss": 3.581010341644287, + "step": 3681 + }, + { + "epoch": 51.139799038881605, + "grad_norm": 0.2401021122932434, + "learning_rate": 0.0006, + "loss": 3.619450092315674, + "step": 3682 + }, + { + "epoch": 51.15377894276977, + "grad_norm": 0.22221142053604126, + "learning_rate": 0.0006, + "loss": 3.573624610900879, + "step": 3683 + }, + { + "epoch": 51.16775884665793, + "grad_norm": 0.2429024577140808, + "learning_rate": 0.0006, + "loss": 3.548610210418701, + "step": 3684 + }, + { + "epoch": 51.18173875054609, + "grad_norm": 0.26470765471458435, + "learning_rate": 0.0006, + "loss": 3.5582218170166016, + "step": 3685 + }, + { + "epoch": 51.19571865443425, + "grad_norm": 0.2632715404033661, + "learning_rate": 0.0006, + "loss": 3.5976979732513428, + "step": 3686 + }, + { + "epoch": 51.20969855832241, + "grad_norm": 0.2567448616027832, + "learning_rate": 0.0006, + "loss": 3.592031478881836, + "step": 3687 + }, + { + "epoch": 51.22367846221057, + "grad_norm": 0.25299885869026184, + "learning_rate": 0.0006, + "loss": 3.579765796661377, + "step": 3688 + }, + { + "epoch": 51.237658366098735, + "grad_norm": 0.22765189409255981, + "learning_rate": 0.0006, + "loss": 3.5677521228790283, + "step": 3689 + }, + { + "epoch": 51.25163826998689, + "grad_norm": 0.23369887471199036, + "learning_rate": 0.0006, + "loss": 3.585879325866699, + "step": 3690 + }, + { + "epoch": 51.265618173875055, + "grad_norm": 0.21358822286128998, + "learning_rate": 0.0006, + "loss": 3.568866729736328, + "step": 3691 + }, + { + "epoch": 51.27959807776322, + "grad_norm": 0.2127659171819687, + "learning_rate": 0.0006, + "loss": 3.614520311355591, + "step": 3692 + }, + { + "epoch": 51.293577981651374, + "grad_norm": 0.22829636931419373, + "learning_rate": 0.0006, + "loss": 3.6004438400268555, + "step": 3693 + }, + { + "epoch": 51.30755788553954, + "grad_norm": 0.223104789853096, + "learning_rate": 0.0006, + "loss": 3.5791001319885254, + "step": 3694 + }, + { + "epoch": 51.3215377894277, + "grad_norm": 0.2084331065416336, + "learning_rate": 0.0006, + "loss": 3.572514295578003, + "step": 3695 + }, + { + "epoch": 51.33551769331586, + "grad_norm": 0.21115142107009888, + "learning_rate": 0.0006, + "loss": 3.5736331939697266, + "step": 3696 + }, + { + "epoch": 51.34949759720402, + "grad_norm": 0.2158546894788742, + "learning_rate": 0.0006, + "loss": 3.587161064147949, + "step": 3697 + }, + { + "epoch": 51.36347750109218, + "grad_norm": 0.2478281408548355, + "learning_rate": 0.0006, + "loss": 3.5879693031311035, + "step": 3698 + }, + { + "epoch": 51.37745740498034, + "grad_norm": 0.25137850642204285, + "learning_rate": 0.0006, + "loss": 3.58297061920166, + "step": 3699 + }, + { + "epoch": 51.391437308868504, + "grad_norm": 0.22961364686489105, + "learning_rate": 0.0006, + "loss": 3.5556459426879883, + "step": 3700 + }, + { + "epoch": 51.40541721275666, + "grad_norm": 0.22561277449131012, + "learning_rate": 0.0006, + "loss": 3.60197114944458, + "step": 3701 + }, + { + "epoch": 51.419397116644824, + "grad_norm": 0.20331767201423645, + "learning_rate": 0.0006, + "loss": 3.5815134048461914, + "step": 3702 + }, + { + "epoch": 51.43337702053299, + "grad_norm": 0.1941518634557724, + "learning_rate": 0.0006, + "loss": 3.6055145263671875, + "step": 3703 + }, + { + "epoch": 51.44735692442114, + "grad_norm": 0.19306789338588715, + "learning_rate": 0.0006, + "loss": 3.6101536750793457, + "step": 3704 + }, + { + "epoch": 51.46133682830931, + "grad_norm": 0.1830628365278244, + "learning_rate": 0.0006, + "loss": 3.5978426933288574, + "step": 3705 + }, + { + "epoch": 51.47531673219746, + "grad_norm": 0.19231490790843964, + "learning_rate": 0.0006, + "loss": 3.54502534866333, + "step": 3706 + }, + { + "epoch": 51.489296636085626, + "grad_norm": 0.19109117984771729, + "learning_rate": 0.0006, + "loss": 3.5957441329956055, + "step": 3707 + }, + { + "epoch": 51.50327653997379, + "grad_norm": 0.2032860815525055, + "learning_rate": 0.0006, + "loss": 3.5626730918884277, + "step": 3708 + }, + { + "epoch": 51.517256443861946, + "grad_norm": 0.19685189425945282, + "learning_rate": 0.0006, + "loss": 3.580399990081787, + "step": 3709 + }, + { + "epoch": 51.53123634775011, + "grad_norm": 0.19273017346858978, + "learning_rate": 0.0006, + "loss": 3.5428152084350586, + "step": 3710 + }, + { + "epoch": 51.54521625163827, + "grad_norm": 0.20198430120944977, + "learning_rate": 0.0006, + "loss": 3.607492446899414, + "step": 3711 + }, + { + "epoch": 51.55919615552643, + "grad_norm": 0.2267402559518814, + "learning_rate": 0.0006, + "loss": 3.580479621887207, + "step": 3712 + }, + { + "epoch": 51.57317605941459, + "grad_norm": 0.2247764617204666, + "learning_rate": 0.0006, + "loss": 3.5921316146850586, + "step": 3713 + }, + { + "epoch": 51.58715596330275, + "grad_norm": 0.23907902836799622, + "learning_rate": 0.0006, + "loss": 3.6014928817749023, + "step": 3714 + }, + { + "epoch": 51.60113586719091, + "grad_norm": 0.25907906889915466, + "learning_rate": 0.0006, + "loss": 3.5900192260742188, + "step": 3715 + }, + { + "epoch": 51.615115771079076, + "grad_norm": 0.26282405853271484, + "learning_rate": 0.0006, + "loss": 3.5727553367614746, + "step": 3716 + }, + { + "epoch": 51.62909567496723, + "grad_norm": 0.2541179060935974, + "learning_rate": 0.0006, + "loss": 3.5835776329040527, + "step": 3717 + }, + { + "epoch": 51.643075578855395, + "grad_norm": 0.23372016847133636, + "learning_rate": 0.0006, + "loss": 3.5902652740478516, + "step": 3718 + }, + { + "epoch": 51.65705548274356, + "grad_norm": 0.22827622294425964, + "learning_rate": 0.0006, + "loss": 3.6048200130462646, + "step": 3719 + }, + { + "epoch": 51.671035386631715, + "grad_norm": 0.21026845276355743, + "learning_rate": 0.0006, + "loss": 3.5587573051452637, + "step": 3720 + }, + { + "epoch": 51.68501529051988, + "grad_norm": 0.23485958576202393, + "learning_rate": 0.0006, + "loss": 3.6212477684020996, + "step": 3721 + }, + { + "epoch": 51.69899519440804, + "grad_norm": 0.2676871120929718, + "learning_rate": 0.0006, + "loss": 3.597837448120117, + "step": 3722 + }, + { + "epoch": 51.7129750982962, + "grad_norm": 0.23661476373672485, + "learning_rate": 0.0006, + "loss": 3.616079330444336, + "step": 3723 + }, + { + "epoch": 51.72695500218436, + "grad_norm": 0.2212267816066742, + "learning_rate": 0.0006, + "loss": 3.6103296279907227, + "step": 3724 + }, + { + "epoch": 51.74093490607252, + "grad_norm": 0.22888682782649994, + "learning_rate": 0.0006, + "loss": 3.6099889278411865, + "step": 3725 + }, + { + "epoch": 51.75491480996068, + "grad_norm": 0.21740387380123138, + "learning_rate": 0.0006, + "loss": 3.5859200954437256, + "step": 3726 + }, + { + "epoch": 51.768894713848844, + "grad_norm": 0.20819106698036194, + "learning_rate": 0.0006, + "loss": 3.5875396728515625, + "step": 3727 + }, + { + "epoch": 51.782874617737, + "grad_norm": 0.21574485301971436, + "learning_rate": 0.0006, + "loss": 3.6203761100769043, + "step": 3728 + }, + { + "epoch": 51.796854521625164, + "grad_norm": 0.21275651454925537, + "learning_rate": 0.0006, + "loss": 3.6066012382507324, + "step": 3729 + }, + { + "epoch": 51.81083442551333, + "grad_norm": 0.2043808251619339, + "learning_rate": 0.0006, + "loss": 3.571417808532715, + "step": 3730 + }, + { + "epoch": 51.824814329401484, + "grad_norm": 0.2082396298646927, + "learning_rate": 0.0006, + "loss": 3.6076579093933105, + "step": 3731 + }, + { + "epoch": 51.83879423328965, + "grad_norm": 0.23331953585147858, + "learning_rate": 0.0006, + "loss": 3.621837615966797, + "step": 3732 + }, + { + "epoch": 51.8527741371778, + "grad_norm": 0.25569960474967957, + "learning_rate": 0.0006, + "loss": 3.602004051208496, + "step": 3733 + }, + { + "epoch": 51.86675404106597, + "grad_norm": 0.230540469288826, + "learning_rate": 0.0006, + "loss": 3.5829110145568848, + "step": 3734 + }, + { + "epoch": 51.88073394495413, + "grad_norm": 0.20307230949401855, + "learning_rate": 0.0006, + "loss": 3.5572190284729004, + "step": 3735 + }, + { + "epoch": 51.89471384884229, + "grad_norm": 0.20902153849601746, + "learning_rate": 0.0006, + "loss": 3.5939853191375732, + "step": 3736 + }, + { + "epoch": 51.90869375273045, + "grad_norm": 0.20433510839939117, + "learning_rate": 0.0006, + "loss": 3.6104702949523926, + "step": 3737 + }, + { + "epoch": 51.92267365661861, + "grad_norm": 0.2285638302564621, + "learning_rate": 0.0006, + "loss": 3.5588834285736084, + "step": 3738 + }, + { + "epoch": 51.93665356050677, + "grad_norm": 0.2388262301683426, + "learning_rate": 0.0006, + "loss": 3.6203103065490723, + "step": 3739 + }, + { + "epoch": 51.95063346439493, + "grad_norm": 0.22572419047355652, + "learning_rate": 0.0006, + "loss": 3.6191892623901367, + "step": 3740 + }, + { + "epoch": 51.964613368283096, + "grad_norm": 0.21060727536678314, + "learning_rate": 0.0006, + "loss": 3.620879650115967, + "step": 3741 + }, + { + "epoch": 51.97859327217125, + "grad_norm": 0.2045326828956604, + "learning_rate": 0.0006, + "loss": 3.5959091186523438, + "step": 3742 + }, + { + "epoch": 51.992573176059416, + "grad_norm": 0.21882471442222595, + "learning_rate": 0.0006, + "loss": 3.6504573822021484, + "step": 3743 + }, + { + "epoch": 52.0, + "grad_norm": 0.24379056692123413, + "learning_rate": 0.0006, + "loss": 3.6293625831604004, + "step": 3744 + }, + { + "epoch": 52.0, + "eval_loss": 3.9772427082061768, + "eval_runtime": 44.248, + "eval_samples_per_second": 55.189, + "eval_steps_per_second": 3.458, + "step": 3744 + }, + { + "epoch": 52.01397990388816, + "grad_norm": 0.19682207703590393, + "learning_rate": 0.0006, + "loss": 3.604281425476074, + "step": 3745 + }, + { + "epoch": 52.02795980777632, + "grad_norm": 0.23003028333187103, + "learning_rate": 0.0006, + "loss": 3.588266372680664, + "step": 3746 + }, + { + "epoch": 52.04193971166448, + "grad_norm": 0.2458166778087616, + "learning_rate": 0.0006, + "loss": 3.59077787399292, + "step": 3747 + }, + { + "epoch": 52.05591961555265, + "grad_norm": 0.23873521387577057, + "learning_rate": 0.0006, + "loss": 3.556537628173828, + "step": 3748 + }, + { + "epoch": 52.0698995194408, + "grad_norm": 0.21737053990364075, + "learning_rate": 0.0006, + "loss": 3.5758891105651855, + "step": 3749 + }, + { + "epoch": 52.083879423328966, + "grad_norm": 0.22239601612091064, + "learning_rate": 0.0006, + "loss": 3.552678346633911, + "step": 3750 + }, + { + "epoch": 52.09785932721712, + "grad_norm": 0.21818044781684875, + "learning_rate": 0.0006, + "loss": 3.577249526977539, + "step": 3751 + }, + { + "epoch": 52.111839231105286, + "grad_norm": 0.24513746798038483, + "learning_rate": 0.0006, + "loss": 3.569178581237793, + "step": 3752 + }, + { + "epoch": 52.12581913499345, + "grad_norm": 0.2801238000392914, + "learning_rate": 0.0006, + "loss": 3.556199073791504, + "step": 3753 + }, + { + "epoch": 52.139799038881605, + "grad_norm": 0.2722291648387909, + "learning_rate": 0.0006, + "loss": 3.5571072101593018, + "step": 3754 + }, + { + "epoch": 52.15377894276977, + "grad_norm": 0.2146541327238083, + "learning_rate": 0.0006, + "loss": 3.5831902027130127, + "step": 3755 + }, + { + "epoch": 52.16775884665793, + "grad_norm": 0.21040776371955872, + "learning_rate": 0.0006, + "loss": 3.6021504402160645, + "step": 3756 + }, + { + "epoch": 52.18173875054609, + "grad_norm": 0.24059702455997467, + "learning_rate": 0.0006, + "loss": 3.57401704788208, + "step": 3757 + }, + { + "epoch": 52.19571865443425, + "grad_norm": 0.25043657422065735, + "learning_rate": 0.0006, + "loss": 3.5776405334472656, + "step": 3758 + }, + { + "epoch": 52.20969855832241, + "grad_norm": 0.24292849004268646, + "learning_rate": 0.0006, + "loss": 3.5602574348449707, + "step": 3759 + }, + { + "epoch": 52.22367846221057, + "grad_norm": 0.2159980833530426, + "learning_rate": 0.0006, + "loss": 3.552079200744629, + "step": 3760 + }, + { + "epoch": 52.237658366098735, + "grad_norm": 0.19305892288684845, + "learning_rate": 0.0006, + "loss": 3.581195831298828, + "step": 3761 + }, + { + "epoch": 52.25163826998689, + "grad_norm": 0.2115706503391266, + "learning_rate": 0.0006, + "loss": 3.5689306259155273, + "step": 3762 + }, + { + "epoch": 52.265618173875055, + "grad_norm": 0.21885409951210022, + "learning_rate": 0.0006, + "loss": 3.5549206733703613, + "step": 3763 + }, + { + "epoch": 52.27959807776322, + "grad_norm": 0.2069413661956787, + "learning_rate": 0.0006, + "loss": 3.5743770599365234, + "step": 3764 + }, + { + "epoch": 52.293577981651374, + "grad_norm": 0.21922551095485687, + "learning_rate": 0.0006, + "loss": 3.5780110359191895, + "step": 3765 + }, + { + "epoch": 52.30755788553954, + "grad_norm": 0.21675541996955872, + "learning_rate": 0.0006, + "loss": 3.575730800628662, + "step": 3766 + }, + { + "epoch": 52.3215377894277, + "grad_norm": 0.21250510215759277, + "learning_rate": 0.0006, + "loss": 3.546060085296631, + "step": 3767 + }, + { + "epoch": 52.33551769331586, + "grad_norm": 0.23665618896484375, + "learning_rate": 0.0006, + "loss": 3.5887606143951416, + "step": 3768 + }, + { + "epoch": 52.34949759720402, + "grad_norm": 0.2525961399078369, + "learning_rate": 0.0006, + "loss": 3.5885281562805176, + "step": 3769 + }, + { + "epoch": 52.36347750109218, + "grad_norm": 0.26285895705223083, + "learning_rate": 0.0006, + "loss": 3.5880684852600098, + "step": 3770 + }, + { + "epoch": 52.37745740498034, + "grad_norm": 0.24714398384094238, + "learning_rate": 0.0006, + "loss": 3.548165798187256, + "step": 3771 + }, + { + "epoch": 52.391437308868504, + "grad_norm": 0.2234657257795334, + "learning_rate": 0.0006, + "loss": 3.56547212600708, + "step": 3772 + }, + { + "epoch": 52.40541721275666, + "grad_norm": 0.20636901259422302, + "learning_rate": 0.0006, + "loss": 3.5702133178710938, + "step": 3773 + }, + { + "epoch": 52.419397116644824, + "grad_norm": 0.20656965672969818, + "learning_rate": 0.0006, + "loss": 3.614602565765381, + "step": 3774 + }, + { + "epoch": 52.43337702053299, + "grad_norm": 0.20018167793750763, + "learning_rate": 0.0006, + "loss": 3.6063036918640137, + "step": 3775 + }, + { + "epoch": 52.44735692442114, + "grad_norm": 0.21859782934188843, + "learning_rate": 0.0006, + "loss": 3.5728869438171387, + "step": 3776 + }, + { + "epoch": 52.46133682830931, + "grad_norm": 0.21622174978256226, + "learning_rate": 0.0006, + "loss": 3.5657505989074707, + "step": 3777 + }, + { + "epoch": 52.47531673219746, + "grad_norm": 0.19779632985591888, + "learning_rate": 0.0006, + "loss": 3.5841145515441895, + "step": 3778 + }, + { + "epoch": 52.489296636085626, + "grad_norm": 0.21635952591896057, + "learning_rate": 0.0006, + "loss": 3.582096576690674, + "step": 3779 + }, + { + "epoch": 52.50327653997379, + "grad_norm": 0.21348397433757782, + "learning_rate": 0.0006, + "loss": 3.5654468536376953, + "step": 3780 + }, + { + "epoch": 52.517256443861946, + "grad_norm": 0.19572246074676514, + "learning_rate": 0.0006, + "loss": 3.5806241035461426, + "step": 3781 + }, + { + "epoch": 52.53123634775011, + "grad_norm": 0.1887553185224533, + "learning_rate": 0.0006, + "loss": 3.5752944946289062, + "step": 3782 + }, + { + "epoch": 52.54521625163827, + "grad_norm": 0.2192932814359665, + "learning_rate": 0.0006, + "loss": 3.5846266746520996, + "step": 3783 + }, + { + "epoch": 52.55919615552643, + "grad_norm": 0.23833444714546204, + "learning_rate": 0.0006, + "loss": 3.563093900680542, + "step": 3784 + }, + { + "epoch": 52.57317605941459, + "grad_norm": 0.26471760869026184, + "learning_rate": 0.0006, + "loss": 3.5582051277160645, + "step": 3785 + }, + { + "epoch": 52.58715596330275, + "grad_norm": 0.2767478823661804, + "learning_rate": 0.0006, + "loss": 3.5650997161865234, + "step": 3786 + }, + { + "epoch": 52.60113586719091, + "grad_norm": 0.26556241512298584, + "learning_rate": 0.0006, + "loss": 3.5944058895111084, + "step": 3787 + }, + { + "epoch": 52.615115771079076, + "grad_norm": 0.2733243405818939, + "learning_rate": 0.0006, + "loss": 3.5781195163726807, + "step": 3788 + }, + { + "epoch": 52.62909567496723, + "grad_norm": 0.24836041033267975, + "learning_rate": 0.0006, + "loss": 3.582634687423706, + "step": 3789 + }, + { + "epoch": 52.643075578855395, + "grad_norm": 0.2119593471288681, + "learning_rate": 0.0006, + "loss": 3.5851502418518066, + "step": 3790 + }, + { + "epoch": 52.65705548274356, + "grad_norm": 0.23237599432468414, + "learning_rate": 0.0006, + "loss": 3.5877747535705566, + "step": 3791 + }, + { + "epoch": 52.671035386631715, + "grad_norm": 0.21037372946739197, + "learning_rate": 0.0006, + "loss": 3.579045295715332, + "step": 3792 + }, + { + "epoch": 52.68501529051988, + "grad_norm": 0.19258099794387817, + "learning_rate": 0.0006, + "loss": 3.599151611328125, + "step": 3793 + }, + { + "epoch": 52.69899519440804, + "grad_norm": 0.18808242678642273, + "learning_rate": 0.0006, + "loss": 3.580679416656494, + "step": 3794 + }, + { + "epoch": 52.7129750982962, + "grad_norm": 0.18208397924900055, + "learning_rate": 0.0006, + "loss": 3.5940206050872803, + "step": 3795 + }, + { + "epoch": 52.72695500218436, + "grad_norm": 0.18173424899578094, + "learning_rate": 0.0006, + "loss": 3.5997331142425537, + "step": 3796 + }, + { + "epoch": 52.74093490607252, + "grad_norm": 0.1868390142917633, + "learning_rate": 0.0006, + "loss": 3.60007905960083, + "step": 3797 + }, + { + "epoch": 52.75491480996068, + "grad_norm": 0.1859273761510849, + "learning_rate": 0.0006, + "loss": 3.602668285369873, + "step": 3798 + }, + { + "epoch": 52.768894713848844, + "grad_norm": 0.18063156306743622, + "learning_rate": 0.0006, + "loss": 3.579869270324707, + "step": 3799 + }, + { + "epoch": 52.782874617737, + "grad_norm": 0.18920548260211945, + "learning_rate": 0.0006, + "loss": 3.6056337356567383, + "step": 3800 + }, + { + "epoch": 52.796854521625164, + "grad_norm": 0.20110033452510834, + "learning_rate": 0.0006, + "loss": 3.5694475173950195, + "step": 3801 + }, + { + "epoch": 52.81083442551333, + "grad_norm": 0.20331093668937683, + "learning_rate": 0.0006, + "loss": 3.5940358638763428, + "step": 3802 + }, + { + "epoch": 52.824814329401484, + "grad_norm": 0.2035607248544693, + "learning_rate": 0.0006, + "loss": 3.621305465698242, + "step": 3803 + }, + { + "epoch": 52.83879423328965, + "grad_norm": 0.1974431872367859, + "learning_rate": 0.0006, + "loss": 3.5959153175354004, + "step": 3804 + }, + { + "epoch": 52.8527741371778, + "grad_norm": 0.1832808405160904, + "learning_rate": 0.0006, + "loss": 3.582113265991211, + "step": 3805 + }, + { + "epoch": 52.86675404106597, + "grad_norm": 0.20269927382469177, + "learning_rate": 0.0006, + "loss": 3.5923209190368652, + "step": 3806 + }, + { + "epoch": 52.88073394495413, + "grad_norm": 0.20628313720226288, + "learning_rate": 0.0006, + "loss": 3.599729537963867, + "step": 3807 + }, + { + "epoch": 52.89471384884229, + "grad_norm": 0.2144002914428711, + "learning_rate": 0.0006, + "loss": 3.601041793823242, + "step": 3808 + }, + { + "epoch": 52.90869375273045, + "grad_norm": 0.215015709400177, + "learning_rate": 0.0006, + "loss": 3.5873360633850098, + "step": 3809 + }, + { + "epoch": 52.92267365661861, + "grad_norm": 0.23122714459896088, + "learning_rate": 0.0006, + "loss": 3.5839362144470215, + "step": 3810 + }, + { + "epoch": 52.93665356050677, + "grad_norm": 0.2381119281053543, + "learning_rate": 0.0006, + "loss": 3.564755439758301, + "step": 3811 + }, + { + "epoch": 52.95063346439493, + "grad_norm": 0.22975024580955505, + "learning_rate": 0.0006, + "loss": 3.594020128250122, + "step": 3812 + }, + { + "epoch": 52.964613368283096, + "grad_norm": 0.2419184148311615, + "learning_rate": 0.0006, + "loss": 3.5917205810546875, + "step": 3813 + }, + { + "epoch": 52.97859327217125, + "grad_norm": 0.21143122017383575, + "learning_rate": 0.0006, + "loss": 3.626842975616455, + "step": 3814 + }, + { + "epoch": 52.992573176059416, + "grad_norm": 0.195548415184021, + "learning_rate": 0.0006, + "loss": 3.5798377990722656, + "step": 3815 + }, + { + "epoch": 53.0, + "grad_norm": 0.22441816329956055, + "learning_rate": 0.0006, + "loss": 3.5652856826782227, + "step": 3816 + }, + { + "epoch": 53.0, + "eval_loss": 3.9635632038116455, + "eval_runtime": 44.772, + "eval_samples_per_second": 54.543, + "eval_steps_per_second": 3.417, + "step": 3816 + }, + { + "epoch": 53.01397990388816, + "grad_norm": 0.2547561228275299, + "learning_rate": 0.0006, + "loss": 3.562561511993408, + "step": 3817 + }, + { + "epoch": 53.02795980777632, + "grad_norm": 0.36890196800231934, + "learning_rate": 0.0006, + "loss": 3.534581184387207, + "step": 3818 + }, + { + "epoch": 53.04193971166448, + "grad_norm": 0.42631810903549194, + "learning_rate": 0.0006, + "loss": 3.5438239574432373, + "step": 3819 + }, + { + "epoch": 53.05591961555265, + "grad_norm": 0.29458126425743103, + "learning_rate": 0.0006, + "loss": 3.5594735145568848, + "step": 3820 + }, + { + "epoch": 53.0698995194408, + "grad_norm": 0.24320989847183228, + "learning_rate": 0.0006, + "loss": 3.5715155601501465, + "step": 3821 + }, + { + "epoch": 53.083879423328966, + "grad_norm": 0.3012531101703644, + "learning_rate": 0.0006, + "loss": 3.5324978828430176, + "step": 3822 + }, + { + "epoch": 53.09785932721712, + "grad_norm": 0.2789555788040161, + "learning_rate": 0.0006, + "loss": 3.5848183631896973, + "step": 3823 + }, + { + "epoch": 53.111839231105286, + "grad_norm": 0.2488897293806076, + "learning_rate": 0.0006, + "loss": 3.5853679180145264, + "step": 3824 + }, + { + "epoch": 53.12581913499345, + "grad_norm": 0.3016898036003113, + "learning_rate": 0.0006, + "loss": 3.585637092590332, + "step": 3825 + }, + { + "epoch": 53.139799038881605, + "grad_norm": 0.30293571949005127, + "learning_rate": 0.0006, + "loss": 3.5745015144348145, + "step": 3826 + }, + { + "epoch": 53.15377894276977, + "grad_norm": 0.24611566960811615, + "learning_rate": 0.0006, + "loss": 3.5761728286743164, + "step": 3827 + }, + { + "epoch": 53.16775884665793, + "grad_norm": 0.23852500319480896, + "learning_rate": 0.0006, + "loss": 3.59317946434021, + "step": 3828 + }, + { + "epoch": 53.18173875054609, + "grad_norm": 0.27882838249206543, + "learning_rate": 0.0006, + "loss": 3.589779853820801, + "step": 3829 + }, + { + "epoch": 53.19571865443425, + "grad_norm": 0.3252250552177429, + "learning_rate": 0.0006, + "loss": 3.564526081085205, + "step": 3830 + }, + { + "epoch": 53.20969855832241, + "grad_norm": 0.29635530710220337, + "learning_rate": 0.0006, + "loss": 3.5309946537017822, + "step": 3831 + }, + { + "epoch": 53.22367846221057, + "grad_norm": 0.25211700797080994, + "learning_rate": 0.0006, + "loss": 3.5795631408691406, + "step": 3832 + }, + { + "epoch": 53.237658366098735, + "grad_norm": 0.20772705972194672, + "learning_rate": 0.0006, + "loss": 3.5649163722991943, + "step": 3833 + }, + { + "epoch": 53.25163826998689, + "grad_norm": 0.2460525780916214, + "learning_rate": 0.0006, + "loss": 3.5484111309051514, + "step": 3834 + }, + { + "epoch": 53.265618173875055, + "grad_norm": 0.24652884900569916, + "learning_rate": 0.0006, + "loss": 3.5631136894226074, + "step": 3835 + }, + { + "epoch": 53.27959807776322, + "grad_norm": 0.23740890622138977, + "learning_rate": 0.0006, + "loss": 3.6234607696533203, + "step": 3836 + }, + { + "epoch": 53.293577981651374, + "grad_norm": 0.2463800311088562, + "learning_rate": 0.0006, + "loss": 3.5578083992004395, + "step": 3837 + }, + { + "epoch": 53.30755788553954, + "grad_norm": 0.23402568697929382, + "learning_rate": 0.0006, + "loss": 3.559845209121704, + "step": 3838 + }, + { + "epoch": 53.3215377894277, + "grad_norm": 0.2539580762386322, + "learning_rate": 0.0006, + "loss": 3.5863685607910156, + "step": 3839 + }, + { + "epoch": 53.33551769331586, + "grad_norm": 0.24994857609272003, + "learning_rate": 0.0006, + "loss": 3.5758700370788574, + "step": 3840 + }, + { + "epoch": 53.34949759720402, + "grad_norm": 0.21340647339820862, + "learning_rate": 0.0006, + "loss": 3.588602066040039, + "step": 3841 + }, + { + "epoch": 53.36347750109218, + "grad_norm": 0.2029065042734146, + "learning_rate": 0.0006, + "loss": 3.58594012260437, + "step": 3842 + }, + { + "epoch": 53.37745740498034, + "grad_norm": 0.20266403257846832, + "learning_rate": 0.0006, + "loss": 3.5906057357788086, + "step": 3843 + }, + { + "epoch": 53.391437308868504, + "grad_norm": 0.19940714538097382, + "learning_rate": 0.0006, + "loss": 3.5458335876464844, + "step": 3844 + }, + { + "epoch": 53.40541721275666, + "grad_norm": 0.21295064687728882, + "learning_rate": 0.0006, + "loss": 3.5589025020599365, + "step": 3845 + }, + { + "epoch": 53.419397116644824, + "grad_norm": 0.2150672823190689, + "learning_rate": 0.0006, + "loss": 3.5907669067382812, + "step": 3846 + }, + { + "epoch": 53.43337702053299, + "grad_norm": 0.21469077467918396, + "learning_rate": 0.0006, + "loss": 3.5403499603271484, + "step": 3847 + }, + { + "epoch": 53.44735692442114, + "grad_norm": 0.20485323667526245, + "learning_rate": 0.0006, + "loss": 3.5634326934814453, + "step": 3848 + }, + { + "epoch": 53.46133682830931, + "grad_norm": 0.1981327086687088, + "learning_rate": 0.0006, + "loss": 3.579385280609131, + "step": 3849 + }, + { + "epoch": 53.47531673219746, + "grad_norm": 0.1898331642150879, + "learning_rate": 0.0006, + "loss": 3.5824122428894043, + "step": 3850 + }, + { + "epoch": 53.489296636085626, + "grad_norm": 0.18228355050086975, + "learning_rate": 0.0006, + "loss": 3.533255100250244, + "step": 3851 + }, + { + "epoch": 53.50327653997379, + "grad_norm": 0.1803922951221466, + "learning_rate": 0.0006, + "loss": 3.589881420135498, + "step": 3852 + }, + { + "epoch": 53.517256443861946, + "grad_norm": 0.19590361416339874, + "learning_rate": 0.0006, + "loss": 3.599487066268921, + "step": 3853 + }, + { + "epoch": 53.53123634775011, + "grad_norm": 0.1935775727033615, + "learning_rate": 0.0006, + "loss": 3.5769765377044678, + "step": 3854 + }, + { + "epoch": 53.54521625163827, + "grad_norm": 0.1790810525417328, + "learning_rate": 0.0006, + "loss": 3.594104290008545, + "step": 3855 + }, + { + "epoch": 53.55919615552643, + "grad_norm": 0.17993320524692535, + "learning_rate": 0.0006, + "loss": 3.555650234222412, + "step": 3856 + }, + { + "epoch": 53.57317605941459, + "grad_norm": 0.19114883244037628, + "learning_rate": 0.0006, + "loss": 3.599574089050293, + "step": 3857 + }, + { + "epoch": 53.58715596330275, + "grad_norm": 0.18493886291980743, + "learning_rate": 0.0006, + "loss": 3.555177927017212, + "step": 3858 + }, + { + "epoch": 53.60113586719091, + "grad_norm": 0.19346027076244354, + "learning_rate": 0.0006, + "loss": 3.601219654083252, + "step": 3859 + }, + { + "epoch": 53.615115771079076, + "grad_norm": 0.2002234011888504, + "learning_rate": 0.0006, + "loss": 3.5614418983459473, + "step": 3860 + }, + { + "epoch": 53.62909567496723, + "grad_norm": 0.17705366015434265, + "learning_rate": 0.0006, + "loss": 3.587432384490967, + "step": 3861 + }, + { + "epoch": 53.643075578855395, + "grad_norm": 0.19825726747512817, + "learning_rate": 0.0006, + "loss": 3.570539951324463, + "step": 3862 + }, + { + "epoch": 53.65705548274356, + "grad_norm": 0.2038952112197876, + "learning_rate": 0.0006, + "loss": 3.575758934020996, + "step": 3863 + }, + { + "epoch": 53.671035386631715, + "grad_norm": 0.21109119057655334, + "learning_rate": 0.0006, + "loss": 3.6013951301574707, + "step": 3864 + }, + { + "epoch": 53.68501529051988, + "grad_norm": 0.21738514304161072, + "learning_rate": 0.0006, + "loss": 3.567424774169922, + "step": 3865 + }, + { + "epoch": 53.69899519440804, + "grad_norm": 0.214813694357872, + "learning_rate": 0.0006, + "loss": 3.599733352661133, + "step": 3866 + }, + { + "epoch": 53.7129750982962, + "grad_norm": 0.20838409662246704, + "learning_rate": 0.0006, + "loss": 3.595839738845825, + "step": 3867 + }, + { + "epoch": 53.72695500218436, + "grad_norm": 0.2088911384344101, + "learning_rate": 0.0006, + "loss": 3.6030569076538086, + "step": 3868 + }, + { + "epoch": 53.74093490607252, + "grad_norm": 0.22705569863319397, + "learning_rate": 0.0006, + "loss": 3.5876665115356445, + "step": 3869 + }, + { + "epoch": 53.75491480996068, + "grad_norm": 0.22327932715415955, + "learning_rate": 0.0006, + "loss": 3.5555529594421387, + "step": 3870 + }, + { + "epoch": 53.768894713848844, + "grad_norm": 0.2092375010251999, + "learning_rate": 0.0006, + "loss": 3.599871873855591, + "step": 3871 + }, + { + "epoch": 53.782874617737, + "grad_norm": 0.20672307908535004, + "learning_rate": 0.0006, + "loss": 3.598846435546875, + "step": 3872 + }, + { + "epoch": 53.796854521625164, + "grad_norm": 0.2090507596731186, + "learning_rate": 0.0006, + "loss": 3.564012050628662, + "step": 3873 + }, + { + "epoch": 53.81083442551333, + "grad_norm": 0.2044386863708496, + "learning_rate": 0.0006, + "loss": 3.585221529006958, + "step": 3874 + }, + { + "epoch": 53.824814329401484, + "grad_norm": 0.2065548598766327, + "learning_rate": 0.0006, + "loss": 3.595351457595825, + "step": 3875 + }, + { + "epoch": 53.83879423328965, + "grad_norm": 0.22895927727222443, + "learning_rate": 0.0006, + "loss": 3.5720505714416504, + "step": 3876 + }, + { + "epoch": 53.8527741371778, + "grad_norm": 0.22099260985851288, + "learning_rate": 0.0006, + "loss": 3.572587251663208, + "step": 3877 + }, + { + "epoch": 53.86675404106597, + "grad_norm": 0.19928759336471558, + "learning_rate": 0.0006, + "loss": 3.5641839504241943, + "step": 3878 + }, + { + "epoch": 53.88073394495413, + "grad_norm": 0.2735077440738678, + "learning_rate": 0.0006, + "loss": 3.575535774230957, + "step": 3879 + }, + { + "epoch": 53.89471384884229, + "grad_norm": 0.2642554044723511, + "learning_rate": 0.0006, + "loss": 3.5993123054504395, + "step": 3880 + }, + { + "epoch": 53.90869375273045, + "grad_norm": 0.22406205534934998, + "learning_rate": 0.0006, + "loss": 3.5968177318573, + "step": 3881 + }, + { + "epoch": 53.92267365661861, + "grad_norm": 0.22148431837558746, + "learning_rate": 0.0006, + "loss": 3.5668797492980957, + "step": 3882 + }, + { + "epoch": 53.93665356050677, + "grad_norm": 0.20805056393146515, + "learning_rate": 0.0006, + "loss": 3.60849666595459, + "step": 3883 + }, + { + "epoch": 53.95063346439493, + "grad_norm": 0.18656247854232788, + "learning_rate": 0.0006, + "loss": 3.5883405208587646, + "step": 3884 + }, + { + "epoch": 53.964613368283096, + "grad_norm": 0.19937767088413239, + "learning_rate": 0.0006, + "loss": 3.5897698402404785, + "step": 3885 + }, + { + "epoch": 53.97859327217125, + "grad_norm": 0.19680732488632202, + "learning_rate": 0.0006, + "loss": 3.568530559539795, + "step": 3886 + }, + { + "epoch": 53.992573176059416, + "grad_norm": 0.218981072306633, + "learning_rate": 0.0006, + "loss": 3.6194474697113037, + "step": 3887 + }, + { + "epoch": 54.0, + "grad_norm": 0.26408281922340393, + "learning_rate": 0.0006, + "loss": 3.5224976539611816, + "step": 3888 + }, + { + "epoch": 54.0, + "eval_loss": 3.983997106552124, + "eval_runtime": 44.9507, + "eval_samples_per_second": 54.326, + "eval_steps_per_second": 3.404, + "step": 3888 + }, + { + "epoch": 54.01397990388816, + "grad_norm": 0.2230917066335678, + "learning_rate": 0.0006, + "loss": 3.578058958053589, + "step": 3889 + }, + { + "epoch": 54.02795980777632, + "grad_norm": 0.23055201768875122, + "learning_rate": 0.0006, + "loss": 3.549612283706665, + "step": 3890 + }, + { + "epoch": 54.04193971166448, + "grad_norm": 0.23317518830299377, + "learning_rate": 0.0006, + "loss": 3.5662591457366943, + "step": 3891 + }, + { + "epoch": 54.05591961555265, + "grad_norm": 0.27022141218185425, + "learning_rate": 0.0006, + "loss": 3.547062873840332, + "step": 3892 + }, + { + "epoch": 54.0698995194408, + "grad_norm": 0.2665329873561859, + "learning_rate": 0.0006, + "loss": 3.540881633758545, + "step": 3893 + }, + { + "epoch": 54.083879423328966, + "grad_norm": 0.23968365788459778, + "learning_rate": 0.0006, + "loss": 3.574781894683838, + "step": 3894 + }, + { + "epoch": 54.09785932721712, + "grad_norm": 0.22174887359142303, + "learning_rate": 0.0006, + "loss": 3.514077663421631, + "step": 3895 + }, + { + "epoch": 54.111839231105286, + "grad_norm": 0.24605485796928406, + "learning_rate": 0.0006, + "loss": 3.534174919128418, + "step": 3896 + }, + { + "epoch": 54.12581913499345, + "grad_norm": 0.22874566912651062, + "learning_rate": 0.0006, + "loss": 3.574282169342041, + "step": 3897 + }, + { + "epoch": 54.139799038881605, + "grad_norm": 0.2113833874464035, + "learning_rate": 0.0006, + "loss": 3.548687696456909, + "step": 3898 + }, + { + "epoch": 54.15377894276977, + "grad_norm": 0.20756855607032776, + "learning_rate": 0.0006, + "loss": 3.556060791015625, + "step": 3899 + }, + { + "epoch": 54.16775884665793, + "grad_norm": 0.2070261538028717, + "learning_rate": 0.0006, + "loss": 3.5585689544677734, + "step": 3900 + }, + { + "epoch": 54.18173875054609, + "grad_norm": 0.20014794170856476, + "learning_rate": 0.0006, + "loss": 3.5898427963256836, + "step": 3901 + }, + { + "epoch": 54.19571865443425, + "grad_norm": 0.19851888716220856, + "learning_rate": 0.0006, + "loss": 3.564826011657715, + "step": 3902 + }, + { + "epoch": 54.20969855832241, + "grad_norm": 0.20333127677440643, + "learning_rate": 0.0006, + "loss": 3.540660858154297, + "step": 3903 + }, + { + "epoch": 54.22367846221057, + "grad_norm": 0.20291075110435486, + "learning_rate": 0.0006, + "loss": 3.544628143310547, + "step": 3904 + }, + { + "epoch": 54.237658366098735, + "grad_norm": 0.2055949866771698, + "learning_rate": 0.0006, + "loss": 3.547478675842285, + "step": 3905 + }, + { + "epoch": 54.25163826998689, + "grad_norm": 0.20305688679218292, + "learning_rate": 0.0006, + "loss": 3.5793099403381348, + "step": 3906 + }, + { + "epoch": 54.265618173875055, + "grad_norm": 0.21053043007850647, + "learning_rate": 0.0006, + "loss": 3.529263973236084, + "step": 3907 + }, + { + "epoch": 54.27959807776322, + "grad_norm": 0.2461051046848297, + "learning_rate": 0.0006, + "loss": 3.598266124725342, + "step": 3908 + }, + { + "epoch": 54.293577981651374, + "grad_norm": 0.25074276328086853, + "learning_rate": 0.0006, + "loss": 3.557170867919922, + "step": 3909 + }, + { + "epoch": 54.30755788553954, + "grad_norm": 0.23321498930454254, + "learning_rate": 0.0006, + "loss": 3.5532279014587402, + "step": 3910 + }, + { + "epoch": 54.3215377894277, + "grad_norm": 0.19062374532222748, + "learning_rate": 0.0006, + "loss": 3.5718722343444824, + "step": 3911 + }, + { + "epoch": 54.33551769331586, + "grad_norm": 0.22571852803230286, + "learning_rate": 0.0006, + "loss": 3.539036750793457, + "step": 3912 + }, + { + "epoch": 54.34949759720402, + "grad_norm": 0.23314784467220306, + "learning_rate": 0.0006, + "loss": 3.5444631576538086, + "step": 3913 + }, + { + "epoch": 54.36347750109218, + "grad_norm": 0.22334037721157074, + "learning_rate": 0.0006, + "loss": 3.5567970275878906, + "step": 3914 + }, + { + "epoch": 54.37745740498034, + "grad_norm": 0.21900276839733124, + "learning_rate": 0.0006, + "loss": 3.600113868713379, + "step": 3915 + }, + { + "epoch": 54.391437308868504, + "grad_norm": 0.20166733860969543, + "learning_rate": 0.0006, + "loss": 3.54038667678833, + "step": 3916 + }, + { + "epoch": 54.40541721275666, + "grad_norm": 0.21886761486530304, + "learning_rate": 0.0006, + "loss": 3.5708651542663574, + "step": 3917 + }, + { + "epoch": 54.419397116644824, + "grad_norm": 0.26383060216903687, + "learning_rate": 0.0006, + "loss": 3.5572509765625, + "step": 3918 + }, + { + "epoch": 54.43337702053299, + "grad_norm": 0.26116663217544556, + "learning_rate": 0.0006, + "loss": 3.528968334197998, + "step": 3919 + }, + { + "epoch": 54.44735692442114, + "grad_norm": 0.20640771090984344, + "learning_rate": 0.0006, + "loss": 3.587789535522461, + "step": 3920 + }, + { + "epoch": 54.46133682830931, + "grad_norm": 0.23454350233078003, + "learning_rate": 0.0006, + "loss": 3.586834192276001, + "step": 3921 + }, + { + "epoch": 54.47531673219746, + "grad_norm": 0.24828442931175232, + "learning_rate": 0.0006, + "loss": 3.5884881019592285, + "step": 3922 + }, + { + "epoch": 54.489296636085626, + "grad_norm": 0.23654282093048096, + "learning_rate": 0.0006, + "loss": 3.5754570960998535, + "step": 3923 + }, + { + "epoch": 54.50327653997379, + "grad_norm": 0.22721099853515625, + "learning_rate": 0.0006, + "loss": 3.5575859546661377, + "step": 3924 + }, + { + "epoch": 54.517256443861946, + "grad_norm": 0.2157498002052307, + "learning_rate": 0.0006, + "loss": 3.5929436683654785, + "step": 3925 + }, + { + "epoch": 54.53123634775011, + "grad_norm": 0.21604257822036743, + "learning_rate": 0.0006, + "loss": 3.5788726806640625, + "step": 3926 + }, + { + "epoch": 54.54521625163827, + "grad_norm": 0.22310106456279755, + "learning_rate": 0.0006, + "loss": 3.5873899459838867, + "step": 3927 + }, + { + "epoch": 54.55919615552643, + "grad_norm": 0.2121969312429428, + "learning_rate": 0.0006, + "loss": 3.575186252593994, + "step": 3928 + }, + { + "epoch": 54.57317605941459, + "grad_norm": 0.19073615968227386, + "learning_rate": 0.0006, + "loss": 3.5963356494903564, + "step": 3929 + }, + { + "epoch": 54.58715596330275, + "grad_norm": 0.18745607137680054, + "learning_rate": 0.0006, + "loss": 3.593679428100586, + "step": 3930 + }, + { + "epoch": 54.60113586719091, + "grad_norm": 0.19518259167671204, + "learning_rate": 0.0006, + "loss": 3.5730791091918945, + "step": 3931 + }, + { + "epoch": 54.615115771079076, + "grad_norm": 0.20948481559753418, + "learning_rate": 0.0006, + "loss": 3.5646820068359375, + "step": 3932 + }, + { + "epoch": 54.62909567496723, + "grad_norm": 0.1929631531238556, + "learning_rate": 0.0006, + "loss": 3.5550060272216797, + "step": 3933 + }, + { + "epoch": 54.643075578855395, + "grad_norm": 0.2104327380657196, + "learning_rate": 0.0006, + "loss": 3.5774357318878174, + "step": 3934 + }, + { + "epoch": 54.65705548274356, + "grad_norm": 0.1952148675918579, + "learning_rate": 0.0006, + "loss": 3.58856201171875, + "step": 3935 + }, + { + "epoch": 54.671035386631715, + "grad_norm": 0.17762340605258942, + "learning_rate": 0.0006, + "loss": 3.5324528217315674, + "step": 3936 + }, + { + "epoch": 54.68501529051988, + "grad_norm": 0.18349695205688477, + "learning_rate": 0.0006, + "loss": 3.5663890838623047, + "step": 3937 + }, + { + "epoch": 54.69899519440804, + "grad_norm": 0.2038232684135437, + "learning_rate": 0.0006, + "loss": 3.5811679363250732, + "step": 3938 + }, + { + "epoch": 54.7129750982962, + "grad_norm": 0.2431754469871521, + "learning_rate": 0.0006, + "loss": 3.56833553314209, + "step": 3939 + }, + { + "epoch": 54.72695500218436, + "grad_norm": 0.27498456835746765, + "learning_rate": 0.0006, + "loss": 3.5977981090545654, + "step": 3940 + }, + { + "epoch": 54.74093490607252, + "grad_norm": 0.20809921622276306, + "learning_rate": 0.0006, + "loss": 3.57193922996521, + "step": 3941 + }, + { + "epoch": 54.75491480996068, + "grad_norm": 0.18073450028896332, + "learning_rate": 0.0006, + "loss": 3.5610151290893555, + "step": 3942 + }, + { + "epoch": 54.768894713848844, + "grad_norm": 0.194604754447937, + "learning_rate": 0.0006, + "loss": 3.5716047286987305, + "step": 3943 + }, + { + "epoch": 54.782874617737, + "grad_norm": 0.20566268265247345, + "learning_rate": 0.0006, + "loss": 3.578401565551758, + "step": 3944 + }, + { + "epoch": 54.796854521625164, + "grad_norm": 0.21028153598308563, + "learning_rate": 0.0006, + "loss": 3.610511064529419, + "step": 3945 + }, + { + "epoch": 54.81083442551333, + "grad_norm": 0.21413563191890717, + "learning_rate": 0.0006, + "loss": 3.601574659347534, + "step": 3946 + }, + { + "epoch": 54.824814329401484, + "grad_norm": 0.2137378603219986, + "learning_rate": 0.0006, + "loss": 3.603997230529785, + "step": 3947 + }, + { + "epoch": 54.83879423328965, + "grad_norm": 0.2162058800458908, + "learning_rate": 0.0006, + "loss": 3.5829391479492188, + "step": 3948 + }, + { + "epoch": 54.8527741371778, + "grad_norm": 0.21700997650623322, + "learning_rate": 0.0006, + "loss": 3.595317840576172, + "step": 3949 + }, + { + "epoch": 54.86675404106597, + "grad_norm": 0.20864669978618622, + "learning_rate": 0.0006, + "loss": 3.601891040802002, + "step": 3950 + }, + { + "epoch": 54.88073394495413, + "grad_norm": 0.19780485332012177, + "learning_rate": 0.0006, + "loss": 3.567460775375366, + "step": 3951 + }, + { + "epoch": 54.89471384884229, + "grad_norm": 0.2017168402671814, + "learning_rate": 0.0006, + "loss": 3.5737192630767822, + "step": 3952 + }, + { + "epoch": 54.90869375273045, + "grad_norm": 0.22847825288772583, + "learning_rate": 0.0006, + "loss": 3.60937762260437, + "step": 3953 + }, + { + "epoch": 54.92267365661861, + "grad_norm": 0.23698270320892334, + "learning_rate": 0.0006, + "loss": 3.6013574600219727, + "step": 3954 + }, + { + "epoch": 54.93665356050677, + "grad_norm": 0.238611102104187, + "learning_rate": 0.0006, + "loss": 3.5689988136291504, + "step": 3955 + }, + { + "epoch": 54.95063346439493, + "grad_norm": 0.2680057883262634, + "learning_rate": 0.0006, + "loss": 3.5650172233581543, + "step": 3956 + }, + { + "epoch": 54.964613368283096, + "grad_norm": 0.25712481141090393, + "learning_rate": 0.0006, + "loss": 3.576777935028076, + "step": 3957 + }, + { + "epoch": 54.97859327217125, + "grad_norm": 0.2232409566640854, + "learning_rate": 0.0006, + "loss": 3.583169937133789, + "step": 3958 + }, + { + "epoch": 54.992573176059416, + "grad_norm": 0.21233153343200684, + "learning_rate": 0.0006, + "loss": 3.602219581604004, + "step": 3959 + }, + { + "epoch": 55.0, + "grad_norm": 0.24345774948596954, + "learning_rate": 0.0006, + "loss": 3.5118026733398438, + "step": 3960 + }, + { + "epoch": 55.0, + "eval_loss": 3.9819064140319824, + "eval_runtime": 44.6627, + "eval_samples_per_second": 54.677, + "eval_steps_per_second": 3.426, + "step": 3960 + }, + { + "epoch": 55.01397990388816, + "grad_norm": 0.229562908411026, + "learning_rate": 0.0006, + "loss": 3.5591073036193848, + "step": 3961 + }, + { + "epoch": 55.02795980777632, + "grad_norm": 0.21731624007225037, + "learning_rate": 0.0006, + "loss": 3.5544848442077637, + "step": 3962 + }, + { + "epoch": 55.04193971166448, + "grad_norm": 0.23528429865837097, + "learning_rate": 0.0006, + "loss": 3.5654311180114746, + "step": 3963 + }, + { + "epoch": 55.05591961555265, + "grad_norm": 0.23147839307785034, + "learning_rate": 0.0006, + "loss": 3.537006378173828, + "step": 3964 + }, + { + "epoch": 55.0698995194408, + "grad_norm": 0.22218112647533417, + "learning_rate": 0.0006, + "loss": 3.5218982696533203, + "step": 3965 + }, + { + "epoch": 55.083879423328966, + "grad_norm": 0.20697443187236786, + "learning_rate": 0.0006, + "loss": 3.5623579025268555, + "step": 3966 + }, + { + "epoch": 55.09785932721712, + "grad_norm": 0.2108476608991623, + "learning_rate": 0.0006, + "loss": 3.528214454650879, + "step": 3967 + }, + { + "epoch": 55.111839231105286, + "grad_norm": 0.21664242446422577, + "learning_rate": 0.0006, + "loss": 3.5429646968841553, + "step": 3968 + }, + { + "epoch": 55.12581913499345, + "grad_norm": 0.21359260380268097, + "learning_rate": 0.0006, + "loss": 3.5873513221740723, + "step": 3969 + }, + { + "epoch": 55.139799038881605, + "grad_norm": 0.23289452493190765, + "learning_rate": 0.0006, + "loss": 3.5551905632019043, + "step": 3970 + }, + { + "epoch": 55.15377894276977, + "grad_norm": 0.25835689902305603, + "learning_rate": 0.0006, + "loss": 3.5380427837371826, + "step": 3971 + }, + { + "epoch": 55.16775884665793, + "grad_norm": 0.25449255108833313, + "learning_rate": 0.0006, + "loss": 3.5276808738708496, + "step": 3972 + }, + { + "epoch": 55.18173875054609, + "grad_norm": 0.2472638338804245, + "learning_rate": 0.0006, + "loss": 3.539194107055664, + "step": 3973 + }, + { + "epoch": 55.19571865443425, + "grad_norm": 0.21743768453598022, + "learning_rate": 0.0006, + "loss": 3.557185173034668, + "step": 3974 + }, + { + "epoch": 55.20969855832241, + "grad_norm": 0.22787386178970337, + "learning_rate": 0.0006, + "loss": 3.581993579864502, + "step": 3975 + }, + { + "epoch": 55.22367846221057, + "grad_norm": 0.2332824170589447, + "learning_rate": 0.0006, + "loss": 3.5439846515655518, + "step": 3976 + }, + { + "epoch": 55.237658366098735, + "grad_norm": 0.2054908573627472, + "learning_rate": 0.0006, + "loss": 3.5528793334960938, + "step": 3977 + }, + { + "epoch": 55.25163826998689, + "grad_norm": 0.2087554633617401, + "learning_rate": 0.0006, + "loss": 3.536464214324951, + "step": 3978 + }, + { + "epoch": 55.265618173875055, + "grad_norm": 0.22214409708976746, + "learning_rate": 0.0006, + "loss": 3.56184458732605, + "step": 3979 + }, + { + "epoch": 55.27959807776322, + "grad_norm": 0.23214097321033478, + "learning_rate": 0.0006, + "loss": 3.5560522079467773, + "step": 3980 + }, + { + "epoch": 55.293577981651374, + "grad_norm": 0.23317331075668335, + "learning_rate": 0.0006, + "loss": 3.5433850288391113, + "step": 3981 + }, + { + "epoch": 55.30755788553954, + "grad_norm": 0.2303774058818817, + "learning_rate": 0.0006, + "loss": 3.5505576133728027, + "step": 3982 + }, + { + "epoch": 55.3215377894277, + "grad_norm": 0.2400730401277542, + "learning_rate": 0.0006, + "loss": 3.557952404022217, + "step": 3983 + }, + { + "epoch": 55.33551769331586, + "grad_norm": 0.23933538794517517, + "learning_rate": 0.0006, + "loss": 3.536656141281128, + "step": 3984 + }, + { + "epoch": 55.34949759720402, + "grad_norm": 0.23796266317367554, + "learning_rate": 0.0006, + "loss": 3.5777554512023926, + "step": 3985 + }, + { + "epoch": 55.36347750109218, + "grad_norm": 0.26078858971595764, + "learning_rate": 0.0006, + "loss": 3.549121379852295, + "step": 3986 + }, + { + "epoch": 55.37745740498034, + "grad_norm": 0.22726459801197052, + "learning_rate": 0.0006, + "loss": 3.605684518814087, + "step": 3987 + }, + { + "epoch": 55.391437308868504, + "grad_norm": 0.19872179627418518, + "learning_rate": 0.0006, + "loss": 3.5501739978790283, + "step": 3988 + }, + { + "epoch": 55.40541721275666, + "grad_norm": 0.2027827352285385, + "learning_rate": 0.0006, + "loss": 3.625922441482544, + "step": 3989 + }, + { + "epoch": 55.419397116644824, + "grad_norm": 0.24207144975662231, + "learning_rate": 0.0006, + "loss": 3.595451831817627, + "step": 3990 + }, + { + "epoch": 55.43337702053299, + "grad_norm": 0.23449009656906128, + "learning_rate": 0.0006, + "loss": 3.577167510986328, + "step": 3991 + }, + { + "epoch": 55.44735692442114, + "grad_norm": 0.22529540956020355, + "learning_rate": 0.0006, + "loss": 3.5585317611694336, + "step": 3992 + }, + { + "epoch": 55.46133682830931, + "grad_norm": 0.2354331612586975, + "learning_rate": 0.0006, + "loss": 3.574819564819336, + "step": 3993 + }, + { + "epoch": 55.47531673219746, + "grad_norm": 0.2251061201095581, + "learning_rate": 0.0006, + "loss": 3.580498695373535, + "step": 3994 + }, + { + "epoch": 55.489296636085626, + "grad_norm": 0.22107349336147308, + "learning_rate": 0.0006, + "loss": 3.578591823577881, + "step": 3995 + }, + { + "epoch": 55.50327653997379, + "grad_norm": 0.24686408042907715, + "learning_rate": 0.0006, + "loss": 3.541625499725342, + "step": 3996 + }, + { + "epoch": 55.517256443861946, + "grad_norm": 0.23731260001659393, + "learning_rate": 0.0006, + "loss": 3.5508079528808594, + "step": 3997 + }, + { + "epoch": 55.53123634775011, + "grad_norm": 0.21246901154518127, + "learning_rate": 0.0006, + "loss": 3.569500207901001, + "step": 3998 + }, + { + "epoch": 55.54521625163827, + "grad_norm": 0.21369415521621704, + "learning_rate": 0.0006, + "loss": 3.546938896179199, + "step": 3999 + }, + { + "epoch": 55.55919615552643, + "grad_norm": 0.2102644443511963, + "learning_rate": 0.0006, + "loss": 3.5842084884643555, + "step": 4000 + }, + { + "epoch": 55.57317605941459, + "grad_norm": 0.2355998456478119, + "learning_rate": 0.0006, + "loss": 3.5493381023406982, + "step": 4001 + }, + { + "epoch": 55.58715596330275, + "grad_norm": 0.2670288681983948, + "learning_rate": 0.0006, + "loss": 3.5909032821655273, + "step": 4002 + }, + { + "epoch": 55.60113586719091, + "grad_norm": 0.2958407998085022, + "learning_rate": 0.0006, + "loss": 3.624906063079834, + "step": 4003 + }, + { + "epoch": 55.615115771079076, + "grad_norm": 0.2948441505432129, + "learning_rate": 0.0006, + "loss": 3.553528070449829, + "step": 4004 + }, + { + "epoch": 55.62909567496723, + "grad_norm": 0.24873173236846924, + "learning_rate": 0.0006, + "loss": 3.5851495265960693, + "step": 4005 + }, + { + "epoch": 55.643075578855395, + "grad_norm": 0.22191756963729858, + "learning_rate": 0.0006, + "loss": 3.556459903717041, + "step": 4006 + }, + { + "epoch": 55.65705548274356, + "grad_norm": 0.22677776217460632, + "learning_rate": 0.0006, + "loss": 3.579428195953369, + "step": 4007 + }, + { + "epoch": 55.671035386631715, + "grad_norm": 0.22263763844966888, + "learning_rate": 0.0006, + "loss": 3.5878806114196777, + "step": 4008 + }, + { + "epoch": 55.68501529051988, + "grad_norm": 0.24498602747917175, + "learning_rate": 0.0006, + "loss": 3.5989317893981934, + "step": 4009 + }, + { + "epoch": 55.69899519440804, + "grad_norm": 0.26294007897377014, + "learning_rate": 0.0006, + "loss": 3.5866756439208984, + "step": 4010 + }, + { + "epoch": 55.7129750982962, + "grad_norm": 0.22105370461940765, + "learning_rate": 0.0006, + "loss": 3.594365119934082, + "step": 4011 + }, + { + "epoch": 55.72695500218436, + "grad_norm": 0.20973286032676697, + "learning_rate": 0.0006, + "loss": 3.551156997680664, + "step": 4012 + }, + { + "epoch": 55.74093490607252, + "grad_norm": 0.2123304158449173, + "learning_rate": 0.0006, + "loss": 3.587405204772949, + "step": 4013 + }, + { + "epoch": 55.75491480996068, + "grad_norm": 0.22134795784950256, + "learning_rate": 0.0006, + "loss": 3.59114146232605, + "step": 4014 + }, + { + "epoch": 55.768894713848844, + "grad_norm": 0.20822957158088684, + "learning_rate": 0.0006, + "loss": 3.5910749435424805, + "step": 4015 + }, + { + "epoch": 55.782874617737, + "grad_norm": 0.22392229735851288, + "learning_rate": 0.0006, + "loss": 3.5800669193267822, + "step": 4016 + }, + { + "epoch": 55.796854521625164, + "grad_norm": 0.2214914709329605, + "learning_rate": 0.0006, + "loss": 3.5553741455078125, + "step": 4017 + }, + { + "epoch": 55.81083442551333, + "grad_norm": 0.1993025690317154, + "learning_rate": 0.0006, + "loss": 3.567298412322998, + "step": 4018 + }, + { + "epoch": 55.824814329401484, + "grad_norm": 0.21043774485588074, + "learning_rate": 0.0006, + "loss": 3.537358045578003, + "step": 4019 + }, + { + "epoch": 55.83879423328965, + "grad_norm": 0.18501818180084229, + "learning_rate": 0.0006, + "loss": 3.5971930027008057, + "step": 4020 + }, + { + "epoch": 55.8527741371778, + "grad_norm": 0.19626867771148682, + "learning_rate": 0.0006, + "loss": 3.563570976257324, + "step": 4021 + }, + { + "epoch": 55.86675404106597, + "grad_norm": 0.19328820705413818, + "learning_rate": 0.0006, + "loss": 3.600377082824707, + "step": 4022 + }, + { + "epoch": 55.88073394495413, + "grad_norm": 0.2013237327337265, + "learning_rate": 0.0006, + "loss": 3.5916812419891357, + "step": 4023 + }, + { + "epoch": 55.89471384884229, + "grad_norm": 0.22775673866271973, + "learning_rate": 0.0006, + "loss": 3.5572638511657715, + "step": 4024 + }, + { + "epoch": 55.90869375273045, + "grad_norm": 0.2452211230993271, + "learning_rate": 0.0006, + "loss": 3.54378080368042, + "step": 4025 + }, + { + "epoch": 55.92267365661861, + "grad_norm": 0.23337189853191376, + "learning_rate": 0.0006, + "loss": 3.5853466987609863, + "step": 4026 + }, + { + "epoch": 55.93665356050677, + "grad_norm": 0.20073719322681427, + "learning_rate": 0.0006, + "loss": 3.5793843269348145, + "step": 4027 + }, + { + "epoch": 55.95063346439493, + "grad_norm": 0.1963811218738556, + "learning_rate": 0.0006, + "loss": 3.5783073902130127, + "step": 4028 + }, + { + "epoch": 55.964613368283096, + "grad_norm": 0.19921033084392548, + "learning_rate": 0.0006, + "loss": 3.5455331802368164, + "step": 4029 + }, + { + "epoch": 55.97859327217125, + "grad_norm": 0.22151921689510345, + "learning_rate": 0.0006, + "loss": 3.551476001739502, + "step": 4030 + }, + { + "epoch": 55.992573176059416, + "grad_norm": 0.2636640965938568, + "learning_rate": 0.0006, + "loss": 3.5859174728393555, + "step": 4031 + }, + { + "epoch": 56.0, + "grad_norm": 0.282680869102478, + "learning_rate": 0.0006, + "loss": 3.5818469524383545, + "step": 4032 + }, + { + "epoch": 56.0, + "eval_loss": 3.982189178466797, + "eval_runtime": 44.2577, + "eval_samples_per_second": 55.177, + "eval_steps_per_second": 3.457, + "step": 4032 + }, + { + "epoch": 56.01397990388816, + "grad_norm": 0.23316597938537598, + "learning_rate": 0.0006, + "loss": 3.5500292778015137, + "step": 4033 + }, + { + "epoch": 56.02795980777632, + "grad_norm": 0.22836777567863464, + "learning_rate": 0.0006, + "loss": 3.5661063194274902, + "step": 4034 + }, + { + "epoch": 56.04193971166448, + "grad_norm": 0.2607800364494324, + "learning_rate": 0.0006, + "loss": 3.5496177673339844, + "step": 4035 + }, + { + "epoch": 56.05591961555265, + "grad_norm": 0.2620518207550049, + "learning_rate": 0.0006, + "loss": 3.562621831893921, + "step": 4036 + }, + { + "epoch": 56.0698995194408, + "grad_norm": 0.2344953864812851, + "learning_rate": 0.0006, + "loss": 3.5371389389038086, + "step": 4037 + }, + { + "epoch": 56.083879423328966, + "grad_norm": 0.2523435950279236, + "learning_rate": 0.0006, + "loss": 3.565216541290283, + "step": 4038 + }, + { + "epoch": 56.09785932721712, + "grad_norm": 0.26315048336982727, + "learning_rate": 0.0006, + "loss": 3.5510857105255127, + "step": 4039 + }, + { + "epoch": 56.111839231105286, + "grad_norm": 0.256817102432251, + "learning_rate": 0.0006, + "loss": 3.576132297515869, + "step": 4040 + }, + { + "epoch": 56.12581913499345, + "grad_norm": 0.25146403908729553, + "learning_rate": 0.0006, + "loss": 3.550875663757324, + "step": 4041 + }, + { + "epoch": 56.139799038881605, + "grad_norm": 0.2471698820590973, + "learning_rate": 0.0006, + "loss": 3.5574288368225098, + "step": 4042 + }, + { + "epoch": 56.15377894276977, + "grad_norm": 0.2324669510126114, + "learning_rate": 0.0006, + "loss": 3.524637222290039, + "step": 4043 + }, + { + "epoch": 56.16775884665793, + "grad_norm": 0.21824438869953156, + "learning_rate": 0.0006, + "loss": 3.563664436340332, + "step": 4044 + }, + { + "epoch": 56.18173875054609, + "grad_norm": 0.2381063550710678, + "learning_rate": 0.0006, + "loss": 3.573061943054199, + "step": 4045 + }, + { + "epoch": 56.19571865443425, + "grad_norm": 0.23728328943252563, + "learning_rate": 0.0006, + "loss": 3.5563716888427734, + "step": 4046 + }, + { + "epoch": 56.20969855832241, + "grad_norm": 0.20998933911323547, + "learning_rate": 0.0006, + "loss": 3.540152072906494, + "step": 4047 + }, + { + "epoch": 56.22367846221057, + "grad_norm": 0.2249690741300583, + "learning_rate": 0.0006, + "loss": 3.5699682235717773, + "step": 4048 + }, + { + "epoch": 56.237658366098735, + "grad_norm": 0.22615988552570343, + "learning_rate": 0.0006, + "loss": 3.5604777336120605, + "step": 4049 + }, + { + "epoch": 56.25163826998689, + "grad_norm": 0.20918409526348114, + "learning_rate": 0.0006, + "loss": 3.5612001419067383, + "step": 4050 + }, + { + "epoch": 56.265618173875055, + "grad_norm": 0.22025109827518463, + "learning_rate": 0.0006, + "loss": 3.520402193069458, + "step": 4051 + }, + { + "epoch": 56.27959807776322, + "grad_norm": 0.22722174227237701, + "learning_rate": 0.0006, + "loss": 3.52360200881958, + "step": 4052 + }, + { + "epoch": 56.293577981651374, + "grad_norm": 0.2115592360496521, + "learning_rate": 0.0006, + "loss": 3.562689781188965, + "step": 4053 + }, + { + "epoch": 56.30755788553954, + "grad_norm": 0.19253599643707275, + "learning_rate": 0.0006, + "loss": 3.545013427734375, + "step": 4054 + }, + { + "epoch": 56.3215377894277, + "grad_norm": 0.2534266710281372, + "learning_rate": 0.0006, + "loss": 3.530149459838867, + "step": 4055 + }, + { + "epoch": 56.33551769331586, + "grad_norm": 0.2871302366256714, + "learning_rate": 0.0006, + "loss": 3.5667316913604736, + "step": 4056 + }, + { + "epoch": 56.34949759720402, + "grad_norm": 0.2686561048030853, + "learning_rate": 0.0006, + "loss": 3.5341169834136963, + "step": 4057 + }, + { + "epoch": 56.36347750109218, + "grad_norm": 0.21016116440296173, + "learning_rate": 0.0006, + "loss": 3.5151243209838867, + "step": 4058 + }, + { + "epoch": 56.37745740498034, + "grad_norm": 0.20810428261756897, + "learning_rate": 0.0006, + "loss": 3.5641677379608154, + "step": 4059 + }, + { + "epoch": 56.391437308868504, + "grad_norm": 0.2732172906398773, + "learning_rate": 0.0006, + "loss": 3.546082019805908, + "step": 4060 + }, + { + "epoch": 56.40541721275666, + "grad_norm": 0.26587602496147156, + "learning_rate": 0.0006, + "loss": 3.5465946197509766, + "step": 4061 + }, + { + "epoch": 56.419397116644824, + "grad_norm": 0.20492126047611237, + "learning_rate": 0.0006, + "loss": 3.5686211585998535, + "step": 4062 + }, + { + "epoch": 56.43337702053299, + "grad_norm": 0.2147696167230606, + "learning_rate": 0.0006, + "loss": 3.5808653831481934, + "step": 4063 + }, + { + "epoch": 56.44735692442114, + "grad_norm": 0.21947690844535828, + "learning_rate": 0.0006, + "loss": 3.530872344970703, + "step": 4064 + }, + { + "epoch": 56.46133682830931, + "grad_norm": 0.21305148303508759, + "learning_rate": 0.0006, + "loss": 3.5480992794036865, + "step": 4065 + }, + { + "epoch": 56.47531673219746, + "grad_norm": 0.2066979706287384, + "learning_rate": 0.0006, + "loss": 3.5198287963867188, + "step": 4066 + }, + { + "epoch": 56.489296636085626, + "grad_norm": 0.19393840432167053, + "learning_rate": 0.0006, + "loss": 3.555344581604004, + "step": 4067 + }, + { + "epoch": 56.50327653997379, + "grad_norm": 0.19889849424362183, + "learning_rate": 0.0006, + "loss": 3.56475830078125, + "step": 4068 + }, + { + "epoch": 56.517256443861946, + "grad_norm": 0.19851456582546234, + "learning_rate": 0.0006, + "loss": 3.5790982246398926, + "step": 4069 + }, + { + "epoch": 56.53123634775011, + "grad_norm": 0.19570177793502808, + "learning_rate": 0.0006, + "loss": 3.558379888534546, + "step": 4070 + }, + { + "epoch": 56.54521625163827, + "grad_norm": 0.21364007890224457, + "learning_rate": 0.0006, + "loss": 3.586343288421631, + "step": 4071 + }, + { + "epoch": 56.55919615552643, + "grad_norm": 0.22896543145179749, + "learning_rate": 0.0006, + "loss": 3.5565874576568604, + "step": 4072 + }, + { + "epoch": 56.57317605941459, + "grad_norm": 0.21665218472480774, + "learning_rate": 0.0006, + "loss": 3.5737056732177734, + "step": 4073 + }, + { + "epoch": 56.58715596330275, + "grad_norm": 0.1964256912469864, + "learning_rate": 0.0006, + "loss": 3.555798053741455, + "step": 4074 + }, + { + "epoch": 56.60113586719091, + "grad_norm": 0.2056122124195099, + "learning_rate": 0.0006, + "loss": 3.548685073852539, + "step": 4075 + }, + { + "epoch": 56.615115771079076, + "grad_norm": 0.21677979826927185, + "learning_rate": 0.0006, + "loss": 3.569136619567871, + "step": 4076 + }, + { + "epoch": 56.62909567496723, + "grad_norm": 0.2029557228088379, + "learning_rate": 0.0006, + "loss": 3.5723280906677246, + "step": 4077 + }, + { + "epoch": 56.643075578855395, + "grad_norm": 0.22111767530441284, + "learning_rate": 0.0006, + "loss": 3.5784404277801514, + "step": 4078 + }, + { + "epoch": 56.65705548274356, + "grad_norm": 0.245675191283226, + "learning_rate": 0.0006, + "loss": 3.559330940246582, + "step": 4079 + }, + { + "epoch": 56.671035386631715, + "grad_norm": 0.19715000689029694, + "learning_rate": 0.0006, + "loss": 3.5694894790649414, + "step": 4080 + }, + { + "epoch": 56.68501529051988, + "grad_norm": 0.2112303525209427, + "learning_rate": 0.0006, + "loss": 3.5932059288024902, + "step": 4081 + }, + { + "epoch": 56.69899519440804, + "grad_norm": 0.23710735142230988, + "learning_rate": 0.0006, + "loss": 3.59895658493042, + "step": 4082 + }, + { + "epoch": 56.7129750982962, + "grad_norm": 0.2507518529891968, + "learning_rate": 0.0006, + "loss": 3.58455228805542, + "step": 4083 + }, + { + "epoch": 56.72695500218436, + "grad_norm": 0.24770016968250275, + "learning_rate": 0.0006, + "loss": 3.566256046295166, + "step": 4084 + }, + { + "epoch": 56.74093490607252, + "grad_norm": 0.2407187819480896, + "learning_rate": 0.0006, + "loss": 3.6002347469329834, + "step": 4085 + }, + { + "epoch": 56.75491480996068, + "grad_norm": 0.21417197585105896, + "learning_rate": 0.0006, + "loss": 3.5579819679260254, + "step": 4086 + }, + { + "epoch": 56.768894713848844, + "grad_norm": 0.21014295518398285, + "learning_rate": 0.0006, + "loss": 3.574289321899414, + "step": 4087 + }, + { + "epoch": 56.782874617737, + "grad_norm": 0.2265855073928833, + "learning_rate": 0.0006, + "loss": 3.589186906814575, + "step": 4088 + }, + { + "epoch": 56.796854521625164, + "grad_norm": 0.22685059905052185, + "learning_rate": 0.0006, + "loss": 3.567077159881592, + "step": 4089 + }, + { + "epoch": 56.81083442551333, + "grad_norm": 0.21579493582248688, + "learning_rate": 0.0006, + "loss": 3.5568556785583496, + "step": 4090 + }, + { + "epoch": 56.824814329401484, + "grad_norm": 0.2049565464258194, + "learning_rate": 0.0006, + "loss": 3.5547285079956055, + "step": 4091 + }, + { + "epoch": 56.83879423328965, + "grad_norm": 0.21019354462623596, + "learning_rate": 0.0006, + "loss": 3.606884479522705, + "step": 4092 + }, + { + "epoch": 56.8527741371778, + "grad_norm": 0.26110008358955383, + "learning_rate": 0.0006, + "loss": 3.5626933574676514, + "step": 4093 + }, + { + "epoch": 56.86675404106597, + "grad_norm": 0.22148117423057556, + "learning_rate": 0.0006, + "loss": 3.5739552974700928, + "step": 4094 + }, + { + "epoch": 56.88073394495413, + "grad_norm": 0.20535576343536377, + "learning_rate": 0.0006, + "loss": 3.566840648651123, + "step": 4095 + }, + { + "epoch": 56.89471384884229, + "grad_norm": 0.1928025484085083, + "learning_rate": 0.0006, + "loss": 3.5637013912200928, + "step": 4096 + }, + { + "epoch": 56.90869375273045, + "grad_norm": 0.1989327371120453, + "learning_rate": 0.0006, + "loss": 3.5881259441375732, + "step": 4097 + }, + { + "epoch": 56.92267365661861, + "grad_norm": 0.21137912571430206, + "learning_rate": 0.0006, + "loss": 3.5513358116149902, + "step": 4098 + }, + { + "epoch": 56.93665356050677, + "grad_norm": 0.22471629083156586, + "learning_rate": 0.0006, + "loss": 3.5630130767822266, + "step": 4099 + }, + { + "epoch": 56.95063346439493, + "grad_norm": 0.2323181927204132, + "learning_rate": 0.0006, + "loss": 3.559762477874756, + "step": 4100 + }, + { + "epoch": 56.964613368283096, + "grad_norm": 0.2020239382982254, + "learning_rate": 0.0006, + "loss": 3.596774101257324, + "step": 4101 + }, + { + "epoch": 56.97859327217125, + "grad_norm": 0.21822074055671692, + "learning_rate": 0.0006, + "loss": 3.598115921020508, + "step": 4102 + }, + { + "epoch": 56.992573176059416, + "grad_norm": 0.20600785315036774, + "learning_rate": 0.0006, + "loss": 3.5579686164855957, + "step": 4103 + }, + { + "epoch": 57.0, + "grad_norm": 0.23575574159622192, + "learning_rate": 0.0006, + "loss": 3.57532000541687, + "step": 4104 + }, + { + "epoch": 57.0, + "eval_loss": 3.9726130962371826, + "eval_runtime": 44.7918, + "eval_samples_per_second": 54.519, + "eval_steps_per_second": 3.416, + "step": 4104 + }, + { + "epoch": 57.01397990388816, + "grad_norm": 0.2366827428340912, + "learning_rate": 0.0006, + "loss": 3.552804946899414, + "step": 4105 + }, + { + "epoch": 57.02795980777632, + "grad_norm": 0.2728131115436554, + "learning_rate": 0.0006, + "loss": 3.5407862663269043, + "step": 4106 + }, + { + "epoch": 57.04193971166448, + "grad_norm": 0.2685103416442871, + "learning_rate": 0.0006, + "loss": 3.525047779083252, + "step": 4107 + }, + { + "epoch": 57.05591961555265, + "grad_norm": 0.26493778824806213, + "learning_rate": 0.0006, + "loss": 3.527106523513794, + "step": 4108 + }, + { + "epoch": 57.0698995194408, + "grad_norm": 0.290961354970932, + "learning_rate": 0.0006, + "loss": 3.5482702255249023, + "step": 4109 + }, + { + "epoch": 57.083879423328966, + "grad_norm": 0.33083876967430115, + "learning_rate": 0.0006, + "loss": 3.5123658180236816, + "step": 4110 + }, + { + "epoch": 57.09785932721712, + "grad_norm": 0.28544098138809204, + "learning_rate": 0.0006, + "loss": 3.5563549995422363, + "step": 4111 + }, + { + "epoch": 57.111839231105286, + "grad_norm": 0.2516465187072754, + "learning_rate": 0.0006, + "loss": 3.547360420227051, + "step": 4112 + }, + { + "epoch": 57.12581913499345, + "grad_norm": 0.2485780417919159, + "learning_rate": 0.0006, + "loss": 3.5234861373901367, + "step": 4113 + }, + { + "epoch": 57.139799038881605, + "grad_norm": 0.246695414185524, + "learning_rate": 0.0006, + "loss": 3.573009490966797, + "step": 4114 + }, + { + "epoch": 57.15377894276977, + "grad_norm": 0.24958990514278412, + "learning_rate": 0.0006, + "loss": 3.5322680473327637, + "step": 4115 + }, + { + "epoch": 57.16775884665793, + "grad_norm": 0.20882244408130646, + "learning_rate": 0.0006, + "loss": 3.5463480949401855, + "step": 4116 + }, + { + "epoch": 57.18173875054609, + "grad_norm": 0.2372189313173294, + "learning_rate": 0.0006, + "loss": 3.543396472930908, + "step": 4117 + }, + { + "epoch": 57.19571865443425, + "grad_norm": 0.24817894399166107, + "learning_rate": 0.0006, + "loss": 3.5594849586486816, + "step": 4118 + }, + { + "epoch": 57.20969855832241, + "grad_norm": 0.2231832891702652, + "learning_rate": 0.0006, + "loss": 3.5276806354522705, + "step": 4119 + }, + { + "epoch": 57.22367846221057, + "grad_norm": 0.2211553156375885, + "learning_rate": 0.0006, + "loss": 3.5423057079315186, + "step": 4120 + }, + { + "epoch": 57.237658366098735, + "grad_norm": 0.2495127022266388, + "learning_rate": 0.0006, + "loss": 3.57668399810791, + "step": 4121 + }, + { + "epoch": 57.25163826998689, + "grad_norm": 0.2548885941505432, + "learning_rate": 0.0006, + "loss": 3.5487570762634277, + "step": 4122 + }, + { + "epoch": 57.265618173875055, + "grad_norm": 0.22884942591190338, + "learning_rate": 0.0006, + "loss": 3.560772180557251, + "step": 4123 + }, + { + "epoch": 57.27959807776322, + "grad_norm": 0.20817993581295013, + "learning_rate": 0.0006, + "loss": 3.5540637969970703, + "step": 4124 + }, + { + "epoch": 57.293577981651374, + "grad_norm": 0.2075389176607132, + "learning_rate": 0.0006, + "loss": 3.5382890701293945, + "step": 4125 + }, + { + "epoch": 57.30755788553954, + "grad_norm": 0.2081303596496582, + "learning_rate": 0.0006, + "loss": 3.554612874984741, + "step": 4126 + }, + { + "epoch": 57.3215377894277, + "grad_norm": 0.2108871191740036, + "learning_rate": 0.0006, + "loss": 3.583320379257202, + "step": 4127 + }, + { + "epoch": 57.33551769331586, + "grad_norm": 0.21608266234397888, + "learning_rate": 0.0006, + "loss": 3.5358712673187256, + "step": 4128 + }, + { + "epoch": 57.34949759720402, + "grad_norm": 0.21208034455776215, + "learning_rate": 0.0006, + "loss": 3.561821937561035, + "step": 4129 + }, + { + "epoch": 57.36347750109218, + "grad_norm": 0.2109878957271576, + "learning_rate": 0.0006, + "loss": 3.5592710971832275, + "step": 4130 + }, + { + "epoch": 57.37745740498034, + "grad_norm": 0.2175656110048294, + "learning_rate": 0.0006, + "loss": 3.5616424083709717, + "step": 4131 + }, + { + "epoch": 57.391437308868504, + "grad_norm": 0.2170158475637436, + "learning_rate": 0.0006, + "loss": 3.5580999851226807, + "step": 4132 + }, + { + "epoch": 57.40541721275666, + "grad_norm": 0.22486525774002075, + "learning_rate": 0.0006, + "loss": 3.562096118927002, + "step": 4133 + }, + { + "epoch": 57.419397116644824, + "grad_norm": 0.22458943724632263, + "learning_rate": 0.0006, + "loss": 3.5784192085266113, + "step": 4134 + }, + { + "epoch": 57.43337702053299, + "grad_norm": 0.20545627176761627, + "learning_rate": 0.0006, + "loss": 3.5740323066711426, + "step": 4135 + }, + { + "epoch": 57.44735692442114, + "grad_norm": 0.22105063498020172, + "learning_rate": 0.0006, + "loss": 3.537400245666504, + "step": 4136 + }, + { + "epoch": 57.46133682830931, + "grad_norm": 0.26679784059524536, + "learning_rate": 0.0006, + "loss": 3.5323081016540527, + "step": 4137 + }, + { + "epoch": 57.47531673219746, + "grad_norm": 0.2646673321723938, + "learning_rate": 0.0006, + "loss": 3.54030442237854, + "step": 4138 + }, + { + "epoch": 57.489296636085626, + "grad_norm": 0.22486890852451324, + "learning_rate": 0.0006, + "loss": 3.558323621749878, + "step": 4139 + }, + { + "epoch": 57.50327653997379, + "grad_norm": 0.20868313312530518, + "learning_rate": 0.0006, + "loss": 3.5296707153320312, + "step": 4140 + }, + { + "epoch": 57.517256443861946, + "grad_norm": 0.22973674535751343, + "learning_rate": 0.0006, + "loss": 3.5401687622070312, + "step": 4141 + }, + { + "epoch": 57.53123634775011, + "grad_norm": 0.22321778535842896, + "learning_rate": 0.0006, + "loss": 3.566683530807495, + "step": 4142 + }, + { + "epoch": 57.54521625163827, + "grad_norm": 0.20808766782283783, + "learning_rate": 0.0006, + "loss": 3.5398507118225098, + "step": 4143 + }, + { + "epoch": 57.55919615552643, + "grad_norm": 0.19632819294929504, + "learning_rate": 0.0006, + "loss": 3.5785460472106934, + "step": 4144 + }, + { + "epoch": 57.57317605941459, + "grad_norm": 0.18699012696743011, + "learning_rate": 0.0006, + "loss": 3.5495004653930664, + "step": 4145 + }, + { + "epoch": 57.58715596330275, + "grad_norm": 0.19161473214626312, + "learning_rate": 0.0006, + "loss": 3.550243854522705, + "step": 4146 + }, + { + "epoch": 57.60113586719091, + "grad_norm": 0.21041646599769592, + "learning_rate": 0.0006, + "loss": 3.5801823139190674, + "step": 4147 + }, + { + "epoch": 57.615115771079076, + "grad_norm": 0.2043760120868683, + "learning_rate": 0.0006, + "loss": 3.580418825149536, + "step": 4148 + }, + { + "epoch": 57.62909567496723, + "grad_norm": 0.21515823900699615, + "learning_rate": 0.0006, + "loss": 3.58026385307312, + "step": 4149 + }, + { + "epoch": 57.643075578855395, + "grad_norm": 0.20913724601268768, + "learning_rate": 0.0006, + "loss": 3.5452992916107178, + "step": 4150 + }, + { + "epoch": 57.65705548274356, + "grad_norm": 0.22621729969978333, + "learning_rate": 0.0006, + "loss": 3.5332765579223633, + "step": 4151 + }, + { + "epoch": 57.671035386631715, + "grad_norm": 0.26475241780281067, + "learning_rate": 0.0006, + "loss": 3.5701823234558105, + "step": 4152 + }, + { + "epoch": 57.68501529051988, + "grad_norm": 0.2567952275276184, + "learning_rate": 0.0006, + "loss": 3.597219228744507, + "step": 4153 + }, + { + "epoch": 57.69899519440804, + "grad_norm": 0.19640378654003143, + "learning_rate": 0.0006, + "loss": 3.5865941047668457, + "step": 4154 + }, + { + "epoch": 57.7129750982962, + "grad_norm": 0.21714240312576294, + "learning_rate": 0.0006, + "loss": 3.555518627166748, + "step": 4155 + }, + { + "epoch": 57.72695500218436, + "grad_norm": 0.2604375183582306, + "learning_rate": 0.0006, + "loss": 3.5756402015686035, + "step": 4156 + }, + { + "epoch": 57.74093490607252, + "grad_norm": 0.24627837538719177, + "learning_rate": 0.0006, + "loss": 3.550668239593506, + "step": 4157 + }, + { + "epoch": 57.75491480996068, + "grad_norm": 0.21893182396888733, + "learning_rate": 0.0006, + "loss": 3.5560038089752197, + "step": 4158 + }, + { + "epoch": 57.768894713848844, + "grad_norm": 0.23481261730194092, + "learning_rate": 0.0006, + "loss": 3.543942451477051, + "step": 4159 + }, + { + "epoch": 57.782874617737, + "grad_norm": 0.21777133643627167, + "learning_rate": 0.0006, + "loss": 3.5652658939361572, + "step": 4160 + }, + { + "epoch": 57.796854521625164, + "grad_norm": 0.2158525437116623, + "learning_rate": 0.0006, + "loss": 3.5803327560424805, + "step": 4161 + }, + { + "epoch": 57.81083442551333, + "grad_norm": 0.19519925117492676, + "learning_rate": 0.0006, + "loss": 3.5814499855041504, + "step": 4162 + }, + { + "epoch": 57.824814329401484, + "grad_norm": 0.2017558217048645, + "learning_rate": 0.0006, + "loss": 3.558722972869873, + "step": 4163 + }, + { + "epoch": 57.83879423328965, + "grad_norm": 0.22046449780464172, + "learning_rate": 0.0006, + "loss": 3.559990882873535, + "step": 4164 + }, + { + "epoch": 57.8527741371778, + "grad_norm": 0.22240568697452545, + "learning_rate": 0.0006, + "loss": 3.5427942276000977, + "step": 4165 + }, + { + "epoch": 57.86675404106597, + "grad_norm": 0.20282965898513794, + "learning_rate": 0.0006, + "loss": 3.5449461936950684, + "step": 4166 + }, + { + "epoch": 57.88073394495413, + "grad_norm": 0.20970730483531952, + "learning_rate": 0.0006, + "loss": 3.592543601989746, + "step": 4167 + }, + { + "epoch": 57.89471384884229, + "grad_norm": 0.21963168680667877, + "learning_rate": 0.0006, + "loss": 3.5564393997192383, + "step": 4168 + }, + { + "epoch": 57.90869375273045, + "grad_norm": 0.20854730904102325, + "learning_rate": 0.0006, + "loss": 3.565591335296631, + "step": 4169 + }, + { + "epoch": 57.92267365661861, + "grad_norm": 0.24149510264396667, + "learning_rate": 0.0006, + "loss": 3.574720859527588, + "step": 4170 + }, + { + "epoch": 57.93665356050677, + "grad_norm": 0.26011863350868225, + "learning_rate": 0.0006, + "loss": 3.593156337738037, + "step": 4171 + }, + { + "epoch": 57.95063346439493, + "grad_norm": 0.24111896753311157, + "learning_rate": 0.0006, + "loss": 3.5871872901916504, + "step": 4172 + }, + { + "epoch": 57.964613368283096, + "grad_norm": 0.22362647950649261, + "learning_rate": 0.0006, + "loss": 3.568572998046875, + "step": 4173 + }, + { + "epoch": 57.97859327217125, + "grad_norm": 0.23621505498886108, + "learning_rate": 0.0006, + "loss": 3.5627479553222656, + "step": 4174 + }, + { + "epoch": 57.992573176059416, + "grad_norm": 0.2252524048089981, + "learning_rate": 0.0006, + "loss": 3.594430446624756, + "step": 4175 + }, + { + "epoch": 58.0, + "grad_norm": 0.24568618834018707, + "learning_rate": 0.0006, + "loss": 3.5520875453948975, + "step": 4176 + }, + { + "epoch": 58.0, + "eval_loss": 3.978929042816162, + "eval_runtime": 44.8688, + "eval_samples_per_second": 54.425, + "eval_steps_per_second": 3.41, + "step": 4176 + }, + { + "epoch": 58.01397990388816, + "grad_norm": 0.23220741748809814, + "learning_rate": 0.0006, + "loss": 3.5401225090026855, + "step": 4177 + }, + { + "epoch": 58.02795980777632, + "grad_norm": 0.214580699801445, + "learning_rate": 0.0006, + "loss": 3.507652759552002, + "step": 4178 + }, + { + "epoch": 58.04193971166448, + "grad_norm": 0.20596857368946075, + "learning_rate": 0.0006, + "loss": 3.5591790676116943, + "step": 4179 + }, + { + "epoch": 58.05591961555265, + "grad_norm": 0.23054419457912445, + "learning_rate": 0.0006, + "loss": 3.518101692199707, + "step": 4180 + }, + { + "epoch": 58.0698995194408, + "grad_norm": 0.2410690039396286, + "learning_rate": 0.0006, + "loss": 3.5270299911499023, + "step": 4181 + }, + { + "epoch": 58.083879423328966, + "grad_norm": 0.24333222210407257, + "learning_rate": 0.0006, + "loss": 3.5732290744781494, + "step": 4182 + }, + { + "epoch": 58.09785932721712, + "grad_norm": 0.2547648549079895, + "learning_rate": 0.0006, + "loss": 3.5470314025878906, + "step": 4183 + }, + { + "epoch": 58.111839231105286, + "grad_norm": 0.2366316169500351, + "learning_rate": 0.0006, + "loss": 3.500774621963501, + "step": 4184 + }, + { + "epoch": 58.12581913499345, + "grad_norm": 0.22653642296791077, + "learning_rate": 0.0006, + "loss": 3.5242254734039307, + "step": 4185 + }, + { + "epoch": 58.139799038881605, + "grad_norm": 0.25555330514907837, + "learning_rate": 0.0006, + "loss": 3.5272228717803955, + "step": 4186 + }, + { + "epoch": 58.15377894276977, + "grad_norm": 0.26559844613075256, + "learning_rate": 0.0006, + "loss": 3.5599403381347656, + "step": 4187 + }, + { + "epoch": 58.16775884665793, + "grad_norm": 0.2473350614309311, + "learning_rate": 0.0006, + "loss": 3.5130624771118164, + "step": 4188 + }, + { + "epoch": 58.18173875054609, + "grad_norm": 0.22858835756778717, + "learning_rate": 0.0006, + "loss": 3.508342742919922, + "step": 4189 + }, + { + "epoch": 58.19571865443425, + "grad_norm": 0.2151159793138504, + "learning_rate": 0.0006, + "loss": 3.533581256866455, + "step": 4190 + }, + { + "epoch": 58.20969855832241, + "grad_norm": 0.2042093276977539, + "learning_rate": 0.0006, + "loss": 3.5269458293914795, + "step": 4191 + }, + { + "epoch": 58.22367846221057, + "grad_norm": 0.20638196170330048, + "learning_rate": 0.0006, + "loss": 3.5137884616851807, + "step": 4192 + }, + { + "epoch": 58.237658366098735, + "grad_norm": 0.2018391191959381, + "learning_rate": 0.0006, + "loss": 3.533733367919922, + "step": 4193 + }, + { + "epoch": 58.25163826998689, + "grad_norm": 0.21045200526714325, + "learning_rate": 0.0006, + "loss": 3.5585010051727295, + "step": 4194 + }, + { + "epoch": 58.265618173875055, + "grad_norm": 0.2040393352508545, + "learning_rate": 0.0006, + "loss": 3.547539234161377, + "step": 4195 + }, + { + "epoch": 58.27959807776322, + "grad_norm": 0.2538772523403168, + "learning_rate": 0.0006, + "loss": 3.5487847328186035, + "step": 4196 + }, + { + "epoch": 58.293577981651374, + "grad_norm": 0.30126553773880005, + "learning_rate": 0.0006, + "loss": 3.5717992782592773, + "step": 4197 + }, + { + "epoch": 58.30755788553954, + "grad_norm": 0.2787485718727112, + "learning_rate": 0.0006, + "loss": 3.543076992034912, + "step": 4198 + }, + { + "epoch": 58.3215377894277, + "grad_norm": 0.23167021572589874, + "learning_rate": 0.0006, + "loss": 3.518887519836426, + "step": 4199 + }, + { + "epoch": 58.33551769331586, + "grad_norm": 0.23871110379695892, + "learning_rate": 0.0006, + "loss": 3.536757469177246, + "step": 4200 + }, + { + "epoch": 58.34949759720402, + "grad_norm": 0.2542787492275238, + "learning_rate": 0.0006, + "loss": 3.573086738586426, + "step": 4201 + }, + { + "epoch": 58.36347750109218, + "grad_norm": 0.2967284023761749, + "learning_rate": 0.0006, + "loss": 3.5866525173187256, + "step": 4202 + }, + { + "epoch": 58.37745740498034, + "grad_norm": 0.28304803371429443, + "learning_rate": 0.0006, + "loss": 3.5601437091827393, + "step": 4203 + }, + { + "epoch": 58.391437308868504, + "grad_norm": 0.20651954412460327, + "learning_rate": 0.0006, + "loss": 3.5591554641723633, + "step": 4204 + }, + { + "epoch": 58.40541721275666, + "grad_norm": 0.23101729154586792, + "learning_rate": 0.0006, + "loss": 3.5714032649993896, + "step": 4205 + }, + { + "epoch": 58.419397116644824, + "grad_norm": 0.24556246399879456, + "learning_rate": 0.0006, + "loss": 3.550046443939209, + "step": 4206 + }, + { + "epoch": 58.43337702053299, + "grad_norm": 0.2307356745004654, + "learning_rate": 0.0006, + "loss": 3.571850299835205, + "step": 4207 + }, + { + "epoch": 58.44735692442114, + "grad_norm": 0.23186670243740082, + "learning_rate": 0.0006, + "loss": 3.555757999420166, + "step": 4208 + }, + { + "epoch": 58.46133682830931, + "grad_norm": 0.20662686228752136, + "learning_rate": 0.0006, + "loss": 3.5590686798095703, + "step": 4209 + }, + { + "epoch": 58.47531673219746, + "grad_norm": 0.20381265878677368, + "learning_rate": 0.0006, + "loss": 3.5228846073150635, + "step": 4210 + }, + { + "epoch": 58.489296636085626, + "grad_norm": 0.20927058160305023, + "learning_rate": 0.0006, + "loss": 3.5376980304718018, + "step": 4211 + }, + { + "epoch": 58.50327653997379, + "grad_norm": 0.22782307863235474, + "learning_rate": 0.0006, + "loss": 3.5477585792541504, + "step": 4212 + }, + { + "epoch": 58.517256443861946, + "grad_norm": 0.20143239200115204, + "learning_rate": 0.0006, + "loss": 3.5429391860961914, + "step": 4213 + }, + { + "epoch": 58.53123634775011, + "grad_norm": 0.2120865285396576, + "learning_rate": 0.0006, + "loss": 3.5543365478515625, + "step": 4214 + }, + { + "epoch": 58.54521625163827, + "grad_norm": 0.2032771110534668, + "learning_rate": 0.0006, + "loss": 3.5307888984680176, + "step": 4215 + }, + { + "epoch": 58.55919615552643, + "grad_norm": 0.20994187891483307, + "learning_rate": 0.0006, + "loss": 3.581739664077759, + "step": 4216 + }, + { + "epoch": 58.57317605941459, + "grad_norm": 0.23686161637306213, + "learning_rate": 0.0006, + "loss": 3.5274312496185303, + "step": 4217 + }, + { + "epoch": 58.58715596330275, + "grad_norm": 0.21081998944282532, + "learning_rate": 0.0006, + "loss": 3.547239303588867, + "step": 4218 + }, + { + "epoch": 58.60113586719091, + "grad_norm": 0.20353151857852936, + "learning_rate": 0.0006, + "loss": 3.5522308349609375, + "step": 4219 + }, + { + "epoch": 58.615115771079076, + "grad_norm": 0.20888762176036835, + "learning_rate": 0.0006, + "loss": 3.5535459518432617, + "step": 4220 + }, + { + "epoch": 58.62909567496723, + "grad_norm": 0.2024519443511963, + "learning_rate": 0.0006, + "loss": 3.5320982933044434, + "step": 4221 + }, + { + "epoch": 58.643075578855395, + "grad_norm": 0.19622337818145752, + "learning_rate": 0.0006, + "loss": 3.5581917762756348, + "step": 4222 + }, + { + "epoch": 58.65705548274356, + "grad_norm": 0.1966600865125656, + "learning_rate": 0.0006, + "loss": 3.5412650108337402, + "step": 4223 + }, + { + "epoch": 58.671035386631715, + "grad_norm": 0.19325542449951172, + "learning_rate": 0.0006, + "loss": 3.570521593093872, + "step": 4224 + }, + { + "epoch": 58.68501529051988, + "grad_norm": 0.20674128830432892, + "learning_rate": 0.0006, + "loss": 3.5727484226226807, + "step": 4225 + }, + { + "epoch": 58.69899519440804, + "grad_norm": 0.1959284245967865, + "learning_rate": 0.0006, + "loss": 3.5655486583709717, + "step": 4226 + }, + { + "epoch": 58.7129750982962, + "grad_norm": 0.2044358104467392, + "learning_rate": 0.0006, + "loss": 3.5477449893951416, + "step": 4227 + }, + { + "epoch": 58.72695500218436, + "grad_norm": 0.21381069719791412, + "learning_rate": 0.0006, + "loss": 3.533381462097168, + "step": 4228 + }, + { + "epoch": 58.74093490607252, + "grad_norm": 0.20168009400367737, + "learning_rate": 0.0006, + "loss": 3.5401244163513184, + "step": 4229 + }, + { + "epoch": 58.75491480996068, + "grad_norm": 0.20853811502456665, + "learning_rate": 0.0006, + "loss": 3.5669009685516357, + "step": 4230 + }, + { + "epoch": 58.768894713848844, + "grad_norm": 0.2135785073041916, + "learning_rate": 0.0006, + "loss": 3.5697989463806152, + "step": 4231 + }, + { + "epoch": 58.782874617737, + "grad_norm": 0.20372799038887024, + "learning_rate": 0.0006, + "loss": 3.592245101928711, + "step": 4232 + }, + { + "epoch": 58.796854521625164, + "grad_norm": 0.20562207698822021, + "learning_rate": 0.0006, + "loss": 3.5732932090759277, + "step": 4233 + }, + { + "epoch": 58.81083442551333, + "grad_norm": 0.1932520568370819, + "learning_rate": 0.0006, + "loss": 3.581766128540039, + "step": 4234 + }, + { + "epoch": 58.824814329401484, + "grad_norm": 0.20229186117649078, + "learning_rate": 0.0006, + "loss": 3.5758426189422607, + "step": 4235 + }, + { + "epoch": 58.83879423328965, + "grad_norm": 0.21348924934864044, + "learning_rate": 0.0006, + "loss": 3.573164939880371, + "step": 4236 + }, + { + "epoch": 58.8527741371778, + "grad_norm": 0.2240375131368637, + "learning_rate": 0.0006, + "loss": 3.578442096710205, + "step": 4237 + }, + { + "epoch": 58.86675404106597, + "grad_norm": 0.22859376668930054, + "learning_rate": 0.0006, + "loss": 3.5597116947174072, + "step": 4238 + }, + { + "epoch": 58.88073394495413, + "grad_norm": 0.22347290813922882, + "learning_rate": 0.0006, + "loss": 3.557039260864258, + "step": 4239 + }, + { + "epoch": 58.89471384884229, + "grad_norm": 0.19835364818572998, + "learning_rate": 0.0006, + "loss": 3.5832467079162598, + "step": 4240 + }, + { + "epoch": 58.90869375273045, + "grad_norm": 0.21189740300178528, + "learning_rate": 0.0006, + "loss": 3.5421836376190186, + "step": 4241 + }, + { + "epoch": 58.92267365661861, + "grad_norm": 0.21234451234340668, + "learning_rate": 0.0006, + "loss": 3.6048710346221924, + "step": 4242 + }, + { + "epoch": 58.93665356050677, + "grad_norm": 0.2107880860567093, + "learning_rate": 0.0006, + "loss": 3.58248233795166, + "step": 4243 + }, + { + "epoch": 58.95063346439493, + "grad_norm": 0.21674086153507233, + "learning_rate": 0.0006, + "loss": 3.582352876663208, + "step": 4244 + }, + { + "epoch": 58.964613368283096, + "grad_norm": 0.21057581901550293, + "learning_rate": 0.0006, + "loss": 3.5387773513793945, + "step": 4245 + }, + { + "epoch": 58.97859327217125, + "grad_norm": 0.20203082263469696, + "learning_rate": 0.0006, + "loss": 3.5805740356445312, + "step": 4246 + }, + { + "epoch": 58.992573176059416, + "grad_norm": 0.21071292459964752, + "learning_rate": 0.0006, + "loss": 3.5644760131835938, + "step": 4247 + }, + { + "epoch": 59.0, + "grad_norm": 0.2473233938217163, + "learning_rate": 0.0006, + "loss": 3.56392765045166, + "step": 4248 + }, + { + "epoch": 59.0, + "eval_loss": 3.9670467376708984, + "eval_runtime": 44.7697, + "eval_samples_per_second": 54.546, + "eval_steps_per_second": 3.417, + "step": 4248 + }, + { + "epoch": 59.01397990388816, + "grad_norm": 0.22915491461753845, + "learning_rate": 0.0006, + "loss": 3.5110130310058594, + "step": 4249 + }, + { + "epoch": 59.02795980777632, + "grad_norm": 0.2629511058330536, + "learning_rate": 0.0006, + "loss": 3.5493721961975098, + "step": 4250 + }, + { + "epoch": 59.04193971166448, + "grad_norm": 0.2954505383968353, + "learning_rate": 0.0006, + "loss": 3.555753707885742, + "step": 4251 + }, + { + "epoch": 59.05591961555265, + "grad_norm": 0.2728694677352905, + "learning_rate": 0.0006, + "loss": 3.5089950561523438, + "step": 4252 + }, + { + "epoch": 59.0698995194408, + "grad_norm": 0.25955384969711304, + "learning_rate": 0.0006, + "loss": 3.509044647216797, + "step": 4253 + }, + { + "epoch": 59.083879423328966, + "grad_norm": 0.32285967469215393, + "learning_rate": 0.0006, + "loss": 3.5324721336364746, + "step": 4254 + }, + { + "epoch": 59.09785932721712, + "grad_norm": 0.2913302779197693, + "learning_rate": 0.0006, + "loss": 3.5004022121429443, + "step": 4255 + }, + { + "epoch": 59.111839231105286, + "grad_norm": 0.23795513808727264, + "learning_rate": 0.0006, + "loss": 3.515099048614502, + "step": 4256 + }, + { + "epoch": 59.12581913499345, + "grad_norm": 0.2788177728652954, + "learning_rate": 0.0006, + "loss": 3.524991035461426, + "step": 4257 + }, + { + "epoch": 59.139799038881605, + "grad_norm": 0.32389938831329346, + "learning_rate": 0.0006, + "loss": 3.5330004692077637, + "step": 4258 + }, + { + "epoch": 59.15377894276977, + "grad_norm": 0.2921825647354126, + "learning_rate": 0.0006, + "loss": 3.530616283416748, + "step": 4259 + }, + { + "epoch": 59.16775884665793, + "grad_norm": 0.28415167331695557, + "learning_rate": 0.0006, + "loss": 3.5276989936828613, + "step": 4260 + }, + { + "epoch": 59.18173875054609, + "grad_norm": 0.283626526594162, + "learning_rate": 0.0006, + "loss": 3.564985752105713, + "step": 4261 + }, + { + "epoch": 59.19571865443425, + "grad_norm": 0.2655615210533142, + "learning_rate": 0.0006, + "loss": 3.536499500274658, + "step": 4262 + }, + { + "epoch": 59.20969855832241, + "grad_norm": 0.2794124484062195, + "learning_rate": 0.0006, + "loss": 3.570883274078369, + "step": 4263 + }, + { + "epoch": 59.22367846221057, + "grad_norm": 0.2803778052330017, + "learning_rate": 0.0006, + "loss": 3.5143651962280273, + "step": 4264 + }, + { + "epoch": 59.237658366098735, + "grad_norm": 0.2584295868873596, + "learning_rate": 0.0006, + "loss": 3.548056125640869, + "step": 4265 + }, + { + "epoch": 59.25163826998689, + "grad_norm": 0.26859962940216064, + "learning_rate": 0.0006, + "loss": 3.511655807495117, + "step": 4266 + }, + { + "epoch": 59.265618173875055, + "grad_norm": 0.26620036363601685, + "learning_rate": 0.0006, + "loss": 3.5554311275482178, + "step": 4267 + }, + { + "epoch": 59.27959807776322, + "grad_norm": 0.2325621247291565, + "learning_rate": 0.0006, + "loss": 3.5126709938049316, + "step": 4268 + }, + { + "epoch": 59.293577981651374, + "grad_norm": 0.24758809804916382, + "learning_rate": 0.0006, + "loss": 3.5747783184051514, + "step": 4269 + }, + { + "epoch": 59.30755788553954, + "grad_norm": 0.26378121972084045, + "learning_rate": 0.0006, + "loss": 3.538012742996216, + "step": 4270 + }, + { + "epoch": 59.3215377894277, + "grad_norm": 0.24299141764640808, + "learning_rate": 0.0006, + "loss": 3.533834457397461, + "step": 4271 + }, + { + "epoch": 59.33551769331586, + "grad_norm": 0.20792774856090546, + "learning_rate": 0.0006, + "loss": 3.5645856857299805, + "step": 4272 + }, + { + "epoch": 59.34949759720402, + "grad_norm": 0.21124716103076935, + "learning_rate": 0.0006, + "loss": 3.5616869926452637, + "step": 4273 + }, + { + "epoch": 59.36347750109218, + "grad_norm": 0.2644400894641876, + "learning_rate": 0.0006, + "loss": 3.531334400177002, + "step": 4274 + }, + { + "epoch": 59.37745740498034, + "grad_norm": 0.27659082412719727, + "learning_rate": 0.0006, + "loss": 3.5557894706726074, + "step": 4275 + }, + { + "epoch": 59.391437308868504, + "grad_norm": 0.21931052207946777, + "learning_rate": 0.0006, + "loss": 3.537261486053467, + "step": 4276 + }, + { + "epoch": 59.40541721275666, + "grad_norm": 0.20661118626594543, + "learning_rate": 0.0006, + "loss": 3.568042755126953, + "step": 4277 + }, + { + "epoch": 59.419397116644824, + "grad_norm": 0.2157975435256958, + "learning_rate": 0.0006, + "loss": 3.550891160964966, + "step": 4278 + }, + { + "epoch": 59.43337702053299, + "grad_norm": 0.20762090384960175, + "learning_rate": 0.0006, + "loss": 3.565798282623291, + "step": 4279 + }, + { + "epoch": 59.44735692442114, + "grad_norm": 0.19575528800487518, + "learning_rate": 0.0006, + "loss": 3.5518856048583984, + "step": 4280 + }, + { + "epoch": 59.46133682830931, + "grad_norm": 0.20730678737163544, + "learning_rate": 0.0006, + "loss": 3.5412862300872803, + "step": 4281 + }, + { + "epoch": 59.47531673219746, + "grad_norm": 0.21095411479473114, + "learning_rate": 0.0006, + "loss": 3.5491604804992676, + "step": 4282 + }, + { + "epoch": 59.489296636085626, + "grad_norm": 0.2229546755552292, + "learning_rate": 0.0006, + "loss": 3.534517765045166, + "step": 4283 + }, + { + "epoch": 59.50327653997379, + "grad_norm": 0.22375687956809998, + "learning_rate": 0.0006, + "loss": 3.5696470737457275, + "step": 4284 + }, + { + "epoch": 59.517256443861946, + "grad_norm": 0.2563750743865967, + "learning_rate": 0.0006, + "loss": 3.6050190925598145, + "step": 4285 + }, + { + "epoch": 59.53123634775011, + "grad_norm": 0.3055726885795593, + "learning_rate": 0.0006, + "loss": 3.572263240814209, + "step": 4286 + }, + { + "epoch": 59.54521625163827, + "grad_norm": 0.3095283508300781, + "learning_rate": 0.0006, + "loss": 3.545631170272827, + "step": 4287 + }, + { + "epoch": 59.55919615552643, + "grad_norm": 0.24958640336990356, + "learning_rate": 0.0006, + "loss": 3.549663543701172, + "step": 4288 + }, + { + "epoch": 59.57317605941459, + "grad_norm": 0.22277019917964935, + "learning_rate": 0.0006, + "loss": 3.5721545219421387, + "step": 4289 + }, + { + "epoch": 59.58715596330275, + "grad_norm": 0.22153833508491516, + "learning_rate": 0.0006, + "loss": 3.5103156566619873, + "step": 4290 + }, + { + "epoch": 59.60113586719091, + "grad_norm": 0.25579726696014404, + "learning_rate": 0.0006, + "loss": 3.550353527069092, + "step": 4291 + }, + { + "epoch": 59.615115771079076, + "grad_norm": 0.2242603898048401, + "learning_rate": 0.0006, + "loss": 3.5284783840179443, + "step": 4292 + }, + { + "epoch": 59.62909567496723, + "grad_norm": 0.21665683388710022, + "learning_rate": 0.0006, + "loss": 3.553835868835449, + "step": 4293 + }, + { + "epoch": 59.643075578855395, + "grad_norm": 0.21703463792800903, + "learning_rate": 0.0006, + "loss": 3.5393173694610596, + "step": 4294 + }, + { + "epoch": 59.65705548274356, + "grad_norm": 0.21264998614788055, + "learning_rate": 0.0006, + "loss": 3.566108465194702, + "step": 4295 + }, + { + "epoch": 59.671035386631715, + "grad_norm": 0.1935717612504959, + "learning_rate": 0.0006, + "loss": 3.5934512615203857, + "step": 4296 + }, + { + "epoch": 59.68501529051988, + "grad_norm": 0.20164808630943298, + "learning_rate": 0.0006, + "loss": 3.545046329498291, + "step": 4297 + }, + { + "epoch": 59.69899519440804, + "grad_norm": 0.19589892029762268, + "learning_rate": 0.0006, + "loss": 3.5302319526672363, + "step": 4298 + }, + { + "epoch": 59.7129750982962, + "grad_norm": 0.1893095225095749, + "learning_rate": 0.0006, + "loss": 3.5947837829589844, + "step": 4299 + }, + { + "epoch": 59.72695500218436, + "grad_norm": 0.20218202471733093, + "learning_rate": 0.0006, + "loss": 3.5889904499053955, + "step": 4300 + }, + { + "epoch": 59.74093490607252, + "grad_norm": 0.19681277871131897, + "learning_rate": 0.0006, + "loss": 3.581536293029785, + "step": 4301 + }, + { + "epoch": 59.75491480996068, + "grad_norm": 0.20112384855747223, + "learning_rate": 0.0006, + "loss": 3.5509750843048096, + "step": 4302 + }, + { + "epoch": 59.768894713848844, + "grad_norm": 0.1969940960407257, + "learning_rate": 0.0006, + "loss": 3.5462636947631836, + "step": 4303 + }, + { + "epoch": 59.782874617737, + "grad_norm": 0.20936219394207, + "learning_rate": 0.0006, + "loss": 3.5284390449523926, + "step": 4304 + }, + { + "epoch": 59.796854521625164, + "grad_norm": 0.21717803180217743, + "learning_rate": 0.0006, + "loss": 3.5669212341308594, + "step": 4305 + }, + { + "epoch": 59.81083442551333, + "grad_norm": 0.20210883021354675, + "learning_rate": 0.0006, + "loss": 3.5366921424865723, + "step": 4306 + }, + { + "epoch": 59.824814329401484, + "grad_norm": 0.224124476313591, + "learning_rate": 0.0006, + "loss": 3.5457663536071777, + "step": 4307 + }, + { + "epoch": 59.83879423328965, + "grad_norm": 0.2186291366815567, + "learning_rate": 0.0006, + "loss": 3.5732779502868652, + "step": 4308 + }, + { + "epoch": 59.8527741371778, + "grad_norm": 0.19785884022712708, + "learning_rate": 0.0006, + "loss": 3.5471811294555664, + "step": 4309 + }, + { + "epoch": 59.86675404106597, + "grad_norm": 0.24774281680583954, + "learning_rate": 0.0006, + "loss": 3.5839807987213135, + "step": 4310 + }, + { + "epoch": 59.88073394495413, + "grad_norm": 0.25087007880210876, + "learning_rate": 0.0006, + "loss": 3.56972336769104, + "step": 4311 + }, + { + "epoch": 59.89471384884229, + "grad_norm": 0.21474683284759521, + "learning_rate": 0.0006, + "loss": 3.5199289321899414, + "step": 4312 + }, + { + "epoch": 59.90869375273045, + "grad_norm": 0.2087765336036682, + "learning_rate": 0.0006, + "loss": 3.5777320861816406, + "step": 4313 + }, + { + "epoch": 59.92267365661861, + "grad_norm": 0.2228539139032364, + "learning_rate": 0.0006, + "loss": 3.531118392944336, + "step": 4314 + }, + { + "epoch": 59.93665356050677, + "grad_norm": 0.2456534057855606, + "learning_rate": 0.0006, + "loss": 3.5448033809661865, + "step": 4315 + }, + { + "epoch": 59.95063346439493, + "grad_norm": 0.2699171006679535, + "learning_rate": 0.0006, + "loss": 3.560724973678589, + "step": 4316 + }, + { + "epoch": 59.964613368283096, + "grad_norm": 0.2664966881275177, + "learning_rate": 0.0006, + "loss": 3.5932974815368652, + "step": 4317 + }, + { + "epoch": 59.97859327217125, + "grad_norm": 0.2137683779001236, + "learning_rate": 0.0006, + "loss": 3.5610086917877197, + "step": 4318 + }, + { + "epoch": 59.992573176059416, + "grad_norm": 0.2067531794309616, + "learning_rate": 0.0006, + "loss": 3.5588603019714355, + "step": 4319 + }, + { + "epoch": 60.0, + "grad_norm": 0.2458500862121582, + "learning_rate": 0.0006, + "loss": 3.5636165142059326, + "step": 4320 + }, + { + "epoch": 60.0, + "eval_loss": 3.967288017272949, + "eval_runtime": 44.2225, + "eval_samples_per_second": 55.221, + "eval_steps_per_second": 3.46, + "step": 4320 + }, + { + "epoch": 60.01397990388816, + "grad_norm": 0.25330978631973267, + "learning_rate": 0.0006, + "loss": 3.524343490600586, + "step": 4321 + }, + { + "epoch": 60.02795980777632, + "grad_norm": 0.3005860447883606, + "learning_rate": 0.0006, + "loss": 3.533761501312256, + "step": 4322 + }, + { + "epoch": 60.04193971166448, + "grad_norm": 0.29054996371269226, + "learning_rate": 0.0006, + "loss": 3.536410331726074, + "step": 4323 + }, + { + "epoch": 60.05591961555265, + "grad_norm": 0.23265458643436432, + "learning_rate": 0.0006, + "loss": 3.4965157508850098, + "step": 4324 + }, + { + "epoch": 60.0698995194408, + "grad_norm": 0.2330862134695053, + "learning_rate": 0.0006, + "loss": 3.4899768829345703, + "step": 4325 + }, + { + "epoch": 60.083879423328966, + "grad_norm": 0.23188516497612, + "learning_rate": 0.0006, + "loss": 3.504887580871582, + "step": 4326 + }, + { + "epoch": 60.09785932721712, + "grad_norm": 0.2152940034866333, + "learning_rate": 0.0006, + "loss": 3.5274603366851807, + "step": 4327 + }, + { + "epoch": 60.111839231105286, + "grad_norm": 0.21918490529060364, + "learning_rate": 0.0006, + "loss": 3.5223636627197266, + "step": 4328 + }, + { + "epoch": 60.12581913499345, + "grad_norm": 0.23193582892417908, + "learning_rate": 0.0006, + "loss": 3.5171899795532227, + "step": 4329 + }, + { + "epoch": 60.139799038881605, + "grad_norm": 0.2336687296628952, + "learning_rate": 0.0006, + "loss": 3.5403029918670654, + "step": 4330 + }, + { + "epoch": 60.15377894276977, + "grad_norm": 0.23833593726158142, + "learning_rate": 0.0006, + "loss": 3.5055623054504395, + "step": 4331 + }, + { + "epoch": 60.16775884665793, + "grad_norm": 0.2389385998249054, + "learning_rate": 0.0006, + "loss": 3.5423574447631836, + "step": 4332 + }, + { + "epoch": 60.18173875054609, + "grad_norm": 0.21729786694049835, + "learning_rate": 0.0006, + "loss": 3.508272647857666, + "step": 4333 + }, + { + "epoch": 60.19571865443425, + "grad_norm": 0.2118137627840042, + "learning_rate": 0.0006, + "loss": 3.556934356689453, + "step": 4334 + }, + { + "epoch": 60.20969855832241, + "grad_norm": 0.23217040300369263, + "learning_rate": 0.0006, + "loss": 3.546459674835205, + "step": 4335 + }, + { + "epoch": 60.22367846221057, + "grad_norm": 0.2446565330028534, + "learning_rate": 0.0006, + "loss": 3.5662269592285156, + "step": 4336 + }, + { + "epoch": 60.237658366098735, + "grad_norm": 0.22065940499305725, + "learning_rate": 0.0006, + "loss": 3.550262451171875, + "step": 4337 + }, + { + "epoch": 60.25163826998689, + "grad_norm": 0.22212697565555573, + "learning_rate": 0.0006, + "loss": 3.5495731830596924, + "step": 4338 + }, + { + "epoch": 60.265618173875055, + "grad_norm": 0.21770696341991425, + "learning_rate": 0.0006, + "loss": 3.5345935821533203, + "step": 4339 + }, + { + "epoch": 60.27959807776322, + "grad_norm": 0.2089550793170929, + "learning_rate": 0.0006, + "loss": 3.5704336166381836, + "step": 4340 + }, + { + "epoch": 60.293577981651374, + "grad_norm": 0.20426379144191742, + "learning_rate": 0.0006, + "loss": 3.546909809112549, + "step": 4341 + }, + { + "epoch": 60.30755788553954, + "grad_norm": 0.2038658708333969, + "learning_rate": 0.0006, + "loss": 3.5444231033325195, + "step": 4342 + }, + { + "epoch": 60.3215377894277, + "grad_norm": 0.20485089719295502, + "learning_rate": 0.0006, + "loss": 3.561206817626953, + "step": 4343 + }, + { + "epoch": 60.33551769331586, + "grad_norm": 0.19151435792446136, + "learning_rate": 0.0006, + "loss": 3.5226097106933594, + "step": 4344 + }, + { + "epoch": 60.34949759720402, + "grad_norm": 0.19078181684017181, + "learning_rate": 0.0006, + "loss": 3.5431442260742188, + "step": 4345 + }, + { + "epoch": 60.36347750109218, + "grad_norm": 0.2032487392425537, + "learning_rate": 0.0006, + "loss": 3.5317721366882324, + "step": 4346 + }, + { + "epoch": 60.37745740498034, + "grad_norm": 0.18330955505371094, + "learning_rate": 0.0006, + "loss": 3.521145820617676, + "step": 4347 + }, + { + "epoch": 60.391437308868504, + "grad_norm": 0.18987730145454407, + "learning_rate": 0.0006, + "loss": 3.4980595111846924, + "step": 4348 + }, + { + "epoch": 60.40541721275666, + "grad_norm": 0.19873160123825073, + "learning_rate": 0.0006, + "loss": 3.5639595985412598, + "step": 4349 + }, + { + "epoch": 60.419397116644824, + "grad_norm": 0.20323137938976288, + "learning_rate": 0.0006, + "loss": 3.5364837646484375, + "step": 4350 + }, + { + "epoch": 60.43337702053299, + "grad_norm": 0.20755112171173096, + "learning_rate": 0.0006, + "loss": 3.565398931503296, + "step": 4351 + }, + { + "epoch": 60.44735692442114, + "grad_norm": 0.19222456216812134, + "learning_rate": 0.0006, + "loss": 3.569659948348999, + "step": 4352 + }, + { + "epoch": 60.46133682830931, + "grad_norm": 0.18698982894420624, + "learning_rate": 0.0006, + "loss": 3.5305557250976562, + "step": 4353 + }, + { + "epoch": 60.47531673219746, + "grad_norm": 0.19300664961338043, + "learning_rate": 0.0006, + "loss": 3.5398356914520264, + "step": 4354 + }, + { + "epoch": 60.489296636085626, + "grad_norm": 0.19573862850666046, + "learning_rate": 0.0006, + "loss": 3.5549232959747314, + "step": 4355 + }, + { + "epoch": 60.50327653997379, + "grad_norm": 0.21893447637557983, + "learning_rate": 0.0006, + "loss": 3.5427680015563965, + "step": 4356 + }, + { + "epoch": 60.517256443861946, + "grad_norm": 0.2375156730413437, + "learning_rate": 0.0006, + "loss": 3.5368900299072266, + "step": 4357 + }, + { + "epoch": 60.53123634775011, + "grad_norm": 0.2430058717727661, + "learning_rate": 0.0006, + "loss": 3.5812578201293945, + "step": 4358 + }, + { + "epoch": 60.54521625163827, + "grad_norm": 0.21769747138023376, + "learning_rate": 0.0006, + "loss": 3.563126564025879, + "step": 4359 + }, + { + "epoch": 60.55919615552643, + "grad_norm": 0.19841895997524261, + "learning_rate": 0.0006, + "loss": 3.5683727264404297, + "step": 4360 + }, + { + "epoch": 60.57317605941459, + "grad_norm": 0.22039084136486053, + "learning_rate": 0.0006, + "loss": 3.5417304039001465, + "step": 4361 + }, + { + "epoch": 60.58715596330275, + "grad_norm": 0.22528418898582458, + "learning_rate": 0.0006, + "loss": 3.5606675148010254, + "step": 4362 + }, + { + "epoch": 60.60113586719091, + "grad_norm": 0.19975383579730988, + "learning_rate": 0.0006, + "loss": 3.5345380306243896, + "step": 4363 + }, + { + "epoch": 60.615115771079076, + "grad_norm": 0.18953508138656616, + "learning_rate": 0.0006, + "loss": 3.523921012878418, + "step": 4364 + }, + { + "epoch": 60.62909567496723, + "grad_norm": 0.19997848570346832, + "learning_rate": 0.0006, + "loss": 3.553741931915283, + "step": 4365 + }, + { + "epoch": 60.643075578855395, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.57025408744812, + "step": 4366 + }, + { + "epoch": 60.65705548274356, + "grad_norm": 0.20452328026294708, + "learning_rate": 0.0006, + "loss": 3.5293073654174805, + "step": 4367 + }, + { + "epoch": 60.671035386631715, + "grad_norm": 0.18740518391132355, + "learning_rate": 0.0006, + "loss": 3.520880699157715, + "step": 4368 + }, + { + "epoch": 60.68501529051988, + "grad_norm": 0.19408279657363892, + "learning_rate": 0.0006, + "loss": 3.553086757659912, + "step": 4369 + }, + { + "epoch": 60.69899519440804, + "grad_norm": 0.19472180306911469, + "learning_rate": 0.0006, + "loss": 3.557744026184082, + "step": 4370 + }, + { + "epoch": 60.7129750982962, + "grad_norm": 0.18123279511928558, + "learning_rate": 0.0006, + "loss": 3.547276258468628, + "step": 4371 + }, + { + "epoch": 60.72695500218436, + "grad_norm": 0.21011893451213837, + "learning_rate": 0.0006, + "loss": 3.544990062713623, + "step": 4372 + }, + { + "epoch": 60.74093490607252, + "grad_norm": 0.25020623207092285, + "learning_rate": 0.0006, + "loss": 3.541600227355957, + "step": 4373 + }, + { + "epoch": 60.75491480996068, + "grad_norm": 0.2579628825187683, + "learning_rate": 0.0006, + "loss": 3.547964096069336, + "step": 4374 + }, + { + "epoch": 60.768894713848844, + "grad_norm": 0.23156116902828217, + "learning_rate": 0.0006, + "loss": 3.550957202911377, + "step": 4375 + }, + { + "epoch": 60.782874617737, + "grad_norm": 0.22070197761058807, + "learning_rate": 0.0006, + "loss": 3.4950358867645264, + "step": 4376 + }, + { + "epoch": 60.796854521625164, + "grad_norm": 0.222877636551857, + "learning_rate": 0.0006, + "loss": 3.5622036457061768, + "step": 4377 + }, + { + "epoch": 60.81083442551333, + "grad_norm": 0.21662060916423798, + "learning_rate": 0.0006, + "loss": 3.551515579223633, + "step": 4378 + }, + { + "epoch": 60.824814329401484, + "grad_norm": 0.22380465269088745, + "learning_rate": 0.0006, + "loss": 3.5552866458892822, + "step": 4379 + }, + { + "epoch": 60.83879423328965, + "grad_norm": 0.24023373425006866, + "learning_rate": 0.0006, + "loss": 3.5741777420043945, + "step": 4380 + }, + { + "epoch": 60.8527741371778, + "grad_norm": 0.1921556293964386, + "learning_rate": 0.0006, + "loss": 3.535435199737549, + "step": 4381 + }, + { + "epoch": 60.86675404106597, + "grad_norm": 0.20002295076847076, + "learning_rate": 0.0006, + "loss": 3.5660810470581055, + "step": 4382 + }, + { + "epoch": 60.88073394495413, + "grad_norm": 0.22797644138336182, + "learning_rate": 0.0006, + "loss": 3.5361297130584717, + "step": 4383 + }, + { + "epoch": 60.89471384884229, + "grad_norm": 0.24129843711853027, + "learning_rate": 0.0006, + "loss": 3.578810214996338, + "step": 4384 + }, + { + "epoch": 60.90869375273045, + "grad_norm": 0.2363646924495697, + "learning_rate": 0.0006, + "loss": 3.5245485305786133, + "step": 4385 + }, + { + "epoch": 60.92267365661861, + "grad_norm": 0.22811074554920197, + "learning_rate": 0.0006, + "loss": 3.551769733428955, + "step": 4386 + }, + { + "epoch": 60.93665356050677, + "grad_norm": 0.2204643338918686, + "learning_rate": 0.0006, + "loss": 3.5833442211151123, + "step": 4387 + }, + { + "epoch": 60.95063346439493, + "grad_norm": 0.21389783918857574, + "learning_rate": 0.0006, + "loss": 3.531735897064209, + "step": 4388 + }, + { + "epoch": 60.964613368283096, + "grad_norm": 0.22142091393470764, + "learning_rate": 0.0006, + "loss": 3.5482523441314697, + "step": 4389 + }, + { + "epoch": 60.97859327217125, + "grad_norm": 0.21186122298240662, + "learning_rate": 0.0006, + "loss": 3.540555477142334, + "step": 4390 + }, + { + "epoch": 60.992573176059416, + "grad_norm": 0.19939634203910828, + "learning_rate": 0.0006, + "loss": 3.576408624649048, + "step": 4391 + }, + { + "epoch": 61.0, + "grad_norm": 0.23696118593215942, + "learning_rate": 0.0006, + "loss": 3.5633749961853027, + "step": 4392 + }, + { + "epoch": 61.0, + "eval_loss": 3.9743118286132812, + "eval_runtime": 44.7392, + "eval_samples_per_second": 54.583, + "eval_steps_per_second": 3.42, + "step": 4392 + }, + { + "epoch": 61.01397990388816, + "grad_norm": 0.24024035036563873, + "learning_rate": 0.0006, + "loss": 3.532285690307617, + "step": 4393 + }, + { + "epoch": 61.02795980777632, + "grad_norm": 0.2475728690624237, + "learning_rate": 0.0006, + "loss": 3.543304920196533, + "step": 4394 + }, + { + "epoch": 61.04193971166448, + "grad_norm": 0.23326511681079865, + "learning_rate": 0.0006, + "loss": 3.5022737979888916, + "step": 4395 + }, + { + "epoch": 61.05591961555265, + "grad_norm": 0.21414779126644135, + "learning_rate": 0.0006, + "loss": 3.5337772369384766, + "step": 4396 + }, + { + "epoch": 61.0698995194408, + "grad_norm": 0.2234504371881485, + "learning_rate": 0.0006, + "loss": 3.539985179901123, + "step": 4397 + }, + { + "epoch": 61.083879423328966, + "grad_norm": 0.2199121117591858, + "learning_rate": 0.0006, + "loss": 3.5312232971191406, + "step": 4398 + }, + { + "epoch": 61.09785932721712, + "grad_norm": 0.2444634735584259, + "learning_rate": 0.0006, + "loss": 3.527348518371582, + "step": 4399 + }, + { + "epoch": 61.111839231105286, + "grad_norm": 0.29022055864334106, + "learning_rate": 0.0006, + "loss": 3.4902563095092773, + "step": 4400 + }, + { + "epoch": 61.12581913499345, + "grad_norm": 0.29494911432266235, + "learning_rate": 0.0006, + "loss": 3.498292922973633, + "step": 4401 + }, + { + "epoch": 61.139799038881605, + "grad_norm": 0.22292214632034302, + "learning_rate": 0.0006, + "loss": 3.533914089202881, + "step": 4402 + }, + { + "epoch": 61.15377894276977, + "grad_norm": 0.22136220335960388, + "learning_rate": 0.0006, + "loss": 3.5109519958496094, + "step": 4403 + }, + { + "epoch": 61.16775884665793, + "grad_norm": 0.2325095534324646, + "learning_rate": 0.0006, + "loss": 3.5289368629455566, + "step": 4404 + }, + { + "epoch": 61.18173875054609, + "grad_norm": 0.2413562536239624, + "learning_rate": 0.0006, + "loss": 3.518467903137207, + "step": 4405 + }, + { + "epoch": 61.19571865443425, + "grad_norm": 0.25906774401664734, + "learning_rate": 0.0006, + "loss": 3.525516986846924, + "step": 4406 + }, + { + "epoch": 61.20969855832241, + "grad_norm": 0.27686211466789246, + "learning_rate": 0.0006, + "loss": 3.5516865253448486, + "step": 4407 + }, + { + "epoch": 61.22367846221057, + "grad_norm": 0.2906339764595032, + "learning_rate": 0.0006, + "loss": 3.541128158569336, + "step": 4408 + }, + { + "epoch": 61.237658366098735, + "grad_norm": 0.27868953347206116, + "learning_rate": 0.0006, + "loss": 3.5193347930908203, + "step": 4409 + }, + { + "epoch": 61.25163826998689, + "grad_norm": 0.27658969163894653, + "learning_rate": 0.0006, + "loss": 3.502227783203125, + "step": 4410 + }, + { + "epoch": 61.265618173875055, + "grad_norm": 0.2933507561683655, + "learning_rate": 0.0006, + "loss": 3.530291795730591, + "step": 4411 + }, + { + "epoch": 61.27959807776322, + "grad_norm": 0.2631373405456543, + "learning_rate": 0.0006, + "loss": 3.551851749420166, + "step": 4412 + }, + { + "epoch": 61.293577981651374, + "grad_norm": 0.2546952962875366, + "learning_rate": 0.0006, + "loss": 3.5503034591674805, + "step": 4413 + }, + { + "epoch": 61.30755788553954, + "grad_norm": 0.23794181644916534, + "learning_rate": 0.0006, + "loss": 3.546926498413086, + "step": 4414 + }, + { + "epoch": 61.3215377894277, + "grad_norm": 0.24853180348873138, + "learning_rate": 0.0006, + "loss": 3.514120101928711, + "step": 4415 + }, + { + "epoch": 61.33551769331586, + "grad_norm": 0.22304897010326385, + "learning_rate": 0.0006, + "loss": 3.5430846214294434, + "step": 4416 + }, + { + "epoch": 61.34949759720402, + "grad_norm": 0.2315143197774887, + "learning_rate": 0.0006, + "loss": 3.520509719848633, + "step": 4417 + }, + { + "epoch": 61.36347750109218, + "grad_norm": 0.22943219542503357, + "learning_rate": 0.0006, + "loss": 3.5467031002044678, + "step": 4418 + }, + { + "epoch": 61.37745740498034, + "grad_norm": 0.20610259473323822, + "learning_rate": 0.0006, + "loss": 3.523524761199951, + "step": 4419 + }, + { + "epoch": 61.391437308868504, + "grad_norm": 0.23042091727256775, + "learning_rate": 0.0006, + "loss": 3.5619053840637207, + "step": 4420 + }, + { + "epoch": 61.40541721275666, + "grad_norm": 0.23525655269622803, + "learning_rate": 0.0006, + "loss": 3.5647311210632324, + "step": 4421 + }, + { + "epoch": 61.419397116644824, + "grad_norm": 0.24424530565738678, + "learning_rate": 0.0006, + "loss": 3.5278732776641846, + "step": 4422 + }, + { + "epoch": 61.43337702053299, + "grad_norm": 0.22195497155189514, + "learning_rate": 0.0006, + "loss": 3.500657558441162, + "step": 4423 + }, + { + "epoch": 61.44735692442114, + "grad_norm": 0.20596756041049957, + "learning_rate": 0.0006, + "loss": 3.5107016563415527, + "step": 4424 + }, + { + "epoch": 61.46133682830931, + "grad_norm": 0.21293926239013672, + "learning_rate": 0.0006, + "loss": 3.5248196125030518, + "step": 4425 + }, + { + "epoch": 61.47531673219746, + "grad_norm": 0.21993403136730194, + "learning_rate": 0.0006, + "loss": 3.5247411727905273, + "step": 4426 + }, + { + "epoch": 61.489296636085626, + "grad_norm": 0.19609302282333374, + "learning_rate": 0.0006, + "loss": 3.543978452682495, + "step": 4427 + }, + { + "epoch": 61.50327653997379, + "grad_norm": 0.2064359486103058, + "learning_rate": 0.0006, + "loss": 3.525879144668579, + "step": 4428 + }, + { + "epoch": 61.517256443861946, + "grad_norm": 0.221832275390625, + "learning_rate": 0.0006, + "loss": 3.542086601257324, + "step": 4429 + }, + { + "epoch": 61.53123634775011, + "grad_norm": 0.20173773169517517, + "learning_rate": 0.0006, + "loss": 3.5395596027374268, + "step": 4430 + }, + { + "epoch": 61.54521625163827, + "grad_norm": 0.21064360439777374, + "learning_rate": 0.0006, + "loss": 3.5651049613952637, + "step": 4431 + }, + { + "epoch": 61.55919615552643, + "grad_norm": 0.2079596370458603, + "learning_rate": 0.0006, + "loss": 3.513719081878662, + "step": 4432 + }, + { + "epoch": 61.57317605941459, + "grad_norm": 0.1862022429704666, + "learning_rate": 0.0006, + "loss": 3.5438897609710693, + "step": 4433 + }, + { + "epoch": 61.58715596330275, + "grad_norm": 0.202021524310112, + "learning_rate": 0.0006, + "loss": 3.5497570037841797, + "step": 4434 + }, + { + "epoch": 61.60113586719091, + "grad_norm": 0.2252725064754486, + "learning_rate": 0.0006, + "loss": 3.5361452102661133, + "step": 4435 + }, + { + "epoch": 61.615115771079076, + "grad_norm": 0.22194477915763855, + "learning_rate": 0.0006, + "loss": 3.5436792373657227, + "step": 4436 + }, + { + "epoch": 61.62909567496723, + "grad_norm": 0.20660430192947388, + "learning_rate": 0.0006, + "loss": 3.5347955226898193, + "step": 4437 + }, + { + "epoch": 61.643075578855395, + "grad_norm": 0.19738668203353882, + "learning_rate": 0.0006, + "loss": 3.5478930473327637, + "step": 4438 + }, + { + "epoch": 61.65705548274356, + "grad_norm": 0.19570894539356232, + "learning_rate": 0.0006, + "loss": 3.581364154815674, + "step": 4439 + }, + { + "epoch": 61.671035386631715, + "grad_norm": 0.2311817854642868, + "learning_rate": 0.0006, + "loss": 3.5336194038391113, + "step": 4440 + }, + { + "epoch": 61.68501529051988, + "grad_norm": 0.23114202916622162, + "learning_rate": 0.0006, + "loss": 3.5473289489746094, + "step": 4441 + }, + { + "epoch": 61.69899519440804, + "grad_norm": 0.2412044256925583, + "learning_rate": 0.0006, + "loss": 3.558802604675293, + "step": 4442 + }, + { + "epoch": 61.7129750982962, + "grad_norm": 0.22932057082653046, + "learning_rate": 0.0006, + "loss": 3.553133726119995, + "step": 4443 + }, + { + "epoch": 61.72695500218436, + "grad_norm": 0.23192140460014343, + "learning_rate": 0.0006, + "loss": 3.5247159004211426, + "step": 4444 + }, + { + "epoch": 61.74093490607252, + "grad_norm": 0.23548972606658936, + "learning_rate": 0.0006, + "loss": 3.5654778480529785, + "step": 4445 + }, + { + "epoch": 61.75491480996068, + "grad_norm": 0.20992626249790192, + "learning_rate": 0.0006, + "loss": 3.5568647384643555, + "step": 4446 + }, + { + "epoch": 61.768894713848844, + "grad_norm": 0.20303797721862793, + "learning_rate": 0.0006, + "loss": 3.564765453338623, + "step": 4447 + }, + { + "epoch": 61.782874617737, + "grad_norm": 0.2019573301076889, + "learning_rate": 0.0006, + "loss": 3.523521900177002, + "step": 4448 + }, + { + "epoch": 61.796854521625164, + "grad_norm": 0.20591112971305847, + "learning_rate": 0.0006, + "loss": 3.5361227989196777, + "step": 4449 + }, + { + "epoch": 61.81083442551333, + "grad_norm": 0.21811535954475403, + "learning_rate": 0.0006, + "loss": 3.56982159614563, + "step": 4450 + }, + { + "epoch": 61.824814329401484, + "grad_norm": 0.24934124946594238, + "learning_rate": 0.0006, + "loss": 3.5518784523010254, + "step": 4451 + }, + { + "epoch": 61.83879423328965, + "grad_norm": 0.28142663836479187, + "learning_rate": 0.0006, + "loss": 3.5480635166168213, + "step": 4452 + }, + { + "epoch": 61.8527741371778, + "grad_norm": 0.27585235238075256, + "learning_rate": 0.0006, + "loss": 3.56685733795166, + "step": 4453 + }, + { + "epoch": 61.86675404106597, + "grad_norm": 0.24309827387332916, + "learning_rate": 0.0006, + "loss": 3.551058769226074, + "step": 4454 + }, + { + "epoch": 61.88073394495413, + "grad_norm": 0.22480300068855286, + "learning_rate": 0.0006, + "loss": 3.5644495487213135, + "step": 4455 + }, + { + "epoch": 61.89471384884229, + "grad_norm": 0.19861266016960144, + "learning_rate": 0.0006, + "loss": 3.5529613494873047, + "step": 4456 + }, + { + "epoch": 61.90869375273045, + "grad_norm": 0.20176313817501068, + "learning_rate": 0.0006, + "loss": 3.5173492431640625, + "step": 4457 + }, + { + "epoch": 61.92267365661861, + "grad_norm": 0.1964731365442276, + "learning_rate": 0.0006, + "loss": 3.5555479526519775, + "step": 4458 + }, + { + "epoch": 61.93665356050677, + "grad_norm": 0.20427751541137695, + "learning_rate": 0.0006, + "loss": 3.5312647819519043, + "step": 4459 + }, + { + "epoch": 61.95063346439493, + "grad_norm": 0.21940940618515015, + "learning_rate": 0.0006, + "loss": 3.536012649536133, + "step": 4460 + }, + { + "epoch": 61.964613368283096, + "grad_norm": 0.2100883573293686, + "learning_rate": 0.0006, + "loss": 3.5627548694610596, + "step": 4461 + }, + { + "epoch": 61.97859327217125, + "grad_norm": 0.21980689465999603, + "learning_rate": 0.0006, + "loss": 3.5933351516723633, + "step": 4462 + }, + { + "epoch": 61.992573176059416, + "grad_norm": 0.23822137713432312, + "learning_rate": 0.0006, + "loss": 3.567392349243164, + "step": 4463 + }, + { + "epoch": 62.0, + "grad_norm": 0.293637752532959, + "learning_rate": 0.0006, + "loss": 3.5707521438598633, + "step": 4464 + }, + { + "epoch": 62.0, + "eval_loss": 3.9813005924224854, + "eval_runtime": 44.8261, + "eval_samples_per_second": 54.477, + "eval_steps_per_second": 3.413, + "step": 4464 + }, + { + "epoch": 62.01397990388816, + "grad_norm": 0.2819560766220093, + "learning_rate": 0.0006, + "loss": 3.5146231651306152, + "step": 4465 + }, + { + "epoch": 62.02795980777632, + "grad_norm": 0.2446105033159256, + "learning_rate": 0.0006, + "loss": 3.48366117477417, + "step": 4466 + }, + { + "epoch": 62.04193971166448, + "grad_norm": 0.26826128363609314, + "learning_rate": 0.0006, + "loss": 3.511063814163208, + "step": 4467 + }, + { + "epoch": 62.05591961555265, + "grad_norm": 0.28266897797584534, + "learning_rate": 0.0006, + "loss": 3.560831069946289, + "step": 4468 + }, + { + "epoch": 62.0698995194408, + "grad_norm": 0.262866348028183, + "learning_rate": 0.0006, + "loss": 3.5248615741729736, + "step": 4469 + }, + { + "epoch": 62.083879423328966, + "grad_norm": 0.22957175970077515, + "learning_rate": 0.0006, + "loss": 3.518132209777832, + "step": 4470 + }, + { + "epoch": 62.09785932721712, + "grad_norm": 0.2311105579137802, + "learning_rate": 0.0006, + "loss": 3.520376443862915, + "step": 4471 + }, + { + "epoch": 62.111839231105286, + "grad_norm": 0.2455885261297226, + "learning_rate": 0.0006, + "loss": 3.532329797744751, + "step": 4472 + }, + { + "epoch": 62.12581913499345, + "grad_norm": 0.22050215303897858, + "learning_rate": 0.0006, + "loss": 3.5367608070373535, + "step": 4473 + }, + { + "epoch": 62.139799038881605, + "grad_norm": 0.2187507450580597, + "learning_rate": 0.0006, + "loss": 3.5165085792541504, + "step": 4474 + }, + { + "epoch": 62.15377894276977, + "grad_norm": 0.23510432243347168, + "learning_rate": 0.0006, + "loss": 3.5357909202575684, + "step": 4475 + }, + { + "epoch": 62.16775884665793, + "grad_norm": 0.22336673736572266, + "learning_rate": 0.0006, + "loss": 3.5183372497558594, + "step": 4476 + }, + { + "epoch": 62.18173875054609, + "grad_norm": 0.22019170224666595, + "learning_rate": 0.0006, + "loss": 3.532637596130371, + "step": 4477 + }, + { + "epoch": 62.19571865443425, + "grad_norm": 0.20902299880981445, + "learning_rate": 0.0006, + "loss": 3.5421581268310547, + "step": 4478 + }, + { + "epoch": 62.20969855832241, + "grad_norm": 0.22846505045890808, + "learning_rate": 0.0006, + "loss": 3.5008513927459717, + "step": 4479 + }, + { + "epoch": 62.22367846221057, + "grad_norm": 0.23657570779323578, + "learning_rate": 0.0006, + "loss": 3.5454330444335938, + "step": 4480 + }, + { + "epoch": 62.237658366098735, + "grad_norm": 0.22021226584911346, + "learning_rate": 0.0006, + "loss": 3.535137891769409, + "step": 4481 + }, + { + "epoch": 62.25163826998689, + "grad_norm": 0.21457694470882416, + "learning_rate": 0.0006, + "loss": 3.5051913261413574, + "step": 4482 + }, + { + "epoch": 62.265618173875055, + "grad_norm": 0.20432431995868683, + "learning_rate": 0.0006, + "loss": 3.5237550735473633, + "step": 4483 + }, + { + "epoch": 62.27959807776322, + "grad_norm": 0.20499777793884277, + "learning_rate": 0.0006, + "loss": 3.537209987640381, + "step": 4484 + }, + { + "epoch": 62.293577981651374, + "grad_norm": 0.21323661506175995, + "learning_rate": 0.0006, + "loss": 3.518765687942505, + "step": 4485 + }, + { + "epoch": 62.30755788553954, + "grad_norm": 0.19734761118888855, + "learning_rate": 0.0006, + "loss": 3.5132994651794434, + "step": 4486 + }, + { + "epoch": 62.3215377894277, + "grad_norm": 0.1844230592250824, + "learning_rate": 0.0006, + "loss": 3.5348291397094727, + "step": 4487 + }, + { + "epoch": 62.33551769331586, + "grad_norm": 0.20451737940311432, + "learning_rate": 0.0006, + "loss": 3.5055956840515137, + "step": 4488 + }, + { + "epoch": 62.34949759720402, + "grad_norm": 0.20004220306873322, + "learning_rate": 0.0006, + "loss": 3.558253526687622, + "step": 4489 + }, + { + "epoch": 62.36347750109218, + "grad_norm": 0.20544862747192383, + "learning_rate": 0.0006, + "loss": 3.5031163692474365, + "step": 4490 + }, + { + "epoch": 62.37745740498034, + "grad_norm": 0.23045147955417633, + "learning_rate": 0.0006, + "loss": 3.526170253753662, + "step": 4491 + }, + { + "epoch": 62.391437308868504, + "grad_norm": 0.2580485939979553, + "learning_rate": 0.0006, + "loss": 3.561131238937378, + "step": 4492 + }, + { + "epoch": 62.40541721275666, + "grad_norm": 0.24825656414031982, + "learning_rate": 0.0006, + "loss": 3.5550408363342285, + "step": 4493 + }, + { + "epoch": 62.419397116644824, + "grad_norm": 0.2317914366722107, + "learning_rate": 0.0006, + "loss": 3.543360948562622, + "step": 4494 + }, + { + "epoch": 62.43337702053299, + "grad_norm": 0.2186558097600937, + "learning_rate": 0.0006, + "loss": 3.5293631553649902, + "step": 4495 + }, + { + "epoch": 62.44735692442114, + "grad_norm": 0.22694920003414154, + "learning_rate": 0.0006, + "loss": 3.5315871238708496, + "step": 4496 + }, + { + "epoch": 62.46133682830931, + "grad_norm": 0.24042636156082153, + "learning_rate": 0.0006, + "loss": 3.507556915283203, + "step": 4497 + }, + { + "epoch": 62.47531673219746, + "grad_norm": 0.23853783309459686, + "learning_rate": 0.0006, + "loss": 3.546670913696289, + "step": 4498 + }, + { + "epoch": 62.489296636085626, + "grad_norm": 0.23252007365226746, + "learning_rate": 0.0006, + "loss": 3.522880792617798, + "step": 4499 + }, + { + "epoch": 62.50327653997379, + "grad_norm": 0.20553545653820038, + "learning_rate": 0.0006, + "loss": 3.5367445945739746, + "step": 4500 + }, + { + "epoch": 62.517256443861946, + "grad_norm": 0.19607895612716675, + "learning_rate": 0.0006, + "loss": 3.5319433212280273, + "step": 4501 + }, + { + "epoch": 62.53123634775011, + "grad_norm": 0.21482273936271667, + "learning_rate": 0.0006, + "loss": 3.525094509124756, + "step": 4502 + }, + { + "epoch": 62.54521625163827, + "grad_norm": 0.18248772621154785, + "learning_rate": 0.0006, + "loss": 3.5324039459228516, + "step": 4503 + }, + { + "epoch": 62.55919615552643, + "grad_norm": 0.19388431310653687, + "learning_rate": 0.0006, + "loss": 3.5579934120178223, + "step": 4504 + }, + { + "epoch": 62.57317605941459, + "grad_norm": 0.1987910121679306, + "learning_rate": 0.0006, + "loss": 3.5049524307250977, + "step": 4505 + }, + { + "epoch": 62.58715596330275, + "grad_norm": 0.2176462560892105, + "learning_rate": 0.0006, + "loss": 3.517348051071167, + "step": 4506 + }, + { + "epoch": 62.60113586719091, + "grad_norm": 0.20312298834323883, + "learning_rate": 0.0006, + "loss": 3.589355230331421, + "step": 4507 + }, + { + "epoch": 62.615115771079076, + "grad_norm": 0.20725034177303314, + "learning_rate": 0.0006, + "loss": 3.5353567600250244, + "step": 4508 + }, + { + "epoch": 62.62909567496723, + "grad_norm": 0.1944240778684616, + "learning_rate": 0.0006, + "loss": 3.5435595512390137, + "step": 4509 + }, + { + "epoch": 62.643075578855395, + "grad_norm": 0.1925448626279831, + "learning_rate": 0.0006, + "loss": 3.5406274795532227, + "step": 4510 + }, + { + "epoch": 62.65705548274356, + "grad_norm": 0.1932716965675354, + "learning_rate": 0.0006, + "loss": 3.582890748977661, + "step": 4511 + }, + { + "epoch": 62.671035386631715, + "grad_norm": 0.1993696093559265, + "learning_rate": 0.0006, + "loss": 3.533501148223877, + "step": 4512 + }, + { + "epoch": 62.68501529051988, + "grad_norm": 0.22586803138256073, + "learning_rate": 0.0006, + "loss": 3.5265021324157715, + "step": 4513 + }, + { + "epoch": 62.69899519440804, + "grad_norm": 0.22882722318172455, + "learning_rate": 0.0006, + "loss": 3.5486440658569336, + "step": 4514 + }, + { + "epoch": 62.7129750982962, + "grad_norm": 0.21674324572086334, + "learning_rate": 0.0006, + "loss": 3.5362353324890137, + "step": 4515 + }, + { + "epoch": 62.72695500218436, + "grad_norm": 0.1941487342119217, + "learning_rate": 0.0006, + "loss": 3.5191574096679688, + "step": 4516 + }, + { + "epoch": 62.74093490607252, + "grad_norm": 0.2034437507390976, + "learning_rate": 0.0006, + "loss": 3.5412280559539795, + "step": 4517 + }, + { + "epoch": 62.75491480996068, + "grad_norm": 0.22009888291358948, + "learning_rate": 0.0006, + "loss": 3.589108467102051, + "step": 4518 + }, + { + "epoch": 62.768894713848844, + "grad_norm": 0.21187400817871094, + "learning_rate": 0.0006, + "loss": 3.527048349380493, + "step": 4519 + }, + { + "epoch": 62.782874617737, + "grad_norm": 0.2089816778898239, + "learning_rate": 0.0006, + "loss": 3.551755905151367, + "step": 4520 + }, + { + "epoch": 62.796854521625164, + "grad_norm": 0.2095830738544464, + "learning_rate": 0.0006, + "loss": 3.5302011966705322, + "step": 4521 + }, + { + "epoch": 62.81083442551333, + "grad_norm": 0.20930075645446777, + "learning_rate": 0.0006, + "loss": 3.5276856422424316, + "step": 4522 + }, + { + "epoch": 62.824814329401484, + "grad_norm": 0.1876252442598343, + "learning_rate": 0.0006, + "loss": 3.5467052459716797, + "step": 4523 + }, + { + "epoch": 62.83879423328965, + "grad_norm": 0.21137461066246033, + "learning_rate": 0.0006, + "loss": 3.5446524620056152, + "step": 4524 + }, + { + "epoch": 62.8527741371778, + "grad_norm": 0.21340630948543549, + "learning_rate": 0.0006, + "loss": 3.580069065093994, + "step": 4525 + }, + { + "epoch": 62.86675404106597, + "grad_norm": 0.22623291611671448, + "learning_rate": 0.0006, + "loss": 3.5203771591186523, + "step": 4526 + }, + { + "epoch": 62.88073394495413, + "grad_norm": 0.20891177654266357, + "learning_rate": 0.0006, + "loss": 3.5408263206481934, + "step": 4527 + }, + { + "epoch": 62.89471384884229, + "grad_norm": 0.19802644848823547, + "learning_rate": 0.0006, + "loss": 3.521557569503784, + "step": 4528 + }, + { + "epoch": 62.90869375273045, + "grad_norm": 0.20889638364315033, + "learning_rate": 0.0006, + "loss": 3.535468578338623, + "step": 4529 + }, + { + "epoch": 62.92267365661861, + "grad_norm": 0.20450912415981293, + "learning_rate": 0.0006, + "loss": 3.5473756790161133, + "step": 4530 + }, + { + "epoch": 62.93665356050677, + "grad_norm": 0.24126461148262024, + "learning_rate": 0.0006, + "loss": 3.5418906211853027, + "step": 4531 + }, + { + "epoch": 62.95063346439493, + "grad_norm": 0.2789648473262787, + "learning_rate": 0.0006, + "loss": 3.5500879287719727, + "step": 4532 + }, + { + "epoch": 62.964613368283096, + "grad_norm": 0.2855475842952728, + "learning_rate": 0.0006, + "loss": 3.5589256286621094, + "step": 4533 + }, + { + "epoch": 62.97859327217125, + "grad_norm": 0.2353338748216629, + "learning_rate": 0.0006, + "loss": 3.576944351196289, + "step": 4534 + }, + { + "epoch": 62.992573176059416, + "grad_norm": 0.2360614389181137, + "learning_rate": 0.0006, + "loss": 3.550532341003418, + "step": 4535 + }, + { + "epoch": 63.0, + "grad_norm": 0.28869640827178955, + "learning_rate": 0.0006, + "loss": 3.4976563453674316, + "step": 4536 + }, + { + "epoch": 63.0, + "eval_loss": 3.967819929122925, + "eval_runtime": 44.8611, + "eval_samples_per_second": 54.435, + "eval_steps_per_second": 3.411, + "step": 4536 + }, + { + "epoch": 63.01397990388816, + "grad_norm": 0.2646687626838684, + "learning_rate": 0.0006, + "loss": 3.498749017715454, + "step": 4537 + }, + { + "epoch": 63.02795980777632, + "grad_norm": 0.26432088017463684, + "learning_rate": 0.0006, + "loss": 3.5114989280700684, + "step": 4538 + }, + { + "epoch": 63.04193971166448, + "grad_norm": 0.2657051980495453, + "learning_rate": 0.0006, + "loss": 3.5383224487304688, + "step": 4539 + }, + { + "epoch": 63.05591961555265, + "grad_norm": 0.24790945649147034, + "learning_rate": 0.0006, + "loss": 3.5148894786834717, + "step": 4540 + }, + { + "epoch": 63.0698995194408, + "grad_norm": 0.2703767716884613, + "learning_rate": 0.0006, + "loss": 3.5212574005126953, + "step": 4541 + }, + { + "epoch": 63.083879423328966, + "grad_norm": 0.28064072132110596, + "learning_rate": 0.0006, + "loss": 3.4917726516723633, + "step": 4542 + }, + { + "epoch": 63.09785932721712, + "grad_norm": 0.30201056599617004, + "learning_rate": 0.0006, + "loss": 3.524174213409424, + "step": 4543 + }, + { + "epoch": 63.111839231105286, + "grad_norm": 0.2668539583683014, + "learning_rate": 0.0006, + "loss": 3.5284507274627686, + "step": 4544 + }, + { + "epoch": 63.12581913499345, + "grad_norm": 0.23223146796226501, + "learning_rate": 0.0006, + "loss": 3.500607967376709, + "step": 4545 + }, + { + "epoch": 63.139799038881605, + "grad_norm": 0.22300627827644348, + "learning_rate": 0.0006, + "loss": 3.509087562561035, + "step": 4546 + }, + { + "epoch": 63.15377894276977, + "grad_norm": 0.217527836561203, + "learning_rate": 0.0006, + "loss": 3.518986225128174, + "step": 4547 + }, + { + "epoch": 63.16775884665793, + "grad_norm": 0.2347487509250641, + "learning_rate": 0.0006, + "loss": 3.5288784503936768, + "step": 4548 + }, + { + "epoch": 63.18173875054609, + "grad_norm": 0.21052609384059906, + "learning_rate": 0.0006, + "loss": 3.534576892852783, + "step": 4549 + }, + { + "epoch": 63.19571865443425, + "grad_norm": 0.20836210250854492, + "learning_rate": 0.0006, + "loss": 3.540663242340088, + "step": 4550 + }, + { + "epoch": 63.20969855832241, + "grad_norm": 0.2257382571697235, + "learning_rate": 0.0006, + "loss": 3.5042576789855957, + "step": 4551 + }, + { + "epoch": 63.22367846221057, + "grad_norm": 0.25684455037117004, + "learning_rate": 0.0006, + "loss": 3.546757221221924, + "step": 4552 + }, + { + "epoch": 63.237658366098735, + "grad_norm": 0.25408735871315, + "learning_rate": 0.0006, + "loss": 3.5245237350463867, + "step": 4553 + }, + { + "epoch": 63.25163826998689, + "grad_norm": 0.2105615735054016, + "learning_rate": 0.0006, + "loss": 3.4935879707336426, + "step": 4554 + }, + { + "epoch": 63.265618173875055, + "grad_norm": 0.23599031567573547, + "learning_rate": 0.0006, + "loss": 3.5445284843444824, + "step": 4555 + }, + { + "epoch": 63.27959807776322, + "grad_norm": 0.2786335349082947, + "learning_rate": 0.0006, + "loss": 3.5432677268981934, + "step": 4556 + }, + { + "epoch": 63.293577981651374, + "grad_norm": 0.26032358407974243, + "learning_rate": 0.0006, + "loss": 3.542494297027588, + "step": 4557 + }, + { + "epoch": 63.30755788553954, + "grad_norm": 0.23259027302265167, + "learning_rate": 0.0006, + "loss": 3.5343332290649414, + "step": 4558 + }, + { + "epoch": 63.3215377894277, + "grad_norm": 0.2183394432067871, + "learning_rate": 0.0006, + "loss": 3.552696466445923, + "step": 4559 + }, + { + "epoch": 63.33551769331586, + "grad_norm": 0.23014239966869354, + "learning_rate": 0.0006, + "loss": 3.507399559020996, + "step": 4560 + }, + { + "epoch": 63.34949759720402, + "grad_norm": 0.22618430852890015, + "learning_rate": 0.0006, + "loss": 3.5329864025115967, + "step": 4561 + }, + { + "epoch": 63.36347750109218, + "grad_norm": 0.22740741074085236, + "learning_rate": 0.0006, + "loss": 3.5098977088928223, + "step": 4562 + }, + { + "epoch": 63.37745740498034, + "grad_norm": 0.21428990364074707, + "learning_rate": 0.0006, + "loss": 3.5244359970092773, + "step": 4563 + }, + { + "epoch": 63.391437308868504, + "grad_norm": 0.224009707570076, + "learning_rate": 0.0006, + "loss": 3.491610288619995, + "step": 4564 + }, + { + "epoch": 63.40541721275666, + "grad_norm": 0.24859225749969482, + "learning_rate": 0.0006, + "loss": 3.534926414489746, + "step": 4565 + }, + { + "epoch": 63.419397116644824, + "grad_norm": 0.27701491117477417, + "learning_rate": 0.0006, + "loss": 3.501753091812134, + "step": 4566 + }, + { + "epoch": 63.43337702053299, + "grad_norm": 0.27911627292633057, + "learning_rate": 0.0006, + "loss": 3.5505383014678955, + "step": 4567 + }, + { + "epoch": 63.44735692442114, + "grad_norm": 0.25913184881210327, + "learning_rate": 0.0006, + "loss": 3.5086495876312256, + "step": 4568 + }, + { + "epoch": 63.46133682830931, + "grad_norm": 0.19867996871471405, + "learning_rate": 0.0006, + "loss": 3.497912645339966, + "step": 4569 + }, + { + "epoch": 63.47531673219746, + "grad_norm": 0.21337668597698212, + "learning_rate": 0.0006, + "loss": 3.511085033416748, + "step": 4570 + }, + { + "epoch": 63.489296636085626, + "grad_norm": 0.2221735268831253, + "learning_rate": 0.0006, + "loss": 3.504108190536499, + "step": 4571 + }, + { + "epoch": 63.50327653997379, + "grad_norm": 0.20739667117595673, + "learning_rate": 0.0006, + "loss": 3.50193452835083, + "step": 4572 + }, + { + "epoch": 63.517256443861946, + "grad_norm": 0.20149169862270355, + "learning_rate": 0.0006, + "loss": 3.5508787631988525, + "step": 4573 + }, + { + "epoch": 63.53123634775011, + "grad_norm": 0.19348420202732086, + "learning_rate": 0.0006, + "loss": 3.521906852722168, + "step": 4574 + }, + { + "epoch": 63.54521625163827, + "grad_norm": 0.19946886599063873, + "learning_rate": 0.0006, + "loss": 3.509187698364258, + "step": 4575 + }, + { + "epoch": 63.55919615552643, + "grad_norm": 0.21359245479106903, + "learning_rate": 0.0006, + "loss": 3.5194101333618164, + "step": 4576 + }, + { + "epoch": 63.57317605941459, + "grad_norm": 0.21726977825164795, + "learning_rate": 0.0006, + "loss": 3.553684711456299, + "step": 4577 + }, + { + "epoch": 63.58715596330275, + "grad_norm": 0.21707940101623535, + "learning_rate": 0.0006, + "loss": 3.5474231243133545, + "step": 4578 + }, + { + "epoch": 63.60113586719091, + "grad_norm": 0.2226727306842804, + "learning_rate": 0.0006, + "loss": 3.556403636932373, + "step": 4579 + }, + { + "epoch": 63.615115771079076, + "grad_norm": 0.22008022665977478, + "learning_rate": 0.0006, + "loss": 3.4910531044006348, + "step": 4580 + }, + { + "epoch": 63.62909567496723, + "grad_norm": 0.20050542056560516, + "learning_rate": 0.0006, + "loss": 3.5085577964782715, + "step": 4581 + }, + { + "epoch": 63.643075578855395, + "grad_norm": 0.21937592327594757, + "learning_rate": 0.0006, + "loss": 3.530182361602783, + "step": 4582 + }, + { + "epoch": 63.65705548274356, + "grad_norm": 0.23152779042720795, + "learning_rate": 0.0006, + "loss": 3.551499843597412, + "step": 4583 + }, + { + "epoch": 63.671035386631715, + "grad_norm": 0.22870875895023346, + "learning_rate": 0.0006, + "loss": 3.5576539039611816, + "step": 4584 + }, + { + "epoch": 63.68501529051988, + "grad_norm": 0.23679395020008087, + "learning_rate": 0.0006, + "loss": 3.5392303466796875, + "step": 4585 + }, + { + "epoch": 63.69899519440804, + "grad_norm": 0.2301628291606903, + "learning_rate": 0.0006, + "loss": 3.53672194480896, + "step": 4586 + }, + { + "epoch": 63.7129750982962, + "grad_norm": 0.20859898626804352, + "learning_rate": 0.0006, + "loss": 3.5405986309051514, + "step": 4587 + }, + { + "epoch": 63.72695500218436, + "grad_norm": 0.2263292521238327, + "learning_rate": 0.0006, + "loss": 3.557982921600342, + "step": 4588 + }, + { + "epoch": 63.74093490607252, + "grad_norm": 0.21420416235923767, + "learning_rate": 0.0006, + "loss": 3.531942129135132, + "step": 4589 + }, + { + "epoch": 63.75491480996068, + "grad_norm": 0.21604575216770172, + "learning_rate": 0.0006, + "loss": 3.54978346824646, + "step": 4590 + }, + { + "epoch": 63.768894713848844, + "grad_norm": 0.2530747354030609, + "learning_rate": 0.0006, + "loss": 3.576831817626953, + "step": 4591 + }, + { + "epoch": 63.782874617737, + "grad_norm": 0.26169830560684204, + "learning_rate": 0.0006, + "loss": 3.5594139099121094, + "step": 4592 + }, + { + "epoch": 63.796854521625164, + "grad_norm": 0.23454166948795319, + "learning_rate": 0.0006, + "loss": 3.527966022491455, + "step": 4593 + }, + { + "epoch": 63.81083442551333, + "grad_norm": 0.25329118967056274, + "learning_rate": 0.0006, + "loss": 3.555817127227783, + "step": 4594 + }, + { + "epoch": 63.824814329401484, + "grad_norm": 0.26875534653663635, + "learning_rate": 0.0006, + "loss": 3.5659937858581543, + "step": 4595 + }, + { + "epoch": 63.83879423328965, + "grad_norm": 0.2446713000535965, + "learning_rate": 0.0006, + "loss": 3.520578384399414, + "step": 4596 + }, + { + "epoch": 63.8527741371778, + "grad_norm": 0.24629594385623932, + "learning_rate": 0.0006, + "loss": 3.562185764312744, + "step": 4597 + }, + { + "epoch": 63.86675404106597, + "grad_norm": 0.25355106592178345, + "learning_rate": 0.0006, + "loss": 3.549164295196533, + "step": 4598 + }, + { + "epoch": 63.88073394495413, + "grad_norm": 0.23251968622207642, + "learning_rate": 0.0006, + "loss": 3.529660224914551, + "step": 4599 + }, + { + "epoch": 63.89471384884229, + "grad_norm": 0.21848365664482117, + "learning_rate": 0.0006, + "loss": 3.582645893096924, + "step": 4600 + }, + { + "epoch": 63.90869375273045, + "grad_norm": 0.2525595426559448, + "learning_rate": 0.0006, + "loss": 3.5324134826660156, + "step": 4601 + }, + { + "epoch": 63.92267365661861, + "grad_norm": 0.2766541838645935, + "learning_rate": 0.0006, + "loss": 3.525892734527588, + "step": 4602 + }, + { + "epoch": 63.93665356050677, + "grad_norm": 0.2581831216812134, + "learning_rate": 0.0006, + "loss": 3.568148374557495, + "step": 4603 + }, + { + "epoch": 63.95063346439493, + "grad_norm": 0.2600967288017273, + "learning_rate": 0.0006, + "loss": 3.5735561847686768, + "step": 4604 + }, + { + "epoch": 63.964613368283096, + "grad_norm": 0.3125685155391693, + "learning_rate": 0.0006, + "loss": 3.513974666595459, + "step": 4605 + }, + { + "epoch": 63.97859327217125, + "grad_norm": 0.2686053514480591, + "learning_rate": 0.0006, + "loss": 3.533506155014038, + "step": 4606 + }, + { + "epoch": 63.992573176059416, + "grad_norm": 0.23033086955547333, + "learning_rate": 0.0006, + "loss": 3.5701582431793213, + "step": 4607 + }, + { + "epoch": 64.0, + "grad_norm": 0.2688716948032379, + "learning_rate": 0.0006, + "loss": 3.5370922088623047, + "step": 4608 + }, + { + "epoch": 64.0, + "eval_loss": 3.9788827896118164, + "eval_runtime": 44.2801, + "eval_samples_per_second": 55.149, + "eval_steps_per_second": 3.455, + "step": 4608 + }, + { + "epoch": 64.01397990388816, + "grad_norm": 0.27457329630851746, + "learning_rate": 0.0006, + "loss": 3.4789271354675293, + "step": 4609 + }, + { + "epoch": 64.02795980777633, + "grad_norm": 0.29753434658050537, + "learning_rate": 0.0006, + "loss": 3.5277628898620605, + "step": 4610 + }, + { + "epoch": 64.04193971166448, + "grad_norm": 0.36113694310188293, + "learning_rate": 0.0006, + "loss": 3.5066421031951904, + "step": 4611 + }, + { + "epoch": 64.05591961555264, + "grad_norm": 0.37955453991889954, + "learning_rate": 0.0006, + "loss": 3.532745361328125, + "step": 4612 + }, + { + "epoch": 64.06989951944081, + "grad_norm": 0.3055022060871124, + "learning_rate": 0.0006, + "loss": 3.526583671569824, + "step": 4613 + }, + { + "epoch": 64.08387942332897, + "grad_norm": 0.25849053263664246, + "learning_rate": 0.0006, + "loss": 3.525885581970215, + "step": 4614 + }, + { + "epoch": 64.09785932721712, + "grad_norm": 0.31513285636901855, + "learning_rate": 0.0006, + "loss": 3.5116710662841797, + "step": 4615 + }, + { + "epoch": 64.1118392311053, + "grad_norm": 0.3306029736995697, + "learning_rate": 0.0006, + "loss": 3.52685284614563, + "step": 4616 + }, + { + "epoch": 64.12581913499345, + "grad_norm": 0.3205282688140869, + "learning_rate": 0.0006, + "loss": 3.5442304611206055, + "step": 4617 + }, + { + "epoch": 64.1397990388816, + "grad_norm": 0.30371955037117004, + "learning_rate": 0.0006, + "loss": 3.523794174194336, + "step": 4618 + }, + { + "epoch": 64.15377894276976, + "grad_norm": 0.23337553441524506, + "learning_rate": 0.0006, + "loss": 3.530444860458374, + "step": 4619 + }, + { + "epoch": 64.16775884665793, + "grad_norm": 0.2223677784204483, + "learning_rate": 0.0006, + "loss": 3.5071358680725098, + "step": 4620 + }, + { + "epoch": 64.18173875054609, + "grad_norm": 0.21216993033885956, + "learning_rate": 0.0006, + "loss": 3.504469156265259, + "step": 4621 + }, + { + "epoch": 64.19571865443424, + "grad_norm": 0.21772179007530212, + "learning_rate": 0.0006, + "loss": 3.543393135070801, + "step": 4622 + }, + { + "epoch": 64.20969855832242, + "grad_norm": 0.2010853886604309, + "learning_rate": 0.0006, + "loss": 3.5219016075134277, + "step": 4623 + }, + { + "epoch": 64.22367846221057, + "grad_norm": 0.20491622388362885, + "learning_rate": 0.0006, + "loss": 3.4971656799316406, + "step": 4624 + }, + { + "epoch": 64.23765836609873, + "grad_norm": 0.19605079293251038, + "learning_rate": 0.0006, + "loss": 3.511746883392334, + "step": 4625 + }, + { + "epoch": 64.2516382699869, + "grad_norm": 0.2011575698852539, + "learning_rate": 0.0006, + "loss": 3.4981908798217773, + "step": 4626 + }, + { + "epoch": 64.26561817387505, + "grad_norm": 0.20687544345855713, + "learning_rate": 0.0006, + "loss": 3.5076913833618164, + "step": 4627 + }, + { + "epoch": 64.27959807776321, + "grad_norm": 0.20696480572223663, + "learning_rate": 0.0006, + "loss": 3.536569595336914, + "step": 4628 + }, + { + "epoch": 64.29357798165138, + "grad_norm": 0.200603649020195, + "learning_rate": 0.0006, + "loss": 3.525024175643921, + "step": 4629 + }, + { + "epoch": 64.30755788553954, + "grad_norm": 0.2087119072675705, + "learning_rate": 0.0006, + "loss": 3.508463144302368, + "step": 4630 + }, + { + "epoch": 64.3215377894277, + "grad_norm": 0.20823124051094055, + "learning_rate": 0.0006, + "loss": 3.5153684616088867, + "step": 4631 + }, + { + "epoch": 64.33551769331586, + "grad_norm": 0.19936303794384003, + "learning_rate": 0.0006, + "loss": 3.4908385276794434, + "step": 4632 + }, + { + "epoch": 64.34949759720402, + "grad_norm": 0.20928572118282318, + "learning_rate": 0.0006, + "loss": 3.5094854831695557, + "step": 4633 + }, + { + "epoch": 64.36347750109218, + "grad_norm": 0.22391293942928314, + "learning_rate": 0.0006, + "loss": 3.514522075653076, + "step": 4634 + }, + { + "epoch": 64.37745740498035, + "grad_norm": 0.19804537296295166, + "learning_rate": 0.0006, + "loss": 3.5072293281555176, + "step": 4635 + }, + { + "epoch": 64.3914373088685, + "grad_norm": 0.18472325801849365, + "learning_rate": 0.0006, + "loss": 3.5149683952331543, + "step": 4636 + }, + { + "epoch": 64.40541721275666, + "grad_norm": 0.20187066495418549, + "learning_rate": 0.0006, + "loss": 3.5198612213134766, + "step": 4637 + }, + { + "epoch": 64.41939711664482, + "grad_norm": 0.19778090715408325, + "learning_rate": 0.0006, + "loss": 3.540841817855835, + "step": 4638 + }, + { + "epoch": 64.43337702053299, + "grad_norm": 0.20325049757957458, + "learning_rate": 0.0006, + "loss": 3.522329330444336, + "step": 4639 + }, + { + "epoch": 64.44735692442114, + "grad_norm": 0.21200744807720184, + "learning_rate": 0.0006, + "loss": 3.5492870807647705, + "step": 4640 + }, + { + "epoch": 64.4613368283093, + "grad_norm": 0.21482640504837036, + "learning_rate": 0.0006, + "loss": 3.5450363159179688, + "step": 4641 + }, + { + "epoch": 64.47531673219747, + "grad_norm": 0.2257383018732071, + "learning_rate": 0.0006, + "loss": 3.518486976623535, + "step": 4642 + }, + { + "epoch": 64.48929663608563, + "grad_norm": 0.20710107684135437, + "learning_rate": 0.0006, + "loss": 3.5212514400482178, + "step": 4643 + }, + { + "epoch": 64.50327653997378, + "grad_norm": 0.20518364012241364, + "learning_rate": 0.0006, + "loss": 3.5239462852478027, + "step": 4644 + }, + { + "epoch": 64.51725644386195, + "grad_norm": 0.20311623811721802, + "learning_rate": 0.0006, + "loss": 3.5299072265625, + "step": 4645 + }, + { + "epoch": 64.53123634775011, + "grad_norm": 0.2045847624540329, + "learning_rate": 0.0006, + "loss": 3.5337295532226562, + "step": 4646 + }, + { + "epoch": 64.54521625163827, + "grad_norm": 0.20734596252441406, + "learning_rate": 0.0006, + "loss": 3.5001375675201416, + "step": 4647 + }, + { + "epoch": 64.55919615552644, + "grad_norm": 0.2103254497051239, + "learning_rate": 0.0006, + "loss": 3.50685977935791, + "step": 4648 + }, + { + "epoch": 64.57317605941459, + "grad_norm": 0.19903342425823212, + "learning_rate": 0.0006, + "loss": 3.5295052528381348, + "step": 4649 + }, + { + "epoch": 64.58715596330275, + "grad_norm": 0.21105562150478363, + "learning_rate": 0.0006, + "loss": 3.5062971115112305, + "step": 4650 + }, + { + "epoch": 64.60113586719092, + "grad_norm": 0.2149161994457245, + "learning_rate": 0.0006, + "loss": 3.5040459632873535, + "step": 4651 + }, + { + "epoch": 64.61511577107908, + "grad_norm": 0.19698478281497955, + "learning_rate": 0.0006, + "loss": 3.541640281677246, + "step": 4652 + }, + { + "epoch": 64.62909567496723, + "grad_norm": 0.22909119725227356, + "learning_rate": 0.0006, + "loss": 3.546515941619873, + "step": 4653 + }, + { + "epoch": 64.6430755788554, + "grad_norm": 0.2322760671377182, + "learning_rate": 0.0006, + "loss": 3.5374197959899902, + "step": 4654 + }, + { + "epoch": 64.65705548274356, + "grad_norm": 0.2173723429441452, + "learning_rate": 0.0006, + "loss": 3.543529510498047, + "step": 4655 + }, + { + "epoch": 64.67103538663171, + "grad_norm": 0.21360787749290466, + "learning_rate": 0.0006, + "loss": 3.560333251953125, + "step": 4656 + }, + { + "epoch": 64.68501529051987, + "grad_norm": 0.23260995745658875, + "learning_rate": 0.0006, + "loss": 3.5468926429748535, + "step": 4657 + }, + { + "epoch": 64.69899519440804, + "grad_norm": 0.23099006712436676, + "learning_rate": 0.0006, + "loss": 3.5222787857055664, + "step": 4658 + }, + { + "epoch": 64.7129750982962, + "grad_norm": 0.20590323209762573, + "learning_rate": 0.0006, + "loss": 3.538832426071167, + "step": 4659 + }, + { + "epoch": 64.72695500218435, + "grad_norm": 0.2339620441198349, + "learning_rate": 0.0006, + "loss": 3.5201845169067383, + "step": 4660 + }, + { + "epoch": 64.74093490607252, + "grad_norm": 0.27160516381263733, + "learning_rate": 0.0006, + "loss": 3.5465309619903564, + "step": 4661 + }, + { + "epoch": 64.75491480996068, + "grad_norm": 0.2624864876270294, + "learning_rate": 0.0006, + "loss": 3.5205435752868652, + "step": 4662 + }, + { + "epoch": 64.76889471384884, + "grad_norm": 0.23907902836799622, + "learning_rate": 0.0006, + "loss": 3.553205728530884, + "step": 4663 + }, + { + "epoch": 64.78287461773701, + "grad_norm": 0.2217475026845932, + "learning_rate": 0.0006, + "loss": 3.514068603515625, + "step": 4664 + }, + { + "epoch": 64.79685452162516, + "grad_norm": 0.20445777475833893, + "learning_rate": 0.0006, + "loss": 3.5382182598114014, + "step": 4665 + }, + { + "epoch": 64.81083442551332, + "grad_norm": 0.2027028501033783, + "learning_rate": 0.0006, + "loss": 3.549323081970215, + "step": 4666 + }, + { + "epoch": 64.82481432940149, + "grad_norm": 0.2211705446243286, + "learning_rate": 0.0006, + "loss": 3.5627710819244385, + "step": 4667 + }, + { + "epoch": 64.83879423328965, + "grad_norm": 0.23401948809623718, + "learning_rate": 0.0006, + "loss": 3.5169739723205566, + "step": 4668 + }, + { + "epoch": 64.8527741371778, + "grad_norm": 0.21921628713607788, + "learning_rate": 0.0006, + "loss": 3.5405478477478027, + "step": 4669 + }, + { + "epoch": 64.86675404106597, + "grad_norm": 0.20840027928352356, + "learning_rate": 0.0006, + "loss": 3.528883218765259, + "step": 4670 + }, + { + "epoch": 64.88073394495413, + "grad_norm": 0.21593457460403442, + "learning_rate": 0.0006, + "loss": 3.570455551147461, + "step": 4671 + }, + { + "epoch": 64.89471384884229, + "grad_norm": 0.22351567447185516, + "learning_rate": 0.0006, + "loss": 3.567831516265869, + "step": 4672 + }, + { + "epoch": 64.90869375273044, + "grad_norm": 0.22733932733535767, + "learning_rate": 0.0006, + "loss": 3.55277156829834, + "step": 4673 + }, + { + "epoch": 64.92267365661861, + "grad_norm": 0.19557999074459076, + "learning_rate": 0.0006, + "loss": 3.523028612136841, + "step": 4674 + }, + { + "epoch": 64.93665356050677, + "grad_norm": 0.22674734890460968, + "learning_rate": 0.0006, + "loss": 3.565629720687866, + "step": 4675 + }, + { + "epoch": 64.95063346439493, + "grad_norm": 0.23879630863666534, + "learning_rate": 0.0006, + "loss": 3.5556788444519043, + "step": 4676 + }, + { + "epoch": 64.9646133682831, + "grad_norm": 0.24172860383987427, + "learning_rate": 0.0006, + "loss": 3.580190658569336, + "step": 4677 + }, + { + "epoch": 64.97859327217125, + "grad_norm": 0.24994441866874695, + "learning_rate": 0.0006, + "loss": 3.506659507751465, + "step": 4678 + }, + { + "epoch": 64.99257317605941, + "grad_norm": 0.20717456936836243, + "learning_rate": 0.0006, + "loss": 3.526215076446533, + "step": 4679 + }, + { + "epoch": 65.0, + "grad_norm": 0.23991262912750244, + "learning_rate": 0.0006, + "loss": 3.5615687370300293, + "step": 4680 + }, + { + "epoch": 65.0, + "eval_loss": 3.974820137023926, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 4680 + }, + { + "epoch": 65.01397990388816, + "grad_norm": 0.22059205174446106, + "learning_rate": 0.0006, + "loss": 3.4952855110168457, + "step": 4681 + }, + { + "epoch": 65.02795980777633, + "grad_norm": 0.23085950314998627, + "learning_rate": 0.0006, + "loss": 3.5180296897888184, + "step": 4682 + }, + { + "epoch": 65.04193971166448, + "grad_norm": 0.20950855314731598, + "learning_rate": 0.0006, + "loss": 3.5476295948028564, + "step": 4683 + }, + { + "epoch": 65.05591961555264, + "grad_norm": 0.1958799958229065, + "learning_rate": 0.0006, + "loss": 3.5180916786193848, + "step": 4684 + }, + { + "epoch": 65.06989951944081, + "grad_norm": 0.20676101744174957, + "learning_rate": 0.0006, + "loss": 3.4882211685180664, + "step": 4685 + }, + { + "epoch": 65.08387942332897, + "grad_norm": 0.24798569083213806, + "learning_rate": 0.0006, + "loss": 3.5030102729797363, + "step": 4686 + }, + { + "epoch": 65.09785932721712, + "grad_norm": 0.2997048795223236, + "learning_rate": 0.0006, + "loss": 3.5148534774780273, + "step": 4687 + }, + { + "epoch": 65.1118392311053, + "grad_norm": 0.27347132563591003, + "learning_rate": 0.0006, + "loss": 3.534639358520508, + "step": 4688 + }, + { + "epoch": 65.12581913499345, + "grad_norm": 0.2220011204481125, + "learning_rate": 0.0006, + "loss": 3.50504994392395, + "step": 4689 + }, + { + "epoch": 65.1397990388816, + "grad_norm": 0.2552279829978943, + "learning_rate": 0.0006, + "loss": 3.4893431663513184, + "step": 4690 + }, + { + "epoch": 65.15377894276976, + "grad_norm": 0.32200172543525696, + "learning_rate": 0.0006, + "loss": 3.515808582305908, + "step": 4691 + }, + { + "epoch": 65.16775884665793, + "grad_norm": 0.31339603662490845, + "learning_rate": 0.0006, + "loss": 3.493312358856201, + "step": 4692 + }, + { + "epoch": 65.18173875054609, + "grad_norm": 0.30790913105010986, + "learning_rate": 0.0006, + "loss": 3.5001792907714844, + "step": 4693 + }, + { + "epoch": 65.19571865443424, + "grad_norm": 0.25261157751083374, + "learning_rate": 0.0006, + "loss": 3.491820812225342, + "step": 4694 + }, + { + "epoch": 65.20969855832242, + "grad_norm": 0.20875515043735504, + "learning_rate": 0.0006, + "loss": 3.5120949745178223, + "step": 4695 + }, + { + "epoch": 65.22367846221057, + "grad_norm": 0.22966094315052032, + "learning_rate": 0.0006, + "loss": 3.4509716033935547, + "step": 4696 + }, + { + "epoch": 65.23765836609873, + "grad_norm": 0.22414445877075195, + "learning_rate": 0.0006, + "loss": 3.5032718181610107, + "step": 4697 + }, + { + "epoch": 65.2516382699869, + "grad_norm": 0.21083641052246094, + "learning_rate": 0.0006, + "loss": 3.4912984371185303, + "step": 4698 + }, + { + "epoch": 65.26561817387505, + "grad_norm": 0.21424371004104614, + "learning_rate": 0.0006, + "loss": 3.493704080581665, + "step": 4699 + }, + { + "epoch": 65.27959807776321, + "grad_norm": 0.21155135333538055, + "learning_rate": 0.0006, + "loss": 3.523045063018799, + "step": 4700 + }, + { + "epoch": 65.29357798165138, + "grad_norm": 0.2245800942182541, + "learning_rate": 0.0006, + "loss": 3.5085060596466064, + "step": 4701 + }, + { + "epoch": 65.30755788553954, + "grad_norm": 0.2271309345960617, + "learning_rate": 0.0006, + "loss": 3.51690673828125, + "step": 4702 + }, + { + "epoch": 65.3215377894277, + "grad_norm": 0.23873905837535858, + "learning_rate": 0.0006, + "loss": 3.533975124359131, + "step": 4703 + }, + { + "epoch": 65.33551769331586, + "grad_norm": 0.22801156342029572, + "learning_rate": 0.0006, + "loss": 3.554079532623291, + "step": 4704 + }, + { + "epoch": 65.34949759720402, + "grad_norm": 0.20530614256858826, + "learning_rate": 0.0006, + "loss": 3.5536623001098633, + "step": 4705 + }, + { + "epoch": 65.36347750109218, + "grad_norm": 0.19286230206489563, + "learning_rate": 0.0006, + "loss": 3.5279109477996826, + "step": 4706 + }, + { + "epoch": 65.37745740498035, + "grad_norm": 0.20883116126060486, + "learning_rate": 0.0006, + "loss": 3.526639223098755, + "step": 4707 + }, + { + "epoch": 65.3914373088685, + "grad_norm": 0.20705194771289825, + "learning_rate": 0.0006, + "loss": 3.5389089584350586, + "step": 4708 + }, + { + "epoch": 65.40541721275666, + "grad_norm": 0.1948518604040146, + "learning_rate": 0.0006, + "loss": 3.504940986633301, + "step": 4709 + }, + { + "epoch": 65.41939711664482, + "grad_norm": 0.20147304236888885, + "learning_rate": 0.0006, + "loss": 3.5085673332214355, + "step": 4710 + }, + { + "epoch": 65.43337702053299, + "grad_norm": 0.2229771912097931, + "learning_rate": 0.0006, + "loss": 3.4806604385375977, + "step": 4711 + }, + { + "epoch": 65.44735692442114, + "grad_norm": 0.252258837223053, + "learning_rate": 0.0006, + "loss": 3.5160961151123047, + "step": 4712 + }, + { + "epoch": 65.4613368283093, + "grad_norm": 0.2482563853263855, + "learning_rate": 0.0006, + "loss": 3.522674560546875, + "step": 4713 + }, + { + "epoch": 65.47531673219747, + "grad_norm": 0.22155597805976868, + "learning_rate": 0.0006, + "loss": 3.5124268531799316, + "step": 4714 + }, + { + "epoch": 65.48929663608563, + "grad_norm": 0.223913311958313, + "learning_rate": 0.0006, + "loss": 3.5122427940368652, + "step": 4715 + }, + { + "epoch": 65.50327653997378, + "grad_norm": 0.20946767926216125, + "learning_rate": 0.0006, + "loss": 3.552161693572998, + "step": 4716 + }, + { + "epoch": 65.51725644386195, + "grad_norm": 0.21044479310512543, + "learning_rate": 0.0006, + "loss": 3.5450949668884277, + "step": 4717 + }, + { + "epoch": 65.53123634775011, + "grad_norm": 0.25752949714660645, + "learning_rate": 0.0006, + "loss": 3.5267398357391357, + "step": 4718 + }, + { + "epoch": 65.54521625163827, + "grad_norm": 0.28068798780441284, + "learning_rate": 0.0006, + "loss": 3.537827491760254, + "step": 4719 + }, + { + "epoch": 65.55919615552644, + "grad_norm": 0.2259511947631836, + "learning_rate": 0.0006, + "loss": 3.540821075439453, + "step": 4720 + }, + { + "epoch": 65.57317605941459, + "grad_norm": 0.2032593935728073, + "learning_rate": 0.0006, + "loss": 3.540170669555664, + "step": 4721 + }, + { + "epoch": 65.58715596330275, + "grad_norm": 0.2432602047920227, + "learning_rate": 0.0006, + "loss": 3.5356297492980957, + "step": 4722 + }, + { + "epoch": 65.60113586719092, + "grad_norm": 0.20527289807796478, + "learning_rate": 0.0006, + "loss": 3.4675498008728027, + "step": 4723 + }, + { + "epoch": 65.61511577107908, + "grad_norm": 0.18697771430015564, + "learning_rate": 0.0006, + "loss": 3.5208992958068848, + "step": 4724 + }, + { + "epoch": 65.62909567496723, + "grad_norm": 0.2044762223958969, + "learning_rate": 0.0006, + "loss": 3.5583274364471436, + "step": 4725 + }, + { + "epoch": 65.6430755788554, + "grad_norm": 0.22855281829833984, + "learning_rate": 0.0006, + "loss": 3.5497756004333496, + "step": 4726 + }, + { + "epoch": 65.65705548274356, + "grad_norm": 0.21672320365905762, + "learning_rate": 0.0006, + "loss": 3.530869960784912, + "step": 4727 + }, + { + "epoch": 65.67103538663171, + "grad_norm": 0.20629048347473145, + "learning_rate": 0.0006, + "loss": 3.5381593704223633, + "step": 4728 + }, + { + "epoch": 65.68501529051987, + "grad_norm": 0.21036849915981293, + "learning_rate": 0.0006, + "loss": 3.531111478805542, + "step": 4729 + }, + { + "epoch": 65.69899519440804, + "grad_norm": 0.19463932514190674, + "learning_rate": 0.0006, + "loss": 3.523106098175049, + "step": 4730 + }, + { + "epoch": 65.7129750982962, + "grad_norm": 0.2210976481437683, + "learning_rate": 0.0006, + "loss": 3.5480356216430664, + "step": 4731 + }, + { + "epoch": 65.72695500218435, + "grad_norm": 0.2288331687450409, + "learning_rate": 0.0006, + "loss": 3.5317163467407227, + "step": 4732 + }, + { + "epoch": 65.74093490607252, + "grad_norm": 0.22445930540561676, + "learning_rate": 0.0006, + "loss": 3.5453107357025146, + "step": 4733 + }, + { + "epoch": 65.75491480996068, + "grad_norm": 0.20268939435482025, + "learning_rate": 0.0006, + "loss": 3.5546514987945557, + "step": 4734 + }, + { + "epoch": 65.76889471384884, + "grad_norm": 0.2070288211107254, + "learning_rate": 0.0006, + "loss": 3.5345590114593506, + "step": 4735 + }, + { + "epoch": 65.78287461773701, + "grad_norm": 0.2052922248840332, + "learning_rate": 0.0006, + "loss": 3.538299083709717, + "step": 4736 + }, + { + "epoch": 65.79685452162516, + "grad_norm": 0.2146841138601303, + "learning_rate": 0.0006, + "loss": 3.541652202606201, + "step": 4737 + }, + { + "epoch": 65.81083442551332, + "grad_norm": 0.21826434135437012, + "learning_rate": 0.0006, + "loss": 3.4880056381225586, + "step": 4738 + }, + { + "epoch": 65.82481432940149, + "grad_norm": 0.18492230772972107, + "learning_rate": 0.0006, + "loss": 3.5282340049743652, + "step": 4739 + }, + { + "epoch": 65.83879423328965, + "grad_norm": 0.2422342747449875, + "learning_rate": 0.0006, + "loss": 3.5482215881347656, + "step": 4740 + }, + { + "epoch": 65.8527741371778, + "grad_norm": 0.300968199968338, + "learning_rate": 0.0006, + "loss": 3.545173168182373, + "step": 4741 + }, + { + "epoch": 65.86675404106597, + "grad_norm": 0.23397785425186157, + "learning_rate": 0.0006, + "loss": 3.5014636516571045, + "step": 4742 + }, + { + "epoch": 65.88073394495413, + "grad_norm": 0.20114080607891083, + "learning_rate": 0.0006, + "loss": 3.517125368118286, + "step": 4743 + }, + { + "epoch": 65.89471384884229, + "grad_norm": 0.23073594272136688, + "learning_rate": 0.0006, + "loss": 3.5259623527526855, + "step": 4744 + }, + { + "epoch": 65.90869375273044, + "grad_norm": 0.25975924730300903, + "learning_rate": 0.0006, + "loss": 3.5394439697265625, + "step": 4745 + }, + { + "epoch": 65.92267365661861, + "grad_norm": 0.2565694749355316, + "learning_rate": 0.0006, + "loss": 3.5301175117492676, + "step": 4746 + }, + { + "epoch": 65.93665356050677, + "grad_norm": 0.24380211532115936, + "learning_rate": 0.0006, + "loss": 3.5519638061523438, + "step": 4747 + }, + { + "epoch": 65.95063346439493, + "grad_norm": 0.2337062805891037, + "learning_rate": 0.0006, + "loss": 3.5365114212036133, + "step": 4748 + }, + { + "epoch": 65.9646133682831, + "grad_norm": 0.2107299268245697, + "learning_rate": 0.0006, + "loss": 3.5433106422424316, + "step": 4749 + }, + { + "epoch": 65.97859327217125, + "grad_norm": 0.2159995585680008, + "learning_rate": 0.0006, + "loss": 3.539796829223633, + "step": 4750 + }, + { + "epoch": 65.99257317605941, + "grad_norm": 0.23707467317581177, + "learning_rate": 0.0006, + "loss": 3.5315332412719727, + "step": 4751 + }, + { + "epoch": 66.0, + "grad_norm": 0.27253037691116333, + "learning_rate": 0.0006, + "loss": 3.5477747917175293, + "step": 4752 + }, + { + "epoch": 66.0, + "eval_loss": 3.973580837249756, + "eval_runtime": 44.8472, + "eval_samples_per_second": 54.452, + "eval_steps_per_second": 3.412, + "step": 4752 + }, + { + "epoch": 66.01397990388816, + "grad_norm": 0.22843532264232635, + "learning_rate": 0.0006, + "loss": 3.463778018951416, + "step": 4753 + }, + { + "epoch": 66.02795980777633, + "grad_norm": 0.24956060945987701, + "learning_rate": 0.0006, + "loss": 3.5249979496002197, + "step": 4754 + }, + { + "epoch": 66.04193971166448, + "grad_norm": 0.3091195821762085, + "learning_rate": 0.0006, + "loss": 3.4742040634155273, + "step": 4755 + }, + { + "epoch": 66.05591961555264, + "grad_norm": 0.346617192029953, + "learning_rate": 0.0006, + "loss": 3.4870445728302, + "step": 4756 + }, + { + "epoch": 66.06989951944081, + "grad_norm": 0.2875824570655823, + "learning_rate": 0.0006, + "loss": 3.5412697792053223, + "step": 4757 + }, + { + "epoch": 66.08387942332897, + "grad_norm": 0.2508425712585449, + "learning_rate": 0.0006, + "loss": 3.488759756088257, + "step": 4758 + }, + { + "epoch": 66.09785932721712, + "grad_norm": 0.2538967728614807, + "learning_rate": 0.0006, + "loss": 3.536404609680176, + "step": 4759 + }, + { + "epoch": 66.1118392311053, + "grad_norm": 0.24713276326656342, + "learning_rate": 0.0006, + "loss": 3.502939462661743, + "step": 4760 + }, + { + "epoch": 66.12581913499345, + "grad_norm": 0.2381032407283783, + "learning_rate": 0.0006, + "loss": 3.5297226905822754, + "step": 4761 + }, + { + "epoch": 66.1397990388816, + "grad_norm": 0.23749777674674988, + "learning_rate": 0.0006, + "loss": 3.510740280151367, + "step": 4762 + }, + { + "epoch": 66.15377894276976, + "grad_norm": 0.24993619322776794, + "learning_rate": 0.0006, + "loss": 3.4966745376586914, + "step": 4763 + }, + { + "epoch": 66.16775884665793, + "grad_norm": 0.25855013728141785, + "learning_rate": 0.0006, + "loss": 3.545177936553955, + "step": 4764 + }, + { + "epoch": 66.18173875054609, + "grad_norm": 0.2206948697566986, + "learning_rate": 0.0006, + "loss": 3.5404415130615234, + "step": 4765 + }, + { + "epoch": 66.19571865443424, + "grad_norm": 0.2627105116844177, + "learning_rate": 0.0006, + "loss": 3.5475361347198486, + "step": 4766 + }, + { + "epoch": 66.20969855832242, + "grad_norm": 0.29578864574432373, + "learning_rate": 0.0006, + "loss": 3.510110855102539, + "step": 4767 + }, + { + "epoch": 66.22367846221057, + "grad_norm": 0.257691353559494, + "learning_rate": 0.0006, + "loss": 3.5143630504608154, + "step": 4768 + }, + { + "epoch": 66.23765836609873, + "grad_norm": 0.24346867203712463, + "learning_rate": 0.0006, + "loss": 3.5007784366607666, + "step": 4769 + }, + { + "epoch": 66.2516382699869, + "grad_norm": 0.230575293302536, + "learning_rate": 0.0006, + "loss": 3.5051684379577637, + "step": 4770 + }, + { + "epoch": 66.26561817387505, + "grad_norm": 0.23823921382427216, + "learning_rate": 0.0006, + "loss": 3.4773342609405518, + "step": 4771 + }, + { + "epoch": 66.27959807776321, + "grad_norm": 0.20743288099765778, + "learning_rate": 0.0006, + "loss": 3.496393918991089, + "step": 4772 + }, + { + "epoch": 66.29357798165138, + "grad_norm": 0.21969960629940033, + "learning_rate": 0.0006, + "loss": 3.494748830795288, + "step": 4773 + }, + { + "epoch": 66.30755788553954, + "grad_norm": 0.20902593433856964, + "learning_rate": 0.0006, + "loss": 3.529416561126709, + "step": 4774 + }, + { + "epoch": 66.3215377894277, + "grad_norm": 0.2380436211824417, + "learning_rate": 0.0006, + "loss": 3.508625030517578, + "step": 4775 + }, + { + "epoch": 66.33551769331586, + "grad_norm": 0.26387956738471985, + "learning_rate": 0.0006, + "loss": 3.4886221885681152, + "step": 4776 + }, + { + "epoch": 66.34949759720402, + "grad_norm": 0.24655069410800934, + "learning_rate": 0.0006, + "loss": 3.5089354515075684, + "step": 4777 + }, + { + "epoch": 66.36347750109218, + "grad_norm": 0.2446470856666565, + "learning_rate": 0.0006, + "loss": 3.5295841693878174, + "step": 4778 + }, + { + "epoch": 66.37745740498035, + "grad_norm": 0.23909035325050354, + "learning_rate": 0.0006, + "loss": 3.500223159790039, + "step": 4779 + }, + { + "epoch": 66.3914373088685, + "grad_norm": 0.21958141028881073, + "learning_rate": 0.0006, + "loss": 3.5225610733032227, + "step": 4780 + }, + { + "epoch": 66.40541721275666, + "grad_norm": 0.20134378969669342, + "learning_rate": 0.0006, + "loss": 3.5055198669433594, + "step": 4781 + }, + { + "epoch": 66.41939711664482, + "grad_norm": 0.22621650993824005, + "learning_rate": 0.0006, + "loss": 3.5356178283691406, + "step": 4782 + }, + { + "epoch": 66.43337702053299, + "grad_norm": 0.214684396982193, + "learning_rate": 0.0006, + "loss": 3.5069541931152344, + "step": 4783 + }, + { + "epoch": 66.44735692442114, + "grad_norm": 0.217989981174469, + "learning_rate": 0.0006, + "loss": 3.499561071395874, + "step": 4784 + }, + { + "epoch": 66.4613368283093, + "grad_norm": 0.21457986533641815, + "learning_rate": 0.0006, + "loss": 3.5139474868774414, + "step": 4785 + }, + { + "epoch": 66.47531673219747, + "grad_norm": 0.24017205834388733, + "learning_rate": 0.0006, + "loss": 3.5267739295959473, + "step": 4786 + }, + { + "epoch": 66.48929663608563, + "grad_norm": 0.22864149510860443, + "learning_rate": 0.0006, + "loss": 3.5324792861938477, + "step": 4787 + }, + { + "epoch": 66.50327653997378, + "grad_norm": 0.219966322183609, + "learning_rate": 0.0006, + "loss": 3.491529703140259, + "step": 4788 + }, + { + "epoch": 66.51725644386195, + "grad_norm": 0.23360539972782135, + "learning_rate": 0.0006, + "loss": 3.4962849617004395, + "step": 4789 + }, + { + "epoch": 66.53123634775011, + "grad_norm": 0.24652886390686035, + "learning_rate": 0.0006, + "loss": 3.510777473449707, + "step": 4790 + }, + { + "epoch": 66.54521625163827, + "grad_norm": 0.23419316112995148, + "learning_rate": 0.0006, + "loss": 3.5549509525299072, + "step": 4791 + }, + { + "epoch": 66.55919615552644, + "grad_norm": 0.2514760494232178, + "learning_rate": 0.0006, + "loss": 3.49761962890625, + "step": 4792 + }, + { + "epoch": 66.57317605941459, + "grad_norm": 0.24227535724639893, + "learning_rate": 0.0006, + "loss": 3.5556445121765137, + "step": 4793 + }, + { + "epoch": 66.58715596330275, + "grad_norm": 0.24751204252243042, + "learning_rate": 0.0006, + "loss": 3.5131940841674805, + "step": 4794 + }, + { + "epoch": 66.60113586719092, + "grad_norm": 0.24366872012615204, + "learning_rate": 0.0006, + "loss": 3.5310516357421875, + "step": 4795 + }, + { + "epoch": 66.61511577107908, + "grad_norm": 0.2177760899066925, + "learning_rate": 0.0006, + "loss": 3.5267493724823, + "step": 4796 + }, + { + "epoch": 66.62909567496723, + "grad_norm": 0.19654381275177002, + "learning_rate": 0.0006, + "loss": 3.5158896446228027, + "step": 4797 + }, + { + "epoch": 66.6430755788554, + "grad_norm": 0.2041735202074051, + "learning_rate": 0.0006, + "loss": 3.5645484924316406, + "step": 4798 + }, + { + "epoch": 66.65705548274356, + "grad_norm": 0.21368929743766785, + "learning_rate": 0.0006, + "loss": 3.5481250286102295, + "step": 4799 + }, + { + "epoch": 66.67103538663171, + "grad_norm": 0.2047458291053772, + "learning_rate": 0.0006, + "loss": 3.498279571533203, + "step": 4800 + }, + { + "epoch": 66.68501529051987, + "grad_norm": 0.21750541031360626, + "learning_rate": 0.0006, + "loss": 3.5349860191345215, + "step": 4801 + }, + { + "epoch": 66.69899519440804, + "grad_norm": 0.2415834218263626, + "learning_rate": 0.0006, + "loss": 3.5091004371643066, + "step": 4802 + }, + { + "epoch": 66.7129750982962, + "grad_norm": 0.19963665306568146, + "learning_rate": 0.0006, + "loss": 3.5369873046875, + "step": 4803 + }, + { + "epoch": 66.72695500218435, + "grad_norm": 0.23620283603668213, + "learning_rate": 0.0006, + "loss": 3.5239949226379395, + "step": 4804 + }, + { + "epoch": 66.74093490607252, + "grad_norm": 0.2616693079471588, + "learning_rate": 0.0006, + "loss": 3.545588493347168, + "step": 4805 + }, + { + "epoch": 66.75491480996068, + "grad_norm": 0.23235733807086945, + "learning_rate": 0.0006, + "loss": 3.5250823497772217, + "step": 4806 + }, + { + "epoch": 66.76889471384884, + "grad_norm": 0.20908917486667633, + "learning_rate": 0.0006, + "loss": 3.547023057937622, + "step": 4807 + }, + { + "epoch": 66.78287461773701, + "grad_norm": 0.23014947772026062, + "learning_rate": 0.0006, + "loss": 3.527070999145508, + "step": 4808 + }, + { + "epoch": 66.79685452162516, + "grad_norm": 0.2468312382698059, + "learning_rate": 0.0006, + "loss": 3.5456371307373047, + "step": 4809 + }, + { + "epoch": 66.81083442551332, + "grad_norm": 0.21409334242343903, + "learning_rate": 0.0006, + "loss": 3.5282058715820312, + "step": 4810 + }, + { + "epoch": 66.82481432940149, + "grad_norm": 0.20337609946727753, + "learning_rate": 0.0006, + "loss": 3.5054173469543457, + "step": 4811 + }, + { + "epoch": 66.83879423328965, + "grad_norm": 0.20335888862609863, + "learning_rate": 0.0006, + "loss": 3.5417919158935547, + "step": 4812 + }, + { + "epoch": 66.8527741371778, + "grad_norm": 0.20672455430030823, + "learning_rate": 0.0006, + "loss": 3.549217700958252, + "step": 4813 + }, + { + "epoch": 66.86675404106597, + "grad_norm": 0.19788624346256256, + "learning_rate": 0.0006, + "loss": 3.5244839191436768, + "step": 4814 + }, + { + "epoch": 66.88073394495413, + "grad_norm": 0.19756834208965302, + "learning_rate": 0.0006, + "loss": 3.5210156440734863, + "step": 4815 + }, + { + "epoch": 66.89471384884229, + "grad_norm": 0.18592269718647003, + "learning_rate": 0.0006, + "loss": 3.522824764251709, + "step": 4816 + }, + { + "epoch": 66.90869375273044, + "grad_norm": 0.2011021077632904, + "learning_rate": 0.0006, + "loss": 3.521613597869873, + "step": 4817 + }, + { + "epoch": 66.92267365661861, + "grad_norm": 0.20816446840763092, + "learning_rate": 0.0006, + "loss": 3.562373161315918, + "step": 4818 + }, + { + "epoch": 66.93665356050677, + "grad_norm": 0.1967775523662567, + "learning_rate": 0.0006, + "loss": 3.5357818603515625, + "step": 4819 + }, + { + "epoch": 66.95063346439493, + "grad_norm": 0.20569968223571777, + "learning_rate": 0.0006, + "loss": 3.5232982635498047, + "step": 4820 + }, + { + "epoch": 66.9646133682831, + "grad_norm": 0.2095642238855362, + "learning_rate": 0.0006, + "loss": 3.5395994186401367, + "step": 4821 + }, + { + "epoch": 66.97859327217125, + "grad_norm": 0.22340409457683563, + "learning_rate": 0.0006, + "loss": 3.5163097381591797, + "step": 4822 + }, + { + "epoch": 66.99257317605941, + "grad_norm": 0.2131485939025879, + "learning_rate": 0.0006, + "loss": 3.555629253387451, + "step": 4823 + }, + { + "epoch": 67.0, + "grad_norm": 0.22373832762241364, + "learning_rate": 0.0006, + "loss": 3.5017800331115723, + "step": 4824 + }, + { + "epoch": 67.0, + "eval_loss": 3.9781124591827393, + "eval_runtime": 44.8111, + "eval_samples_per_second": 54.495, + "eval_steps_per_second": 3.414, + "step": 4824 + }, + { + "epoch": 67.01397990388816, + "grad_norm": 0.21282735466957092, + "learning_rate": 0.0006, + "loss": 3.482837677001953, + "step": 4825 + }, + { + "epoch": 67.02795980777633, + "grad_norm": 0.23839101195335388, + "learning_rate": 0.0006, + "loss": 3.5095958709716797, + "step": 4826 + }, + { + "epoch": 67.04193971166448, + "grad_norm": 0.2598385810852051, + "learning_rate": 0.0006, + "loss": 3.463888645172119, + "step": 4827 + }, + { + "epoch": 67.05591961555264, + "grad_norm": 0.24132144451141357, + "learning_rate": 0.0006, + "loss": 3.478180408477783, + "step": 4828 + }, + { + "epoch": 67.06989951944081, + "grad_norm": 0.23276527225971222, + "learning_rate": 0.0006, + "loss": 3.5064096450805664, + "step": 4829 + }, + { + "epoch": 67.08387942332897, + "grad_norm": 0.21749058365821838, + "learning_rate": 0.0006, + "loss": 3.5057930946350098, + "step": 4830 + }, + { + "epoch": 67.09785932721712, + "grad_norm": 0.22310365736484528, + "learning_rate": 0.0006, + "loss": 3.492342233657837, + "step": 4831 + }, + { + "epoch": 67.1118392311053, + "grad_norm": 0.23109206557273865, + "learning_rate": 0.0006, + "loss": 3.4776313304901123, + "step": 4832 + }, + { + "epoch": 67.12581913499345, + "grad_norm": 0.21820154786109924, + "learning_rate": 0.0006, + "loss": 3.4983036518096924, + "step": 4833 + }, + { + "epoch": 67.1397990388816, + "grad_norm": 0.214705228805542, + "learning_rate": 0.0006, + "loss": 3.4997382164001465, + "step": 4834 + }, + { + "epoch": 67.15377894276976, + "grad_norm": 0.230570450425148, + "learning_rate": 0.0006, + "loss": 3.5172224044799805, + "step": 4835 + }, + { + "epoch": 67.16775884665793, + "grad_norm": 0.21726474165916443, + "learning_rate": 0.0006, + "loss": 3.4625420570373535, + "step": 4836 + }, + { + "epoch": 67.18173875054609, + "grad_norm": 0.21541455388069153, + "learning_rate": 0.0006, + "loss": 3.5274102687835693, + "step": 4837 + }, + { + "epoch": 67.19571865443424, + "grad_norm": 0.21431861817836761, + "learning_rate": 0.0006, + "loss": 3.5112781524658203, + "step": 4838 + }, + { + "epoch": 67.20969855832242, + "grad_norm": 0.22660572826862335, + "learning_rate": 0.0006, + "loss": 3.4687018394470215, + "step": 4839 + }, + { + "epoch": 67.22367846221057, + "grad_norm": 0.21821390092372894, + "learning_rate": 0.0006, + "loss": 3.5137336254119873, + "step": 4840 + }, + { + "epoch": 67.23765836609873, + "grad_norm": 0.20666861534118652, + "learning_rate": 0.0006, + "loss": 3.5264923572540283, + "step": 4841 + }, + { + "epoch": 67.2516382699869, + "grad_norm": 0.2266923040151596, + "learning_rate": 0.0006, + "loss": 3.5288591384887695, + "step": 4842 + }, + { + "epoch": 67.26561817387505, + "grad_norm": 0.20246101915836334, + "learning_rate": 0.0006, + "loss": 3.5267882347106934, + "step": 4843 + }, + { + "epoch": 67.27959807776321, + "grad_norm": 0.20115883648395538, + "learning_rate": 0.0006, + "loss": 3.5004916191101074, + "step": 4844 + }, + { + "epoch": 67.29357798165138, + "grad_norm": 0.21547555923461914, + "learning_rate": 0.0006, + "loss": 3.5347824096679688, + "step": 4845 + }, + { + "epoch": 67.30755788553954, + "grad_norm": 0.22675341367721558, + "learning_rate": 0.0006, + "loss": 3.5119810104370117, + "step": 4846 + }, + { + "epoch": 67.3215377894277, + "grad_norm": 0.2440510094165802, + "learning_rate": 0.0006, + "loss": 3.489138126373291, + "step": 4847 + }, + { + "epoch": 67.33551769331586, + "grad_norm": 0.3055892884731293, + "learning_rate": 0.0006, + "loss": 3.5096774101257324, + "step": 4848 + }, + { + "epoch": 67.34949759720402, + "grad_norm": 0.3053153455257416, + "learning_rate": 0.0006, + "loss": 3.4901437759399414, + "step": 4849 + }, + { + "epoch": 67.36347750109218, + "grad_norm": 0.27368026971817017, + "learning_rate": 0.0006, + "loss": 3.5251317024230957, + "step": 4850 + }, + { + "epoch": 67.37745740498035, + "grad_norm": 0.2427835315465927, + "learning_rate": 0.0006, + "loss": 3.5069375038146973, + "step": 4851 + }, + { + "epoch": 67.3914373088685, + "grad_norm": 0.22328020632266998, + "learning_rate": 0.0006, + "loss": 3.5156240463256836, + "step": 4852 + }, + { + "epoch": 67.40541721275666, + "grad_norm": 0.22034069895744324, + "learning_rate": 0.0006, + "loss": 3.527740001678467, + "step": 4853 + }, + { + "epoch": 67.41939711664482, + "grad_norm": 0.23175004124641418, + "learning_rate": 0.0006, + "loss": 3.5049824714660645, + "step": 4854 + }, + { + "epoch": 67.43337702053299, + "grad_norm": 0.251209020614624, + "learning_rate": 0.0006, + "loss": 3.521754503250122, + "step": 4855 + }, + { + "epoch": 67.44735692442114, + "grad_norm": 0.26046663522720337, + "learning_rate": 0.0006, + "loss": 3.507568359375, + "step": 4856 + }, + { + "epoch": 67.4613368283093, + "grad_norm": 0.2206648588180542, + "learning_rate": 0.0006, + "loss": 3.513352870941162, + "step": 4857 + }, + { + "epoch": 67.47531673219747, + "grad_norm": 0.21608634293079376, + "learning_rate": 0.0006, + "loss": 3.4996538162231445, + "step": 4858 + }, + { + "epoch": 67.48929663608563, + "grad_norm": 0.24478112161159515, + "learning_rate": 0.0006, + "loss": 3.5210018157958984, + "step": 4859 + }, + { + "epoch": 67.50327653997378, + "grad_norm": 0.24971047043800354, + "learning_rate": 0.0006, + "loss": 3.5325865745544434, + "step": 4860 + }, + { + "epoch": 67.51725644386195, + "grad_norm": 0.26053082942962646, + "learning_rate": 0.0006, + "loss": 3.546248435974121, + "step": 4861 + }, + { + "epoch": 67.53123634775011, + "grad_norm": 0.2662231922149658, + "learning_rate": 0.0006, + "loss": 3.5073113441467285, + "step": 4862 + }, + { + "epoch": 67.54521625163827, + "grad_norm": 0.24797172844409943, + "learning_rate": 0.0006, + "loss": 3.536888360977173, + "step": 4863 + }, + { + "epoch": 67.55919615552644, + "grad_norm": 0.2383667528629303, + "learning_rate": 0.0006, + "loss": 3.5343832969665527, + "step": 4864 + }, + { + "epoch": 67.57317605941459, + "grad_norm": 0.2696457803249359, + "learning_rate": 0.0006, + "loss": 3.51254940032959, + "step": 4865 + }, + { + "epoch": 67.58715596330275, + "grad_norm": 0.2644849419593811, + "learning_rate": 0.0006, + "loss": 3.5213255882263184, + "step": 4866 + }, + { + "epoch": 67.60113586719092, + "grad_norm": 0.2375287413597107, + "learning_rate": 0.0006, + "loss": 3.5177063941955566, + "step": 4867 + }, + { + "epoch": 67.61511577107908, + "grad_norm": 0.2249385118484497, + "learning_rate": 0.0006, + "loss": 3.541508674621582, + "step": 4868 + }, + { + "epoch": 67.62909567496723, + "grad_norm": 0.2155243158340454, + "learning_rate": 0.0006, + "loss": 3.5091710090637207, + "step": 4869 + }, + { + "epoch": 67.6430755788554, + "grad_norm": 0.20459716022014618, + "learning_rate": 0.0006, + "loss": 3.5284833908081055, + "step": 4870 + }, + { + "epoch": 67.65705548274356, + "grad_norm": 0.22957809269428253, + "learning_rate": 0.0006, + "loss": 3.4831137657165527, + "step": 4871 + }, + { + "epoch": 67.67103538663171, + "grad_norm": 0.2776307165622711, + "learning_rate": 0.0006, + "loss": 3.5084991455078125, + "step": 4872 + }, + { + "epoch": 67.68501529051987, + "grad_norm": 0.2769255042076111, + "learning_rate": 0.0006, + "loss": 3.5352253913879395, + "step": 4873 + }, + { + "epoch": 67.69899519440804, + "grad_norm": 0.2233399897813797, + "learning_rate": 0.0006, + "loss": 3.5451040267944336, + "step": 4874 + }, + { + "epoch": 67.7129750982962, + "grad_norm": 0.20665188133716583, + "learning_rate": 0.0006, + "loss": 3.528292417526245, + "step": 4875 + }, + { + "epoch": 67.72695500218435, + "grad_norm": 0.22606195509433746, + "learning_rate": 0.0006, + "loss": 3.519838571548462, + "step": 4876 + }, + { + "epoch": 67.74093490607252, + "grad_norm": 0.22447355091571808, + "learning_rate": 0.0006, + "loss": 3.562148094177246, + "step": 4877 + }, + { + "epoch": 67.75491480996068, + "grad_norm": 0.2255096584558487, + "learning_rate": 0.0006, + "loss": 3.53926420211792, + "step": 4878 + }, + { + "epoch": 67.76889471384884, + "grad_norm": 0.2142494022846222, + "learning_rate": 0.0006, + "loss": 3.533456563949585, + "step": 4879 + }, + { + "epoch": 67.78287461773701, + "grad_norm": 0.2157258242368698, + "learning_rate": 0.0006, + "loss": 3.534109592437744, + "step": 4880 + }, + { + "epoch": 67.79685452162516, + "grad_norm": 0.20596624910831451, + "learning_rate": 0.0006, + "loss": 3.5252795219421387, + "step": 4881 + }, + { + "epoch": 67.81083442551332, + "grad_norm": 0.24075612425804138, + "learning_rate": 0.0006, + "loss": 3.549905300140381, + "step": 4882 + }, + { + "epoch": 67.82481432940149, + "grad_norm": 0.27206453680992126, + "learning_rate": 0.0006, + "loss": 3.4850993156433105, + "step": 4883 + }, + { + "epoch": 67.83879423328965, + "grad_norm": 0.2525651454925537, + "learning_rate": 0.0006, + "loss": 3.4936270713806152, + "step": 4884 + }, + { + "epoch": 67.8527741371778, + "grad_norm": 0.20669442415237427, + "learning_rate": 0.0006, + "loss": 3.5201377868652344, + "step": 4885 + }, + { + "epoch": 67.86675404106597, + "grad_norm": 0.19694887101650238, + "learning_rate": 0.0006, + "loss": 3.5146493911743164, + "step": 4886 + }, + { + "epoch": 67.88073394495413, + "grad_norm": 0.20657725632190704, + "learning_rate": 0.0006, + "loss": 3.539475917816162, + "step": 4887 + }, + { + "epoch": 67.89471384884229, + "grad_norm": 0.2321559488773346, + "learning_rate": 0.0006, + "loss": 3.541250705718994, + "step": 4888 + }, + { + "epoch": 67.90869375273044, + "grad_norm": 0.22864052653312683, + "learning_rate": 0.0006, + "loss": 3.5151207447052, + "step": 4889 + }, + { + "epoch": 67.92267365661861, + "grad_norm": 0.2121419608592987, + "learning_rate": 0.0006, + "loss": 3.5219309329986572, + "step": 4890 + }, + { + "epoch": 67.93665356050677, + "grad_norm": 0.2194126695394516, + "learning_rate": 0.0006, + "loss": 3.5411415100097656, + "step": 4891 + }, + { + "epoch": 67.95063346439493, + "grad_norm": 0.23670069873332977, + "learning_rate": 0.0006, + "loss": 3.56632137298584, + "step": 4892 + }, + { + "epoch": 67.9646133682831, + "grad_norm": 0.22159531712532043, + "learning_rate": 0.0006, + "loss": 3.5245089530944824, + "step": 4893 + }, + { + "epoch": 67.97859327217125, + "grad_norm": 0.20856274664402008, + "learning_rate": 0.0006, + "loss": 3.5363054275512695, + "step": 4894 + }, + { + "epoch": 67.99257317605941, + "grad_norm": 0.21568304300308228, + "learning_rate": 0.0006, + "loss": 3.5226120948791504, + "step": 4895 + }, + { + "epoch": 68.0, + "grad_norm": 0.22287404537200928, + "learning_rate": 0.0006, + "loss": 3.5020053386688232, + "step": 4896 + }, + { + "epoch": 68.0, + "eval_loss": 3.976909637451172, + "eval_runtime": 44.2603, + "eval_samples_per_second": 55.174, + "eval_steps_per_second": 3.457, + "step": 4896 + }, + { + "epoch": 68.01397990388816, + "grad_norm": 0.20234280824661255, + "learning_rate": 0.0006, + "loss": 3.484044075012207, + "step": 4897 + }, + { + "epoch": 68.02795980777633, + "grad_norm": 0.2183598279953003, + "learning_rate": 0.0006, + "loss": 3.4933700561523438, + "step": 4898 + }, + { + "epoch": 68.04193971166448, + "grad_norm": 0.24236822128295898, + "learning_rate": 0.0006, + "loss": 3.5028629302978516, + "step": 4899 + }, + { + "epoch": 68.05591961555264, + "grad_norm": 0.26641783118247986, + "learning_rate": 0.0006, + "loss": 3.475382089614868, + "step": 4900 + }, + { + "epoch": 68.06989951944081, + "grad_norm": 0.2867112159729004, + "learning_rate": 0.0006, + "loss": 3.5016913414001465, + "step": 4901 + }, + { + "epoch": 68.08387942332897, + "grad_norm": 0.24962085485458374, + "learning_rate": 0.0006, + "loss": 3.484367609024048, + "step": 4902 + }, + { + "epoch": 68.09785932721712, + "grad_norm": 0.2124275118112564, + "learning_rate": 0.0006, + "loss": 3.5119738578796387, + "step": 4903 + }, + { + "epoch": 68.1118392311053, + "grad_norm": 0.24732011556625366, + "learning_rate": 0.0006, + "loss": 3.486185073852539, + "step": 4904 + }, + { + "epoch": 68.12581913499345, + "grad_norm": 0.28683924674987793, + "learning_rate": 0.0006, + "loss": 3.495997905731201, + "step": 4905 + }, + { + "epoch": 68.1397990388816, + "grad_norm": 0.25751420855522156, + "learning_rate": 0.0006, + "loss": 3.4736456871032715, + "step": 4906 + }, + { + "epoch": 68.15377894276976, + "grad_norm": 0.24258914589881897, + "learning_rate": 0.0006, + "loss": 3.4900879859924316, + "step": 4907 + }, + { + "epoch": 68.16775884665793, + "grad_norm": 0.2878887951374054, + "learning_rate": 0.0006, + "loss": 3.4851484298706055, + "step": 4908 + }, + { + "epoch": 68.18173875054609, + "grad_norm": 0.27111393213272095, + "learning_rate": 0.0006, + "loss": 3.4835691452026367, + "step": 4909 + }, + { + "epoch": 68.19571865443424, + "grad_norm": 0.2475033849477768, + "learning_rate": 0.0006, + "loss": 3.4887213706970215, + "step": 4910 + }, + { + "epoch": 68.20969855832242, + "grad_norm": 0.267839252948761, + "learning_rate": 0.0006, + "loss": 3.515256404876709, + "step": 4911 + }, + { + "epoch": 68.22367846221057, + "grad_norm": 0.2135075181722641, + "learning_rate": 0.0006, + "loss": 3.5156445503234863, + "step": 4912 + }, + { + "epoch": 68.23765836609873, + "grad_norm": 0.22425328195095062, + "learning_rate": 0.0006, + "loss": 3.505338668823242, + "step": 4913 + }, + { + "epoch": 68.2516382699869, + "grad_norm": 0.2322927862405777, + "learning_rate": 0.0006, + "loss": 3.519695281982422, + "step": 4914 + }, + { + "epoch": 68.26561817387505, + "grad_norm": 0.2472568154335022, + "learning_rate": 0.0006, + "loss": 3.4845151901245117, + "step": 4915 + }, + { + "epoch": 68.27959807776321, + "grad_norm": 0.2725318968296051, + "learning_rate": 0.0006, + "loss": 3.4981484413146973, + "step": 4916 + }, + { + "epoch": 68.29357798165138, + "grad_norm": 0.2940191626548767, + "learning_rate": 0.0006, + "loss": 3.5088295936584473, + "step": 4917 + }, + { + "epoch": 68.30755788553954, + "grad_norm": 0.24303823709487915, + "learning_rate": 0.0006, + "loss": 3.492511749267578, + "step": 4918 + }, + { + "epoch": 68.3215377894277, + "grad_norm": 0.21951992809772491, + "learning_rate": 0.0006, + "loss": 3.509099006652832, + "step": 4919 + }, + { + "epoch": 68.33551769331586, + "grad_norm": 0.22776944935321808, + "learning_rate": 0.0006, + "loss": 3.501638650894165, + "step": 4920 + }, + { + "epoch": 68.34949759720402, + "grad_norm": 0.21173885464668274, + "learning_rate": 0.0006, + "loss": 3.4885807037353516, + "step": 4921 + }, + { + "epoch": 68.36347750109218, + "grad_norm": 0.2253648191690445, + "learning_rate": 0.0006, + "loss": 3.5350418090820312, + "step": 4922 + }, + { + "epoch": 68.37745740498035, + "grad_norm": 0.24312502145767212, + "learning_rate": 0.0006, + "loss": 3.490877866744995, + "step": 4923 + }, + { + "epoch": 68.3914373088685, + "grad_norm": 0.2103606015443802, + "learning_rate": 0.0006, + "loss": 3.5088863372802734, + "step": 4924 + }, + { + "epoch": 68.40541721275666, + "grad_norm": 0.19921863079071045, + "learning_rate": 0.0006, + "loss": 3.5282039642333984, + "step": 4925 + }, + { + "epoch": 68.41939711664482, + "grad_norm": 0.2041940689086914, + "learning_rate": 0.0006, + "loss": 3.5212771892547607, + "step": 4926 + }, + { + "epoch": 68.43337702053299, + "grad_norm": 0.22238804399967194, + "learning_rate": 0.0006, + "loss": 3.4951324462890625, + "step": 4927 + }, + { + "epoch": 68.44735692442114, + "grad_norm": 0.23161815106868744, + "learning_rate": 0.0006, + "loss": 3.5463013648986816, + "step": 4928 + }, + { + "epoch": 68.4613368283093, + "grad_norm": 0.21717964112758636, + "learning_rate": 0.0006, + "loss": 3.5081775188446045, + "step": 4929 + }, + { + "epoch": 68.47531673219747, + "grad_norm": 0.21505609154701233, + "learning_rate": 0.0006, + "loss": 3.52695631980896, + "step": 4930 + }, + { + "epoch": 68.48929663608563, + "grad_norm": 0.2720189094543457, + "learning_rate": 0.0006, + "loss": 3.497748374938965, + "step": 4931 + }, + { + "epoch": 68.50327653997378, + "grad_norm": 0.2619168758392334, + "learning_rate": 0.0006, + "loss": 3.5015270709991455, + "step": 4932 + }, + { + "epoch": 68.51725644386195, + "grad_norm": 0.21718725562095642, + "learning_rate": 0.0006, + "loss": 3.533599853515625, + "step": 4933 + }, + { + "epoch": 68.53123634775011, + "grad_norm": 0.22977295517921448, + "learning_rate": 0.0006, + "loss": 3.507884979248047, + "step": 4934 + }, + { + "epoch": 68.54521625163827, + "grad_norm": 0.230342298746109, + "learning_rate": 0.0006, + "loss": 3.497065544128418, + "step": 4935 + }, + { + "epoch": 68.55919615552644, + "grad_norm": 0.2253657728433609, + "learning_rate": 0.0006, + "loss": 3.5066728591918945, + "step": 4936 + }, + { + "epoch": 68.57317605941459, + "grad_norm": 0.23173992335796356, + "learning_rate": 0.0006, + "loss": 3.5072999000549316, + "step": 4937 + }, + { + "epoch": 68.58715596330275, + "grad_norm": 0.22984914481639862, + "learning_rate": 0.0006, + "loss": 3.5296144485473633, + "step": 4938 + }, + { + "epoch": 68.60113586719092, + "grad_norm": 0.2349584549665451, + "learning_rate": 0.0006, + "loss": 3.5185141563415527, + "step": 4939 + }, + { + "epoch": 68.61511577107908, + "grad_norm": 0.2469010204076767, + "learning_rate": 0.0006, + "loss": 3.545579433441162, + "step": 4940 + }, + { + "epoch": 68.62909567496723, + "grad_norm": 0.23078389465808868, + "learning_rate": 0.0006, + "loss": 3.5281553268432617, + "step": 4941 + }, + { + "epoch": 68.6430755788554, + "grad_norm": 0.23545116186141968, + "learning_rate": 0.0006, + "loss": 3.5376791954040527, + "step": 4942 + }, + { + "epoch": 68.65705548274356, + "grad_norm": 0.22288277745246887, + "learning_rate": 0.0006, + "loss": 3.490978240966797, + "step": 4943 + }, + { + "epoch": 68.67103538663171, + "grad_norm": 0.21703778207302094, + "learning_rate": 0.0006, + "loss": 3.505856513977051, + "step": 4944 + }, + { + "epoch": 68.68501529051987, + "grad_norm": 0.24922960996627808, + "learning_rate": 0.0006, + "loss": 3.5120937824249268, + "step": 4945 + }, + { + "epoch": 68.69899519440804, + "grad_norm": 0.24075160920619965, + "learning_rate": 0.0006, + "loss": 3.515216588973999, + "step": 4946 + }, + { + "epoch": 68.7129750982962, + "grad_norm": 0.21714574098587036, + "learning_rate": 0.0006, + "loss": 3.5308592319488525, + "step": 4947 + }, + { + "epoch": 68.72695500218435, + "grad_norm": 0.21521902084350586, + "learning_rate": 0.0006, + "loss": 3.5040221214294434, + "step": 4948 + }, + { + "epoch": 68.74093490607252, + "grad_norm": 0.2078350931406021, + "learning_rate": 0.0006, + "loss": 3.5399329662323, + "step": 4949 + }, + { + "epoch": 68.75491480996068, + "grad_norm": 0.23039595782756805, + "learning_rate": 0.0006, + "loss": 3.5079939365386963, + "step": 4950 + }, + { + "epoch": 68.76889471384884, + "grad_norm": 0.23072801530361176, + "learning_rate": 0.0006, + "loss": 3.5254414081573486, + "step": 4951 + }, + { + "epoch": 68.78287461773701, + "grad_norm": 0.204904243350029, + "learning_rate": 0.0006, + "loss": 3.5212371349334717, + "step": 4952 + }, + { + "epoch": 68.79685452162516, + "grad_norm": 0.21405813097953796, + "learning_rate": 0.0006, + "loss": 3.557215690612793, + "step": 4953 + }, + { + "epoch": 68.81083442551332, + "grad_norm": 0.2332632839679718, + "learning_rate": 0.0006, + "loss": 3.522718906402588, + "step": 4954 + }, + { + "epoch": 68.82481432940149, + "grad_norm": 0.2211279273033142, + "learning_rate": 0.0006, + "loss": 3.534191608428955, + "step": 4955 + }, + { + "epoch": 68.83879423328965, + "grad_norm": 0.2153792679309845, + "learning_rate": 0.0006, + "loss": 3.497591018676758, + "step": 4956 + }, + { + "epoch": 68.8527741371778, + "grad_norm": 0.28634506464004517, + "learning_rate": 0.0006, + "loss": 3.5333778858184814, + "step": 4957 + }, + { + "epoch": 68.86675404106597, + "grad_norm": 0.2748981714248657, + "learning_rate": 0.0006, + "loss": 3.533328056335449, + "step": 4958 + }, + { + "epoch": 68.88073394495413, + "grad_norm": 0.22137348353862762, + "learning_rate": 0.0006, + "loss": 3.516744613647461, + "step": 4959 + }, + { + "epoch": 68.89471384884229, + "grad_norm": 0.21476638317108154, + "learning_rate": 0.0006, + "loss": 3.5090954303741455, + "step": 4960 + }, + { + "epoch": 68.90869375273044, + "grad_norm": 0.2204403430223465, + "learning_rate": 0.0006, + "loss": 3.534665107727051, + "step": 4961 + }, + { + "epoch": 68.92267365661861, + "grad_norm": 0.20083564519882202, + "learning_rate": 0.0006, + "loss": 3.5572776794433594, + "step": 4962 + }, + { + "epoch": 68.93665356050677, + "grad_norm": 0.23286207020282745, + "learning_rate": 0.0006, + "loss": 3.5279769897460938, + "step": 4963 + }, + { + "epoch": 68.95063346439493, + "grad_norm": 0.2934340536594391, + "learning_rate": 0.0006, + "loss": 3.5299172401428223, + "step": 4964 + }, + { + "epoch": 68.9646133682831, + "grad_norm": 0.29742664098739624, + "learning_rate": 0.0006, + "loss": 3.5258350372314453, + "step": 4965 + }, + { + "epoch": 68.97859327217125, + "grad_norm": 0.23674239218235016, + "learning_rate": 0.0006, + "loss": 3.511875629425049, + "step": 4966 + }, + { + "epoch": 68.99257317605941, + "grad_norm": 0.1859714239835739, + "learning_rate": 0.0006, + "loss": 3.5111045837402344, + "step": 4967 + }, + { + "epoch": 69.0, + "grad_norm": 0.21548990905284882, + "learning_rate": 0.0006, + "loss": 3.567469358444214, + "step": 4968 + }, + { + "epoch": 69.0, + "eval_loss": 3.987680673599243, + "eval_runtime": 44.8193, + "eval_samples_per_second": 54.485, + "eval_steps_per_second": 3.414, + "step": 4968 + }, + { + "epoch": 69.01397990388816, + "grad_norm": 0.25460419058799744, + "learning_rate": 0.0006, + "loss": 3.513350009918213, + "step": 4969 + }, + { + "epoch": 69.02795980777633, + "grad_norm": 0.2635819613933563, + "learning_rate": 0.0006, + "loss": 3.516538143157959, + "step": 4970 + }, + { + "epoch": 69.04193971166448, + "grad_norm": 0.25024983286857605, + "learning_rate": 0.0006, + "loss": 3.501711845397949, + "step": 4971 + }, + { + "epoch": 69.05591961555264, + "grad_norm": 0.23533429205417633, + "learning_rate": 0.0006, + "loss": 3.4735984802246094, + "step": 4972 + }, + { + "epoch": 69.06989951944081, + "grad_norm": 0.23477932810783386, + "learning_rate": 0.0006, + "loss": 3.532632827758789, + "step": 4973 + }, + { + "epoch": 69.08387942332897, + "grad_norm": 0.23769758641719818, + "learning_rate": 0.0006, + "loss": 3.4775495529174805, + "step": 4974 + }, + { + "epoch": 69.09785932721712, + "grad_norm": 0.24599312245845795, + "learning_rate": 0.0006, + "loss": 3.481222629547119, + "step": 4975 + }, + { + "epoch": 69.1118392311053, + "grad_norm": 0.24212618172168732, + "learning_rate": 0.0006, + "loss": 3.485240936279297, + "step": 4976 + }, + { + "epoch": 69.12581913499345, + "grad_norm": 0.2271437644958496, + "learning_rate": 0.0006, + "loss": 3.476949691772461, + "step": 4977 + }, + { + "epoch": 69.1397990388816, + "grad_norm": 0.2542489469051361, + "learning_rate": 0.0006, + "loss": 3.4601399898529053, + "step": 4978 + }, + { + "epoch": 69.15377894276976, + "grad_norm": 0.24926388263702393, + "learning_rate": 0.0006, + "loss": 3.4832189083099365, + "step": 4979 + }, + { + "epoch": 69.16775884665793, + "grad_norm": 0.22356736660003662, + "learning_rate": 0.0006, + "loss": 3.5187554359436035, + "step": 4980 + }, + { + "epoch": 69.18173875054609, + "grad_norm": 0.21727295219898224, + "learning_rate": 0.0006, + "loss": 3.5310418605804443, + "step": 4981 + }, + { + "epoch": 69.19571865443424, + "grad_norm": 0.22234170138835907, + "learning_rate": 0.0006, + "loss": 3.506479263305664, + "step": 4982 + }, + { + "epoch": 69.20969855832242, + "grad_norm": 0.21620802581310272, + "learning_rate": 0.0006, + "loss": 3.488720655441284, + "step": 4983 + }, + { + "epoch": 69.22367846221057, + "grad_norm": 0.23558273911476135, + "learning_rate": 0.0006, + "loss": 3.4884839057922363, + "step": 4984 + }, + { + "epoch": 69.23765836609873, + "grad_norm": 0.2330513894557953, + "learning_rate": 0.0006, + "loss": 3.4810781478881836, + "step": 4985 + }, + { + "epoch": 69.2516382699869, + "grad_norm": 0.23570097982883453, + "learning_rate": 0.0006, + "loss": 3.4966390132904053, + "step": 4986 + }, + { + "epoch": 69.26561817387505, + "grad_norm": 0.2415456771850586, + "learning_rate": 0.0006, + "loss": 3.499464511871338, + "step": 4987 + }, + { + "epoch": 69.27959807776321, + "grad_norm": 0.22498410940170288, + "learning_rate": 0.0006, + "loss": 3.494260311126709, + "step": 4988 + }, + { + "epoch": 69.29357798165138, + "grad_norm": 0.23802009224891663, + "learning_rate": 0.0006, + "loss": 3.4801578521728516, + "step": 4989 + }, + { + "epoch": 69.30755788553954, + "grad_norm": 0.24189673364162445, + "learning_rate": 0.0006, + "loss": 3.513599395751953, + "step": 4990 + }, + { + "epoch": 69.3215377894277, + "grad_norm": 0.21577486395835876, + "learning_rate": 0.0006, + "loss": 3.493995428085327, + "step": 4991 + }, + { + "epoch": 69.33551769331586, + "grad_norm": 0.21220745146274567, + "learning_rate": 0.0006, + "loss": 3.495041847229004, + "step": 4992 + }, + { + "epoch": 69.34949759720402, + "grad_norm": 0.248879075050354, + "learning_rate": 0.0006, + "loss": 3.5003933906555176, + "step": 4993 + }, + { + "epoch": 69.36347750109218, + "grad_norm": 0.26753994822502136, + "learning_rate": 0.0006, + "loss": 3.491333484649658, + "step": 4994 + }, + { + "epoch": 69.37745740498035, + "grad_norm": 0.24140691757202148, + "learning_rate": 0.0006, + "loss": 3.495715618133545, + "step": 4995 + }, + { + "epoch": 69.3914373088685, + "grad_norm": 0.20997264981269836, + "learning_rate": 0.0006, + "loss": 3.520455837249756, + "step": 4996 + }, + { + "epoch": 69.40541721275666, + "grad_norm": 0.21708904206752777, + "learning_rate": 0.0006, + "loss": 3.4696202278137207, + "step": 4997 + }, + { + "epoch": 69.41939711664482, + "grad_norm": 0.25731977820396423, + "learning_rate": 0.0006, + "loss": 3.4827113151550293, + "step": 4998 + }, + { + "epoch": 69.43337702053299, + "grad_norm": 0.24132139980793, + "learning_rate": 0.0006, + "loss": 3.5224547386169434, + "step": 4999 + }, + { + "epoch": 69.44735692442114, + "grad_norm": 0.21150226891040802, + "learning_rate": 0.0006, + "loss": 3.4872965812683105, + "step": 5000 + }, + { + "epoch": 69.4613368283093, + "grad_norm": 0.20874962210655212, + "learning_rate": 0.0006, + "loss": 3.477656364440918, + "step": 5001 + }, + { + "epoch": 69.47531673219747, + "grad_norm": 0.20523078739643097, + "learning_rate": 0.0006, + "loss": 3.4912261962890625, + "step": 5002 + }, + { + "epoch": 69.48929663608563, + "grad_norm": 0.20590092241764069, + "learning_rate": 0.0006, + "loss": 3.5227253437042236, + "step": 5003 + }, + { + "epoch": 69.50327653997378, + "grad_norm": 0.21837440133094788, + "learning_rate": 0.0006, + "loss": 3.514094591140747, + "step": 5004 + }, + { + "epoch": 69.51725644386195, + "grad_norm": 0.23487630486488342, + "learning_rate": 0.0006, + "loss": 3.517775535583496, + "step": 5005 + }, + { + "epoch": 69.53123634775011, + "grad_norm": 0.23771126568317413, + "learning_rate": 0.0006, + "loss": 3.5164601802825928, + "step": 5006 + }, + { + "epoch": 69.54521625163827, + "grad_norm": 0.23423148691654205, + "learning_rate": 0.0006, + "loss": 3.5120983123779297, + "step": 5007 + }, + { + "epoch": 69.55919615552644, + "grad_norm": 0.2332620471715927, + "learning_rate": 0.0006, + "loss": 3.5184125900268555, + "step": 5008 + }, + { + "epoch": 69.57317605941459, + "grad_norm": 0.24148650467395782, + "learning_rate": 0.0006, + "loss": 3.509979248046875, + "step": 5009 + }, + { + "epoch": 69.58715596330275, + "grad_norm": 0.20881295204162598, + "learning_rate": 0.0006, + "loss": 3.5542125701904297, + "step": 5010 + }, + { + "epoch": 69.60113586719092, + "grad_norm": 0.21871483325958252, + "learning_rate": 0.0006, + "loss": 3.5178754329681396, + "step": 5011 + }, + { + "epoch": 69.61511577107908, + "grad_norm": 0.21630224585533142, + "learning_rate": 0.0006, + "loss": 3.5215046405792236, + "step": 5012 + }, + { + "epoch": 69.62909567496723, + "grad_norm": 0.2211679369211197, + "learning_rate": 0.0006, + "loss": 3.5213570594787598, + "step": 5013 + }, + { + "epoch": 69.6430755788554, + "grad_norm": 0.2206520140171051, + "learning_rate": 0.0006, + "loss": 3.5378212928771973, + "step": 5014 + }, + { + "epoch": 69.65705548274356, + "grad_norm": 0.21500450372695923, + "learning_rate": 0.0006, + "loss": 3.536560535430908, + "step": 5015 + }, + { + "epoch": 69.67103538663171, + "grad_norm": 0.2839236855506897, + "learning_rate": 0.0006, + "loss": 3.4911935329437256, + "step": 5016 + }, + { + "epoch": 69.68501529051987, + "grad_norm": 0.28307443857192993, + "learning_rate": 0.0006, + "loss": 3.5304269790649414, + "step": 5017 + }, + { + "epoch": 69.69899519440804, + "grad_norm": 0.20590558648109436, + "learning_rate": 0.0006, + "loss": 3.505474328994751, + "step": 5018 + }, + { + "epoch": 69.7129750982962, + "grad_norm": 0.24152527749538422, + "learning_rate": 0.0006, + "loss": 3.501438617706299, + "step": 5019 + }, + { + "epoch": 69.72695500218435, + "grad_norm": 0.21834975481033325, + "learning_rate": 0.0006, + "loss": 3.515756130218506, + "step": 5020 + }, + { + "epoch": 69.74093490607252, + "grad_norm": 0.2066304087638855, + "learning_rate": 0.0006, + "loss": 3.507535457611084, + "step": 5021 + }, + { + "epoch": 69.75491480996068, + "grad_norm": 0.2547939419746399, + "learning_rate": 0.0006, + "loss": 3.512665033340454, + "step": 5022 + }, + { + "epoch": 69.76889471384884, + "grad_norm": 0.25813716650009155, + "learning_rate": 0.0006, + "loss": 3.517632484436035, + "step": 5023 + }, + { + "epoch": 69.78287461773701, + "grad_norm": 0.223160520195961, + "learning_rate": 0.0006, + "loss": 3.5371553897857666, + "step": 5024 + }, + { + "epoch": 69.79685452162516, + "grad_norm": 0.2616842985153198, + "learning_rate": 0.0006, + "loss": 3.519502639770508, + "step": 5025 + }, + { + "epoch": 69.81083442551332, + "grad_norm": 0.2976956367492676, + "learning_rate": 0.0006, + "loss": 3.521639108657837, + "step": 5026 + }, + { + "epoch": 69.82481432940149, + "grad_norm": 0.253215491771698, + "learning_rate": 0.0006, + "loss": 3.5242714881896973, + "step": 5027 + }, + { + "epoch": 69.83879423328965, + "grad_norm": 0.2184867113828659, + "learning_rate": 0.0006, + "loss": 3.5430054664611816, + "step": 5028 + }, + { + "epoch": 69.8527741371778, + "grad_norm": 0.2110685110092163, + "learning_rate": 0.0006, + "loss": 3.518589735031128, + "step": 5029 + }, + { + "epoch": 69.86675404106597, + "grad_norm": 0.20499959588050842, + "learning_rate": 0.0006, + "loss": 3.5182108879089355, + "step": 5030 + }, + { + "epoch": 69.88073394495413, + "grad_norm": 0.21809129416942596, + "learning_rate": 0.0006, + "loss": 3.52005672454834, + "step": 5031 + }, + { + "epoch": 69.89471384884229, + "grad_norm": 0.22639480233192444, + "learning_rate": 0.0006, + "loss": 3.5405101776123047, + "step": 5032 + }, + { + "epoch": 69.90869375273044, + "grad_norm": 0.23321937024593353, + "learning_rate": 0.0006, + "loss": 3.5433502197265625, + "step": 5033 + }, + { + "epoch": 69.92267365661861, + "grad_norm": 0.22899670898914337, + "learning_rate": 0.0006, + "loss": 3.5300326347351074, + "step": 5034 + }, + { + "epoch": 69.93665356050677, + "grad_norm": 0.20367449522018433, + "learning_rate": 0.0006, + "loss": 3.5184967517852783, + "step": 5035 + }, + { + "epoch": 69.95063346439493, + "grad_norm": 0.21195004880428314, + "learning_rate": 0.0006, + "loss": 3.518951416015625, + "step": 5036 + }, + { + "epoch": 69.9646133682831, + "grad_norm": 0.23766686022281647, + "learning_rate": 0.0006, + "loss": 3.5148468017578125, + "step": 5037 + }, + { + "epoch": 69.97859327217125, + "grad_norm": 0.2558269500732422, + "learning_rate": 0.0006, + "loss": 3.5006861686706543, + "step": 5038 + }, + { + "epoch": 69.99257317605941, + "grad_norm": 0.23287998139858246, + "learning_rate": 0.0006, + "loss": 3.533900260925293, + "step": 5039 + }, + { + "epoch": 70.0, + "grad_norm": 0.24295051395893097, + "learning_rate": 0.0006, + "loss": 3.539205551147461, + "step": 5040 + }, + { + "epoch": 70.0, + "eval_loss": 3.9832167625427246, + "eval_runtime": 44.8557, + "eval_samples_per_second": 54.441, + "eval_steps_per_second": 3.411, + "step": 5040 + }, + { + "epoch": 70.01397990388816, + "grad_norm": 0.2342662364244461, + "learning_rate": 0.0006, + "loss": 3.4744529724121094, + "step": 5041 + }, + { + "epoch": 70.02795980777633, + "grad_norm": 0.24356921017169952, + "learning_rate": 0.0006, + "loss": 3.4678807258605957, + "step": 5042 + }, + { + "epoch": 70.04193971166448, + "grad_norm": 0.23141354322433472, + "learning_rate": 0.0006, + "loss": 3.4766411781311035, + "step": 5043 + }, + { + "epoch": 70.05591961555264, + "grad_norm": 0.2291923612356186, + "learning_rate": 0.0006, + "loss": 3.520775318145752, + "step": 5044 + }, + { + "epoch": 70.06989951944081, + "grad_norm": 0.24368838965892792, + "learning_rate": 0.0006, + "loss": 3.498244285583496, + "step": 5045 + }, + { + "epoch": 70.08387942332897, + "grad_norm": 0.24241037666797638, + "learning_rate": 0.0006, + "loss": 3.5297322273254395, + "step": 5046 + }, + { + "epoch": 70.09785932721712, + "grad_norm": 0.23169396817684174, + "learning_rate": 0.0006, + "loss": 3.4835686683654785, + "step": 5047 + }, + { + "epoch": 70.1118392311053, + "grad_norm": 0.21968135237693787, + "learning_rate": 0.0006, + "loss": 3.4419684410095215, + "step": 5048 + }, + { + "epoch": 70.12581913499345, + "grad_norm": 0.22738288342952728, + "learning_rate": 0.0006, + "loss": 3.4862613677978516, + "step": 5049 + }, + { + "epoch": 70.1397990388816, + "grad_norm": 0.2366214394569397, + "learning_rate": 0.0006, + "loss": 3.4799740314483643, + "step": 5050 + }, + { + "epoch": 70.15377894276976, + "grad_norm": 0.2310013324022293, + "learning_rate": 0.0006, + "loss": 3.491863250732422, + "step": 5051 + }, + { + "epoch": 70.16775884665793, + "grad_norm": 0.22765891253948212, + "learning_rate": 0.0006, + "loss": 3.4830703735351562, + "step": 5052 + }, + { + "epoch": 70.18173875054609, + "grad_norm": 0.23263567686080933, + "learning_rate": 0.0006, + "loss": 3.4692440032958984, + "step": 5053 + }, + { + "epoch": 70.19571865443424, + "grad_norm": 0.22552041709423065, + "learning_rate": 0.0006, + "loss": 3.4950807094573975, + "step": 5054 + }, + { + "epoch": 70.20969855832242, + "grad_norm": 0.2157282680273056, + "learning_rate": 0.0006, + "loss": 3.501680374145508, + "step": 5055 + }, + { + "epoch": 70.22367846221057, + "grad_norm": 0.2158394753932953, + "learning_rate": 0.0006, + "loss": 3.4894015789031982, + "step": 5056 + }, + { + "epoch": 70.23765836609873, + "grad_norm": 0.22618336975574493, + "learning_rate": 0.0006, + "loss": 3.479133129119873, + "step": 5057 + }, + { + "epoch": 70.2516382699869, + "grad_norm": 0.23803631961345673, + "learning_rate": 0.0006, + "loss": 3.4984683990478516, + "step": 5058 + }, + { + "epoch": 70.26561817387505, + "grad_norm": 0.23439951241016388, + "learning_rate": 0.0006, + "loss": 3.503323554992676, + "step": 5059 + }, + { + "epoch": 70.27959807776321, + "grad_norm": 0.23607788980007172, + "learning_rate": 0.0006, + "loss": 3.5056004524230957, + "step": 5060 + }, + { + "epoch": 70.29357798165138, + "grad_norm": 0.22633908689022064, + "learning_rate": 0.0006, + "loss": 3.5278968811035156, + "step": 5061 + }, + { + "epoch": 70.30755788553954, + "grad_norm": 0.21656733751296997, + "learning_rate": 0.0006, + "loss": 3.5163440704345703, + "step": 5062 + }, + { + "epoch": 70.3215377894277, + "grad_norm": 0.19461899995803833, + "learning_rate": 0.0006, + "loss": 3.506269931793213, + "step": 5063 + }, + { + "epoch": 70.33551769331586, + "grad_norm": 0.22591930627822876, + "learning_rate": 0.0006, + "loss": 3.51469087600708, + "step": 5064 + }, + { + "epoch": 70.34949759720402, + "grad_norm": 0.23841705918312073, + "learning_rate": 0.0006, + "loss": 3.4775524139404297, + "step": 5065 + }, + { + "epoch": 70.36347750109218, + "grad_norm": 0.24957220256328583, + "learning_rate": 0.0006, + "loss": 3.5303030014038086, + "step": 5066 + }, + { + "epoch": 70.37745740498035, + "grad_norm": 0.2574119567871094, + "learning_rate": 0.0006, + "loss": 3.524887800216675, + "step": 5067 + }, + { + "epoch": 70.3914373088685, + "grad_norm": 0.23704029619693756, + "learning_rate": 0.0006, + "loss": 3.5258219242095947, + "step": 5068 + }, + { + "epoch": 70.40541721275666, + "grad_norm": 0.221607968211174, + "learning_rate": 0.0006, + "loss": 3.5022010803222656, + "step": 5069 + }, + { + "epoch": 70.41939711664482, + "grad_norm": 0.2071426510810852, + "learning_rate": 0.0006, + "loss": 3.499718189239502, + "step": 5070 + }, + { + "epoch": 70.43337702053299, + "grad_norm": 0.2146281599998474, + "learning_rate": 0.0006, + "loss": 3.495534896850586, + "step": 5071 + }, + { + "epoch": 70.44735692442114, + "grad_norm": 0.21276946365833282, + "learning_rate": 0.0006, + "loss": 3.5138864517211914, + "step": 5072 + }, + { + "epoch": 70.4613368283093, + "grad_norm": 0.21113698184490204, + "learning_rate": 0.0006, + "loss": 3.531108856201172, + "step": 5073 + }, + { + "epoch": 70.47531673219747, + "grad_norm": 0.233713299036026, + "learning_rate": 0.0006, + "loss": 3.499675750732422, + "step": 5074 + }, + { + "epoch": 70.48929663608563, + "grad_norm": 0.2445792704820633, + "learning_rate": 0.0006, + "loss": 3.489576816558838, + "step": 5075 + }, + { + "epoch": 70.50327653997378, + "grad_norm": 0.22929179668426514, + "learning_rate": 0.0006, + "loss": 3.511636257171631, + "step": 5076 + }, + { + "epoch": 70.51725644386195, + "grad_norm": 0.21347999572753906, + "learning_rate": 0.0006, + "loss": 3.482804536819458, + "step": 5077 + }, + { + "epoch": 70.53123634775011, + "grad_norm": 0.21338650584220886, + "learning_rate": 0.0006, + "loss": 3.4532628059387207, + "step": 5078 + }, + { + "epoch": 70.54521625163827, + "grad_norm": 0.24062009155750275, + "learning_rate": 0.0006, + "loss": 3.5084481239318848, + "step": 5079 + }, + { + "epoch": 70.55919615552644, + "grad_norm": 0.2101839929819107, + "learning_rate": 0.0006, + "loss": 3.5022215843200684, + "step": 5080 + }, + { + "epoch": 70.57317605941459, + "grad_norm": 0.21427087485790253, + "learning_rate": 0.0006, + "loss": 3.468010902404785, + "step": 5081 + }, + { + "epoch": 70.58715596330275, + "grad_norm": 0.21073004603385925, + "learning_rate": 0.0006, + "loss": 3.53702974319458, + "step": 5082 + }, + { + "epoch": 70.60113586719092, + "grad_norm": 0.2176336646080017, + "learning_rate": 0.0006, + "loss": 3.4857382774353027, + "step": 5083 + }, + { + "epoch": 70.61511577107908, + "grad_norm": 0.24387815594673157, + "learning_rate": 0.0006, + "loss": 3.5301153659820557, + "step": 5084 + }, + { + "epoch": 70.62909567496723, + "grad_norm": 0.2560335397720337, + "learning_rate": 0.0006, + "loss": 3.4792633056640625, + "step": 5085 + }, + { + "epoch": 70.6430755788554, + "grad_norm": 0.24951279163360596, + "learning_rate": 0.0006, + "loss": 3.5134525299072266, + "step": 5086 + }, + { + "epoch": 70.65705548274356, + "grad_norm": 0.23483215272426605, + "learning_rate": 0.0006, + "loss": 3.5170576572418213, + "step": 5087 + }, + { + "epoch": 70.67103538663171, + "grad_norm": 0.21526923775672913, + "learning_rate": 0.0006, + "loss": 3.4973630905151367, + "step": 5088 + }, + { + "epoch": 70.68501529051987, + "grad_norm": 0.2129240781068802, + "learning_rate": 0.0006, + "loss": 3.5371346473693848, + "step": 5089 + }, + { + "epoch": 70.69899519440804, + "grad_norm": 0.22548805177211761, + "learning_rate": 0.0006, + "loss": 3.509589195251465, + "step": 5090 + }, + { + "epoch": 70.7129750982962, + "grad_norm": 0.21366626024246216, + "learning_rate": 0.0006, + "loss": 3.5004022121429443, + "step": 5091 + }, + { + "epoch": 70.72695500218435, + "grad_norm": 0.2066943347454071, + "learning_rate": 0.0006, + "loss": 3.5086469650268555, + "step": 5092 + }, + { + "epoch": 70.74093490607252, + "grad_norm": 0.20916718244552612, + "learning_rate": 0.0006, + "loss": 3.508835554122925, + "step": 5093 + }, + { + "epoch": 70.75491480996068, + "grad_norm": 0.21769332885742188, + "learning_rate": 0.0006, + "loss": 3.470569372177124, + "step": 5094 + }, + { + "epoch": 70.76889471384884, + "grad_norm": 0.2393418401479721, + "learning_rate": 0.0006, + "loss": 3.5554609298706055, + "step": 5095 + }, + { + "epoch": 70.78287461773701, + "grad_norm": 0.22856567800045013, + "learning_rate": 0.0006, + "loss": 3.5240354537963867, + "step": 5096 + }, + { + "epoch": 70.79685452162516, + "grad_norm": 0.2168598771095276, + "learning_rate": 0.0006, + "loss": 3.5223824977874756, + "step": 5097 + }, + { + "epoch": 70.81083442551332, + "grad_norm": 0.23636406660079956, + "learning_rate": 0.0006, + "loss": 3.515028953552246, + "step": 5098 + }, + { + "epoch": 70.82481432940149, + "grad_norm": 0.25196272134780884, + "learning_rate": 0.0006, + "loss": 3.5251357555389404, + "step": 5099 + }, + { + "epoch": 70.83879423328965, + "grad_norm": 0.2760903239250183, + "learning_rate": 0.0006, + "loss": 3.5171520709991455, + "step": 5100 + }, + { + "epoch": 70.8527741371778, + "grad_norm": 0.24275866150856018, + "learning_rate": 0.0006, + "loss": 3.515378713607788, + "step": 5101 + }, + { + "epoch": 70.86675404106597, + "grad_norm": 0.20806105434894562, + "learning_rate": 0.0006, + "loss": 3.5539910793304443, + "step": 5102 + }, + { + "epoch": 70.88073394495413, + "grad_norm": 0.22015595436096191, + "learning_rate": 0.0006, + "loss": 3.5204410552978516, + "step": 5103 + }, + { + "epoch": 70.89471384884229, + "grad_norm": 0.2634579837322235, + "learning_rate": 0.0006, + "loss": 3.531816005706787, + "step": 5104 + }, + { + "epoch": 70.90869375273044, + "grad_norm": 0.2532503008842468, + "learning_rate": 0.0006, + "loss": 3.494335174560547, + "step": 5105 + }, + { + "epoch": 70.92267365661861, + "grad_norm": 0.21336589753627777, + "learning_rate": 0.0006, + "loss": 3.527202606201172, + "step": 5106 + }, + { + "epoch": 70.93665356050677, + "grad_norm": 0.20789426565170288, + "learning_rate": 0.0006, + "loss": 3.516286849975586, + "step": 5107 + }, + { + "epoch": 70.95063346439493, + "grad_norm": 0.21855080127716064, + "learning_rate": 0.0006, + "loss": 3.510622978210449, + "step": 5108 + }, + { + "epoch": 70.9646133682831, + "grad_norm": 0.21742936968803406, + "learning_rate": 0.0006, + "loss": 3.5159173011779785, + "step": 5109 + }, + { + "epoch": 70.97859327217125, + "grad_norm": 0.21697010099887848, + "learning_rate": 0.0006, + "loss": 3.5253071784973145, + "step": 5110 + }, + { + "epoch": 70.99257317605941, + "grad_norm": 0.1939983069896698, + "learning_rate": 0.0006, + "loss": 3.5092079639434814, + "step": 5111 + }, + { + "epoch": 71.0, + "grad_norm": 0.21768872439861298, + "learning_rate": 0.0006, + "loss": 3.549747943878174, + "step": 5112 + }, + { + "epoch": 71.0, + "eval_loss": 3.981994867324829, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 5112 + }, + { + "epoch": 71.01397990388816, + "grad_norm": 0.20411916077136993, + "learning_rate": 0.0006, + "loss": 3.4846625328063965, + "step": 5113 + }, + { + "epoch": 71.02795980777633, + "grad_norm": 0.23582075536251068, + "learning_rate": 0.0006, + "loss": 3.5063037872314453, + "step": 5114 + }, + { + "epoch": 71.04193971166448, + "grad_norm": 0.25915080308914185, + "learning_rate": 0.0006, + "loss": 3.487607955932617, + "step": 5115 + }, + { + "epoch": 71.05591961555264, + "grad_norm": 0.279734343290329, + "learning_rate": 0.0006, + "loss": 3.4697108268737793, + "step": 5116 + }, + { + "epoch": 71.06989951944081, + "grad_norm": 0.2628752589225769, + "learning_rate": 0.0006, + "loss": 3.493368625640869, + "step": 5117 + }, + { + "epoch": 71.08387942332897, + "grad_norm": 0.22309084236621857, + "learning_rate": 0.0006, + "loss": 3.484891891479492, + "step": 5118 + }, + { + "epoch": 71.09785932721712, + "grad_norm": 0.302577406167984, + "learning_rate": 0.0006, + "loss": 3.485151767730713, + "step": 5119 + }, + { + "epoch": 71.1118392311053, + "grad_norm": 0.37276333570480347, + "learning_rate": 0.0006, + "loss": 3.4952797889709473, + "step": 5120 + }, + { + "epoch": 71.12581913499345, + "grad_norm": 0.3283502757549286, + "learning_rate": 0.0006, + "loss": 3.4817187786102295, + "step": 5121 + }, + { + "epoch": 71.1397990388816, + "grad_norm": 0.2639681398868561, + "learning_rate": 0.0006, + "loss": 3.488034248352051, + "step": 5122 + }, + { + "epoch": 71.15377894276976, + "grad_norm": 0.23883986473083496, + "learning_rate": 0.0006, + "loss": 3.4839282035827637, + "step": 5123 + }, + { + "epoch": 71.16775884665793, + "grad_norm": 0.25839197635650635, + "learning_rate": 0.0006, + "loss": 3.4969372749328613, + "step": 5124 + }, + { + "epoch": 71.18173875054609, + "grad_norm": 0.2511022090911865, + "learning_rate": 0.0006, + "loss": 3.4977002143859863, + "step": 5125 + }, + { + "epoch": 71.19571865443424, + "grad_norm": 0.23030386865139008, + "learning_rate": 0.0006, + "loss": 3.499420404434204, + "step": 5126 + }, + { + "epoch": 71.20969855832242, + "grad_norm": 0.26834407448768616, + "learning_rate": 0.0006, + "loss": 3.492626190185547, + "step": 5127 + }, + { + "epoch": 71.22367846221057, + "grad_norm": 0.25042101740837097, + "learning_rate": 0.0006, + "loss": 3.50586199760437, + "step": 5128 + }, + { + "epoch": 71.23765836609873, + "grad_norm": 0.23350484669208527, + "learning_rate": 0.0006, + "loss": 3.4870376586914062, + "step": 5129 + }, + { + "epoch": 71.2516382699869, + "grad_norm": 0.26074114441871643, + "learning_rate": 0.0006, + "loss": 3.4873902797698975, + "step": 5130 + }, + { + "epoch": 71.26561817387505, + "grad_norm": 0.23405839502811432, + "learning_rate": 0.0006, + "loss": 3.477447032928467, + "step": 5131 + }, + { + "epoch": 71.27959807776321, + "grad_norm": 0.22196513414382935, + "learning_rate": 0.0006, + "loss": 3.513475179672241, + "step": 5132 + }, + { + "epoch": 71.29357798165138, + "grad_norm": 0.21518723666667938, + "learning_rate": 0.0006, + "loss": 3.4947776794433594, + "step": 5133 + }, + { + "epoch": 71.30755788553954, + "grad_norm": 0.2067832201719284, + "learning_rate": 0.0006, + "loss": 3.4992613792419434, + "step": 5134 + }, + { + "epoch": 71.3215377894277, + "grad_norm": 0.2346884161233902, + "learning_rate": 0.0006, + "loss": 3.510505437850952, + "step": 5135 + }, + { + "epoch": 71.33551769331586, + "grad_norm": 0.21138189733028412, + "learning_rate": 0.0006, + "loss": 3.4731202125549316, + "step": 5136 + }, + { + "epoch": 71.34949759720402, + "grad_norm": 0.21185064315795898, + "learning_rate": 0.0006, + "loss": 3.5232839584350586, + "step": 5137 + }, + { + "epoch": 71.36347750109218, + "grad_norm": 0.25712820887565613, + "learning_rate": 0.0006, + "loss": 3.46025013923645, + "step": 5138 + }, + { + "epoch": 71.37745740498035, + "grad_norm": 0.21276356279850006, + "learning_rate": 0.0006, + "loss": 3.489804983139038, + "step": 5139 + }, + { + "epoch": 71.3914373088685, + "grad_norm": 0.2022353708744049, + "learning_rate": 0.0006, + "loss": 3.504286289215088, + "step": 5140 + }, + { + "epoch": 71.40541721275666, + "grad_norm": 0.21934957802295685, + "learning_rate": 0.0006, + "loss": 3.517760753631592, + "step": 5141 + }, + { + "epoch": 71.41939711664482, + "grad_norm": 0.2196030169725418, + "learning_rate": 0.0006, + "loss": 3.5004754066467285, + "step": 5142 + }, + { + "epoch": 71.43337702053299, + "grad_norm": 0.2015426605939865, + "learning_rate": 0.0006, + "loss": 3.465399980545044, + "step": 5143 + }, + { + "epoch": 71.44735692442114, + "grad_norm": 0.20420803129673004, + "learning_rate": 0.0006, + "loss": 3.4855151176452637, + "step": 5144 + }, + { + "epoch": 71.4613368283093, + "grad_norm": 0.20710550248622894, + "learning_rate": 0.0006, + "loss": 3.479557514190674, + "step": 5145 + }, + { + "epoch": 71.47531673219747, + "grad_norm": 0.21790869534015656, + "learning_rate": 0.0006, + "loss": 3.478614330291748, + "step": 5146 + }, + { + "epoch": 71.48929663608563, + "grad_norm": 0.2018311470746994, + "learning_rate": 0.0006, + "loss": 3.488673448562622, + "step": 5147 + }, + { + "epoch": 71.50327653997378, + "grad_norm": 0.21153512597084045, + "learning_rate": 0.0006, + "loss": 3.5044631958007812, + "step": 5148 + }, + { + "epoch": 71.51725644386195, + "grad_norm": 0.21591797471046448, + "learning_rate": 0.0006, + "loss": 3.522662401199341, + "step": 5149 + }, + { + "epoch": 71.53123634775011, + "grad_norm": 0.20586389303207397, + "learning_rate": 0.0006, + "loss": 3.4791407585144043, + "step": 5150 + }, + { + "epoch": 71.54521625163827, + "grad_norm": 0.2201298475265503, + "learning_rate": 0.0006, + "loss": 3.4494271278381348, + "step": 5151 + }, + { + "epoch": 71.55919615552644, + "grad_norm": 0.22793325781822205, + "learning_rate": 0.0006, + "loss": 3.495795726776123, + "step": 5152 + }, + { + "epoch": 71.57317605941459, + "grad_norm": 0.2414522022008896, + "learning_rate": 0.0006, + "loss": 3.5030856132507324, + "step": 5153 + }, + { + "epoch": 71.58715596330275, + "grad_norm": 0.23775361478328705, + "learning_rate": 0.0006, + "loss": 3.519958972930908, + "step": 5154 + }, + { + "epoch": 71.60113586719092, + "grad_norm": 0.21599332988262177, + "learning_rate": 0.0006, + "loss": 3.518765449523926, + "step": 5155 + }, + { + "epoch": 71.61511577107908, + "grad_norm": 0.19520622491836548, + "learning_rate": 0.0006, + "loss": 3.514953136444092, + "step": 5156 + }, + { + "epoch": 71.62909567496723, + "grad_norm": 0.21063624322414398, + "learning_rate": 0.0006, + "loss": 3.507232189178467, + "step": 5157 + }, + { + "epoch": 71.6430755788554, + "grad_norm": 0.20278486609458923, + "learning_rate": 0.0006, + "loss": 3.5083611011505127, + "step": 5158 + }, + { + "epoch": 71.65705548274356, + "grad_norm": 0.20769764482975006, + "learning_rate": 0.0006, + "loss": 3.5421876907348633, + "step": 5159 + }, + { + "epoch": 71.67103538663171, + "grad_norm": 0.21942169964313507, + "learning_rate": 0.0006, + "loss": 3.511857509613037, + "step": 5160 + }, + { + "epoch": 71.68501529051987, + "grad_norm": 0.21532300114631653, + "learning_rate": 0.0006, + "loss": 3.4975109100341797, + "step": 5161 + }, + { + "epoch": 71.69899519440804, + "grad_norm": 0.20382282137870789, + "learning_rate": 0.0006, + "loss": 3.500424861907959, + "step": 5162 + }, + { + "epoch": 71.7129750982962, + "grad_norm": 0.22072380781173706, + "learning_rate": 0.0006, + "loss": 3.50101900100708, + "step": 5163 + }, + { + "epoch": 71.72695500218435, + "grad_norm": 0.21554681658744812, + "learning_rate": 0.0006, + "loss": 3.528384208679199, + "step": 5164 + }, + { + "epoch": 71.74093490607252, + "grad_norm": 0.22927747666835785, + "learning_rate": 0.0006, + "loss": 3.488309621810913, + "step": 5165 + }, + { + "epoch": 71.75491480996068, + "grad_norm": 0.23190589249134064, + "learning_rate": 0.0006, + "loss": 3.547053337097168, + "step": 5166 + }, + { + "epoch": 71.76889471384884, + "grad_norm": 0.262680321931839, + "learning_rate": 0.0006, + "loss": 3.5154809951782227, + "step": 5167 + }, + { + "epoch": 71.78287461773701, + "grad_norm": 0.29555177688598633, + "learning_rate": 0.0006, + "loss": 3.4969329833984375, + "step": 5168 + }, + { + "epoch": 71.79685452162516, + "grad_norm": 0.26300716400146484, + "learning_rate": 0.0006, + "loss": 3.4716663360595703, + "step": 5169 + }, + { + "epoch": 71.81083442551332, + "grad_norm": 0.21645912528038025, + "learning_rate": 0.0006, + "loss": 3.4847588539123535, + "step": 5170 + }, + { + "epoch": 71.82481432940149, + "grad_norm": 0.21476063132286072, + "learning_rate": 0.0006, + "loss": 3.4949374198913574, + "step": 5171 + }, + { + "epoch": 71.83879423328965, + "grad_norm": 0.26659518480300903, + "learning_rate": 0.0006, + "loss": 3.519371271133423, + "step": 5172 + }, + { + "epoch": 71.8527741371778, + "grad_norm": 0.2567320764064789, + "learning_rate": 0.0006, + "loss": 3.522982120513916, + "step": 5173 + }, + { + "epoch": 71.86675404106597, + "grad_norm": 0.21162307262420654, + "learning_rate": 0.0006, + "loss": 3.489562749862671, + "step": 5174 + }, + { + "epoch": 71.88073394495413, + "grad_norm": 0.22359566390514374, + "learning_rate": 0.0006, + "loss": 3.51139760017395, + "step": 5175 + }, + { + "epoch": 71.89471384884229, + "grad_norm": 0.19192424416542053, + "learning_rate": 0.0006, + "loss": 3.568310260772705, + "step": 5176 + }, + { + "epoch": 71.90869375273044, + "grad_norm": 0.21490535140037537, + "learning_rate": 0.0006, + "loss": 3.52728271484375, + "step": 5177 + }, + { + "epoch": 71.92267365661861, + "grad_norm": 0.21532146632671356, + "learning_rate": 0.0006, + "loss": 3.533647060394287, + "step": 5178 + }, + { + "epoch": 71.93665356050677, + "grad_norm": 0.2047201246023178, + "learning_rate": 0.0006, + "loss": 3.528214931488037, + "step": 5179 + }, + { + "epoch": 71.95063346439493, + "grad_norm": 0.20230898261070251, + "learning_rate": 0.0006, + "loss": 3.530636787414551, + "step": 5180 + }, + { + "epoch": 71.9646133682831, + "grad_norm": 0.1971510648727417, + "learning_rate": 0.0006, + "loss": 3.5658822059631348, + "step": 5181 + }, + { + "epoch": 71.97859327217125, + "grad_norm": 0.21853342652320862, + "learning_rate": 0.0006, + "loss": 3.4901480674743652, + "step": 5182 + }, + { + "epoch": 71.99257317605941, + "grad_norm": 0.2481825053691864, + "learning_rate": 0.0006, + "loss": 3.5149893760681152, + "step": 5183 + }, + { + "epoch": 72.0, + "grad_norm": 0.28394815325737, + "learning_rate": 0.0006, + "loss": 3.5142500400543213, + "step": 5184 + }, + { + "epoch": 72.0, + "eval_loss": 3.9889707565307617, + "eval_runtime": 44.317, + "eval_samples_per_second": 55.103, + "eval_steps_per_second": 3.452, + "step": 5184 + }, + { + "epoch": 72.01397990388816, + "grad_norm": 0.26481005549430847, + "learning_rate": 0.0006, + "loss": 3.46201753616333, + "step": 5185 + }, + { + "epoch": 72.02795980777633, + "grad_norm": 0.25808629393577576, + "learning_rate": 0.0006, + "loss": 3.4581098556518555, + "step": 5186 + }, + { + "epoch": 72.04193971166448, + "grad_norm": 0.25713175535202026, + "learning_rate": 0.0006, + "loss": 3.48715877532959, + "step": 5187 + }, + { + "epoch": 72.05591961555264, + "grad_norm": 0.23583672940731049, + "learning_rate": 0.0006, + "loss": 3.498791217803955, + "step": 5188 + }, + { + "epoch": 72.06989951944081, + "grad_norm": 0.23554176092147827, + "learning_rate": 0.0006, + "loss": 3.4428248405456543, + "step": 5189 + }, + { + "epoch": 72.08387942332897, + "grad_norm": 0.26283830404281616, + "learning_rate": 0.0006, + "loss": 3.4555912017822266, + "step": 5190 + }, + { + "epoch": 72.09785932721712, + "grad_norm": 0.23904164135456085, + "learning_rate": 0.0006, + "loss": 3.447741985321045, + "step": 5191 + }, + { + "epoch": 72.1118392311053, + "grad_norm": 0.2249821275472641, + "learning_rate": 0.0006, + "loss": 3.4523983001708984, + "step": 5192 + }, + { + "epoch": 72.12581913499345, + "grad_norm": 0.22013622522354126, + "learning_rate": 0.0006, + "loss": 3.480325698852539, + "step": 5193 + }, + { + "epoch": 72.1397990388816, + "grad_norm": 0.21792154014110565, + "learning_rate": 0.0006, + "loss": 3.460036277770996, + "step": 5194 + }, + { + "epoch": 72.15377894276976, + "grad_norm": 0.2302364856004715, + "learning_rate": 0.0006, + "loss": 3.4833297729492188, + "step": 5195 + }, + { + "epoch": 72.16775884665793, + "grad_norm": 0.21317389607429504, + "learning_rate": 0.0006, + "loss": 3.5042786598205566, + "step": 5196 + }, + { + "epoch": 72.18173875054609, + "grad_norm": 0.19275978207588196, + "learning_rate": 0.0006, + "loss": 3.5171995162963867, + "step": 5197 + }, + { + "epoch": 72.19571865443424, + "grad_norm": 0.21028508245944977, + "learning_rate": 0.0006, + "loss": 3.457441806793213, + "step": 5198 + }, + { + "epoch": 72.20969855832242, + "grad_norm": 0.1986231505870819, + "learning_rate": 0.0006, + "loss": 3.489072322845459, + "step": 5199 + }, + { + "epoch": 72.22367846221057, + "grad_norm": 0.19699154794216156, + "learning_rate": 0.0006, + "loss": 3.468651533126831, + "step": 5200 + }, + { + "epoch": 72.23765836609873, + "grad_norm": 0.20329497754573822, + "learning_rate": 0.0006, + "loss": 3.4969425201416016, + "step": 5201 + }, + { + "epoch": 72.2516382699869, + "grad_norm": 0.20615696907043457, + "learning_rate": 0.0006, + "loss": 3.4797892570495605, + "step": 5202 + }, + { + "epoch": 72.26561817387505, + "grad_norm": 0.20542259514331818, + "learning_rate": 0.0006, + "loss": 3.530893325805664, + "step": 5203 + }, + { + "epoch": 72.27959807776321, + "grad_norm": 0.21758593618869781, + "learning_rate": 0.0006, + "loss": 3.494999647140503, + "step": 5204 + }, + { + "epoch": 72.29357798165138, + "grad_norm": 0.21938979625701904, + "learning_rate": 0.0006, + "loss": 3.4716687202453613, + "step": 5205 + }, + { + "epoch": 72.30755788553954, + "grad_norm": 0.21116693317890167, + "learning_rate": 0.0006, + "loss": 3.510025978088379, + "step": 5206 + }, + { + "epoch": 72.3215377894277, + "grad_norm": 0.22996407747268677, + "learning_rate": 0.0006, + "loss": 3.515085220336914, + "step": 5207 + }, + { + "epoch": 72.33551769331586, + "grad_norm": 0.23071469366550446, + "learning_rate": 0.0006, + "loss": 3.4844086170196533, + "step": 5208 + }, + { + "epoch": 72.34949759720402, + "grad_norm": 0.25695133209228516, + "learning_rate": 0.0006, + "loss": 3.5199429988861084, + "step": 5209 + }, + { + "epoch": 72.36347750109218, + "grad_norm": 0.2724803388118744, + "learning_rate": 0.0006, + "loss": 3.516205072402954, + "step": 5210 + }, + { + "epoch": 72.37745740498035, + "grad_norm": 0.2681419551372528, + "learning_rate": 0.0006, + "loss": 3.499340295791626, + "step": 5211 + }, + { + "epoch": 72.3914373088685, + "grad_norm": 0.2519148886203766, + "learning_rate": 0.0006, + "loss": 3.508042812347412, + "step": 5212 + }, + { + "epoch": 72.40541721275666, + "grad_norm": 0.2280866652727127, + "learning_rate": 0.0006, + "loss": 3.501939058303833, + "step": 5213 + }, + { + "epoch": 72.41939711664482, + "grad_norm": 0.2323485016822815, + "learning_rate": 0.0006, + "loss": 3.4846863746643066, + "step": 5214 + }, + { + "epoch": 72.43337702053299, + "grad_norm": 0.2441403865814209, + "learning_rate": 0.0006, + "loss": 3.4963583946228027, + "step": 5215 + }, + { + "epoch": 72.44735692442114, + "grad_norm": 0.2406138777732849, + "learning_rate": 0.0006, + "loss": 3.4914402961730957, + "step": 5216 + }, + { + "epoch": 72.4613368283093, + "grad_norm": 0.23548054695129395, + "learning_rate": 0.0006, + "loss": 3.5411581993103027, + "step": 5217 + }, + { + "epoch": 72.47531673219747, + "grad_norm": 0.21609817445278168, + "learning_rate": 0.0006, + "loss": 3.5331366062164307, + "step": 5218 + }, + { + "epoch": 72.48929663608563, + "grad_norm": 0.20667463541030884, + "learning_rate": 0.0006, + "loss": 3.4875259399414062, + "step": 5219 + }, + { + "epoch": 72.50327653997378, + "grad_norm": 0.21997129917144775, + "learning_rate": 0.0006, + "loss": 3.45741868019104, + "step": 5220 + }, + { + "epoch": 72.51725644386195, + "grad_norm": 0.23778799176216125, + "learning_rate": 0.0006, + "loss": 3.5240767002105713, + "step": 5221 + }, + { + "epoch": 72.53123634775011, + "grad_norm": 0.2373982071876526, + "learning_rate": 0.0006, + "loss": 3.4988675117492676, + "step": 5222 + }, + { + "epoch": 72.54521625163827, + "grad_norm": 0.24703051149845123, + "learning_rate": 0.0006, + "loss": 3.512615203857422, + "step": 5223 + }, + { + "epoch": 72.55919615552644, + "grad_norm": 0.2259516716003418, + "learning_rate": 0.0006, + "loss": 3.5054564476013184, + "step": 5224 + }, + { + "epoch": 72.57317605941459, + "grad_norm": 0.20849403738975525, + "learning_rate": 0.0006, + "loss": 3.513225555419922, + "step": 5225 + }, + { + "epoch": 72.58715596330275, + "grad_norm": 0.20204737782478333, + "learning_rate": 0.0006, + "loss": 3.499671220779419, + "step": 5226 + }, + { + "epoch": 72.60113586719092, + "grad_norm": 0.2146504670381546, + "learning_rate": 0.0006, + "loss": 3.479963779449463, + "step": 5227 + }, + { + "epoch": 72.61511577107908, + "grad_norm": 0.2070881426334381, + "learning_rate": 0.0006, + "loss": 3.4819841384887695, + "step": 5228 + }, + { + "epoch": 72.62909567496723, + "grad_norm": 0.21011002361774445, + "learning_rate": 0.0006, + "loss": 3.480698347091675, + "step": 5229 + }, + { + "epoch": 72.6430755788554, + "grad_norm": 0.22228984534740448, + "learning_rate": 0.0006, + "loss": 3.504167318344116, + "step": 5230 + }, + { + "epoch": 72.65705548274356, + "grad_norm": 0.21016335487365723, + "learning_rate": 0.0006, + "loss": 3.4877564907073975, + "step": 5231 + }, + { + "epoch": 72.67103538663171, + "grad_norm": 0.20774874091148376, + "learning_rate": 0.0006, + "loss": 3.5095250606536865, + "step": 5232 + }, + { + "epoch": 72.68501529051987, + "grad_norm": 0.21587499976158142, + "learning_rate": 0.0006, + "loss": 3.481410503387451, + "step": 5233 + }, + { + "epoch": 72.69899519440804, + "grad_norm": 0.21865521371364594, + "learning_rate": 0.0006, + "loss": 3.4801032543182373, + "step": 5234 + }, + { + "epoch": 72.7129750982962, + "grad_norm": 0.20692583918571472, + "learning_rate": 0.0006, + "loss": 3.5247631072998047, + "step": 5235 + }, + { + "epoch": 72.72695500218435, + "grad_norm": 0.21028351783752441, + "learning_rate": 0.0006, + "loss": 3.4889426231384277, + "step": 5236 + }, + { + "epoch": 72.74093490607252, + "grad_norm": 0.20704887807369232, + "learning_rate": 0.0006, + "loss": 3.514674663543701, + "step": 5237 + }, + { + "epoch": 72.75491480996068, + "grad_norm": 0.22431230545043945, + "learning_rate": 0.0006, + "loss": 3.520341396331787, + "step": 5238 + }, + { + "epoch": 72.76889471384884, + "grad_norm": 0.26835498213768005, + "learning_rate": 0.0006, + "loss": 3.515369176864624, + "step": 5239 + }, + { + "epoch": 72.78287461773701, + "grad_norm": 0.2570379376411438, + "learning_rate": 0.0006, + "loss": 3.5058908462524414, + "step": 5240 + }, + { + "epoch": 72.79685452162516, + "grad_norm": 0.22710268199443817, + "learning_rate": 0.0006, + "loss": 3.5321788787841797, + "step": 5241 + }, + { + "epoch": 72.81083442551332, + "grad_norm": 0.21135354042053223, + "learning_rate": 0.0006, + "loss": 3.5038869380950928, + "step": 5242 + }, + { + "epoch": 72.82481432940149, + "grad_norm": 0.20677657425403595, + "learning_rate": 0.0006, + "loss": 3.509671211242676, + "step": 5243 + }, + { + "epoch": 72.83879423328965, + "grad_norm": 0.21803733706474304, + "learning_rate": 0.0006, + "loss": 3.540374755859375, + "step": 5244 + }, + { + "epoch": 72.8527741371778, + "grad_norm": 0.24457798898220062, + "learning_rate": 0.0006, + "loss": 3.5087430477142334, + "step": 5245 + }, + { + "epoch": 72.86675404106597, + "grad_norm": 0.2483559548854828, + "learning_rate": 0.0006, + "loss": 3.5065975189208984, + "step": 5246 + }, + { + "epoch": 72.88073394495413, + "grad_norm": 0.22601056098937988, + "learning_rate": 0.0006, + "loss": 3.533181667327881, + "step": 5247 + }, + { + "epoch": 72.89471384884229, + "grad_norm": 0.1951705366373062, + "learning_rate": 0.0006, + "loss": 3.5082955360412598, + "step": 5248 + }, + { + "epoch": 72.90869375273044, + "grad_norm": 0.2373722940683365, + "learning_rate": 0.0006, + "loss": 3.5175671577453613, + "step": 5249 + }, + { + "epoch": 72.92267365661861, + "grad_norm": 0.2238793820142746, + "learning_rate": 0.0006, + "loss": 3.4822793006896973, + "step": 5250 + }, + { + "epoch": 72.93665356050677, + "grad_norm": 0.19394482672214508, + "learning_rate": 0.0006, + "loss": 3.5329837799072266, + "step": 5251 + }, + { + "epoch": 72.95063346439493, + "grad_norm": 0.19733992218971252, + "learning_rate": 0.0006, + "loss": 3.516442060470581, + "step": 5252 + }, + { + "epoch": 72.9646133682831, + "grad_norm": 0.1991652250289917, + "learning_rate": 0.0006, + "loss": 3.4855995178222656, + "step": 5253 + }, + { + "epoch": 72.97859327217125, + "grad_norm": 0.20192593336105347, + "learning_rate": 0.0006, + "loss": 3.500981330871582, + "step": 5254 + }, + { + "epoch": 72.99257317605941, + "grad_norm": 0.1900099813938141, + "learning_rate": 0.0006, + "loss": 3.516650676727295, + "step": 5255 + }, + { + "epoch": 73.0, + "grad_norm": 0.2279117852449417, + "learning_rate": 0.0006, + "loss": 3.5318033695220947, + "step": 5256 + }, + { + "epoch": 73.0, + "eval_loss": 3.990769147872925, + "eval_runtime": 44.8752, + "eval_samples_per_second": 54.418, + "eval_steps_per_second": 3.409, + "step": 5256 + }, + { + "epoch": 73.01397990388816, + "grad_norm": 0.21681782603263855, + "learning_rate": 0.0006, + "loss": 3.481177806854248, + "step": 5257 + }, + { + "epoch": 73.02795980777633, + "grad_norm": 0.23727980256080627, + "learning_rate": 0.0006, + "loss": 3.4718916416168213, + "step": 5258 + }, + { + "epoch": 73.04193971166448, + "grad_norm": 0.3004179000854492, + "learning_rate": 0.0006, + "loss": 3.4856271743774414, + "step": 5259 + }, + { + "epoch": 73.05591961555264, + "grad_norm": 0.3563845157623291, + "learning_rate": 0.0006, + "loss": 3.5074610710144043, + "step": 5260 + }, + { + "epoch": 73.06989951944081, + "grad_norm": 0.28933605551719666, + "learning_rate": 0.0006, + "loss": 3.4824771881103516, + "step": 5261 + }, + { + "epoch": 73.08387942332897, + "grad_norm": 0.20685118436813354, + "learning_rate": 0.0006, + "loss": 3.4652299880981445, + "step": 5262 + }, + { + "epoch": 73.09785932721712, + "grad_norm": 0.27588045597076416, + "learning_rate": 0.0006, + "loss": 3.5053865909576416, + "step": 5263 + }, + { + "epoch": 73.1118392311053, + "grad_norm": 0.28780898451805115, + "learning_rate": 0.0006, + "loss": 3.4900169372558594, + "step": 5264 + }, + { + "epoch": 73.12581913499345, + "grad_norm": 0.25440889596939087, + "learning_rate": 0.0006, + "loss": 3.473628520965576, + "step": 5265 + }, + { + "epoch": 73.1397990388816, + "grad_norm": 0.23374824225902557, + "learning_rate": 0.0006, + "loss": 3.473111629486084, + "step": 5266 + }, + { + "epoch": 73.15377894276976, + "grad_norm": 0.22421608865261078, + "learning_rate": 0.0006, + "loss": 3.4926185607910156, + "step": 5267 + }, + { + "epoch": 73.16775884665793, + "grad_norm": 0.24340282380580902, + "learning_rate": 0.0006, + "loss": 3.4895753860473633, + "step": 5268 + }, + { + "epoch": 73.18173875054609, + "grad_norm": 0.2423272281885147, + "learning_rate": 0.0006, + "loss": 3.498384952545166, + "step": 5269 + }, + { + "epoch": 73.19571865443424, + "grad_norm": 0.20698750019073486, + "learning_rate": 0.0006, + "loss": 3.4790406227111816, + "step": 5270 + }, + { + "epoch": 73.20969855832242, + "grad_norm": 0.21184271574020386, + "learning_rate": 0.0006, + "loss": 3.4132208824157715, + "step": 5271 + }, + { + "epoch": 73.22367846221057, + "grad_norm": 0.20834460854530334, + "learning_rate": 0.0006, + "loss": 3.4493658542633057, + "step": 5272 + }, + { + "epoch": 73.23765836609873, + "grad_norm": 0.20421066880226135, + "learning_rate": 0.0006, + "loss": 3.486607551574707, + "step": 5273 + }, + { + "epoch": 73.2516382699869, + "grad_norm": 0.2166317254304886, + "learning_rate": 0.0006, + "loss": 3.4880776405334473, + "step": 5274 + }, + { + "epoch": 73.26561817387505, + "grad_norm": 0.2271069586277008, + "learning_rate": 0.0006, + "loss": 3.5396530628204346, + "step": 5275 + }, + { + "epoch": 73.27959807776321, + "grad_norm": 0.2804903984069824, + "learning_rate": 0.0006, + "loss": 3.5006351470947266, + "step": 5276 + }, + { + "epoch": 73.29357798165138, + "grad_norm": 0.2573811113834381, + "learning_rate": 0.0006, + "loss": 3.4821765422821045, + "step": 5277 + }, + { + "epoch": 73.30755788553954, + "grad_norm": 0.23412485420703888, + "learning_rate": 0.0006, + "loss": 3.4935741424560547, + "step": 5278 + }, + { + "epoch": 73.3215377894277, + "grad_norm": 0.28513026237487793, + "learning_rate": 0.0006, + "loss": 3.4645705223083496, + "step": 5279 + }, + { + "epoch": 73.33551769331586, + "grad_norm": 0.29753562808036804, + "learning_rate": 0.0006, + "loss": 3.5176053047180176, + "step": 5280 + }, + { + "epoch": 73.34949759720402, + "grad_norm": 0.27373817563056946, + "learning_rate": 0.0006, + "loss": 3.4775936603546143, + "step": 5281 + }, + { + "epoch": 73.36347750109218, + "grad_norm": 0.2177509367465973, + "learning_rate": 0.0006, + "loss": 3.480635643005371, + "step": 5282 + }, + { + "epoch": 73.37745740498035, + "grad_norm": 0.25387322902679443, + "learning_rate": 0.0006, + "loss": 3.469754695892334, + "step": 5283 + }, + { + "epoch": 73.3914373088685, + "grad_norm": 0.2564674913883209, + "learning_rate": 0.0006, + "loss": 3.5017647743225098, + "step": 5284 + }, + { + "epoch": 73.40541721275666, + "grad_norm": 0.22612597048282623, + "learning_rate": 0.0006, + "loss": 3.4689712524414062, + "step": 5285 + }, + { + "epoch": 73.41939711664482, + "grad_norm": 0.2263033241033554, + "learning_rate": 0.0006, + "loss": 3.4711971282958984, + "step": 5286 + }, + { + "epoch": 73.43337702053299, + "grad_norm": 0.2290525883436203, + "learning_rate": 0.0006, + "loss": 3.4785008430480957, + "step": 5287 + }, + { + "epoch": 73.44735692442114, + "grad_norm": 0.2285647839307785, + "learning_rate": 0.0006, + "loss": 3.47416353225708, + "step": 5288 + }, + { + "epoch": 73.4613368283093, + "grad_norm": 0.2135833501815796, + "learning_rate": 0.0006, + "loss": 3.497528076171875, + "step": 5289 + }, + { + "epoch": 73.47531673219747, + "grad_norm": 0.24894089996814728, + "learning_rate": 0.0006, + "loss": 3.4764437675476074, + "step": 5290 + }, + { + "epoch": 73.48929663608563, + "grad_norm": 0.27769771218299866, + "learning_rate": 0.0006, + "loss": 3.530491828918457, + "step": 5291 + }, + { + "epoch": 73.50327653997378, + "grad_norm": 0.2881193161010742, + "learning_rate": 0.0006, + "loss": 3.480968475341797, + "step": 5292 + }, + { + "epoch": 73.51725644386195, + "grad_norm": 0.26066645979881287, + "learning_rate": 0.0006, + "loss": 3.488679885864258, + "step": 5293 + }, + { + "epoch": 73.53123634775011, + "grad_norm": 0.2325759381055832, + "learning_rate": 0.0006, + "loss": 3.50810170173645, + "step": 5294 + }, + { + "epoch": 73.54521625163827, + "grad_norm": 0.2113630324602127, + "learning_rate": 0.0006, + "loss": 3.516207218170166, + "step": 5295 + }, + { + "epoch": 73.55919615552644, + "grad_norm": 0.22719664871692657, + "learning_rate": 0.0006, + "loss": 3.5046021938323975, + "step": 5296 + }, + { + "epoch": 73.57317605941459, + "grad_norm": 0.20094481110572815, + "learning_rate": 0.0006, + "loss": 3.5129313468933105, + "step": 5297 + }, + { + "epoch": 73.58715596330275, + "grad_norm": 0.18975555896759033, + "learning_rate": 0.0006, + "loss": 3.4832587242126465, + "step": 5298 + }, + { + "epoch": 73.60113586719092, + "grad_norm": 0.2168205976486206, + "learning_rate": 0.0006, + "loss": 3.485678195953369, + "step": 5299 + }, + { + "epoch": 73.61511577107908, + "grad_norm": 0.20437777042388916, + "learning_rate": 0.0006, + "loss": 3.5342376232147217, + "step": 5300 + }, + { + "epoch": 73.62909567496723, + "grad_norm": 0.1951008290052414, + "learning_rate": 0.0006, + "loss": 3.496528148651123, + "step": 5301 + }, + { + "epoch": 73.6430755788554, + "grad_norm": 0.194418802857399, + "learning_rate": 0.0006, + "loss": 3.496985912322998, + "step": 5302 + }, + { + "epoch": 73.65705548274356, + "grad_norm": 0.21475602686405182, + "learning_rate": 0.0006, + "loss": 3.4993209838867188, + "step": 5303 + }, + { + "epoch": 73.67103538663171, + "grad_norm": 0.21515145897865295, + "learning_rate": 0.0006, + "loss": 3.5003676414489746, + "step": 5304 + }, + { + "epoch": 73.68501529051987, + "grad_norm": 0.19101263582706451, + "learning_rate": 0.0006, + "loss": 3.4970169067382812, + "step": 5305 + }, + { + "epoch": 73.69899519440804, + "grad_norm": 0.21630576252937317, + "learning_rate": 0.0006, + "loss": 3.4644386768341064, + "step": 5306 + }, + { + "epoch": 73.7129750982962, + "grad_norm": 0.2233273833990097, + "learning_rate": 0.0006, + "loss": 3.5082266330718994, + "step": 5307 + }, + { + "epoch": 73.72695500218435, + "grad_norm": 0.2207949310541153, + "learning_rate": 0.0006, + "loss": 3.5124080181121826, + "step": 5308 + }, + { + "epoch": 73.74093490607252, + "grad_norm": 0.2216075360774994, + "learning_rate": 0.0006, + "loss": 3.5385897159576416, + "step": 5309 + }, + { + "epoch": 73.75491480996068, + "grad_norm": 0.242542564868927, + "learning_rate": 0.0006, + "loss": 3.4922280311584473, + "step": 5310 + }, + { + "epoch": 73.76889471384884, + "grad_norm": 0.25550341606140137, + "learning_rate": 0.0006, + "loss": 3.5120809078216553, + "step": 5311 + }, + { + "epoch": 73.78287461773701, + "grad_norm": 0.2312568724155426, + "learning_rate": 0.0006, + "loss": 3.5122501850128174, + "step": 5312 + }, + { + "epoch": 73.79685452162516, + "grad_norm": 0.22861020267009735, + "learning_rate": 0.0006, + "loss": 3.5362534523010254, + "step": 5313 + }, + { + "epoch": 73.81083442551332, + "grad_norm": 0.2227325290441513, + "learning_rate": 0.0006, + "loss": 3.509556770324707, + "step": 5314 + }, + { + "epoch": 73.82481432940149, + "grad_norm": 0.20523901283740997, + "learning_rate": 0.0006, + "loss": 3.478180170059204, + "step": 5315 + }, + { + "epoch": 73.83879423328965, + "grad_norm": 0.21429577469825745, + "learning_rate": 0.0006, + "loss": 3.5295538902282715, + "step": 5316 + }, + { + "epoch": 73.8527741371778, + "grad_norm": 0.2419414520263672, + "learning_rate": 0.0006, + "loss": 3.518057346343994, + "step": 5317 + }, + { + "epoch": 73.86675404106597, + "grad_norm": 0.27580955624580383, + "learning_rate": 0.0006, + "loss": 3.5108370780944824, + "step": 5318 + }, + { + "epoch": 73.88073394495413, + "grad_norm": 0.24745431542396545, + "learning_rate": 0.0006, + "loss": 3.5286366939544678, + "step": 5319 + }, + { + "epoch": 73.89471384884229, + "grad_norm": 0.2149314135313034, + "learning_rate": 0.0006, + "loss": 3.485231399536133, + "step": 5320 + }, + { + "epoch": 73.90869375273044, + "grad_norm": 0.2078951895236969, + "learning_rate": 0.0006, + "loss": 3.5262768268585205, + "step": 5321 + }, + { + "epoch": 73.92267365661861, + "grad_norm": 0.2416444718837738, + "learning_rate": 0.0006, + "loss": 3.5233588218688965, + "step": 5322 + }, + { + "epoch": 73.93665356050677, + "grad_norm": 0.22926902770996094, + "learning_rate": 0.0006, + "loss": 3.5189247131347656, + "step": 5323 + }, + { + "epoch": 73.95063346439493, + "grad_norm": 0.21510642766952515, + "learning_rate": 0.0006, + "loss": 3.473496198654175, + "step": 5324 + }, + { + "epoch": 73.9646133682831, + "grad_norm": 0.2103978842496872, + "learning_rate": 0.0006, + "loss": 3.482978343963623, + "step": 5325 + }, + { + "epoch": 73.97859327217125, + "grad_norm": 0.1958087682723999, + "learning_rate": 0.0006, + "loss": 3.5095043182373047, + "step": 5326 + }, + { + "epoch": 73.99257317605941, + "grad_norm": 0.1914149820804596, + "learning_rate": 0.0006, + "loss": 3.5150370597839355, + "step": 5327 + }, + { + "epoch": 74.0, + "grad_norm": 0.23419693112373352, + "learning_rate": 0.0006, + "loss": 3.5106215476989746, + "step": 5328 + }, + { + "epoch": 74.0, + "eval_loss": 3.9748404026031494, + "eval_runtime": 44.8747, + "eval_samples_per_second": 54.418, + "eval_steps_per_second": 3.409, + "step": 5328 + }, + { + "epoch": 74.01397990388816, + "grad_norm": 0.2479415088891983, + "learning_rate": 0.0006, + "loss": 3.4701595306396484, + "step": 5329 + }, + { + "epoch": 74.02795980777633, + "grad_norm": 0.24987533688545227, + "learning_rate": 0.0006, + "loss": 3.4586291313171387, + "step": 5330 + }, + { + "epoch": 74.04193971166448, + "grad_norm": 0.23266810178756714, + "learning_rate": 0.0006, + "loss": 3.4172134399414062, + "step": 5331 + }, + { + "epoch": 74.05591961555264, + "grad_norm": 0.2236100137233734, + "learning_rate": 0.0006, + "loss": 3.4862887859344482, + "step": 5332 + }, + { + "epoch": 74.06989951944081, + "grad_norm": 0.20534487068653107, + "learning_rate": 0.0006, + "loss": 3.45927357673645, + "step": 5333 + }, + { + "epoch": 74.08387942332897, + "grad_norm": 0.2238253802061081, + "learning_rate": 0.0006, + "loss": 3.467851400375366, + "step": 5334 + }, + { + "epoch": 74.09785932721712, + "grad_norm": 0.26896408200263977, + "learning_rate": 0.0006, + "loss": 3.4854512214660645, + "step": 5335 + }, + { + "epoch": 74.1118392311053, + "grad_norm": 0.2958875000476837, + "learning_rate": 0.0006, + "loss": 3.4699835777282715, + "step": 5336 + }, + { + "epoch": 74.12581913499345, + "grad_norm": 0.2670096755027771, + "learning_rate": 0.0006, + "loss": 3.469750165939331, + "step": 5337 + }, + { + "epoch": 74.1397990388816, + "grad_norm": 0.24695175886154175, + "learning_rate": 0.0006, + "loss": 3.4648962020874023, + "step": 5338 + }, + { + "epoch": 74.15377894276976, + "grad_norm": 0.22581245005130768, + "learning_rate": 0.0006, + "loss": 3.4659342765808105, + "step": 5339 + }, + { + "epoch": 74.16775884665793, + "grad_norm": 0.214495450258255, + "learning_rate": 0.0006, + "loss": 3.484555721282959, + "step": 5340 + }, + { + "epoch": 74.18173875054609, + "grad_norm": 0.2219872921705246, + "learning_rate": 0.0006, + "loss": 3.4930648803710938, + "step": 5341 + }, + { + "epoch": 74.19571865443424, + "grad_norm": 0.23231728374958038, + "learning_rate": 0.0006, + "loss": 3.4828286170959473, + "step": 5342 + }, + { + "epoch": 74.20969855832242, + "grad_norm": 0.2273619920015335, + "learning_rate": 0.0006, + "loss": 3.4727272987365723, + "step": 5343 + }, + { + "epoch": 74.22367846221057, + "grad_norm": 0.22086025774478912, + "learning_rate": 0.0006, + "loss": 3.5108399391174316, + "step": 5344 + }, + { + "epoch": 74.23765836609873, + "grad_norm": 0.2132318615913391, + "learning_rate": 0.0006, + "loss": 3.4821221828460693, + "step": 5345 + }, + { + "epoch": 74.2516382699869, + "grad_norm": 0.2375437170267105, + "learning_rate": 0.0006, + "loss": 3.5120530128479004, + "step": 5346 + }, + { + "epoch": 74.26561817387505, + "grad_norm": 0.24744948744773865, + "learning_rate": 0.0006, + "loss": 3.4861230850219727, + "step": 5347 + }, + { + "epoch": 74.27959807776321, + "grad_norm": 0.2221650779247284, + "learning_rate": 0.0006, + "loss": 3.494476556777954, + "step": 5348 + }, + { + "epoch": 74.29357798165138, + "grad_norm": 0.1984807401895523, + "learning_rate": 0.0006, + "loss": 3.492462635040283, + "step": 5349 + }, + { + "epoch": 74.30755788553954, + "grad_norm": 0.2298664003610611, + "learning_rate": 0.0006, + "loss": 3.478318214416504, + "step": 5350 + }, + { + "epoch": 74.3215377894277, + "grad_norm": 0.25947070121765137, + "learning_rate": 0.0006, + "loss": 3.487811326980591, + "step": 5351 + }, + { + "epoch": 74.33551769331586, + "grad_norm": 0.23611490428447723, + "learning_rate": 0.0006, + "loss": 3.500941276550293, + "step": 5352 + }, + { + "epoch": 74.34949759720402, + "grad_norm": 0.2209966480731964, + "learning_rate": 0.0006, + "loss": 3.4910011291503906, + "step": 5353 + }, + { + "epoch": 74.36347750109218, + "grad_norm": 0.2637932300567627, + "learning_rate": 0.0006, + "loss": 3.5082242488861084, + "step": 5354 + }, + { + "epoch": 74.37745740498035, + "grad_norm": 0.27074548602104187, + "learning_rate": 0.0006, + "loss": 3.4829864501953125, + "step": 5355 + }, + { + "epoch": 74.3914373088685, + "grad_norm": 0.24120314419269562, + "learning_rate": 0.0006, + "loss": 3.5099215507507324, + "step": 5356 + }, + { + "epoch": 74.40541721275666, + "grad_norm": 0.22281570732593536, + "learning_rate": 0.0006, + "loss": 3.4863901138305664, + "step": 5357 + }, + { + "epoch": 74.41939711664482, + "grad_norm": 0.24500703811645508, + "learning_rate": 0.0006, + "loss": 3.492774248123169, + "step": 5358 + }, + { + "epoch": 74.43337702053299, + "grad_norm": 0.2938194274902344, + "learning_rate": 0.0006, + "loss": 3.5095953941345215, + "step": 5359 + }, + { + "epoch": 74.44735692442114, + "grad_norm": 0.23553980886936188, + "learning_rate": 0.0006, + "loss": 3.4738357067108154, + "step": 5360 + }, + { + "epoch": 74.4613368283093, + "grad_norm": 0.23400643467903137, + "learning_rate": 0.0006, + "loss": 3.503324508666992, + "step": 5361 + }, + { + "epoch": 74.47531673219747, + "grad_norm": 0.26702186465263367, + "learning_rate": 0.0006, + "loss": 3.5077764987945557, + "step": 5362 + }, + { + "epoch": 74.48929663608563, + "grad_norm": 0.26146429777145386, + "learning_rate": 0.0006, + "loss": 3.4926650524139404, + "step": 5363 + }, + { + "epoch": 74.50327653997378, + "grad_norm": 0.24903273582458496, + "learning_rate": 0.0006, + "loss": 3.4951210021972656, + "step": 5364 + }, + { + "epoch": 74.51725644386195, + "grad_norm": 0.2189243733882904, + "learning_rate": 0.0006, + "loss": 3.50642728805542, + "step": 5365 + }, + { + "epoch": 74.53123634775011, + "grad_norm": 0.2049291431903839, + "learning_rate": 0.0006, + "loss": 3.5034496784210205, + "step": 5366 + }, + { + "epoch": 74.54521625163827, + "grad_norm": 0.20688633620738983, + "learning_rate": 0.0006, + "loss": 3.4878382682800293, + "step": 5367 + }, + { + "epoch": 74.55919615552644, + "grad_norm": 0.201416477560997, + "learning_rate": 0.0006, + "loss": 3.503418445587158, + "step": 5368 + }, + { + "epoch": 74.57317605941459, + "grad_norm": 0.2094922661781311, + "learning_rate": 0.0006, + "loss": 3.4678902626037598, + "step": 5369 + }, + { + "epoch": 74.58715596330275, + "grad_norm": 0.23010285198688507, + "learning_rate": 0.0006, + "loss": 3.4749817848205566, + "step": 5370 + }, + { + "epoch": 74.60113586719092, + "grad_norm": 0.22642597556114197, + "learning_rate": 0.0006, + "loss": 3.4843454360961914, + "step": 5371 + }, + { + "epoch": 74.61511577107908, + "grad_norm": 0.2123269885778427, + "learning_rate": 0.0006, + "loss": 3.4823896884918213, + "step": 5372 + }, + { + "epoch": 74.62909567496723, + "grad_norm": 0.21990132331848145, + "learning_rate": 0.0006, + "loss": 3.4970970153808594, + "step": 5373 + }, + { + "epoch": 74.6430755788554, + "grad_norm": 0.23335176706314087, + "learning_rate": 0.0006, + "loss": 3.481468677520752, + "step": 5374 + }, + { + "epoch": 74.65705548274356, + "grad_norm": 0.22706177830696106, + "learning_rate": 0.0006, + "loss": 3.504356861114502, + "step": 5375 + }, + { + "epoch": 74.67103538663171, + "grad_norm": 0.22790828347206116, + "learning_rate": 0.0006, + "loss": 3.472900867462158, + "step": 5376 + }, + { + "epoch": 74.68501529051987, + "grad_norm": 0.26810064911842346, + "learning_rate": 0.0006, + "loss": 3.4734930992126465, + "step": 5377 + }, + { + "epoch": 74.69899519440804, + "grad_norm": 0.28308895230293274, + "learning_rate": 0.0006, + "loss": 3.5265793800354004, + "step": 5378 + }, + { + "epoch": 74.7129750982962, + "grad_norm": 0.23838670551776886, + "learning_rate": 0.0006, + "loss": 3.4594779014587402, + "step": 5379 + }, + { + "epoch": 74.72695500218435, + "grad_norm": 0.22041939198970795, + "learning_rate": 0.0006, + "loss": 3.5098114013671875, + "step": 5380 + }, + { + "epoch": 74.74093490607252, + "grad_norm": 0.24805180728435516, + "learning_rate": 0.0006, + "loss": 3.5069029331207275, + "step": 5381 + }, + { + "epoch": 74.75491480996068, + "grad_norm": 0.3026084005832672, + "learning_rate": 0.0006, + "loss": 3.4828643798828125, + "step": 5382 + }, + { + "epoch": 74.76889471384884, + "grad_norm": 0.2749265432357788, + "learning_rate": 0.0006, + "loss": 3.536533832550049, + "step": 5383 + }, + { + "epoch": 74.78287461773701, + "grad_norm": 0.23131245374679565, + "learning_rate": 0.0006, + "loss": 3.4843153953552246, + "step": 5384 + }, + { + "epoch": 74.79685452162516, + "grad_norm": 0.28015977144241333, + "learning_rate": 0.0006, + "loss": 3.5087320804595947, + "step": 5385 + }, + { + "epoch": 74.81083442551332, + "grad_norm": 0.28901320695877075, + "learning_rate": 0.0006, + "loss": 3.509774684906006, + "step": 5386 + }, + { + "epoch": 74.82481432940149, + "grad_norm": 0.2902369499206543, + "learning_rate": 0.0006, + "loss": 3.5354912281036377, + "step": 5387 + }, + { + "epoch": 74.83879423328965, + "grad_norm": 0.28103142976760864, + "learning_rate": 0.0006, + "loss": 3.5079479217529297, + "step": 5388 + }, + { + "epoch": 74.8527741371778, + "grad_norm": 0.21874217689037323, + "learning_rate": 0.0006, + "loss": 3.527747631072998, + "step": 5389 + }, + { + "epoch": 74.86675404106597, + "grad_norm": 0.2200363576412201, + "learning_rate": 0.0006, + "loss": 3.4977521896362305, + "step": 5390 + }, + { + "epoch": 74.88073394495413, + "grad_norm": 0.24229851365089417, + "learning_rate": 0.0006, + "loss": 3.535094738006592, + "step": 5391 + }, + { + "epoch": 74.89471384884229, + "grad_norm": 0.25623074173927307, + "learning_rate": 0.0006, + "loss": 3.5501794815063477, + "step": 5392 + }, + { + "epoch": 74.90869375273044, + "grad_norm": 0.25281623005867004, + "learning_rate": 0.0006, + "loss": 3.4836385250091553, + "step": 5393 + }, + { + "epoch": 74.92267365661861, + "grad_norm": 0.2236766219139099, + "learning_rate": 0.0006, + "loss": 3.4966232776641846, + "step": 5394 + }, + { + "epoch": 74.93665356050677, + "grad_norm": 0.20852778851985931, + "learning_rate": 0.0006, + "loss": 3.516902446746826, + "step": 5395 + }, + { + "epoch": 74.95063346439493, + "grad_norm": 0.22248536348342896, + "learning_rate": 0.0006, + "loss": 3.5233588218688965, + "step": 5396 + }, + { + "epoch": 74.9646133682831, + "grad_norm": 0.23792508244514465, + "learning_rate": 0.0006, + "loss": 3.4896931648254395, + "step": 5397 + }, + { + "epoch": 74.97859327217125, + "grad_norm": 0.20838406682014465, + "learning_rate": 0.0006, + "loss": 3.4921011924743652, + "step": 5398 + }, + { + "epoch": 74.99257317605941, + "grad_norm": 0.22375819087028503, + "learning_rate": 0.0006, + "loss": 3.5101675987243652, + "step": 5399 + }, + { + "epoch": 75.0, + "grad_norm": 0.3014359772205353, + "learning_rate": 0.0006, + "loss": 3.5245840549468994, + "step": 5400 + }, + { + "epoch": 75.0, + "eval_loss": 3.9896810054779053, + "eval_runtime": 45.1449, + "eval_samples_per_second": 54.092, + "eval_steps_per_second": 3.389, + "step": 5400 + }, + { + "epoch": 75.01397990388816, + "grad_norm": 0.2802879214286804, + "learning_rate": 0.0006, + "loss": 3.4459807872772217, + "step": 5401 + }, + { + "epoch": 75.02795980777633, + "grad_norm": 0.2268809676170349, + "learning_rate": 0.0006, + "loss": 3.492509365081787, + "step": 5402 + }, + { + "epoch": 75.04193971166448, + "grad_norm": 0.32269951701164246, + "learning_rate": 0.0006, + "loss": 3.4565114974975586, + "step": 5403 + }, + { + "epoch": 75.05591961555264, + "grad_norm": 0.37944868206977844, + "learning_rate": 0.0006, + "loss": 3.4896206855773926, + "step": 5404 + }, + { + "epoch": 75.06989951944081, + "grad_norm": 0.2834550440311432, + "learning_rate": 0.0006, + "loss": 3.4488000869750977, + "step": 5405 + }, + { + "epoch": 75.08387942332897, + "grad_norm": 0.24261713027954102, + "learning_rate": 0.0006, + "loss": 3.4881110191345215, + "step": 5406 + }, + { + "epoch": 75.09785932721712, + "grad_norm": 0.25649914145469666, + "learning_rate": 0.0006, + "loss": 3.4687750339508057, + "step": 5407 + }, + { + "epoch": 75.1118392311053, + "grad_norm": 0.28500616550445557, + "learning_rate": 0.0006, + "loss": 3.5017337799072266, + "step": 5408 + }, + { + "epoch": 75.12581913499345, + "grad_norm": 0.288143128156662, + "learning_rate": 0.0006, + "loss": 3.46737003326416, + "step": 5409 + }, + { + "epoch": 75.1397990388816, + "grad_norm": 0.23640452325344086, + "learning_rate": 0.0006, + "loss": 3.485724925994873, + "step": 5410 + }, + { + "epoch": 75.15377894276976, + "grad_norm": 0.231221541762352, + "learning_rate": 0.0006, + "loss": 3.4711289405822754, + "step": 5411 + }, + { + "epoch": 75.16775884665793, + "grad_norm": 0.22871847450733185, + "learning_rate": 0.0006, + "loss": 3.457324504852295, + "step": 5412 + }, + { + "epoch": 75.18173875054609, + "grad_norm": 0.24795132875442505, + "learning_rate": 0.0006, + "loss": 3.4799628257751465, + "step": 5413 + }, + { + "epoch": 75.19571865443424, + "grad_norm": 0.2337426245212555, + "learning_rate": 0.0006, + "loss": 3.4352688789367676, + "step": 5414 + }, + { + "epoch": 75.20969855832242, + "grad_norm": 0.251052588224411, + "learning_rate": 0.0006, + "loss": 3.4770374298095703, + "step": 5415 + }, + { + "epoch": 75.22367846221057, + "grad_norm": 0.2879040241241455, + "learning_rate": 0.0006, + "loss": 3.495934009552002, + "step": 5416 + }, + { + "epoch": 75.23765836609873, + "grad_norm": 0.273510605096817, + "learning_rate": 0.0006, + "loss": 3.497647762298584, + "step": 5417 + }, + { + "epoch": 75.2516382699869, + "grad_norm": 0.24495841562747955, + "learning_rate": 0.0006, + "loss": 3.455962896347046, + "step": 5418 + }, + { + "epoch": 75.26561817387505, + "grad_norm": 0.2345196157693863, + "learning_rate": 0.0006, + "loss": 3.5110573768615723, + "step": 5419 + }, + { + "epoch": 75.27959807776321, + "grad_norm": 0.22574985027313232, + "learning_rate": 0.0006, + "loss": 3.499999523162842, + "step": 5420 + }, + { + "epoch": 75.29357798165138, + "grad_norm": 0.21367499232292175, + "learning_rate": 0.0006, + "loss": 3.4823455810546875, + "step": 5421 + }, + { + "epoch": 75.30755788553954, + "grad_norm": 0.2120848447084427, + "learning_rate": 0.0006, + "loss": 3.4786484241485596, + "step": 5422 + }, + { + "epoch": 75.3215377894277, + "grad_norm": 0.21794751286506653, + "learning_rate": 0.0006, + "loss": 3.4970765113830566, + "step": 5423 + }, + { + "epoch": 75.33551769331586, + "grad_norm": 0.21963100135326385, + "learning_rate": 0.0006, + "loss": 3.5118799209594727, + "step": 5424 + }, + { + "epoch": 75.34949759720402, + "grad_norm": 0.21615713834762573, + "learning_rate": 0.0006, + "loss": 3.4728214740753174, + "step": 5425 + }, + { + "epoch": 75.36347750109218, + "grad_norm": 0.23004800081253052, + "learning_rate": 0.0006, + "loss": 3.496875762939453, + "step": 5426 + }, + { + "epoch": 75.37745740498035, + "grad_norm": 0.24208541214466095, + "learning_rate": 0.0006, + "loss": 3.4958276748657227, + "step": 5427 + }, + { + "epoch": 75.3914373088685, + "grad_norm": 0.20642924308776855, + "learning_rate": 0.0006, + "loss": 3.500385284423828, + "step": 5428 + }, + { + "epoch": 75.40541721275666, + "grad_norm": 0.2259436547756195, + "learning_rate": 0.0006, + "loss": 3.4697232246398926, + "step": 5429 + }, + { + "epoch": 75.41939711664482, + "grad_norm": 0.25861549377441406, + "learning_rate": 0.0006, + "loss": 3.5008928775787354, + "step": 5430 + }, + { + "epoch": 75.43337702053299, + "grad_norm": 0.24532392621040344, + "learning_rate": 0.0006, + "loss": 3.4718515872955322, + "step": 5431 + }, + { + "epoch": 75.44735692442114, + "grad_norm": 0.23508992791175842, + "learning_rate": 0.0006, + "loss": 3.4947562217712402, + "step": 5432 + }, + { + "epoch": 75.4613368283093, + "grad_norm": 0.25019076466560364, + "learning_rate": 0.0006, + "loss": 3.5137546062469482, + "step": 5433 + }, + { + "epoch": 75.47531673219747, + "grad_norm": 0.23382526636123657, + "learning_rate": 0.0006, + "loss": 3.503502368927002, + "step": 5434 + }, + { + "epoch": 75.48929663608563, + "grad_norm": 0.23226714134216309, + "learning_rate": 0.0006, + "loss": 3.4856209754943848, + "step": 5435 + }, + { + "epoch": 75.50327653997378, + "grad_norm": 0.2705337107181549, + "learning_rate": 0.0006, + "loss": 3.4829044342041016, + "step": 5436 + }, + { + "epoch": 75.51725644386195, + "grad_norm": 0.23903003334999084, + "learning_rate": 0.0006, + "loss": 3.473284959793091, + "step": 5437 + }, + { + "epoch": 75.53123634775011, + "grad_norm": 0.2298477441072464, + "learning_rate": 0.0006, + "loss": 3.4981393814086914, + "step": 5438 + }, + { + "epoch": 75.54521625163827, + "grad_norm": 0.2785218060016632, + "learning_rate": 0.0006, + "loss": 3.491668701171875, + "step": 5439 + }, + { + "epoch": 75.55919615552644, + "grad_norm": 0.30322644114494324, + "learning_rate": 0.0006, + "loss": 3.5061874389648438, + "step": 5440 + }, + { + "epoch": 75.57317605941459, + "grad_norm": 0.26536163687705994, + "learning_rate": 0.0006, + "loss": 3.491297721862793, + "step": 5441 + }, + { + "epoch": 75.58715596330275, + "grad_norm": 0.25591710209846497, + "learning_rate": 0.0006, + "loss": 3.4608688354492188, + "step": 5442 + }, + { + "epoch": 75.60113586719092, + "grad_norm": 0.29031914472579956, + "learning_rate": 0.0006, + "loss": 3.5015907287597656, + "step": 5443 + }, + { + "epoch": 75.61511577107908, + "grad_norm": 0.3028157353401184, + "learning_rate": 0.0006, + "loss": 3.488694190979004, + "step": 5444 + }, + { + "epoch": 75.62909567496723, + "grad_norm": 0.2612902522087097, + "learning_rate": 0.0006, + "loss": 3.5170979499816895, + "step": 5445 + }, + { + "epoch": 75.6430755788554, + "grad_norm": 0.2346487045288086, + "learning_rate": 0.0006, + "loss": 3.501101493835449, + "step": 5446 + }, + { + "epoch": 75.65705548274356, + "grad_norm": 0.24434567987918854, + "learning_rate": 0.0006, + "loss": 3.48040771484375, + "step": 5447 + }, + { + "epoch": 75.67103538663171, + "grad_norm": 0.2538795471191406, + "learning_rate": 0.0006, + "loss": 3.480721950531006, + "step": 5448 + }, + { + "epoch": 75.68501529051987, + "grad_norm": 0.23026305437088013, + "learning_rate": 0.0006, + "loss": 3.501366138458252, + "step": 5449 + }, + { + "epoch": 75.69899519440804, + "grad_norm": 0.21872632205486298, + "learning_rate": 0.0006, + "loss": 3.4855334758758545, + "step": 5450 + }, + { + "epoch": 75.7129750982962, + "grad_norm": 0.23016631603240967, + "learning_rate": 0.0006, + "loss": 3.487691879272461, + "step": 5451 + }, + { + "epoch": 75.72695500218435, + "grad_norm": 0.25731417536735535, + "learning_rate": 0.0006, + "loss": 3.509885787963867, + "step": 5452 + }, + { + "epoch": 75.74093490607252, + "grad_norm": 0.23140797019004822, + "learning_rate": 0.0006, + "loss": 3.4974255561828613, + "step": 5453 + }, + { + "epoch": 75.75491480996068, + "grad_norm": 0.2290206402540207, + "learning_rate": 0.0006, + "loss": 3.497750997543335, + "step": 5454 + }, + { + "epoch": 75.76889471384884, + "grad_norm": 0.22882549464702606, + "learning_rate": 0.0006, + "loss": 3.513742446899414, + "step": 5455 + }, + { + "epoch": 75.78287461773701, + "grad_norm": 0.22749373316764832, + "learning_rate": 0.0006, + "loss": 3.5267224311828613, + "step": 5456 + }, + { + "epoch": 75.79685452162516, + "grad_norm": 0.23185116052627563, + "learning_rate": 0.0006, + "loss": 3.4946181774139404, + "step": 5457 + }, + { + "epoch": 75.81083442551332, + "grad_norm": 0.21161580085754395, + "learning_rate": 0.0006, + "loss": 3.51632022857666, + "step": 5458 + }, + { + "epoch": 75.82481432940149, + "grad_norm": 0.2244153618812561, + "learning_rate": 0.0006, + "loss": 3.5021536350250244, + "step": 5459 + }, + { + "epoch": 75.83879423328965, + "grad_norm": 0.2286757528781891, + "learning_rate": 0.0006, + "loss": 3.5064220428466797, + "step": 5460 + }, + { + "epoch": 75.8527741371778, + "grad_norm": 0.24235443770885468, + "learning_rate": 0.0006, + "loss": 3.47468638420105, + "step": 5461 + }, + { + "epoch": 75.86675404106597, + "grad_norm": 0.21012619137763977, + "learning_rate": 0.0006, + "loss": 3.469088077545166, + "step": 5462 + }, + { + "epoch": 75.88073394495413, + "grad_norm": 0.20562565326690674, + "learning_rate": 0.0006, + "loss": 3.4918551445007324, + "step": 5463 + }, + { + "epoch": 75.89471384884229, + "grad_norm": 0.2122880220413208, + "learning_rate": 0.0006, + "loss": 3.5048160552978516, + "step": 5464 + }, + { + "epoch": 75.90869375273044, + "grad_norm": 0.20818278193473816, + "learning_rate": 0.0006, + "loss": 3.4814553260803223, + "step": 5465 + }, + { + "epoch": 75.92267365661861, + "grad_norm": 0.20316754281520844, + "learning_rate": 0.0006, + "loss": 3.500009775161743, + "step": 5466 + }, + { + "epoch": 75.93665356050677, + "grad_norm": 0.2093973606824875, + "learning_rate": 0.0006, + "loss": 3.4891273975372314, + "step": 5467 + }, + { + "epoch": 75.95063346439493, + "grad_norm": 0.20942363142967224, + "learning_rate": 0.0006, + "loss": 3.5271172523498535, + "step": 5468 + }, + { + "epoch": 75.9646133682831, + "grad_norm": 0.22052891552448273, + "learning_rate": 0.0006, + "loss": 3.508040189743042, + "step": 5469 + }, + { + "epoch": 75.97859327217125, + "grad_norm": 0.2208913266658783, + "learning_rate": 0.0006, + "loss": 3.5075063705444336, + "step": 5470 + }, + { + "epoch": 75.99257317605941, + "grad_norm": 0.20618212223052979, + "learning_rate": 0.0006, + "loss": 3.5018906593322754, + "step": 5471 + }, + { + "epoch": 76.0, + "grad_norm": 0.23915603756904602, + "learning_rate": 0.0006, + "loss": 3.490349054336548, + "step": 5472 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 2.3318874183004324e+18, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5472/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-576/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-576/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-576/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-576/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-576/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-576/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-576/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-576/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-576/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-576/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-576/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..707a19930e9bd0d5e9bd984b6a88501ab60336bc --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-576/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a288e30ee379e24b563a18945552578d270493b0f1ac53a7ec6935468502b6ad +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-576/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-576/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..f15c20b10c535fe06fe689f23ed6038b3fbb14fb --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-576/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b75d65de58edfecfdeb0539c218274934becc5bfebd348e3fc9d122cfe49ccb +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-576/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-576/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..fd2a802a27efcfe5b0c469d1d81eb67912fe77f0 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-576/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceec8908661b7a04aa33ece309214a047b91fd01ded9d6de474167c80475a951 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-576/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-576/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..97abb9cc20a5f92bd928c5f1146ba4382070e4d6 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-576/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfd75e967c854314c0f0a6322ec7b26143252a64bd6b1b4cbd8afd0c13ec14bc +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-576/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-576/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..dbc454a52c5d1edb241846f7cbf86268ced2c2ff --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-576/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f28b8022dab4a12fbbad2bccde532c0f7c60e469bde0bf66d40f7d043ac1727 +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-576/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-576/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-576/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-576/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-576/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-576/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-576/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-576/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..ef8516f6aa5a9b33b070ef416a29da7217cbbb1e --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-576/trainer_state.json @@ -0,0 +1,4122 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 8.0, + "eval_steps": 500, + "global_step": 576, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 2.4546183350530867e+17, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-576/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-576/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-576/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5760/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5760/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5760/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5760/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..fc1d882813f7e68840b541d300d9b50047940b24 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35a322df7370884738ce4bdbf8590856b1f0078a24480beda1127fecdb03b414 +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5760/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..9309152ccc2a8e0c65e217880d206190d08b0ed8 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad54fff4e8f18442573e24fadc994913ce5a8e95b25713308341004cedefa644 +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5760/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..a2689ca9b01e0b93a7577ea32ebeb5e3d16aad24 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c467567a6041b6f642f0c47e25541dbf924081cbc6bb24ed1b1e58e4bf8e33ee +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5760/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..3bc580903b6cf3b982ef89d988163e2363a8df66 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c6035cc095fb77f5cce814855b1700bddb9d6164e33bf94e61679e9d2e2a354 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5760/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..146fac8459db1a89ef1d0b02179a40f96280dd47 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a202cad58a75ceda9326b04df06bcdb148f3de25b706c12232648bdbcae46e67 +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5760/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5760/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5760/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..68a81258659c11acc0162bbeff3e4b9a92cc464f --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/trainer_state.json @@ -0,0 +1,40986 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 80.0, + "eval_steps": 500, + "global_step": 5760, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + }, + { + "epoch": 8.0, + "eval_loss": 5.100707530975342, + "eval_runtime": 44.2493, + "eval_samples_per_second": 55.187, + "eval_steps_per_second": 3.458, + "step": 576 + }, + { + "epoch": 8.013979903888162, + "grad_norm": 0.3658510148525238, + "learning_rate": 0.0006, + "loss": 4.759055137634277, + "step": 577 + }, + { + "epoch": 8.027959807776321, + "grad_norm": 0.41794446110725403, + "learning_rate": 0.0006, + "loss": 4.737661838531494, + "step": 578 + }, + { + "epoch": 8.041939711664483, + "grad_norm": 0.43284085392951965, + "learning_rate": 0.0006, + "loss": 4.775538444519043, + "step": 579 + }, + { + "epoch": 8.055919615552643, + "grad_norm": 0.4716675281524658, + "learning_rate": 0.0006, + "loss": 4.762231826782227, + "step": 580 + }, + { + "epoch": 8.069899519440805, + "grad_norm": 0.3849579393863678, + "learning_rate": 0.0006, + "loss": 4.753598690032959, + "step": 581 + }, + { + "epoch": 8.083879423328964, + "grad_norm": 0.3721151053905487, + "learning_rate": 0.0006, + "loss": 4.728978157043457, + "step": 582 + }, + { + "epoch": 8.097859327217126, + "grad_norm": 0.37009572982788086, + "learning_rate": 0.0006, + "loss": 4.759153366088867, + "step": 583 + }, + { + "epoch": 8.111839231105286, + "grad_norm": 0.37051302194595337, + "learning_rate": 0.0006, + "loss": 4.744197368621826, + "step": 584 + }, + { + "epoch": 8.125819134993447, + "grad_norm": 0.331238329410553, + "learning_rate": 0.0006, + "loss": 4.7338385581970215, + "step": 585 + }, + { + "epoch": 8.139799038881607, + "grad_norm": 0.3737713694572449, + "learning_rate": 0.0006, + "loss": 4.719110488891602, + "step": 586 + }, + { + "epoch": 8.153778942769769, + "grad_norm": 0.3713214695453644, + "learning_rate": 0.0006, + "loss": 4.734012126922607, + "step": 587 + }, + { + "epoch": 8.167758846657929, + "grad_norm": 0.4060780107975006, + "learning_rate": 0.0006, + "loss": 4.746830940246582, + "step": 588 + }, + { + "epoch": 8.18173875054609, + "grad_norm": 0.39814314246177673, + "learning_rate": 0.0006, + "loss": 4.722851753234863, + "step": 589 + }, + { + "epoch": 8.19571865443425, + "grad_norm": 0.3175652325153351, + "learning_rate": 0.0006, + "loss": 4.745110034942627, + "step": 590 + }, + { + "epoch": 8.209698558322412, + "grad_norm": 0.37214916944503784, + "learning_rate": 0.0006, + "loss": 4.7362775802612305, + "step": 591 + }, + { + "epoch": 8.223678462210572, + "grad_norm": 0.3873472809791565, + "learning_rate": 0.0006, + "loss": 4.738964557647705, + "step": 592 + }, + { + "epoch": 8.237658366098733, + "grad_norm": 0.3299207091331482, + "learning_rate": 0.0006, + "loss": 4.713451385498047, + "step": 593 + }, + { + "epoch": 8.251638269986893, + "grad_norm": 0.32445064187049866, + "learning_rate": 0.0006, + "loss": 4.725602149963379, + "step": 594 + }, + { + "epoch": 8.265618173875055, + "grad_norm": 0.32903164625167847, + "learning_rate": 0.0006, + "loss": 4.732064247131348, + "step": 595 + }, + { + "epoch": 8.279598077763215, + "grad_norm": 0.3166804313659668, + "learning_rate": 0.0006, + "loss": 4.678950786590576, + "step": 596 + }, + { + "epoch": 8.293577981651376, + "grad_norm": 0.2750290334224701, + "learning_rate": 0.0006, + "loss": 4.719513416290283, + "step": 597 + }, + { + "epoch": 8.307557885539538, + "grad_norm": 0.291029691696167, + "learning_rate": 0.0006, + "loss": 4.715405464172363, + "step": 598 + }, + { + "epoch": 8.321537789427698, + "grad_norm": 0.34105145931243896, + "learning_rate": 0.0006, + "loss": 4.722611427307129, + "step": 599 + }, + { + "epoch": 8.33551769331586, + "grad_norm": 0.3078882694244385, + "learning_rate": 0.0006, + "loss": 4.668856620788574, + "step": 600 + }, + { + "epoch": 8.349497597204019, + "grad_norm": 0.3218833804130554, + "learning_rate": 0.0006, + "loss": 4.719579696655273, + "step": 601 + }, + { + "epoch": 8.36347750109218, + "grad_norm": 0.35716721415519714, + "learning_rate": 0.0006, + "loss": 4.690774440765381, + "step": 602 + }, + { + "epoch": 8.37745740498034, + "grad_norm": 0.3045452833175659, + "learning_rate": 0.0006, + "loss": 4.696503639221191, + "step": 603 + }, + { + "epoch": 8.391437308868502, + "grad_norm": 0.3127244710922241, + "learning_rate": 0.0006, + "loss": 4.701899528503418, + "step": 604 + }, + { + "epoch": 8.405417212756662, + "grad_norm": 0.34988710284233093, + "learning_rate": 0.0006, + "loss": 4.677641868591309, + "step": 605 + }, + { + "epoch": 8.419397116644824, + "grad_norm": 0.34035569429397583, + "learning_rate": 0.0006, + "loss": 4.707778453826904, + "step": 606 + }, + { + "epoch": 8.433377020532983, + "grad_norm": 0.3341112732887268, + "learning_rate": 0.0006, + "loss": 4.724853038787842, + "step": 607 + }, + { + "epoch": 8.447356924421145, + "grad_norm": 0.41744324564933777, + "learning_rate": 0.0006, + "loss": 4.680908203125, + "step": 608 + }, + { + "epoch": 8.461336828309305, + "grad_norm": 0.40402331948280334, + "learning_rate": 0.0006, + "loss": 4.726455211639404, + "step": 609 + }, + { + "epoch": 8.475316732197467, + "grad_norm": 0.4727570414543152, + "learning_rate": 0.0006, + "loss": 4.6793084144592285, + "step": 610 + }, + { + "epoch": 8.489296636085626, + "grad_norm": 0.43002694845199585, + "learning_rate": 0.0006, + "loss": 4.663918972015381, + "step": 611 + }, + { + "epoch": 8.503276539973788, + "grad_norm": 0.36124858260154724, + "learning_rate": 0.0006, + "loss": 4.657375335693359, + "step": 612 + }, + { + "epoch": 8.517256443861948, + "grad_norm": 0.37644803524017334, + "learning_rate": 0.0006, + "loss": 4.676977157592773, + "step": 613 + }, + { + "epoch": 8.53123634775011, + "grad_norm": 0.32347747683525085, + "learning_rate": 0.0006, + "loss": 4.708547115325928, + "step": 614 + }, + { + "epoch": 8.54521625163827, + "grad_norm": 0.3071717619895935, + "learning_rate": 0.0006, + "loss": 4.650189399719238, + "step": 615 + }, + { + "epoch": 8.55919615552643, + "grad_norm": 0.30222490429878235, + "learning_rate": 0.0006, + "loss": 4.647942543029785, + "step": 616 + }, + { + "epoch": 8.57317605941459, + "grad_norm": 0.31545212864875793, + "learning_rate": 0.0006, + "loss": 4.660242080688477, + "step": 617 + }, + { + "epoch": 8.587155963302752, + "grad_norm": 0.31644752621650696, + "learning_rate": 0.0006, + "loss": 4.666710376739502, + "step": 618 + }, + { + "epoch": 8.601135867190912, + "grad_norm": 0.26057198643684387, + "learning_rate": 0.0006, + "loss": 4.668096542358398, + "step": 619 + }, + { + "epoch": 8.615115771079074, + "grad_norm": 0.25473910570144653, + "learning_rate": 0.0006, + "loss": 4.641562461853027, + "step": 620 + }, + { + "epoch": 8.629095674967235, + "grad_norm": 0.2456732839345932, + "learning_rate": 0.0006, + "loss": 4.6545281410217285, + "step": 621 + }, + { + "epoch": 8.643075578855395, + "grad_norm": 0.25180476903915405, + "learning_rate": 0.0006, + "loss": 4.6506524085998535, + "step": 622 + }, + { + "epoch": 8.657055482743557, + "grad_norm": 0.21761579811573029, + "learning_rate": 0.0006, + "loss": 4.638909339904785, + "step": 623 + }, + { + "epoch": 8.671035386631717, + "grad_norm": 0.23590542376041412, + "learning_rate": 0.0006, + "loss": 4.6572747230529785, + "step": 624 + }, + { + "epoch": 8.685015290519878, + "grad_norm": 0.23870624601840973, + "learning_rate": 0.0006, + "loss": 4.643742084503174, + "step": 625 + }, + { + "epoch": 8.698995194408038, + "grad_norm": 0.2191203385591507, + "learning_rate": 0.0006, + "loss": 4.632617950439453, + "step": 626 + }, + { + "epoch": 8.7129750982962, + "grad_norm": 0.22107063233852386, + "learning_rate": 0.0006, + "loss": 4.625616073608398, + "step": 627 + }, + { + "epoch": 8.72695500218436, + "grad_norm": 0.20833902060985565, + "learning_rate": 0.0006, + "loss": 4.609896659851074, + "step": 628 + }, + { + "epoch": 8.740934906072521, + "grad_norm": 0.254967600107193, + "learning_rate": 0.0006, + "loss": 4.651735782623291, + "step": 629 + }, + { + "epoch": 8.754914809960681, + "grad_norm": 0.31587523221969604, + "learning_rate": 0.0006, + "loss": 4.6404032707214355, + "step": 630 + }, + { + "epoch": 8.768894713848843, + "grad_norm": 0.28598251938819885, + "learning_rate": 0.0006, + "loss": 4.602679252624512, + "step": 631 + }, + { + "epoch": 8.782874617737003, + "grad_norm": 0.23216590285301208, + "learning_rate": 0.0006, + "loss": 4.610319137573242, + "step": 632 + }, + { + "epoch": 8.796854521625164, + "grad_norm": 0.29212239384651184, + "learning_rate": 0.0006, + "loss": 4.600744247436523, + "step": 633 + }, + { + "epoch": 8.810834425513324, + "grad_norm": 0.3375801146030426, + "learning_rate": 0.0006, + "loss": 4.627819061279297, + "step": 634 + }, + { + "epoch": 8.824814329401486, + "grad_norm": 0.4207753837108612, + "learning_rate": 0.0006, + "loss": 4.634505271911621, + "step": 635 + }, + { + "epoch": 8.838794233289645, + "grad_norm": 0.4640173614025116, + "learning_rate": 0.0006, + "loss": 4.636714935302734, + "step": 636 + }, + { + "epoch": 8.852774137177807, + "grad_norm": 0.5255663990974426, + "learning_rate": 0.0006, + "loss": 4.659462928771973, + "step": 637 + }, + { + "epoch": 8.866754041065967, + "grad_norm": 0.5108268857002258, + "learning_rate": 0.0006, + "loss": 4.633192539215088, + "step": 638 + }, + { + "epoch": 8.880733944954128, + "grad_norm": 0.3821936845779419, + "learning_rate": 0.0006, + "loss": 4.621200084686279, + "step": 639 + }, + { + "epoch": 8.89471384884229, + "grad_norm": 0.3918485939502716, + "learning_rate": 0.0006, + "loss": 4.632599830627441, + "step": 640 + }, + { + "epoch": 8.90869375273045, + "grad_norm": 0.3416556119918823, + "learning_rate": 0.0006, + "loss": 4.620438098907471, + "step": 641 + }, + { + "epoch": 8.922673656618612, + "grad_norm": 0.3191553056240082, + "learning_rate": 0.0006, + "loss": 4.617823600769043, + "step": 642 + }, + { + "epoch": 8.936653560506771, + "grad_norm": 0.3368529677391052, + "learning_rate": 0.0006, + "loss": 4.617222785949707, + "step": 643 + }, + { + "epoch": 8.950633464394933, + "grad_norm": 0.3255428969860077, + "learning_rate": 0.0006, + "loss": 4.633878707885742, + "step": 644 + }, + { + "epoch": 8.964613368283093, + "grad_norm": 0.31394779682159424, + "learning_rate": 0.0006, + "loss": 4.642603874206543, + "step": 645 + }, + { + "epoch": 8.978593272171254, + "grad_norm": 0.29999351501464844, + "learning_rate": 0.0006, + "loss": 4.5925211906433105, + "step": 646 + }, + { + "epoch": 8.992573176059414, + "grad_norm": 0.309154748916626, + "learning_rate": 0.0006, + "loss": 4.61745023727417, + "step": 647 + }, + { + "epoch": 9.0, + "grad_norm": 0.2660452425479889, + "learning_rate": 0.0006, + "loss": 4.575107097625732, + "step": 648 + }, + { + "epoch": 9.0, + "eval_loss": 4.8804192543029785, + "eval_runtime": 45.0015, + "eval_samples_per_second": 54.265, + "eval_steps_per_second": 3.4, + "step": 648 + }, + { + "epoch": 9.013979903888162, + "grad_norm": 0.24159297347068787, + "learning_rate": 0.0006, + "loss": 4.571323871612549, + "step": 649 + }, + { + "epoch": 9.027959807776321, + "grad_norm": 0.2835831046104431, + "learning_rate": 0.0006, + "loss": 4.614255905151367, + "step": 650 + }, + { + "epoch": 9.041939711664483, + "grad_norm": 0.2646859288215637, + "learning_rate": 0.0006, + "loss": 4.578947067260742, + "step": 651 + }, + { + "epoch": 9.055919615552643, + "grad_norm": 0.28868553042411804, + "learning_rate": 0.0006, + "loss": 4.575977325439453, + "step": 652 + }, + { + "epoch": 9.069899519440805, + "grad_norm": 0.2899586856365204, + "learning_rate": 0.0006, + "loss": 4.541798114776611, + "step": 653 + }, + { + "epoch": 9.083879423328964, + "grad_norm": 0.32786068320274353, + "learning_rate": 0.0006, + "loss": 4.575140953063965, + "step": 654 + }, + { + "epoch": 9.097859327217126, + "grad_norm": 0.35675594210624695, + "learning_rate": 0.0006, + "loss": 4.58184814453125, + "step": 655 + }, + { + "epoch": 9.111839231105286, + "grad_norm": 0.3380381166934967, + "learning_rate": 0.0006, + "loss": 4.546271324157715, + "step": 656 + }, + { + "epoch": 9.125819134993447, + "grad_norm": 0.3035511374473572, + "learning_rate": 0.0006, + "loss": 4.591629981994629, + "step": 657 + }, + { + "epoch": 9.139799038881607, + "grad_norm": 0.2733091711997986, + "learning_rate": 0.0006, + "loss": 4.559020042419434, + "step": 658 + }, + { + "epoch": 9.153778942769769, + "grad_norm": 0.2870676815509796, + "learning_rate": 0.0006, + "loss": 4.552787780761719, + "step": 659 + }, + { + "epoch": 9.167758846657929, + "grad_norm": 0.37471064925193787, + "learning_rate": 0.0006, + "loss": 4.572757244110107, + "step": 660 + }, + { + "epoch": 9.18173875054609, + "grad_norm": 0.37889063358306885, + "learning_rate": 0.0006, + "loss": 4.573302268981934, + "step": 661 + }, + { + "epoch": 9.19571865443425, + "grad_norm": 0.29983851313591003, + "learning_rate": 0.0006, + "loss": 4.571202754974365, + "step": 662 + }, + { + "epoch": 9.209698558322412, + "grad_norm": 0.27595147490501404, + "learning_rate": 0.0006, + "loss": 4.529508590698242, + "step": 663 + }, + { + "epoch": 9.223678462210572, + "grad_norm": 0.22693437337875366, + "learning_rate": 0.0006, + "loss": 4.572267532348633, + "step": 664 + }, + { + "epoch": 9.237658366098733, + "grad_norm": 0.27147138118743896, + "learning_rate": 0.0006, + "loss": 4.529747009277344, + "step": 665 + }, + { + "epoch": 9.251638269986893, + "grad_norm": 0.24952703714370728, + "learning_rate": 0.0006, + "loss": 4.553647994995117, + "step": 666 + }, + { + "epoch": 9.265618173875055, + "grad_norm": 0.3086707592010498, + "learning_rate": 0.0006, + "loss": 4.494636058807373, + "step": 667 + }, + { + "epoch": 9.279598077763215, + "grad_norm": 0.3265218138694763, + "learning_rate": 0.0006, + "loss": 4.522481918334961, + "step": 668 + }, + { + "epoch": 9.293577981651376, + "grad_norm": 0.2744608223438263, + "learning_rate": 0.0006, + "loss": 4.544595241546631, + "step": 669 + }, + { + "epoch": 9.307557885539538, + "grad_norm": 0.26698485016822815, + "learning_rate": 0.0006, + "loss": 4.506407260894775, + "step": 670 + }, + { + "epoch": 9.321537789427698, + "grad_norm": 0.2775942087173462, + "learning_rate": 0.0006, + "loss": 4.534619331359863, + "step": 671 + }, + { + "epoch": 9.33551769331586, + "grad_norm": 0.2421862781047821, + "learning_rate": 0.0006, + "loss": 4.523318290710449, + "step": 672 + }, + { + "epoch": 9.349497597204019, + "grad_norm": 0.2756497263908386, + "learning_rate": 0.0006, + "loss": 4.517561912536621, + "step": 673 + }, + { + "epoch": 9.36347750109218, + "grad_norm": 0.28845369815826416, + "learning_rate": 0.0006, + "loss": 4.530844688415527, + "step": 674 + }, + { + "epoch": 9.37745740498034, + "grad_norm": 0.32285866141319275, + "learning_rate": 0.0006, + "loss": 4.55369758605957, + "step": 675 + }, + { + "epoch": 9.391437308868502, + "grad_norm": 0.3726065754890442, + "learning_rate": 0.0006, + "loss": 4.524348258972168, + "step": 676 + }, + { + "epoch": 9.405417212756662, + "grad_norm": 0.39524078369140625, + "learning_rate": 0.0006, + "loss": 4.535778045654297, + "step": 677 + }, + { + "epoch": 9.419397116644824, + "grad_norm": 0.3859797716140747, + "learning_rate": 0.0006, + "loss": 4.538474082946777, + "step": 678 + }, + { + "epoch": 9.433377020532983, + "grad_norm": 0.36151406168937683, + "learning_rate": 0.0006, + "loss": 4.54434061050415, + "step": 679 + }, + { + "epoch": 9.447356924421145, + "grad_norm": 0.40345999598503113, + "learning_rate": 0.0006, + "loss": 4.532961845397949, + "step": 680 + }, + { + "epoch": 9.461336828309305, + "grad_norm": 0.38864144682884216, + "learning_rate": 0.0006, + "loss": 4.567630767822266, + "step": 681 + }, + { + "epoch": 9.475316732197467, + "grad_norm": 0.3816355764865875, + "learning_rate": 0.0006, + "loss": 4.535771369934082, + "step": 682 + }, + { + "epoch": 9.489296636085626, + "grad_norm": 0.38756558299064636, + "learning_rate": 0.0006, + "loss": 4.4971089363098145, + "step": 683 + }, + { + "epoch": 9.503276539973788, + "grad_norm": 0.4572933614253998, + "learning_rate": 0.0006, + "loss": 4.534860134124756, + "step": 684 + }, + { + "epoch": 9.517256443861948, + "grad_norm": 0.42368650436401367, + "learning_rate": 0.0006, + "loss": 4.542638301849365, + "step": 685 + }, + { + "epoch": 9.53123634775011, + "grad_norm": 0.36939486861228943, + "learning_rate": 0.0006, + "loss": 4.571430206298828, + "step": 686 + }, + { + "epoch": 9.54521625163827, + "grad_norm": 0.3900398313999176, + "learning_rate": 0.0006, + "loss": 4.544435501098633, + "step": 687 + }, + { + "epoch": 9.55919615552643, + "grad_norm": 0.37829288840293884, + "learning_rate": 0.0006, + "loss": 4.564268112182617, + "step": 688 + }, + { + "epoch": 9.57317605941459, + "grad_norm": 0.3553886115550995, + "learning_rate": 0.0006, + "loss": 4.5373430252075195, + "step": 689 + }, + { + "epoch": 9.587155963302752, + "grad_norm": 0.3613419532775879, + "learning_rate": 0.0006, + "loss": 4.559074401855469, + "step": 690 + }, + { + "epoch": 9.601135867190912, + "grad_norm": 0.32644546031951904, + "learning_rate": 0.0006, + "loss": 4.533667087554932, + "step": 691 + }, + { + "epoch": 9.615115771079074, + "grad_norm": 0.3264399468898773, + "learning_rate": 0.0006, + "loss": 4.508299350738525, + "step": 692 + }, + { + "epoch": 9.629095674967235, + "grad_norm": 0.3534526526927948, + "learning_rate": 0.0006, + "loss": 4.542442798614502, + "step": 693 + }, + { + "epoch": 9.643075578855395, + "grad_norm": 0.3333452343940735, + "learning_rate": 0.0006, + "loss": 4.497692584991455, + "step": 694 + }, + { + "epoch": 9.657055482743557, + "grad_norm": 0.3214292526245117, + "learning_rate": 0.0006, + "loss": 4.512363433837891, + "step": 695 + }, + { + "epoch": 9.671035386631717, + "grad_norm": 0.2805672585964203, + "learning_rate": 0.0006, + "loss": 4.496874809265137, + "step": 696 + }, + { + "epoch": 9.685015290519878, + "grad_norm": 0.2618725895881653, + "learning_rate": 0.0006, + "loss": 4.51375675201416, + "step": 697 + }, + { + "epoch": 9.698995194408038, + "grad_norm": 0.2556597888469696, + "learning_rate": 0.0006, + "loss": 4.512338638305664, + "step": 698 + }, + { + "epoch": 9.7129750982962, + "grad_norm": 0.23784305155277252, + "learning_rate": 0.0006, + "loss": 4.486503601074219, + "step": 699 + }, + { + "epoch": 9.72695500218436, + "grad_norm": 0.2240338921546936, + "learning_rate": 0.0006, + "loss": 4.486850261688232, + "step": 700 + }, + { + "epoch": 9.740934906072521, + "grad_norm": 0.24686725437641144, + "learning_rate": 0.0006, + "loss": 4.501359462738037, + "step": 701 + }, + { + "epoch": 9.754914809960681, + "grad_norm": 0.20819595456123352, + "learning_rate": 0.0006, + "loss": 4.495186805725098, + "step": 702 + }, + { + "epoch": 9.768894713848843, + "grad_norm": 0.21858957409858704, + "learning_rate": 0.0006, + "loss": 4.475093364715576, + "step": 703 + }, + { + "epoch": 9.782874617737003, + "grad_norm": 0.22676466405391693, + "learning_rate": 0.0006, + "loss": 4.4702534675598145, + "step": 704 + }, + { + "epoch": 9.796854521625164, + "grad_norm": 0.18317611515522003, + "learning_rate": 0.0006, + "loss": 4.471231937408447, + "step": 705 + }, + { + "epoch": 9.810834425513324, + "grad_norm": 0.20979148149490356, + "learning_rate": 0.0006, + "loss": 4.454103946685791, + "step": 706 + }, + { + "epoch": 9.824814329401486, + "grad_norm": 0.2146051526069641, + "learning_rate": 0.0006, + "loss": 4.505178928375244, + "step": 707 + }, + { + "epoch": 9.838794233289645, + "grad_norm": 0.2344852089881897, + "learning_rate": 0.0006, + "loss": 4.437984943389893, + "step": 708 + }, + { + "epoch": 9.852774137177807, + "grad_norm": 0.26532089710235596, + "learning_rate": 0.0006, + "loss": 4.477126121520996, + "step": 709 + }, + { + "epoch": 9.866754041065967, + "grad_norm": 0.2737913131713867, + "learning_rate": 0.0006, + "loss": 4.498421669006348, + "step": 710 + }, + { + "epoch": 9.880733944954128, + "grad_norm": 0.26651278138160706, + "learning_rate": 0.0006, + "loss": 4.480839729309082, + "step": 711 + }, + { + "epoch": 9.89471384884229, + "grad_norm": 0.26576584577560425, + "learning_rate": 0.0006, + "loss": 4.490936279296875, + "step": 712 + }, + { + "epoch": 9.90869375273045, + "grad_norm": 0.22483965754508972, + "learning_rate": 0.0006, + "loss": 4.477953910827637, + "step": 713 + }, + { + "epoch": 9.922673656618612, + "grad_norm": 0.23576045036315918, + "learning_rate": 0.0006, + "loss": 4.4731292724609375, + "step": 714 + }, + { + "epoch": 9.936653560506771, + "grad_norm": 0.2731139361858368, + "learning_rate": 0.0006, + "loss": 4.441622734069824, + "step": 715 + }, + { + "epoch": 9.950633464394933, + "grad_norm": 0.2677643597126007, + "learning_rate": 0.0006, + "loss": 4.49604606628418, + "step": 716 + }, + { + "epoch": 9.964613368283093, + "grad_norm": 0.21940895915031433, + "learning_rate": 0.0006, + "loss": 4.485573768615723, + "step": 717 + }, + { + "epoch": 9.978593272171254, + "grad_norm": 0.2060987651348114, + "learning_rate": 0.0006, + "loss": 4.482657432556152, + "step": 718 + }, + { + "epoch": 9.992573176059414, + "grad_norm": 0.22163978219032288, + "learning_rate": 0.0006, + "loss": 4.478459358215332, + "step": 719 + }, + { + "epoch": 10.0, + "grad_norm": 0.2505086064338684, + "learning_rate": 0.0006, + "loss": 4.4393510818481445, + "step": 720 + }, + { + "epoch": 10.0, + "eval_loss": 4.695676803588867, + "eval_runtime": 49.0751, + "eval_samples_per_second": 49.76, + "eval_steps_per_second": 3.118, + "step": 720 + }, + { + "epoch": 10.013979903888162, + "grad_norm": 0.23820190131664276, + "learning_rate": 0.0006, + "loss": 4.437685489654541, + "step": 721 + }, + { + "epoch": 10.027959807776321, + "grad_norm": 0.2220371812582016, + "learning_rate": 0.0006, + "loss": 4.449873924255371, + "step": 722 + }, + { + "epoch": 10.041939711664483, + "grad_norm": 0.20369848608970642, + "learning_rate": 0.0006, + "loss": 4.448882579803467, + "step": 723 + }, + { + "epoch": 10.055919615552643, + "grad_norm": 0.2360001504421234, + "learning_rate": 0.0006, + "loss": 4.399251937866211, + "step": 724 + }, + { + "epoch": 10.069899519440805, + "grad_norm": 0.23537491261959076, + "learning_rate": 0.0006, + "loss": 4.442960739135742, + "step": 725 + }, + { + "epoch": 10.083879423328964, + "grad_norm": 0.24433870613574982, + "learning_rate": 0.0006, + "loss": 4.44808292388916, + "step": 726 + }, + { + "epoch": 10.097859327217126, + "grad_norm": 0.3406696021556854, + "learning_rate": 0.0006, + "loss": 4.443426132202148, + "step": 727 + }, + { + "epoch": 10.111839231105286, + "grad_norm": 0.4102286100387573, + "learning_rate": 0.0006, + "loss": 4.424919605255127, + "step": 728 + }, + { + "epoch": 10.125819134993447, + "grad_norm": 0.36462604999542236, + "learning_rate": 0.0006, + "loss": 4.45366907119751, + "step": 729 + }, + { + "epoch": 10.139799038881607, + "grad_norm": 0.4374827444553375, + "learning_rate": 0.0006, + "loss": 4.415630340576172, + "step": 730 + }, + { + "epoch": 10.153778942769769, + "grad_norm": 0.45248138904571533, + "learning_rate": 0.0006, + "loss": 4.448849678039551, + "step": 731 + }, + { + "epoch": 10.167758846657929, + "grad_norm": 0.3806457221508026, + "learning_rate": 0.0006, + "loss": 4.443390846252441, + "step": 732 + }, + { + "epoch": 10.18173875054609, + "grad_norm": 0.3491523861885071, + "learning_rate": 0.0006, + "loss": 4.4648637771606445, + "step": 733 + }, + { + "epoch": 10.19571865443425, + "grad_norm": 0.3327210247516632, + "learning_rate": 0.0006, + "loss": 4.460919380187988, + "step": 734 + }, + { + "epoch": 10.209698558322412, + "grad_norm": 0.29772236943244934, + "learning_rate": 0.0006, + "loss": 4.45159912109375, + "step": 735 + }, + { + "epoch": 10.223678462210572, + "grad_norm": 0.33083397150039673, + "learning_rate": 0.0006, + "loss": 4.463382720947266, + "step": 736 + }, + { + "epoch": 10.237658366098733, + "grad_norm": 0.3930598795413971, + "learning_rate": 0.0006, + "loss": 4.434510231018066, + "step": 737 + }, + { + "epoch": 10.251638269986893, + "grad_norm": 0.4342896044254303, + "learning_rate": 0.0006, + "loss": 4.451700210571289, + "step": 738 + }, + { + "epoch": 10.265618173875055, + "grad_norm": 0.4544043242931366, + "learning_rate": 0.0006, + "loss": 4.437224388122559, + "step": 739 + }, + { + "epoch": 10.279598077763215, + "grad_norm": 0.4487038254737854, + "learning_rate": 0.0006, + "loss": 4.46157693862915, + "step": 740 + }, + { + "epoch": 10.293577981651376, + "grad_norm": 0.4420500695705414, + "learning_rate": 0.0006, + "loss": 4.399561405181885, + "step": 741 + }, + { + "epoch": 10.307557885539538, + "grad_norm": 0.4167289435863495, + "learning_rate": 0.0006, + "loss": 4.41792106628418, + "step": 742 + }, + { + "epoch": 10.321537789427698, + "grad_norm": 0.3186971843242645, + "learning_rate": 0.0006, + "loss": 4.435683250427246, + "step": 743 + }, + { + "epoch": 10.33551769331586, + "grad_norm": 0.3077184855937958, + "learning_rate": 0.0006, + "loss": 4.481947898864746, + "step": 744 + }, + { + "epoch": 10.349497597204019, + "grad_norm": 0.26811280846595764, + "learning_rate": 0.0006, + "loss": 4.4339447021484375, + "step": 745 + }, + { + "epoch": 10.36347750109218, + "grad_norm": 0.28448057174682617, + "learning_rate": 0.0006, + "loss": 4.441644668579102, + "step": 746 + }, + { + "epoch": 10.37745740498034, + "grad_norm": 0.30731502175331116, + "learning_rate": 0.0006, + "loss": 4.428773880004883, + "step": 747 + }, + { + "epoch": 10.391437308868502, + "grad_norm": 0.28036001324653625, + "learning_rate": 0.0006, + "loss": 4.4433135986328125, + "step": 748 + }, + { + "epoch": 10.405417212756662, + "grad_norm": 0.2882847189903259, + "learning_rate": 0.0006, + "loss": 4.433401107788086, + "step": 749 + }, + { + "epoch": 10.419397116644824, + "grad_norm": 0.23622776567935944, + "learning_rate": 0.0006, + "loss": 4.444611549377441, + "step": 750 + }, + { + "epoch": 10.433377020532983, + "grad_norm": 0.2306167632341385, + "learning_rate": 0.0006, + "loss": 4.397875785827637, + "step": 751 + }, + { + "epoch": 10.447356924421145, + "grad_norm": 0.22725090384483337, + "learning_rate": 0.0006, + "loss": 4.429759502410889, + "step": 752 + }, + { + "epoch": 10.461336828309305, + "grad_norm": 0.250709593296051, + "learning_rate": 0.0006, + "loss": 4.415618896484375, + "step": 753 + }, + { + "epoch": 10.475316732197467, + "grad_norm": 0.22341276705265045, + "learning_rate": 0.0006, + "loss": 4.389362335205078, + "step": 754 + }, + { + "epoch": 10.489296636085626, + "grad_norm": 0.22595296800136566, + "learning_rate": 0.0006, + "loss": 4.383584022521973, + "step": 755 + }, + { + "epoch": 10.503276539973788, + "grad_norm": 0.24277575314044952, + "learning_rate": 0.0006, + "loss": 4.403777599334717, + "step": 756 + }, + { + "epoch": 10.517256443861948, + "grad_norm": 0.2670708894729614, + "learning_rate": 0.0006, + "loss": 4.398499011993408, + "step": 757 + }, + { + "epoch": 10.53123634775011, + "grad_norm": 0.2640696167945862, + "learning_rate": 0.0006, + "loss": 4.426726818084717, + "step": 758 + }, + { + "epoch": 10.54521625163827, + "grad_norm": 0.2248653769493103, + "learning_rate": 0.0006, + "loss": 4.400103569030762, + "step": 759 + }, + { + "epoch": 10.55919615552643, + "grad_norm": 0.21466240286827087, + "learning_rate": 0.0006, + "loss": 4.404158592224121, + "step": 760 + }, + { + "epoch": 10.57317605941459, + "grad_norm": 0.236923947930336, + "learning_rate": 0.0006, + "loss": 4.37059211730957, + "step": 761 + }, + { + "epoch": 10.587155963302752, + "grad_norm": 0.2515387535095215, + "learning_rate": 0.0006, + "loss": 4.415055274963379, + "step": 762 + }, + { + "epoch": 10.601135867190912, + "grad_norm": 0.23461885750293732, + "learning_rate": 0.0006, + "loss": 4.375036239624023, + "step": 763 + }, + { + "epoch": 10.615115771079074, + "grad_norm": 0.20975761115550995, + "learning_rate": 0.0006, + "loss": 4.3903398513793945, + "step": 764 + }, + { + "epoch": 10.629095674967235, + "grad_norm": 0.19859997928142548, + "learning_rate": 0.0006, + "loss": 4.379380226135254, + "step": 765 + }, + { + "epoch": 10.643075578855395, + "grad_norm": 0.22310325503349304, + "learning_rate": 0.0006, + "loss": 4.382110595703125, + "step": 766 + }, + { + "epoch": 10.657055482743557, + "grad_norm": 0.23940646648406982, + "learning_rate": 0.0006, + "loss": 4.393403053283691, + "step": 767 + }, + { + "epoch": 10.671035386631717, + "grad_norm": 0.2230468988418579, + "learning_rate": 0.0006, + "loss": 4.391970634460449, + "step": 768 + }, + { + "epoch": 10.685015290519878, + "grad_norm": 0.18139775097370148, + "learning_rate": 0.0006, + "loss": 4.399993896484375, + "step": 769 + }, + { + "epoch": 10.698995194408038, + "grad_norm": 0.19936902821063995, + "learning_rate": 0.0006, + "loss": 4.373854160308838, + "step": 770 + }, + { + "epoch": 10.7129750982962, + "grad_norm": 0.22132465243339539, + "learning_rate": 0.0006, + "loss": 4.377530097961426, + "step": 771 + }, + { + "epoch": 10.72695500218436, + "grad_norm": 0.24254944920539856, + "learning_rate": 0.0006, + "loss": 4.398683547973633, + "step": 772 + }, + { + "epoch": 10.740934906072521, + "grad_norm": 0.2666397988796234, + "learning_rate": 0.0006, + "loss": 4.3879899978637695, + "step": 773 + }, + { + "epoch": 10.754914809960681, + "grad_norm": 0.24728631973266602, + "learning_rate": 0.0006, + "loss": 4.356976509094238, + "step": 774 + }, + { + "epoch": 10.768894713848843, + "grad_norm": 0.2612453103065491, + "learning_rate": 0.0006, + "loss": 4.391525745391846, + "step": 775 + }, + { + "epoch": 10.782874617737003, + "grad_norm": 0.24060510098934174, + "learning_rate": 0.0006, + "loss": 4.376985549926758, + "step": 776 + }, + { + "epoch": 10.796854521625164, + "grad_norm": 0.22708238661289215, + "learning_rate": 0.0006, + "loss": 4.368545055389404, + "step": 777 + }, + { + "epoch": 10.810834425513324, + "grad_norm": 0.26931291818618774, + "learning_rate": 0.0006, + "loss": 4.369227409362793, + "step": 778 + }, + { + "epoch": 10.824814329401486, + "grad_norm": 0.265288770198822, + "learning_rate": 0.0006, + "loss": 4.378131866455078, + "step": 779 + }, + { + "epoch": 10.838794233289645, + "grad_norm": 0.3015305697917938, + "learning_rate": 0.0006, + "loss": 4.376267910003662, + "step": 780 + }, + { + "epoch": 10.852774137177807, + "grad_norm": 0.3345746099948883, + "learning_rate": 0.0006, + "loss": 4.3751420974731445, + "step": 781 + }, + { + "epoch": 10.866754041065967, + "grad_norm": 0.32446005940437317, + "learning_rate": 0.0006, + "loss": 4.370899200439453, + "step": 782 + }, + { + "epoch": 10.880733944954128, + "grad_norm": 0.27070069313049316, + "learning_rate": 0.0006, + "loss": 4.391958236694336, + "step": 783 + }, + { + "epoch": 10.89471384884229, + "grad_norm": 0.25584667921066284, + "learning_rate": 0.0006, + "loss": 4.407493591308594, + "step": 784 + }, + { + "epoch": 10.90869375273045, + "grad_norm": 0.2710244655609131, + "learning_rate": 0.0006, + "loss": 4.374400615692139, + "step": 785 + }, + { + "epoch": 10.922673656618612, + "grad_norm": 0.32413622736930847, + "learning_rate": 0.0006, + "loss": 4.379607200622559, + "step": 786 + }, + { + "epoch": 10.936653560506771, + "grad_norm": 0.3253782391548157, + "learning_rate": 0.0006, + "loss": 4.376441955566406, + "step": 787 + }, + { + "epoch": 10.950633464394933, + "grad_norm": 0.30534613132476807, + "learning_rate": 0.0006, + "loss": 4.382739067077637, + "step": 788 + }, + { + "epoch": 10.964613368283093, + "grad_norm": 0.35726621747016907, + "learning_rate": 0.0006, + "loss": 4.3765869140625, + "step": 789 + }, + { + "epoch": 10.978593272171254, + "grad_norm": 0.32763028144836426, + "learning_rate": 0.0006, + "loss": 4.391537189483643, + "step": 790 + }, + { + "epoch": 10.992573176059414, + "grad_norm": 0.31811195611953735, + "learning_rate": 0.0006, + "loss": 4.371829032897949, + "step": 791 + }, + { + "epoch": 11.0, + "grad_norm": 0.37317267060279846, + "learning_rate": 0.0006, + "loss": 4.381916522979736, + "step": 792 + }, + { + "epoch": 11.0, + "eval_loss": 4.588687896728516, + "eval_runtime": 44.8041, + "eval_samples_per_second": 54.504, + "eval_steps_per_second": 3.415, + "step": 792 + }, + { + "epoch": 11.013979903888162, + "grad_norm": 0.37882938981056213, + "learning_rate": 0.0006, + "loss": 4.3463640213012695, + "step": 793 + }, + { + "epoch": 11.027959807776321, + "grad_norm": 0.34719496965408325, + "learning_rate": 0.0006, + "loss": 4.329861640930176, + "step": 794 + }, + { + "epoch": 11.041939711664483, + "grad_norm": 0.36161214113235474, + "learning_rate": 0.0006, + "loss": 4.3287835121154785, + "step": 795 + }, + { + "epoch": 11.055919615552643, + "grad_norm": 0.3743649125099182, + "learning_rate": 0.0006, + "loss": 4.334251403808594, + "step": 796 + }, + { + "epoch": 11.069899519440805, + "grad_norm": 0.32266443967819214, + "learning_rate": 0.0006, + "loss": 4.364782810211182, + "step": 797 + }, + { + "epoch": 11.083879423328964, + "grad_norm": 0.27460047602653503, + "learning_rate": 0.0006, + "loss": 4.348380088806152, + "step": 798 + }, + { + "epoch": 11.097859327217126, + "grad_norm": 0.30498892068862915, + "learning_rate": 0.0006, + "loss": 4.347856521606445, + "step": 799 + }, + { + "epoch": 11.111839231105286, + "grad_norm": 0.29740771651268005, + "learning_rate": 0.0006, + "loss": 4.343471050262451, + "step": 800 + }, + { + "epoch": 11.125819134993447, + "grad_norm": 0.3004681169986725, + "learning_rate": 0.0006, + "loss": 4.337590217590332, + "step": 801 + }, + { + "epoch": 11.139799038881607, + "grad_norm": 0.3000192642211914, + "learning_rate": 0.0006, + "loss": 4.349949836730957, + "step": 802 + }, + { + "epoch": 11.153778942769769, + "grad_norm": 0.27461889386177063, + "learning_rate": 0.0006, + "loss": 4.338934898376465, + "step": 803 + }, + { + "epoch": 11.167758846657929, + "grad_norm": 0.2856169641017914, + "learning_rate": 0.0006, + "loss": 4.320754051208496, + "step": 804 + }, + { + "epoch": 11.18173875054609, + "grad_norm": 0.29822713136672974, + "learning_rate": 0.0006, + "loss": 4.357949733734131, + "step": 805 + }, + { + "epoch": 11.19571865443425, + "grad_norm": 0.34061339497566223, + "learning_rate": 0.0006, + "loss": 4.327282905578613, + "step": 806 + }, + { + "epoch": 11.209698558322412, + "grad_norm": 0.3379063010215759, + "learning_rate": 0.0006, + "loss": 4.355471611022949, + "step": 807 + }, + { + "epoch": 11.223678462210572, + "grad_norm": 0.2859216630458832, + "learning_rate": 0.0006, + "loss": 4.352344989776611, + "step": 808 + }, + { + "epoch": 11.237658366098733, + "grad_norm": 0.29522669315338135, + "learning_rate": 0.0006, + "loss": 4.349186897277832, + "step": 809 + }, + { + "epoch": 11.251638269986893, + "grad_norm": 0.273798406124115, + "learning_rate": 0.0006, + "loss": 4.342379570007324, + "step": 810 + }, + { + "epoch": 11.265618173875055, + "grad_norm": 0.25298982858657837, + "learning_rate": 0.0006, + "loss": 4.358835220336914, + "step": 811 + }, + { + "epoch": 11.279598077763215, + "grad_norm": 0.2170463651418686, + "learning_rate": 0.0006, + "loss": 4.3422017097473145, + "step": 812 + }, + { + "epoch": 11.293577981651376, + "grad_norm": 0.24855731427669525, + "learning_rate": 0.0006, + "loss": 4.322849750518799, + "step": 813 + }, + { + "epoch": 11.307557885539538, + "grad_norm": 0.22564345598220825, + "learning_rate": 0.0006, + "loss": 4.316864967346191, + "step": 814 + }, + { + "epoch": 11.321537789427698, + "grad_norm": 0.21532197296619415, + "learning_rate": 0.0006, + "loss": 4.326743125915527, + "step": 815 + }, + { + "epoch": 11.33551769331586, + "grad_norm": 0.20514146983623505, + "learning_rate": 0.0006, + "loss": 4.326531887054443, + "step": 816 + }, + { + "epoch": 11.349497597204019, + "grad_norm": 0.19035090506076813, + "learning_rate": 0.0006, + "loss": 4.318154335021973, + "step": 817 + }, + { + "epoch": 11.36347750109218, + "grad_norm": 0.17889662086963654, + "learning_rate": 0.0006, + "loss": 4.35410213470459, + "step": 818 + }, + { + "epoch": 11.37745740498034, + "grad_norm": 0.20564863085746765, + "learning_rate": 0.0006, + "loss": 4.350226879119873, + "step": 819 + }, + { + "epoch": 11.391437308868502, + "grad_norm": 0.2412603348493576, + "learning_rate": 0.0006, + "loss": 4.325137138366699, + "step": 820 + }, + { + "epoch": 11.405417212756662, + "grad_norm": 0.2603496015071869, + "learning_rate": 0.0006, + "loss": 4.335752487182617, + "step": 821 + }, + { + "epoch": 11.419397116644824, + "grad_norm": 0.2968119978904724, + "learning_rate": 0.0006, + "loss": 4.3317670822143555, + "step": 822 + }, + { + "epoch": 11.433377020532983, + "grad_norm": 0.3280937969684601, + "learning_rate": 0.0006, + "loss": 4.322279453277588, + "step": 823 + }, + { + "epoch": 11.447356924421145, + "grad_norm": 0.3598847985267639, + "learning_rate": 0.0006, + "loss": 4.312255859375, + "step": 824 + }, + { + "epoch": 11.461336828309305, + "grad_norm": 0.3996485471725464, + "learning_rate": 0.0006, + "loss": 4.327103614807129, + "step": 825 + }, + { + "epoch": 11.475316732197467, + "grad_norm": 0.4352041780948639, + "learning_rate": 0.0006, + "loss": 4.368639945983887, + "step": 826 + }, + { + "epoch": 11.489296636085626, + "grad_norm": 0.4451918601989746, + "learning_rate": 0.0006, + "loss": 4.335113048553467, + "step": 827 + }, + { + "epoch": 11.503276539973788, + "grad_norm": 0.4403933584690094, + "learning_rate": 0.0006, + "loss": 4.369889259338379, + "step": 828 + }, + { + "epoch": 11.517256443861948, + "grad_norm": 0.34862443804740906, + "learning_rate": 0.0006, + "loss": 4.316292762756348, + "step": 829 + }, + { + "epoch": 11.53123634775011, + "grad_norm": 0.3240634500980377, + "learning_rate": 0.0006, + "loss": 4.328078746795654, + "step": 830 + }, + { + "epoch": 11.54521625163827, + "grad_norm": 0.2445751428604126, + "learning_rate": 0.0006, + "loss": 4.291940689086914, + "step": 831 + }, + { + "epoch": 11.55919615552643, + "grad_norm": 0.24376554787158966, + "learning_rate": 0.0006, + "loss": 4.339217662811279, + "step": 832 + }, + { + "epoch": 11.57317605941459, + "grad_norm": 0.22419725358486176, + "learning_rate": 0.0006, + "loss": 4.2887468338012695, + "step": 833 + }, + { + "epoch": 11.587155963302752, + "grad_norm": 0.22318261861801147, + "learning_rate": 0.0006, + "loss": 4.298492908477783, + "step": 834 + }, + { + "epoch": 11.601135867190912, + "grad_norm": 0.2357342392206192, + "learning_rate": 0.0006, + "loss": 4.328692436218262, + "step": 835 + }, + { + "epoch": 11.615115771079074, + "grad_norm": 0.25450602173805237, + "learning_rate": 0.0006, + "loss": 4.360058784484863, + "step": 836 + }, + { + "epoch": 11.629095674967235, + "grad_norm": 0.24540965259075165, + "learning_rate": 0.0006, + "loss": 4.311890602111816, + "step": 837 + }, + { + "epoch": 11.643075578855395, + "grad_norm": 0.2535638213157654, + "learning_rate": 0.0006, + "loss": 4.327730178833008, + "step": 838 + }, + { + "epoch": 11.657055482743557, + "grad_norm": 0.23063556849956512, + "learning_rate": 0.0006, + "loss": 4.303299903869629, + "step": 839 + }, + { + "epoch": 11.671035386631717, + "grad_norm": 0.21813632547855377, + "learning_rate": 0.0006, + "loss": 4.315352439880371, + "step": 840 + }, + { + "epoch": 11.685015290519878, + "grad_norm": 0.2170359194278717, + "learning_rate": 0.0006, + "loss": 4.278632164001465, + "step": 841 + }, + { + "epoch": 11.698995194408038, + "grad_norm": 0.21059377491474152, + "learning_rate": 0.0006, + "loss": 4.306049346923828, + "step": 842 + }, + { + "epoch": 11.7129750982962, + "grad_norm": 0.19872888922691345, + "learning_rate": 0.0006, + "loss": 4.3091535568237305, + "step": 843 + }, + { + "epoch": 11.72695500218436, + "grad_norm": 0.20059862732887268, + "learning_rate": 0.0006, + "loss": 4.2884063720703125, + "step": 844 + }, + { + "epoch": 11.740934906072521, + "grad_norm": 0.19952483475208282, + "learning_rate": 0.0006, + "loss": 4.293610572814941, + "step": 845 + }, + { + "epoch": 11.754914809960681, + "grad_norm": 0.19794537127017975, + "learning_rate": 0.0006, + "loss": 4.288822174072266, + "step": 846 + }, + { + "epoch": 11.768894713848843, + "grad_norm": 0.213914692401886, + "learning_rate": 0.0006, + "loss": 4.320849418640137, + "step": 847 + }, + { + "epoch": 11.782874617737003, + "grad_norm": 0.18500955402851105, + "learning_rate": 0.0006, + "loss": 4.29300594329834, + "step": 848 + }, + { + "epoch": 11.796854521625164, + "grad_norm": 0.19446656107902527, + "learning_rate": 0.0006, + "loss": 4.3079352378845215, + "step": 849 + }, + { + "epoch": 11.810834425513324, + "grad_norm": 0.22191768884658813, + "learning_rate": 0.0006, + "loss": 4.295967102050781, + "step": 850 + }, + { + "epoch": 11.824814329401486, + "grad_norm": 0.20748084783554077, + "learning_rate": 0.0006, + "loss": 4.332365989685059, + "step": 851 + }, + { + "epoch": 11.838794233289645, + "grad_norm": 0.20993955433368683, + "learning_rate": 0.0006, + "loss": 4.294618129730225, + "step": 852 + }, + { + "epoch": 11.852774137177807, + "grad_norm": 0.23506952822208405, + "learning_rate": 0.0006, + "loss": 4.313426971435547, + "step": 853 + }, + { + "epoch": 11.866754041065967, + "grad_norm": 0.2379443347454071, + "learning_rate": 0.0006, + "loss": 4.297664642333984, + "step": 854 + }, + { + "epoch": 11.880733944954128, + "grad_norm": 0.2127852737903595, + "learning_rate": 0.0006, + "loss": 4.2807698249816895, + "step": 855 + }, + { + "epoch": 11.89471384884229, + "grad_norm": 0.2125532180070877, + "learning_rate": 0.0006, + "loss": 4.310990333557129, + "step": 856 + }, + { + "epoch": 11.90869375273045, + "grad_norm": 0.1996062994003296, + "learning_rate": 0.0006, + "loss": 4.253237724304199, + "step": 857 + }, + { + "epoch": 11.922673656618612, + "grad_norm": 0.20747603476047516, + "learning_rate": 0.0006, + "loss": 4.294193267822266, + "step": 858 + }, + { + "epoch": 11.936653560506771, + "grad_norm": 0.24082425236701965, + "learning_rate": 0.0006, + "loss": 4.269967079162598, + "step": 859 + }, + { + "epoch": 11.950633464394933, + "grad_norm": 0.28993573784828186, + "learning_rate": 0.0006, + "loss": 4.294550895690918, + "step": 860 + }, + { + "epoch": 11.964613368283093, + "grad_norm": 0.29576948285102844, + "learning_rate": 0.0006, + "loss": 4.3188252449035645, + "step": 861 + }, + { + "epoch": 11.978593272171254, + "grad_norm": 0.2754935026168823, + "learning_rate": 0.0006, + "loss": 4.312817573547363, + "step": 862 + }, + { + "epoch": 11.992573176059414, + "grad_norm": 0.3062523305416107, + "learning_rate": 0.0006, + "loss": 4.288214683532715, + "step": 863 + }, + { + "epoch": 12.0, + "grad_norm": 0.3367644250392914, + "learning_rate": 0.0006, + "loss": 4.314888954162598, + "step": 864 + }, + { + "epoch": 12.0, + "eval_loss": 4.516861438751221, + "eval_runtime": 44.2584, + "eval_samples_per_second": 55.176, + "eval_steps_per_second": 3.457, + "step": 864 + }, + { + "epoch": 12.013979903888162, + "grad_norm": 0.2976512014865875, + "learning_rate": 0.0006, + "loss": 4.278797149658203, + "step": 865 + }, + { + "epoch": 12.027959807776321, + "grad_norm": 0.32217127084732056, + "learning_rate": 0.0006, + "loss": 4.2823615074157715, + "step": 866 + }, + { + "epoch": 12.041939711664483, + "grad_norm": 0.31538400053977966, + "learning_rate": 0.0006, + "loss": 4.252805709838867, + "step": 867 + }, + { + "epoch": 12.055919615552643, + "grad_norm": 0.3501375913619995, + "learning_rate": 0.0006, + "loss": 4.276501655578613, + "step": 868 + }, + { + "epoch": 12.069899519440805, + "grad_norm": 0.3452056646347046, + "learning_rate": 0.0006, + "loss": 4.275739669799805, + "step": 869 + }, + { + "epoch": 12.083879423328964, + "grad_norm": 0.36963316798210144, + "learning_rate": 0.0006, + "loss": 4.3215227127075195, + "step": 870 + }, + { + "epoch": 12.097859327217126, + "grad_norm": 0.41605016589164734, + "learning_rate": 0.0006, + "loss": 4.28739595413208, + "step": 871 + }, + { + "epoch": 12.111839231105286, + "grad_norm": 0.37700653076171875, + "learning_rate": 0.0006, + "loss": 4.291154861450195, + "step": 872 + }, + { + "epoch": 12.125819134993447, + "grad_norm": 0.3194253444671631, + "learning_rate": 0.0006, + "loss": 4.259326934814453, + "step": 873 + }, + { + "epoch": 12.139799038881607, + "grad_norm": 0.31770631670951843, + "learning_rate": 0.0006, + "loss": 4.270082473754883, + "step": 874 + }, + { + "epoch": 12.153778942769769, + "grad_norm": 0.3748120069503784, + "learning_rate": 0.0006, + "loss": 4.2727274894714355, + "step": 875 + }, + { + "epoch": 12.167758846657929, + "grad_norm": 0.3821348547935486, + "learning_rate": 0.0006, + "loss": 4.2848286628723145, + "step": 876 + }, + { + "epoch": 12.18173875054609, + "grad_norm": 0.31894201040267944, + "learning_rate": 0.0006, + "loss": 4.289551258087158, + "step": 877 + }, + { + "epoch": 12.19571865443425, + "grad_norm": 0.2695826292037964, + "learning_rate": 0.0006, + "loss": 4.2797346115112305, + "step": 878 + }, + { + "epoch": 12.209698558322412, + "grad_norm": 0.23966269195079803, + "learning_rate": 0.0006, + "loss": 4.24021577835083, + "step": 879 + }, + { + "epoch": 12.223678462210572, + "grad_norm": 0.24342599511146545, + "learning_rate": 0.0006, + "loss": 4.277721881866455, + "step": 880 + }, + { + "epoch": 12.237658366098733, + "grad_norm": 0.2522958815097809, + "learning_rate": 0.0006, + "loss": 4.263946533203125, + "step": 881 + }, + { + "epoch": 12.251638269986893, + "grad_norm": 0.2708299458026886, + "learning_rate": 0.0006, + "loss": 4.274540901184082, + "step": 882 + }, + { + "epoch": 12.265618173875055, + "grad_norm": 0.2978788912296295, + "learning_rate": 0.0006, + "loss": 4.2674970626831055, + "step": 883 + }, + { + "epoch": 12.279598077763215, + "grad_norm": 0.2898774743080139, + "learning_rate": 0.0006, + "loss": 4.235060691833496, + "step": 884 + }, + { + "epoch": 12.293577981651376, + "grad_norm": 0.27941837906837463, + "learning_rate": 0.0006, + "loss": 4.284140586853027, + "step": 885 + }, + { + "epoch": 12.307557885539538, + "grad_norm": 0.25050559639930725, + "learning_rate": 0.0006, + "loss": 4.270134925842285, + "step": 886 + }, + { + "epoch": 12.321537789427698, + "grad_norm": 0.21867156028747559, + "learning_rate": 0.0006, + "loss": 4.241571426391602, + "step": 887 + }, + { + "epoch": 12.33551769331586, + "grad_norm": 0.24735847115516663, + "learning_rate": 0.0006, + "loss": 4.253087997436523, + "step": 888 + }, + { + "epoch": 12.349497597204019, + "grad_norm": 0.23069104552268982, + "learning_rate": 0.0006, + "loss": 4.258606910705566, + "step": 889 + }, + { + "epoch": 12.36347750109218, + "grad_norm": 0.2594369947910309, + "learning_rate": 0.0006, + "loss": 4.307351112365723, + "step": 890 + }, + { + "epoch": 12.37745740498034, + "grad_norm": 0.25349098443984985, + "learning_rate": 0.0006, + "loss": 4.264268398284912, + "step": 891 + }, + { + "epoch": 12.391437308868502, + "grad_norm": 0.2550840675830841, + "learning_rate": 0.0006, + "loss": 4.247092247009277, + "step": 892 + }, + { + "epoch": 12.405417212756662, + "grad_norm": 0.2107602059841156, + "learning_rate": 0.0006, + "loss": 4.240527153015137, + "step": 893 + }, + { + "epoch": 12.419397116644824, + "grad_norm": 0.2025548368692398, + "learning_rate": 0.0006, + "loss": 4.244686126708984, + "step": 894 + }, + { + "epoch": 12.433377020532983, + "grad_norm": 0.22061701118946075, + "learning_rate": 0.0006, + "loss": 4.233231544494629, + "step": 895 + }, + { + "epoch": 12.447356924421145, + "grad_norm": 0.19503085315227509, + "learning_rate": 0.0006, + "loss": 4.23851203918457, + "step": 896 + }, + { + "epoch": 12.461336828309305, + "grad_norm": 0.19313643872737885, + "learning_rate": 0.0006, + "loss": 4.190886497497559, + "step": 897 + }, + { + "epoch": 12.475316732197467, + "grad_norm": 0.21094176173210144, + "learning_rate": 0.0006, + "loss": 4.277888298034668, + "step": 898 + }, + { + "epoch": 12.489296636085626, + "grad_norm": 0.1980651170015335, + "learning_rate": 0.0006, + "loss": 4.251066207885742, + "step": 899 + }, + { + "epoch": 12.503276539973788, + "grad_norm": 0.179737389087677, + "learning_rate": 0.0006, + "loss": 4.194703102111816, + "step": 900 + }, + { + "epoch": 12.517256443861948, + "grad_norm": 0.19069281220436096, + "learning_rate": 0.0006, + "loss": 4.242412567138672, + "step": 901 + }, + { + "epoch": 12.53123634775011, + "grad_norm": 0.191154345870018, + "learning_rate": 0.0006, + "loss": 4.2432780265808105, + "step": 902 + }, + { + "epoch": 12.54521625163827, + "grad_norm": 0.19760103523731232, + "learning_rate": 0.0006, + "loss": 4.23294734954834, + "step": 903 + }, + { + "epoch": 12.55919615552643, + "grad_norm": 0.19982324540615082, + "learning_rate": 0.0006, + "loss": 4.249764442443848, + "step": 904 + }, + { + "epoch": 12.57317605941459, + "grad_norm": 0.1986108422279358, + "learning_rate": 0.0006, + "loss": 4.213435649871826, + "step": 905 + }, + { + "epoch": 12.587155963302752, + "grad_norm": 0.19727319478988647, + "learning_rate": 0.0006, + "loss": 4.247962951660156, + "step": 906 + }, + { + "epoch": 12.601135867190912, + "grad_norm": 0.23404482007026672, + "learning_rate": 0.0006, + "loss": 4.237396240234375, + "step": 907 + }, + { + "epoch": 12.615115771079074, + "grad_norm": 0.21136441826820374, + "learning_rate": 0.0006, + "loss": 4.236040115356445, + "step": 908 + }, + { + "epoch": 12.629095674967235, + "grad_norm": 0.2209048718214035, + "learning_rate": 0.0006, + "loss": 4.234212875366211, + "step": 909 + }, + { + "epoch": 12.643075578855395, + "grad_norm": 0.22120307385921478, + "learning_rate": 0.0006, + "loss": 4.2711076736450195, + "step": 910 + }, + { + "epoch": 12.657055482743557, + "grad_norm": 0.22733066976070404, + "learning_rate": 0.0006, + "loss": 4.231651306152344, + "step": 911 + }, + { + "epoch": 12.671035386631717, + "grad_norm": 0.2435602843761444, + "learning_rate": 0.0006, + "loss": 4.249372482299805, + "step": 912 + }, + { + "epoch": 12.685015290519878, + "grad_norm": 0.28881654143333435, + "learning_rate": 0.0006, + "loss": 4.2626051902771, + "step": 913 + }, + { + "epoch": 12.698995194408038, + "grad_norm": 0.3211199641227722, + "learning_rate": 0.0006, + "loss": 4.254220485687256, + "step": 914 + }, + { + "epoch": 12.7129750982962, + "grad_norm": 0.3118100166320801, + "learning_rate": 0.0006, + "loss": 4.233747959136963, + "step": 915 + }, + { + "epoch": 12.72695500218436, + "grad_norm": 0.33411866426467896, + "learning_rate": 0.0006, + "loss": 4.270386219024658, + "step": 916 + }, + { + "epoch": 12.740934906072521, + "grad_norm": 0.2968253195285797, + "learning_rate": 0.0006, + "loss": 4.242254257202148, + "step": 917 + }, + { + "epoch": 12.754914809960681, + "grad_norm": 0.2959132194519043, + "learning_rate": 0.0006, + "loss": 4.232100486755371, + "step": 918 + }, + { + "epoch": 12.768894713848843, + "grad_norm": 0.2729283273220062, + "learning_rate": 0.0006, + "loss": 4.233869552612305, + "step": 919 + }, + { + "epoch": 12.782874617737003, + "grad_norm": 0.2669033408164978, + "learning_rate": 0.0006, + "loss": 4.261008262634277, + "step": 920 + }, + { + "epoch": 12.796854521625164, + "grad_norm": 0.2738507091999054, + "learning_rate": 0.0006, + "loss": 4.2286763191223145, + "step": 921 + }, + { + "epoch": 12.810834425513324, + "grad_norm": 0.29105183482170105, + "learning_rate": 0.0006, + "loss": 4.281410217285156, + "step": 922 + }, + { + "epoch": 12.824814329401486, + "grad_norm": 0.31330201029777527, + "learning_rate": 0.0006, + "loss": 4.264181613922119, + "step": 923 + }, + { + "epoch": 12.838794233289645, + "grad_norm": 0.31324025988578796, + "learning_rate": 0.0006, + "loss": 4.250385284423828, + "step": 924 + }, + { + "epoch": 12.852774137177807, + "grad_norm": 0.2727925181388855, + "learning_rate": 0.0006, + "loss": 4.24821138381958, + "step": 925 + }, + { + "epoch": 12.866754041065967, + "grad_norm": 0.27350082993507385, + "learning_rate": 0.0006, + "loss": 4.230215072631836, + "step": 926 + }, + { + "epoch": 12.880733944954128, + "grad_norm": 0.2269950658082962, + "learning_rate": 0.0006, + "loss": 4.210305213928223, + "step": 927 + }, + { + "epoch": 12.89471384884229, + "grad_norm": 0.24667619168758392, + "learning_rate": 0.0006, + "loss": 4.239969253540039, + "step": 928 + }, + { + "epoch": 12.90869375273045, + "grad_norm": 0.22510501742362976, + "learning_rate": 0.0006, + "loss": 4.192750930786133, + "step": 929 + }, + { + "epoch": 12.922673656618612, + "grad_norm": 0.22887611389160156, + "learning_rate": 0.0006, + "loss": 4.264463424682617, + "step": 930 + }, + { + "epoch": 12.936653560506771, + "grad_norm": 0.22195978462696075, + "learning_rate": 0.0006, + "loss": 4.205256938934326, + "step": 931 + }, + { + "epoch": 12.950633464394933, + "grad_norm": 0.23184578120708466, + "learning_rate": 0.0006, + "loss": 4.214578628540039, + "step": 932 + }, + { + "epoch": 12.964613368283093, + "grad_norm": 0.2186676561832428, + "learning_rate": 0.0006, + "loss": 4.227711200714111, + "step": 933 + }, + { + "epoch": 12.978593272171254, + "grad_norm": 0.2160426527261734, + "learning_rate": 0.0006, + "loss": 4.221796989440918, + "step": 934 + }, + { + "epoch": 12.992573176059414, + "grad_norm": 0.21562792360782623, + "learning_rate": 0.0006, + "loss": 4.21957540512085, + "step": 935 + }, + { + "epoch": 13.0, + "grad_norm": 0.22538058459758759, + "learning_rate": 0.0006, + "loss": 4.2353973388671875, + "step": 936 + }, + { + "epoch": 13.0, + "eval_loss": 4.426600933074951, + "eval_runtime": 44.8138, + "eval_samples_per_second": 54.492, + "eval_steps_per_second": 3.414, + "step": 936 + }, + { + "epoch": 13.013979903888162, + "grad_norm": 0.24888049066066742, + "learning_rate": 0.0006, + "loss": 4.18648624420166, + "step": 937 + }, + { + "epoch": 13.027959807776321, + "grad_norm": 0.28330180048942566, + "learning_rate": 0.0006, + "loss": 4.188892364501953, + "step": 938 + }, + { + "epoch": 13.041939711664483, + "grad_norm": 0.31152188777923584, + "learning_rate": 0.0006, + "loss": 4.2053399085998535, + "step": 939 + }, + { + "epoch": 13.055919615552643, + "grad_norm": 0.2842433452606201, + "learning_rate": 0.0006, + "loss": 4.191902160644531, + "step": 940 + }, + { + "epoch": 13.069899519440805, + "grad_norm": 0.23664532601833344, + "learning_rate": 0.0006, + "loss": 4.1831865310668945, + "step": 941 + }, + { + "epoch": 13.083879423328964, + "grad_norm": 0.24204140901565552, + "learning_rate": 0.0006, + "loss": 4.202641487121582, + "step": 942 + }, + { + "epoch": 13.097859327217126, + "grad_norm": 0.235311359167099, + "learning_rate": 0.0006, + "loss": 4.174511909484863, + "step": 943 + }, + { + "epoch": 13.111839231105286, + "grad_norm": 0.27127715945243835, + "learning_rate": 0.0006, + "loss": 4.201844215393066, + "step": 944 + }, + { + "epoch": 13.125819134993447, + "grad_norm": 0.2722373604774475, + "learning_rate": 0.0006, + "loss": 4.157383918762207, + "step": 945 + }, + { + "epoch": 13.139799038881607, + "grad_norm": 0.25446659326553345, + "learning_rate": 0.0006, + "loss": 4.221236228942871, + "step": 946 + }, + { + "epoch": 13.153778942769769, + "grad_norm": 0.273017019033432, + "learning_rate": 0.0006, + "loss": 4.195512771606445, + "step": 947 + }, + { + "epoch": 13.167758846657929, + "grad_norm": 0.24766312539577484, + "learning_rate": 0.0006, + "loss": 4.220959663391113, + "step": 948 + }, + { + "epoch": 13.18173875054609, + "grad_norm": 0.24636317789554596, + "learning_rate": 0.0006, + "loss": 4.214302062988281, + "step": 949 + }, + { + "epoch": 13.19571865443425, + "grad_norm": 0.3177756667137146, + "learning_rate": 0.0006, + "loss": 4.213500022888184, + "step": 950 + }, + { + "epoch": 13.209698558322412, + "grad_norm": 0.44579195976257324, + "learning_rate": 0.0006, + "loss": 4.227644920349121, + "step": 951 + }, + { + "epoch": 13.223678462210572, + "grad_norm": 0.4217414855957031, + "learning_rate": 0.0006, + "loss": 4.180937767028809, + "step": 952 + }, + { + "epoch": 13.237658366098733, + "grad_norm": 0.30148059129714966, + "learning_rate": 0.0006, + "loss": 4.207760810852051, + "step": 953 + }, + { + "epoch": 13.251638269986893, + "grad_norm": 0.3192492127418518, + "learning_rate": 0.0006, + "loss": 4.197999000549316, + "step": 954 + }, + { + "epoch": 13.265618173875055, + "grad_norm": 0.37334588170051575, + "learning_rate": 0.0006, + "loss": 4.208001136779785, + "step": 955 + }, + { + "epoch": 13.279598077763215, + "grad_norm": 0.4059637784957886, + "learning_rate": 0.0006, + "loss": 4.211322784423828, + "step": 956 + }, + { + "epoch": 13.293577981651376, + "grad_norm": 0.3389599323272705, + "learning_rate": 0.0006, + "loss": 4.204404354095459, + "step": 957 + }, + { + "epoch": 13.307557885539538, + "grad_norm": 0.2675766050815582, + "learning_rate": 0.0006, + "loss": 4.245941162109375, + "step": 958 + }, + { + "epoch": 13.321537789427698, + "grad_norm": 0.2730264365673065, + "learning_rate": 0.0006, + "loss": 4.2221221923828125, + "step": 959 + }, + { + "epoch": 13.33551769331586, + "grad_norm": 0.26458224654197693, + "learning_rate": 0.0006, + "loss": 4.205596923828125, + "step": 960 + }, + { + "epoch": 13.349497597204019, + "grad_norm": 0.2872551381587982, + "learning_rate": 0.0006, + "loss": 4.196977615356445, + "step": 961 + }, + { + "epoch": 13.36347750109218, + "grad_norm": 0.2954796850681305, + "learning_rate": 0.0006, + "loss": 4.202796936035156, + "step": 962 + }, + { + "epoch": 13.37745740498034, + "grad_norm": 0.2619425654411316, + "learning_rate": 0.0006, + "loss": 4.196845054626465, + "step": 963 + }, + { + "epoch": 13.391437308868502, + "grad_norm": 0.30088478326797485, + "learning_rate": 0.0006, + "loss": 4.219697952270508, + "step": 964 + }, + { + "epoch": 13.405417212756662, + "grad_norm": 0.30388689041137695, + "learning_rate": 0.0006, + "loss": 4.187566757202148, + "step": 965 + }, + { + "epoch": 13.419397116644824, + "grad_norm": 0.27918127179145813, + "learning_rate": 0.0006, + "loss": 4.223600387573242, + "step": 966 + }, + { + "epoch": 13.433377020532983, + "grad_norm": 0.27634528279304504, + "learning_rate": 0.0006, + "loss": 4.165332317352295, + "step": 967 + }, + { + "epoch": 13.447356924421145, + "grad_norm": 0.28830021619796753, + "learning_rate": 0.0006, + "loss": 4.204029560089111, + "step": 968 + }, + { + "epoch": 13.461336828309305, + "grad_norm": 0.29220864176750183, + "learning_rate": 0.0006, + "loss": 4.218057155609131, + "step": 969 + }, + { + "epoch": 13.475316732197467, + "grad_norm": 0.3089624345302582, + "learning_rate": 0.0006, + "loss": 4.200654983520508, + "step": 970 + }, + { + "epoch": 13.489296636085626, + "grad_norm": 0.36479851603507996, + "learning_rate": 0.0006, + "loss": 4.182811737060547, + "step": 971 + }, + { + "epoch": 13.503276539973788, + "grad_norm": 0.37561097741127014, + "learning_rate": 0.0006, + "loss": 4.190266132354736, + "step": 972 + }, + { + "epoch": 13.517256443861948, + "grad_norm": 0.3263583183288574, + "learning_rate": 0.0006, + "loss": 4.214815616607666, + "step": 973 + }, + { + "epoch": 13.53123634775011, + "grad_norm": 0.21552999317646027, + "learning_rate": 0.0006, + "loss": 4.171380043029785, + "step": 974 + }, + { + "epoch": 13.54521625163827, + "grad_norm": 0.247328519821167, + "learning_rate": 0.0006, + "loss": 4.175377368927002, + "step": 975 + }, + { + "epoch": 13.55919615552643, + "grad_norm": 0.23740540444850922, + "learning_rate": 0.0006, + "loss": 4.212357997894287, + "step": 976 + }, + { + "epoch": 13.57317605941459, + "grad_norm": 0.21533876657485962, + "learning_rate": 0.0006, + "loss": 4.203285217285156, + "step": 977 + }, + { + "epoch": 13.587155963302752, + "grad_norm": 0.21462024748325348, + "learning_rate": 0.0006, + "loss": 4.178012371063232, + "step": 978 + }, + { + "epoch": 13.601135867190912, + "grad_norm": 0.2279169261455536, + "learning_rate": 0.0006, + "loss": 4.193912982940674, + "step": 979 + }, + { + "epoch": 13.615115771079074, + "grad_norm": 0.2202417552471161, + "learning_rate": 0.0006, + "loss": 4.167629718780518, + "step": 980 + }, + { + "epoch": 13.629095674967235, + "grad_norm": 0.20586472749710083, + "learning_rate": 0.0006, + "loss": 4.159290313720703, + "step": 981 + }, + { + "epoch": 13.643075578855395, + "grad_norm": 0.20200690627098083, + "learning_rate": 0.0006, + "loss": 4.210315227508545, + "step": 982 + }, + { + "epoch": 13.657055482743557, + "grad_norm": 0.21710257232189178, + "learning_rate": 0.0006, + "loss": 4.21730375289917, + "step": 983 + }, + { + "epoch": 13.671035386631717, + "grad_norm": 0.22058045864105225, + "learning_rate": 0.0006, + "loss": 4.1996073722839355, + "step": 984 + }, + { + "epoch": 13.685015290519878, + "grad_norm": 0.21549592912197113, + "learning_rate": 0.0006, + "loss": 4.209203720092773, + "step": 985 + }, + { + "epoch": 13.698995194408038, + "grad_norm": 0.22274717688560486, + "learning_rate": 0.0006, + "loss": 4.220660209655762, + "step": 986 + }, + { + "epoch": 13.7129750982962, + "grad_norm": 0.22791637480258942, + "learning_rate": 0.0006, + "loss": 4.158679962158203, + "step": 987 + }, + { + "epoch": 13.72695500218436, + "grad_norm": 0.216218963265419, + "learning_rate": 0.0006, + "loss": 4.188124656677246, + "step": 988 + }, + { + "epoch": 13.740934906072521, + "grad_norm": 0.19149383902549744, + "learning_rate": 0.0006, + "loss": 4.181729316711426, + "step": 989 + }, + { + "epoch": 13.754914809960681, + "grad_norm": 0.18964019417762756, + "learning_rate": 0.0006, + "loss": 4.184767246246338, + "step": 990 + }, + { + "epoch": 13.768894713848843, + "grad_norm": 0.1778000295162201, + "learning_rate": 0.0006, + "loss": 4.1802263259887695, + "step": 991 + }, + { + "epoch": 13.782874617737003, + "grad_norm": 0.18277616798877716, + "learning_rate": 0.0006, + "loss": 4.1657867431640625, + "step": 992 + }, + { + "epoch": 13.796854521625164, + "grad_norm": 0.18610034883022308, + "learning_rate": 0.0006, + "loss": 4.156744956970215, + "step": 993 + }, + { + "epoch": 13.810834425513324, + "grad_norm": 0.19332963228225708, + "learning_rate": 0.0006, + "loss": 4.143558502197266, + "step": 994 + }, + { + "epoch": 13.824814329401486, + "grad_norm": 0.19758112728595734, + "learning_rate": 0.0006, + "loss": 4.195793151855469, + "step": 995 + }, + { + "epoch": 13.838794233289645, + "grad_norm": 0.1933647245168686, + "learning_rate": 0.0006, + "loss": 4.169734954833984, + "step": 996 + }, + { + "epoch": 13.852774137177807, + "grad_norm": 0.2362028956413269, + "learning_rate": 0.0006, + "loss": 4.175025939941406, + "step": 997 + }, + { + "epoch": 13.866754041065967, + "grad_norm": 0.2465490996837616, + "learning_rate": 0.0006, + "loss": 4.173909664154053, + "step": 998 + }, + { + "epoch": 13.880733944954128, + "grad_norm": 0.23449952900409698, + "learning_rate": 0.0006, + "loss": 4.173429489135742, + "step": 999 + }, + { + "epoch": 13.89471384884229, + "grad_norm": 0.2282160222530365, + "learning_rate": 0.0006, + "loss": 4.158538341522217, + "step": 1000 + }, + { + "epoch": 13.90869375273045, + "grad_norm": 0.21066738665103912, + "learning_rate": 0.0006, + "loss": 4.171584129333496, + "step": 1001 + }, + { + "epoch": 13.922673656618612, + "grad_norm": 0.18787573277950287, + "learning_rate": 0.0006, + "loss": 4.1837544441223145, + "step": 1002 + }, + { + "epoch": 13.936653560506771, + "grad_norm": 0.2001059353351593, + "learning_rate": 0.0006, + "loss": 4.160369873046875, + "step": 1003 + }, + { + "epoch": 13.950633464394933, + "grad_norm": 0.21644988656044006, + "learning_rate": 0.0006, + "loss": 4.221372604370117, + "step": 1004 + }, + { + "epoch": 13.964613368283093, + "grad_norm": 0.22083887457847595, + "learning_rate": 0.0006, + "loss": 4.149261474609375, + "step": 1005 + }, + { + "epoch": 13.978593272171254, + "grad_norm": 0.2201409637928009, + "learning_rate": 0.0006, + "loss": 4.192010879516602, + "step": 1006 + }, + { + "epoch": 13.992573176059414, + "grad_norm": 0.18888601660728455, + "learning_rate": 0.0006, + "loss": 4.17539119720459, + "step": 1007 + }, + { + "epoch": 14.0, + "grad_norm": 0.2073872834444046, + "learning_rate": 0.0006, + "loss": 4.145265579223633, + "step": 1008 + }, + { + "epoch": 14.0, + "eval_loss": 4.36876106262207, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 1008 + }, + { + "epoch": 14.013979903888162, + "grad_norm": 0.20773135125637054, + "learning_rate": 0.0006, + "loss": 4.132615089416504, + "step": 1009 + }, + { + "epoch": 14.027959807776321, + "grad_norm": 0.22409620881080627, + "learning_rate": 0.0006, + "loss": 4.172839164733887, + "step": 1010 + }, + { + "epoch": 14.041939711664483, + "grad_norm": 0.24046066403388977, + "learning_rate": 0.0006, + "loss": 4.126678943634033, + "step": 1011 + }, + { + "epoch": 14.055919615552643, + "grad_norm": 0.29185160994529724, + "learning_rate": 0.0006, + "loss": 4.177952766418457, + "step": 1012 + }, + { + "epoch": 14.069899519440805, + "grad_norm": 0.2984033226966858, + "learning_rate": 0.0006, + "loss": 4.155030250549316, + "step": 1013 + }, + { + "epoch": 14.083879423328964, + "grad_norm": 0.30262473225593567, + "learning_rate": 0.0006, + "loss": 4.145394325256348, + "step": 1014 + }, + { + "epoch": 14.097859327217126, + "grad_norm": 0.3278133273124695, + "learning_rate": 0.0006, + "loss": 4.172739028930664, + "step": 1015 + }, + { + "epoch": 14.111839231105286, + "grad_norm": 0.3285452425479889, + "learning_rate": 0.0006, + "loss": 4.153196334838867, + "step": 1016 + }, + { + "epoch": 14.125819134993447, + "grad_norm": 0.33912697434425354, + "learning_rate": 0.0006, + "loss": 4.098162651062012, + "step": 1017 + }, + { + "epoch": 14.139799038881607, + "grad_norm": 0.32080814242362976, + "learning_rate": 0.0006, + "loss": 4.157135009765625, + "step": 1018 + }, + { + "epoch": 14.153778942769769, + "grad_norm": 0.31288477778434753, + "learning_rate": 0.0006, + "loss": 4.142683029174805, + "step": 1019 + }, + { + "epoch": 14.167758846657929, + "grad_norm": 0.350289523601532, + "learning_rate": 0.0006, + "loss": 4.134700775146484, + "step": 1020 + }, + { + "epoch": 14.18173875054609, + "grad_norm": 0.34274575114250183, + "learning_rate": 0.0006, + "loss": 4.1578569412231445, + "step": 1021 + }, + { + "epoch": 14.19571865443425, + "grad_norm": 0.2843035161495209, + "learning_rate": 0.0006, + "loss": 4.13760232925415, + "step": 1022 + }, + { + "epoch": 14.209698558322412, + "grad_norm": 0.28235161304473877, + "learning_rate": 0.0006, + "loss": 4.1492462158203125, + "step": 1023 + }, + { + "epoch": 14.223678462210572, + "grad_norm": 0.24407248198986053, + "learning_rate": 0.0006, + "loss": 4.144372463226318, + "step": 1024 + }, + { + "epoch": 14.237658366098733, + "grad_norm": 0.2489742934703827, + "learning_rate": 0.0006, + "loss": 4.137950897216797, + "step": 1025 + }, + { + "epoch": 14.251638269986893, + "grad_norm": 0.26035651564598083, + "learning_rate": 0.0006, + "loss": 4.144070625305176, + "step": 1026 + }, + { + "epoch": 14.265618173875055, + "grad_norm": 0.2726516127586365, + "learning_rate": 0.0006, + "loss": 4.145204067230225, + "step": 1027 + }, + { + "epoch": 14.279598077763215, + "grad_norm": 0.2723483443260193, + "learning_rate": 0.0006, + "loss": 4.118407249450684, + "step": 1028 + }, + { + "epoch": 14.293577981651376, + "grad_norm": 0.27476269006729126, + "learning_rate": 0.0006, + "loss": 4.111325263977051, + "step": 1029 + }, + { + "epoch": 14.307557885539538, + "grad_norm": 0.26202502846717834, + "learning_rate": 0.0006, + "loss": 4.122248649597168, + "step": 1030 + }, + { + "epoch": 14.321537789427698, + "grad_norm": 0.2472032904624939, + "learning_rate": 0.0006, + "loss": 4.157790184020996, + "step": 1031 + }, + { + "epoch": 14.33551769331586, + "grad_norm": 0.2518343925476074, + "learning_rate": 0.0006, + "loss": 4.109132766723633, + "step": 1032 + }, + { + "epoch": 14.349497597204019, + "grad_norm": 0.2652401924133301, + "learning_rate": 0.0006, + "loss": 4.144079685211182, + "step": 1033 + }, + { + "epoch": 14.36347750109218, + "grad_norm": 0.2356770783662796, + "learning_rate": 0.0006, + "loss": 4.128426551818848, + "step": 1034 + }, + { + "epoch": 14.37745740498034, + "grad_norm": 0.2164214551448822, + "learning_rate": 0.0006, + "loss": 4.1644392013549805, + "step": 1035 + }, + { + "epoch": 14.391437308868502, + "grad_norm": 0.22383111715316772, + "learning_rate": 0.0006, + "loss": 4.165862083435059, + "step": 1036 + }, + { + "epoch": 14.405417212756662, + "grad_norm": 0.23152419924736023, + "learning_rate": 0.0006, + "loss": 4.140036582946777, + "step": 1037 + }, + { + "epoch": 14.419397116644824, + "grad_norm": 0.2387741357088089, + "learning_rate": 0.0006, + "loss": 4.130461692810059, + "step": 1038 + }, + { + "epoch": 14.433377020532983, + "grad_norm": 0.24018129706382751, + "learning_rate": 0.0006, + "loss": 4.148482322692871, + "step": 1039 + }, + { + "epoch": 14.447356924421145, + "grad_norm": 0.25487351417541504, + "learning_rate": 0.0006, + "loss": 4.158121109008789, + "step": 1040 + }, + { + "epoch": 14.461336828309305, + "grad_norm": 0.28220096230506897, + "learning_rate": 0.0006, + "loss": 4.160198211669922, + "step": 1041 + }, + { + "epoch": 14.475316732197467, + "grad_norm": 0.2574434280395508, + "learning_rate": 0.0006, + "loss": 4.168512344360352, + "step": 1042 + }, + { + "epoch": 14.489296636085626, + "grad_norm": 0.22569820284843445, + "learning_rate": 0.0006, + "loss": 4.1595001220703125, + "step": 1043 + }, + { + "epoch": 14.503276539973788, + "grad_norm": 0.2473423182964325, + "learning_rate": 0.0006, + "loss": 4.084580898284912, + "step": 1044 + }, + { + "epoch": 14.517256443861948, + "grad_norm": 0.24281060695648193, + "learning_rate": 0.0006, + "loss": 4.139714241027832, + "step": 1045 + }, + { + "epoch": 14.53123634775011, + "grad_norm": 0.24691344797611237, + "learning_rate": 0.0006, + "loss": 4.115398406982422, + "step": 1046 + }, + { + "epoch": 14.54521625163827, + "grad_norm": 0.2583645284175873, + "learning_rate": 0.0006, + "loss": 4.142148494720459, + "step": 1047 + }, + { + "epoch": 14.55919615552643, + "grad_norm": 0.23258574306964874, + "learning_rate": 0.0006, + "loss": 4.16251277923584, + "step": 1048 + }, + { + "epoch": 14.57317605941459, + "grad_norm": 0.22103039920330048, + "learning_rate": 0.0006, + "loss": 4.1308441162109375, + "step": 1049 + }, + { + "epoch": 14.587155963302752, + "grad_norm": 0.23713579773902893, + "learning_rate": 0.0006, + "loss": 4.1565985679626465, + "step": 1050 + }, + { + "epoch": 14.601135867190912, + "grad_norm": 0.24406634271144867, + "learning_rate": 0.0006, + "loss": 4.14628267288208, + "step": 1051 + }, + { + "epoch": 14.615115771079074, + "grad_norm": 0.26821228861808777, + "learning_rate": 0.0006, + "loss": 4.138063430786133, + "step": 1052 + }, + { + "epoch": 14.629095674967235, + "grad_norm": 0.25483864545822144, + "learning_rate": 0.0006, + "loss": 4.1311163902282715, + "step": 1053 + }, + { + "epoch": 14.643075578855395, + "grad_norm": 0.23937982320785522, + "learning_rate": 0.0006, + "loss": 4.150882244110107, + "step": 1054 + }, + { + "epoch": 14.657055482743557, + "grad_norm": 0.21896475553512573, + "learning_rate": 0.0006, + "loss": 4.114015102386475, + "step": 1055 + }, + { + "epoch": 14.671035386631717, + "grad_norm": 0.20821231603622437, + "learning_rate": 0.0006, + "loss": 4.139034271240234, + "step": 1056 + }, + { + "epoch": 14.685015290519878, + "grad_norm": 0.1978551596403122, + "learning_rate": 0.0006, + "loss": 4.1810503005981445, + "step": 1057 + }, + { + "epoch": 14.698995194408038, + "grad_norm": 0.1945771872997284, + "learning_rate": 0.0006, + "loss": 4.120734214782715, + "step": 1058 + }, + { + "epoch": 14.7129750982962, + "grad_norm": 0.19518673419952393, + "learning_rate": 0.0006, + "loss": 4.14264440536499, + "step": 1059 + }, + { + "epoch": 14.72695500218436, + "grad_norm": 0.202596515417099, + "learning_rate": 0.0006, + "loss": 4.151649475097656, + "step": 1060 + }, + { + "epoch": 14.740934906072521, + "grad_norm": 0.1904762089252472, + "learning_rate": 0.0006, + "loss": 4.127899169921875, + "step": 1061 + }, + { + "epoch": 14.754914809960681, + "grad_norm": 0.20685508847236633, + "learning_rate": 0.0006, + "loss": 4.093445777893066, + "step": 1062 + }, + { + "epoch": 14.768894713848843, + "grad_norm": 0.22678329050540924, + "learning_rate": 0.0006, + "loss": 4.132084369659424, + "step": 1063 + }, + { + "epoch": 14.782874617737003, + "grad_norm": 0.24631841480731964, + "learning_rate": 0.0006, + "loss": 4.154788970947266, + "step": 1064 + }, + { + "epoch": 14.796854521625164, + "grad_norm": 0.24445782601833344, + "learning_rate": 0.0006, + "loss": 4.144735336303711, + "step": 1065 + }, + { + "epoch": 14.810834425513324, + "grad_norm": 0.22330640256404877, + "learning_rate": 0.0006, + "loss": 4.159893989562988, + "step": 1066 + }, + { + "epoch": 14.824814329401486, + "grad_norm": 0.22422967851161957, + "learning_rate": 0.0006, + "loss": 4.104874610900879, + "step": 1067 + }, + { + "epoch": 14.838794233289645, + "grad_norm": 0.24583931267261505, + "learning_rate": 0.0006, + "loss": 4.139403820037842, + "step": 1068 + }, + { + "epoch": 14.852774137177807, + "grad_norm": 0.2917379140853882, + "learning_rate": 0.0006, + "loss": 4.168988227844238, + "step": 1069 + }, + { + "epoch": 14.866754041065967, + "grad_norm": 0.3171777129173279, + "learning_rate": 0.0006, + "loss": 4.131263732910156, + "step": 1070 + }, + { + "epoch": 14.880733944954128, + "grad_norm": 0.3039591312408447, + "learning_rate": 0.0006, + "loss": 4.149853706359863, + "step": 1071 + }, + { + "epoch": 14.89471384884229, + "grad_norm": 0.2690650522708893, + "learning_rate": 0.0006, + "loss": 4.154787540435791, + "step": 1072 + }, + { + "epoch": 14.90869375273045, + "grad_norm": 0.28683212399482727, + "learning_rate": 0.0006, + "loss": 4.12751579284668, + "step": 1073 + }, + { + "epoch": 14.922673656618612, + "grad_norm": 0.30022913217544556, + "learning_rate": 0.0006, + "loss": 4.141940116882324, + "step": 1074 + }, + { + "epoch": 14.936653560506771, + "grad_norm": 0.3312259316444397, + "learning_rate": 0.0006, + "loss": 4.141905784606934, + "step": 1075 + }, + { + "epoch": 14.950633464394933, + "grad_norm": 0.31159237027168274, + "learning_rate": 0.0006, + "loss": 4.160192966461182, + "step": 1076 + }, + { + "epoch": 14.964613368283093, + "grad_norm": 0.30093592405319214, + "learning_rate": 0.0006, + "loss": 4.1085076332092285, + "step": 1077 + }, + { + "epoch": 14.978593272171254, + "grad_norm": 0.2728535830974579, + "learning_rate": 0.0006, + "loss": 4.156959056854248, + "step": 1078 + }, + { + "epoch": 14.992573176059414, + "grad_norm": 0.24766813218593597, + "learning_rate": 0.0006, + "loss": 4.113999843597412, + "step": 1079 + }, + { + "epoch": 15.0, + "grad_norm": 0.2538154721260071, + "learning_rate": 0.0006, + "loss": 4.147134780883789, + "step": 1080 + }, + { + "epoch": 15.0, + "eval_loss": 4.323154926300049, + "eval_runtime": 44.8813, + "eval_samples_per_second": 54.41, + "eval_steps_per_second": 3.409, + "step": 1080 + }, + { + "epoch": 15.013979903888162, + "grad_norm": 0.22535280883312225, + "learning_rate": 0.0006, + "loss": 4.112179756164551, + "step": 1081 + }, + { + "epoch": 15.027959807776321, + "grad_norm": 0.24340929090976715, + "learning_rate": 0.0006, + "loss": 4.080923080444336, + "step": 1082 + }, + { + "epoch": 15.041939711664483, + "grad_norm": 0.23159465193748474, + "learning_rate": 0.0006, + "loss": 4.097067356109619, + "step": 1083 + }, + { + "epoch": 15.055919615552643, + "grad_norm": 0.22674769163131714, + "learning_rate": 0.0006, + "loss": 4.118601322174072, + "step": 1084 + }, + { + "epoch": 15.069899519440805, + "grad_norm": 0.2524292469024658, + "learning_rate": 0.0006, + "loss": 4.101109504699707, + "step": 1085 + }, + { + "epoch": 15.083879423328964, + "grad_norm": 0.2505405843257904, + "learning_rate": 0.0006, + "loss": 4.121405601501465, + "step": 1086 + }, + { + "epoch": 15.097859327217126, + "grad_norm": 0.2557983696460724, + "learning_rate": 0.0006, + "loss": 4.1063947677612305, + "step": 1087 + }, + { + "epoch": 15.111839231105286, + "grad_norm": 0.24452129006385803, + "learning_rate": 0.0006, + "loss": 4.086133003234863, + "step": 1088 + }, + { + "epoch": 15.125819134993447, + "grad_norm": 0.25821781158447266, + "learning_rate": 0.0006, + "loss": 4.076262950897217, + "step": 1089 + }, + { + "epoch": 15.139799038881607, + "grad_norm": 0.23650537431240082, + "learning_rate": 0.0006, + "loss": 4.101842880249023, + "step": 1090 + }, + { + "epoch": 15.153778942769769, + "grad_norm": 0.2206192910671234, + "learning_rate": 0.0006, + "loss": 4.11027193069458, + "step": 1091 + }, + { + "epoch": 15.167758846657929, + "grad_norm": 0.21843163669109344, + "learning_rate": 0.0006, + "loss": 4.098437309265137, + "step": 1092 + }, + { + "epoch": 15.18173875054609, + "grad_norm": 0.2528176009654999, + "learning_rate": 0.0006, + "loss": 4.108713150024414, + "step": 1093 + }, + { + "epoch": 15.19571865443425, + "grad_norm": 0.26697206497192383, + "learning_rate": 0.0006, + "loss": 4.113210201263428, + "step": 1094 + }, + { + "epoch": 15.209698558322412, + "grad_norm": 0.26480963826179504, + "learning_rate": 0.0006, + "loss": 4.1103620529174805, + "step": 1095 + }, + { + "epoch": 15.223678462210572, + "grad_norm": 0.24887347221374512, + "learning_rate": 0.0006, + "loss": 4.103529930114746, + "step": 1096 + }, + { + "epoch": 15.237658366098733, + "grad_norm": 0.2344668060541153, + "learning_rate": 0.0006, + "loss": 4.129784107208252, + "step": 1097 + }, + { + "epoch": 15.251638269986893, + "grad_norm": 0.22639742493629456, + "learning_rate": 0.0006, + "loss": 4.113495349884033, + "step": 1098 + }, + { + "epoch": 15.265618173875055, + "grad_norm": 0.22466333210468292, + "learning_rate": 0.0006, + "loss": 4.102309703826904, + "step": 1099 + }, + { + "epoch": 15.279598077763215, + "grad_norm": 0.25135037302970886, + "learning_rate": 0.0006, + "loss": 4.117668628692627, + "step": 1100 + }, + { + "epoch": 15.293577981651376, + "grad_norm": 0.2347089946269989, + "learning_rate": 0.0006, + "loss": 4.086637496948242, + "step": 1101 + }, + { + "epoch": 15.307557885539538, + "grad_norm": 0.2347242832183838, + "learning_rate": 0.0006, + "loss": 4.098714828491211, + "step": 1102 + }, + { + "epoch": 15.321537789427698, + "grad_norm": 0.23990283906459808, + "learning_rate": 0.0006, + "loss": 4.079837799072266, + "step": 1103 + }, + { + "epoch": 15.33551769331586, + "grad_norm": 0.22366675734519958, + "learning_rate": 0.0006, + "loss": 4.108136177062988, + "step": 1104 + }, + { + "epoch": 15.349497597204019, + "grad_norm": 0.21823780238628387, + "learning_rate": 0.0006, + "loss": 4.10054349899292, + "step": 1105 + }, + { + "epoch": 15.36347750109218, + "grad_norm": 0.23059198260307312, + "learning_rate": 0.0006, + "loss": 4.108620643615723, + "step": 1106 + }, + { + "epoch": 15.37745740498034, + "grad_norm": 0.2313755601644516, + "learning_rate": 0.0006, + "loss": 4.088565826416016, + "step": 1107 + }, + { + "epoch": 15.391437308868502, + "grad_norm": 0.2546829283237457, + "learning_rate": 0.0006, + "loss": 4.104948043823242, + "step": 1108 + }, + { + "epoch": 15.405417212756662, + "grad_norm": 0.23666726052761078, + "learning_rate": 0.0006, + "loss": 4.111965179443359, + "step": 1109 + }, + { + "epoch": 15.419397116644824, + "grad_norm": 0.21971021592617035, + "learning_rate": 0.0006, + "loss": 4.097846984863281, + "step": 1110 + }, + { + "epoch": 15.433377020532983, + "grad_norm": 0.20951911807060242, + "learning_rate": 0.0006, + "loss": 4.110099792480469, + "step": 1111 + }, + { + "epoch": 15.447356924421145, + "grad_norm": 0.19590918719768524, + "learning_rate": 0.0006, + "loss": 4.101154327392578, + "step": 1112 + }, + { + "epoch": 15.461336828309305, + "grad_norm": 0.21048946678638458, + "learning_rate": 0.0006, + "loss": 4.0986127853393555, + "step": 1113 + }, + { + "epoch": 15.475316732197467, + "grad_norm": 0.21423374116420746, + "learning_rate": 0.0006, + "loss": 4.082328796386719, + "step": 1114 + }, + { + "epoch": 15.489296636085626, + "grad_norm": 0.227146714925766, + "learning_rate": 0.0006, + "loss": 4.105281829833984, + "step": 1115 + }, + { + "epoch": 15.503276539973788, + "grad_norm": 0.2079153060913086, + "learning_rate": 0.0006, + "loss": 4.100836753845215, + "step": 1116 + }, + { + "epoch": 15.517256443861948, + "grad_norm": 0.21084675192832947, + "learning_rate": 0.0006, + "loss": 4.0934343338012695, + "step": 1117 + }, + { + "epoch": 15.53123634775011, + "grad_norm": 0.23863616585731506, + "learning_rate": 0.0006, + "loss": 4.101540565490723, + "step": 1118 + }, + { + "epoch": 15.54521625163827, + "grad_norm": 0.2518490254878998, + "learning_rate": 0.0006, + "loss": 4.12303352355957, + "step": 1119 + }, + { + "epoch": 15.55919615552643, + "grad_norm": 0.24282905459403992, + "learning_rate": 0.0006, + "loss": 4.080670356750488, + "step": 1120 + }, + { + "epoch": 15.57317605941459, + "grad_norm": 0.24171605706214905, + "learning_rate": 0.0006, + "loss": 4.117938041687012, + "step": 1121 + }, + { + "epoch": 15.587155963302752, + "grad_norm": 0.28453412652015686, + "learning_rate": 0.0006, + "loss": 4.080114364624023, + "step": 1122 + }, + { + "epoch": 15.601135867190912, + "grad_norm": 0.30322617292404175, + "learning_rate": 0.0006, + "loss": 4.079695701599121, + "step": 1123 + }, + { + "epoch": 15.615115771079074, + "grad_norm": 0.2657633125782013, + "learning_rate": 0.0006, + "loss": 4.0916290283203125, + "step": 1124 + }, + { + "epoch": 15.629095674967235, + "grad_norm": 0.2467080056667328, + "learning_rate": 0.0006, + "loss": 4.095594882965088, + "step": 1125 + }, + { + "epoch": 15.643075578855395, + "grad_norm": 0.21767394244670868, + "learning_rate": 0.0006, + "loss": 4.079174041748047, + "step": 1126 + }, + { + "epoch": 15.657055482743557, + "grad_norm": 0.2088327705860138, + "learning_rate": 0.0006, + "loss": 4.060707092285156, + "step": 1127 + }, + { + "epoch": 15.671035386631717, + "grad_norm": 0.1921205073595047, + "learning_rate": 0.0006, + "loss": 4.073911666870117, + "step": 1128 + }, + { + "epoch": 15.685015290519878, + "grad_norm": 0.209339901804924, + "learning_rate": 0.0006, + "loss": 4.089954376220703, + "step": 1129 + }, + { + "epoch": 15.698995194408038, + "grad_norm": 0.23513881862163544, + "learning_rate": 0.0006, + "loss": 4.084906578063965, + "step": 1130 + }, + { + "epoch": 15.7129750982962, + "grad_norm": 0.26140275597572327, + "learning_rate": 0.0006, + "loss": 4.086570739746094, + "step": 1131 + }, + { + "epoch": 15.72695500218436, + "grad_norm": 0.290431946516037, + "learning_rate": 0.0006, + "loss": 4.071229457855225, + "step": 1132 + }, + { + "epoch": 15.740934906072521, + "grad_norm": 0.3061376214027405, + "learning_rate": 0.0006, + "loss": 4.103148460388184, + "step": 1133 + }, + { + "epoch": 15.754914809960681, + "grad_norm": 0.26312482357025146, + "learning_rate": 0.0006, + "loss": 4.088448524475098, + "step": 1134 + }, + { + "epoch": 15.768894713848843, + "grad_norm": 0.22474883496761322, + "learning_rate": 0.0006, + "loss": 4.091766834259033, + "step": 1135 + }, + { + "epoch": 15.782874617737003, + "grad_norm": 0.2341146171092987, + "learning_rate": 0.0006, + "loss": 4.1222758293151855, + "step": 1136 + }, + { + "epoch": 15.796854521625164, + "grad_norm": 0.23556149005889893, + "learning_rate": 0.0006, + "loss": 4.094954013824463, + "step": 1137 + }, + { + "epoch": 15.810834425513324, + "grad_norm": 0.263315349817276, + "learning_rate": 0.0006, + "loss": 4.1065473556518555, + "step": 1138 + }, + { + "epoch": 15.824814329401486, + "grad_norm": 0.2700869143009186, + "learning_rate": 0.0006, + "loss": 4.0890045166015625, + "step": 1139 + }, + { + "epoch": 15.838794233289645, + "grad_norm": 0.28697484731674194, + "learning_rate": 0.0006, + "loss": 4.092496395111084, + "step": 1140 + }, + { + "epoch": 15.852774137177807, + "grad_norm": 0.2824092507362366, + "learning_rate": 0.0006, + "loss": 4.079615592956543, + "step": 1141 + }, + { + "epoch": 15.866754041065967, + "grad_norm": 0.24547280371189117, + "learning_rate": 0.0006, + "loss": 4.089683532714844, + "step": 1142 + }, + { + "epoch": 15.880733944954128, + "grad_norm": 0.23653888702392578, + "learning_rate": 0.0006, + "loss": 4.067309379577637, + "step": 1143 + }, + { + "epoch": 15.89471384884229, + "grad_norm": 0.23784421384334564, + "learning_rate": 0.0006, + "loss": 4.09156608581543, + "step": 1144 + }, + { + "epoch": 15.90869375273045, + "grad_norm": 0.22753281891345978, + "learning_rate": 0.0006, + "loss": 4.095428466796875, + "step": 1145 + }, + { + "epoch": 15.922673656618612, + "grad_norm": 0.2464212030172348, + "learning_rate": 0.0006, + "loss": 4.1036376953125, + "step": 1146 + }, + { + "epoch": 15.936653560506771, + "grad_norm": 0.25531601905822754, + "learning_rate": 0.0006, + "loss": 4.073996543884277, + "step": 1147 + }, + { + "epoch": 15.950633464394933, + "grad_norm": 0.24145905673503876, + "learning_rate": 0.0006, + "loss": 4.094479560852051, + "step": 1148 + }, + { + "epoch": 15.964613368283093, + "grad_norm": 0.24274317920207977, + "learning_rate": 0.0006, + "loss": 4.101981163024902, + "step": 1149 + }, + { + "epoch": 15.978593272171254, + "grad_norm": 0.2350679188966751, + "learning_rate": 0.0006, + "loss": 4.057965278625488, + "step": 1150 + }, + { + "epoch": 15.992573176059414, + "grad_norm": 0.24072253704071045, + "learning_rate": 0.0006, + "loss": 4.020050048828125, + "step": 1151 + }, + { + "epoch": 16.0, + "grad_norm": 0.253978967666626, + "learning_rate": 0.0006, + "loss": 4.061928749084473, + "step": 1152 + }, + { + "epoch": 16.0, + "eval_loss": 4.270665645599365, + "eval_runtime": 44.5063, + "eval_samples_per_second": 54.869, + "eval_steps_per_second": 3.438, + "step": 1152 + }, + { + "epoch": 16.01397990388816, + "grad_norm": 0.3265204131603241, + "learning_rate": 0.0006, + "loss": 4.059116363525391, + "step": 1153 + }, + { + "epoch": 16.027959807776323, + "grad_norm": 0.34139737486839294, + "learning_rate": 0.0006, + "loss": 4.062219619750977, + "step": 1154 + }, + { + "epoch": 16.041939711664483, + "grad_norm": 0.2849949598312378, + "learning_rate": 0.0006, + "loss": 4.032323837280273, + "step": 1155 + }, + { + "epoch": 16.055919615552643, + "grad_norm": 0.25031402707099915, + "learning_rate": 0.0006, + "loss": 4.075527191162109, + "step": 1156 + }, + { + "epoch": 16.069899519440803, + "grad_norm": 0.25207436084747314, + "learning_rate": 0.0006, + "loss": 4.0883097648620605, + "step": 1157 + }, + { + "epoch": 16.083879423328966, + "grad_norm": 0.28677356243133545, + "learning_rate": 0.0006, + "loss": 4.040797233581543, + "step": 1158 + }, + { + "epoch": 16.097859327217126, + "grad_norm": 0.30778825283050537, + "learning_rate": 0.0006, + "loss": 4.051504135131836, + "step": 1159 + }, + { + "epoch": 16.111839231105286, + "grad_norm": 0.3136911988258362, + "learning_rate": 0.0006, + "loss": 4.045449256896973, + "step": 1160 + }, + { + "epoch": 16.125819134993446, + "grad_norm": 0.34384530782699585, + "learning_rate": 0.0006, + "loss": 4.069897651672363, + "step": 1161 + }, + { + "epoch": 16.13979903888161, + "grad_norm": 0.3074268400669098, + "learning_rate": 0.0006, + "loss": 4.0621137619018555, + "step": 1162 + }, + { + "epoch": 16.15377894276977, + "grad_norm": 0.33090949058532715, + "learning_rate": 0.0006, + "loss": 4.084089279174805, + "step": 1163 + }, + { + "epoch": 16.16775884665793, + "grad_norm": 0.26358580589294434, + "learning_rate": 0.0006, + "loss": 4.066563606262207, + "step": 1164 + }, + { + "epoch": 16.18173875054609, + "grad_norm": 0.25586041808128357, + "learning_rate": 0.0006, + "loss": 4.08109188079834, + "step": 1165 + }, + { + "epoch": 16.195718654434252, + "grad_norm": 0.2966184616088867, + "learning_rate": 0.0006, + "loss": 4.039186477661133, + "step": 1166 + }, + { + "epoch": 16.209698558322412, + "grad_norm": 0.3064924478530884, + "learning_rate": 0.0006, + "loss": 4.08139705657959, + "step": 1167 + }, + { + "epoch": 16.22367846221057, + "grad_norm": 0.28671345114707947, + "learning_rate": 0.0006, + "loss": 4.04637336730957, + "step": 1168 + }, + { + "epoch": 16.23765836609873, + "grad_norm": 0.26209691166877747, + "learning_rate": 0.0006, + "loss": 4.052768707275391, + "step": 1169 + }, + { + "epoch": 16.251638269986895, + "grad_norm": 0.2758907079696655, + "learning_rate": 0.0006, + "loss": 4.064321517944336, + "step": 1170 + }, + { + "epoch": 16.265618173875055, + "grad_norm": 0.25961801409721375, + "learning_rate": 0.0006, + "loss": 4.057299613952637, + "step": 1171 + }, + { + "epoch": 16.279598077763215, + "grad_norm": 0.2513751685619354, + "learning_rate": 0.0006, + "loss": 4.064148902893066, + "step": 1172 + }, + { + "epoch": 16.293577981651374, + "grad_norm": 0.23920276761054993, + "learning_rate": 0.0006, + "loss": 4.101890563964844, + "step": 1173 + }, + { + "epoch": 16.307557885539538, + "grad_norm": 0.22746537625789642, + "learning_rate": 0.0006, + "loss": 4.086627006530762, + "step": 1174 + }, + { + "epoch": 16.321537789427698, + "grad_norm": 0.22633525729179382, + "learning_rate": 0.0006, + "loss": 4.04669189453125, + "step": 1175 + }, + { + "epoch": 16.335517693315857, + "grad_norm": 0.2654891610145569, + "learning_rate": 0.0006, + "loss": 4.086793422698975, + "step": 1176 + }, + { + "epoch": 16.34949759720402, + "grad_norm": 0.2872653007507324, + "learning_rate": 0.0006, + "loss": 4.077983856201172, + "step": 1177 + }, + { + "epoch": 16.36347750109218, + "grad_norm": 0.25726038217544556, + "learning_rate": 0.0006, + "loss": 4.066011428833008, + "step": 1178 + }, + { + "epoch": 16.37745740498034, + "grad_norm": 0.2592027485370636, + "learning_rate": 0.0006, + "loss": 4.0482988357543945, + "step": 1179 + }, + { + "epoch": 16.3914373088685, + "grad_norm": 0.2768886685371399, + "learning_rate": 0.0006, + "loss": 4.065151214599609, + "step": 1180 + }, + { + "epoch": 16.405417212756664, + "grad_norm": 0.2956002652645111, + "learning_rate": 0.0006, + "loss": 4.037791728973389, + "step": 1181 + }, + { + "epoch": 16.419397116644824, + "grad_norm": 0.3092120885848999, + "learning_rate": 0.0006, + "loss": 4.062164306640625, + "step": 1182 + }, + { + "epoch": 16.433377020532983, + "grad_norm": 0.29516810178756714, + "learning_rate": 0.0006, + "loss": 4.025505065917969, + "step": 1183 + }, + { + "epoch": 16.447356924421143, + "grad_norm": 0.2640177607536316, + "learning_rate": 0.0006, + "loss": 4.060182571411133, + "step": 1184 + }, + { + "epoch": 16.461336828309307, + "grad_norm": 0.2444908320903778, + "learning_rate": 0.0006, + "loss": 4.046144962310791, + "step": 1185 + }, + { + "epoch": 16.475316732197467, + "grad_norm": 0.23190705478191376, + "learning_rate": 0.0006, + "loss": 4.075569152832031, + "step": 1186 + }, + { + "epoch": 16.489296636085626, + "grad_norm": 0.2383626103401184, + "learning_rate": 0.0006, + "loss": 4.088897705078125, + "step": 1187 + }, + { + "epoch": 16.503276539973786, + "grad_norm": 0.20688803493976593, + "learning_rate": 0.0006, + "loss": 4.064517974853516, + "step": 1188 + }, + { + "epoch": 16.51725644386195, + "grad_norm": 0.22610054910182953, + "learning_rate": 0.0006, + "loss": 4.04502010345459, + "step": 1189 + }, + { + "epoch": 16.53123634775011, + "grad_norm": 0.2014893889427185, + "learning_rate": 0.0006, + "loss": 4.058279514312744, + "step": 1190 + }, + { + "epoch": 16.54521625163827, + "grad_norm": 0.21459777653217316, + "learning_rate": 0.0006, + "loss": 4.066389083862305, + "step": 1191 + }, + { + "epoch": 16.55919615552643, + "grad_norm": 0.22909940779209137, + "learning_rate": 0.0006, + "loss": 4.0557966232299805, + "step": 1192 + }, + { + "epoch": 16.573176059414592, + "grad_norm": 0.20039083063602448, + "learning_rate": 0.0006, + "loss": 4.092845916748047, + "step": 1193 + }, + { + "epoch": 16.587155963302752, + "grad_norm": 0.22651726007461548, + "learning_rate": 0.0006, + "loss": 4.034615516662598, + "step": 1194 + }, + { + "epoch": 16.601135867190912, + "grad_norm": 0.21901755034923553, + "learning_rate": 0.0006, + "loss": 4.035619735717773, + "step": 1195 + }, + { + "epoch": 16.615115771079076, + "grad_norm": 0.22930841147899628, + "learning_rate": 0.0006, + "loss": 4.080800533294678, + "step": 1196 + }, + { + "epoch": 16.629095674967235, + "grad_norm": 0.212818443775177, + "learning_rate": 0.0006, + "loss": 4.030189514160156, + "step": 1197 + }, + { + "epoch": 16.643075578855395, + "grad_norm": 0.2370826154947281, + "learning_rate": 0.0006, + "loss": 4.062643527984619, + "step": 1198 + }, + { + "epoch": 16.657055482743555, + "grad_norm": 0.24786995351314545, + "learning_rate": 0.0006, + "loss": 4.031761169433594, + "step": 1199 + }, + { + "epoch": 16.67103538663172, + "grad_norm": 0.2305847704410553, + "learning_rate": 0.0006, + "loss": 4.083752155303955, + "step": 1200 + }, + { + "epoch": 16.68501529051988, + "grad_norm": 0.23336584866046906, + "learning_rate": 0.0006, + "loss": 4.079145431518555, + "step": 1201 + }, + { + "epoch": 16.698995194408038, + "grad_norm": 0.23976293206214905, + "learning_rate": 0.0006, + "loss": 4.020473957061768, + "step": 1202 + }, + { + "epoch": 16.712975098296198, + "grad_norm": 0.222761869430542, + "learning_rate": 0.0006, + "loss": 4.065582752227783, + "step": 1203 + }, + { + "epoch": 16.72695500218436, + "grad_norm": 0.23725618422031403, + "learning_rate": 0.0006, + "loss": 4.0263776779174805, + "step": 1204 + }, + { + "epoch": 16.74093490607252, + "grad_norm": 0.23873984813690186, + "learning_rate": 0.0006, + "loss": 4.053092956542969, + "step": 1205 + }, + { + "epoch": 16.75491480996068, + "grad_norm": 0.21043002605438232, + "learning_rate": 0.0006, + "loss": 4.063965797424316, + "step": 1206 + }, + { + "epoch": 16.76889471384884, + "grad_norm": 0.19863522052764893, + "learning_rate": 0.0006, + "loss": 4.061187267303467, + "step": 1207 + }, + { + "epoch": 16.782874617737004, + "grad_norm": 0.1953752487897873, + "learning_rate": 0.0006, + "loss": 4.046016693115234, + "step": 1208 + }, + { + "epoch": 16.796854521625164, + "grad_norm": 0.2130361795425415, + "learning_rate": 0.0006, + "loss": 4.066933631896973, + "step": 1209 + }, + { + "epoch": 16.810834425513324, + "grad_norm": 0.19598130881786346, + "learning_rate": 0.0006, + "loss": 4.071558952331543, + "step": 1210 + }, + { + "epoch": 16.824814329401484, + "grad_norm": 0.20331116020679474, + "learning_rate": 0.0006, + "loss": 4.088632106781006, + "step": 1211 + }, + { + "epoch": 16.838794233289647, + "grad_norm": 0.20423150062561035, + "learning_rate": 0.0006, + "loss": 4.032224655151367, + "step": 1212 + }, + { + "epoch": 16.852774137177807, + "grad_norm": 0.2401197850704193, + "learning_rate": 0.0006, + "loss": 4.037393569946289, + "step": 1213 + }, + { + "epoch": 16.866754041065967, + "grad_norm": 0.26102620363235474, + "learning_rate": 0.0006, + "loss": 4.04738712310791, + "step": 1214 + }, + { + "epoch": 16.88073394495413, + "grad_norm": 0.2438521534204483, + "learning_rate": 0.0006, + "loss": 4.015673637390137, + "step": 1215 + }, + { + "epoch": 16.89471384884229, + "grad_norm": 0.20742061734199524, + "learning_rate": 0.0006, + "loss": 4.049060821533203, + "step": 1216 + }, + { + "epoch": 16.90869375273045, + "grad_norm": 0.22028608620166779, + "learning_rate": 0.0006, + "loss": 4.088971138000488, + "step": 1217 + }, + { + "epoch": 16.92267365661861, + "grad_norm": 0.21746744215488434, + "learning_rate": 0.0006, + "loss": 4.021710395812988, + "step": 1218 + }, + { + "epoch": 16.936653560506773, + "grad_norm": 0.2226102203130722, + "learning_rate": 0.0006, + "loss": 4.050119400024414, + "step": 1219 + }, + { + "epoch": 16.950633464394933, + "grad_norm": 0.23903657495975494, + "learning_rate": 0.0006, + "loss": 4.0570526123046875, + "step": 1220 + }, + { + "epoch": 16.964613368283093, + "grad_norm": 0.2556349039077759, + "learning_rate": 0.0006, + "loss": 4.0448808670043945, + "step": 1221 + }, + { + "epoch": 16.978593272171253, + "grad_norm": 0.28445592522621155, + "learning_rate": 0.0006, + "loss": 4.052034378051758, + "step": 1222 + }, + { + "epoch": 16.992573176059416, + "grad_norm": 0.273973673582077, + "learning_rate": 0.0006, + "loss": 4.02907657623291, + "step": 1223 + }, + { + "epoch": 17.0, + "grad_norm": 0.26125091314315796, + "learning_rate": 0.0006, + "loss": 4.10643196105957, + "step": 1224 + }, + { + "epoch": 17.0, + "eval_loss": 4.2585954666137695, + "eval_runtime": 44.8583, + "eval_samples_per_second": 54.438, + "eval_steps_per_second": 3.411, + "step": 1224 + }, + { + "epoch": 17.01397990388816, + "grad_norm": 0.2786196768283844, + "learning_rate": 0.0006, + "loss": 4.044719219207764, + "step": 1225 + }, + { + "epoch": 17.027959807776323, + "grad_norm": 0.2969571650028229, + "learning_rate": 0.0006, + "loss": 4.022037506103516, + "step": 1226 + }, + { + "epoch": 17.041939711664483, + "grad_norm": 0.32196253538131714, + "learning_rate": 0.0006, + "loss": 4.03636360168457, + "step": 1227 + }, + { + "epoch": 17.055919615552643, + "grad_norm": 0.28617000579833984, + "learning_rate": 0.0006, + "loss": 4.012125492095947, + "step": 1228 + }, + { + "epoch": 17.069899519440803, + "grad_norm": 0.26539644598960876, + "learning_rate": 0.0006, + "loss": 4.020190715789795, + "step": 1229 + }, + { + "epoch": 17.083879423328966, + "grad_norm": 0.24315394461154938, + "learning_rate": 0.0006, + "loss": 4.0553812980651855, + "step": 1230 + }, + { + "epoch": 17.097859327217126, + "grad_norm": 0.23798158764839172, + "learning_rate": 0.0006, + "loss": 4.004805088043213, + "step": 1231 + }, + { + "epoch": 17.111839231105286, + "grad_norm": 0.25723618268966675, + "learning_rate": 0.0006, + "loss": 4.00108003616333, + "step": 1232 + }, + { + "epoch": 17.125819134993446, + "grad_norm": 0.2669757604598999, + "learning_rate": 0.0006, + "loss": 4.00828742980957, + "step": 1233 + }, + { + "epoch": 17.13979903888161, + "grad_norm": 0.26421651244163513, + "learning_rate": 0.0006, + "loss": 3.995478391647339, + "step": 1234 + }, + { + "epoch": 17.15377894276977, + "grad_norm": 0.24745801091194153, + "learning_rate": 0.0006, + "loss": 4.0171027183532715, + "step": 1235 + }, + { + "epoch": 17.16775884665793, + "grad_norm": 0.27028775215148926, + "learning_rate": 0.0006, + "loss": 4.017108917236328, + "step": 1236 + }, + { + "epoch": 17.18173875054609, + "grad_norm": 0.27247968316078186, + "learning_rate": 0.0006, + "loss": 4.032601356506348, + "step": 1237 + }, + { + "epoch": 17.195718654434252, + "grad_norm": 0.24620869755744934, + "learning_rate": 0.0006, + "loss": 4.022171974182129, + "step": 1238 + }, + { + "epoch": 17.209698558322412, + "grad_norm": 0.23407386243343353, + "learning_rate": 0.0006, + "loss": 3.9946959018707275, + "step": 1239 + }, + { + "epoch": 17.22367846221057, + "grad_norm": 0.22559069097042084, + "learning_rate": 0.0006, + "loss": 4.013072490692139, + "step": 1240 + }, + { + "epoch": 17.23765836609873, + "grad_norm": 0.226687952876091, + "learning_rate": 0.0006, + "loss": 4.023543834686279, + "step": 1241 + }, + { + "epoch": 17.251638269986895, + "grad_norm": 0.24436360597610474, + "learning_rate": 0.0006, + "loss": 4.044206619262695, + "step": 1242 + }, + { + "epoch": 17.265618173875055, + "grad_norm": 0.25527626276016235, + "learning_rate": 0.0006, + "loss": 4.016424179077148, + "step": 1243 + }, + { + "epoch": 17.279598077763215, + "grad_norm": 0.26126864552497864, + "learning_rate": 0.0006, + "loss": 4.024394512176514, + "step": 1244 + }, + { + "epoch": 17.293577981651374, + "grad_norm": 0.25746744871139526, + "learning_rate": 0.0006, + "loss": 4.046844482421875, + "step": 1245 + }, + { + "epoch": 17.307557885539538, + "grad_norm": 0.26579564809799194, + "learning_rate": 0.0006, + "loss": 4.021010398864746, + "step": 1246 + }, + { + "epoch": 17.321537789427698, + "grad_norm": 0.2713971734046936, + "learning_rate": 0.0006, + "loss": 4.022331237792969, + "step": 1247 + }, + { + "epoch": 17.335517693315857, + "grad_norm": 0.24217180907726288, + "learning_rate": 0.0006, + "loss": 4.006353855133057, + "step": 1248 + }, + { + "epoch": 17.34949759720402, + "grad_norm": 0.26899752020835876, + "learning_rate": 0.0006, + "loss": 4.068023681640625, + "step": 1249 + }, + { + "epoch": 17.36347750109218, + "grad_norm": 0.26745253801345825, + "learning_rate": 0.0006, + "loss": 4.031207084655762, + "step": 1250 + }, + { + "epoch": 17.37745740498034, + "grad_norm": 0.21533764898777008, + "learning_rate": 0.0006, + "loss": 4.042410850524902, + "step": 1251 + }, + { + "epoch": 17.3914373088685, + "grad_norm": 0.21958027780056, + "learning_rate": 0.0006, + "loss": 4.02597713470459, + "step": 1252 + }, + { + "epoch": 17.405417212756664, + "grad_norm": 0.263068825006485, + "learning_rate": 0.0006, + "loss": 4.0035905838012695, + "step": 1253 + }, + { + "epoch": 17.419397116644824, + "grad_norm": 0.24044716358184814, + "learning_rate": 0.0006, + "loss": 4.005317687988281, + "step": 1254 + }, + { + "epoch": 17.433377020532983, + "grad_norm": 0.19142559170722961, + "learning_rate": 0.0006, + "loss": 3.9976844787597656, + "step": 1255 + }, + { + "epoch": 17.447356924421143, + "grad_norm": 0.18650250136852264, + "learning_rate": 0.0006, + "loss": 4.031353950500488, + "step": 1256 + }, + { + "epoch": 17.461336828309307, + "grad_norm": 0.1984022557735443, + "learning_rate": 0.0006, + "loss": 4.002097129821777, + "step": 1257 + }, + { + "epoch": 17.475316732197467, + "grad_norm": 0.20087844133377075, + "learning_rate": 0.0006, + "loss": 4.031151294708252, + "step": 1258 + }, + { + "epoch": 17.489296636085626, + "grad_norm": 0.20881228148937225, + "learning_rate": 0.0006, + "loss": 4.034793853759766, + "step": 1259 + }, + { + "epoch": 17.503276539973786, + "grad_norm": 0.23958556354045868, + "learning_rate": 0.0006, + "loss": 4.025238990783691, + "step": 1260 + }, + { + "epoch": 17.51725644386195, + "grad_norm": 0.23927845060825348, + "learning_rate": 0.0006, + "loss": 3.999828338623047, + "step": 1261 + }, + { + "epoch": 17.53123634775011, + "grad_norm": 0.20342715084552765, + "learning_rate": 0.0006, + "loss": 4.054262161254883, + "step": 1262 + }, + { + "epoch": 17.54521625163827, + "grad_norm": 0.21370555460453033, + "learning_rate": 0.0006, + "loss": 4.011582374572754, + "step": 1263 + }, + { + "epoch": 17.55919615552643, + "grad_norm": 0.23681946098804474, + "learning_rate": 0.0006, + "loss": 4.029694080352783, + "step": 1264 + }, + { + "epoch": 17.573176059414592, + "grad_norm": 0.24190311133861542, + "learning_rate": 0.0006, + "loss": 4.018783092498779, + "step": 1265 + }, + { + "epoch": 17.587155963302752, + "grad_norm": 0.23215509951114655, + "learning_rate": 0.0006, + "loss": 4.009703159332275, + "step": 1266 + }, + { + "epoch": 17.601135867190912, + "grad_norm": 0.21122977137565613, + "learning_rate": 0.0006, + "loss": 4.0345659255981445, + "step": 1267 + }, + { + "epoch": 17.615115771079076, + "grad_norm": 0.2075948715209961, + "learning_rate": 0.0006, + "loss": 4.070703506469727, + "step": 1268 + }, + { + "epoch": 17.629095674967235, + "grad_norm": 0.21667909622192383, + "learning_rate": 0.0006, + "loss": 4.020771503448486, + "step": 1269 + }, + { + "epoch": 17.643075578855395, + "grad_norm": 0.20960724353790283, + "learning_rate": 0.0006, + "loss": 4.026404857635498, + "step": 1270 + }, + { + "epoch": 17.657055482743555, + "grad_norm": 0.22575686872005463, + "learning_rate": 0.0006, + "loss": 4.01981258392334, + "step": 1271 + }, + { + "epoch": 17.67103538663172, + "grad_norm": 0.2565988302230835, + "learning_rate": 0.0006, + "loss": 4.015827178955078, + "step": 1272 + }, + { + "epoch": 17.68501529051988, + "grad_norm": 0.24831551313400269, + "learning_rate": 0.0006, + "loss": 4.012457847595215, + "step": 1273 + }, + { + "epoch": 17.698995194408038, + "grad_norm": 0.22595494985580444, + "learning_rate": 0.0006, + "loss": 4.031386375427246, + "step": 1274 + }, + { + "epoch": 17.712975098296198, + "grad_norm": 0.20687322318553925, + "learning_rate": 0.0006, + "loss": 4.014216423034668, + "step": 1275 + }, + { + "epoch": 17.72695500218436, + "grad_norm": 0.21916012465953827, + "learning_rate": 0.0006, + "loss": 4.037643909454346, + "step": 1276 + }, + { + "epoch": 17.74093490607252, + "grad_norm": 0.2243107706308365, + "learning_rate": 0.0006, + "loss": 4.033044815063477, + "step": 1277 + }, + { + "epoch": 17.75491480996068, + "grad_norm": 0.2402164787054062, + "learning_rate": 0.0006, + "loss": 4.026636123657227, + "step": 1278 + }, + { + "epoch": 17.76889471384884, + "grad_norm": 0.27957046031951904, + "learning_rate": 0.0006, + "loss": 4.0270867347717285, + "step": 1279 + }, + { + "epoch": 17.782874617737004, + "grad_norm": 0.27447596192359924, + "learning_rate": 0.0006, + "loss": 4.0120134353637695, + "step": 1280 + }, + { + "epoch": 17.796854521625164, + "grad_norm": 0.26926323771476746, + "learning_rate": 0.0006, + "loss": 4.027970314025879, + "step": 1281 + }, + { + "epoch": 17.810834425513324, + "grad_norm": 0.2535291314125061, + "learning_rate": 0.0006, + "loss": 4.002565383911133, + "step": 1282 + }, + { + "epoch": 17.824814329401484, + "grad_norm": 0.22639447450637817, + "learning_rate": 0.0006, + "loss": 4.032750606536865, + "step": 1283 + }, + { + "epoch": 17.838794233289647, + "grad_norm": 0.23384462296962738, + "learning_rate": 0.0006, + "loss": 4.03568172454834, + "step": 1284 + }, + { + "epoch": 17.852774137177807, + "grad_norm": 0.22971470654010773, + "learning_rate": 0.0006, + "loss": 4.031299591064453, + "step": 1285 + }, + { + "epoch": 17.866754041065967, + "grad_norm": 0.24540141224861145, + "learning_rate": 0.0006, + "loss": 4.0142669677734375, + "step": 1286 + }, + { + "epoch": 17.88073394495413, + "grad_norm": 0.2304888367652893, + "learning_rate": 0.0006, + "loss": 3.9964895248413086, + "step": 1287 + }, + { + "epoch": 17.89471384884229, + "grad_norm": 0.22082284092903137, + "learning_rate": 0.0006, + "loss": 4.024693489074707, + "step": 1288 + }, + { + "epoch": 17.90869375273045, + "grad_norm": 0.23677092790603638, + "learning_rate": 0.0006, + "loss": 4.002082347869873, + "step": 1289 + }, + { + "epoch": 17.92267365661861, + "grad_norm": 0.23122332990169525, + "learning_rate": 0.0006, + "loss": 4.025351524353027, + "step": 1290 + }, + { + "epoch": 17.936653560506773, + "grad_norm": 0.2548119127750397, + "learning_rate": 0.0006, + "loss": 3.9955825805664062, + "step": 1291 + }, + { + "epoch": 17.950633464394933, + "grad_norm": 0.26950931549072266, + "learning_rate": 0.0006, + "loss": 4.026151180267334, + "step": 1292 + }, + { + "epoch": 17.964613368283093, + "grad_norm": 0.3023233711719513, + "learning_rate": 0.0006, + "loss": 4.006035804748535, + "step": 1293 + }, + { + "epoch": 17.978593272171253, + "grad_norm": 0.3190958499908447, + "learning_rate": 0.0006, + "loss": 4.023565292358398, + "step": 1294 + }, + { + "epoch": 17.992573176059416, + "grad_norm": 0.28878068923950195, + "learning_rate": 0.0006, + "loss": 4.020973205566406, + "step": 1295 + }, + { + "epoch": 18.0, + "grad_norm": 0.27312418818473816, + "learning_rate": 0.0006, + "loss": 3.99906587600708, + "step": 1296 + }, + { + "epoch": 18.0, + "eval_loss": 4.224447250366211, + "eval_runtime": 52.5728, + "eval_samples_per_second": 46.45, + "eval_steps_per_second": 2.91, + "step": 1296 + }, + { + "epoch": 18.01397990388816, + "grad_norm": 0.2567712664604187, + "learning_rate": 0.0006, + "loss": 3.9755055904388428, + "step": 1297 + }, + { + "epoch": 18.027959807776323, + "grad_norm": 0.25048133730888367, + "learning_rate": 0.0006, + "loss": 4.009254455566406, + "step": 1298 + }, + { + "epoch": 18.041939711664483, + "grad_norm": 0.2556909918785095, + "learning_rate": 0.0006, + "loss": 4.001235008239746, + "step": 1299 + }, + { + "epoch": 18.055919615552643, + "grad_norm": 0.2501400113105774, + "learning_rate": 0.0006, + "loss": 3.980726480484009, + "step": 1300 + }, + { + "epoch": 18.069899519440803, + "grad_norm": 0.23977792263031006, + "learning_rate": 0.0006, + "loss": 3.964195728302002, + "step": 1301 + }, + { + "epoch": 18.083879423328966, + "grad_norm": 0.25650718808174133, + "learning_rate": 0.0006, + "loss": 4.015914440155029, + "step": 1302 + }, + { + "epoch": 18.097859327217126, + "grad_norm": 0.234053835272789, + "learning_rate": 0.0006, + "loss": 4.0159149169921875, + "step": 1303 + }, + { + "epoch": 18.111839231105286, + "grad_norm": 0.21967713534832, + "learning_rate": 0.0006, + "loss": 4.0055694580078125, + "step": 1304 + }, + { + "epoch": 18.125819134993446, + "grad_norm": 0.21790878474712372, + "learning_rate": 0.0006, + "loss": 3.986253261566162, + "step": 1305 + }, + { + "epoch": 18.13979903888161, + "grad_norm": 0.22955302894115448, + "learning_rate": 0.0006, + "loss": 3.959421157836914, + "step": 1306 + }, + { + "epoch": 18.15377894276977, + "grad_norm": 0.2559174597263336, + "learning_rate": 0.0006, + "loss": 4.0069756507873535, + "step": 1307 + }, + { + "epoch": 18.16775884665793, + "grad_norm": 0.26132866740226746, + "learning_rate": 0.0006, + "loss": 3.9874095916748047, + "step": 1308 + }, + { + "epoch": 18.18173875054609, + "grad_norm": 0.23258940875530243, + "learning_rate": 0.0006, + "loss": 3.9762492179870605, + "step": 1309 + }, + { + "epoch": 18.195718654434252, + "grad_norm": 0.22347190976142883, + "learning_rate": 0.0006, + "loss": 3.9923410415649414, + "step": 1310 + }, + { + "epoch": 18.209698558322412, + "grad_norm": 0.23095804452896118, + "learning_rate": 0.0006, + "loss": 4.019245624542236, + "step": 1311 + }, + { + "epoch": 18.22367846221057, + "grad_norm": 0.24817052483558655, + "learning_rate": 0.0006, + "loss": 3.9697511196136475, + "step": 1312 + }, + { + "epoch": 18.23765836609873, + "grad_norm": 0.2566024959087372, + "learning_rate": 0.0006, + "loss": 3.978804111480713, + "step": 1313 + }, + { + "epoch": 18.251638269986895, + "grad_norm": 0.2527952790260315, + "learning_rate": 0.0006, + "loss": 3.972018241882324, + "step": 1314 + }, + { + "epoch": 18.265618173875055, + "grad_norm": 0.2508150637149811, + "learning_rate": 0.0006, + "loss": 3.9971275329589844, + "step": 1315 + }, + { + "epoch": 18.279598077763215, + "grad_norm": 0.23242022097110748, + "learning_rate": 0.0006, + "loss": 3.9712045192718506, + "step": 1316 + }, + { + "epoch": 18.293577981651374, + "grad_norm": 0.23474404215812683, + "learning_rate": 0.0006, + "loss": 3.9926767349243164, + "step": 1317 + }, + { + "epoch": 18.307557885539538, + "grad_norm": 0.2417769432067871, + "learning_rate": 0.0006, + "loss": 3.9920949935913086, + "step": 1318 + }, + { + "epoch": 18.321537789427698, + "grad_norm": 0.23839452862739563, + "learning_rate": 0.0006, + "loss": 4.016645431518555, + "step": 1319 + }, + { + "epoch": 18.335517693315857, + "grad_norm": 0.2512452304363251, + "learning_rate": 0.0006, + "loss": 3.97586727142334, + "step": 1320 + }, + { + "epoch": 18.34949759720402, + "grad_norm": 0.27503693103790283, + "learning_rate": 0.0006, + "loss": 4.000148773193359, + "step": 1321 + }, + { + "epoch": 18.36347750109218, + "grad_norm": 0.27830836176872253, + "learning_rate": 0.0006, + "loss": 3.9972195625305176, + "step": 1322 + }, + { + "epoch": 18.37745740498034, + "grad_norm": 0.2571812570095062, + "learning_rate": 0.0006, + "loss": 3.9900810718536377, + "step": 1323 + }, + { + "epoch": 18.3914373088685, + "grad_norm": 0.2310052365064621, + "learning_rate": 0.0006, + "loss": 4.003000259399414, + "step": 1324 + }, + { + "epoch": 18.405417212756664, + "grad_norm": 0.19615735113620758, + "learning_rate": 0.0006, + "loss": 3.9536571502685547, + "step": 1325 + }, + { + "epoch": 18.419397116644824, + "grad_norm": 0.21323896944522858, + "learning_rate": 0.0006, + "loss": 3.977508068084717, + "step": 1326 + }, + { + "epoch": 18.433377020532983, + "grad_norm": 0.21404202282428741, + "learning_rate": 0.0006, + "loss": 4.015361785888672, + "step": 1327 + }, + { + "epoch": 18.447356924421143, + "grad_norm": 0.1991959661245346, + "learning_rate": 0.0006, + "loss": 4.000286102294922, + "step": 1328 + }, + { + "epoch": 18.461336828309307, + "grad_norm": 0.2073599398136139, + "learning_rate": 0.0006, + "loss": 3.973065137863159, + "step": 1329 + }, + { + "epoch": 18.475316732197467, + "grad_norm": 0.2096073031425476, + "learning_rate": 0.0006, + "loss": 3.987032890319824, + "step": 1330 + }, + { + "epoch": 18.489296636085626, + "grad_norm": 0.2380610853433609, + "learning_rate": 0.0006, + "loss": 4.035274505615234, + "step": 1331 + }, + { + "epoch": 18.503276539973786, + "grad_norm": 0.23570716381072998, + "learning_rate": 0.0006, + "loss": 4.010516166687012, + "step": 1332 + }, + { + "epoch": 18.51725644386195, + "grad_norm": 0.24805466830730438, + "learning_rate": 0.0006, + "loss": 3.9750983715057373, + "step": 1333 + }, + { + "epoch": 18.53123634775011, + "grad_norm": 0.25173231959342957, + "learning_rate": 0.0006, + "loss": 3.9742345809936523, + "step": 1334 + }, + { + "epoch": 18.54521625163827, + "grad_norm": 0.24590367078781128, + "learning_rate": 0.0006, + "loss": 4.0037312507629395, + "step": 1335 + }, + { + "epoch": 18.55919615552643, + "grad_norm": 0.24379394948482513, + "learning_rate": 0.0006, + "loss": 3.993858814239502, + "step": 1336 + }, + { + "epoch": 18.573176059414592, + "grad_norm": 0.21708883345127106, + "learning_rate": 0.0006, + "loss": 3.965670585632324, + "step": 1337 + }, + { + "epoch": 18.587155963302752, + "grad_norm": 0.21024051308631897, + "learning_rate": 0.0006, + "loss": 3.987551689147949, + "step": 1338 + }, + { + "epoch": 18.601135867190912, + "grad_norm": 0.23376783728599548, + "learning_rate": 0.0006, + "loss": 4.002841472625732, + "step": 1339 + }, + { + "epoch": 18.615115771079076, + "grad_norm": 0.25350701808929443, + "learning_rate": 0.0006, + "loss": 3.9881370067596436, + "step": 1340 + }, + { + "epoch": 18.629095674967235, + "grad_norm": 0.2542140483856201, + "learning_rate": 0.0006, + "loss": 4.003695964813232, + "step": 1341 + }, + { + "epoch": 18.643075578855395, + "grad_norm": 0.22932685911655426, + "learning_rate": 0.0006, + "loss": 4.0146002769470215, + "step": 1342 + }, + { + "epoch": 18.657055482743555, + "grad_norm": 0.21099458634853363, + "learning_rate": 0.0006, + "loss": 3.970472812652588, + "step": 1343 + }, + { + "epoch": 18.67103538663172, + "grad_norm": 0.2234615832567215, + "learning_rate": 0.0006, + "loss": 3.9821488857269287, + "step": 1344 + }, + { + "epoch": 18.68501529051988, + "grad_norm": 0.230327770113945, + "learning_rate": 0.0006, + "loss": 3.996274948120117, + "step": 1345 + }, + { + "epoch": 18.698995194408038, + "grad_norm": 0.23596233129501343, + "learning_rate": 0.0006, + "loss": 3.9747462272644043, + "step": 1346 + }, + { + "epoch": 18.712975098296198, + "grad_norm": 0.24173159897327423, + "learning_rate": 0.0006, + "loss": 4.011804103851318, + "step": 1347 + }, + { + "epoch": 18.72695500218436, + "grad_norm": 0.24087604880332947, + "learning_rate": 0.0006, + "loss": 4.008726119995117, + "step": 1348 + }, + { + "epoch": 18.74093490607252, + "grad_norm": 0.2457292526960373, + "learning_rate": 0.0006, + "loss": 3.990793228149414, + "step": 1349 + }, + { + "epoch": 18.75491480996068, + "grad_norm": 0.22946089506149292, + "learning_rate": 0.0006, + "loss": 3.980494260787964, + "step": 1350 + }, + { + "epoch": 18.76889471384884, + "grad_norm": 0.22986692190170288, + "learning_rate": 0.0006, + "loss": 3.97006893157959, + "step": 1351 + }, + { + "epoch": 18.782874617737004, + "grad_norm": 0.23358555138111115, + "learning_rate": 0.0006, + "loss": 4.008172035217285, + "step": 1352 + }, + { + "epoch": 18.796854521625164, + "grad_norm": 0.20183615386486053, + "learning_rate": 0.0006, + "loss": 3.9720888137817383, + "step": 1353 + }, + { + "epoch": 18.810834425513324, + "grad_norm": 0.19975653290748596, + "learning_rate": 0.0006, + "loss": 3.9783310890197754, + "step": 1354 + }, + { + "epoch": 18.824814329401484, + "grad_norm": 0.18911021947860718, + "learning_rate": 0.0006, + "loss": 3.985982894897461, + "step": 1355 + }, + { + "epoch": 18.838794233289647, + "grad_norm": 0.15984168648719788, + "learning_rate": 0.0006, + "loss": 3.9740548133850098, + "step": 1356 + }, + { + "epoch": 18.852774137177807, + "grad_norm": 0.1755436211824417, + "learning_rate": 0.0006, + "loss": 4.013090133666992, + "step": 1357 + }, + { + "epoch": 18.866754041065967, + "grad_norm": 0.1798417866230011, + "learning_rate": 0.0006, + "loss": 3.997880697250366, + "step": 1358 + }, + { + "epoch": 18.88073394495413, + "grad_norm": 0.20206265151500702, + "learning_rate": 0.0006, + "loss": 3.9892373085021973, + "step": 1359 + }, + { + "epoch": 18.89471384884229, + "grad_norm": 0.23685456812381744, + "learning_rate": 0.0006, + "loss": 3.9909186363220215, + "step": 1360 + }, + { + "epoch": 18.90869375273045, + "grad_norm": 0.26053836941719055, + "learning_rate": 0.0006, + "loss": 4.00327205657959, + "step": 1361 + }, + { + "epoch": 18.92267365661861, + "grad_norm": 0.26215845346450806, + "learning_rate": 0.0006, + "loss": 3.9714717864990234, + "step": 1362 + }, + { + "epoch": 18.936653560506773, + "grad_norm": 0.2433871030807495, + "learning_rate": 0.0006, + "loss": 3.949416160583496, + "step": 1363 + }, + { + "epoch": 18.950633464394933, + "grad_norm": 0.23331883549690247, + "learning_rate": 0.0006, + "loss": 3.980501413345337, + "step": 1364 + }, + { + "epoch": 18.964613368283093, + "grad_norm": 0.2346954047679901, + "learning_rate": 0.0006, + "loss": 3.9974493980407715, + "step": 1365 + }, + { + "epoch": 18.978593272171253, + "grad_norm": 0.25101345777511597, + "learning_rate": 0.0006, + "loss": 3.9800148010253906, + "step": 1366 + }, + { + "epoch": 18.992573176059416, + "grad_norm": 0.26811933517456055, + "learning_rate": 0.0006, + "loss": 4.0065741539001465, + "step": 1367 + }, + { + "epoch": 19.0, + "grad_norm": 0.2731736898422241, + "learning_rate": 0.0006, + "loss": 4.014575481414795, + "step": 1368 + }, + { + "epoch": 19.0, + "eval_loss": 4.200716972351074, + "eval_runtime": 44.6962, + "eval_samples_per_second": 54.636, + "eval_steps_per_second": 3.423, + "step": 1368 + }, + { + "epoch": 19.01397990388816, + "grad_norm": 0.2517746686935425, + "learning_rate": 0.0006, + "loss": 3.9486539363861084, + "step": 1369 + }, + { + "epoch": 19.027959807776323, + "grad_norm": 0.2482699453830719, + "learning_rate": 0.0006, + "loss": 3.95015287399292, + "step": 1370 + }, + { + "epoch": 19.041939711664483, + "grad_norm": 0.21693618595600128, + "learning_rate": 0.0006, + "loss": 3.970022201538086, + "step": 1371 + }, + { + "epoch": 19.055919615552643, + "grad_norm": 0.2035159319639206, + "learning_rate": 0.0006, + "loss": 3.941457748413086, + "step": 1372 + }, + { + "epoch": 19.069899519440803, + "grad_norm": 0.2201429009437561, + "learning_rate": 0.0006, + "loss": 3.946794033050537, + "step": 1373 + }, + { + "epoch": 19.083879423328966, + "grad_norm": 0.22910255193710327, + "learning_rate": 0.0006, + "loss": 3.94606876373291, + "step": 1374 + }, + { + "epoch": 19.097859327217126, + "grad_norm": 0.22378197312355042, + "learning_rate": 0.0006, + "loss": 3.957899570465088, + "step": 1375 + }, + { + "epoch": 19.111839231105286, + "grad_norm": 0.21728114783763885, + "learning_rate": 0.0006, + "loss": 3.9565982818603516, + "step": 1376 + }, + { + "epoch": 19.125819134993446, + "grad_norm": 0.21887634694576263, + "learning_rate": 0.0006, + "loss": 3.9649534225463867, + "step": 1377 + }, + { + "epoch": 19.13979903888161, + "grad_norm": 0.21892991662025452, + "learning_rate": 0.0006, + "loss": 3.971388101577759, + "step": 1378 + }, + { + "epoch": 19.15377894276977, + "grad_norm": 0.24582402408123016, + "learning_rate": 0.0006, + "loss": 3.9370944499969482, + "step": 1379 + }, + { + "epoch": 19.16775884665793, + "grad_norm": 0.27547118067741394, + "learning_rate": 0.0006, + "loss": 3.939406156539917, + "step": 1380 + }, + { + "epoch": 19.18173875054609, + "grad_norm": 0.3131563365459442, + "learning_rate": 0.0006, + "loss": 3.942620277404785, + "step": 1381 + }, + { + "epoch": 19.195718654434252, + "grad_norm": 0.3211703598499298, + "learning_rate": 0.0006, + "loss": 3.9388349056243896, + "step": 1382 + }, + { + "epoch": 19.209698558322412, + "grad_norm": 0.2791919410228729, + "learning_rate": 0.0006, + "loss": 3.9827399253845215, + "step": 1383 + }, + { + "epoch": 19.22367846221057, + "grad_norm": 0.2872016727924347, + "learning_rate": 0.0006, + "loss": 3.976715087890625, + "step": 1384 + }, + { + "epoch": 19.23765836609873, + "grad_norm": 0.2790389060974121, + "learning_rate": 0.0006, + "loss": 3.952850818634033, + "step": 1385 + }, + { + "epoch": 19.251638269986895, + "grad_norm": 0.31903740763664246, + "learning_rate": 0.0006, + "loss": 3.964506149291992, + "step": 1386 + }, + { + "epoch": 19.265618173875055, + "grad_norm": 0.31013646721839905, + "learning_rate": 0.0006, + "loss": 3.967219352722168, + "step": 1387 + }, + { + "epoch": 19.279598077763215, + "grad_norm": 0.2574339509010315, + "learning_rate": 0.0006, + "loss": 3.979168176651001, + "step": 1388 + }, + { + "epoch": 19.293577981651374, + "grad_norm": 0.24621108174324036, + "learning_rate": 0.0006, + "loss": 3.981734275817871, + "step": 1389 + }, + { + "epoch": 19.307557885539538, + "grad_norm": 0.25113818049430847, + "learning_rate": 0.0006, + "loss": 3.9787755012512207, + "step": 1390 + }, + { + "epoch": 19.321537789427698, + "grad_norm": 0.259971022605896, + "learning_rate": 0.0006, + "loss": 3.9648823738098145, + "step": 1391 + }, + { + "epoch": 19.335517693315857, + "grad_norm": 0.22580404579639435, + "learning_rate": 0.0006, + "loss": 3.9658002853393555, + "step": 1392 + }, + { + "epoch": 19.34949759720402, + "grad_norm": 0.2133680284023285, + "learning_rate": 0.0006, + "loss": 3.9615914821624756, + "step": 1393 + }, + { + "epoch": 19.36347750109218, + "grad_norm": 0.2387680858373642, + "learning_rate": 0.0006, + "loss": 3.993811845779419, + "step": 1394 + }, + { + "epoch": 19.37745740498034, + "grad_norm": 0.26086220145225525, + "learning_rate": 0.0006, + "loss": 3.932701826095581, + "step": 1395 + }, + { + "epoch": 19.3914373088685, + "grad_norm": 0.23255233466625214, + "learning_rate": 0.0006, + "loss": 3.8969321250915527, + "step": 1396 + }, + { + "epoch": 19.405417212756664, + "grad_norm": 0.22894541919231415, + "learning_rate": 0.0006, + "loss": 3.9569311141967773, + "step": 1397 + }, + { + "epoch": 19.419397116644824, + "grad_norm": 0.2254200130701065, + "learning_rate": 0.0006, + "loss": 3.953199863433838, + "step": 1398 + }, + { + "epoch": 19.433377020532983, + "grad_norm": 0.25802481174468994, + "learning_rate": 0.0006, + "loss": 3.9714815616607666, + "step": 1399 + }, + { + "epoch": 19.447356924421143, + "grad_norm": 0.24725162982940674, + "learning_rate": 0.0006, + "loss": 3.957339286804199, + "step": 1400 + }, + { + "epoch": 19.461336828309307, + "grad_norm": 0.2162018120288849, + "learning_rate": 0.0006, + "loss": 3.986801862716675, + "step": 1401 + }, + { + "epoch": 19.475316732197467, + "grad_norm": 0.21530906856060028, + "learning_rate": 0.0006, + "loss": 3.9766759872436523, + "step": 1402 + }, + { + "epoch": 19.489296636085626, + "grad_norm": 0.20260323584079742, + "learning_rate": 0.0006, + "loss": 3.9576425552368164, + "step": 1403 + }, + { + "epoch": 19.503276539973786, + "grad_norm": 0.188974529504776, + "learning_rate": 0.0006, + "loss": 3.9852395057678223, + "step": 1404 + }, + { + "epoch": 19.51725644386195, + "grad_norm": 0.19727374613285065, + "learning_rate": 0.0006, + "loss": 3.972484588623047, + "step": 1405 + }, + { + "epoch": 19.53123634775011, + "grad_norm": 0.23708008229732513, + "learning_rate": 0.0006, + "loss": 3.992471694946289, + "step": 1406 + }, + { + "epoch": 19.54521625163827, + "grad_norm": 0.23783449828624725, + "learning_rate": 0.0006, + "loss": 3.9788265228271484, + "step": 1407 + }, + { + "epoch": 19.55919615552643, + "grad_norm": 0.24744364619255066, + "learning_rate": 0.0006, + "loss": 3.9559011459350586, + "step": 1408 + }, + { + "epoch": 19.573176059414592, + "grad_norm": 0.24828094244003296, + "learning_rate": 0.0006, + "loss": 3.9663949012756348, + "step": 1409 + }, + { + "epoch": 19.587155963302752, + "grad_norm": 0.2681315541267395, + "learning_rate": 0.0006, + "loss": 3.9581191539764404, + "step": 1410 + }, + { + "epoch": 19.601135867190912, + "grad_norm": 0.2691532373428345, + "learning_rate": 0.0006, + "loss": 3.9832754135131836, + "step": 1411 + }, + { + "epoch": 19.615115771079076, + "grad_norm": 0.2900252640247345, + "learning_rate": 0.0006, + "loss": 3.984365940093994, + "step": 1412 + }, + { + "epoch": 19.629095674967235, + "grad_norm": 0.3194943070411682, + "learning_rate": 0.0006, + "loss": 3.9856505393981934, + "step": 1413 + }, + { + "epoch": 19.643075578855395, + "grad_norm": 0.3029029071331024, + "learning_rate": 0.0006, + "loss": 3.968992233276367, + "step": 1414 + }, + { + "epoch": 19.657055482743555, + "grad_norm": 0.2658176124095917, + "learning_rate": 0.0006, + "loss": 3.995187282562256, + "step": 1415 + }, + { + "epoch": 19.67103538663172, + "grad_norm": 0.26807504892349243, + "learning_rate": 0.0006, + "loss": 3.9756274223327637, + "step": 1416 + }, + { + "epoch": 19.68501529051988, + "grad_norm": 0.27718642354011536, + "learning_rate": 0.0006, + "loss": 3.9510018825531006, + "step": 1417 + }, + { + "epoch": 19.698995194408038, + "grad_norm": 0.26322051882743835, + "learning_rate": 0.0006, + "loss": 3.965155601501465, + "step": 1418 + }, + { + "epoch": 19.712975098296198, + "grad_norm": 0.2566570043563843, + "learning_rate": 0.0006, + "loss": 3.984218120574951, + "step": 1419 + }, + { + "epoch": 19.72695500218436, + "grad_norm": 0.2218743860721588, + "learning_rate": 0.0006, + "loss": 3.9338784217834473, + "step": 1420 + }, + { + "epoch": 19.74093490607252, + "grad_norm": 0.22894173860549927, + "learning_rate": 0.0006, + "loss": 3.9869046211242676, + "step": 1421 + }, + { + "epoch": 19.75491480996068, + "grad_norm": 0.26837027072906494, + "learning_rate": 0.0006, + "loss": 3.96799898147583, + "step": 1422 + }, + { + "epoch": 19.76889471384884, + "grad_norm": 0.2767876982688904, + "learning_rate": 0.0006, + "loss": 3.9431071281433105, + "step": 1423 + }, + { + "epoch": 19.782874617737004, + "grad_norm": 0.24402284622192383, + "learning_rate": 0.0006, + "loss": 3.9631881713867188, + "step": 1424 + }, + { + "epoch": 19.796854521625164, + "grad_norm": 0.23500724136829376, + "learning_rate": 0.0006, + "loss": 3.9943337440490723, + "step": 1425 + }, + { + "epoch": 19.810834425513324, + "grad_norm": 0.22509142756462097, + "learning_rate": 0.0006, + "loss": 3.961226224899292, + "step": 1426 + }, + { + "epoch": 19.824814329401484, + "grad_norm": 0.23524795472621918, + "learning_rate": 0.0006, + "loss": 3.9552102088928223, + "step": 1427 + }, + { + "epoch": 19.838794233289647, + "grad_norm": 0.22307050228118896, + "learning_rate": 0.0006, + "loss": 3.9623494148254395, + "step": 1428 + }, + { + "epoch": 19.852774137177807, + "grad_norm": 0.21144486963748932, + "learning_rate": 0.0006, + "loss": 3.9620237350463867, + "step": 1429 + }, + { + "epoch": 19.866754041065967, + "grad_norm": 0.20249812304973602, + "learning_rate": 0.0006, + "loss": 3.953911066055298, + "step": 1430 + }, + { + "epoch": 19.88073394495413, + "grad_norm": 0.2350354939699173, + "learning_rate": 0.0006, + "loss": 3.9616730213165283, + "step": 1431 + }, + { + "epoch": 19.89471384884229, + "grad_norm": 0.2566683292388916, + "learning_rate": 0.0006, + "loss": 3.9372501373291016, + "step": 1432 + }, + { + "epoch": 19.90869375273045, + "grad_norm": 0.2520846128463745, + "learning_rate": 0.0006, + "loss": 3.9814648628234863, + "step": 1433 + }, + { + "epoch": 19.92267365661861, + "grad_norm": 0.23989640176296234, + "learning_rate": 0.0006, + "loss": 3.9692864418029785, + "step": 1434 + }, + { + "epoch": 19.936653560506773, + "grad_norm": 0.20650425553321838, + "learning_rate": 0.0006, + "loss": 3.960256814956665, + "step": 1435 + }, + { + "epoch": 19.950633464394933, + "grad_norm": 0.20478376746177673, + "learning_rate": 0.0006, + "loss": 3.9585227966308594, + "step": 1436 + }, + { + "epoch": 19.964613368283093, + "grad_norm": 0.234436497092247, + "learning_rate": 0.0006, + "loss": 3.945631742477417, + "step": 1437 + }, + { + "epoch": 19.978593272171253, + "grad_norm": 0.19969749450683594, + "learning_rate": 0.0006, + "loss": 3.9646050930023193, + "step": 1438 + }, + { + "epoch": 19.992573176059416, + "grad_norm": 0.20638690888881683, + "learning_rate": 0.0006, + "loss": 3.9461846351623535, + "step": 1439 + }, + { + "epoch": 20.0, + "grad_norm": 0.2120274156332016, + "learning_rate": 0.0006, + "loss": 3.965153217315674, + "step": 1440 + }, + { + "epoch": 20.0, + "eval_loss": 4.168524742126465, + "eval_runtime": 44.2796, + "eval_samples_per_second": 55.15, + "eval_steps_per_second": 3.455, + "step": 1440 + }, + { + "epoch": 20.01397990388816, + "grad_norm": 0.19704894721508026, + "learning_rate": 0.0006, + "loss": 3.937016248703003, + "step": 1441 + }, + { + "epoch": 20.027959807776323, + "grad_norm": 0.18682368099689484, + "learning_rate": 0.0006, + "loss": 3.895922899246216, + "step": 1442 + }, + { + "epoch": 20.041939711664483, + "grad_norm": 0.18982571363449097, + "learning_rate": 0.0006, + "loss": 3.929841995239258, + "step": 1443 + }, + { + "epoch": 20.055919615552643, + "grad_norm": 0.20811910927295685, + "learning_rate": 0.0006, + "loss": 3.9498324394226074, + "step": 1444 + }, + { + "epoch": 20.069899519440803, + "grad_norm": 0.2149062603712082, + "learning_rate": 0.0006, + "loss": 3.929853916168213, + "step": 1445 + }, + { + "epoch": 20.083879423328966, + "grad_norm": 0.20016685128211975, + "learning_rate": 0.0006, + "loss": 3.9374136924743652, + "step": 1446 + }, + { + "epoch": 20.097859327217126, + "grad_norm": 0.19969616830348969, + "learning_rate": 0.0006, + "loss": 3.932447910308838, + "step": 1447 + }, + { + "epoch": 20.111839231105286, + "grad_norm": 0.2163356989622116, + "learning_rate": 0.0006, + "loss": 3.9325437545776367, + "step": 1448 + }, + { + "epoch": 20.125819134993446, + "grad_norm": 0.22026969492435455, + "learning_rate": 0.0006, + "loss": 3.9118852615356445, + "step": 1449 + }, + { + "epoch": 20.13979903888161, + "grad_norm": 0.23337116837501526, + "learning_rate": 0.0006, + "loss": 3.9416019916534424, + "step": 1450 + }, + { + "epoch": 20.15377894276977, + "grad_norm": 0.23971447348594666, + "learning_rate": 0.0006, + "loss": 3.9416871070861816, + "step": 1451 + }, + { + "epoch": 20.16775884665793, + "grad_norm": 0.25973960757255554, + "learning_rate": 0.0006, + "loss": 3.93826961517334, + "step": 1452 + }, + { + "epoch": 20.18173875054609, + "grad_norm": 0.2303445190191269, + "learning_rate": 0.0006, + "loss": 3.909383535385132, + "step": 1453 + }, + { + "epoch": 20.195718654434252, + "grad_norm": 0.21090206503868103, + "learning_rate": 0.0006, + "loss": 3.935939311981201, + "step": 1454 + }, + { + "epoch": 20.209698558322412, + "grad_norm": 0.2278691977262497, + "learning_rate": 0.0006, + "loss": 3.9623684883117676, + "step": 1455 + }, + { + "epoch": 20.22367846221057, + "grad_norm": 0.22291512787342072, + "learning_rate": 0.0006, + "loss": 3.9386210441589355, + "step": 1456 + }, + { + "epoch": 20.23765836609873, + "grad_norm": 0.2385793924331665, + "learning_rate": 0.0006, + "loss": 3.927365303039551, + "step": 1457 + }, + { + "epoch": 20.251638269986895, + "grad_norm": 0.23949867486953735, + "learning_rate": 0.0006, + "loss": 3.956698179244995, + "step": 1458 + }, + { + "epoch": 20.265618173875055, + "grad_norm": 0.2232269048690796, + "learning_rate": 0.0006, + "loss": 3.9465065002441406, + "step": 1459 + }, + { + "epoch": 20.279598077763215, + "grad_norm": 0.22286680340766907, + "learning_rate": 0.0006, + "loss": 3.9102284908294678, + "step": 1460 + }, + { + "epoch": 20.293577981651374, + "grad_norm": 0.24039050936698914, + "learning_rate": 0.0006, + "loss": 3.928055763244629, + "step": 1461 + }, + { + "epoch": 20.307557885539538, + "grad_norm": 0.2532738447189331, + "learning_rate": 0.0006, + "loss": 3.931753635406494, + "step": 1462 + }, + { + "epoch": 20.321537789427698, + "grad_norm": 0.2206273376941681, + "learning_rate": 0.0006, + "loss": 3.936119556427002, + "step": 1463 + }, + { + "epoch": 20.335517693315857, + "grad_norm": 0.20918945968151093, + "learning_rate": 0.0006, + "loss": 3.9228529930114746, + "step": 1464 + }, + { + "epoch": 20.34949759720402, + "grad_norm": 0.2324502319097519, + "learning_rate": 0.0006, + "loss": 3.9370768070220947, + "step": 1465 + }, + { + "epoch": 20.36347750109218, + "grad_norm": 0.26811033487319946, + "learning_rate": 0.0006, + "loss": 3.968515396118164, + "step": 1466 + }, + { + "epoch": 20.37745740498034, + "grad_norm": 0.2896045744419098, + "learning_rate": 0.0006, + "loss": 3.945124626159668, + "step": 1467 + }, + { + "epoch": 20.3914373088685, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 3.9399516582489014, + "step": 1468 + }, + { + "epoch": 20.405417212756664, + "grad_norm": 0.3076821565628052, + "learning_rate": 0.0006, + "loss": 3.9545583724975586, + "step": 1469 + }, + { + "epoch": 20.419397116644824, + "grad_norm": 0.3019449710845947, + "learning_rate": 0.0006, + "loss": 3.9502270221710205, + "step": 1470 + }, + { + "epoch": 20.433377020532983, + "grad_norm": 0.31832560896873474, + "learning_rate": 0.0006, + "loss": 3.940439224243164, + "step": 1471 + }, + { + "epoch": 20.447356924421143, + "grad_norm": 0.30303657054901123, + "learning_rate": 0.0006, + "loss": 3.9451770782470703, + "step": 1472 + }, + { + "epoch": 20.461336828309307, + "grad_norm": 0.28122979402542114, + "learning_rate": 0.0006, + "loss": 3.934508800506592, + "step": 1473 + }, + { + "epoch": 20.475316732197467, + "grad_norm": 0.27013441920280457, + "learning_rate": 0.0006, + "loss": 3.924323081970215, + "step": 1474 + }, + { + "epoch": 20.489296636085626, + "grad_norm": 0.29052063822746277, + "learning_rate": 0.0006, + "loss": 3.970916748046875, + "step": 1475 + }, + { + "epoch": 20.503276539973786, + "grad_norm": 0.2871626913547516, + "learning_rate": 0.0006, + "loss": 3.945425033569336, + "step": 1476 + }, + { + "epoch": 20.51725644386195, + "grad_norm": 0.2396184206008911, + "learning_rate": 0.0006, + "loss": 3.964290142059326, + "step": 1477 + }, + { + "epoch": 20.53123634775011, + "grad_norm": 0.21942107379436493, + "learning_rate": 0.0006, + "loss": 3.910101890563965, + "step": 1478 + }, + { + "epoch": 20.54521625163827, + "grad_norm": 0.22193685173988342, + "learning_rate": 0.0006, + "loss": 3.914005756378174, + "step": 1479 + }, + { + "epoch": 20.55919615552643, + "grad_norm": 0.20207515358924866, + "learning_rate": 0.0006, + "loss": 3.9575581550598145, + "step": 1480 + }, + { + "epoch": 20.573176059414592, + "grad_norm": 0.17855247855186462, + "learning_rate": 0.0006, + "loss": 3.941490411758423, + "step": 1481 + }, + { + "epoch": 20.587155963302752, + "grad_norm": 0.21268485486507416, + "learning_rate": 0.0006, + "loss": 3.94045352935791, + "step": 1482 + }, + { + "epoch": 20.601135867190912, + "grad_norm": 0.24890053272247314, + "learning_rate": 0.0006, + "loss": 3.932961940765381, + "step": 1483 + }, + { + "epoch": 20.615115771079076, + "grad_norm": 0.23771314322948456, + "learning_rate": 0.0006, + "loss": 3.9067630767822266, + "step": 1484 + }, + { + "epoch": 20.629095674967235, + "grad_norm": 0.20990237593650818, + "learning_rate": 0.0006, + "loss": 3.9476752281188965, + "step": 1485 + }, + { + "epoch": 20.643075578855395, + "grad_norm": 0.20058798789978027, + "learning_rate": 0.0006, + "loss": 3.9350547790527344, + "step": 1486 + }, + { + "epoch": 20.657055482743555, + "grad_norm": 0.1953001767396927, + "learning_rate": 0.0006, + "loss": 3.9437222480773926, + "step": 1487 + }, + { + "epoch": 20.67103538663172, + "grad_norm": 0.18748535215854645, + "learning_rate": 0.0006, + "loss": 3.9336047172546387, + "step": 1488 + }, + { + "epoch": 20.68501529051988, + "grad_norm": 0.18874801695346832, + "learning_rate": 0.0006, + "loss": 3.9042580127716064, + "step": 1489 + }, + { + "epoch": 20.698995194408038, + "grad_norm": 0.1844169795513153, + "learning_rate": 0.0006, + "loss": 3.9302420616149902, + "step": 1490 + }, + { + "epoch": 20.712975098296198, + "grad_norm": 0.18519413471221924, + "learning_rate": 0.0006, + "loss": 3.9527437686920166, + "step": 1491 + }, + { + "epoch": 20.72695500218436, + "grad_norm": 0.20084598660469055, + "learning_rate": 0.0006, + "loss": 3.9161760807037354, + "step": 1492 + }, + { + "epoch": 20.74093490607252, + "grad_norm": 0.2015734612941742, + "learning_rate": 0.0006, + "loss": 3.9466545581817627, + "step": 1493 + }, + { + "epoch": 20.75491480996068, + "grad_norm": 0.2210122048854828, + "learning_rate": 0.0006, + "loss": 3.8994693756103516, + "step": 1494 + }, + { + "epoch": 20.76889471384884, + "grad_norm": 0.23019762337207794, + "learning_rate": 0.0006, + "loss": 3.93685245513916, + "step": 1495 + }, + { + "epoch": 20.782874617737004, + "grad_norm": 0.21246281266212463, + "learning_rate": 0.0006, + "loss": 3.9499399662017822, + "step": 1496 + }, + { + "epoch": 20.796854521625164, + "grad_norm": 0.21142810583114624, + "learning_rate": 0.0006, + "loss": 3.9317150115966797, + "step": 1497 + }, + { + "epoch": 20.810834425513324, + "grad_norm": 0.20230524241924286, + "learning_rate": 0.0006, + "loss": 3.9389750957489014, + "step": 1498 + }, + { + "epoch": 20.824814329401484, + "grad_norm": 0.21096977591514587, + "learning_rate": 0.0006, + "loss": 3.9325194358825684, + "step": 1499 + }, + { + "epoch": 20.838794233289647, + "grad_norm": 0.2309989333152771, + "learning_rate": 0.0006, + "loss": 3.943641185760498, + "step": 1500 + }, + { + "epoch": 20.852774137177807, + "grad_norm": 0.2016306221485138, + "learning_rate": 0.0006, + "loss": 3.986043930053711, + "step": 1501 + }, + { + "epoch": 20.866754041065967, + "grad_norm": 0.2107970118522644, + "learning_rate": 0.0006, + "loss": 3.9219160079956055, + "step": 1502 + }, + { + "epoch": 20.88073394495413, + "grad_norm": 0.21580125391483307, + "learning_rate": 0.0006, + "loss": 3.942014694213867, + "step": 1503 + }, + { + "epoch": 20.89471384884229, + "grad_norm": 0.21348726749420166, + "learning_rate": 0.0006, + "loss": 3.9389920234680176, + "step": 1504 + }, + { + "epoch": 20.90869375273045, + "grad_norm": 0.23094943165779114, + "learning_rate": 0.0006, + "loss": 3.952993392944336, + "step": 1505 + }, + { + "epoch": 20.92267365661861, + "grad_norm": 0.22431740164756775, + "learning_rate": 0.0006, + "loss": 3.897671937942505, + "step": 1506 + }, + { + "epoch": 20.936653560506773, + "grad_norm": 0.20056353509426117, + "learning_rate": 0.0006, + "loss": 3.9100005626678467, + "step": 1507 + }, + { + "epoch": 20.950633464394933, + "grad_norm": 0.20604434609413147, + "learning_rate": 0.0006, + "loss": 3.9486045837402344, + "step": 1508 + }, + { + "epoch": 20.964613368283093, + "grad_norm": 0.22979380190372467, + "learning_rate": 0.0006, + "loss": 3.977163553237915, + "step": 1509 + }, + { + "epoch": 20.978593272171253, + "grad_norm": 0.2421523779630661, + "learning_rate": 0.0006, + "loss": 3.9216256141662598, + "step": 1510 + }, + { + "epoch": 20.992573176059416, + "grad_norm": 0.25776705145835876, + "learning_rate": 0.0006, + "loss": 3.9221739768981934, + "step": 1511 + }, + { + "epoch": 21.0, + "grad_norm": 0.2750694751739502, + "learning_rate": 0.0006, + "loss": 3.938098907470703, + "step": 1512 + }, + { + "epoch": 21.0, + "eval_loss": 4.159763336181641, + "eval_runtime": 44.8663, + "eval_samples_per_second": 54.428, + "eval_steps_per_second": 3.41, + "step": 1512 + }, + { + "epoch": 21.01397990388816, + "grad_norm": 0.24513043463230133, + "learning_rate": 0.0006, + "loss": 3.8939385414123535, + "step": 1513 + }, + { + "epoch": 21.027959807776323, + "grad_norm": 0.22209352254867554, + "learning_rate": 0.0006, + "loss": 3.9044857025146484, + "step": 1514 + }, + { + "epoch": 21.041939711664483, + "grad_norm": 0.22437648475170135, + "learning_rate": 0.0006, + "loss": 3.9325196743011475, + "step": 1515 + }, + { + "epoch": 21.055919615552643, + "grad_norm": 0.21168062090873718, + "learning_rate": 0.0006, + "loss": 3.882176637649536, + "step": 1516 + }, + { + "epoch": 21.069899519440803, + "grad_norm": 0.22334499657154083, + "learning_rate": 0.0006, + "loss": 3.8978934288024902, + "step": 1517 + }, + { + "epoch": 21.083879423328966, + "grad_norm": 0.21038010716438293, + "learning_rate": 0.0006, + "loss": 3.8807029724121094, + "step": 1518 + }, + { + "epoch": 21.097859327217126, + "grad_norm": 0.2243613600730896, + "learning_rate": 0.0006, + "loss": 3.924865961074829, + "step": 1519 + }, + { + "epoch": 21.111839231105286, + "grad_norm": 0.2535616159439087, + "learning_rate": 0.0006, + "loss": 3.9288227558135986, + "step": 1520 + }, + { + "epoch": 21.125819134993446, + "grad_norm": 0.2782756984233856, + "learning_rate": 0.0006, + "loss": 3.908233642578125, + "step": 1521 + }, + { + "epoch": 21.13979903888161, + "grad_norm": 0.2586214542388916, + "learning_rate": 0.0006, + "loss": 3.9151182174682617, + "step": 1522 + }, + { + "epoch": 21.15377894276977, + "grad_norm": 0.22465091943740845, + "learning_rate": 0.0006, + "loss": 3.9209084510803223, + "step": 1523 + }, + { + "epoch": 21.16775884665793, + "grad_norm": 0.2588018774986267, + "learning_rate": 0.0006, + "loss": 3.9295971393585205, + "step": 1524 + }, + { + "epoch": 21.18173875054609, + "grad_norm": 0.2637675702571869, + "learning_rate": 0.0006, + "loss": 3.9353199005126953, + "step": 1525 + }, + { + "epoch": 21.195718654434252, + "grad_norm": 0.2806383967399597, + "learning_rate": 0.0006, + "loss": 3.922337770462036, + "step": 1526 + }, + { + "epoch": 21.209698558322412, + "grad_norm": 0.27103501558303833, + "learning_rate": 0.0006, + "loss": 3.8811073303222656, + "step": 1527 + }, + { + "epoch": 21.22367846221057, + "grad_norm": 0.27203720808029175, + "learning_rate": 0.0006, + "loss": 3.9036178588867188, + "step": 1528 + }, + { + "epoch": 21.23765836609873, + "grad_norm": 0.2783355712890625, + "learning_rate": 0.0006, + "loss": 3.885456085205078, + "step": 1529 + }, + { + "epoch": 21.251638269986895, + "grad_norm": 0.2884930968284607, + "learning_rate": 0.0006, + "loss": 3.8936941623687744, + "step": 1530 + }, + { + "epoch": 21.265618173875055, + "grad_norm": 0.2829558849334717, + "learning_rate": 0.0006, + "loss": 3.927624225616455, + "step": 1531 + }, + { + "epoch": 21.279598077763215, + "grad_norm": 0.2809497117996216, + "learning_rate": 0.0006, + "loss": 3.8896753787994385, + "step": 1532 + }, + { + "epoch": 21.293577981651374, + "grad_norm": 0.27037671208381653, + "learning_rate": 0.0006, + "loss": 3.91316294670105, + "step": 1533 + }, + { + "epoch": 21.307557885539538, + "grad_norm": 0.310051292181015, + "learning_rate": 0.0006, + "loss": 3.9137332439422607, + "step": 1534 + }, + { + "epoch": 21.321537789427698, + "grad_norm": 0.30489876866340637, + "learning_rate": 0.0006, + "loss": 3.9088284969329834, + "step": 1535 + }, + { + "epoch": 21.335517693315857, + "grad_norm": 0.2607756555080414, + "learning_rate": 0.0006, + "loss": 3.9097847938537598, + "step": 1536 + }, + { + "epoch": 21.34949759720402, + "grad_norm": 0.2460775375366211, + "learning_rate": 0.0006, + "loss": 3.941211700439453, + "step": 1537 + }, + { + "epoch": 21.36347750109218, + "grad_norm": 0.24271734058856964, + "learning_rate": 0.0006, + "loss": 3.9140594005584717, + "step": 1538 + }, + { + "epoch": 21.37745740498034, + "grad_norm": 0.20012645423412323, + "learning_rate": 0.0006, + "loss": 3.888446807861328, + "step": 1539 + }, + { + "epoch": 21.3914373088685, + "grad_norm": 0.2196308672428131, + "learning_rate": 0.0006, + "loss": 3.9153785705566406, + "step": 1540 + }, + { + "epoch": 21.405417212756664, + "grad_norm": 0.22184589505195618, + "learning_rate": 0.0006, + "loss": 3.91996431350708, + "step": 1541 + }, + { + "epoch": 21.419397116644824, + "grad_norm": 0.22947315871715546, + "learning_rate": 0.0006, + "loss": 3.9268412590026855, + "step": 1542 + }, + { + "epoch": 21.433377020532983, + "grad_norm": 0.22275054454803467, + "learning_rate": 0.0006, + "loss": 3.909275531768799, + "step": 1543 + }, + { + "epoch": 21.447356924421143, + "grad_norm": 0.23103971779346466, + "learning_rate": 0.0006, + "loss": 3.925635814666748, + "step": 1544 + }, + { + "epoch": 21.461336828309307, + "grad_norm": 0.23379720747470856, + "learning_rate": 0.0006, + "loss": 3.926647186279297, + "step": 1545 + }, + { + "epoch": 21.475316732197467, + "grad_norm": 0.2244282215833664, + "learning_rate": 0.0006, + "loss": 3.9428000450134277, + "step": 1546 + }, + { + "epoch": 21.489296636085626, + "grad_norm": 0.22773298621177673, + "learning_rate": 0.0006, + "loss": 3.9378256797790527, + "step": 1547 + }, + { + "epoch": 21.503276539973786, + "grad_norm": 0.1918657273054123, + "learning_rate": 0.0006, + "loss": 3.904022216796875, + "step": 1548 + }, + { + "epoch": 21.51725644386195, + "grad_norm": 0.18415570259094238, + "learning_rate": 0.0006, + "loss": 3.9105122089385986, + "step": 1549 + }, + { + "epoch": 21.53123634775011, + "grad_norm": 0.22141380608081818, + "learning_rate": 0.0006, + "loss": 3.9153857231140137, + "step": 1550 + }, + { + "epoch": 21.54521625163827, + "grad_norm": 0.22533352673053741, + "learning_rate": 0.0006, + "loss": 3.9148974418640137, + "step": 1551 + }, + { + "epoch": 21.55919615552643, + "grad_norm": 0.2124762088060379, + "learning_rate": 0.0006, + "loss": 3.926311731338501, + "step": 1552 + }, + { + "epoch": 21.573176059414592, + "grad_norm": 0.239680215716362, + "learning_rate": 0.0006, + "loss": 3.9260334968566895, + "step": 1553 + }, + { + "epoch": 21.587155963302752, + "grad_norm": 0.24158740043640137, + "learning_rate": 0.0006, + "loss": 3.933223247528076, + "step": 1554 + }, + { + "epoch": 21.601135867190912, + "grad_norm": 0.2216576784849167, + "learning_rate": 0.0006, + "loss": 3.9065442085266113, + "step": 1555 + }, + { + "epoch": 21.615115771079076, + "grad_norm": 0.20099912583827972, + "learning_rate": 0.0006, + "loss": 3.923278570175171, + "step": 1556 + }, + { + "epoch": 21.629095674967235, + "grad_norm": 0.2337288111448288, + "learning_rate": 0.0006, + "loss": 3.92032527923584, + "step": 1557 + }, + { + "epoch": 21.643075578855395, + "grad_norm": 0.23574814200401306, + "learning_rate": 0.0006, + "loss": 3.896244525909424, + "step": 1558 + }, + { + "epoch": 21.657055482743555, + "grad_norm": 0.21338573098182678, + "learning_rate": 0.0006, + "loss": 3.930345058441162, + "step": 1559 + }, + { + "epoch": 21.67103538663172, + "grad_norm": 0.2375067174434662, + "learning_rate": 0.0006, + "loss": 3.864104986190796, + "step": 1560 + }, + { + "epoch": 21.68501529051988, + "grad_norm": 0.22490349411964417, + "learning_rate": 0.0006, + "loss": 3.883296012878418, + "step": 1561 + }, + { + "epoch": 21.698995194408038, + "grad_norm": 0.23021313548088074, + "learning_rate": 0.0006, + "loss": 3.915200710296631, + "step": 1562 + }, + { + "epoch": 21.712975098296198, + "grad_norm": 0.22590875625610352, + "learning_rate": 0.0006, + "loss": 3.903597354888916, + "step": 1563 + }, + { + "epoch": 21.72695500218436, + "grad_norm": 0.19066260755062103, + "learning_rate": 0.0006, + "loss": 3.9162631034851074, + "step": 1564 + }, + { + "epoch": 21.74093490607252, + "grad_norm": 0.18134327232837677, + "learning_rate": 0.0006, + "loss": 3.9167914390563965, + "step": 1565 + }, + { + "epoch": 21.75491480996068, + "grad_norm": 0.1782190054655075, + "learning_rate": 0.0006, + "loss": 3.900925636291504, + "step": 1566 + }, + { + "epoch": 21.76889471384884, + "grad_norm": 0.19034099578857422, + "learning_rate": 0.0006, + "loss": 3.896559238433838, + "step": 1567 + }, + { + "epoch": 21.782874617737004, + "grad_norm": 0.21509577333927155, + "learning_rate": 0.0006, + "loss": 3.891681671142578, + "step": 1568 + }, + { + "epoch": 21.796854521625164, + "grad_norm": 0.2370351105928421, + "learning_rate": 0.0006, + "loss": 3.886570453643799, + "step": 1569 + }, + { + "epoch": 21.810834425513324, + "grad_norm": 0.25546324253082275, + "learning_rate": 0.0006, + "loss": 3.9247193336486816, + "step": 1570 + }, + { + "epoch": 21.824814329401484, + "grad_norm": 0.2513384222984314, + "learning_rate": 0.0006, + "loss": 3.9120583534240723, + "step": 1571 + }, + { + "epoch": 21.838794233289647, + "grad_norm": 0.24691323935985565, + "learning_rate": 0.0006, + "loss": 3.9144935607910156, + "step": 1572 + }, + { + "epoch": 21.852774137177807, + "grad_norm": 0.2573968172073364, + "learning_rate": 0.0006, + "loss": 3.9517531394958496, + "step": 1573 + }, + { + "epoch": 21.866754041065967, + "grad_norm": 0.25461453199386597, + "learning_rate": 0.0006, + "loss": 3.93508243560791, + "step": 1574 + }, + { + "epoch": 21.88073394495413, + "grad_norm": 0.23756568133831024, + "learning_rate": 0.0006, + "loss": 3.8885269165039062, + "step": 1575 + }, + { + "epoch": 21.89471384884229, + "grad_norm": 0.2193172425031662, + "learning_rate": 0.0006, + "loss": 3.9103426933288574, + "step": 1576 + }, + { + "epoch": 21.90869375273045, + "grad_norm": 0.2350149303674698, + "learning_rate": 0.0006, + "loss": 3.9399590492248535, + "step": 1577 + }, + { + "epoch": 21.92267365661861, + "grad_norm": 0.23759333789348602, + "learning_rate": 0.0006, + "loss": 3.9433584213256836, + "step": 1578 + }, + { + "epoch": 21.936653560506773, + "grad_norm": 0.21108432114124298, + "learning_rate": 0.0006, + "loss": 3.9241819381713867, + "step": 1579 + }, + { + "epoch": 21.950633464394933, + "grad_norm": 0.22088949382305145, + "learning_rate": 0.0006, + "loss": 3.9231910705566406, + "step": 1580 + }, + { + "epoch": 21.964613368283093, + "grad_norm": 0.22125045955181122, + "learning_rate": 0.0006, + "loss": 3.896329164505005, + "step": 1581 + }, + { + "epoch": 21.978593272171253, + "grad_norm": 0.20745202898979187, + "learning_rate": 0.0006, + "loss": 3.8920536041259766, + "step": 1582 + }, + { + "epoch": 21.992573176059416, + "grad_norm": 0.2409721463918686, + "learning_rate": 0.0006, + "loss": 3.9061317443847656, + "step": 1583 + }, + { + "epoch": 22.0, + "grad_norm": 0.2669669985771179, + "learning_rate": 0.0006, + "loss": 3.922062397003174, + "step": 1584 + }, + { + "epoch": 22.0, + "eval_loss": 4.140966415405273, + "eval_runtime": 46.7132, + "eval_samples_per_second": 52.276, + "eval_steps_per_second": 3.275, + "step": 1584 + }, + { + "epoch": 22.01397990388816, + "grad_norm": 0.26155969500541687, + "learning_rate": 0.0006, + "loss": 3.888944625854492, + "step": 1585 + }, + { + "epoch": 22.027959807776323, + "grad_norm": 0.2579149007797241, + "learning_rate": 0.0006, + "loss": 3.8924355506896973, + "step": 1586 + }, + { + "epoch": 22.041939711664483, + "grad_norm": 0.2429896742105484, + "learning_rate": 0.0006, + "loss": 3.8714070320129395, + "step": 1587 + }, + { + "epoch": 22.055919615552643, + "grad_norm": 0.23497673869132996, + "learning_rate": 0.0006, + "loss": 3.905089855194092, + "step": 1588 + }, + { + "epoch": 22.069899519440803, + "grad_norm": 0.24074940383434296, + "learning_rate": 0.0006, + "loss": 3.886845111846924, + "step": 1589 + }, + { + "epoch": 22.083879423328966, + "grad_norm": 0.2226274162530899, + "learning_rate": 0.0006, + "loss": 3.8554329872131348, + "step": 1590 + }, + { + "epoch": 22.097859327217126, + "grad_norm": 0.22924423217773438, + "learning_rate": 0.0006, + "loss": 3.8914356231689453, + "step": 1591 + }, + { + "epoch": 22.111839231105286, + "grad_norm": 0.2459387183189392, + "learning_rate": 0.0006, + "loss": 3.902522087097168, + "step": 1592 + }, + { + "epoch": 22.125819134993446, + "grad_norm": 0.2704590857028961, + "learning_rate": 0.0006, + "loss": 3.896497964859009, + "step": 1593 + }, + { + "epoch": 22.13979903888161, + "grad_norm": 0.2848219871520996, + "learning_rate": 0.0006, + "loss": 3.88423228263855, + "step": 1594 + }, + { + "epoch": 22.15377894276977, + "grad_norm": 0.22996552288532257, + "learning_rate": 0.0006, + "loss": 3.9034953117370605, + "step": 1595 + }, + { + "epoch": 22.16775884665793, + "grad_norm": 0.2117270529270172, + "learning_rate": 0.0006, + "loss": 3.888279914855957, + "step": 1596 + }, + { + "epoch": 22.18173875054609, + "grad_norm": 0.19724160432815552, + "learning_rate": 0.0006, + "loss": 3.860525131225586, + "step": 1597 + }, + { + "epoch": 22.195718654434252, + "grad_norm": 0.2012624740600586, + "learning_rate": 0.0006, + "loss": 3.8930106163024902, + "step": 1598 + }, + { + "epoch": 22.209698558322412, + "grad_norm": 0.20243871212005615, + "learning_rate": 0.0006, + "loss": 3.8727619647979736, + "step": 1599 + }, + { + "epoch": 22.22367846221057, + "grad_norm": 0.21737465262413025, + "learning_rate": 0.0006, + "loss": 3.887969493865967, + "step": 1600 + }, + { + "epoch": 22.23765836609873, + "grad_norm": 0.23969845473766327, + "learning_rate": 0.0006, + "loss": 3.8629722595214844, + "step": 1601 + }, + { + "epoch": 22.251638269986895, + "grad_norm": 0.22874902188777924, + "learning_rate": 0.0006, + "loss": 3.9135584831237793, + "step": 1602 + }, + { + "epoch": 22.265618173875055, + "grad_norm": 0.209506556391716, + "learning_rate": 0.0006, + "loss": 3.8734190464019775, + "step": 1603 + }, + { + "epoch": 22.279598077763215, + "grad_norm": 0.22235789895057678, + "learning_rate": 0.0006, + "loss": 3.884854793548584, + "step": 1604 + }, + { + "epoch": 22.293577981651374, + "grad_norm": 0.21975041925907135, + "learning_rate": 0.0006, + "loss": 3.8860888481140137, + "step": 1605 + }, + { + "epoch": 22.307557885539538, + "grad_norm": 0.21474459767341614, + "learning_rate": 0.0006, + "loss": 3.9052200317382812, + "step": 1606 + }, + { + "epoch": 22.321537789427698, + "grad_norm": 0.2103329747915268, + "learning_rate": 0.0006, + "loss": 3.8516340255737305, + "step": 1607 + }, + { + "epoch": 22.335517693315857, + "grad_norm": 0.1981191635131836, + "learning_rate": 0.0006, + "loss": 3.9017434120178223, + "step": 1608 + }, + { + "epoch": 22.34949759720402, + "grad_norm": 0.20679591596126556, + "learning_rate": 0.0006, + "loss": 3.889885425567627, + "step": 1609 + }, + { + "epoch": 22.36347750109218, + "grad_norm": 0.20809867978096008, + "learning_rate": 0.0006, + "loss": 3.881868362426758, + "step": 1610 + }, + { + "epoch": 22.37745740498034, + "grad_norm": 0.21394680440425873, + "learning_rate": 0.0006, + "loss": 3.89980411529541, + "step": 1611 + }, + { + "epoch": 22.3914373088685, + "grad_norm": 0.2334284782409668, + "learning_rate": 0.0006, + "loss": 3.8672266006469727, + "step": 1612 + }, + { + "epoch": 22.405417212756664, + "grad_norm": 0.26521918177604675, + "learning_rate": 0.0006, + "loss": 3.8918118476867676, + "step": 1613 + }, + { + "epoch": 22.419397116644824, + "grad_norm": 0.2652994394302368, + "learning_rate": 0.0006, + "loss": 3.8683271408081055, + "step": 1614 + }, + { + "epoch": 22.433377020532983, + "grad_norm": 0.2568066716194153, + "learning_rate": 0.0006, + "loss": 3.892523765563965, + "step": 1615 + }, + { + "epoch": 22.447356924421143, + "grad_norm": 0.260052353143692, + "learning_rate": 0.0006, + "loss": 3.897305488586426, + "step": 1616 + }, + { + "epoch": 22.461336828309307, + "grad_norm": 0.2744271457195282, + "learning_rate": 0.0006, + "loss": 3.8962221145629883, + "step": 1617 + }, + { + "epoch": 22.475316732197467, + "grad_norm": 0.23755787312984467, + "learning_rate": 0.0006, + "loss": 3.888184070587158, + "step": 1618 + }, + { + "epoch": 22.489296636085626, + "grad_norm": 0.2515312135219574, + "learning_rate": 0.0006, + "loss": 3.8946003913879395, + "step": 1619 + }, + { + "epoch": 22.503276539973786, + "grad_norm": 0.24835044145584106, + "learning_rate": 0.0006, + "loss": 3.8711423873901367, + "step": 1620 + }, + { + "epoch": 22.51725644386195, + "grad_norm": 0.22615326941013336, + "learning_rate": 0.0006, + "loss": 3.8878846168518066, + "step": 1621 + }, + { + "epoch": 22.53123634775011, + "grad_norm": 0.20482423901557922, + "learning_rate": 0.0006, + "loss": 3.8782598972320557, + "step": 1622 + }, + { + "epoch": 22.54521625163827, + "grad_norm": 0.20436473190784454, + "learning_rate": 0.0006, + "loss": 3.9075279235839844, + "step": 1623 + }, + { + "epoch": 22.55919615552643, + "grad_norm": 0.2066277265548706, + "learning_rate": 0.0006, + "loss": 3.89908766746521, + "step": 1624 + }, + { + "epoch": 22.573176059414592, + "grad_norm": 0.20735307037830353, + "learning_rate": 0.0006, + "loss": 3.865204334259033, + "step": 1625 + }, + { + "epoch": 22.587155963302752, + "grad_norm": 0.20955748856067657, + "learning_rate": 0.0006, + "loss": 3.8835532665252686, + "step": 1626 + }, + { + "epoch": 22.601135867190912, + "grad_norm": 0.21354222297668457, + "learning_rate": 0.0006, + "loss": 3.9012551307678223, + "step": 1627 + }, + { + "epoch": 22.615115771079076, + "grad_norm": 0.2075091004371643, + "learning_rate": 0.0006, + "loss": 3.8733482360839844, + "step": 1628 + }, + { + "epoch": 22.629095674967235, + "grad_norm": 0.20207874476909637, + "learning_rate": 0.0006, + "loss": 3.9193859100341797, + "step": 1629 + }, + { + "epoch": 22.643075578855395, + "grad_norm": 0.21863923966884613, + "learning_rate": 0.0006, + "loss": 3.883518695831299, + "step": 1630 + }, + { + "epoch": 22.657055482743555, + "grad_norm": 0.22117522358894348, + "learning_rate": 0.0006, + "loss": 3.9163284301757812, + "step": 1631 + }, + { + "epoch": 22.67103538663172, + "grad_norm": 0.2078622728586197, + "learning_rate": 0.0006, + "loss": 3.868274688720703, + "step": 1632 + }, + { + "epoch": 22.68501529051988, + "grad_norm": 0.22745893895626068, + "learning_rate": 0.0006, + "loss": 3.9171340465545654, + "step": 1633 + }, + { + "epoch": 22.698995194408038, + "grad_norm": 0.2312736064195633, + "learning_rate": 0.0006, + "loss": 3.9487013816833496, + "step": 1634 + }, + { + "epoch": 22.712975098296198, + "grad_norm": 0.20491497218608856, + "learning_rate": 0.0006, + "loss": 3.91833758354187, + "step": 1635 + }, + { + "epoch": 22.72695500218436, + "grad_norm": 0.1899084597826004, + "learning_rate": 0.0006, + "loss": 3.876225709915161, + "step": 1636 + }, + { + "epoch": 22.74093490607252, + "grad_norm": 0.18581682443618774, + "learning_rate": 0.0006, + "loss": 3.8667988777160645, + "step": 1637 + }, + { + "epoch": 22.75491480996068, + "grad_norm": 0.19855599105358124, + "learning_rate": 0.0006, + "loss": 3.900789260864258, + "step": 1638 + }, + { + "epoch": 22.76889471384884, + "grad_norm": 0.19951458275318146, + "learning_rate": 0.0006, + "loss": 3.8850367069244385, + "step": 1639 + }, + { + "epoch": 22.782874617737004, + "grad_norm": 0.22802744805812836, + "learning_rate": 0.0006, + "loss": 3.9181363582611084, + "step": 1640 + }, + { + "epoch": 22.796854521625164, + "grad_norm": 0.24279919266700745, + "learning_rate": 0.0006, + "loss": 3.8843770027160645, + "step": 1641 + }, + { + "epoch": 22.810834425513324, + "grad_norm": 0.23554913699626923, + "learning_rate": 0.0006, + "loss": 3.8802413940429688, + "step": 1642 + }, + { + "epoch": 22.824814329401484, + "grad_norm": 0.22343270480632782, + "learning_rate": 0.0006, + "loss": 3.8524107933044434, + "step": 1643 + }, + { + "epoch": 22.838794233289647, + "grad_norm": 0.2185724526643753, + "learning_rate": 0.0006, + "loss": 3.9117047786712646, + "step": 1644 + }, + { + "epoch": 22.852774137177807, + "grad_norm": 0.2114841341972351, + "learning_rate": 0.0006, + "loss": 3.90325927734375, + "step": 1645 + }, + { + "epoch": 22.866754041065967, + "grad_norm": 0.21072550117969513, + "learning_rate": 0.0006, + "loss": 3.8988137245178223, + "step": 1646 + }, + { + "epoch": 22.88073394495413, + "grad_norm": 0.2250078171491623, + "learning_rate": 0.0006, + "loss": 3.9201531410217285, + "step": 1647 + }, + { + "epoch": 22.89471384884229, + "grad_norm": 0.20928071439266205, + "learning_rate": 0.0006, + "loss": 3.91666316986084, + "step": 1648 + }, + { + "epoch": 22.90869375273045, + "grad_norm": 0.24096311628818512, + "learning_rate": 0.0006, + "loss": 3.8797364234924316, + "step": 1649 + }, + { + "epoch": 22.92267365661861, + "grad_norm": 0.2591194212436676, + "learning_rate": 0.0006, + "loss": 3.883273124694824, + "step": 1650 + }, + { + "epoch": 22.936653560506773, + "grad_norm": 0.27342668175697327, + "learning_rate": 0.0006, + "loss": 3.8645026683807373, + "step": 1651 + }, + { + "epoch": 22.950633464394933, + "grad_norm": 0.2448573112487793, + "learning_rate": 0.0006, + "loss": 3.9093551635742188, + "step": 1652 + }, + { + "epoch": 22.964613368283093, + "grad_norm": 0.19899503886699677, + "learning_rate": 0.0006, + "loss": 3.9001057147979736, + "step": 1653 + }, + { + "epoch": 22.978593272171253, + "grad_norm": 0.2023746520280838, + "learning_rate": 0.0006, + "loss": 3.886474370956421, + "step": 1654 + }, + { + "epoch": 22.992573176059416, + "grad_norm": 0.19894269108772278, + "learning_rate": 0.0006, + "loss": 3.9004204273223877, + "step": 1655 + }, + { + "epoch": 23.0, + "grad_norm": 0.2401709407567978, + "learning_rate": 0.0006, + "loss": 3.8665566444396973, + "step": 1656 + }, + { + "epoch": 23.0, + "eval_loss": 4.112459659576416, + "eval_runtime": 44.8325, + "eval_samples_per_second": 54.469, + "eval_steps_per_second": 3.413, + "step": 1656 + }, + { + "epoch": 23.01397990388816, + "grad_norm": 0.22662921249866486, + "learning_rate": 0.0006, + "loss": 3.853271961212158, + "step": 1657 + }, + { + "epoch": 23.027959807776323, + "grad_norm": 0.24406856298446655, + "learning_rate": 0.0006, + "loss": 3.8691890239715576, + "step": 1658 + }, + { + "epoch": 23.041939711664483, + "grad_norm": 0.2266651839017868, + "learning_rate": 0.0006, + "loss": 3.838599681854248, + "step": 1659 + }, + { + "epoch": 23.055919615552643, + "grad_norm": 0.22303511202335358, + "learning_rate": 0.0006, + "loss": 3.8678267002105713, + "step": 1660 + }, + { + "epoch": 23.069899519440803, + "grad_norm": 0.2272164225578308, + "learning_rate": 0.0006, + "loss": 3.9045681953430176, + "step": 1661 + }, + { + "epoch": 23.083879423328966, + "grad_norm": 0.25004875659942627, + "learning_rate": 0.0006, + "loss": 3.856503963470459, + "step": 1662 + }, + { + "epoch": 23.097859327217126, + "grad_norm": 0.26016247272491455, + "learning_rate": 0.0006, + "loss": 3.878587007522583, + "step": 1663 + }, + { + "epoch": 23.111839231105286, + "grad_norm": 0.28539901971817017, + "learning_rate": 0.0006, + "loss": 3.864248514175415, + "step": 1664 + }, + { + "epoch": 23.125819134993446, + "grad_norm": 0.27504822611808777, + "learning_rate": 0.0006, + "loss": 3.821448802947998, + "step": 1665 + }, + { + "epoch": 23.13979903888161, + "grad_norm": 0.238910973072052, + "learning_rate": 0.0006, + "loss": 3.8635847568511963, + "step": 1666 + }, + { + "epoch": 23.15377894276977, + "grad_norm": 0.24179652333259583, + "learning_rate": 0.0006, + "loss": 3.8339638710021973, + "step": 1667 + }, + { + "epoch": 23.16775884665793, + "grad_norm": 0.2199544757604599, + "learning_rate": 0.0006, + "loss": 3.868396759033203, + "step": 1668 + }, + { + "epoch": 23.18173875054609, + "grad_norm": 0.1965002566576004, + "learning_rate": 0.0006, + "loss": 3.8761439323425293, + "step": 1669 + }, + { + "epoch": 23.195718654434252, + "grad_norm": 0.20426614582538605, + "learning_rate": 0.0006, + "loss": 3.822899580001831, + "step": 1670 + }, + { + "epoch": 23.209698558322412, + "grad_norm": 0.2197263389825821, + "learning_rate": 0.0006, + "loss": 3.887728452682495, + "step": 1671 + }, + { + "epoch": 23.22367846221057, + "grad_norm": 0.22844573855400085, + "learning_rate": 0.0006, + "loss": 3.8550517559051514, + "step": 1672 + }, + { + "epoch": 23.23765836609873, + "grad_norm": 0.2347746044397354, + "learning_rate": 0.0006, + "loss": 3.903310537338257, + "step": 1673 + }, + { + "epoch": 23.251638269986895, + "grad_norm": 0.24167625606060028, + "learning_rate": 0.0006, + "loss": 3.8397774696350098, + "step": 1674 + }, + { + "epoch": 23.265618173875055, + "grad_norm": 0.2691650688648224, + "learning_rate": 0.0006, + "loss": 3.853254795074463, + "step": 1675 + }, + { + "epoch": 23.279598077763215, + "grad_norm": 0.29421621561050415, + "learning_rate": 0.0006, + "loss": 3.86065411567688, + "step": 1676 + }, + { + "epoch": 23.293577981651374, + "grad_norm": 0.31074345111846924, + "learning_rate": 0.0006, + "loss": 3.8716742992401123, + "step": 1677 + }, + { + "epoch": 23.307557885539538, + "grad_norm": 0.3044569194316864, + "learning_rate": 0.0006, + "loss": 3.8738951683044434, + "step": 1678 + }, + { + "epoch": 23.321537789427698, + "grad_norm": 0.30496764183044434, + "learning_rate": 0.0006, + "loss": 3.884446620941162, + "step": 1679 + }, + { + "epoch": 23.335517693315857, + "grad_norm": 0.31122756004333496, + "learning_rate": 0.0006, + "loss": 3.878495693206787, + "step": 1680 + }, + { + "epoch": 23.34949759720402, + "grad_norm": 0.32268181443214417, + "learning_rate": 0.0006, + "loss": 3.8793649673461914, + "step": 1681 + }, + { + "epoch": 23.36347750109218, + "grad_norm": 0.3297140598297119, + "learning_rate": 0.0006, + "loss": 3.87484073638916, + "step": 1682 + }, + { + "epoch": 23.37745740498034, + "grad_norm": 0.26007479429244995, + "learning_rate": 0.0006, + "loss": 3.8510947227478027, + "step": 1683 + }, + { + "epoch": 23.3914373088685, + "grad_norm": 0.2627335786819458, + "learning_rate": 0.0006, + "loss": 3.8783209323883057, + "step": 1684 + }, + { + "epoch": 23.405417212756664, + "grad_norm": 0.256452739238739, + "learning_rate": 0.0006, + "loss": 3.8594281673431396, + "step": 1685 + }, + { + "epoch": 23.419397116644824, + "grad_norm": 0.23892226815223694, + "learning_rate": 0.0006, + "loss": 3.898951292037964, + "step": 1686 + }, + { + "epoch": 23.433377020532983, + "grad_norm": 0.21625587344169617, + "learning_rate": 0.0006, + "loss": 3.8679966926574707, + "step": 1687 + }, + { + "epoch": 23.447356924421143, + "grad_norm": 0.21924619376659393, + "learning_rate": 0.0006, + "loss": 3.8774075508117676, + "step": 1688 + }, + { + "epoch": 23.461336828309307, + "grad_norm": 0.21500127017498016, + "learning_rate": 0.0006, + "loss": 3.870619297027588, + "step": 1689 + }, + { + "epoch": 23.475316732197467, + "grad_norm": 0.22580556571483612, + "learning_rate": 0.0006, + "loss": 3.887722969055176, + "step": 1690 + }, + { + "epoch": 23.489296636085626, + "grad_norm": 0.2500104308128357, + "learning_rate": 0.0006, + "loss": 3.88789963722229, + "step": 1691 + }, + { + "epoch": 23.503276539973786, + "grad_norm": 0.22462762892246246, + "learning_rate": 0.0006, + "loss": 3.863997459411621, + "step": 1692 + }, + { + "epoch": 23.51725644386195, + "grad_norm": 0.21427781879901886, + "learning_rate": 0.0006, + "loss": 3.8827033042907715, + "step": 1693 + }, + { + "epoch": 23.53123634775011, + "grad_norm": 0.22278577089309692, + "learning_rate": 0.0006, + "loss": 3.8659563064575195, + "step": 1694 + }, + { + "epoch": 23.54521625163827, + "grad_norm": 0.22801144421100616, + "learning_rate": 0.0006, + "loss": 3.9031362533569336, + "step": 1695 + }, + { + "epoch": 23.55919615552643, + "grad_norm": 0.25071898102760315, + "learning_rate": 0.0006, + "loss": 3.887746810913086, + "step": 1696 + }, + { + "epoch": 23.573176059414592, + "grad_norm": 0.2564085125923157, + "learning_rate": 0.0006, + "loss": 3.8918356895446777, + "step": 1697 + }, + { + "epoch": 23.587155963302752, + "grad_norm": 0.24603120982646942, + "learning_rate": 0.0006, + "loss": 3.850416421890259, + "step": 1698 + }, + { + "epoch": 23.601135867190912, + "grad_norm": 0.20539002120494843, + "learning_rate": 0.0006, + "loss": 3.862060070037842, + "step": 1699 + }, + { + "epoch": 23.615115771079076, + "grad_norm": 0.2022249400615692, + "learning_rate": 0.0006, + "loss": 3.899008274078369, + "step": 1700 + }, + { + "epoch": 23.629095674967235, + "grad_norm": 0.2435392290353775, + "learning_rate": 0.0006, + "loss": 3.844388961791992, + "step": 1701 + }, + { + "epoch": 23.643075578855395, + "grad_norm": 0.21146756410598755, + "learning_rate": 0.0006, + "loss": 3.8972439765930176, + "step": 1702 + }, + { + "epoch": 23.657055482743555, + "grad_norm": 0.2025400996208191, + "learning_rate": 0.0006, + "loss": 3.865253448486328, + "step": 1703 + }, + { + "epoch": 23.67103538663172, + "grad_norm": 0.21129970252513885, + "learning_rate": 0.0006, + "loss": 3.8768205642700195, + "step": 1704 + }, + { + "epoch": 23.68501529051988, + "grad_norm": 0.22982284426689148, + "learning_rate": 0.0006, + "loss": 3.8792667388916016, + "step": 1705 + }, + { + "epoch": 23.698995194408038, + "grad_norm": 0.23013733327388763, + "learning_rate": 0.0006, + "loss": 3.880897045135498, + "step": 1706 + }, + { + "epoch": 23.712975098296198, + "grad_norm": 0.2277672290802002, + "learning_rate": 0.0006, + "loss": 3.8738410472869873, + "step": 1707 + }, + { + "epoch": 23.72695500218436, + "grad_norm": 0.2343369573354721, + "learning_rate": 0.0006, + "loss": 3.8587026596069336, + "step": 1708 + }, + { + "epoch": 23.74093490607252, + "grad_norm": 0.23159530758857727, + "learning_rate": 0.0006, + "loss": 3.856306552886963, + "step": 1709 + }, + { + "epoch": 23.75491480996068, + "grad_norm": 0.19541035592556, + "learning_rate": 0.0006, + "loss": 3.8294754028320312, + "step": 1710 + }, + { + "epoch": 23.76889471384884, + "grad_norm": 0.22999322414398193, + "learning_rate": 0.0006, + "loss": 3.882676124572754, + "step": 1711 + }, + { + "epoch": 23.782874617737004, + "grad_norm": 0.23442843556404114, + "learning_rate": 0.0006, + "loss": 3.8887529373168945, + "step": 1712 + }, + { + "epoch": 23.796854521625164, + "grad_norm": 0.22914239764213562, + "learning_rate": 0.0006, + "loss": 3.867673635482788, + "step": 1713 + }, + { + "epoch": 23.810834425513324, + "grad_norm": 0.20683827996253967, + "learning_rate": 0.0006, + "loss": 3.8999581336975098, + "step": 1714 + }, + { + "epoch": 23.824814329401484, + "grad_norm": 0.19281277060508728, + "learning_rate": 0.0006, + "loss": 3.8997726440429688, + "step": 1715 + }, + { + "epoch": 23.838794233289647, + "grad_norm": 0.20058563351631165, + "learning_rate": 0.0006, + "loss": 3.8583860397338867, + "step": 1716 + }, + { + "epoch": 23.852774137177807, + "grad_norm": 0.19856606423854828, + "learning_rate": 0.0006, + "loss": 3.88948392868042, + "step": 1717 + }, + { + "epoch": 23.866754041065967, + "grad_norm": 0.2099323868751526, + "learning_rate": 0.0006, + "loss": 3.878458261489868, + "step": 1718 + }, + { + "epoch": 23.88073394495413, + "grad_norm": 0.22945016622543335, + "learning_rate": 0.0006, + "loss": 3.84116268157959, + "step": 1719 + }, + { + "epoch": 23.89471384884229, + "grad_norm": 0.22646087408065796, + "learning_rate": 0.0006, + "loss": 3.9006617069244385, + "step": 1720 + }, + { + "epoch": 23.90869375273045, + "grad_norm": 0.20282860100269318, + "learning_rate": 0.0006, + "loss": 3.8781144618988037, + "step": 1721 + }, + { + "epoch": 23.92267365661861, + "grad_norm": 0.1918555349111557, + "learning_rate": 0.0006, + "loss": 3.8560891151428223, + "step": 1722 + }, + { + "epoch": 23.936653560506773, + "grad_norm": 0.19286513328552246, + "learning_rate": 0.0006, + "loss": 3.873220920562744, + "step": 1723 + }, + { + "epoch": 23.950633464394933, + "grad_norm": 0.21071338653564453, + "learning_rate": 0.0006, + "loss": 3.9147067070007324, + "step": 1724 + }, + { + "epoch": 23.964613368283093, + "grad_norm": 0.20956715941429138, + "learning_rate": 0.0006, + "loss": 3.8762729167938232, + "step": 1725 + }, + { + "epoch": 23.978593272171253, + "grad_norm": 0.23053105175495148, + "learning_rate": 0.0006, + "loss": 3.873781681060791, + "step": 1726 + }, + { + "epoch": 23.992573176059416, + "grad_norm": 0.2719029486179352, + "learning_rate": 0.0006, + "loss": 3.862342357635498, + "step": 1727 + }, + { + "epoch": 24.0, + "grad_norm": 0.2933610677719116, + "learning_rate": 0.0006, + "loss": 3.8657689094543457, + "step": 1728 + }, + { + "epoch": 24.0, + "eval_loss": 4.0959153175354, + "eval_runtime": 44.3631, + "eval_samples_per_second": 55.046, + "eval_steps_per_second": 3.449, + "step": 1728 + }, + { + "epoch": 24.01397990388816, + "grad_norm": 0.24905365705490112, + "learning_rate": 0.0006, + "loss": 3.838136911392212, + "step": 1729 + }, + { + "epoch": 24.027959807776323, + "grad_norm": 0.25948020815849304, + "learning_rate": 0.0006, + "loss": 3.8581268787384033, + "step": 1730 + }, + { + "epoch": 24.041939711664483, + "grad_norm": 0.24965140223503113, + "learning_rate": 0.0006, + "loss": 3.8628978729248047, + "step": 1731 + }, + { + "epoch": 24.055919615552643, + "grad_norm": 0.23428823053836823, + "learning_rate": 0.0006, + "loss": 3.8188819885253906, + "step": 1732 + }, + { + "epoch": 24.069899519440803, + "grad_norm": 0.22191211581230164, + "learning_rate": 0.0006, + "loss": 3.8616039752960205, + "step": 1733 + }, + { + "epoch": 24.083879423328966, + "grad_norm": 0.20257535576820374, + "learning_rate": 0.0006, + "loss": 3.8632802963256836, + "step": 1734 + }, + { + "epoch": 24.097859327217126, + "grad_norm": 0.20385196805000305, + "learning_rate": 0.0006, + "loss": 3.885817050933838, + "step": 1735 + }, + { + "epoch": 24.111839231105286, + "grad_norm": 0.19921693205833435, + "learning_rate": 0.0006, + "loss": 3.838515043258667, + "step": 1736 + }, + { + "epoch": 24.125819134993446, + "grad_norm": 0.20221556723117828, + "learning_rate": 0.0006, + "loss": 3.8585309982299805, + "step": 1737 + }, + { + "epoch": 24.13979903888161, + "grad_norm": 0.20124691724777222, + "learning_rate": 0.0006, + "loss": 3.81656551361084, + "step": 1738 + }, + { + "epoch": 24.15377894276977, + "grad_norm": 0.1810830533504486, + "learning_rate": 0.0006, + "loss": 3.841783046722412, + "step": 1739 + }, + { + "epoch": 24.16775884665793, + "grad_norm": 0.18414196372032166, + "learning_rate": 0.0006, + "loss": 3.8614797592163086, + "step": 1740 + }, + { + "epoch": 24.18173875054609, + "grad_norm": 0.18930725753307343, + "learning_rate": 0.0006, + "loss": 3.8382534980773926, + "step": 1741 + }, + { + "epoch": 24.195718654434252, + "grad_norm": 0.19658128917217255, + "learning_rate": 0.0006, + "loss": 3.881742477416992, + "step": 1742 + }, + { + "epoch": 24.209698558322412, + "grad_norm": 0.20175589621067047, + "learning_rate": 0.0006, + "loss": 3.8760581016540527, + "step": 1743 + }, + { + "epoch": 24.22367846221057, + "grad_norm": 0.19416265189647675, + "learning_rate": 0.0006, + "loss": 3.8373687267303467, + "step": 1744 + }, + { + "epoch": 24.23765836609873, + "grad_norm": 0.20206521451473236, + "learning_rate": 0.0006, + "loss": 3.8322830200195312, + "step": 1745 + }, + { + "epoch": 24.251638269986895, + "grad_norm": 0.21797429025173187, + "learning_rate": 0.0006, + "loss": 3.849905490875244, + "step": 1746 + }, + { + "epoch": 24.265618173875055, + "grad_norm": 0.21295784413814545, + "learning_rate": 0.0006, + "loss": 3.847714900970459, + "step": 1747 + }, + { + "epoch": 24.279598077763215, + "grad_norm": 0.22023876011371613, + "learning_rate": 0.0006, + "loss": 3.8221592903137207, + "step": 1748 + }, + { + "epoch": 24.293577981651374, + "grad_norm": 0.2125576138496399, + "learning_rate": 0.0006, + "loss": 3.8070976734161377, + "step": 1749 + }, + { + "epoch": 24.307557885539538, + "grad_norm": 0.18673811852931976, + "learning_rate": 0.0006, + "loss": 3.866878032684326, + "step": 1750 + }, + { + "epoch": 24.321537789427698, + "grad_norm": 0.1972627341747284, + "learning_rate": 0.0006, + "loss": 3.846404552459717, + "step": 1751 + }, + { + "epoch": 24.335517693315857, + "grad_norm": 0.21846632659435272, + "learning_rate": 0.0006, + "loss": 3.8528640270233154, + "step": 1752 + }, + { + "epoch": 24.34949759720402, + "grad_norm": 0.22234080731868744, + "learning_rate": 0.0006, + "loss": 3.8268141746520996, + "step": 1753 + }, + { + "epoch": 24.36347750109218, + "grad_norm": 0.23002761602401733, + "learning_rate": 0.0006, + "loss": 3.832444667816162, + "step": 1754 + }, + { + "epoch": 24.37745740498034, + "grad_norm": 0.22526559233665466, + "learning_rate": 0.0006, + "loss": 3.864406108856201, + "step": 1755 + }, + { + "epoch": 24.3914373088685, + "grad_norm": 0.2290039211511612, + "learning_rate": 0.0006, + "loss": 3.8449103832244873, + "step": 1756 + }, + { + "epoch": 24.405417212756664, + "grad_norm": 0.23145617544651031, + "learning_rate": 0.0006, + "loss": 3.8183751106262207, + "step": 1757 + }, + { + "epoch": 24.419397116644824, + "grad_norm": 0.24287554621696472, + "learning_rate": 0.0006, + "loss": 3.809481382369995, + "step": 1758 + }, + { + "epoch": 24.433377020532983, + "grad_norm": 0.2672404646873474, + "learning_rate": 0.0006, + "loss": 3.877800464630127, + "step": 1759 + }, + { + "epoch": 24.447356924421143, + "grad_norm": 0.26292186975479126, + "learning_rate": 0.0006, + "loss": 3.8329367637634277, + "step": 1760 + }, + { + "epoch": 24.461336828309307, + "grad_norm": 0.26235947012901306, + "learning_rate": 0.0006, + "loss": 3.8414158821105957, + "step": 1761 + }, + { + "epoch": 24.475316732197467, + "grad_norm": 0.2638382613658905, + "learning_rate": 0.0006, + "loss": 3.849188804626465, + "step": 1762 + }, + { + "epoch": 24.489296636085626, + "grad_norm": 0.2564602196216583, + "learning_rate": 0.0006, + "loss": 3.865501880645752, + "step": 1763 + }, + { + "epoch": 24.503276539973786, + "grad_norm": 0.21352271735668182, + "learning_rate": 0.0006, + "loss": 3.87910795211792, + "step": 1764 + }, + { + "epoch": 24.51725644386195, + "grad_norm": 0.2470584511756897, + "learning_rate": 0.0006, + "loss": 3.858750343322754, + "step": 1765 + }, + { + "epoch": 24.53123634775011, + "grad_norm": 0.24907536804676056, + "learning_rate": 0.0006, + "loss": 3.8532559871673584, + "step": 1766 + }, + { + "epoch": 24.54521625163827, + "grad_norm": 0.2426205575466156, + "learning_rate": 0.0006, + "loss": 3.8659827709198, + "step": 1767 + }, + { + "epoch": 24.55919615552643, + "grad_norm": 0.23481151461601257, + "learning_rate": 0.0006, + "loss": 3.863948345184326, + "step": 1768 + }, + { + "epoch": 24.573176059414592, + "grad_norm": 0.22717779874801636, + "learning_rate": 0.0006, + "loss": 3.848527193069458, + "step": 1769 + }, + { + "epoch": 24.587155963302752, + "grad_norm": 0.2267129123210907, + "learning_rate": 0.0006, + "loss": 3.8600735664367676, + "step": 1770 + }, + { + "epoch": 24.601135867190912, + "grad_norm": 0.24967710673809052, + "learning_rate": 0.0006, + "loss": 3.84291934967041, + "step": 1771 + }, + { + "epoch": 24.615115771079076, + "grad_norm": 0.25308957695961, + "learning_rate": 0.0006, + "loss": 3.846181631088257, + "step": 1772 + }, + { + "epoch": 24.629095674967235, + "grad_norm": 0.2689298391342163, + "learning_rate": 0.0006, + "loss": 3.8572893142700195, + "step": 1773 + }, + { + "epoch": 24.643075578855395, + "grad_norm": 0.26458555459976196, + "learning_rate": 0.0006, + "loss": 3.8583621978759766, + "step": 1774 + }, + { + "epoch": 24.657055482743555, + "grad_norm": 0.24416811764240265, + "learning_rate": 0.0006, + "loss": 3.8648223876953125, + "step": 1775 + }, + { + "epoch": 24.67103538663172, + "grad_norm": 0.22218526899814606, + "learning_rate": 0.0006, + "loss": 3.839395523071289, + "step": 1776 + }, + { + "epoch": 24.68501529051988, + "grad_norm": 0.2147492915391922, + "learning_rate": 0.0006, + "loss": 3.875734567642212, + "step": 1777 + }, + { + "epoch": 24.698995194408038, + "grad_norm": 0.2346794754266739, + "learning_rate": 0.0006, + "loss": 3.854768991470337, + "step": 1778 + }, + { + "epoch": 24.712975098296198, + "grad_norm": 0.21406520903110504, + "learning_rate": 0.0006, + "loss": 3.8269104957580566, + "step": 1779 + }, + { + "epoch": 24.72695500218436, + "grad_norm": 0.20716224610805511, + "learning_rate": 0.0006, + "loss": 3.8245768547058105, + "step": 1780 + }, + { + "epoch": 24.74093490607252, + "grad_norm": 0.21445901691913605, + "learning_rate": 0.0006, + "loss": 3.8877978324890137, + "step": 1781 + }, + { + "epoch": 24.75491480996068, + "grad_norm": 0.21964985132217407, + "learning_rate": 0.0006, + "loss": 3.8602452278137207, + "step": 1782 + }, + { + "epoch": 24.76889471384884, + "grad_norm": 0.209807351231575, + "learning_rate": 0.0006, + "loss": 3.853428602218628, + "step": 1783 + }, + { + "epoch": 24.782874617737004, + "grad_norm": 0.19564911723136902, + "learning_rate": 0.0006, + "loss": 3.832275867462158, + "step": 1784 + }, + { + "epoch": 24.796854521625164, + "grad_norm": 0.21394333243370056, + "learning_rate": 0.0006, + "loss": 3.8543171882629395, + "step": 1785 + }, + { + "epoch": 24.810834425513324, + "grad_norm": 0.23156948387622833, + "learning_rate": 0.0006, + "loss": 3.8539412021636963, + "step": 1786 + }, + { + "epoch": 24.824814329401484, + "grad_norm": 0.2378678321838379, + "learning_rate": 0.0006, + "loss": 3.8409833908081055, + "step": 1787 + }, + { + "epoch": 24.838794233289647, + "grad_norm": 0.23816189169883728, + "learning_rate": 0.0006, + "loss": 3.855379581451416, + "step": 1788 + }, + { + "epoch": 24.852774137177807, + "grad_norm": 0.23109886050224304, + "learning_rate": 0.0006, + "loss": 3.8689517974853516, + "step": 1789 + }, + { + "epoch": 24.866754041065967, + "grad_norm": 0.2042883038520813, + "learning_rate": 0.0006, + "loss": 3.8730404376983643, + "step": 1790 + }, + { + "epoch": 24.88073394495413, + "grad_norm": 0.2039479911327362, + "learning_rate": 0.0006, + "loss": 3.8474984169006348, + "step": 1791 + }, + { + "epoch": 24.89471384884229, + "grad_norm": 0.213027223944664, + "learning_rate": 0.0006, + "loss": 3.8539695739746094, + "step": 1792 + }, + { + "epoch": 24.90869375273045, + "grad_norm": 0.2280654013156891, + "learning_rate": 0.0006, + "loss": 3.8633079528808594, + "step": 1793 + }, + { + "epoch": 24.92267365661861, + "grad_norm": 0.20864921808242798, + "learning_rate": 0.0006, + "loss": 3.8110368251800537, + "step": 1794 + }, + { + "epoch": 24.936653560506773, + "grad_norm": 0.23002111911773682, + "learning_rate": 0.0006, + "loss": 3.8334741592407227, + "step": 1795 + }, + { + "epoch": 24.950633464394933, + "grad_norm": 0.232331782579422, + "learning_rate": 0.0006, + "loss": 3.871887683868408, + "step": 1796 + }, + { + "epoch": 24.964613368283093, + "grad_norm": 0.24141235649585724, + "learning_rate": 0.0006, + "loss": 3.8614959716796875, + "step": 1797 + }, + { + "epoch": 24.978593272171253, + "grad_norm": 0.2545177638530731, + "learning_rate": 0.0006, + "loss": 3.8563568592071533, + "step": 1798 + }, + { + "epoch": 24.992573176059416, + "grad_norm": 0.25186386704444885, + "learning_rate": 0.0006, + "loss": 3.882166862487793, + "step": 1799 + }, + { + "epoch": 25.0, + "grad_norm": 0.260195791721344, + "learning_rate": 0.0006, + "loss": 3.884554862976074, + "step": 1800 + }, + { + "epoch": 25.0, + "eval_loss": 4.08809757232666, + "eval_runtime": 44.7947, + "eval_samples_per_second": 54.515, + "eval_steps_per_second": 3.416, + "step": 1800 + }, + { + "epoch": 25.01397990388816, + "grad_norm": 0.25396403670310974, + "learning_rate": 0.0006, + "loss": 3.8217287063598633, + "step": 1801 + }, + { + "epoch": 25.027959807776323, + "grad_norm": 0.2773195207118988, + "learning_rate": 0.0006, + "loss": 3.809542417526245, + "step": 1802 + }, + { + "epoch": 25.041939711664483, + "grad_norm": 0.3073263168334961, + "learning_rate": 0.0006, + "loss": 3.825706958770752, + "step": 1803 + }, + { + "epoch": 25.055919615552643, + "grad_norm": 0.30885398387908936, + "learning_rate": 0.0006, + "loss": 3.8081188201904297, + "step": 1804 + }, + { + "epoch": 25.069899519440803, + "grad_norm": 0.27356019616127014, + "learning_rate": 0.0006, + "loss": 3.8538241386413574, + "step": 1805 + }, + { + "epoch": 25.083879423328966, + "grad_norm": 0.22830164432525635, + "learning_rate": 0.0006, + "loss": 3.8246965408325195, + "step": 1806 + }, + { + "epoch": 25.097859327217126, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.8552842140197754, + "step": 1807 + }, + { + "epoch": 25.111839231105286, + "grad_norm": 0.21718722581863403, + "learning_rate": 0.0006, + "loss": 3.8489418029785156, + "step": 1808 + }, + { + "epoch": 25.125819134993446, + "grad_norm": 0.2480861395597458, + "learning_rate": 0.0006, + "loss": 3.821455955505371, + "step": 1809 + }, + { + "epoch": 25.13979903888161, + "grad_norm": 0.2796635627746582, + "learning_rate": 0.0006, + "loss": 3.8202435970306396, + "step": 1810 + }, + { + "epoch": 25.15377894276977, + "grad_norm": 0.2829958200454712, + "learning_rate": 0.0006, + "loss": 3.8293306827545166, + "step": 1811 + }, + { + "epoch": 25.16775884665793, + "grad_norm": 0.2510125935077667, + "learning_rate": 0.0006, + "loss": 3.8342957496643066, + "step": 1812 + }, + { + "epoch": 25.18173875054609, + "grad_norm": 0.22923722863197327, + "learning_rate": 0.0006, + "loss": 3.8448352813720703, + "step": 1813 + }, + { + "epoch": 25.195718654434252, + "grad_norm": 0.21439228951931, + "learning_rate": 0.0006, + "loss": 3.8343517780303955, + "step": 1814 + }, + { + "epoch": 25.209698558322412, + "grad_norm": 0.1965373307466507, + "learning_rate": 0.0006, + "loss": 3.8163528442382812, + "step": 1815 + }, + { + "epoch": 25.22367846221057, + "grad_norm": 0.20121058821678162, + "learning_rate": 0.0006, + "loss": 3.8007280826568604, + "step": 1816 + }, + { + "epoch": 25.23765836609873, + "grad_norm": 0.21383272111415863, + "learning_rate": 0.0006, + "loss": 3.8200385570526123, + "step": 1817 + }, + { + "epoch": 25.251638269986895, + "grad_norm": 0.2066601663827896, + "learning_rate": 0.0006, + "loss": 3.8333921432495117, + "step": 1818 + }, + { + "epoch": 25.265618173875055, + "grad_norm": 0.2104874551296234, + "learning_rate": 0.0006, + "loss": 3.838012218475342, + "step": 1819 + }, + { + "epoch": 25.279598077763215, + "grad_norm": 0.19733119010925293, + "learning_rate": 0.0006, + "loss": 3.835139274597168, + "step": 1820 + }, + { + "epoch": 25.293577981651374, + "grad_norm": 0.2119498997926712, + "learning_rate": 0.0006, + "loss": 3.8099722862243652, + "step": 1821 + }, + { + "epoch": 25.307557885539538, + "grad_norm": 0.21863529086112976, + "learning_rate": 0.0006, + "loss": 3.7801573276519775, + "step": 1822 + }, + { + "epoch": 25.321537789427698, + "grad_norm": 0.2113322764635086, + "learning_rate": 0.0006, + "loss": 3.809903621673584, + "step": 1823 + }, + { + "epoch": 25.335517693315857, + "grad_norm": 0.21594023704528809, + "learning_rate": 0.0006, + "loss": 3.8485071659088135, + "step": 1824 + }, + { + "epoch": 25.34949759720402, + "grad_norm": 0.21475964784622192, + "learning_rate": 0.0006, + "loss": 3.7894768714904785, + "step": 1825 + }, + { + "epoch": 25.36347750109218, + "grad_norm": 0.21174900233745575, + "learning_rate": 0.0006, + "loss": 3.821711540222168, + "step": 1826 + }, + { + "epoch": 25.37745740498034, + "grad_norm": 0.2065584659576416, + "learning_rate": 0.0006, + "loss": 3.8439841270446777, + "step": 1827 + }, + { + "epoch": 25.3914373088685, + "grad_norm": 0.19157007336616516, + "learning_rate": 0.0006, + "loss": 3.864245891571045, + "step": 1828 + }, + { + "epoch": 25.405417212756664, + "grad_norm": 0.19983816146850586, + "learning_rate": 0.0006, + "loss": 3.8317415714263916, + "step": 1829 + }, + { + "epoch": 25.419397116644824, + "grad_norm": 0.20506152510643005, + "learning_rate": 0.0006, + "loss": 3.8009896278381348, + "step": 1830 + }, + { + "epoch": 25.433377020532983, + "grad_norm": 0.19056960940361023, + "learning_rate": 0.0006, + "loss": 3.8383498191833496, + "step": 1831 + }, + { + "epoch": 25.447356924421143, + "grad_norm": 0.19262190163135529, + "learning_rate": 0.0006, + "loss": 3.838902235031128, + "step": 1832 + }, + { + "epoch": 25.461336828309307, + "grad_norm": 0.19859355688095093, + "learning_rate": 0.0006, + "loss": 3.82452392578125, + "step": 1833 + }, + { + "epoch": 25.475316732197467, + "grad_norm": 0.2144225388765335, + "learning_rate": 0.0006, + "loss": 3.8110032081604004, + "step": 1834 + }, + { + "epoch": 25.489296636085626, + "grad_norm": 0.20566298067569733, + "learning_rate": 0.0006, + "loss": 3.8662471771240234, + "step": 1835 + }, + { + "epoch": 25.503276539973786, + "grad_norm": 0.2071852684020996, + "learning_rate": 0.0006, + "loss": 3.821134090423584, + "step": 1836 + }, + { + "epoch": 25.51725644386195, + "grad_norm": 0.2095036506652832, + "learning_rate": 0.0006, + "loss": 3.824092388153076, + "step": 1837 + }, + { + "epoch": 25.53123634775011, + "grad_norm": 0.20136208832263947, + "learning_rate": 0.0006, + "loss": 3.8669862747192383, + "step": 1838 + }, + { + "epoch": 25.54521625163827, + "grad_norm": 0.1983811855316162, + "learning_rate": 0.0006, + "loss": 3.8120107650756836, + "step": 1839 + }, + { + "epoch": 25.55919615552643, + "grad_norm": 0.22859714925289154, + "learning_rate": 0.0006, + "loss": 3.8519299030303955, + "step": 1840 + }, + { + "epoch": 25.573176059414592, + "grad_norm": 0.23672667145729065, + "learning_rate": 0.0006, + "loss": 3.8245458602905273, + "step": 1841 + }, + { + "epoch": 25.587155963302752, + "grad_norm": 0.22698380053043365, + "learning_rate": 0.0006, + "loss": 3.8406805992126465, + "step": 1842 + }, + { + "epoch": 25.601135867190912, + "grad_norm": 0.25684037804603577, + "learning_rate": 0.0006, + "loss": 3.8584351539611816, + "step": 1843 + }, + { + "epoch": 25.615115771079076, + "grad_norm": 0.28180673718452454, + "learning_rate": 0.0006, + "loss": 3.8085098266601562, + "step": 1844 + }, + { + "epoch": 25.629095674967235, + "grad_norm": 0.2814631462097168, + "learning_rate": 0.0006, + "loss": 3.845083236694336, + "step": 1845 + }, + { + "epoch": 25.643075578855395, + "grad_norm": 0.23630981147289276, + "learning_rate": 0.0006, + "loss": 3.847749710083008, + "step": 1846 + }, + { + "epoch": 25.657055482743555, + "grad_norm": 0.22463662922382355, + "learning_rate": 0.0006, + "loss": 3.8172082901000977, + "step": 1847 + }, + { + "epoch": 25.67103538663172, + "grad_norm": 0.26551681756973267, + "learning_rate": 0.0006, + "loss": 3.8205654621124268, + "step": 1848 + }, + { + "epoch": 25.68501529051988, + "grad_norm": 0.27824243903160095, + "learning_rate": 0.0006, + "loss": 3.846076011657715, + "step": 1849 + }, + { + "epoch": 25.698995194408038, + "grad_norm": 0.266998291015625, + "learning_rate": 0.0006, + "loss": 3.8543574810028076, + "step": 1850 + }, + { + "epoch": 25.712975098296198, + "grad_norm": 0.22980351746082306, + "learning_rate": 0.0006, + "loss": 3.855511426925659, + "step": 1851 + }, + { + "epoch": 25.72695500218436, + "grad_norm": 0.23482872545719147, + "learning_rate": 0.0006, + "loss": 3.8687663078308105, + "step": 1852 + }, + { + "epoch": 25.74093490607252, + "grad_norm": 0.21119585633277893, + "learning_rate": 0.0006, + "loss": 3.8147101402282715, + "step": 1853 + }, + { + "epoch": 25.75491480996068, + "grad_norm": 0.21200446784496307, + "learning_rate": 0.0006, + "loss": 3.858473777770996, + "step": 1854 + }, + { + "epoch": 25.76889471384884, + "grad_norm": 0.20497842133045197, + "learning_rate": 0.0006, + "loss": 3.8545501232147217, + "step": 1855 + }, + { + "epoch": 25.782874617737004, + "grad_norm": 0.19328081607818604, + "learning_rate": 0.0006, + "loss": 3.7941341400146484, + "step": 1856 + }, + { + "epoch": 25.796854521625164, + "grad_norm": 0.2191578894853592, + "learning_rate": 0.0006, + "loss": 3.8408665657043457, + "step": 1857 + }, + { + "epoch": 25.810834425513324, + "grad_norm": 0.2548826038837433, + "learning_rate": 0.0006, + "loss": 3.854130744934082, + "step": 1858 + }, + { + "epoch": 25.824814329401484, + "grad_norm": 0.2290351390838623, + "learning_rate": 0.0006, + "loss": 3.8680176734924316, + "step": 1859 + }, + { + "epoch": 25.838794233289647, + "grad_norm": 0.20760944485664368, + "learning_rate": 0.0006, + "loss": 3.83731746673584, + "step": 1860 + }, + { + "epoch": 25.852774137177807, + "grad_norm": 0.19587582349777222, + "learning_rate": 0.0006, + "loss": 3.8173444271087646, + "step": 1861 + }, + { + "epoch": 25.866754041065967, + "grad_norm": 0.20762693881988525, + "learning_rate": 0.0006, + "loss": 3.8479790687561035, + "step": 1862 + }, + { + "epoch": 25.88073394495413, + "grad_norm": 0.20633186399936676, + "learning_rate": 0.0006, + "loss": 3.852285385131836, + "step": 1863 + }, + { + "epoch": 25.89471384884229, + "grad_norm": 0.21484960615634918, + "learning_rate": 0.0006, + "loss": 3.832592725753784, + "step": 1864 + }, + { + "epoch": 25.90869375273045, + "grad_norm": 0.19569595158100128, + "learning_rate": 0.0006, + "loss": 3.838071584701538, + "step": 1865 + }, + { + "epoch": 25.92267365661861, + "grad_norm": 0.19532904028892517, + "learning_rate": 0.0006, + "loss": 3.854252815246582, + "step": 1866 + }, + { + "epoch": 25.936653560506773, + "grad_norm": 0.1909649819135666, + "learning_rate": 0.0006, + "loss": 3.8444578647613525, + "step": 1867 + }, + { + "epoch": 25.950633464394933, + "grad_norm": 0.17476283013820648, + "learning_rate": 0.0006, + "loss": 3.836519241333008, + "step": 1868 + }, + { + "epoch": 25.964613368283093, + "grad_norm": 0.1895206719636917, + "learning_rate": 0.0006, + "loss": 3.8282582759857178, + "step": 1869 + }, + { + "epoch": 25.978593272171253, + "grad_norm": 0.20038437843322754, + "learning_rate": 0.0006, + "loss": 3.80542254447937, + "step": 1870 + }, + { + "epoch": 25.992573176059416, + "grad_norm": 0.20728608965873718, + "learning_rate": 0.0006, + "loss": 3.8584811687469482, + "step": 1871 + }, + { + "epoch": 26.0, + "grad_norm": 0.22110891342163086, + "learning_rate": 0.0006, + "loss": 3.8020238876342773, + "step": 1872 + }, + { + "epoch": 26.0, + "eval_loss": 4.072164058685303, + "eval_runtime": 44.9089, + "eval_samples_per_second": 54.377, + "eval_steps_per_second": 3.407, + "step": 1872 + }, + { + "epoch": 26.01397990388816, + "grad_norm": 0.2222519814968109, + "learning_rate": 0.0006, + "loss": 3.8309168815612793, + "step": 1873 + }, + { + "epoch": 26.027959807776323, + "grad_norm": 0.2637656033039093, + "learning_rate": 0.0006, + "loss": 3.8025143146514893, + "step": 1874 + }, + { + "epoch": 26.041939711664483, + "grad_norm": 0.2665974795818329, + "learning_rate": 0.0006, + "loss": 3.8244004249572754, + "step": 1875 + }, + { + "epoch": 26.055919615552643, + "grad_norm": 0.22475720942020416, + "learning_rate": 0.0006, + "loss": 3.80039119720459, + "step": 1876 + }, + { + "epoch": 26.069899519440803, + "grad_norm": 0.22994336485862732, + "learning_rate": 0.0006, + "loss": 3.7700726985931396, + "step": 1877 + }, + { + "epoch": 26.083879423328966, + "grad_norm": 0.24214622378349304, + "learning_rate": 0.0006, + "loss": 3.818725109100342, + "step": 1878 + }, + { + "epoch": 26.097859327217126, + "grad_norm": 0.22701293230056763, + "learning_rate": 0.0006, + "loss": 3.833803176879883, + "step": 1879 + }, + { + "epoch": 26.111839231105286, + "grad_norm": 0.21452295780181885, + "learning_rate": 0.0006, + "loss": 3.8391427993774414, + "step": 1880 + }, + { + "epoch": 26.125819134993446, + "grad_norm": 0.20179636776447296, + "learning_rate": 0.0006, + "loss": 3.802957057952881, + "step": 1881 + }, + { + "epoch": 26.13979903888161, + "grad_norm": 0.2087477445602417, + "learning_rate": 0.0006, + "loss": 3.8339905738830566, + "step": 1882 + }, + { + "epoch": 26.15377894276977, + "grad_norm": 0.23583556711673737, + "learning_rate": 0.0006, + "loss": 3.802438259124756, + "step": 1883 + }, + { + "epoch": 26.16775884665793, + "grad_norm": 0.2504311501979828, + "learning_rate": 0.0006, + "loss": 3.80244517326355, + "step": 1884 + }, + { + "epoch": 26.18173875054609, + "grad_norm": 0.24903984367847443, + "learning_rate": 0.0006, + "loss": 3.788865566253662, + "step": 1885 + }, + { + "epoch": 26.195718654434252, + "grad_norm": 0.2707931101322174, + "learning_rate": 0.0006, + "loss": 3.800051212310791, + "step": 1886 + }, + { + "epoch": 26.209698558322412, + "grad_norm": 0.24902892112731934, + "learning_rate": 0.0006, + "loss": 3.8068337440490723, + "step": 1887 + }, + { + "epoch": 26.22367846221057, + "grad_norm": 0.22655536234378815, + "learning_rate": 0.0006, + "loss": 3.779439926147461, + "step": 1888 + }, + { + "epoch": 26.23765836609873, + "grad_norm": 0.24797996878623962, + "learning_rate": 0.0006, + "loss": 3.822831153869629, + "step": 1889 + }, + { + "epoch": 26.251638269986895, + "grad_norm": 0.2821420431137085, + "learning_rate": 0.0006, + "loss": 3.807954788208008, + "step": 1890 + }, + { + "epoch": 26.265618173875055, + "grad_norm": 0.30392691493034363, + "learning_rate": 0.0006, + "loss": 3.776951789855957, + "step": 1891 + }, + { + "epoch": 26.279598077763215, + "grad_norm": 0.32641273736953735, + "learning_rate": 0.0006, + "loss": 3.8216311931610107, + "step": 1892 + }, + { + "epoch": 26.293577981651374, + "grad_norm": 0.32674387097358704, + "learning_rate": 0.0006, + "loss": 3.815596580505371, + "step": 1893 + }, + { + "epoch": 26.307557885539538, + "grad_norm": 0.29137250781059265, + "learning_rate": 0.0006, + "loss": 3.8170812129974365, + "step": 1894 + }, + { + "epoch": 26.321537789427698, + "grad_norm": 0.24291734397411346, + "learning_rate": 0.0006, + "loss": 3.810352087020874, + "step": 1895 + }, + { + "epoch": 26.335517693315857, + "grad_norm": 0.24023209512233734, + "learning_rate": 0.0006, + "loss": 3.8075947761535645, + "step": 1896 + }, + { + "epoch": 26.34949759720402, + "grad_norm": 0.24334804713726044, + "learning_rate": 0.0006, + "loss": 3.831556797027588, + "step": 1897 + }, + { + "epoch": 26.36347750109218, + "grad_norm": 0.2109663337469101, + "learning_rate": 0.0006, + "loss": 3.838347911834717, + "step": 1898 + }, + { + "epoch": 26.37745740498034, + "grad_norm": 0.19668002426624298, + "learning_rate": 0.0006, + "loss": 3.774737596511841, + "step": 1899 + }, + { + "epoch": 26.3914373088685, + "grad_norm": 0.21329134702682495, + "learning_rate": 0.0006, + "loss": 3.8237252235412598, + "step": 1900 + }, + { + "epoch": 26.405417212756664, + "grad_norm": 0.20381781458854675, + "learning_rate": 0.0006, + "loss": 3.802569627761841, + "step": 1901 + }, + { + "epoch": 26.419397116644824, + "grad_norm": 0.19083160161972046, + "learning_rate": 0.0006, + "loss": 3.8301358222961426, + "step": 1902 + }, + { + "epoch": 26.433377020532983, + "grad_norm": 0.20012904703617096, + "learning_rate": 0.0006, + "loss": 3.7966408729553223, + "step": 1903 + }, + { + "epoch": 26.447356924421143, + "grad_norm": 0.19483457505702972, + "learning_rate": 0.0006, + "loss": 3.8431968688964844, + "step": 1904 + }, + { + "epoch": 26.461336828309307, + "grad_norm": 0.19946353137493134, + "learning_rate": 0.0006, + "loss": 3.8023815155029297, + "step": 1905 + }, + { + "epoch": 26.475316732197467, + "grad_norm": 0.1984100341796875, + "learning_rate": 0.0006, + "loss": 3.8283071517944336, + "step": 1906 + }, + { + "epoch": 26.489296636085626, + "grad_norm": 0.2148299664258957, + "learning_rate": 0.0006, + "loss": 3.8377504348754883, + "step": 1907 + }, + { + "epoch": 26.503276539973786, + "grad_norm": 0.22139184176921844, + "learning_rate": 0.0006, + "loss": 3.823051691055298, + "step": 1908 + }, + { + "epoch": 26.51725644386195, + "grad_norm": 0.18289034068584442, + "learning_rate": 0.0006, + "loss": 3.8027071952819824, + "step": 1909 + }, + { + "epoch": 26.53123634775011, + "grad_norm": 0.1816026121377945, + "learning_rate": 0.0006, + "loss": 3.823786735534668, + "step": 1910 + }, + { + "epoch": 26.54521625163827, + "grad_norm": 0.19074322283267975, + "learning_rate": 0.0006, + "loss": 3.813331127166748, + "step": 1911 + }, + { + "epoch": 26.55919615552643, + "grad_norm": 0.20301467180252075, + "learning_rate": 0.0006, + "loss": 3.8218350410461426, + "step": 1912 + }, + { + "epoch": 26.573176059414592, + "grad_norm": 0.25266432762145996, + "learning_rate": 0.0006, + "loss": 3.8455142974853516, + "step": 1913 + }, + { + "epoch": 26.587155963302752, + "grad_norm": 0.25804755091667175, + "learning_rate": 0.0006, + "loss": 3.799227476119995, + "step": 1914 + }, + { + "epoch": 26.601135867190912, + "grad_norm": 0.2555372416973114, + "learning_rate": 0.0006, + "loss": 3.8125686645507812, + "step": 1915 + }, + { + "epoch": 26.615115771079076, + "grad_norm": 0.2266194075345993, + "learning_rate": 0.0006, + "loss": 3.858363628387451, + "step": 1916 + }, + { + "epoch": 26.629095674967235, + "grad_norm": 0.1933048665523529, + "learning_rate": 0.0006, + "loss": 3.8078083992004395, + "step": 1917 + }, + { + "epoch": 26.643075578855395, + "grad_norm": 0.19936731457710266, + "learning_rate": 0.0006, + "loss": 3.81748628616333, + "step": 1918 + }, + { + "epoch": 26.657055482743555, + "grad_norm": 0.22041693329811096, + "learning_rate": 0.0006, + "loss": 3.833272933959961, + "step": 1919 + }, + { + "epoch": 26.67103538663172, + "grad_norm": 0.20679150521755219, + "learning_rate": 0.0006, + "loss": 3.8127288818359375, + "step": 1920 + }, + { + "epoch": 26.68501529051988, + "grad_norm": 0.21545100212097168, + "learning_rate": 0.0006, + "loss": 3.816051483154297, + "step": 1921 + }, + { + "epoch": 26.698995194408038, + "grad_norm": 0.23554518818855286, + "learning_rate": 0.0006, + "loss": 3.8180980682373047, + "step": 1922 + }, + { + "epoch": 26.712975098296198, + "grad_norm": 0.21942466497421265, + "learning_rate": 0.0006, + "loss": 3.803107976913452, + "step": 1923 + }, + { + "epoch": 26.72695500218436, + "grad_norm": 0.22335010766983032, + "learning_rate": 0.0006, + "loss": 3.847890853881836, + "step": 1924 + }, + { + "epoch": 26.74093490607252, + "grad_norm": 0.24731314182281494, + "learning_rate": 0.0006, + "loss": 3.7945008277893066, + "step": 1925 + }, + { + "epoch": 26.75491480996068, + "grad_norm": 0.2804568111896515, + "learning_rate": 0.0006, + "loss": 3.8400068283081055, + "step": 1926 + }, + { + "epoch": 26.76889471384884, + "grad_norm": 0.28787222504615784, + "learning_rate": 0.0006, + "loss": 3.839771270751953, + "step": 1927 + }, + { + "epoch": 26.782874617737004, + "grad_norm": 0.2949632406234741, + "learning_rate": 0.0006, + "loss": 3.8225326538085938, + "step": 1928 + }, + { + "epoch": 26.796854521625164, + "grad_norm": 0.31546032428741455, + "learning_rate": 0.0006, + "loss": 3.8182597160339355, + "step": 1929 + }, + { + "epoch": 26.810834425513324, + "grad_norm": 0.2956962585449219, + "learning_rate": 0.0006, + "loss": 3.8315680027008057, + "step": 1930 + }, + { + "epoch": 26.824814329401484, + "grad_norm": 0.26943835616111755, + "learning_rate": 0.0006, + "loss": 3.787720203399658, + "step": 1931 + }, + { + "epoch": 26.838794233289647, + "grad_norm": 0.24272359907627106, + "learning_rate": 0.0006, + "loss": 3.7973692417144775, + "step": 1932 + }, + { + "epoch": 26.852774137177807, + "grad_norm": 0.20553994178771973, + "learning_rate": 0.0006, + "loss": 3.8241593837738037, + "step": 1933 + }, + { + "epoch": 26.866754041065967, + "grad_norm": 0.21927912533283234, + "learning_rate": 0.0006, + "loss": 3.8608899116516113, + "step": 1934 + }, + { + "epoch": 26.88073394495413, + "grad_norm": 0.22878016531467438, + "learning_rate": 0.0006, + "loss": 3.8341972827911377, + "step": 1935 + }, + { + "epoch": 26.89471384884229, + "grad_norm": 0.2085554301738739, + "learning_rate": 0.0006, + "loss": 3.8261351585388184, + "step": 1936 + }, + { + "epoch": 26.90869375273045, + "grad_norm": 0.21259072422981262, + "learning_rate": 0.0006, + "loss": 3.862056255340576, + "step": 1937 + }, + { + "epoch": 26.92267365661861, + "grad_norm": 0.21354122459888458, + "learning_rate": 0.0006, + "loss": 3.80879545211792, + "step": 1938 + }, + { + "epoch": 26.936653560506773, + "grad_norm": 0.2350253462791443, + "learning_rate": 0.0006, + "loss": 3.817826271057129, + "step": 1939 + }, + { + "epoch": 26.950633464394933, + "grad_norm": 0.23833836615085602, + "learning_rate": 0.0006, + "loss": 3.8220884799957275, + "step": 1940 + }, + { + "epoch": 26.964613368283093, + "grad_norm": 0.2368069440126419, + "learning_rate": 0.0006, + "loss": 3.843264579772949, + "step": 1941 + }, + { + "epoch": 26.978593272171253, + "grad_norm": 0.22663559019565582, + "learning_rate": 0.0006, + "loss": 3.81339430809021, + "step": 1942 + }, + { + "epoch": 26.992573176059416, + "grad_norm": 0.2151402235031128, + "learning_rate": 0.0006, + "loss": 3.8262834548950195, + "step": 1943 + }, + { + "epoch": 27.0, + "grad_norm": 0.24320295453071594, + "learning_rate": 0.0006, + "loss": 3.858567237854004, + "step": 1944 + }, + { + "epoch": 27.0, + "eval_loss": 4.0613322257995605, + "eval_runtime": 44.766, + "eval_samples_per_second": 54.55, + "eval_steps_per_second": 3.418, + "step": 1944 + }, + { + "epoch": 27.01397990388816, + "grad_norm": 0.21188032627105713, + "learning_rate": 0.0006, + "loss": 3.7631278038024902, + "step": 1945 + }, + { + "epoch": 27.027959807776323, + "grad_norm": 0.22298137843608856, + "learning_rate": 0.0006, + "loss": 3.784029245376587, + "step": 1946 + }, + { + "epoch": 27.041939711664483, + "grad_norm": 0.26530158519744873, + "learning_rate": 0.0006, + "loss": 3.795860767364502, + "step": 1947 + }, + { + "epoch": 27.055919615552643, + "grad_norm": 0.24476729333400726, + "learning_rate": 0.0006, + "loss": 3.77512264251709, + "step": 1948 + }, + { + "epoch": 27.069899519440803, + "grad_norm": 0.1934421956539154, + "learning_rate": 0.0006, + "loss": 3.7797446250915527, + "step": 1949 + }, + { + "epoch": 27.083879423328966, + "grad_norm": 0.19777092337608337, + "learning_rate": 0.0006, + "loss": 3.798935890197754, + "step": 1950 + }, + { + "epoch": 27.097859327217126, + "grad_norm": 0.2071693390607834, + "learning_rate": 0.0006, + "loss": 3.763094425201416, + "step": 1951 + }, + { + "epoch": 27.111839231105286, + "grad_norm": 0.18394742906093597, + "learning_rate": 0.0006, + "loss": 3.7892322540283203, + "step": 1952 + }, + { + "epoch": 27.125819134993446, + "grad_norm": 0.17878273129463196, + "learning_rate": 0.0006, + "loss": 3.787968158721924, + "step": 1953 + }, + { + "epoch": 27.13979903888161, + "grad_norm": 0.18792171776294708, + "learning_rate": 0.0006, + "loss": 3.7719640731811523, + "step": 1954 + }, + { + "epoch": 27.15377894276977, + "grad_norm": 0.18718759715557098, + "learning_rate": 0.0006, + "loss": 3.791835308074951, + "step": 1955 + }, + { + "epoch": 27.16775884665793, + "grad_norm": 0.18716055154800415, + "learning_rate": 0.0006, + "loss": 3.7490220069885254, + "step": 1956 + }, + { + "epoch": 27.18173875054609, + "grad_norm": 0.18429182469844818, + "learning_rate": 0.0006, + "loss": 3.8020081520080566, + "step": 1957 + }, + { + "epoch": 27.195718654434252, + "grad_norm": 0.18571704626083374, + "learning_rate": 0.0006, + "loss": 3.8152215480804443, + "step": 1958 + }, + { + "epoch": 27.209698558322412, + "grad_norm": 0.1788843423128128, + "learning_rate": 0.0006, + "loss": 3.8173317909240723, + "step": 1959 + }, + { + "epoch": 27.22367846221057, + "grad_norm": 0.20459426939487457, + "learning_rate": 0.0006, + "loss": 3.7760040760040283, + "step": 1960 + }, + { + "epoch": 27.23765836609873, + "grad_norm": 0.22360935807228088, + "learning_rate": 0.0006, + "loss": 3.8140203952789307, + "step": 1961 + }, + { + "epoch": 27.251638269986895, + "grad_norm": 0.2062767595052719, + "learning_rate": 0.0006, + "loss": 3.792001247406006, + "step": 1962 + }, + { + "epoch": 27.265618173875055, + "grad_norm": 0.20628073811531067, + "learning_rate": 0.0006, + "loss": 3.7873167991638184, + "step": 1963 + }, + { + "epoch": 27.279598077763215, + "grad_norm": 0.19888348877429962, + "learning_rate": 0.0006, + "loss": 3.7903614044189453, + "step": 1964 + }, + { + "epoch": 27.293577981651374, + "grad_norm": 0.22033332288265228, + "learning_rate": 0.0006, + "loss": 3.802497148513794, + "step": 1965 + }, + { + "epoch": 27.307557885539538, + "grad_norm": 0.23476941883563995, + "learning_rate": 0.0006, + "loss": 3.794090986251831, + "step": 1966 + }, + { + "epoch": 27.321537789427698, + "grad_norm": 0.19639968872070312, + "learning_rate": 0.0006, + "loss": 3.831794023513794, + "step": 1967 + }, + { + "epoch": 27.335517693315857, + "grad_norm": 0.18169641494750977, + "learning_rate": 0.0006, + "loss": 3.7687768936157227, + "step": 1968 + }, + { + "epoch": 27.34949759720402, + "grad_norm": 0.17781762778759003, + "learning_rate": 0.0006, + "loss": 3.7868471145629883, + "step": 1969 + }, + { + "epoch": 27.36347750109218, + "grad_norm": 0.18990416824817657, + "learning_rate": 0.0006, + "loss": 3.8340392112731934, + "step": 1970 + }, + { + "epoch": 27.37745740498034, + "grad_norm": 0.2031438797712326, + "learning_rate": 0.0006, + "loss": 3.804513454437256, + "step": 1971 + }, + { + "epoch": 27.3914373088685, + "grad_norm": 0.21233421564102173, + "learning_rate": 0.0006, + "loss": 3.7908449172973633, + "step": 1972 + }, + { + "epoch": 27.405417212756664, + "grad_norm": 0.22480927407741547, + "learning_rate": 0.0006, + "loss": 3.7894086837768555, + "step": 1973 + }, + { + "epoch": 27.419397116644824, + "grad_norm": 0.22713422775268555, + "learning_rate": 0.0006, + "loss": 3.826005458831787, + "step": 1974 + }, + { + "epoch": 27.433377020532983, + "grad_norm": 0.21637366712093353, + "learning_rate": 0.0006, + "loss": 3.8232319355010986, + "step": 1975 + }, + { + "epoch": 27.447356924421143, + "grad_norm": 0.24092449247837067, + "learning_rate": 0.0006, + "loss": 3.813279628753662, + "step": 1976 + }, + { + "epoch": 27.461336828309307, + "grad_norm": 0.21143047511577606, + "learning_rate": 0.0006, + "loss": 3.811586856842041, + "step": 1977 + }, + { + "epoch": 27.475316732197467, + "grad_norm": 0.21049432456493378, + "learning_rate": 0.0006, + "loss": 3.8227009773254395, + "step": 1978 + }, + { + "epoch": 27.489296636085626, + "grad_norm": 0.21853850781917572, + "learning_rate": 0.0006, + "loss": 3.7992515563964844, + "step": 1979 + }, + { + "epoch": 27.503276539973786, + "grad_norm": 0.22405001521110535, + "learning_rate": 0.0006, + "loss": 3.8311715126037598, + "step": 1980 + }, + { + "epoch": 27.51725644386195, + "grad_norm": 0.24085809290409088, + "learning_rate": 0.0006, + "loss": 3.801962375640869, + "step": 1981 + }, + { + "epoch": 27.53123634775011, + "grad_norm": 0.2612341642379761, + "learning_rate": 0.0006, + "loss": 3.7867887020111084, + "step": 1982 + }, + { + "epoch": 27.54521625163827, + "grad_norm": 0.25136062502861023, + "learning_rate": 0.0006, + "loss": 3.8302273750305176, + "step": 1983 + }, + { + "epoch": 27.55919615552643, + "grad_norm": 0.2485426515340805, + "learning_rate": 0.0006, + "loss": 3.770616054534912, + "step": 1984 + }, + { + "epoch": 27.573176059414592, + "grad_norm": 0.28883907198905945, + "learning_rate": 0.0006, + "loss": 3.8152146339416504, + "step": 1985 + }, + { + "epoch": 27.587155963302752, + "grad_norm": 0.28177911043167114, + "learning_rate": 0.0006, + "loss": 3.7966861724853516, + "step": 1986 + }, + { + "epoch": 27.601135867190912, + "grad_norm": 0.2573191523551941, + "learning_rate": 0.0006, + "loss": 3.820788621902466, + "step": 1987 + }, + { + "epoch": 27.615115771079076, + "grad_norm": 0.22225657105445862, + "learning_rate": 0.0006, + "loss": 3.778477191925049, + "step": 1988 + }, + { + "epoch": 27.629095674967235, + "grad_norm": 0.20118530094623566, + "learning_rate": 0.0006, + "loss": 3.8416988849639893, + "step": 1989 + }, + { + "epoch": 27.643075578855395, + "grad_norm": 0.21168658137321472, + "learning_rate": 0.0006, + "loss": 3.798020839691162, + "step": 1990 + }, + { + "epoch": 27.657055482743555, + "grad_norm": 0.2460680454969406, + "learning_rate": 0.0006, + "loss": 3.805917263031006, + "step": 1991 + }, + { + "epoch": 27.67103538663172, + "grad_norm": 0.2700909674167633, + "learning_rate": 0.0006, + "loss": 3.8042726516723633, + "step": 1992 + }, + { + "epoch": 27.68501529051988, + "grad_norm": 0.25814294815063477, + "learning_rate": 0.0006, + "loss": 3.799159049987793, + "step": 1993 + }, + { + "epoch": 27.698995194408038, + "grad_norm": 0.2231985628604889, + "learning_rate": 0.0006, + "loss": 3.778750419616699, + "step": 1994 + }, + { + "epoch": 27.712975098296198, + "grad_norm": 0.20807890594005585, + "learning_rate": 0.0006, + "loss": 3.787919044494629, + "step": 1995 + }, + { + "epoch": 27.72695500218436, + "grad_norm": 0.19537150859832764, + "learning_rate": 0.0006, + "loss": 3.7917299270629883, + "step": 1996 + }, + { + "epoch": 27.74093490607252, + "grad_norm": 0.21057647466659546, + "learning_rate": 0.0006, + "loss": 3.8096866607666016, + "step": 1997 + }, + { + "epoch": 27.75491480996068, + "grad_norm": 0.18983247876167297, + "learning_rate": 0.0006, + "loss": 3.7881717681884766, + "step": 1998 + }, + { + "epoch": 27.76889471384884, + "grad_norm": 0.18701069056987762, + "learning_rate": 0.0006, + "loss": 3.810790538787842, + "step": 1999 + }, + { + "epoch": 27.782874617737004, + "grad_norm": 0.1920134723186493, + "learning_rate": 0.0006, + "loss": 3.8161087036132812, + "step": 2000 + }, + { + "epoch": 27.796854521625164, + "grad_norm": 0.20413947105407715, + "learning_rate": 0.0006, + "loss": 3.790499687194824, + "step": 2001 + }, + { + "epoch": 27.810834425513324, + "grad_norm": 0.1920027732849121, + "learning_rate": 0.0006, + "loss": 3.8194262981414795, + "step": 2002 + }, + { + "epoch": 27.824814329401484, + "grad_norm": 0.18630221486091614, + "learning_rate": 0.0006, + "loss": 3.8267152309417725, + "step": 2003 + }, + { + "epoch": 27.838794233289647, + "grad_norm": 0.1787925660610199, + "learning_rate": 0.0006, + "loss": 3.8147521018981934, + "step": 2004 + }, + { + "epoch": 27.852774137177807, + "grad_norm": 0.19187216460704803, + "learning_rate": 0.0006, + "loss": 3.7751095294952393, + "step": 2005 + }, + { + "epoch": 27.866754041065967, + "grad_norm": 0.18825744092464447, + "learning_rate": 0.0006, + "loss": 3.807401657104492, + "step": 2006 + }, + { + "epoch": 27.88073394495413, + "grad_norm": 0.1879836469888687, + "learning_rate": 0.0006, + "loss": 3.8302509784698486, + "step": 2007 + }, + { + "epoch": 27.89471384884229, + "grad_norm": 0.19136391580104828, + "learning_rate": 0.0006, + "loss": 3.7886242866516113, + "step": 2008 + }, + { + "epoch": 27.90869375273045, + "grad_norm": 0.18774119019508362, + "learning_rate": 0.0006, + "loss": 3.8202977180480957, + "step": 2009 + }, + { + "epoch": 27.92267365661861, + "grad_norm": 0.17794452607631683, + "learning_rate": 0.0006, + "loss": 3.813382387161255, + "step": 2010 + }, + { + "epoch": 27.936653560506773, + "grad_norm": 0.1876268833875656, + "learning_rate": 0.0006, + "loss": 3.810610294342041, + "step": 2011 + }, + { + "epoch": 27.950633464394933, + "grad_norm": 0.19262051582336426, + "learning_rate": 0.0006, + "loss": 3.8113245964050293, + "step": 2012 + }, + { + "epoch": 27.964613368283093, + "grad_norm": 0.19371771812438965, + "learning_rate": 0.0006, + "loss": 3.804790496826172, + "step": 2013 + }, + { + "epoch": 27.978593272171253, + "grad_norm": 0.1922861784696579, + "learning_rate": 0.0006, + "loss": 3.8278889656066895, + "step": 2014 + }, + { + "epoch": 27.992573176059416, + "grad_norm": 0.19748565554618835, + "learning_rate": 0.0006, + "loss": 3.8127200603485107, + "step": 2015 + }, + { + "epoch": 28.0, + "grad_norm": 0.25027501583099365, + "learning_rate": 0.0006, + "loss": 3.7899413108825684, + "step": 2016 + }, + { + "epoch": 28.0, + "eval_loss": 4.047704219818115, + "eval_runtime": 44.293, + "eval_samples_per_second": 55.133, + "eval_steps_per_second": 3.454, + "step": 2016 + }, + { + "epoch": 28.01397990388816, + "grad_norm": 0.25172367691993713, + "learning_rate": 0.0006, + "loss": 3.75449538230896, + "step": 2017 + }, + { + "epoch": 28.027959807776323, + "grad_norm": 0.23494598269462585, + "learning_rate": 0.0006, + "loss": 3.7609024047851562, + "step": 2018 + }, + { + "epoch": 28.041939711664483, + "grad_norm": 0.22459708154201508, + "learning_rate": 0.0006, + "loss": 3.7843551635742188, + "step": 2019 + }, + { + "epoch": 28.055919615552643, + "grad_norm": 0.2038632035255432, + "learning_rate": 0.0006, + "loss": 3.7818198204040527, + "step": 2020 + }, + { + "epoch": 28.069899519440803, + "grad_norm": 0.22050008177757263, + "learning_rate": 0.0006, + "loss": 3.787442684173584, + "step": 2021 + }, + { + "epoch": 28.083879423328966, + "grad_norm": 0.24645832180976868, + "learning_rate": 0.0006, + "loss": 3.768704414367676, + "step": 2022 + }, + { + "epoch": 28.097859327217126, + "grad_norm": 0.2440163493156433, + "learning_rate": 0.0006, + "loss": 3.7783756256103516, + "step": 2023 + }, + { + "epoch": 28.111839231105286, + "grad_norm": 0.2482181042432785, + "learning_rate": 0.0006, + "loss": 3.786881923675537, + "step": 2024 + }, + { + "epoch": 28.125819134993446, + "grad_norm": 0.23494760692119598, + "learning_rate": 0.0006, + "loss": 3.790039300918579, + "step": 2025 + }, + { + "epoch": 28.13979903888161, + "grad_norm": 0.2172182947397232, + "learning_rate": 0.0006, + "loss": 3.818756580352783, + "step": 2026 + }, + { + "epoch": 28.15377894276977, + "grad_norm": 0.2103179395198822, + "learning_rate": 0.0006, + "loss": 3.7768917083740234, + "step": 2027 + }, + { + "epoch": 28.16775884665793, + "grad_norm": 0.22322365641593933, + "learning_rate": 0.0006, + "loss": 3.8223648071289062, + "step": 2028 + }, + { + "epoch": 28.18173875054609, + "grad_norm": 0.24199382960796356, + "learning_rate": 0.0006, + "loss": 3.781357765197754, + "step": 2029 + }, + { + "epoch": 28.195718654434252, + "grad_norm": 0.2500663101673126, + "learning_rate": 0.0006, + "loss": 3.8061184883117676, + "step": 2030 + }, + { + "epoch": 28.209698558322412, + "grad_norm": 0.2439824491739273, + "learning_rate": 0.0006, + "loss": 3.7886464595794678, + "step": 2031 + }, + { + "epoch": 28.22367846221057, + "grad_norm": 0.24563106894493103, + "learning_rate": 0.0006, + "loss": 3.7901692390441895, + "step": 2032 + }, + { + "epoch": 28.23765836609873, + "grad_norm": 0.2287624627351761, + "learning_rate": 0.0006, + "loss": 3.789931058883667, + "step": 2033 + }, + { + "epoch": 28.251638269986895, + "grad_norm": 0.2231188714504242, + "learning_rate": 0.0006, + "loss": 3.7879133224487305, + "step": 2034 + }, + { + "epoch": 28.265618173875055, + "grad_norm": 0.23090387880802155, + "learning_rate": 0.0006, + "loss": 3.7826130390167236, + "step": 2035 + }, + { + "epoch": 28.279598077763215, + "grad_norm": 0.216018944978714, + "learning_rate": 0.0006, + "loss": 3.7764949798583984, + "step": 2036 + }, + { + "epoch": 28.293577981651374, + "grad_norm": 0.22649185359477997, + "learning_rate": 0.0006, + "loss": 3.7911291122436523, + "step": 2037 + }, + { + "epoch": 28.307557885539538, + "grad_norm": 0.2350836843252182, + "learning_rate": 0.0006, + "loss": 3.7668724060058594, + "step": 2038 + }, + { + "epoch": 28.321537789427698, + "grad_norm": 0.23206329345703125, + "learning_rate": 0.0006, + "loss": 3.782243251800537, + "step": 2039 + }, + { + "epoch": 28.335517693315857, + "grad_norm": 0.21896308660507202, + "learning_rate": 0.0006, + "loss": 3.7605721950531006, + "step": 2040 + }, + { + "epoch": 28.34949759720402, + "grad_norm": 0.20381200313568115, + "learning_rate": 0.0006, + "loss": 3.743945598602295, + "step": 2041 + }, + { + "epoch": 28.36347750109218, + "grad_norm": 0.19196000695228577, + "learning_rate": 0.0006, + "loss": 3.808107852935791, + "step": 2042 + }, + { + "epoch": 28.37745740498034, + "grad_norm": 0.19517889618873596, + "learning_rate": 0.0006, + "loss": 3.7906723022460938, + "step": 2043 + }, + { + "epoch": 28.3914373088685, + "grad_norm": 0.20455795526504517, + "learning_rate": 0.0006, + "loss": 3.7421011924743652, + "step": 2044 + }, + { + "epoch": 28.405417212756664, + "grad_norm": 0.1867467314004898, + "learning_rate": 0.0006, + "loss": 3.775509834289551, + "step": 2045 + }, + { + "epoch": 28.419397116644824, + "grad_norm": 0.2029324471950531, + "learning_rate": 0.0006, + "loss": 3.771353244781494, + "step": 2046 + }, + { + "epoch": 28.433377020532983, + "grad_norm": 0.19967497885227203, + "learning_rate": 0.0006, + "loss": 3.7821149826049805, + "step": 2047 + }, + { + "epoch": 28.447356924421143, + "grad_norm": 0.19440607726573944, + "learning_rate": 0.0006, + "loss": 3.8114213943481445, + "step": 2048 + }, + { + "epoch": 28.461336828309307, + "grad_norm": 0.19679802656173706, + "learning_rate": 0.0006, + "loss": 3.7699532508850098, + "step": 2049 + }, + { + "epoch": 28.475316732197467, + "grad_norm": 0.1939811110496521, + "learning_rate": 0.0006, + "loss": 3.7673027515411377, + "step": 2050 + }, + { + "epoch": 28.489296636085626, + "grad_norm": 0.18712401390075684, + "learning_rate": 0.0006, + "loss": 3.816699266433716, + "step": 2051 + }, + { + "epoch": 28.503276539973786, + "grad_norm": 0.202956885099411, + "learning_rate": 0.0006, + "loss": 3.7746071815490723, + "step": 2052 + }, + { + "epoch": 28.51725644386195, + "grad_norm": 0.19098156690597534, + "learning_rate": 0.0006, + "loss": 3.8065481185913086, + "step": 2053 + }, + { + "epoch": 28.53123634775011, + "grad_norm": 0.21144428849220276, + "learning_rate": 0.0006, + "loss": 3.7890982627868652, + "step": 2054 + }, + { + "epoch": 28.54521625163827, + "grad_norm": 0.21882614493370056, + "learning_rate": 0.0006, + "loss": 3.8168821334838867, + "step": 2055 + }, + { + "epoch": 28.55919615552643, + "grad_norm": 0.22200101613998413, + "learning_rate": 0.0006, + "loss": 3.804454803466797, + "step": 2056 + }, + { + "epoch": 28.573176059414592, + "grad_norm": 0.22404780983924866, + "learning_rate": 0.0006, + "loss": 3.808764934539795, + "step": 2057 + }, + { + "epoch": 28.587155963302752, + "grad_norm": 0.22770099341869354, + "learning_rate": 0.0006, + "loss": 3.74835467338562, + "step": 2058 + }, + { + "epoch": 28.601135867190912, + "grad_norm": 0.23214420676231384, + "learning_rate": 0.0006, + "loss": 3.7480111122131348, + "step": 2059 + }, + { + "epoch": 28.615115771079076, + "grad_norm": 0.21786348521709442, + "learning_rate": 0.0006, + "loss": 3.8095176219940186, + "step": 2060 + }, + { + "epoch": 28.629095674967235, + "grad_norm": 0.21004106104373932, + "learning_rate": 0.0006, + "loss": 3.792745590209961, + "step": 2061 + }, + { + "epoch": 28.643075578855395, + "grad_norm": 0.21076138317584991, + "learning_rate": 0.0006, + "loss": 3.7878952026367188, + "step": 2062 + }, + { + "epoch": 28.657055482743555, + "grad_norm": 0.2184346616268158, + "learning_rate": 0.0006, + "loss": 3.757188320159912, + "step": 2063 + }, + { + "epoch": 28.67103538663172, + "grad_norm": 0.22100569307804108, + "learning_rate": 0.0006, + "loss": 3.8131773471832275, + "step": 2064 + }, + { + "epoch": 28.68501529051988, + "grad_norm": 0.23257511854171753, + "learning_rate": 0.0006, + "loss": 3.793826103210449, + "step": 2065 + }, + { + "epoch": 28.698995194408038, + "grad_norm": 0.22312869131565094, + "learning_rate": 0.0006, + "loss": 3.782083749771118, + "step": 2066 + }, + { + "epoch": 28.712975098296198, + "grad_norm": 0.2318405956029892, + "learning_rate": 0.0006, + "loss": 3.7814879417419434, + "step": 2067 + }, + { + "epoch": 28.72695500218436, + "grad_norm": 0.23719379305839539, + "learning_rate": 0.0006, + "loss": 3.8320484161376953, + "step": 2068 + }, + { + "epoch": 28.74093490607252, + "grad_norm": 0.23100806772708893, + "learning_rate": 0.0006, + "loss": 3.7921783924102783, + "step": 2069 + }, + { + "epoch": 28.75491480996068, + "grad_norm": 0.21540866792201996, + "learning_rate": 0.0006, + "loss": 3.8325204849243164, + "step": 2070 + }, + { + "epoch": 28.76889471384884, + "grad_norm": 0.2698654532432556, + "learning_rate": 0.0006, + "loss": 3.7965879440307617, + "step": 2071 + }, + { + "epoch": 28.782874617737004, + "grad_norm": 0.3101225793361664, + "learning_rate": 0.0006, + "loss": 3.78842830657959, + "step": 2072 + }, + { + "epoch": 28.796854521625164, + "grad_norm": 0.2607600688934326, + "learning_rate": 0.0006, + "loss": 3.770064115524292, + "step": 2073 + }, + { + "epoch": 28.810834425513324, + "grad_norm": 0.20558302104473114, + "learning_rate": 0.0006, + "loss": 3.7448501586914062, + "step": 2074 + }, + { + "epoch": 28.824814329401484, + "grad_norm": 0.20030120015144348, + "learning_rate": 0.0006, + "loss": 3.7689406871795654, + "step": 2075 + }, + { + "epoch": 28.838794233289647, + "grad_norm": 0.21781118214130402, + "learning_rate": 0.0006, + "loss": 3.7682244777679443, + "step": 2076 + }, + { + "epoch": 28.852774137177807, + "grad_norm": 0.23543044924736023, + "learning_rate": 0.0006, + "loss": 3.8094193935394287, + "step": 2077 + }, + { + "epoch": 28.866754041065967, + "grad_norm": 0.21634669601917267, + "learning_rate": 0.0006, + "loss": 3.792099952697754, + "step": 2078 + }, + { + "epoch": 28.88073394495413, + "grad_norm": 0.2251661866903305, + "learning_rate": 0.0006, + "loss": 3.7849509716033936, + "step": 2079 + }, + { + "epoch": 28.89471384884229, + "grad_norm": 0.23872914910316467, + "learning_rate": 0.0006, + "loss": 3.8391621112823486, + "step": 2080 + }, + { + "epoch": 28.90869375273045, + "grad_norm": 0.22259248793125153, + "learning_rate": 0.0006, + "loss": 3.8272876739501953, + "step": 2081 + }, + { + "epoch": 28.92267365661861, + "grad_norm": 0.22052262723445892, + "learning_rate": 0.0006, + "loss": 3.7986836433410645, + "step": 2082 + }, + { + "epoch": 28.936653560506773, + "grad_norm": 0.24487647414207458, + "learning_rate": 0.0006, + "loss": 3.798004150390625, + "step": 2083 + }, + { + "epoch": 28.950633464394933, + "grad_norm": 0.22992238402366638, + "learning_rate": 0.0006, + "loss": 3.788522720336914, + "step": 2084 + }, + { + "epoch": 28.964613368283093, + "grad_norm": 0.22521597146987915, + "learning_rate": 0.0006, + "loss": 3.767259120941162, + "step": 2085 + }, + { + "epoch": 28.978593272171253, + "grad_norm": 0.2201499044895172, + "learning_rate": 0.0006, + "loss": 3.7850542068481445, + "step": 2086 + }, + { + "epoch": 28.992573176059416, + "grad_norm": 0.22226814925670624, + "learning_rate": 0.0006, + "loss": 3.8013534545898438, + "step": 2087 + }, + { + "epoch": 29.0, + "grad_norm": 0.27624809741973877, + "learning_rate": 0.0006, + "loss": 3.762004852294922, + "step": 2088 + }, + { + "epoch": 29.0, + "eval_loss": 4.034304618835449, + "eval_runtime": 44.6573, + "eval_samples_per_second": 54.683, + "eval_steps_per_second": 3.426, + "step": 2088 + }, + { + "epoch": 29.01397990388816, + "grad_norm": 0.2550967037677765, + "learning_rate": 0.0006, + "loss": 3.7724227905273438, + "step": 2089 + }, + { + "epoch": 29.027959807776323, + "grad_norm": 0.26730602979660034, + "learning_rate": 0.0006, + "loss": 3.7728946208953857, + "step": 2090 + }, + { + "epoch": 29.041939711664483, + "grad_norm": 0.2394205927848816, + "learning_rate": 0.0006, + "loss": 3.7737584114074707, + "step": 2091 + }, + { + "epoch": 29.055919615552643, + "grad_norm": 0.22488200664520264, + "learning_rate": 0.0006, + "loss": 3.761014938354492, + "step": 2092 + }, + { + "epoch": 29.069899519440803, + "grad_norm": 0.2389903962612152, + "learning_rate": 0.0006, + "loss": 3.766557216644287, + "step": 2093 + }, + { + "epoch": 29.083879423328966, + "grad_norm": 0.234152153134346, + "learning_rate": 0.0006, + "loss": 3.7447147369384766, + "step": 2094 + }, + { + "epoch": 29.097859327217126, + "grad_norm": 0.23123252391815186, + "learning_rate": 0.0006, + "loss": 3.77197527885437, + "step": 2095 + }, + { + "epoch": 29.111839231105286, + "grad_norm": 0.23263143002986908, + "learning_rate": 0.0006, + "loss": 3.7390198707580566, + "step": 2096 + }, + { + "epoch": 29.125819134993446, + "grad_norm": 0.23235775530338287, + "learning_rate": 0.0006, + "loss": 3.7675256729125977, + "step": 2097 + }, + { + "epoch": 29.13979903888161, + "grad_norm": 0.2208816260099411, + "learning_rate": 0.0006, + "loss": 3.7588067054748535, + "step": 2098 + }, + { + "epoch": 29.15377894276977, + "grad_norm": 0.21216371655464172, + "learning_rate": 0.0006, + "loss": 3.7370502948760986, + "step": 2099 + }, + { + "epoch": 29.16775884665793, + "grad_norm": 0.2210543155670166, + "learning_rate": 0.0006, + "loss": 3.767308473587036, + "step": 2100 + }, + { + "epoch": 29.18173875054609, + "grad_norm": 0.21628431975841522, + "learning_rate": 0.0006, + "loss": 3.7298972606658936, + "step": 2101 + }, + { + "epoch": 29.195718654434252, + "grad_norm": 0.21493588387966156, + "learning_rate": 0.0006, + "loss": 3.7806448936462402, + "step": 2102 + }, + { + "epoch": 29.209698558322412, + "grad_norm": 0.25978055596351624, + "learning_rate": 0.0006, + "loss": 3.7716293334960938, + "step": 2103 + }, + { + "epoch": 29.22367846221057, + "grad_norm": 0.2744791507720947, + "learning_rate": 0.0006, + "loss": 3.76897931098938, + "step": 2104 + }, + { + "epoch": 29.23765836609873, + "grad_norm": 0.22959400713443756, + "learning_rate": 0.0006, + "loss": 3.7545714378356934, + "step": 2105 + }, + { + "epoch": 29.251638269986895, + "grad_norm": 0.20369231700897217, + "learning_rate": 0.0006, + "loss": 3.7944722175598145, + "step": 2106 + }, + { + "epoch": 29.265618173875055, + "grad_norm": 0.21663758158683777, + "learning_rate": 0.0006, + "loss": 3.7564756870269775, + "step": 2107 + }, + { + "epoch": 29.279598077763215, + "grad_norm": 0.21862861514091492, + "learning_rate": 0.0006, + "loss": 3.7722725868225098, + "step": 2108 + }, + { + "epoch": 29.293577981651374, + "grad_norm": 0.2044878453016281, + "learning_rate": 0.0006, + "loss": 3.7471303939819336, + "step": 2109 + }, + { + "epoch": 29.307557885539538, + "grad_norm": 0.23015929758548737, + "learning_rate": 0.0006, + "loss": 3.7584962844848633, + "step": 2110 + }, + { + "epoch": 29.321537789427698, + "grad_norm": 0.22548329830169678, + "learning_rate": 0.0006, + "loss": 3.795933723449707, + "step": 2111 + }, + { + "epoch": 29.335517693315857, + "grad_norm": 0.2000468522310257, + "learning_rate": 0.0006, + "loss": 3.766310691833496, + "step": 2112 + }, + { + "epoch": 29.34949759720402, + "grad_norm": 0.19711551070213318, + "learning_rate": 0.0006, + "loss": 3.7296276092529297, + "step": 2113 + }, + { + "epoch": 29.36347750109218, + "grad_norm": 0.18838997185230255, + "learning_rate": 0.0006, + "loss": 3.7685282230377197, + "step": 2114 + }, + { + "epoch": 29.37745740498034, + "grad_norm": 0.1897876113653183, + "learning_rate": 0.0006, + "loss": 3.7280936241149902, + "step": 2115 + }, + { + "epoch": 29.3914373088685, + "grad_norm": 0.21697933971881866, + "learning_rate": 0.0006, + "loss": 3.7991929054260254, + "step": 2116 + }, + { + "epoch": 29.405417212756664, + "grad_norm": 0.23445849120616913, + "learning_rate": 0.0006, + "loss": 3.7857418060302734, + "step": 2117 + }, + { + "epoch": 29.419397116644824, + "grad_norm": 0.24155527353286743, + "learning_rate": 0.0006, + "loss": 3.7897872924804688, + "step": 2118 + }, + { + "epoch": 29.433377020532983, + "grad_norm": 0.2610265016555786, + "learning_rate": 0.0006, + "loss": 3.7867324352264404, + "step": 2119 + }, + { + "epoch": 29.447356924421143, + "grad_norm": 0.2809581160545349, + "learning_rate": 0.0006, + "loss": 3.783799648284912, + "step": 2120 + }, + { + "epoch": 29.461336828309307, + "grad_norm": 0.2621572017669678, + "learning_rate": 0.0006, + "loss": 3.7778549194335938, + "step": 2121 + }, + { + "epoch": 29.475316732197467, + "grad_norm": 0.26002970337867737, + "learning_rate": 0.0006, + "loss": 3.787945508956909, + "step": 2122 + }, + { + "epoch": 29.489296636085626, + "grad_norm": 0.24866686761379242, + "learning_rate": 0.0006, + "loss": 3.7406349182128906, + "step": 2123 + }, + { + "epoch": 29.503276539973786, + "grad_norm": 0.25588324666023254, + "learning_rate": 0.0006, + "loss": 3.785625457763672, + "step": 2124 + }, + { + "epoch": 29.51725644386195, + "grad_norm": 0.24724243581295013, + "learning_rate": 0.0006, + "loss": 3.7581701278686523, + "step": 2125 + }, + { + "epoch": 29.53123634775011, + "grad_norm": 0.23544734716415405, + "learning_rate": 0.0006, + "loss": 3.8163957595825195, + "step": 2126 + }, + { + "epoch": 29.54521625163827, + "grad_norm": 0.2108801156282425, + "learning_rate": 0.0006, + "loss": 3.7881739139556885, + "step": 2127 + }, + { + "epoch": 29.55919615552643, + "grad_norm": 0.20459668338298798, + "learning_rate": 0.0006, + "loss": 3.7641284465789795, + "step": 2128 + }, + { + "epoch": 29.573176059414592, + "grad_norm": 0.24020728468894958, + "learning_rate": 0.0006, + "loss": 3.7748730182647705, + "step": 2129 + }, + { + "epoch": 29.587155963302752, + "grad_norm": 0.256273478269577, + "learning_rate": 0.0006, + "loss": 3.8076486587524414, + "step": 2130 + }, + { + "epoch": 29.601135867190912, + "grad_norm": 0.23295973241329193, + "learning_rate": 0.0006, + "loss": 3.7687063217163086, + "step": 2131 + }, + { + "epoch": 29.615115771079076, + "grad_norm": 0.21554847061634064, + "learning_rate": 0.0006, + "loss": 3.781867027282715, + "step": 2132 + }, + { + "epoch": 29.629095674967235, + "grad_norm": 0.20645774900913239, + "learning_rate": 0.0006, + "loss": 3.7813425064086914, + "step": 2133 + }, + { + "epoch": 29.643075578855395, + "grad_norm": 0.2018265724182129, + "learning_rate": 0.0006, + "loss": 3.772895574569702, + "step": 2134 + }, + { + "epoch": 29.657055482743555, + "grad_norm": 0.20170100033283234, + "learning_rate": 0.0006, + "loss": 3.7819175720214844, + "step": 2135 + }, + { + "epoch": 29.67103538663172, + "grad_norm": 0.22640688717365265, + "learning_rate": 0.0006, + "loss": 3.7999017238616943, + "step": 2136 + }, + { + "epoch": 29.68501529051988, + "grad_norm": 0.23747675120830536, + "learning_rate": 0.0006, + "loss": 3.804999828338623, + "step": 2137 + }, + { + "epoch": 29.698995194408038, + "grad_norm": 0.20005857944488525, + "learning_rate": 0.0006, + "loss": 3.7815160751342773, + "step": 2138 + }, + { + "epoch": 29.712975098296198, + "grad_norm": 0.17901667952537537, + "learning_rate": 0.0006, + "loss": 3.7898688316345215, + "step": 2139 + }, + { + "epoch": 29.72695500218436, + "grad_norm": 0.1890905797481537, + "learning_rate": 0.0006, + "loss": 3.8001184463500977, + "step": 2140 + }, + { + "epoch": 29.74093490607252, + "grad_norm": 0.19565847516059875, + "learning_rate": 0.0006, + "loss": 3.7522482872009277, + "step": 2141 + }, + { + "epoch": 29.75491480996068, + "grad_norm": 0.19429196417331696, + "learning_rate": 0.0006, + "loss": 3.768972158432007, + "step": 2142 + }, + { + "epoch": 29.76889471384884, + "grad_norm": 0.23846636712551117, + "learning_rate": 0.0006, + "loss": 3.765216112136841, + "step": 2143 + }, + { + "epoch": 29.782874617737004, + "grad_norm": 0.23820780217647552, + "learning_rate": 0.0006, + "loss": 3.8027703762054443, + "step": 2144 + }, + { + "epoch": 29.796854521625164, + "grad_norm": 0.21104726195335388, + "learning_rate": 0.0006, + "loss": 3.7682833671569824, + "step": 2145 + }, + { + "epoch": 29.810834425513324, + "grad_norm": 0.1911051720380783, + "learning_rate": 0.0006, + "loss": 3.781782627105713, + "step": 2146 + }, + { + "epoch": 29.824814329401484, + "grad_norm": 0.18881288170814514, + "learning_rate": 0.0006, + "loss": 3.7703428268432617, + "step": 2147 + }, + { + "epoch": 29.838794233289647, + "grad_norm": 0.18292994797229767, + "learning_rate": 0.0006, + "loss": 3.769176721572876, + "step": 2148 + }, + { + "epoch": 29.852774137177807, + "grad_norm": 0.1777714639902115, + "learning_rate": 0.0006, + "loss": 3.7488298416137695, + "step": 2149 + }, + { + "epoch": 29.866754041065967, + "grad_norm": 0.2037898749113083, + "learning_rate": 0.0006, + "loss": 3.804396390914917, + "step": 2150 + }, + { + "epoch": 29.88073394495413, + "grad_norm": 0.2121828943490982, + "learning_rate": 0.0006, + "loss": 3.75870943069458, + "step": 2151 + }, + { + "epoch": 29.89471384884229, + "grad_norm": 0.23231184482574463, + "learning_rate": 0.0006, + "loss": 3.80178165435791, + "step": 2152 + }, + { + "epoch": 29.90869375273045, + "grad_norm": 0.24045611917972565, + "learning_rate": 0.0006, + "loss": 3.7690834999084473, + "step": 2153 + }, + { + "epoch": 29.92267365661861, + "grad_norm": 0.19830496609210968, + "learning_rate": 0.0006, + "loss": 3.764401912689209, + "step": 2154 + }, + { + "epoch": 29.936653560506773, + "grad_norm": 0.17704227566719055, + "learning_rate": 0.0006, + "loss": 3.7634594440460205, + "step": 2155 + }, + { + "epoch": 29.950633464394933, + "grad_norm": 0.17783164978027344, + "learning_rate": 0.0006, + "loss": 3.7856998443603516, + "step": 2156 + }, + { + "epoch": 29.964613368283093, + "grad_norm": 0.19684971868991852, + "learning_rate": 0.0006, + "loss": 3.805774211883545, + "step": 2157 + }, + { + "epoch": 29.978593272171253, + "grad_norm": 0.21662312746047974, + "learning_rate": 0.0006, + "loss": 3.757896661758423, + "step": 2158 + }, + { + "epoch": 29.992573176059416, + "grad_norm": 0.22000661492347717, + "learning_rate": 0.0006, + "loss": 3.7747678756713867, + "step": 2159 + }, + { + "epoch": 30.0, + "grad_norm": 0.21501901745796204, + "learning_rate": 0.0006, + "loss": 3.785585880279541, + "step": 2160 + }, + { + "epoch": 30.0, + "eval_loss": 4.034003734588623, + "eval_runtime": 44.9097, + "eval_samples_per_second": 54.376, + "eval_steps_per_second": 3.407, + "step": 2160 + }, + { + "epoch": 30.01397990388816, + "grad_norm": 0.19710904359817505, + "learning_rate": 0.0006, + "loss": 3.756235122680664, + "step": 2161 + }, + { + "epoch": 30.027959807776323, + "grad_norm": 0.19829736649990082, + "learning_rate": 0.0006, + "loss": 3.734067916870117, + "step": 2162 + }, + { + "epoch": 30.041939711664483, + "grad_norm": 0.21622520685195923, + "learning_rate": 0.0006, + "loss": 3.7329437732696533, + "step": 2163 + }, + { + "epoch": 30.055919615552643, + "grad_norm": 0.22544652223587036, + "learning_rate": 0.0006, + "loss": 3.748716354370117, + "step": 2164 + }, + { + "epoch": 30.069899519440803, + "grad_norm": 0.21098364889621735, + "learning_rate": 0.0006, + "loss": 3.779047727584839, + "step": 2165 + }, + { + "epoch": 30.083879423328966, + "grad_norm": 0.21309930086135864, + "learning_rate": 0.0006, + "loss": 3.7690274715423584, + "step": 2166 + }, + { + "epoch": 30.097859327217126, + "grad_norm": 0.23025690019130707, + "learning_rate": 0.0006, + "loss": 3.7500953674316406, + "step": 2167 + }, + { + "epoch": 30.111839231105286, + "grad_norm": 0.25107935070991516, + "learning_rate": 0.0006, + "loss": 3.745492458343506, + "step": 2168 + }, + { + "epoch": 30.125819134993446, + "grad_norm": 0.29873573780059814, + "learning_rate": 0.0006, + "loss": 3.759793758392334, + "step": 2169 + }, + { + "epoch": 30.13979903888161, + "grad_norm": 0.2810286283493042, + "learning_rate": 0.0006, + "loss": 3.772998809814453, + "step": 2170 + }, + { + "epoch": 30.15377894276977, + "grad_norm": 0.2102176398038864, + "learning_rate": 0.0006, + "loss": 3.740170955657959, + "step": 2171 + }, + { + "epoch": 30.16775884665793, + "grad_norm": 0.24143251776695251, + "learning_rate": 0.0006, + "loss": 3.7317001819610596, + "step": 2172 + }, + { + "epoch": 30.18173875054609, + "grad_norm": 0.2643064558506012, + "learning_rate": 0.0006, + "loss": 3.773263692855835, + "step": 2173 + }, + { + "epoch": 30.195718654434252, + "grad_norm": 0.27571243047714233, + "learning_rate": 0.0006, + "loss": 3.7619900703430176, + "step": 2174 + }, + { + "epoch": 30.209698558322412, + "grad_norm": 0.25359588861465454, + "learning_rate": 0.0006, + "loss": 3.7608513832092285, + "step": 2175 + }, + { + "epoch": 30.22367846221057, + "grad_norm": 0.2500684857368469, + "learning_rate": 0.0006, + "loss": 3.75856614112854, + "step": 2176 + }, + { + "epoch": 30.23765836609873, + "grad_norm": 0.23100309073925018, + "learning_rate": 0.0006, + "loss": 3.749786853790283, + "step": 2177 + }, + { + "epoch": 30.251638269986895, + "grad_norm": 0.24384984374046326, + "learning_rate": 0.0006, + "loss": 3.762244701385498, + "step": 2178 + }, + { + "epoch": 30.265618173875055, + "grad_norm": 0.24593998491764069, + "learning_rate": 0.0006, + "loss": 3.754594326019287, + "step": 2179 + }, + { + "epoch": 30.279598077763215, + "grad_norm": 0.2529342770576477, + "learning_rate": 0.0006, + "loss": 3.7641053199768066, + "step": 2180 + }, + { + "epoch": 30.293577981651374, + "grad_norm": 0.25954094529151917, + "learning_rate": 0.0006, + "loss": 3.810336112976074, + "step": 2181 + }, + { + "epoch": 30.307557885539538, + "grad_norm": 0.2249951958656311, + "learning_rate": 0.0006, + "loss": 3.7542617321014404, + "step": 2182 + }, + { + "epoch": 30.321537789427698, + "grad_norm": 0.19795064628124237, + "learning_rate": 0.0006, + "loss": 3.7734434604644775, + "step": 2183 + }, + { + "epoch": 30.335517693315857, + "grad_norm": 0.20744608342647552, + "learning_rate": 0.0006, + "loss": 3.7816128730773926, + "step": 2184 + }, + { + "epoch": 30.34949759720402, + "grad_norm": 0.19988055527210236, + "learning_rate": 0.0006, + "loss": 3.7631936073303223, + "step": 2185 + }, + { + "epoch": 30.36347750109218, + "grad_norm": 0.22226445376873016, + "learning_rate": 0.0006, + "loss": 3.762910842895508, + "step": 2186 + }, + { + "epoch": 30.37745740498034, + "grad_norm": 0.21986067295074463, + "learning_rate": 0.0006, + "loss": 3.733893394470215, + "step": 2187 + }, + { + "epoch": 30.3914373088685, + "grad_norm": 0.2170228660106659, + "learning_rate": 0.0006, + "loss": 3.726433515548706, + "step": 2188 + }, + { + "epoch": 30.405417212756664, + "grad_norm": 0.2179550975561142, + "learning_rate": 0.0006, + "loss": 3.792311668395996, + "step": 2189 + }, + { + "epoch": 30.419397116644824, + "grad_norm": 0.208037331700325, + "learning_rate": 0.0006, + "loss": 3.774639129638672, + "step": 2190 + }, + { + "epoch": 30.433377020532983, + "grad_norm": 0.20745441317558289, + "learning_rate": 0.0006, + "loss": 3.776130199432373, + "step": 2191 + }, + { + "epoch": 30.447356924421143, + "grad_norm": 0.1988024264574051, + "learning_rate": 0.0006, + "loss": 3.7453784942626953, + "step": 2192 + }, + { + "epoch": 30.461336828309307, + "grad_norm": 0.194968581199646, + "learning_rate": 0.0006, + "loss": 3.764653205871582, + "step": 2193 + }, + { + "epoch": 30.475316732197467, + "grad_norm": 0.20658300817012787, + "learning_rate": 0.0006, + "loss": 3.796513080596924, + "step": 2194 + }, + { + "epoch": 30.489296636085626, + "grad_norm": 0.2123410701751709, + "learning_rate": 0.0006, + "loss": 3.7630836963653564, + "step": 2195 + }, + { + "epoch": 30.503276539973786, + "grad_norm": 0.20894059538841248, + "learning_rate": 0.0006, + "loss": 3.7265470027923584, + "step": 2196 + }, + { + "epoch": 30.51725644386195, + "grad_norm": 0.2016828954219818, + "learning_rate": 0.0006, + "loss": 3.8083386421203613, + "step": 2197 + }, + { + "epoch": 30.53123634775011, + "grad_norm": 0.19584205746650696, + "learning_rate": 0.0006, + "loss": 3.7492105960845947, + "step": 2198 + }, + { + "epoch": 30.54521625163827, + "grad_norm": 0.18635272979736328, + "learning_rate": 0.0006, + "loss": 3.711009979248047, + "step": 2199 + }, + { + "epoch": 30.55919615552643, + "grad_norm": 0.1920594871044159, + "learning_rate": 0.0006, + "loss": 3.760801315307617, + "step": 2200 + }, + { + "epoch": 30.573176059414592, + "grad_norm": 0.1978331208229065, + "learning_rate": 0.0006, + "loss": 3.780529022216797, + "step": 2201 + }, + { + "epoch": 30.587155963302752, + "grad_norm": 0.20076943933963776, + "learning_rate": 0.0006, + "loss": 3.7767038345336914, + "step": 2202 + }, + { + "epoch": 30.601135867190912, + "grad_norm": 0.2067444622516632, + "learning_rate": 0.0006, + "loss": 3.7607920169830322, + "step": 2203 + }, + { + "epoch": 30.615115771079076, + "grad_norm": 0.2081940472126007, + "learning_rate": 0.0006, + "loss": 3.741936206817627, + "step": 2204 + }, + { + "epoch": 30.629095674967235, + "grad_norm": 0.21212869882583618, + "learning_rate": 0.0006, + "loss": 3.7597827911376953, + "step": 2205 + }, + { + "epoch": 30.643075578855395, + "grad_norm": 0.21539026498794556, + "learning_rate": 0.0006, + "loss": 3.764646053314209, + "step": 2206 + }, + { + "epoch": 30.657055482743555, + "grad_norm": 0.19788387417793274, + "learning_rate": 0.0006, + "loss": 3.7535128593444824, + "step": 2207 + }, + { + "epoch": 30.67103538663172, + "grad_norm": 0.20757688581943512, + "learning_rate": 0.0006, + "loss": 3.7414169311523438, + "step": 2208 + }, + { + "epoch": 30.68501529051988, + "grad_norm": 0.199361652135849, + "learning_rate": 0.0006, + "loss": 3.7578506469726562, + "step": 2209 + }, + { + "epoch": 30.698995194408038, + "grad_norm": 0.1909894198179245, + "learning_rate": 0.0006, + "loss": 3.736250400543213, + "step": 2210 + }, + { + "epoch": 30.712975098296198, + "grad_norm": 0.19766664505004883, + "learning_rate": 0.0006, + "loss": 3.7435379028320312, + "step": 2211 + }, + { + "epoch": 30.72695500218436, + "grad_norm": 0.21857766807079315, + "learning_rate": 0.0006, + "loss": 3.7478690147399902, + "step": 2212 + }, + { + "epoch": 30.74093490607252, + "grad_norm": 0.22385898232460022, + "learning_rate": 0.0006, + "loss": 3.7522530555725098, + "step": 2213 + }, + { + "epoch": 30.75491480996068, + "grad_norm": 0.2329241931438446, + "learning_rate": 0.0006, + "loss": 3.7568247318267822, + "step": 2214 + }, + { + "epoch": 30.76889471384884, + "grad_norm": 0.2218400090932846, + "learning_rate": 0.0006, + "loss": 3.7662744522094727, + "step": 2215 + }, + { + "epoch": 30.782874617737004, + "grad_norm": 0.21350212395191193, + "learning_rate": 0.0006, + "loss": 3.7683777809143066, + "step": 2216 + }, + { + "epoch": 30.796854521625164, + "grad_norm": 0.22357074916362762, + "learning_rate": 0.0006, + "loss": 3.763437032699585, + "step": 2217 + }, + { + "epoch": 30.810834425513324, + "grad_norm": 0.22268560528755188, + "learning_rate": 0.0006, + "loss": 3.772836685180664, + "step": 2218 + }, + { + "epoch": 30.824814329401484, + "grad_norm": 0.2434026449918747, + "learning_rate": 0.0006, + "loss": 3.752986431121826, + "step": 2219 + }, + { + "epoch": 30.838794233289647, + "grad_norm": 0.2298414409160614, + "learning_rate": 0.0006, + "loss": 3.7837061882019043, + "step": 2220 + }, + { + "epoch": 30.852774137177807, + "grad_norm": 0.227672278881073, + "learning_rate": 0.0006, + "loss": 3.746065378189087, + "step": 2221 + }, + { + "epoch": 30.866754041065967, + "grad_norm": 0.2562827169895172, + "learning_rate": 0.0006, + "loss": 3.7741947174072266, + "step": 2222 + }, + { + "epoch": 30.88073394495413, + "grad_norm": 0.23657815158367157, + "learning_rate": 0.0006, + "loss": 3.746457099914551, + "step": 2223 + }, + { + "epoch": 30.89471384884229, + "grad_norm": 0.2158907800912857, + "learning_rate": 0.0006, + "loss": 3.7821710109710693, + "step": 2224 + }, + { + "epoch": 30.90869375273045, + "grad_norm": 0.22501254081726074, + "learning_rate": 0.0006, + "loss": 3.7528274059295654, + "step": 2225 + }, + { + "epoch": 30.92267365661861, + "grad_norm": 0.20252224802970886, + "learning_rate": 0.0006, + "loss": 3.749418258666992, + "step": 2226 + }, + { + "epoch": 30.936653560506773, + "grad_norm": 0.2067883312702179, + "learning_rate": 0.0006, + "loss": 3.7560606002807617, + "step": 2227 + }, + { + "epoch": 30.950633464394933, + "grad_norm": 0.23104053735733032, + "learning_rate": 0.0006, + "loss": 3.7883846759796143, + "step": 2228 + }, + { + "epoch": 30.964613368283093, + "grad_norm": 0.21476604044437408, + "learning_rate": 0.0006, + "loss": 3.7976977825164795, + "step": 2229 + }, + { + "epoch": 30.978593272171253, + "grad_norm": 0.2130427062511444, + "learning_rate": 0.0006, + "loss": 3.7429304122924805, + "step": 2230 + }, + { + "epoch": 30.992573176059416, + "grad_norm": 0.2047216147184372, + "learning_rate": 0.0006, + "loss": 3.7669787406921387, + "step": 2231 + }, + { + "epoch": 31.0, + "grad_norm": 0.22254081070423126, + "learning_rate": 0.0006, + "loss": 3.7794251441955566, + "step": 2232 + }, + { + "epoch": 31.0, + "eval_loss": 4.039162635803223, + "eval_runtime": 44.9069, + "eval_samples_per_second": 54.379, + "eval_steps_per_second": 3.407, + "step": 2232 + }, + { + "epoch": 31.01397990388816, + "grad_norm": 0.2278132289648056, + "learning_rate": 0.0006, + "loss": 3.7363929748535156, + "step": 2233 + }, + { + "epoch": 31.027959807776323, + "grad_norm": 0.2377072274684906, + "learning_rate": 0.0006, + "loss": 3.72847318649292, + "step": 2234 + }, + { + "epoch": 31.041939711664483, + "grad_norm": 0.23790542781352997, + "learning_rate": 0.0006, + "loss": 3.767193078994751, + "step": 2235 + }, + { + "epoch": 31.055919615552643, + "grad_norm": 0.2587272524833679, + "learning_rate": 0.0006, + "loss": 3.7564640045166016, + "step": 2236 + }, + { + "epoch": 31.069899519440803, + "grad_norm": 0.27550312876701355, + "learning_rate": 0.0006, + "loss": 3.727578639984131, + "step": 2237 + }, + { + "epoch": 31.083879423328966, + "grad_norm": 0.2488662451505661, + "learning_rate": 0.0006, + "loss": 3.7420730590820312, + "step": 2238 + }, + { + "epoch": 31.097859327217126, + "grad_norm": 0.22699029743671417, + "learning_rate": 0.0006, + "loss": 3.7323155403137207, + "step": 2239 + }, + { + "epoch": 31.111839231105286, + "grad_norm": 0.23360148072242737, + "learning_rate": 0.0006, + "loss": 3.719024181365967, + "step": 2240 + }, + { + "epoch": 31.125819134993446, + "grad_norm": 0.24322988092899323, + "learning_rate": 0.0006, + "loss": 3.74485445022583, + "step": 2241 + }, + { + "epoch": 31.13979903888161, + "grad_norm": 0.2474174052476883, + "learning_rate": 0.0006, + "loss": 3.746826171875, + "step": 2242 + }, + { + "epoch": 31.15377894276977, + "grad_norm": 0.2417406439781189, + "learning_rate": 0.0006, + "loss": 3.7285032272338867, + "step": 2243 + }, + { + "epoch": 31.16775884665793, + "grad_norm": 0.2390318512916565, + "learning_rate": 0.0006, + "loss": 3.7464442253112793, + "step": 2244 + }, + { + "epoch": 31.18173875054609, + "grad_norm": 0.21819323301315308, + "learning_rate": 0.0006, + "loss": 3.735110282897949, + "step": 2245 + }, + { + "epoch": 31.195718654434252, + "grad_norm": 0.21953554451465607, + "learning_rate": 0.0006, + "loss": 3.7270030975341797, + "step": 2246 + }, + { + "epoch": 31.209698558322412, + "grad_norm": 0.1930384635925293, + "learning_rate": 0.0006, + "loss": 3.7519941329956055, + "step": 2247 + }, + { + "epoch": 31.22367846221057, + "grad_norm": 0.19799190759658813, + "learning_rate": 0.0006, + "loss": 3.7428221702575684, + "step": 2248 + }, + { + "epoch": 31.23765836609873, + "grad_norm": 0.20948201417922974, + "learning_rate": 0.0006, + "loss": 3.733120918273926, + "step": 2249 + }, + { + "epoch": 31.251638269986895, + "grad_norm": 0.23768769204616547, + "learning_rate": 0.0006, + "loss": 3.7059035301208496, + "step": 2250 + }, + { + "epoch": 31.265618173875055, + "grad_norm": 0.2808842957019806, + "learning_rate": 0.0006, + "loss": 3.7245287895202637, + "step": 2251 + }, + { + "epoch": 31.279598077763215, + "grad_norm": 0.27633124589920044, + "learning_rate": 0.0006, + "loss": 3.7436366081237793, + "step": 2252 + }, + { + "epoch": 31.293577981651374, + "grad_norm": 0.24137185513973236, + "learning_rate": 0.0006, + "loss": 3.7651219367980957, + "step": 2253 + }, + { + "epoch": 31.307557885539538, + "grad_norm": 0.22056810557842255, + "learning_rate": 0.0006, + "loss": 3.7417521476745605, + "step": 2254 + }, + { + "epoch": 31.321537789427698, + "grad_norm": 0.20137323439121246, + "learning_rate": 0.0006, + "loss": 3.750187397003174, + "step": 2255 + }, + { + "epoch": 31.335517693315857, + "grad_norm": 0.2142433375120163, + "learning_rate": 0.0006, + "loss": 3.7292675971984863, + "step": 2256 + }, + { + "epoch": 31.34949759720402, + "grad_norm": 0.21193967759609222, + "learning_rate": 0.0006, + "loss": 3.7459473609924316, + "step": 2257 + }, + { + "epoch": 31.36347750109218, + "grad_norm": 0.21418534219264984, + "learning_rate": 0.0006, + "loss": 3.754359722137451, + "step": 2258 + }, + { + "epoch": 31.37745740498034, + "grad_norm": 0.23507359623908997, + "learning_rate": 0.0006, + "loss": 3.763413906097412, + "step": 2259 + }, + { + "epoch": 31.3914373088685, + "grad_norm": 0.20393887162208557, + "learning_rate": 0.0006, + "loss": 3.73878812789917, + "step": 2260 + }, + { + "epoch": 31.405417212756664, + "grad_norm": 0.21752159297466278, + "learning_rate": 0.0006, + "loss": 3.750549793243408, + "step": 2261 + }, + { + "epoch": 31.419397116644824, + "grad_norm": 0.22629529237747192, + "learning_rate": 0.0006, + "loss": 3.7791430950164795, + "step": 2262 + }, + { + "epoch": 31.433377020532983, + "grad_norm": 0.2114613950252533, + "learning_rate": 0.0006, + "loss": 3.7709264755249023, + "step": 2263 + }, + { + "epoch": 31.447356924421143, + "grad_norm": 0.23241667449474335, + "learning_rate": 0.0006, + "loss": 3.745750665664673, + "step": 2264 + }, + { + "epoch": 31.461336828309307, + "grad_norm": 0.2434246987104416, + "learning_rate": 0.0006, + "loss": 3.769727945327759, + "step": 2265 + }, + { + "epoch": 31.475316732197467, + "grad_norm": 0.247820645570755, + "learning_rate": 0.0006, + "loss": 3.7528204917907715, + "step": 2266 + }, + { + "epoch": 31.489296636085626, + "grad_norm": 0.21287164092063904, + "learning_rate": 0.0006, + "loss": 3.728661060333252, + "step": 2267 + }, + { + "epoch": 31.503276539973786, + "grad_norm": 0.20983846485614777, + "learning_rate": 0.0006, + "loss": 3.7524428367614746, + "step": 2268 + }, + { + "epoch": 31.51725644386195, + "grad_norm": 0.23799288272857666, + "learning_rate": 0.0006, + "loss": 3.7276647090911865, + "step": 2269 + }, + { + "epoch": 31.53123634775011, + "grad_norm": 0.247065007686615, + "learning_rate": 0.0006, + "loss": 3.7506704330444336, + "step": 2270 + }, + { + "epoch": 31.54521625163827, + "grad_norm": 0.20670939981937408, + "learning_rate": 0.0006, + "loss": 3.71852445602417, + "step": 2271 + }, + { + "epoch": 31.55919615552643, + "grad_norm": 0.19463716447353363, + "learning_rate": 0.0006, + "loss": 3.732757568359375, + "step": 2272 + }, + { + "epoch": 31.573176059414592, + "grad_norm": 0.20368841290473938, + "learning_rate": 0.0006, + "loss": 3.746676445007324, + "step": 2273 + }, + { + "epoch": 31.587155963302752, + "grad_norm": 0.19691342115402222, + "learning_rate": 0.0006, + "loss": 3.7535760402679443, + "step": 2274 + }, + { + "epoch": 31.601135867190912, + "grad_norm": 0.2026553899049759, + "learning_rate": 0.0006, + "loss": 3.7406957149505615, + "step": 2275 + }, + { + "epoch": 31.615115771079076, + "grad_norm": 0.21494299173355103, + "learning_rate": 0.0006, + "loss": 3.735888957977295, + "step": 2276 + }, + { + "epoch": 31.629095674967235, + "grad_norm": 0.21644766628742218, + "learning_rate": 0.0006, + "loss": 3.723767042160034, + "step": 2277 + }, + { + "epoch": 31.643075578855395, + "grad_norm": 0.20087581872940063, + "learning_rate": 0.0006, + "loss": 3.7622008323669434, + "step": 2278 + }, + { + "epoch": 31.657055482743555, + "grad_norm": 0.1949695646762848, + "learning_rate": 0.0006, + "loss": 3.7726354598999023, + "step": 2279 + }, + { + "epoch": 31.67103538663172, + "grad_norm": 0.19120797514915466, + "learning_rate": 0.0006, + "loss": 3.7454679012298584, + "step": 2280 + }, + { + "epoch": 31.68501529051988, + "grad_norm": 0.19480115175247192, + "learning_rate": 0.0006, + "loss": 3.743934392929077, + "step": 2281 + }, + { + "epoch": 31.698995194408038, + "grad_norm": 0.1891610324382782, + "learning_rate": 0.0006, + "loss": 3.7724897861480713, + "step": 2282 + }, + { + "epoch": 31.712975098296198, + "grad_norm": 0.18533185124397278, + "learning_rate": 0.0006, + "loss": 3.7556838989257812, + "step": 2283 + }, + { + "epoch": 31.72695500218436, + "grad_norm": 0.20079447329044342, + "learning_rate": 0.0006, + "loss": 3.76758074760437, + "step": 2284 + }, + { + "epoch": 31.74093490607252, + "grad_norm": 0.2103433609008789, + "learning_rate": 0.0006, + "loss": 3.769477367401123, + "step": 2285 + }, + { + "epoch": 31.75491480996068, + "grad_norm": 0.21428923308849335, + "learning_rate": 0.0006, + "loss": 3.7317447662353516, + "step": 2286 + }, + { + "epoch": 31.76889471384884, + "grad_norm": 0.20154133439064026, + "learning_rate": 0.0006, + "loss": 3.749814987182617, + "step": 2287 + }, + { + "epoch": 31.782874617737004, + "grad_norm": 0.18998542428016663, + "learning_rate": 0.0006, + "loss": 3.7655510902404785, + "step": 2288 + }, + { + "epoch": 31.796854521625164, + "grad_norm": 0.2068665474653244, + "learning_rate": 0.0006, + "loss": 3.7375988960266113, + "step": 2289 + }, + { + "epoch": 31.810834425513324, + "grad_norm": 0.22979815304279327, + "learning_rate": 0.0006, + "loss": 3.728095531463623, + "step": 2290 + }, + { + "epoch": 31.824814329401484, + "grad_norm": 0.2378212958574295, + "learning_rate": 0.0006, + "loss": 3.73091459274292, + "step": 2291 + }, + { + "epoch": 31.838794233289647, + "grad_norm": 0.2353672832250595, + "learning_rate": 0.0006, + "loss": 3.7491769790649414, + "step": 2292 + }, + { + "epoch": 31.852774137177807, + "grad_norm": 0.22341586649417877, + "learning_rate": 0.0006, + "loss": 3.777111530303955, + "step": 2293 + }, + { + "epoch": 31.866754041065967, + "grad_norm": 0.20436930656433105, + "learning_rate": 0.0006, + "loss": 3.740997552871704, + "step": 2294 + }, + { + "epoch": 31.88073394495413, + "grad_norm": 0.20836040377616882, + "learning_rate": 0.0006, + "loss": 3.755582571029663, + "step": 2295 + }, + { + "epoch": 31.89471384884229, + "grad_norm": 0.2045193612575531, + "learning_rate": 0.0006, + "loss": 3.7583560943603516, + "step": 2296 + }, + { + "epoch": 31.90869375273045, + "grad_norm": 0.2025591880083084, + "learning_rate": 0.0006, + "loss": 3.773345470428467, + "step": 2297 + }, + { + "epoch": 31.92267365661861, + "grad_norm": 0.20309099555015564, + "learning_rate": 0.0006, + "loss": 3.7392163276672363, + "step": 2298 + }, + { + "epoch": 31.936653560506773, + "grad_norm": 0.2129351645708084, + "learning_rate": 0.0006, + "loss": 3.7801311016082764, + "step": 2299 + }, + { + "epoch": 31.950633464394933, + "grad_norm": 0.19950738549232483, + "learning_rate": 0.0006, + "loss": 3.779261589050293, + "step": 2300 + }, + { + "epoch": 31.964613368283093, + "grad_norm": 0.22837352752685547, + "learning_rate": 0.0006, + "loss": 3.782731294631958, + "step": 2301 + }, + { + "epoch": 31.978593272171253, + "grad_norm": 0.2576889097690582, + "learning_rate": 0.0006, + "loss": 3.7778096199035645, + "step": 2302 + }, + { + "epoch": 31.992573176059416, + "grad_norm": 0.2770138382911682, + "learning_rate": 0.0006, + "loss": 3.735755443572998, + "step": 2303 + }, + { + "epoch": 32.0, + "grad_norm": 0.2632865309715271, + "learning_rate": 0.0006, + "loss": 3.7562808990478516, + "step": 2304 + }, + { + "epoch": 32.0, + "eval_loss": 4.031628608703613, + "eval_runtime": 44.2115, + "eval_samples_per_second": 55.234, + "eval_steps_per_second": 3.461, + "step": 2304 + }, + { + "epoch": 32.01397990388816, + "grad_norm": 0.20234128832817078, + "learning_rate": 0.0006, + "loss": 3.734489917755127, + "step": 2305 + }, + { + "epoch": 32.02795980777632, + "grad_norm": 0.24983637034893036, + "learning_rate": 0.0006, + "loss": 3.7351019382476807, + "step": 2306 + }, + { + "epoch": 32.04193971166448, + "grad_norm": 0.27358478307724, + "learning_rate": 0.0006, + "loss": 3.708712100982666, + "step": 2307 + }, + { + "epoch": 32.05591961555265, + "grad_norm": 0.24693739414215088, + "learning_rate": 0.0006, + "loss": 3.731858491897583, + "step": 2308 + }, + { + "epoch": 32.0698995194408, + "grad_norm": 0.22751131653785706, + "learning_rate": 0.0006, + "loss": 3.7074670791625977, + "step": 2309 + }, + { + "epoch": 32.083879423328966, + "grad_norm": 0.23400720953941345, + "learning_rate": 0.0006, + "loss": 3.714092493057251, + "step": 2310 + }, + { + "epoch": 32.09785932721712, + "grad_norm": 0.20711684226989746, + "learning_rate": 0.0006, + "loss": 3.754727840423584, + "step": 2311 + }, + { + "epoch": 32.111839231105286, + "grad_norm": 0.21589399874210358, + "learning_rate": 0.0006, + "loss": 3.6953847408294678, + "step": 2312 + }, + { + "epoch": 32.12581913499345, + "grad_norm": 0.24575738608837128, + "learning_rate": 0.0006, + "loss": 3.7078802585601807, + "step": 2313 + }, + { + "epoch": 32.139799038881605, + "grad_norm": 0.23152033984661102, + "learning_rate": 0.0006, + "loss": 3.7402305603027344, + "step": 2314 + }, + { + "epoch": 32.15377894276977, + "grad_norm": 0.22639606893062592, + "learning_rate": 0.0006, + "loss": 3.7264223098754883, + "step": 2315 + }, + { + "epoch": 32.16775884665793, + "grad_norm": 0.24701760709285736, + "learning_rate": 0.0006, + "loss": 3.7497639656066895, + "step": 2316 + }, + { + "epoch": 32.18173875054609, + "grad_norm": 0.274832159280777, + "learning_rate": 0.0006, + "loss": 3.7557122707366943, + "step": 2317 + }, + { + "epoch": 32.19571865443425, + "grad_norm": 0.27472418546676636, + "learning_rate": 0.0006, + "loss": 3.6863393783569336, + "step": 2318 + }, + { + "epoch": 32.20969855832241, + "grad_norm": 0.2625530958175659, + "learning_rate": 0.0006, + "loss": 3.7203545570373535, + "step": 2319 + }, + { + "epoch": 32.22367846221057, + "grad_norm": 0.2576068341732025, + "learning_rate": 0.0006, + "loss": 3.734747886657715, + "step": 2320 + }, + { + "epoch": 32.237658366098735, + "grad_norm": 0.25946059823036194, + "learning_rate": 0.0006, + "loss": 3.7501730918884277, + "step": 2321 + }, + { + "epoch": 32.25163826998689, + "grad_norm": 0.2524135410785675, + "learning_rate": 0.0006, + "loss": 3.75177001953125, + "step": 2322 + }, + { + "epoch": 32.265618173875055, + "grad_norm": 0.2568551003932953, + "learning_rate": 0.0006, + "loss": 3.752450704574585, + "step": 2323 + }, + { + "epoch": 32.27959807776322, + "grad_norm": 0.2489749640226364, + "learning_rate": 0.0006, + "loss": 3.711735486984253, + "step": 2324 + }, + { + "epoch": 32.293577981651374, + "grad_norm": 0.2425498366355896, + "learning_rate": 0.0006, + "loss": 3.7004239559173584, + "step": 2325 + }, + { + "epoch": 32.30755788553954, + "grad_norm": 0.24359773099422455, + "learning_rate": 0.0006, + "loss": 3.733870029449463, + "step": 2326 + }, + { + "epoch": 32.3215377894277, + "grad_norm": 0.22314727306365967, + "learning_rate": 0.0006, + "loss": 3.699841022491455, + "step": 2327 + }, + { + "epoch": 32.33551769331586, + "grad_norm": 0.2047620266675949, + "learning_rate": 0.0006, + "loss": 3.732534170150757, + "step": 2328 + }, + { + "epoch": 32.34949759720402, + "grad_norm": 0.24393224716186523, + "learning_rate": 0.0006, + "loss": 3.7200770378112793, + "step": 2329 + }, + { + "epoch": 32.36347750109218, + "grad_norm": 0.23884256184101105, + "learning_rate": 0.0006, + "loss": 3.722318410873413, + "step": 2330 + }, + { + "epoch": 32.37745740498034, + "grad_norm": 0.23262189328670502, + "learning_rate": 0.0006, + "loss": 3.759033203125, + "step": 2331 + }, + { + "epoch": 32.391437308868504, + "grad_norm": 0.22542893886566162, + "learning_rate": 0.0006, + "loss": 3.729198694229126, + "step": 2332 + }, + { + "epoch": 32.40541721275666, + "grad_norm": 0.22479060292243958, + "learning_rate": 0.0006, + "loss": 3.7298169136047363, + "step": 2333 + }, + { + "epoch": 32.419397116644824, + "grad_norm": 0.21571804583072662, + "learning_rate": 0.0006, + "loss": 3.699937343597412, + "step": 2334 + }, + { + "epoch": 32.43337702053299, + "grad_norm": 0.20804545283317566, + "learning_rate": 0.0006, + "loss": 3.7495696544647217, + "step": 2335 + }, + { + "epoch": 32.44735692442114, + "grad_norm": 0.22751706838607788, + "learning_rate": 0.0006, + "loss": 3.7369821071624756, + "step": 2336 + }, + { + "epoch": 32.46133682830931, + "grad_norm": 0.2326795756816864, + "learning_rate": 0.0006, + "loss": 3.7636334896087646, + "step": 2337 + }, + { + "epoch": 32.47531673219746, + "grad_norm": 0.19971159100532532, + "learning_rate": 0.0006, + "loss": 3.72151517868042, + "step": 2338 + }, + { + "epoch": 32.489296636085626, + "grad_norm": 0.21078036725521088, + "learning_rate": 0.0006, + "loss": 3.7050065994262695, + "step": 2339 + }, + { + "epoch": 32.50327653997379, + "grad_norm": 0.22198088467121124, + "learning_rate": 0.0006, + "loss": 3.7654409408569336, + "step": 2340 + }, + { + "epoch": 32.517256443861946, + "grad_norm": 0.20995207130908966, + "learning_rate": 0.0006, + "loss": 3.7516250610351562, + "step": 2341 + }, + { + "epoch": 32.53123634775011, + "grad_norm": 0.20757141709327698, + "learning_rate": 0.0006, + "loss": 3.7412633895874023, + "step": 2342 + }, + { + "epoch": 32.54521625163827, + "grad_norm": 0.20053881406784058, + "learning_rate": 0.0006, + "loss": 3.7477493286132812, + "step": 2343 + }, + { + "epoch": 32.55919615552643, + "grad_norm": 0.20223091542720795, + "learning_rate": 0.0006, + "loss": 3.7149064540863037, + "step": 2344 + }, + { + "epoch": 32.57317605941459, + "grad_norm": 0.20179468393325806, + "learning_rate": 0.0006, + "loss": 3.70635724067688, + "step": 2345 + }, + { + "epoch": 32.58715596330275, + "grad_norm": 0.19670480489730835, + "learning_rate": 0.0006, + "loss": 3.7276744842529297, + "step": 2346 + }, + { + "epoch": 32.60113586719091, + "grad_norm": 0.1992012858390808, + "learning_rate": 0.0006, + "loss": 3.7659356594085693, + "step": 2347 + }, + { + "epoch": 32.615115771079076, + "grad_norm": 0.20124201476573944, + "learning_rate": 0.0006, + "loss": 3.722212791442871, + "step": 2348 + }, + { + "epoch": 32.62909567496723, + "grad_norm": 0.21972708404064178, + "learning_rate": 0.0006, + "loss": 3.751830577850342, + "step": 2349 + }, + { + "epoch": 32.643075578855395, + "grad_norm": 0.20454947650432587, + "learning_rate": 0.0006, + "loss": 3.7196669578552246, + "step": 2350 + }, + { + "epoch": 32.65705548274356, + "grad_norm": 0.1783330887556076, + "learning_rate": 0.0006, + "loss": 3.721461772918701, + "step": 2351 + }, + { + "epoch": 32.671035386631715, + "grad_norm": 0.2027900367975235, + "learning_rate": 0.0006, + "loss": 3.753718614578247, + "step": 2352 + }, + { + "epoch": 32.68501529051988, + "grad_norm": 0.21232381463050842, + "learning_rate": 0.0006, + "loss": 3.732736349105835, + "step": 2353 + }, + { + "epoch": 32.69899519440804, + "grad_norm": 0.2214568555355072, + "learning_rate": 0.0006, + "loss": 3.7250165939331055, + "step": 2354 + }, + { + "epoch": 32.7129750982962, + "grad_norm": 0.2626485228538513, + "learning_rate": 0.0006, + "loss": 3.72263503074646, + "step": 2355 + }, + { + "epoch": 32.72695500218436, + "grad_norm": 0.30096277594566345, + "learning_rate": 0.0006, + "loss": 3.7599854469299316, + "step": 2356 + }, + { + "epoch": 32.74093490607252, + "grad_norm": 0.3374342620372772, + "learning_rate": 0.0006, + "loss": 3.7493844032287598, + "step": 2357 + }, + { + "epoch": 32.75491480996068, + "grad_norm": 0.3051377534866333, + "learning_rate": 0.0006, + "loss": 3.7515692710876465, + "step": 2358 + }, + { + "epoch": 32.768894713848844, + "grad_norm": 0.2130587249994278, + "learning_rate": 0.0006, + "loss": 3.751307964324951, + "step": 2359 + }, + { + "epoch": 32.782874617737, + "grad_norm": 0.25198230147361755, + "learning_rate": 0.0006, + "loss": 3.7500064373016357, + "step": 2360 + }, + { + "epoch": 32.796854521625164, + "grad_norm": 0.27613863348960876, + "learning_rate": 0.0006, + "loss": 3.7257039546966553, + "step": 2361 + }, + { + "epoch": 32.81083442551333, + "grad_norm": 0.23749367892742157, + "learning_rate": 0.0006, + "loss": 3.778343439102173, + "step": 2362 + }, + { + "epoch": 32.824814329401484, + "grad_norm": 0.2063702642917633, + "learning_rate": 0.0006, + "loss": 3.7493772506713867, + "step": 2363 + }, + { + "epoch": 32.83879423328965, + "grad_norm": 0.21169374883174896, + "learning_rate": 0.0006, + "loss": 3.722567081451416, + "step": 2364 + }, + { + "epoch": 32.8527741371778, + "grad_norm": 0.23291490972042084, + "learning_rate": 0.0006, + "loss": 3.7555532455444336, + "step": 2365 + }, + { + "epoch": 32.86675404106597, + "grad_norm": 0.21486155688762665, + "learning_rate": 0.0006, + "loss": 3.7401528358459473, + "step": 2366 + }, + { + "epoch": 32.88073394495413, + "grad_norm": 0.2296247035264969, + "learning_rate": 0.0006, + "loss": 3.7867965698242188, + "step": 2367 + }, + { + "epoch": 32.89471384884229, + "grad_norm": 0.2335108071565628, + "learning_rate": 0.0006, + "loss": 3.768036365509033, + "step": 2368 + }, + { + "epoch": 32.90869375273045, + "grad_norm": 0.23921863734722137, + "learning_rate": 0.0006, + "loss": 3.725252151489258, + "step": 2369 + }, + { + "epoch": 32.92267365661861, + "grad_norm": 0.20303526520729065, + "learning_rate": 0.0006, + "loss": 3.7806248664855957, + "step": 2370 + }, + { + "epoch": 32.93665356050677, + "grad_norm": 0.19293150305747986, + "learning_rate": 0.0006, + "loss": 3.759281873703003, + "step": 2371 + }, + { + "epoch": 32.95063346439493, + "grad_norm": 0.20609107613563538, + "learning_rate": 0.0006, + "loss": 3.764190196990967, + "step": 2372 + }, + { + "epoch": 32.964613368283096, + "grad_norm": 0.2014189213514328, + "learning_rate": 0.0006, + "loss": 3.7365214824676514, + "step": 2373 + }, + { + "epoch": 32.97859327217125, + "grad_norm": 0.22045451402664185, + "learning_rate": 0.0006, + "loss": 3.7435812950134277, + "step": 2374 + }, + { + "epoch": 32.992573176059416, + "grad_norm": 0.24228639900684357, + "learning_rate": 0.0006, + "loss": 3.751309394836426, + "step": 2375 + }, + { + "epoch": 33.0, + "grad_norm": 0.2645106613636017, + "learning_rate": 0.0006, + "loss": 3.7629928588867188, + "step": 2376 + }, + { + "epoch": 33.0, + "eval_loss": 4.026789665222168, + "eval_runtime": 44.9957, + "eval_samples_per_second": 54.272, + "eval_steps_per_second": 3.4, + "step": 2376 + }, + { + "epoch": 33.01397990388816, + "grad_norm": 0.21402551233768463, + "learning_rate": 0.0006, + "loss": 3.72019100189209, + "step": 2377 + }, + { + "epoch": 33.02795980777632, + "grad_norm": 0.23886585235595703, + "learning_rate": 0.0006, + "loss": 3.687084674835205, + "step": 2378 + }, + { + "epoch": 33.04193971166448, + "grad_norm": 0.29936572909355164, + "learning_rate": 0.0006, + "loss": 3.697310447692871, + "step": 2379 + }, + { + "epoch": 33.05591961555265, + "grad_norm": 0.30007585883140564, + "learning_rate": 0.0006, + "loss": 3.6913352012634277, + "step": 2380 + }, + { + "epoch": 33.0698995194408, + "grad_norm": 0.26594656705856323, + "learning_rate": 0.0006, + "loss": 3.740802526473999, + "step": 2381 + }, + { + "epoch": 33.083879423328966, + "grad_norm": 0.2658730447292328, + "learning_rate": 0.0006, + "loss": 3.692746162414551, + "step": 2382 + }, + { + "epoch": 33.09785932721712, + "grad_norm": 0.26755523681640625, + "learning_rate": 0.0006, + "loss": 3.7534420490264893, + "step": 2383 + }, + { + "epoch": 33.111839231105286, + "grad_norm": 0.23070940375328064, + "learning_rate": 0.0006, + "loss": 3.717876672744751, + "step": 2384 + }, + { + "epoch": 33.12581913499345, + "grad_norm": 0.2476235181093216, + "learning_rate": 0.0006, + "loss": 3.7072248458862305, + "step": 2385 + }, + { + "epoch": 33.139799038881605, + "grad_norm": 0.2454477846622467, + "learning_rate": 0.0006, + "loss": 3.729762077331543, + "step": 2386 + }, + { + "epoch": 33.15377894276977, + "grad_norm": 0.24090935289859772, + "learning_rate": 0.0006, + "loss": 3.721374988555908, + "step": 2387 + }, + { + "epoch": 33.16775884665793, + "grad_norm": 0.2440263032913208, + "learning_rate": 0.0006, + "loss": 3.730433464050293, + "step": 2388 + }, + { + "epoch": 33.18173875054609, + "grad_norm": 0.21699118614196777, + "learning_rate": 0.0006, + "loss": 3.724730968475342, + "step": 2389 + }, + { + "epoch": 33.19571865443425, + "grad_norm": 0.2302001267671585, + "learning_rate": 0.0006, + "loss": 3.69376277923584, + "step": 2390 + }, + { + "epoch": 33.20969855832241, + "grad_norm": 0.24707409739494324, + "learning_rate": 0.0006, + "loss": 3.705653667449951, + "step": 2391 + }, + { + "epoch": 33.22367846221057, + "grad_norm": 0.22896641492843628, + "learning_rate": 0.0006, + "loss": 3.747000217437744, + "step": 2392 + }, + { + "epoch": 33.237658366098735, + "grad_norm": 0.2278730720281601, + "learning_rate": 0.0006, + "loss": 3.733464241027832, + "step": 2393 + }, + { + "epoch": 33.25163826998689, + "grad_norm": 0.23909862339496613, + "learning_rate": 0.0006, + "loss": 3.733661413192749, + "step": 2394 + }, + { + "epoch": 33.265618173875055, + "grad_norm": 0.2349950075149536, + "learning_rate": 0.0006, + "loss": 3.7337965965270996, + "step": 2395 + }, + { + "epoch": 33.27959807776322, + "grad_norm": 0.22655968368053436, + "learning_rate": 0.0006, + "loss": 3.70503306388855, + "step": 2396 + }, + { + "epoch": 33.293577981651374, + "grad_norm": 0.22167043387889862, + "learning_rate": 0.0006, + "loss": 3.738797903060913, + "step": 2397 + }, + { + "epoch": 33.30755788553954, + "grad_norm": 0.2278883010149002, + "learning_rate": 0.0006, + "loss": 3.712550640106201, + "step": 2398 + }, + { + "epoch": 33.3215377894277, + "grad_norm": 0.2220565229654312, + "learning_rate": 0.0006, + "loss": 3.7278006076812744, + "step": 2399 + }, + { + "epoch": 33.33551769331586, + "grad_norm": 0.21888740360736847, + "learning_rate": 0.0006, + "loss": 3.72243595123291, + "step": 2400 + }, + { + "epoch": 33.34949759720402, + "grad_norm": 0.21587581932544708, + "learning_rate": 0.0006, + "loss": 3.7177581787109375, + "step": 2401 + }, + { + "epoch": 33.36347750109218, + "grad_norm": 0.1923578530550003, + "learning_rate": 0.0006, + "loss": 3.711294651031494, + "step": 2402 + }, + { + "epoch": 33.37745740498034, + "grad_norm": 0.1994934380054474, + "learning_rate": 0.0006, + "loss": 3.762061595916748, + "step": 2403 + }, + { + "epoch": 33.391437308868504, + "grad_norm": 0.20074427127838135, + "learning_rate": 0.0006, + "loss": 3.708559036254883, + "step": 2404 + }, + { + "epoch": 33.40541721275666, + "grad_norm": 0.21349482238292694, + "learning_rate": 0.0006, + "loss": 3.7089147567749023, + "step": 2405 + }, + { + "epoch": 33.419397116644824, + "grad_norm": 0.25523608922958374, + "learning_rate": 0.0006, + "loss": 3.7241058349609375, + "step": 2406 + }, + { + "epoch": 33.43337702053299, + "grad_norm": 0.27654796838760376, + "learning_rate": 0.0006, + "loss": 3.723618984222412, + "step": 2407 + }, + { + "epoch": 33.44735692442114, + "grad_norm": 0.2651479244232178, + "learning_rate": 0.0006, + "loss": 3.7367782592773438, + "step": 2408 + }, + { + "epoch": 33.46133682830931, + "grad_norm": 0.23403556644916534, + "learning_rate": 0.0006, + "loss": 3.7198312282562256, + "step": 2409 + }, + { + "epoch": 33.47531673219746, + "grad_norm": 0.20970726013183594, + "learning_rate": 0.0006, + "loss": 3.7088186740875244, + "step": 2410 + }, + { + "epoch": 33.489296636085626, + "grad_norm": 0.18532544374465942, + "learning_rate": 0.0006, + "loss": 3.7162208557128906, + "step": 2411 + }, + { + "epoch": 33.50327653997379, + "grad_norm": 0.19590279459953308, + "learning_rate": 0.0006, + "loss": 3.766357898712158, + "step": 2412 + }, + { + "epoch": 33.517256443861946, + "grad_norm": 0.203349307179451, + "learning_rate": 0.0006, + "loss": 3.732177257537842, + "step": 2413 + }, + { + "epoch": 33.53123634775011, + "grad_norm": 0.2015952616930008, + "learning_rate": 0.0006, + "loss": 3.741609573364258, + "step": 2414 + }, + { + "epoch": 33.54521625163827, + "grad_norm": 0.20024161040782928, + "learning_rate": 0.0006, + "loss": 3.6894431114196777, + "step": 2415 + }, + { + "epoch": 33.55919615552643, + "grad_norm": 0.20932617783546448, + "learning_rate": 0.0006, + "loss": 3.721979856491089, + "step": 2416 + }, + { + "epoch": 33.57317605941459, + "grad_norm": 0.22069773077964783, + "learning_rate": 0.0006, + "loss": 3.712203025817871, + "step": 2417 + }, + { + "epoch": 33.58715596330275, + "grad_norm": 0.22341343760490417, + "learning_rate": 0.0006, + "loss": 3.7469263076782227, + "step": 2418 + }, + { + "epoch": 33.60113586719091, + "grad_norm": 0.21758507192134857, + "learning_rate": 0.0006, + "loss": 3.721778392791748, + "step": 2419 + }, + { + "epoch": 33.615115771079076, + "grad_norm": 0.20480088889598846, + "learning_rate": 0.0006, + "loss": 3.743570327758789, + "step": 2420 + }, + { + "epoch": 33.62909567496723, + "grad_norm": 0.23068399727344513, + "learning_rate": 0.0006, + "loss": 3.7203001976013184, + "step": 2421 + }, + { + "epoch": 33.643075578855395, + "grad_norm": 0.2526263892650604, + "learning_rate": 0.0006, + "loss": 3.7336440086364746, + "step": 2422 + }, + { + "epoch": 33.65705548274356, + "grad_norm": 0.218627467751503, + "learning_rate": 0.0006, + "loss": 3.730762243270874, + "step": 2423 + }, + { + "epoch": 33.671035386631715, + "grad_norm": 0.21883417665958405, + "learning_rate": 0.0006, + "loss": 3.749356508255005, + "step": 2424 + }, + { + "epoch": 33.68501529051988, + "grad_norm": 0.22885626554489136, + "learning_rate": 0.0006, + "loss": 3.7426199913024902, + "step": 2425 + }, + { + "epoch": 33.69899519440804, + "grad_norm": 0.23709580302238464, + "learning_rate": 0.0006, + "loss": 3.691652774810791, + "step": 2426 + }, + { + "epoch": 33.7129750982962, + "grad_norm": 0.2258225381374359, + "learning_rate": 0.0006, + "loss": 3.7368886470794678, + "step": 2427 + }, + { + "epoch": 33.72695500218436, + "grad_norm": 0.1993306577205658, + "learning_rate": 0.0006, + "loss": 3.722733497619629, + "step": 2428 + }, + { + "epoch": 33.74093490607252, + "grad_norm": 0.20307473838329315, + "learning_rate": 0.0006, + "loss": 3.7507500648498535, + "step": 2429 + }, + { + "epoch": 33.75491480996068, + "grad_norm": 0.20076696574687958, + "learning_rate": 0.0006, + "loss": 3.6896910667419434, + "step": 2430 + }, + { + "epoch": 33.768894713848844, + "grad_norm": 0.21118830144405365, + "learning_rate": 0.0006, + "loss": 3.7176647186279297, + "step": 2431 + }, + { + "epoch": 33.782874617737, + "grad_norm": 0.21605782210826874, + "learning_rate": 0.0006, + "loss": 3.7423641681671143, + "step": 2432 + }, + { + "epoch": 33.796854521625164, + "grad_norm": 0.22233152389526367, + "learning_rate": 0.0006, + "loss": 3.7296109199523926, + "step": 2433 + }, + { + "epoch": 33.81083442551333, + "grad_norm": 0.2253616899251938, + "learning_rate": 0.0006, + "loss": 3.7095072269439697, + "step": 2434 + }, + { + "epoch": 33.824814329401484, + "grad_norm": 0.2105807662010193, + "learning_rate": 0.0006, + "loss": 3.760921001434326, + "step": 2435 + }, + { + "epoch": 33.83879423328965, + "grad_norm": 0.20413213968276978, + "learning_rate": 0.0006, + "loss": 3.7356553077697754, + "step": 2436 + }, + { + "epoch": 33.8527741371778, + "grad_norm": 0.19781213998794556, + "learning_rate": 0.0006, + "loss": 3.726787567138672, + "step": 2437 + }, + { + "epoch": 33.86675404106597, + "grad_norm": 0.199616938829422, + "learning_rate": 0.0006, + "loss": 3.7200419902801514, + "step": 2438 + }, + { + "epoch": 33.88073394495413, + "grad_norm": 0.19702564179897308, + "learning_rate": 0.0006, + "loss": 3.714287281036377, + "step": 2439 + }, + { + "epoch": 33.89471384884229, + "grad_norm": 0.19456833600997925, + "learning_rate": 0.0006, + "loss": 3.739231586456299, + "step": 2440 + }, + { + "epoch": 33.90869375273045, + "grad_norm": 0.1890697181224823, + "learning_rate": 0.0006, + "loss": 3.7088429927825928, + "step": 2441 + }, + { + "epoch": 33.92267365661861, + "grad_norm": 0.1845911741256714, + "learning_rate": 0.0006, + "loss": 3.760782241821289, + "step": 2442 + }, + { + "epoch": 33.93665356050677, + "grad_norm": 0.19045902788639069, + "learning_rate": 0.0006, + "loss": 3.736957311630249, + "step": 2443 + }, + { + "epoch": 33.95063346439493, + "grad_norm": 0.1934187412261963, + "learning_rate": 0.0006, + "loss": 3.756351947784424, + "step": 2444 + }, + { + "epoch": 33.964613368283096, + "grad_norm": 0.19774580001831055, + "learning_rate": 0.0006, + "loss": 3.7332229614257812, + "step": 2445 + }, + { + "epoch": 33.97859327217125, + "grad_norm": 0.20653048157691956, + "learning_rate": 0.0006, + "loss": 3.7112321853637695, + "step": 2446 + }, + { + "epoch": 33.992573176059416, + "grad_norm": 0.18618541955947876, + "learning_rate": 0.0006, + "loss": 3.735710620880127, + "step": 2447 + }, + { + "epoch": 34.0, + "grad_norm": 0.22846414148807526, + "learning_rate": 0.0006, + "loss": 3.739706039428711, + "step": 2448 + }, + { + "epoch": 34.0, + "eval_loss": 4.0099663734436035, + "eval_runtime": 45.2096, + "eval_samples_per_second": 54.015, + "eval_steps_per_second": 3.384, + "step": 2448 + }, + { + "epoch": 34.01397990388816, + "grad_norm": 0.20987462997436523, + "learning_rate": 0.0006, + "loss": 3.6798832416534424, + "step": 2449 + }, + { + "epoch": 34.02795980777632, + "grad_norm": 0.2230423390865326, + "learning_rate": 0.0006, + "loss": 3.7157368659973145, + "step": 2450 + }, + { + "epoch": 34.04193971166448, + "grad_norm": 0.24115242063999176, + "learning_rate": 0.0006, + "loss": 3.696037769317627, + "step": 2451 + }, + { + "epoch": 34.05591961555265, + "grad_norm": 0.24499665200710297, + "learning_rate": 0.0006, + "loss": 3.695420742034912, + "step": 2452 + }, + { + "epoch": 34.0698995194408, + "grad_norm": 0.23336757719516754, + "learning_rate": 0.0006, + "loss": 3.7252023220062256, + "step": 2453 + }, + { + "epoch": 34.083879423328966, + "grad_norm": 0.23716159164905548, + "learning_rate": 0.0006, + "loss": 3.714542865753174, + "step": 2454 + }, + { + "epoch": 34.09785932721712, + "grad_norm": 0.2305644154548645, + "learning_rate": 0.0006, + "loss": 3.6989386081695557, + "step": 2455 + }, + { + "epoch": 34.111839231105286, + "grad_norm": 0.2281671017408371, + "learning_rate": 0.0006, + "loss": 3.6952829360961914, + "step": 2456 + }, + { + "epoch": 34.12581913499345, + "grad_norm": 0.21031132340431213, + "learning_rate": 0.0006, + "loss": 3.7337589263916016, + "step": 2457 + }, + { + "epoch": 34.139799038881605, + "grad_norm": 0.2233671098947525, + "learning_rate": 0.0006, + "loss": 3.6923675537109375, + "step": 2458 + }, + { + "epoch": 34.15377894276977, + "grad_norm": 0.22766625881195068, + "learning_rate": 0.0006, + "loss": 3.70849609375, + "step": 2459 + }, + { + "epoch": 34.16775884665793, + "grad_norm": 0.22433766722679138, + "learning_rate": 0.0006, + "loss": 3.718319892883301, + "step": 2460 + }, + { + "epoch": 34.18173875054609, + "grad_norm": 0.20621491968631744, + "learning_rate": 0.0006, + "loss": 3.6874704360961914, + "step": 2461 + }, + { + "epoch": 34.19571865443425, + "grad_norm": 0.21353304386138916, + "learning_rate": 0.0006, + "loss": 3.663358688354492, + "step": 2462 + }, + { + "epoch": 34.20969855832241, + "grad_norm": 0.20652951300144196, + "learning_rate": 0.0006, + "loss": 3.718107223510742, + "step": 2463 + }, + { + "epoch": 34.22367846221057, + "grad_norm": 0.19780176877975464, + "learning_rate": 0.0006, + "loss": 3.7255396842956543, + "step": 2464 + }, + { + "epoch": 34.237658366098735, + "grad_norm": 0.20636138319969177, + "learning_rate": 0.0006, + "loss": 3.696850538253784, + "step": 2465 + }, + { + "epoch": 34.25163826998689, + "grad_norm": 0.23691460490226746, + "learning_rate": 0.0006, + "loss": 3.687997341156006, + "step": 2466 + }, + { + "epoch": 34.265618173875055, + "grad_norm": 0.2380511611700058, + "learning_rate": 0.0006, + "loss": 3.716610908508301, + "step": 2467 + }, + { + "epoch": 34.27959807776322, + "grad_norm": 0.21508945524692535, + "learning_rate": 0.0006, + "loss": 3.6993470191955566, + "step": 2468 + }, + { + "epoch": 34.293577981651374, + "grad_norm": 0.20441125333309174, + "learning_rate": 0.0006, + "loss": 3.7194275856018066, + "step": 2469 + }, + { + "epoch": 34.30755788553954, + "grad_norm": 0.19704242050647736, + "learning_rate": 0.0006, + "loss": 3.675929546356201, + "step": 2470 + }, + { + "epoch": 34.3215377894277, + "grad_norm": 0.1918456256389618, + "learning_rate": 0.0006, + "loss": 3.7189574241638184, + "step": 2471 + }, + { + "epoch": 34.33551769331586, + "grad_norm": 0.19687092304229736, + "learning_rate": 0.0006, + "loss": 3.725809335708618, + "step": 2472 + }, + { + "epoch": 34.34949759720402, + "grad_norm": 0.2048639953136444, + "learning_rate": 0.0006, + "loss": 3.7461748123168945, + "step": 2473 + }, + { + "epoch": 34.36347750109218, + "grad_norm": 0.21086618304252625, + "learning_rate": 0.0006, + "loss": 3.6849746704101562, + "step": 2474 + }, + { + "epoch": 34.37745740498034, + "grad_norm": 0.2172154039144516, + "learning_rate": 0.0006, + "loss": 3.7379322052001953, + "step": 2475 + }, + { + "epoch": 34.391437308868504, + "grad_norm": 0.22725504636764526, + "learning_rate": 0.0006, + "loss": 3.7341527938842773, + "step": 2476 + }, + { + "epoch": 34.40541721275666, + "grad_norm": 0.22309242188930511, + "learning_rate": 0.0006, + "loss": 3.724946975708008, + "step": 2477 + }, + { + "epoch": 34.419397116644824, + "grad_norm": 0.25252285599708557, + "learning_rate": 0.0006, + "loss": 3.710257053375244, + "step": 2478 + }, + { + "epoch": 34.43337702053299, + "grad_norm": 0.2549746334552765, + "learning_rate": 0.0006, + "loss": 3.7105040550231934, + "step": 2479 + }, + { + "epoch": 34.44735692442114, + "grad_norm": 0.22544030845165253, + "learning_rate": 0.0006, + "loss": 3.7340707778930664, + "step": 2480 + }, + { + "epoch": 34.46133682830931, + "grad_norm": 0.22275063395500183, + "learning_rate": 0.0006, + "loss": 3.7141473293304443, + "step": 2481 + }, + { + "epoch": 34.47531673219746, + "grad_norm": 0.25373485684394836, + "learning_rate": 0.0006, + "loss": 3.7014691829681396, + "step": 2482 + }, + { + "epoch": 34.489296636085626, + "grad_norm": 0.2573327124118805, + "learning_rate": 0.0006, + "loss": 3.682562828063965, + "step": 2483 + }, + { + "epoch": 34.50327653997379, + "grad_norm": 0.2452341616153717, + "learning_rate": 0.0006, + "loss": 3.757261276245117, + "step": 2484 + }, + { + "epoch": 34.517256443861946, + "grad_norm": 0.2477131187915802, + "learning_rate": 0.0006, + "loss": 3.7216877937316895, + "step": 2485 + }, + { + "epoch": 34.53123634775011, + "grad_norm": 0.24740098416805267, + "learning_rate": 0.0006, + "loss": 3.705704927444458, + "step": 2486 + }, + { + "epoch": 34.54521625163827, + "grad_norm": 0.27306219935417175, + "learning_rate": 0.0006, + "loss": 3.7014641761779785, + "step": 2487 + }, + { + "epoch": 34.55919615552643, + "grad_norm": 0.26376286149024963, + "learning_rate": 0.0006, + "loss": 3.686056137084961, + "step": 2488 + }, + { + "epoch": 34.57317605941459, + "grad_norm": 0.2796899378299713, + "learning_rate": 0.0006, + "loss": 3.7171077728271484, + "step": 2489 + }, + { + "epoch": 34.58715596330275, + "grad_norm": 0.24279902875423431, + "learning_rate": 0.0006, + "loss": 3.7448348999023438, + "step": 2490 + }, + { + "epoch": 34.60113586719091, + "grad_norm": 0.22772833704948425, + "learning_rate": 0.0006, + "loss": 3.7028117179870605, + "step": 2491 + }, + { + "epoch": 34.615115771079076, + "grad_norm": 0.22157910466194153, + "learning_rate": 0.0006, + "loss": 3.750023603439331, + "step": 2492 + }, + { + "epoch": 34.62909567496723, + "grad_norm": 0.24342703819274902, + "learning_rate": 0.0006, + "loss": 3.7181010246276855, + "step": 2493 + }, + { + "epoch": 34.643075578855395, + "grad_norm": 0.2554340362548828, + "learning_rate": 0.0006, + "loss": 3.6994080543518066, + "step": 2494 + }, + { + "epoch": 34.65705548274356, + "grad_norm": 0.21296930313110352, + "learning_rate": 0.0006, + "loss": 3.7534523010253906, + "step": 2495 + }, + { + "epoch": 34.671035386631715, + "grad_norm": 0.19117674231529236, + "learning_rate": 0.0006, + "loss": 3.7267889976501465, + "step": 2496 + }, + { + "epoch": 34.68501529051988, + "grad_norm": 0.2306399643421173, + "learning_rate": 0.0006, + "loss": 3.723212242126465, + "step": 2497 + }, + { + "epoch": 34.69899519440804, + "grad_norm": 0.23063263297080994, + "learning_rate": 0.0006, + "loss": 3.730070114135742, + "step": 2498 + }, + { + "epoch": 34.7129750982962, + "grad_norm": 0.19422881305217743, + "learning_rate": 0.0006, + "loss": 3.694833755493164, + "step": 2499 + }, + { + "epoch": 34.72695500218436, + "grad_norm": 0.20246362686157227, + "learning_rate": 0.0006, + "loss": 3.71140718460083, + "step": 2500 + }, + { + "epoch": 34.74093490607252, + "grad_norm": 0.1942741572856903, + "learning_rate": 0.0006, + "loss": 3.7530534267425537, + "step": 2501 + }, + { + "epoch": 34.75491480996068, + "grad_norm": 0.19686029851436615, + "learning_rate": 0.0006, + "loss": 3.7059555053710938, + "step": 2502 + }, + { + "epoch": 34.768894713848844, + "grad_norm": 0.20120355486869812, + "learning_rate": 0.0006, + "loss": 3.7271084785461426, + "step": 2503 + }, + { + "epoch": 34.782874617737, + "grad_norm": 0.20880399644374847, + "learning_rate": 0.0006, + "loss": 3.712137460708618, + "step": 2504 + }, + { + "epoch": 34.796854521625164, + "grad_norm": 0.22139988839626312, + "learning_rate": 0.0006, + "loss": 3.731245517730713, + "step": 2505 + }, + { + "epoch": 34.81083442551333, + "grad_norm": 0.22756224870681763, + "learning_rate": 0.0006, + "loss": 3.708987236022949, + "step": 2506 + }, + { + "epoch": 34.824814329401484, + "grad_norm": 0.22332409024238586, + "learning_rate": 0.0006, + "loss": 3.7365565299987793, + "step": 2507 + }, + { + "epoch": 34.83879423328965, + "grad_norm": 0.19599054753780365, + "learning_rate": 0.0006, + "loss": 3.7266454696655273, + "step": 2508 + }, + { + "epoch": 34.8527741371778, + "grad_norm": 0.19843019545078278, + "learning_rate": 0.0006, + "loss": 3.7225422859191895, + "step": 2509 + }, + { + "epoch": 34.86675404106597, + "grad_norm": 0.20147928595542908, + "learning_rate": 0.0006, + "loss": 3.7282514572143555, + "step": 2510 + }, + { + "epoch": 34.88073394495413, + "grad_norm": 0.19489876925945282, + "learning_rate": 0.0006, + "loss": 3.694852113723755, + "step": 2511 + }, + { + "epoch": 34.89471384884229, + "grad_norm": 0.20680078864097595, + "learning_rate": 0.0006, + "loss": 3.74678635597229, + "step": 2512 + }, + { + "epoch": 34.90869375273045, + "grad_norm": 0.2233233004808426, + "learning_rate": 0.0006, + "loss": 3.726475238800049, + "step": 2513 + }, + { + "epoch": 34.92267365661861, + "grad_norm": 0.20702993869781494, + "learning_rate": 0.0006, + "loss": 3.6946351528167725, + "step": 2514 + }, + { + "epoch": 34.93665356050677, + "grad_norm": 0.2081725299358368, + "learning_rate": 0.0006, + "loss": 3.7101621627807617, + "step": 2515 + }, + { + "epoch": 34.95063346439493, + "grad_norm": 0.20551837980747223, + "learning_rate": 0.0006, + "loss": 3.7060177326202393, + "step": 2516 + }, + { + "epoch": 34.964613368283096, + "grad_norm": 0.2106839418411255, + "learning_rate": 0.0006, + "loss": 3.7460474967956543, + "step": 2517 + }, + { + "epoch": 34.97859327217125, + "grad_norm": 0.18512766063213348, + "learning_rate": 0.0006, + "loss": 3.719280242919922, + "step": 2518 + }, + { + "epoch": 34.992573176059416, + "grad_norm": 0.1802142709493637, + "learning_rate": 0.0006, + "loss": 3.698255777359009, + "step": 2519 + }, + { + "epoch": 35.0, + "grad_norm": 0.2028084248304367, + "learning_rate": 0.0006, + "loss": 3.711136817932129, + "step": 2520 + }, + { + "epoch": 35.0, + "eval_loss": 4.006688117980957, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 2520 + }, + { + "epoch": 35.01397990388816, + "grad_norm": 0.1973012387752533, + "learning_rate": 0.0006, + "loss": 3.7108325958251953, + "step": 2521 + }, + { + "epoch": 35.02795980777632, + "grad_norm": 0.23763646185398102, + "learning_rate": 0.0006, + "loss": 3.675785541534424, + "step": 2522 + }, + { + "epoch": 35.04193971166448, + "grad_norm": 0.24403199553489685, + "learning_rate": 0.0006, + "loss": 3.7034249305725098, + "step": 2523 + }, + { + "epoch": 35.05591961555265, + "grad_norm": 0.19050131738185883, + "learning_rate": 0.0006, + "loss": 3.6984221935272217, + "step": 2524 + }, + { + "epoch": 35.0698995194408, + "grad_norm": 0.21389710903167725, + "learning_rate": 0.0006, + "loss": 3.6641085147857666, + "step": 2525 + }, + { + "epoch": 35.083879423328966, + "grad_norm": 0.23103152215480804, + "learning_rate": 0.0006, + "loss": 3.722912311553955, + "step": 2526 + }, + { + "epoch": 35.09785932721712, + "grad_norm": 0.2197326272726059, + "learning_rate": 0.0006, + "loss": 3.696568727493286, + "step": 2527 + }, + { + "epoch": 35.111839231105286, + "grad_norm": 0.20877327024936676, + "learning_rate": 0.0006, + "loss": 3.666700601577759, + "step": 2528 + }, + { + "epoch": 35.12581913499345, + "grad_norm": 0.20904001593589783, + "learning_rate": 0.0006, + "loss": 3.6896979808807373, + "step": 2529 + }, + { + "epoch": 35.139799038881605, + "grad_norm": 0.1947423666715622, + "learning_rate": 0.0006, + "loss": 3.6647095680236816, + "step": 2530 + }, + { + "epoch": 35.15377894276977, + "grad_norm": 0.2134019434452057, + "learning_rate": 0.0006, + "loss": 3.696993589401245, + "step": 2531 + }, + { + "epoch": 35.16775884665793, + "grad_norm": 0.2299254685640335, + "learning_rate": 0.0006, + "loss": 3.7067925930023193, + "step": 2532 + }, + { + "epoch": 35.18173875054609, + "grad_norm": 0.219585582613945, + "learning_rate": 0.0006, + "loss": 3.6680960655212402, + "step": 2533 + }, + { + "epoch": 35.19571865443425, + "grad_norm": 0.2146025449037552, + "learning_rate": 0.0006, + "loss": 3.7185046672821045, + "step": 2534 + }, + { + "epoch": 35.20969855832241, + "grad_norm": 0.22748060524463654, + "learning_rate": 0.0006, + "loss": 3.659202814102173, + "step": 2535 + }, + { + "epoch": 35.22367846221057, + "grad_norm": 0.22272273898124695, + "learning_rate": 0.0006, + "loss": 3.7002370357513428, + "step": 2536 + }, + { + "epoch": 35.237658366098735, + "grad_norm": 0.23827379941940308, + "learning_rate": 0.0006, + "loss": 3.714664936065674, + "step": 2537 + }, + { + "epoch": 35.25163826998689, + "grad_norm": 0.2328156679868698, + "learning_rate": 0.0006, + "loss": 3.665173292160034, + "step": 2538 + }, + { + "epoch": 35.265618173875055, + "grad_norm": 0.2573475241661072, + "learning_rate": 0.0006, + "loss": 3.7073206901550293, + "step": 2539 + }, + { + "epoch": 35.27959807776322, + "grad_norm": 0.2411472052335739, + "learning_rate": 0.0006, + "loss": 3.697751045227051, + "step": 2540 + }, + { + "epoch": 35.293577981651374, + "grad_norm": 0.22836148738861084, + "learning_rate": 0.0006, + "loss": 3.7219419479370117, + "step": 2541 + }, + { + "epoch": 35.30755788553954, + "grad_norm": 0.2225421667098999, + "learning_rate": 0.0006, + "loss": 3.69516658782959, + "step": 2542 + }, + { + "epoch": 35.3215377894277, + "grad_norm": 0.2180362343788147, + "learning_rate": 0.0006, + "loss": 3.714043378829956, + "step": 2543 + }, + { + "epoch": 35.33551769331586, + "grad_norm": 0.23638299107551575, + "learning_rate": 0.0006, + "loss": 3.7449421882629395, + "step": 2544 + }, + { + "epoch": 35.34949759720402, + "grad_norm": 0.21792089939117432, + "learning_rate": 0.0006, + "loss": 3.7029948234558105, + "step": 2545 + }, + { + "epoch": 35.36347750109218, + "grad_norm": 0.23266112804412842, + "learning_rate": 0.0006, + "loss": 3.683509111404419, + "step": 2546 + }, + { + "epoch": 35.37745740498034, + "grad_norm": 0.24203059077262878, + "learning_rate": 0.0006, + "loss": 3.68572998046875, + "step": 2547 + }, + { + "epoch": 35.391437308868504, + "grad_norm": 0.2543564438819885, + "learning_rate": 0.0006, + "loss": 3.6902432441711426, + "step": 2548 + }, + { + "epoch": 35.40541721275666, + "grad_norm": 0.22990189492702484, + "learning_rate": 0.0006, + "loss": 3.708810329437256, + "step": 2549 + }, + { + "epoch": 35.419397116644824, + "grad_norm": 0.2594352662563324, + "learning_rate": 0.0006, + "loss": 3.7312886714935303, + "step": 2550 + }, + { + "epoch": 35.43337702053299, + "grad_norm": 0.27525269985198975, + "learning_rate": 0.0006, + "loss": 3.6963448524475098, + "step": 2551 + }, + { + "epoch": 35.44735692442114, + "grad_norm": 0.2436525970697403, + "learning_rate": 0.0006, + "loss": 3.6733713150024414, + "step": 2552 + }, + { + "epoch": 35.46133682830931, + "grad_norm": 0.25500908493995667, + "learning_rate": 0.0006, + "loss": 3.7104358673095703, + "step": 2553 + }, + { + "epoch": 35.47531673219746, + "grad_norm": 0.23504602909088135, + "learning_rate": 0.0006, + "loss": 3.7052388191223145, + "step": 2554 + }, + { + "epoch": 35.489296636085626, + "grad_norm": 0.2277563363313675, + "learning_rate": 0.0006, + "loss": 3.708714008331299, + "step": 2555 + }, + { + "epoch": 35.50327653997379, + "grad_norm": 0.25224778056144714, + "learning_rate": 0.0006, + "loss": 3.699676990509033, + "step": 2556 + }, + { + "epoch": 35.517256443861946, + "grad_norm": 0.28308045864105225, + "learning_rate": 0.0006, + "loss": 3.7005362510681152, + "step": 2557 + }, + { + "epoch": 35.53123634775011, + "grad_norm": 0.25858840346336365, + "learning_rate": 0.0006, + "loss": 3.689999580383301, + "step": 2558 + }, + { + "epoch": 35.54521625163827, + "grad_norm": 0.23497405648231506, + "learning_rate": 0.0006, + "loss": 3.695793867111206, + "step": 2559 + }, + { + "epoch": 35.55919615552643, + "grad_norm": 0.22375957667827606, + "learning_rate": 0.0006, + "loss": 3.7011494636535645, + "step": 2560 + }, + { + "epoch": 35.57317605941459, + "grad_norm": 0.21056118607521057, + "learning_rate": 0.0006, + "loss": 3.722623586654663, + "step": 2561 + }, + { + "epoch": 35.58715596330275, + "grad_norm": 0.22504374384880066, + "learning_rate": 0.0006, + "loss": 3.7211966514587402, + "step": 2562 + }, + { + "epoch": 35.60113586719091, + "grad_norm": 0.22349773347377777, + "learning_rate": 0.0006, + "loss": 3.6901848316192627, + "step": 2563 + }, + { + "epoch": 35.615115771079076, + "grad_norm": 0.219499409198761, + "learning_rate": 0.0006, + "loss": 3.709026575088501, + "step": 2564 + }, + { + "epoch": 35.62909567496723, + "grad_norm": 0.20461080968379974, + "learning_rate": 0.0006, + "loss": 3.72456693649292, + "step": 2565 + }, + { + "epoch": 35.643075578855395, + "grad_norm": 0.2083883285522461, + "learning_rate": 0.0006, + "loss": 3.6845502853393555, + "step": 2566 + }, + { + "epoch": 35.65705548274356, + "grad_norm": 0.19694562256336212, + "learning_rate": 0.0006, + "loss": 3.668515682220459, + "step": 2567 + }, + { + "epoch": 35.671035386631715, + "grad_norm": 0.2107984870672226, + "learning_rate": 0.0006, + "loss": 3.700723648071289, + "step": 2568 + }, + { + "epoch": 35.68501529051988, + "grad_norm": 0.18878720700740814, + "learning_rate": 0.0006, + "loss": 3.689150333404541, + "step": 2569 + }, + { + "epoch": 35.69899519440804, + "grad_norm": 0.20058824121952057, + "learning_rate": 0.0006, + "loss": 3.7048301696777344, + "step": 2570 + }, + { + "epoch": 35.7129750982962, + "grad_norm": 0.2200566679239273, + "learning_rate": 0.0006, + "loss": 3.6944580078125, + "step": 2571 + }, + { + "epoch": 35.72695500218436, + "grad_norm": 0.22200417518615723, + "learning_rate": 0.0006, + "loss": 3.715193510055542, + "step": 2572 + }, + { + "epoch": 35.74093490607252, + "grad_norm": 0.21011404693126678, + "learning_rate": 0.0006, + "loss": 3.737387180328369, + "step": 2573 + }, + { + "epoch": 35.75491480996068, + "grad_norm": 0.21139226853847504, + "learning_rate": 0.0006, + "loss": 3.695596694946289, + "step": 2574 + }, + { + "epoch": 35.768894713848844, + "grad_norm": 0.2112506479024887, + "learning_rate": 0.0006, + "loss": 3.7264227867126465, + "step": 2575 + }, + { + "epoch": 35.782874617737, + "grad_norm": 0.21528391540050507, + "learning_rate": 0.0006, + "loss": 3.7089385986328125, + "step": 2576 + }, + { + "epoch": 35.796854521625164, + "grad_norm": 0.2127804309129715, + "learning_rate": 0.0006, + "loss": 3.6995301246643066, + "step": 2577 + }, + { + "epoch": 35.81083442551333, + "grad_norm": 0.19839410483837128, + "learning_rate": 0.0006, + "loss": 3.7233223915100098, + "step": 2578 + }, + { + "epoch": 35.824814329401484, + "grad_norm": 0.19098423421382904, + "learning_rate": 0.0006, + "loss": 3.7108311653137207, + "step": 2579 + }, + { + "epoch": 35.83879423328965, + "grad_norm": 0.18697232007980347, + "learning_rate": 0.0006, + "loss": 3.725001811981201, + "step": 2580 + }, + { + "epoch": 35.8527741371778, + "grad_norm": 0.21051937341690063, + "learning_rate": 0.0006, + "loss": 3.7310993671417236, + "step": 2581 + }, + { + "epoch": 35.86675404106597, + "grad_norm": 0.2239079475402832, + "learning_rate": 0.0006, + "loss": 3.739056348800659, + "step": 2582 + }, + { + "epoch": 35.88073394495413, + "grad_norm": 0.2581230700016022, + "learning_rate": 0.0006, + "loss": 3.697061061859131, + "step": 2583 + }, + { + "epoch": 35.89471384884229, + "grad_norm": 0.25388655066490173, + "learning_rate": 0.0006, + "loss": 3.7173471450805664, + "step": 2584 + }, + { + "epoch": 35.90869375273045, + "grad_norm": 0.2557796537876129, + "learning_rate": 0.0006, + "loss": 3.7121596336364746, + "step": 2585 + }, + { + "epoch": 35.92267365661861, + "grad_norm": 0.21846474707126617, + "learning_rate": 0.0006, + "loss": 3.7342100143432617, + "step": 2586 + }, + { + "epoch": 35.93665356050677, + "grad_norm": 0.19810006022453308, + "learning_rate": 0.0006, + "loss": 3.7266340255737305, + "step": 2587 + }, + { + "epoch": 35.95063346439493, + "grad_norm": 0.28599923849105835, + "learning_rate": 0.0006, + "loss": 3.711876392364502, + "step": 2588 + }, + { + "epoch": 35.964613368283096, + "grad_norm": 0.3380447030067444, + "learning_rate": 0.0006, + "loss": 3.7611794471740723, + "step": 2589 + }, + { + "epoch": 35.97859327217125, + "grad_norm": 0.2946915328502655, + "learning_rate": 0.0006, + "loss": 3.7659358978271484, + "step": 2590 + }, + { + "epoch": 35.992573176059416, + "grad_norm": 0.2310202419757843, + "learning_rate": 0.0006, + "loss": 3.7124969959259033, + "step": 2591 + }, + { + "epoch": 36.0, + "grad_norm": 0.22294320166110992, + "learning_rate": 0.0006, + "loss": 3.725590705871582, + "step": 2592 + }, + { + "epoch": 36.0, + "eval_loss": 4.015472412109375, + "eval_runtime": 44.4903, + "eval_samples_per_second": 54.888, + "eval_steps_per_second": 3.439, + "step": 2592 + }, + { + "epoch": 36.01397990388816, + "grad_norm": 0.2442479431629181, + "learning_rate": 0.0006, + "loss": 3.6670360565185547, + "step": 2593 + }, + { + "epoch": 36.02795980777632, + "grad_norm": 0.27702075242996216, + "learning_rate": 0.0006, + "loss": 3.685915946960449, + "step": 2594 + }, + { + "epoch": 36.04193971166448, + "grad_norm": 0.22300852835178375, + "learning_rate": 0.0006, + "loss": 3.6993556022644043, + "step": 2595 + }, + { + "epoch": 36.05591961555265, + "grad_norm": 0.22456000745296478, + "learning_rate": 0.0006, + "loss": 3.6937754154205322, + "step": 2596 + }, + { + "epoch": 36.0698995194408, + "grad_norm": 0.23157717287540436, + "learning_rate": 0.0006, + "loss": 3.6573898792266846, + "step": 2597 + }, + { + "epoch": 36.083879423328966, + "grad_norm": 0.23002618551254272, + "learning_rate": 0.0006, + "loss": 3.6565046310424805, + "step": 2598 + }, + { + "epoch": 36.09785932721712, + "grad_norm": 0.223054900765419, + "learning_rate": 0.0006, + "loss": 3.6964457035064697, + "step": 2599 + }, + { + "epoch": 36.111839231105286, + "grad_norm": 0.21883328258991241, + "learning_rate": 0.0006, + "loss": 3.674757480621338, + "step": 2600 + }, + { + "epoch": 36.12581913499345, + "grad_norm": 0.21729037165641785, + "learning_rate": 0.0006, + "loss": 3.684323310852051, + "step": 2601 + }, + { + "epoch": 36.139799038881605, + "grad_norm": 0.21299415826797485, + "learning_rate": 0.0006, + "loss": 3.6554017066955566, + "step": 2602 + }, + { + "epoch": 36.15377894276977, + "grad_norm": 0.22723016142845154, + "learning_rate": 0.0006, + "loss": 3.666767120361328, + "step": 2603 + }, + { + "epoch": 36.16775884665793, + "grad_norm": 0.23663052916526794, + "learning_rate": 0.0006, + "loss": 3.692861557006836, + "step": 2604 + }, + { + "epoch": 36.18173875054609, + "grad_norm": 0.23544131219387054, + "learning_rate": 0.0006, + "loss": 3.6648998260498047, + "step": 2605 + }, + { + "epoch": 36.19571865443425, + "grad_norm": 0.24303849041461945, + "learning_rate": 0.0006, + "loss": 3.66096568107605, + "step": 2606 + }, + { + "epoch": 36.20969855832241, + "grad_norm": 0.23385047912597656, + "learning_rate": 0.0006, + "loss": 3.6636829376220703, + "step": 2607 + }, + { + "epoch": 36.22367846221057, + "grad_norm": 0.21988974511623383, + "learning_rate": 0.0006, + "loss": 3.685072660446167, + "step": 2608 + }, + { + "epoch": 36.237658366098735, + "grad_norm": 0.2365395724773407, + "learning_rate": 0.0006, + "loss": 3.7292234897613525, + "step": 2609 + }, + { + "epoch": 36.25163826998689, + "grad_norm": 0.23791152238845825, + "learning_rate": 0.0006, + "loss": 3.6870808601379395, + "step": 2610 + }, + { + "epoch": 36.265618173875055, + "grad_norm": 0.22954145073890686, + "learning_rate": 0.0006, + "loss": 3.705406904220581, + "step": 2611 + }, + { + "epoch": 36.27959807776322, + "grad_norm": 0.22748000919818878, + "learning_rate": 0.0006, + "loss": 3.680781841278076, + "step": 2612 + }, + { + "epoch": 36.293577981651374, + "grad_norm": 0.21827450394630432, + "learning_rate": 0.0006, + "loss": 3.6794490814208984, + "step": 2613 + }, + { + "epoch": 36.30755788553954, + "grad_norm": 0.2406153380870819, + "learning_rate": 0.0006, + "loss": 3.690225124359131, + "step": 2614 + }, + { + "epoch": 36.3215377894277, + "grad_norm": 0.2406231164932251, + "learning_rate": 0.0006, + "loss": 3.665867805480957, + "step": 2615 + }, + { + "epoch": 36.33551769331586, + "grad_norm": 0.20494551956653595, + "learning_rate": 0.0006, + "loss": 3.701937198638916, + "step": 2616 + }, + { + "epoch": 36.34949759720402, + "grad_norm": 0.1995103359222412, + "learning_rate": 0.0006, + "loss": 3.702033758163452, + "step": 2617 + }, + { + "epoch": 36.36347750109218, + "grad_norm": 0.1902446299791336, + "learning_rate": 0.0006, + "loss": 3.6809959411621094, + "step": 2618 + }, + { + "epoch": 36.37745740498034, + "grad_norm": 0.1810801923274994, + "learning_rate": 0.0006, + "loss": 3.689852714538574, + "step": 2619 + }, + { + "epoch": 36.391437308868504, + "grad_norm": 0.1882476955652237, + "learning_rate": 0.0006, + "loss": 3.710911273956299, + "step": 2620 + }, + { + "epoch": 36.40541721275666, + "grad_norm": 0.1912514567375183, + "learning_rate": 0.0006, + "loss": 3.7054009437561035, + "step": 2621 + }, + { + "epoch": 36.419397116644824, + "grad_norm": 0.19080901145935059, + "learning_rate": 0.0006, + "loss": 3.681145191192627, + "step": 2622 + }, + { + "epoch": 36.43337702053299, + "grad_norm": 0.193472221493721, + "learning_rate": 0.0006, + "loss": 3.661360740661621, + "step": 2623 + }, + { + "epoch": 36.44735692442114, + "grad_norm": 0.2034357339143753, + "learning_rate": 0.0006, + "loss": 3.706930160522461, + "step": 2624 + }, + { + "epoch": 36.46133682830931, + "grad_norm": 0.19924600422382355, + "learning_rate": 0.0006, + "loss": 3.6903364658355713, + "step": 2625 + }, + { + "epoch": 36.47531673219746, + "grad_norm": 0.20556052029132843, + "learning_rate": 0.0006, + "loss": 3.6974234580993652, + "step": 2626 + }, + { + "epoch": 36.489296636085626, + "grad_norm": 0.19628804922103882, + "learning_rate": 0.0006, + "loss": 3.6947717666625977, + "step": 2627 + }, + { + "epoch": 36.50327653997379, + "grad_norm": 0.18071836233139038, + "learning_rate": 0.0006, + "loss": 3.717582941055298, + "step": 2628 + }, + { + "epoch": 36.517256443861946, + "grad_norm": 0.20531553030014038, + "learning_rate": 0.0006, + "loss": 3.680610179901123, + "step": 2629 + }, + { + "epoch": 36.53123634775011, + "grad_norm": 0.23789429664611816, + "learning_rate": 0.0006, + "loss": 3.711493968963623, + "step": 2630 + }, + { + "epoch": 36.54521625163827, + "grad_norm": 0.23027348518371582, + "learning_rate": 0.0006, + "loss": 3.6827993392944336, + "step": 2631 + }, + { + "epoch": 36.55919615552643, + "grad_norm": 0.21941570937633514, + "learning_rate": 0.0006, + "loss": 3.682286262512207, + "step": 2632 + }, + { + "epoch": 36.57317605941459, + "grad_norm": 0.21213553845882416, + "learning_rate": 0.0006, + "loss": 3.6828765869140625, + "step": 2633 + }, + { + "epoch": 36.58715596330275, + "grad_norm": 0.21929772198200226, + "learning_rate": 0.0006, + "loss": 3.697030544281006, + "step": 2634 + }, + { + "epoch": 36.60113586719091, + "grad_norm": 0.2101750522851944, + "learning_rate": 0.0006, + "loss": 3.723201274871826, + "step": 2635 + }, + { + "epoch": 36.615115771079076, + "grad_norm": 0.19014132022857666, + "learning_rate": 0.0006, + "loss": 3.6989338397979736, + "step": 2636 + }, + { + "epoch": 36.62909567496723, + "grad_norm": 0.21566815674304962, + "learning_rate": 0.0006, + "loss": 3.6968226432800293, + "step": 2637 + }, + { + "epoch": 36.643075578855395, + "grad_norm": 0.20500224828720093, + "learning_rate": 0.0006, + "loss": 3.689640522003174, + "step": 2638 + }, + { + "epoch": 36.65705548274356, + "grad_norm": 0.210358127951622, + "learning_rate": 0.0006, + "loss": 3.6996328830718994, + "step": 2639 + }, + { + "epoch": 36.671035386631715, + "grad_norm": 0.2061213105916977, + "learning_rate": 0.0006, + "loss": 3.7019221782684326, + "step": 2640 + }, + { + "epoch": 36.68501529051988, + "grad_norm": 0.21494871377944946, + "learning_rate": 0.0006, + "loss": 3.6634578704833984, + "step": 2641 + }, + { + "epoch": 36.69899519440804, + "grad_norm": 0.19586549699306488, + "learning_rate": 0.0006, + "loss": 3.708131790161133, + "step": 2642 + }, + { + "epoch": 36.7129750982962, + "grad_norm": 0.22805732488632202, + "learning_rate": 0.0006, + "loss": 3.6977362632751465, + "step": 2643 + }, + { + "epoch": 36.72695500218436, + "grad_norm": 0.28397148847579956, + "learning_rate": 0.0006, + "loss": 3.6847963333129883, + "step": 2644 + }, + { + "epoch": 36.74093490607252, + "grad_norm": 0.28333187103271484, + "learning_rate": 0.0006, + "loss": 3.734257459640503, + "step": 2645 + }, + { + "epoch": 36.75491480996068, + "grad_norm": 0.22314953804016113, + "learning_rate": 0.0006, + "loss": 3.6871445178985596, + "step": 2646 + }, + { + "epoch": 36.768894713848844, + "grad_norm": 0.20580267906188965, + "learning_rate": 0.0006, + "loss": 3.692736864089966, + "step": 2647 + }, + { + "epoch": 36.782874617737, + "grad_norm": 0.22695036232471466, + "learning_rate": 0.0006, + "loss": 3.697096824645996, + "step": 2648 + }, + { + "epoch": 36.796854521625164, + "grad_norm": 0.25916165113449097, + "learning_rate": 0.0006, + "loss": 3.7099573612213135, + "step": 2649 + }, + { + "epoch": 36.81083442551333, + "grad_norm": 0.26024341583251953, + "learning_rate": 0.0006, + "loss": 3.7161359786987305, + "step": 2650 + }, + { + "epoch": 36.824814329401484, + "grad_norm": 0.2340802699327469, + "learning_rate": 0.0006, + "loss": 3.708864688873291, + "step": 2651 + }, + { + "epoch": 36.83879423328965, + "grad_norm": 0.23312288522720337, + "learning_rate": 0.0006, + "loss": 3.7351365089416504, + "step": 2652 + }, + { + "epoch": 36.8527741371778, + "grad_norm": 0.22953253984451294, + "learning_rate": 0.0006, + "loss": 3.735302209854126, + "step": 2653 + }, + { + "epoch": 36.86675404106597, + "grad_norm": 0.21928828954696655, + "learning_rate": 0.0006, + "loss": 3.72445011138916, + "step": 2654 + }, + { + "epoch": 36.88073394495413, + "grad_norm": 0.22865602374076843, + "learning_rate": 0.0006, + "loss": 3.714867115020752, + "step": 2655 + }, + { + "epoch": 36.89471384884229, + "grad_norm": 0.23255643248558044, + "learning_rate": 0.0006, + "loss": 3.695101261138916, + "step": 2656 + }, + { + "epoch": 36.90869375273045, + "grad_norm": 0.2491452544927597, + "learning_rate": 0.0006, + "loss": 3.70692777633667, + "step": 2657 + }, + { + "epoch": 36.92267365661861, + "grad_norm": 0.27367597818374634, + "learning_rate": 0.0006, + "loss": 3.6906654834747314, + "step": 2658 + }, + { + "epoch": 36.93665356050677, + "grad_norm": 0.26728564500808716, + "learning_rate": 0.0006, + "loss": 3.7092056274414062, + "step": 2659 + }, + { + "epoch": 36.95063346439493, + "grad_norm": 0.207070454955101, + "learning_rate": 0.0006, + "loss": 3.7152137756347656, + "step": 2660 + }, + { + "epoch": 36.964613368283096, + "grad_norm": 0.21671561896800995, + "learning_rate": 0.0006, + "loss": 3.7130112648010254, + "step": 2661 + }, + { + "epoch": 36.97859327217125, + "grad_norm": 0.2140914648771286, + "learning_rate": 0.0006, + "loss": 3.7286999225616455, + "step": 2662 + }, + { + "epoch": 36.992573176059416, + "grad_norm": 0.21324342489242554, + "learning_rate": 0.0006, + "loss": 3.6828715801239014, + "step": 2663 + }, + { + "epoch": 37.0, + "grad_norm": 0.22366146743297577, + "learning_rate": 0.0006, + "loss": 3.69199800491333, + "step": 2664 + }, + { + "epoch": 37.0, + "eval_loss": 4.011842727661133, + "eval_runtime": 44.7825, + "eval_samples_per_second": 54.53, + "eval_steps_per_second": 3.417, + "step": 2664 + }, + { + "epoch": 37.01397990388816, + "grad_norm": 0.22093228995800018, + "learning_rate": 0.0006, + "loss": 3.6940979957580566, + "step": 2665 + }, + { + "epoch": 37.02795980777632, + "grad_norm": 0.20821493864059448, + "learning_rate": 0.0006, + "loss": 3.670813798904419, + "step": 2666 + }, + { + "epoch": 37.04193971166448, + "grad_norm": 0.22330114245414734, + "learning_rate": 0.0006, + "loss": 3.6392664909362793, + "step": 2667 + }, + { + "epoch": 37.05591961555265, + "grad_norm": 0.2224634289741516, + "learning_rate": 0.0006, + "loss": 3.660856246948242, + "step": 2668 + }, + { + "epoch": 37.0698995194408, + "grad_norm": 0.2255052626132965, + "learning_rate": 0.0006, + "loss": 3.6393589973449707, + "step": 2669 + }, + { + "epoch": 37.083879423328966, + "grad_norm": 0.23462942242622375, + "learning_rate": 0.0006, + "loss": 3.684429168701172, + "step": 2670 + }, + { + "epoch": 37.09785932721712, + "grad_norm": 0.23743386566638947, + "learning_rate": 0.0006, + "loss": 3.67622709274292, + "step": 2671 + }, + { + "epoch": 37.111839231105286, + "grad_norm": 0.2276267409324646, + "learning_rate": 0.0006, + "loss": 3.6487984657287598, + "step": 2672 + }, + { + "epoch": 37.12581913499345, + "grad_norm": 0.24448423087596893, + "learning_rate": 0.0006, + "loss": 3.67645525932312, + "step": 2673 + }, + { + "epoch": 37.139799038881605, + "grad_norm": 0.2428973764181137, + "learning_rate": 0.0006, + "loss": 3.681497097015381, + "step": 2674 + }, + { + "epoch": 37.15377894276977, + "grad_norm": 0.21918512880802155, + "learning_rate": 0.0006, + "loss": 3.67134428024292, + "step": 2675 + }, + { + "epoch": 37.16775884665793, + "grad_norm": 0.2103680670261383, + "learning_rate": 0.0006, + "loss": 3.6508708000183105, + "step": 2676 + }, + { + "epoch": 37.18173875054609, + "grad_norm": 0.20674929022789001, + "learning_rate": 0.0006, + "loss": 3.6904029846191406, + "step": 2677 + }, + { + "epoch": 37.19571865443425, + "grad_norm": 0.21867282688617706, + "learning_rate": 0.0006, + "loss": 3.697535514831543, + "step": 2678 + }, + { + "epoch": 37.20969855832241, + "grad_norm": 0.22919587790966034, + "learning_rate": 0.0006, + "loss": 3.675565004348755, + "step": 2679 + }, + { + "epoch": 37.22367846221057, + "grad_norm": 0.22255578637123108, + "learning_rate": 0.0006, + "loss": 3.6830129623413086, + "step": 2680 + }, + { + "epoch": 37.237658366098735, + "grad_norm": 0.22460198402404785, + "learning_rate": 0.0006, + "loss": 3.6872951984405518, + "step": 2681 + }, + { + "epoch": 37.25163826998689, + "grad_norm": 0.23677165806293488, + "learning_rate": 0.0006, + "loss": 3.6779165267944336, + "step": 2682 + }, + { + "epoch": 37.265618173875055, + "grad_norm": 0.23231394588947296, + "learning_rate": 0.0006, + "loss": 3.6831178665161133, + "step": 2683 + }, + { + "epoch": 37.27959807776322, + "grad_norm": 0.22131343185901642, + "learning_rate": 0.0006, + "loss": 3.664295196533203, + "step": 2684 + }, + { + "epoch": 37.293577981651374, + "grad_norm": 0.23424340784549713, + "learning_rate": 0.0006, + "loss": 3.696678638458252, + "step": 2685 + }, + { + "epoch": 37.30755788553954, + "grad_norm": 0.22695423662662506, + "learning_rate": 0.0006, + "loss": 3.6697473526000977, + "step": 2686 + }, + { + "epoch": 37.3215377894277, + "grad_norm": 0.2165997475385666, + "learning_rate": 0.0006, + "loss": 3.6801891326904297, + "step": 2687 + }, + { + "epoch": 37.33551769331586, + "grad_norm": 0.2241077572107315, + "learning_rate": 0.0006, + "loss": 3.6957011222839355, + "step": 2688 + }, + { + "epoch": 37.34949759720402, + "grad_norm": 0.21191732585430145, + "learning_rate": 0.0006, + "loss": 3.6812620162963867, + "step": 2689 + }, + { + "epoch": 37.36347750109218, + "grad_norm": 0.1827201396226883, + "learning_rate": 0.0006, + "loss": 3.6797738075256348, + "step": 2690 + }, + { + "epoch": 37.37745740498034, + "grad_norm": 0.20793627202510834, + "learning_rate": 0.0006, + "loss": 3.672819137573242, + "step": 2691 + }, + { + "epoch": 37.391437308868504, + "grad_norm": 0.19737116992473602, + "learning_rate": 0.0006, + "loss": 3.667839527130127, + "step": 2692 + }, + { + "epoch": 37.40541721275666, + "grad_norm": 0.18670497834682465, + "learning_rate": 0.0006, + "loss": 3.651561737060547, + "step": 2693 + }, + { + "epoch": 37.419397116644824, + "grad_norm": 0.21385592222213745, + "learning_rate": 0.0006, + "loss": 3.717456340789795, + "step": 2694 + }, + { + "epoch": 37.43337702053299, + "grad_norm": 0.20590044558048248, + "learning_rate": 0.0006, + "loss": 3.6950271129608154, + "step": 2695 + }, + { + "epoch": 37.44735692442114, + "grad_norm": 0.1992103010416031, + "learning_rate": 0.0006, + "loss": 3.687854290008545, + "step": 2696 + }, + { + "epoch": 37.46133682830931, + "grad_norm": 0.2004154473543167, + "learning_rate": 0.0006, + "loss": 3.695838451385498, + "step": 2697 + }, + { + "epoch": 37.47531673219746, + "grad_norm": 0.2019810527563095, + "learning_rate": 0.0006, + "loss": 3.690431594848633, + "step": 2698 + }, + { + "epoch": 37.489296636085626, + "grad_norm": 0.2192547768354416, + "learning_rate": 0.0006, + "loss": 3.6743836402893066, + "step": 2699 + }, + { + "epoch": 37.50327653997379, + "grad_norm": 0.2568076550960541, + "learning_rate": 0.0006, + "loss": 3.6857337951660156, + "step": 2700 + }, + { + "epoch": 37.517256443861946, + "grad_norm": 0.20050311088562012, + "learning_rate": 0.0006, + "loss": 3.6811180114746094, + "step": 2701 + }, + { + "epoch": 37.53123634775011, + "grad_norm": 0.21008558571338654, + "learning_rate": 0.0006, + "loss": 3.700563907623291, + "step": 2702 + }, + { + "epoch": 37.54521625163827, + "grad_norm": 0.2393747717142105, + "learning_rate": 0.0006, + "loss": 3.679438591003418, + "step": 2703 + }, + { + "epoch": 37.55919615552643, + "grad_norm": 0.2531895041465759, + "learning_rate": 0.0006, + "loss": 3.682903289794922, + "step": 2704 + }, + { + "epoch": 37.57317605941459, + "grad_norm": 0.2372656762599945, + "learning_rate": 0.0006, + "loss": 3.7128796577453613, + "step": 2705 + }, + { + "epoch": 37.58715596330275, + "grad_norm": 0.20020034909248352, + "learning_rate": 0.0006, + "loss": 3.701916217803955, + "step": 2706 + }, + { + "epoch": 37.60113586719091, + "grad_norm": 0.20250852406024933, + "learning_rate": 0.0006, + "loss": 3.6761491298675537, + "step": 2707 + }, + { + "epoch": 37.615115771079076, + "grad_norm": 0.19259589910507202, + "learning_rate": 0.0006, + "loss": 3.715104579925537, + "step": 2708 + }, + { + "epoch": 37.62909567496723, + "grad_norm": 0.19649392366409302, + "learning_rate": 0.0006, + "loss": 3.687556266784668, + "step": 2709 + }, + { + "epoch": 37.643075578855395, + "grad_norm": 0.1909446269273758, + "learning_rate": 0.0006, + "loss": 3.684046745300293, + "step": 2710 + }, + { + "epoch": 37.65705548274356, + "grad_norm": 0.19589872658252716, + "learning_rate": 0.0006, + "loss": 3.707886219024658, + "step": 2711 + }, + { + "epoch": 37.671035386631715, + "grad_norm": 0.19472210109233856, + "learning_rate": 0.0006, + "loss": 3.6837692260742188, + "step": 2712 + }, + { + "epoch": 37.68501529051988, + "grad_norm": 0.22622711956501007, + "learning_rate": 0.0006, + "loss": 3.703619956970215, + "step": 2713 + }, + { + "epoch": 37.69899519440804, + "grad_norm": 0.24314729869365692, + "learning_rate": 0.0006, + "loss": 3.7345223426818848, + "step": 2714 + }, + { + "epoch": 37.7129750982962, + "grad_norm": 0.23934306204319, + "learning_rate": 0.0006, + "loss": 3.687809705734253, + "step": 2715 + }, + { + "epoch": 37.72695500218436, + "grad_norm": 0.24838587641716003, + "learning_rate": 0.0006, + "loss": 3.708613872528076, + "step": 2716 + }, + { + "epoch": 37.74093490607252, + "grad_norm": 0.23191452026367188, + "learning_rate": 0.0006, + "loss": 3.7090163230895996, + "step": 2717 + }, + { + "epoch": 37.75491480996068, + "grad_norm": 0.24574638903141022, + "learning_rate": 0.0006, + "loss": 3.68489146232605, + "step": 2718 + }, + { + "epoch": 37.768894713848844, + "grad_norm": 0.2706749439239502, + "learning_rate": 0.0006, + "loss": 3.687061309814453, + "step": 2719 + }, + { + "epoch": 37.782874617737, + "grad_norm": 0.25955191254615784, + "learning_rate": 0.0006, + "loss": 3.694173812866211, + "step": 2720 + }, + { + "epoch": 37.796854521625164, + "grad_norm": 0.22040610015392303, + "learning_rate": 0.0006, + "loss": 3.701871871948242, + "step": 2721 + }, + { + "epoch": 37.81083442551333, + "grad_norm": 0.22328512370586395, + "learning_rate": 0.0006, + "loss": 3.7082555294036865, + "step": 2722 + }, + { + "epoch": 37.824814329401484, + "grad_norm": 0.2290581911802292, + "learning_rate": 0.0006, + "loss": 3.7023987770080566, + "step": 2723 + }, + { + "epoch": 37.83879423328965, + "grad_norm": 0.23129472136497498, + "learning_rate": 0.0006, + "loss": 3.7101752758026123, + "step": 2724 + }, + { + "epoch": 37.8527741371778, + "grad_norm": 0.21203753352165222, + "learning_rate": 0.0006, + "loss": 3.712129592895508, + "step": 2725 + }, + { + "epoch": 37.86675404106597, + "grad_norm": 0.21938200294971466, + "learning_rate": 0.0006, + "loss": 3.7086095809936523, + "step": 2726 + }, + { + "epoch": 37.88073394495413, + "grad_norm": 0.2203572541475296, + "learning_rate": 0.0006, + "loss": 3.6789026260375977, + "step": 2727 + }, + { + "epoch": 37.89471384884229, + "grad_norm": 0.18146046996116638, + "learning_rate": 0.0006, + "loss": 3.666893243789673, + "step": 2728 + }, + { + "epoch": 37.90869375273045, + "grad_norm": 0.1879623532295227, + "learning_rate": 0.0006, + "loss": 3.69246768951416, + "step": 2729 + }, + { + "epoch": 37.92267365661861, + "grad_norm": 0.18311670422554016, + "learning_rate": 0.0006, + "loss": 3.682036876678467, + "step": 2730 + }, + { + "epoch": 37.93665356050677, + "grad_norm": 0.1898486614227295, + "learning_rate": 0.0006, + "loss": 3.6683125495910645, + "step": 2731 + }, + { + "epoch": 37.95063346439493, + "grad_norm": 0.1858556717634201, + "learning_rate": 0.0006, + "loss": 3.6879611015319824, + "step": 2732 + }, + { + "epoch": 37.964613368283096, + "grad_norm": 0.19914504885673523, + "learning_rate": 0.0006, + "loss": 3.690250873565674, + "step": 2733 + }, + { + "epoch": 37.97859327217125, + "grad_norm": 0.20406974852085114, + "learning_rate": 0.0006, + "loss": 3.6812171936035156, + "step": 2734 + }, + { + "epoch": 37.992573176059416, + "grad_norm": 0.2003912478685379, + "learning_rate": 0.0006, + "loss": 3.6852147579193115, + "step": 2735 + }, + { + "epoch": 38.0, + "grad_norm": 0.22644472122192383, + "learning_rate": 0.0006, + "loss": 3.645207405090332, + "step": 2736 + }, + { + "epoch": 38.0, + "eval_loss": 3.995000123977661, + "eval_runtime": 45.1644, + "eval_samples_per_second": 54.069, + "eval_steps_per_second": 3.388, + "step": 2736 + }, + { + "epoch": 38.01397990388816, + "grad_norm": 0.1989814043045044, + "learning_rate": 0.0006, + "loss": 3.6511387825012207, + "step": 2737 + }, + { + "epoch": 38.02795980777632, + "grad_norm": 0.203324094414711, + "learning_rate": 0.0006, + "loss": 3.6513094902038574, + "step": 2738 + }, + { + "epoch": 38.04193971166448, + "grad_norm": 0.21504290401935577, + "learning_rate": 0.0006, + "loss": 3.647711992263794, + "step": 2739 + }, + { + "epoch": 38.05591961555265, + "grad_norm": 0.23464815318584442, + "learning_rate": 0.0006, + "loss": 3.6418747901916504, + "step": 2740 + }, + { + "epoch": 38.0698995194408, + "grad_norm": 0.242184117436409, + "learning_rate": 0.0006, + "loss": 3.6741859912872314, + "step": 2741 + }, + { + "epoch": 38.083879423328966, + "grad_norm": 0.23488445580005646, + "learning_rate": 0.0006, + "loss": 3.6710941791534424, + "step": 2742 + }, + { + "epoch": 38.09785932721712, + "grad_norm": 0.20800170302391052, + "learning_rate": 0.0006, + "loss": 3.660001754760742, + "step": 2743 + }, + { + "epoch": 38.111839231105286, + "grad_norm": 0.19505052268505096, + "learning_rate": 0.0006, + "loss": 3.684129238128662, + "step": 2744 + }, + { + "epoch": 38.12581913499345, + "grad_norm": 0.2185833901166916, + "learning_rate": 0.0006, + "loss": 3.656033515930176, + "step": 2745 + }, + { + "epoch": 38.139799038881605, + "grad_norm": 0.21850253641605377, + "learning_rate": 0.0006, + "loss": 3.6818184852600098, + "step": 2746 + }, + { + "epoch": 38.15377894276977, + "grad_norm": 0.2109488695859909, + "learning_rate": 0.0006, + "loss": 3.6485435962677, + "step": 2747 + }, + { + "epoch": 38.16775884665793, + "grad_norm": 0.21059907972812653, + "learning_rate": 0.0006, + "loss": 3.6734395027160645, + "step": 2748 + }, + { + "epoch": 38.18173875054609, + "grad_norm": 0.20741555094718933, + "learning_rate": 0.0006, + "loss": 3.6672463417053223, + "step": 2749 + }, + { + "epoch": 38.19571865443425, + "grad_norm": 0.2130175530910492, + "learning_rate": 0.0006, + "loss": 3.692840576171875, + "step": 2750 + }, + { + "epoch": 38.20969855832241, + "grad_norm": 0.1899138242006302, + "learning_rate": 0.0006, + "loss": 3.675316333770752, + "step": 2751 + }, + { + "epoch": 38.22367846221057, + "grad_norm": 0.218918576836586, + "learning_rate": 0.0006, + "loss": 3.634105920791626, + "step": 2752 + }, + { + "epoch": 38.237658366098735, + "grad_norm": 0.23649370670318604, + "learning_rate": 0.0006, + "loss": 3.6526122093200684, + "step": 2753 + }, + { + "epoch": 38.25163826998689, + "grad_norm": 0.22011931240558624, + "learning_rate": 0.0006, + "loss": 3.6859593391418457, + "step": 2754 + }, + { + "epoch": 38.265618173875055, + "grad_norm": 0.2143620252609253, + "learning_rate": 0.0006, + "loss": 3.656838893890381, + "step": 2755 + }, + { + "epoch": 38.27959807776322, + "grad_norm": 0.24068567156791687, + "learning_rate": 0.0006, + "loss": 3.67006254196167, + "step": 2756 + }, + { + "epoch": 38.293577981651374, + "grad_norm": 0.25773152709007263, + "learning_rate": 0.0006, + "loss": 3.6648950576782227, + "step": 2757 + }, + { + "epoch": 38.30755788553954, + "grad_norm": 0.24213455617427826, + "learning_rate": 0.0006, + "loss": 3.6918864250183105, + "step": 2758 + }, + { + "epoch": 38.3215377894277, + "grad_norm": 0.22463668882846832, + "learning_rate": 0.0006, + "loss": 3.6662540435791016, + "step": 2759 + }, + { + "epoch": 38.33551769331586, + "grad_norm": 0.22541455924510956, + "learning_rate": 0.0006, + "loss": 3.6563215255737305, + "step": 2760 + }, + { + "epoch": 38.34949759720402, + "grad_norm": 0.21833783388137817, + "learning_rate": 0.0006, + "loss": 3.650446891784668, + "step": 2761 + }, + { + "epoch": 38.36347750109218, + "grad_norm": 0.22799745202064514, + "learning_rate": 0.0006, + "loss": 3.7007250785827637, + "step": 2762 + }, + { + "epoch": 38.37745740498034, + "grad_norm": 0.23739562928676605, + "learning_rate": 0.0006, + "loss": 3.667130708694458, + "step": 2763 + }, + { + "epoch": 38.391437308868504, + "grad_norm": 0.23744846880435944, + "learning_rate": 0.0006, + "loss": 3.678760528564453, + "step": 2764 + }, + { + "epoch": 38.40541721275666, + "grad_norm": 0.2677105963230133, + "learning_rate": 0.0006, + "loss": 3.6829030513763428, + "step": 2765 + }, + { + "epoch": 38.419397116644824, + "grad_norm": 0.24490566551685333, + "learning_rate": 0.0006, + "loss": 3.707911491394043, + "step": 2766 + }, + { + "epoch": 38.43337702053299, + "grad_norm": 0.23477254807949066, + "learning_rate": 0.0006, + "loss": 3.680157423019409, + "step": 2767 + }, + { + "epoch": 38.44735692442114, + "grad_norm": 0.26611173152923584, + "learning_rate": 0.0006, + "loss": 3.660834550857544, + "step": 2768 + }, + { + "epoch": 38.46133682830931, + "grad_norm": 0.24505069851875305, + "learning_rate": 0.0006, + "loss": 3.696178436279297, + "step": 2769 + }, + { + "epoch": 38.47531673219746, + "grad_norm": 0.22933335602283478, + "learning_rate": 0.0006, + "loss": 3.6506235599517822, + "step": 2770 + }, + { + "epoch": 38.489296636085626, + "grad_norm": 0.23662401735782623, + "learning_rate": 0.0006, + "loss": 3.680819511413574, + "step": 2771 + }, + { + "epoch": 38.50327653997379, + "grad_norm": 0.27774113416671753, + "learning_rate": 0.0006, + "loss": 3.699146270751953, + "step": 2772 + }, + { + "epoch": 38.517256443861946, + "grad_norm": 0.2881671190261841, + "learning_rate": 0.0006, + "loss": 3.6509652137756348, + "step": 2773 + }, + { + "epoch": 38.53123634775011, + "grad_norm": 0.26570361852645874, + "learning_rate": 0.0006, + "loss": 3.6808385848999023, + "step": 2774 + }, + { + "epoch": 38.54521625163827, + "grad_norm": 0.23043136298656464, + "learning_rate": 0.0006, + "loss": 3.7082371711730957, + "step": 2775 + }, + { + "epoch": 38.55919615552643, + "grad_norm": 0.23730400204658508, + "learning_rate": 0.0006, + "loss": 3.653615951538086, + "step": 2776 + }, + { + "epoch": 38.57317605941459, + "grad_norm": 0.2332635223865509, + "learning_rate": 0.0006, + "loss": 3.6869683265686035, + "step": 2777 + }, + { + "epoch": 38.58715596330275, + "grad_norm": 0.22913676500320435, + "learning_rate": 0.0006, + "loss": 3.6998367309570312, + "step": 2778 + }, + { + "epoch": 38.60113586719091, + "grad_norm": 0.226078599691391, + "learning_rate": 0.0006, + "loss": 3.7051444053649902, + "step": 2779 + }, + { + "epoch": 38.615115771079076, + "grad_norm": 0.2336396723985672, + "learning_rate": 0.0006, + "loss": 3.6964943408966064, + "step": 2780 + }, + { + "epoch": 38.62909567496723, + "grad_norm": 0.23270335793495178, + "learning_rate": 0.0006, + "loss": 3.6741909980773926, + "step": 2781 + }, + { + "epoch": 38.643075578855395, + "grad_norm": 0.19324959814548492, + "learning_rate": 0.0006, + "loss": 3.64506196975708, + "step": 2782 + }, + { + "epoch": 38.65705548274356, + "grad_norm": 0.18551453948020935, + "learning_rate": 0.0006, + "loss": 3.6834206581115723, + "step": 2783 + }, + { + "epoch": 38.671035386631715, + "grad_norm": 0.17392469942569733, + "learning_rate": 0.0006, + "loss": 3.67282772064209, + "step": 2784 + }, + { + "epoch": 38.68501529051988, + "grad_norm": 0.19093742966651917, + "learning_rate": 0.0006, + "loss": 3.6648201942443848, + "step": 2785 + }, + { + "epoch": 38.69899519440804, + "grad_norm": 0.2124558985233307, + "learning_rate": 0.0006, + "loss": 3.712191581726074, + "step": 2786 + }, + { + "epoch": 38.7129750982962, + "grad_norm": 0.2220139354467392, + "learning_rate": 0.0006, + "loss": 3.675504207611084, + "step": 2787 + }, + { + "epoch": 38.72695500218436, + "grad_norm": 0.17677755653858185, + "learning_rate": 0.0006, + "loss": 3.6693475246429443, + "step": 2788 + }, + { + "epoch": 38.74093490607252, + "grad_norm": 0.2002430409193039, + "learning_rate": 0.0006, + "loss": 3.6906018257141113, + "step": 2789 + }, + { + "epoch": 38.75491480996068, + "grad_norm": 0.18844179809093475, + "learning_rate": 0.0006, + "loss": 3.660121440887451, + "step": 2790 + }, + { + "epoch": 38.768894713848844, + "grad_norm": 0.19319336116313934, + "learning_rate": 0.0006, + "loss": 3.6592631340026855, + "step": 2791 + }, + { + "epoch": 38.782874617737, + "grad_norm": 0.18624325096607208, + "learning_rate": 0.0006, + "loss": 3.6935300827026367, + "step": 2792 + }, + { + "epoch": 38.796854521625164, + "grad_norm": 0.2049761712551117, + "learning_rate": 0.0006, + "loss": 3.6702702045440674, + "step": 2793 + }, + { + "epoch": 38.81083442551333, + "grad_norm": 0.2030584216117859, + "learning_rate": 0.0006, + "loss": 3.714639663696289, + "step": 2794 + }, + { + "epoch": 38.824814329401484, + "grad_norm": 0.18989548087120056, + "learning_rate": 0.0006, + "loss": 3.678253412246704, + "step": 2795 + }, + { + "epoch": 38.83879423328965, + "grad_norm": 0.19944126904010773, + "learning_rate": 0.0006, + "loss": 3.648367166519165, + "step": 2796 + }, + { + "epoch": 38.8527741371778, + "grad_norm": 0.2062688171863556, + "learning_rate": 0.0006, + "loss": 3.701514720916748, + "step": 2797 + }, + { + "epoch": 38.86675404106597, + "grad_norm": 0.21475110948085785, + "learning_rate": 0.0006, + "loss": 3.6725993156433105, + "step": 2798 + }, + { + "epoch": 38.88073394495413, + "grad_norm": 0.2240881323814392, + "learning_rate": 0.0006, + "loss": 3.6944539546966553, + "step": 2799 + }, + { + "epoch": 38.89471384884229, + "grad_norm": 0.23074312508106232, + "learning_rate": 0.0006, + "loss": 3.747671365737915, + "step": 2800 + }, + { + "epoch": 38.90869375273045, + "grad_norm": 0.2447938323020935, + "learning_rate": 0.0006, + "loss": 3.6856026649475098, + "step": 2801 + }, + { + "epoch": 38.92267365661861, + "grad_norm": 0.2136487364768982, + "learning_rate": 0.0006, + "loss": 3.710397720336914, + "step": 2802 + }, + { + "epoch": 38.93665356050677, + "grad_norm": 0.21676769852638245, + "learning_rate": 0.0006, + "loss": 3.6911189556121826, + "step": 2803 + }, + { + "epoch": 38.95063346439493, + "grad_norm": 0.2226478010416031, + "learning_rate": 0.0006, + "loss": 3.6902880668640137, + "step": 2804 + }, + { + "epoch": 38.964613368283096, + "grad_norm": 0.2071496546268463, + "learning_rate": 0.0006, + "loss": 3.6831371784210205, + "step": 2805 + }, + { + "epoch": 38.97859327217125, + "grad_norm": 0.19568349421024323, + "learning_rate": 0.0006, + "loss": 3.6897640228271484, + "step": 2806 + }, + { + "epoch": 38.992573176059416, + "grad_norm": 0.19067516922950745, + "learning_rate": 0.0006, + "loss": 3.7096242904663086, + "step": 2807 + }, + { + "epoch": 39.0, + "grad_norm": 0.22872281074523926, + "learning_rate": 0.0006, + "loss": 3.689342975616455, + "step": 2808 + }, + { + "epoch": 39.0, + "eval_loss": 4.001968860626221, + "eval_runtime": 44.8452, + "eval_samples_per_second": 54.454, + "eval_steps_per_second": 3.412, + "step": 2808 + }, + { + "epoch": 39.01397990388816, + "grad_norm": 0.21685896813869476, + "learning_rate": 0.0006, + "loss": 3.638145923614502, + "step": 2809 + }, + { + "epoch": 39.02795980777632, + "grad_norm": 0.20085014402866364, + "learning_rate": 0.0006, + "loss": 3.626654624938965, + "step": 2810 + }, + { + "epoch": 39.04193971166448, + "grad_norm": 0.20615799725055695, + "learning_rate": 0.0006, + "loss": 3.6280088424682617, + "step": 2811 + }, + { + "epoch": 39.05591961555265, + "grad_norm": 0.23471905291080475, + "learning_rate": 0.0006, + "loss": 3.6444239616394043, + "step": 2812 + }, + { + "epoch": 39.0698995194408, + "grad_norm": 0.22207780182361603, + "learning_rate": 0.0006, + "loss": 3.6276912689208984, + "step": 2813 + }, + { + "epoch": 39.083879423328966, + "grad_norm": 0.23354043066501617, + "learning_rate": 0.0006, + "loss": 3.7007269859313965, + "step": 2814 + }, + { + "epoch": 39.09785932721712, + "grad_norm": 0.22520557045936584, + "learning_rate": 0.0006, + "loss": 3.6487162113189697, + "step": 2815 + }, + { + "epoch": 39.111839231105286, + "grad_norm": 0.20489682257175446, + "learning_rate": 0.0006, + "loss": 3.6523492336273193, + "step": 2816 + }, + { + "epoch": 39.12581913499345, + "grad_norm": 0.20979270339012146, + "learning_rate": 0.0006, + "loss": 3.6574230194091797, + "step": 2817 + }, + { + "epoch": 39.139799038881605, + "grad_norm": 0.2256486713886261, + "learning_rate": 0.0006, + "loss": 3.6499013900756836, + "step": 2818 + }, + { + "epoch": 39.15377894276977, + "grad_norm": 0.1960437297821045, + "learning_rate": 0.0006, + "loss": 3.6780271530151367, + "step": 2819 + }, + { + "epoch": 39.16775884665793, + "grad_norm": 0.19279663264751434, + "learning_rate": 0.0006, + "loss": 3.623819589614868, + "step": 2820 + }, + { + "epoch": 39.18173875054609, + "grad_norm": 0.19151495397090912, + "learning_rate": 0.0006, + "loss": 3.612868070602417, + "step": 2821 + }, + { + "epoch": 39.19571865443425, + "grad_norm": 0.19399534165859222, + "learning_rate": 0.0006, + "loss": 3.6518092155456543, + "step": 2822 + }, + { + "epoch": 39.20969855832241, + "grad_norm": 0.21723251044750214, + "learning_rate": 0.0006, + "loss": 3.681509494781494, + "step": 2823 + }, + { + "epoch": 39.22367846221057, + "grad_norm": 0.2487006038427353, + "learning_rate": 0.0006, + "loss": 3.6569719314575195, + "step": 2824 + }, + { + "epoch": 39.237658366098735, + "grad_norm": 0.2640652656555176, + "learning_rate": 0.0006, + "loss": 3.680734634399414, + "step": 2825 + }, + { + "epoch": 39.25163826998689, + "grad_norm": 0.21862825751304626, + "learning_rate": 0.0006, + "loss": 3.6741840839385986, + "step": 2826 + }, + { + "epoch": 39.265618173875055, + "grad_norm": 0.19515705108642578, + "learning_rate": 0.0006, + "loss": 3.657750129699707, + "step": 2827 + }, + { + "epoch": 39.27959807776322, + "grad_norm": 0.1971602737903595, + "learning_rate": 0.0006, + "loss": 3.6524124145507812, + "step": 2828 + }, + { + "epoch": 39.293577981651374, + "grad_norm": 0.20822174847126007, + "learning_rate": 0.0006, + "loss": 3.69527006149292, + "step": 2829 + }, + { + "epoch": 39.30755788553954, + "grad_norm": 0.2566370368003845, + "learning_rate": 0.0006, + "loss": 3.6770880222320557, + "step": 2830 + }, + { + "epoch": 39.3215377894277, + "grad_norm": 0.24984225630760193, + "learning_rate": 0.0006, + "loss": 3.6733901500701904, + "step": 2831 + }, + { + "epoch": 39.33551769331586, + "grad_norm": 0.233322873711586, + "learning_rate": 0.0006, + "loss": 3.645519256591797, + "step": 2832 + }, + { + "epoch": 39.34949759720402, + "grad_norm": 0.21584749221801758, + "learning_rate": 0.0006, + "loss": 3.6211934089660645, + "step": 2833 + }, + { + "epoch": 39.36347750109218, + "grad_norm": 0.2188950479030609, + "learning_rate": 0.0006, + "loss": 3.6434195041656494, + "step": 2834 + }, + { + "epoch": 39.37745740498034, + "grad_norm": 0.21998439729213715, + "learning_rate": 0.0006, + "loss": 3.6720595359802246, + "step": 2835 + }, + { + "epoch": 39.391437308868504, + "grad_norm": 0.2459399700164795, + "learning_rate": 0.0006, + "loss": 3.667083740234375, + "step": 2836 + }, + { + "epoch": 39.40541721275666, + "grad_norm": 0.23579223453998566, + "learning_rate": 0.0006, + "loss": 3.665452480316162, + "step": 2837 + }, + { + "epoch": 39.419397116644824, + "grad_norm": 0.19401362538337708, + "learning_rate": 0.0006, + "loss": 3.684218406677246, + "step": 2838 + }, + { + "epoch": 39.43337702053299, + "grad_norm": 0.1894487738609314, + "learning_rate": 0.0006, + "loss": 3.670626163482666, + "step": 2839 + }, + { + "epoch": 39.44735692442114, + "grad_norm": 0.1936904937028885, + "learning_rate": 0.0006, + "loss": 3.6367318630218506, + "step": 2840 + }, + { + "epoch": 39.46133682830931, + "grad_norm": 0.1867629438638687, + "learning_rate": 0.0006, + "loss": 3.670098304748535, + "step": 2841 + }, + { + "epoch": 39.47531673219746, + "grad_norm": 0.18849903345108032, + "learning_rate": 0.0006, + "loss": 3.6877760887145996, + "step": 2842 + }, + { + "epoch": 39.489296636085626, + "grad_norm": 0.18247179687023163, + "learning_rate": 0.0006, + "loss": 3.7132980823516846, + "step": 2843 + }, + { + "epoch": 39.50327653997379, + "grad_norm": 0.19206349551677704, + "learning_rate": 0.0006, + "loss": 3.630319595336914, + "step": 2844 + }, + { + "epoch": 39.517256443861946, + "grad_norm": 0.21730613708496094, + "learning_rate": 0.0006, + "loss": 3.6818761825561523, + "step": 2845 + }, + { + "epoch": 39.53123634775011, + "grad_norm": 0.22482407093048096, + "learning_rate": 0.0006, + "loss": 3.6385269165039062, + "step": 2846 + }, + { + "epoch": 39.54521625163827, + "grad_norm": 0.24560105800628662, + "learning_rate": 0.0006, + "loss": 3.660067558288574, + "step": 2847 + }, + { + "epoch": 39.55919615552643, + "grad_norm": 0.23720617592334747, + "learning_rate": 0.0006, + "loss": 3.6811556816101074, + "step": 2848 + }, + { + "epoch": 39.57317605941459, + "grad_norm": 0.18990741670131683, + "learning_rate": 0.0006, + "loss": 3.6733779907226562, + "step": 2849 + }, + { + "epoch": 39.58715596330275, + "grad_norm": 0.2135438323020935, + "learning_rate": 0.0006, + "loss": 3.662020683288574, + "step": 2850 + }, + { + "epoch": 39.60113586719091, + "grad_norm": 0.24248908460140228, + "learning_rate": 0.0006, + "loss": 3.6794259548187256, + "step": 2851 + }, + { + "epoch": 39.615115771079076, + "grad_norm": 0.23115725815296173, + "learning_rate": 0.0006, + "loss": 3.6732406616210938, + "step": 2852 + }, + { + "epoch": 39.62909567496723, + "grad_norm": 0.23760166764259338, + "learning_rate": 0.0006, + "loss": 3.7062699794769287, + "step": 2853 + }, + { + "epoch": 39.643075578855395, + "grad_norm": 0.24670571088790894, + "learning_rate": 0.0006, + "loss": 3.692385673522949, + "step": 2854 + }, + { + "epoch": 39.65705548274356, + "grad_norm": 0.20983918011188507, + "learning_rate": 0.0006, + "loss": 3.691361427307129, + "step": 2855 + }, + { + "epoch": 39.671035386631715, + "grad_norm": 0.1915138065814972, + "learning_rate": 0.0006, + "loss": 3.6985888481140137, + "step": 2856 + }, + { + "epoch": 39.68501529051988, + "grad_norm": 0.23440803587436676, + "learning_rate": 0.0006, + "loss": 3.6484973430633545, + "step": 2857 + }, + { + "epoch": 39.69899519440804, + "grad_norm": 0.2483232468366623, + "learning_rate": 0.0006, + "loss": 3.6861510276794434, + "step": 2858 + }, + { + "epoch": 39.7129750982962, + "grad_norm": 0.21373426914215088, + "learning_rate": 0.0006, + "loss": 3.6528866291046143, + "step": 2859 + }, + { + "epoch": 39.72695500218436, + "grad_norm": 0.19849136471748352, + "learning_rate": 0.0006, + "loss": 3.6435961723327637, + "step": 2860 + }, + { + "epoch": 39.74093490607252, + "grad_norm": 0.21748292446136475, + "learning_rate": 0.0006, + "loss": 3.678481101989746, + "step": 2861 + }, + { + "epoch": 39.75491480996068, + "grad_norm": 0.22488188743591309, + "learning_rate": 0.0006, + "loss": 3.711717128753662, + "step": 2862 + }, + { + "epoch": 39.768894713848844, + "grad_norm": 0.22251835465431213, + "learning_rate": 0.0006, + "loss": 3.690516471862793, + "step": 2863 + }, + { + "epoch": 39.782874617737, + "grad_norm": 0.22101449966430664, + "learning_rate": 0.0006, + "loss": 3.6679611206054688, + "step": 2864 + }, + { + "epoch": 39.796854521625164, + "grad_norm": 0.20345936715602875, + "learning_rate": 0.0006, + "loss": 3.6935629844665527, + "step": 2865 + }, + { + "epoch": 39.81083442551333, + "grad_norm": 0.23772259056568146, + "learning_rate": 0.0006, + "loss": 3.697561264038086, + "step": 2866 + }, + { + "epoch": 39.824814329401484, + "grad_norm": 0.24446387588977814, + "learning_rate": 0.0006, + "loss": 3.696723461151123, + "step": 2867 + }, + { + "epoch": 39.83879423328965, + "grad_norm": 0.2365843653678894, + "learning_rate": 0.0006, + "loss": 3.6511402130126953, + "step": 2868 + }, + { + "epoch": 39.8527741371778, + "grad_norm": 0.25421974062919617, + "learning_rate": 0.0006, + "loss": 3.68449068069458, + "step": 2869 + }, + { + "epoch": 39.86675404106597, + "grad_norm": 0.2504308819770813, + "learning_rate": 0.0006, + "loss": 3.685884952545166, + "step": 2870 + }, + { + "epoch": 39.88073394495413, + "grad_norm": 0.24695490300655365, + "learning_rate": 0.0006, + "loss": 3.6667490005493164, + "step": 2871 + }, + { + "epoch": 39.89471384884229, + "grad_norm": 0.2633236348628998, + "learning_rate": 0.0006, + "loss": 3.6828866004943848, + "step": 2872 + }, + { + "epoch": 39.90869375273045, + "grad_norm": 0.2421039491891861, + "learning_rate": 0.0006, + "loss": 3.681187391281128, + "step": 2873 + }, + { + "epoch": 39.92267365661861, + "grad_norm": 0.21202950179576874, + "learning_rate": 0.0006, + "loss": 3.679069995880127, + "step": 2874 + }, + { + "epoch": 39.93665356050677, + "grad_norm": 0.2344917505979538, + "learning_rate": 0.0006, + "loss": 3.6810007095336914, + "step": 2875 + }, + { + "epoch": 39.95063346439493, + "grad_norm": 0.2115124762058258, + "learning_rate": 0.0006, + "loss": 3.653219223022461, + "step": 2876 + }, + { + "epoch": 39.964613368283096, + "grad_norm": 0.21588370203971863, + "learning_rate": 0.0006, + "loss": 3.6972861289978027, + "step": 2877 + }, + { + "epoch": 39.97859327217125, + "grad_norm": 0.26215407252311707, + "learning_rate": 0.0006, + "loss": 3.6796963214874268, + "step": 2878 + }, + { + "epoch": 39.992573176059416, + "grad_norm": 0.23645395040512085, + "learning_rate": 0.0006, + "loss": 3.696091413497925, + "step": 2879 + }, + { + "epoch": 40.0, + "grad_norm": 0.21817512810230255, + "learning_rate": 0.0006, + "loss": 3.668196678161621, + "step": 2880 + }, + { + "epoch": 40.0, + "eval_loss": 3.9873862266540527, + "eval_runtime": 44.1149, + "eval_samples_per_second": 55.355, + "eval_steps_per_second": 3.468, + "step": 2880 + }, + { + "epoch": 40.01397990388816, + "grad_norm": 0.2031477391719818, + "learning_rate": 0.0006, + "loss": 3.6494622230529785, + "step": 2881 + }, + { + "epoch": 40.02795980777632, + "grad_norm": 0.2223939746618271, + "learning_rate": 0.0006, + "loss": 3.6587047576904297, + "step": 2882 + }, + { + "epoch": 40.04193971166448, + "grad_norm": 0.21485820412635803, + "learning_rate": 0.0006, + "loss": 3.62253737449646, + "step": 2883 + }, + { + "epoch": 40.05591961555265, + "grad_norm": 0.23364055156707764, + "learning_rate": 0.0006, + "loss": 3.619035005569458, + "step": 2884 + }, + { + "epoch": 40.0698995194408, + "grad_norm": 0.23141583800315857, + "learning_rate": 0.0006, + "loss": 3.6650376319885254, + "step": 2885 + }, + { + "epoch": 40.083879423328966, + "grad_norm": 0.2131720930337906, + "learning_rate": 0.0006, + "loss": 3.646428108215332, + "step": 2886 + }, + { + "epoch": 40.09785932721712, + "grad_norm": 0.2337951511144638, + "learning_rate": 0.0006, + "loss": 3.6284823417663574, + "step": 2887 + }, + { + "epoch": 40.111839231105286, + "grad_norm": 0.2790892720222473, + "learning_rate": 0.0006, + "loss": 3.6558361053466797, + "step": 2888 + }, + { + "epoch": 40.12581913499345, + "grad_norm": 0.28444936871528625, + "learning_rate": 0.0006, + "loss": 3.644402503967285, + "step": 2889 + }, + { + "epoch": 40.139799038881605, + "grad_norm": 0.2550848126411438, + "learning_rate": 0.0006, + "loss": 3.671562671661377, + "step": 2890 + }, + { + "epoch": 40.15377894276977, + "grad_norm": 0.22960248589515686, + "learning_rate": 0.0006, + "loss": 3.6998534202575684, + "step": 2891 + }, + { + "epoch": 40.16775884665793, + "grad_norm": 0.23920369148254395, + "learning_rate": 0.0006, + "loss": 3.653874635696411, + "step": 2892 + }, + { + "epoch": 40.18173875054609, + "grad_norm": 0.24586012959480286, + "learning_rate": 0.0006, + "loss": 3.620765209197998, + "step": 2893 + }, + { + "epoch": 40.19571865443425, + "grad_norm": 0.26394739747047424, + "learning_rate": 0.0006, + "loss": 3.638437509536743, + "step": 2894 + }, + { + "epoch": 40.20969855832241, + "grad_norm": 0.27566927671432495, + "learning_rate": 0.0006, + "loss": 3.6684799194335938, + "step": 2895 + }, + { + "epoch": 40.22367846221057, + "grad_norm": 0.25469011068344116, + "learning_rate": 0.0006, + "loss": 3.6113009452819824, + "step": 2896 + }, + { + "epoch": 40.237658366098735, + "grad_norm": 0.2403056025505066, + "learning_rate": 0.0006, + "loss": 3.650771141052246, + "step": 2897 + }, + { + "epoch": 40.25163826998689, + "grad_norm": 0.262423038482666, + "learning_rate": 0.0006, + "loss": 3.635892391204834, + "step": 2898 + }, + { + "epoch": 40.265618173875055, + "grad_norm": 0.23696045577526093, + "learning_rate": 0.0006, + "loss": 3.6396005153656006, + "step": 2899 + }, + { + "epoch": 40.27959807776322, + "grad_norm": 0.208719402551651, + "learning_rate": 0.0006, + "loss": 3.6681132316589355, + "step": 2900 + }, + { + "epoch": 40.293577981651374, + "grad_norm": 0.21554480493068695, + "learning_rate": 0.0006, + "loss": 3.6417553424835205, + "step": 2901 + }, + { + "epoch": 40.30755788553954, + "grad_norm": 0.2290734499692917, + "learning_rate": 0.0006, + "loss": 3.6659927368164062, + "step": 2902 + }, + { + "epoch": 40.3215377894277, + "grad_norm": 0.20803220570087433, + "learning_rate": 0.0006, + "loss": 3.6443324089050293, + "step": 2903 + }, + { + "epoch": 40.33551769331586, + "grad_norm": 0.20334568619728088, + "learning_rate": 0.0006, + "loss": 3.6824207305908203, + "step": 2904 + }, + { + "epoch": 40.34949759720402, + "grad_norm": 0.2000233381986618, + "learning_rate": 0.0006, + "loss": 3.644399642944336, + "step": 2905 + }, + { + "epoch": 40.36347750109218, + "grad_norm": 0.21990752220153809, + "learning_rate": 0.0006, + "loss": 3.668160915374756, + "step": 2906 + }, + { + "epoch": 40.37745740498034, + "grad_norm": 0.24385249614715576, + "learning_rate": 0.0006, + "loss": 3.634392261505127, + "step": 2907 + }, + { + "epoch": 40.391437308868504, + "grad_norm": 0.21272684633731842, + "learning_rate": 0.0006, + "loss": 3.6504263877868652, + "step": 2908 + }, + { + "epoch": 40.40541721275666, + "grad_norm": 0.2003277838230133, + "learning_rate": 0.0006, + "loss": 3.6707763671875, + "step": 2909 + }, + { + "epoch": 40.419397116644824, + "grad_norm": 0.2086087465286255, + "learning_rate": 0.0006, + "loss": 3.66988468170166, + "step": 2910 + }, + { + "epoch": 40.43337702053299, + "grad_norm": 0.19706451892852783, + "learning_rate": 0.0006, + "loss": 3.662794828414917, + "step": 2911 + }, + { + "epoch": 40.44735692442114, + "grad_norm": 0.18795762956142426, + "learning_rate": 0.0006, + "loss": 3.628016233444214, + "step": 2912 + }, + { + "epoch": 40.46133682830931, + "grad_norm": 0.19931825995445251, + "learning_rate": 0.0006, + "loss": 3.6791915893554688, + "step": 2913 + }, + { + "epoch": 40.47531673219746, + "grad_norm": 0.21295934915542603, + "learning_rate": 0.0006, + "loss": 3.688632011413574, + "step": 2914 + }, + { + "epoch": 40.489296636085626, + "grad_norm": 0.2104834020137787, + "learning_rate": 0.0006, + "loss": 3.6270499229431152, + "step": 2915 + }, + { + "epoch": 40.50327653997379, + "grad_norm": 0.19942966103553772, + "learning_rate": 0.0006, + "loss": 3.651721477508545, + "step": 2916 + }, + { + "epoch": 40.517256443861946, + "grad_norm": 0.18890425562858582, + "learning_rate": 0.0006, + "loss": 3.6778619289398193, + "step": 2917 + }, + { + "epoch": 40.53123634775011, + "grad_norm": 0.19861607253551483, + "learning_rate": 0.0006, + "loss": 3.658832550048828, + "step": 2918 + }, + { + "epoch": 40.54521625163827, + "grad_norm": 0.21553616225719452, + "learning_rate": 0.0006, + "loss": 3.6566901206970215, + "step": 2919 + }, + { + "epoch": 40.55919615552643, + "grad_norm": 0.21698440611362457, + "learning_rate": 0.0006, + "loss": 3.6795129776000977, + "step": 2920 + }, + { + "epoch": 40.57317605941459, + "grad_norm": 0.20310913026332855, + "learning_rate": 0.0006, + "loss": 3.645244598388672, + "step": 2921 + }, + { + "epoch": 40.58715596330275, + "grad_norm": 0.2075812816619873, + "learning_rate": 0.0006, + "loss": 3.678452491760254, + "step": 2922 + }, + { + "epoch": 40.60113586719091, + "grad_norm": 0.20606619119644165, + "learning_rate": 0.0006, + "loss": 3.6150245666503906, + "step": 2923 + }, + { + "epoch": 40.615115771079076, + "grad_norm": 0.21511296927928925, + "learning_rate": 0.0006, + "loss": 3.6682112216949463, + "step": 2924 + }, + { + "epoch": 40.62909567496723, + "grad_norm": 0.19771839678287506, + "learning_rate": 0.0006, + "loss": 3.6639556884765625, + "step": 2925 + }, + { + "epoch": 40.643075578855395, + "grad_norm": 0.20419852435588837, + "learning_rate": 0.0006, + "loss": 3.664982318878174, + "step": 2926 + }, + { + "epoch": 40.65705548274356, + "grad_norm": 0.20119430124759674, + "learning_rate": 0.0006, + "loss": 3.661625385284424, + "step": 2927 + }, + { + "epoch": 40.671035386631715, + "grad_norm": 0.21590501070022583, + "learning_rate": 0.0006, + "loss": 3.673719644546509, + "step": 2928 + }, + { + "epoch": 40.68501529051988, + "grad_norm": 0.19165395200252533, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 2929 + }, + { + "epoch": 40.69899519440804, + "grad_norm": 0.19620473682880402, + "learning_rate": 0.0006, + "loss": 3.7008142471313477, + "step": 2930 + }, + { + "epoch": 40.7129750982962, + "grad_norm": 0.23002777993679047, + "learning_rate": 0.0006, + "loss": 3.654296875, + "step": 2931 + }, + { + "epoch": 40.72695500218436, + "grad_norm": 0.22007468342781067, + "learning_rate": 0.0006, + "loss": 3.688178539276123, + "step": 2932 + }, + { + "epoch": 40.74093490607252, + "grad_norm": 0.2030077874660492, + "learning_rate": 0.0006, + "loss": 3.6514129638671875, + "step": 2933 + }, + { + "epoch": 40.75491480996068, + "grad_norm": 0.20960700511932373, + "learning_rate": 0.0006, + "loss": 3.651864528656006, + "step": 2934 + }, + { + "epoch": 40.768894713848844, + "grad_norm": 0.2132565975189209, + "learning_rate": 0.0006, + "loss": 3.680915355682373, + "step": 2935 + }, + { + "epoch": 40.782874617737, + "grad_norm": 0.2411353588104248, + "learning_rate": 0.0006, + "loss": 3.647167682647705, + "step": 2936 + }, + { + "epoch": 40.796854521625164, + "grad_norm": 0.24621541798114777, + "learning_rate": 0.0006, + "loss": 3.6784768104553223, + "step": 2937 + }, + { + "epoch": 40.81083442551333, + "grad_norm": 0.23324407637119293, + "learning_rate": 0.0006, + "loss": 3.6855263710021973, + "step": 2938 + }, + { + "epoch": 40.824814329401484, + "grad_norm": 0.21749550104141235, + "learning_rate": 0.0006, + "loss": 3.672682285308838, + "step": 2939 + }, + { + "epoch": 40.83879423328965, + "grad_norm": 0.1957911103963852, + "learning_rate": 0.0006, + "loss": 3.635678291320801, + "step": 2940 + }, + { + "epoch": 40.8527741371778, + "grad_norm": 0.21262411773204803, + "learning_rate": 0.0006, + "loss": 3.6829824447631836, + "step": 2941 + }, + { + "epoch": 40.86675404106597, + "grad_norm": 0.19940680265426636, + "learning_rate": 0.0006, + "loss": 3.720932960510254, + "step": 2942 + }, + { + "epoch": 40.88073394495413, + "grad_norm": 0.1964999884366989, + "learning_rate": 0.0006, + "loss": 3.678405284881592, + "step": 2943 + }, + { + "epoch": 40.89471384884229, + "grad_norm": 0.21459022164344788, + "learning_rate": 0.0006, + "loss": 3.6788480281829834, + "step": 2944 + }, + { + "epoch": 40.90869375273045, + "grad_norm": 0.2251381129026413, + "learning_rate": 0.0006, + "loss": 3.679459571838379, + "step": 2945 + }, + { + "epoch": 40.92267365661861, + "grad_norm": 0.19951461255550385, + "learning_rate": 0.0006, + "loss": 3.6610841751098633, + "step": 2946 + }, + { + "epoch": 40.93665356050677, + "grad_norm": 0.2057943493127823, + "learning_rate": 0.0006, + "loss": 3.649491786956787, + "step": 2947 + }, + { + "epoch": 40.95063346439493, + "grad_norm": 0.19601917266845703, + "learning_rate": 0.0006, + "loss": 3.724552631378174, + "step": 2948 + }, + { + "epoch": 40.964613368283096, + "grad_norm": 0.20982769131660461, + "learning_rate": 0.0006, + "loss": 3.648465394973755, + "step": 2949 + }, + { + "epoch": 40.97859327217125, + "grad_norm": 0.21103954315185547, + "learning_rate": 0.0006, + "loss": 3.692239999771118, + "step": 2950 + }, + { + "epoch": 40.992573176059416, + "grad_norm": 0.2007385492324829, + "learning_rate": 0.0006, + "loss": 3.659999132156372, + "step": 2951 + }, + { + "epoch": 41.0, + "grad_norm": 0.22357431054115295, + "learning_rate": 0.0006, + "loss": 3.6461124420166016, + "step": 2952 + }, + { + "epoch": 41.0, + "eval_loss": 3.9891226291656494, + "eval_runtime": 44.65, + "eval_samples_per_second": 54.692, + "eval_steps_per_second": 3.427, + "step": 2952 + }, + { + "epoch": 41.01397990388816, + "grad_norm": 0.20387817919254303, + "learning_rate": 0.0006, + "loss": 3.643923282623291, + "step": 2953 + }, + { + "epoch": 41.02795980777632, + "grad_norm": 0.1988423764705658, + "learning_rate": 0.0006, + "loss": 3.6152570247650146, + "step": 2954 + }, + { + "epoch": 41.04193971166448, + "grad_norm": 0.19998641312122345, + "learning_rate": 0.0006, + "loss": 3.667520523071289, + "step": 2955 + }, + { + "epoch": 41.05591961555265, + "grad_norm": 0.18347714841365814, + "learning_rate": 0.0006, + "loss": 3.6289002895355225, + "step": 2956 + }, + { + "epoch": 41.0698995194408, + "grad_norm": 0.21235640347003937, + "learning_rate": 0.0006, + "loss": 3.6422951221466064, + "step": 2957 + }, + { + "epoch": 41.083879423328966, + "grad_norm": 0.1990172415971756, + "learning_rate": 0.0006, + "loss": 3.625697135925293, + "step": 2958 + }, + { + "epoch": 41.09785932721712, + "grad_norm": 0.18313643336296082, + "learning_rate": 0.0006, + "loss": 3.672356605529785, + "step": 2959 + }, + { + "epoch": 41.111839231105286, + "grad_norm": 0.17956401407718658, + "learning_rate": 0.0006, + "loss": 3.6093602180480957, + "step": 2960 + }, + { + "epoch": 41.12581913499345, + "grad_norm": 0.19487550854682922, + "learning_rate": 0.0006, + "loss": 3.6004128456115723, + "step": 2961 + }, + { + "epoch": 41.139799038881605, + "grad_norm": 0.2117495834827423, + "learning_rate": 0.0006, + "loss": 3.6468565464019775, + "step": 2962 + }, + { + "epoch": 41.15377894276977, + "grad_norm": 0.20602662861347198, + "learning_rate": 0.0006, + "loss": 3.6299140453338623, + "step": 2963 + }, + { + "epoch": 41.16775884665793, + "grad_norm": 0.21859265863895416, + "learning_rate": 0.0006, + "loss": 3.630052328109741, + "step": 2964 + }, + { + "epoch": 41.18173875054609, + "grad_norm": 0.22684140503406525, + "learning_rate": 0.0006, + "loss": 3.5995004177093506, + "step": 2965 + }, + { + "epoch": 41.19571865443425, + "grad_norm": 0.25682681798934937, + "learning_rate": 0.0006, + "loss": 3.613131523132324, + "step": 2966 + }, + { + "epoch": 41.20969855832241, + "grad_norm": 0.2508181631565094, + "learning_rate": 0.0006, + "loss": 3.644259452819824, + "step": 2967 + }, + { + "epoch": 41.22367846221057, + "grad_norm": 0.24200427532196045, + "learning_rate": 0.0006, + "loss": 3.6651816368103027, + "step": 2968 + }, + { + "epoch": 41.237658366098735, + "grad_norm": 0.21753790974617004, + "learning_rate": 0.0006, + "loss": 3.686199188232422, + "step": 2969 + }, + { + "epoch": 41.25163826998689, + "grad_norm": 0.19811955094337463, + "learning_rate": 0.0006, + "loss": 3.63014817237854, + "step": 2970 + }, + { + "epoch": 41.265618173875055, + "grad_norm": 0.19316327571868896, + "learning_rate": 0.0006, + "loss": 3.6532740592956543, + "step": 2971 + }, + { + "epoch": 41.27959807776322, + "grad_norm": 0.21440976858139038, + "learning_rate": 0.0006, + "loss": 3.6546850204467773, + "step": 2972 + }, + { + "epoch": 41.293577981651374, + "grad_norm": 0.2732681334018707, + "learning_rate": 0.0006, + "loss": 3.6135244369506836, + "step": 2973 + }, + { + "epoch": 41.30755788553954, + "grad_norm": 0.2588619589805603, + "learning_rate": 0.0006, + "loss": 3.657963275909424, + "step": 2974 + }, + { + "epoch": 41.3215377894277, + "grad_norm": 0.20054970681667328, + "learning_rate": 0.0006, + "loss": 3.6391024589538574, + "step": 2975 + }, + { + "epoch": 41.33551769331586, + "grad_norm": 0.23703549802303314, + "learning_rate": 0.0006, + "loss": 3.6609978675842285, + "step": 2976 + }, + { + "epoch": 41.34949759720402, + "grad_norm": 0.24222144484519958, + "learning_rate": 0.0006, + "loss": 3.659271478652954, + "step": 2977 + }, + { + "epoch": 41.36347750109218, + "grad_norm": 0.2228497713804245, + "learning_rate": 0.0006, + "loss": 3.607358455657959, + "step": 2978 + }, + { + "epoch": 41.37745740498034, + "grad_norm": 0.22105038166046143, + "learning_rate": 0.0006, + "loss": 3.64198899269104, + "step": 2979 + }, + { + "epoch": 41.391437308868504, + "grad_norm": 0.23753555119037628, + "learning_rate": 0.0006, + "loss": 3.63116455078125, + "step": 2980 + }, + { + "epoch": 41.40541721275666, + "grad_norm": 0.24492689967155457, + "learning_rate": 0.0006, + "loss": 3.636122465133667, + "step": 2981 + }, + { + "epoch": 41.419397116644824, + "grad_norm": 0.20610782504081726, + "learning_rate": 0.0006, + "loss": 3.656487226486206, + "step": 2982 + }, + { + "epoch": 41.43337702053299, + "grad_norm": 0.20781412720680237, + "learning_rate": 0.0006, + "loss": 3.669196605682373, + "step": 2983 + }, + { + "epoch": 41.44735692442114, + "grad_norm": 0.23892036080360413, + "learning_rate": 0.0006, + "loss": 3.6345765590667725, + "step": 2984 + }, + { + "epoch": 41.46133682830931, + "grad_norm": 0.2477712333202362, + "learning_rate": 0.0006, + "loss": 3.6599812507629395, + "step": 2985 + }, + { + "epoch": 41.47531673219746, + "grad_norm": 0.25314703583717346, + "learning_rate": 0.0006, + "loss": 3.6737258434295654, + "step": 2986 + }, + { + "epoch": 41.489296636085626, + "grad_norm": 0.2386070191860199, + "learning_rate": 0.0006, + "loss": 3.666586399078369, + "step": 2987 + }, + { + "epoch": 41.50327653997379, + "grad_norm": 0.27259722352027893, + "learning_rate": 0.0006, + "loss": 3.658761501312256, + "step": 2988 + }, + { + "epoch": 41.517256443861946, + "grad_norm": 0.3312860429286957, + "learning_rate": 0.0006, + "loss": 3.629699230194092, + "step": 2989 + }, + { + "epoch": 41.53123634775011, + "grad_norm": 0.3321581780910492, + "learning_rate": 0.0006, + "loss": 3.66628360748291, + "step": 2990 + }, + { + "epoch": 41.54521625163827, + "grad_norm": 0.2850016951560974, + "learning_rate": 0.0006, + "loss": 3.690005302429199, + "step": 2991 + }, + { + "epoch": 41.55919615552643, + "grad_norm": 0.2544100880622864, + "learning_rate": 0.0006, + "loss": 3.6554486751556396, + "step": 2992 + }, + { + "epoch": 41.57317605941459, + "grad_norm": 0.28541380167007446, + "learning_rate": 0.0006, + "loss": 3.672952175140381, + "step": 2993 + }, + { + "epoch": 41.58715596330275, + "grad_norm": 0.2909766435623169, + "learning_rate": 0.0006, + "loss": 3.6649627685546875, + "step": 2994 + }, + { + "epoch": 41.60113586719091, + "grad_norm": 0.26089969277381897, + "learning_rate": 0.0006, + "loss": 3.6512341499328613, + "step": 2995 + }, + { + "epoch": 41.615115771079076, + "grad_norm": 0.21815894544124603, + "learning_rate": 0.0006, + "loss": 3.612436056137085, + "step": 2996 + }, + { + "epoch": 41.62909567496723, + "grad_norm": 0.20712246000766754, + "learning_rate": 0.0006, + "loss": 3.6482479572296143, + "step": 2997 + }, + { + "epoch": 41.643075578855395, + "grad_norm": 0.23280103504657745, + "learning_rate": 0.0006, + "loss": 3.6648616790771484, + "step": 2998 + }, + { + "epoch": 41.65705548274356, + "grad_norm": 0.21623823046684265, + "learning_rate": 0.0006, + "loss": 3.6714487075805664, + "step": 2999 + }, + { + "epoch": 41.671035386631715, + "grad_norm": 0.2081632912158966, + "learning_rate": 0.0006, + "loss": 3.693014144897461, + "step": 3000 + }, + { + "epoch": 41.68501529051988, + "grad_norm": 0.23109425604343414, + "learning_rate": 0.0006, + "loss": 3.667262554168701, + "step": 3001 + }, + { + "epoch": 41.69899519440804, + "grad_norm": 0.2304934561252594, + "learning_rate": 0.0006, + "loss": 3.666405439376831, + "step": 3002 + }, + { + "epoch": 41.7129750982962, + "grad_norm": 0.23132432997226715, + "learning_rate": 0.0006, + "loss": 3.690964698791504, + "step": 3003 + }, + { + "epoch": 41.72695500218436, + "grad_norm": 0.2085159569978714, + "learning_rate": 0.0006, + "loss": 3.6620168685913086, + "step": 3004 + }, + { + "epoch": 41.74093490607252, + "grad_norm": 0.1919657438993454, + "learning_rate": 0.0006, + "loss": 3.67447566986084, + "step": 3005 + }, + { + "epoch": 41.75491480996068, + "grad_norm": 0.20189036428928375, + "learning_rate": 0.0006, + "loss": 3.6434998512268066, + "step": 3006 + }, + { + "epoch": 41.768894713848844, + "grad_norm": 0.23530980944633484, + "learning_rate": 0.0006, + "loss": 3.644280433654785, + "step": 3007 + }, + { + "epoch": 41.782874617737, + "grad_norm": 0.2550027370452881, + "learning_rate": 0.0006, + "loss": 3.6686060428619385, + "step": 3008 + }, + { + "epoch": 41.796854521625164, + "grad_norm": 0.2285512536764145, + "learning_rate": 0.0006, + "loss": 3.7013134956359863, + "step": 3009 + }, + { + "epoch": 41.81083442551333, + "grad_norm": 0.20538675785064697, + "learning_rate": 0.0006, + "loss": 3.6568830013275146, + "step": 3010 + }, + { + "epoch": 41.824814329401484, + "grad_norm": 0.2007976472377777, + "learning_rate": 0.0006, + "loss": 3.680250883102417, + "step": 3011 + }, + { + "epoch": 41.83879423328965, + "grad_norm": 0.20060500502586365, + "learning_rate": 0.0006, + "loss": 3.6565070152282715, + "step": 3012 + }, + { + "epoch": 41.8527741371778, + "grad_norm": 0.21055014431476593, + "learning_rate": 0.0006, + "loss": 3.661667823791504, + "step": 3013 + }, + { + "epoch": 41.86675404106597, + "grad_norm": 0.2201126217842102, + "learning_rate": 0.0006, + "loss": 3.650052070617676, + "step": 3014 + }, + { + "epoch": 41.88073394495413, + "grad_norm": 0.20397843420505524, + "learning_rate": 0.0006, + "loss": 3.6535415649414062, + "step": 3015 + }, + { + "epoch": 41.89471384884229, + "grad_norm": 0.1993463635444641, + "learning_rate": 0.0006, + "loss": 3.665696144104004, + "step": 3016 + }, + { + "epoch": 41.90869375273045, + "grad_norm": 0.20448797941207886, + "learning_rate": 0.0006, + "loss": 3.6448118686676025, + "step": 3017 + }, + { + "epoch": 41.92267365661861, + "grad_norm": 0.2064918726682663, + "learning_rate": 0.0006, + "loss": 3.6881537437438965, + "step": 3018 + }, + { + "epoch": 41.93665356050677, + "grad_norm": 0.20554372668266296, + "learning_rate": 0.0006, + "loss": 3.688559055328369, + "step": 3019 + }, + { + "epoch": 41.95063346439493, + "grad_norm": 0.1862783133983612, + "learning_rate": 0.0006, + "loss": 3.6713812351226807, + "step": 3020 + }, + { + "epoch": 41.964613368283096, + "grad_norm": 0.18139860033988953, + "learning_rate": 0.0006, + "loss": 3.6612548828125, + "step": 3021 + }, + { + "epoch": 41.97859327217125, + "grad_norm": 0.1844220608472824, + "learning_rate": 0.0006, + "loss": 3.641725540161133, + "step": 3022 + }, + { + "epoch": 41.992573176059416, + "grad_norm": 0.1885213702917099, + "learning_rate": 0.0006, + "loss": 3.663257122039795, + "step": 3023 + }, + { + "epoch": 42.0, + "grad_norm": 0.2250746339559555, + "learning_rate": 0.0006, + "loss": 3.6479320526123047, + "step": 3024 + }, + { + "epoch": 42.0, + "eval_loss": 3.993955135345459, + "eval_runtime": 44.4709, + "eval_samples_per_second": 54.912, + "eval_steps_per_second": 3.44, + "step": 3024 + }, + { + "epoch": 42.01397990388816, + "grad_norm": 0.21096517145633698, + "learning_rate": 0.0006, + "loss": 3.6729278564453125, + "step": 3025 + }, + { + "epoch": 42.02795980777632, + "grad_norm": 0.2106277495622635, + "learning_rate": 0.0006, + "loss": 3.629892349243164, + "step": 3026 + }, + { + "epoch": 42.04193971166448, + "grad_norm": 0.2673060894012451, + "learning_rate": 0.0006, + "loss": 3.643604040145874, + "step": 3027 + }, + { + "epoch": 42.05591961555265, + "grad_norm": 0.28180691599845886, + "learning_rate": 0.0006, + "loss": 3.596560478210449, + "step": 3028 + }, + { + "epoch": 42.0698995194408, + "grad_norm": 0.25607243180274963, + "learning_rate": 0.0006, + "loss": 3.597935199737549, + "step": 3029 + }, + { + "epoch": 42.083879423328966, + "grad_norm": 0.22120746970176697, + "learning_rate": 0.0006, + "loss": 3.6219305992126465, + "step": 3030 + }, + { + "epoch": 42.09785932721712, + "grad_norm": 0.2164907306432724, + "learning_rate": 0.0006, + "loss": 3.6220779418945312, + "step": 3031 + }, + { + "epoch": 42.111839231105286, + "grad_norm": 0.23800921440124512, + "learning_rate": 0.0006, + "loss": 3.63372540473938, + "step": 3032 + }, + { + "epoch": 42.12581913499345, + "grad_norm": 0.21812695264816284, + "learning_rate": 0.0006, + "loss": 3.636105537414551, + "step": 3033 + }, + { + "epoch": 42.139799038881605, + "grad_norm": 0.2027447372674942, + "learning_rate": 0.0006, + "loss": 3.6167502403259277, + "step": 3034 + }, + { + "epoch": 42.15377894276977, + "grad_norm": 0.20157714188098907, + "learning_rate": 0.0006, + "loss": 3.6141409873962402, + "step": 3035 + }, + { + "epoch": 42.16775884665793, + "grad_norm": 0.20780996978282928, + "learning_rate": 0.0006, + "loss": 3.6323471069335938, + "step": 3036 + }, + { + "epoch": 42.18173875054609, + "grad_norm": 0.20025081932544708, + "learning_rate": 0.0006, + "loss": 3.625446081161499, + "step": 3037 + }, + { + "epoch": 42.19571865443425, + "grad_norm": 0.20019082725048065, + "learning_rate": 0.0006, + "loss": 3.631418228149414, + "step": 3038 + }, + { + "epoch": 42.20969855832241, + "grad_norm": 0.21194526553153992, + "learning_rate": 0.0006, + "loss": 3.6180832386016846, + "step": 3039 + }, + { + "epoch": 42.22367846221057, + "grad_norm": 0.2016245573759079, + "learning_rate": 0.0006, + "loss": 3.6388602256774902, + "step": 3040 + }, + { + "epoch": 42.237658366098735, + "grad_norm": 0.1892252415418625, + "learning_rate": 0.0006, + "loss": 3.6086854934692383, + "step": 3041 + }, + { + "epoch": 42.25163826998689, + "grad_norm": 0.1878061145544052, + "learning_rate": 0.0006, + "loss": 3.599428176879883, + "step": 3042 + }, + { + "epoch": 42.265618173875055, + "grad_norm": 0.20258742570877075, + "learning_rate": 0.0006, + "loss": 3.6177172660827637, + "step": 3043 + }, + { + "epoch": 42.27959807776322, + "grad_norm": 0.2114444226026535, + "learning_rate": 0.0006, + "loss": 3.641916275024414, + "step": 3044 + }, + { + "epoch": 42.293577981651374, + "grad_norm": 0.19873645901679993, + "learning_rate": 0.0006, + "loss": 3.6585676670074463, + "step": 3045 + }, + { + "epoch": 42.30755788553954, + "grad_norm": 0.20361217856407166, + "learning_rate": 0.0006, + "loss": 3.648475170135498, + "step": 3046 + }, + { + "epoch": 42.3215377894277, + "grad_norm": 0.20227114856243134, + "learning_rate": 0.0006, + "loss": 3.63625431060791, + "step": 3047 + }, + { + "epoch": 42.33551769331586, + "grad_norm": 0.18246233463287354, + "learning_rate": 0.0006, + "loss": 3.6380200386047363, + "step": 3048 + }, + { + "epoch": 42.34949759720402, + "grad_norm": 0.17944976687431335, + "learning_rate": 0.0006, + "loss": 3.6325912475585938, + "step": 3049 + }, + { + "epoch": 42.36347750109218, + "grad_norm": 0.188584566116333, + "learning_rate": 0.0006, + "loss": 3.6418886184692383, + "step": 3050 + }, + { + "epoch": 42.37745740498034, + "grad_norm": 0.1917790323495865, + "learning_rate": 0.0006, + "loss": 3.664421558380127, + "step": 3051 + }, + { + "epoch": 42.391437308868504, + "grad_norm": 0.175637349486351, + "learning_rate": 0.0006, + "loss": 3.641819953918457, + "step": 3052 + }, + { + "epoch": 42.40541721275666, + "grad_norm": 0.18751518428325653, + "learning_rate": 0.0006, + "loss": 3.646697998046875, + "step": 3053 + }, + { + "epoch": 42.419397116644824, + "grad_norm": 0.1805887520313263, + "learning_rate": 0.0006, + "loss": 3.637866735458374, + "step": 3054 + }, + { + "epoch": 42.43337702053299, + "grad_norm": 0.19680845737457275, + "learning_rate": 0.0006, + "loss": 3.602511405944824, + "step": 3055 + }, + { + "epoch": 42.44735692442114, + "grad_norm": 0.20605766773223877, + "learning_rate": 0.0006, + "loss": 3.6472771167755127, + "step": 3056 + }, + { + "epoch": 42.46133682830931, + "grad_norm": 0.18083851039409637, + "learning_rate": 0.0006, + "loss": 3.6672325134277344, + "step": 3057 + }, + { + "epoch": 42.47531673219746, + "grad_norm": 0.19665084779262543, + "learning_rate": 0.0006, + "loss": 3.625300884246826, + "step": 3058 + }, + { + "epoch": 42.489296636085626, + "grad_norm": 0.22506165504455566, + "learning_rate": 0.0006, + "loss": 3.592872142791748, + "step": 3059 + }, + { + "epoch": 42.50327653997379, + "grad_norm": 0.2051578164100647, + "learning_rate": 0.0006, + "loss": 3.6302249431610107, + "step": 3060 + }, + { + "epoch": 42.517256443861946, + "grad_norm": 0.18957172334194183, + "learning_rate": 0.0006, + "loss": 3.6277074813842773, + "step": 3061 + }, + { + "epoch": 42.53123634775011, + "grad_norm": 0.21467208862304688, + "learning_rate": 0.0006, + "loss": 3.6121392250061035, + "step": 3062 + }, + { + "epoch": 42.54521625163827, + "grad_norm": 0.21618402004241943, + "learning_rate": 0.0006, + "loss": 3.664738655090332, + "step": 3063 + }, + { + "epoch": 42.55919615552643, + "grad_norm": 0.2259770780801773, + "learning_rate": 0.0006, + "loss": 3.652042865753174, + "step": 3064 + }, + { + "epoch": 42.57317605941459, + "grad_norm": 0.22667232155799866, + "learning_rate": 0.0006, + "loss": 3.6552934646606445, + "step": 3065 + }, + { + "epoch": 42.58715596330275, + "grad_norm": 0.21405228972434998, + "learning_rate": 0.0006, + "loss": 3.644043445587158, + "step": 3066 + }, + { + "epoch": 42.60113586719091, + "grad_norm": 0.20855450630187988, + "learning_rate": 0.0006, + "loss": 3.6534876823425293, + "step": 3067 + }, + { + "epoch": 42.615115771079076, + "grad_norm": 0.22474415600299835, + "learning_rate": 0.0006, + "loss": 3.656677484512329, + "step": 3068 + }, + { + "epoch": 42.62909567496723, + "grad_norm": 0.23401428759098053, + "learning_rate": 0.0006, + "loss": 3.6788997650146484, + "step": 3069 + }, + { + "epoch": 42.643075578855395, + "grad_norm": 0.21567967534065247, + "learning_rate": 0.0006, + "loss": 3.675379753112793, + "step": 3070 + }, + { + "epoch": 42.65705548274356, + "grad_norm": 0.21704941987991333, + "learning_rate": 0.0006, + "loss": 3.630707263946533, + "step": 3071 + }, + { + "epoch": 42.671035386631715, + "grad_norm": 0.2718963921070099, + "learning_rate": 0.0006, + "loss": 3.6653294563293457, + "step": 3072 + }, + { + "epoch": 42.68501529051988, + "grad_norm": 0.30198901891708374, + "learning_rate": 0.0006, + "loss": 3.6761326789855957, + "step": 3073 + }, + { + "epoch": 42.69899519440804, + "grad_norm": 0.27593618631362915, + "learning_rate": 0.0006, + "loss": 3.6610732078552246, + "step": 3074 + }, + { + "epoch": 42.7129750982962, + "grad_norm": 0.22495242953300476, + "learning_rate": 0.0006, + "loss": 3.656907320022583, + "step": 3075 + }, + { + "epoch": 42.72695500218436, + "grad_norm": 0.19872353971004486, + "learning_rate": 0.0006, + "loss": 3.6611597537994385, + "step": 3076 + }, + { + "epoch": 42.74093490607252, + "grad_norm": 0.21527111530303955, + "learning_rate": 0.0006, + "loss": 3.676821708679199, + "step": 3077 + }, + { + "epoch": 42.75491480996068, + "grad_norm": 0.22314463555812836, + "learning_rate": 0.0006, + "loss": 3.629460334777832, + "step": 3078 + }, + { + "epoch": 42.768894713848844, + "grad_norm": 0.23461024463176727, + "learning_rate": 0.0006, + "loss": 3.665390968322754, + "step": 3079 + }, + { + "epoch": 42.782874617737, + "grad_norm": 0.2582414448261261, + "learning_rate": 0.0006, + "loss": 3.6420979499816895, + "step": 3080 + }, + { + "epoch": 42.796854521625164, + "grad_norm": 0.2505052983760834, + "learning_rate": 0.0006, + "loss": 3.67236328125, + "step": 3081 + }, + { + "epoch": 42.81083442551333, + "grad_norm": 0.22617632150650024, + "learning_rate": 0.0006, + "loss": 3.654897689819336, + "step": 3082 + }, + { + "epoch": 42.824814329401484, + "grad_norm": 0.2340085208415985, + "learning_rate": 0.0006, + "loss": 3.6423635482788086, + "step": 3083 + }, + { + "epoch": 42.83879423328965, + "grad_norm": 0.26765671372413635, + "learning_rate": 0.0006, + "loss": 3.622769832611084, + "step": 3084 + }, + { + "epoch": 42.8527741371778, + "grad_norm": 0.29490381479263306, + "learning_rate": 0.0006, + "loss": 3.656053066253662, + "step": 3085 + }, + { + "epoch": 42.86675404106597, + "grad_norm": 0.29776132106781006, + "learning_rate": 0.0006, + "loss": 3.6454644203186035, + "step": 3086 + }, + { + "epoch": 42.88073394495413, + "grad_norm": 0.23994849622249603, + "learning_rate": 0.0006, + "loss": 3.674665927886963, + "step": 3087 + }, + { + "epoch": 42.89471384884229, + "grad_norm": 0.21456265449523926, + "learning_rate": 0.0006, + "loss": 3.670175790786743, + "step": 3088 + }, + { + "epoch": 42.90869375273045, + "grad_norm": 0.25727778673171997, + "learning_rate": 0.0006, + "loss": 3.6425390243530273, + "step": 3089 + }, + { + "epoch": 42.92267365661861, + "grad_norm": 0.30310627818107605, + "learning_rate": 0.0006, + "loss": 3.68511962890625, + "step": 3090 + }, + { + "epoch": 42.93665356050677, + "grad_norm": 0.2792291045188904, + "learning_rate": 0.0006, + "loss": 3.681732654571533, + "step": 3091 + }, + { + "epoch": 42.95063346439493, + "grad_norm": 0.23614276945590973, + "learning_rate": 0.0006, + "loss": 3.6417222023010254, + "step": 3092 + }, + { + "epoch": 42.964613368283096, + "grad_norm": 0.23602448403835297, + "learning_rate": 0.0006, + "loss": 3.6602869033813477, + "step": 3093 + }, + { + "epoch": 42.97859327217125, + "grad_norm": 0.21968287229537964, + "learning_rate": 0.0006, + "loss": 3.6618118286132812, + "step": 3094 + }, + { + "epoch": 42.992573176059416, + "grad_norm": 0.2177523374557495, + "learning_rate": 0.0006, + "loss": 3.666904926300049, + "step": 3095 + }, + { + "epoch": 43.0, + "grad_norm": 0.23960894346237183, + "learning_rate": 0.0006, + "loss": 3.710965633392334, + "step": 3096 + }, + { + "epoch": 43.0, + "eval_loss": 3.977475166320801, + "eval_runtime": 44.5209, + "eval_samples_per_second": 54.851, + "eval_steps_per_second": 3.437, + "step": 3096 + }, + { + "epoch": 43.01397990388816, + "grad_norm": 0.24180234968662262, + "learning_rate": 0.0006, + "loss": 3.5949223041534424, + "step": 3097 + }, + { + "epoch": 43.02795980777632, + "grad_norm": 0.3331127166748047, + "learning_rate": 0.0006, + "loss": 3.625802755355835, + "step": 3098 + }, + { + "epoch": 43.04193971166448, + "grad_norm": 0.38338130712509155, + "learning_rate": 0.0006, + "loss": 3.6390271186828613, + "step": 3099 + }, + { + "epoch": 43.05591961555265, + "grad_norm": 0.32292598485946655, + "learning_rate": 0.0006, + "loss": 3.630621910095215, + "step": 3100 + }, + { + "epoch": 43.0698995194408, + "grad_norm": 0.24179677665233612, + "learning_rate": 0.0006, + "loss": 3.6124491691589355, + "step": 3101 + }, + { + "epoch": 43.083879423328966, + "grad_norm": 0.2622842788696289, + "learning_rate": 0.0006, + "loss": 3.6207399368286133, + "step": 3102 + }, + { + "epoch": 43.09785932721712, + "grad_norm": 0.264297217130661, + "learning_rate": 0.0006, + "loss": 3.637218475341797, + "step": 3103 + }, + { + "epoch": 43.111839231105286, + "grad_norm": 0.25815117359161377, + "learning_rate": 0.0006, + "loss": 3.614841938018799, + "step": 3104 + }, + { + "epoch": 43.12581913499345, + "grad_norm": 0.2209406942129135, + "learning_rate": 0.0006, + "loss": 3.604722738265991, + "step": 3105 + }, + { + "epoch": 43.139799038881605, + "grad_norm": 0.22333410382270813, + "learning_rate": 0.0006, + "loss": 3.6388449668884277, + "step": 3106 + }, + { + "epoch": 43.15377894276977, + "grad_norm": 0.2194417119026184, + "learning_rate": 0.0006, + "loss": 3.611644744873047, + "step": 3107 + }, + { + "epoch": 43.16775884665793, + "grad_norm": 0.21270349621772766, + "learning_rate": 0.0006, + "loss": 3.6180214881896973, + "step": 3108 + }, + { + "epoch": 43.18173875054609, + "grad_norm": 0.21358032524585724, + "learning_rate": 0.0006, + "loss": 3.646512985229492, + "step": 3109 + }, + { + "epoch": 43.19571865443425, + "grad_norm": 0.2180788666009903, + "learning_rate": 0.0006, + "loss": 3.641981363296509, + "step": 3110 + }, + { + "epoch": 43.20969855832241, + "grad_norm": 0.21979685127735138, + "learning_rate": 0.0006, + "loss": 3.6251654624938965, + "step": 3111 + }, + { + "epoch": 43.22367846221057, + "grad_norm": 0.2072533220052719, + "learning_rate": 0.0006, + "loss": 3.665372371673584, + "step": 3112 + }, + { + "epoch": 43.237658366098735, + "grad_norm": 0.2085742950439453, + "learning_rate": 0.0006, + "loss": 3.647730827331543, + "step": 3113 + }, + { + "epoch": 43.25163826998689, + "grad_norm": 0.1934993416070938, + "learning_rate": 0.0006, + "loss": 3.6296567916870117, + "step": 3114 + }, + { + "epoch": 43.265618173875055, + "grad_norm": 0.1954783797264099, + "learning_rate": 0.0006, + "loss": 3.6412858963012695, + "step": 3115 + }, + { + "epoch": 43.27959807776322, + "grad_norm": 0.1932750642299652, + "learning_rate": 0.0006, + "loss": 3.6246860027313232, + "step": 3116 + }, + { + "epoch": 43.293577981651374, + "grad_norm": 0.19765302538871765, + "learning_rate": 0.0006, + "loss": 3.618922710418701, + "step": 3117 + }, + { + "epoch": 43.30755788553954, + "grad_norm": 0.1987425684928894, + "learning_rate": 0.0006, + "loss": 3.633185863494873, + "step": 3118 + }, + { + "epoch": 43.3215377894277, + "grad_norm": 0.1894739419221878, + "learning_rate": 0.0006, + "loss": 3.595709800720215, + "step": 3119 + }, + { + "epoch": 43.33551769331586, + "grad_norm": 0.19455872476100922, + "learning_rate": 0.0006, + "loss": 3.6309051513671875, + "step": 3120 + }, + { + "epoch": 43.34949759720402, + "grad_norm": 0.21448275446891785, + "learning_rate": 0.0006, + "loss": 3.6425981521606445, + "step": 3121 + }, + { + "epoch": 43.36347750109218, + "grad_norm": 0.24527893960475922, + "learning_rate": 0.0006, + "loss": 3.6497793197631836, + "step": 3122 + }, + { + "epoch": 43.37745740498034, + "grad_norm": 0.253231942653656, + "learning_rate": 0.0006, + "loss": 3.644453525543213, + "step": 3123 + }, + { + "epoch": 43.391437308868504, + "grad_norm": 0.2048978954553604, + "learning_rate": 0.0006, + "loss": 3.5963876247406006, + "step": 3124 + }, + { + "epoch": 43.40541721275666, + "grad_norm": 0.19951528310775757, + "learning_rate": 0.0006, + "loss": 3.6274406909942627, + "step": 3125 + }, + { + "epoch": 43.419397116644824, + "grad_norm": 0.2293875813484192, + "learning_rate": 0.0006, + "loss": 3.6482725143432617, + "step": 3126 + }, + { + "epoch": 43.43337702053299, + "grad_norm": 0.22379456460475922, + "learning_rate": 0.0006, + "loss": 3.6466073989868164, + "step": 3127 + }, + { + "epoch": 43.44735692442114, + "grad_norm": 0.2275441288948059, + "learning_rate": 0.0006, + "loss": 3.6529078483581543, + "step": 3128 + }, + { + "epoch": 43.46133682830931, + "grad_norm": 0.23014242947101593, + "learning_rate": 0.0006, + "loss": 3.6084837913513184, + "step": 3129 + }, + { + "epoch": 43.47531673219746, + "grad_norm": 0.22280924022197723, + "learning_rate": 0.0006, + "loss": 3.611320734024048, + "step": 3130 + }, + { + "epoch": 43.489296636085626, + "grad_norm": 0.19498756527900696, + "learning_rate": 0.0006, + "loss": 3.630185604095459, + "step": 3131 + }, + { + "epoch": 43.50327653997379, + "grad_norm": 0.21357767283916473, + "learning_rate": 0.0006, + "loss": 3.6509933471679688, + "step": 3132 + }, + { + "epoch": 43.517256443861946, + "grad_norm": 0.21775896847248077, + "learning_rate": 0.0006, + "loss": 3.635112762451172, + "step": 3133 + }, + { + "epoch": 43.53123634775011, + "grad_norm": 0.2035629004240036, + "learning_rate": 0.0006, + "loss": 3.658327102661133, + "step": 3134 + }, + { + "epoch": 43.54521625163827, + "grad_norm": 0.20083840191364288, + "learning_rate": 0.0006, + "loss": 3.632441997528076, + "step": 3135 + }, + { + "epoch": 43.55919615552643, + "grad_norm": 0.1922001987695694, + "learning_rate": 0.0006, + "loss": 3.6417734622955322, + "step": 3136 + }, + { + "epoch": 43.57317605941459, + "grad_norm": 0.21049264073371887, + "learning_rate": 0.0006, + "loss": 3.671274423599243, + "step": 3137 + }, + { + "epoch": 43.58715596330275, + "grad_norm": 0.21432001888751984, + "learning_rate": 0.0006, + "loss": 3.6216118335723877, + "step": 3138 + }, + { + "epoch": 43.60113586719091, + "grad_norm": 0.25448811054229736, + "learning_rate": 0.0006, + "loss": 3.658283233642578, + "step": 3139 + }, + { + "epoch": 43.615115771079076, + "grad_norm": 0.24313904345035553, + "learning_rate": 0.0006, + "loss": 3.6447594165802, + "step": 3140 + }, + { + "epoch": 43.62909567496723, + "grad_norm": 0.2332659363746643, + "learning_rate": 0.0006, + "loss": 3.625528573989868, + "step": 3141 + }, + { + "epoch": 43.643075578855395, + "grad_norm": 0.23222137987613678, + "learning_rate": 0.0006, + "loss": 3.6524429321289062, + "step": 3142 + }, + { + "epoch": 43.65705548274356, + "grad_norm": 0.2147051990032196, + "learning_rate": 0.0006, + "loss": 3.6517302989959717, + "step": 3143 + }, + { + "epoch": 43.671035386631715, + "grad_norm": 0.2464994341135025, + "learning_rate": 0.0006, + "loss": 3.654947519302368, + "step": 3144 + }, + { + "epoch": 43.68501529051988, + "grad_norm": 0.2365981936454773, + "learning_rate": 0.0006, + "loss": 3.638695240020752, + "step": 3145 + }, + { + "epoch": 43.69899519440804, + "grad_norm": 0.2325262874364853, + "learning_rate": 0.0006, + "loss": 3.6496055126190186, + "step": 3146 + }, + { + "epoch": 43.7129750982962, + "grad_norm": 0.2196085900068283, + "learning_rate": 0.0006, + "loss": 3.6323978900909424, + "step": 3147 + }, + { + "epoch": 43.72695500218436, + "grad_norm": 0.20404237508773804, + "learning_rate": 0.0006, + "loss": 3.6572763919830322, + "step": 3148 + }, + { + "epoch": 43.74093490607252, + "grad_norm": 0.2363257110118866, + "learning_rate": 0.0006, + "loss": 3.6347732543945312, + "step": 3149 + }, + { + "epoch": 43.75491480996068, + "grad_norm": 0.23671524226665497, + "learning_rate": 0.0006, + "loss": 3.650017023086548, + "step": 3150 + }, + { + "epoch": 43.768894713848844, + "grad_norm": 0.20892305672168732, + "learning_rate": 0.0006, + "loss": 3.638185977935791, + "step": 3151 + }, + { + "epoch": 43.782874617737, + "grad_norm": 0.18670055270195007, + "learning_rate": 0.0006, + "loss": 3.6647696495056152, + "step": 3152 + }, + { + "epoch": 43.796854521625164, + "grad_norm": 0.21818184852600098, + "learning_rate": 0.0006, + "loss": 3.663623332977295, + "step": 3153 + }, + { + "epoch": 43.81083442551333, + "grad_norm": 0.23472464084625244, + "learning_rate": 0.0006, + "loss": 3.650595188140869, + "step": 3154 + }, + { + "epoch": 43.824814329401484, + "grad_norm": 0.2266419678926468, + "learning_rate": 0.0006, + "loss": 3.6362059116363525, + "step": 3155 + }, + { + "epoch": 43.83879423328965, + "grad_norm": 0.2250787913799286, + "learning_rate": 0.0006, + "loss": 3.647970199584961, + "step": 3156 + }, + { + "epoch": 43.8527741371778, + "grad_norm": 0.21493776142597198, + "learning_rate": 0.0006, + "loss": 3.6510982513427734, + "step": 3157 + }, + { + "epoch": 43.86675404106597, + "grad_norm": 0.20783160626888275, + "learning_rate": 0.0006, + "loss": 3.654845714569092, + "step": 3158 + }, + { + "epoch": 43.88073394495413, + "grad_norm": 0.2222554087638855, + "learning_rate": 0.0006, + "loss": 3.6565685272216797, + "step": 3159 + }, + { + "epoch": 43.89471384884229, + "grad_norm": 0.2148049771785736, + "learning_rate": 0.0006, + "loss": 3.630779266357422, + "step": 3160 + }, + { + "epoch": 43.90869375273045, + "grad_norm": 0.2222086787223816, + "learning_rate": 0.0006, + "loss": 3.6312813758850098, + "step": 3161 + }, + { + "epoch": 43.92267365661861, + "grad_norm": 0.24049264192581177, + "learning_rate": 0.0006, + "loss": 3.6185736656188965, + "step": 3162 + }, + { + "epoch": 43.93665356050677, + "grad_norm": 0.2228843867778778, + "learning_rate": 0.0006, + "loss": 3.595583438873291, + "step": 3163 + }, + { + "epoch": 43.95063346439493, + "grad_norm": 0.20714408159255981, + "learning_rate": 0.0006, + "loss": 3.6649322509765625, + "step": 3164 + }, + { + "epoch": 43.964613368283096, + "grad_norm": 0.2048991471529007, + "learning_rate": 0.0006, + "loss": 3.6513710021972656, + "step": 3165 + }, + { + "epoch": 43.97859327217125, + "grad_norm": 0.21874114871025085, + "learning_rate": 0.0006, + "loss": 3.6471524238586426, + "step": 3166 + }, + { + "epoch": 43.992573176059416, + "grad_norm": 0.21309879422187805, + "learning_rate": 0.0006, + "loss": 3.647021770477295, + "step": 3167 + }, + { + "epoch": 44.0, + "grad_norm": 0.23717166483402252, + "learning_rate": 0.0006, + "loss": 3.6903820037841797, + "step": 3168 + }, + { + "epoch": 44.0, + "eval_loss": 3.9844837188720703, + "eval_runtime": 44.29, + "eval_samples_per_second": 55.137, + "eval_steps_per_second": 3.455, + "step": 3168 + }, + { + "epoch": 44.01397990388816, + "grad_norm": 0.21503832936286926, + "learning_rate": 0.0006, + "loss": 3.6054744720458984, + "step": 3169 + }, + { + "epoch": 44.02795980777632, + "grad_norm": 0.2289554923772812, + "learning_rate": 0.0006, + "loss": 3.6560556888580322, + "step": 3170 + }, + { + "epoch": 44.04193971166448, + "grad_norm": 0.24250416457653046, + "learning_rate": 0.0006, + "loss": 3.611820697784424, + "step": 3171 + }, + { + "epoch": 44.05591961555265, + "grad_norm": 0.2526668310165405, + "learning_rate": 0.0006, + "loss": 3.6273183822631836, + "step": 3172 + }, + { + "epoch": 44.0698995194408, + "grad_norm": 0.26702383160591125, + "learning_rate": 0.0006, + "loss": 3.5856852531433105, + "step": 3173 + }, + { + "epoch": 44.083879423328966, + "grad_norm": 0.2715195417404175, + "learning_rate": 0.0006, + "loss": 3.631045341491699, + "step": 3174 + }, + { + "epoch": 44.09785932721712, + "grad_norm": 0.3505614995956421, + "learning_rate": 0.0006, + "loss": 3.628720760345459, + "step": 3175 + }, + { + "epoch": 44.111839231105286, + "grad_norm": 0.2760702967643738, + "learning_rate": 0.0006, + "loss": 3.6283509731292725, + "step": 3176 + }, + { + "epoch": 44.12581913499345, + "grad_norm": 0.21105222404003143, + "learning_rate": 0.0006, + "loss": 3.6495566368103027, + "step": 3177 + }, + { + "epoch": 44.139799038881605, + "grad_norm": 0.2852860987186432, + "learning_rate": 0.0006, + "loss": 3.640768527984619, + "step": 3178 + }, + { + "epoch": 44.15377894276977, + "grad_norm": 0.2941005825996399, + "learning_rate": 0.0006, + "loss": 3.6303114891052246, + "step": 3179 + }, + { + "epoch": 44.16775884665793, + "grad_norm": 0.2792299687862396, + "learning_rate": 0.0006, + "loss": 3.6053574085235596, + "step": 3180 + }, + { + "epoch": 44.18173875054609, + "grad_norm": 0.23168638348579407, + "learning_rate": 0.0006, + "loss": 3.62430477142334, + "step": 3181 + }, + { + "epoch": 44.19571865443425, + "grad_norm": 0.23713921010494232, + "learning_rate": 0.0006, + "loss": 3.601106643676758, + "step": 3182 + }, + { + "epoch": 44.20969855832241, + "grad_norm": 0.23341049253940582, + "learning_rate": 0.0006, + "loss": 3.631762742996216, + "step": 3183 + }, + { + "epoch": 44.22367846221057, + "grad_norm": 0.23094508051872253, + "learning_rate": 0.0006, + "loss": 3.586683750152588, + "step": 3184 + }, + { + "epoch": 44.237658366098735, + "grad_norm": 0.24085712432861328, + "learning_rate": 0.0006, + "loss": 3.6251423358917236, + "step": 3185 + }, + { + "epoch": 44.25163826998689, + "grad_norm": 0.24999955296516418, + "learning_rate": 0.0006, + "loss": 3.6554198265075684, + "step": 3186 + }, + { + "epoch": 44.265618173875055, + "grad_norm": 0.21759621798992157, + "learning_rate": 0.0006, + "loss": 3.6249518394470215, + "step": 3187 + }, + { + "epoch": 44.27959807776322, + "grad_norm": 0.2490139901638031, + "learning_rate": 0.0006, + "loss": 3.6163341999053955, + "step": 3188 + }, + { + "epoch": 44.293577981651374, + "grad_norm": 0.23420892655849457, + "learning_rate": 0.0006, + "loss": 3.615469455718994, + "step": 3189 + }, + { + "epoch": 44.30755788553954, + "grad_norm": 0.2292138934135437, + "learning_rate": 0.0006, + "loss": 3.6085104942321777, + "step": 3190 + }, + { + "epoch": 44.3215377894277, + "grad_norm": 0.22595474123954773, + "learning_rate": 0.0006, + "loss": 3.6317405700683594, + "step": 3191 + }, + { + "epoch": 44.33551769331586, + "grad_norm": 0.22418338060379028, + "learning_rate": 0.0006, + "loss": 3.6287777423858643, + "step": 3192 + }, + { + "epoch": 44.34949759720402, + "grad_norm": 0.2453135848045349, + "learning_rate": 0.0006, + "loss": 3.6228437423706055, + "step": 3193 + }, + { + "epoch": 44.36347750109218, + "grad_norm": 0.2627771198749542, + "learning_rate": 0.0006, + "loss": 3.6581034660339355, + "step": 3194 + }, + { + "epoch": 44.37745740498034, + "grad_norm": 0.24114494025707245, + "learning_rate": 0.0006, + "loss": 3.653505563735962, + "step": 3195 + }, + { + "epoch": 44.391437308868504, + "grad_norm": 0.2103721648454666, + "learning_rate": 0.0006, + "loss": 3.5698580741882324, + "step": 3196 + }, + { + "epoch": 44.40541721275666, + "grad_norm": 0.21172291040420532, + "learning_rate": 0.0006, + "loss": 3.573453426361084, + "step": 3197 + }, + { + "epoch": 44.419397116644824, + "grad_norm": 0.20298106968402863, + "learning_rate": 0.0006, + "loss": 3.6350207328796387, + "step": 3198 + }, + { + "epoch": 44.43337702053299, + "grad_norm": 0.2029009759426117, + "learning_rate": 0.0006, + "loss": 3.6025917530059814, + "step": 3199 + }, + { + "epoch": 44.44735692442114, + "grad_norm": 0.18960542976856232, + "learning_rate": 0.0006, + "loss": 3.625028133392334, + "step": 3200 + }, + { + "epoch": 44.46133682830931, + "grad_norm": 0.20758579671382904, + "learning_rate": 0.0006, + "loss": 3.647071123123169, + "step": 3201 + }, + { + "epoch": 44.47531673219746, + "grad_norm": 0.21896769106388092, + "learning_rate": 0.0006, + "loss": 3.6481196880340576, + "step": 3202 + }, + { + "epoch": 44.489296636085626, + "grad_norm": 0.20817387104034424, + "learning_rate": 0.0006, + "loss": 3.629366874694824, + "step": 3203 + }, + { + "epoch": 44.50327653997379, + "grad_norm": 0.2099488228559494, + "learning_rate": 0.0006, + "loss": 3.6757798194885254, + "step": 3204 + }, + { + "epoch": 44.517256443861946, + "grad_norm": 0.21376627683639526, + "learning_rate": 0.0006, + "loss": 3.638324737548828, + "step": 3205 + }, + { + "epoch": 44.53123634775011, + "grad_norm": 0.19089072942733765, + "learning_rate": 0.0006, + "loss": 3.6497435569763184, + "step": 3206 + }, + { + "epoch": 44.54521625163827, + "grad_norm": 0.20489120483398438, + "learning_rate": 0.0006, + "loss": 3.634019374847412, + "step": 3207 + }, + { + "epoch": 44.55919615552643, + "grad_norm": 0.21991780400276184, + "learning_rate": 0.0006, + "loss": 3.6255834102630615, + "step": 3208 + }, + { + "epoch": 44.57317605941459, + "grad_norm": 0.23417581617832184, + "learning_rate": 0.0006, + "loss": 3.631927728652954, + "step": 3209 + }, + { + "epoch": 44.58715596330275, + "grad_norm": 0.22819049656391144, + "learning_rate": 0.0006, + "loss": 3.640167713165283, + "step": 3210 + }, + { + "epoch": 44.60113586719091, + "grad_norm": 0.21443316340446472, + "learning_rate": 0.0006, + "loss": 3.645709991455078, + "step": 3211 + }, + { + "epoch": 44.615115771079076, + "grad_norm": 0.19252653419971466, + "learning_rate": 0.0006, + "loss": 3.591294288635254, + "step": 3212 + }, + { + "epoch": 44.62909567496723, + "grad_norm": 0.18925397098064423, + "learning_rate": 0.0006, + "loss": 3.6163625717163086, + "step": 3213 + }, + { + "epoch": 44.643075578855395, + "grad_norm": 0.21605387330055237, + "learning_rate": 0.0006, + "loss": 3.6826887130737305, + "step": 3214 + }, + { + "epoch": 44.65705548274356, + "grad_norm": 0.21301978826522827, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 3215 + }, + { + "epoch": 44.671035386631715, + "grad_norm": 0.20065832138061523, + "learning_rate": 0.0006, + "loss": 3.648879289627075, + "step": 3216 + }, + { + "epoch": 44.68501529051988, + "grad_norm": 0.21413499116897583, + "learning_rate": 0.0006, + "loss": 3.6327264308929443, + "step": 3217 + }, + { + "epoch": 44.69899519440804, + "grad_norm": 0.22769849002361298, + "learning_rate": 0.0006, + "loss": 3.6486430168151855, + "step": 3218 + }, + { + "epoch": 44.7129750982962, + "grad_norm": 0.227064847946167, + "learning_rate": 0.0006, + "loss": 3.633342981338501, + "step": 3219 + }, + { + "epoch": 44.72695500218436, + "grad_norm": 0.21335656940937042, + "learning_rate": 0.0006, + "loss": 3.648621082305908, + "step": 3220 + }, + { + "epoch": 44.74093490607252, + "grad_norm": 0.2085563838481903, + "learning_rate": 0.0006, + "loss": 3.647826671600342, + "step": 3221 + }, + { + "epoch": 44.75491480996068, + "grad_norm": 0.19203904271125793, + "learning_rate": 0.0006, + "loss": 3.6296122074127197, + "step": 3222 + }, + { + "epoch": 44.768894713848844, + "grad_norm": 0.1969112604856491, + "learning_rate": 0.0006, + "loss": 3.6477179527282715, + "step": 3223 + }, + { + "epoch": 44.782874617737, + "grad_norm": 0.21630392968654633, + "learning_rate": 0.0006, + "loss": 3.628805637359619, + "step": 3224 + }, + { + "epoch": 44.796854521625164, + "grad_norm": 0.20641647279262543, + "learning_rate": 0.0006, + "loss": 3.650993824005127, + "step": 3225 + }, + { + "epoch": 44.81083442551333, + "grad_norm": 0.1954173892736435, + "learning_rate": 0.0006, + "loss": 3.6362831592559814, + "step": 3226 + }, + { + "epoch": 44.824814329401484, + "grad_norm": 0.20479747653007507, + "learning_rate": 0.0006, + "loss": 3.6467390060424805, + "step": 3227 + }, + { + "epoch": 44.83879423328965, + "grad_norm": 0.20502690970897675, + "learning_rate": 0.0006, + "loss": 3.6260130405426025, + "step": 3228 + }, + { + "epoch": 44.8527741371778, + "grad_norm": 0.20348094403743744, + "learning_rate": 0.0006, + "loss": 3.6836767196655273, + "step": 3229 + }, + { + "epoch": 44.86675404106597, + "grad_norm": 0.18748269975185394, + "learning_rate": 0.0006, + "loss": 3.610104560852051, + "step": 3230 + }, + { + "epoch": 44.88073394495413, + "grad_norm": 0.18822219967842102, + "learning_rate": 0.0006, + "loss": 3.61354398727417, + "step": 3231 + }, + { + "epoch": 44.89471384884229, + "grad_norm": 0.20972031354904175, + "learning_rate": 0.0006, + "loss": 3.644336700439453, + "step": 3232 + }, + { + "epoch": 44.90869375273045, + "grad_norm": 0.2013155072927475, + "learning_rate": 0.0006, + "loss": 3.659287929534912, + "step": 3233 + }, + { + "epoch": 44.92267365661861, + "grad_norm": 0.2056475579738617, + "learning_rate": 0.0006, + "loss": 3.6545677185058594, + "step": 3234 + }, + { + "epoch": 44.93665356050677, + "grad_norm": 0.2104482203722, + "learning_rate": 0.0006, + "loss": 3.6094017028808594, + "step": 3235 + }, + { + "epoch": 44.95063346439493, + "grad_norm": 0.1993035078048706, + "learning_rate": 0.0006, + "loss": 3.6209053993225098, + "step": 3236 + }, + { + "epoch": 44.964613368283096, + "grad_norm": 0.1883099526166916, + "learning_rate": 0.0006, + "loss": 3.6011457443237305, + "step": 3237 + }, + { + "epoch": 44.97859327217125, + "grad_norm": 0.1927674412727356, + "learning_rate": 0.0006, + "loss": 3.606609344482422, + "step": 3238 + }, + { + "epoch": 44.992573176059416, + "grad_norm": 0.1878899335861206, + "learning_rate": 0.0006, + "loss": 3.6701109409332275, + "step": 3239 + }, + { + "epoch": 45.0, + "grad_norm": 0.2237395942211151, + "learning_rate": 0.0006, + "loss": 3.6617302894592285, + "step": 3240 + }, + { + "epoch": 45.0, + "eval_loss": 3.9812564849853516, + "eval_runtime": 44.8635, + "eval_samples_per_second": 54.432, + "eval_steps_per_second": 3.41, + "step": 3240 + }, + { + "epoch": 45.01397990388816, + "grad_norm": 0.21368487179279327, + "learning_rate": 0.0006, + "loss": 3.599107265472412, + "step": 3241 + }, + { + "epoch": 45.02795980777632, + "grad_norm": 0.2234211564064026, + "learning_rate": 0.0006, + "loss": 3.5943236351013184, + "step": 3242 + }, + { + "epoch": 45.04193971166448, + "grad_norm": 0.2222544252872467, + "learning_rate": 0.0006, + "loss": 3.6152291297912598, + "step": 3243 + }, + { + "epoch": 45.05591961555265, + "grad_norm": 0.24686792492866516, + "learning_rate": 0.0006, + "loss": 3.6006085872650146, + "step": 3244 + }, + { + "epoch": 45.0698995194408, + "grad_norm": 0.24634984135627747, + "learning_rate": 0.0006, + "loss": 3.6023471355438232, + "step": 3245 + }, + { + "epoch": 45.083879423328966, + "grad_norm": 0.2150750756263733, + "learning_rate": 0.0006, + "loss": 3.5690598487854004, + "step": 3246 + }, + { + "epoch": 45.09785932721712, + "grad_norm": 0.196721151471138, + "learning_rate": 0.0006, + "loss": 3.592653751373291, + "step": 3247 + }, + { + "epoch": 45.111839231105286, + "grad_norm": 0.21874476969242096, + "learning_rate": 0.0006, + "loss": 3.586243152618408, + "step": 3248 + }, + { + "epoch": 45.12581913499345, + "grad_norm": 0.21021611988544464, + "learning_rate": 0.0006, + "loss": 3.599384307861328, + "step": 3249 + }, + { + "epoch": 45.139799038881605, + "grad_norm": 0.19754183292388916, + "learning_rate": 0.0006, + "loss": 3.623816967010498, + "step": 3250 + }, + { + "epoch": 45.15377894276977, + "grad_norm": 0.21218672394752502, + "learning_rate": 0.0006, + "loss": 3.5901236534118652, + "step": 3251 + }, + { + "epoch": 45.16775884665793, + "grad_norm": 0.23569360375404358, + "learning_rate": 0.0006, + "loss": 3.600029945373535, + "step": 3252 + }, + { + "epoch": 45.18173875054609, + "grad_norm": 0.25429826974868774, + "learning_rate": 0.0006, + "loss": 3.607773542404175, + "step": 3253 + }, + { + "epoch": 45.19571865443425, + "grad_norm": 0.23416805267333984, + "learning_rate": 0.0006, + "loss": 3.63248348236084, + "step": 3254 + }, + { + "epoch": 45.20969855832241, + "grad_norm": 0.20821864902973175, + "learning_rate": 0.0006, + "loss": 3.641927719116211, + "step": 3255 + }, + { + "epoch": 45.22367846221057, + "grad_norm": 0.21849380433559418, + "learning_rate": 0.0006, + "loss": 3.665098190307617, + "step": 3256 + }, + { + "epoch": 45.237658366098735, + "grad_norm": 0.22939491271972656, + "learning_rate": 0.0006, + "loss": 3.6106104850769043, + "step": 3257 + }, + { + "epoch": 45.25163826998689, + "grad_norm": 0.24144501984119415, + "learning_rate": 0.0006, + "loss": 3.5872416496276855, + "step": 3258 + }, + { + "epoch": 45.265618173875055, + "grad_norm": 0.21790480613708496, + "learning_rate": 0.0006, + "loss": 3.6268889904022217, + "step": 3259 + }, + { + "epoch": 45.27959807776322, + "grad_norm": 0.22702264785766602, + "learning_rate": 0.0006, + "loss": 3.5972542762756348, + "step": 3260 + }, + { + "epoch": 45.293577981651374, + "grad_norm": 0.22465437650680542, + "learning_rate": 0.0006, + "loss": 3.6339592933654785, + "step": 3261 + }, + { + "epoch": 45.30755788553954, + "grad_norm": 0.21804460883140564, + "learning_rate": 0.0006, + "loss": 3.6062779426574707, + "step": 3262 + }, + { + "epoch": 45.3215377894277, + "grad_norm": 0.1985616534948349, + "learning_rate": 0.0006, + "loss": 3.629815101623535, + "step": 3263 + }, + { + "epoch": 45.33551769331586, + "grad_norm": 0.22264975309371948, + "learning_rate": 0.0006, + "loss": 3.631214141845703, + "step": 3264 + }, + { + "epoch": 45.34949759720402, + "grad_norm": 0.22178539633750916, + "learning_rate": 0.0006, + "loss": 3.620854377746582, + "step": 3265 + }, + { + "epoch": 45.36347750109218, + "grad_norm": 0.22392240166664124, + "learning_rate": 0.0006, + "loss": 3.6611738204956055, + "step": 3266 + }, + { + "epoch": 45.37745740498034, + "grad_norm": 0.2178916484117508, + "learning_rate": 0.0006, + "loss": 3.639893054962158, + "step": 3267 + }, + { + "epoch": 45.391437308868504, + "grad_norm": 0.2173885703086853, + "learning_rate": 0.0006, + "loss": 3.611750364303589, + "step": 3268 + }, + { + "epoch": 45.40541721275666, + "grad_norm": 0.2107069045305252, + "learning_rate": 0.0006, + "loss": 3.595181465148926, + "step": 3269 + }, + { + "epoch": 45.419397116644824, + "grad_norm": 0.19623015820980072, + "learning_rate": 0.0006, + "loss": 3.6096351146698, + "step": 3270 + }, + { + "epoch": 45.43337702053299, + "grad_norm": 0.23091304302215576, + "learning_rate": 0.0006, + "loss": 3.603667974472046, + "step": 3271 + }, + { + "epoch": 45.44735692442114, + "grad_norm": 0.22909007966518402, + "learning_rate": 0.0006, + "loss": 3.62846040725708, + "step": 3272 + }, + { + "epoch": 45.46133682830931, + "grad_norm": 0.2104928195476532, + "learning_rate": 0.0006, + "loss": 3.6543164253234863, + "step": 3273 + }, + { + "epoch": 45.47531673219746, + "grad_norm": 0.22994203865528107, + "learning_rate": 0.0006, + "loss": 3.621878147125244, + "step": 3274 + }, + { + "epoch": 45.489296636085626, + "grad_norm": 0.21652749180793762, + "learning_rate": 0.0006, + "loss": 3.6095705032348633, + "step": 3275 + }, + { + "epoch": 45.50327653997379, + "grad_norm": 0.20125073194503784, + "learning_rate": 0.0006, + "loss": 3.6213903427124023, + "step": 3276 + }, + { + "epoch": 45.517256443861946, + "grad_norm": 0.19995734095573425, + "learning_rate": 0.0006, + "loss": 3.6526503562927246, + "step": 3277 + }, + { + "epoch": 45.53123634775011, + "grad_norm": 0.2071387618780136, + "learning_rate": 0.0006, + "loss": 3.626208782196045, + "step": 3278 + }, + { + "epoch": 45.54521625163827, + "grad_norm": 0.222015842795372, + "learning_rate": 0.0006, + "loss": 3.61144757270813, + "step": 3279 + }, + { + "epoch": 45.55919615552643, + "grad_norm": 0.20780639350414276, + "learning_rate": 0.0006, + "loss": 3.64092755317688, + "step": 3280 + }, + { + "epoch": 45.57317605941459, + "grad_norm": 0.19297364354133606, + "learning_rate": 0.0006, + "loss": 3.6308364868164062, + "step": 3281 + }, + { + "epoch": 45.58715596330275, + "grad_norm": 0.1928786337375641, + "learning_rate": 0.0006, + "loss": 3.6258254051208496, + "step": 3282 + }, + { + "epoch": 45.60113586719091, + "grad_norm": 0.1940007209777832, + "learning_rate": 0.0006, + "loss": 3.622849464416504, + "step": 3283 + }, + { + "epoch": 45.615115771079076, + "grad_norm": 0.19643044471740723, + "learning_rate": 0.0006, + "loss": 3.6461117267608643, + "step": 3284 + }, + { + "epoch": 45.62909567496723, + "grad_norm": 0.19996654987335205, + "learning_rate": 0.0006, + "loss": 3.61572265625, + "step": 3285 + }, + { + "epoch": 45.643075578855395, + "grad_norm": 0.20202603936195374, + "learning_rate": 0.0006, + "loss": 3.610734462738037, + "step": 3286 + }, + { + "epoch": 45.65705548274356, + "grad_norm": 0.19249361753463745, + "learning_rate": 0.0006, + "loss": 3.607048511505127, + "step": 3287 + }, + { + "epoch": 45.671035386631715, + "grad_norm": 0.1894780397415161, + "learning_rate": 0.0006, + "loss": 3.6450905799865723, + "step": 3288 + }, + { + "epoch": 45.68501529051988, + "grad_norm": 0.19901636242866516, + "learning_rate": 0.0006, + "loss": 3.6313018798828125, + "step": 3289 + }, + { + "epoch": 45.69899519440804, + "grad_norm": 0.1875065118074417, + "learning_rate": 0.0006, + "loss": 3.641326427459717, + "step": 3290 + }, + { + "epoch": 45.7129750982962, + "grad_norm": 0.19832095503807068, + "learning_rate": 0.0006, + "loss": 3.6612308025360107, + "step": 3291 + }, + { + "epoch": 45.72695500218436, + "grad_norm": 0.20353806018829346, + "learning_rate": 0.0006, + "loss": 3.623152017593384, + "step": 3292 + }, + { + "epoch": 45.74093490607252, + "grad_norm": 0.1984023153781891, + "learning_rate": 0.0006, + "loss": 3.627358913421631, + "step": 3293 + }, + { + "epoch": 45.75491480996068, + "grad_norm": 0.2002221643924713, + "learning_rate": 0.0006, + "loss": 3.6334757804870605, + "step": 3294 + }, + { + "epoch": 45.768894713848844, + "grad_norm": 0.21099092066287994, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3295 + }, + { + "epoch": 45.782874617737, + "grad_norm": 0.19109416007995605, + "learning_rate": 0.0006, + "loss": 3.62795352935791, + "step": 3296 + }, + { + "epoch": 45.796854521625164, + "grad_norm": 0.18424192070960999, + "learning_rate": 0.0006, + "loss": 3.6151700019836426, + "step": 3297 + }, + { + "epoch": 45.81083442551333, + "grad_norm": 0.20823849737644196, + "learning_rate": 0.0006, + "loss": 3.641907215118408, + "step": 3298 + }, + { + "epoch": 45.824814329401484, + "grad_norm": 0.21407285332679749, + "learning_rate": 0.0006, + "loss": 3.6430726051330566, + "step": 3299 + }, + { + "epoch": 45.83879423328965, + "grad_norm": 0.23493780195713043, + "learning_rate": 0.0006, + "loss": 3.610065460205078, + "step": 3300 + }, + { + "epoch": 45.8527741371778, + "grad_norm": 0.21910642087459564, + "learning_rate": 0.0006, + "loss": 3.630603313446045, + "step": 3301 + }, + { + "epoch": 45.86675404106597, + "grad_norm": 0.1838075965642929, + "learning_rate": 0.0006, + "loss": 3.634315013885498, + "step": 3302 + }, + { + "epoch": 45.88073394495413, + "grad_norm": 0.22131477296352386, + "learning_rate": 0.0006, + "loss": 3.6142020225524902, + "step": 3303 + }, + { + "epoch": 45.89471384884229, + "grad_norm": 0.2497209906578064, + "learning_rate": 0.0006, + "loss": 3.689103126525879, + "step": 3304 + }, + { + "epoch": 45.90869375273045, + "grad_norm": 0.24403175711631775, + "learning_rate": 0.0006, + "loss": 3.6321184635162354, + "step": 3305 + }, + { + "epoch": 45.92267365661861, + "grad_norm": 0.22527103126049042, + "learning_rate": 0.0006, + "loss": 3.6486921310424805, + "step": 3306 + }, + { + "epoch": 45.93665356050677, + "grad_norm": 0.20127955079078674, + "learning_rate": 0.0006, + "loss": 3.6109299659729004, + "step": 3307 + }, + { + "epoch": 45.95063346439493, + "grad_norm": 0.18997317552566528, + "learning_rate": 0.0006, + "loss": 3.6157617568969727, + "step": 3308 + }, + { + "epoch": 45.964613368283096, + "grad_norm": 0.19921870529651642, + "learning_rate": 0.0006, + "loss": 3.691776990890503, + "step": 3309 + }, + { + "epoch": 45.97859327217125, + "grad_norm": 0.2124646008014679, + "learning_rate": 0.0006, + "loss": 3.61795711517334, + "step": 3310 + }, + { + "epoch": 45.992573176059416, + "grad_norm": 0.20002500712871552, + "learning_rate": 0.0006, + "loss": 3.6266353130340576, + "step": 3311 + }, + { + "epoch": 46.0, + "grad_norm": 0.22992220520973206, + "learning_rate": 0.0006, + "loss": 3.647242784500122, + "step": 3312 + }, + { + "epoch": 46.0, + "eval_loss": 3.9855220317840576, + "eval_runtime": 44.9108, + "eval_samples_per_second": 54.374, + "eval_steps_per_second": 3.407, + "step": 3312 + }, + { + "epoch": 46.01397990388816, + "grad_norm": 0.1976146101951599, + "learning_rate": 0.0006, + "loss": 3.5675041675567627, + "step": 3313 + }, + { + "epoch": 46.02795980777632, + "grad_norm": 0.2238360494375229, + "learning_rate": 0.0006, + "loss": 3.6077466011047363, + "step": 3314 + }, + { + "epoch": 46.04193971166448, + "grad_norm": 0.288669228553772, + "learning_rate": 0.0006, + "loss": 3.589958667755127, + "step": 3315 + }, + { + "epoch": 46.05591961555265, + "grad_norm": 0.30626827478408813, + "learning_rate": 0.0006, + "loss": 3.604401111602783, + "step": 3316 + }, + { + "epoch": 46.0698995194408, + "grad_norm": 0.2721095681190491, + "learning_rate": 0.0006, + "loss": 3.620197296142578, + "step": 3317 + }, + { + "epoch": 46.083879423328966, + "grad_norm": 0.2152107059955597, + "learning_rate": 0.0006, + "loss": 3.607327938079834, + "step": 3318 + }, + { + "epoch": 46.09785932721712, + "grad_norm": 0.2205267995595932, + "learning_rate": 0.0006, + "loss": 3.6020898818969727, + "step": 3319 + }, + { + "epoch": 46.111839231105286, + "grad_norm": 0.25419551134109497, + "learning_rate": 0.0006, + "loss": 3.59277606010437, + "step": 3320 + }, + { + "epoch": 46.12581913499345, + "grad_norm": 0.2379811704158783, + "learning_rate": 0.0006, + "loss": 3.560422897338867, + "step": 3321 + }, + { + "epoch": 46.139799038881605, + "grad_norm": 0.20928747951984406, + "learning_rate": 0.0006, + "loss": 3.6373965740203857, + "step": 3322 + }, + { + "epoch": 46.15377894276977, + "grad_norm": 0.21654292941093445, + "learning_rate": 0.0006, + "loss": 3.620784282684326, + "step": 3323 + }, + { + "epoch": 46.16775884665793, + "grad_norm": 0.22994576394557953, + "learning_rate": 0.0006, + "loss": 3.589960813522339, + "step": 3324 + }, + { + "epoch": 46.18173875054609, + "grad_norm": 0.24989335238933563, + "learning_rate": 0.0006, + "loss": 3.599091053009033, + "step": 3325 + }, + { + "epoch": 46.19571865443425, + "grad_norm": 0.27068355679512024, + "learning_rate": 0.0006, + "loss": 3.5933146476745605, + "step": 3326 + }, + { + "epoch": 46.20969855832241, + "grad_norm": 0.2581503391265869, + "learning_rate": 0.0006, + "loss": 3.5935447216033936, + "step": 3327 + }, + { + "epoch": 46.22367846221057, + "grad_norm": 0.23368583619594574, + "learning_rate": 0.0006, + "loss": 3.6120412349700928, + "step": 3328 + }, + { + "epoch": 46.237658366098735, + "grad_norm": 0.21808452904224396, + "learning_rate": 0.0006, + "loss": 3.6155190467834473, + "step": 3329 + }, + { + "epoch": 46.25163826998689, + "grad_norm": 0.2152830809354782, + "learning_rate": 0.0006, + "loss": 3.6039974689483643, + "step": 3330 + }, + { + "epoch": 46.265618173875055, + "grad_norm": 0.20902983844280243, + "learning_rate": 0.0006, + "loss": 3.586416721343994, + "step": 3331 + }, + { + "epoch": 46.27959807776322, + "grad_norm": 0.21693682670593262, + "learning_rate": 0.0006, + "loss": 3.601595401763916, + "step": 3332 + }, + { + "epoch": 46.293577981651374, + "grad_norm": 0.21157346665859222, + "learning_rate": 0.0006, + "loss": 3.619825601577759, + "step": 3333 + }, + { + "epoch": 46.30755788553954, + "grad_norm": 0.19628529250621796, + "learning_rate": 0.0006, + "loss": 3.5845298767089844, + "step": 3334 + }, + { + "epoch": 46.3215377894277, + "grad_norm": 0.19599373638629913, + "learning_rate": 0.0006, + "loss": 3.614483594894409, + "step": 3335 + }, + { + "epoch": 46.33551769331586, + "grad_norm": 0.21777382493019104, + "learning_rate": 0.0006, + "loss": 3.5865678787231445, + "step": 3336 + }, + { + "epoch": 46.34949759720402, + "grad_norm": 0.24697323143482208, + "learning_rate": 0.0006, + "loss": 3.6168298721313477, + "step": 3337 + }, + { + "epoch": 46.36347750109218, + "grad_norm": 0.29521632194519043, + "learning_rate": 0.0006, + "loss": 3.627875804901123, + "step": 3338 + }, + { + "epoch": 46.37745740498034, + "grad_norm": 0.2548002004623413, + "learning_rate": 0.0006, + "loss": 3.6286001205444336, + "step": 3339 + }, + { + "epoch": 46.391437308868504, + "grad_norm": 0.20501002669334412, + "learning_rate": 0.0006, + "loss": 3.625035524368286, + "step": 3340 + }, + { + "epoch": 46.40541721275666, + "grad_norm": 0.21849584579467773, + "learning_rate": 0.0006, + "loss": 3.621872901916504, + "step": 3341 + }, + { + "epoch": 46.419397116644824, + "grad_norm": 0.22302033007144928, + "learning_rate": 0.0006, + "loss": 3.6088266372680664, + "step": 3342 + }, + { + "epoch": 46.43337702053299, + "grad_norm": 0.21138787269592285, + "learning_rate": 0.0006, + "loss": 3.6211094856262207, + "step": 3343 + }, + { + "epoch": 46.44735692442114, + "grad_norm": 0.22372713685035706, + "learning_rate": 0.0006, + "loss": 3.5799427032470703, + "step": 3344 + }, + { + "epoch": 46.46133682830931, + "grad_norm": 0.22019316256046295, + "learning_rate": 0.0006, + "loss": 3.616044044494629, + "step": 3345 + }, + { + "epoch": 46.47531673219746, + "grad_norm": 0.21947625279426575, + "learning_rate": 0.0006, + "loss": 3.613643169403076, + "step": 3346 + }, + { + "epoch": 46.489296636085626, + "grad_norm": 0.21935684978961945, + "learning_rate": 0.0006, + "loss": 3.6255440711975098, + "step": 3347 + }, + { + "epoch": 46.50327653997379, + "grad_norm": 0.20366479456424713, + "learning_rate": 0.0006, + "loss": 3.613892078399658, + "step": 3348 + }, + { + "epoch": 46.517256443861946, + "grad_norm": 0.21755267679691315, + "learning_rate": 0.0006, + "loss": 3.617886543273926, + "step": 3349 + }, + { + "epoch": 46.53123634775011, + "grad_norm": 0.20023910701274872, + "learning_rate": 0.0006, + "loss": 3.6172280311584473, + "step": 3350 + }, + { + "epoch": 46.54521625163827, + "grad_norm": 0.20375007390975952, + "learning_rate": 0.0006, + "loss": 3.595829486846924, + "step": 3351 + }, + { + "epoch": 46.55919615552643, + "grad_norm": 0.21125391125679016, + "learning_rate": 0.0006, + "loss": 3.632533550262451, + "step": 3352 + }, + { + "epoch": 46.57317605941459, + "grad_norm": 0.2359670102596283, + "learning_rate": 0.0006, + "loss": 3.597811222076416, + "step": 3353 + }, + { + "epoch": 46.58715596330275, + "grad_norm": 0.21696777641773224, + "learning_rate": 0.0006, + "loss": 3.627127170562744, + "step": 3354 + }, + { + "epoch": 46.60113586719091, + "grad_norm": 0.21501564979553223, + "learning_rate": 0.0006, + "loss": 3.630887985229492, + "step": 3355 + }, + { + "epoch": 46.615115771079076, + "grad_norm": 0.21446822583675385, + "learning_rate": 0.0006, + "loss": 3.6075234413146973, + "step": 3356 + }, + { + "epoch": 46.62909567496723, + "grad_norm": 0.21508967876434326, + "learning_rate": 0.0006, + "loss": 3.626603603363037, + "step": 3357 + }, + { + "epoch": 46.643075578855395, + "grad_norm": 0.19969215989112854, + "learning_rate": 0.0006, + "loss": 3.6160733699798584, + "step": 3358 + }, + { + "epoch": 46.65705548274356, + "grad_norm": 0.19982007145881653, + "learning_rate": 0.0006, + "loss": 3.632960319519043, + "step": 3359 + }, + { + "epoch": 46.671035386631715, + "grad_norm": 0.1981230527162552, + "learning_rate": 0.0006, + "loss": 3.608591079711914, + "step": 3360 + }, + { + "epoch": 46.68501529051988, + "grad_norm": 0.19948643445968628, + "learning_rate": 0.0006, + "loss": 3.6100947856903076, + "step": 3361 + }, + { + "epoch": 46.69899519440804, + "grad_norm": 0.18967196345329285, + "learning_rate": 0.0006, + "loss": 3.6203439235687256, + "step": 3362 + }, + { + "epoch": 46.7129750982962, + "grad_norm": 0.20035311579704285, + "learning_rate": 0.0006, + "loss": 3.64508056640625, + "step": 3363 + }, + { + "epoch": 46.72695500218436, + "grad_norm": 0.21049824357032776, + "learning_rate": 0.0006, + "loss": 3.620095729827881, + "step": 3364 + }, + { + "epoch": 46.74093490607252, + "grad_norm": 0.21411995589733124, + "learning_rate": 0.0006, + "loss": 3.650815963745117, + "step": 3365 + }, + { + "epoch": 46.75491480996068, + "grad_norm": 0.18666061758995056, + "learning_rate": 0.0006, + "loss": 3.625699758529663, + "step": 3366 + }, + { + "epoch": 46.768894713848844, + "grad_norm": 0.1927071362733841, + "learning_rate": 0.0006, + "loss": 3.6165151596069336, + "step": 3367 + }, + { + "epoch": 46.782874617737, + "grad_norm": 0.2063879817724228, + "learning_rate": 0.0006, + "loss": 3.6182332038879395, + "step": 3368 + }, + { + "epoch": 46.796854521625164, + "grad_norm": 0.19215327501296997, + "learning_rate": 0.0006, + "loss": 3.607239246368408, + "step": 3369 + }, + { + "epoch": 46.81083442551333, + "grad_norm": 0.2074592262506485, + "learning_rate": 0.0006, + "loss": 3.624856948852539, + "step": 3370 + }, + { + "epoch": 46.824814329401484, + "grad_norm": 0.2184106856584549, + "learning_rate": 0.0006, + "loss": 3.628757953643799, + "step": 3371 + }, + { + "epoch": 46.83879423328965, + "grad_norm": 0.2203136682510376, + "learning_rate": 0.0006, + "loss": 3.625958204269409, + "step": 3372 + }, + { + "epoch": 46.8527741371778, + "grad_norm": 0.21920061111450195, + "learning_rate": 0.0006, + "loss": 3.6060733795166016, + "step": 3373 + }, + { + "epoch": 46.86675404106597, + "grad_norm": 0.2122412472963333, + "learning_rate": 0.0006, + "loss": 3.6126952171325684, + "step": 3374 + }, + { + "epoch": 46.88073394495413, + "grad_norm": 0.1971784383058548, + "learning_rate": 0.0006, + "loss": 3.637129783630371, + "step": 3375 + }, + { + "epoch": 46.89471384884229, + "grad_norm": 0.20824873447418213, + "learning_rate": 0.0006, + "loss": 3.62868070602417, + "step": 3376 + }, + { + "epoch": 46.90869375273045, + "grad_norm": 0.20157678425312042, + "learning_rate": 0.0006, + "loss": 3.6321873664855957, + "step": 3377 + }, + { + "epoch": 46.92267365661861, + "grad_norm": 0.1958925426006317, + "learning_rate": 0.0006, + "loss": 3.6513354778289795, + "step": 3378 + }, + { + "epoch": 46.93665356050677, + "grad_norm": 0.1969553828239441, + "learning_rate": 0.0006, + "loss": 3.6346323490142822, + "step": 3379 + }, + { + "epoch": 46.95063346439493, + "grad_norm": 0.19311924278736115, + "learning_rate": 0.0006, + "loss": 3.6673245429992676, + "step": 3380 + }, + { + "epoch": 46.964613368283096, + "grad_norm": 0.20341862738132477, + "learning_rate": 0.0006, + "loss": 3.680025339126587, + "step": 3381 + }, + { + "epoch": 46.97859327217125, + "grad_norm": 0.20667442679405212, + "learning_rate": 0.0006, + "loss": 3.632290840148926, + "step": 3382 + }, + { + "epoch": 46.992573176059416, + "grad_norm": 0.19141609966754913, + "learning_rate": 0.0006, + "loss": 3.659360647201538, + "step": 3383 + }, + { + "epoch": 47.0, + "grad_norm": 0.20981188118457794, + "learning_rate": 0.0006, + "loss": 3.653548240661621, + "step": 3384 + }, + { + "epoch": 47.0, + "eval_loss": 3.9833984375, + "eval_runtime": 44.4693, + "eval_samples_per_second": 54.914, + "eval_steps_per_second": 3.441, + "step": 3384 + }, + { + "epoch": 47.01397990388816, + "grad_norm": 0.1958128660917282, + "learning_rate": 0.0006, + "loss": 3.5778727531433105, + "step": 3385 + }, + { + "epoch": 47.02795980777632, + "grad_norm": 0.19728390872478485, + "learning_rate": 0.0006, + "loss": 3.5827393531799316, + "step": 3386 + }, + { + "epoch": 47.04193971166448, + "grad_norm": 0.18564026057720184, + "learning_rate": 0.0006, + "loss": 3.573071002960205, + "step": 3387 + }, + { + "epoch": 47.05591961555265, + "grad_norm": 0.20563258230686188, + "learning_rate": 0.0006, + "loss": 3.564330577850342, + "step": 3388 + }, + { + "epoch": 47.0698995194408, + "grad_norm": 0.21382158994674683, + "learning_rate": 0.0006, + "loss": 3.5976946353912354, + "step": 3389 + }, + { + "epoch": 47.083879423328966, + "grad_norm": 0.2383693903684616, + "learning_rate": 0.0006, + "loss": 3.5970897674560547, + "step": 3390 + }, + { + "epoch": 47.09785932721712, + "grad_norm": 0.24709449708461761, + "learning_rate": 0.0006, + "loss": 3.613409996032715, + "step": 3391 + }, + { + "epoch": 47.111839231105286, + "grad_norm": 0.2329784333705902, + "learning_rate": 0.0006, + "loss": 3.571023464202881, + "step": 3392 + }, + { + "epoch": 47.12581913499345, + "grad_norm": 0.2096954584121704, + "learning_rate": 0.0006, + "loss": 3.573697090148926, + "step": 3393 + }, + { + "epoch": 47.139799038881605, + "grad_norm": 0.21630050241947174, + "learning_rate": 0.0006, + "loss": 3.6085095405578613, + "step": 3394 + }, + { + "epoch": 47.15377894276977, + "grad_norm": 0.22828878462314606, + "learning_rate": 0.0006, + "loss": 3.605466842651367, + "step": 3395 + }, + { + "epoch": 47.16775884665793, + "grad_norm": 0.24957625567913055, + "learning_rate": 0.0006, + "loss": 3.588324546813965, + "step": 3396 + }, + { + "epoch": 47.18173875054609, + "grad_norm": 0.25446194410324097, + "learning_rate": 0.0006, + "loss": 3.6161458492279053, + "step": 3397 + }, + { + "epoch": 47.19571865443425, + "grad_norm": 0.24938438832759857, + "learning_rate": 0.0006, + "loss": 3.6017847061157227, + "step": 3398 + }, + { + "epoch": 47.20969855832241, + "grad_norm": 0.23318032920360565, + "learning_rate": 0.0006, + "loss": 3.6077046394348145, + "step": 3399 + }, + { + "epoch": 47.22367846221057, + "grad_norm": 0.2179042547941208, + "learning_rate": 0.0006, + "loss": 3.598104953765869, + "step": 3400 + }, + { + "epoch": 47.237658366098735, + "grad_norm": 0.213354229927063, + "learning_rate": 0.0006, + "loss": 3.6328814029693604, + "step": 3401 + }, + { + "epoch": 47.25163826998689, + "grad_norm": 0.23104089498519897, + "learning_rate": 0.0006, + "loss": 3.6161890029907227, + "step": 3402 + }, + { + "epoch": 47.265618173875055, + "grad_norm": 0.22219021618366241, + "learning_rate": 0.0006, + "loss": 3.620314121246338, + "step": 3403 + }, + { + "epoch": 47.27959807776322, + "grad_norm": 0.21618683636188507, + "learning_rate": 0.0006, + "loss": 3.5955371856689453, + "step": 3404 + }, + { + "epoch": 47.293577981651374, + "grad_norm": 0.22280243039131165, + "learning_rate": 0.0006, + "loss": 3.618302345275879, + "step": 3405 + }, + { + "epoch": 47.30755788553954, + "grad_norm": 0.2268427014350891, + "learning_rate": 0.0006, + "loss": 3.6035101413726807, + "step": 3406 + }, + { + "epoch": 47.3215377894277, + "grad_norm": 0.20324429869651794, + "learning_rate": 0.0006, + "loss": 3.612598419189453, + "step": 3407 + }, + { + "epoch": 47.33551769331586, + "grad_norm": 0.19353045523166656, + "learning_rate": 0.0006, + "loss": 3.5951499938964844, + "step": 3408 + }, + { + "epoch": 47.34949759720402, + "grad_norm": 0.19008080661296844, + "learning_rate": 0.0006, + "loss": 3.6177732944488525, + "step": 3409 + }, + { + "epoch": 47.36347750109218, + "grad_norm": 0.19530250132083893, + "learning_rate": 0.0006, + "loss": 3.597903251647949, + "step": 3410 + }, + { + "epoch": 47.37745740498034, + "grad_norm": 0.2083505541086197, + "learning_rate": 0.0006, + "loss": 3.6062350273132324, + "step": 3411 + }, + { + "epoch": 47.391437308868504, + "grad_norm": 0.2241518199443817, + "learning_rate": 0.0006, + "loss": 3.6084704399108887, + "step": 3412 + }, + { + "epoch": 47.40541721275666, + "grad_norm": 0.25763124227523804, + "learning_rate": 0.0006, + "loss": 3.600295066833496, + "step": 3413 + }, + { + "epoch": 47.419397116644824, + "grad_norm": 0.2689114212989807, + "learning_rate": 0.0006, + "loss": 3.648848533630371, + "step": 3414 + }, + { + "epoch": 47.43337702053299, + "grad_norm": 0.30106639862060547, + "learning_rate": 0.0006, + "loss": 3.6248483657836914, + "step": 3415 + }, + { + "epoch": 47.44735692442114, + "grad_norm": 0.31840384006500244, + "learning_rate": 0.0006, + "loss": 3.6256890296936035, + "step": 3416 + }, + { + "epoch": 47.46133682830931, + "grad_norm": 0.2603468894958496, + "learning_rate": 0.0006, + "loss": 3.6225175857543945, + "step": 3417 + }, + { + "epoch": 47.47531673219746, + "grad_norm": 0.33408305048942566, + "learning_rate": 0.0006, + "loss": 3.590303897857666, + "step": 3418 + }, + { + "epoch": 47.489296636085626, + "grad_norm": 0.3677918612957001, + "learning_rate": 0.0006, + "loss": 3.6005120277404785, + "step": 3419 + }, + { + "epoch": 47.50327653997379, + "grad_norm": 0.23077215254306793, + "learning_rate": 0.0006, + "loss": 3.6093883514404297, + "step": 3420 + }, + { + "epoch": 47.517256443861946, + "grad_norm": 0.27272120118141174, + "learning_rate": 0.0006, + "loss": 3.580151081085205, + "step": 3421 + }, + { + "epoch": 47.53123634775011, + "grad_norm": 0.22629371285438538, + "learning_rate": 0.0006, + "loss": 3.6375746726989746, + "step": 3422 + }, + { + "epoch": 47.54521625163827, + "grad_norm": 0.2376468926668167, + "learning_rate": 0.0006, + "loss": 3.6492481231689453, + "step": 3423 + }, + { + "epoch": 47.55919615552643, + "grad_norm": 0.21200433373451233, + "learning_rate": 0.0006, + "loss": 3.6258158683776855, + "step": 3424 + }, + { + "epoch": 47.57317605941459, + "grad_norm": 0.2246236652135849, + "learning_rate": 0.0006, + "loss": 3.6199564933776855, + "step": 3425 + }, + { + "epoch": 47.58715596330275, + "grad_norm": 0.21713437139987946, + "learning_rate": 0.0006, + "loss": 3.638197898864746, + "step": 3426 + }, + { + "epoch": 47.60113586719091, + "grad_norm": 0.1964627057313919, + "learning_rate": 0.0006, + "loss": 3.6334147453308105, + "step": 3427 + }, + { + "epoch": 47.615115771079076, + "grad_norm": 0.21705810725688934, + "learning_rate": 0.0006, + "loss": 3.6298668384552, + "step": 3428 + }, + { + "epoch": 47.62909567496723, + "grad_norm": 0.20376256108283997, + "learning_rate": 0.0006, + "loss": 3.6127166748046875, + "step": 3429 + }, + { + "epoch": 47.643075578855395, + "grad_norm": 0.20046672224998474, + "learning_rate": 0.0006, + "loss": 3.633683681488037, + "step": 3430 + }, + { + "epoch": 47.65705548274356, + "grad_norm": 0.21494409441947937, + "learning_rate": 0.0006, + "loss": 3.635828971862793, + "step": 3431 + }, + { + "epoch": 47.671035386631715, + "grad_norm": 0.24550487101078033, + "learning_rate": 0.0006, + "loss": 3.6056854724884033, + "step": 3432 + }, + { + "epoch": 47.68501529051988, + "grad_norm": 0.24416600167751312, + "learning_rate": 0.0006, + "loss": 3.618785858154297, + "step": 3433 + }, + { + "epoch": 47.69899519440804, + "grad_norm": 0.22872993350028992, + "learning_rate": 0.0006, + "loss": 3.6189026832580566, + "step": 3434 + }, + { + "epoch": 47.7129750982962, + "grad_norm": 0.23609530925750732, + "learning_rate": 0.0006, + "loss": 3.623661518096924, + "step": 3435 + }, + { + "epoch": 47.72695500218436, + "grad_norm": 0.22905564308166504, + "learning_rate": 0.0006, + "loss": 3.6155691146850586, + "step": 3436 + }, + { + "epoch": 47.74093490607252, + "grad_norm": 0.25507304072380066, + "learning_rate": 0.0006, + "loss": 3.5848331451416016, + "step": 3437 + }, + { + "epoch": 47.75491480996068, + "grad_norm": 0.24594344198703766, + "learning_rate": 0.0006, + "loss": 3.588374614715576, + "step": 3438 + }, + { + "epoch": 47.768894713848844, + "grad_norm": 0.23131750524044037, + "learning_rate": 0.0006, + "loss": 3.6164474487304688, + "step": 3439 + }, + { + "epoch": 47.782874617737, + "grad_norm": 0.21967829763889313, + "learning_rate": 0.0006, + "loss": 3.619150161743164, + "step": 3440 + }, + { + "epoch": 47.796854521625164, + "grad_norm": 0.226309135556221, + "learning_rate": 0.0006, + "loss": 3.5946340560913086, + "step": 3441 + }, + { + "epoch": 47.81083442551333, + "grad_norm": 0.23141087591648102, + "learning_rate": 0.0006, + "loss": 3.614711046218872, + "step": 3442 + }, + { + "epoch": 47.824814329401484, + "grad_norm": 0.20917707681655884, + "learning_rate": 0.0006, + "loss": 3.610058307647705, + "step": 3443 + }, + { + "epoch": 47.83879423328965, + "grad_norm": 0.22864583134651184, + "learning_rate": 0.0006, + "loss": 3.6396052837371826, + "step": 3444 + }, + { + "epoch": 47.8527741371778, + "grad_norm": 0.22201144695281982, + "learning_rate": 0.0006, + "loss": 3.6462526321411133, + "step": 3445 + }, + { + "epoch": 47.86675404106597, + "grad_norm": 0.21199125051498413, + "learning_rate": 0.0006, + "loss": 3.6090314388275146, + "step": 3446 + }, + { + "epoch": 47.88073394495413, + "grad_norm": 0.2236194908618927, + "learning_rate": 0.0006, + "loss": 3.6308231353759766, + "step": 3447 + }, + { + "epoch": 47.89471384884229, + "grad_norm": 0.21571075916290283, + "learning_rate": 0.0006, + "loss": 3.5899293422698975, + "step": 3448 + }, + { + "epoch": 47.90869375273045, + "grad_norm": 0.2320997267961502, + "learning_rate": 0.0006, + "loss": 3.6360764503479004, + "step": 3449 + }, + { + "epoch": 47.92267365661861, + "grad_norm": 0.2304147630929947, + "learning_rate": 0.0006, + "loss": 3.61220121383667, + "step": 3450 + }, + { + "epoch": 47.93665356050677, + "grad_norm": 0.2321154624223709, + "learning_rate": 0.0006, + "loss": 3.6104419231414795, + "step": 3451 + }, + { + "epoch": 47.95063346439493, + "grad_norm": 0.20895935595035553, + "learning_rate": 0.0006, + "loss": 3.6372952461242676, + "step": 3452 + }, + { + "epoch": 47.964613368283096, + "grad_norm": 0.19926418364048004, + "learning_rate": 0.0006, + "loss": 3.652947425842285, + "step": 3453 + }, + { + "epoch": 47.97859327217125, + "grad_norm": 0.22443149983882904, + "learning_rate": 0.0006, + "loss": 3.6005635261535645, + "step": 3454 + }, + { + "epoch": 47.992573176059416, + "grad_norm": 0.2361244559288025, + "learning_rate": 0.0006, + "loss": 3.626563549041748, + "step": 3455 + }, + { + "epoch": 48.0, + "grad_norm": 0.2542579174041748, + "learning_rate": 0.0006, + "loss": 3.619098663330078, + "step": 3456 + }, + { + "epoch": 48.0, + "eval_loss": 3.9787564277648926, + "eval_runtime": 44.3429, + "eval_samples_per_second": 55.071, + "eval_steps_per_second": 3.45, + "step": 3456 + }, + { + "epoch": 48.01397990388816, + "grad_norm": 0.21771088242530823, + "learning_rate": 0.0006, + "loss": 3.538780927658081, + "step": 3457 + }, + { + "epoch": 48.02795980777632, + "grad_norm": 0.23467740416526794, + "learning_rate": 0.0006, + "loss": 3.5875978469848633, + "step": 3458 + }, + { + "epoch": 48.04193971166448, + "grad_norm": 0.2527692914009094, + "learning_rate": 0.0006, + "loss": 3.5939159393310547, + "step": 3459 + }, + { + "epoch": 48.05591961555265, + "grad_norm": 0.21477685868740082, + "learning_rate": 0.0006, + "loss": 3.600374698638916, + "step": 3460 + }, + { + "epoch": 48.0698995194408, + "grad_norm": 0.22008976340293884, + "learning_rate": 0.0006, + "loss": 3.6058406829833984, + "step": 3461 + }, + { + "epoch": 48.083879423328966, + "grad_norm": 0.23344817757606506, + "learning_rate": 0.0006, + "loss": 3.5864410400390625, + "step": 3462 + }, + { + "epoch": 48.09785932721712, + "grad_norm": 0.24451610445976257, + "learning_rate": 0.0006, + "loss": 3.5827221870422363, + "step": 3463 + }, + { + "epoch": 48.111839231105286, + "grad_norm": 0.24536925554275513, + "learning_rate": 0.0006, + "loss": 3.566275119781494, + "step": 3464 + }, + { + "epoch": 48.12581913499345, + "grad_norm": 0.24060940742492676, + "learning_rate": 0.0006, + "loss": 3.575841188430786, + "step": 3465 + }, + { + "epoch": 48.139799038881605, + "grad_norm": 0.24829573929309845, + "learning_rate": 0.0006, + "loss": 3.6215152740478516, + "step": 3466 + }, + { + "epoch": 48.15377894276977, + "grad_norm": 0.2651045024394989, + "learning_rate": 0.0006, + "loss": 3.604381561279297, + "step": 3467 + }, + { + "epoch": 48.16775884665793, + "grad_norm": 0.2654518187046051, + "learning_rate": 0.0006, + "loss": 3.5989198684692383, + "step": 3468 + }, + { + "epoch": 48.18173875054609, + "grad_norm": 0.25179797410964966, + "learning_rate": 0.0006, + "loss": 3.596402168273926, + "step": 3469 + }, + { + "epoch": 48.19571865443425, + "grad_norm": 0.24018050730228424, + "learning_rate": 0.0006, + "loss": 3.6376051902770996, + "step": 3470 + }, + { + "epoch": 48.20969855832241, + "grad_norm": 0.22079682350158691, + "learning_rate": 0.0006, + "loss": 3.5990993976593018, + "step": 3471 + }, + { + "epoch": 48.22367846221057, + "grad_norm": 0.23267143964767456, + "learning_rate": 0.0006, + "loss": 3.614759683609009, + "step": 3472 + }, + { + "epoch": 48.237658366098735, + "grad_norm": 0.21822260320186615, + "learning_rate": 0.0006, + "loss": 3.6057262420654297, + "step": 3473 + }, + { + "epoch": 48.25163826998689, + "grad_norm": 0.23391997814178467, + "learning_rate": 0.0006, + "loss": 3.581972599029541, + "step": 3474 + }, + { + "epoch": 48.265618173875055, + "grad_norm": 0.22634121775627136, + "learning_rate": 0.0006, + "loss": 3.592149496078491, + "step": 3475 + }, + { + "epoch": 48.27959807776322, + "grad_norm": 0.2142419070005417, + "learning_rate": 0.0006, + "loss": 3.616722583770752, + "step": 3476 + }, + { + "epoch": 48.293577981651374, + "grad_norm": 0.227144256234169, + "learning_rate": 0.0006, + "loss": 3.6018447875976562, + "step": 3477 + }, + { + "epoch": 48.30755788553954, + "grad_norm": 0.25466978549957275, + "learning_rate": 0.0006, + "loss": 3.5795769691467285, + "step": 3478 + }, + { + "epoch": 48.3215377894277, + "grad_norm": 0.2409234344959259, + "learning_rate": 0.0006, + "loss": 3.5845530033111572, + "step": 3479 + }, + { + "epoch": 48.33551769331586, + "grad_norm": 0.22001305222511292, + "learning_rate": 0.0006, + "loss": 3.5861806869506836, + "step": 3480 + }, + { + "epoch": 48.34949759720402, + "grad_norm": 0.24980100989341736, + "learning_rate": 0.0006, + "loss": 3.6032233238220215, + "step": 3481 + }, + { + "epoch": 48.36347750109218, + "grad_norm": 0.28788816928863525, + "learning_rate": 0.0006, + "loss": 3.5876364707946777, + "step": 3482 + }, + { + "epoch": 48.37745740498034, + "grad_norm": 0.26172295212745667, + "learning_rate": 0.0006, + "loss": 3.5711276531219482, + "step": 3483 + }, + { + "epoch": 48.391437308868504, + "grad_norm": 0.23881542682647705, + "learning_rate": 0.0006, + "loss": 3.57108473777771, + "step": 3484 + }, + { + "epoch": 48.40541721275666, + "grad_norm": 0.22385981678962708, + "learning_rate": 0.0006, + "loss": 3.6197509765625, + "step": 3485 + }, + { + "epoch": 48.419397116644824, + "grad_norm": 0.21007859706878662, + "learning_rate": 0.0006, + "loss": 3.609449625015259, + "step": 3486 + }, + { + "epoch": 48.43337702053299, + "grad_norm": 0.21170279383659363, + "learning_rate": 0.0006, + "loss": 3.5981619358062744, + "step": 3487 + }, + { + "epoch": 48.44735692442114, + "grad_norm": 0.2100721150636673, + "learning_rate": 0.0006, + "loss": 3.606505870819092, + "step": 3488 + }, + { + "epoch": 48.46133682830931, + "grad_norm": 0.20408287644386292, + "learning_rate": 0.0006, + "loss": 3.6033859252929688, + "step": 3489 + }, + { + "epoch": 48.47531673219746, + "grad_norm": 0.20343686640262604, + "learning_rate": 0.0006, + "loss": 3.6249616146087646, + "step": 3490 + }, + { + "epoch": 48.489296636085626, + "grad_norm": 0.20570123195648193, + "learning_rate": 0.0006, + "loss": 3.5700693130493164, + "step": 3491 + }, + { + "epoch": 48.50327653997379, + "grad_norm": 0.2511707544326782, + "learning_rate": 0.0006, + "loss": 3.6432406902313232, + "step": 3492 + }, + { + "epoch": 48.517256443861946, + "grad_norm": 0.265960693359375, + "learning_rate": 0.0006, + "loss": 3.6329426765441895, + "step": 3493 + }, + { + "epoch": 48.53123634775011, + "grad_norm": 0.25830161571502686, + "learning_rate": 0.0006, + "loss": 3.593940258026123, + "step": 3494 + }, + { + "epoch": 48.54521625163827, + "grad_norm": 0.2232893705368042, + "learning_rate": 0.0006, + "loss": 3.623812198638916, + "step": 3495 + }, + { + "epoch": 48.55919615552643, + "grad_norm": 0.20818902552127838, + "learning_rate": 0.0006, + "loss": 3.5982813835144043, + "step": 3496 + }, + { + "epoch": 48.57317605941459, + "grad_norm": 0.2756865918636322, + "learning_rate": 0.0006, + "loss": 3.617436170578003, + "step": 3497 + }, + { + "epoch": 48.58715596330275, + "grad_norm": 0.2361520677804947, + "learning_rate": 0.0006, + "loss": 3.598113536834717, + "step": 3498 + }, + { + "epoch": 48.60113586719091, + "grad_norm": 0.1956835240125656, + "learning_rate": 0.0006, + "loss": 3.581003189086914, + "step": 3499 + }, + { + "epoch": 48.615115771079076, + "grad_norm": 0.2863931953907013, + "learning_rate": 0.0006, + "loss": 3.596768379211426, + "step": 3500 + }, + { + "epoch": 48.62909567496723, + "grad_norm": 0.29865020513534546, + "learning_rate": 0.0006, + "loss": 3.576995372772217, + "step": 3501 + }, + { + "epoch": 48.643075578855395, + "grad_norm": 0.23084872961044312, + "learning_rate": 0.0006, + "loss": 3.6431074142456055, + "step": 3502 + }, + { + "epoch": 48.65705548274356, + "grad_norm": 0.2081640362739563, + "learning_rate": 0.0006, + "loss": 3.6002132892608643, + "step": 3503 + }, + { + "epoch": 48.671035386631715, + "grad_norm": 0.20566335320472717, + "learning_rate": 0.0006, + "loss": 3.62365460395813, + "step": 3504 + }, + { + "epoch": 48.68501529051988, + "grad_norm": 0.2066725790500641, + "learning_rate": 0.0006, + "loss": 3.6063363552093506, + "step": 3505 + }, + { + "epoch": 48.69899519440804, + "grad_norm": 0.19830003380775452, + "learning_rate": 0.0006, + "loss": 3.617750883102417, + "step": 3506 + }, + { + "epoch": 48.7129750982962, + "grad_norm": 0.20409031212329865, + "learning_rate": 0.0006, + "loss": 3.6110005378723145, + "step": 3507 + }, + { + "epoch": 48.72695500218436, + "grad_norm": 0.20836064219474792, + "learning_rate": 0.0006, + "loss": 3.6148147583007812, + "step": 3508 + }, + { + "epoch": 48.74093490607252, + "grad_norm": 0.21660791337490082, + "learning_rate": 0.0006, + "loss": 3.641488790512085, + "step": 3509 + }, + { + "epoch": 48.75491480996068, + "grad_norm": 0.21075023710727692, + "learning_rate": 0.0006, + "loss": 3.6327688694000244, + "step": 3510 + }, + { + "epoch": 48.768894713848844, + "grad_norm": 0.19346074759960175, + "learning_rate": 0.0006, + "loss": 3.6025185585021973, + "step": 3511 + }, + { + "epoch": 48.782874617737, + "grad_norm": 0.20215240120887756, + "learning_rate": 0.0006, + "loss": 3.595707416534424, + "step": 3512 + }, + { + "epoch": 48.796854521625164, + "grad_norm": 0.1913122832775116, + "learning_rate": 0.0006, + "loss": 3.618406295776367, + "step": 3513 + }, + { + "epoch": 48.81083442551333, + "grad_norm": 0.18517033755779266, + "learning_rate": 0.0006, + "loss": 3.6212055683135986, + "step": 3514 + }, + { + "epoch": 48.824814329401484, + "grad_norm": 0.20453064143657684, + "learning_rate": 0.0006, + "loss": 3.5941221714019775, + "step": 3515 + }, + { + "epoch": 48.83879423328965, + "grad_norm": 0.20777031779289246, + "learning_rate": 0.0006, + "loss": 3.630701780319214, + "step": 3516 + }, + { + "epoch": 48.8527741371778, + "grad_norm": 0.23713789880275726, + "learning_rate": 0.0006, + "loss": 3.629256248474121, + "step": 3517 + }, + { + "epoch": 48.86675404106597, + "grad_norm": 0.1945258378982544, + "learning_rate": 0.0006, + "loss": 3.607020854949951, + "step": 3518 + }, + { + "epoch": 48.88073394495413, + "grad_norm": 0.19601863622665405, + "learning_rate": 0.0006, + "loss": 3.6200907230377197, + "step": 3519 + }, + { + "epoch": 48.89471384884229, + "grad_norm": 0.20068836212158203, + "learning_rate": 0.0006, + "loss": 3.58575701713562, + "step": 3520 + }, + { + "epoch": 48.90869375273045, + "grad_norm": 0.21790200471878052, + "learning_rate": 0.0006, + "loss": 3.6451416015625, + "step": 3521 + }, + { + "epoch": 48.92267365661861, + "grad_norm": 0.22265756130218506, + "learning_rate": 0.0006, + "loss": 3.621331214904785, + "step": 3522 + }, + { + "epoch": 48.93665356050677, + "grad_norm": 0.20316730439662933, + "learning_rate": 0.0006, + "loss": 3.614537239074707, + "step": 3523 + }, + { + "epoch": 48.95063346439493, + "grad_norm": 0.20275238156318665, + "learning_rate": 0.0006, + "loss": 3.5913281440734863, + "step": 3524 + }, + { + "epoch": 48.964613368283096, + "grad_norm": 0.20239883661270142, + "learning_rate": 0.0006, + "loss": 3.608638286590576, + "step": 3525 + }, + { + "epoch": 48.97859327217125, + "grad_norm": 0.21154041588306427, + "learning_rate": 0.0006, + "loss": 3.6233115196228027, + "step": 3526 + }, + { + "epoch": 48.992573176059416, + "grad_norm": 0.22368352115154266, + "learning_rate": 0.0006, + "loss": 3.599665880203247, + "step": 3527 + }, + { + "epoch": 49.0, + "grad_norm": 0.2675703763961792, + "learning_rate": 0.0006, + "loss": 3.637458086013794, + "step": 3528 + }, + { + "epoch": 49.0, + "eval_loss": 3.985574245452881, + "eval_runtime": 44.55, + "eval_samples_per_second": 54.815, + "eval_steps_per_second": 3.434, + "step": 3528 + }, + { + "epoch": 49.01397990388816, + "grad_norm": 0.2911863625049591, + "learning_rate": 0.0006, + "loss": 3.606170654296875, + "step": 3529 + }, + { + "epoch": 49.02795980777632, + "grad_norm": 0.26640036702156067, + "learning_rate": 0.0006, + "loss": 3.5662899017333984, + "step": 3530 + }, + { + "epoch": 49.04193971166448, + "grad_norm": 0.23250512778759003, + "learning_rate": 0.0006, + "loss": 3.5928688049316406, + "step": 3531 + }, + { + "epoch": 49.05591961555265, + "grad_norm": 0.2603093385696411, + "learning_rate": 0.0006, + "loss": 3.5702433586120605, + "step": 3532 + }, + { + "epoch": 49.0698995194408, + "grad_norm": 0.2711663246154785, + "learning_rate": 0.0006, + "loss": 3.591977596282959, + "step": 3533 + }, + { + "epoch": 49.083879423328966, + "grad_norm": 0.2536148130893707, + "learning_rate": 0.0006, + "loss": 3.5924272537231445, + "step": 3534 + }, + { + "epoch": 49.09785932721712, + "grad_norm": 0.22995208203792572, + "learning_rate": 0.0006, + "loss": 3.5760092735290527, + "step": 3535 + }, + { + "epoch": 49.111839231105286, + "grad_norm": 0.22327162325382233, + "learning_rate": 0.0006, + "loss": 3.6072137355804443, + "step": 3536 + }, + { + "epoch": 49.12581913499345, + "grad_norm": 0.2256365567445755, + "learning_rate": 0.0006, + "loss": 3.6156117916107178, + "step": 3537 + }, + { + "epoch": 49.139799038881605, + "grad_norm": 0.23647814989089966, + "learning_rate": 0.0006, + "loss": 3.5862512588500977, + "step": 3538 + }, + { + "epoch": 49.15377894276977, + "grad_norm": 0.23442648351192474, + "learning_rate": 0.0006, + "loss": 3.606386184692383, + "step": 3539 + }, + { + "epoch": 49.16775884665793, + "grad_norm": 0.22148385643959045, + "learning_rate": 0.0006, + "loss": 3.5564064979553223, + "step": 3540 + }, + { + "epoch": 49.18173875054609, + "grad_norm": 0.24589644372463226, + "learning_rate": 0.0006, + "loss": 3.5625576972961426, + "step": 3541 + }, + { + "epoch": 49.19571865443425, + "grad_norm": 0.23955261707305908, + "learning_rate": 0.0006, + "loss": 3.617833137512207, + "step": 3542 + }, + { + "epoch": 49.20969855832241, + "grad_norm": 0.2781425416469574, + "learning_rate": 0.0006, + "loss": 3.6153502464294434, + "step": 3543 + }, + { + "epoch": 49.22367846221057, + "grad_norm": 0.2622034549713135, + "learning_rate": 0.0006, + "loss": 3.608530044555664, + "step": 3544 + }, + { + "epoch": 49.237658366098735, + "grad_norm": 0.28407761454582214, + "learning_rate": 0.0006, + "loss": 3.572207450866699, + "step": 3545 + }, + { + "epoch": 49.25163826998689, + "grad_norm": 0.2722281217575073, + "learning_rate": 0.0006, + "loss": 3.591392755508423, + "step": 3546 + }, + { + "epoch": 49.265618173875055, + "grad_norm": 0.20608903467655182, + "learning_rate": 0.0006, + "loss": 3.598421573638916, + "step": 3547 + }, + { + "epoch": 49.27959807776322, + "grad_norm": 0.27233049273490906, + "learning_rate": 0.0006, + "loss": 3.5819201469421387, + "step": 3548 + }, + { + "epoch": 49.293577981651374, + "grad_norm": 0.26182129979133606, + "learning_rate": 0.0006, + "loss": 3.5855109691619873, + "step": 3549 + }, + { + "epoch": 49.30755788553954, + "grad_norm": 0.20255911350250244, + "learning_rate": 0.0006, + "loss": 3.569438934326172, + "step": 3550 + }, + { + "epoch": 49.3215377894277, + "grad_norm": 0.20045310258865356, + "learning_rate": 0.0006, + "loss": 3.5888795852661133, + "step": 3551 + }, + { + "epoch": 49.33551769331586, + "grad_norm": 0.18505392968654633, + "learning_rate": 0.0006, + "loss": 3.565467596054077, + "step": 3552 + }, + { + "epoch": 49.34949759720402, + "grad_norm": 0.2057398110628128, + "learning_rate": 0.0006, + "loss": 3.5850436687469482, + "step": 3553 + }, + { + "epoch": 49.36347750109218, + "grad_norm": 0.20007790625095367, + "learning_rate": 0.0006, + "loss": 3.5963945388793945, + "step": 3554 + }, + { + "epoch": 49.37745740498034, + "grad_norm": 0.179341122508049, + "learning_rate": 0.0006, + "loss": 3.5747077465057373, + "step": 3555 + }, + { + "epoch": 49.391437308868504, + "grad_norm": 0.1978122442960739, + "learning_rate": 0.0006, + "loss": 3.605037212371826, + "step": 3556 + }, + { + "epoch": 49.40541721275666, + "grad_norm": 0.1936761885881424, + "learning_rate": 0.0006, + "loss": 3.6293420791625977, + "step": 3557 + }, + { + "epoch": 49.419397116644824, + "grad_norm": 0.20393748581409454, + "learning_rate": 0.0006, + "loss": 3.5616302490234375, + "step": 3558 + }, + { + "epoch": 49.43337702053299, + "grad_norm": 0.19082997739315033, + "learning_rate": 0.0006, + "loss": 3.605088472366333, + "step": 3559 + }, + { + "epoch": 49.44735692442114, + "grad_norm": 0.19642551243305206, + "learning_rate": 0.0006, + "loss": 3.610870361328125, + "step": 3560 + }, + { + "epoch": 49.46133682830931, + "grad_norm": 0.21815423667430878, + "learning_rate": 0.0006, + "loss": 3.60211181640625, + "step": 3561 + }, + { + "epoch": 49.47531673219746, + "grad_norm": 0.20342762768268585, + "learning_rate": 0.0006, + "loss": 3.597529411315918, + "step": 3562 + }, + { + "epoch": 49.489296636085626, + "grad_norm": 0.19032546877861023, + "learning_rate": 0.0006, + "loss": 3.5728795528411865, + "step": 3563 + }, + { + "epoch": 49.50327653997379, + "grad_norm": 0.18237556517124176, + "learning_rate": 0.0006, + "loss": 3.5983595848083496, + "step": 3564 + }, + { + "epoch": 49.517256443861946, + "grad_norm": 0.20585589110851288, + "learning_rate": 0.0006, + "loss": 3.578320264816284, + "step": 3565 + }, + { + "epoch": 49.53123634775011, + "grad_norm": 0.20158857107162476, + "learning_rate": 0.0006, + "loss": 3.5918798446655273, + "step": 3566 + }, + { + "epoch": 49.54521625163827, + "grad_norm": 0.20195038616657257, + "learning_rate": 0.0006, + "loss": 3.605422258377075, + "step": 3567 + }, + { + "epoch": 49.55919615552643, + "grad_norm": 0.19884084165096283, + "learning_rate": 0.0006, + "loss": 3.5964083671569824, + "step": 3568 + }, + { + "epoch": 49.57317605941459, + "grad_norm": 0.21243083477020264, + "learning_rate": 0.0006, + "loss": 3.5885486602783203, + "step": 3569 + }, + { + "epoch": 49.58715596330275, + "grad_norm": 0.21059481799602509, + "learning_rate": 0.0006, + "loss": 3.572526454925537, + "step": 3570 + }, + { + "epoch": 49.60113586719091, + "grad_norm": 0.20644313097000122, + "learning_rate": 0.0006, + "loss": 3.583679676055908, + "step": 3571 + }, + { + "epoch": 49.615115771079076, + "grad_norm": 0.21343673765659332, + "learning_rate": 0.0006, + "loss": 3.6211650371551514, + "step": 3572 + }, + { + "epoch": 49.62909567496723, + "grad_norm": 0.23395343124866486, + "learning_rate": 0.0006, + "loss": 3.6003336906433105, + "step": 3573 + }, + { + "epoch": 49.643075578855395, + "grad_norm": 0.19978424906730652, + "learning_rate": 0.0006, + "loss": 3.6066763401031494, + "step": 3574 + }, + { + "epoch": 49.65705548274356, + "grad_norm": 0.21529823541641235, + "learning_rate": 0.0006, + "loss": 3.601284980773926, + "step": 3575 + }, + { + "epoch": 49.671035386631715, + "grad_norm": 0.21672746539115906, + "learning_rate": 0.0006, + "loss": 3.6084227561950684, + "step": 3576 + }, + { + "epoch": 49.68501529051988, + "grad_norm": 0.20889638364315033, + "learning_rate": 0.0006, + "loss": 3.591568946838379, + "step": 3577 + }, + { + "epoch": 49.69899519440804, + "grad_norm": 0.1960221230983734, + "learning_rate": 0.0006, + "loss": 3.6180830001831055, + "step": 3578 + }, + { + "epoch": 49.7129750982962, + "grad_norm": 0.19712410867214203, + "learning_rate": 0.0006, + "loss": 3.6197333335876465, + "step": 3579 + }, + { + "epoch": 49.72695500218436, + "grad_norm": 0.20665284991264343, + "learning_rate": 0.0006, + "loss": 3.6251301765441895, + "step": 3580 + }, + { + "epoch": 49.74093490607252, + "grad_norm": 0.21018871665000916, + "learning_rate": 0.0006, + "loss": 3.621973991394043, + "step": 3581 + }, + { + "epoch": 49.75491480996068, + "grad_norm": 0.20777495205402374, + "learning_rate": 0.0006, + "loss": 3.5826358795166016, + "step": 3582 + }, + { + "epoch": 49.768894713848844, + "grad_norm": 0.18880195915699005, + "learning_rate": 0.0006, + "loss": 3.5946998596191406, + "step": 3583 + }, + { + "epoch": 49.782874617737, + "grad_norm": 0.19894644618034363, + "learning_rate": 0.0006, + "loss": 3.5912184715270996, + "step": 3584 + }, + { + "epoch": 49.796854521625164, + "grad_norm": 0.20128944516181946, + "learning_rate": 0.0006, + "loss": 3.6370394229888916, + "step": 3585 + }, + { + "epoch": 49.81083442551333, + "grad_norm": 0.19332024455070496, + "learning_rate": 0.0006, + "loss": 3.619018077850342, + "step": 3586 + }, + { + "epoch": 49.824814329401484, + "grad_norm": 0.19303865730762482, + "learning_rate": 0.0006, + "loss": 3.578667163848877, + "step": 3587 + }, + { + "epoch": 49.83879423328965, + "grad_norm": 0.20154757797718048, + "learning_rate": 0.0006, + "loss": 3.61959171295166, + "step": 3588 + }, + { + "epoch": 49.8527741371778, + "grad_norm": 0.19653639197349548, + "learning_rate": 0.0006, + "loss": 3.6437559127807617, + "step": 3589 + }, + { + "epoch": 49.86675404106597, + "grad_norm": 0.21873407065868378, + "learning_rate": 0.0006, + "loss": 3.6131112575531006, + "step": 3590 + }, + { + "epoch": 49.88073394495413, + "grad_norm": 0.20130383968353271, + "learning_rate": 0.0006, + "loss": 3.624028444290161, + "step": 3591 + }, + { + "epoch": 49.89471384884229, + "grad_norm": 0.20206475257873535, + "learning_rate": 0.0006, + "loss": 3.5997328758239746, + "step": 3592 + }, + { + "epoch": 49.90869375273045, + "grad_norm": 0.20393261313438416, + "learning_rate": 0.0006, + "loss": 3.596066474914551, + "step": 3593 + }, + { + "epoch": 49.92267365661861, + "grad_norm": 0.19703544676303864, + "learning_rate": 0.0006, + "loss": 3.624542713165283, + "step": 3594 + }, + { + "epoch": 49.93665356050677, + "grad_norm": 0.2102314680814743, + "learning_rate": 0.0006, + "loss": 3.6082515716552734, + "step": 3595 + }, + { + "epoch": 49.95063346439493, + "grad_norm": 0.23791316151618958, + "learning_rate": 0.0006, + "loss": 3.6185569763183594, + "step": 3596 + }, + { + "epoch": 49.964613368283096, + "grad_norm": 0.24536125361919403, + "learning_rate": 0.0006, + "loss": 3.599207878112793, + "step": 3597 + }, + { + "epoch": 49.97859327217125, + "grad_norm": 0.23160327970981598, + "learning_rate": 0.0006, + "loss": 3.600921869277954, + "step": 3598 + }, + { + "epoch": 49.992573176059416, + "grad_norm": 0.22740362584590912, + "learning_rate": 0.0006, + "loss": 3.6112914085388184, + "step": 3599 + }, + { + "epoch": 50.0, + "grad_norm": 0.24303272366523743, + "learning_rate": 0.0006, + "loss": 3.6385838985443115, + "step": 3600 + }, + { + "epoch": 50.0, + "eval_loss": 3.9811089038848877, + "eval_runtime": 44.9913, + "eval_samples_per_second": 54.277, + "eval_steps_per_second": 3.401, + "step": 3600 + }, + { + "epoch": 50.01397990388816, + "grad_norm": 0.20118683576583862, + "learning_rate": 0.0006, + "loss": 3.561751127243042, + "step": 3601 + }, + { + "epoch": 50.02795980777632, + "grad_norm": 0.18722538650035858, + "learning_rate": 0.0006, + "loss": 3.5742180347442627, + "step": 3602 + }, + { + "epoch": 50.04193971166448, + "grad_norm": 0.21248385310173035, + "learning_rate": 0.0006, + "loss": 3.5759401321411133, + "step": 3603 + }, + { + "epoch": 50.05591961555265, + "grad_norm": 0.21006572246551514, + "learning_rate": 0.0006, + "loss": 3.5737462043762207, + "step": 3604 + }, + { + "epoch": 50.0698995194408, + "grad_norm": 0.20671233534812927, + "learning_rate": 0.0006, + "loss": 3.548205852508545, + "step": 3605 + }, + { + "epoch": 50.083879423328966, + "grad_norm": 0.20704609155654907, + "learning_rate": 0.0006, + "loss": 3.5862209796905518, + "step": 3606 + }, + { + "epoch": 50.09785932721712, + "grad_norm": 0.20611345767974854, + "learning_rate": 0.0006, + "loss": 3.5696640014648438, + "step": 3607 + }, + { + "epoch": 50.111839231105286, + "grad_norm": 0.20986805856227875, + "learning_rate": 0.0006, + "loss": 3.5755579471588135, + "step": 3608 + }, + { + "epoch": 50.12581913499345, + "grad_norm": 0.21727709472179413, + "learning_rate": 0.0006, + "loss": 3.5967745780944824, + "step": 3609 + }, + { + "epoch": 50.139799038881605, + "grad_norm": 0.21854986250400543, + "learning_rate": 0.0006, + "loss": 3.6115779876708984, + "step": 3610 + }, + { + "epoch": 50.15377894276977, + "grad_norm": 0.22904936969280243, + "learning_rate": 0.0006, + "loss": 3.5639889240264893, + "step": 3611 + }, + { + "epoch": 50.16775884665793, + "grad_norm": 0.23774254322052002, + "learning_rate": 0.0006, + "loss": 3.6023900508880615, + "step": 3612 + }, + { + "epoch": 50.18173875054609, + "grad_norm": 0.21548497676849365, + "learning_rate": 0.0006, + "loss": 3.5722856521606445, + "step": 3613 + }, + { + "epoch": 50.19571865443425, + "grad_norm": 0.20503196120262146, + "learning_rate": 0.0006, + "loss": 3.5899252891540527, + "step": 3614 + }, + { + "epoch": 50.20969855832241, + "grad_norm": 0.22084423899650574, + "learning_rate": 0.0006, + "loss": 3.56020450592041, + "step": 3615 + }, + { + "epoch": 50.22367846221057, + "grad_norm": 0.24276728928089142, + "learning_rate": 0.0006, + "loss": 3.585695743560791, + "step": 3616 + }, + { + "epoch": 50.237658366098735, + "grad_norm": 0.23182106018066406, + "learning_rate": 0.0006, + "loss": 3.580676555633545, + "step": 3617 + }, + { + "epoch": 50.25163826998689, + "grad_norm": 0.2341945767402649, + "learning_rate": 0.0006, + "loss": 3.579713821411133, + "step": 3618 + }, + { + "epoch": 50.265618173875055, + "grad_norm": 0.27971863746643066, + "learning_rate": 0.0006, + "loss": 3.568251371383667, + "step": 3619 + }, + { + "epoch": 50.27959807776322, + "grad_norm": 0.24740517139434814, + "learning_rate": 0.0006, + "loss": 3.5798869132995605, + "step": 3620 + }, + { + "epoch": 50.293577981651374, + "grad_norm": 0.20561005175113678, + "learning_rate": 0.0006, + "loss": 3.5610039234161377, + "step": 3621 + }, + { + "epoch": 50.30755788553954, + "grad_norm": 0.2085379660129547, + "learning_rate": 0.0006, + "loss": 3.5620288848876953, + "step": 3622 + }, + { + "epoch": 50.3215377894277, + "grad_norm": 0.20868757367134094, + "learning_rate": 0.0006, + "loss": 3.6090598106384277, + "step": 3623 + }, + { + "epoch": 50.33551769331586, + "grad_norm": 0.18991491198539734, + "learning_rate": 0.0006, + "loss": 3.55255126953125, + "step": 3624 + }, + { + "epoch": 50.34949759720402, + "grad_norm": 0.24742646515369415, + "learning_rate": 0.0006, + "loss": 3.60585880279541, + "step": 3625 + }, + { + "epoch": 50.36347750109218, + "grad_norm": 0.26971301436424255, + "learning_rate": 0.0006, + "loss": 3.5913054943084717, + "step": 3626 + }, + { + "epoch": 50.37745740498034, + "grad_norm": 0.24294881522655487, + "learning_rate": 0.0006, + "loss": 3.5570878982543945, + "step": 3627 + }, + { + "epoch": 50.391437308868504, + "grad_norm": 0.2194664478302002, + "learning_rate": 0.0006, + "loss": 3.5800397396087646, + "step": 3628 + }, + { + "epoch": 50.40541721275666, + "grad_norm": 0.2148507982492447, + "learning_rate": 0.0006, + "loss": 3.6182782649993896, + "step": 3629 + }, + { + "epoch": 50.419397116644824, + "grad_norm": 0.22235016524791718, + "learning_rate": 0.0006, + "loss": 3.5784103870391846, + "step": 3630 + }, + { + "epoch": 50.43337702053299, + "grad_norm": 0.23176309466362, + "learning_rate": 0.0006, + "loss": 3.559011459350586, + "step": 3631 + }, + { + "epoch": 50.44735692442114, + "grad_norm": 0.2267913520336151, + "learning_rate": 0.0006, + "loss": 3.5854780673980713, + "step": 3632 + }, + { + "epoch": 50.46133682830931, + "grad_norm": 0.22565901279449463, + "learning_rate": 0.0006, + "loss": 3.5891294479370117, + "step": 3633 + }, + { + "epoch": 50.47531673219746, + "grad_norm": 0.23724839091300964, + "learning_rate": 0.0006, + "loss": 3.575702428817749, + "step": 3634 + }, + { + "epoch": 50.489296636085626, + "grad_norm": 0.23679722845554352, + "learning_rate": 0.0006, + "loss": 3.588639259338379, + "step": 3635 + }, + { + "epoch": 50.50327653997379, + "grad_norm": 0.23909232020378113, + "learning_rate": 0.0006, + "loss": 3.5828709602355957, + "step": 3636 + }, + { + "epoch": 50.517256443861946, + "grad_norm": 0.24186119437217712, + "learning_rate": 0.0006, + "loss": 3.596708059310913, + "step": 3637 + }, + { + "epoch": 50.53123634775011, + "grad_norm": 0.2325516790151596, + "learning_rate": 0.0006, + "loss": 3.610769510269165, + "step": 3638 + }, + { + "epoch": 50.54521625163827, + "grad_norm": 0.205137237906456, + "learning_rate": 0.0006, + "loss": 3.612844228744507, + "step": 3639 + }, + { + "epoch": 50.55919615552643, + "grad_norm": 0.20860300958156586, + "learning_rate": 0.0006, + "loss": 3.623669147491455, + "step": 3640 + }, + { + "epoch": 50.57317605941459, + "grad_norm": 0.20029069483280182, + "learning_rate": 0.0006, + "loss": 3.6108334064483643, + "step": 3641 + }, + { + "epoch": 50.58715596330275, + "grad_norm": 0.18841931223869324, + "learning_rate": 0.0006, + "loss": 3.6073007583618164, + "step": 3642 + }, + { + "epoch": 50.60113586719091, + "grad_norm": 0.20113889873027802, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3643 + }, + { + "epoch": 50.615115771079076, + "grad_norm": 0.23595206439495087, + "learning_rate": 0.0006, + "loss": 3.634650707244873, + "step": 3644 + }, + { + "epoch": 50.62909567496723, + "grad_norm": 0.24625661969184875, + "learning_rate": 0.0006, + "loss": 3.593716621398926, + "step": 3645 + }, + { + "epoch": 50.643075578855395, + "grad_norm": 0.2182614505290985, + "learning_rate": 0.0006, + "loss": 3.6006946563720703, + "step": 3646 + }, + { + "epoch": 50.65705548274356, + "grad_norm": 0.20867182314395905, + "learning_rate": 0.0006, + "loss": 3.6249008178710938, + "step": 3647 + }, + { + "epoch": 50.671035386631715, + "grad_norm": 0.20451945066452026, + "learning_rate": 0.0006, + "loss": 3.5870985984802246, + "step": 3648 + }, + { + "epoch": 50.68501529051988, + "grad_norm": 0.19160118699073792, + "learning_rate": 0.0006, + "loss": 3.6104488372802734, + "step": 3649 + }, + { + "epoch": 50.69899519440804, + "grad_norm": 0.18884453177452087, + "learning_rate": 0.0006, + "loss": 3.607893943786621, + "step": 3650 + }, + { + "epoch": 50.7129750982962, + "grad_norm": 0.19570060074329376, + "learning_rate": 0.0006, + "loss": 3.5938732624053955, + "step": 3651 + }, + { + "epoch": 50.72695500218436, + "grad_norm": 0.21978189051151276, + "learning_rate": 0.0006, + "loss": 3.5894908905029297, + "step": 3652 + }, + { + "epoch": 50.74093490607252, + "grad_norm": 0.19930903613567352, + "learning_rate": 0.0006, + "loss": 3.6067557334899902, + "step": 3653 + }, + { + "epoch": 50.75491480996068, + "grad_norm": 0.19450204074382782, + "learning_rate": 0.0006, + "loss": 3.5989646911621094, + "step": 3654 + }, + { + "epoch": 50.768894713848844, + "grad_norm": 0.1925407201051712, + "learning_rate": 0.0006, + "loss": 3.604339599609375, + "step": 3655 + }, + { + "epoch": 50.782874617737, + "grad_norm": 0.19232864677906036, + "learning_rate": 0.0006, + "loss": 3.5789241790771484, + "step": 3656 + }, + { + "epoch": 50.796854521625164, + "grad_norm": 0.1937529742717743, + "learning_rate": 0.0006, + "loss": 3.6060590744018555, + "step": 3657 + }, + { + "epoch": 50.81083442551333, + "grad_norm": 0.19863007962703705, + "learning_rate": 0.0006, + "loss": 3.5944440364837646, + "step": 3658 + }, + { + "epoch": 50.824814329401484, + "grad_norm": 0.18879804015159607, + "learning_rate": 0.0006, + "loss": 3.6017069816589355, + "step": 3659 + }, + { + "epoch": 50.83879423328965, + "grad_norm": 0.20111720263957977, + "learning_rate": 0.0006, + "loss": 3.593327522277832, + "step": 3660 + }, + { + "epoch": 50.8527741371778, + "grad_norm": 0.22593358159065247, + "learning_rate": 0.0006, + "loss": 3.5856096744537354, + "step": 3661 + }, + { + "epoch": 50.86675404106597, + "grad_norm": 0.22624441981315613, + "learning_rate": 0.0006, + "loss": 3.6144661903381348, + "step": 3662 + }, + { + "epoch": 50.88073394495413, + "grad_norm": 0.22052904963493347, + "learning_rate": 0.0006, + "loss": 3.5895116329193115, + "step": 3663 + }, + { + "epoch": 50.89471384884229, + "grad_norm": 0.2248559594154358, + "learning_rate": 0.0006, + "loss": 3.6400208473205566, + "step": 3664 + }, + { + "epoch": 50.90869375273045, + "grad_norm": 0.20209142565727234, + "learning_rate": 0.0006, + "loss": 3.6059279441833496, + "step": 3665 + }, + { + "epoch": 50.92267365661861, + "grad_norm": 0.2075854390859604, + "learning_rate": 0.0006, + "loss": 3.590074062347412, + "step": 3666 + }, + { + "epoch": 50.93665356050677, + "grad_norm": 0.20524698495864868, + "learning_rate": 0.0006, + "loss": 3.600741147994995, + "step": 3667 + }, + { + "epoch": 50.95063346439493, + "grad_norm": 0.1922466903924942, + "learning_rate": 0.0006, + "loss": 3.5984225273132324, + "step": 3668 + }, + { + "epoch": 50.964613368283096, + "grad_norm": 0.18852637708187103, + "learning_rate": 0.0006, + "loss": 3.6204333305358887, + "step": 3669 + }, + { + "epoch": 50.97859327217125, + "grad_norm": 0.22050459682941437, + "learning_rate": 0.0006, + "loss": 3.6371538639068604, + "step": 3670 + }, + { + "epoch": 50.992573176059416, + "grad_norm": 0.21477681398391724, + "learning_rate": 0.0006, + "loss": 3.608738899230957, + "step": 3671 + }, + { + "epoch": 51.0, + "grad_norm": 0.22061094641685486, + "learning_rate": 0.0006, + "loss": 3.6209959983825684, + "step": 3672 + }, + { + "epoch": 51.0, + "eval_loss": 3.9762842655181885, + "eval_runtime": 44.8353, + "eval_samples_per_second": 54.466, + "eval_steps_per_second": 3.412, + "step": 3672 + }, + { + "epoch": 51.01397990388816, + "grad_norm": 0.19009192287921906, + "learning_rate": 0.0006, + "loss": 3.5604426860809326, + "step": 3673 + }, + { + "epoch": 51.02795980777632, + "grad_norm": 0.2217264175415039, + "learning_rate": 0.0006, + "loss": 3.5595664978027344, + "step": 3674 + }, + { + "epoch": 51.04193971166448, + "grad_norm": 0.2747595012187958, + "learning_rate": 0.0006, + "loss": 3.5800085067749023, + "step": 3675 + }, + { + "epoch": 51.05591961555265, + "grad_norm": 0.26963043212890625, + "learning_rate": 0.0006, + "loss": 3.5529065132141113, + "step": 3676 + }, + { + "epoch": 51.0698995194408, + "grad_norm": 0.2304207682609558, + "learning_rate": 0.0006, + "loss": 3.585238456726074, + "step": 3677 + }, + { + "epoch": 51.083879423328966, + "grad_norm": 0.22073867917060852, + "learning_rate": 0.0006, + "loss": 3.542267322540283, + "step": 3678 + }, + { + "epoch": 51.09785932721712, + "grad_norm": 0.22550931572914124, + "learning_rate": 0.0006, + "loss": 3.5693743228912354, + "step": 3679 + }, + { + "epoch": 51.111839231105286, + "grad_norm": 0.2347114384174347, + "learning_rate": 0.0006, + "loss": 3.5830154418945312, + "step": 3680 + }, + { + "epoch": 51.12581913499345, + "grad_norm": 0.24889813363552094, + "learning_rate": 0.0006, + "loss": 3.581010341644287, + "step": 3681 + }, + { + "epoch": 51.139799038881605, + "grad_norm": 0.2401021122932434, + "learning_rate": 0.0006, + "loss": 3.619450092315674, + "step": 3682 + }, + { + "epoch": 51.15377894276977, + "grad_norm": 0.22221142053604126, + "learning_rate": 0.0006, + "loss": 3.573624610900879, + "step": 3683 + }, + { + "epoch": 51.16775884665793, + "grad_norm": 0.2429024577140808, + "learning_rate": 0.0006, + "loss": 3.548610210418701, + "step": 3684 + }, + { + "epoch": 51.18173875054609, + "grad_norm": 0.26470765471458435, + "learning_rate": 0.0006, + "loss": 3.5582218170166016, + "step": 3685 + }, + { + "epoch": 51.19571865443425, + "grad_norm": 0.2632715404033661, + "learning_rate": 0.0006, + "loss": 3.5976979732513428, + "step": 3686 + }, + { + "epoch": 51.20969855832241, + "grad_norm": 0.2567448616027832, + "learning_rate": 0.0006, + "loss": 3.592031478881836, + "step": 3687 + }, + { + "epoch": 51.22367846221057, + "grad_norm": 0.25299885869026184, + "learning_rate": 0.0006, + "loss": 3.579765796661377, + "step": 3688 + }, + { + "epoch": 51.237658366098735, + "grad_norm": 0.22765189409255981, + "learning_rate": 0.0006, + "loss": 3.5677521228790283, + "step": 3689 + }, + { + "epoch": 51.25163826998689, + "grad_norm": 0.23369887471199036, + "learning_rate": 0.0006, + "loss": 3.585879325866699, + "step": 3690 + }, + { + "epoch": 51.265618173875055, + "grad_norm": 0.21358822286128998, + "learning_rate": 0.0006, + "loss": 3.568866729736328, + "step": 3691 + }, + { + "epoch": 51.27959807776322, + "grad_norm": 0.2127659171819687, + "learning_rate": 0.0006, + "loss": 3.614520311355591, + "step": 3692 + }, + { + "epoch": 51.293577981651374, + "grad_norm": 0.22829636931419373, + "learning_rate": 0.0006, + "loss": 3.6004438400268555, + "step": 3693 + }, + { + "epoch": 51.30755788553954, + "grad_norm": 0.223104789853096, + "learning_rate": 0.0006, + "loss": 3.5791001319885254, + "step": 3694 + }, + { + "epoch": 51.3215377894277, + "grad_norm": 0.2084331065416336, + "learning_rate": 0.0006, + "loss": 3.572514295578003, + "step": 3695 + }, + { + "epoch": 51.33551769331586, + "grad_norm": 0.21115142107009888, + "learning_rate": 0.0006, + "loss": 3.5736331939697266, + "step": 3696 + }, + { + "epoch": 51.34949759720402, + "grad_norm": 0.2158546894788742, + "learning_rate": 0.0006, + "loss": 3.587161064147949, + "step": 3697 + }, + { + "epoch": 51.36347750109218, + "grad_norm": 0.2478281408548355, + "learning_rate": 0.0006, + "loss": 3.5879693031311035, + "step": 3698 + }, + { + "epoch": 51.37745740498034, + "grad_norm": 0.25137850642204285, + "learning_rate": 0.0006, + "loss": 3.58297061920166, + "step": 3699 + }, + { + "epoch": 51.391437308868504, + "grad_norm": 0.22961364686489105, + "learning_rate": 0.0006, + "loss": 3.5556459426879883, + "step": 3700 + }, + { + "epoch": 51.40541721275666, + "grad_norm": 0.22561277449131012, + "learning_rate": 0.0006, + "loss": 3.60197114944458, + "step": 3701 + }, + { + "epoch": 51.419397116644824, + "grad_norm": 0.20331767201423645, + "learning_rate": 0.0006, + "loss": 3.5815134048461914, + "step": 3702 + }, + { + "epoch": 51.43337702053299, + "grad_norm": 0.1941518634557724, + "learning_rate": 0.0006, + "loss": 3.6055145263671875, + "step": 3703 + }, + { + "epoch": 51.44735692442114, + "grad_norm": 0.19306789338588715, + "learning_rate": 0.0006, + "loss": 3.6101536750793457, + "step": 3704 + }, + { + "epoch": 51.46133682830931, + "grad_norm": 0.1830628365278244, + "learning_rate": 0.0006, + "loss": 3.5978426933288574, + "step": 3705 + }, + { + "epoch": 51.47531673219746, + "grad_norm": 0.19231490790843964, + "learning_rate": 0.0006, + "loss": 3.54502534866333, + "step": 3706 + }, + { + "epoch": 51.489296636085626, + "grad_norm": 0.19109117984771729, + "learning_rate": 0.0006, + "loss": 3.5957441329956055, + "step": 3707 + }, + { + "epoch": 51.50327653997379, + "grad_norm": 0.2032860815525055, + "learning_rate": 0.0006, + "loss": 3.5626730918884277, + "step": 3708 + }, + { + "epoch": 51.517256443861946, + "grad_norm": 0.19685189425945282, + "learning_rate": 0.0006, + "loss": 3.580399990081787, + "step": 3709 + }, + { + "epoch": 51.53123634775011, + "grad_norm": 0.19273017346858978, + "learning_rate": 0.0006, + "loss": 3.5428152084350586, + "step": 3710 + }, + { + "epoch": 51.54521625163827, + "grad_norm": 0.20198430120944977, + "learning_rate": 0.0006, + "loss": 3.607492446899414, + "step": 3711 + }, + { + "epoch": 51.55919615552643, + "grad_norm": 0.2267402559518814, + "learning_rate": 0.0006, + "loss": 3.580479621887207, + "step": 3712 + }, + { + "epoch": 51.57317605941459, + "grad_norm": 0.2247764617204666, + "learning_rate": 0.0006, + "loss": 3.5921316146850586, + "step": 3713 + }, + { + "epoch": 51.58715596330275, + "grad_norm": 0.23907902836799622, + "learning_rate": 0.0006, + "loss": 3.6014928817749023, + "step": 3714 + }, + { + "epoch": 51.60113586719091, + "grad_norm": 0.25907906889915466, + "learning_rate": 0.0006, + "loss": 3.5900192260742188, + "step": 3715 + }, + { + "epoch": 51.615115771079076, + "grad_norm": 0.26282405853271484, + "learning_rate": 0.0006, + "loss": 3.5727553367614746, + "step": 3716 + }, + { + "epoch": 51.62909567496723, + "grad_norm": 0.2541179060935974, + "learning_rate": 0.0006, + "loss": 3.5835776329040527, + "step": 3717 + }, + { + "epoch": 51.643075578855395, + "grad_norm": 0.23372016847133636, + "learning_rate": 0.0006, + "loss": 3.5902652740478516, + "step": 3718 + }, + { + "epoch": 51.65705548274356, + "grad_norm": 0.22827622294425964, + "learning_rate": 0.0006, + "loss": 3.6048200130462646, + "step": 3719 + }, + { + "epoch": 51.671035386631715, + "grad_norm": 0.21026845276355743, + "learning_rate": 0.0006, + "loss": 3.5587573051452637, + "step": 3720 + }, + { + "epoch": 51.68501529051988, + "grad_norm": 0.23485958576202393, + "learning_rate": 0.0006, + "loss": 3.6212477684020996, + "step": 3721 + }, + { + "epoch": 51.69899519440804, + "grad_norm": 0.2676871120929718, + "learning_rate": 0.0006, + "loss": 3.597837448120117, + "step": 3722 + }, + { + "epoch": 51.7129750982962, + "grad_norm": 0.23661476373672485, + "learning_rate": 0.0006, + "loss": 3.616079330444336, + "step": 3723 + }, + { + "epoch": 51.72695500218436, + "grad_norm": 0.2212267816066742, + "learning_rate": 0.0006, + "loss": 3.6103296279907227, + "step": 3724 + }, + { + "epoch": 51.74093490607252, + "grad_norm": 0.22888682782649994, + "learning_rate": 0.0006, + "loss": 3.6099889278411865, + "step": 3725 + }, + { + "epoch": 51.75491480996068, + "grad_norm": 0.21740387380123138, + "learning_rate": 0.0006, + "loss": 3.5859200954437256, + "step": 3726 + }, + { + "epoch": 51.768894713848844, + "grad_norm": 0.20819106698036194, + "learning_rate": 0.0006, + "loss": 3.5875396728515625, + "step": 3727 + }, + { + "epoch": 51.782874617737, + "grad_norm": 0.21574485301971436, + "learning_rate": 0.0006, + "loss": 3.6203761100769043, + "step": 3728 + }, + { + "epoch": 51.796854521625164, + "grad_norm": 0.21275651454925537, + "learning_rate": 0.0006, + "loss": 3.6066012382507324, + "step": 3729 + }, + { + "epoch": 51.81083442551333, + "grad_norm": 0.2043808251619339, + "learning_rate": 0.0006, + "loss": 3.571417808532715, + "step": 3730 + }, + { + "epoch": 51.824814329401484, + "grad_norm": 0.2082396298646927, + "learning_rate": 0.0006, + "loss": 3.6076579093933105, + "step": 3731 + }, + { + "epoch": 51.83879423328965, + "grad_norm": 0.23331953585147858, + "learning_rate": 0.0006, + "loss": 3.621837615966797, + "step": 3732 + }, + { + "epoch": 51.8527741371778, + "grad_norm": 0.25569960474967957, + "learning_rate": 0.0006, + "loss": 3.602004051208496, + "step": 3733 + }, + { + "epoch": 51.86675404106597, + "grad_norm": 0.230540469288826, + "learning_rate": 0.0006, + "loss": 3.5829110145568848, + "step": 3734 + }, + { + "epoch": 51.88073394495413, + "grad_norm": 0.20307230949401855, + "learning_rate": 0.0006, + "loss": 3.5572190284729004, + "step": 3735 + }, + { + "epoch": 51.89471384884229, + "grad_norm": 0.20902153849601746, + "learning_rate": 0.0006, + "loss": 3.5939853191375732, + "step": 3736 + }, + { + "epoch": 51.90869375273045, + "grad_norm": 0.20433510839939117, + "learning_rate": 0.0006, + "loss": 3.6104702949523926, + "step": 3737 + }, + { + "epoch": 51.92267365661861, + "grad_norm": 0.2285638302564621, + "learning_rate": 0.0006, + "loss": 3.5588834285736084, + "step": 3738 + }, + { + "epoch": 51.93665356050677, + "grad_norm": 0.2388262301683426, + "learning_rate": 0.0006, + "loss": 3.6203103065490723, + "step": 3739 + }, + { + "epoch": 51.95063346439493, + "grad_norm": 0.22572419047355652, + "learning_rate": 0.0006, + "loss": 3.6191892623901367, + "step": 3740 + }, + { + "epoch": 51.964613368283096, + "grad_norm": 0.21060727536678314, + "learning_rate": 0.0006, + "loss": 3.620879650115967, + "step": 3741 + }, + { + "epoch": 51.97859327217125, + "grad_norm": 0.2045326828956604, + "learning_rate": 0.0006, + "loss": 3.5959091186523438, + "step": 3742 + }, + { + "epoch": 51.992573176059416, + "grad_norm": 0.21882471442222595, + "learning_rate": 0.0006, + "loss": 3.6504573822021484, + "step": 3743 + }, + { + "epoch": 52.0, + "grad_norm": 0.24379056692123413, + "learning_rate": 0.0006, + "loss": 3.6293625831604004, + "step": 3744 + }, + { + "epoch": 52.0, + "eval_loss": 3.9772427082061768, + "eval_runtime": 44.248, + "eval_samples_per_second": 55.189, + "eval_steps_per_second": 3.458, + "step": 3744 + }, + { + "epoch": 52.01397990388816, + "grad_norm": 0.19682207703590393, + "learning_rate": 0.0006, + "loss": 3.604281425476074, + "step": 3745 + }, + { + "epoch": 52.02795980777632, + "grad_norm": 0.23003028333187103, + "learning_rate": 0.0006, + "loss": 3.588266372680664, + "step": 3746 + }, + { + "epoch": 52.04193971166448, + "grad_norm": 0.2458166778087616, + "learning_rate": 0.0006, + "loss": 3.59077787399292, + "step": 3747 + }, + { + "epoch": 52.05591961555265, + "grad_norm": 0.23873521387577057, + "learning_rate": 0.0006, + "loss": 3.556537628173828, + "step": 3748 + }, + { + "epoch": 52.0698995194408, + "grad_norm": 0.21737053990364075, + "learning_rate": 0.0006, + "loss": 3.5758891105651855, + "step": 3749 + }, + { + "epoch": 52.083879423328966, + "grad_norm": 0.22239601612091064, + "learning_rate": 0.0006, + "loss": 3.552678346633911, + "step": 3750 + }, + { + "epoch": 52.09785932721712, + "grad_norm": 0.21818044781684875, + "learning_rate": 0.0006, + "loss": 3.577249526977539, + "step": 3751 + }, + { + "epoch": 52.111839231105286, + "grad_norm": 0.24513746798038483, + "learning_rate": 0.0006, + "loss": 3.569178581237793, + "step": 3752 + }, + { + "epoch": 52.12581913499345, + "grad_norm": 0.2801238000392914, + "learning_rate": 0.0006, + "loss": 3.556199073791504, + "step": 3753 + }, + { + "epoch": 52.139799038881605, + "grad_norm": 0.2722291648387909, + "learning_rate": 0.0006, + "loss": 3.5571072101593018, + "step": 3754 + }, + { + "epoch": 52.15377894276977, + "grad_norm": 0.2146541327238083, + "learning_rate": 0.0006, + "loss": 3.5831902027130127, + "step": 3755 + }, + { + "epoch": 52.16775884665793, + "grad_norm": 0.21040776371955872, + "learning_rate": 0.0006, + "loss": 3.6021504402160645, + "step": 3756 + }, + { + "epoch": 52.18173875054609, + "grad_norm": 0.24059702455997467, + "learning_rate": 0.0006, + "loss": 3.57401704788208, + "step": 3757 + }, + { + "epoch": 52.19571865443425, + "grad_norm": 0.25043657422065735, + "learning_rate": 0.0006, + "loss": 3.5776405334472656, + "step": 3758 + }, + { + "epoch": 52.20969855832241, + "grad_norm": 0.24292849004268646, + "learning_rate": 0.0006, + "loss": 3.5602574348449707, + "step": 3759 + }, + { + "epoch": 52.22367846221057, + "grad_norm": 0.2159980833530426, + "learning_rate": 0.0006, + "loss": 3.552079200744629, + "step": 3760 + }, + { + "epoch": 52.237658366098735, + "grad_norm": 0.19305892288684845, + "learning_rate": 0.0006, + "loss": 3.581195831298828, + "step": 3761 + }, + { + "epoch": 52.25163826998689, + "grad_norm": 0.2115706503391266, + "learning_rate": 0.0006, + "loss": 3.5689306259155273, + "step": 3762 + }, + { + "epoch": 52.265618173875055, + "grad_norm": 0.21885409951210022, + "learning_rate": 0.0006, + "loss": 3.5549206733703613, + "step": 3763 + }, + { + "epoch": 52.27959807776322, + "grad_norm": 0.2069413661956787, + "learning_rate": 0.0006, + "loss": 3.5743770599365234, + "step": 3764 + }, + { + "epoch": 52.293577981651374, + "grad_norm": 0.21922551095485687, + "learning_rate": 0.0006, + "loss": 3.5780110359191895, + "step": 3765 + }, + { + "epoch": 52.30755788553954, + "grad_norm": 0.21675541996955872, + "learning_rate": 0.0006, + "loss": 3.575730800628662, + "step": 3766 + }, + { + "epoch": 52.3215377894277, + "grad_norm": 0.21250510215759277, + "learning_rate": 0.0006, + "loss": 3.546060085296631, + "step": 3767 + }, + { + "epoch": 52.33551769331586, + "grad_norm": 0.23665618896484375, + "learning_rate": 0.0006, + "loss": 3.5887606143951416, + "step": 3768 + }, + { + "epoch": 52.34949759720402, + "grad_norm": 0.2525961399078369, + "learning_rate": 0.0006, + "loss": 3.5885281562805176, + "step": 3769 + }, + { + "epoch": 52.36347750109218, + "grad_norm": 0.26285895705223083, + "learning_rate": 0.0006, + "loss": 3.5880684852600098, + "step": 3770 + }, + { + "epoch": 52.37745740498034, + "grad_norm": 0.24714398384094238, + "learning_rate": 0.0006, + "loss": 3.548165798187256, + "step": 3771 + }, + { + "epoch": 52.391437308868504, + "grad_norm": 0.2234657257795334, + "learning_rate": 0.0006, + "loss": 3.56547212600708, + "step": 3772 + }, + { + "epoch": 52.40541721275666, + "grad_norm": 0.20636901259422302, + "learning_rate": 0.0006, + "loss": 3.5702133178710938, + "step": 3773 + }, + { + "epoch": 52.419397116644824, + "grad_norm": 0.20656965672969818, + "learning_rate": 0.0006, + "loss": 3.614602565765381, + "step": 3774 + }, + { + "epoch": 52.43337702053299, + "grad_norm": 0.20018167793750763, + "learning_rate": 0.0006, + "loss": 3.6063036918640137, + "step": 3775 + }, + { + "epoch": 52.44735692442114, + "grad_norm": 0.21859782934188843, + "learning_rate": 0.0006, + "loss": 3.5728869438171387, + "step": 3776 + }, + { + "epoch": 52.46133682830931, + "grad_norm": 0.21622174978256226, + "learning_rate": 0.0006, + "loss": 3.5657505989074707, + "step": 3777 + }, + { + "epoch": 52.47531673219746, + "grad_norm": 0.19779632985591888, + "learning_rate": 0.0006, + "loss": 3.5841145515441895, + "step": 3778 + }, + { + "epoch": 52.489296636085626, + "grad_norm": 0.21635952591896057, + "learning_rate": 0.0006, + "loss": 3.582096576690674, + "step": 3779 + }, + { + "epoch": 52.50327653997379, + "grad_norm": 0.21348397433757782, + "learning_rate": 0.0006, + "loss": 3.5654468536376953, + "step": 3780 + }, + { + "epoch": 52.517256443861946, + "grad_norm": 0.19572246074676514, + "learning_rate": 0.0006, + "loss": 3.5806241035461426, + "step": 3781 + }, + { + "epoch": 52.53123634775011, + "grad_norm": 0.1887553185224533, + "learning_rate": 0.0006, + "loss": 3.5752944946289062, + "step": 3782 + }, + { + "epoch": 52.54521625163827, + "grad_norm": 0.2192932814359665, + "learning_rate": 0.0006, + "loss": 3.5846266746520996, + "step": 3783 + }, + { + "epoch": 52.55919615552643, + "grad_norm": 0.23833444714546204, + "learning_rate": 0.0006, + "loss": 3.563093900680542, + "step": 3784 + }, + { + "epoch": 52.57317605941459, + "grad_norm": 0.26471760869026184, + "learning_rate": 0.0006, + "loss": 3.5582051277160645, + "step": 3785 + }, + { + "epoch": 52.58715596330275, + "grad_norm": 0.2767478823661804, + "learning_rate": 0.0006, + "loss": 3.5650997161865234, + "step": 3786 + }, + { + "epoch": 52.60113586719091, + "grad_norm": 0.26556241512298584, + "learning_rate": 0.0006, + "loss": 3.5944058895111084, + "step": 3787 + }, + { + "epoch": 52.615115771079076, + "grad_norm": 0.2733243405818939, + "learning_rate": 0.0006, + "loss": 3.5781195163726807, + "step": 3788 + }, + { + "epoch": 52.62909567496723, + "grad_norm": 0.24836041033267975, + "learning_rate": 0.0006, + "loss": 3.582634687423706, + "step": 3789 + }, + { + "epoch": 52.643075578855395, + "grad_norm": 0.2119593471288681, + "learning_rate": 0.0006, + "loss": 3.5851502418518066, + "step": 3790 + }, + { + "epoch": 52.65705548274356, + "grad_norm": 0.23237599432468414, + "learning_rate": 0.0006, + "loss": 3.5877747535705566, + "step": 3791 + }, + { + "epoch": 52.671035386631715, + "grad_norm": 0.21037372946739197, + "learning_rate": 0.0006, + "loss": 3.579045295715332, + "step": 3792 + }, + { + "epoch": 52.68501529051988, + "grad_norm": 0.19258099794387817, + "learning_rate": 0.0006, + "loss": 3.599151611328125, + "step": 3793 + }, + { + "epoch": 52.69899519440804, + "grad_norm": 0.18808242678642273, + "learning_rate": 0.0006, + "loss": 3.580679416656494, + "step": 3794 + }, + { + "epoch": 52.7129750982962, + "grad_norm": 0.18208397924900055, + "learning_rate": 0.0006, + "loss": 3.5940206050872803, + "step": 3795 + }, + { + "epoch": 52.72695500218436, + "grad_norm": 0.18173424899578094, + "learning_rate": 0.0006, + "loss": 3.5997331142425537, + "step": 3796 + }, + { + "epoch": 52.74093490607252, + "grad_norm": 0.1868390142917633, + "learning_rate": 0.0006, + "loss": 3.60007905960083, + "step": 3797 + }, + { + "epoch": 52.75491480996068, + "grad_norm": 0.1859273761510849, + "learning_rate": 0.0006, + "loss": 3.602668285369873, + "step": 3798 + }, + { + "epoch": 52.768894713848844, + "grad_norm": 0.18063156306743622, + "learning_rate": 0.0006, + "loss": 3.579869270324707, + "step": 3799 + }, + { + "epoch": 52.782874617737, + "grad_norm": 0.18920548260211945, + "learning_rate": 0.0006, + "loss": 3.6056337356567383, + "step": 3800 + }, + { + "epoch": 52.796854521625164, + "grad_norm": 0.20110033452510834, + "learning_rate": 0.0006, + "loss": 3.5694475173950195, + "step": 3801 + }, + { + "epoch": 52.81083442551333, + "grad_norm": 0.20331093668937683, + "learning_rate": 0.0006, + "loss": 3.5940358638763428, + "step": 3802 + }, + { + "epoch": 52.824814329401484, + "grad_norm": 0.2035607248544693, + "learning_rate": 0.0006, + "loss": 3.621305465698242, + "step": 3803 + }, + { + "epoch": 52.83879423328965, + "grad_norm": 0.1974431872367859, + "learning_rate": 0.0006, + "loss": 3.5959153175354004, + "step": 3804 + }, + { + "epoch": 52.8527741371778, + "grad_norm": 0.1832808405160904, + "learning_rate": 0.0006, + "loss": 3.582113265991211, + "step": 3805 + }, + { + "epoch": 52.86675404106597, + "grad_norm": 0.20269927382469177, + "learning_rate": 0.0006, + "loss": 3.5923209190368652, + "step": 3806 + }, + { + "epoch": 52.88073394495413, + "grad_norm": 0.20628313720226288, + "learning_rate": 0.0006, + "loss": 3.599729537963867, + "step": 3807 + }, + { + "epoch": 52.89471384884229, + "grad_norm": 0.2144002914428711, + "learning_rate": 0.0006, + "loss": 3.601041793823242, + "step": 3808 + }, + { + "epoch": 52.90869375273045, + "grad_norm": 0.215015709400177, + "learning_rate": 0.0006, + "loss": 3.5873360633850098, + "step": 3809 + }, + { + "epoch": 52.92267365661861, + "grad_norm": 0.23122714459896088, + "learning_rate": 0.0006, + "loss": 3.5839362144470215, + "step": 3810 + }, + { + "epoch": 52.93665356050677, + "grad_norm": 0.2381119281053543, + "learning_rate": 0.0006, + "loss": 3.564755439758301, + "step": 3811 + }, + { + "epoch": 52.95063346439493, + "grad_norm": 0.22975024580955505, + "learning_rate": 0.0006, + "loss": 3.594020128250122, + "step": 3812 + }, + { + "epoch": 52.964613368283096, + "grad_norm": 0.2419184148311615, + "learning_rate": 0.0006, + "loss": 3.5917205810546875, + "step": 3813 + }, + { + "epoch": 52.97859327217125, + "grad_norm": 0.21143122017383575, + "learning_rate": 0.0006, + "loss": 3.626842975616455, + "step": 3814 + }, + { + "epoch": 52.992573176059416, + "grad_norm": 0.195548415184021, + "learning_rate": 0.0006, + "loss": 3.5798377990722656, + "step": 3815 + }, + { + "epoch": 53.0, + "grad_norm": 0.22441816329956055, + "learning_rate": 0.0006, + "loss": 3.5652856826782227, + "step": 3816 + }, + { + "epoch": 53.0, + "eval_loss": 3.9635632038116455, + "eval_runtime": 44.772, + "eval_samples_per_second": 54.543, + "eval_steps_per_second": 3.417, + "step": 3816 + }, + { + "epoch": 53.01397990388816, + "grad_norm": 0.2547561228275299, + "learning_rate": 0.0006, + "loss": 3.562561511993408, + "step": 3817 + }, + { + "epoch": 53.02795980777632, + "grad_norm": 0.36890196800231934, + "learning_rate": 0.0006, + "loss": 3.534581184387207, + "step": 3818 + }, + { + "epoch": 53.04193971166448, + "grad_norm": 0.42631810903549194, + "learning_rate": 0.0006, + "loss": 3.5438239574432373, + "step": 3819 + }, + { + "epoch": 53.05591961555265, + "grad_norm": 0.29458126425743103, + "learning_rate": 0.0006, + "loss": 3.5594735145568848, + "step": 3820 + }, + { + "epoch": 53.0698995194408, + "grad_norm": 0.24320989847183228, + "learning_rate": 0.0006, + "loss": 3.5715155601501465, + "step": 3821 + }, + { + "epoch": 53.083879423328966, + "grad_norm": 0.3012531101703644, + "learning_rate": 0.0006, + "loss": 3.5324978828430176, + "step": 3822 + }, + { + "epoch": 53.09785932721712, + "grad_norm": 0.2789555788040161, + "learning_rate": 0.0006, + "loss": 3.5848183631896973, + "step": 3823 + }, + { + "epoch": 53.111839231105286, + "grad_norm": 0.2488897293806076, + "learning_rate": 0.0006, + "loss": 3.5853679180145264, + "step": 3824 + }, + { + "epoch": 53.12581913499345, + "grad_norm": 0.3016898036003113, + "learning_rate": 0.0006, + "loss": 3.585637092590332, + "step": 3825 + }, + { + "epoch": 53.139799038881605, + "grad_norm": 0.30293571949005127, + "learning_rate": 0.0006, + "loss": 3.5745015144348145, + "step": 3826 + }, + { + "epoch": 53.15377894276977, + "grad_norm": 0.24611566960811615, + "learning_rate": 0.0006, + "loss": 3.5761728286743164, + "step": 3827 + }, + { + "epoch": 53.16775884665793, + "grad_norm": 0.23852500319480896, + "learning_rate": 0.0006, + "loss": 3.59317946434021, + "step": 3828 + }, + { + "epoch": 53.18173875054609, + "grad_norm": 0.27882838249206543, + "learning_rate": 0.0006, + "loss": 3.589779853820801, + "step": 3829 + }, + { + "epoch": 53.19571865443425, + "grad_norm": 0.3252250552177429, + "learning_rate": 0.0006, + "loss": 3.564526081085205, + "step": 3830 + }, + { + "epoch": 53.20969855832241, + "grad_norm": 0.29635530710220337, + "learning_rate": 0.0006, + "loss": 3.5309946537017822, + "step": 3831 + }, + { + "epoch": 53.22367846221057, + "grad_norm": 0.25211700797080994, + "learning_rate": 0.0006, + "loss": 3.5795631408691406, + "step": 3832 + }, + { + "epoch": 53.237658366098735, + "grad_norm": 0.20772705972194672, + "learning_rate": 0.0006, + "loss": 3.5649163722991943, + "step": 3833 + }, + { + "epoch": 53.25163826998689, + "grad_norm": 0.2460525780916214, + "learning_rate": 0.0006, + "loss": 3.5484111309051514, + "step": 3834 + }, + { + "epoch": 53.265618173875055, + "grad_norm": 0.24652884900569916, + "learning_rate": 0.0006, + "loss": 3.5631136894226074, + "step": 3835 + }, + { + "epoch": 53.27959807776322, + "grad_norm": 0.23740890622138977, + "learning_rate": 0.0006, + "loss": 3.6234607696533203, + "step": 3836 + }, + { + "epoch": 53.293577981651374, + "grad_norm": 0.2463800311088562, + "learning_rate": 0.0006, + "loss": 3.5578083992004395, + "step": 3837 + }, + { + "epoch": 53.30755788553954, + "grad_norm": 0.23402568697929382, + "learning_rate": 0.0006, + "loss": 3.559845209121704, + "step": 3838 + }, + { + "epoch": 53.3215377894277, + "grad_norm": 0.2539580762386322, + "learning_rate": 0.0006, + "loss": 3.5863685607910156, + "step": 3839 + }, + { + "epoch": 53.33551769331586, + "grad_norm": 0.24994857609272003, + "learning_rate": 0.0006, + "loss": 3.5758700370788574, + "step": 3840 + }, + { + "epoch": 53.34949759720402, + "grad_norm": 0.21340647339820862, + "learning_rate": 0.0006, + "loss": 3.588602066040039, + "step": 3841 + }, + { + "epoch": 53.36347750109218, + "grad_norm": 0.2029065042734146, + "learning_rate": 0.0006, + "loss": 3.58594012260437, + "step": 3842 + }, + { + "epoch": 53.37745740498034, + "grad_norm": 0.20266403257846832, + "learning_rate": 0.0006, + "loss": 3.5906057357788086, + "step": 3843 + }, + { + "epoch": 53.391437308868504, + "grad_norm": 0.19940714538097382, + "learning_rate": 0.0006, + "loss": 3.5458335876464844, + "step": 3844 + }, + { + "epoch": 53.40541721275666, + "grad_norm": 0.21295064687728882, + "learning_rate": 0.0006, + "loss": 3.5589025020599365, + "step": 3845 + }, + { + "epoch": 53.419397116644824, + "grad_norm": 0.2150672823190689, + "learning_rate": 0.0006, + "loss": 3.5907669067382812, + "step": 3846 + }, + { + "epoch": 53.43337702053299, + "grad_norm": 0.21469077467918396, + "learning_rate": 0.0006, + "loss": 3.5403499603271484, + "step": 3847 + }, + { + "epoch": 53.44735692442114, + "grad_norm": 0.20485323667526245, + "learning_rate": 0.0006, + "loss": 3.5634326934814453, + "step": 3848 + }, + { + "epoch": 53.46133682830931, + "grad_norm": 0.1981327086687088, + "learning_rate": 0.0006, + "loss": 3.579385280609131, + "step": 3849 + }, + { + "epoch": 53.47531673219746, + "grad_norm": 0.1898331642150879, + "learning_rate": 0.0006, + "loss": 3.5824122428894043, + "step": 3850 + }, + { + "epoch": 53.489296636085626, + "grad_norm": 0.18228355050086975, + "learning_rate": 0.0006, + "loss": 3.533255100250244, + "step": 3851 + }, + { + "epoch": 53.50327653997379, + "grad_norm": 0.1803922951221466, + "learning_rate": 0.0006, + "loss": 3.589881420135498, + "step": 3852 + }, + { + "epoch": 53.517256443861946, + "grad_norm": 0.19590361416339874, + "learning_rate": 0.0006, + "loss": 3.599487066268921, + "step": 3853 + }, + { + "epoch": 53.53123634775011, + "grad_norm": 0.1935775727033615, + "learning_rate": 0.0006, + "loss": 3.5769765377044678, + "step": 3854 + }, + { + "epoch": 53.54521625163827, + "grad_norm": 0.1790810525417328, + "learning_rate": 0.0006, + "loss": 3.594104290008545, + "step": 3855 + }, + { + "epoch": 53.55919615552643, + "grad_norm": 0.17993320524692535, + "learning_rate": 0.0006, + "loss": 3.555650234222412, + "step": 3856 + }, + { + "epoch": 53.57317605941459, + "grad_norm": 0.19114883244037628, + "learning_rate": 0.0006, + "loss": 3.599574089050293, + "step": 3857 + }, + { + "epoch": 53.58715596330275, + "grad_norm": 0.18493886291980743, + "learning_rate": 0.0006, + "loss": 3.555177927017212, + "step": 3858 + }, + { + "epoch": 53.60113586719091, + "grad_norm": 0.19346027076244354, + "learning_rate": 0.0006, + "loss": 3.601219654083252, + "step": 3859 + }, + { + "epoch": 53.615115771079076, + "grad_norm": 0.2002234011888504, + "learning_rate": 0.0006, + "loss": 3.5614418983459473, + "step": 3860 + }, + { + "epoch": 53.62909567496723, + "grad_norm": 0.17705366015434265, + "learning_rate": 0.0006, + "loss": 3.587432384490967, + "step": 3861 + }, + { + "epoch": 53.643075578855395, + "grad_norm": 0.19825726747512817, + "learning_rate": 0.0006, + "loss": 3.570539951324463, + "step": 3862 + }, + { + "epoch": 53.65705548274356, + "grad_norm": 0.2038952112197876, + "learning_rate": 0.0006, + "loss": 3.575758934020996, + "step": 3863 + }, + { + "epoch": 53.671035386631715, + "grad_norm": 0.21109119057655334, + "learning_rate": 0.0006, + "loss": 3.6013951301574707, + "step": 3864 + }, + { + "epoch": 53.68501529051988, + "grad_norm": 0.21738514304161072, + "learning_rate": 0.0006, + "loss": 3.567424774169922, + "step": 3865 + }, + { + "epoch": 53.69899519440804, + "grad_norm": 0.214813694357872, + "learning_rate": 0.0006, + "loss": 3.599733352661133, + "step": 3866 + }, + { + "epoch": 53.7129750982962, + "grad_norm": 0.20838409662246704, + "learning_rate": 0.0006, + "loss": 3.595839738845825, + "step": 3867 + }, + { + "epoch": 53.72695500218436, + "grad_norm": 0.2088911384344101, + "learning_rate": 0.0006, + "loss": 3.6030569076538086, + "step": 3868 + }, + { + "epoch": 53.74093490607252, + "grad_norm": 0.22705569863319397, + "learning_rate": 0.0006, + "loss": 3.5876665115356445, + "step": 3869 + }, + { + "epoch": 53.75491480996068, + "grad_norm": 0.22327932715415955, + "learning_rate": 0.0006, + "loss": 3.5555529594421387, + "step": 3870 + }, + { + "epoch": 53.768894713848844, + "grad_norm": 0.2092375010251999, + "learning_rate": 0.0006, + "loss": 3.599871873855591, + "step": 3871 + }, + { + "epoch": 53.782874617737, + "grad_norm": 0.20672307908535004, + "learning_rate": 0.0006, + "loss": 3.598846435546875, + "step": 3872 + }, + { + "epoch": 53.796854521625164, + "grad_norm": 0.2090507596731186, + "learning_rate": 0.0006, + "loss": 3.564012050628662, + "step": 3873 + }, + { + "epoch": 53.81083442551333, + "grad_norm": 0.2044386863708496, + "learning_rate": 0.0006, + "loss": 3.585221529006958, + "step": 3874 + }, + { + "epoch": 53.824814329401484, + "grad_norm": 0.2065548598766327, + "learning_rate": 0.0006, + "loss": 3.595351457595825, + "step": 3875 + }, + { + "epoch": 53.83879423328965, + "grad_norm": 0.22895927727222443, + "learning_rate": 0.0006, + "loss": 3.5720505714416504, + "step": 3876 + }, + { + "epoch": 53.8527741371778, + "grad_norm": 0.22099260985851288, + "learning_rate": 0.0006, + "loss": 3.572587251663208, + "step": 3877 + }, + { + "epoch": 53.86675404106597, + "grad_norm": 0.19928759336471558, + "learning_rate": 0.0006, + "loss": 3.5641839504241943, + "step": 3878 + }, + { + "epoch": 53.88073394495413, + "grad_norm": 0.2735077440738678, + "learning_rate": 0.0006, + "loss": 3.575535774230957, + "step": 3879 + }, + { + "epoch": 53.89471384884229, + "grad_norm": 0.2642554044723511, + "learning_rate": 0.0006, + "loss": 3.5993123054504395, + "step": 3880 + }, + { + "epoch": 53.90869375273045, + "grad_norm": 0.22406205534934998, + "learning_rate": 0.0006, + "loss": 3.5968177318573, + "step": 3881 + }, + { + "epoch": 53.92267365661861, + "grad_norm": 0.22148431837558746, + "learning_rate": 0.0006, + "loss": 3.5668797492980957, + "step": 3882 + }, + { + "epoch": 53.93665356050677, + "grad_norm": 0.20805056393146515, + "learning_rate": 0.0006, + "loss": 3.60849666595459, + "step": 3883 + }, + { + "epoch": 53.95063346439493, + "grad_norm": 0.18656247854232788, + "learning_rate": 0.0006, + "loss": 3.5883405208587646, + "step": 3884 + }, + { + "epoch": 53.964613368283096, + "grad_norm": 0.19937767088413239, + "learning_rate": 0.0006, + "loss": 3.5897698402404785, + "step": 3885 + }, + { + "epoch": 53.97859327217125, + "grad_norm": 0.19680732488632202, + "learning_rate": 0.0006, + "loss": 3.568530559539795, + "step": 3886 + }, + { + "epoch": 53.992573176059416, + "grad_norm": 0.218981072306633, + "learning_rate": 0.0006, + "loss": 3.6194474697113037, + "step": 3887 + }, + { + "epoch": 54.0, + "grad_norm": 0.26408281922340393, + "learning_rate": 0.0006, + "loss": 3.5224976539611816, + "step": 3888 + }, + { + "epoch": 54.0, + "eval_loss": 3.983997106552124, + "eval_runtime": 44.9507, + "eval_samples_per_second": 54.326, + "eval_steps_per_second": 3.404, + "step": 3888 + }, + { + "epoch": 54.01397990388816, + "grad_norm": 0.2230917066335678, + "learning_rate": 0.0006, + "loss": 3.578058958053589, + "step": 3889 + }, + { + "epoch": 54.02795980777632, + "grad_norm": 0.23055201768875122, + "learning_rate": 0.0006, + "loss": 3.549612283706665, + "step": 3890 + }, + { + "epoch": 54.04193971166448, + "grad_norm": 0.23317518830299377, + "learning_rate": 0.0006, + "loss": 3.5662591457366943, + "step": 3891 + }, + { + "epoch": 54.05591961555265, + "grad_norm": 0.27022141218185425, + "learning_rate": 0.0006, + "loss": 3.547062873840332, + "step": 3892 + }, + { + "epoch": 54.0698995194408, + "grad_norm": 0.2665329873561859, + "learning_rate": 0.0006, + "loss": 3.540881633758545, + "step": 3893 + }, + { + "epoch": 54.083879423328966, + "grad_norm": 0.23968365788459778, + "learning_rate": 0.0006, + "loss": 3.574781894683838, + "step": 3894 + }, + { + "epoch": 54.09785932721712, + "grad_norm": 0.22174887359142303, + "learning_rate": 0.0006, + "loss": 3.514077663421631, + "step": 3895 + }, + { + "epoch": 54.111839231105286, + "grad_norm": 0.24605485796928406, + "learning_rate": 0.0006, + "loss": 3.534174919128418, + "step": 3896 + }, + { + "epoch": 54.12581913499345, + "grad_norm": 0.22874566912651062, + "learning_rate": 0.0006, + "loss": 3.574282169342041, + "step": 3897 + }, + { + "epoch": 54.139799038881605, + "grad_norm": 0.2113833874464035, + "learning_rate": 0.0006, + "loss": 3.548687696456909, + "step": 3898 + }, + { + "epoch": 54.15377894276977, + "grad_norm": 0.20756855607032776, + "learning_rate": 0.0006, + "loss": 3.556060791015625, + "step": 3899 + }, + { + "epoch": 54.16775884665793, + "grad_norm": 0.2070261538028717, + "learning_rate": 0.0006, + "loss": 3.5585689544677734, + "step": 3900 + }, + { + "epoch": 54.18173875054609, + "grad_norm": 0.20014794170856476, + "learning_rate": 0.0006, + "loss": 3.5898427963256836, + "step": 3901 + }, + { + "epoch": 54.19571865443425, + "grad_norm": 0.19851888716220856, + "learning_rate": 0.0006, + "loss": 3.564826011657715, + "step": 3902 + }, + { + "epoch": 54.20969855832241, + "grad_norm": 0.20333127677440643, + "learning_rate": 0.0006, + "loss": 3.540660858154297, + "step": 3903 + }, + { + "epoch": 54.22367846221057, + "grad_norm": 0.20291075110435486, + "learning_rate": 0.0006, + "loss": 3.544628143310547, + "step": 3904 + }, + { + "epoch": 54.237658366098735, + "grad_norm": 0.2055949866771698, + "learning_rate": 0.0006, + "loss": 3.547478675842285, + "step": 3905 + }, + { + "epoch": 54.25163826998689, + "grad_norm": 0.20305688679218292, + "learning_rate": 0.0006, + "loss": 3.5793099403381348, + "step": 3906 + }, + { + "epoch": 54.265618173875055, + "grad_norm": 0.21053043007850647, + "learning_rate": 0.0006, + "loss": 3.529263973236084, + "step": 3907 + }, + { + "epoch": 54.27959807776322, + "grad_norm": 0.2461051046848297, + "learning_rate": 0.0006, + "loss": 3.598266124725342, + "step": 3908 + }, + { + "epoch": 54.293577981651374, + "grad_norm": 0.25074276328086853, + "learning_rate": 0.0006, + "loss": 3.557170867919922, + "step": 3909 + }, + { + "epoch": 54.30755788553954, + "grad_norm": 0.23321498930454254, + "learning_rate": 0.0006, + "loss": 3.5532279014587402, + "step": 3910 + }, + { + "epoch": 54.3215377894277, + "grad_norm": 0.19062374532222748, + "learning_rate": 0.0006, + "loss": 3.5718722343444824, + "step": 3911 + }, + { + "epoch": 54.33551769331586, + "grad_norm": 0.22571852803230286, + "learning_rate": 0.0006, + "loss": 3.539036750793457, + "step": 3912 + }, + { + "epoch": 54.34949759720402, + "grad_norm": 0.23314784467220306, + "learning_rate": 0.0006, + "loss": 3.5444631576538086, + "step": 3913 + }, + { + "epoch": 54.36347750109218, + "grad_norm": 0.22334037721157074, + "learning_rate": 0.0006, + "loss": 3.5567970275878906, + "step": 3914 + }, + { + "epoch": 54.37745740498034, + "grad_norm": 0.21900276839733124, + "learning_rate": 0.0006, + "loss": 3.600113868713379, + "step": 3915 + }, + { + "epoch": 54.391437308868504, + "grad_norm": 0.20166733860969543, + "learning_rate": 0.0006, + "loss": 3.54038667678833, + "step": 3916 + }, + { + "epoch": 54.40541721275666, + "grad_norm": 0.21886761486530304, + "learning_rate": 0.0006, + "loss": 3.5708651542663574, + "step": 3917 + }, + { + "epoch": 54.419397116644824, + "grad_norm": 0.26383060216903687, + "learning_rate": 0.0006, + "loss": 3.5572509765625, + "step": 3918 + }, + { + "epoch": 54.43337702053299, + "grad_norm": 0.26116663217544556, + "learning_rate": 0.0006, + "loss": 3.528968334197998, + "step": 3919 + }, + { + "epoch": 54.44735692442114, + "grad_norm": 0.20640771090984344, + "learning_rate": 0.0006, + "loss": 3.587789535522461, + "step": 3920 + }, + { + "epoch": 54.46133682830931, + "grad_norm": 0.23454350233078003, + "learning_rate": 0.0006, + "loss": 3.586834192276001, + "step": 3921 + }, + { + "epoch": 54.47531673219746, + "grad_norm": 0.24828442931175232, + "learning_rate": 0.0006, + "loss": 3.5884881019592285, + "step": 3922 + }, + { + "epoch": 54.489296636085626, + "grad_norm": 0.23654282093048096, + "learning_rate": 0.0006, + "loss": 3.5754570960998535, + "step": 3923 + }, + { + "epoch": 54.50327653997379, + "grad_norm": 0.22721099853515625, + "learning_rate": 0.0006, + "loss": 3.5575859546661377, + "step": 3924 + }, + { + "epoch": 54.517256443861946, + "grad_norm": 0.2157498002052307, + "learning_rate": 0.0006, + "loss": 3.5929436683654785, + "step": 3925 + }, + { + "epoch": 54.53123634775011, + "grad_norm": 0.21604257822036743, + "learning_rate": 0.0006, + "loss": 3.5788726806640625, + "step": 3926 + }, + { + "epoch": 54.54521625163827, + "grad_norm": 0.22310106456279755, + "learning_rate": 0.0006, + "loss": 3.5873899459838867, + "step": 3927 + }, + { + "epoch": 54.55919615552643, + "grad_norm": 0.2121969312429428, + "learning_rate": 0.0006, + "loss": 3.575186252593994, + "step": 3928 + }, + { + "epoch": 54.57317605941459, + "grad_norm": 0.19073615968227386, + "learning_rate": 0.0006, + "loss": 3.5963356494903564, + "step": 3929 + }, + { + "epoch": 54.58715596330275, + "grad_norm": 0.18745607137680054, + "learning_rate": 0.0006, + "loss": 3.593679428100586, + "step": 3930 + }, + { + "epoch": 54.60113586719091, + "grad_norm": 0.19518259167671204, + "learning_rate": 0.0006, + "loss": 3.5730791091918945, + "step": 3931 + }, + { + "epoch": 54.615115771079076, + "grad_norm": 0.20948481559753418, + "learning_rate": 0.0006, + "loss": 3.5646820068359375, + "step": 3932 + }, + { + "epoch": 54.62909567496723, + "grad_norm": 0.1929631531238556, + "learning_rate": 0.0006, + "loss": 3.5550060272216797, + "step": 3933 + }, + { + "epoch": 54.643075578855395, + "grad_norm": 0.2104327380657196, + "learning_rate": 0.0006, + "loss": 3.5774357318878174, + "step": 3934 + }, + { + "epoch": 54.65705548274356, + "grad_norm": 0.1952148675918579, + "learning_rate": 0.0006, + "loss": 3.58856201171875, + "step": 3935 + }, + { + "epoch": 54.671035386631715, + "grad_norm": 0.17762340605258942, + "learning_rate": 0.0006, + "loss": 3.5324528217315674, + "step": 3936 + }, + { + "epoch": 54.68501529051988, + "grad_norm": 0.18349695205688477, + "learning_rate": 0.0006, + "loss": 3.5663890838623047, + "step": 3937 + }, + { + "epoch": 54.69899519440804, + "grad_norm": 0.2038232684135437, + "learning_rate": 0.0006, + "loss": 3.5811679363250732, + "step": 3938 + }, + { + "epoch": 54.7129750982962, + "grad_norm": 0.2431754469871521, + "learning_rate": 0.0006, + "loss": 3.56833553314209, + "step": 3939 + }, + { + "epoch": 54.72695500218436, + "grad_norm": 0.27498456835746765, + "learning_rate": 0.0006, + "loss": 3.5977981090545654, + "step": 3940 + }, + { + "epoch": 54.74093490607252, + "grad_norm": 0.20809921622276306, + "learning_rate": 0.0006, + "loss": 3.57193922996521, + "step": 3941 + }, + { + "epoch": 54.75491480996068, + "grad_norm": 0.18073450028896332, + "learning_rate": 0.0006, + "loss": 3.5610151290893555, + "step": 3942 + }, + { + "epoch": 54.768894713848844, + "grad_norm": 0.194604754447937, + "learning_rate": 0.0006, + "loss": 3.5716047286987305, + "step": 3943 + }, + { + "epoch": 54.782874617737, + "grad_norm": 0.20566268265247345, + "learning_rate": 0.0006, + "loss": 3.578401565551758, + "step": 3944 + }, + { + "epoch": 54.796854521625164, + "grad_norm": 0.21028153598308563, + "learning_rate": 0.0006, + "loss": 3.610511064529419, + "step": 3945 + }, + { + "epoch": 54.81083442551333, + "grad_norm": 0.21413563191890717, + "learning_rate": 0.0006, + "loss": 3.601574659347534, + "step": 3946 + }, + { + "epoch": 54.824814329401484, + "grad_norm": 0.2137378603219986, + "learning_rate": 0.0006, + "loss": 3.603997230529785, + "step": 3947 + }, + { + "epoch": 54.83879423328965, + "grad_norm": 0.2162058800458908, + "learning_rate": 0.0006, + "loss": 3.5829391479492188, + "step": 3948 + }, + { + "epoch": 54.8527741371778, + "grad_norm": 0.21700997650623322, + "learning_rate": 0.0006, + "loss": 3.595317840576172, + "step": 3949 + }, + { + "epoch": 54.86675404106597, + "grad_norm": 0.20864669978618622, + "learning_rate": 0.0006, + "loss": 3.601891040802002, + "step": 3950 + }, + { + "epoch": 54.88073394495413, + "grad_norm": 0.19780485332012177, + "learning_rate": 0.0006, + "loss": 3.567460775375366, + "step": 3951 + }, + { + "epoch": 54.89471384884229, + "grad_norm": 0.2017168402671814, + "learning_rate": 0.0006, + "loss": 3.5737192630767822, + "step": 3952 + }, + { + "epoch": 54.90869375273045, + "grad_norm": 0.22847825288772583, + "learning_rate": 0.0006, + "loss": 3.60937762260437, + "step": 3953 + }, + { + "epoch": 54.92267365661861, + "grad_norm": 0.23698270320892334, + "learning_rate": 0.0006, + "loss": 3.6013574600219727, + "step": 3954 + }, + { + "epoch": 54.93665356050677, + "grad_norm": 0.238611102104187, + "learning_rate": 0.0006, + "loss": 3.5689988136291504, + "step": 3955 + }, + { + "epoch": 54.95063346439493, + "grad_norm": 0.2680057883262634, + "learning_rate": 0.0006, + "loss": 3.5650172233581543, + "step": 3956 + }, + { + "epoch": 54.964613368283096, + "grad_norm": 0.25712481141090393, + "learning_rate": 0.0006, + "loss": 3.576777935028076, + "step": 3957 + }, + { + "epoch": 54.97859327217125, + "grad_norm": 0.2232409566640854, + "learning_rate": 0.0006, + "loss": 3.583169937133789, + "step": 3958 + }, + { + "epoch": 54.992573176059416, + "grad_norm": 0.21233153343200684, + "learning_rate": 0.0006, + "loss": 3.602219581604004, + "step": 3959 + }, + { + "epoch": 55.0, + "grad_norm": 0.24345774948596954, + "learning_rate": 0.0006, + "loss": 3.5118026733398438, + "step": 3960 + }, + { + "epoch": 55.0, + "eval_loss": 3.9819064140319824, + "eval_runtime": 44.6627, + "eval_samples_per_second": 54.677, + "eval_steps_per_second": 3.426, + "step": 3960 + }, + { + "epoch": 55.01397990388816, + "grad_norm": 0.229562908411026, + "learning_rate": 0.0006, + "loss": 3.5591073036193848, + "step": 3961 + }, + { + "epoch": 55.02795980777632, + "grad_norm": 0.21731624007225037, + "learning_rate": 0.0006, + "loss": 3.5544848442077637, + "step": 3962 + }, + { + "epoch": 55.04193971166448, + "grad_norm": 0.23528429865837097, + "learning_rate": 0.0006, + "loss": 3.5654311180114746, + "step": 3963 + }, + { + "epoch": 55.05591961555265, + "grad_norm": 0.23147839307785034, + "learning_rate": 0.0006, + "loss": 3.537006378173828, + "step": 3964 + }, + { + "epoch": 55.0698995194408, + "grad_norm": 0.22218112647533417, + "learning_rate": 0.0006, + "loss": 3.5218982696533203, + "step": 3965 + }, + { + "epoch": 55.083879423328966, + "grad_norm": 0.20697443187236786, + "learning_rate": 0.0006, + "loss": 3.5623579025268555, + "step": 3966 + }, + { + "epoch": 55.09785932721712, + "grad_norm": 0.2108476608991623, + "learning_rate": 0.0006, + "loss": 3.528214454650879, + "step": 3967 + }, + { + "epoch": 55.111839231105286, + "grad_norm": 0.21664242446422577, + "learning_rate": 0.0006, + "loss": 3.5429646968841553, + "step": 3968 + }, + { + "epoch": 55.12581913499345, + "grad_norm": 0.21359260380268097, + "learning_rate": 0.0006, + "loss": 3.5873513221740723, + "step": 3969 + }, + { + "epoch": 55.139799038881605, + "grad_norm": 0.23289452493190765, + "learning_rate": 0.0006, + "loss": 3.5551905632019043, + "step": 3970 + }, + { + "epoch": 55.15377894276977, + "grad_norm": 0.25835689902305603, + "learning_rate": 0.0006, + "loss": 3.5380427837371826, + "step": 3971 + }, + { + "epoch": 55.16775884665793, + "grad_norm": 0.25449255108833313, + "learning_rate": 0.0006, + "loss": 3.5276808738708496, + "step": 3972 + }, + { + "epoch": 55.18173875054609, + "grad_norm": 0.2472638338804245, + "learning_rate": 0.0006, + "loss": 3.539194107055664, + "step": 3973 + }, + { + "epoch": 55.19571865443425, + "grad_norm": 0.21743768453598022, + "learning_rate": 0.0006, + "loss": 3.557185173034668, + "step": 3974 + }, + { + "epoch": 55.20969855832241, + "grad_norm": 0.22787386178970337, + "learning_rate": 0.0006, + "loss": 3.581993579864502, + "step": 3975 + }, + { + "epoch": 55.22367846221057, + "grad_norm": 0.2332824170589447, + "learning_rate": 0.0006, + "loss": 3.5439846515655518, + "step": 3976 + }, + { + "epoch": 55.237658366098735, + "grad_norm": 0.2054908573627472, + "learning_rate": 0.0006, + "loss": 3.5528793334960938, + "step": 3977 + }, + { + "epoch": 55.25163826998689, + "grad_norm": 0.2087554633617401, + "learning_rate": 0.0006, + "loss": 3.536464214324951, + "step": 3978 + }, + { + "epoch": 55.265618173875055, + "grad_norm": 0.22214409708976746, + "learning_rate": 0.0006, + "loss": 3.56184458732605, + "step": 3979 + }, + { + "epoch": 55.27959807776322, + "grad_norm": 0.23214097321033478, + "learning_rate": 0.0006, + "loss": 3.5560522079467773, + "step": 3980 + }, + { + "epoch": 55.293577981651374, + "grad_norm": 0.23317331075668335, + "learning_rate": 0.0006, + "loss": 3.5433850288391113, + "step": 3981 + }, + { + "epoch": 55.30755788553954, + "grad_norm": 0.2303774058818817, + "learning_rate": 0.0006, + "loss": 3.5505576133728027, + "step": 3982 + }, + { + "epoch": 55.3215377894277, + "grad_norm": 0.2400730401277542, + "learning_rate": 0.0006, + "loss": 3.557952404022217, + "step": 3983 + }, + { + "epoch": 55.33551769331586, + "grad_norm": 0.23933538794517517, + "learning_rate": 0.0006, + "loss": 3.536656141281128, + "step": 3984 + }, + { + "epoch": 55.34949759720402, + "grad_norm": 0.23796266317367554, + "learning_rate": 0.0006, + "loss": 3.5777554512023926, + "step": 3985 + }, + { + "epoch": 55.36347750109218, + "grad_norm": 0.26078858971595764, + "learning_rate": 0.0006, + "loss": 3.549121379852295, + "step": 3986 + }, + { + "epoch": 55.37745740498034, + "grad_norm": 0.22726459801197052, + "learning_rate": 0.0006, + "loss": 3.605684518814087, + "step": 3987 + }, + { + "epoch": 55.391437308868504, + "grad_norm": 0.19872179627418518, + "learning_rate": 0.0006, + "loss": 3.5501739978790283, + "step": 3988 + }, + { + "epoch": 55.40541721275666, + "grad_norm": 0.2027827352285385, + "learning_rate": 0.0006, + "loss": 3.625922441482544, + "step": 3989 + }, + { + "epoch": 55.419397116644824, + "grad_norm": 0.24207144975662231, + "learning_rate": 0.0006, + "loss": 3.595451831817627, + "step": 3990 + }, + { + "epoch": 55.43337702053299, + "grad_norm": 0.23449009656906128, + "learning_rate": 0.0006, + "loss": 3.577167510986328, + "step": 3991 + }, + { + "epoch": 55.44735692442114, + "grad_norm": 0.22529540956020355, + "learning_rate": 0.0006, + "loss": 3.5585317611694336, + "step": 3992 + }, + { + "epoch": 55.46133682830931, + "grad_norm": 0.2354331612586975, + "learning_rate": 0.0006, + "loss": 3.574819564819336, + "step": 3993 + }, + { + "epoch": 55.47531673219746, + "grad_norm": 0.2251061201095581, + "learning_rate": 0.0006, + "loss": 3.580498695373535, + "step": 3994 + }, + { + "epoch": 55.489296636085626, + "grad_norm": 0.22107349336147308, + "learning_rate": 0.0006, + "loss": 3.578591823577881, + "step": 3995 + }, + { + "epoch": 55.50327653997379, + "grad_norm": 0.24686408042907715, + "learning_rate": 0.0006, + "loss": 3.541625499725342, + "step": 3996 + }, + { + "epoch": 55.517256443861946, + "grad_norm": 0.23731260001659393, + "learning_rate": 0.0006, + "loss": 3.5508079528808594, + "step": 3997 + }, + { + "epoch": 55.53123634775011, + "grad_norm": 0.21246901154518127, + "learning_rate": 0.0006, + "loss": 3.569500207901001, + "step": 3998 + }, + { + "epoch": 55.54521625163827, + "grad_norm": 0.21369415521621704, + "learning_rate": 0.0006, + "loss": 3.546938896179199, + "step": 3999 + }, + { + "epoch": 55.55919615552643, + "grad_norm": 0.2102644443511963, + "learning_rate": 0.0006, + "loss": 3.5842084884643555, + "step": 4000 + }, + { + "epoch": 55.57317605941459, + "grad_norm": 0.2355998456478119, + "learning_rate": 0.0006, + "loss": 3.5493381023406982, + "step": 4001 + }, + { + "epoch": 55.58715596330275, + "grad_norm": 0.2670288681983948, + "learning_rate": 0.0006, + "loss": 3.5909032821655273, + "step": 4002 + }, + { + "epoch": 55.60113586719091, + "grad_norm": 0.2958407998085022, + "learning_rate": 0.0006, + "loss": 3.624906063079834, + "step": 4003 + }, + { + "epoch": 55.615115771079076, + "grad_norm": 0.2948441505432129, + "learning_rate": 0.0006, + "loss": 3.553528070449829, + "step": 4004 + }, + { + "epoch": 55.62909567496723, + "grad_norm": 0.24873173236846924, + "learning_rate": 0.0006, + "loss": 3.5851495265960693, + "step": 4005 + }, + { + "epoch": 55.643075578855395, + "grad_norm": 0.22191756963729858, + "learning_rate": 0.0006, + "loss": 3.556459903717041, + "step": 4006 + }, + { + "epoch": 55.65705548274356, + "grad_norm": 0.22677776217460632, + "learning_rate": 0.0006, + "loss": 3.579428195953369, + "step": 4007 + }, + { + "epoch": 55.671035386631715, + "grad_norm": 0.22263763844966888, + "learning_rate": 0.0006, + "loss": 3.5878806114196777, + "step": 4008 + }, + { + "epoch": 55.68501529051988, + "grad_norm": 0.24498602747917175, + "learning_rate": 0.0006, + "loss": 3.5989317893981934, + "step": 4009 + }, + { + "epoch": 55.69899519440804, + "grad_norm": 0.26294007897377014, + "learning_rate": 0.0006, + "loss": 3.5866756439208984, + "step": 4010 + }, + { + "epoch": 55.7129750982962, + "grad_norm": 0.22105370461940765, + "learning_rate": 0.0006, + "loss": 3.594365119934082, + "step": 4011 + }, + { + "epoch": 55.72695500218436, + "grad_norm": 0.20973286032676697, + "learning_rate": 0.0006, + "loss": 3.551156997680664, + "step": 4012 + }, + { + "epoch": 55.74093490607252, + "grad_norm": 0.2123304158449173, + "learning_rate": 0.0006, + "loss": 3.587405204772949, + "step": 4013 + }, + { + "epoch": 55.75491480996068, + "grad_norm": 0.22134795784950256, + "learning_rate": 0.0006, + "loss": 3.59114146232605, + "step": 4014 + }, + { + "epoch": 55.768894713848844, + "grad_norm": 0.20822957158088684, + "learning_rate": 0.0006, + "loss": 3.5910749435424805, + "step": 4015 + }, + { + "epoch": 55.782874617737, + "grad_norm": 0.22392229735851288, + "learning_rate": 0.0006, + "loss": 3.5800669193267822, + "step": 4016 + }, + { + "epoch": 55.796854521625164, + "grad_norm": 0.2214914709329605, + "learning_rate": 0.0006, + "loss": 3.5553741455078125, + "step": 4017 + }, + { + "epoch": 55.81083442551333, + "grad_norm": 0.1993025690317154, + "learning_rate": 0.0006, + "loss": 3.567298412322998, + "step": 4018 + }, + { + "epoch": 55.824814329401484, + "grad_norm": 0.21043774485588074, + "learning_rate": 0.0006, + "loss": 3.537358045578003, + "step": 4019 + }, + { + "epoch": 55.83879423328965, + "grad_norm": 0.18501818180084229, + "learning_rate": 0.0006, + "loss": 3.5971930027008057, + "step": 4020 + }, + { + "epoch": 55.8527741371778, + "grad_norm": 0.19626867771148682, + "learning_rate": 0.0006, + "loss": 3.563570976257324, + "step": 4021 + }, + { + "epoch": 55.86675404106597, + "grad_norm": 0.19328820705413818, + "learning_rate": 0.0006, + "loss": 3.600377082824707, + "step": 4022 + }, + { + "epoch": 55.88073394495413, + "grad_norm": 0.2013237327337265, + "learning_rate": 0.0006, + "loss": 3.5916812419891357, + "step": 4023 + }, + { + "epoch": 55.89471384884229, + "grad_norm": 0.22775673866271973, + "learning_rate": 0.0006, + "loss": 3.5572638511657715, + "step": 4024 + }, + { + "epoch": 55.90869375273045, + "grad_norm": 0.2452211230993271, + "learning_rate": 0.0006, + "loss": 3.54378080368042, + "step": 4025 + }, + { + "epoch": 55.92267365661861, + "grad_norm": 0.23337189853191376, + "learning_rate": 0.0006, + "loss": 3.5853466987609863, + "step": 4026 + }, + { + "epoch": 55.93665356050677, + "grad_norm": 0.20073719322681427, + "learning_rate": 0.0006, + "loss": 3.5793843269348145, + "step": 4027 + }, + { + "epoch": 55.95063346439493, + "grad_norm": 0.1963811218738556, + "learning_rate": 0.0006, + "loss": 3.5783073902130127, + "step": 4028 + }, + { + "epoch": 55.964613368283096, + "grad_norm": 0.19921033084392548, + "learning_rate": 0.0006, + "loss": 3.5455331802368164, + "step": 4029 + }, + { + "epoch": 55.97859327217125, + "grad_norm": 0.22151921689510345, + "learning_rate": 0.0006, + "loss": 3.551476001739502, + "step": 4030 + }, + { + "epoch": 55.992573176059416, + "grad_norm": 0.2636640965938568, + "learning_rate": 0.0006, + "loss": 3.5859174728393555, + "step": 4031 + }, + { + "epoch": 56.0, + "grad_norm": 0.282680869102478, + "learning_rate": 0.0006, + "loss": 3.5818469524383545, + "step": 4032 + }, + { + "epoch": 56.0, + "eval_loss": 3.982189178466797, + "eval_runtime": 44.2577, + "eval_samples_per_second": 55.177, + "eval_steps_per_second": 3.457, + "step": 4032 + }, + { + "epoch": 56.01397990388816, + "grad_norm": 0.23316597938537598, + "learning_rate": 0.0006, + "loss": 3.5500292778015137, + "step": 4033 + }, + { + "epoch": 56.02795980777632, + "grad_norm": 0.22836777567863464, + "learning_rate": 0.0006, + "loss": 3.5661063194274902, + "step": 4034 + }, + { + "epoch": 56.04193971166448, + "grad_norm": 0.2607800364494324, + "learning_rate": 0.0006, + "loss": 3.5496177673339844, + "step": 4035 + }, + { + "epoch": 56.05591961555265, + "grad_norm": 0.2620518207550049, + "learning_rate": 0.0006, + "loss": 3.562621831893921, + "step": 4036 + }, + { + "epoch": 56.0698995194408, + "grad_norm": 0.2344953864812851, + "learning_rate": 0.0006, + "loss": 3.5371389389038086, + "step": 4037 + }, + { + "epoch": 56.083879423328966, + "grad_norm": 0.2523435950279236, + "learning_rate": 0.0006, + "loss": 3.565216541290283, + "step": 4038 + }, + { + "epoch": 56.09785932721712, + "grad_norm": 0.26315048336982727, + "learning_rate": 0.0006, + "loss": 3.5510857105255127, + "step": 4039 + }, + { + "epoch": 56.111839231105286, + "grad_norm": 0.256817102432251, + "learning_rate": 0.0006, + "loss": 3.576132297515869, + "step": 4040 + }, + { + "epoch": 56.12581913499345, + "grad_norm": 0.25146403908729553, + "learning_rate": 0.0006, + "loss": 3.550875663757324, + "step": 4041 + }, + { + "epoch": 56.139799038881605, + "grad_norm": 0.2471698820590973, + "learning_rate": 0.0006, + "loss": 3.5574288368225098, + "step": 4042 + }, + { + "epoch": 56.15377894276977, + "grad_norm": 0.2324669510126114, + "learning_rate": 0.0006, + "loss": 3.524637222290039, + "step": 4043 + }, + { + "epoch": 56.16775884665793, + "grad_norm": 0.21824438869953156, + "learning_rate": 0.0006, + "loss": 3.563664436340332, + "step": 4044 + }, + { + "epoch": 56.18173875054609, + "grad_norm": 0.2381063550710678, + "learning_rate": 0.0006, + "loss": 3.573061943054199, + "step": 4045 + }, + { + "epoch": 56.19571865443425, + "grad_norm": 0.23728328943252563, + "learning_rate": 0.0006, + "loss": 3.5563716888427734, + "step": 4046 + }, + { + "epoch": 56.20969855832241, + "grad_norm": 0.20998933911323547, + "learning_rate": 0.0006, + "loss": 3.540152072906494, + "step": 4047 + }, + { + "epoch": 56.22367846221057, + "grad_norm": 0.2249690741300583, + "learning_rate": 0.0006, + "loss": 3.5699682235717773, + "step": 4048 + }, + { + "epoch": 56.237658366098735, + "grad_norm": 0.22615988552570343, + "learning_rate": 0.0006, + "loss": 3.5604777336120605, + "step": 4049 + }, + { + "epoch": 56.25163826998689, + "grad_norm": 0.20918409526348114, + "learning_rate": 0.0006, + "loss": 3.5612001419067383, + "step": 4050 + }, + { + "epoch": 56.265618173875055, + "grad_norm": 0.22025109827518463, + "learning_rate": 0.0006, + "loss": 3.520402193069458, + "step": 4051 + }, + { + "epoch": 56.27959807776322, + "grad_norm": 0.22722174227237701, + "learning_rate": 0.0006, + "loss": 3.52360200881958, + "step": 4052 + }, + { + "epoch": 56.293577981651374, + "grad_norm": 0.2115592360496521, + "learning_rate": 0.0006, + "loss": 3.562689781188965, + "step": 4053 + }, + { + "epoch": 56.30755788553954, + "grad_norm": 0.19253599643707275, + "learning_rate": 0.0006, + "loss": 3.545013427734375, + "step": 4054 + }, + { + "epoch": 56.3215377894277, + "grad_norm": 0.2534266710281372, + "learning_rate": 0.0006, + "loss": 3.530149459838867, + "step": 4055 + }, + { + "epoch": 56.33551769331586, + "grad_norm": 0.2871302366256714, + "learning_rate": 0.0006, + "loss": 3.5667316913604736, + "step": 4056 + }, + { + "epoch": 56.34949759720402, + "grad_norm": 0.2686561048030853, + "learning_rate": 0.0006, + "loss": 3.5341169834136963, + "step": 4057 + }, + { + "epoch": 56.36347750109218, + "grad_norm": 0.21016116440296173, + "learning_rate": 0.0006, + "loss": 3.5151243209838867, + "step": 4058 + }, + { + "epoch": 56.37745740498034, + "grad_norm": 0.20810428261756897, + "learning_rate": 0.0006, + "loss": 3.5641677379608154, + "step": 4059 + }, + { + "epoch": 56.391437308868504, + "grad_norm": 0.2732172906398773, + "learning_rate": 0.0006, + "loss": 3.546082019805908, + "step": 4060 + }, + { + "epoch": 56.40541721275666, + "grad_norm": 0.26587602496147156, + "learning_rate": 0.0006, + "loss": 3.5465946197509766, + "step": 4061 + }, + { + "epoch": 56.419397116644824, + "grad_norm": 0.20492126047611237, + "learning_rate": 0.0006, + "loss": 3.5686211585998535, + "step": 4062 + }, + { + "epoch": 56.43337702053299, + "grad_norm": 0.2147696167230606, + "learning_rate": 0.0006, + "loss": 3.5808653831481934, + "step": 4063 + }, + { + "epoch": 56.44735692442114, + "grad_norm": 0.21947690844535828, + "learning_rate": 0.0006, + "loss": 3.530872344970703, + "step": 4064 + }, + { + "epoch": 56.46133682830931, + "grad_norm": 0.21305148303508759, + "learning_rate": 0.0006, + "loss": 3.5480992794036865, + "step": 4065 + }, + { + "epoch": 56.47531673219746, + "grad_norm": 0.2066979706287384, + "learning_rate": 0.0006, + "loss": 3.5198287963867188, + "step": 4066 + }, + { + "epoch": 56.489296636085626, + "grad_norm": 0.19393840432167053, + "learning_rate": 0.0006, + "loss": 3.555344581604004, + "step": 4067 + }, + { + "epoch": 56.50327653997379, + "grad_norm": 0.19889849424362183, + "learning_rate": 0.0006, + "loss": 3.56475830078125, + "step": 4068 + }, + { + "epoch": 56.517256443861946, + "grad_norm": 0.19851456582546234, + "learning_rate": 0.0006, + "loss": 3.5790982246398926, + "step": 4069 + }, + { + "epoch": 56.53123634775011, + "grad_norm": 0.19570177793502808, + "learning_rate": 0.0006, + "loss": 3.558379888534546, + "step": 4070 + }, + { + "epoch": 56.54521625163827, + "grad_norm": 0.21364007890224457, + "learning_rate": 0.0006, + "loss": 3.586343288421631, + "step": 4071 + }, + { + "epoch": 56.55919615552643, + "grad_norm": 0.22896543145179749, + "learning_rate": 0.0006, + "loss": 3.5565874576568604, + "step": 4072 + }, + { + "epoch": 56.57317605941459, + "grad_norm": 0.21665218472480774, + "learning_rate": 0.0006, + "loss": 3.5737056732177734, + "step": 4073 + }, + { + "epoch": 56.58715596330275, + "grad_norm": 0.1964256912469864, + "learning_rate": 0.0006, + "loss": 3.555798053741455, + "step": 4074 + }, + { + "epoch": 56.60113586719091, + "grad_norm": 0.2056122124195099, + "learning_rate": 0.0006, + "loss": 3.548685073852539, + "step": 4075 + }, + { + "epoch": 56.615115771079076, + "grad_norm": 0.21677979826927185, + "learning_rate": 0.0006, + "loss": 3.569136619567871, + "step": 4076 + }, + { + "epoch": 56.62909567496723, + "grad_norm": 0.2029557228088379, + "learning_rate": 0.0006, + "loss": 3.5723280906677246, + "step": 4077 + }, + { + "epoch": 56.643075578855395, + "grad_norm": 0.22111767530441284, + "learning_rate": 0.0006, + "loss": 3.5784404277801514, + "step": 4078 + }, + { + "epoch": 56.65705548274356, + "grad_norm": 0.245675191283226, + "learning_rate": 0.0006, + "loss": 3.559330940246582, + "step": 4079 + }, + { + "epoch": 56.671035386631715, + "grad_norm": 0.19715000689029694, + "learning_rate": 0.0006, + "loss": 3.5694894790649414, + "step": 4080 + }, + { + "epoch": 56.68501529051988, + "grad_norm": 0.2112303525209427, + "learning_rate": 0.0006, + "loss": 3.5932059288024902, + "step": 4081 + }, + { + "epoch": 56.69899519440804, + "grad_norm": 0.23710735142230988, + "learning_rate": 0.0006, + "loss": 3.59895658493042, + "step": 4082 + }, + { + "epoch": 56.7129750982962, + "grad_norm": 0.2507518529891968, + "learning_rate": 0.0006, + "loss": 3.58455228805542, + "step": 4083 + }, + { + "epoch": 56.72695500218436, + "grad_norm": 0.24770016968250275, + "learning_rate": 0.0006, + "loss": 3.566256046295166, + "step": 4084 + }, + { + "epoch": 56.74093490607252, + "grad_norm": 0.2407187819480896, + "learning_rate": 0.0006, + "loss": 3.6002347469329834, + "step": 4085 + }, + { + "epoch": 56.75491480996068, + "grad_norm": 0.21417197585105896, + "learning_rate": 0.0006, + "loss": 3.5579819679260254, + "step": 4086 + }, + { + "epoch": 56.768894713848844, + "grad_norm": 0.21014295518398285, + "learning_rate": 0.0006, + "loss": 3.574289321899414, + "step": 4087 + }, + { + "epoch": 56.782874617737, + "grad_norm": 0.2265855073928833, + "learning_rate": 0.0006, + "loss": 3.589186906814575, + "step": 4088 + }, + { + "epoch": 56.796854521625164, + "grad_norm": 0.22685059905052185, + "learning_rate": 0.0006, + "loss": 3.567077159881592, + "step": 4089 + }, + { + "epoch": 56.81083442551333, + "grad_norm": 0.21579493582248688, + "learning_rate": 0.0006, + "loss": 3.5568556785583496, + "step": 4090 + }, + { + "epoch": 56.824814329401484, + "grad_norm": 0.2049565464258194, + "learning_rate": 0.0006, + "loss": 3.5547285079956055, + "step": 4091 + }, + { + "epoch": 56.83879423328965, + "grad_norm": 0.21019354462623596, + "learning_rate": 0.0006, + "loss": 3.606884479522705, + "step": 4092 + }, + { + "epoch": 56.8527741371778, + "grad_norm": 0.26110008358955383, + "learning_rate": 0.0006, + "loss": 3.5626933574676514, + "step": 4093 + }, + { + "epoch": 56.86675404106597, + "grad_norm": 0.22148117423057556, + "learning_rate": 0.0006, + "loss": 3.5739552974700928, + "step": 4094 + }, + { + "epoch": 56.88073394495413, + "grad_norm": 0.20535576343536377, + "learning_rate": 0.0006, + "loss": 3.566840648651123, + "step": 4095 + }, + { + "epoch": 56.89471384884229, + "grad_norm": 0.1928025484085083, + "learning_rate": 0.0006, + "loss": 3.5637013912200928, + "step": 4096 + }, + { + "epoch": 56.90869375273045, + "grad_norm": 0.1989327371120453, + "learning_rate": 0.0006, + "loss": 3.5881259441375732, + "step": 4097 + }, + { + "epoch": 56.92267365661861, + "grad_norm": 0.21137912571430206, + "learning_rate": 0.0006, + "loss": 3.5513358116149902, + "step": 4098 + }, + { + "epoch": 56.93665356050677, + "grad_norm": 0.22471629083156586, + "learning_rate": 0.0006, + "loss": 3.5630130767822266, + "step": 4099 + }, + { + "epoch": 56.95063346439493, + "grad_norm": 0.2323181927204132, + "learning_rate": 0.0006, + "loss": 3.559762477874756, + "step": 4100 + }, + { + "epoch": 56.964613368283096, + "grad_norm": 0.2020239382982254, + "learning_rate": 0.0006, + "loss": 3.596774101257324, + "step": 4101 + }, + { + "epoch": 56.97859327217125, + "grad_norm": 0.21822074055671692, + "learning_rate": 0.0006, + "loss": 3.598115921020508, + "step": 4102 + }, + { + "epoch": 56.992573176059416, + "grad_norm": 0.20600785315036774, + "learning_rate": 0.0006, + "loss": 3.5579686164855957, + "step": 4103 + }, + { + "epoch": 57.0, + "grad_norm": 0.23575574159622192, + "learning_rate": 0.0006, + "loss": 3.57532000541687, + "step": 4104 + }, + { + "epoch": 57.0, + "eval_loss": 3.9726130962371826, + "eval_runtime": 44.7918, + "eval_samples_per_second": 54.519, + "eval_steps_per_second": 3.416, + "step": 4104 + }, + { + "epoch": 57.01397990388816, + "grad_norm": 0.2366827428340912, + "learning_rate": 0.0006, + "loss": 3.552804946899414, + "step": 4105 + }, + { + "epoch": 57.02795980777632, + "grad_norm": 0.2728131115436554, + "learning_rate": 0.0006, + "loss": 3.5407862663269043, + "step": 4106 + }, + { + "epoch": 57.04193971166448, + "grad_norm": 0.2685103416442871, + "learning_rate": 0.0006, + "loss": 3.525047779083252, + "step": 4107 + }, + { + "epoch": 57.05591961555265, + "grad_norm": 0.26493778824806213, + "learning_rate": 0.0006, + "loss": 3.527106523513794, + "step": 4108 + }, + { + "epoch": 57.0698995194408, + "grad_norm": 0.290961354970932, + "learning_rate": 0.0006, + "loss": 3.5482702255249023, + "step": 4109 + }, + { + "epoch": 57.083879423328966, + "grad_norm": 0.33083876967430115, + "learning_rate": 0.0006, + "loss": 3.5123658180236816, + "step": 4110 + }, + { + "epoch": 57.09785932721712, + "grad_norm": 0.28544098138809204, + "learning_rate": 0.0006, + "loss": 3.5563549995422363, + "step": 4111 + }, + { + "epoch": 57.111839231105286, + "grad_norm": 0.2516465187072754, + "learning_rate": 0.0006, + "loss": 3.547360420227051, + "step": 4112 + }, + { + "epoch": 57.12581913499345, + "grad_norm": 0.2485780417919159, + "learning_rate": 0.0006, + "loss": 3.5234861373901367, + "step": 4113 + }, + { + "epoch": 57.139799038881605, + "grad_norm": 0.246695414185524, + "learning_rate": 0.0006, + "loss": 3.573009490966797, + "step": 4114 + }, + { + "epoch": 57.15377894276977, + "grad_norm": 0.24958990514278412, + "learning_rate": 0.0006, + "loss": 3.5322680473327637, + "step": 4115 + }, + { + "epoch": 57.16775884665793, + "grad_norm": 0.20882244408130646, + "learning_rate": 0.0006, + "loss": 3.5463480949401855, + "step": 4116 + }, + { + "epoch": 57.18173875054609, + "grad_norm": 0.2372189313173294, + "learning_rate": 0.0006, + "loss": 3.543396472930908, + "step": 4117 + }, + { + "epoch": 57.19571865443425, + "grad_norm": 0.24817894399166107, + "learning_rate": 0.0006, + "loss": 3.5594849586486816, + "step": 4118 + }, + { + "epoch": 57.20969855832241, + "grad_norm": 0.2231832891702652, + "learning_rate": 0.0006, + "loss": 3.5276806354522705, + "step": 4119 + }, + { + "epoch": 57.22367846221057, + "grad_norm": 0.2211553156375885, + "learning_rate": 0.0006, + "loss": 3.5423057079315186, + "step": 4120 + }, + { + "epoch": 57.237658366098735, + "grad_norm": 0.2495127022266388, + "learning_rate": 0.0006, + "loss": 3.57668399810791, + "step": 4121 + }, + { + "epoch": 57.25163826998689, + "grad_norm": 0.2548885941505432, + "learning_rate": 0.0006, + "loss": 3.5487570762634277, + "step": 4122 + }, + { + "epoch": 57.265618173875055, + "grad_norm": 0.22884942591190338, + "learning_rate": 0.0006, + "loss": 3.560772180557251, + "step": 4123 + }, + { + "epoch": 57.27959807776322, + "grad_norm": 0.20817993581295013, + "learning_rate": 0.0006, + "loss": 3.5540637969970703, + "step": 4124 + }, + { + "epoch": 57.293577981651374, + "grad_norm": 0.2075389176607132, + "learning_rate": 0.0006, + "loss": 3.5382890701293945, + "step": 4125 + }, + { + "epoch": 57.30755788553954, + "grad_norm": 0.2081303596496582, + "learning_rate": 0.0006, + "loss": 3.554612874984741, + "step": 4126 + }, + { + "epoch": 57.3215377894277, + "grad_norm": 0.2108871191740036, + "learning_rate": 0.0006, + "loss": 3.583320379257202, + "step": 4127 + }, + { + "epoch": 57.33551769331586, + "grad_norm": 0.21608266234397888, + "learning_rate": 0.0006, + "loss": 3.5358712673187256, + "step": 4128 + }, + { + "epoch": 57.34949759720402, + "grad_norm": 0.21208034455776215, + "learning_rate": 0.0006, + "loss": 3.561821937561035, + "step": 4129 + }, + { + "epoch": 57.36347750109218, + "grad_norm": 0.2109878957271576, + "learning_rate": 0.0006, + "loss": 3.5592710971832275, + "step": 4130 + }, + { + "epoch": 57.37745740498034, + "grad_norm": 0.2175656110048294, + "learning_rate": 0.0006, + "loss": 3.5616424083709717, + "step": 4131 + }, + { + "epoch": 57.391437308868504, + "grad_norm": 0.2170158475637436, + "learning_rate": 0.0006, + "loss": 3.5580999851226807, + "step": 4132 + }, + { + "epoch": 57.40541721275666, + "grad_norm": 0.22486525774002075, + "learning_rate": 0.0006, + "loss": 3.562096118927002, + "step": 4133 + }, + { + "epoch": 57.419397116644824, + "grad_norm": 0.22458943724632263, + "learning_rate": 0.0006, + "loss": 3.5784192085266113, + "step": 4134 + }, + { + "epoch": 57.43337702053299, + "grad_norm": 0.20545627176761627, + "learning_rate": 0.0006, + "loss": 3.5740323066711426, + "step": 4135 + }, + { + "epoch": 57.44735692442114, + "grad_norm": 0.22105063498020172, + "learning_rate": 0.0006, + "loss": 3.537400245666504, + "step": 4136 + }, + { + "epoch": 57.46133682830931, + "grad_norm": 0.26679784059524536, + "learning_rate": 0.0006, + "loss": 3.5323081016540527, + "step": 4137 + }, + { + "epoch": 57.47531673219746, + "grad_norm": 0.2646673321723938, + "learning_rate": 0.0006, + "loss": 3.54030442237854, + "step": 4138 + }, + { + "epoch": 57.489296636085626, + "grad_norm": 0.22486890852451324, + "learning_rate": 0.0006, + "loss": 3.558323621749878, + "step": 4139 + }, + { + "epoch": 57.50327653997379, + "grad_norm": 0.20868313312530518, + "learning_rate": 0.0006, + "loss": 3.5296707153320312, + "step": 4140 + }, + { + "epoch": 57.517256443861946, + "grad_norm": 0.22973674535751343, + "learning_rate": 0.0006, + "loss": 3.5401687622070312, + "step": 4141 + }, + { + "epoch": 57.53123634775011, + "grad_norm": 0.22321778535842896, + "learning_rate": 0.0006, + "loss": 3.566683530807495, + "step": 4142 + }, + { + "epoch": 57.54521625163827, + "grad_norm": 0.20808766782283783, + "learning_rate": 0.0006, + "loss": 3.5398507118225098, + "step": 4143 + }, + { + "epoch": 57.55919615552643, + "grad_norm": 0.19632819294929504, + "learning_rate": 0.0006, + "loss": 3.5785460472106934, + "step": 4144 + }, + { + "epoch": 57.57317605941459, + "grad_norm": 0.18699012696743011, + "learning_rate": 0.0006, + "loss": 3.5495004653930664, + "step": 4145 + }, + { + "epoch": 57.58715596330275, + "grad_norm": 0.19161473214626312, + "learning_rate": 0.0006, + "loss": 3.550243854522705, + "step": 4146 + }, + { + "epoch": 57.60113586719091, + "grad_norm": 0.21041646599769592, + "learning_rate": 0.0006, + "loss": 3.5801823139190674, + "step": 4147 + }, + { + "epoch": 57.615115771079076, + "grad_norm": 0.2043760120868683, + "learning_rate": 0.0006, + "loss": 3.580418825149536, + "step": 4148 + }, + { + "epoch": 57.62909567496723, + "grad_norm": 0.21515823900699615, + "learning_rate": 0.0006, + "loss": 3.58026385307312, + "step": 4149 + }, + { + "epoch": 57.643075578855395, + "grad_norm": 0.20913724601268768, + "learning_rate": 0.0006, + "loss": 3.5452992916107178, + "step": 4150 + }, + { + "epoch": 57.65705548274356, + "grad_norm": 0.22621729969978333, + "learning_rate": 0.0006, + "loss": 3.5332765579223633, + "step": 4151 + }, + { + "epoch": 57.671035386631715, + "grad_norm": 0.26475241780281067, + "learning_rate": 0.0006, + "loss": 3.5701823234558105, + "step": 4152 + }, + { + "epoch": 57.68501529051988, + "grad_norm": 0.2567952275276184, + "learning_rate": 0.0006, + "loss": 3.597219228744507, + "step": 4153 + }, + { + "epoch": 57.69899519440804, + "grad_norm": 0.19640378654003143, + "learning_rate": 0.0006, + "loss": 3.5865941047668457, + "step": 4154 + }, + { + "epoch": 57.7129750982962, + "grad_norm": 0.21714240312576294, + "learning_rate": 0.0006, + "loss": 3.555518627166748, + "step": 4155 + }, + { + "epoch": 57.72695500218436, + "grad_norm": 0.2604375183582306, + "learning_rate": 0.0006, + "loss": 3.5756402015686035, + "step": 4156 + }, + { + "epoch": 57.74093490607252, + "grad_norm": 0.24627837538719177, + "learning_rate": 0.0006, + "loss": 3.550668239593506, + "step": 4157 + }, + { + "epoch": 57.75491480996068, + "grad_norm": 0.21893182396888733, + "learning_rate": 0.0006, + "loss": 3.5560038089752197, + "step": 4158 + }, + { + "epoch": 57.768894713848844, + "grad_norm": 0.23481261730194092, + "learning_rate": 0.0006, + "loss": 3.543942451477051, + "step": 4159 + }, + { + "epoch": 57.782874617737, + "grad_norm": 0.21777133643627167, + "learning_rate": 0.0006, + "loss": 3.5652658939361572, + "step": 4160 + }, + { + "epoch": 57.796854521625164, + "grad_norm": 0.2158525437116623, + "learning_rate": 0.0006, + "loss": 3.5803327560424805, + "step": 4161 + }, + { + "epoch": 57.81083442551333, + "grad_norm": 0.19519925117492676, + "learning_rate": 0.0006, + "loss": 3.5814499855041504, + "step": 4162 + }, + { + "epoch": 57.824814329401484, + "grad_norm": 0.2017558217048645, + "learning_rate": 0.0006, + "loss": 3.558722972869873, + "step": 4163 + }, + { + "epoch": 57.83879423328965, + "grad_norm": 0.22046449780464172, + "learning_rate": 0.0006, + "loss": 3.559990882873535, + "step": 4164 + }, + { + "epoch": 57.8527741371778, + "grad_norm": 0.22240568697452545, + "learning_rate": 0.0006, + "loss": 3.5427942276000977, + "step": 4165 + }, + { + "epoch": 57.86675404106597, + "grad_norm": 0.20282965898513794, + "learning_rate": 0.0006, + "loss": 3.5449461936950684, + "step": 4166 + }, + { + "epoch": 57.88073394495413, + "grad_norm": 0.20970730483531952, + "learning_rate": 0.0006, + "loss": 3.592543601989746, + "step": 4167 + }, + { + "epoch": 57.89471384884229, + "grad_norm": 0.21963168680667877, + "learning_rate": 0.0006, + "loss": 3.5564393997192383, + "step": 4168 + }, + { + "epoch": 57.90869375273045, + "grad_norm": 0.20854730904102325, + "learning_rate": 0.0006, + "loss": 3.565591335296631, + "step": 4169 + }, + { + "epoch": 57.92267365661861, + "grad_norm": 0.24149510264396667, + "learning_rate": 0.0006, + "loss": 3.574720859527588, + "step": 4170 + }, + { + "epoch": 57.93665356050677, + "grad_norm": 0.26011863350868225, + "learning_rate": 0.0006, + "loss": 3.593156337738037, + "step": 4171 + }, + { + "epoch": 57.95063346439493, + "grad_norm": 0.24111896753311157, + "learning_rate": 0.0006, + "loss": 3.5871872901916504, + "step": 4172 + }, + { + "epoch": 57.964613368283096, + "grad_norm": 0.22362647950649261, + "learning_rate": 0.0006, + "loss": 3.568572998046875, + "step": 4173 + }, + { + "epoch": 57.97859327217125, + "grad_norm": 0.23621505498886108, + "learning_rate": 0.0006, + "loss": 3.5627479553222656, + "step": 4174 + }, + { + "epoch": 57.992573176059416, + "grad_norm": 0.2252524048089981, + "learning_rate": 0.0006, + "loss": 3.594430446624756, + "step": 4175 + }, + { + "epoch": 58.0, + "grad_norm": 0.24568618834018707, + "learning_rate": 0.0006, + "loss": 3.5520875453948975, + "step": 4176 + }, + { + "epoch": 58.0, + "eval_loss": 3.978929042816162, + "eval_runtime": 44.8688, + "eval_samples_per_second": 54.425, + "eval_steps_per_second": 3.41, + "step": 4176 + }, + { + "epoch": 58.01397990388816, + "grad_norm": 0.23220741748809814, + "learning_rate": 0.0006, + "loss": 3.5401225090026855, + "step": 4177 + }, + { + "epoch": 58.02795980777632, + "grad_norm": 0.214580699801445, + "learning_rate": 0.0006, + "loss": 3.507652759552002, + "step": 4178 + }, + { + "epoch": 58.04193971166448, + "grad_norm": 0.20596857368946075, + "learning_rate": 0.0006, + "loss": 3.5591790676116943, + "step": 4179 + }, + { + "epoch": 58.05591961555265, + "grad_norm": 0.23054419457912445, + "learning_rate": 0.0006, + "loss": 3.518101692199707, + "step": 4180 + }, + { + "epoch": 58.0698995194408, + "grad_norm": 0.2410690039396286, + "learning_rate": 0.0006, + "loss": 3.5270299911499023, + "step": 4181 + }, + { + "epoch": 58.083879423328966, + "grad_norm": 0.24333222210407257, + "learning_rate": 0.0006, + "loss": 3.5732290744781494, + "step": 4182 + }, + { + "epoch": 58.09785932721712, + "grad_norm": 0.2547648549079895, + "learning_rate": 0.0006, + "loss": 3.5470314025878906, + "step": 4183 + }, + { + "epoch": 58.111839231105286, + "grad_norm": 0.2366316169500351, + "learning_rate": 0.0006, + "loss": 3.500774621963501, + "step": 4184 + }, + { + "epoch": 58.12581913499345, + "grad_norm": 0.22653642296791077, + "learning_rate": 0.0006, + "loss": 3.5242254734039307, + "step": 4185 + }, + { + "epoch": 58.139799038881605, + "grad_norm": 0.25555330514907837, + "learning_rate": 0.0006, + "loss": 3.5272228717803955, + "step": 4186 + }, + { + "epoch": 58.15377894276977, + "grad_norm": 0.26559844613075256, + "learning_rate": 0.0006, + "loss": 3.5599403381347656, + "step": 4187 + }, + { + "epoch": 58.16775884665793, + "grad_norm": 0.2473350614309311, + "learning_rate": 0.0006, + "loss": 3.5130624771118164, + "step": 4188 + }, + { + "epoch": 58.18173875054609, + "grad_norm": 0.22858835756778717, + "learning_rate": 0.0006, + "loss": 3.508342742919922, + "step": 4189 + }, + { + "epoch": 58.19571865443425, + "grad_norm": 0.2151159793138504, + "learning_rate": 0.0006, + "loss": 3.533581256866455, + "step": 4190 + }, + { + "epoch": 58.20969855832241, + "grad_norm": 0.2042093276977539, + "learning_rate": 0.0006, + "loss": 3.5269458293914795, + "step": 4191 + }, + { + "epoch": 58.22367846221057, + "grad_norm": 0.20638196170330048, + "learning_rate": 0.0006, + "loss": 3.5137884616851807, + "step": 4192 + }, + { + "epoch": 58.237658366098735, + "grad_norm": 0.2018391191959381, + "learning_rate": 0.0006, + "loss": 3.533733367919922, + "step": 4193 + }, + { + "epoch": 58.25163826998689, + "grad_norm": 0.21045200526714325, + "learning_rate": 0.0006, + "loss": 3.5585010051727295, + "step": 4194 + }, + { + "epoch": 58.265618173875055, + "grad_norm": 0.2040393352508545, + "learning_rate": 0.0006, + "loss": 3.547539234161377, + "step": 4195 + }, + { + "epoch": 58.27959807776322, + "grad_norm": 0.2538772523403168, + "learning_rate": 0.0006, + "loss": 3.5487847328186035, + "step": 4196 + }, + { + "epoch": 58.293577981651374, + "grad_norm": 0.30126553773880005, + "learning_rate": 0.0006, + "loss": 3.5717992782592773, + "step": 4197 + }, + { + "epoch": 58.30755788553954, + "grad_norm": 0.2787485718727112, + "learning_rate": 0.0006, + "loss": 3.543076992034912, + "step": 4198 + }, + { + "epoch": 58.3215377894277, + "grad_norm": 0.23167021572589874, + "learning_rate": 0.0006, + "loss": 3.518887519836426, + "step": 4199 + }, + { + "epoch": 58.33551769331586, + "grad_norm": 0.23871110379695892, + "learning_rate": 0.0006, + "loss": 3.536757469177246, + "step": 4200 + }, + { + "epoch": 58.34949759720402, + "grad_norm": 0.2542787492275238, + "learning_rate": 0.0006, + "loss": 3.573086738586426, + "step": 4201 + }, + { + "epoch": 58.36347750109218, + "grad_norm": 0.2967284023761749, + "learning_rate": 0.0006, + "loss": 3.5866525173187256, + "step": 4202 + }, + { + "epoch": 58.37745740498034, + "grad_norm": 0.28304803371429443, + "learning_rate": 0.0006, + "loss": 3.5601437091827393, + "step": 4203 + }, + { + "epoch": 58.391437308868504, + "grad_norm": 0.20651954412460327, + "learning_rate": 0.0006, + "loss": 3.5591554641723633, + "step": 4204 + }, + { + "epoch": 58.40541721275666, + "grad_norm": 0.23101729154586792, + "learning_rate": 0.0006, + "loss": 3.5714032649993896, + "step": 4205 + }, + { + "epoch": 58.419397116644824, + "grad_norm": 0.24556246399879456, + "learning_rate": 0.0006, + "loss": 3.550046443939209, + "step": 4206 + }, + { + "epoch": 58.43337702053299, + "grad_norm": 0.2307356745004654, + "learning_rate": 0.0006, + "loss": 3.571850299835205, + "step": 4207 + }, + { + "epoch": 58.44735692442114, + "grad_norm": 0.23186670243740082, + "learning_rate": 0.0006, + "loss": 3.555757999420166, + "step": 4208 + }, + { + "epoch": 58.46133682830931, + "grad_norm": 0.20662686228752136, + "learning_rate": 0.0006, + "loss": 3.5590686798095703, + "step": 4209 + }, + { + "epoch": 58.47531673219746, + "grad_norm": 0.20381265878677368, + "learning_rate": 0.0006, + "loss": 3.5228846073150635, + "step": 4210 + }, + { + "epoch": 58.489296636085626, + "grad_norm": 0.20927058160305023, + "learning_rate": 0.0006, + "loss": 3.5376980304718018, + "step": 4211 + }, + { + "epoch": 58.50327653997379, + "grad_norm": 0.22782307863235474, + "learning_rate": 0.0006, + "loss": 3.5477585792541504, + "step": 4212 + }, + { + "epoch": 58.517256443861946, + "grad_norm": 0.20143239200115204, + "learning_rate": 0.0006, + "loss": 3.5429391860961914, + "step": 4213 + }, + { + "epoch": 58.53123634775011, + "grad_norm": 0.2120865285396576, + "learning_rate": 0.0006, + "loss": 3.5543365478515625, + "step": 4214 + }, + { + "epoch": 58.54521625163827, + "grad_norm": 0.2032771110534668, + "learning_rate": 0.0006, + "loss": 3.5307888984680176, + "step": 4215 + }, + { + "epoch": 58.55919615552643, + "grad_norm": 0.20994187891483307, + "learning_rate": 0.0006, + "loss": 3.581739664077759, + "step": 4216 + }, + { + "epoch": 58.57317605941459, + "grad_norm": 0.23686161637306213, + "learning_rate": 0.0006, + "loss": 3.5274312496185303, + "step": 4217 + }, + { + "epoch": 58.58715596330275, + "grad_norm": 0.21081998944282532, + "learning_rate": 0.0006, + "loss": 3.547239303588867, + "step": 4218 + }, + { + "epoch": 58.60113586719091, + "grad_norm": 0.20353151857852936, + "learning_rate": 0.0006, + "loss": 3.5522308349609375, + "step": 4219 + }, + { + "epoch": 58.615115771079076, + "grad_norm": 0.20888762176036835, + "learning_rate": 0.0006, + "loss": 3.5535459518432617, + "step": 4220 + }, + { + "epoch": 58.62909567496723, + "grad_norm": 0.2024519443511963, + "learning_rate": 0.0006, + "loss": 3.5320982933044434, + "step": 4221 + }, + { + "epoch": 58.643075578855395, + "grad_norm": 0.19622337818145752, + "learning_rate": 0.0006, + "loss": 3.5581917762756348, + "step": 4222 + }, + { + "epoch": 58.65705548274356, + "grad_norm": 0.1966600865125656, + "learning_rate": 0.0006, + "loss": 3.5412650108337402, + "step": 4223 + }, + { + "epoch": 58.671035386631715, + "grad_norm": 0.19325542449951172, + "learning_rate": 0.0006, + "loss": 3.570521593093872, + "step": 4224 + }, + { + "epoch": 58.68501529051988, + "grad_norm": 0.20674128830432892, + "learning_rate": 0.0006, + "loss": 3.5727484226226807, + "step": 4225 + }, + { + "epoch": 58.69899519440804, + "grad_norm": 0.1959284245967865, + "learning_rate": 0.0006, + "loss": 3.5655486583709717, + "step": 4226 + }, + { + "epoch": 58.7129750982962, + "grad_norm": 0.2044358104467392, + "learning_rate": 0.0006, + "loss": 3.5477449893951416, + "step": 4227 + }, + { + "epoch": 58.72695500218436, + "grad_norm": 0.21381069719791412, + "learning_rate": 0.0006, + "loss": 3.533381462097168, + "step": 4228 + }, + { + "epoch": 58.74093490607252, + "grad_norm": 0.20168009400367737, + "learning_rate": 0.0006, + "loss": 3.5401244163513184, + "step": 4229 + }, + { + "epoch": 58.75491480996068, + "grad_norm": 0.20853811502456665, + "learning_rate": 0.0006, + "loss": 3.5669009685516357, + "step": 4230 + }, + { + "epoch": 58.768894713848844, + "grad_norm": 0.2135785073041916, + "learning_rate": 0.0006, + "loss": 3.5697989463806152, + "step": 4231 + }, + { + "epoch": 58.782874617737, + "grad_norm": 0.20372799038887024, + "learning_rate": 0.0006, + "loss": 3.592245101928711, + "step": 4232 + }, + { + "epoch": 58.796854521625164, + "grad_norm": 0.20562207698822021, + "learning_rate": 0.0006, + "loss": 3.5732932090759277, + "step": 4233 + }, + { + "epoch": 58.81083442551333, + "grad_norm": 0.1932520568370819, + "learning_rate": 0.0006, + "loss": 3.581766128540039, + "step": 4234 + }, + { + "epoch": 58.824814329401484, + "grad_norm": 0.20229186117649078, + "learning_rate": 0.0006, + "loss": 3.5758426189422607, + "step": 4235 + }, + { + "epoch": 58.83879423328965, + "grad_norm": 0.21348924934864044, + "learning_rate": 0.0006, + "loss": 3.573164939880371, + "step": 4236 + }, + { + "epoch": 58.8527741371778, + "grad_norm": 0.2240375131368637, + "learning_rate": 0.0006, + "loss": 3.578442096710205, + "step": 4237 + }, + { + "epoch": 58.86675404106597, + "grad_norm": 0.22859376668930054, + "learning_rate": 0.0006, + "loss": 3.5597116947174072, + "step": 4238 + }, + { + "epoch": 58.88073394495413, + "grad_norm": 0.22347290813922882, + "learning_rate": 0.0006, + "loss": 3.557039260864258, + "step": 4239 + }, + { + "epoch": 58.89471384884229, + "grad_norm": 0.19835364818572998, + "learning_rate": 0.0006, + "loss": 3.5832467079162598, + "step": 4240 + }, + { + "epoch": 58.90869375273045, + "grad_norm": 0.21189740300178528, + "learning_rate": 0.0006, + "loss": 3.5421836376190186, + "step": 4241 + }, + { + "epoch": 58.92267365661861, + "grad_norm": 0.21234451234340668, + "learning_rate": 0.0006, + "loss": 3.6048710346221924, + "step": 4242 + }, + { + "epoch": 58.93665356050677, + "grad_norm": 0.2107880860567093, + "learning_rate": 0.0006, + "loss": 3.58248233795166, + "step": 4243 + }, + { + "epoch": 58.95063346439493, + "grad_norm": 0.21674086153507233, + "learning_rate": 0.0006, + "loss": 3.582352876663208, + "step": 4244 + }, + { + "epoch": 58.964613368283096, + "grad_norm": 0.21057581901550293, + "learning_rate": 0.0006, + "loss": 3.5387773513793945, + "step": 4245 + }, + { + "epoch": 58.97859327217125, + "grad_norm": 0.20203082263469696, + "learning_rate": 0.0006, + "loss": 3.5805740356445312, + "step": 4246 + }, + { + "epoch": 58.992573176059416, + "grad_norm": 0.21071292459964752, + "learning_rate": 0.0006, + "loss": 3.5644760131835938, + "step": 4247 + }, + { + "epoch": 59.0, + "grad_norm": 0.2473233938217163, + "learning_rate": 0.0006, + "loss": 3.56392765045166, + "step": 4248 + }, + { + "epoch": 59.0, + "eval_loss": 3.9670467376708984, + "eval_runtime": 44.7697, + "eval_samples_per_second": 54.546, + "eval_steps_per_second": 3.417, + "step": 4248 + }, + { + "epoch": 59.01397990388816, + "grad_norm": 0.22915491461753845, + "learning_rate": 0.0006, + "loss": 3.5110130310058594, + "step": 4249 + }, + { + "epoch": 59.02795980777632, + "grad_norm": 0.2629511058330536, + "learning_rate": 0.0006, + "loss": 3.5493721961975098, + "step": 4250 + }, + { + "epoch": 59.04193971166448, + "grad_norm": 0.2954505383968353, + "learning_rate": 0.0006, + "loss": 3.555753707885742, + "step": 4251 + }, + { + "epoch": 59.05591961555265, + "grad_norm": 0.2728694677352905, + "learning_rate": 0.0006, + "loss": 3.5089950561523438, + "step": 4252 + }, + { + "epoch": 59.0698995194408, + "grad_norm": 0.25955384969711304, + "learning_rate": 0.0006, + "loss": 3.509044647216797, + "step": 4253 + }, + { + "epoch": 59.083879423328966, + "grad_norm": 0.32285967469215393, + "learning_rate": 0.0006, + "loss": 3.5324721336364746, + "step": 4254 + }, + { + "epoch": 59.09785932721712, + "grad_norm": 0.2913302779197693, + "learning_rate": 0.0006, + "loss": 3.5004022121429443, + "step": 4255 + }, + { + "epoch": 59.111839231105286, + "grad_norm": 0.23795513808727264, + "learning_rate": 0.0006, + "loss": 3.515099048614502, + "step": 4256 + }, + { + "epoch": 59.12581913499345, + "grad_norm": 0.2788177728652954, + "learning_rate": 0.0006, + "loss": 3.524991035461426, + "step": 4257 + }, + { + "epoch": 59.139799038881605, + "grad_norm": 0.32389938831329346, + "learning_rate": 0.0006, + "loss": 3.5330004692077637, + "step": 4258 + }, + { + "epoch": 59.15377894276977, + "grad_norm": 0.2921825647354126, + "learning_rate": 0.0006, + "loss": 3.530616283416748, + "step": 4259 + }, + { + "epoch": 59.16775884665793, + "grad_norm": 0.28415167331695557, + "learning_rate": 0.0006, + "loss": 3.5276989936828613, + "step": 4260 + }, + { + "epoch": 59.18173875054609, + "grad_norm": 0.283626526594162, + "learning_rate": 0.0006, + "loss": 3.564985752105713, + "step": 4261 + }, + { + "epoch": 59.19571865443425, + "grad_norm": 0.2655615210533142, + "learning_rate": 0.0006, + "loss": 3.536499500274658, + "step": 4262 + }, + { + "epoch": 59.20969855832241, + "grad_norm": 0.2794124484062195, + "learning_rate": 0.0006, + "loss": 3.570883274078369, + "step": 4263 + }, + { + "epoch": 59.22367846221057, + "grad_norm": 0.2803778052330017, + "learning_rate": 0.0006, + "loss": 3.5143651962280273, + "step": 4264 + }, + { + "epoch": 59.237658366098735, + "grad_norm": 0.2584295868873596, + "learning_rate": 0.0006, + "loss": 3.548056125640869, + "step": 4265 + }, + { + "epoch": 59.25163826998689, + "grad_norm": 0.26859962940216064, + "learning_rate": 0.0006, + "loss": 3.511655807495117, + "step": 4266 + }, + { + "epoch": 59.265618173875055, + "grad_norm": 0.26620036363601685, + "learning_rate": 0.0006, + "loss": 3.5554311275482178, + "step": 4267 + }, + { + "epoch": 59.27959807776322, + "grad_norm": 0.2325621247291565, + "learning_rate": 0.0006, + "loss": 3.5126709938049316, + "step": 4268 + }, + { + "epoch": 59.293577981651374, + "grad_norm": 0.24758809804916382, + "learning_rate": 0.0006, + "loss": 3.5747783184051514, + "step": 4269 + }, + { + "epoch": 59.30755788553954, + "grad_norm": 0.26378121972084045, + "learning_rate": 0.0006, + "loss": 3.538012742996216, + "step": 4270 + }, + { + "epoch": 59.3215377894277, + "grad_norm": 0.24299141764640808, + "learning_rate": 0.0006, + "loss": 3.533834457397461, + "step": 4271 + }, + { + "epoch": 59.33551769331586, + "grad_norm": 0.20792774856090546, + "learning_rate": 0.0006, + "loss": 3.5645856857299805, + "step": 4272 + }, + { + "epoch": 59.34949759720402, + "grad_norm": 0.21124716103076935, + "learning_rate": 0.0006, + "loss": 3.5616869926452637, + "step": 4273 + }, + { + "epoch": 59.36347750109218, + "grad_norm": 0.2644400894641876, + "learning_rate": 0.0006, + "loss": 3.531334400177002, + "step": 4274 + }, + { + "epoch": 59.37745740498034, + "grad_norm": 0.27659082412719727, + "learning_rate": 0.0006, + "loss": 3.5557894706726074, + "step": 4275 + }, + { + "epoch": 59.391437308868504, + "grad_norm": 0.21931052207946777, + "learning_rate": 0.0006, + "loss": 3.537261486053467, + "step": 4276 + }, + { + "epoch": 59.40541721275666, + "grad_norm": 0.20661118626594543, + "learning_rate": 0.0006, + "loss": 3.568042755126953, + "step": 4277 + }, + { + "epoch": 59.419397116644824, + "grad_norm": 0.2157975435256958, + "learning_rate": 0.0006, + "loss": 3.550891160964966, + "step": 4278 + }, + { + "epoch": 59.43337702053299, + "grad_norm": 0.20762090384960175, + "learning_rate": 0.0006, + "loss": 3.565798282623291, + "step": 4279 + }, + { + "epoch": 59.44735692442114, + "grad_norm": 0.19575528800487518, + "learning_rate": 0.0006, + "loss": 3.5518856048583984, + "step": 4280 + }, + { + "epoch": 59.46133682830931, + "grad_norm": 0.20730678737163544, + "learning_rate": 0.0006, + "loss": 3.5412862300872803, + "step": 4281 + }, + { + "epoch": 59.47531673219746, + "grad_norm": 0.21095411479473114, + "learning_rate": 0.0006, + "loss": 3.5491604804992676, + "step": 4282 + }, + { + "epoch": 59.489296636085626, + "grad_norm": 0.2229546755552292, + "learning_rate": 0.0006, + "loss": 3.534517765045166, + "step": 4283 + }, + { + "epoch": 59.50327653997379, + "grad_norm": 0.22375687956809998, + "learning_rate": 0.0006, + "loss": 3.5696470737457275, + "step": 4284 + }, + { + "epoch": 59.517256443861946, + "grad_norm": 0.2563750743865967, + "learning_rate": 0.0006, + "loss": 3.6050190925598145, + "step": 4285 + }, + { + "epoch": 59.53123634775011, + "grad_norm": 0.3055726885795593, + "learning_rate": 0.0006, + "loss": 3.572263240814209, + "step": 4286 + }, + { + "epoch": 59.54521625163827, + "grad_norm": 0.3095283508300781, + "learning_rate": 0.0006, + "loss": 3.545631170272827, + "step": 4287 + }, + { + "epoch": 59.55919615552643, + "grad_norm": 0.24958640336990356, + "learning_rate": 0.0006, + "loss": 3.549663543701172, + "step": 4288 + }, + { + "epoch": 59.57317605941459, + "grad_norm": 0.22277019917964935, + "learning_rate": 0.0006, + "loss": 3.5721545219421387, + "step": 4289 + }, + { + "epoch": 59.58715596330275, + "grad_norm": 0.22153833508491516, + "learning_rate": 0.0006, + "loss": 3.5103156566619873, + "step": 4290 + }, + { + "epoch": 59.60113586719091, + "grad_norm": 0.25579726696014404, + "learning_rate": 0.0006, + "loss": 3.550353527069092, + "step": 4291 + }, + { + "epoch": 59.615115771079076, + "grad_norm": 0.2242603898048401, + "learning_rate": 0.0006, + "loss": 3.5284783840179443, + "step": 4292 + }, + { + "epoch": 59.62909567496723, + "grad_norm": 0.21665683388710022, + "learning_rate": 0.0006, + "loss": 3.553835868835449, + "step": 4293 + }, + { + "epoch": 59.643075578855395, + "grad_norm": 0.21703463792800903, + "learning_rate": 0.0006, + "loss": 3.5393173694610596, + "step": 4294 + }, + { + "epoch": 59.65705548274356, + "grad_norm": 0.21264998614788055, + "learning_rate": 0.0006, + "loss": 3.566108465194702, + "step": 4295 + }, + { + "epoch": 59.671035386631715, + "grad_norm": 0.1935717612504959, + "learning_rate": 0.0006, + "loss": 3.5934512615203857, + "step": 4296 + }, + { + "epoch": 59.68501529051988, + "grad_norm": 0.20164808630943298, + "learning_rate": 0.0006, + "loss": 3.545046329498291, + "step": 4297 + }, + { + "epoch": 59.69899519440804, + "grad_norm": 0.19589892029762268, + "learning_rate": 0.0006, + "loss": 3.5302319526672363, + "step": 4298 + }, + { + "epoch": 59.7129750982962, + "grad_norm": 0.1893095225095749, + "learning_rate": 0.0006, + "loss": 3.5947837829589844, + "step": 4299 + }, + { + "epoch": 59.72695500218436, + "grad_norm": 0.20218202471733093, + "learning_rate": 0.0006, + "loss": 3.5889904499053955, + "step": 4300 + }, + { + "epoch": 59.74093490607252, + "grad_norm": 0.19681277871131897, + "learning_rate": 0.0006, + "loss": 3.581536293029785, + "step": 4301 + }, + { + "epoch": 59.75491480996068, + "grad_norm": 0.20112384855747223, + "learning_rate": 0.0006, + "loss": 3.5509750843048096, + "step": 4302 + }, + { + "epoch": 59.768894713848844, + "grad_norm": 0.1969940960407257, + "learning_rate": 0.0006, + "loss": 3.5462636947631836, + "step": 4303 + }, + { + "epoch": 59.782874617737, + "grad_norm": 0.20936219394207, + "learning_rate": 0.0006, + "loss": 3.5284390449523926, + "step": 4304 + }, + { + "epoch": 59.796854521625164, + "grad_norm": 0.21717803180217743, + "learning_rate": 0.0006, + "loss": 3.5669212341308594, + "step": 4305 + }, + { + "epoch": 59.81083442551333, + "grad_norm": 0.20210883021354675, + "learning_rate": 0.0006, + "loss": 3.5366921424865723, + "step": 4306 + }, + { + "epoch": 59.824814329401484, + "grad_norm": 0.224124476313591, + "learning_rate": 0.0006, + "loss": 3.5457663536071777, + "step": 4307 + }, + { + "epoch": 59.83879423328965, + "grad_norm": 0.2186291366815567, + "learning_rate": 0.0006, + "loss": 3.5732779502868652, + "step": 4308 + }, + { + "epoch": 59.8527741371778, + "grad_norm": 0.19785884022712708, + "learning_rate": 0.0006, + "loss": 3.5471811294555664, + "step": 4309 + }, + { + "epoch": 59.86675404106597, + "grad_norm": 0.24774281680583954, + "learning_rate": 0.0006, + "loss": 3.5839807987213135, + "step": 4310 + }, + { + "epoch": 59.88073394495413, + "grad_norm": 0.25087007880210876, + "learning_rate": 0.0006, + "loss": 3.56972336769104, + "step": 4311 + }, + { + "epoch": 59.89471384884229, + "grad_norm": 0.21474683284759521, + "learning_rate": 0.0006, + "loss": 3.5199289321899414, + "step": 4312 + }, + { + "epoch": 59.90869375273045, + "grad_norm": 0.2087765336036682, + "learning_rate": 0.0006, + "loss": 3.5777320861816406, + "step": 4313 + }, + { + "epoch": 59.92267365661861, + "grad_norm": 0.2228539139032364, + "learning_rate": 0.0006, + "loss": 3.531118392944336, + "step": 4314 + }, + { + "epoch": 59.93665356050677, + "grad_norm": 0.2456534057855606, + "learning_rate": 0.0006, + "loss": 3.5448033809661865, + "step": 4315 + }, + { + "epoch": 59.95063346439493, + "grad_norm": 0.2699171006679535, + "learning_rate": 0.0006, + "loss": 3.560724973678589, + "step": 4316 + }, + { + "epoch": 59.964613368283096, + "grad_norm": 0.2664966881275177, + "learning_rate": 0.0006, + "loss": 3.5932974815368652, + "step": 4317 + }, + { + "epoch": 59.97859327217125, + "grad_norm": 0.2137683779001236, + "learning_rate": 0.0006, + "loss": 3.5610086917877197, + "step": 4318 + }, + { + "epoch": 59.992573176059416, + "grad_norm": 0.2067531794309616, + "learning_rate": 0.0006, + "loss": 3.5588603019714355, + "step": 4319 + }, + { + "epoch": 60.0, + "grad_norm": 0.2458500862121582, + "learning_rate": 0.0006, + "loss": 3.5636165142059326, + "step": 4320 + }, + { + "epoch": 60.0, + "eval_loss": 3.967288017272949, + "eval_runtime": 44.2225, + "eval_samples_per_second": 55.221, + "eval_steps_per_second": 3.46, + "step": 4320 + }, + { + "epoch": 60.01397990388816, + "grad_norm": 0.25330978631973267, + "learning_rate": 0.0006, + "loss": 3.524343490600586, + "step": 4321 + }, + { + "epoch": 60.02795980777632, + "grad_norm": 0.3005860447883606, + "learning_rate": 0.0006, + "loss": 3.533761501312256, + "step": 4322 + }, + { + "epoch": 60.04193971166448, + "grad_norm": 0.29054996371269226, + "learning_rate": 0.0006, + "loss": 3.536410331726074, + "step": 4323 + }, + { + "epoch": 60.05591961555265, + "grad_norm": 0.23265458643436432, + "learning_rate": 0.0006, + "loss": 3.4965157508850098, + "step": 4324 + }, + { + "epoch": 60.0698995194408, + "grad_norm": 0.2330862134695053, + "learning_rate": 0.0006, + "loss": 3.4899768829345703, + "step": 4325 + }, + { + "epoch": 60.083879423328966, + "grad_norm": 0.23188516497612, + "learning_rate": 0.0006, + "loss": 3.504887580871582, + "step": 4326 + }, + { + "epoch": 60.09785932721712, + "grad_norm": 0.2152940034866333, + "learning_rate": 0.0006, + "loss": 3.5274603366851807, + "step": 4327 + }, + { + "epoch": 60.111839231105286, + "grad_norm": 0.21918490529060364, + "learning_rate": 0.0006, + "loss": 3.5223636627197266, + "step": 4328 + }, + { + "epoch": 60.12581913499345, + "grad_norm": 0.23193582892417908, + "learning_rate": 0.0006, + "loss": 3.5171899795532227, + "step": 4329 + }, + { + "epoch": 60.139799038881605, + "grad_norm": 0.2336687296628952, + "learning_rate": 0.0006, + "loss": 3.5403029918670654, + "step": 4330 + }, + { + "epoch": 60.15377894276977, + "grad_norm": 0.23833593726158142, + "learning_rate": 0.0006, + "loss": 3.5055623054504395, + "step": 4331 + }, + { + "epoch": 60.16775884665793, + "grad_norm": 0.2389385998249054, + "learning_rate": 0.0006, + "loss": 3.5423574447631836, + "step": 4332 + }, + { + "epoch": 60.18173875054609, + "grad_norm": 0.21729786694049835, + "learning_rate": 0.0006, + "loss": 3.508272647857666, + "step": 4333 + }, + { + "epoch": 60.19571865443425, + "grad_norm": 0.2118137627840042, + "learning_rate": 0.0006, + "loss": 3.556934356689453, + "step": 4334 + }, + { + "epoch": 60.20969855832241, + "grad_norm": 0.23217040300369263, + "learning_rate": 0.0006, + "loss": 3.546459674835205, + "step": 4335 + }, + { + "epoch": 60.22367846221057, + "grad_norm": 0.2446565330028534, + "learning_rate": 0.0006, + "loss": 3.5662269592285156, + "step": 4336 + }, + { + "epoch": 60.237658366098735, + "grad_norm": 0.22065940499305725, + "learning_rate": 0.0006, + "loss": 3.550262451171875, + "step": 4337 + }, + { + "epoch": 60.25163826998689, + "grad_norm": 0.22212697565555573, + "learning_rate": 0.0006, + "loss": 3.5495731830596924, + "step": 4338 + }, + { + "epoch": 60.265618173875055, + "grad_norm": 0.21770696341991425, + "learning_rate": 0.0006, + "loss": 3.5345935821533203, + "step": 4339 + }, + { + "epoch": 60.27959807776322, + "grad_norm": 0.2089550793170929, + "learning_rate": 0.0006, + "loss": 3.5704336166381836, + "step": 4340 + }, + { + "epoch": 60.293577981651374, + "grad_norm": 0.20426379144191742, + "learning_rate": 0.0006, + "loss": 3.546909809112549, + "step": 4341 + }, + { + "epoch": 60.30755788553954, + "grad_norm": 0.2038658708333969, + "learning_rate": 0.0006, + "loss": 3.5444231033325195, + "step": 4342 + }, + { + "epoch": 60.3215377894277, + "grad_norm": 0.20485089719295502, + "learning_rate": 0.0006, + "loss": 3.561206817626953, + "step": 4343 + }, + { + "epoch": 60.33551769331586, + "grad_norm": 0.19151435792446136, + "learning_rate": 0.0006, + "loss": 3.5226097106933594, + "step": 4344 + }, + { + "epoch": 60.34949759720402, + "grad_norm": 0.19078181684017181, + "learning_rate": 0.0006, + "loss": 3.5431442260742188, + "step": 4345 + }, + { + "epoch": 60.36347750109218, + "grad_norm": 0.2032487392425537, + "learning_rate": 0.0006, + "loss": 3.5317721366882324, + "step": 4346 + }, + { + "epoch": 60.37745740498034, + "grad_norm": 0.18330955505371094, + "learning_rate": 0.0006, + "loss": 3.521145820617676, + "step": 4347 + }, + { + "epoch": 60.391437308868504, + "grad_norm": 0.18987730145454407, + "learning_rate": 0.0006, + "loss": 3.4980595111846924, + "step": 4348 + }, + { + "epoch": 60.40541721275666, + "grad_norm": 0.19873160123825073, + "learning_rate": 0.0006, + "loss": 3.5639595985412598, + "step": 4349 + }, + { + "epoch": 60.419397116644824, + "grad_norm": 0.20323137938976288, + "learning_rate": 0.0006, + "loss": 3.5364837646484375, + "step": 4350 + }, + { + "epoch": 60.43337702053299, + "grad_norm": 0.20755112171173096, + "learning_rate": 0.0006, + "loss": 3.565398931503296, + "step": 4351 + }, + { + "epoch": 60.44735692442114, + "grad_norm": 0.19222456216812134, + "learning_rate": 0.0006, + "loss": 3.569659948348999, + "step": 4352 + }, + { + "epoch": 60.46133682830931, + "grad_norm": 0.18698982894420624, + "learning_rate": 0.0006, + "loss": 3.5305557250976562, + "step": 4353 + }, + { + "epoch": 60.47531673219746, + "grad_norm": 0.19300664961338043, + "learning_rate": 0.0006, + "loss": 3.5398356914520264, + "step": 4354 + }, + { + "epoch": 60.489296636085626, + "grad_norm": 0.19573862850666046, + "learning_rate": 0.0006, + "loss": 3.5549232959747314, + "step": 4355 + }, + { + "epoch": 60.50327653997379, + "grad_norm": 0.21893447637557983, + "learning_rate": 0.0006, + "loss": 3.5427680015563965, + "step": 4356 + }, + { + "epoch": 60.517256443861946, + "grad_norm": 0.2375156730413437, + "learning_rate": 0.0006, + "loss": 3.5368900299072266, + "step": 4357 + }, + { + "epoch": 60.53123634775011, + "grad_norm": 0.2430058717727661, + "learning_rate": 0.0006, + "loss": 3.5812578201293945, + "step": 4358 + }, + { + "epoch": 60.54521625163827, + "grad_norm": 0.21769747138023376, + "learning_rate": 0.0006, + "loss": 3.563126564025879, + "step": 4359 + }, + { + "epoch": 60.55919615552643, + "grad_norm": 0.19841895997524261, + "learning_rate": 0.0006, + "loss": 3.5683727264404297, + "step": 4360 + }, + { + "epoch": 60.57317605941459, + "grad_norm": 0.22039084136486053, + "learning_rate": 0.0006, + "loss": 3.5417304039001465, + "step": 4361 + }, + { + "epoch": 60.58715596330275, + "grad_norm": 0.22528418898582458, + "learning_rate": 0.0006, + "loss": 3.5606675148010254, + "step": 4362 + }, + { + "epoch": 60.60113586719091, + "grad_norm": 0.19975383579730988, + "learning_rate": 0.0006, + "loss": 3.5345380306243896, + "step": 4363 + }, + { + "epoch": 60.615115771079076, + "grad_norm": 0.18953508138656616, + "learning_rate": 0.0006, + "loss": 3.523921012878418, + "step": 4364 + }, + { + "epoch": 60.62909567496723, + "grad_norm": 0.19997848570346832, + "learning_rate": 0.0006, + "loss": 3.553741931915283, + "step": 4365 + }, + { + "epoch": 60.643075578855395, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.57025408744812, + "step": 4366 + }, + { + "epoch": 60.65705548274356, + "grad_norm": 0.20452328026294708, + "learning_rate": 0.0006, + "loss": 3.5293073654174805, + "step": 4367 + }, + { + "epoch": 60.671035386631715, + "grad_norm": 0.18740518391132355, + "learning_rate": 0.0006, + "loss": 3.520880699157715, + "step": 4368 + }, + { + "epoch": 60.68501529051988, + "grad_norm": 0.19408279657363892, + "learning_rate": 0.0006, + "loss": 3.553086757659912, + "step": 4369 + }, + { + "epoch": 60.69899519440804, + "grad_norm": 0.19472180306911469, + "learning_rate": 0.0006, + "loss": 3.557744026184082, + "step": 4370 + }, + { + "epoch": 60.7129750982962, + "grad_norm": 0.18123279511928558, + "learning_rate": 0.0006, + "loss": 3.547276258468628, + "step": 4371 + }, + { + "epoch": 60.72695500218436, + "grad_norm": 0.21011893451213837, + "learning_rate": 0.0006, + "loss": 3.544990062713623, + "step": 4372 + }, + { + "epoch": 60.74093490607252, + "grad_norm": 0.25020623207092285, + "learning_rate": 0.0006, + "loss": 3.541600227355957, + "step": 4373 + }, + { + "epoch": 60.75491480996068, + "grad_norm": 0.2579628825187683, + "learning_rate": 0.0006, + "loss": 3.547964096069336, + "step": 4374 + }, + { + "epoch": 60.768894713848844, + "grad_norm": 0.23156116902828217, + "learning_rate": 0.0006, + "loss": 3.550957202911377, + "step": 4375 + }, + { + "epoch": 60.782874617737, + "grad_norm": 0.22070197761058807, + "learning_rate": 0.0006, + "loss": 3.4950358867645264, + "step": 4376 + }, + { + "epoch": 60.796854521625164, + "grad_norm": 0.222877636551857, + "learning_rate": 0.0006, + "loss": 3.5622036457061768, + "step": 4377 + }, + { + "epoch": 60.81083442551333, + "grad_norm": 0.21662060916423798, + "learning_rate": 0.0006, + "loss": 3.551515579223633, + "step": 4378 + }, + { + "epoch": 60.824814329401484, + "grad_norm": 0.22380465269088745, + "learning_rate": 0.0006, + "loss": 3.5552866458892822, + "step": 4379 + }, + { + "epoch": 60.83879423328965, + "grad_norm": 0.24023373425006866, + "learning_rate": 0.0006, + "loss": 3.5741777420043945, + "step": 4380 + }, + { + "epoch": 60.8527741371778, + "grad_norm": 0.1921556293964386, + "learning_rate": 0.0006, + "loss": 3.535435199737549, + "step": 4381 + }, + { + "epoch": 60.86675404106597, + "grad_norm": 0.20002295076847076, + "learning_rate": 0.0006, + "loss": 3.5660810470581055, + "step": 4382 + }, + { + "epoch": 60.88073394495413, + "grad_norm": 0.22797644138336182, + "learning_rate": 0.0006, + "loss": 3.5361297130584717, + "step": 4383 + }, + { + "epoch": 60.89471384884229, + "grad_norm": 0.24129843711853027, + "learning_rate": 0.0006, + "loss": 3.578810214996338, + "step": 4384 + }, + { + "epoch": 60.90869375273045, + "grad_norm": 0.2363646924495697, + "learning_rate": 0.0006, + "loss": 3.5245485305786133, + "step": 4385 + }, + { + "epoch": 60.92267365661861, + "grad_norm": 0.22811074554920197, + "learning_rate": 0.0006, + "loss": 3.551769733428955, + "step": 4386 + }, + { + "epoch": 60.93665356050677, + "grad_norm": 0.2204643338918686, + "learning_rate": 0.0006, + "loss": 3.5833442211151123, + "step": 4387 + }, + { + "epoch": 60.95063346439493, + "grad_norm": 0.21389783918857574, + "learning_rate": 0.0006, + "loss": 3.531735897064209, + "step": 4388 + }, + { + "epoch": 60.964613368283096, + "grad_norm": 0.22142091393470764, + "learning_rate": 0.0006, + "loss": 3.5482523441314697, + "step": 4389 + }, + { + "epoch": 60.97859327217125, + "grad_norm": 0.21186122298240662, + "learning_rate": 0.0006, + "loss": 3.540555477142334, + "step": 4390 + }, + { + "epoch": 60.992573176059416, + "grad_norm": 0.19939634203910828, + "learning_rate": 0.0006, + "loss": 3.576408624649048, + "step": 4391 + }, + { + "epoch": 61.0, + "grad_norm": 0.23696118593215942, + "learning_rate": 0.0006, + "loss": 3.5633749961853027, + "step": 4392 + }, + { + "epoch": 61.0, + "eval_loss": 3.9743118286132812, + "eval_runtime": 44.7392, + "eval_samples_per_second": 54.583, + "eval_steps_per_second": 3.42, + "step": 4392 + }, + { + "epoch": 61.01397990388816, + "grad_norm": 0.24024035036563873, + "learning_rate": 0.0006, + "loss": 3.532285690307617, + "step": 4393 + }, + { + "epoch": 61.02795980777632, + "grad_norm": 0.2475728690624237, + "learning_rate": 0.0006, + "loss": 3.543304920196533, + "step": 4394 + }, + { + "epoch": 61.04193971166448, + "grad_norm": 0.23326511681079865, + "learning_rate": 0.0006, + "loss": 3.5022737979888916, + "step": 4395 + }, + { + "epoch": 61.05591961555265, + "grad_norm": 0.21414779126644135, + "learning_rate": 0.0006, + "loss": 3.5337772369384766, + "step": 4396 + }, + { + "epoch": 61.0698995194408, + "grad_norm": 0.2234504371881485, + "learning_rate": 0.0006, + "loss": 3.539985179901123, + "step": 4397 + }, + { + "epoch": 61.083879423328966, + "grad_norm": 0.2199121117591858, + "learning_rate": 0.0006, + "loss": 3.5312232971191406, + "step": 4398 + }, + { + "epoch": 61.09785932721712, + "grad_norm": 0.2444634735584259, + "learning_rate": 0.0006, + "loss": 3.527348518371582, + "step": 4399 + }, + { + "epoch": 61.111839231105286, + "grad_norm": 0.29022055864334106, + "learning_rate": 0.0006, + "loss": 3.4902563095092773, + "step": 4400 + }, + { + "epoch": 61.12581913499345, + "grad_norm": 0.29494911432266235, + "learning_rate": 0.0006, + "loss": 3.498292922973633, + "step": 4401 + }, + { + "epoch": 61.139799038881605, + "grad_norm": 0.22292214632034302, + "learning_rate": 0.0006, + "loss": 3.533914089202881, + "step": 4402 + }, + { + "epoch": 61.15377894276977, + "grad_norm": 0.22136220335960388, + "learning_rate": 0.0006, + "loss": 3.5109519958496094, + "step": 4403 + }, + { + "epoch": 61.16775884665793, + "grad_norm": 0.2325095534324646, + "learning_rate": 0.0006, + "loss": 3.5289368629455566, + "step": 4404 + }, + { + "epoch": 61.18173875054609, + "grad_norm": 0.2413562536239624, + "learning_rate": 0.0006, + "loss": 3.518467903137207, + "step": 4405 + }, + { + "epoch": 61.19571865443425, + "grad_norm": 0.25906774401664734, + "learning_rate": 0.0006, + "loss": 3.525516986846924, + "step": 4406 + }, + { + "epoch": 61.20969855832241, + "grad_norm": 0.27686211466789246, + "learning_rate": 0.0006, + "loss": 3.5516865253448486, + "step": 4407 + }, + { + "epoch": 61.22367846221057, + "grad_norm": 0.2906339764595032, + "learning_rate": 0.0006, + "loss": 3.541128158569336, + "step": 4408 + }, + { + "epoch": 61.237658366098735, + "grad_norm": 0.27868953347206116, + "learning_rate": 0.0006, + "loss": 3.5193347930908203, + "step": 4409 + }, + { + "epoch": 61.25163826998689, + "grad_norm": 0.27658969163894653, + "learning_rate": 0.0006, + "loss": 3.502227783203125, + "step": 4410 + }, + { + "epoch": 61.265618173875055, + "grad_norm": 0.2933507561683655, + "learning_rate": 0.0006, + "loss": 3.530291795730591, + "step": 4411 + }, + { + "epoch": 61.27959807776322, + "grad_norm": 0.2631373405456543, + "learning_rate": 0.0006, + "loss": 3.551851749420166, + "step": 4412 + }, + { + "epoch": 61.293577981651374, + "grad_norm": 0.2546952962875366, + "learning_rate": 0.0006, + "loss": 3.5503034591674805, + "step": 4413 + }, + { + "epoch": 61.30755788553954, + "grad_norm": 0.23794181644916534, + "learning_rate": 0.0006, + "loss": 3.546926498413086, + "step": 4414 + }, + { + "epoch": 61.3215377894277, + "grad_norm": 0.24853180348873138, + "learning_rate": 0.0006, + "loss": 3.514120101928711, + "step": 4415 + }, + { + "epoch": 61.33551769331586, + "grad_norm": 0.22304897010326385, + "learning_rate": 0.0006, + "loss": 3.5430846214294434, + "step": 4416 + }, + { + "epoch": 61.34949759720402, + "grad_norm": 0.2315143197774887, + "learning_rate": 0.0006, + "loss": 3.520509719848633, + "step": 4417 + }, + { + "epoch": 61.36347750109218, + "grad_norm": 0.22943219542503357, + "learning_rate": 0.0006, + "loss": 3.5467031002044678, + "step": 4418 + }, + { + "epoch": 61.37745740498034, + "grad_norm": 0.20610259473323822, + "learning_rate": 0.0006, + "loss": 3.523524761199951, + "step": 4419 + }, + { + "epoch": 61.391437308868504, + "grad_norm": 0.23042091727256775, + "learning_rate": 0.0006, + "loss": 3.5619053840637207, + "step": 4420 + }, + { + "epoch": 61.40541721275666, + "grad_norm": 0.23525655269622803, + "learning_rate": 0.0006, + "loss": 3.5647311210632324, + "step": 4421 + }, + { + "epoch": 61.419397116644824, + "grad_norm": 0.24424530565738678, + "learning_rate": 0.0006, + "loss": 3.5278732776641846, + "step": 4422 + }, + { + "epoch": 61.43337702053299, + "grad_norm": 0.22195497155189514, + "learning_rate": 0.0006, + "loss": 3.500657558441162, + "step": 4423 + }, + { + "epoch": 61.44735692442114, + "grad_norm": 0.20596756041049957, + "learning_rate": 0.0006, + "loss": 3.5107016563415527, + "step": 4424 + }, + { + "epoch": 61.46133682830931, + "grad_norm": 0.21293926239013672, + "learning_rate": 0.0006, + "loss": 3.5248196125030518, + "step": 4425 + }, + { + "epoch": 61.47531673219746, + "grad_norm": 0.21993403136730194, + "learning_rate": 0.0006, + "loss": 3.5247411727905273, + "step": 4426 + }, + { + "epoch": 61.489296636085626, + "grad_norm": 0.19609302282333374, + "learning_rate": 0.0006, + "loss": 3.543978452682495, + "step": 4427 + }, + { + "epoch": 61.50327653997379, + "grad_norm": 0.2064359486103058, + "learning_rate": 0.0006, + "loss": 3.525879144668579, + "step": 4428 + }, + { + "epoch": 61.517256443861946, + "grad_norm": 0.221832275390625, + "learning_rate": 0.0006, + "loss": 3.542086601257324, + "step": 4429 + }, + { + "epoch": 61.53123634775011, + "grad_norm": 0.20173773169517517, + "learning_rate": 0.0006, + "loss": 3.5395596027374268, + "step": 4430 + }, + { + "epoch": 61.54521625163827, + "grad_norm": 0.21064360439777374, + "learning_rate": 0.0006, + "loss": 3.5651049613952637, + "step": 4431 + }, + { + "epoch": 61.55919615552643, + "grad_norm": 0.2079596370458603, + "learning_rate": 0.0006, + "loss": 3.513719081878662, + "step": 4432 + }, + { + "epoch": 61.57317605941459, + "grad_norm": 0.1862022429704666, + "learning_rate": 0.0006, + "loss": 3.5438897609710693, + "step": 4433 + }, + { + "epoch": 61.58715596330275, + "grad_norm": 0.202021524310112, + "learning_rate": 0.0006, + "loss": 3.5497570037841797, + "step": 4434 + }, + { + "epoch": 61.60113586719091, + "grad_norm": 0.2252725064754486, + "learning_rate": 0.0006, + "loss": 3.5361452102661133, + "step": 4435 + }, + { + "epoch": 61.615115771079076, + "grad_norm": 0.22194477915763855, + "learning_rate": 0.0006, + "loss": 3.5436792373657227, + "step": 4436 + }, + { + "epoch": 61.62909567496723, + "grad_norm": 0.20660430192947388, + "learning_rate": 0.0006, + "loss": 3.5347955226898193, + "step": 4437 + }, + { + "epoch": 61.643075578855395, + "grad_norm": 0.19738668203353882, + "learning_rate": 0.0006, + "loss": 3.5478930473327637, + "step": 4438 + }, + { + "epoch": 61.65705548274356, + "grad_norm": 0.19570894539356232, + "learning_rate": 0.0006, + "loss": 3.581364154815674, + "step": 4439 + }, + { + "epoch": 61.671035386631715, + "grad_norm": 0.2311817854642868, + "learning_rate": 0.0006, + "loss": 3.5336194038391113, + "step": 4440 + }, + { + "epoch": 61.68501529051988, + "grad_norm": 0.23114202916622162, + "learning_rate": 0.0006, + "loss": 3.5473289489746094, + "step": 4441 + }, + { + "epoch": 61.69899519440804, + "grad_norm": 0.2412044256925583, + "learning_rate": 0.0006, + "loss": 3.558802604675293, + "step": 4442 + }, + { + "epoch": 61.7129750982962, + "grad_norm": 0.22932057082653046, + "learning_rate": 0.0006, + "loss": 3.553133726119995, + "step": 4443 + }, + { + "epoch": 61.72695500218436, + "grad_norm": 0.23192140460014343, + "learning_rate": 0.0006, + "loss": 3.5247159004211426, + "step": 4444 + }, + { + "epoch": 61.74093490607252, + "grad_norm": 0.23548972606658936, + "learning_rate": 0.0006, + "loss": 3.5654778480529785, + "step": 4445 + }, + { + "epoch": 61.75491480996068, + "grad_norm": 0.20992626249790192, + "learning_rate": 0.0006, + "loss": 3.5568647384643555, + "step": 4446 + }, + { + "epoch": 61.768894713848844, + "grad_norm": 0.20303797721862793, + "learning_rate": 0.0006, + "loss": 3.564765453338623, + "step": 4447 + }, + { + "epoch": 61.782874617737, + "grad_norm": 0.2019573301076889, + "learning_rate": 0.0006, + "loss": 3.523521900177002, + "step": 4448 + }, + { + "epoch": 61.796854521625164, + "grad_norm": 0.20591112971305847, + "learning_rate": 0.0006, + "loss": 3.5361227989196777, + "step": 4449 + }, + { + "epoch": 61.81083442551333, + "grad_norm": 0.21811535954475403, + "learning_rate": 0.0006, + "loss": 3.56982159614563, + "step": 4450 + }, + { + "epoch": 61.824814329401484, + "grad_norm": 0.24934124946594238, + "learning_rate": 0.0006, + "loss": 3.5518784523010254, + "step": 4451 + }, + { + "epoch": 61.83879423328965, + "grad_norm": 0.28142663836479187, + "learning_rate": 0.0006, + "loss": 3.5480635166168213, + "step": 4452 + }, + { + "epoch": 61.8527741371778, + "grad_norm": 0.27585235238075256, + "learning_rate": 0.0006, + "loss": 3.56685733795166, + "step": 4453 + }, + { + "epoch": 61.86675404106597, + "grad_norm": 0.24309827387332916, + "learning_rate": 0.0006, + "loss": 3.551058769226074, + "step": 4454 + }, + { + "epoch": 61.88073394495413, + "grad_norm": 0.22480300068855286, + "learning_rate": 0.0006, + "loss": 3.5644495487213135, + "step": 4455 + }, + { + "epoch": 61.89471384884229, + "grad_norm": 0.19861266016960144, + "learning_rate": 0.0006, + "loss": 3.5529613494873047, + "step": 4456 + }, + { + "epoch": 61.90869375273045, + "grad_norm": 0.20176313817501068, + "learning_rate": 0.0006, + "loss": 3.5173492431640625, + "step": 4457 + }, + { + "epoch": 61.92267365661861, + "grad_norm": 0.1964731365442276, + "learning_rate": 0.0006, + "loss": 3.5555479526519775, + "step": 4458 + }, + { + "epoch": 61.93665356050677, + "grad_norm": 0.20427751541137695, + "learning_rate": 0.0006, + "loss": 3.5312647819519043, + "step": 4459 + }, + { + "epoch": 61.95063346439493, + "grad_norm": 0.21940940618515015, + "learning_rate": 0.0006, + "loss": 3.536012649536133, + "step": 4460 + }, + { + "epoch": 61.964613368283096, + "grad_norm": 0.2100883573293686, + "learning_rate": 0.0006, + "loss": 3.5627548694610596, + "step": 4461 + }, + { + "epoch": 61.97859327217125, + "grad_norm": 0.21980689465999603, + "learning_rate": 0.0006, + "loss": 3.5933351516723633, + "step": 4462 + }, + { + "epoch": 61.992573176059416, + "grad_norm": 0.23822137713432312, + "learning_rate": 0.0006, + "loss": 3.567392349243164, + "step": 4463 + }, + { + "epoch": 62.0, + "grad_norm": 0.293637752532959, + "learning_rate": 0.0006, + "loss": 3.5707521438598633, + "step": 4464 + }, + { + "epoch": 62.0, + "eval_loss": 3.9813005924224854, + "eval_runtime": 44.8261, + "eval_samples_per_second": 54.477, + "eval_steps_per_second": 3.413, + "step": 4464 + }, + { + "epoch": 62.01397990388816, + "grad_norm": 0.2819560766220093, + "learning_rate": 0.0006, + "loss": 3.5146231651306152, + "step": 4465 + }, + { + "epoch": 62.02795980777632, + "grad_norm": 0.2446105033159256, + "learning_rate": 0.0006, + "loss": 3.48366117477417, + "step": 4466 + }, + { + "epoch": 62.04193971166448, + "grad_norm": 0.26826128363609314, + "learning_rate": 0.0006, + "loss": 3.511063814163208, + "step": 4467 + }, + { + "epoch": 62.05591961555265, + "grad_norm": 0.28266897797584534, + "learning_rate": 0.0006, + "loss": 3.560831069946289, + "step": 4468 + }, + { + "epoch": 62.0698995194408, + "grad_norm": 0.262866348028183, + "learning_rate": 0.0006, + "loss": 3.5248615741729736, + "step": 4469 + }, + { + "epoch": 62.083879423328966, + "grad_norm": 0.22957175970077515, + "learning_rate": 0.0006, + "loss": 3.518132209777832, + "step": 4470 + }, + { + "epoch": 62.09785932721712, + "grad_norm": 0.2311105579137802, + "learning_rate": 0.0006, + "loss": 3.520376443862915, + "step": 4471 + }, + { + "epoch": 62.111839231105286, + "grad_norm": 0.2455885261297226, + "learning_rate": 0.0006, + "loss": 3.532329797744751, + "step": 4472 + }, + { + "epoch": 62.12581913499345, + "grad_norm": 0.22050215303897858, + "learning_rate": 0.0006, + "loss": 3.5367608070373535, + "step": 4473 + }, + { + "epoch": 62.139799038881605, + "grad_norm": 0.2187507450580597, + "learning_rate": 0.0006, + "loss": 3.5165085792541504, + "step": 4474 + }, + { + "epoch": 62.15377894276977, + "grad_norm": 0.23510432243347168, + "learning_rate": 0.0006, + "loss": 3.5357909202575684, + "step": 4475 + }, + { + "epoch": 62.16775884665793, + "grad_norm": 0.22336673736572266, + "learning_rate": 0.0006, + "loss": 3.5183372497558594, + "step": 4476 + }, + { + "epoch": 62.18173875054609, + "grad_norm": 0.22019170224666595, + "learning_rate": 0.0006, + "loss": 3.532637596130371, + "step": 4477 + }, + { + "epoch": 62.19571865443425, + "grad_norm": 0.20902299880981445, + "learning_rate": 0.0006, + "loss": 3.5421581268310547, + "step": 4478 + }, + { + "epoch": 62.20969855832241, + "grad_norm": 0.22846505045890808, + "learning_rate": 0.0006, + "loss": 3.5008513927459717, + "step": 4479 + }, + { + "epoch": 62.22367846221057, + "grad_norm": 0.23657570779323578, + "learning_rate": 0.0006, + "loss": 3.5454330444335938, + "step": 4480 + }, + { + "epoch": 62.237658366098735, + "grad_norm": 0.22021226584911346, + "learning_rate": 0.0006, + "loss": 3.535137891769409, + "step": 4481 + }, + { + "epoch": 62.25163826998689, + "grad_norm": 0.21457694470882416, + "learning_rate": 0.0006, + "loss": 3.5051913261413574, + "step": 4482 + }, + { + "epoch": 62.265618173875055, + "grad_norm": 0.20432431995868683, + "learning_rate": 0.0006, + "loss": 3.5237550735473633, + "step": 4483 + }, + { + "epoch": 62.27959807776322, + "grad_norm": 0.20499777793884277, + "learning_rate": 0.0006, + "loss": 3.537209987640381, + "step": 4484 + }, + { + "epoch": 62.293577981651374, + "grad_norm": 0.21323661506175995, + "learning_rate": 0.0006, + "loss": 3.518765687942505, + "step": 4485 + }, + { + "epoch": 62.30755788553954, + "grad_norm": 0.19734761118888855, + "learning_rate": 0.0006, + "loss": 3.5132994651794434, + "step": 4486 + }, + { + "epoch": 62.3215377894277, + "grad_norm": 0.1844230592250824, + "learning_rate": 0.0006, + "loss": 3.5348291397094727, + "step": 4487 + }, + { + "epoch": 62.33551769331586, + "grad_norm": 0.20451737940311432, + "learning_rate": 0.0006, + "loss": 3.5055956840515137, + "step": 4488 + }, + { + "epoch": 62.34949759720402, + "grad_norm": 0.20004220306873322, + "learning_rate": 0.0006, + "loss": 3.558253526687622, + "step": 4489 + }, + { + "epoch": 62.36347750109218, + "grad_norm": 0.20544862747192383, + "learning_rate": 0.0006, + "loss": 3.5031163692474365, + "step": 4490 + }, + { + "epoch": 62.37745740498034, + "grad_norm": 0.23045147955417633, + "learning_rate": 0.0006, + "loss": 3.526170253753662, + "step": 4491 + }, + { + "epoch": 62.391437308868504, + "grad_norm": 0.2580485939979553, + "learning_rate": 0.0006, + "loss": 3.561131238937378, + "step": 4492 + }, + { + "epoch": 62.40541721275666, + "grad_norm": 0.24825656414031982, + "learning_rate": 0.0006, + "loss": 3.5550408363342285, + "step": 4493 + }, + { + "epoch": 62.419397116644824, + "grad_norm": 0.2317914366722107, + "learning_rate": 0.0006, + "loss": 3.543360948562622, + "step": 4494 + }, + { + "epoch": 62.43337702053299, + "grad_norm": 0.2186558097600937, + "learning_rate": 0.0006, + "loss": 3.5293631553649902, + "step": 4495 + }, + { + "epoch": 62.44735692442114, + "grad_norm": 0.22694920003414154, + "learning_rate": 0.0006, + "loss": 3.5315871238708496, + "step": 4496 + }, + { + "epoch": 62.46133682830931, + "grad_norm": 0.24042636156082153, + "learning_rate": 0.0006, + "loss": 3.507556915283203, + "step": 4497 + }, + { + "epoch": 62.47531673219746, + "grad_norm": 0.23853783309459686, + "learning_rate": 0.0006, + "loss": 3.546670913696289, + "step": 4498 + }, + { + "epoch": 62.489296636085626, + "grad_norm": 0.23252007365226746, + "learning_rate": 0.0006, + "loss": 3.522880792617798, + "step": 4499 + }, + { + "epoch": 62.50327653997379, + "grad_norm": 0.20553545653820038, + "learning_rate": 0.0006, + "loss": 3.5367445945739746, + "step": 4500 + }, + { + "epoch": 62.517256443861946, + "grad_norm": 0.19607895612716675, + "learning_rate": 0.0006, + "loss": 3.5319433212280273, + "step": 4501 + }, + { + "epoch": 62.53123634775011, + "grad_norm": 0.21482273936271667, + "learning_rate": 0.0006, + "loss": 3.525094509124756, + "step": 4502 + }, + { + "epoch": 62.54521625163827, + "grad_norm": 0.18248772621154785, + "learning_rate": 0.0006, + "loss": 3.5324039459228516, + "step": 4503 + }, + { + "epoch": 62.55919615552643, + "grad_norm": 0.19388431310653687, + "learning_rate": 0.0006, + "loss": 3.5579934120178223, + "step": 4504 + }, + { + "epoch": 62.57317605941459, + "grad_norm": 0.1987910121679306, + "learning_rate": 0.0006, + "loss": 3.5049524307250977, + "step": 4505 + }, + { + "epoch": 62.58715596330275, + "grad_norm": 0.2176462560892105, + "learning_rate": 0.0006, + "loss": 3.517348051071167, + "step": 4506 + }, + { + "epoch": 62.60113586719091, + "grad_norm": 0.20312298834323883, + "learning_rate": 0.0006, + "loss": 3.589355230331421, + "step": 4507 + }, + { + "epoch": 62.615115771079076, + "grad_norm": 0.20725034177303314, + "learning_rate": 0.0006, + "loss": 3.5353567600250244, + "step": 4508 + }, + { + "epoch": 62.62909567496723, + "grad_norm": 0.1944240778684616, + "learning_rate": 0.0006, + "loss": 3.5435595512390137, + "step": 4509 + }, + { + "epoch": 62.643075578855395, + "grad_norm": 0.1925448626279831, + "learning_rate": 0.0006, + "loss": 3.5406274795532227, + "step": 4510 + }, + { + "epoch": 62.65705548274356, + "grad_norm": 0.1932716965675354, + "learning_rate": 0.0006, + "loss": 3.582890748977661, + "step": 4511 + }, + { + "epoch": 62.671035386631715, + "grad_norm": 0.1993696093559265, + "learning_rate": 0.0006, + "loss": 3.533501148223877, + "step": 4512 + }, + { + "epoch": 62.68501529051988, + "grad_norm": 0.22586803138256073, + "learning_rate": 0.0006, + "loss": 3.5265021324157715, + "step": 4513 + }, + { + "epoch": 62.69899519440804, + "grad_norm": 0.22882722318172455, + "learning_rate": 0.0006, + "loss": 3.5486440658569336, + "step": 4514 + }, + { + "epoch": 62.7129750982962, + "grad_norm": 0.21674324572086334, + "learning_rate": 0.0006, + "loss": 3.5362353324890137, + "step": 4515 + }, + { + "epoch": 62.72695500218436, + "grad_norm": 0.1941487342119217, + "learning_rate": 0.0006, + "loss": 3.5191574096679688, + "step": 4516 + }, + { + "epoch": 62.74093490607252, + "grad_norm": 0.2034437507390976, + "learning_rate": 0.0006, + "loss": 3.5412280559539795, + "step": 4517 + }, + { + "epoch": 62.75491480996068, + "grad_norm": 0.22009888291358948, + "learning_rate": 0.0006, + "loss": 3.589108467102051, + "step": 4518 + }, + { + "epoch": 62.768894713848844, + "grad_norm": 0.21187400817871094, + "learning_rate": 0.0006, + "loss": 3.527048349380493, + "step": 4519 + }, + { + "epoch": 62.782874617737, + "grad_norm": 0.2089816778898239, + "learning_rate": 0.0006, + "loss": 3.551755905151367, + "step": 4520 + }, + { + "epoch": 62.796854521625164, + "grad_norm": 0.2095830738544464, + "learning_rate": 0.0006, + "loss": 3.5302011966705322, + "step": 4521 + }, + { + "epoch": 62.81083442551333, + "grad_norm": 0.20930075645446777, + "learning_rate": 0.0006, + "loss": 3.5276856422424316, + "step": 4522 + }, + { + "epoch": 62.824814329401484, + "grad_norm": 0.1876252442598343, + "learning_rate": 0.0006, + "loss": 3.5467052459716797, + "step": 4523 + }, + { + "epoch": 62.83879423328965, + "grad_norm": 0.21137461066246033, + "learning_rate": 0.0006, + "loss": 3.5446524620056152, + "step": 4524 + }, + { + "epoch": 62.8527741371778, + "grad_norm": 0.21340630948543549, + "learning_rate": 0.0006, + "loss": 3.580069065093994, + "step": 4525 + }, + { + "epoch": 62.86675404106597, + "grad_norm": 0.22623291611671448, + "learning_rate": 0.0006, + "loss": 3.5203771591186523, + "step": 4526 + }, + { + "epoch": 62.88073394495413, + "grad_norm": 0.20891177654266357, + "learning_rate": 0.0006, + "loss": 3.5408263206481934, + "step": 4527 + }, + { + "epoch": 62.89471384884229, + "grad_norm": 0.19802644848823547, + "learning_rate": 0.0006, + "loss": 3.521557569503784, + "step": 4528 + }, + { + "epoch": 62.90869375273045, + "grad_norm": 0.20889638364315033, + "learning_rate": 0.0006, + "loss": 3.535468578338623, + "step": 4529 + }, + { + "epoch": 62.92267365661861, + "grad_norm": 0.20450912415981293, + "learning_rate": 0.0006, + "loss": 3.5473756790161133, + "step": 4530 + }, + { + "epoch": 62.93665356050677, + "grad_norm": 0.24126461148262024, + "learning_rate": 0.0006, + "loss": 3.5418906211853027, + "step": 4531 + }, + { + "epoch": 62.95063346439493, + "grad_norm": 0.2789648473262787, + "learning_rate": 0.0006, + "loss": 3.5500879287719727, + "step": 4532 + }, + { + "epoch": 62.964613368283096, + "grad_norm": 0.2855475842952728, + "learning_rate": 0.0006, + "loss": 3.5589256286621094, + "step": 4533 + }, + { + "epoch": 62.97859327217125, + "grad_norm": 0.2353338748216629, + "learning_rate": 0.0006, + "loss": 3.576944351196289, + "step": 4534 + }, + { + "epoch": 62.992573176059416, + "grad_norm": 0.2360614389181137, + "learning_rate": 0.0006, + "loss": 3.550532341003418, + "step": 4535 + }, + { + "epoch": 63.0, + "grad_norm": 0.28869640827178955, + "learning_rate": 0.0006, + "loss": 3.4976563453674316, + "step": 4536 + }, + { + "epoch": 63.0, + "eval_loss": 3.967819929122925, + "eval_runtime": 44.8611, + "eval_samples_per_second": 54.435, + "eval_steps_per_second": 3.411, + "step": 4536 + }, + { + "epoch": 63.01397990388816, + "grad_norm": 0.2646687626838684, + "learning_rate": 0.0006, + "loss": 3.498749017715454, + "step": 4537 + }, + { + "epoch": 63.02795980777632, + "grad_norm": 0.26432088017463684, + "learning_rate": 0.0006, + "loss": 3.5114989280700684, + "step": 4538 + }, + { + "epoch": 63.04193971166448, + "grad_norm": 0.2657051980495453, + "learning_rate": 0.0006, + "loss": 3.5383224487304688, + "step": 4539 + }, + { + "epoch": 63.05591961555265, + "grad_norm": 0.24790945649147034, + "learning_rate": 0.0006, + "loss": 3.5148894786834717, + "step": 4540 + }, + { + "epoch": 63.0698995194408, + "grad_norm": 0.2703767716884613, + "learning_rate": 0.0006, + "loss": 3.5212574005126953, + "step": 4541 + }, + { + "epoch": 63.083879423328966, + "grad_norm": 0.28064072132110596, + "learning_rate": 0.0006, + "loss": 3.4917726516723633, + "step": 4542 + }, + { + "epoch": 63.09785932721712, + "grad_norm": 0.30201056599617004, + "learning_rate": 0.0006, + "loss": 3.524174213409424, + "step": 4543 + }, + { + "epoch": 63.111839231105286, + "grad_norm": 0.2668539583683014, + "learning_rate": 0.0006, + "loss": 3.5284507274627686, + "step": 4544 + }, + { + "epoch": 63.12581913499345, + "grad_norm": 0.23223146796226501, + "learning_rate": 0.0006, + "loss": 3.500607967376709, + "step": 4545 + }, + { + "epoch": 63.139799038881605, + "grad_norm": 0.22300627827644348, + "learning_rate": 0.0006, + "loss": 3.509087562561035, + "step": 4546 + }, + { + "epoch": 63.15377894276977, + "grad_norm": 0.217527836561203, + "learning_rate": 0.0006, + "loss": 3.518986225128174, + "step": 4547 + }, + { + "epoch": 63.16775884665793, + "grad_norm": 0.2347487509250641, + "learning_rate": 0.0006, + "loss": 3.5288784503936768, + "step": 4548 + }, + { + "epoch": 63.18173875054609, + "grad_norm": 0.21052609384059906, + "learning_rate": 0.0006, + "loss": 3.534576892852783, + "step": 4549 + }, + { + "epoch": 63.19571865443425, + "grad_norm": 0.20836210250854492, + "learning_rate": 0.0006, + "loss": 3.540663242340088, + "step": 4550 + }, + { + "epoch": 63.20969855832241, + "grad_norm": 0.2257382571697235, + "learning_rate": 0.0006, + "loss": 3.5042576789855957, + "step": 4551 + }, + { + "epoch": 63.22367846221057, + "grad_norm": 0.25684455037117004, + "learning_rate": 0.0006, + "loss": 3.546757221221924, + "step": 4552 + }, + { + "epoch": 63.237658366098735, + "grad_norm": 0.25408735871315, + "learning_rate": 0.0006, + "loss": 3.5245237350463867, + "step": 4553 + }, + { + "epoch": 63.25163826998689, + "grad_norm": 0.2105615735054016, + "learning_rate": 0.0006, + "loss": 3.4935879707336426, + "step": 4554 + }, + { + "epoch": 63.265618173875055, + "grad_norm": 0.23599031567573547, + "learning_rate": 0.0006, + "loss": 3.5445284843444824, + "step": 4555 + }, + { + "epoch": 63.27959807776322, + "grad_norm": 0.2786335349082947, + "learning_rate": 0.0006, + "loss": 3.5432677268981934, + "step": 4556 + }, + { + "epoch": 63.293577981651374, + "grad_norm": 0.26032358407974243, + "learning_rate": 0.0006, + "loss": 3.542494297027588, + "step": 4557 + }, + { + "epoch": 63.30755788553954, + "grad_norm": 0.23259027302265167, + "learning_rate": 0.0006, + "loss": 3.5343332290649414, + "step": 4558 + }, + { + "epoch": 63.3215377894277, + "grad_norm": 0.2183394432067871, + "learning_rate": 0.0006, + "loss": 3.552696466445923, + "step": 4559 + }, + { + "epoch": 63.33551769331586, + "grad_norm": 0.23014239966869354, + "learning_rate": 0.0006, + "loss": 3.507399559020996, + "step": 4560 + }, + { + "epoch": 63.34949759720402, + "grad_norm": 0.22618430852890015, + "learning_rate": 0.0006, + "loss": 3.5329864025115967, + "step": 4561 + }, + { + "epoch": 63.36347750109218, + "grad_norm": 0.22740741074085236, + "learning_rate": 0.0006, + "loss": 3.5098977088928223, + "step": 4562 + }, + { + "epoch": 63.37745740498034, + "grad_norm": 0.21428990364074707, + "learning_rate": 0.0006, + "loss": 3.5244359970092773, + "step": 4563 + }, + { + "epoch": 63.391437308868504, + "grad_norm": 0.224009707570076, + "learning_rate": 0.0006, + "loss": 3.491610288619995, + "step": 4564 + }, + { + "epoch": 63.40541721275666, + "grad_norm": 0.24859225749969482, + "learning_rate": 0.0006, + "loss": 3.534926414489746, + "step": 4565 + }, + { + "epoch": 63.419397116644824, + "grad_norm": 0.27701491117477417, + "learning_rate": 0.0006, + "loss": 3.501753091812134, + "step": 4566 + }, + { + "epoch": 63.43337702053299, + "grad_norm": 0.27911627292633057, + "learning_rate": 0.0006, + "loss": 3.5505383014678955, + "step": 4567 + }, + { + "epoch": 63.44735692442114, + "grad_norm": 0.25913184881210327, + "learning_rate": 0.0006, + "loss": 3.5086495876312256, + "step": 4568 + }, + { + "epoch": 63.46133682830931, + "grad_norm": 0.19867996871471405, + "learning_rate": 0.0006, + "loss": 3.497912645339966, + "step": 4569 + }, + { + "epoch": 63.47531673219746, + "grad_norm": 0.21337668597698212, + "learning_rate": 0.0006, + "loss": 3.511085033416748, + "step": 4570 + }, + { + "epoch": 63.489296636085626, + "grad_norm": 0.2221735268831253, + "learning_rate": 0.0006, + "loss": 3.504108190536499, + "step": 4571 + }, + { + "epoch": 63.50327653997379, + "grad_norm": 0.20739667117595673, + "learning_rate": 0.0006, + "loss": 3.50193452835083, + "step": 4572 + }, + { + "epoch": 63.517256443861946, + "grad_norm": 0.20149169862270355, + "learning_rate": 0.0006, + "loss": 3.5508787631988525, + "step": 4573 + }, + { + "epoch": 63.53123634775011, + "grad_norm": 0.19348420202732086, + "learning_rate": 0.0006, + "loss": 3.521906852722168, + "step": 4574 + }, + { + "epoch": 63.54521625163827, + "grad_norm": 0.19946886599063873, + "learning_rate": 0.0006, + "loss": 3.509187698364258, + "step": 4575 + }, + { + "epoch": 63.55919615552643, + "grad_norm": 0.21359245479106903, + "learning_rate": 0.0006, + "loss": 3.5194101333618164, + "step": 4576 + }, + { + "epoch": 63.57317605941459, + "grad_norm": 0.21726977825164795, + "learning_rate": 0.0006, + "loss": 3.553684711456299, + "step": 4577 + }, + { + "epoch": 63.58715596330275, + "grad_norm": 0.21707940101623535, + "learning_rate": 0.0006, + "loss": 3.5474231243133545, + "step": 4578 + }, + { + "epoch": 63.60113586719091, + "grad_norm": 0.2226727306842804, + "learning_rate": 0.0006, + "loss": 3.556403636932373, + "step": 4579 + }, + { + "epoch": 63.615115771079076, + "grad_norm": 0.22008022665977478, + "learning_rate": 0.0006, + "loss": 3.4910531044006348, + "step": 4580 + }, + { + "epoch": 63.62909567496723, + "grad_norm": 0.20050542056560516, + "learning_rate": 0.0006, + "loss": 3.5085577964782715, + "step": 4581 + }, + { + "epoch": 63.643075578855395, + "grad_norm": 0.21937592327594757, + "learning_rate": 0.0006, + "loss": 3.530182361602783, + "step": 4582 + }, + { + "epoch": 63.65705548274356, + "grad_norm": 0.23152779042720795, + "learning_rate": 0.0006, + "loss": 3.551499843597412, + "step": 4583 + }, + { + "epoch": 63.671035386631715, + "grad_norm": 0.22870875895023346, + "learning_rate": 0.0006, + "loss": 3.5576539039611816, + "step": 4584 + }, + { + "epoch": 63.68501529051988, + "grad_norm": 0.23679395020008087, + "learning_rate": 0.0006, + "loss": 3.5392303466796875, + "step": 4585 + }, + { + "epoch": 63.69899519440804, + "grad_norm": 0.2301628291606903, + "learning_rate": 0.0006, + "loss": 3.53672194480896, + "step": 4586 + }, + { + "epoch": 63.7129750982962, + "grad_norm": 0.20859898626804352, + "learning_rate": 0.0006, + "loss": 3.5405986309051514, + "step": 4587 + }, + { + "epoch": 63.72695500218436, + "grad_norm": 0.2263292521238327, + "learning_rate": 0.0006, + "loss": 3.557982921600342, + "step": 4588 + }, + { + "epoch": 63.74093490607252, + "grad_norm": 0.21420416235923767, + "learning_rate": 0.0006, + "loss": 3.531942129135132, + "step": 4589 + }, + { + "epoch": 63.75491480996068, + "grad_norm": 0.21604575216770172, + "learning_rate": 0.0006, + "loss": 3.54978346824646, + "step": 4590 + }, + { + "epoch": 63.768894713848844, + "grad_norm": 0.2530747354030609, + "learning_rate": 0.0006, + "loss": 3.576831817626953, + "step": 4591 + }, + { + "epoch": 63.782874617737, + "grad_norm": 0.26169830560684204, + "learning_rate": 0.0006, + "loss": 3.5594139099121094, + "step": 4592 + }, + { + "epoch": 63.796854521625164, + "grad_norm": 0.23454166948795319, + "learning_rate": 0.0006, + "loss": 3.527966022491455, + "step": 4593 + }, + { + "epoch": 63.81083442551333, + "grad_norm": 0.25329118967056274, + "learning_rate": 0.0006, + "loss": 3.555817127227783, + "step": 4594 + }, + { + "epoch": 63.824814329401484, + "grad_norm": 0.26875534653663635, + "learning_rate": 0.0006, + "loss": 3.5659937858581543, + "step": 4595 + }, + { + "epoch": 63.83879423328965, + "grad_norm": 0.2446713000535965, + "learning_rate": 0.0006, + "loss": 3.520578384399414, + "step": 4596 + }, + { + "epoch": 63.8527741371778, + "grad_norm": 0.24629594385623932, + "learning_rate": 0.0006, + "loss": 3.562185764312744, + "step": 4597 + }, + { + "epoch": 63.86675404106597, + "grad_norm": 0.25355106592178345, + "learning_rate": 0.0006, + "loss": 3.549164295196533, + "step": 4598 + }, + { + "epoch": 63.88073394495413, + "grad_norm": 0.23251968622207642, + "learning_rate": 0.0006, + "loss": 3.529660224914551, + "step": 4599 + }, + { + "epoch": 63.89471384884229, + "grad_norm": 0.21848365664482117, + "learning_rate": 0.0006, + "loss": 3.582645893096924, + "step": 4600 + }, + { + "epoch": 63.90869375273045, + "grad_norm": 0.2525595426559448, + "learning_rate": 0.0006, + "loss": 3.5324134826660156, + "step": 4601 + }, + { + "epoch": 63.92267365661861, + "grad_norm": 0.2766541838645935, + "learning_rate": 0.0006, + "loss": 3.525892734527588, + "step": 4602 + }, + { + "epoch": 63.93665356050677, + "grad_norm": 0.2581831216812134, + "learning_rate": 0.0006, + "loss": 3.568148374557495, + "step": 4603 + }, + { + "epoch": 63.95063346439493, + "grad_norm": 0.2600967288017273, + "learning_rate": 0.0006, + "loss": 3.5735561847686768, + "step": 4604 + }, + { + "epoch": 63.964613368283096, + "grad_norm": 0.3125685155391693, + "learning_rate": 0.0006, + "loss": 3.513974666595459, + "step": 4605 + }, + { + "epoch": 63.97859327217125, + "grad_norm": 0.2686053514480591, + "learning_rate": 0.0006, + "loss": 3.533506155014038, + "step": 4606 + }, + { + "epoch": 63.992573176059416, + "grad_norm": 0.23033086955547333, + "learning_rate": 0.0006, + "loss": 3.5701582431793213, + "step": 4607 + }, + { + "epoch": 64.0, + "grad_norm": 0.2688716948032379, + "learning_rate": 0.0006, + "loss": 3.5370922088623047, + "step": 4608 + }, + { + "epoch": 64.0, + "eval_loss": 3.9788827896118164, + "eval_runtime": 44.2801, + "eval_samples_per_second": 55.149, + "eval_steps_per_second": 3.455, + "step": 4608 + }, + { + "epoch": 64.01397990388816, + "grad_norm": 0.27457329630851746, + "learning_rate": 0.0006, + "loss": 3.4789271354675293, + "step": 4609 + }, + { + "epoch": 64.02795980777633, + "grad_norm": 0.29753434658050537, + "learning_rate": 0.0006, + "loss": 3.5277628898620605, + "step": 4610 + }, + { + "epoch": 64.04193971166448, + "grad_norm": 0.36113694310188293, + "learning_rate": 0.0006, + "loss": 3.5066421031951904, + "step": 4611 + }, + { + "epoch": 64.05591961555264, + "grad_norm": 0.37955453991889954, + "learning_rate": 0.0006, + "loss": 3.532745361328125, + "step": 4612 + }, + { + "epoch": 64.06989951944081, + "grad_norm": 0.3055022060871124, + "learning_rate": 0.0006, + "loss": 3.526583671569824, + "step": 4613 + }, + { + "epoch": 64.08387942332897, + "grad_norm": 0.25849053263664246, + "learning_rate": 0.0006, + "loss": 3.525885581970215, + "step": 4614 + }, + { + "epoch": 64.09785932721712, + "grad_norm": 0.31513285636901855, + "learning_rate": 0.0006, + "loss": 3.5116710662841797, + "step": 4615 + }, + { + "epoch": 64.1118392311053, + "grad_norm": 0.3306029736995697, + "learning_rate": 0.0006, + "loss": 3.52685284614563, + "step": 4616 + }, + { + "epoch": 64.12581913499345, + "grad_norm": 0.3205282688140869, + "learning_rate": 0.0006, + "loss": 3.5442304611206055, + "step": 4617 + }, + { + "epoch": 64.1397990388816, + "grad_norm": 0.30371955037117004, + "learning_rate": 0.0006, + "loss": 3.523794174194336, + "step": 4618 + }, + { + "epoch": 64.15377894276976, + "grad_norm": 0.23337553441524506, + "learning_rate": 0.0006, + "loss": 3.530444860458374, + "step": 4619 + }, + { + "epoch": 64.16775884665793, + "grad_norm": 0.2223677784204483, + "learning_rate": 0.0006, + "loss": 3.5071358680725098, + "step": 4620 + }, + { + "epoch": 64.18173875054609, + "grad_norm": 0.21216993033885956, + "learning_rate": 0.0006, + "loss": 3.504469156265259, + "step": 4621 + }, + { + "epoch": 64.19571865443424, + "grad_norm": 0.21772179007530212, + "learning_rate": 0.0006, + "loss": 3.543393135070801, + "step": 4622 + }, + { + "epoch": 64.20969855832242, + "grad_norm": 0.2010853886604309, + "learning_rate": 0.0006, + "loss": 3.5219016075134277, + "step": 4623 + }, + { + "epoch": 64.22367846221057, + "grad_norm": 0.20491622388362885, + "learning_rate": 0.0006, + "loss": 3.4971656799316406, + "step": 4624 + }, + { + "epoch": 64.23765836609873, + "grad_norm": 0.19605079293251038, + "learning_rate": 0.0006, + "loss": 3.511746883392334, + "step": 4625 + }, + { + "epoch": 64.2516382699869, + "grad_norm": 0.2011575698852539, + "learning_rate": 0.0006, + "loss": 3.4981908798217773, + "step": 4626 + }, + { + "epoch": 64.26561817387505, + "grad_norm": 0.20687544345855713, + "learning_rate": 0.0006, + "loss": 3.5076913833618164, + "step": 4627 + }, + { + "epoch": 64.27959807776321, + "grad_norm": 0.20696480572223663, + "learning_rate": 0.0006, + "loss": 3.536569595336914, + "step": 4628 + }, + { + "epoch": 64.29357798165138, + "grad_norm": 0.200603649020195, + "learning_rate": 0.0006, + "loss": 3.525024175643921, + "step": 4629 + }, + { + "epoch": 64.30755788553954, + "grad_norm": 0.2087119072675705, + "learning_rate": 0.0006, + "loss": 3.508463144302368, + "step": 4630 + }, + { + "epoch": 64.3215377894277, + "grad_norm": 0.20823124051094055, + "learning_rate": 0.0006, + "loss": 3.5153684616088867, + "step": 4631 + }, + { + "epoch": 64.33551769331586, + "grad_norm": 0.19936303794384003, + "learning_rate": 0.0006, + "loss": 3.4908385276794434, + "step": 4632 + }, + { + "epoch": 64.34949759720402, + "grad_norm": 0.20928572118282318, + "learning_rate": 0.0006, + "loss": 3.5094854831695557, + "step": 4633 + }, + { + "epoch": 64.36347750109218, + "grad_norm": 0.22391293942928314, + "learning_rate": 0.0006, + "loss": 3.514522075653076, + "step": 4634 + }, + { + "epoch": 64.37745740498035, + "grad_norm": 0.19804537296295166, + "learning_rate": 0.0006, + "loss": 3.5072293281555176, + "step": 4635 + }, + { + "epoch": 64.3914373088685, + "grad_norm": 0.18472325801849365, + "learning_rate": 0.0006, + "loss": 3.5149683952331543, + "step": 4636 + }, + { + "epoch": 64.40541721275666, + "grad_norm": 0.20187066495418549, + "learning_rate": 0.0006, + "loss": 3.5198612213134766, + "step": 4637 + }, + { + "epoch": 64.41939711664482, + "grad_norm": 0.19778090715408325, + "learning_rate": 0.0006, + "loss": 3.540841817855835, + "step": 4638 + }, + { + "epoch": 64.43337702053299, + "grad_norm": 0.20325049757957458, + "learning_rate": 0.0006, + "loss": 3.522329330444336, + "step": 4639 + }, + { + "epoch": 64.44735692442114, + "grad_norm": 0.21200744807720184, + "learning_rate": 0.0006, + "loss": 3.5492870807647705, + "step": 4640 + }, + { + "epoch": 64.4613368283093, + "grad_norm": 0.21482640504837036, + "learning_rate": 0.0006, + "loss": 3.5450363159179688, + "step": 4641 + }, + { + "epoch": 64.47531673219747, + "grad_norm": 0.2257383018732071, + "learning_rate": 0.0006, + "loss": 3.518486976623535, + "step": 4642 + }, + { + "epoch": 64.48929663608563, + "grad_norm": 0.20710107684135437, + "learning_rate": 0.0006, + "loss": 3.5212514400482178, + "step": 4643 + }, + { + "epoch": 64.50327653997378, + "grad_norm": 0.20518364012241364, + "learning_rate": 0.0006, + "loss": 3.5239462852478027, + "step": 4644 + }, + { + "epoch": 64.51725644386195, + "grad_norm": 0.20311623811721802, + "learning_rate": 0.0006, + "loss": 3.5299072265625, + "step": 4645 + }, + { + "epoch": 64.53123634775011, + "grad_norm": 0.2045847624540329, + "learning_rate": 0.0006, + "loss": 3.5337295532226562, + "step": 4646 + }, + { + "epoch": 64.54521625163827, + "grad_norm": 0.20734596252441406, + "learning_rate": 0.0006, + "loss": 3.5001375675201416, + "step": 4647 + }, + { + "epoch": 64.55919615552644, + "grad_norm": 0.2103254497051239, + "learning_rate": 0.0006, + "loss": 3.50685977935791, + "step": 4648 + }, + { + "epoch": 64.57317605941459, + "grad_norm": 0.19903342425823212, + "learning_rate": 0.0006, + "loss": 3.5295052528381348, + "step": 4649 + }, + { + "epoch": 64.58715596330275, + "grad_norm": 0.21105562150478363, + "learning_rate": 0.0006, + "loss": 3.5062971115112305, + "step": 4650 + }, + { + "epoch": 64.60113586719092, + "grad_norm": 0.2149161994457245, + "learning_rate": 0.0006, + "loss": 3.5040459632873535, + "step": 4651 + }, + { + "epoch": 64.61511577107908, + "grad_norm": 0.19698478281497955, + "learning_rate": 0.0006, + "loss": 3.541640281677246, + "step": 4652 + }, + { + "epoch": 64.62909567496723, + "grad_norm": 0.22909119725227356, + "learning_rate": 0.0006, + "loss": 3.546515941619873, + "step": 4653 + }, + { + "epoch": 64.6430755788554, + "grad_norm": 0.2322760671377182, + "learning_rate": 0.0006, + "loss": 3.5374197959899902, + "step": 4654 + }, + { + "epoch": 64.65705548274356, + "grad_norm": 0.2173723429441452, + "learning_rate": 0.0006, + "loss": 3.543529510498047, + "step": 4655 + }, + { + "epoch": 64.67103538663171, + "grad_norm": 0.21360787749290466, + "learning_rate": 0.0006, + "loss": 3.560333251953125, + "step": 4656 + }, + { + "epoch": 64.68501529051987, + "grad_norm": 0.23260995745658875, + "learning_rate": 0.0006, + "loss": 3.5468926429748535, + "step": 4657 + }, + { + "epoch": 64.69899519440804, + "grad_norm": 0.23099006712436676, + "learning_rate": 0.0006, + "loss": 3.5222787857055664, + "step": 4658 + }, + { + "epoch": 64.7129750982962, + "grad_norm": 0.20590323209762573, + "learning_rate": 0.0006, + "loss": 3.538832426071167, + "step": 4659 + }, + { + "epoch": 64.72695500218435, + "grad_norm": 0.2339620441198349, + "learning_rate": 0.0006, + "loss": 3.5201845169067383, + "step": 4660 + }, + { + "epoch": 64.74093490607252, + "grad_norm": 0.27160516381263733, + "learning_rate": 0.0006, + "loss": 3.5465309619903564, + "step": 4661 + }, + { + "epoch": 64.75491480996068, + "grad_norm": 0.2624864876270294, + "learning_rate": 0.0006, + "loss": 3.5205435752868652, + "step": 4662 + }, + { + "epoch": 64.76889471384884, + "grad_norm": 0.23907902836799622, + "learning_rate": 0.0006, + "loss": 3.553205728530884, + "step": 4663 + }, + { + "epoch": 64.78287461773701, + "grad_norm": 0.2217475026845932, + "learning_rate": 0.0006, + "loss": 3.514068603515625, + "step": 4664 + }, + { + "epoch": 64.79685452162516, + "grad_norm": 0.20445777475833893, + "learning_rate": 0.0006, + "loss": 3.5382182598114014, + "step": 4665 + }, + { + "epoch": 64.81083442551332, + "grad_norm": 0.2027028501033783, + "learning_rate": 0.0006, + "loss": 3.549323081970215, + "step": 4666 + }, + { + "epoch": 64.82481432940149, + "grad_norm": 0.2211705446243286, + "learning_rate": 0.0006, + "loss": 3.5627710819244385, + "step": 4667 + }, + { + "epoch": 64.83879423328965, + "grad_norm": 0.23401948809623718, + "learning_rate": 0.0006, + "loss": 3.5169739723205566, + "step": 4668 + }, + { + "epoch": 64.8527741371778, + "grad_norm": 0.21921628713607788, + "learning_rate": 0.0006, + "loss": 3.5405478477478027, + "step": 4669 + }, + { + "epoch": 64.86675404106597, + "grad_norm": 0.20840027928352356, + "learning_rate": 0.0006, + "loss": 3.528883218765259, + "step": 4670 + }, + { + "epoch": 64.88073394495413, + "grad_norm": 0.21593457460403442, + "learning_rate": 0.0006, + "loss": 3.570455551147461, + "step": 4671 + }, + { + "epoch": 64.89471384884229, + "grad_norm": 0.22351567447185516, + "learning_rate": 0.0006, + "loss": 3.567831516265869, + "step": 4672 + }, + { + "epoch": 64.90869375273044, + "grad_norm": 0.22733932733535767, + "learning_rate": 0.0006, + "loss": 3.55277156829834, + "step": 4673 + }, + { + "epoch": 64.92267365661861, + "grad_norm": 0.19557999074459076, + "learning_rate": 0.0006, + "loss": 3.523028612136841, + "step": 4674 + }, + { + "epoch": 64.93665356050677, + "grad_norm": 0.22674734890460968, + "learning_rate": 0.0006, + "loss": 3.565629720687866, + "step": 4675 + }, + { + "epoch": 64.95063346439493, + "grad_norm": 0.23879630863666534, + "learning_rate": 0.0006, + "loss": 3.5556788444519043, + "step": 4676 + }, + { + "epoch": 64.9646133682831, + "grad_norm": 0.24172860383987427, + "learning_rate": 0.0006, + "loss": 3.580190658569336, + "step": 4677 + }, + { + "epoch": 64.97859327217125, + "grad_norm": 0.24994441866874695, + "learning_rate": 0.0006, + "loss": 3.506659507751465, + "step": 4678 + }, + { + "epoch": 64.99257317605941, + "grad_norm": 0.20717456936836243, + "learning_rate": 0.0006, + "loss": 3.526215076446533, + "step": 4679 + }, + { + "epoch": 65.0, + "grad_norm": 0.23991262912750244, + "learning_rate": 0.0006, + "loss": 3.5615687370300293, + "step": 4680 + }, + { + "epoch": 65.0, + "eval_loss": 3.974820137023926, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 4680 + }, + { + "epoch": 65.01397990388816, + "grad_norm": 0.22059205174446106, + "learning_rate": 0.0006, + "loss": 3.4952855110168457, + "step": 4681 + }, + { + "epoch": 65.02795980777633, + "grad_norm": 0.23085950314998627, + "learning_rate": 0.0006, + "loss": 3.5180296897888184, + "step": 4682 + }, + { + "epoch": 65.04193971166448, + "grad_norm": 0.20950855314731598, + "learning_rate": 0.0006, + "loss": 3.5476295948028564, + "step": 4683 + }, + { + "epoch": 65.05591961555264, + "grad_norm": 0.1958799958229065, + "learning_rate": 0.0006, + "loss": 3.5180916786193848, + "step": 4684 + }, + { + "epoch": 65.06989951944081, + "grad_norm": 0.20676101744174957, + "learning_rate": 0.0006, + "loss": 3.4882211685180664, + "step": 4685 + }, + { + "epoch": 65.08387942332897, + "grad_norm": 0.24798569083213806, + "learning_rate": 0.0006, + "loss": 3.5030102729797363, + "step": 4686 + }, + { + "epoch": 65.09785932721712, + "grad_norm": 0.2997048795223236, + "learning_rate": 0.0006, + "loss": 3.5148534774780273, + "step": 4687 + }, + { + "epoch": 65.1118392311053, + "grad_norm": 0.27347132563591003, + "learning_rate": 0.0006, + "loss": 3.534639358520508, + "step": 4688 + }, + { + "epoch": 65.12581913499345, + "grad_norm": 0.2220011204481125, + "learning_rate": 0.0006, + "loss": 3.50504994392395, + "step": 4689 + }, + { + "epoch": 65.1397990388816, + "grad_norm": 0.2552279829978943, + "learning_rate": 0.0006, + "loss": 3.4893431663513184, + "step": 4690 + }, + { + "epoch": 65.15377894276976, + "grad_norm": 0.32200172543525696, + "learning_rate": 0.0006, + "loss": 3.515808582305908, + "step": 4691 + }, + { + "epoch": 65.16775884665793, + "grad_norm": 0.31339603662490845, + "learning_rate": 0.0006, + "loss": 3.493312358856201, + "step": 4692 + }, + { + "epoch": 65.18173875054609, + "grad_norm": 0.30790913105010986, + "learning_rate": 0.0006, + "loss": 3.5001792907714844, + "step": 4693 + }, + { + "epoch": 65.19571865443424, + "grad_norm": 0.25261157751083374, + "learning_rate": 0.0006, + "loss": 3.491820812225342, + "step": 4694 + }, + { + "epoch": 65.20969855832242, + "grad_norm": 0.20875515043735504, + "learning_rate": 0.0006, + "loss": 3.5120949745178223, + "step": 4695 + }, + { + "epoch": 65.22367846221057, + "grad_norm": 0.22966094315052032, + "learning_rate": 0.0006, + "loss": 3.4509716033935547, + "step": 4696 + }, + { + "epoch": 65.23765836609873, + "grad_norm": 0.22414445877075195, + "learning_rate": 0.0006, + "loss": 3.5032718181610107, + "step": 4697 + }, + { + "epoch": 65.2516382699869, + "grad_norm": 0.21083641052246094, + "learning_rate": 0.0006, + "loss": 3.4912984371185303, + "step": 4698 + }, + { + "epoch": 65.26561817387505, + "grad_norm": 0.21424371004104614, + "learning_rate": 0.0006, + "loss": 3.493704080581665, + "step": 4699 + }, + { + "epoch": 65.27959807776321, + "grad_norm": 0.21155135333538055, + "learning_rate": 0.0006, + "loss": 3.523045063018799, + "step": 4700 + }, + { + "epoch": 65.29357798165138, + "grad_norm": 0.2245800942182541, + "learning_rate": 0.0006, + "loss": 3.5085060596466064, + "step": 4701 + }, + { + "epoch": 65.30755788553954, + "grad_norm": 0.2271309345960617, + "learning_rate": 0.0006, + "loss": 3.51690673828125, + "step": 4702 + }, + { + "epoch": 65.3215377894277, + "grad_norm": 0.23873905837535858, + "learning_rate": 0.0006, + "loss": 3.533975124359131, + "step": 4703 + }, + { + "epoch": 65.33551769331586, + "grad_norm": 0.22801156342029572, + "learning_rate": 0.0006, + "loss": 3.554079532623291, + "step": 4704 + }, + { + "epoch": 65.34949759720402, + "grad_norm": 0.20530614256858826, + "learning_rate": 0.0006, + "loss": 3.5536623001098633, + "step": 4705 + }, + { + "epoch": 65.36347750109218, + "grad_norm": 0.19286230206489563, + "learning_rate": 0.0006, + "loss": 3.5279109477996826, + "step": 4706 + }, + { + "epoch": 65.37745740498035, + "grad_norm": 0.20883116126060486, + "learning_rate": 0.0006, + "loss": 3.526639223098755, + "step": 4707 + }, + { + "epoch": 65.3914373088685, + "grad_norm": 0.20705194771289825, + "learning_rate": 0.0006, + "loss": 3.5389089584350586, + "step": 4708 + }, + { + "epoch": 65.40541721275666, + "grad_norm": 0.1948518604040146, + "learning_rate": 0.0006, + "loss": 3.504940986633301, + "step": 4709 + }, + { + "epoch": 65.41939711664482, + "grad_norm": 0.20147304236888885, + "learning_rate": 0.0006, + "loss": 3.5085673332214355, + "step": 4710 + }, + { + "epoch": 65.43337702053299, + "grad_norm": 0.2229771912097931, + "learning_rate": 0.0006, + "loss": 3.4806604385375977, + "step": 4711 + }, + { + "epoch": 65.44735692442114, + "grad_norm": 0.252258837223053, + "learning_rate": 0.0006, + "loss": 3.5160961151123047, + "step": 4712 + }, + { + "epoch": 65.4613368283093, + "grad_norm": 0.2482563853263855, + "learning_rate": 0.0006, + "loss": 3.522674560546875, + "step": 4713 + }, + { + "epoch": 65.47531673219747, + "grad_norm": 0.22155597805976868, + "learning_rate": 0.0006, + "loss": 3.5124268531799316, + "step": 4714 + }, + { + "epoch": 65.48929663608563, + "grad_norm": 0.223913311958313, + "learning_rate": 0.0006, + "loss": 3.5122427940368652, + "step": 4715 + }, + { + "epoch": 65.50327653997378, + "grad_norm": 0.20946767926216125, + "learning_rate": 0.0006, + "loss": 3.552161693572998, + "step": 4716 + }, + { + "epoch": 65.51725644386195, + "grad_norm": 0.21044479310512543, + "learning_rate": 0.0006, + "loss": 3.5450949668884277, + "step": 4717 + }, + { + "epoch": 65.53123634775011, + "grad_norm": 0.25752949714660645, + "learning_rate": 0.0006, + "loss": 3.5267398357391357, + "step": 4718 + }, + { + "epoch": 65.54521625163827, + "grad_norm": 0.28068798780441284, + "learning_rate": 0.0006, + "loss": 3.537827491760254, + "step": 4719 + }, + { + "epoch": 65.55919615552644, + "grad_norm": 0.2259511947631836, + "learning_rate": 0.0006, + "loss": 3.540821075439453, + "step": 4720 + }, + { + "epoch": 65.57317605941459, + "grad_norm": 0.2032593935728073, + "learning_rate": 0.0006, + "loss": 3.540170669555664, + "step": 4721 + }, + { + "epoch": 65.58715596330275, + "grad_norm": 0.2432602047920227, + "learning_rate": 0.0006, + "loss": 3.5356297492980957, + "step": 4722 + }, + { + "epoch": 65.60113586719092, + "grad_norm": 0.20527289807796478, + "learning_rate": 0.0006, + "loss": 3.4675498008728027, + "step": 4723 + }, + { + "epoch": 65.61511577107908, + "grad_norm": 0.18697771430015564, + "learning_rate": 0.0006, + "loss": 3.5208992958068848, + "step": 4724 + }, + { + "epoch": 65.62909567496723, + "grad_norm": 0.2044762223958969, + "learning_rate": 0.0006, + "loss": 3.5583274364471436, + "step": 4725 + }, + { + "epoch": 65.6430755788554, + "grad_norm": 0.22855281829833984, + "learning_rate": 0.0006, + "loss": 3.5497756004333496, + "step": 4726 + }, + { + "epoch": 65.65705548274356, + "grad_norm": 0.21672320365905762, + "learning_rate": 0.0006, + "loss": 3.530869960784912, + "step": 4727 + }, + { + "epoch": 65.67103538663171, + "grad_norm": 0.20629048347473145, + "learning_rate": 0.0006, + "loss": 3.5381593704223633, + "step": 4728 + }, + { + "epoch": 65.68501529051987, + "grad_norm": 0.21036849915981293, + "learning_rate": 0.0006, + "loss": 3.531111478805542, + "step": 4729 + }, + { + "epoch": 65.69899519440804, + "grad_norm": 0.19463932514190674, + "learning_rate": 0.0006, + "loss": 3.523106098175049, + "step": 4730 + }, + { + "epoch": 65.7129750982962, + "grad_norm": 0.2210976481437683, + "learning_rate": 0.0006, + "loss": 3.5480356216430664, + "step": 4731 + }, + { + "epoch": 65.72695500218435, + "grad_norm": 0.2288331687450409, + "learning_rate": 0.0006, + "loss": 3.5317163467407227, + "step": 4732 + }, + { + "epoch": 65.74093490607252, + "grad_norm": 0.22445930540561676, + "learning_rate": 0.0006, + "loss": 3.5453107357025146, + "step": 4733 + }, + { + "epoch": 65.75491480996068, + "grad_norm": 0.20268939435482025, + "learning_rate": 0.0006, + "loss": 3.5546514987945557, + "step": 4734 + }, + { + "epoch": 65.76889471384884, + "grad_norm": 0.2070288211107254, + "learning_rate": 0.0006, + "loss": 3.5345590114593506, + "step": 4735 + }, + { + "epoch": 65.78287461773701, + "grad_norm": 0.2052922248840332, + "learning_rate": 0.0006, + "loss": 3.538299083709717, + "step": 4736 + }, + { + "epoch": 65.79685452162516, + "grad_norm": 0.2146841138601303, + "learning_rate": 0.0006, + "loss": 3.541652202606201, + "step": 4737 + }, + { + "epoch": 65.81083442551332, + "grad_norm": 0.21826434135437012, + "learning_rate": 0.0006, + "loss": 3.4880056381225586, + "step": 4738 + }, + { + "epoch": 65.82481432940149, + "grad_norm": 0.18492230772972107, + "learning_rate": 0.0006, + "loss": 3.5282340049743652, + "step": 4739 + }, + { + "epoch": 65.83879423328965, + "grad_norm": 0.2422342747449875, + "learning_rate": 0.0006, + "loss": 3.5482215881347656, + "step": 4740 + }, + { + "epoch": 65.8527741371778, + "grad_norm": 0.300968199968338, + "learning_rate": 0.0006, + "loss": 3.545173168182373, + "step": 4741 + }, + { + "epoch": 65.86675404106597, + "grad_norm": 0.23397785425186157, + "learning_rate": 0.0006, + "loss": 3.5014636516571045, + "step": 4742 + }, + { + "epoch": 65.88073394495413, + "grad_norm": 0.20114080607891083, + "learning_rate": 0.0006, + "loss": 3.517125368118286, + "step": 4743 + }, + { + "epoch": 65.89471384884229, + "grad_norm": 0.23073594272136688, + "learning_rate": 0.0006, + "loss": 3.5259623527526855, + "step": 4744 + }, + { + "epoch": 65.90869375273044, + "grad_norm": 0.25975924730300903, + "learning_rate": 0.0006, + "loss": 3.5394439697265625, + "step": 4745 + }, + { + "epoch": 65.92267365661861, + "grad_norm": 0.2565694749355316, + "learning_rate": 0.0006, + "loss": 3.5301175117492676, + "step": 4746 + }, + { + "epoch": 65.93665356050677, + "grad_norm": 0.24380211532115936, + "learning_rate": 0.0006, + "loss": 3.5519638061523438, + "step": 4747 + }, + { + "epoch": 65.95063346439493, + "grad_norm": 0.2337062805891037, + "learning_rate": 0.0006, + "loss": 3.5365114212036133, + "step": 4748 + }, + { + "epoch": 65.9646133682831, + "grad_norm": 0.2107299268245697, + "learning_rate": 0.0006, + "loss": 3.5433106422424316, + "step": 4749 + }, + { + "epoch": 65.97859327217125, + "grad_norm": 0.2159995585680008, + "learning_rate": 0.0006, + "loss": 3.539796829223633, + "step": 4750 + }, + { + "epoch": 65.99257317605941, + "grad_norm": 0.23707467317581177, + "learning_rate": 0.0006, + "loss": 3.5315332412719727, + "step": 4751 + }, + { + "epoch": 66.0, + "grad_norm": 0.27253037691116333, + "learning_rate": 0.0006, + "loss": 3.5477747917175293, + "step": 4752 + }, + { + "epoch": 66.0, + "eval_loss": 3.973580837249756, + "eval_runtime": 44.8472, + "eval_samples_per_second": 54.452, + "eval_steps_per_second": 3.412, + "step": 4752 + }, + { + "epoch": 66.01397990388816, + "grad_norm": 0.22843532264232635, + "learning_rate": 0.0006, + "loss": 3.463778018951416, + "step": 4753 + }, + { + "epoch": 66.02795980777633, + "grad_norm": 0.24956060945987701, + "learning_rate": 0.0006, + "loss": 3.5249979496002197, + "step": 4754 + }, + { + "epoch": 66.04193971166448, + "grad_norm": 0.3091195821762085, + "learning_rate": 0.0006, + "loss": 3.4742040634155273, + "step": 4755 + }, + { + "epoch": 66.05591961555264, + "grad_norm": 0.346617192029953, + "learning_rate": 0.0006, + "loss": 3.4870445728302, + "step": 4756 + }, + { + "epoch": 66.06989951944081, + "grad_norm": 0.2875824570655823, + "learning_rate": 0.0006, + "loss": 3.5412697792053223, + "step": 4757 + }, + { + "epoch": 66.08387942332897, + "grad_norm": 0.2508425712585449, + "learning_rate": 0.0006, + "loss": 3.488759756088257, + "step": 4758 + }, + { + "epoch": 66.09785932721712, + "grad_norm": 0.2538967728614807, + "learning_rate": 0.0006, + "loss": 3.536404609680176, + "step": 4759 + }, + { + "epoch": 66.1118392311053, + "grad_norm": 0.24713276326656342, + "learning_rate": 0.0006, + "loss": 3.502939462661743, + "step": 4760 + }, + { + "epoch": 66.12581913499345, + "grad_norm": 0.2381032407283783, + "learning_rate": 0.0006, + "loss": 3.5297226905822754, + "step": 4761 + }, + { + "epoch": 66.1397990388816, + "grad_norm": 0.23749777674674988, + "learning_rate": 0.0006, + "loss": 3.510740280151367, + "step": 4762 + }, + { + "epoch": 66.15377894276976, + "grad_norm": 0.24993619322776794, + "learning_rate": 0.0006, + "loss": 3.4966745376586914, + "step": 4763 + }, + { + "epoch": 66.16775884665793, + "grad_norm": 0.25855013728141785, + "learning_rate": 0.0006, + "loss": 3.545177936553955, + "step": 4764 + }, + { + "epoch": 66.18173875054609, + "grad_norm": 0.2206948697566986, + "learning_rate": 0.0006, + "loss": 3.5404415130615234, + "step": 4765 + }, + { + "epoch": 66.19571865443424, + "grad_norm": 0.2627105116844177, + "learning_rate": 0.0006, + "loss": 3.5475361347198486, + "step": 4766 + }, + { + "epoch": 66.20969855832242, + "grad_norm": 0.29578864574432373, + "learning_rate": 0.0006, + "loss": 3.510110855102539, + "step": 4767 + }, + { + "epoch": 66.22367846221057, + "grad_norm": 0.257691353559494, + "learning_rate": 0.0006, + "loss": 3.5143630504608154, + "step": 4768 + }, + { + "epoch": 66.23765836609873, + "grad_norm": 0.24346867203712463, + "learning_rate": 0.0006, + "loss": 3.5007784366607666, + "step": 4769 + }, + { + "epoch": 66.2516382699869, + "grad_norm": 0.230575293302536, + "learning_rate": 0.0006, + "loss": 3.5051684379577637, + "step": 4770 + }, + { + "epoch": 66.26561817387505, + "grad_norm": 0.23823921382427216, + "learning_rate": 0.0006, + "loss": 3.4773342609405518, + "step": 4771 + }, + { + "epoch": 66.27959807776321, + "grad_norm": 0.20743288099765778, + "learning_rate": 0.0006, + "loss": 3.496393918991089, + "step": 4772 + }, + { + "epoch": 66.29357798165138, + "grad_norm": 0.21969960629940033, + "learning_rate": 0.0006, + "loss": 3.494748830795288, + "step": 4773 + }, + { + "epoch": 66.30755788553954, + "grad_norm": 0.20902593433856964, + "learning_rate": 0.0006, + "loss": 3.529416561126709, + "step": 4774 + }, + { + "epoch": 66.3215377894277, + "grad_norm": 0.2380436211824417, + "learning_rate": 0.0006, + "loss": 3.508625030517578, + "step": 4775 + }, + { + "epoch": 66.33551769331586, + "grad_norm": 0.26387956738471985, + "learning_rate": 0.0006, + "loss": 3.4886221885681152, + "step": 4776 + }, + { + "epoch": 66.34949759720402, + "grad_norm": 0.24655069410800934, + "learning_rate": 0.0006, + "loss": 3.5089354515075684, + "step": 4777 + }, + { + "epoch": 66.36347750109218, + "grad_norm": 0.2446470856666565, + "learning_rate": 0.0006, + "loss": 3.5295841693878174, + "step": 4778 + }, + { + "epoch": 66.37745740498035, + "grad_norm": 0.23909035325050354, + "learning_rate": 0.0006, + "loss": 3.500223159790039, + "step": 4779 + }, + { + "epoch": 66.3914373088685, + "grad_norm": 0.21958141028881073, + "learning_rate": 0.0006, + "loss": 3.5225610733032227, + "step": 4780 + }, + { + "epoch": 66.40541721275666, + "grad_norm": 0.20134378969669342, + "learning_rate": 0.0006, + "loss": 3.5055198669433594, + "step": 4781 + }, + { + "epoch": 66.41939711664482, + "grad_norm": 0.22621650993824005, + "learning_rate": 0.0006, + "loss": 3.5356178283691406, + "step": 4782 + }, + { + "epoch": 66.43337702053299, + "grad_norm": 0.214684396982193, + "learning_rate": 0.0006, + "loss": 3.5069541931152344, + "step": 4783 + }, + { + "epoch": 66.44735692442114, + "grad_norm": 0.217989981174469, + "learning_rate": 0.0006, + "loss": 3.499561071395874, + "step": 4784 + }, + { + "epoch": 66.4613368283093, + "grad_norm": 0.21457986533641815, + "learning_rate": 0.0006, + "loss": 3.5139474868774414, + "step": 4785 + }, + { + "epoch": 66.47531673219747, + "grad_norm": 0.24017205834388733, + "learning_rate": 0.0006, + "loss": 3.5267739295959473, + "step": 4786 + }, + { + "epoch": 66.48929663608563, + "grad_norm": 0.22864149510860443, + "learning_rate": 0.0006, + "loss": 3.5324792861938477, + "step": 4787 + }, + { + "epoch": 66.50327653997378, + "grad_norm": 0.219966322183609, + "learning_rate": 0.0006, + "loss": 3.491529703140259, + "step": 4788 + }, + { + "epoch": 66.51725644386195, + "grad_norm": 0.23360539972782135, + "learning_rate": 0.0006, + "loss": 3.4962849617004395, + "step": 4789 + }, + { + "epoch": 66.53123634775011, + "grad_norm": 0.24652886390686035, + "learning_rate": 0.0006, + "loss": 3.510777473449707, + "step": 4790 + }, + { + "epoch": 66.54521625163827, + "grad_norm": 0.23419316112995148, + "learning_rate": 0.0006, + "loss": 3.5549509525299072, + "step": 4791 + }, + { + "epoch": 66.55919615552644, + "grad_norm": 0.2514760494232178, + "learning_rate": 0.0006, + "loss": 3.49761962890625, + "step": 4792 + }, + { + "epoch": 66.57317605941459, + "grad_norm": 0.24227535724639893, + "learning_rate": 0.0006, + "loss": 3.5556445121765137, + "step": 4793 + }, + { + "epoch": 66.58715596330275, + "grad_norm": 0.24751204252243042, + "learning_rate": 0.0006, + "loss": 3.5131940841674805, + "step": 4794 + }, + { + "epoch": 66.60113586719092, + "grad_norm": 0.24366872012615204, + "learning_rate": 0.0006, + "loss": 3.5310516357421875, + "step": 4795 + }, + { + "epoch": 66.61511577107908, + "grad_norm": 0.2177760899066925, + "learning_rate": 0.0006, + "loss": 3.5267493724823, + "step": 4796 + }, + { + "epoch": 66.62909567496723, + "grad_norm": 0.19654381275177002, + "learning_rate": 0.0006, + "loss": 3.5158896446228027, + "step": 4797 + }, + { + "epoch": 66.6430755788554, + "grad_norm": 0.2041735202074051, + "learning_rate": 0.0006, + "loss": 3.5645484924316406, + "step": 4798 + }, + { + "epoch": 66.65705548274356, + "grad_norm": 0.21368929743766785, + "learning_rate": 0.0006, + "loss": 3.5481250286102295, + "step": 4799 + }, + { + "epoch": 66.67103538663171, + "grad_norm": 0.2047458291053772, + "learning_rate": 0.0006, + "loss": 3.498279571533203, + "step": 4800 + }, + { + "epoch": 66.68501529051987, + "grad_norm": 0.21750541031360626, + "learning_rate": 0.0006, + "loss": 3.5349860191345215, + "step": 4801 + }, + { + "epoch": 66.69899519440804, + "grad_norm": 0.2415834218263626, + "learning_rate": 0.0006, + "loss": 3.5091004371643066, + "step": 4802 + }, + { + "epoch": 66.7129750982962, + "grad_norm": 0.19963665306568146, + "learning_rate": 0.0006, + "loss": 3.5369873046875, + "step": 4803 + }, + { + "epoch": 66.72695500218435, + "grad_norm": 0.23620283603668213, + "learning_rate": 0.0006, + "loss": 3.5239949226379395, + "step": 4804 + }, + { + "epoch": 66.74093490607252, + "grad_norm": 0.2616693079471588, + "learning_rate": 0.0006, + "loss": 3.545588493347168, + "step": 4805 + }, + { + "epoch": 66.75491480996068, + "grad_norm": 0.23235733807086945, + "learning_rate": 0.0006, + "loss": 3.5250823497772217, + "step": 4806 + }, + { + "epoch": 66.76889471384884, + "grad_norm": 0.20908917486667633, + "learning_rate": 0.0006, + "loss": 3.547023057937622, + "step": 4807 + }, + { + "epoch": 66.78287461773701, + "grad_norm": 0.23014947772026062, + "learning_rate": 0.0006, + "loss": 3.527070999145508, + "step": 4808 + }, + { + "epoch": 66.79685452162516, + "grad_norm": 0.2468312382698059, + "learning_rate": 0.0006, + "loss": 3.5456371307373047, + "step": 4809 + }, + { + "epoch": 66.81083442551332, + "grad_norm": 0.21409334242343903, + "learning_rate": 0.0006, + "loss": 3.5282058715820312, + "step": 4810 + }, + { + "epoch": 66.82481432940149, + "grad_norm": 0.20337609946727753, + "learning_rate": 0.0006, + "loss": 3.5054173469543457, + "step": 4811 + }, + { + "epoch": 66.83879423328965, + "grad_norm": 0.20335888862609863, + "learning_rate": 0.0006, + "loss": 3.5417919158935547, + "step": 4812 + }, + { + "epoch": 66.8527741371778, + "grad_norm": 0.20672455430030823, + "learning_rate": 0.0006, + "loss": 3.549217700958252, + "step": 4813 + }, + { + "epoch": 66.86675404106597, + "grad_norm": 0.19788624346256256, + "learning_rate": 0.0006, + "loss": 3.5244839191436768, + "step": 4814 + }, + { + "epoch": 66.88073394495413, + "grad_norm": 0.19756834208965302, + "learning_rate": 0.0006, + "loss": 3.5210156440734863, + "step": 4815 + }, + { + "epoch": 66.89471384884229, + "grad_norm": 0.18592269718647003, + "learning_rate": 0.0006, + "loss": 3.522824764251709, + "step": 4816 + }, + { + "epoch": 66.90869375273044, + "grad_norm": 0.2011021077632904, + "learning_rate": 0.0006, + "loss": 3.521613597869873, + "step": 4817 + }, + { + "epoch": 66.92267365661861, + "grad_norm": 0.20816446840763092, + "learning_rate": 0.0006, + "loss": 3.562373161315918, + "step": 4818 + }, + { + "epoch": 66.93665356050677, + "grad_norm": 0.1967775523662567, + "learning_rate": 0.0006, + "loss": 3.5357818603515625, + "step": 4819 + }, + { + "epoch": 66.95063346439493, + "grad_norm": 0.20569968223571777, + "learning_rate": 0.0006, + "loss": 3.5232982635498047, + "step": 4820 + }, + { + "epoch": 66.9646133682831, + "grad_norm": 0.2095642238855362, + "learning_rate": 0.0006, + "loss": 3.5395994186401367, + "step": 4821 + }, + { + "epoch": 66.97859327217125, + "grad_norm": 0.22340409457683563, + "learning_rate": 0.0006, + "loss": 3.5163097381591797, + "step": 4822 + }, + { + "epoch": 66.99257317605941, + "grad_norm": 0.2131485939025879, + "learning_rate": 0.0006, + "loss": 3.555629253387451, + "step": 4823 + }, + { + "epoch": 67.0, + "grad_norm": 0.22373832762241364, + "learning_rate": 0.0006, + "loss": 3.5017800331115723, + "step": 4824 + }, + { + "epoch": 67.0, + "eval_loss": 3.9781124591827393, + "eval_runtime": 44.8111, + "eval_samples_per_second": 54.495, + "eval_steps_per_second": 3.414, + "step": 4824 + }, + { + "epoch": 67.01397990388816, + "grad_norm": 0.21282735466957092, + "learning_rate": 0.0006, + "loss": 3.482837677001953, + "step": 4825 + }, + { + "epoch": 67.02795980777633, + "grad_norm": 0.23839101195335388, + "learning_rate": 0.0006, + "loss": 3.5095958709716797, + "step": 4826 + }, + { + "epoch": 67.04193971166448, + "grad_norm": 0.2598385810852051, + "learning_rate": 0.0006, + "loss": 3.463888645172119, + "step": 4827 + }, + { + "epoch": 67.05591961555264, + "grad_norm": 0.24132144451141357, + "learning_rate": 0.0006, + "loss": 3.478180408477783, + "step": 4828 + }, + { + "epoch": 67.06989951944081, + "grad_norm": 0.23276527225971222, + "learning_rate": 0.0006, + "loss": 3.5064096450805664, + "step": 4829 + }, + { + "epoch": 67.08387942332897, + "grad_norm": 0.21749058365821838, + "learning_rate": 0.0006, + "loss": 3.5057930946350098, + "step": 4830 + }, + { + "epoch": 67.09785932721712, + "grad_norm": 0.22310365736484528, + "learning_rate": 0.0006, + "loss": 3.492342233657837, + "step": 4831 + }, + { + "epoch": 67.1118392311053, + "grad_norm": 0.23109206557273865, + "learning_rate": 0.0006, + "loss": 3.4776313304901123, + "step": 4832 + }, + { + "epoch": 67.12581913499345, + "grad_norm": 0.21820154786109924, + "learning_rate": 0.0006, + "loss": 3.4983036518096924, + "step": 4833 + }, + { + "epoch": 67.1397990388816, + "grad_norm": 0.214705228805542, + "learning_rate": 0.0006, + "loss": 3.4997382164001465, + "step": 4834 + }, + { + "epoch": 67.15377894276976, + "grad_norm": 0.230570450425148, + "learning_rate": 0.0006, + "loss": 3.5172224044799805, + "step": 4835 + }, + { + "epoch": 67.16775884665793, + "grad_norm": 0.21726474165916443, + "learning_rate": 0.0006, + "loss": 3.4625420570373535, + "step": 4836 + }, + { + "epoch": 67.18173875054609, + "grad_norm": 0.21541455388069153, + "learning_rate": 0.0006, + "loss": 3.5274102687835693, + "step": 4837 + }, + { + "epoch": 67.19571865443424, + "grad_norm": 0.21431861817836761, + "learning_rate": 0.0006, + "loss": 3.5112781524658203, + "step": 4838 + }, + { + "epoch": 67.20969855832242, + "grad_norm": 0.22660572826862335, + "learning_rate": 0.0006, + "loss": 3.4687018394470215, + "step": 4839 + }, + { + "epoch": 67.22367846221057, + "grad_norm": 0.21821390092372894, + "learning_rate": 0.0006, + "loss": 3.5137336254119873, + "step": 4840 + }, + { + "epoch": 67.23765836609873, + "grad_norm": 0.20666861534118652, + "learning_rate": 0.0006, + "loss": 3.5264923572540283, + "step": 4841 + }, + { + "epoch": 67.2516382699869, + "grad_norm": 0.2266923040151596, + "learning_rate": 0.0006, + "loss": 3.5288591384887695, + "step": 4842 + }, + { + "epoch": 67.26561817387505, + "grad_norm": 0.20246101915836334, + "learning_rate": 0.0006, + "loss": 3.5267882347106934, + "step": 4843 + }, + { + "epoch": 67.27959807776321, + "grad_norm": 0.20115883648395538, + "learning_rate": 0.0006, + "loss": 3.5004916191101074, + "step": 4844 + }, + { + "epoch": 67.29357798165138, + "grad_norm": 0.21547555923461914, + "learning_rate": 0.0006, + "loss": 3.5347824096679688, + "step": 4845 + }, + { + "epoch": 67.30755788553954, + "grad_norm": 0.22675341367721558, + "learning_rate": 0.0006, + "loss": 3.5119810104370117, + "step": 4846 + }, + { + "epoch": 67.3215377894277, + "grad_norm": 0.2440510094165802, + "learning_rate": 0.0006, + "loss": 3.489138126373291, + "step": 4847 + }, + { + "epoch": 67.33551769331586, + "grad_norm": 0.3055892884731293, + "learning_rate": 0.0006, + "loss": 3.5096774101257324, + "step": 4848 + }, + { + "epoch": 67.34949759720402, + "grad_norm": 0.3053153455257416, + "learning_rate": 0.0006, + "loss": 3.4901437759399414, + "step": 4849 + }, + { + "epoch": 67.36347750109218, + "grad_norm": 0.27368026971817017, + "learning_rate": 0.0006, + "loss": 3.5251317024230957, + "step": 4850 + }, + { + "epoch": 67.37745740498035, + "grad_norm": 0.2427835315465927, + "learning_rate": 0.0006, + "loss": 3.5069375038146973, + "step": 4851 + }, + { + "epoch": 67.3914373088685, + "grad_norm": 0.22328020632266998, + "learning_rate": 0.0006, + "loss": 3.5156240463256836, + "step": 4852 + }, + { + "epoch": 67.40541721275666, + "grad_norm": 0.22034069895744324, + "learning_rate": 0.0006, + "loss": 3.527740001678467, + "step": 4853 + }, + { + "epoch": 67.41939711664482, + "grad_norm": 0.23175004124641418, + "learning_rate": 0.0006, + "loss": 3.5049824714660645, + "step": 4854 + }, + { + "epoch": 67.43337702053299, + "grad_norm": 0.251209020614624, + "learning_rate": 0.0006, + "loss": 3.521754503250122, + "step": 4855 + }, + { + "epoch": 67.44735692442114, + "grad_norm": 0.26046663522720337, + "learning_rate": 0.0006, + "loss": 3.507568359375, + "step": 4856 + }, + { + "epoch": 67.4613368283093, + "grad_norm": 0.2206648588180542, + "learning_rate": 0.0006, + "loss": 3.513352870941162, + "step": 4857 + }, + { + "epoch": 67.47531673219747, + "grad_norm": 0.21608634293079376, + "learning_rate": 0.0006, + "loss": 3.4996538162231445, + "step": 4858 + }, + { + "epoch": 67.48929663608563, + "grad_norm": 0.24478112161159515, + "learning_rate": 0.0006, + "loss": 3.5210018157958984, + "step": 4859 + }, + { + "epoch": 67.50327653997378, + "grad_norm": 0.24971047043800354, + "learning_rate": 0.0006, + "loss": 3.5325865745544434, + "step": 4860 + }, + { + "epoch": 67.51725644386195, + "grad_norm": 0.26053082942962646, + "learning_rate": 0.0006, + "loss": 3.546248435974121, + "step": 4861 + }, + { + "epoch": 67.53123634775011, + "grad_norm": 0.2662231922149658, + "learning_rate": 0.0006, + "loss": 3.5073113441467285, + "step": 4862 + }, + { + "epoch": 67.54521625163827, + "grad_norm": 0.24797172844409943, + "learning_rate": 0.0006, + "loss": 3.536888360977173, + "step": 4863 + }, + { + "epoch": 67.55919615552644, + "grad_norm": 0.2383667528629303, + "learning_rate": 0.0006, + "loss": 3.5343832969665527, + "step": 4864 + }, + { + "epoch": 67.57317605941459, + "grad_norm": 0.2696457803249359, + "learning_rate": 0.0006, + "loss": 3.51254940032959, + "step": 4865 + }, + { + "epoch": 67.58715596330275, + "grad_norm": 0.2644849419593811, + "learning_rate": 0.0006, + "loss": 3.5213255882263184, + "step": 4866 + }, + { + "epoch": 67.60113586719092, + "grad_norm": 0.2375287413597107, + "learning_rate": 0.0006, + "loss": 3.5177063941955566, + "step": 4867 + }, + { + "epoch": 67.61511577107908, + "grad_norm": 0.2249385118484497, + "learning_rate": 0.0006, + "loss": 3.541508674621582, + "step": 4868 + }, + { + "epoch": 67.62909567496723, + "grad_norm": 0.2155243158340454, + "learning_rate": 0.0006, + "loss": 3.5091710090637207, + "step": 4869 + }, + { + "epoch": 67.6430755788554, + "grad_norm": 0.20459716022014618, + "learning_rate": 0.0006, + "loss": 3.5284833908081055, + "step": 4870 + }, + { + "epoch": 67.65705548274356, + "grad_norm": 0.22957809269428253, + "learning_rate": 0.0006, + "loss": 3.4831137657165527, + "step": 4871 + }, + { + "epoch": 67.67103538663171, + "grad_norm": 0.2776307165622711, + "learning_rate": 0.0006, + "loss": 3.5084991455078125, + "step": 4872 + }, + { + "epoch": 67.68501529051987, + "grad_norm": 0.2769255042076111, + "learning_rate": 0.0006, + "loss": 3.5352253913879395, + "step": 4873 + }, + { + "epoch": 67.69899519440804, + "grad_norm": 0.2233399897813797, + "learning_rate": 0.0006, + "loss": 3.5451040267944336, + "step": 4874 + }, + { + "epoch": 67.7129750982962, + "grad_norm": 0.20665188133716583, + "learning_rate": 0.0006, + "loss": 3.528292417526245, + "step": 4875 + }, + { + "epoch": 67.72695500218435, + "grad_norm": 0.22606195509433746, + "learning_rate": 0.0006, + "loss": 3.519838571548462, + "step": 4876 + }, + { + "epoch": 67.74093490607252, + "grad_norm": 0.22447355091571808, + "learning_rate": 0.0006, + "loss": 3.562148094177246, + "step": 4877 + }, + { + "epoch": 67.75491480996068, + "grad_norm": 0.2255096584558487, + "learning_rate": 0.0006, + "loss": 3.53926420211792, + "step": 4878 + }, + { + "epoch": 67.76889471384884, + "grad_norm": 0.2142494022846222, + "learning_rate": 0.0006, + "loss": 3.533456563949585, + "step": 4879 + }, + { + "epoch": 67.78287461773701, + "grad_norm": 0.2157258242368698, + "learning_rate": 0.0006, + "loss": 3.534109592437744, + "step": 4880 + }, + { + "epoch": 67.79685452162516, + "grad_norm": 0.20596624910831451, + "learning_rate": 0.0006, + "loss": 3.5252795219421387, + "step": 4881 + }, + { + "epoch": 67.81083442551332, + "grad_norm": 0.24075612425804138, + "learning_rate": 0.0006, + "loss": 3.549905300140381, + "step": 4882 + }, + { + "epoch": 67.82481432940149, + "grad_norm": 0.27206453680992126, + "learning_rate": 0.0006, + "loss": 3.4850993156433105, + "step": 4883 + }, + { + "epoch": 67.83879423328965, + "grad_norm": 0.2525651454925537, + "learning_rate": 0.0006, + "loss": 3.4936270713806152, + "step": 4884 + }, + { + "epoch": 67.8527741371778, + "grad_norm": 0.20669442415237427, + "learning_rate": 0.0006, + "loss": 3.5201377868652344, + "step": 4885 + }, + { + "epoch": 67.86675404106597, + "grad_norm": 0.19694887101650238, + "learning_rate": 0.0006, + "loss": 3.5146493911743164, + "step": 4886 + }, + { + "epoch": 67.88073394495413, + "grad_norm": 0.20657725632190704, + "learning_rate": 0.0006, + "loss": 3.539475917816162, + "step": 4887 + }, + { + "epoch": 67.89471384884229, + "grad_norm": 0.2321559488773346, + "learning_rate": 0.0006, + "loss": 3.541250705718994, + "step": 4888 + }, + { + "epoch": 67.90869375273044, + "grad_norm": 0.22864052653312683, + "learning_rate": 0.0006, + "loss": 3.5151207447052, + "step": 4889 + }, + { + "epoch": 67.92267365661861, + "grad_norm": 0.2121419608592987, + "learning_rate": 0.0006, + "loss": 3.5219309329986572, + "step": 4890 + }, + { + "epoch": 67.93665356050677, + "grad_norm": 0.2194126695394516, + "learning_rate": 0.0006, + "loss": 3.5411415100097656, + "step": 4891 + }, + { + "epoch": 67.95063346439493, + "grad_norm": 0.23670069873332977, + "learning_rate": 0.0006, + "loss": 3.56632137298584, + "step": 4892 + }, + { + "epoch": 67.9646133682831, + "grad_norm": 0.22159531712532043, + "learning_rate": 0.0006, + "loss": 3.5245089530944824, + "step": 4893 + }, + { + "epoch": 67.97859327217125, + "grad_norm": 0.20856274664402008, + "learning_rate": 0.0006, + "loss": 3.5363054275512695, + "step": 4894 + }, + { + "epoch": 67.99257317605941, + "grad_norm": 0.21568304300308228, + "learning_rate": 0.0006, + "loss": 3.5226120948791504, + "step": 4895 + }, + { + "epoch": 68.0, + "grad_norm": 0.22287404537200928, + "learning_rate": 0.0006, + "loss": 3.5020053386688232, + "step": 4896 + }, + { + "epoch": 68.0, + "eval_loss": 3.976909637451172, + "eval_runtime": 44.2603, + "eval_samples_per_second": 55.174, + "eval_steps_per_second": 3.457, + "step": 4896 + }, + { + "epoch": 68.01397990388816, + "grad_norm": 0.20234280824661255, + "learning_rate": 0.0006, + "loss": 3.484044075012207, + "step": 4897 + }, + { + "epoch": 68.02795980777633, + "grad_norm": 0.2183598279953003, + "learning_rate": 0.0006, + "loss": 3.4933700561523438, + "step": 4898 + }, + { + "epoch": 68.04193971166448, + "grad_norm": 0.24236822128295898, + "learning_rate": 0.0006, + "loss": 3.5028629302978516, + "step": 4899 + }, + { + "epoch": 68.05591961555264, + "grad_norm": 0.26641783118247986, + "learning_rate": 0.0006, + "loss": 3.475382089614868, + "step": 4900 + }, + { + "epoch": 68.06989951944081, + "grad_norm": 0.2867112159729004, + "learning_rate": 0.0006, + "loss": 3.5016913414001465, + "step": 4901 + }, + { + "epoch": 68.08387942332897, + "grad_norm": 0.24962085485458374, + "learning_rate": 0.0006, + "loss": 3.484367609024048, + "step": 4902 + }, + { + "epoch": 68.09785932721712, + "grad_norm": 0.2124275118112564, + "learning_rate": 0.0006, + "loss": 3.5119738578796387, + "step": 4903 + }, + { + "epoch": 68.1118392311053, + "grad_norm": 0.24732011556625366, + "learning_rate": 0.0006, + "loss": 3.486185073852539, + "step": 4904 + }, + { + "epoch": 68.12581913499345, + "grad_norm": 0.28683924674987793, + "learning_rate": 0.0006, + "loss": 3.495997905731201, + "step": 4905 + }, + { + "epoch": 68.1397990388816, + "grad_norm": 0.25751420855522156, + "learning_rate": 0.0006, + "loss": 3.4736456871032715, + "step": 4906 + }, + { + "epoch": 68.15377894276976, + "grad_norm": 0.24258914589881897, + "learning_rate": 0.0006, + "loss": 3.4900879859924316, + "step": 4907 + }, + { + "epoch": 68.16775884665793, + "grad_norm": 0.2878887951374054, + "learning_rate": 0.0006, + "loss": 3.4851484298706055, + "step": 4908 + }, + { + "epoch": 68.18173875054609, + "grad_norm": 0.27111393213272095, + "learning_rate": 0.0006, + "loss": 3.4835691452026367, + "step": 4909 + }, + { + "epoch": 68.19571865443424, + "grad_norm": 0.2475033849477768, + "learning_rate": 0.0006, + "loss": 3.4887213706970215, + "step": 4910 + }, + { + "epoch": 68.20969855832242, + "grad_norm": 0.267839252948761, + "learning_rate": 0.0006, + "loss": 3.515256404876709, + "step": 4911 + }, + { + "epoch": 68.22367846221057, + "grad_norm": 0.2135075181722641, + "learning_rate": 0.0006, + "loss": 3.5156445503234863, + "step": 4912 + }, + { + "epoch": 68.23765836609873, + "grad_norm": 0.22425328195095062, + "learning_rate": 0.0006, + "loss": 3.505338668823242, + "step": 4913 + }, + { + "epoch": 68.2516382699869, + "grad_norm": 0.2322927862405777, + "learning_rate": 0.0006, + "loss": 3.519695281982422, + "step": 4914 + }, + { + "epoch": 68.26561817387505, + "grad_norm": 0.2472568154335022, + "learning_rate": 0.0006, + "loss": 3.4845151901245117, + "step": 4915 + }, + { + "epoch": 68.27959807776321, + "grad_norm": 0.2725318968296051, + "learning_rate": 0.0006, + "loss": 3.4981484413146973, + "step": 4916 + }, + { + "epoch": 68.29357798165138, + "grad_norm": 0.2940191626548767, + "learning_rate": 0.0006, + "loss": 3.5088295936584473, + "step": 4917 + }, + { + "epoch": 68.30755788553954, + "grad_norm": 0.24303823709487915, + "learning_rate": 0.0006, + "loss": 3.492511749267578, + "step": 4918 + }, + { + "epoch": 68.3215377894277, + "grad_norm": 0.21951992809772491, + "learning_rate": 0.0006, + "loss": 3.509099006652832, + "step": 4919 + }, + { + "epoch": 68.33551769331586, + "grad_norm": 0.22776944935321808, + "learning_rate": 0.0006, + "loss": 3.501638650894165, + "step": 4920 + }, + { + "epoch": 68.34949759720402, + "grad_norm": 0.21173885464668274, + "learning_rate": 0.0006, + "loss": 3.4885807037353516, + "step": 4921 + }, + { + "epoch": 68.36347750109218, + "grad_norm": 0.2253648191690445, + "learning_rate": 0.0006, + "loss": 3.5350418090820312, + "step": 4922 + }, + { + "epoch": 68.37745740498035, + "grad_norm": 0.24312502145767212, + "learning_rate": 0.0006, + "loss": 3.490877866744995, + "step": 4923 + }, + { + "epoch": 68.3914373088685, + "grad_norm": 0.2103606015443802, + "learning_rate": 0.0006, + "loss": 3.5088863372802734, + "step": 4924 + }, + { + "epoch": 68.40541721275666, + "grad_norm": 0.19921863079071045, + "learning_rate": 0.0006, + "loss": 3.5282039642333984, + "step": 4925 + }, + { + "epoch": 68.41939711664482, + "grad_norm": 0.2041940689086914, + "learning_rate": 0.0006, + "loss": 3.5212771892547607, + "step": 4926 + }, + { + "epoch": 68.43337702053299, + "grad_norm": 0.22238804399967194, + "learning_rate": 0.0006, + "loss": 3.4951324462890625, + "step": 4927 + }, + { + "epoch": 68.44735692442114, + "grad_norm": 0.23161815106868744, + "learning_rate": 0.0006, + "loss": 3.5463013648986816, + "step": 4928 + }, + { + "epoch": 68.4613368283093, + "grad_norm": 0.21717964112758636, + "learning_rate": 0.0006, + "loss": 3.5081775188446045, + "step": 4929 + }, + { + "epoch": 68.47531673219747, + "grad_norm": 0.21505609154701233, + "learning_rate": 0.0006, + "loss": 3.52695631980896, + "step": 4930 + }, + { + "epoch": 68.48929663608563, + "grad_norm": 0.2720189094543457, + "learning_rate": 0.0006, + "loss": 3.497748374938965, + "step": 4931 + }, + { + "epoch": 68.50327653997378, + "grad_norm": 0.2619168758392334, + "learning_rate": 0.0006, + "loss": 3.5015270709991455, + "step": 4932 + }, + { + "epoch": 68.51725644386195, + "grad_norm": 0.21718725562095642, + "learning_rate": 0.0006, + "loss": 3.533599853515625, + "step": 4933 + }, + { + "epoch": 68.53123634775011, + "grad_norm": 0.22977295517921448, + "learning_rate": 0.0006, + "loss": 3.507884979248047, + "step": 4934 + }, + { + "epoch": 68.54521625163827, + "grad_norm": 0.230342298746109, + "learning_rate": 0.0006, + "loss": 3.497065544128418, + "step": 4935 + }, + { + "epoch": 68.55919615552644, + "grad_norm": 0.2253657728433609, + "learning_rate": 0.0006, + "loss": 3.5066728591918945, + "step": 4936 + }, + { + "epoch": 68.57317605941459, + "grad_norm": 0.23173992335796356, + "learning_rate": 0.0006, + "loss": 3.5072999000549316, + "step": 4937 + }, + { + "epoch": 68.58715596330275, + "grad_norm": 0.22984914481639862, + "learning_rate": 0.0006, + "loss": 3.5296144485473633, + "step": 4938 + }, + { + "epoch": 68.60113586719092, + "grad_norm": 0.2349584549665451, + "learning_rate": 0.0006, + "loss": 3.5185141563415527, + "step": 4939 + }, + { + "epoch": 68.61511577107908, + "grad_norm": 0.2469010204076767, + "learning_rate": 0.0006, + "loss": 3.545579433441162, + "step": 4940 + }, + { + "epoch": 68.62909567496723, + "grad_norm": 0.23078389465808868, + "learning_rate": 0.0006, + "loss": 3.5281553268432617, + "step": 4941 + }, + { + "epoch": 68.6430755788554, + "grad_norm": 0.23545116186141968, + "learning_rate": 0.0006, + "loss": 3.5376791954040527, + "step": 4942 + }, + { + "epoch": 68.65705548274356, + "grad_norm": 0.22288277745246887, + "learning_rate": 0.0006, + "loss": 3.490978240966797, + "step": 4943 + }, + { + "epoch": 68.67103538663171, + "grad_norm": 0.21703778207302094, + "learning_rate": 0.0006, + "loss": 3.505856513977051, + "step": 4944 + }, + { + "epoch": 68.68501529051987, + "grad_norm": 0.24922960996627808, + "learning_rate": 0.0006, + "loss": 3.5120937824249268, + "step": 4945 + }, + { + "epoch": 68.69899519440804, + "grad_norm": 0.24075160920619965, + "learning_rate": 0.0006, + "loss": 3.515216588973999, + "step": 4946 + }, + { + "epoch": 68.7129750982962, + "grad_norm": 0.21714574098587036, + "learning_rate": 0.0006, + "loss": 3.5308592319488525, + "step": 4947 + }, + { + "epoch": 68.72695500218435, + "grad_norm": 0.21521902084350586, + "learning_rate": 0.0006, + "loss": 3.5040221214294434, + "step": 4948 + }, + { + "epoch": 68.74093490607252, + "grad_norm": 0.2078350931406021, + "learning_rate": 0.0006, + "loss": 3.5399329662323, + "step": 4949 + }, + { + "epoch": 68.75491480996068, + "grad_norm": 0.23039595782756805, + "learning_rate": 0.0006, + "loss": 3.5079939365386963, + "step": 4950 + }, + { + "epoch": 68.76889471384884, + "grad_norm": 0.23072801530361176, + "learning_rate": 0.0006, + "loss": 3.5254414081573486, + "step": 4951 + }, + { + "epoch": 68.78287461773701, + "grad_norm": 0.204904243350029, + "learning_rate": 0.0006, + "loss": 3.5212371349334717, + "step": 4952 + }, + { + "epoch": 68.79685452162516, + "grad_norm": 0.21405813097953796, + "learning_rate": 0.0006, + "loss": 3.557215690612793, + "step": 4953 + }, + { + "epoch": 68.81083442551332, + "grad_norm": 0.2332632839679718, + "learning_rate": 0.0006, + "loss": 3.522718906402588, + "step": 4954 + }, + { + "epoch": 68.82481432940149, + "grad_norm": 0.2211279273033142, + "learning_rate": 0.0006, + "loss": 3.534191608428955, + "step": 4955 + }, + { + "epoch": 68.83879423328965, + "grad_norm": 0.2153792679309845, + "learning_rate": 0.0006, + "loss": 3.497591018676758, + "step": 4956 + }, + { + "epoch": 68.8527741371778, + "grad_norm": 0.28634506464004517, + "learning_rate": 0.0006, + "loss": 3.5333778858184814, + "step": 4957 + }, + { + "epoch": 68.86675404106597, + "grad_norm": 0.2748981714248657, + "learning_rate": 0.0006, + "loss": 3.533328056335449, + "step": 4958 + }, + { + "epoch": 68.88073394495413, + "grad_norm": 0.22137348353862762, + "learning_rate": 0.0006, + "loss": 3.516744613647461, + "step": 4959 + }, + { + "epoch": 68.89471384884229, + "grad_norm": 0.21476638317108154, + "learning_rate": 0.0006, + "loss": 3.5090954303741455, + "step": 4960 + }, + { + "epoch": 68.90869375273044, + "grad_norm": 0.2204403430223465, + "learning_rate": 0.0006, + "loss": 3.534665107727051, + "step": 4961 + }, + { + "epoch": 68.92267365661861, + "grad_norm": 0.20083564519882202, + "learning_rate": 0.0006, + "loss": 3.5572776794433594, + "step": 4962 + }, + { + "epoch": 68.93665356050677, + "grad_norm": 0.23286207020282745, + "learning_rate": 0.0006, + "loss": 3.5279769897460938, + "step": 4963 + }, + { + "epoch": 68.95063346439493, + "grad_norm": 0.2934340536594391, + "learning_rate": 0.0006, + "loss": 3.5299172401428223, + "step": 4964 + }, + { + "epoch": 68.9646133682831, + "grad_norm": 0.29742664098739624, + "learning_rate": 0.0006, + "loss": 3.5258350372314453, + "step": 4965 + }, + { + "epoch": 68.97859327217125, + "grad_norm": 0.23674239218235016, + "learning_rate": 0.0006, + "loss": 3.511875629425049, + "step": 4966 + }, + { + "epoch": 68.99257317605941, + "grad_norm": 0.1859714239835739, + "learning_rate": 0.0006, + "loss": 3.5111045837402344, + "step": 4967 + }, + { + "epoch": 69.0, + "grad_norm": 0.21548990905284882, + "learning_rate": 0.0006, + "loss": 3.567469358444214, + "step": 4968 + }, + { + "epoch": 69.0, + "eval_loss": 3.987680673599243, + "eval_runtime": 44.8193, + "eval_samples_per_second": 54.485, + "eval_steps_per_second": 3.414, + "step": 4968 + }, + { + "epoch": 69.01397990388816, + "grad_norm": 0.25460419058799744, + "learning_rate": 0.0006, + "loss": 3.513350009918213, + "step": 4969 + }, + { + "epoch": 69.02795980777633, + "grad_norm": 0.2635819613933563, + "learning_rate": 0.0006, + "loss": 3.516538143157959, + "step": 4970 + }, + { + "epoch": 69.04193971166448, + "grad_norm": 0.25024983286857605, + "learning_rate": 0.0006, + "loss": 3.501711845397949, + "step": 4971 + }, + { + "epoch": 69.05591961555264, + "grad_norm": 0.23533429205417633, + "learning_rate": 0.0006, + "loss": 3.4735984802246094, + "step": 4972 + }, + { + "epoch": 69.06989951944081, + "grad_norm": 0.23477932810783386, + "learning_rate": 0.0006, + "loss": 3.532632827758789, + "step": 4973 + }, + { + "epoch": 69.08387942332897, + "grad_norm": 0.23769758641719818, + "learning_rate": 0.0006, + "loss": 3.4775495529174805, + "step": 4974 + }, + { + "epoch": 69.09785932721712, + "grad_norm": 0.24599312245845795, + "learning_rate": 0.0006, + "loss": 3.481222629547119, + "step": 4975 + }, + { + "epoch": 69.1118392311053, + "grad_norm": 0.24212618172168732, + "learning_rate": 0.0006, + "loss": 3.485240936279297, + "step": 4976 + }, + { + "epoch": 69.12581913499345, + "grad_norm": 0.2271437644958496, + "learning_rate": 0.0006, + "loss": 3.476949691772461, + "step": 4977 + }, + { + "epoch": 69.1397990388816, + "grad_norm": 0.2542489469051361, + "learning_rate": 0.0006, + "loss": 3.4601399898529053, + "step": 4978 + }, + { + "epoch": 69.15377894276976, + "grad_norm": 0.24926388263702393, + "learning_rate": 0.0006, + "loss": 3.4832189083099365, + "step": 4979 + }, + { + "epoch": 69.16775884665793, + "grad_norm": 0.22356736660003662, + "learning_rate": 0.0006, + "loss": 3.5187554359436035, + "step": 4980 + }, + { + "epoch": 69.18173875054609, + "grad_norm": 0.21727295219898224, + "learning_rate": 0.0006, + "loss": 3.5310418605804443, + "step": 4981 + }, + { + "epoch": 69.19571865443424, + "grad_norm": 0.22234170138835907, + "learning_rate": 0.0006, + "loss": 3.506479263305664, + "step": 4982 + }, + { + "epoch": 69.20969855832242, + "grad_norm": 0.21620802581310272, + "learning_rate": 0.0006, + "loss": 3.488720655441284, + "step": 4983 + }, + { + "epoch": 69.22367846221057, + "grad_norm": 0.23558273911476135, + "learning_rate": 0.0006, + "loss": 3.4884839057922363, + "step": 4984 + }, + { + "epoch": 69.23765836609873, + "grad_norm": 0.2330513894557953, + "learning_rate": 0.0006, + "loss": 3.4810781478881836, + "step": 4985 + }, + { + "epoch": 69.2516382699869, + "grad_norm": 0.23570097982883453, + "learning_rate": 0.0006, + "loss": 3.4966390132904053, + "step": 4986 + }, + { + "epoch": 69.26561817387505, + "grad_norm": 0.2415456771850586, + "learning_rate": 0.0006, + "loss": 3.499464511871338, + "step": 4987 + }, + { + "epoch": 69.27959807776321, + "grad_norm": 0.22498410940170288, + "learning_rate": 0.0006, + "loss": 3.494260311126709, + "step": 4988 + }, + { + "epoch": 69.29357798165138, + "grad_norm": 0.23802009224891663, + "learning_rate": 0.0006, + "loss": 3.4801578521728516, + "step": 4989 + }, + { + "epoch": 69.30755788553954, + "grad_norm": 0.24189673364162445, + "learning_rate": 0.0006, + "loss": 3.513599395751953, + "step": 4990 + }, + { + "epoch": 69.3215377894277, + "grad_norm": 0.21577486395835876, + "learning_rate": 0.0006, + "loss": 3.493995428085327, + "step": 4991 + }, + { + "epoch": 69.33551769331586, + "grad_norm": 0.21220745146274567, + "learning_rate": 0.0006, + "loss": 3.495041847229004, + "step": 4992 + }, + { + "epoch": 69.34949759720402, + "grad_norm": 0.248879075050354, + "learning_rate": 0.0006, + "loss": 3.5003933906555176, + "step": 4993 + }, + { + "epoch": 69.36347750109218, + "grad_norm": 0.26753994822502136, + "learning_rate": 0.0006, + "loss": 3.491333484649658, + "step": 4994 + }, + { + "epoch": 69.37745740498035, + "grad_norm": 0.24140691757202148, + "learning_rate": 0.0006, + "loss": 3.495715618133545, + "step": 4995 + }, + { + "epoch": 69.3914373088685, + "grad_norm": 0.20997264981269836, + "learning_rate": 0.0006, + "loss": 3.520455837249756, + "step": 4996 + }, + { + "epoch": 69.40541721275666, + "grad_norm": 0.21708904206752777, + "learning_rate": 0.0006, + "loss": 3.4696202278137207, + "step": 4997 + }, + { + "epoch": 69.41939711664482, + "grad_norm": 0.25731977820396423, + "learning_rate": 0.0006, + "loss": 3.4827113151550293, + "step": 4998 + }, + { + "epoch": 69.43337702053299, + "grad_norm": 0.24132139980793, + "learning_rate": 0.0006, + "loss": 3.5224547386169434, + "step": 4999 + }, + { + "epoch": 69.44735692442114, + "grad_norm": 0.21150226891040802, + "learning_rate": 0.0006, + "loss": 3.4872965812683105, + "step": 5000 + }, + { + "epoch": 69.4613368283093, + "grad_norm": 0.20874962210655212, + "learning_rate": 0.0006, + "loss": 3.477656364440918, + "step": 5001 + }, + { + "epoch": 69.47531673219747, + "grad_norm": 0.20523078739643097, + "learning_rate": 0.0006, + "loss": 3.4912261962890625, + "step": 5002 + }, + { + "epoch": 69.48929663608563, + "grad_norm": 0.20590092241764069, + "learning_rate": 0.0006, + "loss": 3.5227253437042236, + "step": 5003 + }, + { + "epoch": 69.50327653997378, + "grad_norm": 0.21837440133094788, + "learning_rate": 0.0006, + "loss": 3.514094591140747, + "step": 5004 + }, + { + "epoch": 69.51725644386195, + "grad_norm": 0.23487630486488342, + "learning_rate": 0.0006, + "loss": 3.517775535583496, + "step": 5005 + }, + { + "epoch": 69.53123634775011, + "grad_norm": 0.23771126568317413, + "learning_rate": 0.0006, + "loss": 3.5164601802825928, + "step": 5006 + }, + { + "epoch": 69.54521625163827, + "grad_norm": 0.23423148691654205, + "learning_rate": 0.0006, + "loss": 3.5120983123779297, + "step": 5007 + }, + { + "epoch": 69.55919615552644, + "grad_norm": 0.2332620471715927, + "learning_rate": 0.0006, + "loss": 3.5184125900268555, + "step": 5008 + }, + { + "epoch": 69.57317605941459, + "grad_norm": 0.24148650467395782, + "learning_rate": 0.0006, + "loss": 3.509979248046875, + "step": 5009 + }, + { + "epoch": 69.58715596330275, + "grad_norm": 0.20881295204162598, + "learning_rate": 0.0006, + "loss": 3.5542125701904297, + "step": 5010 + }, + { + "epoch": 69.60113586719092, + "grad_norm": 0.21871483325958252, + "learning_rate": 0.0006, + "loss": 3.5178754329681396, + "step": 5011 + }, + { + "epoch": 69.61511577107908, + "grad_norm": 0.21630224585533142, + "learning_rate": 0.0006, + "loss": 3.5215046405792236, + "step": 5012 + }, + { + "epoch": 69.62909567496723, + "grad_norm": 0.2211679369211197, + "learning_rate": 0.0006, + "loss": 3.5213570594787598, + "step": 5013 + }, + { + "epoch": 69.6430755788554, + "grad_norm": 0.2206520140171051, + "learning_rate": 0.0006, + "loss": 3.5378212928771973, + "step": 5014 + }, + { + "epoch": 69.65705548274356, + "grad_norm": 0.21500450372695923, + "learning_rate": 0.0006, + "loss": 3.536560535430908, + "step": 5015 + }, + { + "epoch": 69.67103538663171, + "grad_norm": 0.2839236855506897, + "learning_rate": 0.0006, + "loss": 3.4911935329437256, + "step": 5016 + }, + { + "epoch": 69.68501529051987, + "grad_norm": 0.28307443857192993, + "learning_rate": 0.0006, + "loss": 3.5304269790649414, + "step": 5017 + }, + { + "epoch": 69.69899519440804, + "grad_norm": 0.20590558648109436, + "learning_rate": 0.0006, + "loss": 3.505474328994751, + "step": 5018 + }, + { + "epoch": 69.7129750982962, + "grad_norm": 0.24152527749538422, + "learning_rate": 0.0006, + "loss": 3.501438617706299, + "step": 5019 + }, + { + "epoch": 69.72695500218435, + "grad_norm": 0.21834975481033325, + "learning_rate": 0.0006, + "loss": 3.515756130218506, + "step": 5020 + }, + { + "epoch": 69.74093490607252, + "grad_norm": 0.2066304087638855, + "learning_rate": 0.0006, + "loss": 3.507535457611084, + "step": 5021 + }, + { + "epoch": 69.75491480996068, + "grad_norm": 0.2547939419746399, + "learning_rate": 0.0006, + "loss": 3.512665033340454, + "step": 5022 + }, + { + "epoch": 69.76889471384884, + "grad_norm": 0.25813716650009155, + "learning_rate": 0.0006, + "loss": 3.517632484436035, + "step": 5023 + }, + { + "epoch": 69.78287461773701, + "grad_norm": 0.223160520195961, + "learning_rate": 0.0006, + "loss": 3.5371553897857666, + "step": 5024 + }, + { + "epoch": 69.79685452162516, + "grad_norm": 0.2616842985153198, + "learning_rate": 0.0006, + "loss": 3.519502639770508, + "step": 5025 + }, + { + "epoch": 69.81083442551332, + "grad_norm": 0.2976956367492676, + "learning_rate": 0.0006, + "loss": 3.521639108657837, + "step": 5026 + }, + { + "epoch": 69.82481432940149, + "grad_norm": 0.253215491771698, + "learning_rate": 0.0006, + "loss": 3.5242714881896973, + "step": 5027 + }, + { + "epoch": 69.83879423328965, + "grad_norm": 0.2184867113828659, + "learning_rate": 0.0006, + "loss": 3.5430054664611816, + "step": 5028 + }, + { + "epoch": 69.8527741371778, + "grad_norm": 0.2110685110092163, + "learning_rate": 0.0006, + "loss": 3.518589735031128, + "step": 5029 + }, + { + "epoch": 69.86675404106597, + "grad_norm": 0.20499959588050842, + "learning_rate": 0.0006, + "loss": 3.5182108879089355, + "step": 5030 + }, + { + "epoch": 69.88073394495413, + "grad_norm": 0.21809129416942596, + "learning_rate": 0.0006, + "loss": 3.52005672454834, + "step": 5031 + }, + { + "epoch": 69.89471384884229, + "grad_norm": 0.22639480233192444, + "learning_rate": 0.0006, + "loss": 3.5405101776123047, + "step": 5032 + }, + { + "epoch": 69.90869375273044, + "grad_norm": 0.23321937024593353, + "learning_rate": 0.0006, + "loss": 3.5433502197265625, + "step": 5033 + }, + { + "epoch": 69.92267365661861, + "grad_norm": 0.22899670898914337, + "learning_rate": 0.0006, + "loss": 3.5300326347351074, + "step": 5034 + }, + { + "epoch": 69.93665356050677, + "grad_norm": 0.20367449522018433, + "learning_rate": 0.0006, + "loss": 3.5184967517852783, + "step": 5035 + }, + { + "epoch": 69.95063346439493, + "grad_norm": 0.21195004880428314, + "learning_rate": 0.0006, + "loss": 3.518951416015625, + "step": 5036 + }, + { + "epoch": 69.9646133682831, + "grad_norm": 0.23766686022281647, + "learning_rate": 0.0006, + "loss": 3.5148468017578125, + "step": 5037 + }, + { + "epoch": 69.97859327217125, + "grad_norm": 0.2558269500732422, + "learning_rate": 0.0006, + "loss": 3.5006861686706543, + "step": 5038 + }, + { + "epoch": 69.99257317605941, + "grad_norm": 0.23287998139858246, + "learning_rate": 0.0006, + "loss": 3.533900260925293, + "step": 5039 + }, + { + "epoch": 70.0, + "grad_norm": 0.24295051395893097, + "learning_rate": 0.0006, + "loss": 3.539205551147461, + "step": 5040 + }, + { + "epoch": 70.0, + "eval_loss": 3.9832167625427246, + "eval_runtime": 44.8557, + "eval_samples_per_second": 54.441, + "eval_steps_per_second": 3.411, + "step": 5040 + }, + { + "epoch": 70.01397990388816, + "grad_norm": 0.2342662364244461, + "learning_rate": 0.0006, + "loss": 3.4744529724121094, + "step": 5041 + }, + { + "epoch": 70.02795980777633, + "grad_norm": 0.24356921017169952, + "learning_rate": 0.0006, + "loss": 3.4678807258605957, + "step": 5042 + }, + { + "epoch": 70.04193971166448, + "grad_norm": 0.23141354322433472, + "learning_rate": 0.0006, + "loss": 3.4766411781311035, + "step": 5043 + }, + { + "epoch": 70.05591961555264, + "grad_norm": 0.2291923612356186, + "learning_rate": 0.0006, + "loss": 3.520775318145752, + "step": 5044 + }, + { + "epoch": 70.06989951944081, + "grad_norm": 0.24368838965892792, + "learning_rate": 0.0006, + "loss": 3.498244285583496, + "step": 5045 + }, + { + "epoch": 70.08387942332897, + "grad_norm": 0.24241037666797638, + "learning_rate": 0.0006, + "loss": 3.5297322273254395, + "step": 5046 + }, + { + "epoch": 70.09785932721712, + "grad_norm": 0.23169396817684174, + "learning_rate": 0.0006, + "loss": 3.4835686683654785, + "step": 5047 + }, + { + "epoch": 70.1118392311053, + "grad_norm": 0.21968135237693787, + "learning_rate": 0.0006, + "loss": 3.4419684410095215, + "step": 5048 + }, + { + "epoch": 70.12581913499345, + "grad_norm": 0.22738288342952728, + "learning_rate": 0.0006, + "loss": 3.4862613677978516, + "step": 5049 + }, + { + "epoch": 70.1397990388816, + "grad_norm": 0.2366214394569397, + "learning_rate": 0.0006, + "loss": 3.4799740314483643, + "step": 5050 + }, + { + "epoch": 70.15377894276976, + "grad_norm": 0.2310013324022293, + "learning_rate": 0.0006, + "loss": 3.491863250732422, + "step": 5051 + }, + { + "epoch": 70.16775884665793, + "grad_norm": 0.22765891253948212, + "learning_rate": 0.0006, + "loss": 3.4830703735351562, + "step": 5052 + }, + { + "epoch": 70.18173875054609, + "grad_norm": 0.23263567686080933, + "learning_rate": 0.0006, + "loss": 3.4692440032958984, + "step": 5053 + }, + { + "epoch": 70.19571865443424, + "grad_norm": 0.22552041709423065, + "learning_rate": 0.0006, + "loss": 3.4950807094573975, + "step": 5054 + }, + { + "epoch": 70.20969855832242, + "grad_norm": 0.2157282680273056, + "learning_rate": 0.0006, + "loss": 3.501680374145508, + "step": 5055 + }, + { + "epoch": 70.22367846221057, + "grad_norm": 0.2158394753932953, + "learning_rate": 0.0006, + "loss": 3.4894015789031982, + "step": 5056 + }, + { + "epoch": 70.23765836609873, + "grad_norm": 0.22618336975574493, + "learning_rate": 0.0006, + "loss": 3.479133129119873, + "step": 5057 + }, + { + "epoch": 70.2516382699869, + "grad_norm": 0.23803631961345673, + "learning_rate": 0.0006, + "loss": 3.4984683990478516, + "step": 5058 + }, + { + "epoch": 70.26561817387505, + "grad_norm": 0.23439951241016388, + "learning_rate": 0.0006, + "loss": 3.503323554992676, + "step": 5059 + }, + { + "epoch": 70.27959807776321, + "grad_norm": 0.23607788980007172, + "learning_rate": 0.0006, + "loss": 3.5056004524230957, + "step": 5060 + }, + { + "epoch": 70.29357798165138, + "grad_norm": 0.22633908689022064, + "learning_rate": 0.0006, + "loss": 3.5278968811035156, + "step": 5061 + }, + { + "epoch": 70.30755788553954, + "grad_norm": 0.21656733751296997, + "learning_rate": 0.0006, + "loss": 3.5163440704345703, + "step": 5062 + }, + { + "epoch": 70.3215377894277, + "grad_norm": 0.19461899995803833, + "learning_rate": 0.0006, + "loss": 3.506269931793213, + "step": 5063 + }, + { + "epoch": 70.33551769331586, + "grad_norm": 0.22591930627822876, + "learning_rate": 0.0006, + "loss": 3.51469087600708, + "step": 5064 + }, + { + "epoch": 70.34949759720402, + "grad_norm": 0.23841705918312073, + "learning_rate": 0.0006, + "loss": 3.4775524139404297, + "step": 5065 + }, + { + "epoch": 70.36347750109218, + "grad_norm": 0.24957220256328583, + "learning_rate": 0.0006, + "loss": 3.5303030014038086, + "step": 5066 + }, + { + "epoch": 70.37745740498035, + "grad_norm": 0.2574119567871094, + "learning_rate": 0.0006, + "loss": 3.524887800216675, + "step": 5067 + }, + { + "epoch": 70.3914373088685, + "grad_norm": 0.23704029619693756, + "learning_rate": 0.0006, + "loss": 3.5258219242095947, + "step": 5068 + }, + { + "epoch": 70.40541721275666, + "grad_norm": 0.221607968211174, + "learning_rate": 0.0006, + "loss": 3.5022010803222656, + "step": 5069 + }, + { + "epoch": 70.41939711664482, + "grad_norm": 0.2071426510810852, + "learning_rate": 0.0006, + "loss": 3.499718189239502, + "step": 5070 + }, + { + "epoch": 70.43337702053299, + "grad_norm": 0.2146281599998474, + "learning_rate": 0.0006, + "loss": 3.495534896850586, + "step": 5071 + }, + { + "epoch": 70.44735692442114, + "grad_norm": 0.21276946365833282, + "learning_rate": 0.0006, + "loss": 3.5138864517211914, + "step": 5072 + }, + { + "epoch": 70.4613368283093, + "grad_norm": 0.21113698184490204, + "learning_rate": 0.0006, + "loss": 3.531108856201172, + "step": 5073 + }, + { + "epoch": 70.47531673219747, + "grad_norm": 0.233713299036026, + "learning_rate": 0.0006, + "loss": 3.499675750732422, + "step": 5074 + }, + { + "epoch": 70.48929663608563, + "grad_norm": 0.2445792704820633, + "learning_rate": 0.0006, + "loss": 3.489576816558838, + "step": 5075 + }, + { + "epoch": 70.50327653997378, + "grad_norm": 0.22929179668426514, + "learning_rate": 0.0006, + "loss": 3.511636257171631, + "step": 5076 + }, + { + "epoch": 70.51725644386195, + "grad_norm": 0.21347999572753906, + "learning_rate": 0.0006, + "loss": 3.482804536819458, + "step": 5077 + }, + { + "epoch": 70.53123634775011, + "grad_norm": 0.21338650584220886, + "learning_rate": 0.0006, + "loss": 3.4532628059387207, + "step": 5078 + }, + { + "epoch": 70.54521625163827, + "grad_norm": 0.24062009155750275, + "learning_rate": 0.0006, + "loss": 3.5084481239318848, + "step": 5079 + }, + { + "epoch": 70.55919615552644, + "grad_norm": 0.2101839929819107, + "learning_rate": 0.0006, + "loss": 3.5022215843200684, + "step": 5080 + }, + { + "epoch": 70.57317605941459, + "grad_norm": 0.21427087485790253, + "learning_rate": 0.0006, + "loss": 3.468010902404785, + "step": 5081 + }, + { + "epoch": 70.58715596330275, + "grad_norm": 0.21073004603385925, + "learning_rate": 0.0006, + "loss": 3.53702974319458, + "step": 5082 + }, + { + "epoch": 70.60113586719092, + "grad_norm": 0.2176336646080017, + "learning_rate": 0.0006, + "loss": 3.4857382774353027, + "step": 5083 + }, + { + "epoch": 70.61511577107908, + "grad_norm": 0.24387815594673157, + "learning_rate": 0.0006, + "loss": 3.5301153659820557, + "step": 5084 + }, + { + "epoch": 70.62909567496723, + "grad_norm": 0.2560335397720337, + "learning_rate": 0.0006, + "loss": 3.4792633056640625, + "step": 5085 + }, + { + "epoch": 70.6430755788554, + "grad_norm": 0.24951279163360596, + "learning_rate": 0.0006, + "loss": 3.5134525299072266, + "step": 5086 + }, + { + "epoch": 70.65705548274356, + "grad_norm": 0.23483215272426605, + "learning_rate": 0.0006, + "loss": 3.5170576572418213, + "step": 5087 + }, + { + "epoch": 70.67103538663171, + "grad_norm": 0.21526923775672913, + "learning_rate": 0.0006, + "loss": 3.4973630905151367, + "step": 5088 + }, + { + "epoch": 70.68501529051987, + "grad_norm": 0.2129240781068802, + "learning_rate": 0.0006, + "loss": 3.5371346473693848, + "step": 5089 + }, + { + "epoch": 70.69899519440804, + "grad_norm": 0.22548805177211761, + "learning_rate": 0.0006, + "loss": 3.509589195251465, + "step": 5090 + }, + { + "epoch": 70.7129750982962, + "grad_norm": 0.21366626024246216, + "learning_rate": 0.0006, + "loss": 3.5004022121429443, + "step": 5091 + }, + { + "epoch": 70.72695500218435, + "grad_norm": 0.2066943347454071, + "learning_rate": 0.0006, + "loss": 3.5086469650268555, + "step": 5092 + }, + { + "epoch": 70.74093490607252, + "grad_norm": 0.20916718244552612, + "learning_rate": 0.0006, + "loss": 3.508835554122925, + "step": 5093 + }, + { + "epoch": 70.75491480996068, + "grad_norm": 0.21769332885742188, + "learning_rate": 0.0006, + "loss": 3.470569372177124, + "step": 5094 + }, + { + "epoch": 70.76889471384884, + "grad_norm": 0.2393418401479721, + "learning_rate": 0.0006, + "loss": 3.5554609298706055, + "step": 5095 + }, + { + "epoch": 70.78287461773701, + "grad_norm": 0.22856567800045013, + "learning_rate": 0.0006, + "loss": 3.5240354537963867, + "step": 5096 + }, + { + "epoch": 70.79685452162516, + "grad_norm": 0.2168598771095276, + "learning_rate": 0.0006, + "loss": 3.5223824977874756, + "step": 5097 + }, + { + "epoch": 70.81083442551332, + "grad_norm": 0.23636406660079956, + "learning_rate": 0.0006, + "loss": 3.515028953552246, + "step": 5098 + }, + { + "epoch": 70.82481432940149, + "grad_norm": 0.25196272134780884, + "learning_rate": 0.0006, + "loss": 3.5251357555389404, + "step": 5099 + }, + { + "epoch": 70.83879423328965, + "grad_norm": 0.2760903239250183, + "learning_rate": 0.0006, + "loss": 3.5171520709991455, + "step": 5100 + }, + { + "epoch": 70.8527741371778, + "grad_norm": 0.24275866150856018, + "learning_rate": 0.0006, + "loss": 3.515378713607788, + "step": 5101 + }, + { + "epoch": 70.86675404106597, + "grad_norm": 0.20806105434894562, + "learning_rate": 0.0006, + "loss": 3.5539910793304443, + "step": 5102 + }, + { + "epoch": 70.88073394495413, + "grad_norm": 0.22015595436096191, + "learning_rate": 0.0006, + "loss": 3.5204410552978516, + "step": 5103 + }, + { + "epoch": 70.89471384884229, + "grad_norm": 0.2634579837322235, + "learning_rate": 0.0006, + "loss": 3.531816005706787, + "step": 5104 + }, + { + "epoch": 70.90869375273044, + "grad_norm": 0.2532503008842468, + "learning_rate": 0.0006, + "loss": 3.494335174560547, + "step": 5105 + }, + { + "epoch": 70.92267365661861, + "grad_norm": 0.21336589753627777, + "learning_rate": 0.0006, + "loss": 3.527202606201172, + "step": 5106 + }, + { + "epoch": 70.93665356050677, + "grad_norm": 0.20789426565170288, + "learning_rate": 0.0006, + "loss": 3.516286849975586, + "step": 5107 + }, + { + "epoch": 70.95063346439493, + "grad_norm": 0.21855080127716064, + "learning_rate": 0.0006, + "loss": 3.510622978210449, + "step": 5108 + }, + { + "epoch": 70.9646133682831, + "grad_norm": 0.21742936968803406, + "learning_rate": 0.0006, + "loss": 3.5159173011779785, + "step": 5109 + }, + { + "epoch": 70.97859327217125, + "grad_norm": 0.21697010099887848, + "learning_rate": 0.0006, + "loss": 3.5253071784973145, + "step": 5110 + }, + { + "epoch": 70.99257317605941, + "grad_norm": 0.1939983069896698, + "learning_rate": 0.0006, + "loss": 3.5092079639434814, + "step": 5111 + }, + { + "epoch": 71.0, + "grad_norm": 0.21768872439861298, + "learning_rate": 0.0006, + "loss": 3.549747943878174, + "step": 5112 + }, + { + "epoch": 71.0, + "eval_loss": 3.981994867324829, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 5112 + }, + { + "epoch": 71.01397990388816, + "grad_norm": 0.20411916077136993, + "learning_rate": 0.0006, + "loss": 3.4846625328063965, + "step": 5113 + }, + { + "epoch": 71.02795980777633, + "grad_norm": 0.23582075536251068, + "learning_rate": 0.0006, + "loss": 3.5063037872314453, + "step": 5114 + }, + { + "epoch": 71.04193971166448, + "grad_norm": 0.25915080308914185, + "learning_rate": 0.0006, + "loss": 3.487607955932617, + "step": 5115 + }, + { + "epoch": 71.05591961555264, + "grad_norm": 0.279734343290329, + "learning_rate": 0.0006, + "loss": 3.4697108268737793, + "step": 5116 + }, + { + "epoch": 71.06989951944081, + "grad_norm": 0.2628752589225769, + "learning_rate": 0.0006, + "loss": 3.493368625640869, + "step": 5117 + }, + { + "epoch": 71.08387942332897, + "grad_norm": 0.22309084236621857, + "learning_rate": 0.0006, + "loss": 3.484891891479492, + "step": 5118 + }, + { + "epoch": 71.09785932721712, + "grad_norm": 0.302577406167984, + "learning_rate": 0.0006, + "loss": 3.485151767730713, + "step": 5119 + }, + { + "epoch": 71.1118392311053, + "grad_norm": 0.37276333570480347, + "learning_rate": 0.0006, + "loss": 3.4952797889709473, + "step": 5120 + }, + { + "epoch": 71.12581913499345, + "grad_norm": 0.3283502757549286, + "learning_rate": 0.0006, + "loss": 3.4817187786102295, + "step": 5121 + }, + { + "epoch": 71.1397990388816, + "grad_norm": 0.2639681398868561, + "learning_rate": 0.0006, + "loss": 3.488034248352051, + "step": 5122 + }, + { + "epoch": 71.15377894276976, + "grad_norm": 0.23883986473083496, + "learning_rate": 0.0006, + "loss": 3.4839282035827637, + "step": 5123 + }, + { + "epoch": 71.16775884665793, + "grad_norm": 0.25839197635650635, + "learning_rate": 0.0006, + "loss": 3.4969372749328613, + "step": 5124 + }, + { + "epoch": 71.18173875054609, + "grad_norm": 0.2511022090911865, + "learning_rate": 0.0006, + "loss": 3.4977002143859863, + "step": 5125 + }, + { + "epoch": 71.19571865443424, + "grad_norm": 0.23030386865139008, + "learning_rate": 0.0006, + "loss": 3.499420404434204, + "step": 5126 + }, + { + "epoch": 71.20969855832242, + "grad_norm": 0.26834407448768616, + "learning_rate": 0.0006, + "loss": 3.492626190185547, + "step": 5127 + }, + { + "epoch": 71.22367846221057, + "grad_norm": 0.25042101740837097, + "learning_rate": 0.0006, + "loss": 3.50586199760437, + "step": 5128 + }, + { + "epoch": 71.23765836609873, + "grad_norm": 0.23350484669208527, + "learning_rate": 0.0006, + "loss": 3.4870376586914062, + "step": 5129 + }, + { + "epoch": 71.2516382699869, + "grad_norm": 0.26074114441871643, + "learning_rate": 0.0006, + "loss": 3.4873902797698975, + "step": 5130 + }, + { + "epoch": 71.26561817387505, + "grad_norm": 0.23405839502811432, + "learning_rate": 0.0006, + "loss": 3.477447032928467, + "step": 5131 + }, + { + "epoch": 71.27959807776321, + "grad_norm": 0.22196513414382935, + "learning_rate": 0.0006, + "loss": 3.513475179672241, + "step": 5132 + }, + { + "epoch": 71.29357798165138, + "grad_norm": 0.21518723666667938, + "learning_rate": 0.0006, + "loss": 3.4947776794433594, + "step": 5133 + }, + { + "epoch": 71.30755788553954, + "grad_norm": 0.2067832201719284, + "learning_rate": 0.0006, + "loss": 3.4992613792419434, + "step": 5134 + }, + { + "epoch": 71.3215377894277, + "grad_norm": 0.2346884161233902, + "learning_rate": 0.0006, + "loss": 3.510505437850952, + "step": 5135 + }, + { + "epoch": 71.33551769331586, + "grad_norm": 0.21138189733028412, + "learning_rate": 0.0006, + "loss": 3.4731202125549316, + "step": 5136 + }, + { + "epoch": 71.34949759720402, + "grad_norm": 0.21185064315795898, + "learning_rate": 0.0006, + "loss": 3.5232839584350586, + "step": 5137 + }, + { + "epoch": 71.36347750109218, + "grad_norm": 0.25712820887565613, + "learning_rate": 0.0006, + "loss": 3.46025013923645, + "step": 5138 + }, + { + "epoch": 71.37745740498035, + "grad_norm": 0.21276356279850006, + "learning_rate": 0.0006, + "loss": 3.489804983139038, + "step": 5139 + }, + { + "epoch": 71.3914373088685, + "grad_norm": 0.2022353708744049, + "learning_rate": 0.0006, + "loss": 3.504286289215088, + "step": 5140 + }, + { + "epoch": 71.40541721275666, + "grad_norm": 0.21934957802295685, + "learning_rate": 0.0006, + "loss": 3.517760753631592, + "step": 5141 + }, + { + "epoch": 71.41939711664482, + "grad_norm": 0.2196030169725418, + "learning_rate": 0.0006, + "loss": 3.5004754066467285, + "step": 5142 + }, + { + "epoch": 71.43337702053299, + "grad_norm": 0.2015426605939865, + "learning_rate": 0.0006, + "loss": 3.465399980545044, + "step": 5143 + }, + { + "epoch": 71.44735692442114, + "grad_norm": 0.20420803129673004, + "learning_rate": 0.0006, + "loss": 3.4855151176452637, + "step": 5144 + }, + { + "epoch": 71.4613368283093, + "grad_norm": 0.20710550248622894, + "learning_rate": 0.0006, + "loss": 3.479557514190674, + "step": 5145 + }, + { + "epoch": 71.47531673219747, + "grad_norm": 0.21790869534015656, + "learning_rate": 0.0006, + "loss": 3.478614330291748, + "step": 5146 + }, + { + "epoch": 71.48929663608563, + "grad_norm": 0.2018311470746994, + "learning_rate": 0.0006, + "loss": 3.488673448562622, + "step": 5147 + }, + { + "epoch": 71.50327653997378, + "grad_norm": 0.21153512597084045, + "learning_rate": 0.0006, + "loss": 3.5044631958007812, + "step": 5148 + }, + { + "epoch": 71.51725644386195, + "grad_norm": 0.21591797471046448, + "learning_rate": 0.0006, + "loss": 3.522662401199341, + "step": 5149 + }, + { + "epoch": 71.53123634775011, + "grad_norm": 0.20586389303207397, + "learning_rate": 0.0006, + "loss": 3.4791407585144043, + "step": 5150 + }, + { + "epoch": 71.54521625163827, + "grad_norm": 0.2201298475265503, + "learning_rate": 0.0006, + "loss": 3.4494271278381348, + "step": 5151 + }, + { + "epoch": 71.55919615552644, + "grad_norm": 0.22793325781822205, + "learning_rate": 0.0006, + "loss": 3.495795726776123, + "step": 5152 + }, + { + "epoch": 71.57317605941459, + "grad_norm": 0.2414522022008896, + "learning_rate": 0.0006, + "loss": 3.5030856132507324, + "step": 5153 + }, + { + "epoch": 71.58715596330275, + "grad_norm": 0.23775361478328705, + "learning_rate": 0.0006, + "loss": 3.519958972930908, + "step": 5154 + }, + { + "epoch": 71.60113586719092, + "grad_norm": 0.21599332988262177, + "learning_rate": 0.0006, + "loss": 3.518765449523926, + "step": 5155 + }, + { + "epoch": 71.61511577107908, + "grad_norm": 0.19520622491836548, + "learning_rate": 0.0006, + "loss": 3.514953136444092, + "step": 5156 + }, + { + "epoch": 71.62909567496723, + "grad_norm": 0.21063624322414398, + "learning_rate": 0.0006, + "loss": 3.507232189178467, + "step": 5157 + }, + { + "epoch": 71.6430755788554, + "grad_norm": 0.20278486609458923, + "learning_rate": 0.0006, + "loss": 3.5083611011505127, + "step": 5158 + }, + { + "epoch": 71.65705548274356, + "grad_norm": 0.20769764482975006, + "learning_rate": 0.0006, + "loss": 3.5421876907348633, + "step": 5159 + }, + { + "epoch": 71.67103538663171, + "grad_norm": 0.21942169964313507, + "learning_rate": 0.0006, + "loss": 3.511857509613037, + "step": 5160 + }, + { + "epoch": 71.68501529051987, + "grad_norm": 0.21532300114631653, + "learning_rate": 0.0006, + "loss": 3.4975109100341797, + "step": 5161 + }, + { + "epoch": 71.69899519440804, + "grad_norm": 0.20382282137870789, + "learning_rate": 0.0006, + "loss": 3.500424861907959, + "step": 5162 + }, + { + "epoch": 71.7129750982962, + "grad_norm": 0.22072380781173706, + "learning_rate": 0.0006, + "loss": 3.50101900100708, + "step": 5163 + }, + { + "epoch": 71.72695500218435, + "grad_norm": 0.21554681658744812, + "learning_rate": 0.0006, + "loss": 3.528384208679199, + "step": 5164 + }, + { + "epoch": 71.74093490607252, + "grad_norm": 0.22927747666835785, + "learning_rate": 0.0006, + "loss": 3.488309621810913, + "step": 5165 + }, + { + "epoch": 71.75491480996068, + "grad_norm": 0.23190589249134064, + "learning_rate": 0.0006, + "loss": 3.547053337097168, + "step": 5166 + }, + { + "epoch": 71.76889471384884, + "grad_norm": 0.262680321931839, + "learning_rate": 0.0006, + "loss": 3.5154809951782227, + "step": 5167 + }, + { + "epoch": 71.78287461773701, + "grad_norm": 0.29555177688598633, + "learning_rate": 0.0006, + "loss": 3.4969329833984375, + "step": 5168 + }, + { + "epoch": 71.79685452162516, + "grad_norm": 0.26300716400146484, + "learning_rate": 0.0006, + "loss": 3.4716663360595703, + "step": 5169 + }, + { + "epoch": 71.81083442551332, + "grad_norm": 0.21645912528038025, + "learning_rate": 0.0006, + "loss": 3.4847588539123535, + "step": 5170 + }, + { + "epoch": 71.82481432940149, + "grad_norm": 0.21476063132286072, + "learning_rate": 0.0006, + "loss": 3.4949374198913574, + "step": 5171 + }, + { + "epoch": 71.83879423328965, + "grad_norm": 0.26659518480300903, + "learning_rate": 0.0006, + "loss": 3.519371271133423, + "step": 5172 + }, + { + "epoch": 71.8527741371778, + "grad_norm": 0.2567320764064789, + "learning_rate": 0.0006, + "loss": 3.522982120513916, + "step": 5173 + }, + { + "epoch": 71.86675404106597, + "grad_norm": 0.21162307262420654, + "learning_rate": 0.0006, + "loss": 3.489562749862671, + "step": 5174 + }, + { + "epoch": 71.88073394495413, + "grad_norm": 0.22359566390514374, + "learning_rate": 0.0006, + "loss": 3.51139760017395, + "step": 5175 + }, + { + "epoch": 71.89471384884229, + "grad_norm": 0.19192424416542053, + "learning_rate": 0.0006, + "loss": 3.568310260772705, + "step": 5176 + }, + { + "epoch": 71.90869375273044, + "grad_norm": 0.21490535140037537, + "learning_rate": 0.0006, + "loss": 3.52728271484375, + "step": 5177 + }, + { + "epoch": 71.92267365661861, + "grad_norm": 0.21532146632671356, + "learning_rate": 0.0006, + "loss": 3.533647060394287, + "step": 5178 + }, + { + "epoch": 71.93665356050677, + "grad_norm": 0.2047201246023178, + "learning_rate": 0.0006, + "loss": 3.528214931488037, + "step": 5179 + }, + { + "epoch": 71.95063346439493, + "grad_norm": 0.20230898261070251, + "learning_rate": 0.0006, + "loss": 3.530636787414551, + "step": 5180 + }, + { + "epoch": 71.9646133682831, + "grad_norm": 0.1971510648727417, + "learning_rate": 0.0006, + "loss": 3.5658822059631348, + "step": 5181 + }, + { + "epoch": 71.97859327217125, + "grad_norm": 0.21853342652320862, + "learning_rate": 0.0006, + "loss": 3.4901480674743652, + "step": 5182 + }, + { + "epoch": 71.99257317605941, + "grad_norm": 0.2481825053691864, + "learning_rate": 0.0006, + "loss": 3.5149893760681152, + "step": 5183 + }, + { + "epoch": 72.0, + "grad_norm": 0.28394815325737, + "learning_rate": 0.0006, + "loss": 3.5142500400543213, + "step": 5184 + }, + { + "epoch": 72.0, + "eval_loss": 3.9889707565307617, + "eval_runtime": 44.317, + "eval_samples_per_second": 55.103, + "eval_steps_per_second": 3.452, + "step": 5184 + }, + { + "epoch": 72.01397990388816, + "grad_norm": 0.26481005549430847, + "learning_rate": 0.0006, + "loss": 3.46201753616333, + "step": 5185 + }, + { + "epoch": 72.02795980777633, + "grad_norm": 0.25808629393577576, + "learning_rate": 0.0006, + "loss": 3.4581098556518555, + "step": 5186 + }, + { + "epoch": 72.04193971166448, + "grad_norm": 0.25713175535202026, + "learning_rate": 0.0006, + "loss": 3.48715877532959, + "step": 5187 + }, + { + "epoch": 72.05591961555264, + "grad_norm": 0.23583672940731049, + "learning_rate": 0.0006, + "loss": 3.498791217803955, + "step": 5188 + }, + { + "epoch": 72.06989951944081, + "grad_norm": 0.23554176092147827, + "learning_rate": 0.0006, + "loss": 3.4428248405456543, + "step": 5189 + }, + { + "epoch": 72.08387942332897, + "grad_norm": 0.26283830404281616, + "learning_rate": 0.0006, + "loss": 3.4555912017822266, + "step": 5190 + }, + { + "epoch": 72.09785932721712, + "grad_norm": 0.23904164135456085, + "learning_rate": 0.0006, + "loss": 3.447741985321045, + "step": 5191 + }, + { + "epoch": 72.1118392311053, + "grad_norm": 0.2249821275472641, + "learning_rate": 0.0006, + "loss": 3.4523983001708984, + "step": 5192 + }, + { + "epoch": 72.12581913499345, + "grad_norm": 0.22013622522354126, + "learning_rate": 0.0006, + "loss": 3.480325698852539, + "step": 5193 + }, + { + "epoch": 72.1397990388816, + "grad_norm": 0.21792154014110565, + "learning_rate": 0.0006, + "loss": 3.460036277770996, + "step": 5194 + }, + { + "epoch": 72.15377894276976, + "grad_norm": 0.2302364856004715, + "learning_rate": 0.0006, + "loss": 3.4833297729492188, + "step": 5195 + }, + { + "epoch": 72.16775884665793, + "grad_norm": 0.21317389607429504, + "learning_rate": 0.0006, + "loss": 3.5042786598205566, + "step": 5196 + }, + { + "epoch": 72.18173875054609, + "grad_norm": 0.19275978207588196, + "learning_rate": 0.0006, + "loss": 3.5171995162963867, + "step": 5197 + }, + { + "epoch": 72.19571865443424, + "grad_norm": 0.21028508245944977, + "learning_rate": 0.0006, + "loss": 3.457441806793213, + "step": 5198 + }, + { + "epoch": 72.20969855832242, + "grad_norm": 0.1986231505870819, + "learning_rate": 0.0006, + "loss": 3.489072322845459, + "step": 5199 + }, + { + "epoch": 72.22367846221057, + "grad_norm": 0.19699154794216156, + "learning_rate": 0.0006, + "loss": 3.468651533126831, + "step": 5200 + }, + { + "epoch": 72.23765836609873, + "grad_norm": 0.20329497754573822, + "learning_rate": 0.0006, + "loss": 3.4969425201416016, + "step": 5201 + }, + { + "epoch": 72.2516382699869, + "grad_norm": 0.20615696907043457, + "learning_rate": 0.0006, + "loss": 3.4797892570495605, + "step": 5202 + }, + { + "epoch": 72.26561817387505, + "grad_norm": 0.20542259514331818, + "learning_rate": 0.0006, + "loss": 3.530893325805664, + "step": 5203 + }, + { + "epoch": 72.27959807776321, + "grad_norm": 0.21758593618869781, + "learning_rate": 0.0006, + "loss": 3.494999647140503, + "step": 5204 + }, + { + "epoch": 72.29357798165138, + "grad_norm": 0.21938979625701904, + "learning_rate": 0.0006, + "loss": 3.4716687202453613, + "step": 5205 + }, + { + "epoch": 72.30755788553954, + "grad_norm": 0.21116693317890167, + "learning_rate": 0.0006, + "loss": 3.510025978088379, + "step": 5206 + }, + { + "epoch": 72.3215377894277, + "grad_norm": 0.22996407747268677, + "learning_rate": 0.0006, + "loss": 3.515085220336914, + "step": 5207 + }, + { + "epoch": 72.33551769331586, + "grad_norm": 0.23071469366550446, + "learning_rate": 0.0006, + "loss": 3.4844086170196533, + "step": 5208 + }, + { + "epoch": 72.34949759720402, + "grad_norm": 0.25695133209228516, + "learning_rate": 0.0006, + "loss": 3.5199429988861084, + "step": 5209 + }, + { + "epoch": 72.36347750109218, + "grad_norm": 0.2724803388118744, + "learning_rate": 0.0006, + "loss": 3.516205072402954, + "step": 5210 + }, + { + "epoch": 72.37745740498035, + "grad_norm": 0.2681419551372528, + "learning_rate": 0.0006, + "loss": 3.499340295791626, + "step": 5211 + }, + { + "epoch": 72.3914373088685, + "grad_norm": 0.2519148886203766, + "learning_rate": 0.0006, + "loss": 3.508042812347412, + "step": 5212 + }, + { + "epoch": 72.40541721275666, + "grad_norm": 0.2280866652727127, + "learning_rate": 0.0006, + "loss": 3.501939058303833, + "step": 5213 + }, + { + "epoch": 72.41939711664482, + "grad_norm": 0.2323485016822815, + "learning_rate": 0.0006, + "loss": 3.4846863746643066, + "step": 5214 + }, + { + "epoch": 72.43337702053299, + "grad_norm": 0.2441403865814209, + "learning_rate": 0.0006, + "loss": 3.4963583946228027, + "step": 5215 + }, + { + "epoch": 72.44735692442114, + "grad_norm": 0.2406138777732849, + "learning_rate": 0.0006, + "loss": 3.4914402961730957, + "step": 5216 + }, + { + "epoch": 72.4613368283093, + "grad_norm": 0.23548054695129395, + "learning_rate": 0.0006, + "loss": 3.5411581993103027, + "step": 5217 + }, + { + "epoch": 72.47531673219747, + "grad_norm": 0.21609817445278168, + "learning_rate": 0.0006, + "loss": 3.5331366062164307, + "step": 5218 + }, + { + "epoch": 72.48929663608563, + "grad_norm": 0.20667463541030884, + "learning_rate": 0.0006, + "loss": 3.4875259399414062, + "step": 5219 + }, + { + "epoch": 72.50327653997378, + "grad_norm": 0.21997129917144775, + "learning_rate": 0.0006, + "loss": 3.45741868019104, + "step": 5220 + }, + { + "epoch": 72.51725644386195, + "grad_norm": 0.23778799176216125, + "learning_rate": 0.0006, + "loss": 3.5240767002105713, + "step": 5221 + }, + { + "epoch": 72.53123634775011, + "grad_norm": 0.2373982071876526, + "learning_rate": 0.0006, + "loss": 3.4988675117492676, + "step": 5222 + }, + { + "epoch": 72.54521625163827, + "grad_norm": 0.24703051149845123, + "learning_rate": 0.0006, + "loss": 3.512615203857422, + "step": 5223 + }, + { + "epoch": 72.55919615552644, + "grad_norm": 0.2259516716003418, + "learning_rate": 0.0006, + "loss": 3.5054564476013184, + "step": 5224 + }, + { + "epoch": 72.57317605941459, + "grad_norm": 0.20849403738975525, + "learning_rate": 0.0006, + "loss": 3.513225555419922, + "step": 5225 + }, + { + "epoch": 72.58715596330275, + "grad_norm": 0.20204737782478333, + "learning_rate": 0.0006, + "loss": 3.499671220779419, + "step": 5226 + }, + { + "epoch": 72.60113586719092, + "grad_norm": 0.2146504670381546, + "learning_rate": 0.0006, + "loss": 3.479963779449463, + "step": 5227 + }, + { + "epoch": 72.61511577107908, + "grad_norm": 0.2070881426334381, + "learning_rate": 0.0006, + "loss": 3.4819841384887695, + "step": 5228 + }, + { + "epoch": 72.62909567496723, + "grad_norm": 0.21011002361774445, + "learning_rate": 0.0006, + "loss": 3.480698347091675, + "step": 5229 + }, + { + "epoch": 72.6430755788554, + "grad_norm": 0.22228984534740448, + "learning_rate": 0.0006, + "loss": 3.504167318344116, + "step": 5230 + }, + { + "epoch": 72.65705548274356, + "grad_norm": 0.21016335487365723, + "learning_rate": 0.0006, + "loss": 3.4877564907073975, + "step": 5231 + }, + { + "epoch": 72.67103538663171, + "grad_norm": 0.20774874091148376, + "learning_rate": 0.0006, + "loss": 3.5095250606536865, + "step": 5232 + }, + { + "epoch": 72.68501529051987, + "grad_norm": 0.21587499976158142, + "learning_rate": 0.0006, + "loss": 3.481410503387451, + "step": 5233 + }, + { + "epoch": 72.69899519440804, + "grad_norm": 0.21865521371364594, + "learning_rate": 0.0006, + "loss": 3.4801032543182373, + "step": 5234 + }, + { + "epoch": 72.7129750982962, + "grad_norm": 0.20692583918571472, + "learning_rate": 0.0006, + "loss": 3.5247631072998047, + "step": 5235 + }, + { + "epoch": 72.72695500218435, + "grad_norm": 0.21028351783752441, + "learning_rate": 0.0006, + "loss": 3.4889426231384277, + "step": 5236 + }, + { + "epoch": 72.74093490607252, + "grad_norm": 0.20704887807369232, + "learning_rate": 0.0006, + "loss": 3.514674663543701, + "step": 5237 + }, + { + "epoch": 72.75491480996068, + "grad_norm": 0.22431230545043945, + "learning_rate": 0.0006, + "loss": 3.520341396331787, + "step": 5238 + }, + { + "epoch": 72.76889471384884, + "grad_norm": 0.26835498213768005, + "learning_rate": 0.0006, + "loss": 3.515369176864624, + "step": 5239 + }, + { + "epoch": 72.78287461773701, + "grad_norm": 0.2570379376411438, + "learning_rate": 0.0006, + "loss": 3.5058908462524414, + "step": 5240 + }, + { + "epoch": 72.79685452162516, + "grad_norm": 0.22710268199443817, + "learning_rate": 0.0006, + "loss": 3.5321788787841797, + "step": 5241 + }, + { + "epoch": 72.81083442551332, + "grad_norm": 0.21135354042053223, + "learning_rate": 0.0006, + "loss": 3.5038869380950928, + "step": 5242 + }, + { + "epoch": 72.82481432940149, + "grad_norm": 0.20677657425403595, + "learning_rate": 0.0006, + "loss": 3.509671211242676, + "step": 5243 + }, + { + "epoch": 72.83879423328965, + "grad_norm": 0.21803733706474304, + "learning_rate": 0.0006, + "loss": 3.540374755859375, + "step": 5244 + }, + { + "epoch": 72.8527741371778, + "grad_norm": 0.24457798898220062, + "learning_rate": 0.0006, + "loss": 3.5087430477142334, + "step": 5245 + }, + { + "epoch": 72.86675404106597, + "grad_norm": 0.2483559548854828, + "learning_rate": 0.0006, + "loss": 3.5065975189208984, + "step": 5246 + }, + { + "epoch": 72.88073394495413, + "grad_norm": 0.22601056098937988, + "learning_rate": 0.0006, + "loss": 3.533181667327881, + "step": 5247 + }, + { + "epoch": 72.89471384884229, + "grad_norm": 0.1951705366373062, + "learning_rate": 0.0006, + "loss": 3.5082955360412598, + "step": 5248 + }, + { + "epoch": 72.90869375273044, + "grad_norm": 0.2373722940683365, + "learning_rate": 0.0006, + "loss": 3.5175671577453613, + "step": 5249 + }, + { + "epoch": 72.92267365661861, + "grad_norm": 0.2238793820142746, + "learning_rate": 0.0006, + "loss": 3.4822793006896973, + "step": 5250 + }, + { + "epoch": 72.93665356050677, + "grad_norm": 0.19394482672214508, + "learning_rate": 0.0006, + "loss": 3.5329837799072266, + "step": 5251 + }, + { + "epoch": 72.95063346439493, + "grad_norm": 0.19733992218971252, + "learning_rate": 0.0006, + "loss": 3.516442060470581, + "step": 5252 + }, + { + "epoch": 72.9646133682831, + "grad_norm": 0.1991652250289917, + "learning_rate": 0.0006, + "loss": 3.4855995178222656, + "step": 5253 + }, + { + "epoch": 72.97859327217125, + "grad_norm": 0.20192593336105347, + "learning_rate": 0.0006, + "loss": 3.500981330871582, + "step": 5254 + }, + { + "epoch": 72.99257317605941, + "grad_norm": 0.1900099813938141, + "learning_rate": 0.0006, + "loss": 3.516650676727295, + "step": 5255 + }, + { + "epoch": 73.0, + "grad_norm": 0.2279117852449417, + "learning_rate": 0.0006, + "loss": 3.5318033695220947, + "step": 5256 + }, + { + "epoch": 73.0, + "eval_loss": 3.990769147872925, + "eval_runtime": 44.8752, + "eval_samples_per_second": 54.418, + "eval_steps_per_second": 3.409, + "step": 5256 + }, + { + "epoch": 73.01397990388816, + "grad_norm": 0.21681782603263855, + "learning_rate": 0.0006, + "loss": 3.481177806854248, + "step": 5257 + }, + { + "epoch": 73.02795980777633, + "grad_norm": 0.23727980256080627, + "learning_rate": 0.0006, + "loss": 3.4718916416168213, + "step": 5258 + }, + { + "epoch": 73.04193971166448, + "grad_norm": 0.3004179000854492, + "learning_rate": 0.0006, + "loss": 3.4856271743774414, + "step": 5259 + }, + { + "epoch": 73.05591961555264, + "grad_norm": 0.3563845157623291, + "learning_rate": 0.0006, + "loss": 3.5074610710144043, + "step": 5260 + }, + { + "epoch": 73.06989951944081, + "grad_norm": 0.28933605551719666, + "learning_rate": 0.0006, + "loss": 3.4824771881103516, + "step": 5261 + }, + { + "epoch": 73.08387942332897, + "grad_norm": 0.20685118436813354, + "learning_rate": 0.0006, + "loss": 3.4652299880981445, + "step": 5262 + }, + { + "epoch": 73.09785932721712, + "grad_norm": 0.27588045597076416, + "learning_rate": 0.0006, + "loss": 3.5053865909576416, + "step": 5263 + }, + { + "epoch": 73.1118392311053, + "grad_norm": 0.28780898451805115, + "learning_rate": 0.0006, + "loss": 3.4900169372558594, + "step": 5264 + }, + { + "epoch": 73.12581913499345, + "grad_norm": 0.25440889596939087, + "learning_rate": 0.0006, + "loss": 3.473628520965576, + "step": 5265 + }, + { + "epoch": 73.1397990388816, + "grad_norm": 0.23374824225902557, + "learning_rate": 0.0006, + "loss": 3.473111629486084, + "step": 5266 + }, + { + "epoch": 73.15377894276976, + "grad_norm": 0.22421608865261078, + "learning_rate": 0.0006, + "loss": 3.4926185607910156, + "step": 5267 + }, + { + "epoch": 73.16775884665793, + "grad_norm": 0.24340282380580902, + "learning_rate": 0.0006, + "loss": 3.4895753860473633, + "step": 5268 + }, + { + "epoch": 73.18173875054609, + "grad_norm": 0.2423272281885147, + "learning_rate": 0.0006, + "loss": 3.498384952545166, + "step": 5269 + }, + { + "epoch": 73.19571865443424, + "grad_norm": 0.20698750019073486, + "learning_rate": 0.0006, + "loss": 3.4790406227111816, + "step": 5270 + }, + { + "epoch": 73.20969855832242, + "grad_norm": 0.21184271574020386, + "learning_rate": 0.0006, + "loss": 3.4132208824157715, + "step": 5271 + }, + { + "epoch": 73.22367846221057, + "grad_norm": 0.20834460854530334, + "learning_rate": 0.0006, + "loss": 3.4493658542633057, + "step": 5272 + }, + { + "epoch": 73.23765836609873, + "grad_norm": 0.20421066880226135, + "learning_rate": 0.0006, + "loss": 3.486607551574707, + "step": 5273 + }, + { + "epoch": 73.2516382699869, + "grad_norm": 0.2166317254304886, + "learning_rate": 0.0006, + "loss": 3.4880776405334473, + "step": 5274 + }, + { + "epoch": 73.26561817387505, + "grad_norm": 0.2271069586277008, + "learning_rate": 0.0006, + "loss": 3.5396530628204346, + "step": 5275 + }, + { + "epoch": 73.27959807776321, + "grad_norm": 0.2804903984069824, + "learning_rate": 0.0006, + "loss": 3.5006351470947266, + "step": 5276 + }, + { + "epoch": 73.29357798165138, + "grad_norm": 0.2573811113834381, + "learning_rate": 0.0006, + "loss": 3.4821765422821045, + "step": 5277 + }, + { + "epoch": 73.30755788553954, + "grad_norm": 0.23412485420703888, + "learning_rate": 0.0006, + "loss": 3.4935741424560547, + "step": 5278 + }, + { + "epoch": 73.3215377894277, + "grad_norm": 0.28513026237487793, + "learning_rate": 0.0006, + "loss": 3.4645705223083496, + "step": 5279 + }, + { + "epoch": 73.33551769331586, + "grad_norm": 0.29753562808036804, + "learning_rate": 0.0006, + "loss": 3.5176053047180176, + "step": 5280 + }, + { + "epoch": 73.34949759720402, + "grad_norm": 0.27373817563056946, + "learning_rate": 0.0006, + "loss": 3.4775936603546143, + "step": 5281 + }, + { + "epoch": 73.36347750109218, + "grad_norm": 0.2177509367465973, + "learning_rate": 0.0006, + "loss": 3.480635643005371, + "step": 5282 + }, + { + "epoch": 73.37745740498035, + "grad_norm": 0.25387322902679443, + "learning_rate": 0.0006, + "loss": 3.469754695892334, + "step": 5283 + }, + { + "epoch": 73.3914373088685, + "grad_norm": 0.2564674913883209, + "learning_rate": 0.0006, + "loss": 3.5017647743225098, + "step": 5284 + }, + { + "epoch": 73.40541721275666, + "grad_norm": 0.22612597048282623, + "learning_rate": 0.0006, + "loss": 3.4689712524414062, + "step": 5285 + }, + { + "epoch": 73.41939711664482, + "grad_norm": 0.2263033241033554, + "learning_rate": 0.0006, + "loss": 3.4711971282958984, + "step": 5286 + }, + { + "epoch": 73.43337702053299, + "grad_norm": 0.2290525883436203, + "learning_rate": 0.0006, + "loss": 3.4785008430480957, + "step": 5287 + }, + { + "epoch": 73.44735692442114, + "grad_norm": 0.2285647839307785, + "learning_rate": 0.0006, + "loss": 3.47416353225708, + "step": 5288 + }, + { + "epoch": 73.4613368283093, + "grad_norm": 0.2135833501815796, + "learning_rate": 0.0006, + "loss": 3.497528076171875, + "step": 5289 + }, + { + "epoch": 73.47531673219747, + "grad_norm": 0.24894089996814728, + "learning_rate": 0.0006, + "loss": 3.4764437675476074, + "step": 5290 + }, + { + "epoch": 73.48929663608563, + "grad_norm": 0.27769771218299866, + "learning_rate": 0.0006, + "loss": 3.530491828918457, + "step": 5291 + }, + { + "epoch": 73.50327653997378, + "grad_norm": 0.2881193161010742, + "learning_rate": 0.0006, + "loss": 3.480968475341797, + "step": 5292 + }, + { + "epoch": 73.51725644386195, + "grad_norm": 0.26066645979881287, + "learning_rate": 0.0006, + "loss": 3.488679885864258, + "step": 5293 + }, + { + "epoch": 73.53123634775011, + "grad_norm": 0.2325759381055832, + "learning_rate": 0.0006, + "loss": 3.50810170173645, + "step": 5294 + }, + { + "epoch": 73.54521625163827, + "grad_norm": 0.2113630324602127, + "learning_rate": 0.0006, + "loss": 3.516207218170166, + "step": 5295 + }, + { + "epoch": 73.55919615552644, + "grad_norm": 0.22719664871692657, + "learning_rate": 0.0006, + "loss": 3.5046021938323975, + "step": 5296 + }, + { + "epoch": 73.57317605941459, + "grad_norm": 0.20094481110572815, + "learning_rate": 0.0006, + "loss": 3.5129313468933105, + "step": 5297 + }, + { + "epoch": 73.58715596330275, + "grad_norm": 0.18975555896759033, + "learning_rate": 0.0006, + "loss": 3.4832587242126465, + "step": 5298 + }, + { + "epoch": 73.60113586719092, + "grad_norm": 0.2168205976486206, + "learning_rate": 0.0006, + "loss": 3.485678195953369, + "step": 5299 + }, + { + "epoch": 73.61511577107908, + "grad_norm": 0.20437777042388916, + "learning_rate": 0.0006, + "loss": 3.5342376232147217, + "step": 5300 + }, + { + "epoch": 73.62909567496723, + "grad_norm": 0.1951008290052414, + "learning_rate": 0.0006, + "loss": 3.496528148651123, + "step": 5301 + }, + { + "epoch": 73.6430755788554, + "grad_norm": 0.194418802857399, + "learning_rate": 0.0006, + "loss": 3.496985912322998, + "step": 5302 + }, + { + "epoch": 73.65705548274356, + "grad_norm": 0.21475602686405182, + "learning_rate": 0.0006, + "loss": 3.4993209838867188, + "step": 5303 + }, + { + "epoch": 73.67103538663171, + "grad_norm": 0.21515145897865295, + "learning_rate": 0.0006, + "loss": 3.5003676414489746, + "step": 5304 + }, + { + "epoch": 73.68501529051987, + "grad_norm": 0.19101263582706451, + "learning_rate": 0.0006, + "loss": 3.4970169067382812, + "step": 5305 + }, + { + "epoch": 73.69899519440804, + "grad_norm": 0.21630576252937317, + "learning_rate": 0.0006, + "loss": 3.4644386768341064, + "step": 5306 + }, + { + "epoch": 73.7129750982962, + "grad_norm": 0.2233273833990097, + "learning_rate": 0.0006, + "loss": 3.5082266330718994, + "step": 5307 + }, + { + "epoch": 73.72695500218435, + "grad_norm": 0.2207949310541153, + "learning_rate": 0.0006, + "loss": 3.5124080181121826, + "step": 5308 + }, + { + "epoch": 73.74093490607252, + "grad_norm": 0.2216075360774994, + "learning_rate": 0.0006, + "loss": 3.5385897159576416, + "step": 5309 + }, + { + "epoch": 73.75491480996068, + "grad_norm": 0.242542564868927, + "learning_rate": 0.0006, + "loss": 3.4922280311584473, + "step": 5310 + }, + { + "epoch": 73.76889471384884, + "grad_norm": 0.25550341606140137, + "learning_rate": 0.0006, + "loss": 3.5120809078216553, + "step": 5311 + }, + { + "epoch": 73.78287461773701, + "grad_norm": 0.2312568724155426, + "learning_rate": 0.0006, + "loss": 3.5122501850128174, + "step": 5312 + }, + { + "epoch": 73.79685452162516, + "grad_norm": 0.22861020267009735, + "learning_rate": 0.0006, + "loss": 3.5362534523010254, + "step": 5313 + }, + { + "epoch": 73.81083442551332, + "grad_norm": 0.2227325290441513, + "learning_rate": 0.0006, + "loss": 3.509556770324707, + "step": 5314 + }, + { + "epoch": 73.82481432940149, + "grad_norm": 0.20523901283740997, + "learning_rate": 0.0006, + "loss": 3.478180170059204, + "step": 5315 + }, + { + "epoch": 73.83879423328965, + "grad_norm": 0.21429577469825745, + "learning_rate": 0.0006, + "loss": 3.5295538902282715, + "step": 5316 + }, + { + "epoch": 73.8527741371778, + "grad_norm": 0.2419414520263672, + "learning_rate": 0.0006, + "loss": 3.518057346343994, + "step": 5317 + }, + { + "epoch": 73.86675404106597, + "grad_norm": 0.27580955624580383, + "learning_rate": 0.0006, + "loss": 3.5108370780944824, + "step": 5318 + }, + { + "epoch": 73.88073394495413, + "grad_norm": 0.24745431542396545, + "learning_rate": 0.0006, + "loss": 3.5286366939544678, + "step": 5319 + }, + { + "epoch": 73.89471384884229, + "grad_norm": 0.2149314135313034, + "learning_rate": 0.0006, + "loss": 3.485231399536133, + "step": 5320 + }, + { + "epoch": 73.90869375273044, + "grad_norm": 0.2078951895236969, + "learning_rate": 0.0006, + "loss": 3.5262768268585205, + "step": 5321 + }, + { + "epoch": 73.92267365661861, + "grad_norm": 0.2416444718837738, + "learning_rate": 0.0006, + "loss": 3.5233588218688965, + "step": 5322 + }, + { + "epoch": 73.93665356050677, + "grad_norm": 0.22926902770996094, + "learning_rate": 0.0006, + "loss": 3.5189247131347656, + "step": 5323 + }, + { + "epoch": 73.95063346439493, + "grad_norm": 0.21510642766952515, + "learning_rate": 0.0006, + "loss": 3.473496198654175, + "step": 5324 + }, + { + "epoch": 73.9646133682831, + "grad_norm": 0.2103978842496872, + "learning_rate": 0.0006, + "loss": 3.482978343963623, + "step": 5325 + }, + { + "epoch": 73.97859327217125, + "grad_norm": 0.1958087682723999, + "learning_rate": 0.0006, + "loss": 3.5095043182373047, + "step": 5326 + }, + { + "epoch": 73.99257317605941, + "grad_norm": 0.1914149820804596, + "learning_rate": 0.0006, + "loss": 3.5150370597839355, + "step": 5327 + }, + { + "epoch": 74.0, + "grad_norm": 0.23419693112373352, + "learning_rate": 0.0006, + "loss": 3.5106215476989746, + "step": 5328 + }, + { + "epoch": 74.0, + "eval_loss": 3.9748404026031494, + "eval_runtime": 44.8747, + "eval_samples_per_second": 54.418, + "eval_steps_per_second": 3.409, + "step": 5328 + }, + { + "epoch": 74.01397990388816, + "grad_norm": 0.2479415088891983, + "learning_rate": 0.0006, + "loss": 3.4701595306396484, + "step": 5329 + }, + { + "epoch": 74.02795980777633, + "grad_norm": 0.24987533688545227, + "learning_rate": 0.0006, + "loss": 3.4586291313171387, + "step": 5330 + }, + { + "epoch": 74.04193971166448, + "grad_norm": 0.23266810178756714, + "learning_rate": 0.0006, + "loss": 3.4172134399414062, + "step": 5331 + }, + { + "epoch": 74.05591961555264, + "grad_norm": 0.2236100137233734, + "learning_rate": 0.0006, + "loss": 3.4862887859344482, + "step": 5332 + }, + { + "epoch": 74.06989951944081, + "grad_norm": 0.20534487068653107, + "learning_rate": 0.0006, + "loss": 3.45927357673645, + "step": 5333 + }, + { + "epoch": 74.08387942332897, + "grad_norm": 0.2238253802061081, + "learning_rate": 0.0006, + "loss": 3.467851400375366, + "step": 5334 + }, + { + "epoch": 74.09785932721712, + "grad_norm": 0.26896408200263977, + "learning_rate": 0.0006, + "loss": 3.4854512214660645, + "step": 5335 + }, + { + "epoch": 74.1118392311053, + "grad_norm": 0.2958875000476837, + "learning_rate": 0.0006, + "loss": 3.4699835777282715, + "step": 5336 + }, + { + "epoch": 74.12581913499345, + "grad_norm": 0.2670096755027771, + "learning_rate": 0.0006, + "loss": 3.469750165939331, + "step": 5337 + }, + { + "epoch": 74.1397990388816, + "grad_norm": 0.24695175886154175, + "learning_rate": 0.0006, + "loss": 3.4648962020874023, + "step": 5338 + }, + { + "epoch": 74.15377894276976, + "grad_norm": 0.22581245005130768, + "learning_rate": 0.0006, + "loss": 3.4659342765808105, + "step": 5339 + }, + { + "epoch": 74.16775884665793, + "grad_norm": 0.214495450258255, + "learning_rate": 0.0006, + "loss": 3.484555721282959, + "step": 5340 + }, + { + "epoch": 74.18173875054609, + "grad_norm": 0.2219872921705246, + "learning_rate": 0.0006, + "loss": 3.4930648803710938, + "step": 5341 + }, + { + "epoch": 74.19571865443424, + "grad_norm": 0.23231728374958038, + "learning_rate": 0.0006, + "loss": 3.4828286170959473, + "step": 5342 + }, + { + "epoch": 74.20969855832242, + "grad_norm": 0.2273619920015335, + "learning_rate": 0.0006, + "loss": 3.4727272987365723, + "step": 5343 + }, + { + "epoch": 74.22367846221057, + "grad_norm": 0.22086025774478912, + "learning_rate": 0.0006, + "loss": 3.5108399391174316, + "step": 5344 + }, + { + "epoch": 74.23765836609873, + "grad_norm": 0.2132318615913391, + "learning_rate": 0.0006, + "loss": 3.4821221828460693, + "step": 5345 + }, + { + "epoch": 74.2516382699869, + "grad_norm": 0.2375437170267105, + "learning_rate": 0.0006, + "loss": 3.5120530128479004, + "step": 5346 + }, + { + "epoch": 74.26561817387505, + "grad_norm": 0.24744948744773865, + "learning_rate": 0.0006, + "loss": 3.4861230850219727, + "step": 5347 + }, + { + "epoch": 74.27959807776321, + "grad_norm": 0.2221650779247284, + "learning_rate": 0.0006, + "loss": 3.494476556777954, + "step": 5348 + }, + { + "epoch": 74.29357798165138, + "grad_norm": 0.1984807401895523, + "learning_rate": 0.0006, + "loss": 3.492462635040283, + "step": 5349 + }, + { + "epoch": 74.30755788553954, + "grad_norm": 0.2298664003610611, + "learning_rate": 0.0006, + "loss": 3.478318214416504, + "step": 5350 + }, + { + "epoch": 74.3215377894277, + "grad_norm": 0.25947070121765137, + "learning_rate": 0.0006, + "loss": 3.487811326980591, + "step": 5351 + }, + { + "epoch": 74.33551769331586, + "grad_norm": 0.23611490428447723, + "learning_rate": 0.0006, + "loss": 3.500941276550293, + "step": 5352 + }, + { + "epoch": 74.34949759720402, + "grad_norm": 0.2209966480731964, + "learning_rate": 0.0006, + "loss": 3.4910011291503906, + "step": 5353 + }, + { + "epoch": 74.36347750109218, + "grad_norm": 0.2637932300567627, + "learning_rate": 0.0006, + "loss": 3.5082242488861084, + "step": 5354 + }, + { + "epoch": 74.37745740498035, + "grad_norm": 0.27074548602104187, + "learning_rate": 0.0006, + "loss": 3.4829864501953125, + "step": 5355 + }, + { + "epoch": 74.3914373088685, + "grad_norm": 0.24120314419269562, + "learning_rate": 0.0006, + "loss": 3.5099215507507324, + "step": 5356 + }, + { + "epoch": 74.40541721275666, + "grad_norm": 0.22281570732593536, + "learning_rate": 0.0006, + "loss": 3.4863901138305664, + "step": 5357 + }, + { + "epoch": 74.41939711664482, + "grad_norm": 0.24500703811645508, + "learning_rate": 0.0006, + "loss": 3.492774248123169, + "step": 5358 + }, + { + "epoch": 74.43337702053299, + "grad_norm": 0.2938194274902344, + "learning_rate": 0.0006, + "loss": 3.5095953941345215, + "step": 5359 + }, + { + "epoch": 74.44735692442114, + "grad_norm": 0.23553980886936188, + "learning_rate": 0.0006, + "loss": 3.4738357067108154, + "step": 5360 + }, + { + "epoch": 74.4613368283093, + "grad_norm": 0.23400643467903137, + "learning_rate": 0.0006, + "loss": 3.503324508666992, + "step": 5361 + }, + { + "epoch": 74.47531673219747, + "grad_norm": 0.26702186465263367, + "learning_rate": 0.0006, + "loss": 3.5077764987945557, + "step": 5362 + }, + { + "epoch": 74.48929663608563, + "grad_norm": 0.26146429777145386, + "learning_rate": 0.0006, + "loss": 3.4926650524139404, + "step": 5363 + }, + { + "epoch": 74.50327653997378, + "grad_norm": 0.24903273582458496, + "learning_rate": 0.0006, + "loss": 3.4951210021972656, + "step": 5364 + }, + { + "epoch": 74.51725644386195, + "grad_norm": 0.2189243733882904, + "learning_rate": 0.0006, + "loss": 3.50642728805542, + "step": 5365 + }, + { + "epoch": 74.53123634775011, + "grad_norm": 0.2049291431903839, + "learning_rate": 0.0006, + "loss": 3.5034496784210205, + "step": 5366 + }, + { + "epoch": 74.54521625163827, + "grad_norm": 0.20688633620738983, + "learning_rate": 0.0006, + "loss": 3.4878382682800293, + "step": 5367 + }, + { + "epoch": 74.55919615552644, + "grad_norm": 0.201416477560997, + "learning_rate": 0.0006, + "loss": 3.503418445587158, + "step": 5368 + }, + { + "epoch": 74.57317605941459, + "grad_norm": 0.2094922661781311, + "learning_rate": 0.0006, + "loss": 3.4678902626037598, + "step": 5369 + }, + { + "epoch": 74.58715596330275, + "grad_norm": 0.23010285198688507, + "learning_rate": 0.0006, + "loss": 3.4749817848205566, + "step": 5370 + }, + { + "epoch": 74.60113586719092, + "grad_norm": 0.22642597556114197, + "learning_rate": 0.0006, + "loss": 3.4843454360961914, + "step": 5371 + }, + { + "epoch": 74.61511577107908, + "grad_norm": 0.2123269885778427, + "learning_rate": 0.0006, + "loss": 3.4823896884918213, + "step": 5372 + }, + { + "epoch": 74.62909567496723, + "grad_norm": 0.21990132331848145, + "learning_rate": 0.0006, + "loss": 3.4970970153808594, + "step": 5373 + }, + { + "epoch": 74.6430755788554, + "grad_norm": 0.23335176706314087, + "learning_rate": 0.0006, + "loss": 3.481468677520752, + "step": 5374 + }, + { + "epoch": 74.65705548274356, + "grad_norm": 0.22706177830696106, + "learning_rate": 0.0006, + "loss": 3.504356861114502, + "step": 5375 + }, + { + "epoch": 74.67103538663171, + "grad_norm": 0.22790828347206116, + "learning_rate": 0.0006, + "loss": 3.472900867462158, + "step": 5376 + }, + { + "epoch": 74.68501529051987, + "grad_norm": 0.26810064911842346, + "learning_rate": 0.0006, + "loss": 3.4734930992126465, + "step": 5377 + }, + { + "epoch": 74.69899519440804, + "grad_norm": 0.28308895230293274, + "learning_rate": 0.0006, + "loss": 3.5265793800354004, + "step": 5378 + }, + { + "epoch": 74.7129750982962, + "grad_norm": 0.23838670551776886, + "learning_rate": 0.0006, + "loss": 3.4594779014587402, + "step": 5379 + }, + { + "epoch": 74.72695500218435, + "grad_norm": 0.22041939198970795, + "learning_rate": 0.0006, + "loss": 3.5098114013671875, + "step": 5380 + }, + { + "epoch": 74.74093490607252, + "grad_norm": 0.24805180728435516, + "learning_rate": 0.0006, + "loss": 3.5069029331207275, + "step": 5381 + }, + { + "epoch": 74.75491480996068, + "grad_norm": 0.3026084005832672, + "learning_rate": 0.0006, + "loss": 3.4828643798828125, + "step": 5382 + }, + { + "epoch": 74.76889471384884, + "grad_norm": 0.2749265432357788, + "learning_rate": 0.0006, + "loss": 3.536533832550049, + "step": 5383 + }, + { + "epoch": 74.78287461773701, + "grad_norm": 0.23131245374679565, + "learning_rate": 0.0006, + "loss": 3.4843153953552246, + "step": 5384 + }, + { + "epoch": 74.79685452162516, + "grad_norm": 0.28015977144241333, + "learning_rate": 0.0006, + "loss": 3.5087320804595947, + "step": 5385 + }, + { + "epoch": 74.81083442551332, + "grad_norm": 0.28901320695877075, + "learning_rate": 0.0006, + "loss": 3.509774684906006, + "step": 5386 + }, + { + "epoch": 74.82481432940149, + "grad_norm": 0.2902369499206543, + "learning_rate": 0.0006, + "loss": 3.5354912281036377, + "step": 5387 + }, + { + "epoch": 74.83879423328965, + "grad_norm": 0.28103142976760864, + "learning_rate": 0.0006, + "loss": 3.5079479217529297, + "step": 5388 + }, + { + "epoch": 74.8527741371778, + "grad_norm": 0.21874217689037323, + "learning_rate": 0.0006, + "loss": 3.527747631072998, + "step": 5389 + }, + { + "epoch": 74.86675404106597, + "grad_norm": 0.2200363576412201, + "learning_rate": 0.0006, + "loss": 3.4977521896362305, + "step": 5390 + }, + { + "epoch": 74.88073394495413, + "grad_norm": 0.24229851365089417, + "learning_rate": 0.0006, + "loss": 3.535094738006592, + "step": 5391 + }, + { + "epoch": 74.89471384884229, + "grad_norm": 0.25623074173927307, + "learning_rate": 0.0006, + "loss": 3.5501794815063477, + "step": 5392 + }, + { + "epoch": 74.90869375273044, + "grad_norm": 0.25281623005867004, + "learning_rate": 0.0006, + "loss": 3.4836385250091553, + "step": 5393 + }, + { + "epoch": 74.92267365661861, + "grad_norm": 0.2236766219139099, + "learning_rate": 0.0006, + "loss": 3.4966232776641846, + "step": 5394 + }, + { + "epoch": 74.93665356050677, + "grad_norm": 0.20852778851985931, + "learning_rate": 0.0006, + "loss": 3.516902446746826, + "step": 5395 + }, + { + "epoch": 74.95063346439493, + "grad_norm": 0.22248536348342896, + "learning_rate": 0.0006, + "loss": 3.5233588218688965, + "step": 5396 + }, + { + "epoch": 74.9646133682831, + "grad_norm": 0.23792508244514465, + "learning_rate": 0.0006, + "loss": 3.4896931648254395, + "step": 5397 + }, + { + "epoch": 74.97859327217125, + "grad_norm": 0.20838406682014465, + "learning_rate": 0.0006, + "loss": 3.4921011924743652, + "step": 5398 + }, + { + "epoch": 74.99257317605941, + "grad_norm": 0.22375819087028503, + "learning_rate": 0.0006, + "loss": 3.5101675987243652, + "step": 5399 + }, + { + "epoch": 75.0, + "grad_norm": 0.3014359772205353, + "learning_rate": 0.0006, + "loss": 3.5245840549468994, + "step": 5400 + }, + { + "epoch": 75.0, + "eval_loss": 3.9896810054779053, + "eval_runtime": 45.1449, + "eval_samples_per_second": 54.092, + "eval_steps_per_second": 3.389, + "step": 5400 + }, + { + "epoch": 75.01397990388816, + "grad_norm": 0.2802879214286804, + "learning_rate": 0.0006, + "loss": 3.4459807872772217, + "step": 5401 + }, + { + "epoch": 75.02795980777633, + "grad_norm": 0.2268809676170349, + "learning_rate": 0.0006, + "loss": 3.492509365081787, + "step": 5402 + }, + { + "epoch": 75.04193971166448, + "grad_norm": 0.32269951701164246, + "learning_rate": 0.0006, + "loss": 3.4565114974975586, + "step": 5403 + }, + { + "epoch": 75.05591961555264, + "grad_norm": 0.37944868206977844, + "learning_rate": 0.0006, + "loss": 3.4896206855773926, + "step": 5404 + }, + { + "epoch": 75.06989951944081, + "grad_norm": 0.2834550440311432, + "learning_rate": 0.0006, + "loss": 3.4488000869750977, + "step": 5405 + }, + { + "epoch": 75.08387942332897, + "grad_norm": 0.24261713027954102, + "learning_rate": 0.0006, + "loss": 3.4881110191345215, + "step": 5406 + }, + { + "epoch": 75.09785932721712, + "grad_norm": 0.25649914145469666, + "learning_rate": 0.0006, + "loss": 3.4687750339508057, + "step": 5407 + }, + { + "epoch": 75.1118392311053, + "grad_norm": 0.28500616550445557, + "learning_rate": 0.0006, + "loss": 3.5017337799072266, + "step": 5408 + }, + { + "epoch": 75.12581913499345, + "grad_norm": 0.288143128156662, + "learning_rate": 0.0006, + "loss": 3.46737003326416, + "step": 5409 + }, + { + "epoch": 75.1397990388816, + "grad_norm": 0.23640452325344086, + "learning_rate": 0.0006, + "loss": 3.485724925994873, + "step": 5410 + }, + { + "epoch": 75.15377894276976, + "grad_norm": 0.231221541762352, + "learning_rate": 0.0006, + "loss": 3.4711289405822754, + "step": 5411 + }, + { + "epoch": 75.16775884665793, + "grad_norm": 0.22871847450733185, + "learning_rate": 0.0006, + "loss": 3.457324504852295, + "step": 5412 + }, + { + "epoch": 75.18173875054609, + "grad_norm": 0.24795132875442505, + "learning_rate": 0.0006, + "loss": 3.4799628257751465, + "step": 5413 + }, + { + "epoch": 75.19571865443424, + "grad_norm": 0.2337426245212555, + "learning_rate": 0.0006, + "loss": 3.4352688789367676, + "step": 5414 + }, + { + "epoch": 75.20969855832242, + "grad_norm": 0.251052588224411, + "learning_rate": 0.0006, + "loss": 3.4770374298095703, + "step": 5415 + }, + { + "epoch": 75.22367846221057, + "grad_norm": 0.2879040241241455, + "learning_rate": 0.0006, + "loss": 3.495934009552002, + "step": 5416 + }, + { + "epoch": 75.23765836609873, + "grad_norm": 0.273510605096817, + "learning_rate": 0.0006, + "loss": 3.497647762298584, + "step": 5417 + }, + { + "epoch": 75.2516382699869, + "grad_norm": 0.24495841562747955, + "learning_rate": 0.0006, + "loss": 3.455962896347046, + "step": 5418 + }, + { + "epoch": 75.26561817387505, + "grad_norm": 0.2345196157693863, + "learning_rate": 0.0006, + "loss": 3.5110573768615723, + "step": 5419 + }, + { + "epoch": 75.27959807776321, + "grad_norm": 0.22574985027313232, + "learning_rate": 0.0006, + "loss": 3.499999523162842, + "step": 5420 + }, + { + "epoch": 75.29357798165138, + "grad_norm": 0.21367499232292175, + "learning_rate": 0.0006, + "loss": 3.4823455810546875, + "step": 5421 + }, + { + "epoch": 75.30755788553954, + "grad_norm": 0.2120848447084427, + "learning_rate": 0.0006, + "loss": 3.4786484241485596, + "step": 5422 + }, + { + "epoch": 75.3215377894277, + "grad_norm": 0.21794751286506653, + "learning_rate": 0.0006, + "loss": 3.4970765113830566, + "step": 5423 + }, + { + "epoch": 75.33551769331586, + "grad_norm": 0.21963100135326385, + "learning_rate": 0.0006, + "loss": 3.5118799209594727, + "step": 5424 + }, + { + "epoch": 75.34949759720402, + "grad_norm": 0.21615713834762573, + "learning_rate": 0.0006, + "loss": 3.4728214740753174, + "step": 5425 + }, + { + "epoch": 75.36347750109218, + "grad_norm": 0.23004800081253052, + "learning_rate": 0.0006, + "loss": 3.496875762939453, + "step": 5426 + }, + { + "epoch": 75.37745740498035, + "grad_norm": 0.24208541214466095, + "learning_rate": 0.0006, + "loss": 3.4958276748657227, + "step": 5427 + }, + { + "epoch": 75.3914373088685, + "grad_norm": 0.20642924308776855, + "learning_rate": 0.0006, + "loss": 3.500385284423828, + "step": 5428 + }, + { + "epoch": 75.40541721275666, + "grad_norm": 0.2259436547756195, + "learning_rate": 0.0006, + "loss": 3.4697232246398926, + "step": 5429 + }, + { + "epoch": 75.41939711664482, + "grad_norm": 0.25861549377441406, + "learning_rate": 0.0006, + "loss": 3.5008928775787354, + "step": 5430 + }, + { + "epoch": 75.43337702053299, + "grad_norm": 0.24532392621040344, + "learning_rate": 0.0006, + "loss": 3.4718515872955322, + "step": 5431 + }, + { + "epoch": 75.44735692442114, + "grad_norm": 0.23508992791175842, + "learning_rate": 0.0006, + "loss": 3.4947562217712402, + "step": 5432 + }, + { + "epoch": 75.4613368283093, + "grad_norm": 0.25019076466560364, + "learning_rate": 0.0006, + "loss": 3.5137546062469482, + "step": 5433 + }, + { + "epoch": 75.47531673219747, + "grad_norm": 0.23382526636123657, + "learning_rate": 0.0006, + "loss": 3.503502368927002, + "step": 5434 + }, + { + "epoch": 75.48929663608563, + "grad_norm": 0.23226714134216309, + "learning_rate": 0.0006, + "loss": 3.4856209754943848, + "step": 5435 + }, + { + "epoch": 75.50327653997378, + "grad_norm": 0.2705337107181549, + "learning_rate": 0.0006, + "loss": 3.4829044342041016, + "step": 5436 + }, + { + "epoch": 75.51725644386195, + "grad_norm": 0.23903003334999084, + "learning_rate": 0.0006, + "loss": 3.473284959793091, + "step": 5437 + }, + { + "epoch": 75.53123634775011, + "grad_norm": 0.2298477441072464, + "learning_rate": 0.0006, + "loss": 3.4981393814086914, + "step": 5438 + }, + { + "epoch": 75.54521625163827, + "grad_norm": 0.2785218060016632, + "learning_rate": 0.0006, + "loss": 3.491668701171875, + "step": 5439 + }, + { + "epoch": 75.55919615552644, + "grad_norm": 0.30322644114494324, + "learning_rate": 0.0006, + "loss": 3.5061874389648438, + "step": 5440 + }, + { + "epoch": 75.57317605941459, + "grad_norm": 0.26536163687705994, + "learning_rate": 0.0006, + "loss": 3.491297721862793, + "step": 5441 + }, + { + "epoch": 75.58715596330275, + "grad_norm": 0.25591710209846497, + "learning_rate": 0.0006, + "loss": 3.4608688354492188, + "step": 5442 + }, + { + "epoch": 75.60113586719092, + "grad_norm": 0.29031914472579956, + "learning_rate": 0.0006, + "loss": 3.5015907287597656, + "step": 5443 + }, + { + "epoch": 75.61511577107908, + "grad_norm": 0.3028157353401184, + "learning_rate": 0.0006, + "loss": 3.488694190979004, + "step": 5444 + }, + { + "epoch": 75.62909567496723, + "grad_norm": 0.2612902522087097, + "learning_rate": 0.0006, + "loss": 3.5170979499816895, + "step": 5445 + }, + { + "epoch": 75.6430755788554, + "grad_norm": 0.2346487045288086, + "learning_rate": 0.0006, + "loss": 3.501101493835449, + "step": 5446 + }, + { + "epoch": 75.65705548274356, + "grad_norm": 0.24434567987918854, + "learning_rate": 0.0006, + "loss": 3.48040771484375, + "step": 5447 + }, + { + "epoch": 75.67103538663171, + "grad_norm": 0.2538795471191406, + "learning_rate": 0.0006, + "loss": 3.480721950531006, + "step": 5448 + }, + { + "epoch": 75.68501529051987, + "grad_norm": 0.23026305437088013, + "learning_rate": 0.0006, + "loss": 3.501366138458252, + "step": 5449 + }, + { + "epoch": 75.69899519440804, + "grad_norm": 0.21872632205486298, + "learning_rate": 0.0006, + "loss": 3.4855334758758545, + "step": 5450 + }, + { + "epoch": 75.7129750982962, + "grad_norm": 0.23016631603240967, + "learning_rate": 0.0006, + "loss": 3.487691879272461, + "step": 5451 + }, + { + "epoch": 75.72695500218435, + "grad_norm": 0.25731417536735535, + "learning_rate": 0.0006, + "loss": 3.509885787963867, + "step": 5452 + }, + { + "epoch": 75.74093490607252, + "grad_norm": 0.23140797019004822, + "learning_rate": 0.0006, + "loss": 3.4974255561828613, + "step": 5453 + }, + { + "epoch": 75.75491480996068, + "grad_norm": 0.2290206402540207, + "learning_rate": 0.0006, + "loss": 3.497750997543335, + "step": 5454 + }, + { + "epoch": 75.76889471384884, + "grad_norm": 0.22882549464702606, + "learning_rate": 0.0006, + "loss": 3.513742446899414, + "step": 5455 + }, + { + "epoch": 75.78287461773701, + "grad_norm": 0.22749373316764832, + "learning_rate": 0.0006, + "loss": 3.5267224311828613, + "step": 5456 + }, + { + "epoch": 75.79685452162516, + "grad_norm": 0.23185116052627563, + "learning_rate": 0.0006, + "loss": 3.4946181774139404, + "step": 5457 + }, + { + "epoch": 75.81083442551332, + "grad_norm": 0.21161580085754395, + "learning_rate": 0.0006, + "loss": 3.51632022857666, + "step": 5458 + }, + { + "epoch": 75.82481432940149, + "grad_norm": 0.2244153618812561, + "learning_rate": 0.0006, + "loss": 3.5021536350250244, + "step": 5459 + }, + { + "epoch": 75.83879423328965, + "grad_norm": 0.2286757528781891, + "learning_rate": 0.0006, + "loss": 3.5064220428466797, + "step": 5460 + }, + { + "epoch": 75.8527741371778, + "grad_norm": 0.24235443770885468, + "learning_rate": 0.0006, + "loss": 3.47468638420105, + "step": 5461 + }, + { + "epoch": 75.86675404106597, + "grad_norm": 0.21012619137763977, + "learning_rate": 0.0006, + "loss": 3.469088077545166, + "step": 5462 + }, + { + "epoch": 75.88073394495413, + "grad_norm": 0.20562565326690674, + "learning_rate": 0.0006, + "loss": 3.4918551445007324, + "step": 5463 + }, + { + "epoch": 75.89471384884229, + "grad_norm": 0.2122880220413208, + "learning_rate": 0.0006, + "loss": 3.5048160552978516, + "step": 5464 + }, + { + "epoch": 75.90869375273044, + "grad_norm": 0.20818278193473816, + "learning_rate": 0.0006, + "loss": 3.4814553260803223, + "step": 5465 + }, + { + "epoch": 75.92267365661861, + "grad_norm": 0.20316754281520844, + "learning_rate": 0.0006, + "loss": 3.500009775161743, + "step": 5466 + }, + { + "epoch": 75.93665356050677, + "grad_norm": 0.2093973606824875, + "learning_rate": 0.0006, + "loss": 3.4891273975372314, + "step": 5467 + }, + { + "epoch": 75.95063346439493, + "grad_norm": 0.20942363142967224, + "learning_rate": 0.0006, + "loss": 3.5271172523498535, + "step": 5468 + }, + { + "epoch": 75.9646133682831, + "grad_norm": 0.22052891552448273, + "learning_rate": 0.0006, + "loss": 3.508040189743042, + "step": 5469 + }, + { + "epoch": 75.97859327217125, + "grad_norm": 0.2208913266658783, + "learning_rate": 0.0006, + "loss": 3.5075063705444336, + "step": 5470 + }, + { + "epoch": 75.99257317605941, + "grad_norm": 0.20618212223052979, + "learning_rate": 0.0006, + "loss": 3.5018906593322754, + "step": 5471 + }, + { + "epoch": 76.0, + "grad_norm": 0.23915603756904602, + "learning_rate": 0.0006, + "loss": 3.490349054336548, + "step": 5472 + }, + { + "epoch": 76.0, + "eval_loss": 3.9777374267578125, + "eval_runtime": 44.3634, + "eval_samples_per_second": 55.045, + "eval_steps_per_second": 3.449, + "step": 5472 + }, + { + "epoch": 76.01397990388816, + "grad_norm": 0.2418874055147171, + "learning_rate": 0.0006, + "loss": 3.443974018096924, + "step": 5473 + }, + { + "epoch": 76.02795980777633, + "grad_norm": 0.24863727390766144, + "learning_rate": 0.0006, + "loss": 3.4233765602111816, + "step": 5474 + }, + { + "epoch": 76.04193971166448, + "grad_norm": 0.2790309488773346, + "learning_rate": 0.0006, + "loss": 3.441854953765869, + "step": 5475 + }, + { + "epoch": 76.05591961555264, + "grad_norm": 0.26523181796073914, + "learning_rate": 0.0006, + "loss": 3.5107715129852295, + "step": 5476 + }, + { + "epoch": 76.06989951944081, + "grad_norm": 0.22338931262493134, + "learning_rate": 0.0006, + "loss": 3.4805355072021484, + "step": 5477 + }, + { + "epoch": 76.08387942332897, + "grad_norm": 0.2959517240524292, + "learning_rate": 0.0006, + "loss": 3.4402217864990234, + "step": 5478 + }, + { + "epoch": 76.09785932721712, + "grad_norm": 0.29325243830680847, + "learning_rate": 0.0006, + "loss": 3.448124885559082, + "step": 5479 + }, + { + "epoch": 76.1118392311053, + "grad_norm": 0.24323450028896332, + "learning_rate": 0.0006, + "loss": 3.4593453407287598, + "step": 5480 + }, + { + "epoch": 76.12581913499345, + "grad_norm": 0.22358393669128418, + "learning_rate": 0.0006, + "loss": 3.463690757751465, + "step": 5481 + }, + { + "epoch": 76.1397990388816, + "grad_norm": 0.23993486166000366, + "learning_rate": 0.0006, + "loss": 3.468006134033203, + "step": 5482 + }, + { + "epoch": 76.15377894276976, + "grad_norm": 0.2388140857219696, + "learning_rate": 0.0006, + "loss": 3.4615962505340576, + "step": 5483 + }, + { + "epoch": 76.16775884665793, + "grad_norm": 0.21697917580604553, + "learning_rate": 0.0006, + "loss": 3.498293161392212, + "step": 5484 + }, + { + "epoch": 76.18173875054609, + "grad_norm": 0.21932202577590942, + "learning_rate": 0.0006, + "loss": 3.4642910957336426, + "step": 5485 + }, + { + "epoch": 76.19571865443424, + "grad_norm": 0.23881328105926514, + "learning_rate": 0.0006, + "loss": 3.4731202125549316, + "step": 5486 + }, + { + "epoch": 76.20969855832242, + "grad_norm": 0.24131019413471222, + "learning_rate": 0.0006, + "loss": 3.514042854309082, + "step": 5487 + }, + { + "epoch": 76.22367846221057, + "grad_norm": 0.2567158639431, + "learning_rate": 0.0006, + "loss": 3.496260643005371, + "step": 5488 + }, + { + "epoch": 76.23765836609873, + "grad_norm": 0.24889737367630005, + "learning_rate": 0.0006, + "loss": 3.4490113258361816, + "step": 5489 + }, + { + "epoch": 76.2516382699869, + "grad_norm": 0.2594841718673706, + "learning_rate": 0.0006, + "loss": 3.4855408668518066, + "step": 5490 + }, + { + "epoch": 76.26561817387505, + "grad_norm": 0.25379180908203125, + "learning_rate": 0.0006, + "loss": 3.484755277633667, + "step": 5491 + }, + { + "epoch": 76.27959807776321, + "grad_norm": 0.2550116181373596, + "learning_rate": 0.0006, + "loss": 3.472916603088379, + "step": 5492 + }, + { + "epoch": 76.29357798165138, + "grad_norm": 0.22609412670135498, + "learning_rate": 0.0006, + "loss": 3.4655003547668457, + "step": 5493 + }, + { + "epoch": 76.30755788553954, + "grad_norm": 0.2155119925737381, + "learning_rate": 0.0006, + "loss": 3.4827067852020264, + "step": 5494 + }, + { + "epoch": 76.3215377894277, + "grad_norm": 0.23875075578689575, + "learning_rate": 0.0006, + "loss": 3.5023036003112793, + "step": 5495 + }, + { + "epoch": 76.33551769331586, + "grad_norm": 0.20443911850452423, + "learning_rate": 0.0006, + "loss": 3.483880043029785, + "step": 5496 + }, + { + "epoch": 76.34949759720402, + "grad_norm": 0.2072031944990158, + "learning_rate": 0.0006, + "loss": 3.4842820167541504, + "step": 5497 + }, + { + "epoch": 76.36347750109218, + "grad_norm": 0.20795385539531708, + "learning_rate": 0.0006, + "loss": 3.503988265991211, + "step": 5498 + }, + { + "epoch": 76.37745740498035, + "grad_norm": 0.21297147870063782, + "learning_rate": 0.0006, + "loss": 3.4640579223632812, + "step": 5499 + }, + { + "epoch": 76.3914373088685, + "grad_norm": 0.20675528049468994, + "learning_rate": 0.0006, + "loss": 3.462296485900879, + "step": 5500 + }, + { + "epoch": 76.40541721275666, + "grad_norm": 0.20660211145877838, + "learning_rate": 0.0006, + "loss": 3.484466552734375, + "step": 5501 + }, + { + "epoch": 76.41939711664482, + "grad_norm": 0.23562943935394287, + "learning_rate": 0.0006, + "loss": 3.5207087993621826, + "step": 5502 + }, + { + "epoch": 76.43337702053299, + "grad_norm": 0.23841898143291473, + "learning_rate": 0.0006, + "loss": 3.4793286323547363, + "step": 5503 + }, + { + "epoch": 76.44735692442114, + "grad_norm": 0.22068238258361816, + "learning_rate": 0.0006, + "loss": 3.4763593673706055, + "step": 5504 + }, + { + "epoch": 76.4613368283093, + "grad_norm": 0.2076147049665451, + "learning_rate": 0.0006, + "loss": 3.4937491416931152, + "step": 5505 + }, + { + "epoch": 76.47531673219747, + "grad_norm": 0.2138012796640396, + "learning_rate": 0.0006, + "loss": 3.452348232269287, + "step": 5506 + }, + { + "epoch": 76.48929663608563, + "grad_norm": 0.22696714103221893, + "learning_rate": 0.0006, + "loss": 3.4932503700256348, + "step": 5507 + }, + { + "epoch": 76.50327653997378, + "grad_norm": 0.2209995836019516, + "learning_rate": 0.0006, + "loss": 3.4709179401397705, + "step": 5508 + }, + { + "epoch": 76.51725644386195, + "grad_norm": 0.2194036841392517, + "learning_rate": 0.0006, + "loss": 3.5052647590637207, + "step": 5509 + }, + { + "epoch": 76.53123634775011, + "grad_norm": 0.2052760273218155, + "learning_rate": 0.0006, + "loss": 3.4574718475341797, + "step": 5510 + }, + { + "epoch": 76.54521625163827, + "grad_norm": 0.20317119359970093, + "learning_rate": 0.0006, + "loss": 3.502560615539551, + "step": 5511 + }, + { + "epoch": 76.55919615552644, + "grad_norm": 0.19807544350624084, + "learning_rate": 0.0006, + "loss": 3.4829111099243164, + "step": 5512 + }, + { + "epoch": 76.57317605941459, + "grad_norm": 0.23340080678462982, + "learning_rate": 0.0006, + "loss": 3.486851692199707, + "step": 5513 + }, + { + "epoch": 76.58715596330275, + "grad_norm": 0.22508011758327484, + "learning_rate": 0.0006, + "loss": 3.4909684658050537, + "step": 5514 + }, + { + "epoch": 76.60113586719092, + "grad_norm": 0.20285551249980927, + "learning_rate": 0.0006, + "loss": 3.5109267234802246, + "step": 5515 + }, + { + "epoch": 76.61511577107908, + "grad_norm": 0.21424166858196259, + "learning_rate": 0.0006, + "loss": 3.535339832305908, + "step": 5516 + }, + { + "epoch": 76.62909567496723, + "grad_norm": 0.22599352896213531, + "learning_rate": 0.0006, + "loss": 3.513669729232788, + "step": 5517 + }, + { + "epoch": 76.6430755788554, + "grad_norm": 0.23167334496974945, + "learning_rate": 0.0006, + "loss": 3.464939594268799, + "step": 5518 + }, + { + "epoch": 76.65705548274356, + "grad_norm": 0.23066985607147217, + "learning_rate": 0.0006, + "loss": 3.5059399604797363, + "step": 5519 + }, + { + "epoch": 76.67103538663171, + "grad_norm": 0.23994891345500946, + "learning_rate": 0.0006, + "loss": 3.500594139099121, + "step": 5520 + }, + { + "epoch": 76.68501529051987, + "grad_norm": 0.211285799741745, + "learning_rate": 0.0006, + "loss": 3.478522300720215, + "step": 5521 + }, + { + "epoch": 76.69899519440804, + "grad_norm": 0.20075270533561707, + "learning_rate": 0.0006, + "loss": 3.5288326740264893, + "step": 5522 + }, + { + "epoch": 76.7129750982962, + "grad_norm": 0.23529106378555298, + "learning_rate": 0.0006, + "loss": 3.4779129028320312, + "step": 5523 + }, + { + "epoch": 76.72695500218435, + "grad_norm": 0.2311454862356186, + "learning_rate": 0.0006, + "loss": 3.496515989303589, + "step": 5524 + }, + { + "epoch": 76.74093490607252, + "grad_norm": 0.2181762307882309, + "learning_rate": 0.0006, + "loss": 3.5054616928100586, + "step": 5525 + }, + { + "epoch": 76.75491480996068, + "grad_norm": 0.21688713133335114, + "learning_rate": 0.0006, + "loss": 3.486077070236206, + "step": 5526 + }, + { + "epoch": 76.76889471384884, + "grad_norm": 0.208486407995224, + "learning_rate": 0.0006, + "loss": 3.519576072692871, + "step": 5527 + }, + { + "epoch": 76.78287461773701, + "grad_norm": 0.20486991107463837, + "learning_rate": 0.0006, + "loss": 3.521792411804199, + "step": 5528 + }, + { + "epoch": 76.79685452162516, + "grad_norm": 0.19922950863838196, + "learning_rate": 0.0006, + "loss": 3.491504669189453, + "step": 5529 + }, + { + "epoch": 76.81083442551332, + "grad_norm": 0.1996903419494629, + "learning_rate": 0.0006, + "loss": 3.468512535095215, + "step": 5530 + }, + { + "epoch": 76.82481432940149, + "grad_norm": 0.222084179520607, + "learning_rate": 0.0006, + "loss": 3.5042052268981934, + "step": 5531 + }, + { + "epoch": 76.83879423328965, + "grad_norm": 0.20673534274101257, + "learning_rate": 0.0006, + "loss": 3.497204303741455, + "step": 5532 + }, + { + "epoch": 76.8527741371778, + "grad_norm": 0.21386823058128357, + "learning_rate": 0.0006, + "loss": 3.488496780395508, + "step": 5533 + }, + { + "epoch": 76.86675404106597, + "grad_norm": 0.21389922499656677, + "learning_rate": 0.0006, + "loss": 3.4649922847747803, + "step": 5534 + }, + { + "epoch": 76.88073394495413, + "grad_norm": 0.20491436123847961, + "learning_rate": 0.0006, + "loss": 3.5298590660095215, + "step": 5535 + }, + { + "epoch": 76.89471384884229, + "grad_norm": 0.21831119060516357, + "learning_rate": 0.0006, + "loss": 3.4953153133392334, + "step": 5536 + }, + { + "epoch": 76.90869375273044, + "grad_norm": 0.20591680705547333, + "learning_rate": 0.0006, + "loss": 3.4926888942718506, + "step": 5537 + }, + { + "epoch": 76.92267365661861, + "grad_norm": 0.2123914211988449, + "learning_rate": 0.0006, + "loss": 3.4734320640563965, + "step": 5538 + }, + { + "epoch": 76.93665356050677, + "grad_norm": 0.22081080079078674, + "learning_rate": 0.0006, + "loss": 3.500866413116455, + "step": 5539 + }, + { + "epoch": 76.95063346439493, + "grad_norm": 0.20731335878372192, + "learning_rate": 0.0006, + "loss": 3.5050065517425537, + "step": 5540 + }, + { + "epoch": 76.9646133682831, + "grad_norm": 0.21011851727962494, + "learning_rate": 0.0006, + "loss": 3.490650177001953, + "step": 5541 + }, + { + "epoch": 76.97859327217125, + "grad_norm": 0.2390926033258438, + "learning_rate": 0.0006, + "loss": 3.4951090812683105, + "step": 5542 + }, + { + "epoch": 76.99257317605941, + "grad_norm": 0.2596230208873749, + "learning_rate": 0.0006, + "loss": 3.5060253143310547, + "step": 5543 + }, + { + "epoch": 77.0, + "grad_norm": 0.25238990783691406, + "learning_rate": 0.0006, + "loss": 3.4590630531311035, + "step": 5544 + }, + { + "epoch": 77.0, + "eval_loss": 3.9981307983398438, + "eval_runtime": 44.7924, + "eval_samples_per_second": 54.518, + "eval_steps_per_second": 3.416, + "step": 5544 + }, + { + "epoch": 77.01397990388816, + "grad_norm": 0.22038361430168152, + "learning_rate": 0.0006, + "loss": 3.4686741828918457, + "step": 5545 + }, + { + "epoch": 77.02795980777633, + "grad_norm": 0.24023033678531647, + "learning_rate": 0.0006, + "loss": 3.4764277935028076, + "step": 5546 + }, + { + "epoch": 77.04193971166448, + "grad_norm": 0.2292146384716034, + "learning_rate": 0.0006, + "loss": 3.4723358154296875, + "step": 5547 + }, + { + "epoch": 77.05591961555264, + "grad_norm": 0.2493198812007904, + "learning_rate": 0.0006, + "loss": 3.4568331241607666, + "step": 5548 + }, + { + "epoch": 77.06989951944081, + "grad_norm": 0.24256594479084015, + "learning_rate": 0.0006, + "loss": 3.4423820972442627, + "step": 5549 + }, + { + "epoch": 77.08387942332897, + "grad_norm": 0.23987102508544922, + "learning_rate": 0.0006, + "loss": 3.465493679046631, + "step": 5550 + }, + { + "epoch": 77.09785932721712, + "grad_norm": 0.22210195660591125, + "learning_rate": 0.0006, + "loss": 3.4376380443573, + "step": 5551 + }, + { + "epoch": 77.1118392311053, + "grad_norm": 0.24909666180610657, + "learning_rate": 0.0006, + "loss": 3.490691900253296, + "step": 5552 + }, + { + "epoch": 77.12581913499345, + "grad_norm": 0.25187668204307556, + "learning_rate": 0.0006, + "loss": 3.487443447113037, + "step": 5553 + }, + { + "epoch": 77.1397990388816, + "grad_norm": 0.24957744777202606, + "learning_rate": 0.0006, + "loss": 3.4741783142089844, + "step": 5554 + }, + { + "epoch": 77.15377894276976, + "grad_norm": 0.24963968992233276, + "learning_rate": 0.0006, + "loss": 3.442970037460327, + "step": 5555 + }, + { + "epoch": 77.16775884665793, + "grad_norm": 0.2636677026748657, + "learning_rate": 0.0006, + "loss": 3.442943572998047, + "step": 5556 + }, + { + "epoch": 77.18173875054609, + "grad_norm": 0.2390320599079132, + "learning_rate": 0.0006, + "loss": 3.446042537689209, + "step": 5557 + }, + { + "epoch": 77.19571865443424, + "grad_norm": 0.24128425121307373, + "learning_rate": 0.0006, + "loss": 3.4540657997131348, + "step": 5558 + }, + { + "epoch": 77.20969855832242, + "grad_norm": 0.2793026566505432, + "learning_rate": 0.0006, + "loss": 3.475677013397217, + "step": 5559 + }, + { + "epoch": 77.22367846221057, + "grad_norm": 0.2781931459903717, + "learning_rate": 0.0006, + "loss": 3.432591438293457, + "step": 5560 + }, + { + "epoch": 77.23765836609873, + "grad_norm": 0.27104610204696655, + "learning_rate": 0.0006, + "loss": 3.434600353240967, + "step": 5561 + }, + { + "epoch": 77.2516382699869, + "grad_norm": 0.24446748197078705, + "learning_rate": 0.0006, + "loss": 3.4536900520324707, + "step": 5562 + }, + { + "epoch": 77.26561817387505, + "grad_norm": 0.2234327495098114, + "learning_rate": 0.0006, + "loss": 3.472113609313965, + "step": 5563 + }, + { + "epoch": 77.27959807776321, + "grad_norm": 0.22455455362796783, + "learning_rate": 0.0006, + "loss": 3.478461742401123, + "step": 5564 + }, + { + "epoch": 77.29357798165138, + "grad_norm": 0.24232162535190582, + "learning_rate": 0.0006, + "loss": 3.476224899291992, + "step": 5565 + }, + { + "epoch": 77.30755788553954, + "grad_norm": 0.22650426626205444, + "learning_rate": 0.0006, + "loss": 3.4830868244171143, + "step": 5566 + }, + { + "epoch": 77.3215377894277, + "grad_norm": 0.20385561883449554, + "learning_rate": 0.0006, + "loss": 3.4758248329162598, + "step": 5567 + }, + { + "epoch": 77.33551769331586, + "grad_norm": 0.21887609362602234, + "learning_rate": 0.0006, + "loss": 3.444990873336792, + "step": 5568 + }, + { + "epoch": 77.34949759720402, + "grad_norm": 0.2225635051727295, + "learning_rate": 0.0006, + "loss": 3.469752311706543, + "step": 5569 + }, + { + "epoch": 77.36347750109218, + "grad_norm": 0.24805355072021484, + "learning_rate": 0.0006, + "loss": 3.492915153503418, + "step": 5570 + }, + { + "epoch": 77.37745740498035, + "grad_norm": 0.2526283860206604, + "learning_rate": 0.0006, + "loss": 3.465193271636963, + "step": 5571 + }, + { + "epoch": 77.3914373088685, + "grad_norm": 0.24211226403713226, + "learning_rate": 0.0006, + "loss": 3.4413485527038574, + "step": 5572 + }, + { + "epoch": 77.40541721275666, + "grad_norm": 0.2326599657535553, + "learning_rate": 0.0006, + "loss": 3.4961862564086914, + "step": 5573 + }, + { + "epoch": 77.41939711664482, + "grad_norm": 0.20717164874076843, + "learning_rate": 0.0006, + "loss": 3.525745391845703, + "step": 5574 + }, + { + "epoch": 77.43337702053299, + "grad_norm": 0.25477585196495056, + "learning_rate": 0.0006, + "loss": 3.5035266876220703, + "step": 5575 + }, + { + "epoch": 77.44735692442114, + "grad_norm": 0.25919151306152344, + "learning_rate": 0.0006, + "loss": 3.490316867828369, + "step": 5576 + }, + { + "epoch": 77.4613368283093, + "grad_norm": 0.23436813056468964, + "learning_rate": 0.0006, + "loss": 3.4723501205444336, + "step": 5577 + }, + { + "epoch": 77.47531673219747, + "grad_norm": 0.22665677964687347, + "learning_rate": 0.0006, + "loss": 3.478048801422119, + "step": 5578 + }, + { + "epoch": 77.48929663608563, + "grad_norm": 0.2232775241136551, + "learning_rate": 0.0006, + "loss": 3.5051913261413574, + "step": 5579 + }, + { + "epoch": 77.50327653997378, + "grad_norm": 0.22552873194217682, + "learning_rate": 0.0006, + "loss": 3.45631742477417, + "step": 5580 + }, + { + "epoch": 77.51725644386195, + "grad_norm": 0.21110759675502777, + "learning_rate": 0.0006, + "loss": 3.5175533294677734, + "step": 5581 + }, + { + "epoch": 77.53123634775011, + "grad_norm": 0.20691822469234467, + "learning_rate": 0.0006, + "loss": 3.4880058765411377, + "step": 5582 + }, + { + "epoch": 77.54521625163827, + "grad_norm": 0.2127186805009842, + "learning_rate": 0.0006, + "loss": 3.4998388290405273, + "step": 5583 + }, + { + "epoch": 77.55919615552644, + "grad_norm": 0.20933803915977478, + "learning_rate": 0.0006, + "loss": 3.466125249862671, + "step": 5584 + }, + { + "epoch": 77.57317605941459, + "grad_norm": 0.2276456654071808, + "learning_rate": 0.0006, + "loss": 3.459625482559204, + "step": 5585 + }, + { + "epoch": 77.58715596330275, + "grad_norm": 0.22685237228870392, + "learning_rate": 0.0006, + "loss": 3.492049217224121, + "step": 5586 + }, + { + "epoch": 77.60113586719092, + "grad_norm": 0.21664106845855713, + "learning_rate": 0.0006, + "loss": 3.5223960876464844, + "step": 5587 + }, + { + "epoch": 77.61511577107908, + "grad_norm": 0.23587282001972198, + "learning_rate": 0.0006, + "loss": 3.518566370010376, + "step": 5588 + }, + { + "epoch": 77.62909567496723, + "grad_norm": 0.23437966406345367, + "learning_rate": 0.0006, + "loss": 3.491976022720337, + "step": 5589 + }, + { + "epoch": 77.6430755788554, + "grad_norm": 0.23540490865707397, + "learning_rate": 0.0006, + "loss": 3.4611740112304688, + "step": 5590 + }, + { + "epoch": 77.65705548274356, + "grad_norm": 0.25225862860679626, + "learning_rate": 0.0006, + "loss": 3.5131006240844727, + "step": 5591 + }, + { + "epoch": 77.67103538663171, + "grad_norm": 0.24235303699970245, + "learning_rate": 0.0006, + "loss": 3.5291337966918945, + "step": 5592 + }, + { + "epoch": 77.68501529051987, + "grad_norm": 0.20641890168190002, + "learning_rate": 0.0006, + "loss": 3.484412431716919, + "step": 5593 + }, + { + "epoch": 77.69899519440804, + "grad_norm": 0.22332488000392914, + "learning_rate": 0.0006, + "loss": 3.521279811859131, + "step": 5594 + }, + { + "epoch": 77.7129750982962, + "grad_norm": 0.22490297257900238, + "learning_rate": 0.0006, + "loss": 3.493229866027832, + "step": 5595 + }, + { + "epoch": 77.72695500218435, + "grad_norm": 0.19960972666740417, + "learning_rate": 0.0006, + "loss": 3.454841136932373, + "step": 5596 + }, + { + "epoch": 77.74093490607252, + "grad_norm": 0.22220884263515472, + "learning_rate": 0.0006, + "loss": 3.490431547164917, + "step": 5597 + }, + { + "epoch": 77.75491480996068, + "grad_norm": 0.22000782191753387, + "learning_rate": 0.0006, + "loss": 3.52382230758667, + "step": 5598 + }, + { + "epoch": 77.76889471384884, + "grad_norm": 0.2174588292837143, + "learning_rate": 0.0006, + "loss": 3.514397621154785, + "step": 5599 + }, + { + "epoch": 77.78287461773701, + "grad_norm": 0.2279520481824875, + "learning_rate": 0.0006, + "loss": 3.4750583171844482, + "step": 5600 + }, + { + "epoch": 77.79685452162516, + "grad_norm": 0.21765829622745514, + "learning_rate": 0.0006, + "loss": 3.512150526046753, + "step": 5601 + }, + { + "epoch": 77.81083442551332, + "grad_norm": 0.20984821021556854, + "learning_rate": 0.0006, + "loss": 3.4623773097991943, + "step": 5602 + }, + { + "epoch": 77.82481432940149, + "grad_norm": 0.22201800346374512, + "learning_rate": 0.0006, + "loss": 3.4842002391815186, + "step": 5603 + }, + { + "epoch": 77.83879423328965, + "grad_norm": 0.194268599152565, + "learning_rate": 0.0006, + "loss": 3.4671778678894043, + "step": 5604 + }, + { + "epoch": 77.8527741371778, + "grad_norm": 0.26137876510620117, + "learning_rate": 0.0006, + "loss": 3.5220279693603516, + "step": 5605 + }, + { + "epoch": 77.86675404106597, + "grad_norm": 0.34975603222846985, + "learning_rate": 0.0006, + "loss": 3.500293254852295, + "step": 5606 + }, + { + "epoch": 77.88073394495413, + "grad_norm": 0.35652515292167664, + "learning_rate": 0.0006, + "loss": 3.514991521835327, + "step": 5607 + }, + { + "epoch": 77.89471384884229, + "grad_norm": 0.29652512073516846, + "learning_rate": 0.0006, + "loss": 3.4788379669189453, + "step": 5608 + }, + { + "epoch": 77.90869375273044, + "grad_norm": 0.24133038520812988, + "learning_rate": 0.0006, + "loss": 3.5168981552124023, + "step": 5609 + }, + { + "epoch": 77.92267365661861, + "grad_norm": 0.26977378129959106, + "learning_rate": 0.0006, + "loss": 3.479185104370117, + "step": 5610 + }, + { + "epoch": 77.93665356050677, + "grad_norm": 0.3470935523509979, + "learning_rate": 0.0006, + "loss": 3.477111577987671, + "step": 5611 + }, + { + "epoch": 77.95063346439493, + "grad_norm": 0.29587116837501526, + "learning_rate": 0.0006, + "loss": 3.497286319732666, + "step": 5612 + }, + { + "epoch": 77.9646133682831, + "grad_norm": 0.23551815748214722, + "learning_rate": 0.0006, + "loss": 3.521495819091797, + "step": 5613 + }, + { + "epoch": 77.97859327217125, + "grad_norm": 0.23533079028129578, + "learning_rate": 0.0006, + "loss": 3.525179147720337, + "step": 5614 + }, + { + "epoch": 77.99257317605941, + "grad_norm": 0.24980391561985016, + "learning_rate": 0.0006, + "loss": 3.5037364959716797, + "step": 5615 + }, + { + "epoch": 78.0, + "grad_norm": 0.26153600215911865, + "learning_rate": 0.0006, + "loss": 3.515974521636963, + "step": 5616 + }, + { + "epoch": 78.0, + "eval_loss": 3.989530563354492, + "eval_runtime": 44.8691, + "eval_samples_per_second": 54.425, + "eval_steps_per_second": 3.41, + "step": 5616 + }, + { + "epoch": 78.01397990388816, + "grad_norm": 0.2100374549627304, + "learning_rate": 0.0006, + "loss": 3.4879980087280273, + "step": 5617 + }, + { + "epoch": 78.02795980777633, + "grad_norm": 0.23255975544452667, + "learning_rate": 0.0006, + "loss": 3.43629789352417, + "step": 5618 + }, + { + "epoch": 78.04193971166448, + "grad_norm": 0.2895263731479645, + "learning_rate": 0.0006, + "loss": 3.4705724716186523, + "step": 5619 + }, + { + "epoch": 78.05591961555264, + "grad_norm": 0.31454774737358093, + "learning_rate": 0.0006, + "loss": 3.451716661453247, + "step": 5620 + }, + { + "epoch": 78.06989951944081, + "grad_norm": 0.2520895004272461, + "learning_rate": 0.0006, + "loss": 3.4636831283569336, + "step": 5621 + }, + { + "epoch": 78.08387942332897, + "grad_norm": 0.24788936972618103, + "learning_rate": 0.0006, + "loss": 3.4423277378082275, + "step": 5622 + }, + { + "epoch": 78.09785932721712, + "grad_norm": 0.27085408568382263, + "learning_rate": 0.0006, + "loss": 3.4572410583496094, + "step": 5623 + }, + { + "epoch": 78.1118392311053, + "grad_norm": 0.25386592745780945, + "learning_rate": 0.0006, + "loss": 3.4571075439453125, + "step": 5624 + }, + { + "epoch": 78.12581913499345, + "grad_norm": 0.24330876767635345, + "learning_rate": 0.0006, + "loss": 3.4500632286071777, + "step": 5625 + }, + { + "epoch": 78.1397990388816, + "grad_norm": 0.24485483765602112, + "learning_rate": 0.0006, + "loss": 3.475353240966797, + "step": 5626 + }, + { + "epoch": 78.15377894276976, + "grad_norm": 0.25498270988464355, + "learning_rate": 0.0006, + "loss": 3.485459089279175, + "step": 5627 + }, + { + "epoch": 78.16775884665793, + "grad_norm": 0.24147716164588928, + "learning_rate": 0.0006, + "loss": 3.5107951164245605, + "step": 5628 + }, + { + "epoch": 78.18173875054609, + "grad_norm": 0.22279144823551178, + "learning_rate": 0.0006, + "loss": 3.510791778564453, + "step": 5629 + }, + { + "epoch": 78.19571865443424, + "grad_norm": 0.2423589825630188, + "learning_rate": 0.0006, + "loss": 3.4248547554016113, + "step": 5630 + }, + { + "epoch": 78.20969855832242, + "grad_norm": 0.25929296016693115, + "learning_rate": 0.0006, + "loss": 3.4600253105163574, + "step": 5631 + }, + { + "epoch": 78.22367846221057, + "grad_norm": 0.23566672205924988, + "learning_rate": 0.0006, + "loss": 3.4578680992126465, + "step": 5632 + }, + { + "epoch": 78.23765836609873, + "grad_norm": 0.23223716020584106, + "learning_rate": 0.0006, + "loss": 3.4563381671905518, + "step": 5633 + }, + { + "epoch": 78.2516382699869, + "grad_norm": 0.2368844598531723, + "learning_rate": 0.0006, + "loss": 3.4480276107788086, + "step": 5634 + }, + { + "epoch": 78.26561817387505, + "grad_norm": 0.24832561612129211, + "learning_rate": 0.0006, + "loss": 3.496946334838867, + "step": 5635 + }, + { + "epoch": 78.27959807776321, + "grad_norm": 0.24947865307331085, + "learning_rate": 0.0006, + "loss": 3.4892706871032715, + "step": 5636 + }, + { + "epoch": 78.29357798165138, + "grad_norm": 0.23110949993133545, + "learning_rate": 0.0006, + "loss": 3.454031467437744, + "step": 5637 + }, + { + "epoch": 78.30755788553954, + "grad_norm": 0.2529185116291046, + "learning_rate": 0.0006, + "loss": 3.4528121948242188, + "step": 5638 + }, + { + "epoch": 78.3215377894277, + "grad_norm": 0.28784650564193726, + "learning_rate": 0.0006, + "loss": 3.4587960243225098, + "step": 5639 + }, + { + "epoch": 78.33551769331586, + "grad_norm": 0.3063037097454071, + "learning_rate": 0.0006, + "loss": 3.4946982860565186, + "step": 5640 + }, + { + "epoch": 78.34949759720402, + "grad_norm": 0.25911253690719604, + "learning_rate": 0.0006, + "loss": 3.4736804962158203, + "step": 5641 + }, + { + "epoch": 78.36347750109218, + "grad_norm": 0.24036385118961334, + "learning_rate": 0.0006, + "loss": 3.502281665802002, + "step": 5642 + }, + { + "epoch": 78.37745740498035, + "grad_norm": 0.3214871883392334, + "learning_rate": 0.0006, + "loss": 3.462540626525879, + "step": 5643 + }, + { + "epoch": 78.3914373088685, + "grad_norm": 0.2729061245918274, + "learning_rate": 0.0006, + "loss": 3.4772369861602783, + "step": 5644 + }, + { + "epoch": 78.40541721275666, + "grad_norm": 0.19852563738822937, + "learning_rate": 0.0006, + "loss": 3.483013391494751, + "step": 5645 + }, + { + "epoch": 78.41939711664482, + "grad_norm": 0.23686745762825012, + "learning_rate": 0.0006, + "loss": 3.471310615539551, + "step": 5646 + }, + { + "epoch": 78.43337702053299, + "grad_norm": 0.2407468557357788, + "learning_rate": 0.0006, + "loss": 3.468752384185791, + "step": 5647 + }, + { + "epoch": 78.44735692442114, + "grad_norm": 0.21730437874794006, + "learning_rate": 0.0006, + "loss": 3.4616923332214355, + "step": 5648 + }, + { + "epoch": 78.4613368283093, + "grad_norm": 0.22194430232048035, + "learning_rate": 0.0006, + "loss": 3.5024828910827637, + "step": 5649 + }, + { + "epoch": 78.47531673219747, + "grad_norm": 0.20579543709754944, + "learning_rate": 0.0006, + "loss": 3.4653728008270264, + "step": 5650 + }, + { + "epoch": 78.48929663608563, + "grad_norm": 0.21063153445720673, + "learning_rate": 0.0006, + "loss": 3.460247039794922, + "step": 5651 + }, + { + "epoch": 78.50327653997378, + "grad_norm": 0.2112281769514084, + "learning_rate": 0.0006, + "loss": 3.5004734992980957, + "step": 5652 + }, + { + "epoch": 78.51725644386195, + "grad_norm": 0.21281960606575012, + "learning_rate": 0.0006, + "loss": 3.49147367477417, + "step": 5653 + }, + { + "epoch": 78.53123634775011, + "grad_norm": 0.21079784631729126, + "learning_rate": 0.0006, + "loss": 3.4941132068634033, + "step": 5654 + }, + { + "epoch": 78.54521625163827, + "grad_norm": 0.2113049030303955, + "learning_rate": 0.0006, + "loss": 3.4483916759490967, + "step": 5655 + }, + { + "epoch": 78.55919615552644, + "grad_norm": 0.19891786575317383, + "learning_rate": 0.0006, + "loss": 3.477287769317627, + "step": 5656 + }, + { + "epoch": 78.57317605941459, + "grad_norm": 0.24941609799861908, + "learning_rate": 0.0006, + "loss": 3.527385711669922, + "step": 5657 + }, + { + "epoch": 78.58715596330275, + "grad_norm": 0.23287516832351685, + "learning_rate": 0.0006, + "loss": 3.4806594848632812, + "step": 5658 + }, + { + "epoch": 78.60113586719092, + "grad_norm": 0.211700439453125, + "learning_rate": 0.0006, + "loss": 3.455684185028076, + "step": 5659 + }, + { + "epoch": 78.61511577107908, + "grad_norm": 0.20621828734874725, + "learning_rate": 0.0006, + "loss": 3.4775843620300293, + "step": 5660 + }, + { + "epoch": 78.62909567496723, + "grad_norm": 0.2308485507965088, + "learning_rate": 0.0006, + "loss": 3.4990549087524414, + "step": 5661 + }, + { + "epoch": 78.6430755788554, + "grad_norm": 0.22869032621383667, + "learning_rate": 0.0006, + "loss": 3.476654529571533, + "step": 5662 + }, + { + "epoch": 78.65705548274356, + "grad_norm": 0.2244352102279663, + "learning_rate": 0.0006, + "loss": 3.4927053451538086, + "step": 5663 + }, + { + "epoch": 78.67103538663171, + "grad_norm": 0.21660304069519043, + "learning_rate": 0.0006, + "loss": 3.509037494659424, + "step": 5664 + }, + { + "epoch": 78.68501529051987, + "grad_norm": 0.21199069917201996, + "learning_rate": 0.0006, + "loss": 3.5118260383605957, + "step": 5665 + }, + { + "epoch": 78.69899519440804, + "grad_norm": 0.23588138818740845, + "learning_rate": 0.0006, + "loss": 3.497911214828491, + "step": 5666 + }, + { + "epoch": 78.7129750982962, + "grad_norm": 0.24299076199531555, + "learning_rate": 0.0006, + "loss": 3.4978718757629395, + "step": 5667 + }, + { + "epoch": 78.72695500218435, + "grad_norm": 0.22472943365573883, + "learning_rate": 0.0006, + "loss": 3.4873275756835938, + "step": 5668 + }, + { + "epoch": 78.74093490607252, + "grad_norm": 0.24047710001468658, + "learning_rate": 0.0006, + "loss": 3.51192307472229, + "step": 5669 + }, + { + "epoch": 78.75491480996068, + "grad_norm": 0.23834499716758728, + "learning_rate": 0.0006, + "loss": 3.5092411041259766, + "step": 5670 + }, + { + "epoch": 78.76889471384884, + "grad_norm": 0.22663438320159912, + "learning_rate": 0.0006, + "loss": 3.4869158267974854, + "step": 5671 + }, + { + "epoch": 78.78287461773701, + "grad_norm": 0.23967741429805756, + "learning_rate": 0.0006, + "loss": 3.4928178787231445, + "step": 5672 + }, + { + "epoch": 78.79685452162516, + "grad_norm": 0.2554507851600647, + "learning_rate": 0.0006, + "loss": 3.506929636001587, + "step": 5673 + }, + { + "epoch": 78.81083442551332, + "grad_norm": 0.2269635796546936, + "learning_rate": 0.0006, + "loss": 3.491553544998169, + "step": 5674 + }, + { + "epoch": 78.82481432940149, + "grad_norm": 0.22387325763702393, + "learning_rate": 0.0006, + "loss": 3.510486602783203, + "step": 5675 + }, + { + "epoch": 78.83879423328965, + "grad_norm": 0.22415105998516083, + "learning_rate": 0.0006, + "loss": 3.508218765258789, + "step": 5676 + }, + { + "epoch": 78.8527741371778, + "grad_norm": 0.21340659260749817, + "learning_rate": 0.0006, + "loss": 3.4840855598449707, + "step": 5677 + }, + { + "epoch": 78.86675404106597, + "grad_norm": 0.20351317524909973, + "learning_rate": 0.0006, + "loss": 3.485891342163086, + "step": 5678 + }, + { + "epoch": 78.88073394495413, + "grad_norm": 0.21389521658420563, + "learning_rate": 0.0006, + "loss": 3.447760581970215, + "step": 5679 + }, + { + "epoch": 78.89471384884229, + "grad_norm": 0.20613767206668854, + "learning_rate": 0.0006, + "loss": 3.484274387359619, + "step": 5680 + }, + { + "epoch": 78.90869375273044, + "grad_norm": 0.22112590074539185, + "learning_rate": 0.0006, + "loss": 3.4902679920196533, + "step": 5681 + }, + { + "epoch": 78.92267365661861, + "grad_norm": 0.24395327270030975, + "learning_rate": 0.0006, + "loss": 3.5017199516296387, + "step": 5682 + }, + { + "epoch": 78.93665356050677, + "grad_norm": 0.21891266107559204, + "learning_rate": 0.0006, + "loss": 3.4892828464508057, + "step": 5683 + }, + { + "epoch": 78.95063346439493, + "grad_norm": 0.1842963546514511, + "learning_rate": 0.0006, + "loss": 3.4611716270446777, + "step": 5684 + }, + { + "epoch": 78.9646133682831, + "grad_norm": 0.21199378371238708, + "learning_rate": 0.0006, + "loss": 3.487452507019043, + "step": 5685 + }, + { + "epoch": 78.97859327217125, + "grad_norm": 0.2304743379354477, + "learning_rate": 0.0006, + "loss": 3.502875804901123, + "step": 5686 + }, + { + "epoch": 78.99257317605941, + "grad_norm": 0.22459475696086884, + "learning_rate": 0.0006, + "loss": 3.47969388961792, + "step": 5687 + }, + { + "epoch": 79.0, + "grad_norm": 0.22847296297550201, + "learning_rate": 0.0006, + "loss": 3.497244358062744, + "step": 5688 + }, + { + "epoch": 79.0, + "eval_loss": 3.9824025630950928, + "eval_runtime": 45.0842, + "eval_samples_per_second": 54.165, + "eval_steps_per_second": 3.394, + "step": 5688 + }, + { + "epoch": 79.01397990388816, + "grad_norm": 0.2116587609052658, + "learning_rate": 0.0006, + "loss": 3.467320442199707, + "step": 5689 + }, + { + "epoch": 79.02795980777633, + "grad_norm": 0.2433212846517563, + "learning_rate": 0.0006, + "loss": 3.454660415649414, + "step": 5690 + }, + { + "epoch": 79.04193971166448, + "grad_norm": 0.27106034755706787, + "learning_rate": 0.0006, + "loss": 3.4242570400238037, + "step": 5691 + }, + { + "epoch": 79.05591961555264, + "grad_norm": 0.2392120659351349, + "learning_rate": 0.0006, + "loss": 3.461986541748047, + "step": 5692 + }, + { + "epoch": 79.06989951944081, + "grad_norm": 0.2061600536108017, + "learning_rate": 0.0006, + "loss": 3.462704658508301, + "step": 5693 + }, + { + "epoch": 79.08387942332897, + "grad_norm": 0.23523560166358948, + "learning_rate": 0.0006, + "loss": 3.435553789138794, + "step": 5694 + }, + { + "epoch": 79.09785932721712, + "grad_norm": 0.23340672254562378, + "learning_rate": 0.0006, + "loss": 3.4382264614105225, + "step": 5695 + }, + { + "epoch": 79.1118392311053, + "grad_norm": 0.23986691236495972, + "learning_rate": 0.0006, + "loss": 3.465056896209717, + "step": 5696 + }, + { + "epoch": 79.12581913499345, + "grad_norm": 0.3069128394126892, + "learning_rate": 0.0006, + "loss": 3.4774551391601562, + "step": 5697 + }, + { + "epoch": 79.1397990388816, + "grad_norm": 0.3146822154521942, + "learning_rate": 0.0006, + "loss": 3.463569402694702, + "step": 5698 + }, + { + "epoch": 79.15377894276976, + "grad_norm": 0.2516225576400757, + "learning_rate": 0.0006, + "loss": 3.455902576446533, + "step": 5699 + }, + { + "epoch": 79.16775884665793, + "grad_norm": 0.23645997047424316, + "learning_rate": 0.0006, + "loss": 3.4733195304870605, + "step": 5700 + }, + { + "epoch": 79.18173875054609, + "grad_norm": 0.23653559386730194, + "learning_rate": 0.0006, + "loss": 3.4751782417297363, + "step": 5701 + }, + { + "epoch": 79.19571865443424, + "grad_norm": 0.2404588907957077, + "learning_rate": 0.0006, + "loss": 3.43743896484375, + "step": 5702 + }, + { + "epoch": 79.20969855832242, + "grad_norm": 0.2621341049671173, + "learning_rate": 0.0006, + "loss": 3.4895966053009033, + "step": 5703 + }, + { + "epoch": 79.22367846221057, + "grad_norm": 0.28223180770874023, + "learning_rate": 0.0006, + "loss": 3.4525022506713867, + "step": 5704 + }, + { + "epoch": 79.23765836609873, + "grad_norm": 0.25029054284095764, + "learning_rate": 0.0006, + "loss": 3.491457939147949, + "step": 5705 + }, + { + "epoch": 79.2516382699869, + "grad_norm": 0.20627525448799133, + "learning_rate": 0.0006, + "loss": 3.4669456481933594, + "step": 5706 + }, + { + "epoch": 79.26561817387505, + "grad_norm": 0.2029162049293518, + "learning_rate": 0.0006, + "loss": 3.467924118041992, + "step": 5707 + }, + { + "epoch": 79.27959807776321, + "grad_norm": 0.21813155710697174, + "learning_rate": 0.0006, + "loss": 3.4625706672668457, + "step": 5708 + }, + { + "epoch": 79.29357798165138, + "grad_norm": 0.22105057537555695, + "learning_rate": 0.0006, + "loss": 3.475510597229004, + "step": 5709 + }, + { + "epoch": 79.30755788553954, + "grad_norm": 0.22906996309757233, + "learning_rate": 0.0006, + "loss": 3.468635320663452, + "step": 5710 + }, + { + "epoch": 79.3215377894277, + "grad_norm": 0.24189208447933197, + "learning_rate": 0.0006, + "loss": 3.5031652450561523, + "step": 5711 + }, + { + "epoch": 79.33551769331586, + "grad_norm": 0.24393346905708313, + "learning_rate": 0.0006, + "loss": 3.454542636871338, + "step": 5712 + }, + { + "epoch": 79.34949759720402, + "grad_norm": 0.2266826182603836, + "learning_rate": 0.0006, + "loss": 3.4841208457946777, + "step": 5713 + }, + { + "epoch": 79.36347750109218, + "grad_norm": 0.2427995502948761, + "learning_rate": 0.0006, + "loss": 3.4595608711242676, + "step": 5714 + }, + { + "epoch": 79.37745740498035, + "grad_norm": 0.22999171912670135, + "learning_rate": 0.0006, + "loss": 3.485996723175049, + "step": 5715 + }, + { + "epoch": 79.3914373088685, + "grad_norm": 0.20932789146900177, + "learning_rate": 0.0006, + "loss": 3.488872528076172, + "step": 5716 + }, + { + "epoch": 79.40541721275666, + "grad_norm": 0.21802127361297607, + "learning_rate": 0.0006, + "loss": 3.4697980880737305, + "step": 5717 + }, + { + "epoch": 79.41939711664482, + "grad_norm": 0.197403684258461, + "learning_rate": 0.0006, + "loss": 3.486513614654541, + "step": 5718 + }, + { + "epoch": 79.43337702053299, + "grad_norm": 0.23447830975055695, + "learning_rate": 0.0006, + "loss": 3.475939989089966, + "step": 5719 + }, + { + "epoch": 79.44735692442114, + "grad_norm": 0.22854745388031006, + "learning_rate": 0.0006, + "loss": 3.465761661529541, + "step": 5720 + }, + { + "epoch": 79.4613368283093, + "grad_norm": 0.23276479542255402, + "learning_rate": 0.0006, + "loss": 3.4629950523376465, + "step": 5721 + }, + { + "epoch": 79.47531673219747, + "grad_norm": 0.2330375462770462, + "learning_rate": 0.0006, + "loss": 3.4637608528137207, + "step": 5722 + }, + { + "epoch": 79.48929663608563, + "grad_norm": 0.20138737559318542, + "learning_rate": 0.0006, + "loss": 3.481213092803955, + "step": 5723 + }, + { + "epoch": 79.50327653997378, + "grad_norm": 0.21511636674404144, + "learning_rate": 0.0006, + "loss": 3.476829767227173, + "step": 5724 + }, + { + "epoch": 79.51725644386195, + "grad_norm": 0.23398199677467346, + "learning_rate": 0.0006, + "loss": 3.489365577697754, + "step": 5725 + }, + { + "epoch": 79.53123634775011, + "grad_norm": 0.2232203334569931, + "learning_rate": 0.0006, + "loss": 3.4860544204711914, + "step": 5726 + }, + { + "epoch": 79.54521625163827, + "grad_norm": 0.22046223282814026, + "learning_rate": 0.0006, + "loss": 3.474432945251465, + "step": 5727 + }, + { + "epoch": 79.55919615552644, + "grad_norm": 0.21202176809310913, + "learning_rate": 0.0006, + "loss": 3.4932260513305664, + "step": 5728 + }, + { + "epoch": 79.57317605941459, + "grad_norm": 0.20418033003807068, + "learning_rate": 0.0006, + "loss": 3.4956419467926025, + "step": 5729 + }, + { + "epoch": 79.58715596330275, + "grad_norm": 0.2247099131345749, + "learning_rate": 0.0006, + "loss": 3.4714908599853516, + "step": 5730 + }, + { + "epoch": 79.60113586719092, + "grad_norm": 0.22176751494407654, + "learning_rate": 0.0006, + "loss": 3.4729676246643066, + "step": 5731 + }, + { + "epoch": 79.61511577107908, + "grad_norm": 0.3019230365753174, + "learning_rate": 0.0006, + "loss": 3.510695695877075, + "step": 5732 + }, + { + "epoch": 79.62909567496723, + "grad_norm": 0.2699214220046997, + "learning_rate": 0.0006, + "loss": 3.4848737716674805, + "step": 5733 + }, + { + "epoch": 79.6430755788554, + "grad_norm": 0.21180644631385803, + "learning_rate": 0.0006, + "loss": 3.4982075691223145, + "step": 5734 + }, + { + "epoch": 79.65705548274356, + "grad_norm": 0.22198693454265594, + "learning_rate": 0.0006, + "loss": 3.4891958236694336, + "step": 5735 + }, + { + "epoch": 79.67103538663171, + "grad_norm": 0.23550960421562195, + "learning_rate": 0.0006, + "loss": 3.4809060096740723, + "step": 5736 + }, + { + "epoch": 79.68501529051987, + "grad_norm": 0.22033970057964325, + "learning_rate": 0.0006, + "loss": 3.4804179668426514, + "step": 5737 + }, + { + "epoch": 79.69899519440804, + "grad_norm": 0.22671130299568176, + "learning_rate": 0.0006, + "loss": 3.5053179264068604, + "step": 5738 + }, + { + "epoch": 79.7129750982962, + "grad_norm": 0.22178004682064056, + "learning_rate": 0.0006, + "loss": 3.481842279434204, + "step": 5739 + }, + { + "epoch": 79.72695500218435, + "grad_norm": 0.21100834012031555, + "learning_rate": 0.0006, + "loss": 3.4759697914123535, + "step": 5740 + }, + { + "epoch": 79.74093490607252, + "grad_norm": 0.22176271677017212, + "learning_rate": 0.0006, + "loss": 3.475595712661743, + "step": 5741 + }, + { + "epoch": 79.75491480996068, + "grad_norm": 0.24720509350299835, + "learning_rate": 0.0006, + "loss": 3.489837646484375, + "step": 5742 + }, + { + "epoch": 79.76889471384884, + "grad_norm": 0.26469993591308594, + "learning_rate": 0.0006, + "loss": 3.506197452545166, + "step": 5743 + }, + { + "epoch": 79.78287461773701, + "grad_norm": 0.24642309546470642, + "learning_rate": 0.0006, + "loss": 3.470227003097534, + "step": 5744 + }, + { + "epoch": 79.79685452162516, + "grad_norm": 0.2302687019109726, + "learning_rate": 0.0006, + "loss": 3.4808273315429688, + "step": 5745 + }, + { + "epoch": 79.81083442551332, + "grad_norm": 0.21863581240177155, + "learning_rate": 0.0006, + "loss": 3.4925639629364014, + "step": 5746 + }, + { + "epoch": 79.82481432940149, + "grad_norm": 0.22680892050266266, + "learning_rate": 0.0006, + "loss": 3.5036230087280273, + "step": 5747 + }, + { + "epoch": 79.83879423328965, + "grad_norm": 0.2469770610332489, + "learning_rate": 0.0006, + "loss": 3.483344078063965, + "step": 5748 + }, + { + "epoch": 79.8527741371778, + "grad_norm": 0.24359549582004547, + "learning_rate": 0.0006, + "loss": 3.4770007133483887, + "step": 5749 + }, + { + "epoch": 79.86675404106597, + "grad_norm": 0.22829081118106842, + "learning_rate": 0.0006, + "loss": 3.4755868911743164, + "step": 5750 + }, + { + "epoch": 79.88073394495413, + "grad_norm": 0.19276872277259827, + "learning_rate": 0.0006, + "loss": 3.4675350189208984, + "step": 5751 + }, + { + "epoch": 79.89471384884229, + "grad_norm": 0.19389234483242035, + "learning_rate": 0.0006, + "loss": 3.4747910499572754, + "step": 5752 + }, + { + "epoch": 79.90869375273044, + "grad_norm": 0.19570349156856537, + "learning_rate": 0.0006, + "loss": 3.5035524368286133, + "step": 5753 + }, + { + "epoch": 79.92267365661861, + "grad_norm": 0.21111367642879486, + "learning_rate": 0.0006, + "loss": 3.488398551940918, + "step": 5754 + }, + { + "epoch": 79.93665356050677, + "grad_norm": 0.219063401222229, + "learning_rate": 0.0006, + "loss": 3.483445882797241, + "step": 5755 + }, + { + "epoch": 79.95063346439493, + "grad_norm": 0.22253118455410004, + "learning_rate": 0.0006, + "loss": 3.45628023147583, + "step": 5756 + }, + { + "epoch": 79.9646133682831, + "grad_norm": 0.25083762407302856, + "learning_rate": 0.0006, + "loss": 3.5318427085876465, + "step": 5757 + }, + { + "epoch": 79.97859327217125, + "grad_norm": 0.22656984627246857, + "learning_rate": 0.0006, + "loss": 3.48038649559021, + "step": 5758 + }, + { + "epoch": 79.99257317605941, + "grad_norm": 0.20029467344284058, + "learning_rate": 0.0006, + "loss": 3.482250213623047, + "step": 5759 + }, + { + "epoch": 80.0, + "grad_norm": 0.24279549717903137, + "learning_rate": 0.0006, + "loss": 3.5121026039123535, + "step": 5760 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 2.4546183350530867e+18, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5760/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6048/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6048/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6048/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6048/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..dc07506651ffd03e0e06570092acecfeb6bbc2a3 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a30c6aadf1e59960175fb7425b9c178ec77d9a976174ccd8ae0ddac4d534720 +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6048/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..0254189d9b1c1c55bc9ffa784c3e7a78ae9cc664 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eac0055de2642ff60c2bee2a5800b266f5c8eae6080c403afb2ca7b4223595d +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6048/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..9f03a4324e0782aa352f7cb794c0f3deb2a42a05 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a89f2785e62800f1a919e3cd1c00b78583bad66c86cad22e128b752daa4b818 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6048/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..0250d00d6f3edc7c68b7453e3b6e669747b7f487 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73704da3349259bde0ca630373af1fd894e439867d9abdab6469b2dfcc5092b4 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6048/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..762789ce7e31cc09dc831dc70530516d1f1e01b2 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:100b47a764841837311a60bed293b8e5dd3c3501d4d1da6c3b20120bb6630ddd +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6048/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6048/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6048/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..8a5301286b5461d1798a9b396a083170d930961e --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/trainer_state.json @@ -0,0 +1,43034 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 84.0, + "eval_steps": 500, + "global_step": 6048, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + }, + { + "epoch": 8.0, + "eval_loss": 5.100707530975342, + "eval_runtime": 44.2493, + "eval_samples_per_second": 55.187, + "eval_steps_per_second": 3.458, + "step": 576 + }, + { + "epoch": 8.013979903888162, + "grad_norm": 0.3658510148525238, + "learning_rate": 0.0006, + "loss": 4.759055137634277, + "step": 577 + }, + { + "epoch": 8.027959807776321, + "grad_norm": 0.41794446110725403, + "learning_rate": 0.0006, + "loss": 4.737661838531494, + "step": 578 + }, + { + "epoch": 8.041939711664483, + "grad_norm": 0.43284085392951965, + "learning_rate": 0.0006, + "loss": 4.775538444519043, + "step": 579 + }, + { + "epoch": 8.055919615552643, + "grad_norm": 0.4716675281524658, + "learning_rate": 0.0006, + "loss": 4.762231826782227, + "step": 580 + }, + { + "epoch": 8.069899519440805, + "grad_norm": 0.3849579393863678, + "learning_rate": 0.0006, + "loss": 4.753598690032959, + "step": 581 + }, + { + "epoch": 8.083879423328964, + "grad_norm": 0.3721151053905487, + "learning_rate": 0.0006, + "loss": 4.728978157043457, + "step": 582 + }, + { + "epoch": 8.097859327217126, + "grad_norm": 0.37009572982788086, + "learning_rate": 0.0006, + "loss": 4.759153366088867, + "step": 583 + }, + { + "epoch": 8.111839231105286, + "grad_norm": 0.37051302194595337, + "learning_rate": 0.0006, + "loss": 4.744197368621826, + "step": 584 + }, + { + "epoch": 8.125819134993447, + "grad_norm": 0.331238329410553, + "learning_rate": 0.0006, + "loss": 4.7338385581970215, + "step": 585 + }, + { + "epoch": 8.139799038881607, + "grad_norm": 0.3737713694572449, + "learning_rate": 0.0006, + "loss": 4.719110488891602, + "step": 586 + }, + { + "epoch": 8.153778942769769, + "grad_norm": 0.3713214695453644, + "learning_rate": 0.0006, + "loss": 4.734012126922607, + "step": 587 + }, + { + "epoch": 8.167758846657929, + "grad_norm": 0.4060780107975006, + "learning_rate": 0.0006, + "loss": 4.746830940246582, + "step": 588 + }, + { + "epoch": 8.18173875054609, + "grad_norm": 0.39814314246177673, + "learning_rate": 0.0006, + "loss": 4.722851753234863, + "step": 589 + }, + { + "epoch": 8.19571865443425, + "grad_norm": 0.3175652325153351, + "learning_rate": 0.0006, + "loss": 4.745110034942627, + "step": 590 + }, + { + "epoch": 8.209698558322412, + "grad_norm": 0.37214916944503784, + "learning_rate": 0.0006, + "loss": 4.7362775802612305, + "step": 591 + }, + { + "epoch": 8.223678462210572, + "grad_norm": 0.3873472809791565, + "learning_rate": 0.0006, + "loss": 4.738964557647705, + "step": 592 + }, + { + "epoch": 8.237658366098733, + "grad_norm": 0.3299207091331482, + "learning_rate": 0.0006, + "loss": 4.713451385498047, + "step": 593 + }, + { + "epoch": 8.251638269986893, + "grad_norm": 0.32445064187049866, + "learning_rate": 0.0006, + "loss": 4.725602149963379, + "step": 594 + }, + { + "epoch": 8.265618173875055, + "grad_norm": 0.32903164625167847, + "learning_rate": 0.0006, + "loss": 4.732064247131348, + "step": 595 + }, + { + "epoch": 8.279598077763215, + "grad_norm": 0.3166804313659668, + "learning_rate": 0.0006, + "loss": 4.678950786590576, + "step": 596 + }, + { + "epoch": 8.293577981651376, + "grad_norm": 0.2750290334224701, + "learning_rate": 0.0006, + "loss": 4.719513416290283, + "step": 597 + }, + { + "epoch": 8.307557885539538, + "grad_norm": 0.291029691696167, + "learning_rate": 0.0006, + "loss": 4.715405464172363, + "step": 598 + }, + { + "epoch": 8.321537789427698, + "grad_norm": 0.34105145931243896, + "learning_rate": 0.0006, + "loss": 4.722611427307129, + "step": 599 + }, + { + "epoch": 8.33551769331586, + "grad_norm": 0.3078882694244385, + "learning_rate": 0.0006, + "loss": 4.668856620788574, + "step": 600 + }, + { + "epoch": 8.349497597204019, + "grad_norm": 0.3218833804130554, + "learning_rate": 0.0006, + "loss": 4.719579696655273, + "step": 601 + }, + { + "epoch": 8.36347750109218, + "grad_norm": 0.35716721415519714, + "learning_rate": 0.0006, + "loss": 4.690774440765381, + "step": 602 + }, + { + "epoch": 8.37745740498034, + "grad_norm": 0.3045452833175659, + "learning_rate": 0.0006, + "loss": 4.696503639221191, + "step": 603 + }, + { + "epoch": 8.391437308868502, + "grad_norm": 0.3127244710922241, + "learning_rate": 0.0006, + "loss": 4.701899528503418, + "step": 604 + }, + { + "epoch": 8.405417212756662, + "grad_norm": 0.34988710284233093, + "learning_rate": 0.0006, + "loss": 4.677641868591309, + "step": 605 + }, + { + "epoch": 8.419397116644824, + "grad_norm": 0.34035569429397583, + "learning_rate": 0.0006, + "loss": 4.707778453826904, + "step": 606 + }, + { + "epoch": 8.433377020532983, + "grad_norm": 0.3341112732887268, + "learning_rate": 0.0006, + "loss": 4.724853038787842, + "step": 607 + }, + { + "epoch": 8.447356924421145, + "grad_norm": 0.41744324564933777, + "learning_rate": 0.0006, + "loss": 4.680908203125, + "step": 608 + }, + { + "epoch": 8.461336828309305, + "grad_norm": 0.40402331948280334, + "learning_rate": 0.0006, + "loss": 4.726455211639404, + "step": 609 + }, + { + "epoch": 8.475316732197467, + "grad_norm": 0.4727570414543152, + "learning_rate": 0.0006, + "loss": 4.6793084144592285, + "step": 610 + }, + { + "epoch": 8.489296636085626, + "grad_norm": 0.43002694845199585, + "learning_rate": 0.0006, + "loss": 4.663918972015381, + "step": 611 + }, + { + "epoch": 8.503276539973788, + "grad_norm": 0.36124858260154724, + "learning_rate": 0.0006, + "loss": 4.657375335693359, + "step": 612 + }, + { + "epoch": 8.517256443861948, + "grad_norm": 0.37644803524017334, + "learning_rate": 0.0006, + "loss": 4.676977157592773, + "step": 613 + }, + { + "epoch": 8.53123634775011, + "grad_norm": 0.32347747683525085, + "learning_rate": 0.0006, + "loss": 4.708547115325928, + "step": 614 + }, + { + "epoch": 8.54521625163827, + "grad_norm": 0.3071717619895935, + "learning_rate": 0.0006, + "loss": 4.650189399719238, + "step": 615 + }, + { + "epoch": 8.55919615552643, + "grad_norm": 0.30222490429878235, + "learning_rate": 0.0006, + "loss": 4.647942543029785, + "step": 616 + }, + { + "epoch": 8.57317605941459, + "grad_norm": 0.31545212864875793, + "learning_rate": 0.0006, + "loss": 4.660242080688477, + "step": 617 + }, + { + "epoch": 8.587155963302752, + "grad_norm": 0.31644752621650696, + "learning_rate": 0.0006, + "loss": 4.666710376739502, + "step": 618 + }, + { + "epoch": 8.601135867190912, + "grad_norm": 0.26057198643684387, + "learning_rate": 0.0006, + "loss": 4.668096542358398, + "step": 619 + }, + { + "epoch": 8.615115771079074, + "grad_norm": 0.25473910570144653, + "learning_rate": 0.0006, + "loss": 4.641562461853027, + "step": 620 + }, + { + "epoch": 8.629095674967235, + "grad_norm": 0.2456732839345932, + "learning_rate": 0.0006, + "loss": 4.6545281410217285, + "step": 621 + }, + { + "epoch": 8.643075578855395, + "grad_norm": 0.25180476903915405, + "learning_rate": 0.0006, + "loss": 4.6506524085998535, + "step": 622 + }, + { + "epoch": 8.657055482743557, + "grad_norm": 0.21761579811573029, + "learning_rate": 0.0006, + "loss": 4.638909339904785, + "step": 623 + }, + { + "epoch": 8.671035386631717, + "grad_norm": 0.23590542376041412, + "learning_rate": 0.0006, + "loss": 4.6572747230529785, + "step": 624 + }, + { + "epoch": 8.685015290519878, + "grad_norm": 0.23870624601840973, + "learning_rate": 0.0006, + "loss": 4.643742084503174, + "step": 625 + }, + { + "epoch": 8.698995194408038, + "grad_norm": 0.2191203385591507, + "learning_rate": 0.0006, + "loss": 4.632617950439453, + "step": 626 + }, + { + "epoch": 8.7129750982962, + "grad_norm": 0.22107063233852386, + "learning_rate": 0.0006, + "loss": 4.625616073608398, + "step": 627 + }, + { + "epoch": 8.72695500218436, + "grad_norm": 0.20833902060985565, + "learning_rate": 0.0006, + "loss": 4.609896659851074, + "step": 628 + }, + { + "epoch": 8.740934906072521, + "grad_norm": 0.254967600107193, + "learning_rate": 0.0006, + "loss": 4.651735782623291, + "step": 629 + }, + { + "epoch": 8.754914809960681, + "grad_norm": 0.31587523221969604, + "learning_rate": 0.0006, + "loss": 4.6404032707214355, + "step": 630 + }, + { + "epoch": 8.768894713848843, + "grad_norm": 0.28598251938819885, + "learning_rate": 0.0006, + "loss": 4.602679252624512, + "step": 631 + }, + { + "epoch": 8.782874617737003, + "grad_norm": 0.23216590285301208, + "learning_rate": 0.0006, + "loss": 4.610319137573242, + "step": 632 + }, + { + "epoch": 8.796854521625164, + "grad_norm": 0.29212239384651184, + "learning_rate": 0.0006, + "loss": 4.600744247436523, + "step": 633 + }, + { + "epoch": 8.810834425513324, + "grad_norm": 0.3375801146030426, + "learning_rate": 0.0006, + "loss": 4.627819061279297, + "step": 634 + }, + { + "epoch": 8.824814329401486, + "grad_norm": 0.4207753837108612, + "learning_rate": 0.0006, + "loss": 4.634505271911621, + "step": 635 + }, + { + "epoch": 8.838794233289645, + "grad_norm": 0.4640173614025116, + "learning_rate": 0.0006, + "loss": 4.636714935302734, + "step": 636 + }, + { + "epoch": 8.852774137177807, + "grad_norm": 0.5255663990974426, + "learning_rate": 0.0006, + "loss": 4.659462928771973, + "step": 637 + }, + { + "epoch": 8.866754041065967, + "grad_norm": 0.5108268857002258, + "learning_rate": 0.0006, + "loss": 4.633192539215088, + "step": 638 + }, + { + "epoch": 8.880733944954128, + "grad_norm": 0.3821936845779419, + "learning_rate": 0.0006, + "loss": 4.621200084686279, + "step": 639 + }, + { + "epoch": 8.89471384884229, + "grad_norm": 0.3918485939502716, + "learning_rate": 0.0006, + "loss": 4.632599830627441, + "step": 640 + }, + { + "epoch": 8.90869375273045, + "grad_norm": 0.3416556119918823, + "learning_rate": 0.0006, + "loss": 4.620438098907471, + "step": 641 + }, + { + "epoch": 8.922673656618612, + "grad_norm": 0.3191553056240082, + "learning_rate": 0.0006, + "loss": 4.617823600769043, + "step": 642 + }, + { + "epoch": 8.936653560506771, + "grad_norm": 0.3368529677391052, + "learning_rate": 0.0006, + "loss": 4.617222785949707, + "step": 643 + }, + { + "epoch": 8.950633464394933, + "grad_norm": 0.3255428969860077, + "learning_rate": 0.0006, + "loss": 4.633878707885742, + "step": 644 + }, + { + "epoch": 8.964613368283093, + "grad_norm": 0.31394779682159424, + "learning_rate": 0.0006, + "loss": 4.642603874206543, + "step": 645 + }, + { + "epoch": 8.978593272171254, + "grad_norm": 0.29999351501464844, + "learning_rate": 0.0006, + "loss": 4.5925211906433105, + "step": 646 + }, + { + "epoch": 8.992573176059414, + "grad_norm": 0.309154748916626, + "learning_rate": 0.0006, + "loss": 4.61745023727417, + "step": 647 + }, + { + "epoch": 9.0, + "grad_norm": 0.2660452425479889, + "learning_rate": 0.0006, + "loss": 4.575107097625732, + "step": 648 + }, + { + "epoch": 9.0, + "eval_loss": 4.8804192543029785, + "eval_runtime": 45.0015, + "eval_samples_per_second": 54.265, + "eval_steps_per_second": 3.4, + "step": 648 + }, + { + "epoch": 9.013979903888162, + "grad_norm": 0.24159297347068787, + "learning_rate": 0.0006, + "loss": 4.571323871612549, + "step": 649 + }, + { + "epoch": 9.027959807776321, + "grad_norm": 0.2835831046104431, + "learning_rate": 0.0006, + "loss": 4.614255905151367, + "step": 650 + }, + { + "epoch": 9.041939711664483, + "grad_norm": 0.2646859288215637, + "learning_rate": 0.0006, + "loss": 4.578947067260742, + "step": 651 + }, + { + "epoch": 9.055919615552643, + "grad_norm": 0.28868553042411804, + "learning_rate": 0.0006, + "loss": 4.575977325439453, + "step": 652 + }, + { + "epoch": 9.069899519440805, + "grad_norm": 0.2899586856365204, + "learning_rate": 0.0006, + "loss": 4.541798114776611, + "step": 653 + }, + { + "epoch": 9.083879423328964, + "grad_norm": 0.32786068320274353, + "learning_rate": 0.0006, + "loss": 4.575140953063965, + "step": 654 + }, + { + "epoch": 9.097859327217126, + "grad_norm": 0.35675594210624695, + "learning_rate": 0.0006, + "loss": 4.58184814453125, + "step": 655 + }, + { + "epoch": 9.111839231105286, + "grad_norm": 0.3380381166934967, + "learning_rate": 0.0006, + "loss": 4.546271324157715, + "step": 656 + }, + { + "epoch": 9.125819134993447, + "grad_norm": 0.3035511374473572, + "learning_rate": 0.0006, + "loss": 4.591629981994629, + "step": 657 + }, + { + "epoch": 9.139799038881607, + "grad_norm": 0.2733091711997986, + "learning_rate": 0.0006, + "loss": 4.559020042419434, + "step": 658 + }, + { + "epoch": 9.153778942769769, + "grad_norm": 0.2870676815509796, + "learning_rate": 0.0006, + "loss": 4.552787780761719, + "step": 659 + }, + { + "epoch": 9.167758846657929, + "grad_norm": 0.37471064925193787, + "learning_rate": 0.0006, + "loss": 4.572757244110107, + "step": 660 + }, + { + "epoch": 9.18173875054609, + "grad_norm": 0.37889063358306885, + "learning_rate": 0.0006, + "loss": 4.573302268981934, + "step": 661 + }, + { + "epoch": 9.19571865443425, + "grad_norm": 0.29983851313591003, + "learning_rate": 0.0006, + "loss": 4.571202754974365, + "step": 662 + }, + { + "epoch": 9.209698558322412, + "grad_norm": 0.27595147490501404, + "learning_rate": 0.0006, + "loss": 4.529508590698242, + "step": 663 + }, + { + "epoch": 9.223678462210572, + "grad_norm": 0.22693437337875366, + "learning_rate": 0.0006, + "loss": 4.572267532348633, + "step": 664 + }, + { + "epoch": 9.237658366098733, + "grad_norm": 0.27147138118743896, + "learning_rate": 0.0006, + "loss": 4.529747009277344, + "step": 665 + }, + { + "epoch": 9.251638269986893, + "grad_norm": 0.24952703714370728, + "learning_rate": 0.0006, + "loss": 4.553647994995117, + "step": 666 + }, + { + "epoch": 9.265618173875055, + "grad_norm": 0.3086707592010498, + "learning_rate": 0.0006, + "loss": 4.494636058807373, + "step": 667 + }, + { + "epoch": 9.279598077763215, + "grad_norm": 0.3265218138694763, + "learning_rate": 0.0006, + "loss": 4.522481918334961, + "step": 668 + }, + { + "epoch": 9.293577981651376, + "grad_norm": 0.2744608223438263, + "learning_rate": 0.0006, + "loss": 4.544595241546631, + "step": 669 + }, + { + "epoch": 9.307557885539538, + "grad_norm": 0.26698485016822815, + "learning_rate": 0.0006, + "loss": 4.506407260894775, + "step": 670 + }, + { + "epoch": 9.321537789427698, + "grad_norm": 0.2775942087173462, + "learning_rate": 0.0006, + "loss": 4.534619331359863, + "step": 671 + }, + { + "epoch": 9.33551769331586, + "grad_norm": 0.2421862781047821, + "learning_rate": 0.0006, + "loss": 4.523318290710449, + "step": 672 + }, + { + "epoch": 9.349497597204019, + "grad_norm": 0.2756497263908386, + "learning_rate": 0.0006, + "loss": 4.517561912536621, + "step": 673 + }, + { + "epoch": 9.36347750109218, + "grad_norm": 0.28845369815826416, + "learning_rate": 0.0006, + "loss": 4.530844688415527, + "step": 674 + }, + { + "epoch": 9.37745740498034, + "grad_norm": 0.32285866141319275, + "learning_rate": 0.0006, + "loss": 4.55369758605957, + "step": 675 + }, + { + "epoch": 9.391437308868502, + "grad_norm": 0.3726065754890442, + "learning_rate": 0.0006, + "loss": 4.524348258972168, + "step": 676 + }, + { + "epoch": 9.405417212756662, + "grad_norm": 0.39524078369140625, + "learning_rate": 0.0006, + "loss": 4.535778045654297, + "step": 677 + }, + { + "epoch": 9.419397116644824, + "grad_norm": 0.3859797716140747, + "learning_rate": 0.0006, + "loss": 4.538474082946777, + "step": 678 + }, + { + "epoch": 9.433377020532983, + "grad_norm": 0.36151406168937683, + "learning_rate": 0.0006, + "loss": 4.54434061050415, + "step": 679 + }, + { + "epoch": 9.447356924421145, + "grad_norm": 0.40345999598503113, + "learning_rate": 0.0006, + "loss": 4.532961845397949, + "step": 680 + }, + { + "epoch": 9.461336828309305, + "grad_norm": 0.38864144682884216, + "learning_rate": 0.0006, + "loss": 4.567630767822266, + "step": 681 + }, + { + "epoch": 9.475316732197467, + "grad_norm": 0.3816355764865875, + "learning_rate": 0.0006, + "loss": 4.535771369934082, + "step": 682 + }, + { + "epoch": 9.489296636085626, + "grad_norm": 0.38756558299064636, + "learning_rate": 0.0006, + "loss": 4.4971089363098145, + "step": 683 + }, + { + "epoch": 9.503276539973788, + "grad_norm": 0.4572933614253998, + "learning_rate": 0.0006, + "loss": 4.534860134124756, + "step": 684 + }, + { + "epoch": 9.517256443861948, + "grad_norm": 0.42368650436401367, + "learning_rate": 0.0006, + "loss": 4.542638301849365, + "step": 685 + }, + { + "epoch": 9.53123634775011, + "grad_norm": 0.36939486861228943, + "learning_rate": 0.0006, + "loss": 4.571430206298828, + "step": 686 + }, + { + "epoch": 9.54521625163827, + "grad_norm": 0.3900398313999176, + "learning_rate": 0.0006, + "loss": 4.544435501098633, + "step": 687 + }, + { + "epoch": 9.55919615552643, + "grad_norm": 0.37829288840293884, + "learning_rate": 0.0006, + "loss": 4.564268112182617, + "step": 688 + }, + { + "epoch": 9.57317605941459, + "grad_norm": 0.3553886115550995, + "learning_rate": 0.0006, + "loss": 4.5373430252075195, + "step": 689 + }, + { + "epoch": 9.587155963302752, + "grad_norm": 0.3613419532775879, + "learning_rate": 0.0006, + "loss": 4.559074401855469, + "step": 690 + }, + { + "epoch": 9.601135867190912, + "grad_norm": 0.32644546031951904, + "learning_rate": 0.0006, + "loss": 4.533667087554932, + "step": 691 + }, + { + "epoch": 9.615115771079074, + "grad_norm": 0.3264399468898773, + "learning_rate": 0.0006, + "loss": 4.508299350738525, + "step": 692 + }, + { + "epoch": 9.629095674967235, + "grad_norm": 0.3534526526927948, + "learning_rate": 0.0006, + "loss": 4.542442798614502, + "step": 693 + }, + { + "epoch": 9.643075578855395, + "grad_norm": 0.3333452343940735, + "learning_rate": 0.0006, + "loss": 4.497692584991455, + "step": 694 + }, + { + "epoch": 9.657055482743557, + "grad_norm": 0.3214292526245117, + "learning_rate": 0.0006, + "loss": 4.512363433837891, + "step": 695 + }, + { + "epoch": 9.671035386631717, + "grad_norm": 0.2805672585964203, + "learning_rate": 0.0006, + "loss": 4.496874809265137, + "step": 696 + }, + { + "epoch": 9.685015290519878, + "grad_norm": 0.2618725895881653, + "learning_rate": 0.0006, + "loss": 4.51375675201416, + "step": 697 + }, + { + "epoch": 9.698995194408038, + "grad_norm": 0.2556597888469696, + "learning_rate": 0.0006, + "loss": 4.512338638305664, + "step": 698 + }, + { + "epoch": 9.7129750982962, + "grad_norm": 0.23784305155277252, + "learning_rate": 0.0006, + "loss": 4.486503601074219, + "step": 699 + }, + { + "epoch": 9.72695500218436, + "grad_norm": 0.2240338921546936, + "learning_rate": 0.0006, + "loss": 4.486850261688232, + "step": 700 + }, + { + "epoch": 9.740934906072521, + "grad_norm": 0.24686725437641144, + "learning_rate": 0.0006, + "loss": 4.501359462738037, + "step": 701 + }, + { + "epoch": 9.754914809960681, + "grad_norm": 0.20819595456123352, + "learning_rate": 0.0006, + "loss": 4.495186805725098, + "step": 702 + }, + { + "epoch": 9.768894713848843, + "grad_norm": 0.21858957409858704, + "learning_rate": 0.0006, + "loss": 4.475093364715576, + "step": 703 + }, + { + "epoch": 9.782874617737003, + "grad_norm": 0.22676466405391693, + "learning_rate": 0.0006, + "loss": 4.4702534675598145, + "step": 704 + }, + { + "epoch": 9.796854521625164, + "grad_norm": 0.18317611515522003, + "learning_rate": 0.0006, + "loss": 4.471231937408447, + "step": 705 + }, + { + "epoch": 9.810834425513324, + "grad_norm": 0.20979148149490356, + "learning_rate": 0.0006, + "loss": 4.454103946685791, + "step": 706 + }, + { + "epoch": 9.824814329401486, + "grad_norm": 0.2146051526069641, + "learning_rate": 0.0006, + "loss": 4.505178928375244, + "step": 707 + }, + { + "epoch": 9.838794233289645, + "grad_norm": 0.2344852089881897, + "learning_rate": 0.0006, + "loss": 4.437984943389893, + "step": 708 + }, + { + "epoch": 9.852774137177807, + "grad_norm": 0.26532089710235596, + "learning_rate": 0.0006, + "loss": 4.477126121520996, + "step": 709 + }, + { + "epoch": 9.866754041065967, + "grad_norm": 0.2737913131713867, + "learning_rate": 0.0006, + "loss": 4.498421669006348, + "step": 710 + }, + { + "epoch": 9.880733944954128, + "grad_norm": 0.26651278138160706, + "learning_rate": 0.0006, + "loss": 4.480839729309082, + "step": 711 + }, + { + "epoch": 9.89471384884229, + "grad_norm": 0.26576584577560425, + "learning_rate": 0.0006, + "loss": 4.490936279296875, + "step": 712 + }, + { + "epoch": 9.90869375273045, + "grad_norm": 0.22483965754508972, + "learning_rate": 0.0006, + "loss": 4.477953910827637, + "step": 713 + }, + { + "epoch": 9.922673656618612, + "grad_norm": 0.23576045036315918, + "learning_rate": 0.0006, + "loss": 4.4731292724609375, + "step": 714 + }, + { + "epoch": 9.936653560506771, + "grad_norm": 0.2731139361858368, + "learning_rate": 0.0006, + "loss": 4.441622734069824, + "step": 715 + }, + { + "epoch": 9.950633464394933, + "grad_norm": 0.2677643597126007, + "learning_rate": 0.0006, + "loss": 4.49604606628418, + "step": 716 + }, + { + "epoch": 9.964613368283093, + "grad_norm": 0.21940895915031433, + "learning_rate": 0.0006, + "loss": 4.485573768615723, + "step": 717 + }, + { + "epoch": 9.978593272171254, + "grad_norm": 0.2060987651348114, + "learning_rate": 0.0006, + "loss": 4.482657432556152, + "step": 718 + }, + { + "epoch": 9.992573176059414, + "grad_norm": 0.22163978219032288, + "learning_rate": 0.0006, + "loss": 4.478459358215332, + "step": 719 + }, + { + "epoch": 10.0, + "grad_norm": 0.2505086064338684, + "learning_rate": 0.0006, + "loss": 4.4393510818481445, + "step": 720 + }, + { + "epoch": 10.0, + "eval_loss": 4.695676803588867, + "eval_runtime": 49.0751, + "eval_samples_per_second": 49.76, + "eval_steps_per_second": 3.118, + "step": 720 + }, + { + "epoch": 10.013979903888162, + "grad_norm": 0.23820190131664276, + "learning_rate": 0.0006, + "loss": 4.437685489654541, + "step": 721 + }, + { + "epoch": 10.027959807776321, + "grad_norm": 0.2220371812582016, + "learning_rate": 0.0006, + "loss": 4.449873924255371, + "step": 722 + }, + { + "epoch": 10.041939711664483, + "grad_norm": 0.20369848608970642, + "learning_rate": 0.0006, + "loss": 4.448882579803467, + "step": 723 + }, + { + "epoch": 10.055919615552643, + "grad_norm": 0.2360001504421234, + "learning_rate": 0.0006, + "loss": 4.399251937866211, + "step": 724 + }, + { + "epoch": 10.069899519440805, + "grad_norm": 0.23537491261959076, + "learning_rate": 0.0006, + "loss": 4.442960739135742, + "step": 725 + }, + { + "epoch": 10.083879423328964, + "grad_norm": 0.24433870613574982, + "learning_rate": 0.0006, + "loss": 4.44808292388916, + "step": 726 + }, + { + "epoch": 10.097859327217126, + "grad_norm": 0.3406696021556854, + "learning_rate": 0.0006, + "loss": 4.443426132202148, + "step": 727 + }, + { + "epoch": 10.111839231105286, + "grad_norm": 0.4102286100387573, + "learning_rate": 0.0006, + "loss": 4.424919605255127, + "step": 728 + }, + { + "epoch": 10.125819134993447, + "grad_norm": 0.36462604999542236, + "learning_rate": 0.0006, + "loss": 4.45366907119751, + "step": 729 + }, + { + "epoch": 10.139799038881607, + "grad_norm": 0.4374827444553375, + "learning_rate": 0.0006, + "loss": 4.415630340576172, + "step": 730 + }, + { + "epoch": 10.153778942769769, + "grad_norm": 0.45248138904571533, + "learning_rate": 0.0006, + "loss": 4.448849678039551, + "step": 731 + }, + { + "epoch": 10.167758846657929, + "grad_norm": 0.3806457221508026, + "learning_rate": 0.0006, + "loss": 4.443390846252441, + "step": 732 + }, + { + "epoch": 10.18173875054609, + "grad_norm": 0.3491523861885071, + "learning_rate": 0.0006, + "loss": 4.4648637771606445, + "step": 733 + }, + { + "epoch": 10.19571865443425, + "grad_norm": 0.3327210247516632, + "learning_rate": 0.0006, + "loss": 4.460919380187988, + "step": 734 + }, + { + "epoch": 10.209698558322412, + "grad_norm": 0.29772236943244934, + "learning_rate": 0.0006, + "loss": 4.45159912109375, + "step": 735 + }, + { + "epoch": 10.223678462210572, + "grad_norm": 0.33083397150039673, + "learning_rate": 0.0006, + "loss": 4.463382720947266, + "step": 736 + }, + { + "epoch": 10.237658366098733, + "grad_norm": 0.3930598795413971, + "learning_rate": 0.0006, + "loss": 4.434510231018066, + "step": 737 + }, + { + "epoch": 10.251638269986893, + "grad_norm": 0.4342896044254303, + "learning_rate": 0.0006, + "loss": 4.451700210571289, + "step": 738 + }, + { + "epoch": 10.265618173875055, + "grad_norm": 0.4544043242931366, + "learning_rate": 0.0006, + "loss": 4.437224388122559, + "step": 739 + }, + { + "epoch": 10.279598077763215, + "grad_norm": 0.4487038254737854, + "learning_rate": 0.0006, + "loss": 4.46157693862915, + "step": 740 + }, + { + "epoch": 10.293577981651376, + "grad_norm": 0.4420500695705414, + "learning_rate": 0.0006, + "loss": 4.399561405181885, + "step": 741 + }, + { + "epoch": 10.307557885539538, + "grad_norm": 0.4167289435863495, + "learning_rate": 0.0006, + "loss": 4.41792106628418, + "step": 742 + }, + { + "epoch": 10.321537789427698, + "grad_norm": 0.3186971843242645, + "learning_rate": 0.0006, + "loss": 4.435683250427246, + "step": 743 + }, + { + "epoch": 10.33551769331586, + "grad_norm": 0.3077184855937958, + "learning_rate": 0.0006, + "loss": 4.481947898864746, + "step": 744 + }, + { + "epoch": 10.349497597204019, + "grad_norm": 0.26811280846595764, + "learning_rate": 0.0006, + "loss": 4.4339447021484375, + "step": 745 + }, + { + "epoch": 10.36347750109218, + "grad_norm": 0.28448057174682617, + "learning_rate": 0.0006, + "loss": 4.441644668579102, + "step": 746 + }, + { + "epoch": 10.37745740498034, + "grad_norm": 0.30731502175331116, + "learning_rate": 0.0006, + "loss": 4.428773880004883, + "step": 747 + }, + { + "epoch": 10.391437308868502, + "grad_norm": 0.28036001324653625, + "learning_rate": 0.0006, + "loss": 4.4433135986328125, + "step": 748 + }, + { + "epoch": 10.405417212756662, + "grad_norm": 0.2882847189903259, + "learning_rate": 0.0006, + "loss": 4.433401107788086, + "step": 749 + }, + { + "epoch": 10.419397116644824, + "grad_norm": 0.23622776567935944, + "learning_rate": 0.0006, + "loss": 4.444611549377441, + "step": 750 + }, + { + "epoch": 10.433377020532983, + "grad_norm": 0.2306167632341385, + "learning_rate": 0.0006, + "loss": 4.397875785827637, + "step": 751 + }, + { + "epoch": 10.447356924421145, + "grad_norm": 0.22725090384483337, + "learning_rate": 0.0006, + "loss": 4.429759502410889, + "step": 752 + }, + { + "epoch": 10.461336828309305, + "grad_norm": 0.250709593296051, + "learning_rate": 0.0006, + "loss": 4.415618896484375, + "step": 753 + }, + { + "epoch": 10.475316732197467, + "grad_norm": 0.22341276705265045, + "learning_rate": 0.0006, + "loss": 4.389362335205078, + "step": 754 + }, + { + "epoch": 10.489296636085626, + "grad_norm": 0.22595296800136566, + "learning_rate": 0.0006, + "loss": 4.383584022521973, + "step": 755 + }, + { + "epoch": 10.503276539973788, + "grad_norm": 0.24277575314044952, + "learning_rate": 0.0006, + "loss": 4.403777599334717, + "step": 756 + }, + { + "epoch": 10.517256443861948, + "grad_norm": 0.2670708894729614, + "learning_rate": 0.0006, + "loss": 4.398499011993408, + "step": 757 + }, + { + "epoch": 10.53123634775011, + "grad_norm": 0.2640696167945862, + "learning_rate": 0.0006, + "loss": 4.426726818084717, + "step": 758 + }, + { + "epoch": 10.54521625163827, + "grad_norm": 0.2248653769493103, + "learning_rate": 0.0006, + "loss": 4.400103569030762, + "step": 759 + }, + { + "epoch": 10.55919615552643, + "grad_norm": 0.21466240286827087, + "learning_rate": 0.0006, + "loss": 4.404158592224121, + "step": 760 + }, + { + "epoch": 10.57317605941459, + "grad_norm": 0.236923947930336, + "learning_rate": 0.0006, + "loss": 4.37059211730957, + "step": 761 + }, + { + "epoch": 10.587155963302752, + "grad_norm": 0.2515387535095215, + "learning_rate": 0.0006, + "loss": 4.415055274963379, + "step": 762 + }, + { + "epoch": 10.601135867190912, + "grad_norm": 0.23461885750293732, + "learning_rate": 0.0006, + "loss": 4.375036239624023, + "step": 763 + }, + { + "epoch": 10.615115771079074, + "grad_norm": 0.20975761115550995, + "learning_rate": 0.0006, + "loss": 4.3903398513793945, + "step": 764 + }, + { + "epoch": 10.629095674967235, + "grad_norm": 0.19859997928142548, + "learning_rate": 0.0006, + "loss": 4.379380226135254, + "step": 765 + }, + { + "epoch": 10.643075578855395, + "grad_norm": 0.22310325503349304, + "learning_rate": 0.0006, + "loss": 4.382110595703125, + "step": 766 + }, + { + "epoch": 10.657055482743557, + "grad_norm": 0.23940646648406982, + "learning_rate": 0.0006, + "loss": 4.393403053283691, + "step": 767 + }, + { + "epoch": 10.671035386631717, + "grad_norm": 0.2230468988418579, + "learning_rate": 0.0006, + "loss": 4.391970634460449, + "step": 768 + }, + { + "epoch": 10.685015290519878, + "grad_norm": 0.18139775097370148, + "learning_rate": 0.0006, + "loss": 4.399993896484375, + "step": 769 + }, + { + "epoch": 10.698995194408038, + "grad_norm": 0.19936902821063995, + "learning_rate": 0.0006, + "loss": 4.373854160308838, + "step": 770 + }, + { + "epoch": 10.7129750982962, + "grad_norm": 0.22132465243339539, + "learning_rate": 0.0006, + "loss": 4.377530097961426, + "step": 771 + }, + { + "epoch": 10.72695500218436, + "grad_norm": 0.24254944920539856, + "learning_rate": 0.0006, + "loss": 4.398683547973633, + "step": 772 + }, + { + "epoch": 10.740934906072521, + "grad_norm": 0.2666397988796234, + "learning_rate": 0.0006, + "loss": 4.3879899978637695, + "step": 773 + }, + { + "epoch": 10.754914809960681, + "grad_norm": 0.24728631973266602, + "learning_rate": 0.0006, + "loss": 4.356976509094238, + "step": 774 + }, + { + "epoch": 10.768894713848843, + "grad_norm": 0.2612453103065491, + "learning_rate": 0.0006, + "loss": 4.391525745391846, + "step": 775 + }, + { + "epoch": 10.782874617737003, + "grad_norm": 0.24060510098934174, + "learning_rate": 0.0006, + "loss": 4.376985549926758, + "step": 776 + }, + { + "epoch": 10.796854521625164, + "grad_norm": 0.22708238661289215, + "learning_rate": 0.0006, + "loss": 4.368545055389404, + "step": 777 + }, + { + "epoch": 10.810834425513324, + "grad_norm": 0.26931291818618774, + "learning_rate": 0.0006, + "loss": 4.369227409362793, + "step": 778 + }, + { + "epoch": 10.824814329401486, + "grad_norm": 0.265288770198822, + "learning_rate": 0.0006, + "loss": 4.378131866455078, + "step": 779 + }, + { + "epoch": 10.838794233289645, + "grad_norm": 0.3015305697917938, + "learning_rate": 0.0006, + "loss": 4.376267910003662, + "step": 780 + }, + { + "epoch": 10.852774137177807, + "grad_norm": 0.3345746099948883, + "learning_rate": 0.0006, + "loss": 4.3751420974731445, + "step": 781 + }, + { + "epoch": 10.866754041065967, + "grad_norm": 0.32446005940437317, + "learning_rate": 0.0006, + "loss": 4.370899200439453, + "step": 782 + }, + { + "epoch": 10.880733944954128, + "grad_norm": 0.27070069313049316, + "learning_rate": 0.0006, + "loss": 4.391958236694336, + "step": 783 + }, + { + "epoch": 10.89471384884229, + "grad_norm": 0.25584667921066284, + "learning_rate": 0.0006, + "loss": 4.407493591308594, + "step": 784 + }, + { + "epoch": 10.90869375273045, + "grad_norm": 0.2710244655609131, + "learning_rate": 0.0006, + "loss": 4.374400615692139, + "step": 785 + }, + { + "epoch": 10.922673656618612, + "grad_norm": 0.32413622736930847, + "learning_rate": 0.0006, + "loss": 4.379607200622559, + "step": 786 + }, + { + "epoch": 10.936653560506771, + "grad_norm": 0.3253782391548157, + "learning_rate": 0.0006, + "loss": 4.376441955566406, + "step": 787 + }, + { + "epoch": 10.950633464394933, + "grad_norm": 0.30534613132476807, + "learning_rate": 0.0006, + "loss": 4.382739067077637, + "step": 788 + }, + { + "epoch": 10.964613368283093, + "grad_norm": 0.35726621747016907, + "learning_rate": 0.0006, + "loss": 4.3765869140625, + "step": 789 + }, + { + "epoch": 10.978593272171254, + "grad_norm": 0.32763028144836426, + "learning_rate": 0.0006, + "loss": 4.391537189483643, + "step": 790 + }, + { + "epoch": 10.992573176059414, + "grad_norm": 0.31811195611953735, + "learning_rate": 0.0006, + "loss": 4.371829032897949, + "step": 791 + }, + { + "epoch": 11.0, + "grad_norm": 0.37317267060279846, + "learning_rate": 0.0006, + "loss": 4.381916522979736, + "step": 792 + }, + { + "epoch": 11.0, + "eval_loss": 4.588687896728516, + "eval_runtime": 44.8041, + "eval_samples_per_second": 54.504, + "eval_steps_per_second": 3.415, + "step": 792 + }, + { + "epoch": 11.013979903888162, + "grad_norm": 0.37882938981056213, + "learning_rate": 0.0006, + "loss": 4.3463640213012695, + "step": 793 + }, + { + "epoch": 11.027959807776321, + "grad_norm": 0.34719496965408325, + "learning_rate": 0.0006, + "loss": 4.329861640930176, + "step": 794 + }, + { + "epoch": 11.041939711664483, + "grad_norm": 0.36161214113235474, + "learning_rate": 0.0006, + "loss": 4.3287835121154785, + "step": 795 + }, + { + "epoch": 11.055919615552643, + "grad_norm": 0.3743649125099182, + "learning_rate": 0.0006, + "loss": 4.334251403808594, + "step": 796 + }, + { + "epoch": 11.069899519440805, + "grad_norm": 0.32266443967819214, + "learning_rate": 0.0006, + "loss": 4.364782810211182, + "step": 797 + }, + { + "epoch": 11.083879423328964, + "grad_norm": 0.27460047602653503, + "learning_rate": 0.0006, + "loss": 4.348380088806152, + "step": 798 + }, + { + "epoch": 11.097859327217126, + "grad_norm": 0.30498892068862915, + "learning_rate": 0.0006, + "loss": 4.347856521606445, + "step": 799 + }, + { + "epoch": 11.111839231105286, + "grad_norm": 0.29740771651268005, + "learning_rate": 0.0006, + "loss": 4.343471050262451, + "step": 800 + }, + { + "epoch": 11.125819134993447, + "grad_norm": 0.3004681169986725, + "learning_rate": 0.0006, + "loss": 4.337590217590332, + "step": 801 + }, + { + "epoch": 11.139799038881607, + "grad_norm": 0.3000192642211914, + "learning_rate": 0.0006, + "loss": 4.349949836730957, + "step": 802 + }, + { + "epoch": 11.153778942769769, + "grad_norm": 0.27461889386177063, + "learning_rate": 0.0006, + "loss": 4.338934898376465, + "step": 803 + }, + { + "epoch": 11.167758846657929, + "grad_norm": 0.2856169641017914, + "learning_rate": 0.0006, + "loss": 4.320754051208496, + "step": 804 + }, + { + "epoch": 11.18173875054609, + "grad_norm": 0.29822713136672974, + "learning_rate": 0.0006, + "loss": 4.357949733734131, + "step": 805 + }, + { + "epoch": 11.19571865443425, + "grad_norm": 0.34061339497566223, + "learning_rate": 0.0006, + "loss": 4.327282905578613, + "step": 806 + }, + { + "epoch": 11.209698558322412, + "grad_norm": 0.3379063010215759, + "learning_rate": 0.0006, + "loss": 4.355471611022949, + "step": 807 + }, + { + "epoch": 11.223678462210572, + "grad_norm": 0.2859216630458832, + "learning_rate": 0.0006, + "loss": 4.352344989776611, + "step": 808 + }, + { + "epoch": 11.237658366098733, + "grad_norm": 0.29522669315338135, + "learning_rate": 0.0006, + "loss": 4.349186897277832, + "step": 809 + }, + { + "epoch": 11.251638269986893, + "grad_norm": 0.273798406124115, + "learning_rate": 0.0006, + "loss": 4.342379570007324, + "step": 810 + }, + { + "epoch": 11.265618173875055, + "grad_norm": 0.25298982858657837, + "learning_rate": 0.0006, + "loss": 4.358835220336914, + "step": 811 + }, + { + "epoch": 11.279598077763215, + "grad_norm": 0.2170463651418686, + "learning_rate": 0.0006, + "loss": 4.3422017097473145, + "step": 812 + }, + { + "epoch": 11.293577981651376, + "grad_norm": 0.24855731427669525, + "learning_rate": 0.0006, + "loss": 4.322849750518799, + "step": 813 + }, + { + "epoch": 11.307557885539538, + "grad_norm": 0.22564345598220825, + "learning_rate": 0.0006, + "loss": 4.316864967346191, + "step": 814 + }, + { + "epoch": 11.321537789427698, + "grad_norm": 0.21532197296619415, + "learning_rate": 0.0006, + "loss": 4.326743125915527, + "step": 815 + }, + { + "epoch": 11.33551769331586, + "grad_norm": 0.20514146983623505, + "learning_rate": 0.0006, + "loss": 4.326531887054443, + "step": 816 + }, + { + "epoch": 11.349497597204019, + "grad_norm": 0.19035090506076813, + "learning_rate": 0.0006, + "loss": 4.318154335021973, + "step": 817 + }, + { + "epoch": 11.36347750109218, + "grad_norm": 0.17889662086963654, + "learning_rate": 0.0006, + "loss": 4.35410213470459, + "step": 818 + }, + { + "epoch": 11.37745740498034, + "grad_norm": 0.20564863085746765, + "learning_rate": 0.0006, + "loss": 4.350226879119873, + "step": 819 + }, + { + "epoch": 11.391437308868502, + "grad_norm": 0.2412603348493576, + "learning_rate": 0.0006, + "loss": 4.325137138366699, + "step": 820 + }, + { + "epoch": 11.405417212756662, + "grad_norm": 0.2603496015071869, + "learning_rate": 0.0006, + "loss": 4.335752487182617, + "step": 821 + }, + { + "epoch": 11.419397116644824, + "grad_norm": 0.2968119978904724, + "learning_rate": 0.0006, + "loss": 4.3317670822143555, + "step": 822 + }, + { + "epoch": 11.433377020532983, + "grad_norm": 0.3280937969684601, + "learning_rate": 0.0006, + "loss": 4.322279453277588, + "step": 823 + }, + { + "epoch": 11.447356924421145, + "grad_norm": 0.3598847985267639, + "learning_rate": 0.0006, + "loss": 4.312255859375, + "step": 824 + }, + { + "epoch": 11.461336828309305, + "grad_norm": 0.3996485471725464, + "learning_rate": 0.0006, + "loss": 4.327103614807129, + "step": 825 + }, + { + "epoch": 11.475316732197467, + "grad_norm": 0.4352041780948639, + "learning_rate": 0.0006, + "loss": 4.368639945983887, + "step": 826 + }, + { + "epoch": 11.489296636085626, + "grad_norm": 0.4451918601989746, + "learning_rate": 0.0006, + "loss": 4.335113048553467, + "step": 827 + }, + { + "epoch": 11.503276539973788, + "grad_norm": 0.4403933584690094, + "learning_rate": 0.0006, + "loss": 4.369889259338379, + "step": 828 + }, + { + "epoch": 11.517256443861948, + "grad_norm": 0.34862443804740906, + "learning_rate": 0.0006, + "loss": 4.316292762756348, + "step": 829 + }, + { + "epoch": 11.53123634775011, + "grad_norm": 0.3240634500980377, + "learning_rate": 0.0006, + "loss": 4.328078746795654, + "step": 830 + }, + { + "epoch": 11.54521625163827, + "grad_norm": 0.2445751428604126, + "learning_rate": 0.0006, + "loss": 4.291940689086914, + "step": 831 + }, + { + "epoch": 11.55919615552643, + "grad_norm": 0.24376554787158966, + "learning_rate": 0.0006, + "loss": 4.339217662811279, + "step": 832 + }, + { + "epoch": 11.57317605941459, + "grad_norm": 0.22419725358486176, + "learning_rate": 0.0006, + "loss": 4.2887468338012695, + "step": 833 + }, + { + "epoch": 11.587155963302752, + "grad_norm": 0.22318261861801147, + "learning_rate": 0.0006, + "loss": 4.298492908477783, + "step": 834 + }, + { + "epoch": 11.601135867190912, + "grad_norm": 0.2357342392206192, + "learning_rate": 0.0006, + "loss": 4.328692436218262, + "step": 835 + }, + { + "epoch": 11.615115771079074, + "grad_norm": 0.25450602173805237, + "learning_rate": 0.0006, + "loss": 4.360058784484863, + "step": 836 + }, + { + "epoch": 11.629095674967235, + "grad_norm": 0.24540965259075165, + "learning_rate": 0.0006, + "loss": 4.311890602111816, + "step": 837 + }, + { + "epoch": 11.643075578855395, + "grad_norm": 0.2535638213157654, + "learning_rate": 0.0006, + "loss": 4.327730178833008, + "step": 838 + }, + { + "epoch": 11.657055482743557, + "grad_norm": 0.23063556849956512, + "learning_rate": 0.0006, + "loss": 4.303299903869629, + "step": 839 + }, + { + "epoch": 11.671035386631717, + "grad_norm": 0.21813632547855377, + "learning_rate": 0.0006, + "loss": 4.315352439880371, + "step": 840 + }, + { + "epoch": 11.685015290519878, + "grad_norm": 0.2170359194278717, + "learning_rate": 0.0006, + "loss": 4.278632164001465, + "step": 841 + }, + { + "epoch": 11.698995194408038, + "grad_norm": 0.21059377491474152, + "learning_rate": 0.0006, + "loss": 4.306049346923828, + "step": 842 + }, + { + "epoch": 11.7129750982962, + "grad_norm": 0.19872888922691345, + "learning_rate": 0.0006, + "loss": 4.3091535568237305, + "step": 843 + }, + { + "epoch": 11.72695500218436, + "grad_norm": 0.20059862732887268, + "learning_rate": 0.0006, + "loss": 4.2884063720703125, + "step": 844 + }, + { + "epoch": 11.740934906072521, + "grad_norm": 0.19952483475208282, + "learning_rate": 0.0006, + "loss": 4.293610572814941, + "step": 845 + }, + { + "epoch": 11.754914809960681, + "grad_norm": 0.19794537127017975, + "learning_rate": 0.0006, + "loss": 4.288822174072266, + "step": 846 + }, + { + "epoch": 11.768894713848843, + "grad_norm": 0.213914692401886, + "learning_rate": 0.0006, + "loss": 4.320849418640137, + "step": 847 + }, + { + "epoch": 11.782874617737003, + "grad_norm": 0.18500955402851105, + "learning_rate": 0.0006, + "loss": 4.29300594329834, + "step": 848 + }, + { + "epoch": 11.796854521625164, + "grad_norm": 0.19446656107902527, + "learning_rate": 0.0006, + "loss": 4.3079352378845215, + "step": 849 + }, + { + "epoch": 11.810834425513324, + "grad_norm": 0.22191768884658813, + "learning_rate": 0.0006, + "loss": 4.295967102050781, + "step": 850 + }, + { + "epoch": 11.824814329401486, + "grad_norm": 0.20748084783554077, + "learning_rate": 0.0006, + "loss": 4.332365989685059, + "step": 851 + }, + { + "epoch": 11.838794233289645, + "grad_norm": 0.20993955433368683, + "learning_rate": 0.0006, + "loss": 4.294618129730225, + "step": 852 + }, + { + "epoch": 11.852774137177807, + "grad_norm": 0.23506952822208405, + "learning_rate": 0.0006, + "loss": 4.313426971435547, + "step": 853 + }, + { + "epoch": 11.866754041065967, + "grad_norm": 0.2379443347454071, + "learning_rate": 0.0006, + "loss": 4.297664642333984, + "step": 854 + }, + { + "epoch": 11.880733944954128, + "grad_norm": 0.2127852737903595, + "learning_rate": 0.0006, + "loss": 4.2807698249816895, + "step": 855 + }, + { + "epoch": 11.89471384884229, + "grad_norm": 0.2125532180070877, + "learning_rate": 0.0006, + "loss": 4.310990333557129, + "step": 856 + }, + { + "epoch": 11.90869375273045, + "grad_norm": 0.1996062994003296, + "learning_rate": 0.0006, + "loss": 4.253237724304199, + "step": 857 + }, + { + "epoch": 11.922673656618612, + "grad_norm": 0.20747603476047516, + "learning_rate": 0.0006, + "loss": 4.294193267822266, + "step": 858 + }, + { + "epoch": 11.936653560506771, + "grad_norm": 0.24082425236701965, + "learning_rate": 0.0006, + "loss": 4.269967079162598, + "step": 859 + }, + { + "epoch": 11.950633464394933, + "grad_norm": 0.28993573784828186, + "learning_rate": 0.0006, + "loss": 4.294550895690918, + "step": 860 + }, + { + "epoch": 11.964613368283093, + "grad_norm": 0.29576948285102844, + "learning_rate": 0.0006, + "loss": 4.3188252449035645, + "step": 861 + }, + { + "epoch": 11.978593272171254, + "grad_norm": 0.2754935026168823, + "learning_rate": 0.0006, + "loss": 4.312817573547363, + "step": 862 + }, + { + "epoch": 11.992573176059414, + "grad_norm": 0.3062523305416107, + "learning_rate": 0.0006, + "loss": 4.288214683532715, + "step": 863 + }, + { + "epoch": 12.0, + "grad_norm": 0.3367644250392914, + "learning_rate": 0.0006, + "loss": 4.314888954162598, + "step": 864 + }, + { + "epoch": 12.0, + "eval_loss": 4.516861438751221, + "eval_runtime": 44.2584, + "eval_samples_per_second": 55.176, + "eval_steps_per_second": 3.457, + "step": 864 + }, + { + "epoch": 12.013979903888162, + "grad_norm": 0.2976512014865875, + "learning_rate": 0.0006, + "loss": 4.278797149658203, + "step": 865 + }, + { + "epoch": 12.027959807776321, + "grad_norm": 0.32217127084732056, + "learning_rate": 0.0006, + "loss": 4.2823615074157715, + "step": 866 + }, + { + "epoch": 12.041939711664483, + "grad_norm": 0.31538400053977966, + "learning_rate": 0.0006, + "loss": 4.252805709838867, + "step": 867 + }, + { + "epoch": 12.055919615552643, + "grad_norm": 0.3501375913619995, + "learning_rate": 0.0006, + "loss": 4.276501655578613, + "step": 868 + }, + { + "epoch": 12.069899519440805, + "grad_norm": 0.3452056646347046, + "learning_rate": 0.0006, + "loss": 4.275739669799805, + "step": 869 + }, + { + "epoch": 12.083879423328964, + "grad_norm": 0.36963316798210144, + "learning_rate": 0.0006, + "loss": 4.3215227127075195, + "step": 870 + }, + { + "epoch": 12.097859327217126, + "grad_norm": 0.41605016589164734, + "learning_rate": 0.0006, + "loss": 4.28739595413208, + "step": 871 + }, + { + "epoch": 12.111839231105286, + "grad_norm": 0.37700653076171875, + "learning_rate": 0.0006, + "loss": 4.291154861450195, + "step": 872 + }, + { + "epoch": 12.125819134993447, + "grad_norm": 0.3194253444671631, + "learning_rate": 0.0006, + "loss": 4.259326934814453, + "step": 873 + }, + { + "epoch": 12.139799038881607, + "grad_norm": 0.31770631670951843, + "learning_rate": 0.0006, + "loss": 4.270082473754883, + "step": 874 + }, + { + "epoch": 12.153778942769769, + "grad_norm": 0.3748120069503784, + "learning_rate": 0.0006, + "loss": 4.2727274894714355, + "step": 875 + }, + { + "epoch": 12.167758846657929, + "grad_norm": 0.3821348547935486, + "learning_rate": 0.0006, + "loss": 4.2848286628723145, + "step": 876 + }, + { + "epoch": 12.18173875054609, + "grad_norm": 0.31894201040267944, + "learning_rate": 0.0006, + "loss": 4.289551258087158, + "step": 877 + }, + { + "epoch": 12.19571865443425, + "grad_norm": 0.2695826292037964, + "learning_rate": 0.0006, + "loss": 4.2797346115112305, + "step": 878 + }, + { + "epoch": 12.209698558322412, + "grad_norm": 0.23966269195079803, + "learning_rate": 0.0006, + "loss": 4.24021577835083, + "step": 879 + }, + { + "epoch": 12.223678462210572, + "grad_norm": 0.24342599511146545, + "learning_rate": 0.0006, + "loss": 4.277721881866455, + "step": 880 + }, + { + "epoch": 12.237658366098733, + "grad_norm": 0.2522958815097809, + "learning_rate": 0.0006, + "loss": 4.263946533203125, + "step": 881 + }, + { + "epoch": 12.251638269986893, + "grad_norm": 0.2708299458026886, + "learning_rate": 0.0006, + "loss": 4.274540901184082, + "step": 882 + }, + { + "epoch": 12.265618173875055, + "grad_norm": 0.2978788912296295, + "learning_rate": 0.0006, + "loss": 4.2674970626831055, + "step": 883 + }, + { + "epoch": 12.279598077763215, + "grad_norm": 0.2898774743080139, + "learning_rate": 0.0006, + "loss": 4.235060691833496, + "step": 884 + }, + { + "epoch": 12.293577981651376, + "grad_norm": 0.27941837906837463, + "learning_rate": 0.0006, + "loss": 4.284140586853027, + "step": 885 + }, + { + "epoch": 12.307557885539538, + "grad_norm": 0.25050559639930725, + "learning_rate": 0.0006, + "loss": 4.270134925842285, + "step": 886 + }, + { + "epoch": 12.321537789427698, + "grad_norm": 0.21867156028747559, + "learning_rate": 0.0006, + "loss": 4.241571426391602, + "step": 887 + }, + { + "epoch": 12.33551769331586, + "grad_norm": 0.24735847115516663, + "learning_rate": 0.0006, + "loss": 4.253087997436523, + "step": 888 + }, + { + "epoch": 12.349497597204019, + "grad_norm": 0.23069104552268982, + "learning_rate": 0.0006, + "loss": 4.258606910705566, + "step": 889 + }, + { + "epoch": 12.36347750109218, + "grad_norm": 0.2594369947910309, + "learning_rate": 0.0006, + "loss": 4.307351112365723, + "step": 890 + }, + { + "epoch": 12.37745740498034, + "grad_norm": 0.25349098443984985, + "learning_rate": 0.0006, + "loss": 4.264268398284912, + "step": 891 + }, + { + "epoch": 12.391437308868502, + "grad_norm": 0.2550840675830841, + "learning_rate": 0.0006, + "loss": 4.247092247009277, + "step": 892 + }, + { + "epoch": 12.405417212756662, + "grad_norm": 0.2107602059841156, + "learning_rate": 0.0006, + "loss": 4.240527153015137, + "step": 893 + }, + { + "epoch": 12.419397116644824, + "grad_norm": 0.2025548368692398, + "learning_rate": 0.0006, + "loss": 4.244686126708984, + "step": 894 + }, + { + "epoch": 12.433377020532983, + "grad_norm": 0.22061701118946075, + "learning_rate": 0.0006, + "loss": 4.233231544494629, + "step": 895 + }, + { + "epoch": 12.447356924421145, + "grad_norm": 0.19503085315227509, + "learning_rate": 0.0006, + "loss": 4.23851203918457, + "step": 896 + }, + { + "epoch": 12.461336828309305, + "grad_norm": 0.19313643872737885, + "learning_rate": 0.0006, + "loss": 4.190886497497559, + "step": 897 + }, + { + "epoch": 12.475316732197467, + "grad_norm": 0.21094176173210144, + "learning_rate": 0.0006, + "loss": 4.277888298034668, + "step": 898 + }, + { + "epoch": 12.489296636085626, + "grad_norm": 0.1980651170015335, + "learning_rate": 0.0006, + "loss": 4.251066207885742, + "step": 899 + }, + { + "epoch": 12.503276539973788, + "grad_norm": 0.179737389087677, + "learning_rate": 0.0006, + "loss": 4.194703102111816, + "step": 900 + }, + { + "epoch": 12.517256443861948, + "grad_norm": 0.19069281220436096, + "learning_rate": 0.0006, + "loss": 4.242412567138672, + "step": 901 + }, + { + "epoch": 12.53123634775011, + "grad_norm": 0.191154345870018, + "learning_rate": 0.0006, + "loss": 4.2432780265808105, + "step": 902 + }, + { + "epoch": 12.54521625163827, + "grad_norm": 0.19760103523731232, + "learning_rate": 0.0006, + "loss": 4.23294734954834, + "step": 903 + }, + { + "epoch": 12.55919615552643, + "grad_norm": 0.19982324540615082, + "learning_rate": 0.0006, + "loss": 4.249764442443848, + "step": 904 + }, + { + "epoch": 12.57317605941459, + "grad_norm": 0.1986108422279358, + "learning_rate": 0.0006, + "loss": 4.213435649871826, + "step": 905 + }, + { + "epoch": 12.587155963302752, + "grad_norm": 0.19727319478988647, + "learning_rate": 0.0006, + "loss": 4.247962951660156, + "step": 906 + }, + { + "epoch": 12.601135867190912, + "grad_norm": 0.23404482007026672, + "learning_rate": 0.0006, + "loss": 4.237396240234375, + "step": 907 + }, + { + "epoch": 12.615115771079074, + "grad_norm": 0.21136441826820374, + "learning_rate": 0.0006, + "loss": 4.236040115356445, + "step": 908 + }, + { + "epoch": 12.629095674967235, + "grad_norm": 0.2209048718214035, + "learning_rate": 0.0006, + "loss": 4.234212875366211, + "step": 909 + }, + { + "epoch": 12.643075578855395, + "grad_norm": 0.22120307385921478, + "learning_rate": 0.0006, + "loss": 4.2711076736450195, + "step": 910 + }, + { + "epoch": 12.657055482743557, + "grad_norm": 0.22733066976070404, + "learning_rate": 0.0006, + "loss": 4.231651306152344, + "step": 911 + }, + { + "epoch": 12.671035386631717, + "grad_norm": 0.2435602843761444, + "learning_rate": 0.0006, + "loss": 4.249372482299805, + "step": 912 + }, + { + "epoch": 12.685015290519878, + "grad_norm": 0.28881654143333435, + "learning_rate": 0.0006, + "loss": 4.2626051902771, + "step": 913 + }, + { + "epoch": 12.698995194408038, + "grad_norm": 0.3211199641227722, + "learning_rate": 0.0006, + "loss": 4.254220485687256, + "step": 914 + }, + { + "epoch": 12.7129750982962, + "grad_norm": 0.3118100166320801, + "learning_rate": 0.0006, + "loss": 4.233747959136963, + "step": 915 + }, + { + "epoch": 12.72695500218436, + "grad_norm": 0.33411866426467896, + "learning_rate": 0.0006, + "loss": 4.270386219024658, + "step": 916 + }, + { + "epoch": 12.740934906072521, + "grad_norm": 0.2968253195285797, + "learning_rate": 0.0006, + "loss": 4.242254257202148, + "step": 917 + }, + { + "epoch": 12.754914809960681, + "grad_norm": 0.2959132194519043, + "learning_rate": 0.0006, + "loss": 4.232100486755371, + "step": 918 + }, + { + "epoch": 12.768894713848843, + "grad_norm": 0.2729283273220062, + "learning_rate": 0.0006, + "loss": 4.233869552612305, + "step": 919 + }, + { + "epoch": 12.782874617737003, + "grad_norm": 0.2669033408164978, + "learning_rate": 0.0006, + "loss": 4.261008262634277, + "step": 920 + }, + { + "epoch": 12.796854521625164, + "grad_norm": 0.2738507091999054, + "learning_rate": 0.0006, + "loss": 4.2286763191223145, + "step": 921 + }, + { + "epoch": 12.810834425513324, + "grad_norm": 0.29105183482170105, + "learning_rate": 0.0006, + "loss": 4.281410217285156, + "step": 922 + }, + { + "epoch": 12.824814329401486, + "grad_norm": 0.31330201029777527, + "learning_rate": 0.0006, + "loss": 4.264181613922119, + "step": 923 + }, + { + "epoch": 12.838794233289645, + "grad_norm": 0.31324025988578796, + "learning_rate": 0.0006, + "loss": 4.250385284423828, + "step": 924 + }, + { + "epoch": 12.852774137177807, + "grad_norm": 0.2727925181388855, + "learning_rate": 0.0006, + "loss": 4.24821138381958, + "step": 925 + }, + { + "epoch": 12.866754041065967, + "grad_norm": 0.27350082993507385, + "learning_rate": 0.0006, + "loss": 4.230215072631836, + "step": 926 + }, + { + "epoch": 12.880733944954128, + "grad_norm": 0.2269950658082962, + "learning_rate": 0.0006, + "loss": 4.210305213928223, + "step": 927 + }, + { + "epoch": 12.89471384884229, + "grad_norm": 0.24667619168758392, + "learning_rate": 0.0006, + "loss": 4.239969253540039, + "step": 928 + }, + { + "epoch": 12.90869375273045, + "grad_norm": 0.22510501742362976, + "learning_rate": 0.0006, + "loss": 4.192750930786133, + "step": 929 + }, + { + "epoch": 12.922673656618612, + "grad_norm": 0.22887611389160156, + "learning_rate": 0.0006, + "loss": 4.264463424682617, + "step": 930 + }, + { + "epoch": 12.936653560506771, + "grad_norm": 0.22195978462696075, + "learning_rate": 0.0006, + "loss": 4.205256938934326, + "step": 931 + }, + { + "epoch": 12.950633464394933, + "grad_norm": 0.23184578120708466, + "learning_rate": 0.0006, + "loss": 4.214578628540039, + "step": 932 + }, + { + "epoch": 12.964613368283093, + "grad_norm": 0.2186676561832428, + "learning_rate": 0.0006, + "loss": 4.227711200714111, + "step": 933 + }, + { + "epoch": 12.978593272171254, + "grad_norm": 0.2160426527261734, + "learning_rate": 0.0006, + "loss": 4.221796989440918, + "step": 934 + }, + { + "epoch": 12.992573176059414, + "grad_norm": 0.21562792360782623, + "learning_rate": 0.0006, + "loss": 4.21957540512085, + "step": 935 + }, + { + "epoch": 13.0, + "grad_norm": 0.22538058459758759, + "learning_rate": 0.0006, + "loss": 4.2353973388671875, + "step": 936 + }, + { + "epoch": 13.0, + "eval_loss": 4.426600933074951, + "eval_runtime": 44.8138, + "eval_samples_per_second": 54.492, + "eval_steps_per_second": 3.414, + "step": 936 + }, + { + "epoch": 13.013979903888162, + "grad_norm": 0.24888049066066742, + "learning_rate": 0.0006, + "loss": 4.18648624420166, + "step": 937 + }, + { + "epoch": 13.027959807776321, + "grad_norm": 0.28330180048942566, + "learning_rate": 0.0006, + "loss": 4.188892364501953, + "step": 938 + }, + { + "epoch": 13.041939711664483, + "grad_norm": 0.31152188777923584, + "learning_rate": 0.0006, + "loss": 4.2053399085998535, + "step": 939 + }, + { + "epoch": 13.055919615552643, + "grad_norm": 0.2842433452606201, + "learning_rate": 0.0006, + "loss": 4.191902160644531, + "step": 940 + }, + { + "epoch": 13.069899519440805, + "grad_norm": 0.23664532601833344, + "learning_rate": 0.0006, + "loss": 4.1831865310668945, + "step": 941 + }, + { + "epoch": 13.083879423328964, + "grad_norm": 0.24204140901565552, + "learning_rate": 0.0006, + "loss": 4.202641487121582, + "step": 942 + }, + { + "epoch": 13.097859327217126, + "grad_norm": 0.235311359167099, + "learning_rate": 0.0006, + "loss": 4.174511909484863, + "step": 943 + }, + { + "epoch": 13.111839231105286, + "grad_norm": 0.27127715945243835, + "learning_rate": 0.0006, + "loss": 4.201844215393066, + "step": 944 + }, + { + "epoch": 13.125819134993447, + "grad_norm": 0.2722373604774475, + "learning_rate": 0.0006, + "loss": 4.157383918762207, + "step": 945 + }, + { + "epoch": 13.139799038881607, + "grad_norm": 0.25446659326553345, + "learning_rate": 0.0006, + "loss": 4.221236228942871, + "step": 946 + }, + { + "epoch": 13.153778942769769, + "grad_norm": 0.273017019033432, + "learning_rate": 0.0006, + "loss": 4.195512771606445, + "step": 947 + }, + { + "epoch": 13.167758846657929, + "grad_norm": 0.24766312539577484, + "learning_rate": 0.0006, + "loss": 4.220959663391113, + "step": 948 + }, + { + "epoch": 13.18173875054609, + "grad_norm": 0.24636317789554596, + "learning_rate": 0.0006, + "loss": 4.214302062988281, + "step": 949 + }, + { + "epoch": 13.19571865443425, + "grad_norm": 0.3177756667137146, + "learning_rate": 0.0006, + "loss": 4.213500022888184, + "step": 950 + }, + { + "epoch": 13.209698558322412, + "grad_norm": 0.44579195976257324, + "learning_rate": 0.0006, + "loss": 4.227644920349121, + "step": 951 + }, + { + "epoch": 13.223678462210572, + "grad_norm": 0.4217414855957031, + "learning_rate": 0.0006, + "loss": 4.180937767028809, + "step": 952 + }, + { + "epoch": 13.237658366098733, + "grad_norm": 0.30148059129714966, + "learning_rate": 0.0006, + "loss": 4.207760810852051, + "step": 953 + }, + { + "epoch": 13.251638269986893, + "grad_norm": 0.3192492127418518, + "learning_rate": 0.0006, + "loss": 4.197999000549316, + "step": 954 + }, + { + "epoch": 13.265618173875055, + "grad_norm": 0.37334588170051575, + "learning_rate": 0.0006, + "loss": 4.208001136779785, + "step": 955 + }, + { + "epoch": 13.279598077763215, + "grad_norm": 0.4059637784957886, + "learning_rate": 0.0006, + "loss": 4.211322784423828, + "step": 956 + }, + { + "epoch": 13.293577981651376, + "grad_norm": 0.3389599323272705, + "learning_rate": 0.0006, + "loss": 4.204404354095459, + "step": 957 + }, + { + "epoch": 13.307557885539538, + "grad_norm": 0.2675766050815582, + "learning_rate": 0.0006, + "loss": 4.245941162109375, + "step": 958 + }, + { + "epoch": 13.321537789427698, + "grad_norm": 0.2730264365673065, + "learning_rate": 0.0006, + "loss": 4.2221221923828125, + "step": 959 + }, + { + "epoch": 13.33551769331586, + "grad_norm": 0.26458224654197693, + "learning_rate": 0.0006, + "loss": 4.205596923828125, + "step": 960 + }, + { + "epoch": 13.349497597204019, + "grad_norm": 0.2872551381587982, + "learning_rate": 0.0006, + "loss": 4.196977615356445, + "step": 961 + }, + { + "epoch": 13.36347750109218, + "grad_norm": 0.2954796850681305, + "learning_rate": 0.0006, + "loss": 4.202796936035156, + "step": 962 + }, + { + "epoch": 13.37745740498034, + "grad_norm": 0.2619425654411316, + "learning_rate": 0.0006, + "loss": 4.196845054626465, + "step": 963 + }, + { + "epoch": 13.391437308868502, + "grad_norm": 0.30088478326797485, + "learning_rate": 0.0006, + "loss": 4.219697952270508, + "step": 964 + }, + { + "epoch": 13.405417212756662, + "grad_norm": 0.30388689041137695, + "learning_rate": 0.0006, + "loss": 4.187566757202148, + "step": 965 + }, + { + "epoch": 13.419397116644824, + "grad_norm": 0.27918127179145813, + "learning_rate": 0.0006, + "loss": 4.223600387573242, + "step": 966 + }, + { + "epoch": 13.433377020532983, + "grad_norm": 0.27634528279304504, + "learning_rate": 0.0006, + "loss": 4.165332317352295, + "step": 967 + }, + { + "epoch": 13.447356924421145, + "grad_norm": 0.28830021619796753, + "learning_rate": 0.0006, + "loss": 4.204029560089111, + "step": 968 + }, + { + "epoch": 13.461336828309305, + "grad_norm": 0.29220864176750183, + "learning_rate": 0.0006, + "loss": 4.218057155609131, + "step": 969 + }, + { + "epoch": 13.475316732197467, + "grad_norm": 0.3089624345302582, + "learning_rate": 0.0006, + "loss": 4.200654983520508, + "step": 970 + }, + { + "epoch": 13.489296636085626, + "grad_norm": 0.36479851603507996, + "learning_rate": 0.0006, + "loss": 4.182811737060547, + "step": 971 + }, + { + "epoch": 13.503276539973788, + "grad_norm": 0.37561097741127014, + "learning_rate": 0.0006, + "loss": 4.190266132354736, + "step": 972 + }, + { + "epoch": 13.517256443861948, + "grad_norm": 0.3263583183288574, + "learning_rate": 0.0006, + "loss": 4.214815616607666, + "step": 973 + }, + { + "epoch": 13.53123634775011, + "grad_norm": 0.21552999317646027, + "learning_rate": 0.0006, + "loss": 4.171380043029785, + "step": 974 + }, + { + "epoch": 13.54521625163827, + "grad_norm": 0.247328519821167, + "learning_rate": 0.0006, + "loss": 4.175377368927002, + "step": 975 + }, + { + "epoch": 13.55919615552643, + "grad_norm": 0.23740540444850922, + "learning_rate": 0.0006, + "loss": 4.212357997894287, + "step": 976 + }, + { + "epoch": 13.57317605941459, + "grad_norm": 0.21533876657485962, + "learning_rate": 0.0006, + "loss": 4.203285217285156, + "step": 977 + }, + { + "epoch": 13.587155963302752, + "grad_norm": 0.21462024748325348, + "learning_rate": 0.0006, + "loss": 4.178012371063232, + "step": 978 + }, + { + "epoch": 13.601135867190912, + "grad_norm": 0.2279169261455536, + "learning_rate": 0.0006, + "loss": 4.193912982940674, + "step": 979 + }, + { + "epoch": 13.615115771079074, + "grad_norm": 0.2202417552471161, + "learning_rate": 0.0006, + "loss": 4.167629718780518, + "step": 980 + }, + { + "epoch": 13.629095674967235, + "grad_norm": 0.20586472749710083, + "learning_rate": 0.0006, + "loss": 4.159290313720703, + "step": 981 + }, + { + "epoch": 13.643075578855395, + "grad_norm": 0.20200690627098083, + "learning_rate": 0.0006, + "loss": 4.210315227508545, + "step": 982 + }, + { + "epoch": 13.657055482743557, + "grad_norm": 0.21710257232189178, + "learning_rate": 0.0006, + "loss": 4.21730375289917, + "step": 983 + }, + { + "epoch": 13.671035386631717, + "grad_norm": 0.22058045864105225, + "learning_rate": 0.0006, + "loss": 4.1996073722839355, + "step": 984 + }, + { + "epoch": 13.685015290519878, + "grad_norm": 0.21549592912197113, + "learning_rate": 0.0006, + "loss": 4.209203720092773, + "step": 985 + }, + { + "epoch": 13.698995194408038, + "grad_norm": 0.22274717688560486, + "learning_rate": 0.0006, + "loss": 4.220660209655762, + "step": 986 + }, + { + "epoch": 13.7129750982962, + "grad_norm": 0.22791637480258942, + "learning_rate": 0.0006, + "loss": 4.158679962158203, + "step": 987 + }, + { + "epoch": 13.72695500218436, + "grad_norm": 0.216218963265419, + "learning_rate": 0.0006, + "loss": 4.188124656677246, + "step": 988 + }, + { + "epoch": 13.740934906072521, + "grad_norm": 0.19149383902549744, + "learning_rate": 0.0006, + "loss": 4.181729316711426, + "step": 989 + }, + { + "epoch": 13.754914809960681, + "grad_norm": 0.18964019417762756, + "learning_rate": 0.0006, + "loss": 4.184767246246338, + "step": 990 + }, + { + "epoch": 13.768894713848843, + "grad_norm": 0.1778000295162201, + "learning_rate": 0.0006, + "loss": 4.1802263259887695, + "step": 991 + }, + { + "epoch": 13.782874617737003, + "grad_norm": 0.18277616798877716, + "learning_rate": 0.0006, + "loss": 4.1657867431640625, + "step": 992 + }, + { + "epoch": 13.796854521625164, + "grad_norm": 0.18610034883022308, + "learning_rate": 0.0006, + "loss": 4.156744956970215, + "step": 993 + }, + { + "epoch": 13.810834425513324, + "grad_norm": 0.19332963228225708, + "learning_rate": 0.0006, + "loss": 4.143558502197266, + "step": 994 + }, + { + "epoch": 13.824814329401486, + "grad_norm": 0.19758112728595734, + "learning_rate": 0.0006, + "loss": 4.195793151855469, + "step": 995 + }, + { + "epoch": 13.838794233289645, + "grad_norm": 0.1933647245168686, + "learning_rate": 0.0006, + "loss": 4.169734954833984, + "step": 996 + }, + { + "epoch": 13.852774137177807, + "grad_norm": 0.2362028956413269, + "learning_rate": 0.0006, + "loss": 4.175025939941406, + "step": 997 + }, + { + "epoch": 13.866754041065967, + "grad_norm": 0.2465490996837616, + "learning_rate": 0.0006, + "loss": 4.173909664154053, + "step": 998 + }, + { + "epoch": 13.880733944954128, + "grad_norm": 0.23449952900409698, + "learning_rate": 0.0006, + "loss": 4.173429489135742, + "step": 999 + }, + { + "epoch": 13.89471384884229, + "grad_norm": 0.2282160222530365, + "learning_rate": 0.0006, + "loss": 4.158538341522217, + "step": 1000 + }, + { + "epoch": 13.90869375273045, + "grad_norm": 0.21066738665103912, + "learning_rate": 0.0006, + "loss": 4.171584129333496, + "step": 1001 + }, + { + "epoch": 13.922673656618612, + "grad_norm": 0.18787573277950287, + "learning_rate": 0.0006, + "loss": 4.1837544441223145, + "step": 1002 + }, + { + "epoch": 13.936653560506771, + "grad_norm": 0.2001059353351593, + "learning_rate": 0.0006, + "loss": 4.160369873046875, + "step": 1003 + }, + { + "epoch": 13.950633464394933, + "grad_norm": 0.21644988656044006, + "learning_rate": 0.0006, + "loss": 4.221372604370117, + "step": 1004 + }, + { + "epoch": 13.964613368283093, + "grad_norm": 0.22083887457847595, + "learning_rate": 0.0006, + "loss": 4.149261474609375, + "step": 1005 + }, + { + "epoch": 13.978593272171254, + "grad_norm": 0.2201409637928009, + "learning_rate": 0.0006, + "loss": 4.192010879516602, + "step": 1006 + }, + { + "epoch": 13.992573176059414, + "grad_norm": 0.18888601660728455, + "learning_rate": 0.0006, + "loss": 4.17539119720459, + "step": 1007 + }, + { + "epoch": 14.0, + "grad_norm": 0.2073872834444046, + "learning_rate": 0.0006, + "loss": 4.145265579223633, + "step": 1008 + }, + { + "epoch": 14.0, + "eval_loss": 4.36876106262207, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 1008 + }, + { + "epoch": 14.013979903888162, + "grad_norm": 0.20773135125637054, + "learning_rate": 0.0006, + "loss": 4.132615089416504, + "step": 1009 + }, + { + "epoch": 14.027959807776321, + "grad_norm": 0.22409620881080627, + "learning_rate": 0.0006, + "loss": 4.172839164733887, + "step": 1010 + }, + { + "epoch": 14.041939711664483, + "grad_norm": 0.24046066403388977, + "learning_rate": 0.0006, + "loss": 4.126678943634033, + "step": 1011 + }, + { + "epoch": 14.055919615552643, + "grad_norm": 0.29185160994529724, + "learning_rate": 0.0006, + "loss": 4.177952766418457, + "step": 1012 + }, + { + "epoch": 14.069899519440805, + "grad_norm": 0.2984033226966858, + "learning_rate": 0.0006, + "loss": 4.155030250549316, + "step": 1013 + }, + { + "epoch": 14.083879423328964, + "grad_norm": 0.30262473225593567, + "learning_rate": 0.0006, + "loss": 4.145394325256348, + "step": 1014 + }, + { + "epoch": 14.097859327217126, + "grad_norm": 0.3278133273124695, + "learning_rate": 0.0006, + "loss": 4.172739028930664, + "step": 1015 + }, + { + "epoch": 14.111839231105286, + "grad_norm": 0.3285452425479889, + "learning_rate": 0.0006, + "loss": 4.153196334838867, + "step": 1016 + }, + { + "epoch": 14.125819134993447, + "grad_norm": 0.33912697434425354, + "learning_rate": 0.0006, + "loss": 4.098162651062012, + "step": 1017 + }, + { + "epoch": 14.139799038881607, + "grad_norm": 0.32080814242362976, + "learning_rate": 0.0006, + "loss": 4.157135009765625, + "step": 1018 + }, + { + "epoch": 14.153778942769769, + "grad_norm": 0.31288477778434753, + "learning_rate": 0.0006, + "loss": 4.142683029174805, + "step": 1019 + }, + { + "epoch": 14.167758846657929, + "grad_norm": 0.350289523601532, + "learning_rate": 0.0006, + "loss": 4.134700775146484, + "step": 1020 + }, + { + "epoch": 14.18173875054609, + "grad_norm": 0.34274575114250183, + "learning_rate": 0.0006, + "loss": 4.1578569412231445, + "step": 1021 + }, + { + "epoch": 14.19571865443425, + "grad_norm": 0.2843035161495209, + "learning_rate": 0.0006, + "loss": 4.13760232925415, + "step": 1022 + }, + { + "epoch": 14.209698558322412, + "grad_norm": 0.28235161304473877, + "learning_rate": 0.0006, + "loss": 4.1492462158203125, + "step": 1023 + }, + { + "epoch": 14.223678462210572, + "grad_norm": 0.24407248198986053, + "learning_rate": 0.0006, + "loss": 4.144372463226318, + "step": 1024 + }, + { + "epoch": 14.237658366098733, + "grad_norm": 0.2489742934703827, + "learning_rate": 0.0006, + "loss": 4.137950897216797, + "step": 1025 + }, + { + "epoch": 14.251638269986893, + "grad_norm": 0.26035651564598083, + "learning_rate": 0.0006, + "loss": 4.144070625305176, + "step": 1026 + }, + { + "epoch": 14.265618173875055, + "grad_norm": 0.2726516127586365, + "learning_rate": 0.0006, + "loss": 4.145204067230225, + "step": 1027 + }, + { + "epoch": 14.279598077763215, + "grad_norm": 0.2723483443260193, + "learning_rate": 0.0006, + "loss": 4.118407249450684, + "step": 1028 + }, + { + "epoch": 14.293577981651376, + "grad_norm": 0.27476269006729126, + "learning_rate": 0.0006, + "loss": 4.111325263977051, + "step": 1029 + }, + { + "epoch": 14.307557885539538, + "grad_norm": 0.26202502846717834, + "learning_rate": 0.0006, + "loss": 4.122248649597168, + "step": 1030 + }, + { + "epoch": 14.321537789427698, + "grad_norm": 0.2472032904624939, + "learning_rate": 0.0006, + "loss": 4.157790184020996, + "step": 1031 + }, + { + "epoch": 14.33551769331586, + "grad_norm": 0.2518343925476074, + "learning_rate": 0.0006, + "loss": 4.109132766723633, + "step": 1032 + }, + { + "epoch": 14.349497597204019, + "grad_norm": 0.2652401924133301, + "learning_rate": 0.0006, + "loss": 4.144079685211182, + "step": 1033 + }, + { + "epoch": 14.36347750109218, + "grad_norm": 0.2356770783662796, + "learning_rate": 0.0006, + "loss": 4.128426551818848, + "step": 1034 + }, + { + "epoch": 14.37745740498034, + "grad_norm": 0.2164214551448822, + "learning_rate": 0.0006, + "loss": 4.1644392013549805, + "step": 1035 + }, + { + "epoch": 14.391437308868502, + "grad_norm": 0.22383111715316772, + "learning_rate": 0.0006, + "loss": 4.165862083435059, + "step": 1036 + }, + { + "epoch": 14.405417212756662, + "grad_norm": 0.23152419924736023, + "learning_rate": 0.0006, + "loss": 4.140036582946777, + "step": 1037 + }, + { + "epoch": 14.419397116644824, + "grad_norm": 0.2387741357088089, + "learning_rate": 0.0006, + "loss": 4.130461692810059, + "step": 1038 + }, + { + "epoch": 14.433377020532983, + "grad_norm": 0.24018129706382751, + "learning_rate": 0.0006, + "loss": 4.148482322692871, + "step": 1039 + }, + { + "epoch": 14.447356924421145, + "grad_norm": 0.25487351417541504, + "learning_rate": 0.0006, + "loss": 4.158121109008789, + "step": 1040 + }, + { + "epoch": 14.461336828309305, + "grad_norm": 0.28220096230506897, + "learning_rate": 0.0006, + "loss": 4.160198211669922, + "step": 1041 + }, + { + "epoch": 14.475316732197467, + "grad_norm": 0.2574434280395508, + "learning_rate": 0.0006, + "loss": 4.168512344360352, + "step": 1042 + }, + { + "epoch": 14.489296636085626, + "grad_norm": 0.22569820284843445, + "learning_rate": 0.0006, + "loss": 4.1595001220703125, + "step": 1043 + }, + { + "epoch": 14.503276539973788, + "grad_norm": 0.2473423182964325, + "learning_rate": 0.0006, + "loss": 4.084580898284912, + "step": 1044 + }, + { + "epoch": 14.517256443861948, + "grad_norm": 0.24281060695648193, + "learning_rate": 0.0006, + "loss": 4.139714241027832, + "step": 1045 + }, + { + "epoch": 14.53123634775011, + "grad_norm": 0.24691344797611237, + "learning_rate": 0.0006, + "loss": 4.115398406982422, + "step": 1046 + }, + { + "epoch": 14.54521625163827, + "grad_norm": 0.2583645284175873, + "learning_rate": 0.0006, + "loss": 4.142148494720459, + "step": 1047 + }, + { + "epoch": 14.55919615552643, + "grad_norm": 0.23258574306964874, + "learning_rate": 0.0006, + "loss": 4.16251277923584, + "step": 1048 + }, + { + "epoch": 14.57317605941459, + "grad_norm": 0.22103039920330048, + "learning_rate": 0.0006, + "loss": 4.1308441162109375, + "step": 1049 + }, + { + "epoch": 14.587155963302752, + "grad_norm": 0.23713579773902893, + "learning_rate": 0.0006, + "loss": 4.1565985679626465, + "step": 1050 + }, + { + "epoch": 14.601135867190912, + "grad_norm": 0.24406634271144867, + "learning_rate": 0.0006, + "loss": 4.14628267288208, + "step": 1051 + }, + { + "epoch": 14.615115771079074, + "grad_norm": 0.26821228861808777, + "learning_rate": 0.0006, + "loss": 4.138063430786133, + "step": 1052 + }, + { + "epoch": 14.629095674967235, + "grad_norm": 0.25483864545822144, + "learning_rate": 0.0006, + "loss": 4.1311163902282715, + "step": 1053 + }, + { + "epoch": 14.643075578855395, + "grad_norm": 0.23937982320785522, + "learning_rate": 0.0006, + "loss": 4.150882244110107, + "step": 1054 + }, + { + "epoch": 14.657055482743557, + "grad_norm": 0.21896475553512573, + "learning_rate": 0.0006, + "loss": 4.114015102386475, + "step": 1055 + }, + { + "epoch": 14.671035386631717, + "grad_norm": 0.20821231603622437, + "learning_rate": 0.0006, + "loss": 4.139034271240234, + "step": 1056 + }, + { + "epoch": 14.685015290519878, + "grad_norm": 0.1978551596403122, + "learning_rate": 0.0006, + "loss": 4.1810503005981445, + "step": 1057 + }, + { + "epoch": 14.698995194408038, + "grad_norm": 0.1945771872997284, + "learning_rate": 0.0006, + "loss": 4.120734214782715, + "step": 1058 + }, + { + "epoch": 14.7129750982962, + "grad_norm": 0.19518673419952393, + "learning_rate": 0.0006, + "loss": 4.14264440536499, + "step": 1059 + }, + { + "epoch": 14.72695500218436, + "grad_norm": 0.202596515417099, + "learning_rate": 0.0006, + "loss": 4.151649475097656, + "step": 1060 + }, + { + "epoch": 14.740934906072521, + "grad_norm": 0.1904762089252472, + "learning_rate": 0.0006, + "loss": 4.127899169921875, + "step": 1061 + }, + { + "epoch": 14.754914809960681, + "grad_norm": 0.20685508847236633, + "learning_rate": 0.0006, + "loss": 4.093445777893066, + "step": 1062 + }, + { + "epoch": 14.768894713848843, + "grad_norm": 0.22678329050540924, + "learning_rate": 0.0006, + "loss": 4.132084369659424, + "step": 1063 + }, + { + "epoch": 14.782874617737003, + "grad_norm": 0.24631841480731964, + "learning_rate": 0.0006, + "loss": 4.154788970947266, + "step": 1064 + }, + { + "epoch": 14.796854521625164, + "grad_norm": 0.24445782601833344, + "learning_rate": 0.0006, + "loss": 4.144735336303711, + "step": 1065 + }, + { + "epoch": 14.810834425513324, + "grad_norm": 0.22330640256404877, + "learning_rate": 0.0006, + "loss": 4.159893989562988, + "step": 1066 + }, + { + "epoch": 14.824814329401486, + "grad_norm": 0.22422967851161957, + "learning_rate": 0.0006, + "loss": 4.104874610900879, + "step": 1067 + }, + { + "epoch": 14.838794233289645, + "grad_norm": 0.24583931267261505, + "learning_rate": 0.0006, + "loss": 4.139403820037842, + "step": 1068 + }, + { + "epoch": 14.852774137177807, + "grad_norm": 0.2917379140853882, + "learning_rate": 0.0006, + "loss": 4.168988227844238, + "step": 1069 + }, + { + "epoch": 14.866754041065967, + "grad_norm": 0.3171777129173279, + "learning_rate": 0.0006, + "loss": 4.131263732910156, + "step": 1070 + }, + { + "epoch": 14.880733944954128, + "grad_norm": 0.3039591312408447, + "learning_rate": 0.0006, + "loss": 4.149853706359863, + "step": 1071 + }, + { + "epoch": 14.89471384884229, + "grad_norm": 0.2690650522708893, + "learning_rate": 0.0006, + "loss": 4.154787540435791, + "step": 1072 + }, + { + "epoch": 14.90869375273045, + "grad_norm": 0.28683212399482727, + "learning_rate": 0.0006, + "loss": 4.12751579284668, + "step": 1073 + }, + { + "epoch": 14.922673656618612, + "grad_norm": 0.30022913217544556, + "learning_rate": 0.0006, + "loss": 4.141940116882324, + "step": 1074 + }, + { + "epoch": 14.936653560506771, + "grad_norm": 0.3312259316444397, + "learning_rate": 0.0006, + "loss": 4.141905784606934, + "step": 1075 + }, + { + "epoch": 14.950633464394933, + "grad_norm": 0.31159237027168274, + "learning_rate": 0.0006, + "loss": 4.160192966461182, + "step": 1076 + }, + { + "epoch": 14.964613368283093, + "grad_norm": 0.30093592405319214, + "learning_rate": 0.0006, + "loss": 4.1085076332092285, + "step": 1077 + }, + { + "epoch": 14.978593272171254, + "grad_norm": 0.2728535830974579, + "learning_rate": 0.0006, + "loss": 4.156959056854248, + "step": 1078 + }, + { + "epoch": 14.992573176059414, + "grad_norm": 0.24766813218593597, + "learning_rate": 0.0006, + "loss": 4.113999843597412, + "step": 1079 + }, + { + "epoch": 15.0, + "grad_norm": 0.2538154721260071, + "learning_rate": 0.0006, + "loss": 4.147134780883789, + "step": 1080 + }, + { + "epoch": 15.0, + "eval_loss": 4.323154926300049, + "eval_runtime": 44.8813, + "eval_samples_per_second": 54.41, + "eval_steps_per_second": 3.409, + "step": 1080 + }, + { + "epoch": 15.013979903888162, + "grad_norm": 0.22535280883312225, + "learning_rate": 0.0006, + "loss": 4.112179756164551, + "step": 1081 + }, + { + "epoch": 15.027959807776321, + "grad_norm": 0.24340929090976715, + "learning_rate": 0.0006, + "loss": 4.080923080444336, + "step": 1082 + }, + { + "epoch": 15.041939711664483, + "grad_norm": 0.23159465193748474, + "learning_rate": 0.0006, + "loss": 4.097067356109619, + "step": 1083 + }, + { + "epoch": 15.055919615552643, + "grad_norm": 0.22674769163131714, + "learning_rate": 0.0006, + "loss": 4.118601322174072, + "step": 1084 + }, + { + "epoch": 15.069899519440805, + "grad_norm": 0.2524292469024658, + "learning_rate": 0.0006, + "loss": 4.101109504699707, + "step": 1085 + }, + { + "epoch": 15.083879423328964, + "grad_norm": 0.2505405843257904, + "learning_rate": 0.0006, + "loss": 4.121405601501465, + "step": 1086 + }, + { + "epoch": 15.097859327217126, + "grad_norm": 0.2557983696460724, + "learning_rate": 0.0006, + "loss": 4.1063947677612305, + "step": 1087 + }, + { + "epoch": 15.111839231105286, + "grad_norm": 0.24452129006385803, + "learning_rate": 0.0006, + "loss": 4.086133003234863, + "step": 1088 + }, + { + "epoch": 15.125819134993447, + "grad_norm": 0.25821781158447266, + "learning_rate": 0.0006, + "loss": 4.076262950897217, + "step": 1089 + }, + { + "epoch": 15.139799038881607, + "grad_norm": 0.23650537431240082, + "learning_rate": 0.0006, + "loss": 4.101842880249023, + "step": 1090 + }, + { + "epoch": 15.153778942769769, + "grad_norm": 0.2206192910671234, + "learning_rate": 0.0006, + "loss": 4.11027193069458, + "step": 1091 + }, + { + "epoch": 15.167758846657929, + "grad_norm": 0.21843163669109344, + "learning_rate": 0.0006, + "loss": 4.098437309265137, + "step": 1092 + }, + { + "epoch": 15.18173875054609, + "grad_norm": 0.2528176009654999, + "learning_rate": 0.0006, + "loss": 4.108713150024414, + "step": 1093 + }, + { + "epoch": 15.19571865443425, + "grad_norm": 0.26697206497192383, + "learning_rate": 0.0006, + "loss": 4.113210201263428, + "step": 1094 + }, + { + "epoch": 15.209698558322412, + "grad_norm": 0.26480963826179504, + "learning_rate": 0.0006, + "loss": 4.1103620529174805, + "step": 1095 + }, + { + "epoch": 15.223678462210572, + "grad_norm": 0.24887347221374512, + "learning_rate": 0.0006, + "loss": 4.103529930114746, + "step": 1096 + }, + { + "epoch": 15.237658366098733, + "grad_norm": 0.2344668060541153, + "learning_rate": 0.0006, + "loss": 4.129784107208252, + "step": 1097 + }, + { + "epoch": 15.251638269986893, + "grad_norm": 0.22639742493629456, + "learning_rate": 0.0006, + "loss": 4.113495349884033, + "step": 1098 + }, + { + "epoch": 15.265618173875055, + "grad_norm": 0.22466333210468292, + "learning_rate": 0.0006, + "loss": 4.102309703826904, + "step": 1099 + }, + { + "epoch": 15.279598077763215, + "grad_norm": 0.25135037302970886, + "learning_rate": 0.0006, + "loss": 4.117668628692627, + "step": 1100 + }, + { + "epoch": 15.293577981651376, + "grad_norm": 0.2347089946269989, + "learning_rate": 0.0006, + "loss": 4.086637496948242, + "step": 1101 + }, + { + "epoch": 15.307557885539538, + "grad_norm": 0.2347242832183838, + "learning_rate": 0.0006, + "loss": 4.098714828491211, + "step": 1102 + }, + { + "epoch": 15.321537789427698, + "grad_norm": 0.23990283906459808, + "learning_rate": 0.0006, + "loss": 4.079837799072266, + "step": 1103 + }, + { + "epoch": 15.33551769331586, + "grad_norm": 0.22366675734519958, + "learning_rate": 0.0006, + "loss": 4.108136177062988, + "step": 1104 + }, + { + "epoch": 15.349497597204019, + "grad_norm": 0.21823780238628387, + "learning_rate": 0.0006, + "loss": 4.10054349899292, + "step": 1105 + }, + { + "epoch": 15.36347750109218, + "grad_norm": 0.23059198260307312, + "learning_rate": 0.0006, + "loss": 4.108620643615723, + "step": 1106 + }, + { + "epoch": 15.37745740498034, + "grad_norm": 0.2313755601644516, + "learning_rate": 0.0006, + "loss": 4.088565826416016, + "step": 1107 + }, + { + "epoch": 15.391437308868502, + "grad_norm": 0.2546829283237457, + "learning_rate": 0.0006, + "loss": 4.104948043823242, + "step": 1108 + }, + { + "epoch": 15.405417212756662, + "grad_norm": 0.23666726052761078, + "learning_rate": 0.0006, + "loss": 4.111965179443359, + "step": 1109 + }, + { + "epoch": 15.419397116644824, + "grad_norm": 0.21971021592617035, + "learning_rate": 0.0006, + "loss": 4.097846984863281, + "step": 1110 + }, + { + "epoch": 15.433377020532983, + "grad_norm": 0.20951911807060242, + "learning_rate": 0.0006, + "loss": 4.110099792480469, + "step": 1111 + }, + { + "epoch": 15.447356924421145, + "grad_norm": 0.19590918719768524, + "learning_rate": 0.0006, + "loss": 4.101154327392578, + "step": 1112 + }, + { + "epoch": 15.461336828309305, + "grad_norm": 0.21048946678638458, + "learning_rate": 0.0006, + "loss": 4.0986127853393555, + "step": 1113 + }, + { + "epoch": 15.475316732197467, + "grad_norm": 0.21423374116420746, + "learning_rate": 0.0006, + "loss": 4.082328796386719, + "step": 1114 + }, + { + "epoch": 15.489296636085626, + "grad_norm": 0.227146714925766, + "learning_rate": 0.0006, + "loss": 4.105281829833984, + "step": 1115 + }, + { + "epoch": 15.503276539973788, + "grad_norm": 0.2079153060913086, + "learning_rate": 0.0006, + "loss": 4.100836753845215, + "step": 1116 + }, + { + "epoch": 15.517256443861948, + "grad_norm": 0.21084675192832947, + "learning_rate": 0.0006, + "loss": 4.0934343338012695, + "step": 1117 + }, + { + "epoch": 15.53123634775011, + "grad_norm": 0.23863616585731506, + "learning_rate": 0.0006, + "loss": 4.101540565490723, + "step": 1118 + }, + { + "epoch": 15.54521625163827, + "grad_norm": 0.2518490254878998, + "learning_rate": 0.0006, + "loss": 4.12303352355957, + "step": 1119 + }, + { + "epoch": 15.55919615552643, + "grad_norm": 0.24282905459403992, + "learning_rate": 0.0006, + "loss": 4.080670356750488, + "step": 1120 + }, + { + "epoch": 15.57317605941459, + "grad_norm": 0.24171605706214905, + "learning_rate": 0.0006, + "loss": 4.117938041687012, + "step": 1121 + }, + { + "epoch": 15.587155963302752, + "grad_norm": 0.28453412652015686, + "learning_rate": 0.0006, + "loss": 4.080114364624023, + "step": 1122 + }, + { + "epoch": 15.601135867190912, + "grad_norm": 0.30322617292404175, + "learning_rate": 0.0006, + "loss": 4.079695701599121, + "step": 1123 + }, + { + "epoch": 15.615115771079074, + "grad_norm": 0.2657633125782013, + "learning_rate": 0.0006, + "loss": 4.0916290283203125, + "step": 1124 + }, + { + "epoch": 15.629095674967235, + "grad_norm": 0.2467080056667328, + "learning_rate": 0.0006, + "loss": 4.095594882965088, + "step": 1125 + }, + { + "epoch": 15.643075578855395, + "grad_norm": 0.21767394244670868, + "learning_rate": 0.0006, + "loss": 4.079174041748047, + "step": 1126 + }, + { + "epoch": 15.657055482743557, + "grad_norm": 0.2088327705860138, + "learning_rate": 0.0006, + "loss": 4.060707092285156, + "step": 1127 + }, + { + "epoch": 15.671035386631717, + "grad_norm": 0.1921205073595047, + "learning_rate": 0.0006, + "loss": 4.073911666870117, + "step": 1128 + }, + { + "epoch": 15.685015290519878, + "grad_norm": 0.209339901804924, + "learning_rate": 0.0006, + "loss": 4.089954376220703, + "step": 1129 + }, + { + "epoch": 15.698995194408038, + "grad_norm": 0.23513881862163544, + "learning_rate": 0.0006, + "loss": 4.084906578063965, + "step": 1130 + }, + { + "epoch": 15.7129750982962, + "grad_norm": 0.26140275597572327, + "learning_rate": 0.0006, + "loss": 4.086570739746094, + "step": 1131 + }, + { + "epoch": 15.72695500218436, + "grad_norm": 0.290431946516037, + "learning_rate": 0.0006, + "loss": 4.071229457855225, + "step": 1132 + }, + { + "epoch": 15.740934906072521, + "grad_norm": 0.3061376214027405, + "learning_rate": 0.0006, + "loss": 4.103148460388184, + "step": 1133 + }, + { + "epoch": 15.754914809960681, + "grad_norm": 0.26312482357025146, + "learning_rate": 0.0006, + "loss": 4.088448524475098, + "step": 1134 + }, + { + "epoch": 15.768894713848843, + "grad_norm": 0.22474883496761322, + "learning_rate": 0.0006, + "loss": 4.091766834259033, + "step": 1135 + }, + { + "epoch": 15.782874617737003, + "grad_norm": 0.2341146171092987, + "learning_rate": 0.0006, + "loss": 4.1222758293151855, + "step": 1136 + }, + { + "epoch": 15.796854521625164, + "grad_norm": 0.23556149005889893, + "learning_rate": 0.0006, + "loss": 4.094954013824463, + "step": 1137 + }, + { + "epoch": 15.810834425513324, + "grad_norm": 0.263315349817276, + "learning_rate": 0.0006, + "loss": 4.1065473556518555, + "step": 1138 + }, + { + "epoch": 15.824814329401486, + "grad_norm": 0.2700869143009186, + "learning_rate": 0.0006, + "loss": 4.0890045166015625, + "step": 1139 + }, + { + "epoch": 15.838794233289645, + "grad_norm": 0.28697484731674194, + "learning_rate": 0.0006, + "loss": 4.092496395111084, + "step": 1140 + }, + { + "epoch": 15.852774137177807, + "grad_norm": 0.2824092507362366, + "learning_rate": 0.0006, + "loss": 4.079615592956543, + "step": 1141 + }, + { + "epoch": 15.866754041065967, + "grad_norm": 0.24547280371189117, + "learning_rate": 0.0006, + "loss": 4.089683532714844, + "step": 1142 + }, + { + "epoch": 15.880733944954128, + "grad_norm": 0.23653888702392578, + "learning_rate": 0.0006, + "loss": 4.067309379577637, + "step": 1143 + }, + { + "epoch": 15.89471384884229, + "grad_norm": 0.23784421384334564, + "learning_rate": 0.0006, + "loss": 4.09156608581543, + "step": 1144 + }, + { + "epoch": 15.90869375273045, + "grad_norm": 0.22753281891345978, + "learning_rate": 0.0006, + "loss": 4.095428466796875, + "step": 1145 + }, + { + "epoch": 15.922673656618612, + "grad_norm": 0.2464212030172348, + "learning_rate": 0.0006, + "loss": 4.1036376953125, + "step": 1146 + }, + { + "epoch": 15.936653560506771, + "grad_norm": 0.25531601905822754, + "learning_rate": 0.0006, + "loss": 4.073996543884277, + "step": 1147 + }, + { + "epoch": 15.950633464394933, + "grad_norm": 0.24145905673503876, + "learning_rate": 0.0006, + "loss": 4.094479560852051, + "step": 1148 + }, + { + "epoch": 15.964613368283093, + "grad_norm": 0.24274317920207977, + "learning_rate": 0.0006, + "loss": 4.101981163024902, + "step": 1149 + }, + { + "epoch": 15.978593272171254, + "grad_norm": 0.2350679188966751, + "learning_rate": 0.0006, + "loss": 4.057965278625488, + "step": 1150 + }, + { + "epoch": 15.992573176059414, + "grad_norm": 0.24072253704071045, + "learning_rate": 0.0006, + "loss": 4.020050048828125, + "step": 1151 + }, + { + "epoch": 16.0, + "grad_norm": 0.253978967666626, + "learning_rate": 0.0006, + "loss": 4.061928749084473, + "step": 1152 + }, + { + "epoch": 16.0, + "eval_loss": 4.270665645599365, + "eval_runtime": 44.5063, + "eval_samples_per_second": 54.869, + "eval_steps_per_second": 3.438, + "step": 1152 + }, + { + "epoch": 16.01397990388816, + "grad_norm": 0.3265204131603241, + "learning_rate": 0.0006, + "loss": 4.059116363525391, + "step": 1153 + }, + { + "epoch": 16.027959807776323, + "grad_norm": 0.34139737486839294, + "learning_rate": 0.0006, + "loss": 4.062219619750977, + "step": 1154 + }, + { + "epoch": 16.041939711664483, + "grad_norm": 0.2849949598312378, + "learning_rate": 0.0006, + "loss": 4.032323837280273, + "step": 1155 + }, + { + "epoch": 16.055919615552643, + "grad_norm": 0.25031402707099915, + "learning_rate": 0.0006, + "loss": 4.075527191162109, + "step": 1156 + }, + { + "epoch": 16.069899519440803, + "grad_norm": 0.25207436084747314, + "learning_rate": 0.0006, + "loss": 4.0883097648620605, + "step": 1157 + }, + { + "epoch": 16.083879423328966, + "grad_norm": 0.28677356243133545, + "learning_rate": 0.0006, + "loss": 4.040797233581543, + "step": 1158 + }, + { + "epoch": 16.097859327217126, + "grad_norm": 0.30778825283050537, + "learning_rate": 0.0006, + "loss": 4.051504135131836, + "step": 1159 + }, + { + "epoch": 16.111839231105286, + "grad_norm": 0.3136911988258362, + "learning_rate": 0.0006, + "loss": 4.045449256896973, + "step": 1160 + }, + { + "epoch": 16.125819134993446, + "grad_norm": 0.34384530782699585, + "learning_rate": 0.0006, + "loss": 4.069897651672363, + "step": 1161 + }, + { + "epoch": 16.13979903888161, + "grad_norm": 0.3074268400669098, + "learning_rate": 0.0006, + "loss": 4.0621137619018555, + "step": 1162 + }, + { + "epoch": 16.15377894276977, + "grad_norm": 0.33090949058532715, + "learning_rate": 0.0006, + "loss": 4.084089279174805, + "step": 1163 + }, + { + "epoch": 16.16775884665793, + "grad_norm": 0.26358580589294434, + "learning_rate": 0.0006, + "loss": 4.066563606262207, + "step": 1164 + }, + { + "epoch": 16.18173875054609, + "grad_norm": 0.25586041808128357, + "learning_rate": 0.0006, + "loss": 4.08109188079834, + "step": 1165 + }, + { + "epoch": 16.195718654434252, + "grad_norm": 0.2966184616088867, + "learning_rate": 0.0006, + "loss": 4.039186477661133, + "step": 1166 + }, + { + "epoch": 16.209698558322412, + "grad_norm": 0.3064924478530884, + "learning_rate": 0.0006, + "loss": 4.08139705657959, + "step": 1167 + }, + { + "epoch": 16.22367846221057, + "grad_norm": 0.28671345114707947, + "learning_rate": 0.0006, + "loss": 4.04637336730957, + "step": 1168 + }, + { + "epoch": 16.23765836609873, + "grad_norm": 0.26209691166877747, + "learning_rate": 0.0006, + "loss": 4.052768707275391, + "step": 1169 + }, + { + "epoch": 16.251638269986895, + "grad_norm": 0.2758907079696655, + "learning_rate": 0.0006, + "loss": 4.064321517944336, + "step": 1170 + }, + { + "epoch": 16.265618173875055, + "grad_norm": 0.25961801409721375, + "learning_rate": 0.0006, + "loss": 4.057299613952637, + "step": 1171 + }, + { + "epoch": 16.279598077763215, + "grad_norm": 0.2513751685619354, + "learning_rate": 0.0006, + "loss": 4.064148902893066, + "step": 1172 + }, + { + "epoch": 16.293577981651374, + "grad_norm": 0.23920276761054993, + "learning_rate": 0.0006, + "loss": 4.101890563964844, + "step": 1173 + }, + { + "epoch": 16.307557885539538, + "grad_norm": 0.22746537625789642, + "learning_rate": 0.0006, + "loss": 4.086627006530762, + "step": 1174 + }, + { + "epoch": 16.321537789427698, + "grad_norm": 0.22633525729179382, + "learning_rate": 0.0006, + "loss": 4.04669189453125, + "step": 1175 + }, + { + "epoch": 16.335517693315857, + "grad_norm": 0.2654891610145569, + "learning_rate": 0.0006, + "loss": 4.086793422698975, + "step": 1176 + }, + { + "epoch": 16.34949759720402, + "grad_norm": 0.2872653007507324, + "learning_rate": 0.0006, + "loss": 4.077983856201172, + "step": 1177 + }, + { + "epoch": 16.36347750109218, + "grad_norm": 0.25726038217544556, + "learning_rate": 0.0006, + "loss": 4.066011428833008, + "step": 1178 + }, + { + "epoch": 16.37745740498034, + "grad_norm": 0.2592027485370636, + "learning_rate": 0.0006, + "loss": 4.0482988357543945, + "step": 1179 + }, + { + "epoch": 16.3914373088685, + "grad_norm": 0.2768886685371399, + "learning_rate": 0.0006, + "loss": 4.065151214599609, + "step": 1180 + }, + { + "epoch": 16.405417212756664, + "grad_norm": 0.2956002652645111, + "learning_rate": 0.0006, + "loss": 4.037791728973389, + "step": 1181 + }, + { + "epoch": 16.419397116644824, + "grad_norm": 0.3092120885848999, + "learning_rate": 0.0006, + "loss": 4.062164306640625, + "step": 1182 + }, + { + "epoch": 16.433377020532983, + "grad_norm": 0.29516810178756714, + "learning_rate": 0.0006, + "loss": 4.025505065917969, + "step": 1183 + }, + { + "epoch": 16.447356924421143, + "grad_norm": 0.2640177607536316, + "learning_rate": 0.0006, + "loss": 4.060182571411133, + "step": 1184 + }, + { + "epoch": 16.461336828309307, + "grad_norm": 0.2444908320903778, + "learning_rate": 0.0006, + "loss": 4.046144962310791, + "step": 1185 + }, + { + "epoch": 16.475316732197467, + "grad_norm": 0.23190705478191376, + "learning_rate": 0.0006, + "loss": 4.075569152832031, + "step": 1186 + }, + { + "epoch": 16.489296636085626, + "grad_norm": 0.2383626103401184, + "learning_rate": 0.0006, + "loss": 4.088897705078125, + "step": 1187 + }, + { + "epoch": 16.503276539973786, + "grad_norm": 0.20688803493976593, + "learning_rate": 0.0006, + "loss": 4.064517974853516, + "step": 1188 + }, + { + "epoch": 16.51725644386195, + "grad_norm": 0.22610054910182953, + "learning_rate": 0.0006, + "loss": 4.04502010345459, + "step": 1189 + }, + { + "epoch": 16.53123634775011, + "grad_norm": 0.2014893889427185, + "learning_rate": 0.0006, + "loss": 4.058279514312744, + "step": 1190 + }, + { + "epoch": 16.54521625163827, + "grad_norm": 0.21459777653217316, + "learning_rate": 0.0006, + "loss": 4.066389083862305, + "step": 1191 + }, + { + "epoch": 16.55919615552643, + "grad_norm": 0.22909940779209137, + "learning_rate": 0.0006, + "loss": 4.0557966232299805, + "step": 1192 + }, + { + "epoch": 16.573176059414592, + "grad_norm": 0.20039083063602448, + "learning_rate": 0.0006, + "loss": 4.092845916748047, + "step": 1193 + }, + { + "epoch": 16.587155963302752, + "grad_norm": 0.22651726007461548, + "learning_rate": 0.0006, + "loss": 4.034615516662598, + "step": 1194 + }, + { + "epoch": 16.601135867190912, + "grad_norm": 0.21901755034923553, + "learning_rate": 0.0006, + "loss": 4.035619735717773, + "step": 1195 + }, + { + "epoch": 16.615115771079076, + "grad_norm": 0.22930841147899628, + "learning_rate": 0.0006, + "loss": 4.080800533294678, + "step": 1196 + }, + { + "epoch": 16.629095674967235, + "grad_norm": 0.212818443775177, + "learning_rate": 0.0006, + "loss": 4.030189514160156, + "step": 1197 + }, + { + "epoch": 16.643075578855395, + "grad_norm": 0.2370826154947281, + "learning_rate": 0.0006, + "loss": 4.062643527984619, + "step": 1198 + }, + { + "epoch": 16.657055482743555, + "grad_norm": 0.24786995351314545, + "learning_rate": 0.0006, + "loss": 4.031761169433594, + "step": 1199 + }, + { + "epoch": 16.67103538663172, + "grad_norm": 0.2305847704410553, + "learning_rate": 0.0006, + "loss": 4.083752155303955, + "step": 1200 + }, + { + "epoch": 16.68501529051988, + "grad_norm": 0.23336584866046906, + "learning_rate": 0.0006, + "loss": 4.079145431518555, + "step": 1201 + }, + { + "epoch": 16.698995194408038, + "grad_norm": 0.23976293206214905, + "learning_rate": 0.0006, + "loss": 4.020473957061768, + "step": 1202 + }, + { + "epoch": 16.712975098296198, + "grad_norm": 0.222761869430542, + "learning_rate": 0.0006, + "loss": 4.065582752227783, + "step": 1203 + }, + { + "epoch": 16.72695500218436, + "grad_norm": 0.23725618422031403, + "learning_rate": 0.0006, + "loss": 4.0263776779174805, + "step": 1204 + }, + { + "epoch": 16.74093490607252, + "grad_norm": 0.23873984813690186, + "learning_rate": 0.0006, + "loss": 4.053092956542969, + "step": 1205 + }, + { + "epoch": 16.75491480996068, + "grad_norm": 0.21043002605438232, + "learning_rate": 0.0006, + "loss": 4.063965797424316, + "step": 1206 + }, + { + "epoch": 16.76889471384884, + "grad_norm": 0.19863522052764893, + "learning_rate": 0.0006, + "loss": 4.061187267303467, + "step": 1207 + }, + { + "epoch": 16.782874617737004, + "grad_norm": 0.1953752487897873, + "learning_rate": 0.0006, + "loss": 4.046016693115234, + "step": 1208 + }, + { + "epoch": 16.796854521625164, + "grad_norm": 0.2130361795425415, + "learning_rate": 0.0006, + "loss": 4.066933631896973, + "step": 1209 + }, + { + "epoch": 16.810834425513324, + "grad_norm": 0.19598130881786346, + "learning_rate": 0.0006, + "loss": 4.071558952331543, + "step": 1210 + }, + { + "epoch": 16.824814329401484, + "grad_norm": 0.20331116020679474, + "learning_rate": 0.0006, + "loss": 4.088632106781006, + "step": 1211 + }, + { + "epoch": 16.838794233289647, + "grad_norm": 0.20423150062561035, + "learning_rate": 0.0006, + "loss": 4.032224655151367, + "step": 1212 + }, + { + "epoch": 16.852774137177807, + "grad_norm": 0.2401197850704193, + "learning_rate": 0.0006, + "loss": 4.037393569946289, + "step": 1213 + }, + { + "epoch": 16.866754041065967, + "grad_norm": 0.26102620363235474, + "learning_rate": 0.0006, + "loss": 4.04738712310791, + "step": 1214 + }, + { + "epoch": 16.88073394495413, + "grad_norm": 0.2438521534204483, + "learning_rate": 0.0006, + "loss": 4.015673637390137, + "step": 1215 + }, + { + "epoch": 16.89471384884229, + "grad_norm": 0.20742061734199524, + "learning_rate": 0.0006, + "loss": 4.049060821533203, + "step": 1216 + }, + { + "epoch": 16.90869375273045, + "grad_norm": 0.22028608620166779, + "learning_rate": 0.0006, + "loss": 4.088971138000488, + "step": 1217 + }, + { + "epoch": 16.92267365661861, + "grad_norm": 0.21746744215488434, + "learning_rate": 0.0006, + "loss": 4.021710395812988, + "step": 1218 + }, + { + "epoch": 16.936653560506773, + "grad_norm": 0.2226102203130722, + "learning_rate": 0.0006, + "loss": 4.050119400024414, + "step": 1219 + }, + { + "epoch": 16.950633464394933, + "grad_norm": 0.23903657495975494, + "learning_rate": 0.0006, + "loss": 4.0570526123046875, + "step": 1220 + }, + { + "epoch": 16.964613368283093, + "grad_norm": 0.2556349039077759, + "learning_rate": 0.0006, + "loss": 4.0448808670043945, + "step": 1221 + }, + { + "epoch": 16.978593272171253, + "grad_norm": 0.28445592522621155, + "learning_rate": 0.0006, + "loss": 4.052034378051758, + "step": 1222 + }, + { + "epoch": 16.992573176059416, + "grad_norm": 0.273973673582077, + "learning_rate": 0.0006, + "loss": 4.02907657623291, + "step": 1223 + }, + { + "epoch": 17.0, + "grad_norm": 0.26125091314315796, + "learning_rate": 0.0006, + "loss": 4.10643196105957, + "step": 1224 + }, + { + "epoch": 17.0, + "eval_loss": 4.2585954666137695, + "eval_runtime": 44.8583, + "eval_samples_per_second": 54.438, + "eval_steps_per_second": 3.411, + "step": 1224 + }, + { + "epoch": 17.01397990388816, + "grad_norm": 0.2786196768283844, + "learning_rate": 0.0006, + "loss": 4.044719219207764, + "step": 1225 + }, + { + "epoch": 17.027959807776323, + "grad_norm": 0.2969571650028229, + "learning_rate": 0.0006, + "loss": 4.022037506103516, + "step": 1226 + }, + { + "epoch": 17.041939711664483, + "grad_norm": 0.32196253538131714, + "learning_rate": 0.0006, + "loss": 4.03636360168457, + "step": 1227 + }, + { + "epoch": 17.055919615552643, + "grad_norm": 0.28617000579833984, + "learning_rate": 0.0006, + "loss": 4.012125492095947, + "step": 1228 + }, + { + "epoch": 17.069899519440803, + "grad_norm": 0.26539644598960876, + "learning_rate": 0.0006, + "loss": 4.020190715789795, + "step": 1229 + }, + { + "epoch": 17.083879423328966, + "grad_norm": 0.24315394461154938, + "learning_rate": 0.0006, + "loss": 4.0553812980651855, + "step": 1230 + }, + { + "epoch": 17.097859327217126, + "grad_norm": 0.23798158764839172, + "learning_rate": 0.0006, + "loss": 4.004805088043213, + "step": 1231 + }, + { + "epoch": 17.111839231105286, + "grad_norm": 0.25723618268966675, + "learning_rate": 0.0006, + "loss": 4.00108003616333, + "step": 1232 + }, + { + "epoch": 17.125819134993446, + "grad_norm": 0.2669757604598999, + "learning_rate": 0.0006, + "loss": 4.00828742980957, + "step": 1233 + }, + { + "epoch": 17.13979903888161, + "grad_norm": 0.26421651244163513, + "learning_rate": 0.0006, + "loss": 3.995478391647339, + "step": 1234 + }, + { + "epoch": 17.15377894276977, + "grad_norm": 0.24745801091194153, + "learning_rate": 0.0006, + "loss": 4.0171027183532715, + "step": 1235 + }, + { + "epoch": 17.16775884665793, + "grad_norm": 0.27028775215148926, + "learning_rate": 0.0006, + "loss": 4.017108917236328, + "step": 1236 + }, + { + "epoch": 17.18173875054609, + "grad_norm": 0.27247968316078186, + "learning_rate": 0.0006, + "loss": 4.032601356506348, + "step": 1237 + }, + { + "epoch": 17.195718654434252, + "grad_norm": 0.24620869755744934, + "learning_rate": 0.0006, + "loss": 4.022171974182129, + "step": 1238 + }, + { + "epoch": 17.209698558322412, + "grad_norm": 0.23407386243343353, + "learning_rate": 0.0006, + "loss": 3.9946959018707275, + "step": 1239 + }, + { + "epoch": 17.22367846221057, + "grad_norm": 0.22559069097042084, + "learning_rate": 0.0006, + "loss": 4.013072490692139, + "step": 1240 + }, + { + "epoch": 17.23765836609873, + "grad_norm": 0.226687952876091, + "learning_rate": 0.0006, + "loss": 4.023543834686279, + "step": 1241 + }, + { + "epoch": 17.251638269986895, + "grad_norm": 0.24436360597610474, + "learning_rate": 0.0006, + "loss": 4.044206619262695, + "step": 1242 + }, + { + "epoch": 17.265618173875055, + "grad_norm": 0.25527626276016235, + "learning_rate": 0.0006, + "loss": 4.016424179077148, + "step": 1243 + }, + { + "epoch": 17.279598077763215, + "grad_norm": 0.26126864552497864, + "learning_rate": 0.0006, + "loss": 4.024394512176514, + "step": 1244 + }, + { + "epoch": 17.293577981651374, + "grad_norm": 0.25746744871139526, + "learning_rate": 0.0006, + "loss": 4.046844482421875, + "step": 1245 + }, + { + "epoch": 17.307557885539538, + "grad_norm": 0.26579564809799194, + "learning_rate": 0.0006, + "loss": 4.021010398864746, + "step": 1246 + }, + { + "epoch": 17.321537789427698, + "grad_norm": 0.2713971734046936, + "learning_rate": 0.0006, + "loss": 4.022331237792969, + "step": 1247 + }, + { + "epoch": 17.335517693315857, + "grad_norm": 0.24217180907726288, + "learning_rate": 0.0006, + "loss": 4.006353855133057, + "step": 1248 + }, + { + "epoch": 17.34949759720402, + "grad_norm": 0.26899752020835876, + "learning_rate": 0.0006, + "loss": 4.068023681640625, + "step": 1249 + }, + { + "epoch": 17.36347750109218, + "grad_norm": 0.26745253801345825, + "learning_rate": 0.0006, + "loss": 4.031207084655762, + "step": 1250 + }, + { + "epoch": 17.37745740498034, + "grad_norm": 0.21533764898777008, + "learning_rate": 0.0006, + "loss": 4.042410850524902, + "step": 1251 + }, + { + "epoch": 17.3914373088685, + "grad_norm": 0.21958027780056, + "learning_rate": 0.0006, + "loss": 4.02597713470459, + "step": 1252 + }, + { + "epoch": 17.405417212756664, + "grad_norm": 0.263068825006485, + "learning_rate": 0.0006, + "loss": 4.0035905838012695, + "step": 1253 + }, + { + "epoch": 17.419397116644824, + "grad_norm": 0.24044716358184814, + "learning_rate": 0.0006, + "loss": 4.005317687988281, + "step": 1254 + }, + { + "epoch": 17.433377020532983, + "grad_norm": 0.19142559170722961, + "learning_rate": 0.0006, + "loss": 3.9976844787597656, + "step": 1255 + }, + { + "epoch": 17.447356924421143, + "grad_norm": 0.18650250136852264, + "learning_rate": 0.0006, + "loss": 4.031353950500488, + "step": 1256 + }, + { + "epoch": 17.461336828309307, + "grad_norm": 0.1984022557735443, + "learning_rate": 0.0006, + "loss": 4.002097129821777, + "step": 1257 + }, + { + "epoch": 17.475316732197467, + "grad_norm": 0.20087844133377075, + "learning_rate": 0.0006, + "loss": 4.031151294708252, + "step": 1258 + }, + { + "epoch": 17.489296636085626, + "grad_norm": 0.20881228148937225, + "learning_rate": 0.0006, + "loss": 4.034793853759766, + "step": 1259 + }, + { + "epoch": 17.503276539973786, + "grad_norm": 0.23958556354045868, + "learning_rate": 0.0006, + "loss": 4.025238990783691, + "step": 1260 + }, + { + "epoch": 17.51725644386195, + "grad_norm": 0.23927845060825348, + "learning_rate": 0.0006, + "loss": 3.999828338623047, + "step": 1261 + }, + { + "epoch": 17.53123634775011, + "grad_norm": 0.20342715084552765, + "learning_rate": 0.0006, + "loss": 4.054262161254883, + "step": 1262 + }, + { + "epoch": 17.54521625163827, + "grad_norm": 0.21370555460453033, + "learning_rate": 0.0006, + "loss": 4.011582374572754, + "step": 1263 + }, + { + "epoch": 17.55919615552643, + "grad_norm": 0.23681946098804474, + "learning_rate": 0.0006, + "loss": 4.029694080352783, + "step": 1264 + }, + { + "epoch": 17.573176059414592, + "grad_norm": 0.24190311133861542, + "learning_rate": 0.0006, + "loss": 4.018783092498779, + "step": 1265 + }, + { + "epoch": 17.587155963302752, + "grad_norm": 0.23215509951114655, + "learning_rate": 0.0006, + "loss": 4.009703159332275, + "step": 1266 + }, + { + "epoch": 17.601135867190912, + "grad_norm": 0.21122977137565613, + "learning_rate": 0.0006, + "loss": 4.0345659255981445, + "step": 1267 + }, + { + "epoch": 17.615115771079076, + "grad_norm": 0.2075948715209961, + "learning_rate": 0.0006, + "loss": 4.070703506469727, + "step": 1268 + }, + { + "epoch": 17.629095674967235, + "grad_norm": 0.21667909622192383, + "learning_rate": 0.0006, + "loss": 4.020771503448486, + "step": 1269 + }, + { + "epoch": 17.643075578855395, + "grad_norm": 0.20960724353790283, + "learning_rate": 0.0006, + "loss": 4.026404857635498, + "step": 1270 + }, + { + "epoch": 17.657055482743555, + "grad_norm": 0.22575686872005463, + "learning_rate": 0.0006, + "loss": 4.01981258392334, + "step": 1271 + }, + { + "epoch": 17.67103538663172, + "grad_norm": 0.2565988302230835, + "learning_rate": 0.0006, + "loss": 4.015827178955078, + "step": 1272 + }, + { + "epoch": 17.68501529051988, + "grad_norm": 0.24831551313400269, + "learning_rate": 0.0006, + "loss": 4.012457847595215, + "step": 1273 + }, + { + "epoch": 17.698995194408038, + "grad_norm": 0.22595494985580444, + "learning_rate": 0.0006, + "loss": 4.031386375427246, + "step": 1274 + }, + { + "epoch": 17.712975098296198, + "grad_norm": 0.20687322318553925, + "learning_rate": 0.0006, + "loss": 4.014216423034668, + "step": 1275 + }, + { + "epoch": 17.72695500218436, + "grad_norm": 0.21916012465953827, + "learning_rate": 0.0006, + "loss": 4.037643909454346, + "step": 1276 + }, + { + "epoch": 17.74093490607252, + "grad_norm": 0.2243107706308365, + "learning_rate": 0.0006, + "loss": 4.033044815063477, + "step": 1277 + }, + { + "epoch": 17.75491480996068, + "grad_norm": 0.2402164787054062, + "learning_rate": 0.0006, + "loss": 4.026636123657227, + "step": 1278 + }, + { + "epoch": 17.76889471384884, + "grad_norm": 0.27957046031951904, + "learning_rate": 0.0006, + "loss": 4.0270867347717285, + "step": 1279 + }, + { + "epoch": 17.782874617737004, + "grad_norm": 0.27447596192359924, + "learning_rate": 0.0006, + "loss": 4.0120134353637695, + "step": 1280 + }, + { + "epoch": 17.796854521625164, + "grad_norm": 0.26926323771476746, + "learning_rate": 0.0006, + "loss": 4.027970314025879, + "step": 1281 + }, + { + "epoch": 17.810834425513324, + "grad_norm": 0.2535291314125061, + "learning_rate": 0.0006, + "loss": 4.002565383911133, + "step": 1282 + }, + { + "epoch": 17.824814329401484, + "grad_norm": 0.22639447450637817, + "learning_rate": 0.0006, + "loss": 4.032750606536865, + "step": 1283 + }, + { + "epoch": 17.838794233289647, + "grad_norm": 0.23384462296962738, + "learning_rate": 0.0006, + "loss": 4.03568172454834, + "step": 1284 + }, + { + "epoch": 17.852774137177807, + "grad_norm": 0.22971470654010773, + "learning_rate": 0.0006, + "loss": 4.031299591064453, + "step": 1285 + }, + { + "epoch": 17.866754041065967, + "grad_norm": 0.24540141224861145, + "learning_rate": 0.0006, + "loss": 4.0142669677734375, + "step": 1286 + }, + { + "epoch": 17.88073394495413, + "grad_norm": 0.2304888367652893, + "learning_rate": 0.0006, + "loss": 3.9964895248413086, + "step": 1287 + }, + { + "epoch": 17.89471384884229, + "grad_norm": 0.22082284092903137, + "learning_rate": 0.0006, + "loss": 4.024693489074707, + "step": 1288 + }, + { + "epoch": 17.90869375273045, + "grad_norm": 0.23677092790603638, + "learning_rate": 0.0006, + "loss": 4.002082347869873, + "step": 1289 + }, + { + "epoch": 17.92267365661861, + "grad_norm": 0.23122332990169525, + "learning_rate": 0.0006, + "loss": 4.025351524353027, + "step": 1290 + }, + { + "epoch": 17.936653560506773, + "grad_norm": 0.2548119127750397, + "learning_rate": 0.0006, + "loss": 3.9955825805664062, + "step": 1291 + }, + { + "epoch": 17.950633464394933, + "grad_norm": 0.26950931549072266, + "learning_rate": 0.0006, + "loss": 4.026151180267334, + "step": 1292 + }, + { + "epoch": 17.964613368283093, + "grad_norm": 0.3023233711719513, + "learning_rate": 0.0006, + "loss": 4.006035804748535, + "step": 1293 + }, + { + "epoch": 17.978593272171253, + "grad_norm": 0.3190958499908447, + "learning_rate": 0.0006, + "loss": 4.023565292358398, + "step": 1294 + }, + { + "epoch": 17.992573176059416, + "grad_norm": 0.28878068923950195, + "learning_rate": 0.0006, + "loss": 4.020973205566406, + "step": 1295 + }, + { + "epoch": 18.0, + "grad_norm": 0.27312418818473816, + "learning_rate": 0.0006, + "loss": 3.99906587600708, + "step": 1296 + }, + { + "epoch": 18.0, + "eval_loss": 4.224447250366211, + "eval_runtime": 52.5728, + "eval_samples_per_second": 46.45, + "eval_steps_per_second": 2.91, + "step": 1296 + }, + { + "epoch": 18.01397990388816, + "grad_norm": 0.2567712664604187, + "learning_rate": 0.0006, + "loss": 3.9755055904388428, + "step": 1297 + }, + { + "epoch": 18.027959807776323, + "grad_norm": 0.25048133730888367, + "learning_rate": 0.0006, + "loss": 4.009254455566406, + "step": 1298 + }, + { + "epoch": 18.041939711664483, + "grad_norm": 0.2556909918785095, + "learning_rate": 0.0006, + "loss": 4.001235008239746, + "step": 1299 + }, + { + "epoch": 18.055919615552643, + "grad_norm": 0.2501400113105774, + "learning_rate": 0.0006, + "loss": 3.980726480484009, + "step": 1300 + }, + { + "epoch": 18.069899519440803, + "grad_norm": 0.23977792263031006, + "learning_rate": 0.0006, + "loss": 3.964195728302002, + "step": 1301 + }, + { + "epoch": 18.083879423328966, + "grad_norm": 0.25650718808174133, + "learning_rate": 0.0006, + "loss": 4.015914440155029, + "step": 1302 + }, + { + "epoch": 18.097859327217126, + "grad_norm": 0.234053835272789, + "learning_rate": 0.0006, + "loss": 4.0159149169921875, + "step": 1303 + }, + { + "epoch": 18.111839231105286, + "grad_norm": 0.21967713534832, + "learning_rate": 0.0006, + "loss": 4.0055694580078125, + "step": 1304 + }, + { + "epoch": 18.125819134993446, + "grad_norm": 0.21790878474712372, + "learning_rate": 0.0006, + "loss": 3.986253261566162, + "step": 1305 + }, + { + "epoch": 18.13979903888161, + "grad_norm": 0.22955302894115448, + "learning_rate": 0.0006, + "loss": 3.959421157836914, + "step": 1306 + }, + { + "epoch": 18.15377894276977, + "grad_norm": 0.2559174597263336, + "learning_rate": 0.0006, + "loss": 4.0069756507873535, + "step": 1307 + }, + { + "epoch": 18.16775884665793, + "grad_norm": 0.26132866740226746, + "learning_rate": 0.0006, + "loss": 3.9874095916748047, + "step": 1308 + }, + { + "epoch": 18.18173875054609, + "grad_norm": 0.23258940875530243, + "learning_rate": 0.0006, + "loss": 3.9762492179870605, + "step": 1309 + }, + { + "epoch": 18.195718654434252, + "grad_norm": 0.22347190976142883, + "learning_rate": 0.0006, + "loss": 3.9923410415649414, + "step": 1310 + }, + { + "epoch": 18.209698558322412, + "grad_norm": 0.23095804452896118, + "learning_rate": 0.0006, + "loss": 4.019245624542236, + "step": 1311 + }, + { + "epoch": 18.22367846221057, + "grad_norm": 0.24817052483558655, + "learning_rate": 0.0006, + "loss": 3.9697511196136475, + "step": 1312 + }, + { + "epoch": 18.23765836609873, + "grad_norm": 0.2566024959087372, + "learning_rate": 0.0006, + "loss": 3.978804111480713, + "step": 1313 + }, + { + "epoch": 18.251638269986895, + "grad_norm": 0.2527952790260315, + "learning_rate": 0.0006, + "loss": 3.972018241882324, + "step": 1314 + }, + { + "epoch": 18.265618173875055, + "grad_norm": 0.2508150637149811, + "learning_rate": 0.0006, + "loss": 3.9971275329589844, + "step": 1315 + }, + { + "epoch": 18.279598077763215, + "grad_norm": 0.23242022097110748, + "learning_rate": 0.0006, + "loss": 3.9712045192718506, + "step": 1316 + }, + { + "epoch": 18.293577981651374, + "grad_norm": 0.23474404215812683, + "learning_rate": 0.0006, + "loss": 3.9926767349243164, + "step": 1317 + }, + { + "epoch": 18.307557885539538, + "grad_norm": 0.2417769432067871, + "learning_rate": 0.0006, + "loss": 3.9920949935913086, + "step": 1318 + }, + { + "epoch": 18.321537789427698, + "grad_norm": 0.23839452862739563, + "learning_rate": 0.0006, + "loss": 4.016645431518555, + "step": 1319 + }, + { + "epoch": 18.335517693315857, + "grad_norm": 0.2512452304363251, + "learning_rate": 0.0006, + "loss": 3.97586727142334, + "step": 1320 + }, + { + "epoch": 18.34949759720402, + "grad_norm": 0.27503693103790283, + "learning_rate": 0.0006, + "loss": 4.000148773193359, + "step": 1321 + }, + { + "epoch": 18.36347750109218, + "grad_norm": 0.27830836176872253, + "learning_rate": 0.0006, + "loss": 3.9972195625305176, + "step": 1322 + }, + { + "epoch": 18.37745740498034, + "grad_norm": 0.2571812570095062, + "learning_rate": 0.0006, + "loss": 3.9900810718536377, + "step": 1323 + }, + { + "epoch": 18.3914373088685, + "grad_norm": 0.2310052365064621, + "learning_rate": 0.0006, + "loss": 4.003000259399414, + "step": 1324 + }, + { + "epoch": 18.405417212756664, + "grad_norm": 0.19615735113620758, + "learning_rate": 0.0006, + "loss": 3.9536571502685547, + "step": 1325 + }, + { + "epoch": 18.419397116644824, + "grad_norm": 0.21323896944522858, + "learning_rate": 0.0006, + "loss": 3.977508068084717, + "step": 1326 + }, + { + "epoch": 18.433377020532983, + "grad_norm": 0.21404202282428741, + "learning_rate": 0.0006, + "loss": 4.015361785888672, + "step": 1327 + }, + { + "epoch": 18.447356924421143, + "grad_norm": 0.1991959661245346, + "learning_rate": 0.0006, + "loss": 4.000286102294922, + "step": 1328 + }, + { + "epoch": 18.461336828309307, + "grad_norm": 0.2073599398136139, + "learning_rate": 0.0006, + "loss": 3.973065137863159, + "step": 1329 + }, + { + "epoch": 18.475316732197467, + "grad_norm": 0.2096073031425476, + "learning_rate": 0.0006, + "loss": 3.987032890319824, + "step": 1330 + }, + { + "epoch": 18.489296636085626, + "grad_norm": 0.2380610853433609, + "learning_rate": 0.0006, + "loss": 4.035274505615234, + "step": 1331 + }, + { + "epoch": 18.503276539973786, + "grad_norm": 0.23570716381072998, + "learning_rate": 0.0006, + "loss": 4.010516166687012, + "step": 1332 + }, + { + "epoch": 18.51725644386195, + "grad_norm": 0.24805466830730438, + "learning_rate": 0.0006, + "loss": 3.9750983715057373, + "step": 1333 + }, + { + "epoch": 18.53123634775011, + "grad_norm": 0.25173231959342957, + "learning_rate": 0.0006, + "loss": 3.9742345809936523, + "step": 1334 + }, + { + "epoch": 18.54521625163827, + "grad_norm": 0.24590367078781128, + "learning_rate": 0.0006, + "loss": 4.0037312507629395, + "step": 1335 + }, + { + "epoch": 18.55919615552643, + "grad_norm": 0.24379394948482513, + "learning_rate": 0.0006, + "loss": 3.993858814239502, + "step": 1336 + }, + { + "epoch": 18.573176059414592, + "grad_norm": 0.21708883345127106, + "learning_rate": 0.0006, + "loss": 3.965670585632324, + "step": 1337 + }, + { + "epoch": 18.587155963302752, + "grad_norm": 0.21024051308631897, + "learning_rate": 0.0006, + "loss": 3.987551689147949, + "step": 1338 + }, + { + "epoch": 18.601135867190912, + "grad_norm": 0.23376783728599548, + "learning_rate": 0.0006, + "loss": 4.002841472625732, + "step": 1339 + }, + { + "epoch": 18.615115771079076, + "grad_norm": 0.25350701808929443, + "learning_rate": 0.0006, + "loss": 3.9881370067596436, + "step": 1340 + }, + { + "epoch": 18.629095674967235, + "grad_norm": 0.2542140483856201, + "learning_rate": 0.0006, + "loss": 4.003695964813232, + "step": 1341 + }, + { + "epoch": 18.643075578855395, + "grad_norm": 0.22932685911655426, + "learning_rate": 0.0006, + "loss": 4.0146002769470215, + "step": 1342 + }, + { + "epoch": 18.657055482743555, + "grad_norm": 0.21099458634853363, + "learning_rate": 0.0006, + "loss": 3.970472812652588, + "step": 1343 + }, + { + "epoch": 18.67103538663172, + "grad_norm": 0.2234615832567215, + "learning_rate": 0.0006, + "loss": 3.9821488857269287, + "step": 1344 + }, + { + "epoch": 18.68501529051988, + "grad_norm": 0.230327770113945, + "learning_rate": 0.0006, + "loss": 3.996274948120117, + "step": 1345 + }, + { + "epoch": 18.698995194408038, + "grad_norm": 0.23596233129501343, + "learning_rate": 0.0006, + "loss": 3.9747462272644043, + "step": 1346 + }, + { + "epoch": 18.712975098296198, + "grad_norm": 0.24173159897327423, + "learning_rate": 0.0006, + "loss": 4.011804103851318, + "step": 1347 + }, + { + "epoch": 18.72695500218436, + "grad_norm": 0.24087604880332947, + "learning_rate": 0.0006, + "loss": 4.008726119995117, + "step": 1348 + }, + { + "epoch": 18.74093490607252, + "grad_norm": 0.2457292526960373, + "learning_rate": 0.0006, + "loss": 3.990793228149414, + "step": 1349 + }, + { + "epoch": 18.75491480996068, + "grad_norm": 0.22946089506149292, + "learning_rate": 0.0006, + "loss": 3.980494260787964, + "step": 1350 + }, + { + "epoch": 18.76889471384884, + "grad_norm": 0.22986692190170288, + "learning_rate": 0.0006, + "loss": 3.97006893157959, + "step": 1351 + }, + { + "epoch": 18.782874617737004, + "grad_norm": 0.23358555138111115, + "learning_rate": 0.0006, + "loss": 4.008172035217285, + "step": 1352 + }, + { + "epoch": 18.796854521625164, + "grad_norm": 0.20183615386486053, + "learning_rate": 0.0006, + "loss": 3.9720888137817383, + "step": 1353 + }, + { + "epoch": 18.810834425513324, + "grad_norm": 0.19975653290748596, + "learning_rate": 0.0006, + "loss": 3.9783310890197754, + "step": 1354 + }, + { + "epoch": 18.824814329401484, + "grad_norm": 0.18911021947860718, + "learning_rate": 0.0006, + "loss": 3.985982894897461, + "step": 1355 + }, + { + "epoch": 18.838794233289647, + "grad_norm": 0.15984168648719788, + "learning_rate": 0.0006, + "loss": 3.9740548133850098, + "step": 1356 + }, + { + "epoch": 18.852774137177807, + "grad_norm": 0.1755436211824417, + "learning_rate": 0.0006, + "loss": 4.013090133666992, + "step": 1357 + }, + { + "epoch": 18.866754041065967, + "grad_norm": 0.1798417866230011, + "learning_rate": 0.0006, + "loss": 3.997880697250366, + "step": 1358 + }, + { + "epoch": 18.88073394495413, + "grad_norm": 0.20206265151500702, + "learning_rate": 0.0006, + "loss": 3.9892373085021973, + "step": 1359 + }, + { + "epoch": 18.89471384884229, + "grad_norm": 0.23685456812381744, + "learning_rate": 0.0006, + "loss": 3.9909186363220215, + "step": 1360 + }, + { + "epoch": 18.90869375273045, + "grad_norm": 0.26053836941719055, + "learning_rate": 0.0006, + "loss": 4.00327205657959, + "step": 1361 + }, + { + "epoch": 18.92267365661861, + "grad_norm": 0.26215845346450806, + "learning_rate": 0.0006, + "loss": 3.9714717864990234, + "step": 1362 + }, + { + "epoch": 18.936653560506773, + "grad_norm": 0.2433871030807495, + "learning_rate": 0.0006, + "loss": 3.949416160583496, + "step": 1363 + }, + { + "epoch": 18.950633464394933, + "grad_norm": 0.23331883549690247, + "learning_rate": 0.0006, + "loss": 3.980501413345337, + "step": 1364 + }, + { + "epoch": 18.964613368283093, + "grad_norm": 0.2346954047679901, + "learning_rate": 0.0006, + "loss": 3.9974493980407715, + "step": 1365 + }, + { + "epoch": 18.978593272171253, + "grad_norm": 0.25101345777511597, + "learning_rate": 0.0006, + "loss": 3.9800148010253906, + "step": 1366 + }, + { + "epoch": 18.992573176059416, + "grad_norm": 0.26811933517456055, + "learning_rate": 0.0006, + "loss": 4.0065741539001465, + "step": 1367 + }, + { + "epoch": 19.0, + "grad_norm": 0.2731736898422241, + "learning_rate": 0.0006, + "loss": 4.014575481414795, + "step": 1368 + }, + { + "epoch": 19.0, + "eval_loss": 4.200716972351074, + "eval_runtime": 44.6962, + "eval_samples_per_second": 54.636, + "eval_steps_per_second": 3.423, + "step": 1368 + }, + { + "epoch": 19.01397990388816, + "grad_norm": 0.2517746686935425, + "learning_rate": 0.0006, + "loss": 3.9486539363861084, + "step": 1369 + }, + { + "epoch": 19.027959807776323, + "grad_norm": 0.2482699453830719, + "learning_rate": 0.0006, + "loss": 3.95015287399292, + "step": 1370 + }, + { + "epoch": 19.041939711664483, + "grad_norm": 0.21693618595600128, + "learning_rate": 0.0006, + "loss": 3.970022201538086, + "step": 1371 + }, + { + "epoch": 19.055919615552643, + "grad_norm": 0.2035159319639206, + "learning_rate": 0.0006, + "loss": 3.941457748413086, + "step": 1372 + }, + { + "epoch": 19.069899519440803, + "grad_norm": 0.2201429009437561, + "learning_rate": 0.0006, + "loss": 3.946794033050537, + "step": 1373 + }, + { + "epoch": 19.083879423328966, + "grad_norm": 0.22910255193710327, + "learning_rate": 0.0006, + "loss": 3.94606876373291, + "step": 1374 + }, + { + "epoch": 19.097859327217126, + "grad_norm": 0.22378197312355042, + "learning_rate": 0.0006, + "loss": 3.957899570465088, + "step": 1375 + }, + { + "epoch": 19.111839231105286, + "grad_norm": 0.21728114783763885, + "learning_rate": 0.0006, + "loss": 3.9565982818603516, + "step": 1376 + }, + { + "epoch": 19.125819134993446, + "grad_norm": 0.21887634694576263, + "learning_rate": 0.0006, + "loss": 3.9649534225463867, + "step": 1377 + }, + { + "epoch": 19.13979903888161, + "grad_norm": 0.21892991662025452, + "learning_rate": 0.0006, + "loss": 3.971388101577759, + "step": 1378 + }, + { + "epoch": 19.15377894276977, + "grad_norm": 0.24582402408123016, + "learning_rate": 0.0006, + "loss": 3.9370944499969482, + "step": 1379 + }, + { + "epoch": 19.16775884665793, + "grad_norm": 0.27547118067741394, + "learning_rate": 0.0006, + "loss": 3.939406156539917, + "step": 1380 + }, + { + "epoch": 19.18173875054609, + "grad_norm": 0.3131563365459442, + "learning_rate": 0.0006, + "loss": 3.942620277404785, + "step": 1381 + }, + { + "epoch": 19.195718654434252, + "grad_norm": 0.3211703598499298, + "learning_rate": 0.0006, + "loss": 3.9388349056243896, + "step": 1382 + }, + { + "epoch": 19.209698558322412, + "grad_norm": 0.2791919410228729, + "learning_rate": 0.0006, + "loss": 3.9827399253845215, + "step": 1383 + }, + { + "epoch": 19.22367846221057, + "grad_norm": 0.2872016727924347, + "learning_rate": 0.0006, + "loss": 3.976715087890625, + "step": 1384 + }, + { + "epoch": 19.23765836609873, + "grad_norm": 0.2790389060974121, + "learning_rate": 0.0006, + "loss": 3.952850818634033, + "step": 1385 + }, + { + "epoch": 19.251638269986895, + "grad_norm": 0.31903740763664246, + "learning_rate": 0.0006, + "loss": 3.964506149291992, + "step": 1386 + }, + { + "epoch": 19.265618173875055, + "grad_norm": 0.31013646721839905, + "learning_rate": 0.0006, + "loss": 3.967219352722168, + "step": 1387 + }, + { + "epoch": 19.279598077763215, + "grad_norm": 0.2574339509010315, + "learning_rate": 0.0006, + "loss": 3.979168176651001, + "step": 1388 + }, + { + "epoch": 19.293577981651374, + "grad_norm": 0.24621108174324036, + "learning_rate": 0.0006, + "loss": 3.981734275817871, + "step": 1389 + }, + { + "epoch": 19.307557885539538, + "grad_norm": 0.25113818049430847, + "learning_rate": 0.0006, + "loss": 3.9787755012512207, + "step": 1390 + }, + { + "epoch": 19.321537789427698, + "grad_norm": 0.259971022605896, + "learning_rate": 0.0006, + "loss": 3.9648823738098145, + "step": 1391 + }, + { + "epoch": 19.335517693315857, + "grad_norm": 0.22580404579639435, + "learning_rate": 0.0006, + "loss": 3.9658002853393555, + "step": 1392 + }, + { + "epoch": 19.34949759720402, + "grad_norm": 0.2133680284023285, + "learning_rate": 0.0006, + "loss": 3.9615914821624756, + "step": 1393 + }, + { + "epoch": 19.36347750109218, + "grad_norm": 0.2387680858373642, + "learning_rate": 0.0006, + "loss": 3.993811845779419, + "step": 1394 + }, + { + "epoch": 19.37745740498034, + "grad_norm": 0.26086220145225525, + "learning_rate": 0.0006, + "loss": 3.932701826095581, + "step": 1395 + }, + { + "epoch": 19.3914373088685, + "grad_norm": 0.23255233466625214, + "learning_rate": 0.0006, + "loss": 3.8969321250915527, + "step": 1396 + }, + { + "epoch": 19.405417212756664, + "grad_norm": 0.22894541919231415, + "learning_rate": 0.0006, + "loss": 3.9569311141967773, + "step": 1397 + }, + { + "epoch": 19.419397116644824, + "grad_norm": 0.2254200130701065, + "learning_rate": 0.0006, + "loss": 3.953199863433838, + "step": 1398 + }, + { + "epoch": 19.433377020532983, + "grad_norm": 0.25802481174468994, + "learning_rate": 0.0006, + "loss": 3.9714815616607666, + "step": 1399 + }, + { + "epoch": 19.447356924421143, + "grad_norm": 0.24725162982940674, + "learning_rate": 0.0006, + "loss": 3.957339286804199, + "step": 1400 + }, + { + "epoch": 19.461336828309307, + "grad_norm": 0.2162018120288849, + "learning_rate": 0.0006, + "loss": 3.986801862716675, + "step": 1401 + }, + { + "epoch": 19.475316732197467, + "grad_norm": 0.21530906856060028, + "learning_rate": 0.0006, + "loss": 3.9766759872436523, + "step": 1402 + }, + { + "epoch": 19.489296636085626, + "grad_norm": 0.20260323584079742, + "learning_rate": 0.0006, + "loss": 3.9576425552368164, + "step": 1403 + }, + { + "epoch": 19.503276539973786, + "grad_norm": 0.188974529504776, + "learning_rate": 0.0006, + "loss": 3.9852395057678223, + "step": 1404 + }, + { + "epoch": 19.51725644386195, + "grad_norm": 0.19727374613285065, + "learning_rate": 0.0006, + "loss": 3.972484588623047, + "step": 1405 + }, + { + "epoch": 19.53123634775011, + "grad_norm": 0.23708008229732513, + "learning_rate": 0.0006, + "loss": 3.992471694946289, + "step": 1406 + }, + { + "epoch": 19.54521625163827, + "grad_norm": 0.23783449828624725, + "learning_rate": 0.0006, + "loss": 3.9788265228271484, + "step": 1407 + }, + { + "epoch": 19.55919615552643, + "grad_norm": 0.24744364619255066, + "learning_rate": 0.0006, + "loss": 3.9559011459350586, + "step": 1408 + }, + { + "epoch": 19.573176059414592, + "grad_norm": 0.24828094244003296, + "learning_rate": 0.0006, + "loss": 3.9663949012756348, + "step": 1409 + }, + { + "epoch": 19.587155963302752, + "grad_norm": 0.2681315541267395, + "learning_rate": 0.0006, + "loss": 3.9581191539764404, + "step": 1410 + }, + { + "epoch": 19.601135867190912, + "grad_norm": 0.2691532373428345, + "learning_rate": 0.0006, + "loss": 3.9832754135131836, + "step": 1411 + }, + { + "epoch": 19.615115771079076, + "grad_norm": 0.2900252640247345, + "learning_rate": 0.0006, + "loss": 3.984365940093994, + "step": 1412 + }, + { + "epoch": 19.629095674967235, + "grad_norm": 0.3194943070411682, + "learning_rate": 0.0006, + "loss": 3.9856505393981934, + "step": 1413 + }, + { + "epoch": 19.643075578855395, + "grad_norm": 0.3029029071331024, + "learning_rate": 0.0006, + "loss": 3.968992233276367, + "step": 1414 + }, + { + "epoch": 19.657055482743555, + "grad_norm": 0.2658176124095917, + "learning_rate": 0.0006, + "loss": 3.995187282562256, + "step": 1415 + }, + { + "epoch": 19.67103538663172, + "grad_norm": 0.26807504892349243, + "learning_rate": 0.0006, + "loss": 3.9756274223327637, + "step": 1416 + }, + { + "epoch": 19.68501529051988, + "grad_norm": 0.27718642354011536, + "learning_rate": 0.0006, + "loss": 3.9510018825531006, + "step": 1417 + }, + { + "epoch": 19.698995194408038, + "grad_norm": 0.26322051882743835, + "learning_rate": 0.0006, + "loss": 3.965155601501465, + "step": 1418 + }, + { + "epoch": 19.712975098296198, + "grad_norm": 0.2566570043563843, + "learning_rate": 0.0006, + "loss": 3.984218120574951, + "step": 1419 + }, + { + "epoch": 19.72695500218436, + "grad_norm": 0.2218743860721588, + "learning_rate": 0.0006, + "loss": 3.9338784217834473, + "step": 1420 + }, + { + "epoch": 19.74093490607252, + "grad_norm": 0.22894173860549927, + "learning_rate": 0.0006, + "loss": 3.9869046211242676, + "step": 1421 + }, + { + "epoch": 19.75491480996068, + "grad_norm": 0.26837027072906494, + "learning_rate": 0.0006, + "loss": 3.96799898147583, + "step": 1422 + }, + { + "epoch": 19.76889471384884, + "grad_norm": 0.2767876982688904, + "learning_rate": 0.0006, + "loss": 3.9431071281433105, + "step": 1423 + }, + { + "epoch": 19.782874617737004, + "grad_norm": 0.24402284622192383, + "learning_rate": 0.0006, + "loss": 3.9631881713867188, + "step": 1424 + }, + { + "epoch": 19.796854521625164, + "grad_norm": 0.23500724136829376, + "learning_rate": 0.0006, + "loss": 3.9943337440490723, + "step": 1425 + }, + { + "epoch": 19.810834425513324, + "grad_norm": 0.22509142756462097, + "learning_rate": 0.0006, + "loss": 3.961226224899292, + "step": 1426 + }, + { + "epoch": 19.824814329401484, + "grad_norm": 0.23524795472621918, + "learning_rate": 0.0006, + "loss": 3.9552102088928223, + "step": 1427 + }, + { + "epoch": 19.838794233289647, + "grad_norm": 0.22307050228118896, + "learning_rate": 0.0006, + "loss": 3.9623494148254395, + "step": 1428 + }, + { + "epoch": 19.852774137177807, + "grad_norm": 0.21144486963748932, + "learning_rate": 0.0006, + "loss": 3.9620237350463867, + "step": 1429 + }, + { + "epoch": 19.866754041065967, + "grad_norm": 0.20249812304973602, + "learning_rate": 0.0006, + "loss": 3.953911066055298, + "step": 1430 + }, + { + "epoch": 19.88073394495413, + "grad_norm": 0.2350354939699173, + "learning_rate": 0.0006, + "loss": 3.9616730213165283, + "step": 1431 + }, + { + "epoch": 19.89471384884229, + "grad_norm": 0.2566683292388916, + "learning_rate": 0.0006, + "loss": 3.9372501373291016, + "step": 1432 + }, + { + "epoch": 19.90869375273045, + "grad_norm": 0.2520846128463745, + "learning_rate": 0.0006, + "loss": 3.9814648628234863, + "step": 1433 + }, + { + "epoch": 19.92267365661861, + "grad_norm": 0.23989640176296234, + "learning_rate": 0.0006, + "loss": 3.9692864418029785, + "step": 1434 + }, + { + "epoch": 19.936653560506773, + "grad_norm": 0.20650425553321838, + "learning_rate": 0.0006, + "loss": 3.960256814956665, + "step": 1435 + }, + { + "epoch": 19.950633464394933, + "grad_norm": 0.20478376746177673, + "learning_rate": 0.0006, + "loss": 3.9585227966308594, + "step": 1436 + }, + { + "epoch": 19.964613368283093, + "grad_norm": 0.234436497092247, + "learning_rate": 0.0006, + "loss": 3.945631742477417, + "step": 1437 + }, + { + "epoch": 19.978593272171253, + "grad_norm": 0.19969749450683594, + "learning_rate": 0.0006, + "loss": 3.9646050930023193, + "step": 1438 + }, + { + "epoch": 19.992573176059416, + "grad_norm": 0.20638690888881683, + "learning_rate": 0.0006, + "loss": 3.9461846351623535, + "step": 1439 + }, + { + "epoch": 20.0, + "grad_norm": 0.2120274156332016, + "learning_rate": 0.0006, + "loss": 3.965153217315674, + "step": 1440 + }, + { + "epoch": 20.0, + "eval_loss": 4.168524742126465, + "eval_runtime": 44.2796, + "eval_samples_per_second": 55.15, + "eval_steps_per_second": 3.455, + "step": 1440 + }, + { + "epoch": 20.01397990388816, + "grad_norm": 0.19704894721508026, + "learning_rate": 0.0006, + "loss": 3.937016248703003, + "step": 1441 + }, + { + "epoch": 20.027959807776323, + "grad_norm": 0.18682368099689484, + "learning_rate": 0.0006, + "loss": 3.895922899246216, + "step": 1442 + }, + { + "epoch": 20.041939711664483, + "grad_norm": 0.18982571363449097, + "learning_rate": 0.0006, + "loss": 3.929841995239258, + "step": 1443 + }, + { + "epoch": 20.055919615552643, + "grad_norm": 0.20811910927295685, + "learning_rate": 0.0006, + "loss": 3.9498324394226074, + "step": 1444 + }, + { + "epoch": 20.069899519440803, + "grad_norm": 0.2149062603712082, + "learning_rate": 0.0006, + "loss": 3.929853916168213, + "step": 1445 + }, + { + "epoch": 20.083879423328966, + "grad_norm": 0.20016685128211975, + "learning_rate": 0.0006, + "loss": 3.9374136924743652, + "step": 1446 + }, + { + "epoch": 20.097859327217126, + "grad_norm": 0.19969616830348969, + "learning_rate": 0.0006, + "loss": 3.932447910308838, + "step": 1447 + }, + { + "epoch": 20.111839231105286, + "grad_norm": 0.2163356989622116, + "learning_rate": 0.0006, + "loss": 3.9325437545776367, + "step": 1448 + }, + { + "epoch": 20.125819134993446, + "grad_norm": 0.22026969492435455, + "learning_rate": 0.0006, + "loss": 3.9118852615356445, + "step": 1449 + }, + { + "epoch": 20.13979903888161, + "grad_norm": 0.23337116837501526, + "learning_rate": 0.0006, + "loss": 3.9416019916534424, + "step": 1450 + }, + { + "epoch": 20.15377894276977, + "grad_norm": 0.23971447348594666, + "learning_rate": 0.0006, + "loss": 3.9416871070861816, + "step": 1451 + }, + { + "epoch": 20.16775884665793, + "grad_norm": 0.25973960757255554, + "learning_rate": 0.0006, + "loss": 3.93826961517334, + "step": 1452 + }, + { + "epoch": 20.18173875054609, + "grad_norm": 0.2303445190191269, + "learning_rate": 0.0006, + "loss": 3.909383535385132, + "step": 1453 + }, + { + "epoch": 20.195718654434252, + "grad_norm": 0.21090206503868103, + "learning_rate": 0.0006, + "loss": 3.935939311981201, + "step": 1454 + }, + { + "epoch": 20.209698558322412, + "grad_norm": 0.2278691977262497, + "learning_rate": 0.0006, + "loss": 3.9623684883117676, + "step": 1455 + }, + { + "epoch": 20.22367846221057, + "grad_norm": 0.22291512787342072, + "learning_rate": 0.0006, + "loss": 3.9386210441589355, + "step": 1456 + }, + { + "epoch": 20.23765836609873, + "grad_norm": 0.2385793924331665, + "learning_rate": 0.0006, + "loss": 3.927365303039551, + "step": 1457 + }, + { + "epoch": 20.251638269986895, + "grad_norm": 0.23949867486953735, + "learning_rate": 0.0006, + "loss": 3.956698179244995, + "step": 1458 + }, + { + "epoch": 20.265618173875055, + "grad_norm": 0.2232269048690796, + "learning_rate": 0.0006, + "loss": 3.9465065002441406, + "step": 1459 + }, + { + "epoch": 20.279598077763215, + "grad_norm": 0.22286680340766907, + "learning_rate": 0.0006, + "loss": 3.9102284908294678, + "step": 1460 + }, + { + "epoch": 20.293577981651374, + "grad_norm": 0.24039050936698914, + "learning_rate": 0.0006, + "loss": 3.928055763244629, + "step": 1461 + }, + { + "epoch": 20.307557885539538, + "grad_norm": 0.2532738447189331, + "learning_rate": 0.0006, + "loss": 3.931753635406494, + "step": 1462 + }, + { + "epoch": 20.321537789427698, + "grad_norm": 0.2206273376941681, + "learning_rate": 0.0006, + "loss": 3.936119556427002, + "step": 1463 + }, + { + "epoch": 20.335517693315857, + "grad_norm": 0.20918945968151093, + "learning_rate": 0.0006, + "loss": 3.9228529930114746, + "step": 1464 + }, + { + "epoch": 20.34949759720402, + "grad_norm": 0.2324502319097519, + "learning_rate": 0.0006, + "loss": 3.9370768070220947, + "step": 1465 + }, + { + "epoch": 20.36347750109218, + "grad_norm": 0.26811033487319946, + "learning_rate": 0.0006, + "loss": 3.968515396118164, + "step": 1466 + }, + { + "epoch": 20.37745740498034, + "grad_norm": 0.2896045744419098, + "learning_rate": 0.0006, + "loss": 3.945124626159668, + "step": 1467 + }, + { + "epoch": 20.3914373088685, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 3.9399516582489014, + "step": 1468 + }, + { + "epoch": 20.405417212756664, + "grad_norm": 0.3076821565628052, + "learning_rate": 0.0006, + "loss": 3.9545583724975586, + "step": 1469 + }, + { + "epoch": 20.419397116644824, + "grad_norm": 0.3019449710845947, + "learning_rate": 0.0006, + "loss": 3.9502270221710205, + "step": 1470 + }, + { + "epoch": 20.433377020532983, + "grad_norm": 0.31832560896873474, + "learning_rate": 0.0006, + "loss": 3.940439224243164, + "step": 1471 + }, + { + "epoch": 20.447356924421143, + "grad_norm": 0.30303657054901123, + "learning_rate": 0.0006, + "loss": 3.9451770782470703, + "step": 1472 + }, + { + "epoch": 20.461336828309307, + "grad_norm": 0.28122979402542114, + "learning_rate": 0.0006, + "loss": 3.934508800506592, + "step": 1473 + }, + { + "epoch": 20.475316732197467, + "grad_norm": 0.27013441920280457, + "learning_rate": 0.0006, + "loss": 3.924323081970215, + "step": 1474 + }, + { + "epoch": 20.489296636085626, + "grad_norm": 0.29052063822746277, + "learning_rate": 0.0006, + "loss": 3.970916748046875, + "step": 1475 + }, + { + "epoch": 20.503276539973786, + "grad_norm": 0.2871626913547516, + "learning_rate": 0.0006, + "loss": 3.945425033569336, + "step": 1476 + }, + { + "epoch": 20.51725644386195, + "grad_norm": 0.2396184206008911, + "learning_rate": 0.0006, + "loss": 3.964290142059326, + "step": 1477 + }, + { + "epoch": 20.53123634775011, + "grad_norm": 0.21942107379436493, + "learning_rate": 0.0006, + "loss": 3.910101890563965, + "step": 1478 + }, + { + "epoch": 20.54521625163827, + "grad_norm": 0.22193685173988342, + "learning_rate": 0.0006, + "loss": 3.914005756378174, + "step": 1479 + }, + { + "epoch": 20.55919615552643, + "grad_norm": 0.20207515358924866, + "learning_rate": 0.0006, + "loss": 3.9575581550598145, + "step": 1480 + }, + { + "epoch": 20.573176059414592, + "grad_norm": 0.17855247855186462, + "learning_rate": 0.0006, + "loss": 3.941490411758423, + "step": 1481 + }, + { + "epoch": 20.587155963302752, + "grad_norm": 0.21268485486507416, + "learning_rate": 0.0006, + "loss": 3.94045352935791, + "step": 1482 + }, + { + "epoch": 20.601135867190912, + "grad_norm": 0.24890053272247314, + "learning_rate": 0.0006, + "loss": 3.932961940765381, + "step": 1483 + }, + { + "epoch": 20.615115771079076, + "grad_norm": 0.23771314322948456, + "learning_rate": 0.0006, + "loss": 3.9067630767822266, + "step": 1484 + }, + { + "epoch": 20.629095674967235, + "grad_norm": 0.20990237593650818, + "learning_rate": 0.0006, + "loss": 3.9476752281188965, + "step": 1485 + }, + { + "epoch": 20.643075578855395, + "grad_norm": 0.20058798789978027, + "learning_rate": 0.0006, + "loss": 3.9350547790527344, + "step": 1486 + }, + { + "epoch": 20.657055482743555, + "grad_norm": 0.1953001767396927, + "learning_rate": 0.0006, + "loss": 3.9437222480773926, + "step": 1487 + }, + { + "epoch": 20.67103538663172, + "grad_norm": 0.18748535215854645, + "learning_rate": 0.0006, + "loss": 3.9336047172546387, + "step": 1488 + }, + { + "epoch": 20.68501529051988, + "grad_norm": 0.18874801695346832, + "learning_rate": 0.0006, + "loss": 3.9042580127716064, + "step": 1489 + }, + { + "epoch": 20.698995194408038, + "grad_norm": 0.1844169795513153, + "learning_rate": 0.0006, + "loss": 3.9302420616149902, + "step": 1490 + }, + { + "epoch": 20.712975098296198, + "grad_norm": 0.18519413471221924, + "learning_rate": 0.0006, + "loss": 3.9527437686920166, + "step": 1491 + }, + { + "epoch": 20.72695500218436, + "grad_norm": 0.20084598660469055, + "learning_rate": 0.0006, + "loss": 3.9161760807037354, + "step": 1492 + }, + { + "epoch": 20.74093490607252, + "grad_norm": 0.2015734612941742, + "learning_rate": 0.0006, + "loss": 3.9466545581817627, + "step": 1493 + }, + { + "epoch": 20.75491480996068, + "grad_norm": 0.2210122048854828, + "learning_rate": 0.0006, + "loss": 3.8994693756103516, + "step": 1494 + }, + { + "epoch": 20.76889471384884, + "grad_norm": 0.23019762337207794, + "learning_rate": 0.0006, + "loss": 3.93685245513916, + "step": 1495 + }, + { + "epoch": 20.782874617737004, + "grad_norm": 0.21246281266212463, + "learning_rate": 0.0006, + "loss": 3.9499399662017822, + "step": 1496 + }, + { + "epoch": 20.796854521625164, + "grad_norm": 0.21142810583114624, + "learning_rate": 0.0006, + "loss": 3.9317150115966797, + "step": 1497 + }, + { + "epoch": 20.810834425513324, + "grad_norm": 0.20230524241924286, + "learning_rate": 0.0006, + "loss": 3.9389750957489014, + "step": 1498 + }, + { + "epoch": 20.824814329401484, + "grad_norm": 0.21096977591514587, + "learning_rate": 0.0006, + "loss": 3.9325194358825684, + "step": 1499 + }, + { + "epoch": 20.838794233289647, + "grad_norm": 0.2309989333152771, + "learning_rate": 0.0006, + "loss": 3.943641185760498, + "step": 1500 + }, + { + "epoch": 20.852774137177807, + "grad_norm": 0.2016306221485138, + "learning_rate": 0.0006, + "loss": 3.986043930053711, + "step": 1501 + }, + { + "epoch": 20.866754041065967, + "grad_norm": 0.2107970118522644, + "learning_rate": 0.0006, + "loss": 3.9219160079956055, + "step": 1502 + }, + { + "epoch": 20.88073394495413, + "grad_norm": 0.21580125391483307, + "learning_rate": 0.0006, + "loss": 3.942014694213867, + "step": 1503 + }, + { + "epoch": 20.89471384884229, + "grad_norm": 0.21348726749420166, + "learning_rate": 0.0006, + "loss": 3.9389920234680176, + "step": 1504 + }, + { + "epoch": 20.90869375273045, + "grad_norm": 0.23094943165779114, + "learning_rate": 0.0006, + "loss": 3.952993392944336, + "step": 1505 + }, + { + "epoch": 20.92267365661861, + "grad_norm": 0.22431740164756775, + "learning_rate": 0.0006, + "loss": 3.897671937942505, + "step": 1506 + }, + { + "epoch": 20.936653560506773, + "grad_norm": 0.20056353509426117, + "learning_rate": 0.0006, + "loss": 3.9100005626678467, + "step": 1507 + }, + { + "epoch": 20.950633464394933, + "grad_norm": 0.20604434609413147, + "learning_rate": 0.0006, + "loss": 3.9486045837402344, + "step": 1508 + }, + { + "epoch": 20.964613368283093, + "grad_norm": 0.22979380190372467, + "learning_rate": 0.0006, + "loss": 3.977163553237915, + "step": 1509 + }, + { + "epoch": 20.978593272171253, + "grad_norm": 0.2421523779630661, + "learning_rate": 0.0006, + "loss": 3.9216256141662598, + "step": 1510 + }, + { + "epoch": 20.992573176059416, + "grad_norm": 0.25776705145835876, + "learning_rate": 0.0006, + "loss": 3.9221739768981934, + "step": 1511 + }, + { + "epoch": 21.0, + "grad_norm": 0.2750694751739502, + "learning_rate": 0.0006, + "loss": 3.938098907470703, + "step": 1512 + }, + { + "epoch": 21.0, + "eval_loss": 4.159763336181641, + "eval_runtime": 44.8663, + "eval_samples_per_second": 54.428, + "eval_steps_per_second": 3.41, + "step": 1512 + }, + { + "epoch": 21.01397990388816, + "grad_norm": 0.24513043463230133, + "learning_rate": 0.0006, + "loss": 3.8939385414123535, + "step": 1513 + }, + { + "epoch": 21.027959807776323, + "grad_norm": 0.22209352254867554, + "learning_rate": 0.0006, + "loss": 3.9044857025146484, + "step": 1514 + }, + { + "epoch": 21.041939711664483, + "grad_norm": 0.22437648475170135, + "learning_rate": 0.0006, + "loss": 3.9325196743011475, + "step": 1515 + }, + { + "epoch": 21.055919615552643, + "grad_norm": 0.21168062090873718, + "learning_rate": 0.0006, + "loss": 3.882176637649536, + "step": 1516 + }, + { + "epoch": 21.069899519440803, + "grad_norm": 0.22334499657154083, + "learning_rate": 0.0006, + "loss": 3.8978934288024902, + "step": 1517 + }, + { + "epoch": 21.083879423328966, + "grad_norm": 0.21038010716438293, + "learning_rate": 0.0006, + "loss": 3.8807029724121094, + "step": 1518 + }, + { + "epoch": 21.097859327217126, + "grad_norm": 0.2243613600730896, + "learning_rate": 0.0006, + "loss": 3.924865961074829, + "step": 1519 + }, + { + "epoch": 21.111839231105286, + "grad_norm": 0.2535616159439087, + "learning_rate": 0.0006, + "loss": 3.9288227558135986, + "step": 1520 + }, + { + "epoch": 21.125819134993446, + "grad_norm": 0.2782756984233856, + "learning_rate": 0.0006, + "loss": 3.908233642578125, + "step": 1521 + }, + { + "epoch": 21.13979903888161, + "grad_norm": 0.2586214542388916, + "learning_rate": 0.0006, + "loss": 3.9151182174682617, + "step": 1522 + }, + { + "epoch": 21.15377894276977, + "grad_norm": 0.22465091943740845, + "learning_rate": 0.0006, + "loss": 3.9209084510803223, + "step": 1523 + }, + { + "epoch": 21.16775884665793, + "grad_norm": 0.2588018774986267, + "learning_rate": 0.0006, + "loss": 3.9295971393585205, + "step": 1524 + }, + { + "epoch": 21.18173875054609, + "grad_norm": 0.2637675702571869, + "learning_rate": 0.0006, + "loss": 3.9353199005126953, + "step": 1525 + }, + { + "epoch": 21.195718654434252, + "grad_norm": 0.2806383967399597, + "learning_rate": 0.0006, + "loss": 3.922337770462036, + "step": 1526 + }, + { + "epoch": 21.209698558322412, + "grad_norm": 0.27103501558303833, + "learning_rate": 0.0006, + "loss": 3.8811073303222656, + "step": 1527 + }, + { + "epoch": 21.22367846221057, + "grad_norm": 0.27203720808029175, + "learning_rate": 0.0006, + "loss": 3.9036178588867188, + "step": 1528 + }, + { + "epoch": 21.23765836609873, + "grad_norm": 0.2783355712890625, + "learning_rate": 0.0006, + "loss": 3.885456085205078, + "step": 1529 + }, + { + "epoch": 21.251638269986895, + "grad_norm": 0.2884930968284607, + "learning_rate": 0.0006, + "loss": 3.8936941623687744, + "step": 1530 + }, + { + "epoch": 21.265618173875055, + "grad_norm": 0.2829558849334717, + "learning_rate": 0.0006, + "loss": 3.927624225616455, + "step": 1531 + }, + { + "epoch": 21.279598077763215, + "grad_norm": 0.2809497117996216, + "learning_rate": 0.0006, + "loss": 3.8896753787994385, + "step": 1532 + }, + { + "epoch": 21.293577981651374, + "grad_norm": 0.27037671208381653, + "learning_rate": 0.0006, + "loss": 3.91316294670105, + "step": 1533 + }, + { + "epoch": 21.307557885539538, + "grad_norm": 0.310051292181015, + "learning_rate": 0.0006, + "loss": 3.9137332439422607, + "step": 1534 + }, + { + "epoch": 21.321537789427698, + "grad_norm": 0.30489876866340637, + "learning_rate": 0.0006, + "loss": 3.9088284969329834, + "step": 1535 + }, + { + "epoch": 21.335517693315857, + "grad_norm": 0.2607756555080414, + "learning_rate": 0.0006, + "loss": 3.9097847938537598, + "step": 1536 + }, + { + "epoch": 21.34949759720402, + "grad_norm": 0.2460775375366211, + "learning_rate": 0.0006, + "loss": 3.941211700439453, + "step": 1537 + }, + { + "epoch": 21.36347750109218, + "grad_norm": 0.24271734058856964, + "learning_rate": 0.0006, + "loss": 3.9140594005584717, + "step": 1538 + }, + { + "epoch": 21.37745740498034, + "grad_norm": 0.20012645423412323, + "learning_rate": 0.0006, + "loss": 3.888446807861328, + "step": 1539 + }, + { + "epoch": 21.3914373088685, + "grad_norm": 0.2196308672428131, + "learning_rate": 0.0006, + "loss": 3.9153785705566406, + "step": 1540 + }, + { + "epoch": 21.405417212756664, + "grad_norm": 0.22184589505195618, + "learning_rate": 0.0006, + "loss": 3.91996431350708, + "step": 1541 + }, + { + "epoch": 21.419397116644824, + "grad_norm": 0.22947315871715546, + "learning_rate": 0.0006, + "loss": 3.9268412590026855, + "step": 1542 + }, + { + "epoch": 21.433377020532983, + "grad_norm": 0.22275054454803467, + "learning_rate": 0.0006, + "loss": 3.909275531768799, + "step": 1543 + }, + { + "epoch": 21.447356924421143, + "grad_norm": 0.23103971779346466, + "learning_rate": 0.0006, + "loss": 3.925635814666748, + "step": 1544 + }, + { + "epoch": 21.461336828309307, + "grad_norm": 0.23379720747470856, + "learning_rate": 0.0006, + "loss": 3.926647186279297, + "step": 1545 + }, + { + "epoch": 21.475316732197467, + "grad_norm": 0.2244282215833664, + "learning_rate": 0.0006, + "loss": 3.9428000450134277, + "step": 1546 + }, + { + "epoch": 21.489296636085626, + "grad_norm": 0.22773298621177673, + "learning_rate": 0.0006, + "loss": 3.9378256797790527, + "step": 1547 + }, + { + "epoch": 21.503276539973786, + "grad_norm": 0.1918657273054123, + "learning_rate": 0.0006, + "loss": 3.904022216796875, + "step": 1548 + }, + { + "epoch": 21.51725644386195, + "grad_norm": 0.18415570259094238, + "learning_rate": 0.0006, + "loss": 3.9105122089385986, + "step": 1549 + }, + { + "epoch": 21.53123634775011, + "grad_norm": 0.22141380608081818, + "learning_rate": 0.0006, + "loss": 3.9153857231140137, + "step": 1550 + }, + { + "epoch": 21.54521625163827, + "grad_norm": 0.22533352673053741, + "learning_rate": 0.0006, + "loss": 3.9148974418640137, + "step": 1551 + }, + { + "epoch": 21.55919615552643, + "grad_norm": 0.2124762088060379, + "learning_rate": 0.0006, + "loss": 3.926311731338501, + "step": 1552 + }, + { + "epoch": 21.573176059414592, + "grad_norm": 0.239680215716362, + "learning_rate": 0.0006, + "loss": 3.9260334968566895, + "step": 1553 + }, + { + "epoch": 21.587155963302752, + "grad_norm": 0.24158740043640137, + "learning_rate": 0.0006, + "loss": 3.933223247528076, + "step": 1554 + }, + { + "epoch": 21.601135867190912, + "grad_norm": 0.2216576784849167, + "learning_rate": 0.0006, + "loss": 3.9065442085266113, + "step": 1555 + }, + { + "epoch": 21.615115771079076, + "grad_norm": 0.20099912583827972, + "learning_rate": 0.0006, + "loss": 3.923278570175171, + "step": 1556 + }, + { + "epoch": 21.629095674967235, + "grad_norm": 0.2337288111448288, + "learning_rate": 0.0006, + "loss": 3.92032527923584, + "step": 1557 + }, + { + "epoch": 21.643075578855395, + "grad_norm": 0.23574814200401306, + "learning_rate": 0.0006, + "loss": 3.896244525909424, + "step": 1558 + }, + { + "epoch": 21.657055482743555, + "grad_norm": 0.21338573098182678, + "learning_rate": 0.0006, + "loss": 3.930345058441162, + "step": 1559 + }, + { + "epoch": 21.67103538663172, + "grad_norm": 0.2375067174434662, + "learning_rate": 0.0006, + "loss": 3.864104986190796, + "step": 1560 + }, + { + "epoch": 21.68501529051988, + "grad_norm": 0.22490349411964417, + "learning_rate": 0.0006, + "loss": 3.883296012878418, + "step": 1561 + }, + { + "epoch": 21.698995194408038, + "grad_norm": 0.23021313548088074, + "learning_rate": 0.0006, + "loss": 3.915200710296631, + "step": 1562 + }, + { + "epoch": 21.712975098296198, + "grad_norm": 0.22590875625610352, + "learning_rate": 0.0006, + "loss": 3.903597354888916, + "step": 1563 + }, + { + "epoch": 21.72695500218436, + "grad_norm": 0.19066260755062103, + "learning_rate": 0.0006, + "loss": 3.9162631034851074, + "step": 1564 + }, + { + "epoch": 21.74093490607252, + "grad_norm": 0.18134327232837677, + "learning_rate": 0.0006, + "loss": 3.9167914390563965, + "step": 1565 + }, + { + "epoch": 21.75491480996068, + "grad_norm": 0.1782190054655075, + "learning_rate": 0.0006, + "loss": 3.900925636291504, + "step": 1566 + }, + { + "epoch": 21.76889471384884, + "grad_norm": 0.19034099578857422, + "learning_rate": 0.0006, + "loss": 3.896559238433838, + "step": 1567 + }, + { + "epoch": 21.782874617737004, + "grad_norm": 0.21509577333927155, + "learning_rate": 0.0006, + "loss": 3.891681671142578, + "step": 1568 + }, + { + "epoch": 21.796854521625164, + "grad_norm": 0.2370351105928421, + "learning_rate": 0.0006, + "loss": 3.886570453643799, + "step": 1569 + }, + { + "epoch": 21.810834425513324, + "grad_norm": 0.25546324253082275, + "learning_rate": 0.0006, + "loss": 3.9247193336486816, + "step": 1570 + }, + { + "epoch": 21.824814329401484, + "grad_norm": 0.2513384222984314, + "learning_rate": 0.0006, + "loss": 3.9120583534240723, + "step": 1571 + }, + { + "epoch": 21.838794233289647, + "grad_norm": 0.24691323935985565, + "learning_rate": 0.0006, + "loss": 3.9144935607910156, + "step": 1572 + }, + { + "epoch": 21.852774137177807, + "grad_norm": 0.2573968172073364, + "learning_rate": 0.0006, + "loss": 3.9517531394958496, + "step": 1573 + }, + { + "epoch": 21.866754041065967, + "grad_norm": 0.25461453199386597, + "learning_rate": 0.0006, + "loss": 3.93508243560791, + "step": 1574 + }, + { + "epoch": 21.88073394495413, + "grad_norm": 0.23756568133831024, + "learning_rate": 0.0006, + "loss": 3.8885269165039062, + "step": 1575 + }, + { + "epoch": 21.89471384884229, + "grad_norm": 0.2193172425031662, + "learning_rate": 0.0006, + "loss": 3.9103426933288574, + "step": 1576 + }, + { + "epoch": 21.90869375273045, + "grad_norm": 0.2350149303674698, + "learning_rate": 0.0006, + "loss": 3.9399590492248535, + "step": 1577 + }, + { + "epoch": 21.92267365661861, + "grad_norm": 0.23759333789348602, + "learning_rate": 0.0006, + "loss": 3.9433584213256836, + "step": 1578 + }, + { + "epoch": 21.936653560506773, + "grad_norm": 0.21108432114124298, + "learning_rate": 0.0006, + "loss": 3.9241819381713867, + "step": 1579 + }, + { + "epoch": 21.950633464394933, + "grad_norm": 0.22088949382305145, + "learning_rate": 0.0006, + "loss": 3.9231910705566406, + "step": 1580 + }, + { + "epoch": 21.964613368283093, + "grad_norm": 0.22125045955181122, + "learning_rate": 0.0006, + "loss": 3.896329164505005, + "step": 1581 + }, + { + "epoch": 21.978593272171253, + "grad_norm": 0.20745202898979187, + "learning_rate": 0.0006, + "loss": 3.8920536041259766, + "step": 1582 + }, + { + "epoch": 21.992573176059416, + "grad_norm": 0.2409721463918686, + "learning_rate": 0.0006, + "loss": 3.9061317443847656, + "step": 1583 + }, + { + "epoch": 22.0, + "grad_norm": 0.2669669985771179, + "learning_rate": 0.0006, + "loss": 3.922062397003174, + "step": 1584 + }, + { + "epoch": 22.0, + "eval_loss": 4.140966415405273, + "eval_runtime": 46.7132, + "eval_samples_per_second": 52.276, + "eval_steps_per_second": 3.275, + "step": 1584 + }, + { + "epoch": 22.01397990388816, + "grad_norm": 0.26155969500541687, + "learning_rate": 0.0006, + "loss": 3.888944625854492, + "step": 1585 + }, + { + "epoch": 22.027959807776323, + "grad_norm": 0.2579149007797241, + "learning_rate": 0.0006, + "loss": 3.8924355506896973, + "step": 1586 + }, + { + "epoch": 22.041939711664483, + "grad_norm": 0.2429896742105484, + "learning_rate": 0.0006, + "loss": 3.8714070320129395, + "step": 1587 + }, + { + "epoch": 22.055919615552643, + "grad_norm": 0.23497673869132996, + "learning_rate": 0.0006, + "loss": 3.905089855194092, + "step": 1588 + }, + { + "epoch": 22.069899519440803, + "grad_norm": 0.24074940383434296, + "learning_rate": 0.0006, + "loss": 3.886845111846924, + "step": 1589 + }, + { + "epoch": 22.083879423328966, + "grad_norm": 0.2226274162530899, + "learning_rate": 0.0006, + "loss": 3.8554329872131348, + "step": 1590 + }, + { + "epoch": 22.097859327217126, + "grad_norm": 0.22924423217773438, + "learning_rate": 0.0006, + "loss": 3.8914356231689453, + "step": 1591 + }, + { + "epoch": 22.111839231105286, + "grad_norm": 0.2459387183189392, + "learning_rate": 0.0006, + "loss": 3.902522087097168, + "step": 1592 + }, + { + "epoch": 22.125819134993446, + "grad_norm": 0.2704590857028961, + "learning_rate": 0.0006, + "loss": 3.896497964859009, + "step": 1593 + }, + { + "epoch": 22.13979903888161, + "grad_norm": 0.2848219871520996, + "learning_rate": 0.0006, + "loss": 3.88423228263855, + "step": 1594 + }, + { + "epoch": 22.15377894276977, + "grad_norm": 0.22996552288532257, + "learning_rate": 0.0006, + "loss": 3.9034953117370605, + "step": 1595 + }, + { + "epoch": 22.16775884665793, + "grad_norm": 0.2117270529270172, + "learning_rate": 0.0006, + "loss": 3.888279914855957, + "step": 1596 + }, + { + "epoch": 22.18173875054609, + "grad_norm": 0.19724160432815552, + "learning_rate": 0.0006, + "loss": 3.860525131225586, + "step": 1597 + }, + { + "epoch": 22.195718654434252, + "grad_norm": 0.2012624740600586, + "learning_rate": 0.0006, + "loss": 3.8930106163024902, + "step": 1598 + }, + { + "epoch": 22.209698558322412, + "grad_norm": 0.20243871212005615, + "learning_rate": 0.0006, + "loss": 3.8727619647979736, + "step": 1599 + }, + { + "epoch": 22.22367846221057, + "grad_norm": 0.21737465262413025, + "learning_rate": 0.0006, + "loss": 3.887969493865967, + "step": 1600 + }, + { + "epoch": 22.23765836609873, + "grad_norm": 0.23969845473766327, + "learning_rate": 0.0006, + "loss": 3.8629722595214844, + "step": 1601 + }, + { + "epoch": 22.251638269986895, + "grad_norm": 0.22874902188777924, + "learning_rate": 0.0006, + "loss": 3.9135584831237793, + "step": 1602 + }, + { + "epoch": 22.265618173875055, + "grad_norm": 0.209506556391716, + "learning_rate": 0.0006, + "loss": 3.8734190464019775, + "step": 1603 + }, + { + "epoch": 22.279598077763215, + "grad_norm": 0.22235789895057678, + "learning_rate": 0.0006, + "loss": 3.884854793548584, + "step": 1604 + }, + { + "epoch": 22.293577981651374, + "grad_norm": 0.21975041925907135, + "learning_rate": 0.0006, + "loss": 3.8860888481140137, + "step": 1605 + }, + { + "epoch": 22.307557885539538, + "grad_norm": 0.21474459767341614, + "learning_rate": 0.0006, + "loss": 3.9052200317382812, + "step": 1606 + }, + { + "epoch": 22.321537789427698, + "grad_norm": 0.2103329747915268, + "learning_rate": 0.0006, + "loss": 3.8516340255737305, + "step": 1607 + }, + { + "epoch": 22.335517693315857, + "grad_norm": 0.1981191635131836, + "learning_rate": 0.0006, + "loss": 3.9017434120178223, + "step": 1608 + }, + { + "epoch": 22.34949759720402, + "grad_norm": 0.20679591596126556, + "learning_rate": 0.0006, + "loss": 3.889885425567627, + "step": 1609 + }, + { + "epoch": 22.36347750109218, + "grad_norm": 0.20809867978096008, + "learning_rate": 0.0006, + "loss": 3.881868362426758, + "step": 1610 + }, + { + "epoch": 22.37745740498034, + "grad_norm": 0.21394680440425873, + "learning_rate": 0.0006, + "loss": 3.89980411529541, + "step": 1611 + }, + { + "epoch": 22.3914373088685, + "grad_norm": 0.2334284782409668, + "learning_rate": 0.0006, + "loss": 3.8672266006469727, + "step": 1612 + }, + { + "epoch": 22.405417212756664, + "grad_norm": 0.26521918177604675, + "learning_rate": 0.0006, + "loss": 3.8918118476867676, + "step": 1613 + }, + { + "epoch": 22.419397116644824, + "grad_norm": 0.2652994394302368, + "learning_rate": 0.0006, + "loss": 3.8683271408081055, + "step": 1614 + }, + { + "epoch": 22.433377020532983, + "grad_norm": 0.2568066716194153, + "learning_rate": 0.0006, + "loss": 3.892523765563965, + "step": 1615 + }, + { + "epoch": 22.447356924421143, + "grad_norm": 0.260052353143692, + "learning_rate": 0.0006, + "loss": 3.897305488586426, + "step": 1616 + }, + { + "epoch": 22.461336828309307, + "grad_norm": 0.2744271457195282, + "learning_rate": 0.0006, + "loss": 3.8962221145629883, + "step": 1617 + }, + { + "epoch": 22.475316732197467, + "grad_norm": 0.23755787312984467, + "learning_rate": 0.0006, + "loss": 3.888184070587158, + "step": 1618 + }, + { + "epoch": 22.489296636085626, + "grad_norm": 0.2515312135219574, + "learning_rate": 0.0006, + "loss": 3.8946003913879395, + "step": 1619 + }, + { + "epoch": 22.503276539973786, + "grad_norm": 0.24835044145584106, + "learning_rate": 0.0006, + "loss": 3.8711423873901367, + "step": 1620 + }, + { + "epoch": 22.51725644386195, + "grad_norm": 0.22615326941013336, + "learning_rate": 0.0006, + "loss": 3.8878846168518066, + "step": 1621 + }, + { + "epoch": 22.53123634775011, + "grad_norm": 0.20482423901557922, + "learning_rate": 0.0006, + "loss": 3.8782598972320557, + "step": 1622 + }, + { + "epoch": 22.54521625163827, + "grad_norm": 0.20436473190784454, + "learning_rate": 0.0006, + "loss": 3.9075279235839844, + "step": 1623 + }, + { + "epoch": 22.55919615552643, + "grad_norm": 0.2066277265548706, + "learning_rate": 0.0006, + "loss": 3.89908766746521, + "step": 1624 + }, + { + "epoch": 22.573176059414592, + "grad_norm": 0.20735307037830353, + "learning_rate": 0.0006, + "loss": 3.865204334259033, + "step": 1625 + }, + { + "epoch": 22.587155963302752, + "grad_norm": 0.20955748856067657, + "learning_rate": 0.0006, + "loss": 3.8835532665252686, + "step": 1626 + }, + { + "epoch": 22.601135867190912, + "grad_norm": 0.21354222297668457, + "learning_rate": 0.0006, + "loss": 3.9012551307678223, + "step": 1627 + }, + { + "epoch": 22.615115771079076, + "grad_norm": 0.2075091004371643, + "learning_rate": 0.0006, + "loss": 3.8733482360839844, + "step": 1628 + }, + { + "epoch": 22.629095674967235, + "grad_norm": 0.20207874476909637, + "learning_rate": 0.0006, + "loss": 3.9193859100341797, + "step": 1629 + }, + { + "epoch": 22.643075578855395, + "grad_norm": 0.21863923966884613, + "learning_rate": 0.0006, + "loss": 3.883518695831299, + "step": 1630 + }, + { + "epoch": 22.657055482743555, + "grad_norm": 0.22117522358894348, + "learning_rate": 0.0006, + "loss": 3.9163284301757812, + "step": 1631 + }, + { + "epoch": 22.67103538663172, + "grad_norm": 0.2078622728586197, + "learning_rate": 0.0006, + "loss": 3.868274688720703, + "step": 1632 + }, + { + "epoch": 22.68501529051988, + "grad_norm": 0.22745893895626068, + "learning_rate": 0.0006, + "loss": 3.9171340465545654, + "step": 1633 + }, + { + "epoch": 22.698995194408038, + "grad_norm": 0.2312736064195633, + "learning_rate": 0.0006, + "loss": 3.9487013816833496, + "step": 1634 + }, + { + "epoch": 22.712975098296198, + "grad_norm": 0.20491497218608856, + "learning_rate": 0.0006, + "loss": 3.91833758354187, + "step": 1635 + }, + { + "epoch": 22.72695500218436, + "grad_norm": 0.1899084597826004, + "learning_rate": 0.0006, + "loss": 3.876225709915161, + "step": 1636 + }, + { + "epoch": 22.74093490607252, + "grad_norm": 0.18581682443618774, + "learning_rate": 0.0006, + "loss": 3.8667988777160645, + "step": 1637 + }, + { + "epoch": 22.75491480996068, + "grad_norm": 0.19855599105358124, + "learning_rate": 0.0006, + "loss": 3.900789260864258, + "step": 1638 + }, + { + "epoch": 22.76889471384884, + "grad_norm": 0.19951458275318146, + "learning_rate": 0.0006, + "loss": 3.8850367069244385, + "step": 1639 + }, + { + "epoch": 22.782874617737004, + "grad_norm": 0.22802744805812836, + "learning_rate": 0.0006, + "loss": 3.9181363582611084, + "step": 1640 + }, + { + "epoch": 22.796854521625164, + "grad_norm": 0.24279919266700745, + "learning_rate": 0.0006, + "loss": 3.8843770027160645, + "step": 1641 + }, + { + "epoch": 22.810834425513324, + "grad_norm": 0.23554913699626923, + "learning_rate": 0.0006, + "loss": 3.8802413940429688, + "step": 1642 + }, + { + "epoch": 22.824814329401484, + "grad_norm": 0.22343270480632782, + "learning_rate": 0.0006, + "loss": 3.8524107933044434, + "step": 1643 + }, + { + "epoch": 22.838794233289647, + "grad_norm": 0.2185724526643753, + "learning_rate": 0.0006, + "loss": 3.9117047786712646, + "step": 1644 + }, + { + "epoch": 22.852774137177807, + "grad_norm": 0.2114841341972351, + "learning_rate": 0.0006, + "loss": 3.90325927734375, + "step": 1645 + }, + { + "epoch": 22.866754041065967, + "grad_norm": 0.21072550117969513, + "learning_rate": 0.0006, + "loss": 3.8988137245178223, + "step": 1646 + }, + { + "epoch": 22.88073394495413, + "grad_norm": 0.2250078171491623, + "learning_rate": 0.0006, + "loss": 3.9201531410217285, + "step": 1647 + }, + { + "epoch": 22.89471384884229, + "grad_norm": 0.20928071439266205, + "learning_rate": 0.0006, + "loss": 3.91666316986084, + "step": 1648 + }, + { + "epoch": 22.90869375273045, + "grad_norm": 0.24096311628818512, + "learning_rate": 0.0006, + "loss": 3.8797364234924316, + "step": 1649 + }, + { + "epoch": 22.92267365661861, + "grad_norm": 0.2591194212436676, + "learning_rate": 0.0006, + "loss": 3.883273124694824, + "step": 1650 + }, + { + "epoch": 22.936653560506773, + "grad_norm": 0.27342668175697327, + "learning_rate": 0.0006, + "loss": 3.8645026683807373, + "step": 1651 + }, + { + "epoch": 22.950633464394933, + "grad_norm": 0.2448573112487793, + "learning_rate": 0.0006, + "loss": 3.9093551635742188, + "step": 1652 + }, + { + "epoch": 22.964613368283093, + "grad_norm": 0.19899503886699677, + "learning_rate": 0.0006, + "loss": 3.9001057147979736, + "step": 1653 + }, + { + "epoch": 22.978593272171253, + "grad_norm": 0.2023746520280838, + "learning_rate": 0.0006, + "loss": 3.886474370956421, + "step": 1654 + }, + { + "epoch": 22.992573176059416, + "grad_norm": 0.19894269108772278, + "learning_rate": 0.0006, + "loss": 3.9004204273223877, + "step": 1655 + }, + { + "epoch": 23.0, + "grad_norm": 0.2401709407567978, + "learning_rate": 0.0006, + "loss": 3.8665566444396973, + "step": 1656 + }, + { + "epoch": 23.0, + "eval_loss": 4.112459659576416, + "eval_runtime": 44.8325, + "eval_samples_per_second": 54.469, + "eval_steps_per_second": 3.413, + "step": 1656 + }, + { + "epoch": 23.01397990388816, + "grad_norm": 0.22662921249866486, + "learning_rate": 0.0006, + "loss": 3.853271961212158, + "step": 1657 + }, + { + "epoch": 23.027959807776323, + "grad_norm": 0.24406856298446655, + "learning_rate": 0.0006, + "loss": 3.8691890239715576, + "step": 1658 + }, + { + "epoch": 23.041939711664483, + "grad_norm": 0.2266651839017868, + "learning_rate": 0.0006, + "loss": 3.838599681854248, + "step": 1659 + }, + { + "epoch": 23.055919615552643, + "grad_norm": 0.22303511202335358, + "learning_rate": 0.0006, + "loss": 3.8678267002105713, + "step": 1660 + }, + { + "epoch": 23.069899519440803, + "grad_norm": 0.2272164225578308, + "learning_rate": 0.0006, + "loss": 3.9045681953430176, + "step": 1661 + }, + { + "epoch": 23.083879423328966, + "grad_norm": 0.25004875659942627, + "learning_rate": 0.0006, + "loss": 3.856503963470459, + "step": 1662 + }, + { + "epoch": 23.097859327217126, + "grad_norm": 0.26016247272491455, + "learning_rate": 0.0006, + "loss": 3.878587007522583, + "step": 1663 + }, + { + "epoch": 23.111839231105286, + "grad_norm": 0.28539901971817017, + "learning_rate": 0.0006, + "loss": 3.864248514175415, + "step": 1664 + }, + { + "epoch": 23.125819134993446, + "grad_norm": 0.27504822611808777, + "learning_rate": 0.0006, + "loss": 3.821448802947998, + "step": 1665 + }, + { + "epoch": 23.13979903888161, + "grad_norm": 0.238910973072052, + "learning_rate": 0.0006, + "loss": 3.8635847568511963, + "step": 1666 + }, + { + "epoch": 23.15377894276977, + "grad_norm": 0.24179652333259583, + "learning_rate": 0.0006, + "loss": 3.8339638710021973, + "step": 1667 + }, + { + "epoch": 23.16775884665793, + "grad_norm": 0.2199544757604599, + "learning_rate": 0.0006, + "loss": 3.868396759033203, + "step": 1668 + }, + { + "epoch": 23.18173875054609, + "grad_norm": 0.1965002566576004, + "learning_rate": 0.0006, + "loss": 3.8761439323425293, + "step": 1669 + }, + { + "epoch": 23.195718654434252, + "grad_norm": 0.20426614582538605, + "learning_rate": 0.0006, + "loss": 3.822899580001831, + "step": 1670 + }, + { + "epoch": 23.209698558322412, + "grad_norm": 0.2197263389825821, + "learning_rate": 0.0006, + "loss": 3.887728452682495, + "step": 1671 + }, + { + "epoch": 23.22367846221057, + "grad_norm": 0.22844573855400085, + "learning_rate": 0.0006, + "loss": 3.8550517559051514, + "step": 1672 + }, + { + "epoch": 23.23765836609873, + "grad_norm": 0.2347746044397354, + "learning_rate": 0.0006, + "loss": 3.903310537338257, + "step": 1673 + }, + { + "epoch": 23.251638269986895, + "grad_norm": 0.24167625606060028, + "learning_rate": 0.0006, + "loss": 3.8397774696350098, + "step": 1674 + }, + { + "epoch": 23.265618173875055, + "grad_norm": 0.2691650688648224, + "learning_rate": 0.0006, + "loss": 3.853254795074463, + "step": 1675 + }, + { + "epoch": 23.279598077763215, + "grad_norm": 0.29421621561050415, + "learning_rate": 0.0006, + "loss": 3.86065411567688, + "step": 1676 + }, + { + "epoch": 23.293577981651374, + "grad_norm": 0.31074345111846924, + "learning_rate": 0.0006, + "loss": 3.8716742992401123, + "step": 1677 + }, + { + "epoch": 23.307557885539538, + "grad_norm": 0.3044569194316864, + "learning_rate": 0.0006, + "loss": 3.8738951683044434, + "step": 1678 + }, + { + "epoch": 23.321537789427698, + "grad_norm": 0.30496764183044434, + "learning_rate": 0.0006, + "loss": 3.884446620941162, + "step": 1679 + }, + { + "epoch": 23.335517693315857, + "grad_norm": 0.31122756004333496, + "learning_rate": 0.0006, + "loss": 3.878495693206787, + "step": 1680 + }, + { + "epoch": 23.34949759720402, + "grad_norm": 0.32268181443214417, + "learning_rate": 0.0006, + "loss": 3.8793649673461914, + "step": 1681 + }, + { + "epoch": 23.36347750109218, + "grad_norm": 0.3297140598297119, + "learning_rate": 0.0006, + "loss": 3.87484073638916, + "step": 1682 + }, + { + "epoch": 23.37745740498034, + "grad_norm": 0.26007479429244995, + "learning_rate": 0.0006, + "loss": 3.8510947227478027, + "step": 1683 + }, + { + "epoch": 23.3914373088685, + "grad_norm": 0.2627335786819458, + "learning_rate": 0.0006, + "loss": 3.8783209323883057, + "step": 1684 + }, + { + "epoch": 23.405417212756664, + "grad_norm": 0.256452739238739, + "learning_rate": 0.0006, + "loss": 3.8594281673431396, + "step": 1685 + }, + { + "epoch": 23.419397116644824, + "grad_norm": 0.23892226815223694, + "learning_rate": 0.0006, + "loss": 3.898951292037964, + "step": 1686 + }, + { + "epoch": 23.433377020532983, + "grad_norm": 0.21625587344169617, + "learning_rate": 0.0006, + "loss": 3.8679966926574707, + "step": 1687 + }, + { + "epoch": 23.447356924421143, + "grad_norm": 0.21924619376659393, + "learning_rate": 0.0006, + "loss": 3.8774075508117676, + "step": 1688 + }, + { + "epoch": 23.461336828309307, + "grad_norm": 0.21500127017498016, + "learning_rate": 0.0006, + "loss": 3.870619297027588, + "step": 1689 + }, + { + "epoch": 23.475316732197467, + "grad_norm": 0.22580556571483612, + "learning_rate": 0.0006, + "loss": 3.887722969055176, + "step": 1690 + }, + { + "epoch": 23.489296636085626, + "grad_norm": 0.2500104308128357, + "learning_rate": 0.0006, + "loss": 3.88789963722229, + "step": 1691 + }, + { + "epoch": 23.503276539973786, + "grad_norm": 0.22462762892246246, + "learning_rate": 0.0006, + "loss": 3.863997459411621, + "step": 1692 + }, + { + "epoch": 23.51725644386195, + "grad_norm": 0.21427781879901886, + "learning_rate": 0.0006, + "loss": 3.8827033042907715, + "step": 1693 + }, + { + "epoch": 23.53123634775011, + "grad_norm": 0.22278577089309692, + "learning_rate": 0.0006, + "loss": 3.8659563064575195, + "step": 1694 + }, + { + "epoch": 23.54521625163827, + "grad_norm": 0.22801144421100616, + "learning_rate": 0.0006, + "loss": 3.9031362533569336, + "step": 1695 + }, + { + "epoch": 23.55919615552643, + "grad_norm": 0.25071898102760315, + "learning_rate": 0.0006, + "loss": 3.887746810913086, + "step": 1696 + }, + { + "epoch": 23.573176059414592, + "grad_norm": 0.2564085125923157, + "learning_rate": 0.0006, + "loss": 3.8918356895446777, + "step": 1697 + }, + { + "epoch": 23.587155963302752, + "grad_norm": 0.24603120982646942, + "learning_rate": 0.0006, + "loss": 3.850416421890259, + "step": 1698 + }, + { + "epoch": 23.601135867190912, + "grad_norm": 0.20539002120494843, + "learning_rate": 0.0006, + "loss": 3.862060070037842, + "step": 1699 + }, + { + "epoch": 23.615115771079076, + "grad_norm": 0.2022249400615692, + "learning_rate": 0.0006, + "loss": 3.899008274078369, + "step": 1700 + }, + { + "epoch": 23.629095674967235, + "grad_norm": 0.2435392290353775, + "learning_rate": 0.0006, + "loss": 3.844388961791992, + "step": 1701 + }, + { + "epoch": 23.643075578855395, + "grad_norm": 0.21146756410598755, + "learning_rate": 0.0006, + "loss": 3.8972439765930176, + "step": 1702 + }, + { + "epoch": 23.657055482743555, + "grad_norm": 0.2025400996208191, + "learning_rate": 0.0006, + "loss": 3.865253448486328, + "step": 1703 + }, + { + "epoch": 23.67103538663172, + "grad_norm": 0.21129970252513885, + "learning_rate": 0.0006, + "loss": 3.8768205642700195, + "step": 1704 + }, + { + "epoch": 23.68501529051988, + "grad_norm": 0.22982284426689148, + "learning_rate": 0.0006, + "loss": 3.8792667388916016, + "step": 1705 + }, + { + "epoch": 23.698995194408038, + "grad_norm": 0.23013733327388763, + "learning_rate": 0.0006, + "loss": 3.880897045135498, + "step": 1706 + }, + { + "epoch": 23.712975098296198, + "grad_norm": 0.2277672290802002, + "learning_rate": 0.0006, + "loss": 3.8738410472869873, + "step": 1707 + }, + { + "epoch": 23.72695500218436, + "grad_norm": 0.2343369573354721, + "learning_rate": 0.0006, + "loss": 3.8587026596069336, + "step": 1708 + }, + { + "epoch": 23.74093490607252, + "grad_norm": 0.23159530758857727, + "learning_rate": 0.0006, + "loss": 3.856306552886963, + "step": 1709 + }, + { + "epoch": 23.75491480996068, + "grad_norm": 0.19541035592556, + "learning_rate": 0.0006, + "loss": 3.8294754028320312, + "step": 1710 + }, + { + "epoch": 23.76889471384884, + "grad_norm": 0.22999322414398193, + "learning_rate": 0.0006, + "loss": 3.882676124572754, + "step": 1711 + }, + { + "epoch": 23.782874617737004, + "grad_norm": 0.23442843556404114, + "learning_rate": 0.0006, + "loss": 3.8887529373168945, + "step": 1712 + }, + { + "epoch": 23.796854521625164, + "grad_norm": 0.22914239764213562, + "learning_rate": 0.0006, + "loss": 3.867673635482788, + "step": 1713 + }, + { + "epoch": 23.810834425513324, + "grad_norm": 0.20683827996253967, + "learning_rate": 0.0006, + "loss": 3.8999581336975098, + "step": 1714 + }, + { + "epoch": 23.824814329401484, + "grad_norm": 0.19281277060508728, + "learning_rate": 0.0006, + "loss": 3.8997726440429688, + "step": 1715 + }, + { + "epoch": 23.838794233289647, + "grad_norm": 0.20058563351631165, + "learning_rate": 0.0006, + "loss": 3.8583860397338867, + "step": 1716 + }, + { + "epoch": 23.852774137177807, + "grad_norm": 0.19856606423854828, + "learning_rate": 0.0006, + "loss": 3.88948392868042, + "step": 1717 + }, + { + "epoch": 23.866754041065967, + "grad_norm": 0.2099323868751526, + "learning_rate": 0.0006, + "loss": 3.878458261489868, + "step": 1718 + }, + { + "epoch": 23.88073394495413, + "grad_norm": 0.22945016622543335, + "learning_rate": 0.0006, + "loss": 3.84116268157959, + "step": 1719 + }, + { + "epoch": 23.89471384884229, + "grad_norm": 0.22646087408065796, + "learning_rate": 0.0006, + "loss": 3.9006617069244385, + "step": 1720 + }, + { + "epoch": 23.90869375273045, + "grad_norm": 0.20282860100269318, + "learning_rate": 0.0006, + "loss": 3.8781144618988037, + "step": 1721 + }, + { + "epoch": 23.92267365661861, + "grad_norm": 0.1918555349111557, + "learning_rate": 0.0006, + "loss": 3.8560891151428223, + "step": 1722 + }, + { + "epoch": 23.936653560506773, + "grad_norm": 0.19286513328552246, + "learning_rate": 0.0006, + "loss": 3.873220920562744, + "step": 1723 + }, + { + "epoch": 23.950633464394933, + "grad_norm": 0.21071338653564453, + "learning_rate": 0.0006, + "loss": 3.9147067070007324, + "step": 1724 + }, + { + "epoch": 23.964613368283093, + "grad_norm": 0.20956715941429138, + "learning_rate": 0.0006, + "loss": 3.8762729167938232, + "step": 1725 + }, + { + "epoch": 23.978593272171253, + "grad_norm": 0.23053105175495148, + "learning_rate": 0.0006, + "loss": 3.873781681060791, + "step": 1726 + }, + { + "epoch": 23.992573176059416, + "grad_norm": 0.2719029486179352, + "learning_rate": 0.0006, + "loss": 3.862342357635498, + "step": 1727 + }, + { + "epoch": 24.0, + "grad_norm": 0.2933610677719116, + "learning_rate": 0.0006, + "loss": 3.8657689094543457, + "step": 1728 + }, + { + "epoch": 24.0, + "eval_loss": 4.0959153175354, + "eval_runtime": 44.3631, + "eval_samples_per_second": 55.046, + "eval_steps_per_second": 3.449, + "step": 1728 + }, + { + "epoch": 24.01397990388816, + "grad_norm": 0.24905365705490112, + "learning_rate": 0.0006, + "loss": 3.838136911392212, + "step": 1729 + }, + { + "epoch": 24.027959807776323, + "grad_norm": 0.25948020815849304, + "learning_rate": 0.0006, + "loss": 3.8581268787384033, + "step": 1730 + }, + { + "epoch": 24.041939711664483, + "grad_norm": 0.24965140223503113, + "learning_rate": 0.0006, + "loss": 3.8628978729248047, + "step": 1731 + }, + { + "epoch": 24.055919615552643, + "grad_norm": 0.23428823053836823, + "learning_rate": 0.0006, + "loss": 3.8188819885253906, + "step": 1732 + }, + { + "epoch": 24.069899519440803, + "grad_norm": 0.22191211581230164, + "learning_rate": 0.0006, + "loss": 3.8616039752960205, + "step": 1733 + }, + { + "epoch": 24.083879423328966, + "grad_norm": 0.20257535576820374, + "learning_rate": 0.0006, + "loss": 3.8632802963256836, + "step": 1734 + }, + { + "epoch": 24.097859327217126, + "grad_norm": 0.20385196805000305, + "learning_rate": 0.0006, + "loss": 3.885817050933838, + "step": 1735 + }, + { + "epoch": 24.111839231105286, + "grad_norm": 0.19921693205833435, + "learning_rate": 0.0006, + "loss": 3.838515043258667, + "step": 1736 + }, + { + "epoch": 24.125819134993446, + "grad_norm": 0.20221556723117828, + "learning_rate": 0.0006, + "loss": 3.8585309982299805, + "step": 1737 + }, + { + "epoch": 24.13979903888161, + "grad_norm": 0.20124691724777222, + "learning_rate": 0.0006, + "loss": 3.81656551361084, + "step": 1738 + }, + { + "epoch": 24.15377894276977, + "grad_norm": 0.1810830533504486, + "learning_rate": 0.0006, + "loss": 3.841783046722412, + "step": 1739 + }, + { + "epoch": 24.16775884665793, + "grad_norm": 0.18414196372032166, + "learning_rate": 0.0006, + "loss": 3.8614797592163086, + "step": 1740 + }, + { + "epoch": 24.18173875054609, + "grad_norm": 0.18930725753307343, + "learning_rate": 0.0006, + "loss": 3.8382534980773926, + "step": 1741 + }, + { + "epoch": 24.195718654434252, + "grad_norm": 0.19658128917217255, + "learning_rate": 0.0006, + "loss": 3.881742477416992, + "step": 1742 + }, + { + "epoch": 24.209698558322412, + "grad_norm": 0.20175589621067047, + "learning_rate": 0.0006, + "loss": 3.8760581016540527, + "step": 1743 + }, + { + "epoch": 24.22367846221057, + "grad_norm": 0.19416265189647675, + "learning_rate": 0.0006, + "loss": 3.8373687267303467, + "step": 1744 + }, + { + "epoch": 24.23765836609873, + "grad_norm": 0.20206521451473236, + "learning_rate": 0.0006, + "loss": 3.8322830200195312, + "step": 1745 + }, + { + "epoch": 24.251638269986895, + "grad_norm": 0.21797429025173187, + "learning_rate": 0.0006, + "loss": 3.849905490875244, + "step": 1746 + }, + { + "epoch": 24.265618173875055, + "grad_norm": 0.21295784413814545, + "learning_rate": 0.0006, + "loss": 3.847714900970459, + "step": 1747 + }, + { + "epoch": 24.279598077763215, + "grad_norm": 0.22023876011371613, + "learning_rate": 0.0006, + "loss": 3.8221592903137207, + "step": 1748 + }, + { + "epoch": 24.293577981651374, + "grad_norm": 0.2125576138496399, + "learning_rate": 0.0006, + "loss": 3.8070976734161377, + "step": 1749 + }, + { + "epoch": 24.307557885539538, + "grad_norm": 0.18673811852931976, + "learning_rate": 0.0006, + "loss": 3.866878032684326, + "step": 1750 + }, + { + "epoch": 24.321537789427698, + "grad_norm": 0.1972627341747284, + "learning_rate": 0.0006, + "loss": 3.846404552459717, + "step": 1751 + }, + { + "epoch": 24.335517693315857, + "grad_norm": 0.21846632659435272, + "learning_rate": 0.0006, + "loss": 3.8528640270233154, + "step": 1752 + }, + { + "epoch": 24.34949759720402, + "grad_norm": 0.22234080731868744, + "learning_rate": 0.0006, + "loss": 3.8268141746520996, + "step": 1753 + }, + { + "epoch": 24.36347750109218, + "grad_norm": 0.23002761602401733, + "learning_rate": 0.0006, + "loss": 3.832444667816162, + "step": 1754 + }, + { + "epoch": 24.37745740498034, + "grad_norm": 0.22526559233665466, + "learning_rate": 0.0006, + "loss": 3.864406108856201, + "step": 1755 + }, + { + "epoch": 24.3914373088685, + "grad_norm": 0.2290039211511612, + "learning_rate": 0.0006, + "loss": 3.8449103832244873, + "step": 1756 + }, + { + "epoch": 24.405417212756664, + "grad_norm": 0.23145617544651031, + "learning_rate": 0.0006, + "loss": 3.8183751106262207, + "step": 1757 + }, + { + "epoch": 24.419397116644824, + "grad_norm": 0.24287554621696472, + "learning_rate": 0.0006, + "loss": 3.809481382369995, + "step": 1758 + }, + { + "epoch": 24.433377020532983, + "grad_norm": 0.2672404646873474, + "learning_rate": 0.0006, + "loss": 3.877800464630127, + "step": 1759 + }, + { + "epoch": 24.447356924421143, + "grad_norm": 0.26292186975479126, + "learning_rate": 0.0006, + "loss": 3.8329367637634277, + "step": 1760 + }, + { + "epoch": 24.461336828309307, + "grad_norm": 0.26235947012901306, + "learning_rate": 0.0006, + "loss": 3.8414158821105957, + "step": 1761 + }, + { + "epoch": 24.475316732197467, + "grad_norm": 0.2638382613658905, + "learning_rate": 0.0006, + "loss": 3.849188804626465, + "step": 1762 + }, + { + "epoch": 24.489296636085626, + "grad_norm": 0.2564602196216583, + "learning_rate": 0.0006, + "loss": 3.865501880645752, + "step": 1763 + }, + { + "epoch": 24.503276539973786, + "grad_norm": 0.21352271735668182, + "learning_rate": 0.0006, + "loss": 3.87910795211792, + "step": 1764 + }, + { + "epoch": 24.51725644386195, + "grad_norm": 0.2470584511756897, + "learning_rate": 0.0006, + "loss": 3.858750343322754, + "step": 1765 + }, + { + "epoch": 24.53123634775011, + "grad_norm": 0.24907536804676056, + "learning_rate": 0.0006, + "loss": 3.8532559871673584, + "step": 1766 + }, + { + "epoch": 24.54521625163827, + "grad_norm": 0.2426205575466156, + "learning_rate": 0.0006, + "loss": 3.8659827709198, + "step": 1767 + }, + { + "epoch": 24.55919615552643, + "grad_norm": 0.23481151461601257, + "learning_rate": 0.0006, + "loss": 3.863948345184326, + "step": 1768 + }, + { + "epoch": 24.573176059414592, + "grad_norm": 0.22717779874801636, + "learning_rate": 0.0006, + "loss": 3.848527193069458, + "step": 1769 + }, + { + "epoch": 24.587155963302752, + "grad_norm": 0.2267129123210907, + "learning_rate": 0.0006, + "loss": 3.8600735664367676, + "step": 1770 + }, + { + "epoch": 24.601135867190912, + "grad_norm": 0.24967710673809052, + "learning_rate": 0.0006, + "loss": 3.84291934967041, + "step": 1771 + }, + { + "epoch": 24.615115771079076, + "grad_norm": 0.25308957695961, + "learning_rate": 0.0006, + "loss": 3.846181631088257, + "step": 1772 + }, + { + "epoch": 24.629095674967235, + "grad_norm": 0.2689298391342163, + "learning_rate": 0.0006, + "loss": 3.8572893142700195, + "step": 1773 + }, + { + "epoch": 24.643075578855395, + "grad_norm": 0.26458555459976196, + "learning_rate": 0.0006, + "loss": 3.8583621978759766, + "step": 1774 + }, + { + "epoch": 24.657055482743555, + "grad_norm": 0.24416811764240265, + "learning_rate": 0.0006, + "loss": 3.8648223876953125, + "step": 1775 + }, + { + "epoch": 24.67103538663172, + "grad_norm": 0.22218526899814606, + "learning_rate": 0.0006, + "loss": 3.839395523071289, + "step": 1776 + }, + { + "epoch": 24.68501529051988, + "grad_norm": 0.2147492915391922, + "learning_rate": 0.0006, + "loss": 3.875734567642212, + "step": 1777 + }, + { + "epoch": 24.698995194408038, + "grad_norm": 0.2346794754266739, + "learning_rate": 0.0006, + "loss": 3.854768991470337, + "step": 1778 + }, + { + "epoch": 24.712975098296198, + "grad_norm": 0.21406520903110504, + "learning_rate": 0.0006, + "loss": 3.8269104957580566, + "step": 1779 + }, + { + "epoch": 24.72695500218436, + "grad_norm": 0.20716224610805511, + "learning_rate": 0.0006, + "loss": 3.8245768547058105, + "step": 1780 + }, + { + "epoch": 24.74093490607252, + "grad_norm": 0.21445901691913605, + "learning_rate": 0.0006, + "loss": 3.8877978324890137, + "step": 1781 + }, + { + "epoch": 24.75491480996068, + "grad_norm": 0.21964985132217407, + "learning_rate": 0.0006, + "loss": 3.8602452278137207, + "step": 1782 + }, + { + "epoch": 24.76889471384884, + "grad_norm": 0.209807351231575, + "learning_rate": 0.0006, + "loss": 3.853428602218628, + "step": 1783 + }, + { + "epoch": 24.782874617737004, + "grad_norm": 0.19564911723136902, + "learning_rate": 0.0006, + "loss": 3.832275867462158, + "step": 1784 + }, + { + "epoch": 24.796854521625164, + "grad_norm": 0.21394333243370056, + "learning_rate": 0.0006, + "loss": 3.8543171882629395, + "step": 1785 + }, + { + "epoch": 24.810834425513324, + "grad_norm": 0.23156948387622833, + "learning_rate": 0.0006, + "loss": 3.8539412021636963, + "step": 1786 + }, + { + "epoch": 24.824814329401484, + "grad_norm": 0.2378678321838379, + "learning_rate": 0.0006, + "loss": 3.8409833908081055, + "step": 1787 + }, + { + "epoch": 24.838794233289647, + "grad_norm": 0.23816189169883728, + "learning_rate": 0.0006, + "loss": 3.855379581451416, + "step": 1788 + }, + { + "epoch": 24.852774137177807, + "grad_norm": 0.23109886050224304, + "learning_rate": 0.0006, + "loss": 3.8689517974853516, + "step": 1789 + }, + { + "epoch": 24.866754041065967, + "grad_norm": 0.2042883038520813, + "learning_rate": 0.0006, + "loss": 3.8730404376983643, + "step": 1790 + }, + { + "epoch": 24.88073394495413, + "grad_norm": 0.2039479911327362, + "learning_rate": 0.0006, + "loss": 3.8474984169006348, + "step": 1791 + }, + { + "epoch": 24.89471384884229, + "grad_norm": 0.213027223944664, + "learning_rate": 0.0006, + "loss": 3.8539695739746094, + "step": 1792 + }, + { + "epoch": 24.90869375273045, + "grad_norm": 0.2280654013156891, + "learning_rate": 0.0006, + "loss": 3.8633079528808594, + "step": 1793 + }, + { + "epoch": 24.92267365661861, + "grad_norm": 0.20864921808242798, + "learning_rate": 0.0006, + "loss": 3.8110368251800537, + "step": 1794 + }, + { + "epoch": 24.936653560506773, + "grad_norm": 0.23002111911773682, + "learning_rate": 0.0006, + "loss": 3.8334741592407227, + "step": 1795 + }, + { + "epoch": 24.950633464394933, + "grad_norm": 0.232331782579422, + "learning_rate": 0.0006, + "loss": 3.871887683868408, + "step": 1796 + }, + { + "epoch": 24.964613368283093, + "grad_norm": 0.24141235649585724, + "learning_rate": 0.0006, + "loss": 3.8614959716796875, + "step": 1797 + }, + { + "epoch": 24.978593272171253, + "grad_norm": 0.2545177638530731, + "learning_rate": 0.0006, + "loss": 3.8563568592071533, + "step": 1798 + }, + { + "epoch": 24.992573176059416, + "grad_norm": 0.25186386704444885, + "learning_rate": 0.0006, + "loss": 3.882166862487793, + "step": 1799 + }, + { + "epoch": 25.0, + "grad_norm": 0.260195791721344, + "learning_rate": 0.0006, + "loss": 3.884554862976074, + "step": 1800 + }, + { + "epoch": 25.0, + "eval_loss": 4.08809757232666, + "eval_runtime": 44.7947, + "eval_samples_per_second": 54.515, + "eval_steps_per_second": 3.416, + "step": 1800 + }, + { + "epoch": 25.01397990388816, + "grad_norm": 0.25396403670310974, + "learning_rate": 0.0006, + "loss": 3.8217287063598633, + "step": 1801 + }, + { + "epoch": 25.027959807776323, + "grad_norm": 0.2773195207118988, + "learning_rate": 0.0006, + "loss": 3.809542417526245, + "step": 1802 + }, + { + "epoch": 25.041939711664483, + "grad_norm": 0.3073263168334961, + "learning_rate": 0.0006, + "loss": 3.825706958770752, + "step": 1803 + }, + { + "epoch": 25.055919615552643, + "grad_norm": 0.30885398387908936, + "learning_rate": 0.0006, + "loss": 3.8081188201904297, + "step": 1804 + }, + { + "epoch": 25.069899519440803, + "grad_norm": 0.27356019616127014, + "learning_rate": 0.0006, + "loss": 3.8538241386413574, + "step": 1805 + }, + { + "epoch": 25.083879423328966, + "grad_norm": 0.22830164432525635, + "learning_rate": 0.0006, + "loss": 3.8246965408325195, + "step": 1806 + }, + { + "epoch": 25.097859327217126, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.8552842140197754, + "step": 1807 + }, + { + "epoch": 25.111839231105286, + "grad_norm": 0.21718722581863403, + "learning_rate": 0.0006, + "loss": 3.8489418029785156, + "step": 1808 + }, + { + "epoch": 25.125819134993446, + "grad_norm": 0.2480861395597458, + "learning_rate": 0.0006, + "loss": 3.821455955505371, + "step": 1809 + }, + { + "epoch": 25.13979903888161, + "grad_norm": 0.2796635627746582, + "learning_rate": 0.0006, + "loss": 3.8202435970306396, + "step": 1810 + }, + { + "epoch": 25.15377894276977, + "grad_norm": 0.2829958200454712, + "learning_rate": 0.0006, + "loss": 3.8293306827545166, + "step": 1811 + }, + { + "epoch": 25.16775884665793, + "grad_norm": 0.2510125935077667, + "learning_rate": 0.0006, + "loss": 3.8342957496643066, + "step": 1812 + }, + { + "epoch": 25.18173875054609, + "grad_norm": 0.22923722863197327, + "learning_rate": 0.0006, + "loss": 3.8448352813720703, + "step": 1813 + }, + { + "epoch": 25.195718654434252, + "grad_norm": 0.21439228951931, + "learning_rate": 0.0006, + "loss": 3.8343517780303955, + "step": 1814 + }, + { + "epoch": 25.209698558322412, + "grad_norm": 0.1965373307466507, + "learning_rate": 0.0006, + "loss": 3.8163528442382812, + "step": 1815 + }, + { + "epoch": 25.22367846221057, + "grad_norm": 0.20121058821678162, + "learning_rate": 0.0006, + "loss": 3.8007280826568604, + "step": 1816 + }, + { + "epoch": 25.23765836609873, + "grad_norm": 0.21383272111415863, + "learning_rate": 0.0006, + "loss": 3.8200385570526123, + "step": 1817 + }, + { + "epoch": 25.251638269986895, + "grad_norm": 0.2066601663827896, + "learning_rate": 0.0006, + "loss": 3.8333921432495117, + "step": 1818 + }, + { + "epoch": 25.265618173875055, + "grad_norm": 0.2104874551296234, + "learning_rate": 0.0006, + "loss": 3.838012218475342, + "step": 1819 + }, + { + "epoch": 25.279598077763215, + "grad_norm": 0.19733119010925293, + "learning_rate": 0.0006, + "loss": 3.835139274597168, + "step": 1820 + }, + { + "epoch": 25.293577981651374, + "grad_norm": 0.2119498997926712, + "learning_rate": 0.0006, + "loss": 3.8099722862243652, + "step": 1821 + }, + { + "epoch": 25.307557885539538, + "grad_norm": 0.21863529086112976, + "learning_rate": 0.0006, + "loss": 3.7801573276519775, + "step": 1822 + }, + { + "epoch": 25.321537789427698, + "grad_norm": 0.2113322764635086, + "learning_rate": 0.0006, + "loss": 3.809903621673584, + "step": 1823 + }, + { + "epoch": 25.335517693315857, + "grad_norm": 0.21594023704528809, + "learning_rate": 0.0006, + "loss": 3.8485071659088135, + "step": 1824 + }, + { + "epoch": 25.34949759720402, + "grad_norm": 0.21475964784622192, + "learning_rate": 0.0006, + "loss": 3.7894768714904785, + "step": 1825 + }, + { + "epoch": 25.36347750109218, + "grad_norm": 0.21174900233745575, + "learning_rate": 0.0006, + "loss": 3.821711540222168, + "step": 1826 + }, + { + "epoch": 25.37745740498034, + "grad_norm": 0.2065584659576416, + "learning_rate": 0.0006, + "loss": 3.8439841270446777, + "step": 1827 + }, + { + "epoch": 25.3914373088685, + "grad_norm": 0.19157007336616516, + "learning_rate": 0.0006, + "loss": 3.864245891571045, + "step": 1828 + }, + { + "epoch": 25.405417212756664, + "grad_norm": 0.19983816146850586, + "learning_rate": 0.0006, + "loss": 3.8317415714263916, + "step": 1829 + }, + { + "epoch": 25.419397116644824, + "grad_norm": 0.20506152510643005, + "learning_rate": 0.0006, + "loss": 3.8009896278381348, + "step": 1830 + }, + { + "epoch": 25.433377020532983, + "grad_norm": 0.19056960940361023, + "learning_rate": 0.0006, + "loss": 3.8383498191833496, + "step": 1831 + }, + { + "epoch": 25.447356924421143, + "grad_norm": 0.19262190163135529, + "learning_rate": 0.0006, + "loss": 3.838902235031128, + "step": 1832 + }, + { + "epoch": 25.461336828309307, + "grad_norm": 0.19859355688095093, + "learning_rate": 0.0006, + "loss": 3.82452392578125, + "step": 1833 + }, + { + "epoch": 25.475316732197467, + "grad_norm": 0.2144225388765335, + "learning_rate": 0.0006, + "loss": 3.8110032081604004, + "step": 1834 + }, + { + "epoch": 25.489296636085626, + "grad_norm": 0.20566298067569733, + "learning_rate": 0.0006, + "loss": 3.8662471771240234, + "step": 1835 + }, + { + "epoch": 25.503276539973786, + "grad_norm": 0.2071852684020996, + "learning_rate": 0.0006, + "loss": 3.821134090423584, + "step": 1836 + }, + { + "epoch": 25.51725644386195, + "grad_norm": 0.2095036506652832, + "learning_rate": 0.0006, + "loss": 3.824092388153076, + "step": 1837 + }, + { + "epoch": 25.53123634775011, + "grad_norm": 0.20136208832263947, + "learning_rate": 0.0006, + "loss": 3.8669862747192383, + "step": 1838 + }, + { + "epoch": 25.54521625163827, + "grad_norm": 0.1983811855316162, + "learning_rate": 0.0006, + "loss": 3.8120107650756836, + "step": 1839 + }, + { + "epoch": 25.55919615552643, + "grad_norm": 0.22859714925289154, + "learning_rate": 0.0006, + "loss": 3.8519299030303955, + "step": 1840 + }, + { + "epoch": 25.573176059414592, + "grad_norm": 0.23672667145729065, + "learning_rate": 0.0006, + "loss": 3.8245458602905273, + "step": 1841 + }, + { + "epoch": 25.587155963302752, + "grad_norm": 0.22698380053043365, + "learning_rate": 0.0006, + "loss": 3.8406805992126465, + "step": 1842 + }, + { + "epoch": 25.601135867190912, + "grad_norm": 0.25684037804603577, + "learning_rate": 0.0006, + "loss": 3.8584351539611816, + "step": 1843 + }, + { + "epoch": 25.615115771079076, + "grad_norm": 0.28180673718452454, + "learning_rate": 0.0006, + "loss": 3.8085098266601562, + "step": 1844 + }, + { + "epoch": 25.629095674967235, + "grad_norm": 0.2814631462097168, + "learning_rate": 0.0006, + "loss": 3.845083236694336, + "step": 1845 + }, + { + "epoch": 25.643075578855395, + "grad_norm": 0.23630981147289276, + "learning_rate": 0.0006, + "loss": 3.847749710083008, + "step": 1846 + }, + { + "epoch": 25.657055482743555, + "grad_norm": 0.22463662922382355, + "learning_rate": 0.0006, + "loss": 3.8172082901000977, + "step": 1847 + }, + { + "epoch": 25.67103538663172, + "grad_norm": 0.26551681756973267, + "learning_rate": 0.0006, + "loss": 3.8205654621124268, + "step": 1848 + }, + { + "epoch": 25.68501529051988, + "grad_norm": 0.27824243903160095, + "learning_rate": 0.0006, + "loss": 3.846076011657715, + "step": 1849 + }, + { + "epoch": 25.698995194408038, + "grad_norm": 0.266998291015625, + "learning_rate": 0.0006, + "loss": 3.8543574810028076, + "step": 1850 + }, + { + "epoch": 25.712975098296198, + "grad_norm": 0.22980351746082306, + "learning_rate": 0.0006, + "loss": 3.855511426925659, + "step": 1851 + }, + { + "epoch": 25.72695500218436, + "grad_norm": 0.23482872545719147, + "learning_rate": 0.0006, + "loss": 3.8687663078308105, + "step": 1852 + }, + { + "epoch": 25.74093490607252, + "grad_norm": 0.21119585633277893, + "learning_rate": 0.0006, + "loss": 3.8147101402282715, + "step": 1853 + }, + { + "epoch": 25.75491480996068, + "grad_norm": 0.21200446784496307, + "learning_rate": 0.0006, + "loss": 3.858473777770996, + "step": 1854 + }, + { + "epoch": 25.76889471384884, + "grad_norm": 0.20497842133045197, + "learning_rate": 0.0006, + "loss": 3.8545501232147217, + "step": 1855 + }, + { + "epoch": 25.782874617737004, + "grad_norm": 0.19328081607818604, + "learning_rate": 0.0006, + "loss": 3.7941341400146484, + "step": 1856 + }, + { + "epoch": 25.796854521625164, + "grad_norm": 0.2191578894853592, + "learning_rate": 0.0006, + "loss": 3.8408665657043457, + "step": 1857 + }, + { + "epoch": 25.810834425513324, + "grad_norm": 0.2548826038837433, + "learning_rate": 0.0006, + "loss": 3.854130744934082, + "step": 1858 + }, + { + "epoch": 25.824814329401484, + "grad_norm": 0.2290351390838623, + "learning_rate": 0.0006, + "loss": 3.8680176734924316, + "step": 1859 + }, + { + "epoch": 25.838794233289647, + "grad_norm": 0.20760944485664368, + "learning_rate": 0.0006, + "loss": 3.83731746673584, + "step": 1860 + }, + { + "epoch": 25.852774137177807, + "grad_norm": 0.19587582349777222, + "learning_rate": 0.0006, + "loss": 3.8173444271087646, + "step": 1861 + }, + { + "epoch": 25.866754041065967, + "grad_norm": 0.20762693881988525, + "learning_rate": 0.0006, + "loss": 3.8479790687561035, + "step": 1862 + }, + { + "epoch": 25.88073394495413, + "grad_norm": 0.20633186399936676, + "learning_rate": 0.0006, + "loss": 3.852285385131836, + "step": 1863 + }, + { + "epoch": 25.89471384884229, + "grad_norm": 0.21484960615634918, + "learning_rate": 0.0006, + "loss": 3.832592725753784, + "step": 1864 + }, + { + "epoch": 25.90869375273045, + "grad_norm": 0.19569595158100128, + "learning_rate": 0.0006, + "loss": 3.838071584701538, + "step": 1865 + }, + { + "epoch": 25.92267365661861, + "grad_norm": 0.19532904028892517, + "learning_rate": 0.0006, + "loss": 3.854252815246582, + "step": 1866 + }, + { + "epoch": 25.936653560506773, + "grad_norm": 0.1909649819135666, + "learning_rate": 0.0006, + "loss": 3.8444578647613525, + "step": 1867 + }, + { + "epoch": 25.950633464394933, + "grad_norm": 0.17476283013820648, + "learning_rate": 0.0006, + "loss": 3.836519241333008, + "step": 1868 + }, + { + "epoch": 25.964613368283093, + "grad_norm": 0.1895206719636917, + "learning_rate": 0.0006, + "loss": 3.8282582759857178, + "step": 1869 + }, + { + "epoch": 25.978593272171253, + "grad_norm": 0.20038437843322754, + "learning_rate": 0.0006, + "loss": 3.80542254447937, + "step": 1870 + }, + { + "epoch": 25.992573176059416, + "grad_norm": 0.20728608965873718, + "learning_rate": 0.0006, + "loss": 3.8584811687469482, + "step": 1871 + }, + { + "epoch": 26.0, + "grad_norm": 0.22110891342163086, + "learning_rate": 0.0006, + "loss": 3.8020238876342773, + "step": 1872 + }, + { + "epoch": 26.0, + "eval_loss": 4.072164058685303, + "eval_runtime": 44.9089, + "eval_samples_per_second": 54.377, + "eval_steps_per_second": 3.407, + "step": 1872 + }, + { + "epoch": 26.01397990388816, + "grad_norm": 0.2222519814968109, + "learning_rate": 0.0006, + "loss": 3.8309168815612793, + "step": 1873 + }, + { + "epoch": 26.027959807776323, + "grad_norm": 0.2637656033039093, + "learning_rate": 0.0006, + "loss": 3.8025143146514893, + "step": 1874 + }, + { + "epoch": 26.041939711664483, + "grad_norm": 0.2665974795818329, + "learning_rate": 0.0006, + "loss": 3.8244004249572754, + "step": 1875 + }, + { + "epoch": 26.055919615552643, + "grad_norm": 0.22475720942020416, + "learning_rate": 0.0006, + "loss": 3.80039119720459, + "step": 1876 + }, + { + "epoch": 26.069899519440803, + "grad_norm": 0.22994336485862732, + "learning_rate": 0.0006, + "loss": 3.7700726985931396, + "step": 1877 + }, + { + "epoch": 26.083879423328966, + "grad_norm": 0.24214622378349304, + "learning_rate": 0.0006, + "loss": 3.818725109100342, + "step": 1878 + }, + { + "epoch": 26.097859327217126, + "grad_norm": 0.22701293230056763, + "learning_rate": 0.0006, + "loss": 3.833803176879883, + "step": 1879 + }, + { + "epoch": 26.111839231105286, + "grad_norm": 0.21452295780181885, + "learning_rate": 0.0006, + "loss": 3.8391427993774414, + "step": 1880 + }, + { + "epoch": 26.125819134993446, + "grad_norm": 0.20179636776447296, + "learning_rate": 0.0006, + "loss": 3.802957057952881, + "step": 1881 + }, + { + "epoch": 26.13979903888161, + "grad_norm": 0.2087477445602417, + "learning_rate": 0.0006, + "loss": 3.8339905738830566, + "step": 1882 + }, + { + "epoch": 26.15377894276977, + "grad_norm": 0.23583556711673737, + "learning_rate": 0.0006, + "loss": 3.802438259124756, + "step": 1883 + }, + { + "epoch": 26.16775884665793, + "grad_norm": 0.2504311501979828, + "learning_rate": 0.0006, + "loss": 3.80244517326355, + "step": 1884 + }, + { + "epoch": 26.18173875054609, + "grad_norm": 0.24903984367847443, + "learning_rate": 0.0006, + "loss": 3.788865566253662, + "step": 1885 + }, + { + "epoch": 26.195718654434252, + "grad_norm": 0.2707931101322174, + "learning_rate": 0.0006, + "loss": 3.800051212310791, + "step": 1886 + }, + { + "epoch": 26.209698558322412, + "grad_norm": 0.24902892112731934, + "learning_rate": 0.0006, + "loss": 3.8068337440490723, + "step": 1887 + }, + { + "epoch": 26.22367846221057, + "grad_norm": 0.22655536234378815, + "learning_rate": 0.0006, + "loss": 3.779439926147461, + "step": 1888 + }, + { + "epoch": 26.23765836609873, + "grad_norm": 0.24797996878623962, + "learning_rate": 0.0006, + "loss": 3.822831153869629, + "step": 1889 + }, + { + "epoch": 26.251638269986895, + "grad_norm": 0.2821420431137085, + "learning_rate": 0.0006, + "loss": 3.807954788208008, + "step": 1890 + }, + { + "epoch": 26.265618173875055, + "grad_norm": 0.30392691493034363, + "learning_rate": 0.0006, + "loss": 3.776951789855957, + "step": 1891 + }, + { + "epoch": 26.279598077763215, + "grad_norm": 0.32641273736953735, + "learning_rate": 0.0006, + "loss": 3.8216311931610107, + "step": 1892 + }, + { + "epoch": 26.293577981651374, + "grad_norm": 0.32674387097358704, + "learning_rate": 0.0006, + "loss": 3.815596580505371, + "step": 1893 + }, + { + "epoch": 26.307557885539538, + "grad_norm": 0.29137250781059265, + "learning_rate": 0.0006, + "loss": 3.8170812129974365, + "step": 1894 + }, + { + "epoch": 26.321537789427698, + "grad_norm": 0.24291734397411346, + "learning_rate": 0.0006, + "loss": 3.810352087020874, + "step": 1895 + }, + { + "epoch": 26.335517693315857, + "grad_norm": 0.24023209512233734, + "learning_rate": 0.0006, + "loss": 3.8075947761535645, + "step": 1896 + }, + { + "epoch": 26.34949759720402, + "grad_norm": 0.24334804713726044, + "learning_rate": 0.0006, + "loss": 3.831556797027588, + "step": 1897 + }, + { + "epoch": 26.36347750109218, + "grad_norm": 0.2109663337469101, + "learning_rate": 0.0006, + "loss": 3.838347911834717, + "step": 1898 + }, + { + "epoch": 26.37745740498034, + "grad_norm": 0.19668002426624298, + "learning_rate": 0.0006, + "loss": 3.774737596511841, + "step": 1899 + }, + { + "epoch": 26.3914373088685, + "grad_norm": 0.21329134702682495, + "learning_rate": 0.0006, + "loss": 3.8237252235412598, + "step": 1900 + }, + { + "epoch": 26.405417212756664, + "grad_norm": 0.20381781458854675, + "learning_rate": 0.0006, + "loss": 3.802569627761841, + "step": 1901 + }, + { + "epoch": 26.419397116644824, + "grad_norm": 0.19083160161972046, + "learning_rate": 0.0006, + "loss": 3.8301358222961426, + "step": 1902 + }, + { + "epoch": 26.433377020532983, + "grad_norm": 0.20012904703617096, + "learning_rate": 0.0006, + "loss": 3.7966408729553223, + "step": 1903 + }, + { + "epoch": 26.447356924421143, + "grad_norm": 0.19483457505702972, + "learning_rate": 0.0006, + "loss": 3.8431968688964844, + "step": 1904 + }, + { + "epoch": 26.461336828309307, + "grad_norm": 0.19946353137493134, + "learning_rate": 0.0006, + "loss": 3.8023815155029297, + "step": 1905 + }, + { + "epoch": 26.475316732197467, + "grad_norm": 0.1984100341796875, + "learning_rate": 0.0006, + "loss": 3.8283071517944336, + "step": 1906 + }, + { + "epoch": 26.489296636085626, + "grad_norm": 0.2148299664258957, + "learning_rate": 0.0006, + "loss": 3.8377504348754883, + "step": 1907 + }, + { + "epoch": 26.503276539973786, + "grad_norm": 0.22139184176921844, + "learning_rate": 0.0006, + "loss": 3.823051691055298, + "step": 1908 + }, + { + "epoch": 26.51725644386195, + "grad_norm": 0.18289034068584442, + "learning_rate": 0.0006, + "loss": 3.8027071952819824, + "step": 1909 + }, + { + "epoch": 26.53123634775011, + "grad_norm": 0.1816026121377945, + "learning_rate": 0.0006, + "loss": 3.823786735534668, + "step": 1910 + }, + { + "epoch": 26.54521625163827, + "grad_norm": 0.19074322283267975, + "learning_rate": 0.0006, + "loss": 3.813331127166748, + "step": 1911 + }, + { + "epoch": 26.55919615552643, + "grad_norm": 0.20301467180252075, + "learning_rate": 0.0006, + "loss": 3.8218350410461426, + "step": 1912 + }, + { + "epoch": 26.573176059414592, + "grad_norm": 0.25266432762145996, + "learning_rate": 0.0006, + "loss": 3.8455142974853516, + "step": 1913 + }, + { + "epoch": 26.587155963302752, + "grad_norm": 0.25804755091667175, + "learning_rate": 0.0006, + "loss": 3.799227476119995, + "step": 1914 + }, + { + "epoch": 26.601135867190912, + "grad_norm": 0.2555372416973114, + "learning_rate": 0.0006, + "loss": 3.8125686645507812, + "step": 1915 + }, + { + "epoch": 26.615115771079076, + "grad_norm": 0.2266194075345993, + "learning_rate": 0.0006, + "loss": 3.858363628387451, + "step": 1916 + }, + { + "epoch": 26.629095674967235, + "grad_norm": 0.1933048665523529, + "learning_rate": 0.0006, + "loss": 3.8078083992004395, + "step": 1917 + }, + { + "epoch": 26.643075578855395, + "grad_norm": 0.19936731457710266, + "learning_rate": 0.0006, + "loss": 3.81748628616333, + "step": 1918 + }, + { + "epoch": 26.657055482743555, + "grad_norm": 0.22041693329811096, + "learning_rate": 0.0006, + "loss": 3.833272933959961, + "step": 1919 + }, + { + "epoch": 26.67103538663172, + "grad_norm": 0.20679150521755219, + "learning_rate": 0.0006, + "loss": 3.8127288818359375, + "step": 1920 + }, + { + "epoch": 26.68501529051988, + "grad_norm": 0.21545100212097168, + "learning_rate": 0.0006, + "loss": 3.816051483154297, + "step": 1921 + }, + { + "epoch": 26.698995194408038, + "grad_norm": 0.23554518818855286, + "learning_rate": 0.0006, + "loss": 3.8180980682373047, + "step": 1922 + }, + { + "epoch": 26.712975098296198, + "grad_norm": 0.21942466497421265, + "learning_rate": 0.0006, + "loss": 3.803107976913452, + "step": 1923 + }, + { + "epoch": 26.72695500218436, + "grad_norm": 0.22335010766983032, + "learning_rate": 0.0006, + "loss": 3.847890853881836, + "step": 1924 + }, + { + "epoch": 26.74093490607252, + "grad_norm": 0.24731314182281494, + "learning_rate": 0.0006, + "loss": 3.7945008277893066, + "step": 1925 + }, + { + "epoch": 26.75491480996068, + "grad_norm": 0.2804568111896515, + "learning_rate": 0.0006, + "loss": 3.8400068283081055, + "step": 1926 + }, + { + "epoch": 26.76889471384884, + "grad_norm": 0.28787222504615784, + "learning_rate": 0.0006, + "loss": 3.839771270751953, + "step": 1927 + }, + { + "epoch": 26.782874617737004, + "grad_norm": 0.2949632406234741, + "learning_rate": 0.0006, + "loss": 3.8225326538085938, + "step": 1928 + }, + { + "epoch": 26.796854521625164, + "grad_norm": 0.31546032428741455, + "learning_rate": 0.0006, + "loss": 3.8182597160339355, + "step": 1929 + }, + { + "epoch": 26.810834425513324, + "grad_norm": 0.2956962585449219, + "learning_rate": 0.0006, + "loss": 3.8315680027008057, + "step": 1930 + }, + { + "epoch": 26.824814329401484, + "grad_norm": 0.26943835616111755, + "learning_rate": 0.0006, + "loss": 3.787720203399658, + "step": 1931 + }, + { + "epoch": 26.838794233289647, + "grad_norm": 0.24272359907627106, + "learning_rate": 0.0006, + "loss": 3.7973692417144775, + "step": 1932 + }, + { + "epoch": 26.852774137177807, + "grad_norm": 0.20553994178771973, + "learning_rate": 0.0006, + "loss": 3.8241593837738037, + "step": 1933 + }, + { + "epoch": 26.866754041065967, + "grad_norm": 0.21927912533283234, + "learning_rate": 0.0006, + "loss": 3.8608899116516113, + "step": 1934 + }, + { + "epoch": 26.88073394495413, + "grad_norm": 0.22878016531467438, + "learning_rate": 0.0006, + "loss": 3.8341972827911377, + "step": 1935 + }, + { + "epoch": 26.89471384884229, + "grad_norm": 0.2085554301738739, + "learning_rate": 0.0006, + "loss": 3.8261351585388184, + "step": 1936 + }, + { + "epoch": 26.90869375273045, + "grad_norm": 0.21259072422981262, + "learning_rate": 0.0006, + "loss": 3.862056255340576, + "step": 1937 + }, + { + "epoch": 26.92267365661861, + "grad_norm": 0.21354122459888458, + "learning_rate": 0.0006, + "loss": 3.80879545211792, + "step": 1938 + }, + { + "epoch": 26.936653560506773, + "grad_norm": 0.2350253462791443, + "learning_rate": 0.0006, + "loss": 3.817826271057129, + "step": 1939 + }, + { + "epoch": 26.950633464394933, + "grad_norm": 0.23833836615085602, + "learning_rate": 0.0006, + "loss": 3.8220884799957275, + "step": 1940 + }, + { + "epoch": 26.964613368283093, + "grad_norm": 0.2368069440126419, + "learning_rate": 0.0006, + "loss": 3.843264579772949, + "step": 1941 + }, + { + "epoch": 26.978593272171253, + "grad_norm": 0.22663559019565582, + "learning_rate": 0.0006, + "loss": 3.81339430809021, + "step": 1942 + }, + { + "epoch": 26.992573176059416, + "grad_norm": 0.2151402235031128, + "learning_rate": 0.0006, + "loss": 3.8262834548950195, + "step": 1943 + }, + { + "epoch": 27.0, + "grad_norm": 0.24320295453071594, + "learning_rate": 0.0006, + "loss": 3.858567237854004, + "step": 1944 + }, + { + "epoch": 27.0, + "eval_loss": 4.0613322257995605, + "eval_runtime": 44.766, + "eval_samples_per_second": 54.55, + "eval_steps_per_second": 3.418, + "step": 1944 + }, + { + "epoch": 27.01397990388816, + "grad_norm": 0.21188032627105713, + "learning_rate": 0.0006, + "loss": 3.7631278038024902, + "step": 1945 + }, + { + "epoch": 27.027959807776323, + "grad_norm": 0.22298137843608856, + "learning_rate": 0.0006, + "loss": 3.784029245376587, + "step": 1946 + }, + { + "epoch": 27.041939711664483, + "grad_norm": 0.26530158519744873, + "learning_rate": 0.0006, + "loss": 3.795860767364502, + "step": 1947 + }, + { + "epoch": 27.055919615552643, + "grad_norm": 0.24476729333400726, + "learning_rate": 0.0006, + "loss": 3.77512264251709, + "step": 1948 + }, + { + "epoch": 27.069899519440803, + "grad_norm": 0.1934421956539154, + "learning_rate": 0.0006, + "loss": 3.7797446250915527, + "step": 1949 + }, + { + "epoch": 27.083879423328966, + "grad_norm": 0.19777092337608337, + "learning_rate": 0.0006, + "loss": 3.798935890197754, + "step": 1950 + }, + { + "epoch": 27.097859327217126, + "grad_norm": 0.2071693390607834, + "learning_rate": 0.0006, + "loss": 3.763094425201416, + "step": 1951 + }, + { + "epoch": 27.111839231105286, + "grad_norm": 0.18394742906093597, + "learning_rate": 0.0006, + "loss": 3.7892322540283203, + "step": 1952 + }, + { + "epoch": 27.125819134993446, + "grad_norm": 0.17878273129463196, + "learning_rate": 0.0006, + "loss": 3.787968158721924, + "step": 1953 + }, + { + "epoch": 27.13979903888161, + "grad_norm": 0.18792171776294708, + "learning_rate": 0.0006, + "loss": 3.7719640731811523, + "step": 1954 + }, + { + "epoch": 27.15377894276977, + "grad_norm": 0.18718759715557098, + "learning_rate": 0.0006, + "loss": 3.791835308074951, + "step": 1955 + }, + { + "epoch": 27.16775884665793, + "grad_norm": 0.18716055154800415, + "learning_rate": 0.0006, + "loss": 3.7490220069885254, + "step": 1956 + }, + { + "epoch": 27.18173875054609, + "grad_norm": 0.18429182469844818, + "learning_rate": 0.0006, + "loss": 3.8020081520080566, + "step": 1957 + }, + { + "epoch": 27.195718654434252, + "grad_norm": 0.18571704626083374, + "learning_rate": 0.0006, + "loss": 3.8152215480804443, + "step": 1958 + }, + { + "epoch": 27.209698558322412, + "grad_norm": 0.1788843423128128, + "learning_rate": 0.0006, + "loss": 3.8173317909240723, + "step": 1959 + }, + { + "epoch": 27.22367846221057, + "grad_norm": 0.20459426939487457, + "learning_rate": 0.0006, + "loss": 3.7760040760040283, + "step": 1960 + }, + { + "epoch": 27.23765836609873, + "grad_norm": 0.22360935807228088, + "learning_rate": 0.0006, + "loss": 3.8140203952789307, + "step": 1961 + }, + { + "epoch": 27.251638269986895, + "grad_norm": 0.2062767595052719, + "learning_rate": 0.0006, + "loss": 3.792001247406006, + "step": 1962 + }, + { + "epoch": 27.265618173875055, + "grad_norm": 0.20628073811531067, + "learning_rate": 0.0006, + "loss": 3.7873167991638184, + "step": 1963 + }, + { + "epoch": 27.279598077763215, + "grad_norm": 0.19888348877429962, + "learning_rate": 0.0006, + "loss": 3.7903614044189453, + "step": 1964 + }, + { + "epoch": 27.293577981651374, + "grad_norm": 0.22033332288265228, + "learning_rate": 0.0006, + "loss": 3.802497148513794, + "step": 1965 + }, + { + "epoch": 27.307557885539538, + "grad_norm": 0.23476941883563995, + "learning_rate": 0.0006, + "loss": 3.794090986251831, + "step": 1966 + }, + { + "epoch": 27.321537789427698, + "grad_norm": 0.19639968872070312, + "learning_rate": 0.0006, + "loss": 3.831794023513794, + "step": 1967 + }, + { + "epoch": 27.335517693315857, + "grad_norm": 0.18169641494750977, + "learning_rate": 0.0006, + "loss": 3.7687768936157227, + "step": 1968 + }, + { + "epoch": 27.34949759720402, + "grad_norm": 0.17781762778759003, + "learning_rate": 0.0006, + "loss": 3.7868471145629883, + "step": 1969 + }, + { + "epoch": 27.36347750109218, + "grad_norm": 0.18990416824817657, + "learning_rate": 0.0006, + "loss": 3.8340392112731934, + "step": 1970 + }, + { + "epoch": 27.37745740498034, + "grad_norm": 0.2031438797712326, + "learning_rate": 0.0006, + "loss": 3.804513454437256, + "step": 1971 + }, + { + "epoch": 27.3914373088685, + "grad_norm": 0.21233421564102173, + "learning_rate": 0.0006, + "loss": 3.7908449172973633, + "step": 1972 + }, + { + "epoch": 27.405417212756664, + "grad_norm": 0.22480927407741547, + "learning_rate": 0.0006, + "loss": 3.7894086837768555, + "step": 1973 + }, + { + "epoch": 27.419397116644824, + "grad_norm": 0.22713422775268555, + "learning_rate": 0.0006, + "loss": 3.826005458831787, + "step": 1974 + }, + { + "epoch": 27.433377020532983, + "grad_norm": 0.21637366712093353, + "learning_rate": 0.0006, + "loss": 3.8232319355010986, + "step": 1975 + }, + { + "epoch": 27.447356924421143, + "grad_norm": 0.24092449247837067, + "learning_rate": 0.0006, + "loss": 3.813279628753662, + "step": 1976 + }, + { + "epoch": 27.461336828309307, + "grad_norm": 0.21143047511577606, + "learning_rate": 0.0006, + "loss": 3.811586856842041, + "step": 1977 + }, + { + "epoch": 27.475316732197467, + "grad_norm": 0.21049432456493378, + "learning_rate": 0.0006, + "loss": 3.8227009773254395, + "step": 1978 + }, + { + "epoch": 27.489296636085626, + "grad_norm": 0.21853850781917572, + "learning_rate": 0.0006, + "loss": 3.7992515563964844, + "step": 1979 + }, + { + "epoch": 27.503276539973786, + "grad_norm": 0.22405001521110535, + "learning_rate": 0.0006, + "loss": 3.8311715126037598, + "step": 1980 + }, + { + "epoch": 27.51725644386195, + "grad_norm": 0.24085809290409088, + "learning_rate": 0.0006, + "loss": 3.801962375640869, + "step": 1981 + }, + { + "epoch": 27.53123634775011, + "grad_norm": 0.2612341642379761, + "learning_rate": 0.0006, + "loss": 3.7867887020111084, + "step": 1982 + }, + { + "epoch": 27.54521625163827, + "grad_norm": 0.25136062502861023, + "learning_rate": 0.0006, + "loss": 3.8302273750305176, + "step": 1983 + }, + { + "epoch": 27.55919615552643, + "grad_norm": 0.2485426515340805, + "learning_rate": 0.0006, + "loss": 3.770616054534912, + "step": 1984 + }, + { + "epoch": 27.573176059414592, + "grad_norm": 0.28883907198905945, + "learning_rate": 0.0006, + "loss": 3.8152146339416504, + "step": 1985 + }, + { + "epoch": 27.587155963302752, + "grad_norm": 0.28177911043167114, + "learning_rate": 0.0006, + "loss": 3.7966861724853516, + "step": 1986 + }, + { + "epoch": 27.601135867190912, + "grad_norm": 0.2573191523551941, + "learning_rate": 0.0006, + "loss": 3.820788621902466, + "step": 1987 + }, + { + "epoch": 27.615115771079076, + "grad_norm": 0.22225657105445862, + "learning_rate": 0.0006, + "loss": 3.778477191925049, + "step": 1988 + }, + { + "epoch": 27.629095674967235, + "grad_norm": 0.20118530094623566, + "learning_rate": 0.0006, + "loss": 3.8416988849639893, + "step": 1989 + }, + { + "epoch": 27.643075578855395, + "grad_norm": 0.21168658137321472, + "learning_rate": 0.0006, + "loss": 3.798020839691162, + "step": 1990 + }, + { + "epoch": 27.657055482743555, + "grad_norm": 0.2460680454969406, + "learning_rate": 0.0006, + "loss": 3.805917263031006, + "step": 1991 + }, + { + "epoch": 27.67103538663172, + "grad_norm": 0.2700909674167633, + "learning_rate": 0.0006, + "loss": 3.8042726516723633, + "step": 1992 + }, + { + "epoch": 27.68501529051988, + "grad_norm": 0.25814294815063477, + "learning_rate": 0.0006, + "loss": 3.799159049987793, + "step": 1993 + }, + { + "epoch": 27.698995194408038, + "grad_norm": 0.2231985628604889, + "learning_rate": 0.0006, + "loss": 3.778750419616699, + "step": 1994 + }, + { + "epoch": 27.712975098296198, + "grad_norm": 0.20807890594005585, + "learning_rate": 0.0006, + "loss": 3.787919044494629, + "step": 1995 + }, + { + "epoch": 27.72695500218436, + "grad_norm": 0.19537150859832764, + "learning_rate": 0.0006, + "loss": 3.7917299270629883, + "step": 1996 + }, + { + "epoch": 27.74093490607252, + "grad_norm": 0.21057647466659546, + "learning_rate": 0.0006, + "loss": 3.8096866607666016, + "step": 1997 + }, + { + "epoch": 27.75491480996068, + "grad_norm": 0.18983247876167297, + "learning_rate": 0.0006, + "loss": 3.7881717681884766, + "step": 1998 + }, + { + "epoch": 27.76889471384884, + "grad_norm": 0.18701069056987762, + "learning_rate": 0.0006, + "loss": 3.810790538787842, + "step": 1999 + }, + { + "epoch": 27.782874617737004, + "grad_norm": 0.1920134723186493, + "learning_rate": 0.0006, + "loss": 3.8161087036132812, + "step": 2000 + }, + { + "epoch": 27.796854521625164, + "grad_norm": 0.20413947105407715, + "learning_rate": 0.0006, + "loss": 3.790499687194824, + "step": 2001 + }, + { + "epoch": 27.810834425513324, + "grad_norm": 0.1920027732849121, + "learning_rate": 0.0006, + "loss": 3.8194262981414795, + "step": 2002 + }, + { + "epoch": 27.824814329401484, + "grad_norm": 0.18630221486091614, + "learning_rate": 0.0006, + "loss": 3.8267152309417725, + "step": 2003 + }, + { + "epoch": 27.838794233289647, + "grad_norm": 0.1787925660610199, + "learning_rate": 0.0006, + "loss": 3.8147521018981934, + "step": 2004 + }, + { + "epoch": 27.852774137177807, + "grad_norm": 0.19187216460704803, + "learning_rate": 0.0006, + "loss": 3.7751095294952393, + "step": 2005 + }, + { + "epoch": 27.866754041065967, + "grad_norm": 0.18825744092464447, + "learning_rate": 0.0006, + "loss": 3.807401657104492, + "step": 2006 + }, + { + "epoch": 27.88073394495413, + "grad_norm": 0.1879836469888687, + "learning_rate": 0.0006, + "loss": 3.8302509784698486, + "step": 2007 + }, + { + "epoch": 27.89471384884229, + "grad_norm": 0.19136391580104828, + "learning_rate": 0.0006, + "loss": 3.7886242866516113, + "step": 2008 + }, + { + "epoch": 27.90869375273045, + "grad_norm": 0.18774119019508362, + "learning_rate": 0.0006, + "loss": 3.8202977180480957, + "step": 2009 + }, + { + "epoch": 27.92267365661861, + "grad_norm": 0.17794452607631683, + "learning_rate": 0.0006, + "loss": 3.813382387161255, + "step": 2010 + }, + { + "epoch": 27.936653560506773, + "grad_norm": 0.1876268833875656, + "learning_rate": 0.0006, + "loss": 3.810610294342041, + "step": 2011 + }, + { + "epoch": 27.950633464394933, + "grad_norm": 0.19262051582336426, + "learning_rate": 0.0006, + "loss": 3.8113245964050293, + "step": 2012 + }, + { + "epoch": 27.964613368283093, + "grad_norm": 0.19371771812438965, + "learning_rate": 0.0006, + "loss": 3.804790496826172, + "step": 2013 + }, + { + "epoch": 27.978593272171253, + "grad_norm": 0.1922861784696579, + "learning_rate": 0.0006, + "loss": 3.8278889656066895, + "step": 2014 + }, + { + "epoch": 27.992573176059416, + "grad_norm": 0.19748565554618835, + "learning_rate": 0.0006, + "loss": 3.8127200603485107, + "step": 2015 + }, + { + "epoch": 28.0, + "grad_norm": 0.25027501583099365, + "learning_rate": 0.0006, + "loss": 3.7899413108825684, + "step": 2016 + }, + { + "epoch": 28.0, + "eval_loss": 4.047704219818115, + "eval_runtime": 44.293, + "eval_samples_per_second": 55.133, + "eval_steps_per_second": 3.454, + "step": 2016 + }, + { + "epoch": 28.01397990388816, + "grad_norm": 0.25172367691993713, + "learning_rate": 0.0006, + "loss": 3.75449538230896, + "step": 2017 + }, + { + "epoch": 28.027959807776323, + "grad_norm": 0.23494598269462585, + "learning_rate": 0.0006, + "loss": 3.7609024047851562, + "step": 2018 + }, + { + "epoch": 28.041939711664483, + "grad_norm": 0.22459708154201508, + "learning_rate": 0.0006, + "loss": 3.7843551635742188, + "step": 2019 + }, + { + "epoch": 28.055919615552643, + "grad_norm": 0.2038632035255432, + "learning_rate": 0.0006, + "loss": 3.7818198204040527, + "step": 2020 + }, + { + "epoch": 28.069899519440803, + "grad_norm": 0.22050008177757263, + "learning_rate": 0.0006, + "loss": 3.787442684173584, + "step": 2021 + }, + { + "epoch": 28.083879423328966, + "grad_norm": 0.24645832180976868, + "learning_rate": 0.0006, + "loss": 3.768704414367676, + "step": 2022 + }, + { + "epoch": 28.097859327217126, + "grad_norm": 0.2440163493156433, + "learning_rate": 0.0006, + "loss": 3.7783756256103516, + "step": 2023 + }, + { + "epoch": 28.111839231105286, + "grad_norm": 0.2482181042432785, + "learning_rate": 0.0006, + "loss": 3.786881923675537, + "step": 2024 + }, + { + "epoch": 28.125819134993446, + "grad_norm": 0.23494760692119598, + "learning_rate": 0.0006, + "loss": 3.790039300918579, + "step": 2025 + }, + { + "epoch": 28.13979903888161, + "grad_norm": 0.2172182947397232, + "learning_rate": 0.0006, + "loss": 3.818756580352783, + "step": 2026 + }, + { + "epoch": 28.15377894276977, + "grad_norm": 0.2103179395198822, + "learning_rate": 0.0006, + "loss": 3.7768917083740234, + "step": 2027 + }, + { + "epoch": 28.16775884665793, + "grad_norm": 0.22322365641593933, + "learning_rate": 0.0006, + "loss": 3.8223648071289062, + "step": 2028 + }, + { + "epoch": 28.18173875054609, + "grad_norm": 0.24199382960796356, + "learning_rate": 0.0006, + "loss": 3.781357765197754, + "step": 2029 + }, + { + "epoch": 28.195718654434252, + "grad_norm": 0.2500663101673126, + "learning_rate": 0.0006, + "loss": 3.8061184883117676, + "step": 2030 + }, + { + "epoch": 28.209698558322412, + "grad_norm": 0.2439824491739273, + "learning_rate": 0.0006, + "loss": 3.7886464595794678, + "step": 2031 + }, + { + "epoch": 28.22367846221057, + "grad_norm": 0.24563106894493103, + "learning_rate": 0.0006, + "loss": 3.7901692390441895, + "step": 2032 + }, + { + "epoch": 28.23765836609873, + "grad_norm": 0.2287624627351761, + "learning_rate": 0.0006, + "loss": 3.789931058883667, + "step": 2033 + }, + { + "epoch": 28.251638269986895, + "grad_norm": 0.2231188714504242, + "learning_rate": 0.0006, + "loss": 3.7879133224487305, + "step": 2034 + }, + { + "epoch": 28.265618173875055, + "grad_norm": 0.23090387880802155, + "learning_rate": 0.0006, + "loss": 3.7826130390167236, + "step": 2035 + }, + { + "epoch": 28.279598077763215, + "grad_norm": 0.216018944978714, + "learning_rate": 0.0006, + "loss": 3.7764949798583984, + "step": 2036 + }, + { + "epoch": 28.293577981651374, + "grad_norm": 0.22649185359477997, + "learning_rate": 0.0006, + "loss": 3.7911291122436523, + "step": 2037 + }, + { + "epoch": 28.307557885539538, + "grad_norm": 0.2350836843252182, + "learning_rate": 0.0006, + "loss": 3.7668724060058594, + "step": 2038 + }, + { + "epoch": 28.321537789427698, + "grad_norm": 0.23206329345703125, + "learning_rate": 0.0006, + "loss": 3.782243251800537, + "step": 2039 + }, + { + "epoch": 28.335517693315857, + "grad_norm": 0.21896308660507202, + "learning_rate": 0.0006, + "loss": 3.7605721950531006, + "step": 2040 + }, + { + "epoch": 28.34949759720402, + "grad_norm": 0.20381200313568115, + "learning_rate": 0.0006, + "loss": 3.743945598602295, + "step": 2041 + }, + { + "epoch": 28.36347750109218, + "grad_norm": 0.19196000695228577, + "learning_rate": 0.0006, + "loss": 3.808107852935791, + "step": 2042 + }, + { + "epoch": 28.37745740498034, + "grad_norm": 0.19517889618873596, + "learning_rate": 0.0006, + "loss": 3.7906723022460938, + "step": 2043 + }, + { + "epoch": 28.3914373088685, + "grad_norm": 0.20455795526504517, + "learning_rate": 0.0006, + "loss": 3.7421011924743652, + "step": 2044 + }, + { + "epoch": 28.405417212756664, + "grad_norm": 0.1867467314004898, + "learning_rate": 0.0006, + "loss": 3.775509834289551, + "step": 2045 + }, + { + "epoch": 28.419397116644824, + "grad_norm": 0.2029324471950531, + "learning_rate": 0.0006, + "loss": 3.771353244781494, + "step": 2046 + }, + { + "epoch": 28.433377020532983, + "grad_norm": 0.19967497885227203, + "learning_rate": 0.0006, + "loss": 3.7821149826049805, + "step": 2047 + }, + { + "epoch": 28.447356924421143, + "grad_norm": 0.19440607726573944, + "learning_rate": 0.0006, + "loss": 3.8114213943481445, + "step": 2048 + }, + { + "epoch": 28.461336828309307, + "grad_norm": 0.19679802656173706, + "learning_rate": 0.0006, + "loss": 3.7699532508850098, + "step": 2049 + }, + { + "epoch": 28.475316732197467, + "grad_norm": 0.1939811110496521, + "learning_rate": 0.0006, + "loss": 3.7673027515411377, + "step": 2050 + }, + { + "epoch": 28.489296636085626, + "grad_norm": 0.18712401390075684, + "learning_rate": 0.0006, + "loss": 3.816699266433716, + "step": 2051 + }, + { + "epoch": 28.503276539973786, + "grad_norm": 0.202956885099411, + "learning_rate": 0.0006, + "loss": 3.7746071815490723, + "step": 2052 + }, + { + "epoch": 28.51725644386195, + "grad_norm": 0.19098156690597534, + "learning_rate": 0.0006, + "loss": 3.8065481185913086, + "step": 2053 + }, + { + "epoch": 28.53123634775011, + "grad_norm": 0.21144428849220276, + "learning_rate": 0.0006, + "loss": 3.7890982627868652, + "step": 2054 + }, + { + "epoch": 28.54521625163827, + "grad_norm": 0.21882614493370056, + "learning_rate": 0.0006, + "loss": 3.8168821334838867, + "step": 2055 + }, + { + "epoch": 28.55919615552643, + "grad_norm": 0.22200101613998413, + "learning_rate": 0.0006, + "loss": 3.804454803466797, + "step": 2056 + }, + { + "epoch": 28.573176059414592, + "grad_norm": 0.22404780983924866, + "learning_rate": 0.0006, + "loss": 3.808764934539795, + "step": 2057 + }, + { + "epoch": 28.587155963302752, + "grad_norm": 0.22770099341869354, + "learning_rate": 0.0006, + "loss": 3.74835467338562, + "step": 2058 + }, + { + "epoch": 28.601135867190912, + "grad_norm": 0.23214420676231384, + "learning_rate": 0.0006, + "loss": 3.7480111122131348, + "step": 2059 + }, + { + "epoch": 28.615115771079076, + "grad_norm": 0.21786348521709442, + "learning_rate": 0.0006, + "loss": 3.8095176219940186, + "step": 2060 + }, + { + "epoch": 28.629095674967235, + "grad_norm": 0.21004106104373932, + "learning_rate": 0.0006, + "loss": 3.792745590209961, + "step": 2061 + }, + { + "epoch": 28.643075578855395, + "grad_norm": 0.21076138317584991, + "learning_rate": 0.0006, + "loss": 3.7878952026367188, + "step": 2062 + }, + { + "epoch": 28.657055482743555, + "grad_norm": 0.2184346616268158, + "learning_rate": 0.0006, + "loss": 3.757188320159912, + "step": 2063 + }, + { + "epoch": 28.67103538663172, + "grad_norm": 0.22100569307804108, + "learning_rate": 0.0006, + "loss": 3.8131773471832275, + "step": 2064 + }, + { + "epoch": 28.68501529051988, + "grad_norm": 0.23257511854171753, + "learning_rate": 0.0006, + "loss": 3.793826103210449, + "step": 2065 + }, + { + "epoch": 28.698995194408038, + "grad_norm": 0.22312869131565094, + "learning_rate": 0.0006, + "loss": 3.782083749771118, + "step": 2066 + }, + { + "epoch": 28.712975098296198, + "grad_norm": 0.2318405956029892, + "learning_rate": 0.0006, + "loss": 3.7814879417419434, + "step": 2067 + }, + { + "epoch": 28.72695500218436, + "grad_norm": 0.23719379305839539, + "learning_rate": 0.0006, + "loss": 3.8320484161376953, + "step": 2068 + }, + { + "epoch": 28.74093490607252, + "grad_norm": 0.23100806772708893, + "learning_rate": 0.0006, + "loss": 3.7921783924102783, + "step": 2069 + }, + { + "epoch": 28.75491480996068, + "grad_norm": 0.21540866792201996, + "learning_rate": 0.0006, + "loss": 3.8325204849243164, + "step": 2070 + }, + { + "epoch": 28.76889471384884, + "grad_norm": 0.2698654532432556, + "learning_rate": 0.0006, + "loss": 3.7965879440307617, + "step": 2071 + }, + { + "epoch": 28.782874617737004, + "grad_norm": 0.3101225793361664, + "learning_rate": 0.0006, + "loss": 3.78842830657959, + "step": 2072 + }, + { + "epoch": 28.796854521625164, + "grad_norm": 0.2607600688934326, + "learning_rate": 0.0006, + "loss": 3.770064115524292, + "step": 2073 + }, + { + "epoch": 28.810834425513324, + "grad_norm": 0.20558302104473114, + "learning_rate": 0.0006, + "loss": 3.7448501586914062, + "step": 2074 + }, + { + "epoch": 28.824814329401484, + "grad_norm": 0.20030120015144348, + "learning_rate": 0.0006, + "loss": 3.7689406871795654, + "step": 2075 + }, + { + "epoch": 28.838794233289647, + "grad_norm": 0.21781118214130402, + "learning_rate": 0.0006, + "loss": 3.7682244777679443, + "step": 2076 + }, + { + "epoch": 28.852774137177807, + "grad_norm": 0.23543044924736023, + "learning_rate": 0.0006, + "loss": 3.8094193935394287, + "step": 2077 + }, + { + "epoch": 28.866754041065967, + "grad_norm": 0.21634669601917267, + "learning_rate": 0.0006, + "loss": 3.792099952697754, + "step": 2078 + }, + { + "epoch": 28.88073394495413, + "grad_norm": 0.2251661866903305, + "learning_rate": 0.0006, + "loss": 3.7849509716033936, + "step": 2079 + }, + { + "epoch": 28.89471384884229, + "grad_norm": 0.23872914910316467, + "learning_rate": 0.0006, + "loss": 3.8391621112823486, + "step": 2080 + }, + { + "epoch": 28.90869375273045, + "grad_norm": 0.22259248793125153, + "learning_rate": 0.0006, + "loss": 3.8272876739501953, + "step": 2081 + }, + { + "epoch": 28.92267365661861, + "grad_norm": 0.22052262723445892, + "learning_rate": 0.0006, + "loss": 3.7986836433410645, + "step": 2082 + }, + { + "epoch": 28.936653560506773, + "grad_norm": 0.24487647414207458, + "learning_rate": 0.0006, + "loss": 3.798004150390625, + "step": 2083 + }, + { + "epoch": 28.950633464394933, + "grad_norm": 0.22992238402366638, + "learning_rate": 0.0006, + "loss": 3.788522720336914, + "step": 2084 + }, + { + "epoch": 28.964613368283093, + "grad_norm": 0.22521597146987915, + "learning_rate": 0.0006, + "loss": 3.767259120941162, + "step": 2085 + }, + { + "epoch": 28.978593272171253, + "grad_norm": 0.2201499044895172, + "learning_rate": 0.0006, + "loss": 3.7850542068481445, + "step": 2086 + }, + { + "epoch": 28.992573176059416, + "grad_norm": 0.22226814925670624, + "learning_rate": 0.0006, + "loss": 3.8013534545898438, + "step": 2087 + }, + { + "epoch": 29.0, + "grad_norm": 0.27624809741973877, + "learning_rate": 0.0006, + "loss": 3.762004852294922, + "step": 2088 + }, + { + "epoch": 29.0, + "eval_loss": 4.034304618835449, + "eval_runtime": 44.6573, + "eval_samples_per_second": 54.683, + "eval_steps_per_second": 3.426, + "step": 2088 + }, + { + "epoch": 29.01397990388816, + "grad_norm": 0.2550967037677765, + "learning_rate": 0.0006, + "loss": 3.7724227905273438, + "step": 2089 + }, + { + "epoch": 29.027959807776323, + "grad_norm": 0.26730602979660034, + "learning_rate": 0.0006, + "loss": 3.7728946208953857, + "step": 2090 + }, + { + "epoch": 29.041939711664483, + "grad_norm": 0.2394205927848816, + "learning_rate": 0.0006, + "loss": 3.7737584114074707, + "step": 2091 + }, + { + "epoch": 29.055919615552643, + "grad_norm": 0.22488200664520264, + "learning_rate": 0.0006, + "loss": 3.761014938354492, + "step": 2092 + }, + { + "epoch": 29.069899519440803, + "grad_norm": 0.2389903962612152, + "learning_rate": 0.0006, + "loss": 3.766557216644287, + "step": 2093 + }, + { + "epoch": 29.083879423328966, + "grad_norm": 0.234152153134346, + "learning_rate": 0.0006, + "loss": 3.7447147369384766, + "step": 2094 + }, + { + "epoch": 29.097859327217126, + "grad_norm": 0.23123252391815186, + "learning_rate": 0.0006, + "loss": 3.77197527885437, + "step": 2095 + }, + { + "epoch": 29.111839231105286, + "grad_norm": 0.23263143002986908, + "learning_rate": 0.0006, + "loss": 3.7390198707580566, + "step": 2096 + }, + { + "epoch": 29.125819134993446, + "grad_norm": 0.23235775530338287, + "learning_rate": 0.0006, + "loss": 3.7675256729125977, + "step": 2097 + }, + { + "epoch": 29.13979903888161, + "grad_norm": 0.2208816260099411, + "learning_rate": 0.0006, + "loss": 3.7588067054748535, + "step": 2098 + }, + { + "epoch": 29.15377894276977, + "grad_norm": 0.21216371655464172, + "learning_rate": 0.0006, + "loss": 3.7370502948760986, + "step": 2099 + }, + { + "epoch": 29.16775884665793, + "grad_norm": 0.2210543155670166, + "learning_rate": 0.0006, + "loss": 3.767308473587036, + "step": 2100 + }, + { + "epoch": 29.18173875054609, + "grad_norm": 0.21628431975841522, + "learning_rate": 0.0006, + "loss": 3.7298972606658936, + "step": 2101 + }, + { + "epoch": 29.195718654434252, + "grad_norm": 0.21493588387966156, + "learning_rate": 0.0006, + "loss": 3.7806448936462402, + "step": 2102 + }, + { + "epoch": 29.209698558322412, + "grad_norm": 0.25978055596351624, + "learning_rate": 0.0006, + "loss": 3.7716293334960938, + "step": 2103 + }, + { + "epoch": 29.22367846221057, + "grad_norm": 0.2744791507720947, + "learning_rate": 0.0006, + "loss": 3.76897931098938, + "step": 2104 + }, + { + "epoch": 29.23765836609873, + "grad_norm": 0.22959400713443756, + "learning_rate": 0.0006, + "loss": 3.7545714378356934, + "step": 2105 + }, + { + "epoch": 29.251638269986895, + "grad_norm": 0.20369231700897217, + "learning_rate": 0.0006, + "loss": 3.7944722175598145, + "step": 2106 + }, + { + "epoch": 29.265618173875055, + "grad_norm": 0.21663758158683777, + "learning_rate": 0.0006, + "loss": 3.7564756870269775, + "step": 2107 + }, + { + "epoch": 29.279598077763215, + "grad_norm": 0.21862861514091492, + "learning_rate": 0.0006, + "loss": 3.7722725868225098, + "step": 2108 + }, + { + "epoch": 29.293577981651374, + "grad_norm": 0.2044878453016281, + "learning_rate": 0.0006, + "loss": 3.7471303939819336, + "step": 2109 + }, + { + "epoch": 29.307557885539538, + "grad_norm": 0.23015929758548737, + "learning_rate": 0.0006, + "loss": 3.7584962844848633, + "step": 2110 + }, + { + "epoch": 29.321537789427698, + "grad_norm": 0.22548329830169678, + "learning_rate": 0.0006, + "loss": 3.795933723449707, + "step": 2111 + }, + { + "epoch": 29.335517693315857, + "grad_norm": 0.2000468522310257, + "learning_rate": 0.0006, + "loss": 3.766310691833496, + "step": 2112 + }, + { + "epoch": 29.34949759720402, + "grad_norm": 0.19711551070213318, + "learning_rate": 0.0006, + "loss": 3.7296276092529297, + "step": 2113 + }, + { + "epoch": 29.36347750109218, + "grad_norm": 0.18838997185230255, + "learning_rate": 0.0006, + "loss": 3.7685282230377197, + "step": 2114 + }, + { + "epoch": 29.37745740498034, + "grad_norm": 0.1897876113653183, + "learning_rate": 0.0006, + "loss": 3.7280936241149902, + "step": 2115 + }, + { + "epoch": 29.3914373088685, + "grad_norm": 0.21697933971881866, + "learning_rate": 0.0006, + "loss": 3.7991929054260254, + "step": 2116 + }, + { + "epoch": 29.405417212756664, + "grad_norm": 0.23445849120616913, + "learning_rate": 0.0006, + "loss": 3.7857418060302734, + "step": 2117 + }, + { + "epoch": 29.419397116644824, + "grad_norm": 0.24155527353286743, + "learning_rate": 0.0006, + "loss": 3.7897872924804688, + "step": 2118 + }, + { + "epoch": 29.433377020532983, + "grad_norm": 0.2610265016555786, + "learning_rate": 0.0006, + "loss": 3.7867324352264404, + "step": 2119 + }, + { + "epoch": 29.447356924421143, + "grad_norm": 0.2809581160545349, + "learning_rate": 0.0006, + "loss": 3.783799648284912, + "step": 2120 + }, + { + "epoch": 29.461336828309307, + "grad_norm": 0.2621572017669678, + "learning_rate": 0.0006, + "loss": 3.7778549194335938, + "step": 2121 + }, + { + "epoch": 29.475316732197467, + "grad_norm": 0.26002970337867737, + "learning_rate": 0.0006, + "loss": 3.787945508956909, + "step": 2122 + }, + { + "epoch": 29.489296636085626, + "grad_norm": 0.24866686761379242, + "learning_rate": 0.0006, + "loss": 3.7406349182128906, + "step": 2123 + }, + { + "epoch": 29.503276539973786, + "grad_norm": 0.25588324666023254, + "learning_rate": 0.0006, + "loss": 3.785625457763672, + "step": 2124 + }, + { + "epoch": 29.51725644386195, + "grad_norm": 0.24724243581295013, + "learning_rate": 0.0006, + "loss": 3.7581701278686523, + "step": 2125 + }, + { + "epoch": 29.53123634775011, + "grad_norm": 0.23544734716415405, + "learning_rate": 0.0006, + "loss": 3.8163957595825195, + "step": 2126 + }, + { + "epoch": 29.54521625163827, + "grad_norm": 0.2108801156282425, + "learning_rate": 0.0006, + "loss": 3.7881739139556885, + "step": 2127 + }, + { + "epoch": 29.55919615552643, + "grad_norm": 0.20459668338298798, + "learning_rate": 0.0006, + "loss": 3.7641284465789795, + "step": 2128 + }, + { + "epoch": 29.573176059414592, + "grad_norm": 0.24020728468894958, + "learning_rate": 0.0006, + "loss": 3.7748730182647705, + "step": 2129 + }, + { + "epoch": 29.587155963302752, + "grad_norm": 0.256273478269577, + "learning_rate": 0.0006, + "loss": 3.8076486587524414, + "step": 2130 + }, + { + "epoch": 29.601135867190912, + "grad_norm": 0.23295973241329193, + "learning_rate": 0.0006, + "loss": 3.7687063217163086, + "step": 2131 + }, + { + "epoch": 29.615115771079076, + "grad_norm": 0.21554847061634064, + "learning_rate": 0.0006, + "loss": 3.781867027282715, + "step": 2132 + }, + { + "epoch": 29.629095674967235, + "grad_norm": 0.20645774900913239, + "learning_rate": 0.0006, + "loss": 3.7813425064086914, + "step": 2133 + }, + { + "epoch": 29.643075578855395, + "grad_norm": 0.2018265724182129, + "learning_rate": 0.0006, + "loss": 3.772895574569702, + "step": 2134 + }, + { + "epoch": 29.657055482743555, + "grad_norm": 0.20170100033283234, + "learning_rate": 0.0006, + "loss": 3.7819175720214844, + "step": 2135 + }, + { + "epoch": 29.67103538663172, + "grad_norm": 0.22640688717365265, + "learning_rate": 0.0006, + "loss": 3.7999017238616943, + "step": 2136 + }, + { + "epoch": 29.68501529051988, + "grad_norm": 0.23747675120830536, + "learning_rate": 0.0006, + "loss": 3.804999828338623, + "step": 2137 + }, + { + "epoch": 29.698995194408038, + "grad_norm": 0.20005857944488525, + "learning_rate": 0.0006, + "loss": 3.7815160751342773, + "step": 2138 + }, + { + "epoch": 29.712975098296198, + "grad_norm": 0.17901667952537537, + "learning_rate": 0.0006, + "loss": 3.7898688316345215, + "step": 2139 + }, + { + "epoch": 29.72695500218436, + "grad_norm": 0.1890905797481537, + "learning_rate": 0.0006, + "loss": 3.8001184463500977, + "step": 2140 + }, + { + "epoch": 29.74093490607252, + "grad_norm": 0.19565847516059875, + "learning_rate": 0.0006, + "loss": 3.7522482872009277, + "step": 2141 + }, + { + "epoch": 29.75491480996068, + "grad_norm": 0.19429196417331696, + "learning_rate": 0.0006, + "loss": 3.768972158432007, + "step": 2142 + }, + { + "epoch": 29.76889471384884, + "grad_norm": 0.23846636712551117, + "learning_rate": 0.0006, + "loss": 3.765216112136841, + "step": 2143 + }, + { + "epoch": 29.782874617737004, + "grad_norm": 0.23820780217647552, + "learning_rate": 0.0006, + "loss": 3.8027703762054443, + "step": 2144 + }, + { + "epoch": 29.796854521625164, + "grad_norm": 0.21104726195335388, + "learning_rate": 0.0006, + "loss": 3.7682833671569824, + "step": 2145 + }, + { + "epoch": 29.810834425513324, + "grad_norm": 0.1911051720380783, + "learning_rate": 0.0006, + "loss": 3.781782627105713, + "step": 2146 + }, + { + "epoch": 29.824814329401484, + "grad_norm": 0.18881288170814514, + "learning_rate": 0.0006, + "loss": 3.7703428268432617, + "step": 2147 + }, + { + "epoch": 29.838794233289647, + "grad_norm": 0.18292994797229767, + "learning_rate": 0.0006, + "loss": 3.769176721572876, + "step": 2148 + }, + { + "epoch": 29.852774137177807, + "grad_norm": 0.1777714639902115, + "learning_rate": 0.0006, + "loss": 3.7488298416137695, + "step": 2149 + }, + { + "epoch": 29.866754041065967, + "grad_norm": 0.2037898749113083, + "learning_rate": 0.0006, + "loss": 3.804396390914917, + "step": 2150 + }, + { + "epoch": 29.88073394495413, + "grad_norm": 0.2121828943490982, + "learning_rate": 0.0006, + "loss": 3.75870943069458, + "step": 2151 + }, + { + "epoch": 29.89471384884229, + "grad_norm": 0.23231184482574463, + "learning_rate": 0.0006, + "loss": 3.80178165435791, + "step": 2152 + }, + { + "epoch": 29.90869375273045, + "grad_norm": 0.24045611917972565, + "learning_rate": 0.0006, + "loss": 3.7690834999084473, + "step": 2153 + }, + { + "epoch": 29.92267365661861, + "grad_norm": 0.19830496609210968, + "learning_rate": 0.0006, + "loss": 3.764401912689209, + "step": 2154 + }, + { + "epoch": 29.936653560506773, + "grad_norm": 0.17704227566719055, + "learning_rate": 0.0006, + "loss": 3.7634594440460205, + "step": 2155 + }, + { + "epoch": 29.950633464394933, + "grad_norm": 0.17783164978027344, + "learning_rate": 0.0006, + "loss": 3.7856998443603516, + "step": 2156 + }, + { + "epoch": 29.964613368283093, + "grad_norm": 0.19684971868991852, + "learning_rate": 0.0006, + "loss": 3.805774211883545, + "step": 2157 + }, + { + "epoch": 29.978593272171253, + "grad_norm": 0.21662312746047974, + "learning_rate": 0.0006, + "loss": 3.757896661758423, + "step": 2158 + }, + { + "epoch": 29.992573176059416, + "grad_norm": 0.22000661492347717, + "learning_rate": 0.0006, + "loss": 3.7747678756713867, + "step": 2159 + }, + { + "epoch": 30.0, + "grad_norm": 0.21501901745796204, + "learning_rate": 0.0006, + "loss": 3.785585880279541, + "step": 2160 + }, + { + "epoch": 30.0, + "eval_loss": 4.034003734588623, + "eval_runtime": 44.9097, + "eval_samples_per_second": 54.376, + "eval_steps_per_second": 3.407, + "step": 2160 + }, + { + "epoch": 30.01397990388816, + "grad_norm": 0.19710904359817505, + "learning_rate": 0.0006, + "loss": 3.756235122680664, + "step": 2161 + }, + { + "epoch": 30.027959807776323, + "grad_norm": 0.19829736649990082, + "learning_rate": 0.0006, + "loss": 3.734067916870117, + "step": 2162 + }, + { + "epoch": 30.041939711664483, + "grad_norm": 0.21622520685195923, + "learning_rate": 0.0006, + "loss": 3.7329437732696533, + "step": 2163 + }, + { + "epoch": 30.055919615552643, + "grad_norm": 0.22544652223587036, + "learning_rate": 0.0006, + "loss": 3.748716354370117, + "step": 2164 + }, + { + "epoch": 30.069899519440803, + "grad_norm": 0.21098364889621735, + "learning_rate": 0.0006, + "loss": 3.779047727584839, + "step": 2165 + }, + { + "epoch": 30.083879423328966, + "grad_norm": 0.21309930086135864, + "learning_rate": 0.0006, + "loss": 3.7690274715423584, + "step": 2166 + }, + { + "epoch": 30.097859327217126, + "grad_norm": 0.23025690019130707, + "learning_rate": 0.0006, + "loss": 3.7500953674316406, + "step": 2167 + }, + { + "epoch": 30.111839231105286, + "grad_norm": 0.25107935070991516, + "learning_rate": 0.0006, + "loss": 3.745492458343506, + "step": 2168 + }, + { + "epoch": 30.125819134993446, + "grad_norm": 0.29873573780059814, + "learning_rate": 0.0006, + "loss": 3.759793758392334, + "step": 2169 + }, + { + "epoch": 30.13979903888161, + "grad_norm": 0.2810286283493042, + "learning_rate": 0.0006, + "loss": 3.772998809814453, + "step": 2170 + }, + { + "epoch": 30.15377894276977, + "grad_norm": 0.2102176398038864, + "learning_rate": 0.0006, + "loss": 3.740170955657959, + "step": 2171 + }, + { + "epoch": 30.16775884665793, + "grad_norm": 0.24143251776695251, + "learning_rate": 0.0006, + "loss": 3.7317001819610596, + "step": 2172 + }, + { + "epoch": 30.18173875054609, + "grad_norm": 0.2643064558506012, + "learning_rate": 0.0006, + "loss": 3.773263692855835, + "step": 2173 + }, + { + "epoch": 30.195718654434252, + "grad_norm": 0.27571243047714233, + "learning_rate": 0.0006, + "loss": 3.7619900703430176, + "step": 2174 + }, + { + "epoch": 30.209698558322412, + "grad_norm": 0.25359588861465454, + "learning_rate": 0.0006, + "loss": 3.7608513832092285, + "step": 2175 + }, + { + "epoch": 30.22367846221057, + "grad_norm": 0.2500684857368469, + "learning_rate": 0.0006, + "loss": 3.75856614112854, + "step": 2176 + }, + { + "epoch": 30.23765836609873, + "grad_norm": 0.23100309073925018, + "learning_rate": 0.0006, + "loss": 3.749786853790283, + "step": 2177 + }, + { + "epoch": 30.251638269986895, + "grad_norm": 0.24384984374046326, + "learning_rate": 0.0006, + "loss": 3.762244701385498, + "step": 2178 + }, + { + "epoch": 30.265618173875055, + "grad_norm": 0.24593998491764069, + "learning_rate": 0.0006, + "loss": 3.754594326019287, + "step": 2179 + }, + { + "epoch": 30.279598077763215, + "grad_norm": 0.2529342770576477, + "learning_rate": 0.0006, + "loss": 3.7641053199768066, + "step": 2180 + }, + { + "epoch": 30.293577981651374, + "grad_norm": 0.25954094529151917, + "learning_rate": 0.0006, + "loss": 3.810336112976074, + "step": 2181 + }, + { + "epoch": 30.307557885539538, + "grad_norm": 0.2249951958656311, + "learning_rate": 0.0006, + "loss": 3.7542617321014404, + "step": 2182 + }, + { + "epoch": 30.321537789427698, + "grad_norm": 0.19795064628124237, + "learning_rate": 0.0006, + "loss": 3.7734434604644775, + "step": 2183 + }, + { + "epoch": 30.335517693315857, + "grad_norm": 0.20744608342647552, + "learning_rate": 0.0006, + "loss": 3.7816128730773926, + "step": 2184 + }, + { + "epoch": 30.34949759720402, + "grad_norm": 0.19988055527210236, + "learning_rate": 0.0006, + "loss": 3.7631936073303223, + "step": 2185 + }, + { + "epoch": 30.36347750109218, + "grad_norm": 0.22226445376873016, + "learning_rate": 0.0006, + "loss": 3.762910842895508, + "step": 2186 + }, + { + "epoch": 30.37745740498034, + "grad_norm": 0.21986067295074463, + "learning_rate": 0.0006, + "loss": 3.733893394470215, + "step": 2187 + }, + { + "epoch": 30.3914373088685, + "grad_norm": 0.2170228660106659, + "learning_rate": 0.0006, + "loss": 3.726433515548706, + "step": 2188 + }, + { + "epoch": 30.405417212756664, + "grad_norm": 0.2179550975561142, + "learning_rate": 0.0006, + "loss": 3.792311668395996, + "step": 2189 + }, + { + "epoch": 30.419397116644824, + "grad_norm": 0.208037331700325, + "learning_rate": 0.0006, + "loss": 3.774639129638672, + "step": 2190 + }, + { + "epoch": 30.433377020532983, + "grad_norm": 0.20745441317558289, + "learning_rate": 0.0006, + "loss": 3.776130199432373, + "step": 2191 + }, + { + "epoch": 30.447356924421143, + "grad_norm": 0.1988024264574051, + "learning_rate": 0.0006, + "loss": 3.7453784942626953, + "step": 2192 + }, + { + "epoch": 30.461336828309307, + "grad_norm": 0.194968581199646, + "learning_rate": 0.0006, + "loss": 3.764653205871582, + "step": 2193 + }, + { + "epoch": 30.475316732197467, + "grad_norm": 0.20658300817012787, + "learning_rate": 0.0006, + "loss": 3.796513080596924, + "step": 2194 + }, + { + "epoch": 30.489296636085626, + "grad_norm": 0.2123410701751709, + "learning_rate": 0.0006, + "loss": 3.7630836963653564, + "step": 2195 + }, + { + "epoch": 30.503276539973786, + "grad_norm": 0.20894059538841248, + "learning_rate": 0.0006, + "loss": 3.7265470027923584, + "step": 2196 + }, + { + "epoch": 30.51725644386195, + "grad_norm": 0.2016828954219818, + "learning_rate": 0.0006, + "loss": 3.8083386421203613, + "step": 2197 + }, + { + "epoch": 30.53123634775011, + "grad_norm": 0.19584205746650696, + "learning_rate": 0.0006, + "loss": 3.7492105960845947, + "step": 2198 + }, + { + "epoch": 30.54521625163827, + "grad_norm": 0.18635272979736328, + "learning_rate": 0.0006, + "loss": 3.711009979248047, + "step": 2199 + }, + { + "epoch": 30.55919615552643, + "grad_norm": 0.1920594871044159, + "learning_rate": 0.0006, + "loss": 3.760801315307617, + "step": 2200 + }, + { + "epoch": 30.573176059414592, + "grad_norm": 0.1978331208229065, + "learning_rate": 0.0006, + "loss": 3.780529022216797, + "step": 2201 + }, + { + "epoch": 30.587155963302752, + "grad_norm": 0.20076943933963776, + "learning_rate": 0.0006, + "loss": 3.7767038345336914, + "step": 2202 + }, + { + "epoch": 30.601135867190912, + "grad_norm": 0.2067444622516632, + "learning_rate": 0.0006, + "loss": 3.7607920169830322, + "step": 2203 + }, + { + "epoch": 30.615115771079076, + "grad_norm": 0.2081940472126007, + "learning_rate": 0.0006, + "loss": 3.741936206817627, + "step": 2204 + }, + { + "epoch": 30.629095674967235, + "grad_norm": 0.21212869882583618, + "learning_rate": 0.0006, + "loss": 3.7597827911376953, + "step": 2205 + }, + { + "epoch": 30.643075578855395, + "grad_norm": 0.21539026498794556, + "learning_rate": 0.0006, + "loss": 3.764646053314209, + "step": 2206 + }, + { + "epoch": 30.657055482743555, + "grad_norm": 0.19788387417793274, + "learning_rate": 0.0006, + "loss": 3.7535128593444824, + "step": 2207 + }, + { + "epoch": 30.67103538663172, + "grad_norm": 0.20757688581943512, + "learning_rate": 0.0006, + "loss": 3.7414169311523438, + "step": 2208 + }, + { + "epoch": 30.68501529051988, + "grad_norm": 0.199361652135849, + "learning_rate": 0.0006, + "loss": 3.7578506469726562, + "step": 2209 + }, + { + "epoch": 30.698995194408038, + "grad_norm": 0.1909894198179245, + "learning_rate": 0.0006, + "loss": 3.736250400543213, + "step": 2210 + }, + { + "epoch": 30.712975098296198, + "grad_norm": 0.19766664505004883, + "learning_rate": 0.0006, + "loss": 3.7435379028320312, + "step": 2211 + }, + { + "epoch": 30.72695500218436, + "grad_norm": 0.21857766807079315, + "learning_rate": 0.0006, + "loss": 3.7478690147399902, + "step": 2212 + }, + { + "epoch": 30.74093490607252, + "grad_norm": 0.22385898232460022, + "learning_rate": 0.0006, + "loss": 3.7522530555725098, + "step": 2213 + }, + { + "epoch": 30.75491480996068, + "grad_norm": 0.2329241931438446, + "learning_rate": 0.0006, + "loss": 3.7568247318267822, + "step": 2214 + }, + { + "epoch": 30.76889471384884, + "grad_norm": 0.2218400090932846, + "learning_rate": 0.0006, + "loss": 3.7662744522094727, + "step": 2215 + }, + { + "epoch": 30.782874617737004, + "grad_norm": 0.21350212395191193, + "learning_rate": 0.0006, + "loss": 3.7683777809143066, + "step": 2216 + }, + { + "epoch": 30.796854521625164, + "grad_norm": 0.22357074916362762, + "learning_rate": 0.0006, + "loss": 3.763437032699585, + "step": 2217 + }, + { + "epoch": 30.810834425513324, + "grad_norm": 0.22268560528755188, + "learning_rate": 0.0006, + "loss": 3.772836685180664, + "step": 2218 + }, + { + "epoch": 30.824814329401484, + "grad_norm": 0.2434026449918747, + "learning_rate": 0.0006, + "loss": 3.752986431121826, + "step": 2219 + }, + { + "epoch": 30.838794233289647, + "grad_norm": 0.2298414409160614, + "learning_rate": 0.0006, + "loss": 3.7837061882019043, + "step": 2220 + }, + { + "epoch": 30.852774137177807, + "grad_norm": 0.227672278881073, + "learning_rate": 0.0006, + "loss": 3.746065378189087, + "step": 2221 + }, + { + "epoch": 30.866754041065967, + "grad_norm": 0.2562827169895172, + "learning_rate": 0.0006, + "loss": 3.7741947174072266, + "step": 2222 + }, + { + "epoch": 30.88073394495413, + "grad_norm": 0.23657815158367157, + "learning_rate": 0.0006, + "loss": 3.746457099914551, + "step": 2223 + }, + { + "epoch": 30.89471384884229, + "grad_norm": 0.2158907800912857, + "learning_rate": 0.0006, + "loss": 3.7821710109710693, + "step": 2224 + }, + { + "epoch": 30.90869375273045, + "grad_norm": 0.22501254081726074, + "learning_rate": 0.0006, + "loss": 3.7528274059295654, + "step": 2225 + }, + { + "epoch": 30.92267365661861, + "grad_norm": 0.20252224802970886, + "learning_rate": 0.0006, + "loss": 3.749418258666992, + "step": 2226 + }, + { + "epoch": 30.936653560506773, + "grad_norm": 0.2067883312702179, + "learning_rate": 0.0006, + "loss": 3.7560606002807617, + "step": 2227 + }, + { + "epoch": 30.950633464394933, + "grad_norm": 0.23104053735733032, + "learning_rate": 0.0006, + "loss": 3.7883846759796143, + "step": 2228 + }, + { + "epoch": 30.964613368283093, + "grad_norm": 0.21476604044437408, + "learning_rate": 0.0006, + "loss": 3.7976977825164795, + "step": 2229 + }, + { + "epoch": 30.978593272171253, + "grad_norm": 0.2130427062511444, + "learning_rate": 0.0006, + "loss": 3.7429304122924805, + "step": 2230 + }, + { + "epoch": 30.992573176059416, + "grad_norm": 0.2047216147184372, + "learning_rate": 0.0006, + "loss": 3.7669787406921387, + "step": 2231 + }, + { + "epoch": 31.0, + "grad_norm": 0.22254081070423126, + "learning_rate": 0.0006, + "loss": 3.7794251441955566, + "step": 2232 + }, + { + "epoch": 31.0, + "eval_loss": 4.039162635803223, + "eval_runtime": 44.9069, + "eval_samples_per_second": 54.379, + "eval_steps_per_second": 3.407, + "step": 2232 + }, + { + "epoch": 31.01397990388816, + "grad_norm": 0.2278132289648056, + "learning_rate": 0.0006, + "loss": 3.7363929748535156, + "step": 2233 + }, + { + "epoch": 31.027959807776323, + "grad_norm": 0.2377072274684906, + "learning_rate": 0.0006, + "loss": 3.72847318649292, + "step": 2234 + }, + { + "epoch": 31.041939711664483, + "grad_norm": 0.23790542781352997, + "learning_rate": 0.0006, + "loss": 3.767193078994751, + "step": 2235 + }, + { + "epoch": 31.055919615552643, + "grad_norm": 0.2587272524833679, + "learning_rate": 0.0006, + "loss": 3.7564640045166016, + "step": 2236 + }, + { + "epoch": 31.069899519440803, + "grad_norm": 0.27550312876701355, + "learning_rate": 0.0006, + "loss": 3.727578639984131, + "step": 2237 + }, + { + "epoch": 31.083879423328966, + "grad_norm": 0.2488662451505661, + "learning_rate": 0.0006, + "loss": 3.7420730590820312, + "step": 2238 + }, + { + "epoch": 31.097859327217126, + "grad_norm": 0.22699029743671417, + "learning_rate": 0.0006, + "loss": 3.7323155403137207, + "step": 2239 + }, + { + "epoch": 31.111839231105286, + "grad_norm": 0.23360148072242737, + "learning_rate": 0.0006, + "loss": 3.719024181365967, + "step": 2240 + }, + { + "epoch": 31.125819134993446, + "grad_norm": 0.24322988092899323, + "learning_rate": 0.0006, + "loss": 3.74485445022583, + "step": 2241 + }, + { + "epoch": 31.13979903888161, + "grad_norm": 0.2474174052476883, + "learning_rate": 0.0006, + "loss": 3.746826171875, + "step": 2242 + }, + { + "epoch": 31.15377894276977, + "grad_norm": 0.2417406439781189, + "learning_rate": 0.0006, + "loss": 3.7285032272338867, + "step": 2243 + }, + { + "epoch": 31.16775884665793, + "grad_norm": 0.2390318512916565, + "learning_rate": 0.0006, + "loss": 3.7464442253112793, + "step": 2244 + }, + { + "epoch": 31.18173875054609, + "grad_norm": 0.21819323301315308, + "learning_rate": 0.0006, + "loss": 3.735110282897949, + "step": 2245 + }, + { + "epoch": 31.195718654434252, + "grad_norm": 0.21953554451465607, + "learning_rate": 0.0006, + "loss": 3.7270030975341797, + "step": 2246 + }, + { + "epoch": 31.209698558322412, + "grad_norm": 0.1930384635925293, + "learning_rate": 0.0006, + "loss": 3.7519941329956055, + "step": 2247 + }, + { + "epoch": 31.22367846221057, + "grad_norm": 0.19799190759658813, + "learning_rate": 0.0006, + "loss": 3.7428221702575684, + "step": 2248 + }, + { + "epoch": 31.23765836609873, + "grad_norm": 0.20948201417922974, + "learning_rate": 0.0006, + "loss": 3.733120918273926, + "step": 2249 + }, + { + "epoch": 31.251638269986895, + "grad_norm": 0.23768769204616547, + "learning_rate": 0.0006, + "loss": 3.7059035301208496, + "step": 2250 + }, + { + "epoch": 31.265618173875055, + "grad_norm": 0.2808842957019806, + "learning_rate": 0.0006, + "loss": 3.7245287895202637, + "step": 2251 + }, + { + "epoch": 31.279598077763215, + "grad_norm": 0.27633124589920044, + "learning_rate": 0.0006, + "loss": 3.7436366081237793, + "step": 2252 + }, + { + "epoch": 31.293577981651374, + "grad_norm": 0.24137185513973236, + "learning_rate": 0.0006, + "loss": 3.7651219367980957, + "step": 2253 + }, + { + "epoch": 31.307557885539538, + "grad_norm": 0.22056810557842255, + "learning_rate": 0.0006, + "loss": 3.7417521476745605, + "step": 2254 + }, + { + "epoch": 31.321537789427698, + "grad_norm": 0.20137323439121246, + "learning_rate": 0.0006, + "loss": 3.750187397003174, + "step": 2255 + }, + { + "epoch": 31.335517693315857, + "grad_norm": 0.2142433375120163, + "learning_rate": 0.0006, + "loss": 3.7292675971984863, + "step": 2256 + }, + { + "epoch": 31.34949759720402, + "grad_norm": 0.21193967759609222, + "learning_rate": 0.0006, + "loss": 3.7459473609924316, + "step": 2257 + }, + { + "epoch": 31.36347750109218, + "grad_norm": 0.21418534219264984, + "learning_rate": 0.0006, + "loss": 3.754359722137451, + "step": 2258 + }, + { + "epoch": 31.37745740498034, + "grad_norm": 0.23507359623908997, + "learning_rate": 0.0006, + "loss": 3.763413906097412, + "step": 2259 + }, + { + "epoch": 31.3914373088685, + "grad_norm": 0.20393887162208557, + "learning_rate": 0.0006, + "loss": 3.73878812789917, + "step": 2260 + }, + { + "epoch": 31.405417212756664, + "grad_norm": 0.21752159297466278, + "learning_rate": 0.0006, + "loss": 3.750549793243408, + "step": 2261 + }, + { + "epoch": 31.419397116644824, + "grad_norm": 0.22629529237747192, + "learning_rate": 0.0006, + "loss": 3.7791430950164795, + "step": 2262 + }, + { + "epoch": 31.433377020532983, + "grad_norm": 0.2114613950252533, + "learning_rate": 0.0006, + "loss": 3.7709264755249023, + "step": 2263 + }, + { + "epoch": 31.447356924421143, + "grad_norm": 0.23241667449474335, + "learning_rate": 0.0006, + "loss": 3.745750665664673, + "step": 2264 + }, + { + "epoch": 31.461336828309307, + "grad_norm": 0.2434246987104416, + "learning_rate": 0.0006, + "loss": 3.769727945327759, + "step": 2265 + }, + { + "epoch": 31.475316732197467, + "grad_norm": 0.247820645570755, + "learning_rate": 0.0006, + "loss": 3.7528204917907715, + "step": 2266 + }, + { + "epoch": 31.489296636085626, + "grad_norm": 0.21287164092063904, + "learning_rate": 0.0006, + "loss": 3.728661060333252, + "step": 2267 + }, + { + "epoch": 31.503276539973786, + "grad_norm": 0.20983846485614777, + "learning_rate": 0.0006, + "loss": 3.7524428367614746, + "step": 2268 + }, + { + "epoch": 31.51725644386195, + "grad_norm": 0.23799288272857666, + "learning_rate": 0.0006, + "loss": 3.7276647090911865, + "step": 2269 + }, + { + "epoch": 31.53123634775011, + "grad_norm": 0.247065007686615, + "learning_rate": 0.0006, + "loss": 3.7506704330444336, + "step": 2270 + }, + { + "epoch": 31.54521625163827, + "grad_norm": 0.20670939981937408, + "learning_rate": 0.0006, + "loss": 3.71852445602417, + "step": 2271 + }, + { + "epoch": 31.55919615552643, + "grad_norm": 0.19463716447353363, + "learning_rate": 0.0006, + "loss": 3.732757568359375, + "step": 2272 + }, + { + "epoch": 31.573176059414592, + "grad_norm": 0.20368841290473938, + "learning_rate": 0.0006, + "loss": 3.746676445007324, + "step": 2273 + }, + { + "epoch": 31.587155963302752, + "grad_norm": 0.19691342115402222, + "learning_rate": 0.0006, + "loss": 3.7535760402679443, + "step": 2274 + }, + { + "epoch": 31.601135867190912, + "grad_norm": 0.2026553899049759, + "learning_rate": 0.0006, + "loss": 3.7406957149505615, + "step": 2275 + }, + { + "epoch": 31.615115771079076, + "grad_norm": 0.21494299173355103, + "learning_rate": 0.0006, + "loss": 3.735888957977295, + "step": 2276 + }, + { + "epoch": 31.629095674967235, + "grad_norm": 0.21644766628742218, + "learning_rate": 0.0006, + "loss": 3.723767042160034, + "step": 2277 + }, + { + "epoch": 31.643075578855395, + "grad_norm": 0.20087581872940063, + "learning_rate": 0.0006, + "loss": 3.7622008323669434, + "step": 2278 + }, + { + "epoch": 31.657055482743555, + "grad_norm": 0.1949695646762848, + "learning_rate": 0.0006, + "loss": 3.7726354598999023, + "step": 2279 + }, + { + "epoch": 31.67103538663172, + "grad_norm": 0.19120797514915466, + "learning_rate": 0.0006, + "loss": 3.7454679012298584, + "step": 2280 + }, + { + "epoch": 31.68501529051988, + "grad_norm": 0.19480115175247192, + "learning_rate": 0.0006, + "loss": 3.743934392929077, + "step": 2281 + }, + { + "epoch": 31.698995194408038, + "grad_norm": 0.1891610324382782, + "learning_rate": 0.0006, + "loss": 3.7724897861480713, + "step": 2282 + }, + { + "epoch": 31.712975098296198, + "grad_norm": 0.18533185124397278, + "learning_rate": 0.0006, + "loss": 3.7556838989257812, + "step": 2283 + }, + { + "epoch": 31.72695500218436, + "grad_norm": 0.20079447329044342, + "learning_rate": 0.0006, + "loss": 3.76758074760437, + "step": 2284 + }, + { + "epoch": 31.74093490607252, + "grad_norm": 0.2103433609008789, + "learning_rate": 0.0006, + "loss": 3.769477367401123, + "step": 2285 + }, + { + "epoch": 31.75491480996068, + "grad_norm": 0.21428923308849335, + "learning_rate": 0.0006, + "loss": 3.7317447662353516, + "step": 2286 + }, + { + "epoch": 31.76889471384884, + "grad_norm": 0.20154133439064026, + "learning_rate": 0.0006, + "loss": 3.749814987182617, + "step": 2287 + }, + { + "epoch": 31.782874617737004, + "grad_norm": 0.18998542428016663, + "learning_rate": 0.0006, + "loss": 3.7655510902404785, + "step": 2288 + }, + { + "epoch": 31.796854521625164, + "grad_norm": 0.2068665474653244, + "learning_rate": 0.0006, + "loss": 3.7375988960266113, + "step": 2289 + }, + { + "epoch": 31.810834425513324, + "grad_norm": 0.22979815304279327, + "learning_rate": 0.0006, + "loss": 3.728095531463623, + "step": 2290 + }, + { + "epoch": 31.824814329401484, + "grad_norm": 0.2378212958574295, + "learning_rate": 0.0006, + "loss": 3.73091459274292, + "step": 2291 + }, + { + "epoch": 31.838794233289647, + "grad_norm": 0.2353672832250595, + "learning_rate": 0.0006, + "loss": 3.7491769790649414, + "step": 2292 + }, + { + "epoch": 31.852774137177807, + "grad_norm": 0.22341586649417877, + "learning_rate": 0.0006, + "loss": 3.777111530303955, + "step": 2293 + }, + { + "epoch": 31.866754041065967, + "grad_norm": 0.20436930656433105, + "learning_rate": 0.0006, + "loss": 3.740997552871704, + "step": 2294 + }, + { + "epoch": 31.88073394495413, + "grad_norm": 0.20836040377616882, + "learning_rate": 0.0006, + "loss": 3.755582571029663, + "step": 2295 + }, + { + "epoch": 31.89471384884229, + "grad_norm": 0.2045193612575531, + "learning_rate": 0.0006, + "loss": 3.7583560943603516, + "step": 2296 + }, + { + "epoch": 31.90869375273045, + "grad_norm": 0.2025591880083084, + "learning_rate": 0.0006, + "loss": 3.773345470428467, + "step": 2297 + }, + { + "epoch": 31.92267365661861, + "grad_norm": 0.20309099555015564, + "learning_rate": 0.0006, + "loss": 3.7392163276672363, + "step": 2298 + }, + { + "epoch": 31.936653560506773, + "grad_norm": 0.2129351645708084, + "learning_rate": 0.0006, + "loss": 3.7801311016082764, + "step": 2299 + }, + { + "epoch": 31.950633464394933, + "grad_norm": 0.19950738549232483, + "learning_rate": 0.0006, + "loss": 3.779261589050293, + "step": 2300 + }, + { + "epoch": 31.964613368283093, + "grad_norm": 0.22837352752685547, + "learning_rate": 0.0006, + "loss": 3.782731294631958, + "step": 2301 + }, + { + "epoch": 31.978593272171253, + "grad_norm": 0.2576889097690582, + "learning_rate": 0.0006, + "loss": 3.7778096199035645, + "step": 2302 + }, + { + "epoch": 31.992573176059416, + "grad_norm": 0.2770138382911682, + "learning_rate": 0.0006, + "loss": 3.735755443572998, + "step": 2303 + }, + { + "epoch": 32.0, + "grad_norm": 0.2632865309715271, + "learning_rate": 0.0006, + "loss": 3.7562808990478516, + "step": 2304 + }, + { + "epoch": 32.0, + "eval_loss": 4.031628608703613, + "eval_runtime": 44.2115, + "eval_samples_per_second": 55.234, + "eval_steps_per_second": 3.461, + "step": 2304 + }, + { + "epoch": 32.01397990388816, + "grad_norm": 0.20234128832817078, + "learning_rate": 0.0006, + "loss": 3.734489917755127, + "step": 2305 + }, + { + "epoch": 32.02795980777632, + "grad_norm": 0.24983637034893036, + "learning_rate": 0.0006, + "loss": 3.7351019382476807, + "step": 2306 + }, + { + "epoch": 32.04193971166448, + "grad_norm": 0.27358478307724, + "learning_rate": 0.0006, + "loss": 3.708712100982666, + "step": 2307 + }, + { + "epoch": 32.05591961555265, + "grad_norm": 0.24693739414215088, + "learning_rate": 0.0006, + "loss": 3.731858491897583, + "step": 2308 + }, + { + "epoch": 32.0698995194408, + "grad_norm": 0.22751131653785706, + "learning_rate": 0.0006, + "loss": 3.7074670791625977, + "step": 2309 + }, + { + "epoch": 32.083879423328966, + "grad_norm": 0.23400720953941345, + "learning_rate": 0.0006, + "loss": 3.714092493057251, + "step": 2310 + }, + { + "epoch": 32.09785932721712, + "grad_norm": 0.20711684226989746, + "learning_rate": 0.0006, + "loss": 3.754727840423584, + "step": 2311 + }, + { + "epoch": 32.111839231105286, + "grad_norm": 0.21589399874210358, + "learning_rate": 0.0006, + "loss": 3.6953847408294678, + "step": 2312 + }, + { + "epoch": 32.12581913499345, + "grad_norm": 0.24575738608837128, + "learning_rate": 0.0006, + "loss": 3.7078802585601807, + "step": 2313 + }, + { + "epoch": 32.139799038881605, + "grad_norm": 0.23152033984661102, + "learning_rate": 0.0006, + "loss": 3.7402305603027344, + "step": 2314 + }, + { + "epoch": 32.15377894276977, + "grad_norm": 0.22639606893062592, + "learning_rate": 0.0006, + "loss": 3.7264223098754883, + "step": 2315 + }, + { + "epoch": 32.16775884665793, + "grad_norm": 0.24701760709285736, + "learning_rate": 0.0006, + "loss": 3.7497639656066895, + "step": 2316 + }, + { + "epoch": 32.18173875054609, + "grad_norm": 0.274832159280777, + "learning_rate": 0.0006, + "loss": 3.7557122707366943, + "step": 2317 + }, + { + "epoch": 32.19571865443425, + "grad_norm": 0.27472418546676636, + "learning_rate": 0.0006, + "loss": 3.6863393783569336, + "step": 2318 + }, + { + "epoch": 32.20969855832241, + "grad_norm": 0.2625530958175659, + "learning_rate": 0.0006, + "loss": 3.7203545570373535, + "step": 2319 + }, + { + "epoch": 32.22367846221057, + "grad_norm": 0.2576068341732025, + "learning_rate": 0.0006, + "loss": 3.734747886657715, + "step": 2320 + }, + { + "epoch": 32.237658366098735, + "grad_norm": 0.25946059823036194, + "learning_rate": 0.0006, + "loss": 3.7501730918884277, + "step": 2321 + }, + { + "epoch": 32.25163826998689, + "grad_norm": 0.2524135410785675, + "learning_rate": 0.0006, + "loss": 3.75177001953125, + "step": 2322 + }, + { + "epoch": 32.265618173875055, + "grad_norm": 0.2568551003932953, + "learning_rate": 0.0006, + "loss": 3.752450704574585, + "step": 2323 + }, + { + "epoch": 32.27959807776322, + "grad_norm": 0.2489749640226364, + "learning_rate": 0.0006, + "loss": 3.711735486984253, + "step": 2324 + }, + { + "epoch": 32.293577981651374, + "grad_norm": 0.2425498366355896, + "learning_rate": 0.0006, + "loss": 3.7004239559173584, + "step": 2325 + }, + { + "epoch": 32.30755788553954, + "grad_norm": 0.24359773099422455, + "learning_rate": 0.0006, + "loss": 3.733870029449463, + "step": 2326 + }, + { + "epoch": 32.3215377894277, + "grad_norm": 0.22314727306365967, + "learning_rate": 0.0006, + "loss": 3.699841022491455, + "step": 2327 + }, + { + "epoch": 32.33551769331586, + "grad_norm": 0.2047620266675949, + "learning_rate": 0.0006, + "loss": 3.732534170150757, + "step": 2328 + }, + { + "epoch": 32.34949759720402, + "grad_norm": 0.24393224716186523, + "learning_rate": 0.0006, + "loss": 3.7200770378112793, + "step": 2329 + }, + { + "epoch": 32.36347750109218, + "grad_norm": 0.23884256184101105, + "learning_rate": 0.0006, + "loss": 3.722318410873413, + "step": 2330 + }, + { + "epoch": 32.37745740498034, + "grad_norm": 0.23262189328670502, + "learning_rate": 0.0006, + "loss": 3.759033203125, + "step": 2331 + }, + { + "epoch": 32.391437308868504, + "grad_norm": 0.22542893886566162, + "learning_rate": 0.0006, + "loss": 3.729198694229126, + "step": 2332 + }, + { + "epoch": 32.40541721275666, + "grad_norm": 0.22479060292243958, + "learning_rate": 0.0006, + "loss": 3.7298169136047363, + "step": 2333 + }, + { + "epoch": 32.419397116644824, + "grad_norm": 0.21571804583072662, + "learning_rate": 0.0006, + "loss": 3.699937343597412, + "step": 2334 + }, + { + "epoch": 32.43337702053299, + "grad_norm": 0.20804545283317566, + "learning_rate": 0.0006, + "loss": 3.7495696544647217, + "step": 2335 + }, + { + "epoch": 32.44735692442114, + "grad_norm": 0.22751706838607788, + "learning_rate": 0.0006, + "loss": 3.7369821071624756, + "step": 2336 + }, + { + "epoch": 32.46133682830931, + "grad_norm": 0.2326795756816864, + "learning_rate": 0.0006, + "loss": 3.7636334896087646, + "step": 2337 + }, + { + "epoch": 32.47531673219746, + "grad_norm": 0.19971159100532532, + "learning_rate": 0.0006, + "loss": 3.72151517868042, + "step": 2338 + }, + { + "epoch": 32.489296636085626, + "grad_norm": 0.21078036725521088, + "learning_rate": 0.0006, + "loss": 3.7050065994262695, + "step": 2339 + }, + { + "epoch": 32.50327653997379, + "grad_norm": 0.22198088467121124, + "learning_rate": 0.0006, + "loss": 3.7654409408569336, + "step": 2340 + }, + { + "epoch": 32.517256443861946, + "grad_norm": 0.20995207130908966, + "learning_rate": 0.0006, + "loss": 3.7516250610351562, + "step": 2341 + }, + { + "epoch": 32.53123634775011, + "grad_norm": 0.20757141709327698, + "learning_rate": 0.0006, + "loss": 3.7412633895874023, + "step": 2342 + }, + { + "epoch": 32.54521625163827, + "grad_norm": 0.20053881406784058, + "learning_rate": 0.0006, + "loss": 3.7477493286132812, + "step": 2343 + }, + { + "epoch": 32.55919615552643, + "grad_norm": 0.20223091542720795, + "learning_rate": 0.0006, + "loss": 3.7149064540863037, + "step": 2344 + }, + { + "epoch": 32.57317605941459, + "grad_norm": 0.20179468393325806, + "learning_rate": 0.0006, + "loss": 3.70635724067688, + "step": 2345 + }, + { + "epoch": 32.58715596330275, + "grad_norm": 0.19670480489730835, + "learning_rate": 0.0006, + "loss": 3.7276744842529297, + "step": 2346 + }, + { + "epoch": 32.60113586719091, + "grad_norm": 0.1992012858390808, + "learning_rate": 0.0006, + "loss": 3.7659356594085693, + "step": 2347 + }, + { + "epoch": 32.615115771079076, + "grad_norm": 0.20124201476573944, + "learning_rate": 0.0006, + "loss": 3.722212791442871, + "step": 2348 + }, + { + "epoch": 32.62909567496723, + "grad_norm": 0.21972708404064178, + "learning_rate": 0.0006, + "loss": 3.751830577850342, + "step": 2349 + }, + { + "epoch": 32.643075578855395, + "grad_norm": 0.20454947650432587, + "learning_rate": 0.0006, + "loss": 3.7196669578552246, + "step": 2350 + }, + { + "epoch": 32.65705548274356, + "grad_norm": 0.1783330887556076, + "learning_rate": 0.0006, + "loss": 3.721461772918701, + "step": 2351 + }, + { + "epoch": 32.671035386631715, + "grad_norm": 0.2027900367975235, + "learning_rate": 0.0006, + "loss": 3.753718614578247, + "step": 2352 + }, + { + "epoch": 32.68501529051988, + "grad_norm": 0.21232381463050842, + "learning_rate": 0.0006, + "loss": 3.732736349105835, + "step": 2353 + }, + { + "epoch": 32.69899519440804, + "grad_norm": 0.2214568555355072, + "learning_rate": 0.0006, + "loss": 3.7250165939331055, + "step": 2354 + }, + { + "epoch": 32.7129750982962, + "grad_norm": 0.2626485228538513, + "learning_rate": 0.0006, + "loss": 3.72263503074646, + "step": 2355 + }, + { + "epoch": 32.72695500218436, + "grad_norm": 0.30096277594566345, + "learning_rate": 0.0006, + "loss": 3.7599854469299316, + "step": 2356 + }, + { + "epoch": 32.74093490607252, + "grad_norm": 0.3374342620372772, + "learning_rate": 0.0006, + "loss": 3.7493844032287598, + "step": 2357 + }, + { + "epoch": 32.75491480996068, + "grad_norm": 0.3051377534866333, + "learning_rate": 0.0006, + "loss": 3.7515692710876465, + "step": 2358 + }, + { + "epoch": 32.768894713848844, + "grad_norm": 0.2130587249994278, + "learning_rate": 0.0006, + "loss": 3.751307964324951, + "step": 2359 + }, + { + "epoch": 32.782874617737, + "grad_norm": 0.25198230147361755, + "learning_rate": 0.0006, + "loss": 3.7500064373016357, + "step": 2360 + }, + { + "epoch": 32.796854521625164, + "grad_norm": 0.27613863348960876, + "learning_rate": 0.0006, + "loss": 3.7257039546966553, + "step": 2361 + }, + { + "epoch": 32.81083442551333, + "grad_norm": 0.23749367892742157, + "learning_rate": 0.0006, + "loss": 3.778343439102173, + "step": 2362 + }, + { + "epoch": 32.824814329401484, + "grad_norm": 0.2063702642917633, + "learning_rate": 0.0006, + "loss": 3.7493772506713867, + "step": 2363 + }, + { + "epoch": 32.83879423328965, + "grad_norm": 0.21169374883174896, + "learning_rate": 0.0006, + "loss": 3.722567081451416, + "step": 2364 + }, + { + "epoch": 32.8527741371778, + "grad_norm": 0.23291490972042084, + "learning_rate": 0.0006, + "loss": 3.7555532455444336, + "step": 2365 + }, + { + "epoch": 32.86675404106597, + "grad_norm": 0.21486155688762665, + "learning_rate": 0.0006, + "loss": 3.7401528358459473, + "step": 2366 + }, + { + "epoch": 32.88073394495413, + "grad_norm": 0.2296247035264969, + "learning_rate": 0.0006, + "loss": 3.7867965698242188, + "step": 2367 + }, + { + "epoch": 32.89471384884229, + "grad_norm": 0.2335108071565628, + "learning_rate": 0.0006, + "loss": 3.768036365509033, + "step": 2368 + }, + { + "epoch": 32.90869375273045, + "grad_norm": 0.23921863734722137, + "learning_rate": 0.0006, + "loss": 3.725252151489258, + "step": 2369 + }, + { + "epoch": 32.92267365661861, + "grad_norm": 0.20303526520729065, + "learning_rate": 0.0006, + "loss": 3.7806248664855957, + "step": 2370 + }, + { + "epoch": 32.93665356050677, + "grad_norm": 0.19293150305747986, + "learning_rate": 0.0006, + "loss": 3.759281873703003, + "step": 2371 + }, + { + "epoch": 32.95063346439493, + "grad_norm": 0.20609107613563538, + "learning_rate": 0.0006, + "loss": 3.764190196990967, + "step": 2372 + }, + { + "epoch": 32.964613368283096, + "grad_norm": 0.2014189213514328, + "learning_rate": 0.0006, + "loss": 3.7365214824676514, + "step": 2373 + }, + { + "epoch": 32.97859327217125, + "grad_norm": 0.22045451402664185, + "learning_rate": 0.0006, + "loss": 3.7435812950134277, + "step": 2374 + }, + { + "epoch": 32.992573176059416, + "grad_norm": 0.24228639900684357, + "learning_rate": 0.0006, + "loss": 3.751309394836426, + "step": 2375 + }, + { + "epoch": 33.0, + "grad_norm": 0.2645106613636017, + "learning_rate": 0.0006, + "loss": 3.7629928588867188, + "step": 2376 + }, + { + "epoch": 33.0, + "eval_loss": 4.026789665222168, + "eval_runtime": 44.9957, + "eval_samples_per_second": 54.272, + "eval_steps_per_second": 3.4, + "step": 2376 + }, + { + "epoch": 33.01397990388816, + "grad_norm": 0.21402551233768463, + "learning_rate": 0.0006, + "loss": 3.72019100189209, + "step": 2377 + }, + { + "epoch": 33.02795980777632, + "grad_norm": 0.23886585235595703, + "learning_rate": 0.0006, + "loss": 3.687084674835205, + "step": 2378 + }, + { + "epoch": 33.04193971166448, + "grad_norm": 0.29936572909355164, + "learning_rate": 0.0006, + "loss": 3.697310447692871, + "step": 2379 + }, + { + "epoch": 33.05591961555265, + "grad_norm": 0.30007585883140564, + "learning_rate": 0.0006, + "loss": 3.6913352012634277, + "step": 2380 + }, + { + "epoch": 33.0698995194408, + "grad_norm": 0.26594656705856323, + "learning_rate": 0.0006, + "loss": 3.740802526473999, + "step": 2381 + }, + { + "epoch": 33.083879423328966, + "grad_norm": 0.2658730447292328, + "learning_rate": 0.0006, + "loss": 3.692746162414551, + "step": 2382 + }, + { + "epoch": 33.09785932721712, + "grad_norm": 0.26755523681640625, + "learning_rate": 0.0006, + "loss": 3.7534420490264893, + "step": 2383 + }, + { + "epoch": 33.111839231105286, + "grad_norm": 0.23070940375328064, + "learning_rate": 0.0006, + "loss": 3.717876672744751, + "step": 2384 + }, + { + "epoch": 33.12581913499345, + "grad_norm": 0.2476235181093216, + "learning_rate": 0.0006, + "loss": 3.7072248458862305, + "step": 2385 + }, + { + "epoch": 33.139799038881605, + "grad_norm": 0.2454477846622467, + "learning_rate": 0.0006, + "loss": 3.729762077331543, + "step": 2386 + }, + { + "epoch": 33.15377894276977, + "grad_norm": 0.24090935289859772, + "learning_rate": 0.0006, + "loss": 3.721374988555908, + "step": 2387 + }, + { + "epoch": 33.16775884665793, + "grad_norm": 0.2440263032913208, + "learning_rate": 0.0006, + "loss": 3.730433464050293, + "step": 2388 + }, + { + "epoch": 33.18173875054609, + "grad_norm": 0.21699118614196777, + "learning_rate": 0.0006, + "loss": 3.724730968475342, + "step": 2389 + }, + { + "epoch": 33.19571865443425, + "grad_norm": 0.2302001267671585, + "learning_rate": 0.0006, + "loss": 3.69376277923584, + "step": 2390 + }, + { + "epoch": 33.20969855832241, + "grad_norm": 0.24707409739494324, + "learning_rate": 0.0006, + "loss": 3.705653667449951, + "step": 2391 + }, + { + "epoch": 33.22367846221057, + "grad_norm": 0.22896641492843628, + "learning_rate": 0.0006, + "loss": 3.747000217437744, + "step": 2392 + }, + { + "epoch": 33.237658366098735, + "grad_norm": 0.2278730720281601, + "learning_rate": 0.0006, + "loss": 3.733464241027832, + "step": 2393 + }, + { + "epoch": 33.25163826998689, + "grad_norm": 0.23909862339496613, + "learning_rate": 0.0006, + "loss": 3.733661413192749, + "step": 2394 + }, + { + "epoch": 33.265618173875055, + "grad_norm": 0.2349950075149536, + "learning_rate": 0.0006, + "loss": 3.7337965965270996, + "step": 2395 + }, + { + "epoch": 33.27959807776322, + "grad_norm": 0.22655968368053436, + "learning_rate": 0.0006, + "loss": 3.70503306388855, + "step": 2396 + }, + { + "epoch": 33.293577981651374, + "grad_norm": 0.22167043387889862, + "learning_rate": 0.0006, + "loss": 3.738797903060913, + "step": 2397 + }, + { + "epoch": 33.30755788553954, + "grad_norm": 0.2278883010149002, + "learning_rate": 0.0006, + "loss": 3.712550640106201, + "step": 2398 + }, + { + "epoch": 33.3215377894277, + "grad_norm": 0.2220565229654312, + "learning_rate": 0.0006, + "loss": 3.7278006076812744, + "step": 2399 + }, + { + "epoch": 33.33551769331586, + "grad_norm": 0.21888740360736847, + "learning_rate": 0.0006, + "loss": 3.72243595123291, + "step": 2400 + }, + { + "epoch": 33.34949759720402, + "grad_norm": 0.21587581932544708, + "learning_rate": 0.0006, + "loss": 3.7177581787109375, + "step": 2401 + }, + { + "epoch": 33.36347750109218, + "grad_norm": 0.1923578530550003, + "learning_rate": 0.0006, + "loss": 3.711294651031494, + "step": 2402 + }, + { + "epoch": 33.37745740498034, + "grad_norm": 0.1994934380054474, + "learning_rate": 0.0006, + "loss": 3.762061595916748, + "step": 2403 + }, + { + "epoch": 33.391437308868504, + "grad_norm": 0.20074427127838135, + "learning_rate": 0.0006, + "loss": 3.708559036254883, + "step": 2404 + }, + { + "epoch": 33.40541721275666, + "grad_norm": 0.21349482238292694, + "learning_rate": 0.0006, + "loss": 3.7089147567749023, + "step": 2405 + }, + { + "epoch": 33.419397116644824, + "grad_norm": 0.25523608922958374, + "learning_rate": 0.0006, + "loss": 3.7241058349609375, + "step": 2406 + }, + { + "epoch": 33.43337702053299, + "grad_norm": 0.27654796838760376, + "learning_rate": 0.0006, + "loss": 3.723618984222412, + "step": 2407 + }, + { + "epoch": 33.44735692442114, + "grad_norm": 0.2651479244232178, + "learning_rate": 0.0006, + "loss": 3.7367782592773438, + "step": 2408 + }, + { + "epoch": 33.46133682830931, + "grad_norm": 0.23403556644916534, + "learning_rate": 0.0006, + "loss": 3.7198312282562256, + "step": 2409 + }, + { + "epoch": 33.47531673219746, + "grad_norm": 0.20970726013183594, + "learning_rate": 0.0006, + "loss": 3.7088186740875244, + "step": 2410 + }, + { + "epoch": 33.489296636085626, + "grad_norm": 0.18532544374465942, + "learning_rate": 0.0006, + "loss": 3.7162208557128906, + "step": 2411 + }, + { + "epoch": 33.50327653997379, + "grad_norm": 0.19590279459953308, + "learning_rate": 0.0006, + "loss": 3.766357898712158, + "step": 2412 + }, + { + "epoch": 33.517256443861946, + "grad_norm": 0.203349307179451, + "learning_rate": 0.0006, + "loss": 3.732177257537842, + "step": 2413 + }, + { + "epoch": 33.53123634775011, + "grad_norm": 0.2015952616930008, + "learning_rate": 0.0006, + "loss": 3.741609573364258, + "step": 2414 + }, + { + "epoch": 33.54521625163827, + "grad_norm": 0.20024161040782928, + "learning_rate": 0.0006, + "loss": 3.6894431114196777, + "step": 2415 + }, + { + "epoch": 33.55919615552643, + "grad_norm": 0.20932617783546448, + "learning_rate": 0.0006, + "loss": 3.721979856491089, + "step": 2416 + }, + { + "epoch": 33.57317605941459, + "grad_norm": 0.22069773077964783, + "learning_rate": 0.0006, + "loss": 3.712203025817871, + "step": 2417 + }, + { + "epoch": 33.58715596330275, + "grad_norm": 0.22341343760490417, + "learning_rate": 0.0006, + "loss": 3.7469263076782227, + "step": 2418 + }, + { + "epoch": 33.60113586719091, + "grad_norm": 0.21758507192134857, + "learning_rate": 0.0006, + "loss": 3.721778392791748, + "step": 2419 + }, + { + "epoch": 33.615115771079076, + "grad_norm": 0.20480088889598846, + "learning_rate": 0.0006, + "loss": 3.743570327758789, + "step": 2420 + }, + { + "epoch": 33.62909567496723, + "grad_norm": 0.23068399727344513, + "learning_rate": 0.0006, + "loss": 3.7203001976013184, + "step": 2421 + }, + { + "epoch": 33.643075578855395, + "grad_norm": 0.2526263892650604, + "learning_rate": 0.0006, + "loss": 3.7336440086364746, + "step": 2422 + }, + { + "epoch": 33.65705548274356, + "grad_norm": 0.218627467751503, + "learning_rate": 0.0006, + "loss": 3.730762243270874, + "step": 2423 + }, + { + "epoch": 33.671035386631715, + "grad_norm": 0.21883417665958405, + "learning_rate": 0.0006, + "loss": 3.749356508255005, + "step": 2424 + }, + { + "epoch": 33.68501529051988, + "grad_norm": 0.22885626554489136, + "learning_rate": 0.0006, + "loss": 3.7426199913024902, + "step": 2425 + }, + { + "epoch": 33.69899519440804, + "grad_norm": 0.23709580302238464, + "learning_rate": 0.0006, + "loss": 3.691652774810791, + "step": 2426 + }, + { + "epoch": 33.7129750982962, + "grad_norm": 0.2258225381374359, + "learning_rate": 0.0006, + "loss": 3.7368886470794678, + "step": 2427 + }, + { + "epoch": 33.72695500218436, + "grad_norm": 0.1993306577205658, + "learning_rate": 0.0006, + "loss": 3.722733497619629, + "step": 2428 + }, + { + "epoch": 33.74093490607252, + "grad_norm": 0.20307473838329315, + "learning_rate": 0.0006, + "loss": 3.7507500648498535, + "step": 2429 + }, + { + "epoch": 33.75491480996068, + "grad_norm": 0.20076696574687958, + "learning_rate": 0.0006, + "loss": 3.6896910667419434, + "step": 2430 + }, + { + "epoch": 33.768894713848844, + "grad_norm": 0.21118830144405365, + "learning_rate": 0.0006, + "loss": 3.7176647186279297, + "step": 2431 + }, + { + "epoch": 33.782874617737, + "grad_norm": 0.21605782210826874, + "learning_rate": 0.0006, + "loss": 3.7423641681671143, + "step": 2432 + }, + { + "epoch": 33.796854521625164, + "grad_norm": 0.22233152389526367, + "learning_rate": 0.0006, + "loss": 3.7296109199523926, + "step": 2433 + }, + { + "epoch": 33.81083442551333, + "grad_norm": 0.2253616899251938, + "learning_rate": 0.0006, + "loss": 3.7095072269439697, + "step": 2434 + }, + { + "epoch": 33.824814329401484, + "grad_norm": 0.2105807662010193, + "learning_rate": 0.0006, + "loss": 3.760921001434326, + "step": 2435 + }, + { + "epoch": 33.83879423328965, + "grad_norm": 0.20413213968276978, + "learning_rate": 0.0006, + "loss": 3.7356553077697754, + "step": 2436 + }, + { + "epoch": 33.8527741371778, + "grad_norm": 0.19781213998794556, + "learning_rate": 0.0006, + "loss": 3.726787567138672, + "step": 2437 + }, + { + "epoch": 33.86675404106597, + "grad_norm": 0.199616938829422, + "learning_rate": 0.0006, + "loss": 3.7200419902801514, + "step": 2438 + }, + { + "epoch": 33.88073394495413, + "grad_norm": 0.19702564179897308, + "learning_rate": 0.0006, + "loss": 3.714287281036377, + "step": 2439 + }, + { + "epoch": 33.89471384884229, + "grad_norm": 0.19456833600997925, + "learning_rate": 0.0006, + "loss": 3.739231586456299, + "step": 2440 + }, + { + "epoch": 33.90869375273045, + "grad_norm": 0.1890697181224823, + "learning_rate": 0.0006, + "loss": 3.7088429927825928, + "step": 2441 + }, + { + "epoch": 33.92267365661861, + "grad_norm": 0.1845911741256714, + "learning_rate": 0.0006, + "loss": 3.760782241821289, + "step": 2442 + }, + { + "epoch": 33.93665356050677, + "grad_norm": 0.19045902788639069, + "learning_rate": 0.0006, + "loss": 3.736957311630249, + "step": 2443 + }, + { + "epoch": 33.95063346439493, + "grad_norm": 0.1934187412261963, + "learning_rate": 0.0006, + "loss": 3.756351947784424, + "step": 2444 + }, + { + "epoch": 33.964613368283096, + "grad_norm": 0.19774580001831055, + "learning_rate": 0.0006, + "loss": 3.7332229614257812, + "step": 2445 + }, + { + "epoch": 33.97859327217125, + "grad_norm": 0.20653048157691956, + "learning_rate": 0.0006, + "loss": 3.7112321853637695, + "step": 2446 + }, + { + "epoch": 33.992573176059416, + "grad_norm": 0.18618541955947876, + "learning_rate": 0.0006, + "loss": 3.735710620880127, + "step": 2447 + }, + { + "epoch": 34.0, + "grad_norm": 0.22846414148807526, + "learning_rate": 0.0006, + "loss": 3.739706039428711, + "step": 2448 + }, + { + "epoch": 34.0, + "eval_loss": 4.0099663734436035, + "eval_runtime": 45.2096, + "eval_samples_per_second": 54.015, + "eval_steps_per_second": 3.384, + "step": 2448 + }, + { + "epoch": 34.01397990388816, + "grad_norm": 0.20987462997436523, + "learning_rate": 0.0006, + "loss": 3.6798832416534424, + "step": 2449 + }, + { + "epoch": 34.02795980777632, + "grad_norm": 0.2230423390865326, + "learning_rate": 0.0006, + "loss": 3.7157368659973145, + "step": 2450 + }, + { + "epoch": 34.04193971166448, + "grad_norm": 0.24115242063999176, + "learning_rate": 0.0006, + "loss": 3.696037769317627, + "step": 2451 + }, + { + "epoch": 34.05591961555265, + "grad_norm": 0.24499665200710297, + "learning_rate": 0.0006, + "loss": 3.695420742034912, + "step": 2452 + }, + { + "epoch": 34.0698995194408, + "grad_norm": 0.23336757719516754, + "learning_rate": 0.0006, + "loss": 3.7252023220062256, + "step": 2453 + }, + { + "epoch": 34.083879423328966, + "grad_norm": 0.23716159164905548, + "learning_rate": 0.0006, + "loss": 3.714542865753174, + "step": 2454 + }, + { + "epoch": 34.09785932721712, + "grad_norm": 0.2305644154548645, + "learning_rate": 0.0006, + "loss": 3.6989386081695557, + "step": 2455 + }, + { + "epoch": 34.111839231105286, + "grad_norm": 0.2281671017408371, + "learning_rate": 0.0006, + "loss": 3.6952829360961914, + "step": 2456 + }, + { + "epoch": 34.12581913499345, + "grad_norm": 0.21031132340431213, + "learning_rate": 0.0006, + "loss": 3.7337589263916016, + "step": 2457 + }, + { + "epoch": 34.139799038881605, + "grad_norm": 0.2233671098947525, + "learning_rate": 0.0006, + "loss": 3.6923675537109375, + "step": 2458 + }, + { + "epoch": 34.15377894276977, + "grad_norm": 0.22766625881195068, + "learning_rate": 0.0006, + "loss": 3.70849609375, + "step": 2459 + }, + { + "epoch": 34.16775884665793, + "grad_norm": 0.22433766722679138, + "learning_rate": 0.0006, + "loss": 3.718319892883301, + "step": 2460 + }, + { + "epoch": 34.18173875054609, + "grad_norm": 0.20621491968631744, + "learning_rate": 0.0006, + "loss": 3.6874704360961914, + "step": 2461 + }, + { + "epoch": 34.19571865443425, + "grad_norm": 0.21353304386138916, + "learning_rate": 0.0006, + "loss": 3.663358688354492, + "step": 2462 + }, + { + "epoch": 34.20969855832241, + "grad_norm": 0.20652951300144196, + "learning_rate": 0.0006, + "loss": 3.718107223510742, + "step": 2463 + }, + { + "epoch": 34.22367846221057, + "grad_norm": 0.19780176877975464, + "learning_rate": 0.0006, + "loss": 3.7255396842956543, + "step": 2464 + }, + { + "epoch": 34.237658366098735, + "grad_norm": 0.20636138319969177, + "learning_rate": 0.0006, + "loss": 3.696850538253784, + "step": 2465 + }, + { + "epoch": 34.25163826998689, + "grad_norm": 0.23691460490226746, + "learning_rate": 0.0006, + "loss": 3.687997341156006, + "step": 2466 + }, + { + "epoch": 34.265618173875055, + "grad_norm": 0.2380511611700058, + "learning_rate": 0.0006, + "loss": 3.716610908508301, + "step": 2467 + }, + { + "epoch": 34.27959807776322, + "grad_norm": 0.21508945524692535, + "learning_rate": 0.0006, + "loss": 3.6993470191955566, + "step": 2468 + }, + { + "epoch": 34.293577981651374, + "grad_norm": 0.20441125333309174, + "learning_rate": 0.0006, + "loss": 3.7194275856018066, + "step": 2469 + }, + { + "epoch": 34.30755788553954, + "grad_norm": 0.19704242050647736, + "learning_rate": 0.0006, + "loss": 3.675929546356201, + "step": 2470 + }, + { + "epoch": 34.3215377894277, + "grad_norm": 0.1918456256389618, + "learning_rate": 0.0006, + "loss": 3.7189574241638184, + "step": 2471 + }, + { + "epoch": 34.33551769331586, + "grad_norm": 0.19687092304229736, + "learning_rate": 0.0006, + "loss": 3.725809335708618, + "step": 2472 + }, + { + "epoch": 34.34949759720402, + "grad_norm": 0.2048639953136444, + "learning_rate": 0.0006, + "loss": 3.7461748123168945, + "step": 2473 + }, + { + "epoch": 34.36347750109218, + "grad_norm": 0.21086618304252625, + "learning_rate": 0.0006, + "loss": 3.6849746704101562, + "step": 2474 + }, + { + "epoch": 34.37745740498034, + "grad_norm": 0.2172154039144516, + "learning_rate": 0.0006, + "loss": 3.7379322052001953, + "step": 2475 + }, + { + "epoch": 34.391437308868504, + "grad_norm": 0.22725504636764526, + "learning_rate": 0.0006, + "loss": 3.7341527938842773, + "step": 2476 + }, + { + "epoch": 34.40541721275666, + "grad_norm": 0.22309242188930511, + "learning_rate": 0.0006, + "loss": 3.724946975708008, + "step": 2477 + }, + { + "epoch": 34.419397116644824, + "grad_norm": 0.25252285599708557, + "learning_rate": 0.0006, + "loss": 3.710257053375244, + "step": 2478 + }, + { + "epoch": 34.43337702053299, + "grad_norm": 0.2549746334552765, + "learning_rate": 0.0006, + "loss": 3.7105040550231934, + "step": 2479 + }, + { + "epoch": 34.44735692442114, + "grad_norm": 0.22544030845165253, + "learning_rate": 0.0006, + "loss": 3.7340707778930664, + "step": 2480 + }, + { + "epoch": 34.46133682830931, + "grad_norm": 0.22275063395500183, + "learning_rate": 0.0006, + "loss": 3.7141473293304443, + "step": 2481 + }, + { + "epoch": 34.47531673219746, + "grad_norm": 0.25373485684394836, + "learning_rate": 0.0006, + "loss": 3.7014691829681396, + "step": 2482 + }, + { + "epoch": 34.489296636085626, + "grad_norm": 0.2573327124118805, + "learning_rate": 0.0006, + "loss": 3.682562828063965, + "step": 2483 + }, + { + "epoch": 34.50327653997379, + "grad_norm": 0.2452341616153717, + "learning_rate": 0.0006, + "loss": 3.757261276245117, + "step": 2484 + }, + { + "epoch": 34.517256443861946, + "grad_norm": 0.2477131187915802, + "learning_rate": 0.0006, + "loss": 3.7216877937316895, + "step": 2485 + }, + { + "epoch": 34.53123634775011, + "grad_norm": 0.24740098416805267, + "learning_rate": 0.0006, + "loss": 3.705704927444458, + "step": 2486 + }, + { + "epoch": 34.54521625163827, + "grad_norm": 0.27306219935417175, + "learning_rate": 0.0006, + "loss": 3.7014641761779785, + "step": 2487 + }, + { + "epoch": 34.55919615552643, + "grad_norm": 0.26376286149024963, + "learning_rate": 0.0006, + "loss": 3.686056137084961, + "step": 2488 + }, + { + "epoch": 34.57317605941459, + "grad_norm": 0.2796899378299713, + "learning_rate": 0.0006, + "loss": 3.7171077728271484, + "step": 2489 + }, + { + "epoch": 34.58715596330275, + "grad_norm": 0.24279902875423431, + "learning_rate": 0.0006, + "loss": 3.7448348999023438, + "step": 2490 + }, + { + "epoch": 34.60113586719091, + "grad_norm": 0.22772833704948425, + "learning_rate": 0.0006, + "loss": 3.7028117179870605, + "step": 2491 + }, + { + "epoch": 34.615115771079076, + "grad_norm": 0.22157910466194153, + "learning_rate": 0.0006, + "loss": 3.750023603439331, + "step": 2492 + }, + { + "epoch": 34.62909567496723, + "grad_norm": 0.24342703819274902, + "learning_rate": 0.0006, + "loss": 3.7181010246276855, + "step": 2493 + }, + { + "epoch": 34.643075578855395, + "grad_norm": 0.2554340362548828, + "learning_rate": 0.0006, + "loss": 3.6994080543518066, + "step": 2494 + }, + { + "epoch": 34.65705548274356, + "grad_norm": 0.21296930313110352, + "learning_rate": 0.0006, + "loss": 3.7534523010253906, + "step": 2495 + }, + { + "epoch": 34.671035386631715, + "grad_norm": 0.19117674231529236, + "learning_rate": 0.0006, + "loss": 3.7267889976501465, + "step": 2496 + }, + { + "epoch": 34.68501529051988, + "grad_norm": 0.2306399643421173, + "learning_rate": 0.0006, + "loss": 3.723212242126465, + "step": 2497 + }, + { + "epoch": 34.69899519440804, + "grad_norm": 0.23063263297080994, + "learning_rate": 0.0006, + "loss": 3.730070114135742, + "step": 2498 + }, + { + "epoch": 34.7129750982962, + "grad_norm": 0.19422881305217743, + "learning_rate": 0.0006, + "loss": 3.694833755493164, + "step": 2499 + }, + { + "epoch": 34.72695500218436, + "grad_norm": 0.20246362686157227, + "learning_rate": 0.0006, + "loss": 3.71140718460083, + "step": 2500 + }, + { + "epoch": 34.74093490607252, + "grad_norm": 0.1942741572856903, + "learning_rate": 0.0006, + "loss": 3.7530534267425537, + "step": 2501 + }, + { + "epoch": 34.75491480996068, + "grad_norm": 0.19686029851436615, + "learning_rate": 0.0006, + "loss": 3.7059555053710938, + "step": 2502 + }, + { + "epoch": 34.768894713848844, + "grad_norm": 0.20120355486869812, + "learning_rate": 0.0006, + "loss": 3.7271084785461426, + "step": 2503 + }, + { + "epoch": 34.782874617737, + "grad_norm": 0.20880399644374847, + "learning_rate": 0.0006, + "loss": 3.712137460708618, + "step": 2504 + }, + { + "epoch": 34.796854521625164, + "grad_norm": 0.22139988839626312, + "learning_rate": 0.0006, + "loss": 3.731245517730713, + "step": 2505 + }, + { + "epoch": 34.81083442551333, + "grad_norm": 0.22756224870681763, + "learning_rate": 0.0006, + "loss": 3.708987236022949, + "step": 2506 + }, + { + "epoch": 34.824814329401484, + "grad_norm": 0.22332409024238586, + "learning_rate": 0.0006, + "loss": 3.7365565299987793, + "step": 2507 + }, + { + "epoch": 34.83879423328965, + "grad_norm": 0.19599054753780365, + "learning_rate": 0.0006, + "loss": 3.7266454696655273, + "step": 2508 + }, + { + "epoch": 34.8527741371778, + "grad_norm": 0.19843019545078278, + "learning_rate": 0.0006, + "loss": 3.7225422859191895, + "step": 2509 + }, + { + "epoch": 34.86675404106597, + "grad_norm": 0.20147928595542908, + "learning_rate": 0.0006, + "loss": 3.7282514572143555, + "step": 2510 + }, + { + "epoch": 34.88073394495413, + "grad_norm": 0.19489876925945282, + "learning_rate": 0.0006, + "loss": 3.694852113723755, + "step": 2511 + }, + { + "epoch": 34.89471384884229, + "grad_norm": 0.20680078864097595, + "learning_rate": 0.0006, + "loss": 3.74678635597229, + "step": 2512 + }, + { + "epoch": 34.90869375273045, + "grad_norm": 0.2233233004808426, + "learning_rate": 0.0006, + "loss": 3.726475238800049, + "step": 2513 + }, + { + "epoch": 34.92267365661861, + "grad_norm": 0.20702993869781494, + "learning_rate": 0.0006, + "loss": 3.6946351528167725, + "step": 2514 + }, + { + "epoch": 34.93665356050677, + "grad_norm": 0.2081725299358368, + "learning_rate": 0.0006, + "loss": 3.7101621627807617, + "step": 2515 + }, + { + "epoch": 34.95063346439493, + "grad_norm": 0.20551837980747223, + "learning_rate": 0.0006, + "loss": 3.7060177326202393, + "step": 2516 + }, + { + "epoch": 34.964613368283096, + "grad_norm": 0.2106839418411255, + "learning_rate": 0.0006, + "loss": 3.7460474967956543, + "step": 2517 + }, + { + "epoch": 34.97859327217125, + "grad_norm": 0.18512766063213348, + "learning_rate": 0.0006, + "loss": 3.719280242919922, + "step": 2518 + }, + { + "epoch": 34.992573176059416, + "grad_norm": 0.1802142709493637, + "learning_rate": 0.0006, + "loss": 3.698255777359009, + "step": 2519 + }, + { + "epoch": 35.0, + "grad_norm": 0.2028084248304367, + "learning_rate": 0.0006, + "loss": 3.711136817932129, + "step": 2520 + }, + { + "epoch": 35.0, + "eval_loss": 4.006688117980957, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 2520 + }, + { + "epoch": 35.01397990388816, + "grad_norm": 0.1973012387752533, + "learning_rate": 0.0006, + "loss": 3.7108325958251953, + "step": 2521 + }, + { + "epoch": 35.02795980777632, + "grad_norm": 0.23763646185398102, + "learning_rate": 0.0006, + "loss": 3.675785541534424, + "step": 2522 + }, + { + "epoch": 35.04193971166448, + "grad_norm": 0.24403199553489685, + "learning_rate": 0.0006, + "loss": 3.7034249305725098, + "step": 2523 + }, + { + "epoch": 35.05591961555265, + "grad_norm": 0.19050131738185883, + "learning_rate": 0.0006, + "loss": 3.6984221935272217, + "step": 2524 + }, + { + "epoch": 35.0698995194408, + "grad_norm": 0.21389710903167725, + "learning_rate": 0.0006, + "loss": 3.6641085147857666, + "step": 2525 + }, + { + "epoch": 35.083879423328966, + "grad_norm": 0.23103152215480804, + "learning_rate": 0.0006, + "loss": 3.722912311553955, + "step": 2526 + }, + { + "epoch": 35.09785932721712, + "grad_norm": 0.2197326272726059, + "learning_rate": 0.0006, + "loss": 3.696568727493286, + "step": 2527 + }, + { + "epoch": 35.111839231105286, + "grad_norm": 0.20877327024936676, + "learning_rate": 0.0006, + "loss": 3.666700601577759, + "step": 2528 + }, + { + "epoch": 35.12581913499345, + "grad_norm": 0.20904001593589783, + "learning_rate": 0.0006, + "loss": 3.6896979808807373, + "step": 2529 + }, + { + "epoch": 35.139799038881605, + "grad_norm": 0.1947423666715622, + "learning_rate": 0.0006, + "loss": 3.6647095680236816, + "step": 2530 + }, + { + "epoch": 35.15377894276977, + "grad_norm": 0.2134019434452057, + "learning_rate": 0.0006, + "loss": 3.696993589401245, + "step": 2531 + }, + { + "epoch": 35.16775884665793, + "grad_norm": 0.2299254685640335, + "learning_rate": 0.0006, + "loss": 3.7067925930023193, + "step": 2532 + }, + { + "epoch": 35.18173875054609, + "grad_norm": 0.219585582613945, + "learning_rate": 0.0006, + "loss": 3.6680960655212402, + "step": 2533 + }, + { + "epoch": 35.19571865443425, + "grad_norm": 0.2146025449037552, + "learning_rate": 0.0006, + "loss": 3.7185046672821045, + "step": 2534 + }, + { + "epoch": 35.20969855832241, + "grad_norm": 0.22748060524463654, + "learning_rate": 0.0006, + "loss": 3.659202814102173, + "step": 2535 + }, + { + "epoch": 35.22367846221057, + "grad_norm": 0.22272273898124695, + "learning_rate": 0.0006, + "loss": 3.7002370357513428, + "step": 2536 + }, + { + "epoch": 35.237658366098735, + "grad_norm": 0.23827379941940308, + "learning_rate": 0.0006, + "loss": 3.714664936065674, + "step": 2537 + }, + { + "epoch": 35.25163826998689, + "grad_norm": 0.2328156679868698, + "learning_rate": 0.0006, + "loss": 3.665173292160034, + "step": 2538 + }, + { + "epoch": 35.265618173875055, + "grad_norm": 0.2573475241661072, + "learning_rate": 0.0006, + "loss": 3.7073206901550293, + "step": 2539 + }, + { + "epoch": 35.27959807776322, + "grad_norm": 0.2411472052335739, + "learning_rate": 0.0006, + "loss": 3.697751045227051, + "step": 2540 + }, + { + "epoch": 35.293577981651374, + "grad_norm": 0.22836148738861084, + "learning_rate": 0.0006, + "loss": 3.7219419479370117, + "step": 2541 + }, + { + "epoch": 35.30755788553954, + "grad_norm": 0.2225421667098999, + "learning_rate": 0.0006, + "loss": 3.69516658782959, + "step": 2542 + }, + { + "epoch": 35.3215377894277, + "grad_norm": 0.2180362343788147, + "learning_rate": 0.0006, + "loss": 3.714043378829956, + "step": 2543 + }, + { + "epoch": 35.33551769331586, + "grad_norm": 0.23638299107551575, + "learning_rate": 0.0006, + "loss": 3.7449421882629395, + "step": 2544 + }, + { + "epoch": 35.34949759720402, + "grad_norm": 0.21792089939117432, + "learning_rate": 0.0006, + "loss": 3.7029948234558105, + "step": 2545 + }, + { + "epoch": 35.36347750109218, + "grad_norm": 0.23266112804412842, + "learning_rate": 0.0006, + "loss": 3.683509111404419, + "step": 2546 + }, + { + "epoch": 35.37745740498034, + "grad_norm": 0.24203059077262878, + "learning_rate": 0.0006, + "loss": 3.68572998046875, + "step": 2547 + }, + { + "epoch": 35.391437308868504, + "grad_norm": 0.2543564438819885, + "learning_rate": 0.0006, + "loss": 3.6902432441711426, + "step": 2548 + }, + { + "epoch": 35.40541721275666, + "grad_norm": 0.22990189492702484, + "learning_rate": 0.0006, + "loss": 3.708810329437256, + "step": 2549 + }, + { + "epoch": 35.419397116644824, + "grad_norm": 0.2594352662563324, + "learning_rate": 0.0006, + "loss": 3.7312886714935303, + "step": 2550 + }, + { + "epoch": 35.43337702053299, + "grad_norm": 0.27525269985198975, + "learning_rate": 0.0006, + "loss": 3.6963448524475098, + "step": 2551 + }, + { + "epoch": 35.44735692442114, + "grad_norm": 0.2436525970697403, + "learning_rate": 0.0006, + "loss": 3.6733713150024414, + "step": 2552 + }, + { + "epoch": 35.46133682830931, + "grad_norm": 0.25500908493995667, + "learning_rate": 0.0006, + "loss": 3.7104358673095703, + "step": 2553 + }, + { + "epoch": 35.47531673219746, + "grad_norm": 0.23504602909088135, + "learning_rate": 0.0006, + "loss": 3.7052388191223145, + "step": 2554 + }, + { + "epoch": 35.489296636085626, + "grad_norm": 0.2277563363313675, + "learning_rate": 0.0006, + "loss": 3.708714008331299, + "step": 2555 + }, + { + "epoch": 35.50327653997379, + "grad_norm": 0.25224778056144714, + "learning_rate": 0.0006, + "loss": 3.699676990509033, + "step": 2556 + }, + { + "epoch": 35.517256443861946, + "grad_norm": 0.28308045864105225, + "learning_rate": 0.0006, + "loss": 3.7005362510681152, + "step": 2557 + }, + { + "epoch": 35.53123634775011, + "grad_norm": 0.25858840346336365, + "learning_rate": 0.0006, + "loss": 3.689999580383301, + "step": 2558 + }, + { + "epoch": 35.54521625163827, + "grad_norm": 0.23497405648231506, + "learning_rate": 0.0006, + "loss": 3.695793867111206, + "step": 2559 + }, + { + "epoch": 35.55919615552643, + "grad_norm": 0.22375957667827606, + "learning_rate": 0.0006, + "loss": 3.7011494636535645, + "step": 2560 + }, + { + "epoch": 35.57317605941459, + "grad_norm": 0.21056118607521057, + "learning_rate": 0.0006, + "loss": 3.722623586654663, + "step": 2561 + }, + { + "epoch": 35.58715596330275, + "grad_norm": 0.22504374384880066, + "learning_rate": 0.0006, + "loss": 3.7211966514587402, + "step": 2562 + }, + { + "epoch": 35.60113586719091, + "grad_norm": 0.22349773347377777, + "learning_rate": 0.0006, + "loss": 3.6901848316192627, + "step": 2563 + }, + { + "epoch": 35.615115771079076, + "grad_norm": 0.219499409198761, + "learning_rate": 0.0006, + "loss": 3.709026575088501, + "step": 2564 + }, + { + "epoch": 35.62909567496723, + "grad_norm": 0.20461080968379974, + "learning_rate": 0.0006, + "loss": 3.72456693649292, + "step": 2565 + }, + { + "epoch": 35.643075578855395, + "grad_norm": 0.2083883285522461, + "learning_rate": 0.0006, + "loss": 3.6845502853393555, + "step": 2566 + }, + { + "epoch": 35.65705548274356, + "grad_norm": 0.19694562256336212, + "learning_rate": 0.0006, + "loss": 3.668515682220459, + "step": 2567 + }, + { + "epoch": 35.671035386631715, + "grad_norm": 0.2107984870672226, + "learning_rate": 0.0006, + "loss": 3.700723648071289, + "step": 2568 + }, + { + "epoch": 35.68501529051988, + "grad_norm": 0.18878720700740814, + "learning_rate": 0.0006, + "loss": 3.689150333404541, + "step": 2569 + }, + { + "epoch": 35.69899519440804, + "grad_norm": 0.20058824121952057, + "learning_rate": 0.0006, + "loss": 3.7048301696777344, + "step": 2570 + }, + { + "epoch": 35.7129750982962, + "grad_norm": 0.2200566679239273, + "learning_rate": 0.0006, + "loss": 3.6944580078125, + "step": 2571 + }, + { + "epoch": 35.72695500218436, + "grad_norm": 0.22200417518615723, + "learning_rate": 0.0006, + "loss": 3.715193510055542, + "step": 2572 + }, + { + "epoch": 35.74093490607252, + "grad_norm": 0.21011404693126678, + "learning_rate": 0.0006, + "loss": 3.737387180328369, + "step": 2573 + }, + { + "epoch": 35.75491480996068, + "grad_norm": 0.21139226853847504, + "learning_rate": 0.0006, + "loss": 3.695596694946289, + "step": 2574 + }, + { + "epoch": 35.768894713848844, + "grad_norm": 0.2112506479024887, + "learning_rate": 0.0006, + "loss": 3.7264227867126465, + "step": 2575 + }, + { + "epoch": 35.782874617737, + "grad_norm": 0.21528391540050507, + "learning_rate": 0.0006, + "loss": 3.7089385986328125, + "step": 2576 + }, + { + "epoch": 35.796854521625164, + "grad_norm": 0.2127804309129715, + "learning_rate": 0.0006, + "loss": 3.6995301246643066, + "step": 2577 + }, + { + "epoch": 35.81083442551333, + "grad_norm": 0.19839410483837128, + "learning_rate": 0.0006, + "loss": 3.7233223915100098, + "step": 2578 + }, + { + "epoch": 35.824814329401484, + "grad_norm": 0.19098423421382904, + "learning_rate": 0.0006, + "loss": 3.7108311653137207, + "step": 2579 + }, + { + "epoch": 35.83879423328965, + "grad_norm": 0.18697232007980347, + "learning_rate": 0.0006, + "loss": 3.725001811981201, + "step": 2580 + }, + { + "epoch": 35.8527741371778, + "grad_norm": 0.21051937341690063, + "learning_rate": 0.0006, + "loss": 3.7310993671417236, + "step": 2581 + }, + { + "epoch": 35.86675404106597, + "grad_norm": 0.2239079475402832, + "learning_rate": 0.0006, + "loss": 3.739056348800659, + "step": 2582 + }, + { + "epoch": 35.88073394495413, + "grad_norm": 0.2581230700016022, + "learning_rate": 0.0006, + "loss": 3.697061061859131, + "step": 2583 + }, + { + "epoch": 35.89471384884229, + "grad_norm": 0.25388655066490173, + "learning_rate": 0.0006, + "loss": 3.7173471450805664, + "step": 2584 + }, + { + "epoch": 35.90869375273045, + "grad_norm": 0.2557796537876129, + "learning_rate": 0.0006, + "loss": 3.7121596336364746, + "step": 2585 + }, + { + "epoch": 35.92267365661861, + "grad_norm": 0.21846474707126617, + "learning_rate": 0.0006, + "loss": 3.7342100143432617, + "step": 2586 + }, + { + "epoch": 35.93665356050677, + "grad_norm": 0.19810006022453308, + "learning_rate": 0.0006, + "loss": 3.7266340255737305, + "step": 2587 + }, + { + "epoch": 35.95063346439493, + "grad_norm": 0.28599923849105835, + "learning_rate": 0.0006, + "loss": 3.711876392364502, + "step": 2588 + }, + { + "epoch": 35.964613368283096, + "grad_norm": 0.3380447030067444, + "learning_rate": 0.0006, + "loss": 3.7611794471740723, + "step": 2589 + }, + { + "epoch": 35.97859327217125, + "grad_norm": 0.2946915328502655, + "learning_rate": 0.0006, + "loss": 3.7659358978271484, + "step": 2590 + }, + { + "epoch": 35.992573176059416, + "grad_norm": 0.2310202419757843, + "learning_rate": 0.0006, + "loss": 3.7124969959259033, + "step": 2591 + }, + { + "epoch": 36.0, + "grad_norm": 0.22294320166110992, + "learning_rate": 0.0006, + "loss": 3.725590705871582, + "step": 2592 + }, + { + "epoch": 36.0, + "eval_loss": 4.015472412109375, + "eval_runtime": 44.4903, + "eval_samples_per_second": 54.888, + "eval_steps_per_second": 3.439, + "step": 2592 + }, + { + "epoch": 36.01397990388816, + "grad_norm": 0.2442479431629181, + "learning_rate": 0.0006, + "loss": 3.6670360565185547, + "step": 2593 + }, + { + "epoch": 36.02795980777632, + "grad_norm": 0.27702075242996216, + "learning_rate": 0.0006, + "loss": 3.685915946960449, + "step": 2594 + }, + { + "epoch": 36.04193971166448, + "grad_norm": 0.22300852835178375, + "learning_rate": 0.0006, + "loss": 3.6993556022644043, + "step": 2595 + }, + { + "epoch": 36.05591961555265, + "grad_norm": 0.22456000745296478, + "learning_rate": 0.0006, + "loss": 3.6937754154205322, + "step": 2596 + }, + { + "epoch": 36.0698995194408, + "grad_norm": 0.23157717287540436, + "learning_rate": 0.0006, + "loss": 3.6573898792266846, + "step": 2597 + }, + { + "epoch": 36.083879423328966, + "grad_norm": 0.23002618551254272, + "learning_rate": 0.0006, + "loss": 3.6565046310424805, + "step": 2598 + }, + { + "epoch": 36.09785932721712, + "grad_norm": 0.223054900765419, + "learning_rate": 0.0006, + "loss": 3.6964457035064697, + "step": 2599 + }, + { + "epoch": 36.111839231105286, + "grad_norm": 0.21883328258991241, + "learning_rate": 0.0006, + "loss": 3.674757480621338, + "step": 2600 + }, + { + "epoch": 36.12581913499345, + "grad_norm": 0.21729037165641785, + "learning_rate": 0.0006, + "loss": 3.684323310852051, + "step": 2601 + }, + { + "epoch": 36.139799038881605, + "grad_norm": 0.21299415826797485, + "learning_rate": 0.0006, + "loss": 3.6554017066955566, + "step": 2602 + }, + { + "epoch": 36.15377894276977, + "grad_norm": 0.22723016142845154, + "learning_rate": 0.0006, + "loss": 3.666767120361328, + "step": 2603 + }, + { + "epoch": 36.16775884665793, + "grad_norm": 0.23663052916526794, + "learning_rate": 0.0006, + "loss": 3.692861557006836, + "step": 2604 + }, + { + "epoch": 36.18173875054609, + "grad_norm": 0.23544131219387054, + "learning_rate": 0.0006, + "loss": 3.6648998260498047, + "step": 2605 + }, + { + "epoch": 36.19571865443425, + "grad_norm": 0.24303849041461945, + "learning_rate": 0.0006, + "loss": 3.66096568107605, + "step": 2606 + }, + { + "epoch": 36.20969855832241, + "grad_norm": 0.23385047912597656, + "learning_rate": 0.0006, + "loss": 3.6636829376220703, + "step": 2607 + }, + { + "epoch": 36.22367846221057, + "grad_norm": 0.21988974511623383, + "learning_rate": 0.0006, + "loss": 3.685072660446167, + "step": 2608 + }, + { + "epoch": 36.237658366098735, + "grad_norm": 0.2365395724773407, + "learning_rate": 0.0006, + "loss": 3.7292234897613525, + "step": 2609 + }, + { + "epoch": 36.25163826998689, + "grad_norm": 0.23791152238845825, + "learning_rate": 0.0006, + "loss": 3.6870808601379395, + "step": 2610 + }, + { + "epoch": 36.265618173875055, + "grad_norm": 0.22954145073890686, + "learning_rate": 0.0006, + "loss": 3.705406904220581, + "step": 2611 + }, + { + "epoch": 36.27959807776322, + "grad_norm": 0.22748000919818878, + "learning_rate": 0.0006, + "loss": 3.680781841278076, + "step": 2612 + }, + { + "epoch": 36.293577981651374, + "grad_norm": 0.21827450394630432, + "learning_rate": 0.0006, + "loss": 3.6794490814208984, + "step": 2613 + }, + { + "epoch": 36.30755788553954, + "grad_norm": 0.2406153380870819, + "learning_rate": 0.0006, + "loss": 3.690225124359131, + "step": 2614 + }, + { + "epoch": 36.3215377894277, + "grad_norm": 0.2406231164932251, + "learning_rate": 0.0006, + "loss": 3.665867805480957, + "step": 2615 + }, + { + "epoch": 36.33551769331586, + "grad_norm": 0.20494551956653595, + "learning_rate": 0.0006, + "loss": 3.701937198638916, + "step": 2616 + }, + { + "epoch": 36.34949759720402, + "grad_norm": 0.1995103359222412, + "learning_rate": 0.0006, + "loss": 3.702033758163452, + "step": 2617 + }, + { + "epoch": 36.36347750109218, + "grad_norm": 0.1902446299791336, + "learning_rate": 0.0006, + "loss": 3.6809959411621094, + "step": 2618 + }, + { + "epoch": 36.37745740498034, + "grad_norm": 0.1810801923274994, + "learning_rate": 0.0006, + "loss": 3.689852714538574, + "step": 2619 + }, + { + "epoch": 36.391437308868504, + "grad_norm": 0.1882476955652237, + "learning_rate": 0.0006, + "loss": 3.710911273956299, + "step": 2620 + }, + { + "epoch": 36.40541721275666, + "grad_norm": 0.1912514567375183, + "learning_rate": 0.0006, + "loss": 3.7054009437561035, + "step": 2621 + }, + { + "epoch": 36.419397116644824, + "grad_norm": 0.19080901145935059, + "learning_rate": 0.0006, + "loss": 3.681145191192627, + "step": 2622 + }, + { + "epoch": 36.43337702053299, + "grad_norm": 0.193472221493721, + "learning_rate": 0.0006, + "loss": 3.661360740661621, + "step": 2623 + }, + { + "epoch": 36.44735692442114, + "grad_norm": 0.2034357339143753, + "learning_rate": 0.0006, + "loss": 3.706930160522461, + "step": 2624 + }, + { + "epoch": 36.46133682830931, + "grad_norm": 0.19924600422382355, + "learning_rate": 0.0006, + "loss": 3.6903364658355713, + "step": 2625 + }, + { + "epoch": 36.47531673219746, + "grad_norm": 0.20556052029132843, + "learning_rate": 0.0006, + "loss": 3.6974234580993652, + "step": 2626 + }, + { + "epoch": 36.489296636085626, + "grad_norm": 0.19628804922103882, + "learning_rate": 0.0006, + "loss": 3.6947717666625977, + "step": 2627 + }, + { + "epoch": 36.50327653997379, + "grad_norm": 0.18071836233139038, + "learning_rate": 0.0006, + "loss": 3.717582941055298, + "step": 2628 + }, + { + "epoch": 36.517256443861946, + "grad_norm": 0.20531553030014038, + "learning_rate": 0.0006, + "loss": 3.680610179901123, + "step": 2629 + }, + { + "epoch": 36.53123634775011, + "grad_norm": 0.23789429664611816, + "learning_rate": 0.0006, + "loss": 3.711493968963623, + "step": 2630 + }, + { + "epoch": 36.54521625163827, + "grad_norm": 0.23027348518371582, + "learning_rate": 0.0006, + "loss": 3.6827993392944336, + "step": 2631 + }, + { + "epoch": 36.55919615552643, + "grad_norm": 0.21941570937633514, + "learning_rate": 0.0006, + "loss": 3.682286262512207, + "step": 2632 + }, + { + "epoch": 36.57317605941459, + "grad_norm": 0.21213553845882416, + "learning_rate": 0.0006, + "loss": 3.6828765869140625, + "step": 2633 + }, + { + "epoch": 36.58715596330275, + "grad_norm": 0.21929772198200226, + "learning_rate": 0.0006, + "loss": 3.697030544281006, + "step": 2634 + }, + { + "epoch": 36.60113586719091, + "grad_norm": 0.2101750522851944, + "learning_rate": 0.0006, + "loss": 3.723201274871826, + "step": 2635 + }, + { + "epoch": 36.615115771079076, + "grad_norm": 0.19014132022857666, + "learning_rate": 0.0006, + "loss": 3.6989338397979736, + "step": 2636 + }, + { + "epoch": 36.62909567496723, + "grad_norm": 0.21566815674304962, + "learning_rate": 0.0006, + "loss": 3.6968226432800293, + "step": 2637 + }, + { + "epoch": 36.643075578855395, + "grad_norm": 0.20500224828720093, + "learning_rate": 0.0006, + "loss": 3.689640522003174, + "step": 2638 + }, + { + "epoch": 36.65705548274356, + "grad_norm": 0.210358127951622, + "learning_rate": 0.0006, + "loss": 3.6996328830718994, + "step": 2639 + }, + { + "epoch": 36.671035386631715, + "grad_norm": 0.2061213105916977, + "learning_rate": 0.0006, + "loss": 3.7019221782684326, + "step": 2640 + }, + { + "epoch": 36.68501529051988, + "grad_norm": 0.21494871377944946, + "learning_rate": 0.0006, + "loss": 3.6634578704833984, + "step": 2641 + }, + { + "epoch": 36.69899519440804, + "grad_norm": 0.19586549699306488, + "learning_rate": 0.0006, + "loss": 3.708131790161133, + "step": 2642 + }, + { + "epoch": 36.7129750982962, + "grad_norm": 0.22805732488632202, + "learning_rate": 0.0006, + "loss": 3.6977362632751465, + "step": 2643 + }, + { + "epoch": 36.72695500218436, + "grad_norm": 0.28397148847579956, + "learning_rate": 0.0006, + "loss": 3.6847963333129883, + "step": 2644 + }, + { + "epoch": 36.74093490607252, + "grad_norm": 0.28333187103271484, + "learning_rate": 0.0006, + "loss": 3.734257459640503, + "step": 2645 + }, + { + "epoch": 36.75491480996068, + "grad_norm": 0.22314953804016113, + "learning_rate": 0.0006, + "loss": 3.6871445178985596, + "step": 2646 + }, + { + "epoch": 36.768894713848844, + "grad_norm": 0.20580267906188965, + "learning_rate": 0.0006, + "loss": 3.692736864089966, + "step": 2647 + }, + { + "epoch": 36.782874617737, + "grad_norm": 0.22695036232471466, + "learning_rate": 0.0006, + "loss": 3.697096824645996, + "step": 2648 + }, + { + "epoch": 36.796854521625164, + "grad_norm": 0.25916165113449097, + "learning_rate": 0.0006, + "loss": 3.7099573612213135, + "step": 2649 + }, + { + "epoch": 36.81083442551333, + "grad_norm": 0.26024341583251953, + "learning_rate": 0.0006, + "loss": 3.7161359786987305, + "step": 2650 + }, + { + "epoch": 36.824814329401484, + "grad_norm": 0.2340802699327469, + "learning_rate": 0.0006, + "loss": 3.708864688873291, + "step": 2651 + }, + { + "epoch": 36.83879423328965, + "grad_norm": 0.23312288522720337, + "learning_rate": 0.0006, + "loss": 3.7351365089416504, + "step": 2652 + }, + { + "epoch": 36.8527741371778, + "grad_norm": 0.22953253984451294, + "learning_rate": 0.0006, + "loss": 3.735302209854126, + "step": 2653 + }, + { + "epoch": 36.86675404106597, + "grad_norm": 0.21928828954696655, + "learning_rate": 0.0006, + "loss": 3.72445011138916, + "step": 2654 + }, + { + "epoch": 36.88073394495413, + "grad_norm": 0.22865602374076843, + "learning_rate": 0.0006, + "loss": 3.714867115020752, + "step": 2655 + }, + { + "epoch": 36.89471384884229, + "grad_norm": 0.23255643248558044, + "learning_rate": 0.0006, + "loss": 3.695101261138916, + "step": 2656 + }, + { + "epoch": 36.90869375273045, + "grad_norm": 0.2491452544927597, + "learning_rate": 0.0006, + "loss": 3.70692777633667, + "step": 2657 + }, + { + "epoch": 36.92267365661861, + "grad_norm": 0.27367597818374634, + "learning_rate": 0.0006, + "loss": 3.6906654834747314, + "step": 2658 + }, + { + "epoch": 36.93665356050677, + "grad_norm": 0.26728564500808716, + "learning_rate": 0.0006, + "loss": 3.7092056274414062, + "step": 2659 + }, + { + "epoch": 36.95063346439493, + "grad_norm": 0.207070454955101, + "learning_rate": 0.0006, + "loss": 3.7152137756347656, + "step": 2660 + }, + { + "epoch": 36.964613368283096, + "grad_norm": 0.21671561896800995, + "learning_rate": 0.0006, + "loss": 3.7130112648010254, + "step": 2661 + }, + { + "epoch": 36.97859327217125, + "grad_norm": 0.2140914648771286, + "learning_rate": 0.0006, + "loss": 3.7286999225616455, + "step": 2662 + }, + { + "epoch": 36.992573176059416, + "grad_norm": 0.21324342489242554, + "learning_rate": 0.0006, + "loss": 3.6828715801239014, + "step": 2663 + }, + { + "epoch": 37.0, + "grad_norm": 0.22366146743297577, + "learning_rate": 0.0006, + "loss": 3.69199800491333, + "step": 2664 + }, + { + "epoch": 37.0, + "eval_loss": 4.011842727661133, + "eval_runtime": 44.7825, + "eval_samples_per_second": 54.53, + "eval_steps_per_second": 3.417, + "step": 2664 + }, + { + "epoch": 37.01397990388816, + "grad_norm": 0.22093228995800018, + "learning_rate": 0.0006, + "loss": 3.6940979957580566, + "step": 2665 + }, + { + "epoch": 37.02795980777632, + "grad_norm": 0.20821493864059448, + "learning_rate": 0.0006, + "loss": 3.670813798904419, + "step": 2666 + }, + { + "epoch": 37.04193971166448, + "grad_norm": 0.22330114245414734, + "learning_rate": 0.0006, + "loss": 3.6392664909362793, + "step": 2667 + }, + { + "epoch": 37.05591961555265, + "grad_norm": 0.2224634289741516, + "learning_rate": 0.0006, + "loss": 3.660856246948242, + "step": 2668 + }, + { + "epoch": 37.0698995194408, + "grad_norm": 0.2255052626132965, + "learning_rate": 0.0006, + "loss": 3.6393589973449707, + "step": 2669 + }, + { + "epoch": 37.083879423328966, + "grad_norm": 0.23462942242622375, + "learning_rate": 0.0006, + "loss": 3.684429168701172, + "step": 2670 + }, + { + "epoch": 37.09785932721712, + "grad_norm": 0.23743386566638947, + "learning_rate": 0.0006, + "loss": 3.67622709274292, + "step": 2671 + }, + { + "epoch": 37.111839231105286, + "grad_norm": 0.2276267409324646, + "learning_rate": 0.0006, + "loss": 3.6487984657287598, + "step": 2672 + }, + { + "epoch": 37.12581913499345, + "grad_norm": 0.24448423087596893, + "learning_rate": 0.0006, + "loss": 3.67645525932312, + "step": 2673 + }, + { + "epoch": 37.139799038881605, + "grad_norm": 0.2428973764181137, + "learning_rate": 0.0006, + "loss": 3.681497097015381, + "step": 2674 + }, + { + "epoch": 37.15377894276977, + "grad_norm": 0.21918512880802155, + "learning_rate": 0.0006, + "loss": 3.67134428024292, + "step": 2675 + }, + { + "epoch": 37.16775884665793, + "grad_norm": 0.2103680670261383, + "learning_rate": 0.0006, + "loss": 3.6508708000183105, + "step": 2676 + }, + { + "epoch": 37.18173875054609, + "grad_norm": 0.20674929022789001, + "learning_rate": 0.0006, + "loss": 3.6904029846191406, + "step": 2677 + }, + { + "epoch": 37.19571865443425, + "grad_norm": 0.21867282688617706, + "learning_rate": 0.0006, + "loss": 3.697535514831543, + "step": 2678 + }, + { + "epoch": 37.20969855832241, + "grad_norm": 0.22919587790966034, + "learning_rate": 0.0006, + "loss": 3.675565004348755, + "step": 2679 + }, + { + "epoch": 37.22367846221057, + "grad_norm": 0.22255578637123108, + "learning_rate": 0.0006, + "loss": 3.6830129623413086, + "step": 2680 + }, + { + "epoch": 37.237658366098735, + "grad_norm": 0.22460198402404785, + "learning_rate": 0.0006, + "loss": 3.6872951984405518, + "step": 2681 + }, + { + "epoch": 37.25163826998689, + "grad_norm": 0.23677165806293488, + "learning_rate": 0.0006, + "loss": 3.6779165267944336, + "step": 2682 + }, + { + "epoch": 37.265618173875055, + "grad_norm": 0.23231394588947296, + "learning_rate": 0.0006, + "loss": 3.6831178665161133, + "step": 2683 + }, + { + "epoch": 37.27959807776322, + "grad_norm": 0.22131343185901642, + "learning_rate": 0.0006, + "loss": 3.664295196533203, + "step": 2684 + }, + { + "epoch": 37.293577981651374, + "grad_norm": 0.23424340784549713, + "learning_rate": 0.0006, + "loss": 3.696678638458252, + "step": 2685 + }, + { + "epoch": 37.30755788553954, + "grad_norm": 0.22695423662662506, + "learning_rate": 0.0006, + "loss": 3.6697473526000977, + "step": 2686 + }, + { + "epoch": 37.3215377894277, + "grad_norm": 0.2165997475385666, + "learning_rate": 0.0006, + "loss": 3.6801891326904297, + "step": 2687 + }, + { + "epoch": 37.33551769331586, + "grad_norm": 0.2241077572107315, + "learning_rate": 0.0006, + "loss": 3.6957011222839355, + "step": 2688 + }, + { + "epoch": 37.34949759720402, + "grad_norm": 0.21191732585430145, + "learning_rate": 0.0006, + "loss": 3.6812620162963867, + "step": 2689 + }, + { + "epoch": 37.36347750109218, + "grad_norm": 0.1827201396226883, + "learning_rate": 0.0006, + "loss": 3.6797738075256348, + "step": 2690 + }, + { + "epoch": 37.37745740498034, + "grad_norm": 0.20793627202510834, + "learning_rate": 0.0006, + "loss": 3.672819137573242, + "step": 2691 + }, + { + "epoch": 37.391437308868504, + "grad_norm": 0.19737116992473602, + "learning_rate": 0.0006, + "loss": 3.667839527130127, + "step": 2692 + }, + { + "epoch": 37.40541721275666, + "grad_norm": 0.18670497834682465, + "learning_rate": 0.0006, + "loss": 3.651561737060547, + "step": 2693 + }, + { + "epoch": 37.419397116644824, + "grad_norm": 0.21385592222213745, + "learning_rate": 0.0006, + "loss": 3.717456340789795, + "step": 2694 + }, + { + "epoch": 37.43337702053299, + "grad_norm": 0.20590044558048248, + "learning_rate": 0.0006, + "loss": 3.6950271129608154, + "step": 2695 + }, + { + "epoch": 37.44735692442114, + "grad_norm": 0.1992103010416031, + "learning_rate": 0.0006, + "loss": 3.687854290008545, + "step": 2696 + }, + { + "epoch": 37.46133682830931, + "grad_norm": 0.2004154473543167, + "learning_rate": 0.0006, + "loss": 3.695838451385498, + "step": 2697 + }, + { + "epoch": 37.47531673219746, + "grad_norm": 0.2019810527563095, + "learning_rate": 0.0006, + "loss": 3.690431594848633, + "step": 2698 + }, + { + "epoch": 37.489296636085626, + "grad_norm": 0.2192547768354416, + "learning_rate": 0.0006, + "loss": 3.6743836402893066, + "step": 2699 + }, + { + "epoch": 37.50327653997379, + "grad_norm": 0.2568076550960541, + "learning_rate": 0.0006, + "loss": 3.6857337951660156, + "step": 2700 + }, + { + "epoch": 37.517256443861946, + "grad_norm": 0.20050311088562012, + "learning_rate": 0.0006, + "loss": 3.6811180114746094, + "step": 2701 + }, + { + "epoch": 37.53123634775011, + "grad_norm": 0.21008558571338654, + "learning_rate": 0.0006, + "loss": 3.700563907623291, + "step": 2702 + }, + { + "epoch": 37.54521625163827, + "grad_norm": 0.2393747717142105, + "learning_rate": 0.0006, + "loss": 3.679438591003418, + "step": 2703 + }, + { + "epoch": 37.55919615552643, + "grad_norm": 0.2531895041465759, + "learning_rate": 0.0006, + "loss": 3.682903289794922, + "step": 2704 + }, + { + "epoch": 37.57317605941459, + "grad_norm": 0.2372656762599945, + "learning_rate": 0.0006, + "loss": 3.7128796577453613, + "step": 2705 + }, + { + "epoch": 37.58715596330275, + "grad_norm": 0.20020034909248352, + "learning_rate": 0.0006, + "loss": 3.701916217803955, + "step": 2706 + }, + { + "epoch": 37.60113586719091, + "grad_norm": 0.20250852406024933, + "learning_rate": 0.0006, + "loss": 3.6761491298675537, + "step": 2707 + }, + { + "epoch": 37.615115771079076, + "grad_norm": 0.19259589910507202, + "learning_rate": 0.0006, + "loss": 3.715104579925537, + "step": 2708 + }, + { + "epoch": 37.62909567496723, + "grad_norm": 0.19649392366409302, + "learning_rate": 0.0006, + "loss": 3.687556266784668, + "step": 2709 + }, + { + "epoch": 37.643075578855395, + "grad_norm": 0.1909446269273758, + "learning_rate": 0.0006, + "loss": 3.684046745300293, + "step": 2710 + }, + { + "epoch": 37.65705548274356, + "grad_norm": 0.19589872658252716, + "learning_rate": 0.0006, + "loss": 3.707886219024658, + "step": 2711 + }, + { + "epoch": 37.671035386631715, + "grad_norm": 0.19472210109233856, + "learning_rate": 0.0006, + "loss": 3.6837692260742188, + "step": 2712 + }, + { + "epoch": 37.68501529051988, + "grad_norm": 0.22622711956501007, + "learning_rate": 0.0006, + "loss": 3.703619956970215, + "step": 2713 + }, + { + "epoch": 37.69899519440804, + "grad_norm": 0.24314729869365692, + "learning_rate": 0.0006, + "loss": 3.7345223426818848, + "step": 2714 + }, + { + "epoch": 37.7129750982962, + "grad_norm": 0.23934306204319, + "learning_rate": 0.0006, + "loss": 3.687809705734253, + "step": 2715 + }, + { + "epoch": 37.72695500218436, + "grad_norm": 0.24838587641716003, + "learning_rate": 0.0006, + "loss": 3.708613872528076, + "step": 2716 + }, + { + "epoch": 37.74093490607252, + "grad_norm": 0.23191452026367188, + "learning_rate": 0.0006, + "loss": 3.7090163230895996, + "step": 2717 + }, + { + "epoch": 37.75491480996068, + "grad_norm": 0.24574638903141022, + "learning_rate": 0.0006, + "loss": 3.68489146232605, + "step": 2718 + }, + { + "epoch": 37.768894713848844, + "grad_norm": 0.2706749439239502, + "learning_rate": 0.0006, + "loss": 3.687061309814453, + "step": 2719 + }, + { + "epoch": 37.782874617737, + "grad_norm": 0.25955191254615784, + "learning_rate": 0.0006, + "loss": 3.694173812866211, + "step": 2720 + }, + { + "epoch": 37.796854521625164, + "grad_norm": 0.22040610015392303, + "learning_rate": 0.0006, + "loss": 3.701871871948242, + "step": 2721 + }, + { + "epoch": 37.81083442551333, + "grad_norm": 0.22328512370586395, + "learning_rate": 0.0006, + "loss": 3.7082555294036865, + "step": 2722 + }, + { + "epoch": 37.824814329401484, + "grad_norm": 0.2290581911802292, + "learning_rate": 0.0006, + "loss": 3.7023987770080566, + "step": 2723 + }, + { + "epoch": 37.83879423328965, + "grad_norm": 0.23129472136497498, + "learning_rate": 0.0006, + "loss": 3.7101752758026123, + "step": 2724 + }, + { + "epoch": 37.8527741371778, + "grad_norm": 0.21203753352165222, + "learning_rate": 0.0006, + "loss": 3.712129592895508, + "step": 2725 + }, + { + "epoch": 37.86675404106597, + "grad_norm": 0.21938200294971466, + "learning_rate": 0.0006, + "loss": 3.7086095809936523, + "step": 2726 + }, + { + "epoch": 37.88073394495413, + "grad_norm": 0.2203572541475296, + "learning_rate": 0.0006, + "loss": 3.6789026260375977, + "step": 2727 + }, + { + "epoch": 37.89471384884229, + "grad_norm": 0.18146046996116638, + "learning_rate": 0.0006, + "loss": 3.666893243789673, + "step": 2728 + }, + { + "epoch": 37.90869375273045, + "grad_norm": 0.1879623532295227, + "learning_rate": 0.0006, + "loss": 3.69246768951416, + "step": 2729 + }, + { + "epoch": 37.92267365661861, + "grad_norm": 0.18311670422554016, + "learning_rate": 0.0006, + "loss": 3.682036876678467, + "step": 2730 + }, + { + "epoch": 37.93665356050677, + "grad_norm": 0.1898486614227295, + "learning_rate": 0.0006, + "loss": 3.6683125495910645, + "step": 2731 + }, + { + "epoch": 37.95063346439493, + "grad_norm": 0.1858556717634201, + "learning_rate": 0.0006, + "loss": 3.6879611015319824, + "step": 2732 + }, + { + "epoch": 37.964613368283096, + "grad_norm": 0.19914504885673523, + "learning_rate": 0.0006, + "loss": 3.690250873565674, + "step": 2733 + }, + { + "epoch": 37.97859327217125, + "grad_norm": 0.20406974852085114, + "learning_rate": 0.0006, + "loss": 3.6812171936035156, + "step": 2734 + }, + { + "epoch": 37.992573176059416, + "grad_norm": 0.2003912478685379, + "learning_rate": 0.0006, + "loss": 3.6852147579193115, + "step": 2735 + }, + { + "epoch": 38.0, + "grad_norm": 0.22644472122192383, + "learning_rate": 0.0006, + "loss": 3.645207405090332, + "step": 2736 + }, + { + "epoch": 38.0, + "eval_loss": 3.995000123977661, + "eval_runtime": 45.1644, + "eval_samples_per_second": 54.069, + "eval_steps_per_second": 3.388, + "step": 2736 + }, + { + "epoch": 38.01397990388816, + "grad_norm": 0.1989814043045044, + "learning_rate": 0.0006, + "loss": 3.6511387825012207, + "step": 2737 + }, + { + "epoch": 38.02795980777632, + "grad_norm": 0.203324094414711, + "learning_rate": 0.0006, + "loss": 3.6513094902038574, + "step": 2738 + }, + { + "epoch": 38.04193971166448, + "grad_norm": 0.21504290401935577, + "learning_rate": 0.0006, + "loss": 3.647711992263794, + "step": 2739 + }, + { + "epoch": 38.05591961555265, + "grad_norm": 0.23464815318584442, + "learning_rate": 0.0006, + "loss": 3.6418747901916504, + "step": 2740 + }, + { + "epoch": 38.0698995194408, + "grad_norm": 0.242184117436409, + "learning_rate": 0.0006, + "loss": 3.6741859912872314, + "step": 2741 + }, + { + "epoch": 38.083879423328966, + "grad_norm": 0.23488445580005646, + "learning_rate": 0.0006, + "loss": 3.6710941791534424, + "step": 2742 + }, + { + "epoch": 38.09785932721712, + "grad_norm": 0.20800170302391052, + "learning_rate": 0.0006, + "loss": 3.660001754760742, + "step": 2743 + }, + { + "epoch": 38.111839231105286, + "grad_norm": 0.19505052268505096, + "learning_rate": 0.0006, + "loss": 3.684129238128662, + "step": 2744 + }, + { + "epoch": 38.12581913499345, + "grad_norm": 0.2185833901166916, + "learning_rate": 0.0006, + "loss": 3.656033515930176, + "step": 2745 + }, + { + "epoch": 38.139799038881605, + "grad_norm": 0.21850253641605377, + "learning_rate": 0.0006, + "loss": 3.6818184852600098, + "step": 2746 + }, + { + "epoch": 38.15377894276977, + "grad_norm": 0.2109488695859909, + "learning_rate": 0.0006, + "loss": 3.6485435962677, + "step": 2747 + }, + { + "epoch": 38.16775884665793, + "grad_norm": 0.21059907972812653, + "learning_rate": 0.0006, + "loss": 3.6734395027160645, + "step": 2748 + }, + { + "epoch": 38.18173875054609, + "grad_norm": 0.20741555094718933, + "learning_rate": 0.0006, + "loss": 3.6672463417053223, + "step": 2749 + }, + { + "epoch": 38.19571865443425, + "grad_norm": 0.2130175530910492, + "learning_rate": 0.0006, + "loss": 3.692840576171875, + "step": 2750 + }, + { + "epoch": 38.20969855832241, + "grad_norm": 0.1899138242006302, + "learning_rate": 0.0006, + "loss": 3.675316333770752, + "step": 2751 + }, + { + "epoch": 38.22367846221057, + "grad_norm": 0.218918576836586, + "learning_rate": 0.0006, + "loss": 3.634105920791626, + "step": 2752 + }, + { + "epoch": 38.237658366098735, + "grad_norm": 0.23649370670318604, + "learning_rate": 0.0006, + "loss": 3.6526122093200684, + "step": 2753 + }, + { + "epoch": 38.25163826998689, + "grad_norm": 0.22011931240558624, + "learning_rate": 0.0006, + "loss": 3.6859593391418457, + "step": 2754 + }, + { + "epoch": 38.265618173875055, + "grad_norm": 0.2143620252609253, + "learning_rate": 0.0006, + "loss": 3.656838893890381, + "step": 2755 + }, + { + "epoch": 38.27959807776322, + "grad_norm": 0.24068567156791687, + "learning_rate": 0.0006, + "loss": 3.67006254196167, + "step": 2756 + }, + { + "epoch": 38.293577981651374, + "grad_norm": 0.25773152709007263, + "learning_rate": 0.0006, + "loss": 3.6648950576782227, + "step": 2757 + }, + { + "epoch": 38.30755788553954, + "grad_norm": 0.24213455617427826, + "learning_rate": 0.0006, + "loss": 3.6918864250183105, + "step": 2758 + }, + { + "epoch": 38.3215377894277, + "grad_norm": 0.22463668882846832, + "learning_rate": 0.0006, + "loss": 3.6662540435791016, + "step": 2759 + }, + { + "epoch": 38.33551769331586, + "grad_norm": 0.22541455924510956, + "learning_rate": 0.0006, + "loss": 3.6563215255737305, + "step": 2760 + }, + { + "epoch": 38.34949759720402, + "grad_norm": 0.21833783388137817, + "learning_rate": 0.0006, + "loss": 3.650446891784668, + "step": 2761 + }, + { + "epoch": 38.36347750109218, + "grad_norm": 0.22799745202064514, + "learning_rate": 0.0006, + "loss": 3.7007250785827637, + "step": 2762 + }, + { + "epoch": 38.37745740498034, + "grad_norm": 0.23739562928676605, + "learning_rate": 0.0006, + "loss": 3.667130708694458, + "step": 2763 + }, + { + "epoch": 38.391437308868504, + "grad_norm": 0.23744846880435944, + "learning_rate": 0.0006, + "loss": 3.678760528564453, + "step": 2764 + }, + { + "epoch": 38.40541721275666, + "grad_norm": 0.2677105963230133, + "learning_rate": 0.0006, + "loss": 3.6829030513763428, + "step": 2765 + }, + { + "epoch": 38.419397116644824, + "grad_norm": 0.24490566551685333, + "learning_rate": 0.0006, + "loss": 3.707911491394043, + "step": 2766 + }, + { + "epoch": 38.43337702053299, + "grad_norm": 0.23477254807949066, + "learning_rate": 0.0006, + "loss": 3.680157423019409, + "step": 2767 + }, + { + "epoch": 38.44735692442114, + "grad_norm": 0.26611173152923584, + "learning_rate": 0.0006, + "loss": 3.660834550857544, + "step": 2768 + }, + { + "epoch": 38.46133682830931, + "grad_norm": 0.24505069851875305, + "learning_rate": 0.0006, + "loss": 3.696178436279297, + "step": 2769 + }, + { + "epoch": 38.47531673219746, + "grad_norm": 0.22933335602283478, + "learning_rate": 0.0006, + "loss": 3.6506235599517822, + "step": 2770 + }, + { + "epoch": 38.489296636085626, + "grad_norm": 0.23662401735782623, + "learning_rate": 0.0006, + "loss": 3.680819511413574, + "step": 2771 + }, + { + "epoch": 38.50327653997379, + "grad_norm": 0.27774113416671753, + "learning_rate": 0.0006, + "loss": 3.699146270751953, + "step": 2772 + }, + { + "epoch": 38.517256443861946, + "grad_norm": 0.2881671190261841, + "learning_rate": 0.0006, + "loss": 3.6509652137756348, + "step": 2773 + }, + { + "epoch": 38.53123634775011, + "grad_norm": 0.26570361852645874, + "learning_rate": 0.0006, + "loss": 3.6808385848999023, + "step": 2774 + }, + { + "epoch": 38.54521625163827, + "grad_norm": 0.23043136298656464, + "learning_rate": 0.0006, + "loss": 3.7082371711730957, + "step": 2775 + }, + { + "epoch": 38.55919615552643, + "grad_norm": 0.23730400204658508, + "learning_rate": 0.0006, + "loss": 3.653615951538086, + "step": 2776 + }, + { + "epoch": 38.57317605941459, + "grad_norm": 0.2332635223865509, + "learning_rate": 0.0006, + "loss": 3.6869683265686035, + "step": 2777 + }, + { + "epoch": 38.58715596330275, + "grad_norm": 0.22913676500320435, + "learning_rate": 0.0006, + "loss": 3.6998367309570312, + "step": 2778 + }, + { + "epoch": 38.60113586719091, + "grad_norm": 0.226078599691391, + "learning_rate": 0.0006, + "loss": 3.7051444053649902, + "step": 2779 + }, + { + "epoch": 38.615115771079076, + "grad_norm": 0.2336396723985672, + "learning_rate": 0.0006, + "loss": 3.6964943408966064, + "step": 2780 + }, + { + "epoch": 38.62909567496723, + "grad_norm": 0.23270335793495178, + "learning_rate": 0.0006, + "loss": 3.6741909980773926, + "step": 2781 + }, + { + "epoch": 38.643075578855395, + "grad_norm": 0.19324959814548492, + "learning_rate": 0.0006, + "loss": 3.64506196975708, + "step": 2782 + }, + { + "epoch": 38.65705548274356, + "grad_norm": 0.18551453948020935, + "learning_rate": 0.0006, + "loss": 3.6834206581115723, + "step": 2783 + }, + { + "epoch": 38.671035386631715, + "grad_norm": 0.17392469942569733, + "learning_rate": 0.0006, + "loss": 3.67282772064209, + "step": 2784 + }, + { + "epoch": 38.68501529051988, + "grad_norm": 0.19093742966651917, + "learning_rate": 0.0006, + "loss": 3.6648201942443848, + "step": 2785 + }, + { + "epoch": 38.69899519440804, + "grad_norm": 0.2124558985233307, + "learning_rate": 0.0006, + "loss": 3.712191581726074, + "step": 2786 + }, + { + "epoch": 38.7129750982962, + "grad_norm": 0.2220139354467392, + "learning_rate": 0.0006, + "loss": 3.675504207611084, + "step": 2787 + }, + { + "epoch": 38.72695500218436, + "grad_norm": 0.17677755653858185, + "learning_rate": 0.0006, + "loss": 3.6693475246429443, + "step": 2788 + }, + { + "epoch": 38.74093490607252, + "grad_norm": 0.2002430409193039, + "learning_rate": 0.0006, + "loss": 3.6906018257141113, + "step": 2789 + }, + { + "epoch": 38.75491480996068, + "grad_norm": 0.18844179809093475, + "learning_rate": 0.0006, + "loss": 3.660121440887451, + "step": 2790 + }, + { + "epoch": 38.768894713848844, + "grad_norm": 0.19319336116313934, + "learning_rate": 0.0006, + "loss": 3.6592631340026855, + "step": 2791 + }, + { + "epoch": 38.782874617737, + "grad_norm": 0.18624325096607208, + "learning_rate": 0.0006, + "loss": 3.6935300827026367, + "step": 2792 + }, + { + "epoch": 38.796854521625164, + "grad_norm": 0.2049761712551117, + "learning_rate": 0.0006, + "loss": 3.6702702045440674, + "step": 2793 + }, + { + "epoch": 38.81083442551333, + "grad_norm": 0.2030584216117859, + "learning_rate": 0.0006, + "loss": 3.714639663696289, + "step": 2794 + }, + { + "epoch": 38.824814329401484, + "grad_norm": 0.18989548087120056, + "learning_rate": 0.0006, + "loss": 3.678253412246704, + "step": 2795 + }, + { + "epoch": 38.83879423328965, + "grad_norm": 0.19944126904010773, + "learning_rate": 0.0006, + "loss": 3.648367166519165, + "step": 2796 + }, + { + "epoch": 38.8527741371778, + "grad_norm": 0.2062688171863556, + "learning_rate": 0.0006, + "loss": 3.701514720916748, + "step": 2797 + }, + { + "epoch": 38.86675404106597, + "grad_norm": 0.21475110948085785, + "learning_rate": 0.0006, + "loss": 3.6725993156433105, + "step": 2798 + }, + { + "epoch": 38.88073394495413, + "grad_norm": 0.2240881323814392, + "learning_rate": 0.0006, + "loss": 3.6944539546966553, + "step": 2799 + }, + { + "epoch": 38.89471384884229, + "grad_norm": 0.23074312508106232, + "learning_rate": 0.0006, + "loss": 3.747671365737915, + "step": 2800 + }, + { + "epoch": 38.90869375273045, + "grad_norm": 0.2447938323020935, + "learning_rate": 0.0006, + "loss": 3.6856026649475098, + "step": 2801 + }, + { + "epoch": 38.92267365661861, + "grad_norm": 0.2136487364768982, + "learning_rate": 0.0006, + "loss": 3.710397720336914, + "step": 2802 + }, + { + "epoch": 38.93665356050677, + "grad_norm": 0.21676769852638245, + "learning_rate": 0.0006, + "loss": 3.6911189556121826, + "step": 2803 + }, + { + "epoch": 38.95063346439493, + "grad_norm": 0.2226478010416031, + "learning_rate": 0.0006, + "loss": 3.6902880668640137, + "step": 2804 + }, + { + "epoch": 38.964613368283096, + "grad_norm": 0.2071496546268463, + "learning_rate": 0.0006, + "loss": 3.6831371784210205, + "step": 2805 + }, + { + "epoch": 38.97859327217125, + "grad_norm": 0.19568349421024323, + "learning_rate": 0.0006, + "loss": 3.6897640228271484, + "step": 2806 + }, + { + "epoch": 38.992573176059416, + "grad_norm": 0.19067516922950745, + "learning_rate": 0.0006, + "loss": 3.7096242904663086, + "step": 2807 + }, + { + "epoch": 39.0, + "grad_norm": 0.22872281074523926, + "learning_rate": 0.0006, + "loss": 3.689342975616455, + "step": 2808 + }, + { + "epoch": 39.0, + "eval_loss": 4.001968860626221, + "eval_runtime": 44.8452, + "eval_samples_per_second": 54.454, + "eval_steps_per_second": 3.412, + "step": 2808 + }, + { + "epoch": 39.01397990388816, + "grad_norm": 0.21685896813869476, + "learning_rate": 0.0006, + "loss": 3.638145923614502, + "step": 2809 + }, + { + "epoch": 39.02795980777632, + "grad_norm": 0.20085014402866364, + "learning_rate": 0.0006, + "loss": 3.626654624938965, + "step": 2810 + }, + { + "epoch": 39.04193971166448, + "grad_norm": 0.20615799725055695, + "learning_rate": 0.0006, + "loss": 3.6280088424682617, + "step": 2811 + }, + { + "epoch": 39.05591961555265, + "grad_norm": 0.23471905291080475, + "learning_rate": 0.0006, + "loss": 3.6444239616394043, + "step": 2812 + }, + { + "epoch": 39.0698995194408, + "grad_norm": 0.22207780182361603, + "learning_rate": 0.0006, + "loss": 3.6276912689208984, + "step": 2813 + }, + { + "epoch": 39.083879423328966, + "grad_norm": 0.23354043066501617, + "learning_rate": 0.0006, + "loss": 3.7007269859313965, + "step": 2814 + }, + { + "epoch": 39.09785932721712, + "grad_norm": 0.22520557045936584, + "learning_rate": 0.0006, + "loss": 3.6487162113189697, + "step": 2815 + }, + { + "epoch": 39.111839231105286, + "grad_norm": 0.20489682257175446, + "learning_rate": 0.0006, + "loss": 3.6523492336273193, + "step": 2816 + }, + { + "epoch": 39.12581913499345, + "grad_norm": 0.20979270339012146, + "learning_rate": 0.0006, + "loss": 3.6574230194091797, + "step": 2817 + }, + { + "epoch": 39.139799038881605, + "grad_norm": 0.2256486713886261, + "learning_rate": 0.0006, + "loss": 3.6499013900756836, + "step": 2818 + }, + { + "epoch": 39.15377894276977, + "grad_norm": 0.1960437297821045, + "learning_rate": 0.0006, + "loss": 3.6780271530151367, + "step": 2819 + }, + { + "epoch": 39.16775884665793, + "grad_norm": 0.19279663264751434, + "learning_rate": 0.0006, + "loss": 3.623819589614868, + "step": 2820 + }, + { + "epoch": 39.18173875054609, + "grad_norm": 0.19151495397090912, + "learning_rate": 0.0006, + "loss": 3.612868070602417, + "step": 2821 + }, + { + "epoch": 39.19571865443425, + "grad_norm": 0.19399534165859222, + "learning_rate": 0.0006, + "loss": 3.6518092155456543, + "step": 2822 + }, + { + "epoch": 39.20969855832241, + "grad_norm": 0.21723251044750214, + "learning_rate": 0.0006, + "loss": 3.681509494781494, + "step": 2823 + }, + { + "epoch": 39.22367846221057, + "grad_norm": 0.2487006038427353, + "learning_rate": 0.0006, + "loss": 3.6569719314575195, + "step": 2824 + }, + { + "epoch": 39.237658366098735, + "grad_norm": 0.2640652656555176, + "learning_rate": 0.0006, + "loss": 3.680734634399414, + "step": 2825 + }, + { + "epoch": 39.25163826998689, + "grad_norm": 0.21862825751304626, + "learning_rate": 0.0006, + "loss": 3.6741840839385986, + "step": 2826 + }, + { + "epoch": 39.265618173875055, + "grad_norm": 0.19515705108642578, + "learning_rate": 0.0006, + "loss": 3.657750129699707, + "step": 2827 + }, + { + "epoch": 39.27959807776322, + "grad_norm": 0.1971602737903595, + "learning_rate": 0.0006, + "loss": 3.6524124145507812, + "step": 2828 + }, + { + "epoch": 39.293577981651374, + "grad_norm": 0.20822174847126007, + "learning_rate": 0.0006, + "loss": 3.69527006149292, + "step": 2829 + }, + { + "epoch": 39.30755788553954, + "grad_norm": 0.2566370368003845, + "learning_rate": 0.0006, + "loss": 3.6770880222320557, + "step": 2830 + }, + { + "epoch": 39.3215377894277, + "grad_norm": 0.24984225630760193, + "learning_rate": 0.0006, + "loss": 3.6733901500701904, + "step": 2831 + }, + { + "epoch": 39.33551769331586, + "grad_norm": 0.233322873711586, + "learning_rate": 0.0006, + "loss": 3.645519256591797, + "step": 2832 + }, + { + "epoch": 39.34949759720402, + "grad_norm": 0.21584749221801758, + "learning_rate": 0.0006, + "loss": 3.6211934089660645, + "step": 2833 + }, + { + "epoch": 39.36347750109218, + "grad_norm": 0.2188950479030609, + "learning_rate": 0.0006, + "loss": 3.6434195041656494, + "step": 2834 + }, + { + "epoch": 39.37745740498034, + "grad_norm": 0.21998439729213715, + "learning_rate": 0.0006, + "loss": 3.6720595359802246, + "step": 2835 + }, + { + "epoch": 39.391437308868504, + "grad_norm": 0.2459399700164795, + "learning_rate": 0.0006, + "loss": 3.667083740234375, + "step": 2836 + }, + { + "epoch": 39.40541721275666, + "grad_norm": 0.23579223453998566, + "learning_rate": 0.0006, + "loss": 3.665452480316162, + "step": 2837 + }, + { + "epoch": 39.419397116644824, + "grad_norm": 0.19401362538337708, + "learning_rate": 0.0006, + "loss": 3.684218406677246, + "step": 2838 + }, + { + "epoch": 39.43337702053299, + "grad_norm": 0.1894487738609314, + "learning_rate": 0.0006, + "loss": 3.670626163482666, + "step": 2839 + }, + { + "epoch": 39.44735692442114, + "grad_norm": 0.1936904937028885, + "learning_rate": 0.0006, + "loss": 3.6367318630218506, + "step": 2840 + }, + { + "epoch": 39.46133682830931, + "grad_norm": 0.1867629438638687, + "learning_rate": 0.0006, + "loss": 3.670098304748535, + "step": 2841 + }, + { + "epoch": 39.47531673219746, + "grad_norm": 0.18849903345108032, + "learning_rate": 0.0006, + "loss": 3.6877760887145996, + "step": 2842 + }, + { + "epoch": 39.489296636085626, + "grad_norm": 0.18247179687023163, + "learning_rate": 0.0006, + "loss": 3.7132980823516846, + "step": 2843 + }, + { + "epoch": 39.50327653997379, + "grad_norm": 0.19206349551677704, + "learning_rate": 0.0006, + "loss": 3.630319595336914, + "step": 2844 + }, + { + "epoch": 39.517256443861946, + "grad_norm": 0.21730613708496094, + "learning_rate": 0.0006, + "loss": 3.6818761825561523, + "step": 2845 + }, + { + "epoch": 39.53123634775011, + "grad_norm": 0.22482407093048096, + "learning_rate": 0.0006, + "loss": 3.6385269165039062, + "step": 2846 + }, + { + "epoch": 39.54521625163827, + "grad_norm": 0.24560105800628662, + "learning_rate": 0.0006, + "loss": 3.660067558288574, + "step": 2847 + }, + { + "epoch": 39.55919615552643, + "grad_norm": 0.23720617592334747, + "learning_rate": 0.0006, + "loss": 3.6811556816101074, + "step": 2848 + }, + { + "epoch": 39.57317605941459, + "grad_norm": 0.18990741670131683, + "learning_rate": 0.0006, + "loss": 3.6733779907226562, + "step": 2849 + }, + { + "epoch": 39.58715596330275, + "grad_norm": 0.2135438323020935, + "learning_rate": 0.0006, + "loss": 3.662020683288574, + "step": 2850 + }, + { + "epoch": 39.60113586719091, + "grad_norm": 0.24248908460140228, + "learning_rate": 0.0006, + "loss": 3.6794259548187256, + "step": 2851 + }, + { + "epoch": 39.615115771079076, + "grad_norm": 0.23115725815296173, + "learning_rate": 0.0006, + "loss": 3.6732406616210938, + "step": 2852 + }, + { + "epoch": 39.62909567496723, + "grad_norm": 0.23760166764259338, + "learning_rate": 0.0006, + "loss": 3.7062699794769287, + "step": 2853 + }, + { + "epoch": 39.643075578855395, + "grad_norm": 0.24670571088790894, + "learning_rate": 0.0006, + "loss": 3.692385673522949, + "step": 2854 + }, + { + "epoch": 39.65705548274356, + "grad_norm": 0.20983918011188507, + "learning_rate": 0.0006, + "loss": 3.691361427307129, + "step": 2855 + }, + { + "epoch": 39.671035386631715, + "grad_norm": 0.1915138065814972, + "learning_rate": 0.0006, + "loss": 3.6985888481140137, + "step": 2856 + }, + { + "epoch": 39.68501529051988, + "grad_norm": 0.23440803587436676, + "learning_rate": 0.0006, + "loss": 3.6484973430633545, + "step": 2857 + }, + { + "epoch": 39.69899519440804, + "grad_norm": 0.2483232468366623, + "learning_rate": 0.0006, + "loss": 3.6861510276794434, + "step": 2858 + }, + { + "epoch": 39.7129750982962, + "grad_norm": 0.21373426914215088, + "learning_rate": 0.0006, + "loss": 3.6528866291046143, + "step": 2859 + }, + { + "epoch": 39.72695500218436, + "grad_norm": 0.19849136471748352, + "learning_rate": 0.0006, + "loss": 3.6435961723327637, + "step": 2860 + }, + { + "epoch": 39.74093490607252, + "grad_norm": 0.21748292446136475, + "learning_rate": 0.0006, + "loss": 3.678481101989746, + "step": 2861 + }, + { + "epoch": 39.75491480996068, + "grad_norm": 0.22488188743591309, + "learning_rate": 0.0006, + "loss": 3.711717128753662, + "step": 2862 + }, + { + "epoch": 39.768894713848844, + "grad_norm": 0.22251835465431213, + "learning_rate": 0.0006, + "loss": 3.690516471862793, + "step": 2863 + }, + { + "epoch": 39.782874617737, + "grad_norm": 0.22101449966430664, + "learning_rate": 0.0006, + "loss": 3.6679611206054688, + "step": 2864 + }, + { + "epoch": 39.796854521625164, + "grad_norm": 0.20345936715602875, + "learning_rate": 0.0006, + "loss": 3.6935629844665527, + "step": 2865 + }, + { + "epoch": 39.81083442551333, + "grad_norm": 0.23772259056568146, + "learning_rate": 0.0006, + "loss": 3.697561264038086, + "step": 2866 + }, + { + "epoch": 39.824814329401484, + "grad_norm": 0.24446387588977814, + "learning_rate": 0.0006, + "loss": 3.696723461151123, + "step": 2867 + }, + { + "epoch": 39.83879423328965, + "grad_norm": 0.2365843653678894, + "learning_rate": 0.0006, + "loss": 3.6511402130126953, + "step": 2868 + }, + { + "epoch": 39.8527741371778, + "grad_norm": 0.25421974062919617, + "learning_rate": 0.0006, + "loss": 3.68449068069458, + "step": 2869 + }, + { + "epoch": 39.86675404106597, + "grad_norm": 0.2504308819770813, + "learning_rate": 0.0006, + "loss": 3.685884952545166, + "step": 2870 + }, + { + "epoch": 39.88073394495413, + "grad_norm": 0.24695490300655365, + "learning_rate": 0.0006, + "loss": 3.6667490005493164, + "step": 2871 + }, + { + "epoch": 39.89471384884229, + "grad_norm": 0.2633236348628998, + "learning_rate": 0.0006, + "loss": 3.6828866004943848, + "step": 2872 + }, + { + "epoch": 39.90869375273045, + "grad_norm": 0.2421039491891861, + "learning_rate": 0.0006, + "loss": 3.681187391281128, + "step": 2873 + }, + { + "epoch": 39.92267365661861, + "grad_norm": 0.21202950179576874, + "learning_rate": 0.0006, + "loss": 3.679069995880127, + "step": 2874 + }, + { + "epoch": 39.93665356050677, + "grad_norm": 0.2344917505979538, + "learning_rate": 0.0006, + "loss": 3.6810007095336914, + "step": 2875 + }, + { + "epoch": 39.95063346439493, + "grad_norm": 0.2115124762058258, + "learning_rate": 0.0006, + "loss": 3.653219223022461, + "step": 2876 + }, + { + "epoch": 39.964613368283096, + "grad_norm": 0.21588370203971863, + "learning_rate": 0.0006, + "loss": 3.6972861289978027, + "step": 2877 + }, + { + "epoch": 39.97859327217125, + "grad_norm": 0.26215407252311707, + "learning_rate": 0.0006, + "loss": 3.6796963214874268, + "step": 2878 + }, + { + "epoch": 39.992573176059416, + "grad_norm": 0.23645395040512085, + "learning_rate": 0.0006, + "loss": 3.696091413497925, + "step": 2879 + }, + { + "epoch": 40.0, + "grad_norm": 0.21817512810230255, + "learning_rate": 0.0006, + "loss": 3.668196678161621, + "step": 2880 + }, + { + "epoch": 40.0, + "eval_loss": 3.9873862266540527, + "eval_runtime": 44.1149, + "eval_samples_per_second": 55.355, + "eval_steps_per_second": 3.468, + "step": 2880 + }, + { + "epoch": 40.01397990388816, + "grad_norm": 0.2031477391719818, + "learning_rate": 0.0006, + "loss": 3.6494622230529785, + "step": 2881 + }, + { + "epoch": 40.02795980777632, + "grad_norm": 0.2223939746618271, + "learning_rate": 0.0006, + "loss": 3.6587047576904297, + "step": 2882 + }, + { + "epoch": 40.04193971166448, + "grad_norm": 0.21485820412635803, + "learning_rate": 0.0006, + "loss": 3.62253737449646, + "step": 2883 + }, + { + "epoch": 40.05591961555265, + "grad_norm": 0.23364055156707764, + "learning_rate": 0.0006, + "loss": 3.619035005569458, + "step": 2884 + }, + { + "epoch": 40.0698995194408, + "grad_norm": 0.23141583800315857, + "learning_rate": 0.0006, + "loss": 3.6650376319885254, + "step": 2885 + }, + { + "epoch": 40.083879423328966, + "grad_norm": 0.2131720930337906, + "learning_rate": 0.0006, + "loss": 3.646428108215332, + "step": 2886 + }, + { + "epoch": 40.09785932721712, + "grad_norm": 0.2337951511144638, + "learning_rate": 0.0006, + "loss": 3.6284823417663574, + "step": 2887 + }, + { + "epoch": 40.111839231105286, + "grad_norm": 0.2790892720222473, + "learning_rate": 0.0006, + "loss": 3.6558361053466797, + "step": 2888 + }, + { + "epoch": 40.12581913499345, + "grad_norm": 0.28444936871528625, + "learning_rate": 0.0006, + "loss": 3.644402503967285, + "step": 2889 + }, + { + "epoch": 40.139799038881605, + "grad_norm": 0.2550848126411438, + "learning_rate": 0.0006, + "loss": 3.671562671661377, + "step": 2890 + }, + { + "epoch": 40.15377894276977, + "grad_norm": 0.22960248589515686, + "learning_rate": 0.0006, + "loss": 3.6998534202575684, + "step": 2891 + }, + { + "epoch": 40.16775884665793, + "grad_norm": 0.23920369148254395, + "learning_rate": 0.0006, + "loss": 3.653874635696411, + "step": 2892 + }, + { + "epoch": 40.18173875054609, + "grad_norm": 0.24586012959480286, + "learning_rate": 0.0006, + "loss": 3.620765209197998, + "step": 2893 + }, + { + "epoch": 40.19571865443425, + "grad_norm": 0.26394739747047424, + "learning_rate": 0.0006, + "loss": 3.638437509536743, + "step": 2894 + }, + { + "epoch": 40.20969855832241, + "grad_norm": 0.27566927671432495, + "learning_rate": 0.0006, + "loss": 3.6684799194335938, + "step": 2895 + }, + { + "epoch": 40.22367846221057, + "grad_norm": 0.25469011068344116, + "learning_rate": 0.0006, + "loss": 3.6113009452819824, + "step": 2896 + }, + { + "epoch": 40.237658366098735, + "grad_norm": 0.2403056025505066, + "learning_rate": 0.0006, + "loss": 3.650771141052246, + "step": 2897 + }, + { + "epoch": 40.25163826998689, + "grad_norm": 0.262423038482666, + "learning_rate": 0.0006, + "loss": 3.635892391204834, + "step": 2898 + }, + { + "epoch": 40.265618173875055, + "grad_norm": 0.23696045577526093, + "learning_rate": 0.0006, + "loss": 3.6396005153656006, + "step": 2899 + }, + { + "epoch": 40.27959807776322, + "grad_norm": 0.208719402551651, + "learning_rate": 0.0006, + "loss": 3.6681132316589355, + "step": 2900 + }, + { + "epoch": 40.293577981651374, + "grad_norm": 0.21554480493068695, + "learning_rate": 0.0006, + "loss": 3.6417553424835205, + "step": 2901 + }, + { + "epoch": 40.30755788553954, + "grad_norm": 0.2290734499692917, + "learning_rate": 0.0006, + "loss": 3.6659927368164062, + "step": 2902 + }, + { + "epoch": 40.3215377894277, + "grad_norm": 0.20803220570087433, + "learning_rate": 0.0006, + "loss": 3.6443324089050293, + "step": 2903 + }, + { + "epoch": 40.33551769331586, + "grad_norm": 0.20334568619728088, + "learning_rate": 0.0006, + "loss": 3.6824207305908203, + "step": 2904 + }, + { + "epoch": 40.34949759720402, + "grad_norm": 0.2000233381986618, + "learning_rate": 0.0006, + "loss": 3.644399642944336, + "step": 2905 + }, + { + "epoch": 40.36347750109218, + "grad_norm": 0.21990752220153809, + "learning_rate": 0.0006, + "loss": 3.668160915374756, + "step": 2906 + }, + { + "epoch": 40.37745740498034, + "grad_norm": 0.24385249614715576, + "learning_rate": 0.0006, + "loss": 3.634392261505127, + "step": 2907 + }, + { + "epoch": 40.391437308868504, + "grad_norm": 0.21272684633731842, + "learning_rate": 0.0006, + "loss": 3.6504263877868652, + "step": 2908 + }, + { + "epoch": 40.40541721275666, + "grad_norm": 0.2003277838230133, + "learning_rate": 0.0006, + "loss": 3.6707763671875, + "step": 2909 + }, + { + "epoch": 40.419397116644824, + "grad_norm": 0.2086087465286255, + "learning_rate": 0.0006, + "loss": 3.66988468170166, + "step": 2910 + }, + { + "epoch": 40.43337702053299, + "grad_norm": 0.19706451892852783, + "learning_rate": 0.0006, + "loss": 3.662794828414917, + "step": 2911 + }, + { + "epoch": 40.44735692442114, + "grad_norm": 0.18795762956142426, + "learning_rate": 0.0006, + "loss": 3.628016233444214, + "step": 2912 + }, + { + "epoch": 40.46133682830931, + "grad_norm": 0.19931825995445251, + "learning_rate": 0.0006, + "loss": 3.6791915893554688, + "step": 2913 + }, + { + "epoch": 40.47531673219746, + "grad_norm": 0.21295934915542603, + "learning_rate": 0.0006, + "loss": 3.688632011413574, + "step": 2914 + }, + { + "epoch": 40.489296636085626, + "grad_norm": 0.2104834020137787, + "learning_rate": 0.0006, + "loss": 3.6270499229431152, + "step": 2915 + }, + { + "epoch": 40.50327653997379, + "grad_norm": 0.19942966103553772, + "learning_rate": 0.0006, + "loss": 3.651721477508545, + "step": 2916 + }, + { + "epoch": 40.517256443861946, + "grad_norm": 0.18890425562858582, + "learning_rate": 0.0006, + "loss": 3.6778619289398193, + "step": 2917 + }, + { + "epoch": 40.53123634775011, + "grad_norm": 0.19861607253551483, + "learning_rate": 0.0006, + "loss": 3.658832550048828, + "step": 2918 + }, + { + "epoch": 40.54521625163827, + "grad_norm": 0.21553616225719452, + "learning_rate": 0.0006, + "loss": 3.6566901206970215, + "step": 2919 + }, + { + "epoch": 40.55919615552643, + "grad_norm": 0.21698440611362457, + "learning_rate": 0.0006, + "loss": 3.6795129776000977, + "step": 2920 + }, + { + "epoch": 40.57317605941459, + "grad_norm": 0.20310913026332855, + "learning_rate": 0.0006, + "loss": 3.645244598388672, + "step": 2921 + }, + { + "epoch": 40.58715596330275, + "grad_norm": 0.2075812816619873, + "learning_rate": 0.0006, + "loss": 3.678452491760254, + "step": 2922 + }, + { + "epoch": 40.60113586719091, + "grad_norm": 0.20606619119644165, + "learning_rate": 0.0006, + "loss": 3.6150245666503906, + "step": 2923 + }, + { + "epoch": 40.615115771079076, + "grad_norm": 0.21511296927928925, + "learning_rate": 0.0006, + "loss": 3.6682112216949463, + "step": 2924 + }, + { + "epoch": 40.62909567496723, + "grad_norm": 0.19771839678287506, + "learning_rate": 0.0006, + "loss": 3.6639556884765625, + "step": 2925 + }, + { + "epoch": 40.643075578855395, + "grad_norm": 0.20419852435588837, + "learning_rate": 0.0006, + "loss": 3.664982318878174, + "step": 2926 + }, + { + "epoch": 40.65705548274356, + "grad_norm": 0.20119430124759674, + "learning_rate": 0.0006, + "loss": 3.661625385284424, + "step": 2927 + }, + { + "epoch": 40.671035386631715, + "grad_norm": 0.21590501070022583, + "learning_rate": 0.0006, + "loss": 3.673719644546509, + "step": 2928 + }, + { + "epoch": 40.68501529051988, + "grad_norm": 0.19165395200252533, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 2929 + }, + { + "epoch": 40.69899519440804, + "grad_norm": 0.19620473682880402, + "learning_rate": 0.0006, + "loss": 3.7008142471313477, + "step": 2930 + }, + { + "epoch": 40.7129750982962, + "grad_norm": 0.23002777993679047, + "learning_rate": 0.0006, + "loss": 3.654296875, + "step": 2931 + }, + { + "epoch": 40.72695500218436, + "grad_norm": 0.22007468342781067, + "learning_rate": 0.0006, + "loss": 3.688178539276123, + "step": 2932 + }, + { + "epoch": 40.74093490607252, + "grad_norm": 0.2030077874660492, + "learning_rate": 0.0006, + "loss": 3.6514129638671875, + "step": 2933 + }, + { + "epoch": 40.75491480996068, + "grad_norm": 0.20960700511932373, + "learning_rate": 0.0006, + "loss": 3.651864528656006, + "step": 2934 + }, + { + "epoch": 40.768894713848844, + "grad_norm": 0.2132565975189209, + "learning_rate": 0.0006, + "loss": 3.680915355682373, + "step": 2935 + }, + { + "epoch": 40.782874617737, + "grad_norm": 0.2411353588104248, + "learning_rate": 0.0006, + "loss": 3.647167682647705, + "step": 2936 + }, + { + "epoch": 40.796854521625164, + "grad_norm": 0.24621541798114777, + "learning_rate": 0.0006, + "loss": 3.6784768104553223, + "step": 2937 + }, + { + "epoch": 40.81083442551333, + "grad_norm": 0.23324407637119293, + "learning_rate": 0.0006, + "loss": 3.6855263710021973, + "step": 2938 + }, + { + "epoch": 40.824814329401484, + "grad_norm": 0.21749550104141235, + "learning_rate": 0.0006, + "loss": 3.672682285308838, + "step": 2939 + }, + { + "epoch": 40.83879423328965, + "grad_norm": 0.1957911103963852, + "learning_rate": 0.0006, + "loss": 3.635678291320801, + "step": 2940 + }, + { + "epoch": 40.8527741371778, + "grad_norm": 0.21262411773204803, + "learning_rate": 0.0006, + "loss": 3.6829824447631836, + "step": 2941 + }, + { + "epoch": 40.86675404106597, + "grad_norm": 0.19940680265426636, + "learning_rate": 0.0006, + "loss": 3.720932960510254, + "step": 2942 + }, + { + "epoch": 40.88073394495413, + "grad_norm": 0.1964999884366989, + "learning_rate": 0.0006, + "loss": 3.678405284881592, + "step": 2943 + }, + { + "epoch": 40.89471384884229, + "grad_norm": 0.21459022164344788, + "learning_rate": 0.0006, + "loss": 3.6788480281829834, + "step": 2944 + }, + { + "epoch": 40.90869375273045, + "grad_norm": 0.2251381129026413, + "learning_rate": 0.0006, + "loss": 3.679459571838379, + "step": 2945 + }, + { + "epoch": 40.92267365661861, + "grad_norm": 0.19951461255550385, + "learning_rate": 0.0006, + "loss": 3.6610841751098633, + "step": 2946 + }, + { + "epoch": 40.93665356050677, + "grad_norm": 0.2057943493127823, + "learning_rate": 0.0006, + "loss": 3.649491786956787, + "step": 2947 + }, + { + "epoch": 40.95063346439493, + "grad_norm": 0.19601917266845703, + "learning_rate": 0.0006, + "loss": 3.724552631378174, + "step": 2948 + }, + { + "epoch": 40.964613368283096, + "grad_norm": 0.20982769131660461, + "learning_rate": 0.0006, + "loss": 3.648465394973755, + "step": 2949 + }, + { + "epoch": 40.97859327217125, + "grad_norm": 0.21103954315185547, + "learning_rate": 0.0006, + "loss": 3.692239999771118, + "step": 2950 + }, + { + "epoch": 40.992573176059416, + "grad_norm": 0.2007385492324829, + "learning_rate": 0.0006, + "loss": 3.659999132156372, + "step": 2951 + }, + { + "epoch": 41.0, + "grad_norm": 0.22357431054115295, + "learning_rate": 0.0006, + "loss": 3.6461124420166016, + "step": 2952 + }, + { + "epoch": 41.0, + "eval_loss": 3.9891226291656494, + "eval_runtime": 44.65, + "eval_samples_per_second": 54.692, + "eval_steps_per_second": 3.427, + "step": 2952 + }, + { + "epoch": 41.01397990388816, + "grad_norm": 0.20387817919254303, + "learning_rate": 0.0006, + "loss": 3.643923282623291, + "step": 2953 + }, + { + "epoch": 41.02795980777632, + "grad_norm": 0.1988423764705658, + "learning_rate": 0.0006, + "loss": 3.6152570247650146, + "step": 2954 + }, + { + "epoch": 41.04193971166448, + "grad_norm": 0.19998641312122345, + "learning_rate": 0.0006, + "loss": 3.667520523071289, + "step": 2955 + }, + { + "epoch": 41.05591961555265, + "grad_norm": 0.18347714841365814, + "learning_rate": 0.0006, + "loss": 3.6289002895355225, + "step": 2956 + }, + { + "epoch": 41.0698995194408, + "grad_norm": 0.21235640347003937, + "learning_rate": 0.0006, + "loss": 3.6422951221466064, + "step": 2957 + }, + { + "epoch": 41.083879423328966, + "grad_norm": 0.1990172415971756, + "learning_rate": 0.0006, + "loss": 3.625697135925293, + "step": 2958 + }, + { + "epoch": 41.09785932721712, + "grad_norm": 0.18313643336296082, + "learning_rate": 0.0006, + "loss": 3.672356605529785, + "step": 2959 + }, + { + "epoch": 41.111839231105286, + "grad_norm": 0.17956401407718658, + "learning_rate": 0.0006, + "loss": 3.6093602180480957, + "step": 2960 + }, + { + "epoch": 41.12581913499345, + "grad_norm": 0.19487550854682922, + "learning_rate": 0.0006, + "loss": 3.6004128456115723, + "step": 2961 + }, + { + "epoch": 41.139799038881605, + "grad_norm": 0.2117495834827423, + "learning_rate": 0.0006, + "loss": 3.6468565464019775, + "step": 2962 + }, + { + "epoch": 41.15377894276977, + "grad_norm": 0.20602662861347198, + "learning_rate": 0.0006, + "loss": 3.6299140453338623, + "step": 2963 + }, + { + "epoch": 41.16775884665793, + "grad_norm": 0.21859265863895416, + "learning_rate": 0.0006, + "loss": 3.630052328109741, + "step": 2964 + }, + { + "epoch": 41.18173875054609, + "grad_norm": 0.22684140503406525, + "learning_rate": 0.0006, + "loss": 3.5995004177093506, + "step": 2965 + }, + { + "epoch": 41.19571865443425, + "grad_norm": 0.25682681798934937, + "learning_rate": 0.0006, + "loss": 3.613131523132324, + "step": 2966 + }, + { + "epoch": 41.20969855832241, + "grad_norm": 0.2508181631565094, + "learning_rate": 0.0006, + "loss": 3.644259452819824, + "step": 2967 + }, + { + "epoch": 41.22367846221057, + "grad_norm": 0.24200427532196045, + "learning_rate": 0.0006, + "loss": 3.6651816368103027, + "step": 2968 + }, + { + "epoch": 41.237658366098735, + "grad_norm": 0.21753790974617004, + "learning_rate": 0.0006, + "loss": 3.686199188232422, + "step": 2969 + }, + { + "epoch": 41.25163826998689, + "grad_norm": 0.19811955094337463, + "learning_rate": 0.0006, + "loss": 3.63014817237854, + "step": 2970 + }, + { + "epoch": 41.265618173875055, + "grad_norm": 0.19316327571868896, + "learning_rate": 0.0006, + "loss": 3.6532740592956543, + "step": 2971 + }, + { + "epoch": 41.27959807776322, + "grad_norm": 0.21440976858139038, + "learning_rate": 0.0006, + "loss": 3.6546850204467773, + "step": 2972 + }, + { + "epoch": 41.293577981651374, + "grad_norm": 0.2732681334018707, + "learning_rate": 0.0006, + "loss": 3.6135244369506836, + "step": 2973 + }, + { + "epoch": 41.30755788553954, + "grad_norm": 0.2588619589805603, + "learning_rate": 0.0006, + "loss": 3.657963275909424, + "step": 2974 + }, + { + "epoch": 41.3215377894277, + "grad_norm": 0.20054970681667328, + "learning_rate": 0.0006, + "loss": 3.6391024589538574, + "step": 2975 + }, + { + "epoch": 41.33551769331586, + "grad_norm": 0.23703549802303314, + "learning_rate": 0.0006, + "loss": 3.6609978675842285, + "step": 2976 + }, + { + "epoch": 41.34949759720402, + "grad_norm": 0.24222144484519958, + "learning_rate": 0.0006, + "loss": 3.659271478652954, + "step": 2977 + }, + { + "epoch": 41.36347750109218, + "grad_norm": 0.2228497713804245, + "learning_rate": 0.0006, + "loss": 3.607358455657959, + "step": 2978 + }, + { + "epoch": 41.37745740498034, + "grad_norm": 0.22105038166046143, + "learning_rate": 0.0006, + "loss": 3.64198899269104, + "step": 2979 + }, + { + "epoch": 41.391437308868504, + "grad_norm": 0.23753555119037628, + "learning_rate": 0.0006, + "loss": 3.63116455078125, + "step": 2980 + }, + { + "epoch": 41.40541721275666, + "grad_norm": 0.24492689967155457, + "learning_rate": 0.0006, + "loss": 3.636122465133667, + "step": 2981 + }, + { + "epoch": 41.419397116644824, + "grad_norm": 0.20610782504081726, + "learning_rate": 0.0006, + "loss": 3.656487226486206, + "step": 2982 + }, + { + "epoch": 41.43337702053299, + "grad_norm": 0.20781412720680237, + "learning_rate": 0.0006, + "loss": 3.669196605682373, + "step": 2983 + }, + { + "epoch": 41.44735692442114, + "grad_norm": 0.23892036080360413, + "learning_rate": 0.0006, + "loss": 3.6345765590667725, + "step": 2984 + }, + { + "epoch": 41.46133682830931, + "grad_norm": 0.2477712333202362, + "learning_rate": 0.0006, + "loss": 3.6599812507629395, + "step": 2985 + }, + { + "epoch": 41.47531673219746, + "grad_norm": 0.25314703583717346, + "learning_rate": 0.0006, + "loss": 3.6737258434295654, + "step": 2986 + }, + { + "epoch": 41.489296636085626, + "grad_norm": 0.2386070191860199, + "learning_rate": 0.0006, + "loss": 3.666586399078369, + "step": 2987 + }, + { + "epoch": 41.50327653997379, + "grad_norm": 0.27259722352027893, + "learning_rate": 0.0006, + "loss": 3.658761501312256, + "step": 2988 + }, + { + "epoch": 41.517256443861946, + "grad_norm": 0.3312860429286957, + "learning_rate": 0.0006, + "loss": 3.629699230194092, + "step": 2989 + }, + { + "epoch": 41.53123634775011, + "grad_norm": 0.3321581780910492, + "learning_rate": 0.0006, + "loss": 3.66628360748291, + "step": 2990 + }, + { + "epoch": 41.54521625163827, + "grad_norm": 0.2850016951560974, + "learning_rate": 0.0006, + "loss": 3.690005302429199, + "step": 2991 + }, + { + "epoch": 41.55919615552643, + "grad_norm": 0.2544100880622864, + "learning_rate": 0.0006, + "loss": 3.6554486751556396, + "step": 2992 + }, + { + "epoch": 41.57317605941459, + "grad_norm": 0.28541380167007446, + "learning_rate": 0.0006, + "loss": 3.672952175140381, + "step": 2993 + }, + { + "epoch": 41.58715596330275, + "grad_norm": 0.2909766435623169, + "learning_rate": 0.0006, + "loss": 3.6649627685546875, + "step": 2994 + }, + { + "epoch": 41.60113586719091, + "grad_norm": 0.26089969277381897, + "learning_rate": 0.0006, + "loss": 3.6512341499328613, + "step": 2995 + }, + { + "epoch": 41.615115771079076, + "grad_norm": 0.21815894544124603, + "learning_rate": 0.0006, + "loss": 3.612436056137085, + "step": 2996 + }, + { + "epoch": 41.62909567496723, + "grad_norm": 0.20712246000766754, + "learning_rate": 0.0006, + "loss": 3.6482479572296143, + "step": 2997 + }, + { + "epoch": 41.643075578855395, + "grad_norm": 0.23280103504657745, + "learning_rate": 0.0006, + "loss": 3.6648616790771484, + "step": 2998 + }, + { + "epoch": 41.65705548274356, + "grad_norm": 0.21623823046684265, + "learning_rate": 0.0006, + "loss": 3.6714487075805664, + "step": 2999 + }, + { + "epoch": 41.671035386631715, + "grad_norm": 0.2081632912158966, + "learning_rate": 0.0006, + "loss": 3.693014144897461, + "step": 3000 + }, + { + "epoch": 41.68501529051988, + "grad_norm": 0.23109425604343414, + "learning_rate": 0.0006, + "loss": 3.667262554168701, + "step": 3001 + }, + { + "epoch": 41.69899519440804, + "grad_norm": 0.2304934561252594, + "learning_rate": 0.0006, + "loss": 3.666405439376831, + "step": 3002 + }, + { + "epoch": 41.7129750982962, + "grad_norm": 0.23132432997226715, + "learning_rate": 0.0006, + "loss": 3.690964698791504, + "step": 3003 + }, + { + "epoch": 41.72695500218436, + "grad_norm": 0.2085159569978714, + "learning_rate": 0.0006, + "loss": 3.6620168685913086, + "step": 3004 + }, + { + "epoch": 41.74093490607252, + "grad_norm": 0.1919657438993454, + "learning_rate": 0.0006, + "loss": 3.67447566986084, + "step": 3005 + }, + { + "epoch": 41.75491480996068, + "grad_norm": 0.20189036428928375, + "learning_rate": 0.0006, + "loss": 3.6434998512268066, + "step": 3006 + }, + { + "epoch": 41.768894713848844, + "grad_norm": 0.23530980944633484, + "learning_rate": 0.0006, + "loss": 3.644280433654785, + "step": 3007 + }, + { + "epoch": 41.782874617737, + "grad_norm": 0.2550027370452881, + "learning_rate": 0.0006, + "loss": 3.6686060428619385, + "step": 3008 + }, + { + "epoch": 41.796854521625164, + "grad_norm": 0.2285512536764145, + "learning_rate": 0.0006, + "loss": 3.7013134956359863, + "step": 3009 + }, + { + "epoch": 41.81083442551333, + "grad_norm": 0.20538675785064697, + "learning_rate": 0.0006, + "loss": 3.6568830013275146, + "step": 3010 + }, + { + "epoch": 41.824814329401484, + "grad_norm": 0.2007976472377777, + "learning_rate": 0.0006, + "loss": 3.680250883102417, + "step": 3011 + }, + { + "epoch": 41.83879423328965, + "grad_norm": 0.20060500502586365, + "learning_rate": 0.0006, + "loss": 3.6565070152282715, + "step": 3012 + }, + { + "epoch": 41.8527741371778, + "grad_norm": 0.21055014431476593, + "learning_rate": 0.0006, + "loss": 3.661667823791504, + "step": 3013 + }, + { + "epoch": 41.86675404106597, + "grad_norm": 0.2201126217842102, + "learning_rate": 0.0006, + "loss": 3.650052070617676, + "step": 3014 + }, + { + "epoch": 41.88073394495413, + "grad_norm": 0.20397843420505524, + "learning_rate": 0.0006, + "loss": 3.6535415649414062, + "step": 3015 + }, + { + "epoch": 41.89471384884229, + "grad_norm": 0.1993463635444641, + "learning_rate": 0.0006, + "loss": 3.665696144104004, + "step": 3016 + }, + { + "epoch": 41.90869375273045, + "grad_norm": 0.20448797941207886, + "learning_rate": 0.0006, + "loss": 3.6448118686676025, + "step": 3017 + }, + { + "epoch": 41.92267365661861, + "grad_norm": 0.2064918726682663, + "learning_rate": 0.0006, + "loss": 3.6881537437438965, + "step": 3018 + }, + { + "epoch": 41.93665356050677, + "grad_norm": 0.20554372668266296, + "learning_rate": 0.0006, + "loss": 3.688559055328369, + "step": 3019 + }, + { + "epoch": 41.95063346439493, + "grad_norm": 0.1862783133983612, + "learning_rate": 0.0006, + "loss": 3.6713812351226807, + "step": 3020 + }, + { + "epoch": 41.964613368283096, + "grad_norm": 0.18139860033988953, + "learning_rate": 0.0006, + "loss": 3.6612548828125, + "step": 3021 + }, + { + "epoch": 41.97859327217125, + "grad_norm": 0.1844220608472824, + "learning_rate": 0.0006, + "loss": 3.641725540161133, + "step": 3022 + }, + { + "epoch": 41.992573176059416, + "grad_norm": 0.1885213702917099, + "learning_rate": 0.0006, + "loss": 3.663257122039795, + "step": 3023 + }, + { + "epoch": 42.0, + "grad_norm": 0.2250746339559555, + "learning_rate": 0.0006, + "loss": 3.6479320526123047, + "step": 3024 + }, + { + "epoch": 42.0, + "eval_loss": 3.993955135345459, + "eval_runtime": 44.4709, + "eval_samples_per_second": 54.912, + "eval_steps_per_second": 3.44, + "step": 3024 + }, + { + "epoch": 42.01397990388816, + "grad_norm": 0.21096517145633698, + "learning_rate": 0.0006, + "loss": 3.6729278564453125, + "step": 3025 + }, + { + "epoch": 42.02795980777632, + "grad_norm": 0.2106277495622635, + "learning_rate": 0.0006, + "loss": 3.629892349243164, + "step": 3026 + }, + { + "epoch": 42.04193971166448, + "grad_norm": 0.2673060894012451, + "learning_rate": 0.0006, + "loss": 3.643604040145874, + "step": 3027 + }, + { + "epoch": 42.05591961555265, + "grad_norm": 0.28180691599845886, + "learning_rate": 0.0006, + "loss": 3.596560478210449, + "step": 3028 + }, + { + "epoch": 42.0698995194408, + "grad_norm": 0.25607243180274963, + "learning_rate": 0.0006, + "loss": 3.597935199737549, + "step": 3029 + }, + { + "epoch": 42.083879423328966, + "grad_norm": 0.22120746970176697, + "learning_rate": 0.0006, + "loss": 3.6219305992126465, + "step": 3030 + }, + { + "epoch": 42.09785932721712, + "grad_norm": 0.2164907306432724, + "learning_rate": 0.0006, + "loss": 3.6220779418945312, + "step": 3031 + }, + { + "epoch": 42.111839231105286, + "grad_norm": 0.23800921440124512, + "learning_rate": 0.0006, + "loss": 3.63372540473938, + "step": 3032 + }, + { + "epoch": 42.12581913499345, + "grad_norm": 0.21812695264816284, + "learning_rate": 0.0006, + "loss": 3.636105537414551, + "step": 3033 + }, + { + "epoch": 42.139799038881605, + "grad_norm": 0.2027447372674942, + "learning_rate": 0.0006, + "loss": 3.6167502403259277, + "step": 3034 + }, + { + "epoch": 42.15377894276977, + "grad_norm": 0.20157714188098907, + "learning_rate": 0.0006, + "loss": 3.6141409873962402, + "step": 3035 + }, + { + "epoch": 42.16775884665793, + "grad_norm": 0.20780996978282928, + "learning_rate": 0.0006, + "loss": 3.6323471069335938, + "step": 3036 + }, + { + "epoch": 42.18173875054609, + "grad_norm": 0.20025081932544708, + "learning_rate": 0.0006, + "loss": 3.625446081161499, + "step": 3037 + }, + { + "epoch": 42.19571865443425, + "grad_norm": 0.20019082725048065, + "learning_rate": 0.0006, + "loss": 3.631418228149414, + "step": 3038 + }, + { + "epoch": 42.20969855832241, + "grad_norm": 0.21194526553153992, + "learning_rate": 0.0006, + "loss": 3.6180832386016846, + "step": 3039 + }, + { + "epoch": 42.22367846221057, + "grad_norm": 0.2016245573759079, + "learning_rate": 0.0006, + "loss": 3.6388602256774902, + "step": 3040 + }, + { + "epoch": 42.237658366098735, + "grad_norm": 0.1892252415418625, + "learning_rate": 0.0006, + "loss": 3.6086854934692383, + "step": 3041 + }, + { + "epoch": 42.25163826998689, + "grad_norm": 0.1878061145544052, + "learning_rate": 0.0006, + "loss": 3.599428176879883, + "step": 3042 + }, + { + "epoch": 42.265618173875055, + "grad_norm": 0.20258742570877075, + "learning_rate": 0.0006, + "loss": 3.6177172660827637, + "step": 3043 + }, + { + "epoch": 42.27959807776322, + "grad_norm": 0.2114444226026535, + "learning_rate": 0.0006, + "loss": 3.641916275024414, + "step": 3044 + }, + { + "epoch": 42.293577981651374, + "grad_norm": 0.19873645901679993, + "learning_rate": 0.0006, + "loss": 3.6585676670074463, + "step": 3045 + }, + { + "epoch": 42.30755788553954, + "grad_norm": 0.20361217856407166, + "learning_rate": 0.0006, + "loss": 3.648475170135498, + "step": 3046 + }, + { + "epoch": 42.3215377894277, + "grad_norm": 0.20227114856243134, + "learning_rate": 0.0006, + "loss": 3.63625431060791, + "step": 3047 + }, + { + "epoch": 42.33551769331586, + "grad_norm": 0.18246233463287354, + "learning_rate": 0.0006, + "loss": 3.6380200386047363, + "step": 3048 + }, + { + "epoch": 42.34949759720402, + "grad_norm": 0.17944976687431335, + "learning_rate": 0.0006, + "loss": 3.6325912475585938, + "step": 3049 + }, + { + "epoch": 42.36347750109218, + "grad_norm": 0.188584566116333, + "learning_rate": 0.0006, + "loss": 3.6418886184692383, + "step": 3050 + }, + { + "epoch": 42.37745740498034, + "grad_norm": 0.1917790323495865, + "learning_rate": 0.0006, + "loss": 3.664421558380127, + "step": 3051 + }, + { + "epoch": 42.391437308868504, + "grad_norm": 0.175637349486351, + "learning_rate": 0.0006, + "loss": 3.641819953918457, + "step": 3052 + }, + { + "epoch": 42.40541721275666, + "grad_norm": 0.18751518428325653, + "learning_rate": 0.0006, + "loss": 3.646697998046875, + "step": 3053 + }, + { + "epoch": 42.419397116644824, + "grad_norm": 0.1805887520313263, + "learning_rate": 0.0006, + "loss": 3.637866735458374, + "step": 3054 + }, + { + "epoch": 42.43337702053299, + "grad_norm": 0.19680845737457275, + "learning_rate": 0.0006, + "loss": 3.602511405944824, + "step": 3055 + }, + { + "epoch": 42.44735692442114, + "grad_norm": 0.20605766773223877, + "learning_rate": 0.0006, + "loss": 3.6472771167755127, + "step": 3056 + }, + { + "epoch": 42.46133682830931, + "grad_norm": 0.18083851039409637, + "learning_rate": 0.0006, + "loss": 3.6672325134277344, + "step": 3057 + }, + { + "epoch": 42.47531673219746, + "grad_norm": 0.19665084779262543, + "learning_rate": 0.0006, + "loss": 3.625300884246826, + "step": 3058 + }, + { + "epoch": 42.489296636085626, + "grad_norm": 0.22506165504455566, + "learning_rate": 0.0006, + "loss": 3.592872142791748, + "step": 3059 + }, + { + "epoch": 42.50327653997379, + "grad_norm": 0.2051578164100647, + "learning_rate": 0.0006, + "loss": 3.6302249431610107, + "step": 3060 + }, + { + "epoch": 42.517256443861946, + "grad_norm": 0.18957172334194183, + "learning_rate": 0.0006, + "loss": 3.6277074813842773, + "step": 3061 + }, + { + "epoch": 42.53123634775011, + "grad_norm": 0.21467208862304688, + "learning_rate": 0.0006, + "loss": 3.6121392250061035, + "step": 3062 + }, + { + "epoch": 42.54521625163827, + "grad_norm": 0.21618402004241943, + "learning_rate": 0.0006, + "loss": 3.664738655090332, + "step": 3063 + }, + { + "epoch": 42.55919615552643, + "grad_norm": 0.2259770780801773, + "learning_rate": 0.0006, + "loss": 3.652042865753174, + "step": 3064 + }, + { + "epoch": 42.57317605941459, + "grad_norm": 0.22667232155799866, + "learning_rate": 0.0006, + "loss": 3.6552934646606445, + "step": 3065 + }, + { + "epoch": 42.58715596330275, + "grad_norm": 0.21405228972434998, + "learning_rate": 0.0006, + "loss": 3.644043445587158, + "step": 3066 + }, + { + "epoch": 42.60113586719091, + "grad_norm": 0.20855450630187988, + "learning_rate": 0.0006, + "loss": 3.6534876823425293, + "step": 3067 + }, + { + "epoch": 42.615115771079076, + "grad_norm": 0.22474415600299835, + "learning_rate": 0.0006, + "loss": 3.656677484512329, + "step": 3068 + }, + { + "epoch": 42.62909567496723, + "grad_norm": 0.23401428759098053, + "learning_rate": 0.0006, + "loss": 3.6788997650146484, + "step": 3069 + }, + { + "epoch": 42.643075578855395, + "grad_norm": 0.21567967534065247, + "learning_rate": 0.0006, + "loss": 3.675379753112793, + "step": 3070 + }, + { + "epoch": 42.65705548274356, + "grad_norm": 0.21704941987991333, + "learning_rate": 0.0006, + "loss": 3.630707263946533, + "step": 3071 + }, + { + "epoch": 42.671035386631715, + "grad_norm": 0.2718963921070099, + "learning_rate": 0.0006, + "loss": 3.6653294563293457, + "step": 3072 + }, + { + "epoch": 42.68501529051988, + "grad_norm": 0.30198901891708374, + "learning_rate": 0.0006, + "loss": 3.6761326789855957, + "step": 3073 + }, + { + "epoch": 42.69899519440804, + "grad_norm": 0.27593618631362915, + "learning_rate": 0.0006, + "loss": 3.6610732078552246, + "step": 3074 + }, + { + "epoch": 42.7129750982962, + "grad_norm": 0.22495242953300476, + "learning_rate": 0.0006, + "loss": 3.656907320022583, + "step": 3075 + }, + { + "epoch": 42.72695500218436, + "grad_norm": 0.19872353971004486, + "learning_rate": 0.0006, + "loss": 3.6611597537994385, + "step": 3076 + }, + { + "epoch": 42.74093490607252, + "grad_norm": 0.21527111530303955, + "learning_rate": 0.0006, + "loss": 3.676821708679199, + "step": 3077 + }, + { + "epoch": 42.75491480996068, + "grad_norm": 0.22314463555812836, + "learning_rate": 0.0006, + "loss": 3.629460334777832, + "step": 3078 + }, + { + "epoch": 42.768894713848844, + "grad_norm": 0.23461024463176727, + "learning_rate": 0.0006, + "loss": 3.665390968322754, + "step": 3079 + }, + { + "epoch": 42.782874617737, + "grad_norm": 0.2582414448261261, + "learning_rate": 0.0006, + "loss": 3.6420979499816895, + "step": 3080 + }, + { + "epoch": 42.796854521625164, + "grad_norm": 0.2505052983760834, + "learning_rate": 0.0006, + "loss": 3.67236328125, + "step": 3081 + }, + { + "epoch": 42.81083442551333, + "grad_norm": 0.22617632150650024, + "learning_rate": 0.0006, + "loss": 3.654897689819336, + "step": 3082 + }, + { + "epoch": 42.824814329401484, + "grad_norm": 0.2340085208415985, + "learning_rate": 0.0006, + "loss": 3.6423635482788086, + "step": 3083 + }, + { + "epoch": 42.83879423328965, + "grad_norm": 0.26765671372413635, + "learning_rate": 0.0006, + "loss": 3.622769832611084, + "step": 3084 + }, + { + "epoch": 42.8527741371778, + "grad_norm": 0.29490381479263306, + "learning_rate": 0.0006, + "loss": 3.656053066253662, + "step": 3085 + }, + { + "epoch": 42.86675404106597, + "grad_norm": 0.29776132106781006, + "learning_rate": 0.0006, + "loss": 3.6454644203186035, + "step": 3086 + }, + { + "epoch": 42.88073394495413, + "grad_norm": 0.23994849622249603, + "learning_rate": 0.0006, + "loss": 3.674665927886963, + "step": 3087 + }, + { + "epoch": 42.89471384884229, + "grad_norm": 0.21456265449523926, + "learning_rate": 0.0006, + "loss": 3.670175790786743, + "step": 3088 + }, + { + "epoch": 42.90869375273045, + "grad_norm": 0.25727778673171997, + "learning_rate": 0.0006, + "loss": 3.6425390243530273, + "step": 3089 + }, + { + "epoch": 42.92267365661861, + "grad_norm": 0.30310627818107605, + "learning_rate": 0.0006, + "loss": 3.68511962890625, + "step": 3090 + }, + { + "epoch": 42.93665356050677, + "grad_norm": 0.2792291045188904, + "learning_rate": 0.0006, + "loss": 3.681732654571533, + "step": 3091 + }, + { + "epoch": 42.95063346439493, + "grad_norm": 0.23614276945590973, + "learning_rate": 0.0006, + "loss": 3.6417222023010254, + "step": 3092 + }, + { + "epoch": 42.964613368283096, + "grad_norm": 0.23602448403835297, + "learning_rate": 0.0006, + "loss": 3.6602869033813477, + "step": 3093 + }, + { + "epoch": 42.97859327217125, + "grad_norm": 0.21968287229537964, + "learning_rate": 0.0006, + "loss": 3.6618118286132812, + "step": 3094 + }, + { + "epoch": 42.992573176059416, + "grad_norm": 0.2177523374557495, + "learning_rate": 0.0006, + "loss": 3.666904926300049, + "step": 3095 + }, + { + "epoch": 43.0, + "grad_norm": 0.23960894346237183, + "learning_rate": 0.0006, + "loss": 3.710965633392334, + "step": 3096 + }, + { + "epoch": 43.0, + "eval_loss": 3.977475166320801, + "eval_runtime": 44.5209, + "eval_samples_per_second": 54.851, + "eval_steps_per_second": 3.437, + "step": 3096 + }, + { + "epoch": 43.01397990388816, + "grad_norm": 0.24180234968662262, + "learning_rate": 0.0006, + "loss": 3.5949223041534424, + "step": 3097 + }, + { + "epoch": 43.02795980777632, + "grad_norm": 0.3331127166748047, + "learning_rate": 0.0006, + "loss": 3.625802755355835, + "step": 3098 + }, + { + "epoch": 43.04193971166448, + "grad_norm": 0.38338130712509155, + "learning_rate": 0.0006, + "loss": 3.6390271186828613, + "step": 3099 + }, + { + "epoch": 43.05591961555265, + "grad_norm": 0.32292598485946655, + "learning_rate": 0.0006, + "loss": 3.630621910095215, + "step": 3100 + }, + { + "epoch": 43.0698995194408, + "grad_norm": 0.24179677665233612, + "learning_rate": 0.0006, + "loss": 3.6124491691589355, + "step": 3101 + }, + { + "epoch": 43.083879423328966, + "grad_norm": 0.2622842788696289, + "learning_rate": 0.0006, + "loss": 3.6207399368286133, + "step": 3102 + }, + { + "epoch": 43.09785932721712, + "grad_norm": 0.264297217130661, + "learning_rate": 0.0006, + "loss": 3.637218475341797, + "step": 3103 + }, + { + "epoch": 43.111839231105286, + "grad_norm": 0.25815117359161377, + "learning_rate": 0.0006, + "loss": 3.614841938018799, + "step": 3104 + }, + { + "epoch": 43.12581913499345, + "grad_norm": 0.2209406942129135, + "learning_rate": 0.0006, + "loss": 3.604722738265991, + "step": 3105 + }, + { + "epoch": 43.139799038881605, + "grad_norm": 0.22333410382270813, + "learning_rate": 0.0006, + "loss": 3.6388449668884277, + "step": 3106 + }, + { + "epoch": 43.15377894276977, + "grad_norm": 0.2194417119026184, + "learning_rate": 0.0006, + "loss": 3.611644744873047, + "step": 3107 + }, + { + "epoch": 43.16775884665793, + "grad_norm": 0.21270349621772766, + "learning_rate": 0.0006, + "loss": 3.6180214881896973, + "step": 3108 + }, + { + "epoch": 43.18173875054609, + "grad_norm": 0.21358032524585724, + "learning_rate": 0.0006, + "loss": 3.646512985229492, + "step": 3109 + }, + { + "epoch": 43.19571865443425, + "grad_norm": 0.2180788666009903, + "learning_rate": 0.0006, + "loss": 3.641981363296509, + "step": 3110 + }, + { + "epoch": 43.20969855832241, + "grad_norm": 0.21979685127735138, + "learning_rate": 0.0006, + "loss": 3.6251654624938965, + "step": 3111 + }, + { + "epoch": 43.22367846221057, + "grad_norm": 0.2072533220052719, + "learning_rate": 0.0006, + "loss": 3.665372371673584, + "step": 3112 + }, + { + "epoch": 43.237658366098735, + "grad_norm": 0.2085742950439453, + "learning_rate": 0.0006, + "loss": 3.647730827331543, + "step": 3113 + }, + { + "epoch": 43.25163826998689, + "grad_norm": 0.1934993416070938, + "learning_rate": 0.0006, + "loss": 3.6296567916870117, + "step": 3114 + }, + { + "epoch": 43.265618173875055, + "grad_norm": 0.1954783797264099, + "learning_rate": 0.0006, + "loss": 3.6412858963012695, + "step": 3115 + }, + { + "epoch": 43.27959807776322, + "grad_norm": 0.1932750642299652, + "learning_rate": 0.0006, + "loss": 3.6246860027313232, + "step": 3116 + }, + { + "epoch": 43.293577981651374, + "grad_norm": 0.19765302538871765, + "learning_rate": 0.0006, + "loss": 3.618922710418701, + "step": 3117 + }, + { + "epoch": 43.30755788553954, + "grad_norm": 0.1987425684928894, + "learning_rate": 0.0006, + "loss": 3.633185863494873, + "step": 3118 + }, + { + "epoch": 43.3215377894277, + "grad_norm": 0.1894739419221878, + "learning_rate": 0.0006, + "loss": 3.595709800720215, + "step": 3119 + }, + { + "epoch": 43.33551769331586, + "grad_norm": 0.19455872476100922, + "learning_rate": 0.0006, + "loss": 3.6309051513671875, + "step": 3120 + }, + { + "epoch": 43.34949759720402, + "grad_norm": 0.21448275446891785, + "learning_rate": 0.0006, + "loss": 3.6425981521606445, + "step": 3121 + }, + { + "epoch": 43.36347750109218, + "grad_norm": 0.24527893960475922, + "learning_rate": 0.0006, + "loss": 3.6497793197631836, + "step": 3122 + }, + { + "epoch": 43.37745740498034, + "grad_norm": 0.253231942653656, + "learning_rate": 0.0006, + "loss": 3.644453525543213, + "step": 3123 + }, + { + "epoch": 43.391437308868504, + "grad_norm": 0.2048978954553604, + "learning_rate": 0.0006, + "loss": 3.5963876247406006, + "step": 3124 + }, + { + "epoch": 43.40541721275666, + "grad_norm": 0.19951528310775757, + "learning_rate": 0.0006, + "loss": 3.6274406909942627, + "step": 3125 + }, + { + "epoch": 43.419397116644824, + "grad_norm": 0.2293875813484192, + "learning_rate": 0.0006, + "loss": 3.6482725143432617, + "step": 3126 + }, + { + "epoch": 43.43337702053299, + "grad_norm": 0.22379456460475922, + "learning_rate": 0.0006, + "loss": 3.6466073989868164, + "step": 3127 + }, + { + "epoch": 43.44735692442114, + "grad_norm": 0.2275441288948059, + "learning_rate": 0.0006, + "loss": 3.6529078483581543, + "step": 3128 + }, + { + "epoch": 43.46133682830931, + "grad_norm": 0.23014242947101593, + "learning_rate": 0.0006, + "loss": 3.6084837913513184, + "step": 3129 + }, + { + "epoch": 43.47531673219746, + "grad_norm": 0.22280924022197723, + "learning_rate": 0.0006, + "loss": 3.611320734024048, + "step": 3130 + }, + { + "epoch": 43.489296636085626, + "grad_norm": 0.19498756527900696, + "learning_rate": 0.0006, + "loss": 3.630185604095459, + "step": 3131 + }, + { + "epoch": 43.50327653997379, + "grad_norm": 0.21357767283916473, + "learning_rate": 0.0006, + "loss": 3.6509933471679688, + "step": 3132 + }, + { + "epoch": 43.517256443861946, + "grad_norm": 0.21775896847248077, + "learning_rate": 0.0006, + "loss": 3.635112762451172, + "step": 3133 + }, + { + "epoch": 43.53123634775011, + "grad_norm": 0.2035629004240036, + "learning_rate": 0.0006, + "loss": 3.658327102661133, + "step": 3134 + }, + { + "epoch": 43.54521625163827, + "grad_norm": 0.20083840191364288, + "learning_rate": 0.0006, + "loss": 3.632441997528076, + "step": 3135 + }, + { + "epoch": 43.55919615552643, + "grad_norm": 0.1922001987695694, + "learning_rate": 0.0006, + "loss": 3.6417734622955322, + "step": 3136 + }, + { + "epoch": 43.57317605941459, + "grad_norm": 0.21049264073371887, + "learning_rate": 0.0006, + "loss": 3.671274423599243, + "step": 3137 + }, + { + "epoch": 43.58715596330275, + "grad_norm": 0.21432001888751984, + "learning_rate": 0.0006, + "loss": 3.6216118335723877, + "step": 3138 + }, + { + "epoch": 43.60113586719091, + "grad_norm": 0.25448811054229736, + "learning_rate": 0.0006, + "loss": 3.658283233642578, + "step": 3139 + }, + { + "epoch": 43.615115771079076, + "grad_norm": 0.24313904345035553, + "learning_rate": 0.0006, + "loss": 3.6447594165802, + "step": 3140 + }, + { + "epoch": 43.62909567496723, + "grad_norm": 0.2332659363746643, + "learning_rate": 0.0006, + "loss": 3.625528573989868, + "step": 3141 + }, + { + "epoch": 43.643075578855395, + "grad_norm": 0.23222137987613678, + "learning_rate": 0.0006, + "loss": 3.6524429321289062, + "step": 3142 + }, + { + "epoch": 43.65705548274356, + "grad_norm": 0.2147051990032196, + "learning_rate": 0.0006, + "loss": 3.6517302989959717, + "step": 3143 + }, + { + "epoch": 43.671035386631715, + "grad_norm": 0.2464994341135025, + "learning_rate": 0.0006, + "loss": 3.654947519302368, + "step": 3144 + }, + { + "epoch": 43.68501529051988, + "grad_norm": 0.2365981936454773, + "learning_rate": 0.0006, + "loss": 3.638695240020752, + "step": 3145 + }, + { + "epoch": 43.69899519440804, + "grad_norm": 0.2325262874364853, + "learning_rate": 0.0006, + "loss": 3.6496055126190186, + "step": 3146 + }, + { + "epoch": 43.7129750982962, + "grad_norm": 0.2196085900068283, + "learning_rate": 0.0006, + "loss": 3.6323978900909424, + "step": 3147 + }, + { + "epoch": 43.72695500218436, + "grad_norm": 0.20404237508773804, + "learning_rate": 0.0006, + "loss": 3.6572763919830322, + "step": 3148 + }, + { + "epoch": 43.74093490607252, + "grad_norm": 0.2363257110118866, + "learning_rate": 0.0006, + "loss": 3.6347732543945312, + "step": 3149 + }, + { + "epoch": 43.75491480996068, + "grad_norm": 0.23671524226665497, + "learning_rate": 0.0006, + "loss": 3.650017023086548, + "step": 3150 + }, + { + "epoch": 43.768894713848844, + "grad_norm": 0.20892305672168732, + "learning_rate": 0.0006, + "loss": 3.638185977935791, + "step": 3151 + }, + { + "epoch": 43.782874617737, + "grad_norm": 0.18670055270195007, + "learning_rate": 0.0006, + "loss": 3.6647696495056152, + "step": 3152 + }, + { + "epoch": 43.796854521625164, + "grad_norm": 0.21818184852600098, + "learning_rate": 0.0006, + "loss": 3.663623332977295, + "step": 3153 + }, + { + "epoch": 43.81083442551333, + "grad_norm": 0.23472464084625244, + "learning_rate": 0.0006, + "loss": 3.650595188140869, + "step": 3154 + }, + { + "epoch": 43.824814329401484, + "grad_norm": 0.2266419678926468, + "learning_rate": 0.0006, + "loss": 3.6362059116363525, + "step": 3155 + }, + { + "epoch": 43.83879423328965, + "grad_norm": 0.2250787913799286, + "learning_rate": 0.0006, + "loss": 3.647970199584961, + "step": 3156 + }, + { + "epoch": 43.8527741371778, + "grad_norm": 0.21493776142597198, + "learning_rate": 0.0006, + "loss": 3.6510982513427734, + "step": 3157 + }, + { + "epoch": 43.86675404106597, + "grad_norm": 0.20783160626888275, + "learning_rate": 0.0006, + "loss": 3.654845714569092, + "step": 3158 + }, + { + "epoch": 43.88073394495413, + "grad_norm": 0.2222554087638855, + "learning_rate": 0.0006, + "loss": 3.6565685272216797, + "step": 3159 + }, + { + "epoch": 43.89471384884229, + "grad_norm": 0.2148049771785736, + "learning_rate": 0.0006, + "loss": 3.630779266357422, + "step": 3160 + }, + { + "epoch": 43.90869375273045, + "grad_norm": 0.2222086787223816, + "learning_rate": 0.0006, + "loss": 3.6312813758850098, + "step": 3161 + }, + { + "epoch": 43.92267365661861, + "grad_norm": 0.24049264192581177, + "learning_rate": 0.0006, + "loss": 3.6185736656188965, + "step": 3162 + }, + { + "epoch": 43.93665356050677, + "grad_norm": 0.2228843867778778, + "learning_rate": 0.0006, + "loss": 3.595583438873291, + "step": 3163 + }, + { + "epoch": 43.95063346439493, + "grad_norm": 0.20714408159255981, + "learning_rate": 0.0006, + "loss": 3.6649322509765625, + "step": 3164 + }, + { + "epoch": 43.964613368283096, + "grad_norm": 0.2048991471529007, + "learning_rate": 0.0006, + "loss": 3.6513710021972656, + "step": 3165 + }, + { + "epoch": 43.97859327217125, + "grad_norm": 0.21874114871025085, + "learning_rate": 0.0006, + "loss": 3.6471524238586426, + "step": 3166 + }, + { + "epoch": 43.992573176059416, + "grad_norm": 0.21309879422187805, + "learning_rate": 0.0006, + "loss": 3.647021770477295, + "step": 3167 + }, + { + "epoch": 44.0, + "grad_norm": 0.23717166483402252, + "learning_rate": 0.0006, + "loss": 3.6903820037841797, + "step": 3168 + }, + { + "epoch": 44.0, + "eval_loss": 3.9844837188720703, + "eval_runtime": 44.29, + "eval_samples_per_second": 55.137, + "eval_steps_per_second": 3.455, + "step": 3168 + }, + { + "epoch": 44.01397990388816, + "grad_norm": 0.21503832936286926, + "learning_rate": 0.0006, + "loss": 3.6054744720458984, + "step": 3169 + }, + { + "epoch": 44.02795980777632, + "grad_norm": 0.2289554923772812, + "learning_rate": 0.0006, + "loss": 3.6560556888580322, + "step": 3170 + }, + { + "epoch": 44.04193971166448, + "grad_norm": 0.24250416457653046, + "learning_rate": 0.0006, + "loss": 3.611820697784424, + "step": 3171 + }, + { + "epoch": 44.05591961555265, + "grad_norm": 0.2526668310165405, + "learning_rate": 0.0006, + "loss": 3.6273183822631836, + "step": 3172 + }, + { + "epoch": 44.0698995194408, + "grad_norm": 0.26702383160591125, + "learning_rate": 0.0006, + "loss": 3.5856852531433105, + "step": 3173 + }, + { + "epoch": 44.083879423328966, + "grad_norm": 0.2715195417404175, + "learning_rate": 0.0006, + "loss": 3.631045341491699, + "step": 3174 + }, + { + "epoch": 44.09785932721712, + "grad_norm": 0.3505614995956421, + "learning_rate": 0.0006, + "loss": 3.628720760345459, + "step": 3175 + }, + { + "epoch": 44.111839231105286, + "grad_norm": 0.2760702967643738, + "learning_rate": 0.0006, + "loss": 3.6283509731292725, + "step": 3176 + }, + { + "epoch": 44.12581913499345, + "grad_norm": 0.21105222404003143, + "learning_rate": 0.0006, + "loss": 3.6495566368103027, + "step": 3177 + }, + { + "epoch": 44.139799038881605, + "grad_norm": 0.2852860987186432, + "learning_rate": 0.0006, + "loss": 3.640768527984619, + "step": 3178 + }, + { + "epoch": 44.15377894276977, + "grad_norm": 0.2941005825996399, + "learning_rate": 0.0006, + "loss": 3.6303114891052246, + "step": 3179 + }, + { + "epoch": 44.16775884665793, + "grad_norm": 0.2792299687862396, + "learning_rate": 0.0006, + "loss": 3.6053574085235596, + "step": 3180 + }, + { + "epoch": 44.18173875054609, + "grad_norm": 0.23168638348579407, + "learning_rate": 0.0006, + "loss": 3.62430477142334, + "step": 3181 + }, + { + "epoch": 44.19571865443425, + "grad_norm": 0.23713921010494232, + "learning_rate": 0.0006, + "loss": 3.601106643676758, + "step": 3182 + }, + { + "epoch": 44.20969855832241, + "grad_norm": 0.23341049253940582, + "learning_rate": 0.0006, + "loss": 3.631762742996216, + "step": 3183 + }, + { + "epoch": 44.22367846221057, + "grad_norm": 0.23094508051872253, + "learning_rate": 0.0006, + "loss": 3.586683750152588, + "step": 3184 + }, + { + "epoch": 44.237658366098735, + "grad_norm": 0.24085712432861328, + "learning_rate": 0.0006, + "loss": 3.6251423358917236, + "step": 3185 + }, + { + "epoch": 44.25163826998689, + "grad_norm": 0.24999955296516418, + "learning_rate": 0.0006, + "loss": 3.6554198265075684, + "step": 3186 + }, + { + "epoch": 44.265618173875055, + "grad_norm": 0.21759621798992157, + "learning_rate": 0.0006, + "loss": 3.6249518394470215, + "step": 3187 + }, + { + "epoch": 44.27959807776322, + "grad_norm": 0.2490139901638031, + "learning_rate": 0.0006, + "loss": 3.6163341999053955, + "step": 3188 + }, + { + "epoch": 44.293577981651374, + "grad_norm": 0.23420892655849457, + "learning_rate": 0.0006, + "loss": 3.615469455718994, + "step": 3189 + }, + { + "epoch": 44.30755788553954, + "grad_norm": 0.2292138934135437, + "learning_rate": 0.0006, + "loss": 3.6085104942321777, + "step": 3190 + }, + { + "epoch": 44.3215377894277, + "grad_norm": 0.22595474123954773, + "learning_rate": 0.0006, + "loss": 3.6317405700683594, + "step": 3191 + }, + { + "epoch": 44.33551769331586, + "grad_norm": 0.22418338060379028, + "learning_rate": 0.0006, + "loss": 3.6287777423858643, + "step": 3192 + }, + { + "epoch": 44.34949759720402, + "grad_norm": 0.2453135848045349, + "learning_rate": 0.0006, + "loss": 3.6228437423706055, + "step": 3193 + }, + { + "epoch": 44.36347750109218, + "grad_norm": 0.2627771198749542, + "learning_rate": 0.0006, + "loss": 3.6581034660339355, + "step": 3194 + }, + { + "epoch": 44.37745740498034, + "grad_norm": 0.24114494025707245, + "learning_rate": 0.0006, + "loss": 3.653505563735962, + "step": 3195 + }, + { + "epoch": 44.391437308868504, + "grad_norm": 0.2103721648454666, + "learning_rate": 0.0006, + "loss": 3.5698580741882324, + "step": 3196 + }, + { + "epoch": 44.40541721275666, + "grad_norm": 0.21172291040420532, + "learning_rate": 0.0006, + "loss": 3.573453426361084, + "step": 3197 + }, + { + "epoch": 44.419397116644824, + "grad_norm": 0.20298106968402863, + "learning_rate": 0.0006, + "loss": 3.6350207328796387, + "step": 3198 + }, + { + "epoch": 44.43337702053299, + "grad_norm": 0.2029009759426117, + "learning_rate": 0.0006, + "loss": 3.6025917530059814, + "step": 3199 + }, + { + "epoch": 44.44735692442114, + "grad_norm": 0.18960542976856232, + "learning_rate": 0.0006, + "loss": 3.625028133392334, + "step": 3200 + }, + { + "epoch": 44.46133682830931, + "grad_norm": 0.20758579671382904, + "learning_rate": 0.0006, + "loss": 3.647071123123169, + "step": 3201 + }, + { + "epoch": 44.47531673219746, + "grad_norm": 0.21896769106388092, + "learning_rate": 0.0006, + "loss": 3.6481196880340576, + "step": 3202 + }, + { + "epoch": 44.489296636085626, + "grad_norm": 0.20817387104034424, + "learning_rate": 0.0006, + "loss": 3.629366874694824, + "step": 3203 + }, + { + "epoch": 44.50327653997379, + "grad_norm": 0.2099488228559494, + "learning_rate": 0.0006, + "loss": 3.6757798194885254, + "step": 3204 + }, + { + "epoch": 44.517256443861946, + "grad_norm": 0.21376627683639526, + "learning_rate": 0.0006, + "loss": 3.638324737548828, + "step": 3205 + }, + { + "epoch": 44.53123634775011, + "grad_norm": 0.19089072942733765, + "learning_rate": 0.0006, + "loss": 3.6497435569763184, + "step": 3206 + }, + { + "epoch": 44.54521625163827, + "grad_norm": 0.20489120483398438, + "learning_rate": 0.0006, + "loss": 3.634019374847412, + "step": 3207 + }, + { + "epoch": 44.55919615552643, + "grad_norm": 0.21991780400276184, + "learning_rate": 0.0006, + "loss": 3.6255834102630615, + "step": 3208 + }, + { + "epoch": 44.57317605941459, + "grad_norm": 0.23417581617832184, + "learning_rate": 0.0006, + "loss": 3.631927728652954, + "step": 3209 + }, + { + "epoch": 44.58715596330275, + "grad_norm": 0.22819049656391144, + "learning_rate": 0.0006, + "loss": 3.640167713165283, + "step": 3210 + }, + { + "epoch": 44.60113586719091, + "grad_norm": 0.21443316340446472, + "learning_rate": 0.0006, + "loss": 3.645709991455078, + "step": 3211 + }, + { + "epoch": 44.615115771079076, + "grad_norm": 0.19252653419971466, + "learning_rate": 0.0006, + "loss": 3.591294288635254, + "step": 3212 + }, + { + "epoch": 44.62909567496723, + "grad_norm": 0.18925397098064423, + "learning_rate": 0.0006, + "loss": 3.6163625717163086, + "step": 3213 + }, + { + "epoch": 44.643075578855395, + "grad_norm": 0.21605387330055237, + "learning_rate": 0.0006, + "loss": 3.6826887130737305, + "step": 3214 + }, + { + "epoch": 44.65705548274356, + "grad_norm": 0.21301978826522827, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 3215 + }, + { + "epoch": 44.671035386631715, + "grad_norm": 0.20065832138061523, + "learning_rate": 0.0006, + "loss": 3.648879289627075, + "step": 3216 + }, + { + "epoch": 44.68501529051988, + "grad_norm": 0.21413499116897583, + "learning_rate": 0.0006, + "loss": 3.6327264308929443, + "step": 3217 + }, + { + "epoch": 44.69899519440804, + "grad_norm": 0.22769849002361298, + "learning_rate": 0.0006, + "loss": 3.6486430168151855, + "step": 3218 + }, + { + "epoch": 44.7129750982962, + "grad_norm": 0.227064847946167, + "learning_rate": 0.0006, + "loss": 3.633342981338501, + "step": 3219 + }, + { + "epoch": 44.72695500218436, + "grad_norm": 0.21335656940937042, + "learning_rate": 0.0006, + "loss": 3.648621082305908, + "step": 3220 + }, + { + "epoch": 44.74093490607252, + "grad_norm": 0.2085563838481903, + "learning_rate": 0.0006, + "loss": 3.647826671600342, + "step": 3221 + }, + { + "epoch": 44.75491480996068, + "grad_norm": 0.19203904271125793, + "learning_rate": 0.0006, + "loss": 3.6296122074127197, + "step": 3222 + }, + { + "epoch": 44.768894713848844, + "grad_norm": 0.1969112604856491, + "learning_rate": 0.0006, + "loss": 3.6477179527282715, + "step": 3223 + }, + { + "epoch": 44.782874617737, + "grad_norm": 0.21630392968654633, + "learning_rate": 0.0006, + "loss": 3.628805637359619, + "step": 3224 + }, + { + "epoch": 44.796854521625164, + "grad_norm": 0.20641647279262543, + "learning_rate": 0.0006, + "loss": 3.650993824005127, + "step": 3225 + }, + { + "epoch": 44.81083442551333, + "grad_norm": 0.1954173892736435, + "learning_rate": 0.0006, + "loss": 3.6362831592559814, + "step": 3226 + }, + { + "epoch": 44.824814329401484, + "grad_norm": 0.20479747653007507, + "learning_rate": 0.0006, + "loss": 3.6467390060424805, + "step": 3227 + }, + { + "epoch": 44.83879423328965, + "grad_norm": 0.20502690970897675, + "learning_rate": 0.0006, + "loss": 3.6260130405426025, + "step": 3228 + }, + { + "epoch": 44.8527741371778, + "grad_norm": 0.20348094403743744, + "learning_rate": 0.0006, + "loss": 3.6836767196655273, + "step": 3229 + }, + { + "epoch": 44.86675404106597, + "grad_norm": 0.18748269975185394, + "learning_rate": 0.0006, + "loss": 3.610104560852051, + "step": 3230 + }, + { + "epoch": 44.88073394495413, + "grad_norm": 0.18822219967842102, + "learning_rate": 0.0006, + "loss": 3.61354398727417, + "step": 3231 + }, + { + "epoch": 44.89471384884229, + "grad_norm": 0.20972031354904175, + "learning_rate": 0.0006, + "loss": 3.644336700439453, + "step": 3232 + }, + { + "epoch": 44.90869375273045, + "grad_norm": 0.2013155072927475, + "learning_rate": 0.0006, + "loss": 3.659287929534912, + "step": 3233 + }, + { + "epoch": 44.92267365661861, + "grad_norm": 0.2056475579738617, + "learning_rate": 0.0006, + "loss": 3.6545677185058594, + "step": 3234 + }, + { + "epoch": 44.93665356050677, + "grad_norm": 0.2104482203722, + "learning_rate": 0.0006, + "loss": 3.6094017028808594, + "step": 3235 + }, + { + "epoch": 44.95063346439493, + "grad_norm": 0.1993035078048706, + "learning_rate": 0.0006, + "loss": 3.6209053993225098, + "step": 3236 + }, + { + "epoch": 44.964613368283096, + "grad_norm": 0.1883099526166916, + "learning_rate": 0.0006, + "loss": 3.6011457443237305, + "step": 3237 + }, + { + "epoch": 44.97859327217125, + "grad_norm": 0.1927674412727356, + "learning_rate": 0.0006, + "loss": 3.606609344482422, + "step": 3238 + }, + { + "epoch": 44.992573176059416, + "grad_norm": 0.1878899335861206, + "learning_rate": 0.0006, + "loss": 3.6701109409332275, + "step": 3239 + }, + { + "epoch": 45.0, + "grad_norm": 0.2237395942211151, + "learning_rate": 0.0006, + "loss": 3.6617302894592285, + "step": 3240 + }, + { + "epoch": 45.0, + "eval_loss": 3.9812564849853516, + "eval_runtime": 44.8635, + "eval_samples_per_second": 54.432, + "eval_steps_per_second": 3.41, + "step": 3240 + }, + { + "epoch": 45.01397990388816, + "grad_norm": 0.21368487179279327, + "learning_rate": 0.0006, + "loss": 3.599107265472412, + "step": 3241 + }, + { + "epoch": 45.02795980777632, + "grad_norm": 0.2234211564064026, + "learning_rate": 0.0006, + "loss": 3.5943236351013184, + "step": 3242 + }, + { + "epoch": 45.04193971166448, + "grad_norm": 0.2222544252872467, + "learning_rate": 0.0006, + "loss": 3.6152291297912598, + "step": 3243 + }, + { + "epoch": 45.05591961555265, + "grad_norm": 0.24686792492866516, + "learning_rate": 0.0006, + "loss": 3.6006085872650146, + "step": 3244 + }, + { + "epoch": 45.0698995194408, + "grad_norm": 0.24634984135627747, + "learning_rate": 0.0006, + "loss": 3.6023471355438232, + "step": 3245 + }, + { + "epoch": 45.083879423328966, + "grad_norm": 0.2150750756263733, + "learning_rate": 0.0006, + "loss": 3.5690598487854004, + "step": 3246 + }, + { + "epoch": 45.09785932721712, + "grad_norm": 0.196721151471138, + "learning_rate": 0.0006, + "loss": 3.592653751373291, + "step": 3247 + }, + { + "epoch": 45.111839231105286, + "grad_norm": 0.21874476969242096, + "learning_rate": 0.0006, + "loss": 3.586243152618408, + "step": 3248 + }, + { + "epoch": 45.12581913499345, + "grad_norm": 0.21021611988544464, + "learning_rate": 0.0006, + "loss": 3.599384307861328, + "step": 3249 + }, + { + "epoch": 45.139799038881605, + "grad_norm": 0.19754183292388916, + "learning_rate": 0.0006, + "loss": 3.623816967010498, + "step": 3250 + }, + { + "epoch": 45.15377894276977, + "grad_norm": 0.21218672394752502, + "learning_rate": 0.0006, + "loss": 3.5901236534118652, + "step": 3251 + }, + { + "epoch": 45.16775884665793, + "grad_norm": 0.23569360375404358, + "learning_rate": 0.0006, + "loss": 3.600029945373535, + "step": 3252 + }, + { + "epoch": 45.18173875054609, + "grad_norm": 0.25429826974868774, + "learning_rate": 0.0006, + "loss": 3.607773542404175, + "step": 3253 + }, + { + "epoch": 45.19571865443425, + "grad_norm": 0.23416805267333984, + "learning_rate": 0.0006, + "loss": 3.63248348236084, + "step": 3254 + }, + { + "epoch": 45.20969855832241, + "grad_norm": 0.20821864902973175, + "learning_rate": 0.0006, + "loss": 3.641927719116211, + "step": 3255 + }, + { + "epoch": 45.22367846221057, + "grad_norm": 0.21849380433559418, + "learning_rate": 0.0006, + "loss": 3.665098190307617, + "step": 3256 + }, + { + "epoch": 45.237658366098735, + "grad_norm": 0.22939491271972656, + "learning_rate": 0.0006, + "loss": 3.6106104850769043, + "step": 3257 + }, + { + "epoch": 45.25163826998689, + "grad_norm": 0.24144501984119415, + "learning_rate": 0.0006, + "loss": 3.5872416496276855, + "step": 3258 + }, + { + "epoch": 45.265618173875055, + "grad_norm": 0.21790480613708496, + "learning_rate": 0.0006, + "loss": 3.6268889904022217, + "step": 3259 + }, + { + "epoch": 45.27959807776322, + "grad_norm": 0.22702264785766602, + "learning_rate": 0.0006, + "loss": 3.5972542762756348, + "step": 3260 + }, + { + "epoch": 45.293577981651374, + "grad_norm": 0.22465437650680542, + "learning_rate": 0.0006, + "loss": 3.6339592933654785, + "step": 3261 + }, + { + "epoch": 45.30755788553954, + "grad_norm": 0.21804460883140564, + "learning_rate": 0.0006, + "loss": 3.6062779426574707, + "step": 3262 + }, + { + "epoch": 45.3215377894277, + "grad_norm": 0.1985616534948349, + "learning_rate": 0.0006, + "loss": 3.629815101623535, + "step": 3263 + }, + { + "epoch": 45.33551769331586, + "grad_norm": 0.22264975309371948, + "learning_rate": 0.0006, + "loss": 3.631214141845703, + "step": 3264 + }, + { + "epoch": 45.34949759720402, + "grad_norm": 0.22178539633750916, + "learning_rate": 0.0006, + "loss": 3.620854377746582, + "step": 3265 + }, + { + "epoch": 45.36347750109218, + "grad_norm": 0.22392240166664124, + "learning_rate": 0.0006, + "loss": 3.6611738204956055, + "step": 3266 + }, + { + "epoch": 45.37745740498034, + "grad_norm": 0.2178916484117508, + "learning_rate": 0.0006, + "loss": 3.639893054962158, + "step": 3267 + }, + { + "epoch": 45.391437308868504, + "grad_norm": 0.2173885703086853, + "learning_rate": 0.0006, + "loss": 3.611750364303589, + "step": 3268 + }, + { + "epoch": 45.40541721275666, + "grad_norm": 0.2107069045305252, + "learning_rate": 0.0006, + "loss": 3.595181465148926, + "step": 3269 + }, + { + "epoch": 45.419397116644824, + "grad_norm": 0.19623015820980072, + "learning_rate": 0.0006, + "loss": 3.6096351146698, + "step": 3270 + }, + { + "epoch": 45.43337702053299, + "grad_norm": 0.23091304302215576, + "learning_rate": 0.0006, + "loss": 3.603667974472046, + "step": 3271 + }, + { + "epoch": 45.44735692442114, + "grad_norm": 0.22909007966518402, + "learning_rate": 0.0006, + "loss": 3.62846040725708, + "step": 3272 + }, + { + "epoch": 45.46133682830931, + "grad_norm": 0.2104928195476532, + "learning_rate": 0.0006, + "loss": 3.6543164253234863, + "step": 3273 + }, + { + "epoch": 45.47531673219746, + "grad_norm": 0.22994203865528107, + "learning_rate": 0.0006, + "loss": 3.621878147125244, + "step": 3274 + }, + { + "epoch": 45.489296636085626, + "grad_norm": 0.21652749180793762, + "learning_rate": 0.0006, + "loss": 3.6095705032348633, + "step": 3275 + }, + { + "epoch": 45.50327653997379, + "grad_norm": 0.20125073194503784, + "learning_rate": 0.0006, + "loss": 3.6213903427124023, + "step": 3276 + }, + { + "epoch": 45.517256443861946, + "grad_norm": 0.19995734095573425, + "learning_rate": 0.0006, + "loss": 3.6526503562927246, + "step": 3277 + }, + { + "epoch": 45.53123634775011, + "grad_norm": 0.2071387618780136, + "learning_rate": 0.0006, + "loss": 3.626208782196045, + "step": 3278 + }, + { + "epoch": 45.54521625163827, + "grad_norm": 0.222015842795372, + "learning_rate": 0.0006, + "loss": 3.61144757270813, + "step": 3279 + }, + { + "epoch": 45.55919615552643, + "grad_norm": 0.20780639350414276, + "learning_rate": 0.0006, + "loss": 3.64092755317688, + "step": 3280 + }, + { + "epoch": 45.57317605941459, + "grad_norm": 0.19297364354133606, + "learning_rate": 0.0006, + "loss": 3.6308364868164062, + "step": 3281 + }, + { + "epoch": 45.58715596330275, + "grad_norm": 0.1928786337375641, + "learning_rate": 0.0006, + "loss": 3.6258254051208496, + "step": 3282 + }, + { + "epoch": 45.60113586719091, + "grad_norm": 0.1940007209777832, + "learning_rate": 0.0006, + "loss": 3.622849464416504, + "step": 3283 + }, + { + "epoch": 45.615115771079076, + "grad_norm": 0.19643044471740723, + "learning_rate": 0.0006, + "loss": 3.6461117267608643, + "step": 3284 + }, + { + "epoch": 45.62909567496723, + "grad_norm": 0.19996654987335205, + "learning_rate": 0.0006, + "loss": 3.61572265625, + "step": 3285 + }, + { + "epoch": 45.643075578855395, + "grad_norm": 0.20202603936195374, + "learning_rate": 0.0006, + "loss": 3.610734462738037, + "step": 3286 + }, + { + "epoch": 45.65705548274356, + "grad_norm": 0.19249361753463745, + "learning_rate": 0.0006, + "loss": 3.607048511505127, + "step": 3287 + }, + { + "epoch": 45.671035386631715, + "grad_norm": 0.1894780397415161, + "learning_rate": 0.0006, + "loss": 3.6450905799865723, + "step": 3288 + }, + { + "epoch": 45.68501529051988, + "grad_norm": 0.19901636242866516, + "learning_rate": 0.0006, + "loss": 3.6313018798828125, + "step": 3289 + }, + { + "epoch": 45.69899519440804, + "grad_norm": 0.1875065118074417, + "learning_rate": 0.0006, + "loss": 3.641326427459717, + "step": 3290 + }, + { + "epoch": 45.7129750982962, + "grad_norm": 0.19832095503807068, + "learning_rate": 0.0006, + "loss": 3.6612308025360107, + "step": 3291 + }, + { + "epoch": 45.72695500218436, + "grad_norm": 0.20353806018829346, + "learning_rate": 0.0006, + "loss": 3.623152017593384, + "step": 3292 + }, + { + "epoch": 45.74093490607252, + "grad_norm": 0.1984023153781891, + "learning_rate": 0.0006, + "loss": 3.627358913421631, + "step": 3293 + }, + { + "epoch": 45.75491480996068, + "grad_norm": 0.2002221643924713, + "learning_rate": 0.0006, + "loss": 3.6334757804870605, + "step": 3294 + }, + { + "epoch": 45.768894713848844, + "grad_norm": 0.21099092066287994, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3295 + }, + { + "epoch": 45.782874617737, + "grad_norm": 0.19109416007995605, + "learning_rate": 0.0006, + "loss": 3.62795352935791, + "step": 3296 + }, + { + "epoch": 45.796854521625164, + "grad_norm": 0.18424192070960999, + "learning_rate": 0.0006, + "loss": 3.6151700019836426, + "step": 3297 + }, + { + "epoch": 45.81083442551333, + "grad_norm": 0.20823849737644196, + "learning_rate": 0.0006, + "loss": 3.641907215118408, + "step": 3298 + }, + { + "epoch": 45.824814329401484, + "grad_norm": 0.21407285332679749, + "learning_rate": 0.0006, + "loss": 3.6430726051330566, + "step": 3299 + }, + { + "epoch": 45.83879423328965, + "grad_norm": 0.23493780195713043, + "learning_rate": 0.0006, + "loss": 3.610065460205078, + "step": 3300 + }, + { + "epoch": 45.8527741371778, + "grad_norm": 0.21910642087459564, + "learning_rate": 0.0006, + "loss": 3.630603313446045, + "step": 3301 + }, + { + "epoch": 45.86675404106597, + "grad_norm": 0.1838075965642929, + "learning_rate": 0.0006, + "loss": 3.634315013885498, + "step": 3302 + }, + { + "epoch": 45.88073394495413, + "grad_norm": 0.22131477296352386, + "learning_rate": 0.0006, + "loss": 3.6142020225524902, + "step": 3303 + }, + { + "epoch": 45.89471384884229, + "grad_norm": 0.2497209906578064, + "learning_rate": 0.0006, + "loss": 3.689103126525879, + "step": 3304 + }, + { + "epoch": 45.90869375273045, + "grad_norm": 0.24403175711631775, + "learning_rate": 0.0006, + "loss": 3.6321184635162354, + "step": 3305 + }, + { + "epoch": 45.92267365661861, + "grad_norm": 0.22527103126049042, + "learning_rate": 0.0006, + "loss": 3.6486921310424805, + "step": 3306 + }, + { + "epoch": 45.93665356050677, + "grad_norm": 0.20127955079078674, + "learning_rate": 0.0006, + "loss": 3.6109299659729004, + "step": 3307 + }, + { + "epoch": 45.95063346439493, + "grad_norm": 0.18997317552566528, + "learning_rate": 0.0006, + "loss": 3.6157617568969727, + "step": 3308 + }, + { + "epoch": 45.964613368283096, + "grad_norm": 0.19921870529651642, + "learning_rate": 0.0006, + "loss": 3.691776990890503, + "step": 3309 + }, + { + "epoch": 45.97859327217125, + "grad_norm": 0.2124646008014679, + "learning_rate": 0.0006, + "loss": 3.61795711517334, + "step": 3310 + }, + { + "epoch": 45.992573176059416, + "grad_norm": 0.20002500712871552, + "learning_rate": 0.0006, + "loss": 3.6266353130340576, + "step": 3311 + }, + { + "epoch": 46.0, + "grad_norm": 0.22992220520973206, + "learning_rate": 0.0006, + "loss": 3.647242784500122, + "step": 3312 + }, + { + "epoch": 46.0, + "eval_loss": 3.9855220317840576, + "eval_runtime": 44.9108, + "eval_samples_per_second": 54.374, + "eval_steps_per_second": 3.407, + "step": 3312 + }, + { + "epoch": 46.01397990388816, + "grad_norm": 0.1976146101951599, + "learning_rate": 0.0006, + "loss": 3.5675041675567627, + "step": 3313 + }, + { + "epoch": 46.02795980777632, + "grad_norm": 0.2238360494375229, + "learning_rate": 0.0006, + "loss": 3.6077466011047363, + "step": 3314 + }, + { + "epoch": 46.04193971166448, + "grad_norm": 0.288669228553772, + "learning_rate": 0.0006, + "loss": 3.589958667755127, + "step": 3315 + }, + { + "epoch": 46.05591961555265, + "grad_norm": 0.30626827478408813, + "learning_rate": 0.0006, + "loss": 3.604401111602783, + "step": 3316 + }, + { + "epoch": 46.0698995194408, + "grad_norm": 0.2721095681190491, + "learning_rate": 0.0006, + "loss": 3.620197296142578, + "step": 3317 + }, + { + "epoch": 46.083879423328966, + "grad_norm": 0.2152107059955597, + "learning_rate": 0.0006, + "loss": 3.607327938079834, + "step": 3318 + }, + { + "epoch": 46.09785932721712, + "grad_norm": 0.2205267995595932, + "learning_rate": 0.0006, + "loss": 3.6020898818969727, + "step": 3319 + }, + { + "epoch": 46.111839231105286, + "grad_norm": 0.25419551134109497, + "learning_rate": 0.0006, + "loss": 3.59277606010437, + "step": 3320 + }, + { + "epoch": 46.12581913499345, + "grad_norm": 0.2379811704158783, + "learning_rate": 0.0006, + "loss": 3.560422897338867, + "step": 3321 + }, + { + "epoch": 46.139799038881605, + "grad_norm": 0.20928747951984406, + "learning_rate": 0.0006, + "loss": 3.6373965740203857, + "step": 3322 + }, + { + "epoch": 46.15377894276977, + "grad_norm": 0.21654292941093445, + "learning_rate": 0.0006, + "loss": 3.620784282684326, + "step": 3323 + }, + { + "epoch": 46.16775884665793, + "grad_norm": 0.22994576394557953, + "learning_rate": 0.0006, + "loss": 3.589960813522339, + "step": 3324 + }, + { + "epoch": 46.18173875054609, + "grad_norm": 0.24989335238933563, + "learning_rate": 0.0006, + "loss": 3.599091053009033, + "step": 3325 + }, + { + "epoch": 46.19571865443425, + "grad_norm": 0.27068355679512024, + "learning_rate": 0.0006, + "loss": 3.5933146476745605, + "step": 3326 + }, + { + "epoch": 46.20969855832241, + "grad_norm": 0.2581503391265869, + "learning_rate": 0.0006, + "loss": 3.5935447216033936, + "step": 3327 + }, + { + "epoch": 46.22367846221057, + "grad_norm": 0.23368583619594574, + "learning_rate": 0.0006, + "loss": 3.6120412349700928, + "step": 3328 + }, + { + "epoch": 46.237658366098735, + "grad_norm": 0.21808452904224396, + "learning_rate": 0.0006, + "loss": 3.6155190467834473, + "step": 3329 + }, + { + "epoch": 46.25163826998689, + "grad_norm": 0.2152830809354782, + "learning_rate": 0.0006, + "loss": 3.6039974689483643, + "step": 3330 + }, + { + "epoch": 46.265618173875055, + "grad_norm": 0.20902983844280243, + "learning_rate": 0.0006, + "loss": 3.586416721343994, + "step": 3331 + }, + { + "epoch": 46.27959807776322, + "grad_norm": 0.21693682670593262, + "learning_rate": 0.0006, + "loss": 3.601595401763916, + "step": 3332 + }, + { + "epoch": 46.293577981651374, + "grad_norm": 0.21157346665859222, + "learning_rate": 0.0006, + "loss": 3.619825601577759, + "step": 3333 + }, + { + "epoch": 46.30755788553954, + "grad_norm": 0.19628529250621796, + "learning_rate": 0.0006, + "loss": 3.5845298767089844, + "step": 3334 + }, + { + "epoch": 46.3215377894277, + "grad_norm": 0.19599373638629913, + "learning_rate": 0.0006, + "loss": 3.614483594894409, + "step": 3335 + }, + { + "epoch": 46.33551769331586, + "grad_norm": 0.21777382493019104, + "learning_rate": 0.0006, + "loss": 3.5865678787231445, + "step": 3336 + }, + { + "epoch": 46.34949759720402, + "grad_norm": 0.24697323143482208, + "learning_rate": 0.0006, + "loss": 3.6168298721313477, + "step": 3337 + }, + { + "epoch": 46.36347750109218, + "grad_norm": 0.29521632194519043, + "learning_rate": 0.0006, + "loss": 3.627875804901123, + "step": 3338 + }, + { + "epoch": 46.37745740498034, + "grad_norm": 0.2548002004623413, + "learning_rate": 0.0006, + "loss": 3.6286001205444336, + "step": 3339 + }, + { + "epoch": 46.391437308868504, + "grad_norm": 0.20501002669334412, + "learning_rate": 0.0006, + "loss": 3.625035524368286, + "step": 3340 + }, + { + "epoch": 46.40541721275666, + "grad_norm": 0.21849584579467773, + "learning_rate": 0.0006, + "loss": 3.621872901916504, + "step": 3341 + }, + { + "epoch": 46.419397116644824, + "grad_norm": 0.22302033007144928, + "learning_rate": 0.0006, + "loss": 3.6088266372680664, + "step": 3342 + }, + { + "epoch": 46.43337702053299, + "grad_norm": 0.21138787269592285, + "learning_rate": 0.0006, + "loss": 3.6211094856262207, + "step": 3343 + }, + { + "epoch": 46.44735692442114, + "grad_norm": 0.22372713685035706, + "learning_rate": 0.0006, + "loss": 3.5799427032470703, + "step": 3344 + }, + { + "epoch": 46.46133682830931, + "grad_norm": 0.22019316256046295, + "learning_rate": 0.0006, + "loss": 3.616044044494629, + "step": 3345 + }, + { + "epoch": 46.47531673219746, + "grad_norm": 0.21947625279426575, + "learning_rate": 0.0006, + "loss": 3.613643169403076, + "step": 3346 + }, + { + "epoch": 46.489296636085626, + "grad_norm": 0.21935684978961945, + "learning_rate": 0.0006, + "loss": 3.6255440711975098, + "step": 3347 + }, + { + "epoch": 46.50327653997379, + "grad_norm": 0.20366479456424713, + "learning_rate": 0.0006, + "loss": 3.613892078399658, + "step": 3348 + }, + { + "epoch": 46.517256443861946, + "grad_norm": 0.21755267679691315, + "learning_rate": 0.0006, + "loss": 3.617886543273926, + "step": 3349 + }, + { + "epoch": 46.53123634775011, + "grad_norm": 0.20023910701274872, + "learning_rate": 0.0006, + "loss": 3.6172280311584473, + "step": 3350 + }, + { + "epoch": 46.54521625163827, + "grad_norm": 0.20375007390975952, + "learning_rate": 0.0006, + "loss": 3.595829486846924, + "step": 3351 + }, + { + "epoch": 46.55919615552643, + "grad_norm": 0.21125391125679016, + "learning_rate": 0.0006, + "loss": 3.632533550262451, + "step": 3352 + }, + { + "epoch": 46.57317605941459, + "grad_norm": 0.2359670102596283, + "learning_rate": 0.0006, + "loss": 3.597811222076416, + "step": 3353 + }, + { + "epoch": 46.58715596330275, + "grad_norm": 0.21696777641773224, + "learning_rate": 0.0006, + "loss": 3.627127170562744, + "step": 3354 + }, + { + "epoch": 46.60113586719091, + "grad_norm": 0.21501564979553223, + "learning_rate": 0.0006, + "loss": 3.630887985229492, + "step": 3355 + }, + { + "epoch": 46.615115771079076, + "grad_norm": 0.21446822583675385, + "learning_rate": 0.0006, + "loss": 3.6075234413146973, + "step": 3356 + }, + { + "epoch": 46.62909567496723, + "grad_norm": 0.21508967876434326, + "learning_rate": 0.0006, + "loss": 3.626603603363037, + "step": 3357 + }, + { + "epoch": 46.643075578855395, + "grad_norm": 0.19969215989112854, + "learning_rate": 0.0006, + "loss": 3.6160733699798584, + "step": 3358 + }, + { + "epoch": 46.65705548274356, + "grad_norm": 0.19982007145881653, + "learning_rate": 0.0006, + "loss": 3.632960319519043, + "step": 3359 + }, + { + "epoch": 46.671035386631715, + "grad_norm": 0.1981230527162552, + "learning_rate": 0.0006, + "loss": 3.608591079711914, + "step": 3360 + }, + { + "epoch": 46.68501529051988, + "grad_norm": 0.19948643445968628, + "learning_rate": 0.0006, + "loss": 3.6100947856903076, + "step": 3361 + }, + { + "epoch": 46.69899519440804, + "grad_norm": 0.18967196345329285, + "learning_rate": 0.0006, + "loss": 3.6203439235687256, + "step": 3362 + }, + { + "epoch": 46.7129750982962, + "grad_norm": 0.20035311579704285, + "learning_rate": 0.0006, + "loss": 3.64508056640625, + "step": 3363 + }, + { + "epoch": 46.72695500218436, + "grad_norm": 0.21049824357032776, + "learning_rate": 0.0006, + "loss": 3.620095729827881, + "step": 3364 + }, + { + "epoch": 46.74093490607252, + "grad_norm": 0.21411995589733124, + "learning_rate": 0.0006, + "loss": 3.650815963745117, + "step": 3365 + }, + { + "epoch": 46.75491480996068, + "grad_norm": 0.18666061758995056, + "learning_rate": 0.0006, + "loss": 3.625699758529663, + "step": 3366 + }, + { + "epoch": 46.768894713848844, + "grad_norm": 0.1927071362733841, + "learning_rate": 0.0006, + "loss": 3.6165151596069336, + "step": 3367 + }, + { + "epoch": 46.782874617737, + "grad_norm": 0.2063879817724228, + "learning_rate": 0.0006, + "loss": 3.6182332038879395, + "step": 3368 + }, + { + "epoch": 46.796854521625164, + "grad_norm": 0.19215327501296997, + "learning_rate": 0.0006, + "loss": 3.607239246368408, + "step": 3369 + }, + { + "epoch": 46.81083442551333, + "grad_norm": 0.2074592262506485, + "learning_rate": 0.0006, + "loss": 3.624856948852539, + "step": 3370 + }, + { + "epoch": 46.824814329401484, + "grad_norm": 0.2184106856584549, + "learning_rate": 0.0006, + "loss": 3.628757953643799, + "step": 3371 + }, + { + "epoch": 46.83879423328965, + "grad_norm": 0.2203136682510376, + "learning_rate": 0.0006, + "loss": 3.625958204269409, + "step": 3372 + }, + { + "epoch": 46.8527741371778, + "grad_norm": 0.21920061111450195, + "learning_rate": 0.0006, + "loss": 3.6060733795166016, + "step": 3373 + }, + { + "epoch": 46.86675404106597, + "grad_norm": 0.2122412472963333, + "learning_rate": 0.0006, + "loss": 3.6126952171325684, + "step": 3374 + }, + { + "epoch": 46.88073394495413, + "grad_norm": 0.1971784383058548, + "learning_rate": 0.0006, + "loss": 3.637129783630371, + "step": 3375 + }, + { + "epoch": 46.89471384884229, + "grad_norm": 0.20824873447418213, + "learning_rate": 0.0006, + "loss": 3.62868070602417, + "step": 3376 + }, + { + "epoch": 46.90869375273045, + "grad_norm": 0.20157678425312042, + "learning_rate": 0.0006, + "loss": 3.6321873664855957, + "step": 3377 + }, + { + "epoch": 46.92267365661861, + "grad_norm": 0.1958925426006317, + "learning_rate": 0.0006, + "loss": 3.6513354778289795, + "step": 3378 + }, + { + "epoch": 46.93665356050677, + "grad_norm": 0.1969553828239441, + "learning_rate": 0.0006, + "loss": 3.6346323490142822, + "step": 3379 + }, + { + "epoch": 46.95063346439493, + "grad_norm": 0.19311924278736115, + "learning_rate": 0.0006, + "loss": 3.6673245429992676, + "step": 3380 + }, + { + "epoch": 46.964613368283096, + "grad_norm": 0.20341862738132477, + "learning_rate": 0.0006, + "loss": 3.680025339126587, + "step": 3381 + }, + { + "epoch": 46.97859327217125, + "grad_norm": 0.20667442679405212, + "learning_rate": 0.0006, + "loss": 3.632290840148926, + "step": 3382 + }, + { + "epoch": 46.992573176059416, + "grad_norm": 0.19141609966754913, + "learning_rate": 0.0006, + "loss": 3.659360647201538, + "step": 3383 + }, + { + "epoch": 47.0, + "grad_norm": 0.20981188118457794, + "learning_rate": 0.0006, + "loss": 3.653548240661621, + "step": 3384 + }, + { + "epoch": 47.0, + "eval_loss": 3.9833984375, + "eval_runtime": 44.4693, + "eval_samples_per_second": 54.914, + "eval_steps_per_second": 3.441, + "step": 3384 + }, + { + "epoch": 47.01397990388816, + "grad_norm": 0.1958128660917282, + "learning_rate": 0.0006, + "loss": 3.5778727531433105, + "step": 3385 + }, + { + "epoch": 47.02795980777632, + "grad_norm": 0.19728390872478485, + "learning_rate": 0.0006, + "loss": 3.5827393531799316, + "step": 3386 + }, + { + "epoch": 47.04193971166448, + "grad_norm": 0.18564026057720184, + "learning_rate": 0.0006, + "loss": 3.573071002960205, + "step": 3387 + }, + { + "epoch": 47.05591961555265, + "grad_norm": 0.20563258230686188, + "learning_rate": 0.0006, + "loss": 3.564330577850342, + "step": 3388 + }, + { + "epoch": 47.0698995194408, + "grad_norm": 0.21382158994674683, + "learning_rate": 0.0006, + "loss": 3.5976946353912354, + "step": 3389 + }, + { + "epoch": 47.083879423328966, + "grad_norm": 0.2383693903684616, + "learning_rate": 0.0006, + "loss": 3.5970897674560547, + "step": 3390 + }, + { + "epoch": 47.09785932721712, + "grad_norm": 0.24709449708461761, + "learning_rate": 0.0006, + "loss": 3.613409996032715, + "step": 3391 + }, + { + "epoch": 47.111839231105286, + "grad_norm": 0.2329784333705902, + "learning_rate": 0.0006, + "loss": 3.571023464202881, + "step": 3392 + }, + { + "epoch": 47.12581913499345, + "grad_norm": 0.2096954584121704, + "learning_rate": 0.0006, + "loss": 3.573697090148926, + "step": 3393 + }, + { + "epoch": 47.139799038881605, + "grad_norm": 0.21630050241947174, + "learning_rate": 0.0006, + "loss": 3.6085095405578613, + "step": 3394 + }, + { + "epoch": 47.15377894276977, + "grad_norm": 0.22828878462314606, + "learning_rate": 0.0006, + "loss": 3.605466842651367, + "step": 3395 + }, + { + "epoch": 47.16775884665793, + "grad_norm": 0.24957625567913055, + "learning_rate": 0.0006, + "loss": 3.588324546813965, + "step": 3396 + }, + { + "epoch": 47.18173875054609, + "grad_norm": 0.25446194410324097, + "learning_rate": 0.0006, + "loss": 3.6161458492279053, + "step": 3397 + }, + { + "epoch": 47.19571865443425, + "grad_norm": 0.24938438832759857, + "learning_rate": 0.0006, + "loss": 3.6017847061157227, + "step": 3398 + }, + { + "epoch": 47.20969855832241, + "grad_norm": 0.23318032920360565, + "learning_rate": 0.0006, + "loss": 3.6077046394348145, + "step": 3399 + }, + { + "epoch": 47.22367846221057, + "grad_norm": 0.2179042547941208, + "learning_rate": 0.0006, + "loss": 3.598104953765869, + "step": 3400 + }, + { + "epoch": 47.237658366098735, + "grad_norm": 0.213354229927063, + "learning_rate": 0.0006, + "loss": 3.6328814029693604, + "step": 3401 + }, + { + "epoch": 47.25163826998689, + "grad_norm": 0.23104089498519897, + "learning_rate": 0.0006, + "loss": 3.6161890029907227, + "step": 3402 + }, + { + "epoch": 47.265618173875055, + "grad_norm": 0.22219021618366241, + "learning_rate": 0.0006, + "loss": 3.620314121246338, + "step": 3403 + }, + { + "epoch": 47.27959807776322, + "grad_norm": 0.21618683636188507, + "learning_rate": 0.0006, + "loss": 3.5955371856689453, + "step": 3404 + }, + { + "epoch": 47.293577981651374, + "grad_norm": 0.22280243039131165, + "learning_rate": 0.0006, + "loss": 3.618302345275879, + "step": 3405 + }, + { + "epoch": 47.30755788553954, + "grad_norm": 0.2268427014350891, + "learning_rate": 0.0006, + "loss": 3.6035101413726807, + "step": 3406 + }, + { + "epoch": 47.3215377894277, + "grad_norm": 0.20324429869651794, + "learning_rate": 0.0006, + "loss": 3.612598419189453, + "step": 3407 + }, + { + "epoch": 47.33551769331586, + "grad_norm": 0.19353045523166656, + "learning_rate": 0.0006, + "loss": 3.5951499938964844, + "step": 3408 + }, + { + "epoch": 47.34949759720402, + "grad_norm": 0.19008080661296844, + "learning_rate": 0.0006, + "loss": 3.6177732944488525, + "step": 3409 + }, + { + "epoch": 47.36347750109218, + "grad_norm": 0.19530250132083893, + "learning_rate": 0.0006, + "loss": 3.597903251647949, + "step": 3410 + }, + { + "epoch": 47.37745740498034, + "grad_norm": 0.2083505541086197, + "learning_rate": 0.0006, + "loss": 3.6062350273132324, + "step": 3411 + }, + { + "epoch": 47.391437308868504, + "grad_norm": 0.2241518199443817, + "learning_rate": 0.0006, + "loss": 3.6084704399108887, + "step": 3412 + }, + { + "epoch": 47.40541721275666, + "grad_norm": 0.25763124227523804, + "learning_rate": 0.0006, + "loss": 3.600295066833496, + "step": 3413 + }, + { + "epoch": 47.419397116644824, + "grad_norm": 0.2689114212989807, + "learning_rate": 0.0006, + "loss": 3.648848533630371, + "step": 3414 + }, + { + "epoch": 47.43337702053299, + "grad_norm": 0.30106639862060547, + "learning_rate": 0.0006, + "loss": 3.6248483657836914, + "step": 3415 + }, + { + "epoch": 47.44735692442114, + "grad_norm": 0.31840384006500244, + "learning_rate": 0.0006, + "loss": 3.6256890296936035, + "step": 3416 + }, + { + "epoch": 47.46133682830931, + "grad_norm": 0.2603468894958496, + "learning_rate": 0.0006, + "loss": 3.6225175857543945, + "step": 3417 + }, + { + "epoch": 47.47531673219746, + "grad_norm": 0.33408305048942566, + "learning_rate": 0.0006, + "loss": 3.590303897857666, + "step": 3418 + }, + { + "epoch": 47.489296636085626, + "grad_norm": 0.3677918612957001, + "learning_rate": 0.0006, + "loss": 3.6005120277404785, + "step": 3419 + }, + { + "epoch": 47.50327653997379, + "grad_norm": 0.23077215254306793, + "learning_rate": 0.0006, + "loss": 3.6093883514404297, + "step": 3420 + }, + { + "epoch": 47.517256443861946, + "grad_norm": 0.27272120118141174, + "learning_rate": 0.0006, + "loss": 3.580151081085205, + "step": 3421 + }, + { + "epoch": 47.53123634775011, + "grad_norm": 0.22629371285438538, + "learning_rate": 0.0006, + "loss": 3.6375746726989746, + "step": 3422 + }, + { + "epoch": 47.54521625163827, + "grad_norm": 0.2376468926668167, + "learning_rate": 0.0006, + "loss": 3.6492481231689453, + "step": 3423 + }, + { + "epoch": 47.55919615552643, + "grad_norm": 0.21200433373451233, + "learning_rate": 0.0006, + "loss": 3.6258158683776855, + "step": 3424 + }, + { + "epoch": 47.57317605941459, + "grad_norm": 0.2246236652135849, + "learning_rate": 0.0006, + "loss": 3.6199564933776855, + "step": 3425 + }, + { + "epoch": 47.58715596330275, + "grad_norm": 0.21713437139987946, + "learning_rate": 0.0006, + "loss": 3.638197898864746, + "step": 3426 + }, + { + "epoch": 47.60113586719091, + "grad_norm": 0.1964627057313919, + "learning_rate": 0.0006, + "loss": 3.6334147453308105, + "step": 3427 + }, + { + "epoch": 47.615115771079076, + "grad_norm": 0.21705810725688934, + "learning_rate": 0.0006, + "loss": 3.6298668384552, + "step": 3428 + }, + { + "epoch": 47.62909567496723, + "grad_norm": 0.20376256108283997, + "learning_rate": 0.0006, + "loss": 3.6127166748046875, + "step": 3429 + }, + { + "epoch": 47.643075578855395, + "grad_norm": 0.20046672224998474, + "learning_rate": 0.0006, + "loss": 3.633683681488037, + "step": 3430 + }, + { + "epoch": 47.65705548274356, + "grad_norm": 0.21494409441947937, + "learning_rate": 0.0006, + "loss": 3.635828971862793, + "step": 3431 + }, + { + "epoch": 47.671035386631715, + "grad_norm": 0.24550487101078033, + "learning_rate": 0.0006, + "loss": 3.6056854724884033, + "step": 3432 + }, + { + "epoch": 47.68501529051988, + "grad_norm": 0.24416600167751312, + "learning_rate": 0.0006, + "loss": 3.618785858154297, + "step": 3433 + }, + { + "epoch": 47.69899519440804, + "grad_norm": 0.22872993350028992, + "learning_rate": 0.0006, + "loss": 3.6189026832580566, + "step": 3434 + }, + { + "epoch": 47.7129750982962, + "grad_norm": 0.23609530925750732, + "learning_rate": 0.0006, + "loss": 3.623661518096924, + "step": 3435 + }, + { + "epoch": 47.72695500218436, + "grad_norm": 0.22905564308166504, + "learning_rate": 0.0006, + "loss": 3.6155691146850586, + "step": 3436 + }, + { + "epoch": 47.74093490607252, + "grad_norm": 0.25507304072380066, + "learning_rate": 0.0006, + "loss": 3.5848331451416016, + "step": 3437 + }, + { + "epoch": 47.75491480996068, + "grad_norm": 0.24594344198703766, + "learning_rate": 0.0006, + "loss": 3.588374614715576, + "step": 3438 + }, + { + "epoch": 47.768894713848844, + "grad_norm": 0.23131750524044037, + "learning_rate": 0.0006, + "loss": 3.6164474487304688, + "step": 3439 + }, + { + "epoch": 47.782874617737, + "grad_norm": 0.21967829763889313, + "learning_rate": 0.0006, + "loss": 3.619150161743164, + "step": 3440 + }, + { + "epoch": 47.796854521625164, + "grad_norm": 0.226309135556221, + "learning_rate": 0.0006, + "loss": 3.5946340560913086, + "step": 3441 + }, + { + "epoch": 47.81083442551333, + "grad_norm": 0.23141087591648102, + "learning_rate": 0.0006, + "loss": 3.614711046218872, + "step": 3442 + }, + { + "epoch": 47.824814329401484, + "grad_norm": 0.20917707681655884, + "learning_rate": 0.0006, + "loss": 3.610058307647705, + "step": 3443 + }, + { + "epoch": 47.83879423328965, + "grad_norm": 0.22864583134651184, + "learning_rate": 0.0006, + "loss": 3.6396052837371826, + "step": 3444 + }, + { + "epoch": 47.8527741371778, + "grad_norm": 0.22201144695281982, + "learning_rate": 0.0006, + "loss": 3.6462526321411133, + "step": 3445 + }, + { + "epoch": 47.86675404106597, + "grad_norm": 0.21199125051498413, + "learning_rate": 0.0006, + "loss": 3.6090314388275146, + "step": 3446 + }, + { + "epoch": 47.88073394495413, + "grad_norm": 0.2236194908618927, + "learning_rate": 0.0006, + "loss": 3.6308231353759766, + "step": 3447 + }, + { + "epoch": 47.89471384884229, + "grad_norm": 0.21571075916290283, + "learning_rate": 0.0006, + "loss": 3.5899293422698975, + "step": 3448 + }, + { + "epoch": 47.90869375273045, + "grad_norm": 0.2320997267961502, + "learning_rate": 0.0006, + "loss": 3.6360764503479004, + "step": 3449 + }, + { + "epoch": 47.92267365661861, + "grad_norm": 0.2304147630929947, + "learning_rate": 0.0006, + "loss": 3.61220121383667, + "step": 3450 + }, + { + "epoch": 47.93665356050677, + "grad_norm": 0.2321154624223709, + "learning_rate": 0.0006, + "loss": 3.6104419231414795, + "step": 3451 + }, + { + "epoch": 47.95063346439493, + "grad_norm": 0.20895935595035553, + "learning_rate": 0.0006, + "loss": 3.6372952461242676, + "step": 3452 + }, + { + "epoch": 47.964613368283096, + "grad_norm": 0.19926418364048004, + "learning_rate": 0.0006, + "loss": 3.652947425842285, + "step": 3453 + }, + { + "epoch": 47.97859327217125, + "grad_norm": 0.22443149983882904, + "learning_rate": 0.0006, + "loss": 3.6005635261535645, + "step": 3454 + }, + { + "epoch": 47.992573176059416, + "grad_norm": 0.2361244559288025, + "learning_rate": 0.0006, + "loss": 3.626563549041748, + "step": 3455 + }, + { + "epoch": 48.0, + "grad_norm": 0.2542579174041748, + "learning_rate": 0.0006, + "loss": 3.619098663330078, + "step": 3456 + }, + { + "epoch": 48.0, + "eval_loss": 3.9787564277648926, + "eval_runtime": 44.3429, + "eval_samples_per_second": 55.071, + "eval_steps_per_second": 3.45, + "step": 3456 + }, + { + "epoch": 48.01397990388816, + "grad_norm": 0.21771088242530823, + "learning_rate": 0.0006, + "loss": 3.538780927658081, + "step": 3457 + }, + { + "epoch": 48.02795980777632, + "grad_norm": 0.23467740416526794, + "learning_rate": 0.0006, + "loss": 3.5875978469848633, + "step": 3458 + }, + { + "epoch": 48.04193971166448, + "grad_norm": 0.2527692914009094, + "learning_rate": 0.0006, + "loss": 3.5939159393310547, + "step": 3459 + }, + { + "epoch": 48.05591961555265, + "grad_norm": 0.21477685868740082, + "learning_rate": 0.0006, + "loss": 3.600374698638916, + "step": 3460 + }, + { + "epoch": 48.0698995194408, + "grad_norm": 0.22008976340293884, + "learning_rate": 0.0006, + "loss": 3.6058406829833984, + "step": 3461 + }, + { + "epoch": 48.083879423328966, + "grad_norm": 0.23344817757606506, + "learning_rate": 0.0006, + "loss": 3.5864410400390625, + "step": 3462 + }, + { + "epoch": 48.09785932721712, + "grad_norm": 0.24451610445976257, + "learning_rate": 0.0006, + "loss": 3.5827221870422363, + "step": 3463 + }, + { + "epoch": 48.111839231105286, + "grad_norm": 0.24536925554275513, + "learning_rate": 0.0006, + "loss": 3.566275119781494, + "step": 3464 + }, + { + "epoch": 48.12581913499345, + "grad_norm": 0.24060940742492676, + "learning_rate": 0.0006, + "loss": 3.575841188430786, + "step": 3465 + }, + { + "epoch": 48.139799038881605, + "grad_norm": 0.24829573929309845, + "learning_rate": 0.0006, + "loss": 3.6215152740478516, + "step": 3466 + }, + { + "epoch": 48.15377894276977, + "grad_norm": 0.2651045024394989, + "learning_rate": 0.0006, + "loss": 3.604381561279297, + "step": 3467 + }, + { + "epoch": 48.16775884665793, + "grad_norm": 0.2654518187046051, + "learning_rate": 0.0006, + "loss": 3.5989198684692383, + "step": 3468 + }, + { + "epoch": 48.18173875054609, + "grad_norm": 0.25179797410964966, + "learning_rate": 0.0006, + "loss": 3.596402168273926, + "step": 3469 + }, + { + "epoch": 48.19571865443425, + "grad_norm": 0.24018050730228424, + "learning_rate": 0.0006, + "loss": 3.6376051902770996, + "step": 3470 + }, + { + "epoch": 48.20969855832241, + "grad_norm": 0.22079682350158691, + "learning_rate": 0.0006, + "loss": 3.5990993976593018, + "step": 3471 + }, + { + "epoch": 48.22367846221057, + "grad_norm": 0.23267143964767456, + "learning_rate": 0.0006, + "loss": 3.614759683609009, + "step": 3472 + }, + { + "epoch": 48.237658366098735, + "grad_norm": 0.21822260320186615, + "learning_rate": 0.0006, + "loss": 3.6057262420654297, + "step": 3473 + }, + { + "epoch": 48.25163826998689, + "grad_norm": 0.23391997814178467, + "learning_rate": 0.0006, + "loss": 3.581972599029541, + "step": 3474 + }, + { + "epoch": 48.265618173875055, + "grad_norm": 0.22634121775627136, + "learning_rate": 0.0006, + "loss": 3.592149496078491, + "step": 3475 + }, + { + "epoch": 48.27959807776322, + "grad_norm": 0.2142419070005417, + "learning_rate": 0.0006, + "loss": 3.616722583770752, + "step": 3476 + }, + { + "epoch": 48.293577981651374, + "grad_norm": 0.227144256234169, + "learning_rate": 0.0006, + "loss": 3.6018447875976562, + "step": 3477 + }, + { + "epoch": 48.30755788553954, + "grad_norm": 0.25466978549957275, + "learning_rate": 0.0006, + "loss": 3.5795769691467285, + "step": 3478 + }, + { + "epoch": 48.3215377894277, + "grad_norm": 0.2409234344959259, + "learning_rate": 0.0006, + "loss": 3.5845530033111572, + "step": 3479 + }, + { + "epoch": 48.33551769331586, + "grad_norm": 0.22001305222511292, + "learning_rate": 0.0006, + "loss": 3.5861806869506836, + "step": 3480 + }, + { + "epoch": 48.34949759720402, + "grad_norm": 0.24980100989341736, + "learning_rate": 0.0006, + "loss": 3.6032233238220215, + "step": 3481 + }, + { + "epoch": 48.36347750109218, + "grad_norm": 0.28788816928863525, + "learning_rate": 0.0006, + "loss": 3.5876364707946777, + "step": 3482 + }, + { + "epoch": 48.37745740498034, + "grad_norm": 0.26172295212745667, + "learning_rate": 0.0006, + "loss": 3.5711276531219482, + "step": 3483 + }, + { + "epoch": 48.391437308868504, + "grad_norm": 0.23881542682647705, + "learning_rate": 0.0006, + "loss": 3.57108473777771, + "step": 3484 + }, + { + "epoch": 48.40541721275666, + "grad_norm": 0.22385981678962708, + "learning_rate": 0.0006, + "loss": 3.6197509765625, + "step": 3485 + }, + { + "epoch": 48.419397116644824, + "grad_norm": 0.21007859706878662, + "learning_rate": 0.0006, + "loss": 3.609449625015259, + "step": 3486 + }, + { + "epoch": 48.43337702053299, + "grad_norm": 0.21170279383659363, + "learning_rate": 0.0006, + "loss": 3.5981619358062744, + "step": 3487 + }, + { + "epoch": 48.44735692442114, + "grad_norm": 0.2100721150636673, + "learning_rate": 0.0006, + "loss": 3.606505870819092, + "step": 3488 + }, + { + "epoch": 48.46133682830931, + "grad_norm": 0.20408287644386292, + "learning_rate": 0.0006, + "loss": 3.6033859252929688, + "step": 3489 + }, + { + "epoch": 48.47531673219746, + "grad_norm": 0.20343686640262604, + "learning_rate": 0.0006, + "loss": 3.6249616146087646, + "step": 3490 + }, + { + "epoch": 48.489296636085626, + "grad_norm": 0.20570123195648193, + "learning_rate": 0.0006, + "loss": 3.5700693130493164, + "step": 3491 + }, + { + "epoch": 48.50327653997379, + "grad_norm": 0.2511707544326782, + "learning_rate": 0.0006, + "loss": 3.6432406902313232, + "step": 3492 + }, + { + "epoch": 48.517256443861946, + "grad_norm": 0.265960693359375, + "learning_rate": 0.0006, + "loss": 3.6329426765441895, + "step": 3493 + }, + { + "epoch": 48.53123634775011, + "grad_norm": 0.25830161571502686, + "learning_rate": 0.0006, + "loss": 3.593940258026123, + "step": 3494 + }, + { + "epoch": 48.54521625163827, + "grad_norm": 0.2232893705368042, + "learning_rate": 0.0006, + "loss": 3.623812198638916, + "step": 3495 + }, + { + "epoch": 48.55919615552643, + "grad_norm": 0.20818902552127838, + "learning_rate": 0.0006, + "loss": 3.5982813835144043, + "step": 3496 + }, + { + "epoch": 48.57317605941459, + "grad_norm": 0.2756865918636322, + "learning_rate": 0.0006, + "loss": 3.617436170578003, + "step": 3497 + }, + { + "epoch": 48.58715596330275, + "grad_norm": 0.2361520677804947, + "learning_rate": 0.0006, + "loss": 3.598113536834717, + "step": 3498 + }, + { + "epoch": 48.60113586719091, + "grad_norm": 0.1956835240125656, + "learning_rate": 0.0006, + "loss": 3.581003189086914, + "step": 3499 + }, + { + "epoch": 48.615115771079076, + "grad_norm": 0.2863931953907013, + "learning_rate": 0.0006, + "loss": 3.596768379211426, + "step": 3500 + }, + { + "epoch": 48.62909567496723, + "grad_norm": 0.29865020513534546, + "learning_rate": 0.0006, + "loss": 3.576995372772217, + "step": 3501 + }, + { + "epoch": 48.643075578855395, + "grad_norm": 0.23084872961044312, + "learning_rate": 0.0006, + "loss": 3.6431074142456055, + "step": 3502 + }, + { + "epoch": 48.65705548274356, + "grad_norm": 0.2081640362739563, + "learning_rate": 0.0006, + "loss": 3.6002132892608643, + "step": 3503 + }, + { + "epoch": 48.671035386631715, + "grad_norm": 0.20566335320472717, + "learning_rate": 0.0006, + "loss": 3.62365460395813, + "step": 3504 + }, + { + "epoch": 48.68501529051988, + "grad_norm": 0.2066725790500641, + "learning_rate": 0.0006, + "loss": 3.6063363552093506, + "step": 3505 + }, + { + "epoch": 48.69899519440804, + "grad_norm": 0.19830003380775452, + "learning_rate": 0.0006, + "loss": 3.617750883102417, + "step": 3506 + }, + { + "epoch": 48.7129750982962, + "grad_norm": 0.20409031212329865, + "learning_rate": 0.0006, + "loss": 3.6110005378723145, + "step": 3507 + }, + { + "epoch": 48.72695500218436, + "grad_norm": 0.20836064219474792, + "learning_rate": 0.0006, + "loss": 3.6148147583007812, + "step": 3508 + }, + { + "epoch": 48.74093490607252, + "grad_norm": 0.21660791337490082, + "learning_rate": 0.0006, + "loss": 3.641488790512085, + "step": 3509 + }, + { + "epoch": 48.75491480996068, + "grad_norm": 0.21075023710727692, + "learning_rate": 0.0006, + "loss": 3.6327688694000244, + "step": 3510 + }, + { + "epoch": 48.768894713848844, + "grad_norm": 0.19346074759960175, + "learning_rate": 0.0006, + "loss": 3.6025185585021973, + "step": 3511 + }, + { + "epoch": 48.782874617737, + "grad_norm": 0.20215240120887756, + "learning_rate": 0.0006, + "loss": 3.595707416534424, + "step": 3512 + }, + { + "epoch": 48.796854521625164, + "grad_norm": 0.1913122832775116, + "learning_rate": 0.0006, + "loss": 3.618406295776367, + "step": 3513 + }, + { + "epoch": 48.81083442551333, + "grad_norm": 0.18517033755779266, + "learning_rate": 0.0006, + "loss": 3.6212055683135986, + "step": 3514 + }, + { + "epoch": 48.824814329401484, + "grad_norm": 0.20453064143657684, + "learning_rate": 0.0006, + "loss": 3.5941221714019775, + "step": 3515 + }, + { + "epoch": 48.83879423328965, + "grad_norm": 0.20777031779289246, + "learning_rate": 0.0006, + "loss": 3.630701780319214, + "step": 3516 + }, + { + "epoch": 48.8527741371778, + "grad_norm": 0.23713789880275726, + "learning_rate": 0.0006, + "loss": 3.629256248474121, + "step": 3517 + }, + { + "epoch": 48.86675404106597, + "grad_norm": 0.1945258378982544, + "learning_rate": 0.0006, + "loss": 3.607020854949951, + "step": 3518 + }, + { + "epoch": 48.88073394495413, + "grad_norm": 0.19601863622665405, + "learning_rate": 0.0006, + "loss": 3.6200907230377197, + "step": 3519 + }, + { + "epoch": 48.89471384884229, + "grad_norm": 0.20068836212158203, + "learning_rate": 0.0006, + "loss": 3.58575701713562, + "step": 3520 + }, + { + "epoch": 48.90869375273045, + "grad_norm": 0.21790200471878052, + "learning_rate": 0.0006, + "loss": 3.6451416015625, + "step": 3521 + }, + { + "epoch": 48.92267365661861, + "grad_norm": 0.22265756130218506, + "learning_rate": 0.0006, + "loss": 3.621331214904785, + "step": 3522 + }, + { + "epoch": 48.93665356050677, + "grad_norm": 0.20316730439662933, + "learning_rate": 0.0006, + "loss": 3.614537239074707, + "step": 3523 + }, + { + "epoch": 48.95063346439493, + "grad_norm": 0.20275238156318665, + "learning_rate": 0.0006, + "loss": 3.5913281440734863, + "step": 3524 + }, + { + "epoch": 48.964613368283096, + "grad_norm": 0.20239883661270142, + "learning_rate": 0.0006, + "loss": 3.608638286590576, + "step": 3525 + }, + { + "epoch": 48.97859327217125, + "grad_norm": 0.21154041588306427, + "learning_rate": 0.0006, + "loss": 3.6233115196228027, + "step": 3526 + }, + { + "epoch": 48.992573176059416, + "grad_norm": 0.22368352115154266, + "learning_rate": 0.0006, + "loss": 3.599665880203247, + "step": 3527 + }, + { + "epoch": 49.0, + "grad_norm": 0.2675703763961792, + "learning_rate": 0.0006, + "loss": 3.637458086013794, + "step": 3528 + }, + { + "epoch": 49.0, + "eval_loss": 3.985574245452881, + "eval_runtime": 44.55, + "eval_samples_per_second": 54.815, + "eval_steps_per_second": 3.434, + "step": 3528 + }, + { + "epoch": 49.01397990388816, + "grad_norm": 0.2911863625049591, + "learning_rate": 0.0006, + "loss": 3.606170654296875, + "step": 3529 + }, + { + "epoch": 49.02795980777632, + "grad_norm": 0.26640036702156067, + "learning_rate": 0.0006, + "loss": 3.5662899017333984, + "step": 3530 + }, + { + "epoch": 49.04193971166448, + "grad_norm": 0.23250512778759003, + "learning_rate": 0.0006, + "loss": 3.5928688049316406, + "step": 3531 + }, + { + "epoch": 49.05591961555265, + "grad_norm": 0.2603093385696411, + "learning_rate": 0.0006, + "loss": 3.5702433586120605, + "step": 3532 + }, + { + "epoch": 49.0698995194408, + "grad_norm": 0.2711663246154785, + "learning_rate": 0.0006, + "loss": 3.591977596282959, + "step": 3533 + }, + { + "epoch": 49.083879423328966, + "grad_norm": 0.2536148130893707, + "learning_rate": 0.0006, + "loss": 3.5924272537231445, + "step": 3534 + }, + { + "epoch": 49.09785932721712, + "grad_norm": 0.22995208203792572, + "learning_rate": 0.0006, + "loss": 3.5760092735290527, + "step": 3535 + }, + { + "epoch": 49.111839231105286, + "grad_norm": 0.22327162325382233, + "learning_rate": 0.0006, + "loss": 3.6072137355804443, + "step": 3536 + }, + { + "epoch": 49.12581913499345, + "grad_norm": 0.2256365567445755, + "learning_rate": 0.0006, + "loss": 3.6156117916107178, + "step": 3537 + }, + { + "epoch": 49.139799038881605, + "grad_norm": 0.23647814989089966, + "learning_rate": 0.0006, + "loss": 3.5862512588500977, + "step": 3538 + }, + { + "epoch": 49.15377894276977, + "grad_norm": 0.23442648351192474, + "learning_rate": 0.0006, + "loss": 3.606386184692383, + "step": 3539 + }, + { + "epoch": 49.16775884665793, + "grad_norm": 0.22148385643959045, + "learning_rate": 0.0006, + "loss": 3.5564064979553223, + "step": 3540 + }, + { + "epoch": 49.18173875054609, + "grad_norm": 0.24589644372463226, + "learning_rate": 0.0006, + "loss": 3.5625576972961426, + "step": 3541 + }, + { + "epoch": 49.19571865443425, + "grad_norm": 0.23955261707305908, + "learning_rate": 0.0006, + "loss": 3.617833137512207, + "step": 3542 + }, + { + "epoch": 49.20969855832241, + "grad_norm": 0.2781425416469574, + "learning_rate": 0.0006, + "loss": 3.6153502464294434, + "step": 3543 + }, + { + "epoch": 49.22367846221057, + "grad_norm": 0.2622034549713135, + "learning_rate": 0.0006, + "loss": 3.608530044555664, + "step": 3544 + }, + { + "epoch": 49.237658366098735, + "grad_norm": 0.28407761454582214, + "learning_rate": 0.0006, + "loss": 3.572207450866699, + "step": 3545 + }, + { + "epoch": 49.25163826998689, + "grad_norm": 0.2722281217575073, + "learning_rate": 0.0006, + "loss": 3.591392755508423, + "step": 3546 + }, + { + "epoch": 49.265618173875055, + "grad_norm": 0.20608903467655182, + "learning_rate": 0.0006, + "loss": 3.598421573638916, + "step": 3547 + }, + { + "epoch": 49.27959807776322, + "grad_norm": 0.27233049273490906, + "learning_rate": 0.0006, + "loss": 3.5819201469421387, + "step": 3548 + }, + { + "epoch": 49.293577981651374, + "grad_norm": 0.26182129979133606, + "learning_rate": 0.0006, + "loss": 3.5855109691619873, + "step": 3549 + }, + { + "epoch": 49.30755788553954, + "grad_norm": 0.20255911350250244, + "learning_rate": 0.0006, + "loss": 3.569438934326172, + "step": 3550 + }, + { + "epoch": 49.3215377894277, + "grad_norm": 0.20045310258865356, + "learning_rate": 0.0006, + "loss": 3.5888795852661133, + "step": 3551 + }, + { + "epoch": 49.33551769331586, + "grad_norm": 0.18505392968654633, + "learning_rate": 0.0006, + "loss": 3.565467596054077, + "step": 3552 + }, + { + "epoch": 49.34949759720402, + "grad_norm": 0.2057398110628128, + "learning_rate": 0.0006, + "loss": 3.5850436687469482, + "step": 3553 + }, + { + "epoch": 49.36347750109218, + "grad_norm": 0.20007790625095367, + "learning_rate": 0.0006, + "loss": 3.5963945388793945, + "step": 3554 + }, + { + "epoch": 49.37745740498034, + "grad_norm": 0.179341122508049, + "learning_rate": 0.0006, + "loss": 3.5747077465057373, + "step": 3555 + }, + { + "epoch": 49.391437308868504, + "grad_norm": 0.1978122442960739, + "learning_rate": 0.0006, + "loss": 3.605037212371826, + "step": 3556 + }, + { + "epoch": 49.40541721275666, + "grad_norm": 0.1936761885881424, + "learning_rate": 0.0006, + "loss": 3.6293420791625977, + "step": 3557 + }, + { + "epoch": 49.419397116644824, + "grad_norm": 0.20393748581409454, + "learning_rate": 0.0006, + "loss": 3.5616302490234375, + "step": 3558 + }, + { + "epoch": 49.43337702053299, + "grad_norm": 0.19082997739315033, + "learning_rate": 0.0006, + "loss": 3.605088472366333, + "step": 3559 + }, + { + "epoch": 49.44735692442114, + "grad_norm": 0.19642551243305206, + "learning_rate": 0.0006, + "loss": 3.610870361328125, + "step": 3560 + }, + { + "epoch": 49.46133682830931, + "grad_norm": 0.21815423667430878, + "learning_rate": 0.0006, + "loss": 3.60211181640625, + "step": 3561 + }, + { + "epoch": 49.47531673219746, + "grad_norm": 0.20342762768268585, + "learning_rate": 0.0006, + "loss": 3.597529411315918, + "step": 3562 + }, + { + "epoch": 49.489296636085626, + "grad_norm": 0.19032546877861023, + "learning_rate": 0.0006, + "loss": 3.5728795528411865, + "step": 3563 + }, + { + "epoch": 49.50327653997379, + "grad_norm": 0.18237556517124176, + "learning_rate": 0.0006, + "loss": 3.5983595848083496, + "step": 3564 + }, + { + "epoch": 49.517256443861946, + "grad_norm": 0.20585589110851288, + "learning_rate": 0.0006, + "loss": 3.578320264816284, + "step": 3565 + }, + { + "epoch": 49.53123634775011, + "grad_norm": 0.20158857107162476, + "learning_rate": 0.0006, + "loss": 3.5918798446655273, + "step": 3566 + }, + { + "epoch": 49.54521625163827, + "grad_norm": 0.20195038616657257, + "learning_rate": 0.0006, + "loss": 3.605422258377075, + "step": 3567 + }, + { + "epoch": 49.55919615552643, + "grad_norm": 0.19884084165096283, + "learning_rate": 0.0006, + "loss": 3.5964083671569824, + "step": 3568 + }, + { + "epoch": 49.57317605941459, + "grad_norm": 0.21243083477020264, + "learning_rate": 0.0006, + "loss": 3.5885486602783203, + "step": 3569 + }, + { + "epoch": 49.58715596330275, + "grad_norm": 0.21059481799602509, + "learning_rate": 0.0006, + "loss": 3.572526454925537, + "step": 3570 + }, + { + "epoch": 49.60113586719091, + "grad_norm": 0.20644313097000122, + "learning_rate": 0.0006, + "loss": 3.583679676055908, + "step": 3571 + }, + { + "epoch": 49.615115771079076, + "grad_norm": 0.21343673765659332, + "learning_rate": 0.0006, + "loss": 3.6211650371551514, + "step": 3572 + }, + { + "epoch": 49.62909567496723, + "grad_norm": 0.23395343124866486, + "learning_rate": 0.0006, + "loss": 3.6003336906433105, + "step": 3573 + }, + { + "epoch": 49.643075578855395, + "grad_norm": 0.19978424906730652, + "learning_rate": 0.0006, + "loss": 3.6066763401031494, + "step": 3574 + }, + { + "epoch": 49.65705548274356, + "grad_norm": 0.21529823541641235, + "learning_rate": 0.0006, + "loss": 3.601284980773926, + "step": 3575 + }, + { + "epoch": 49.671035386631715, + "grad_norm": 0.21672746539115906, + "learning_rate": 0.0006, + "loss": 3.6084227561950684, + "step": 3576 + }, + { + "epoch": 49.68501529051988, + "grad_norm": 0.20889638364315033, + "learning_rate": 0.0006, + "loss": 3.591568946838379, + "step": 3577 + }, + { + "epoch": 49.69899519440804, + "grad_norm": 0.1960221230983734, + "learning_rate": 0.0006, + "loss": 3.6180830001831055, + "step": 3578 + }, + { + "epoch": 49.7129750982962, + "grad_norm": 0.19712410867214203, + "learning_rate": 0.0006, + "loss": 3.6197333335876465, + "step": 3579 + }, + { + "epoch": 49.72695500218436, + "grad_norm": 0.20665284991264343, + "learning_rate": 0.0006, + "loss": 3.6251301765441895, + "step": 3580 + }, + { + "epoch": 49.74093490607252, + "grad_norm": 0.21018871665000916, + "learning_rate": 0.0006, + "loss": 3.621973991394043, + "step": 3581 + }, + { + "epoch": 49.75491480996068, + "grad_norm": 0.20777495205402374, + "learning_rate": 0.0006, + "loss": 3.5826358795166016, + "step": 3582 + }, + { + "epoch": 49.768894713848844, + "grad_norm": 0.18880195915699005, + "learning_rate": 0.0006, + "loss": 3.5946998596191406, + "step": 3583 + }, + { + "epoch": 49.782874617737, + "grad_norm": 0.19894644618034363, + "learning_rate": 0.0006, + "loss": 3.5912184715270996, + "step": 3584 + }, + { + "epoch": 49.796854521625164, + "grad_norm": 0.20128944516181946, + "learning_rate": 0.0006, + "loss": 3.6370394229888916, + "step": 3585 + }, + { + "epoch": 49.81083442551333, + "grad_norm": 0.19332024455070496, + "learning_rate": 0.0006, + "loss": 3.619018077850342, + "step": 3586 + }, + { + "epoch": 49.824814329401484, + "grad_norm": 0.19303865730762482, + "learning_rate": 0.0006, + "loss": 3.578667163848877, + "step": 3587 + }, + { + "epoch": 49.83879423328965, + "grad_norm": 0.20154757797718048, + "learning_rate": 0.0006, + "loss": 3.61959171295166, + "step": 3588 + }, + { + "epoch": 49.8527741371778, + "grad_norm": 0.19653639197349548, + "learning_rate": 0.0006, + "loss": 3.6437559127807617, + "step": 3589 + }, + { + "epoch": 49.86675404106597, + "grad_norm": 0.21873407065868378, + "learning_rate": 0.0006, + "loss": 3.6131112575531006, + "step": 3590 + }, + { + "epoch": 49.88073394495413, + "grad_norm": 0.20130383968353271, + "learning_rate": 0.0006, + "loss": 3.624028444290161, + "step": 3591 + }, + { + "epoch": 49.89471384884229, + "grad_norm": 0.20206475257873535, + "learning_rate": 0.0006, + "loss": 3.5997328758239746, + "step": 3592 + }, + { + "epoch": 49.90869375273045, + "grad_norm": 0.20393261313438416, + "learning_rate": 0.0006, + "loss": 3.596066474914551, + "step": 3593 + }, + { + "epoch": 49.92267365661861, + "grad_norm": 0.19703544676303864, + "learning_rate": 0.0006, + "loss": 3.624542713165283, + "step": 3594 + }, + { + "epoch": 49.93665356050677, + "grad_norm": 0.2102314680814743, + "learning_rate": 0.0006, + "loss": 3.6082515716552734, + "step": 3595 + }, + { + "epoch": 49.95063346439493, + "grad_norm": 0.23791316151618958, + "learning_rate": 0.0006, + "loss": 3.6185569763183594, + "step": 3596 + }, + { + "epoch": 49.964613368283096, + "grad_norm": 0.24536125361919403, + "learning_rate": 0.0006, + "loss": 3.599207878112793, + "step": 3597 + }, + { + "epoch": 49.97859327217125, + "grad_norm": 0.23160327970981598, + "learning_rate": 0.0006, + "loss": 3.600921869277954, + "step": 3598 + }, + { + "epoch": 49.992573176059416, + "grad_norm": 0.22740362584590912, + "learning_rate": 0.0006, + "loss": 3.6112914085388184, + "step": 3599 + }, + { + "epoch": 50.0, + "grad_norm": 0.24303272366523743, + "learning_rate": 0.0006, + "loss": 3.6385838985443115, + "step": 3600 + }, + { + "epoch": 50.0, + "eval_loss": 3.9811089038848877, + "eval_runtime": 44.9913, + "eval_samples_per_second": 54.277, + "eval_steps_per_second": 3.401, + "step": 3600 + }, + { + "epoch": 50.01397990388816, + "grad_norm": 0.20118683576583862, + "learning_rate": 0.0006, + "loss": 3.561751127243042, + "step": 3601 + }, + { + "epoch": 50.02795980777632, + "grad_norm": 0.18722538650035858, + "learning_rate": 0.0006, + "loss": 3.5742180347442627, + "step": 3602 + }, + { + "epoch": 50.04193971166448, + "grad_norm": 0.21248385310173035, + "learning_rate": 0.0006, + "loss": 3.5759401321411133, + "step": 3603 + }, + { + "epoch": 50.05591961555265, + "grad_norm": 0.21006572246551514, + "learning_rate": 0.0006, + "loss": 3.5737462043762207, + "step": 3604 + }, + { + "epoch": 50.0698995194408, + "grad_norm": 0.20671233534812927, + "learning_rate": 0.0006, + "loss": 3.548205852508545, + "step": 3605 + }, + { + "epoch": 50.083879423328966, + "grad_norm": 0.20704609155654907, + "learning_rate": 0.0006, + "loss": 3.5862209796905518, + "step": 3606 + }, + { + "epoch": 50.09785932721712, + "grad_norm": 0.20611345767974854, + "learning_rate": 0.0006, + "loss": 3.5696640014648438, + "step": 3607 + }, + { + "epoch": 50.111839231105286, + "grad_norm": 0.20986805856227875, + "learning_rate": 0.0006, + "loss": 3.5755579471588135, + "step": 3608 + }, + { + "epoch": 50.12581913499345, + "grad_norm": 0.21727709472179413, + "learning_rate": 0.0006, + "loss": 3.5967745780944824, + "step": 3609 + }, + { + "epoch": 50.139799038881605, + "grad_norm": 0.21854986250400543, + "learning_rate": 0.0006, + "loss": 3.6115779876708984, + "step": 3610 + }, + { + "epoch": 50.15377894276977, + "grad_norm": 0.22904936969280243, + "learning_rate": 0.0006, + "loss": 3.5639889240264893, + "step": 3611 + }, + { + "epoch": 50.16775884665793, + "grad_norm": 0.23774254322052002, + "learning_rate": 0.0006, + "loss": 3.6023900508880615, + "step": 3612 + }, + { + "epoch": 50.18173875054609, + "grad_norm": 0.21548497676849365, + "learning_rate": 0.0006, + "loss": 3.5722856521606445, + "step": 3613 + }, + { + "epoch": 50.19571865443425, + "grad_norm": 0.20503196120262146, + "learning_rate": 0.0006, + "loss": 3.5899252891540527, + "step": 3614 + }, + { + "epoch": 50.20969855832241, + "grad_norm": 0.22084423899650574, + "learning_rate": 0.0006, + "loss": 3.56020450592041, + "step": 3615 + }, + { + "epoch": 50.22367846221057, + "grad_norm": 0.24276728928089142, + "learning_rate": 0.0006, + "loss": 3.585695743560791, + "step": 3616 + }, + { + "epoch": 50.237658366098735, + "grad_norm": 0.23182106018066406, + "learning_rate": 0.0006, + "loss": 3.580676555633545, + "step": 3617 + }, + { + "epoch": 50.25163826998689, + "grad_norm": 0.2341945767402649, + "learning_rate": 0.0006, + "loss": 3.579713821411133, + "step": 3618 + }, + { + "epoch": 50.265618173875055, + "grad_norm": 0.27971863746643066, + "learning_rate": 0.0006, + "loss": 3.568251371383667, + "step": 3619 + }, + { + "epoch": 50.27959807776322, + "grad_norm": 0.24740517139434814, + "learning_rate": 0.0006, + "loss": 3.5798869132995605, + "step": 3620 + }, + { + "epoch": 50.293577981651374, + "grad_norm": 0.20561005175113678, + "learning_rate": 0.0006, + "loss": 3.5610039234161377, + "step": 3621 + }, + { + "epoch": 50.30755788553954, + "grad_norm": 0.2085379660129547, + "learning_rate": 0.0006, + "loss": 3.5620288848876953, + "step": 3622 + }, + { + "epoch": 50.3215377894277, + "grad_norm": 0.20868757367134094, + "learning_rate": 0.0006, + "loss": 3.6090598106384277, + "step": 3623 + }, + { + "epoch": 50.33551769331586, + "grad_norm": 0.18991491198539734, + "learning_rate": 0.0006, + "loss": 3.55255126953125, + "step": 3624 + }, + { + "epoch": 50.34949759720402, + "grad_norm": 0.24742646515369415, + "learning_rate": 0.0006, + "loss": 3.60585880279541, + "step": 3625 + }, + { + "epoch": 50.36347750109218, + "grad_norm": 0.26971301436424255, + "learning_rate": 0.0006, + "loss": 3.5913054943084717, + "step": 3626 + }, + { + "epoch": 50.37745740498034, + "grad_norm": 0.24294881522655487, + "learning_rate": 0.0006, + "loss": 3.5570878982543945, + "step": 3627 + }, + { + "epoch": 50.391437308868504, + "grad_norm": 0.2194664478302002, + "learning_rate": 0.0006, + "loss": 3.5800397396087646, + "step": 3628 + }, + { + "epoch": 50.40541721275666, + "grad_norm": 0.2148507982492447, + "learning_rate": 0.0006, + "loss": 3.6182782649993896, + "step": 3629 + }, + { + "epoch": 50.419397116644824, + "grad_norm": 0.22235016524791718, + "learning_rate": 0.0006, + "loss": 3.5784103870391846, + "step": 3630 + }, + { + "epoch": 50.43337702053299, + "grad_norm": 0.23176309466362, + "learning_rate": 0.0006, + "loss": 3.559011459350586, + "step": 3631 + }, + { + "epoch": 50.44735692442114, + "grad_norm": 0.2267913520336151, + "learning_rate": 0.0006, + "loss": 3.5854780673980713, + "step": 3632 + }, + { + "epoch": 50.46133682830931, + "grad_norm": 0.22565901279449463, + "learning_rate": 0.0006, + "loss": 3.5891294479370117, + "step": 3633 + }, + { + "epoch": 50.47531673219746, + "grad_norm": 0.23724839091300964, + "learning_rate": 0.0006, + "loss": 3.575702428817749, + "step": 3634 + }, + { + "epoch": 50.489296636085626, + "grad_norm": 0.23679722845554352, + "learning_rate": 0.0006, + "loss": 3.588639259338379, + "step": 3635 + }, + { + "epoch": 50.50327653997379, + "grad_norm": 0.23909232020378113, + "learning_rate": 0.0006, + "loss": 3.5828709602355957, + "step": 3636 + }, + { + "epoch": 50.517256443861946, + "grad_norm": 0.24186119437217712, + "learning_rate": 0.0006, + "loss": 3.596708059310913, + "step": 3637 + }, + { + "epoch": 50.53123634775011, + "grad_norm": 0.2325516790151596, + "learning_rate": 0.0006, + "loss": 3.610769510269165, + "step": 3638 + }, + { + "epoch": 50.54521625163827, + "grad_norm": 0.205137237906456, + "learning_rate": 0.0006, + "loss": 3.612844228744507, + "step": 3639 + }, + { + "epoch": 50.55919615552643, + "grad_norm": 0.20860300958156586, + "learning_rate": 0.0006, + "loss": 3.623669147491455, + "step": 3640 + }, + { + "epoch": 50.57317605941459, + "grad_norm": 0.20029069483280182, + "learning_rate": 0.0006, + "loss": 3.6108334064483643, + "step": 3641 + }, + { + "epoch": 50.58715596330275, + "grad_norm": 0.18841931223869324, + "learning_rate": 0.0006, + "loss": 3.6073007583618164, + "step": 3642 + }, + { + "epoch": 50.60113586719091, + "grad_norm": 0.20113889873027802, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3643 + }, + { + "epoch": 50.615115771079076, + "grad_norm": 0.23595206439495087, + "learning_rate": 0.0006, + "loss": 3.634650707244873, + "step": 3644 + }, + { + "epoch": 50.62909567496723, + "grad_norm": 0.24625661969184875, + "learning_rate": 0.0006, + "loss": 3.593716621398926, + "step": 3645 + }, + { + "epoch": 50.643075578855395, + "grad_norm": 0.2182614505290985, + "learning_rate": 0.0006, + "loss": 3.6006946563720703, + "step": 3646 + }, + { + "epoch": 50.65705548274356, + "grad_norm": 0.20867182314395905, + "learning_rate": 0.0006, + "loss": 3.6249008178710938, + "step": 3647 + }, + { + "epoch": 50.671035386631715, + "grad_norm": 0.20451945066452026, + "learning_rate": 0.0006, + "loss": 3.5870985984802246, + "step": 3648 + }, + { + "epoch": 50.68501529051988, + "grad_norm": 0.19160118699073792, + "learning_rate": 0.0006, + "loss": 3.6104488372802734, + "step": 3649 + }, + { + "epoch": 50.69899519440804, + "grad_norm": 0.18884453177452087, + "learning_rate": 0.0006, + "loss": 3.607893943786621, + "step": 3650 + }, + { + "epoch": 50.7129750982962, + "grad_norm": 0.19570060074329376, + "learning_rate": 0.0006, + "loss": 3.5938732624053955, + "step": 3651 + }, + { + "epoch": 50.72695500218436, + "grad_norm": 0.21978189051151276, + "learning_rate": 0.0006, + "loss": 3.5894908905029297, + "step": 3652 + }, + { + "epoch": 50.74093490607252, + "grad_norm": 0.19930903613567352, + "learning_rate": 0.0006, + "loss": 3.6067557334899902, + "step": 3653 + }, + { + "epoch": 50.75491480996068, + "grad_norm": 0.19450204074382782, + "learning_rate": 0.0006, + "loss": 3.5989646911621094, + "step": 3654 + }, + { + "epoch": 50.768894713848844, + "grad_norm": 0.1925407201051712, + "learning_rate": 0.0006, + "loss": 3.604339599609375, + "step": 3655 + }, + { + "epoch": 50.782874617737, + "grad_norm": 0.19232864677906036, + "learning_rate": 0.0006, + "loss": 3.5789241790771484, + "step": 3656 + }, + { + "epoch": 50.796854521625164, + "grad_norm": 0.1937529742717743, + "learning_rate": 0.0006, + "loss": 3.6060590744018555, + "step": 3657 + }, + { + "epoch": 50.81083442551333, + "grad_norm": 0.19863007962703705, + "learning_rate": 0.0006, + "loss": 3.5944440364837646, + "step": 3658 + }, + { + "epoch": 50.824814329401484, + "grad_norm": 0.18879804015159607, + "learning_rate": 0.0006, + "loss": 3.6017069816589355, + "step": 3659 + }, + { + "epoch": 50.83879423328965, + "grad_norm": 0.20111720263957977, + "learning_rate": 0.0006, + "loss": 3.593327522277832, + "step": 3660 + }, + { + "epoch": 50.8527741371778, + "grad_norm": 0.22593358159065247, + "learning_rate": 0.0006, + "loss": 3.5856096744537354, + "step": 3661 + }, + { + "epoch": 50.86675404106597, + "grad_norm": 0.22624441981315613, + "learning_rate": 0.0006, + "loss": 3.6144661903381348, + "step": 3662 + }, + { + "epoch": 50.88073394495413, + "grad_norm": 0.22052904963493347, + "learning_rate": 0.0006, + "loss": 3.5895116329193115, + "step": 3663 + }, + { + "epoch": 50.89471384884229, + "grad_norm": 0.2248559594154358, + "learning_rate": 0.0006, + "loss": 3.6400208473205566, + "step": 3664 + }, + { + "epoch": 50.90869375273045, + "grad_norm": 0.20209142565727234, + "learning_rate": 0.0006, + "loss": 3.6059279441833496, + "step": 3665 + }, + { + "epoch": 50.92267365661861, + "grad_norm": 0.2075854390859604, + "learning_rate": 0.0006, + "loss": 3.590074062347412, + "step": 3666 + }, + { + "epoch": 50.93665356050677, + "grad_norm": 0.20524698495864868, + "learning_rate": 0.0006, + "loss": 3.600741147994995, + "step": 3667 + }, + { + "epoch": 50.95063346439493, + "grad_norm": 0.1922466903924942, + "learning_rate": 0.0006, + "loss": 3.5984225273132324, + "step": 3668 + }, + { + "epoch": 50.964613368283096, + "grad_norm": 0.18852637708187103, + "learning_rate": 0.0006, + "loss": 3.6204333305358887, + "step": 3669 + }, + { + "epoch": 50.97859327217125, + "grad_norm": 0.22050459682941437, + "learning_rate": 0.0006, + "loss": 3.6371538639068604, + "step": 3670 + }, + { + "epoch": 50.992573176059416, + "grad_norm": 0.21477681398391724, + "learning_rate": 0.0006, + "loss": 3.608738899230957, + "step": 3671 + }, + { + "epoch": 51.0, + "grad_norm": 0.22061094641685486, + "learning_rate": 0.0006, + "loss": 3.6209959983825684, + "step": 3672 + }, + { + "epoch": 51.0, + "eval_loss": 3.9762842655181885, + "eval_runtime": 44.8353, + "eval_samples_per_second": 54.466, + "eval_steps_per_second": 3.412, + "step": 3672 + }, + { + "epoch": 51.01397990388816, + "grad_norm": 0.19009192287921906, + "learning_rate": 0.0006, + "loss": 3.5604426860809326, + "step": 3673 + }, + { + "epoch": 51.02795980777632, + "grad_norm": 0.2217264175415039, + "learning_rate": 0.0006, + "loss": 3.5595664978027344, + "step": 3674 + }, + { + "epoch": 51.04193971166448, + "grad_norm": 0.2747595012187958, + "learning_rate": 0.0006, + "loss": 3.5800085067749023, + "step": 3675 + }, + { + "epoch": 51.05591961555265, + "grad_norm": 0.26963043212890625, + "learning_rate": 0.0006, + "loss": 3.5529065132141113, + "step": 3676 + }, + { + "epoch": 51.0698995194408, + "grad_norm": 0.2304207682609558, + "learning_rate": 0.0006, + "loss": 3.585238456726074, + "step": 3677 + }, + { + "epoch": 51.083879423328966, + "grad_norm": 0.22073867917060852, + "learning_rate": 0.0006, + "loss": 3.542267322540283, + "step": 3678 + }, + { + "epoch": 51.09785932721712, + "grad_norm": 0.22550931572914124, + "learning_rate": 0.0006, + "loss": 3.5693743228912354, + "step": 3679 + }, + { + "epoch": 51.111839231105286, + "grad_norm": 0.2347114384174347, + "learning_rate": 0.0006, + "loss": 3.5830154418945312, + "step": 3680 + }, + { + "epoch": 51.12581913499345, + "grad_norm": 0.24889813363552094, + "learning_rate": 0.0006, + "loss": 3.581010341644287, + "step": 3681 + }, + { + "epoch": 51.139799038881605, + "grad_norm": 0.2401021122932434, + "learning_rate": 0.0006, + "loss": 3.619450092315674, + "step": 3682 + }, + { + "epoch": 51.15377894276977, + "grad_norm": 0.22221142053604126, + "learning_rate": 0.0006, + "loss": 3.573624610900879, + "step": 3683 + }, + { + "epoch": 51.16775884665793, + "grad_norm": 0.2429024577140808, + "learning_rate": 0.0006, + "loss": 3.548610210418701, + "step": 3684 + }, + { + "epoch": 51.18173875054609, + "grad_norm": 0.26470765471458435, + "learning_rate": 0.0006, + "loss": 3.5582218170166016, + "step": 3685 + }, + { + "epoch": 51.19571865443425, + "grad_norm": 0.2632715404033661, + "learning_rate": 0.0006, + "loss": 3.5976979732513428, + "step": 3686 + }, + { + "epoch": 51.20969855832241, + "grad_norm": 0.2567448616027832, + "learning_rate": 0.0006, + "loss": 3.592031478881836, + "step": 3687 + }, + { + "epoch": 51.22367846221057, + "grad_norm": 0.25299885869026184, + "learning_rate": 0.0006, + "loss": 3.579765796661377, + "step": 3688 + }, + { + "epoch": 51.237658366098735, + "grad_norm": 0.22765189409255981, + "learning_rate": 0.0006, + "loss": 3.5677521228790283, + "step": 3689 + }, + { + "epoch": 51.25163826998689, + "grad_norm": 0.23369887471199036, + "learning_rate": 0.0006, + "loss": 3.585879325866699, + "step": 3690 + }, + { + "epoch": 51.265618173875055, + "grad_norm": 0.21358822286128998, + "learning_rate": 0.0006, + "loss": 3.568866729736328, + "step": 3691 + }, + { + "epoch": 51.27959807776322, + "grad_norm": 0.2127659171819687, + "learning_rate": 0.0006, + "loss": 3.614520311355591, + "step": 3692 + }, + { + "epoch": 51.293577981651374, + "grad_norm": 0.22829636931419373, + "learning_rate": 0.0006, + "loss": 3.6004438400268555, + "step": 3693 + }, + { + "epoch": 51.30755788553954, + "grad_norm": 0.223104789853096, + "learning_rate": 0.0006, + "loss": 3.5791001319885254, + "step": 3694 + }, + { + "epoch": 51.3215377894277, + "grad_norm": 0.2084331065416336, + "learning_rate": 0.0006, + "loss": 3.572514295578003, + "step": 3695 + }, + { + "epoch": 51.33551769331586, + "grad_norm": 0.21115142107009888, + "learning_rate": 0.0006, + "loss": 3.5736331939697266, + "step": 3696 + }, + { + "epoch": 51.34949759720402, + "grad_norm": 0.2158546894788742, + "learning_rate": 0.0006, + "loss": 3.587161064147949, + "step": 3697 + }, + { + "epoch": 51.36347750109218, + "grad_norm": 0.2478281408548355, + "learning_rate": 0.0006, + "loss": 3.5879693031311035, + "step": 3698 + }, + { + "epoch": 51.37745740498034, + "grad_norm": 0.25137850642204285, + "learning_rate": 0.0006, + "loss": 3.58297061920166, + "step": 3699 + }, + { + "epoch": 51.391437308868504, + "grad_norm": 0.22961364686489105, + "learning_rate": 0.0006, + "loss": 3.5556459426879883, + "step": 3700 + }, + { + "epoch": 51.40541721275666, + "grad_norm": 0.22561277449131012, + "learning_rate": 0.0006, + "loss": 3.60197114944458, + "step": 3701 + }, + { + "epoch": 51.419397116644824, + "grad_norm": 0.20331767201423645, + "learning_rate": 0.0006, + "loss": 3.5815134048461914, + "step": 3702 + }, + { + "epoch": 51.43337702053299, + "grad_norm": 0.1941518634557724, + "learning_rate": 0.0006, + "loss": 3.6055145263671875, + "step": 3703 + }, + { + "epoch": 51.44735692442114, + "grad_norm": 0.19306789338588715, + "learning_rate": 0.0006, + "loss": 3.6101536750793457, + "step": 3704 + }, + { + "epoch": 51.46133682830931, + "grad_norm": 0.1830628365278244, + "learning_rate": 0.0006, + "loss": 3.5978426933288574, + "step": 3705 + }, + { + "epoch": 51.47531673219746, + "grad_norm": 0.19231490790843964, + "learning_rate": 0.0006, + "loss": 3.54502534866333, + "step": 3706 + }, + { + "epoch": 51.489296636085626, + "grad_norm": 0.19109117984771729, + "learning_rate": 0.0006, + "loss": 3.5957441329956055, + "step": 3707 + }, + { + "epoch": 51.50327653997379, + "grad_norm": 0.2032860815525055, + "learning_rate": 0.0006, + "loss": 3.5626730918884277, + "step": 3708 + }, + { + "epoch": 51.517256443861946, + "grad_norm": 0.19685189425945282, + "learning_rate": 0.0006, + "loss": 3.580399990081787, + "step": 3709 + }, + { + "epoch": 51.53123634775011, + "grad_norm": 0.19273017346858978, + "learning_rate": 0.0006, + "loss": 3.5428152084350586, + "step": 3710 + }, + { + "epoch": 51.54521625163827, + "grad_norm": 0.20198430120944977, + "learning_rate": 0.0006, + "loss": 3.607492446899414, + "step": 3711 + }, + { + "epoch": 51.55919615552643, + "grad_norm": 0.2267402559518814, + "learning_rate": 0.0006, + "loss": 3.580479621887207, + "step": 3712 + }, + { + "epoch": 51.57317605941459, + "grad_norm": 0.2247764617204666, + "learning_rate": 0.0006, + "loss": 3.5921316146850586, + "step": 3713 + }, + { + "epoch": 51.58715596330275, + "grad_norm": 0.23907902836799622, + "learning_rate": 0.0006, + "loss": 3.6014928817749023, + "step": 3714 + }, + { + "epoch": 51.60113586719091, + "grad_norm": 0.25907906889915466, + "learning_rate": 0.0006, + "loss": 3.5900192260742188, + "step": 3715 + }, + { + "epoch": 51.615115771079076, + "grad_norm": 0.26282405853271484, + "learning_rate": 0.0006, + "loss": 3.5727553367614746, + "step": 3716 + }, + { + "epoch": 51.62909567496723, + "grad_norm": 0.2541179060935974, + "learning_rate": 0.0006, + "loss": 3.5835776329040527, + "step": 3717 + }, + { + "epoch": 51.643075578855395, + "grad_norm": 0.23372016847133636, + "learning_rate": 0.0006, + "loss": 3.5902652740478516, + "step": 3718 + }, + { + "epoch": 51.65705548274356, + "grad_norm": 0.22827622294425964, + "learning_rate": 0.0006, + "loss": 3.6048200130462646, + "step": 3719 + }, + { + "epoch": 51.671035386631715, + "grad_norm": 0.21026845276355743, + "learning_rate": 0.0006, + "loss": 3.5587573051452637, + "step": 3720 + }, + { + "epoch": 51.68501529051988, + "grad_norm": 0.23485958576202393, + "learning_rate": 0.0006, + "loss": 3.6212477684020996, + "step": 3721 + }, + { + "epoch": 51.69899519440804, + "grad_norm": 0.2676871120929718, + "learning_rate": 0.0006, + "loss": 3.597837448120117, + "step": 3722 + }, + { + "epoch": 51.7129750982962, + "grad_norm": 0.23661476373672485, + "learning_rate": 0.0006, + "loss": 3.616079330444336, + "step": 3723 + }, + { + "epoch": 51.72695500218436, + "grad_norm": 0.2212267816066742, + "learning_rate": 0.0006, + "loss": 3.6103296279907227, + "step": 3724 + }, + { + "epoch": 51.74093490607252, + "grad_norm": 0.22888682782649994, + "learning_rate": 0.0006, + "loss": 3.6099889278411865, + "step": 3725 + }, + { + "epoch": 51.75491480996068, + "grad_norm": 0.21740387380123138, + "learning_rate": 0.0006, + "loss": 3.5859200954437256, + "step": 3726 + }, + { + "epoch": 51.768894713848844, + "grad_norm": 0.20819106698036194, + "learning_rate": 0.0006, + "loss": 3.5875396728515625, + "step": 3727 + }, + { + "epoch": 51.782874617737, + "grad_norm": 0.21574485301971436, + "learning_rate": 0.0006, + "loss": 3.6203761100769043, + "step": 3728 + }, + { + "epoch": 51.796854521625164, + "grad_norm": 0.21275651454925537, + "learning_rate": 0.0006, + "loss": 3.6066012382507324, + "step": 3729 + }, + { + "epoch": 51.81083442551333, + "grad_norm": 0.2043808251619339, + "learning_rate": 0.0006, + "loss": 3.571417808532715, + "step": 3730 + }, + { + "epoch": 51.824814329401484, + "grad_norm": 0.2082396298646927, + "learning_rate": 0.0006, + "loss": 3.6076579093933105, + "step": 3731 + }, + { + "epoch": 51.83879423328965, + "grad_norm": 0.23331953585147858, + "learning_rate": 0.0006, + "loss": 3.621837615966797, + "step": 3732 + }, + { + "epoch": 51.8527741371778, + "grad_norm": 0.25569960474967957, + "learning_rate": 0.0006, + "loss": 3.602004051208496, + "step": 3733 + }, + { + "epoch": 51.86675404106597, + "grad_norm": 0.230540469288826, + "learning_rate": 0.0006, + "loss": 3.5829110145568848, + "step": 3734 + }, + { + "epoch": 51.88073394495413, + "grad_norm": 0.20307230949401855, + "learning_rate": 0.0006, + "loss": 3.5572190284729004, + "step": 3735 + }, + { + "epoch": 51.89471384884229, + "grad_norm": 0.20902153849601746, + "learning_rate": 0.0006, + "loss": 3.5939853191375732, + "step": 3736 + }, + { + "epoch": 51.90869375273045, + "grad_norm": 0.20433510839939117, + "learning_rate": 0.0006, + "loss": 3.6104702949523926, + "step": 3737 + }, + { + "epoch": 51.92267365661861, + "grad_norm": 0.2285638302564621, + "learning_rate": 0.0006, + "loss": 3.5588834285736084, + "step": 3738 + }, + { + "epoch": 51.93665356050677, + "grad_norm": 0.2388262301683426, + "learning_rate": 0.0006, + "loss": 3.6203103065490723, + "step": 3739 + }, + { + "epoch": 51.95063346439493, + "grad_norm": 0.22572419047355652, + "learning_rate": 0.0006, + "loss": 3.6191892623901367, + "step": 3740 + }, + { + "epoch": 51.964613368283096, + "grad_norm": 0.21060727536678314, + "learning_rate": 0.0006, + "loss": 3.620879650115967, + "step": 3741 + }, + { + "epoch": 51.97859327217125, + "grad_norm": 0.2045326828956604, + "learning_rate": 0.0006, + "loss": 3.5959091186523438, + "step": 3742 + }, + { + "epoch": 51.992573176059416, + "grad_norm": 0.21882471442222595, + "learning_rate": 0.0006, + "loss": 3.6504573822021484, + "step": 3743 + }, + { + "epoch": 52.0, + "grad_norm": 0.24379056692123413, + "learning_rate": 0.0006, + "loss": 3.6293625831604004, + "step": 3744 + }, + { + "epoch": 52.0, + "eval_loss": 3.9772427082061768, + "eval_runtime": 44.248, + "eval_samples_per_second": 55.189, + "eval_steps_per_second": 3.458, + "step": 3744 + }, + { + "epoch": 52.01397990388816, + "grad_norm": 0.19682207703590393, + "learning_rate": 0.0006, + "loss": 3.604281425476074, + "step": 3745 + }, + { + "epoch": 52.02795980777632, + "grad_norm": 0.23003028333187103, + "learning_rate": 0.0006, + "loss": 3.588266372680664, + "step": 3746 + }, + { + "epoch": 52.04193971166448, + "grad_norm": 0.2458166778087616, + "learning_rate": 0.0006, + "loss": 3.59077787399292, + "step": 3747 + }, + { + "epoch": 52.05591961555265, + "grad_norm": 0.23873521387577057, + "learning_rate": 0.0006, + "loss": 3.556537628173828, + "step": 3748 + }, + { + "epoch": 52.0698995194408, + "grad_norm": 0.21737053990364075, + "learning_rate": 0.0006, + "loss": 3.5758891105651855, + "step": 3749 + }, + { + "epoch": 52.083879423328966, + "grad_norm": 0.22239601612091064, + "learning_rate": 0.0006, + "loss": 3.552678346633911, + "step": 3750 + }, + { + "epoch": 52.09785932721712, + "grad_norm": 0.21818044781684875, + "learning_rate": 0.0006, + "loss": 3.577249526977539, + "step": 3751 + }, + { + "epoch": 52.111839231105286, + "grad_norm": 0.24513746798038483, + "learning_rate": 0.0006, + "loss": 3.569178581237793, + "step": 3752 + }, + { + "epoch": 52.12581913499345, + "grad_norm": 0.2801238000392914, + "learning_rate": 0.0006, + "loss": 3.556199073791504, + "step": 3753 + }, + { + "epoch": 52.139799038881605, + "grad_norm": 0.2722291648387909, + "learning_rate": 0.0006, + "loss": 3.5571072101593018, + "step": 3754 + }, + { + "epoch": 52.15377894276977, + "grad_norm": 0.2146541327238083, + "learning_rate": 0.0006, + "loss": 3.5831902027130127, + "step": 3755 + }, + { + "epoch": 52.16775884665793, + "grad_norm": 0.21040776371955872, + "learning_rate": 0.0006, + "loss": 3.6021504402160645, + "step": 3756 + }, + { + "epoch": 52.18173875054609, + "grad_norm": 0.24059702455997467, + "learning_rate": 0.0006, + "loss": 3.57401704788208, + "step": 3757 + }, + { + "epoch": 52.19571865443425, + "grad_norm": 0.25043657422065735, + "learning_rate": 0.0006, + "loss": 3.5776405334472656, + "step": 3758 + }, + { + "epoch": 52.20969855832241, + "grad_norm": 0.24292849004268646, + "learning_rate": 0.0006, + "loss": 3.5602574348449707, + "step": 3759 + }, + { + "epoch": 52.22367846221057, + "grad_norm": 0.2159980833530426, + "learning_rate": 0.0006, + "loss": 3.552079200744629, + "step": 3760 + }, + { + "epoch": 52.237658366098735, + "grad_norm": 0.19305892288684845, + "learning_rate": 0.0006, + "loss": 3.581195831298828, + "step": 3761 + }, + { + "epoch": 52.25163826998689, + "grad_norm": 0.2115706503391266, + "learning_rate": 0.0006, + "loss": 3.5689306259155273, + "step": 3762 + }, + { + "epoch": 52.265618173875055, + "grad_norm": 0.21885409951210022, + "learning_rate": 0.0006, + "loss": 3.5549206733703613, + "step": 3763 + }, + { + "epoch": 52.27959807776322, + "grad_norm": 0.2069413661956787, + "learning_rate": 0.0006, + "loss": 3.5743770599365234, + "step": 3764 + }, + { + "epoch": 52.293577981651374, + "grad_norm": 0.21922551095485687, + "learning_rate": 0.0006, + "loss": 3.5780110359191895, + "step": 3765 + }, + { + "epoch": 52.30755788553954, + "grad_norm": 0.21675541996955872, + "learning_rate": 0.0006, + "loss": 3.575730800628662, + "step": 3766 + }, + { + "epoch": 52.3215377894277, + "grad_norm": 0.21250510215759277, + "learning_rate": 0.0006, + "loss": 3.546060085296631, + "step": 3767 + }, + { + "epoch": 52.33551769331586, + "grad_norm": 0.23665618896484375, + "learning_rate": 0.0006, + "loss": 3.5887606143951416, + "step": 3768 + }, + { + "epoch": 52.34949759720402, + "grad_norm": 0.2525961399078369, + "learning_rate": 0.0006, + "loss": 3.5885281562805176, + "step": 3769 + }, + { + "epoch": 52.36347750109218, + "grad_norm": 0.26285895705223083, + "learning_rate": 0.0006, + "loss": 3.5880684852600098, + "step": 3770 + }, + { + "epoch": 52.37745740498034, + "grad_norm": 0.24714398384094238, + "learning_rate": 0.0006, + "loss": 3.548165798187256, + "step": 3771 + }, + { + "epoch": 52.391437308868504, + "grad_norm": 0.2234657257795334, + "learning_rate": 0.0006, + "loss": 3.56547212600708, + "step": 3772 + }, + { + "epoch": 52.40541721275666, + "grad_norm": 0.20636901259422302, + "learning_rate": 0.0006, + "loss": 3.5702133178710938, + "step": 3773 + }, + { + "epoch": 52.419397116644824, + "grad_norm": 0.20656965672969818, + "learning_rate": 0.0006, + "loss": 3.614602565765381, + "step": 3774 + }, + { + "epoch": 52.43337702053299, + "grad_norm": 0.20018167793750763, + "learning_rate": 0.0006, + "loss": 3.6063036918640137, + "step": 3775 + }, + { + "epoch": 52.44735692442114, + "grad_norm": 0.21859782934188843, + "learning_rate": 0.0006, + "loss": 3.5728869438171387, + "step": 3776 + }, + { + "epoch": 52.46133682830931, + "grad_norm": 0.21622174978256226, + "learning_rate": 0.0006, + "loss": 3.5657505989074707, + "step": 3777 + }, + { + "epoch": 52.47531673219746, + "grad_norm": 0.19779632985591888, + "learning_rate": 0.0006, + "loss": 3.5841145515441895, + "step": 3778 + }, + { + "epoch": 52.489296636085626, + "grad_norm": 0.21635952591896057, + "learning_rate": 0.0006, + "loss": 3.582096576690674, + "step": 3779 + }, + { + "epoch": 52.50327653997379, + "grad_norm": 0.21348397433757782, + "learning_rate": 0.0006, + "loss": 3.5654468536376953, + "step": 3780 + }, + { + "epoch": 52.517256443861946, + "grad_norm": 0.19572246074676514, + "learning_rate": 0.0006, + "loss": 3.5806241035461426, + "step": 3781 + }, + { + "epoch": 52.53123634775011, + "grad_norm": 0.1887553185224533, + "learning_rate": 0.0006, + "loss": 3.5752944946289062, + "step": 3782 + }, + { + "epoch": 52.54521625163827, + "grad_norm": 0.2192932814359665, + "learning_rate": 0.0006, + "loss": 3.5846266746520996, + "step": 3783 + }, + { + "epoch": 52.55919615552643, + "grad_norm": 0.23833444714546204, + "learning_rate": 0.0006, + "loss": 3.563093900680542, + "step": 3784 + }, + { + "epoch": 52.57317605941459, + "grad_norm": 0.26471760869026184, + "learning_rate": 0.0006, + "loss": 3.5582051277160645, + "step": 3785 + }, + { + "epoch": 52.58715596330275, + "grad_norm": 0.2767478823661804, + "learning_rate": 0.0006, + "loss": 3.5650997161865234, + "step": 3786 + }, + { + "epoch": 52.60113586719091, + "grad_norm": 0.26556241512298584, + "learning_rate": 0.0006, + "loss": 3.5944058895111084, + "step": 3787 + }, + { + "epoch": 52.615115771079076, + "grad_norm": 0.2733243405818939, + "learning_rate": 0.0006, + "loss": 3.5781195163726807, + "step": 3788 + }, + { + "epoch": 52.62909567496723, + "grad_norm": 0.24836041033267975, + "learning_rate": 0.0006, + "loss": 3.582634687423706, + "step": 3789 + }, + { + "epoch": 52.643075578855395, + "grad_norm": 0.2119593471288681, + "learning_rate": 0.0006, + "loss": 3.5851502418518066, + "step": 3790 + }, + { + "epoch": 52.65705548274356, + "grad_norm": 0.23237599432468414, + "learning_rate": 0.0006, + "loss": 3.5877747535705566, + "step": 3791 + }, + { + "epoch": 52.671035386631715, + "grad_norm": 0.21037372946739197, + "learning_rate": 0.0006, + "loss": 3.579045295715332, + "step": 3792 + }, + { + "epoch": 52.68501529051988, + "grad_norm": 0.19258099794387817, + "learning_rate": 0.0006, + "loss": 3.599151611328125, + "step": 3793 + }, + { + "epoch": 52.69899519440804, + "grad_norm": 0.18808242678642273, + "learning_rate": 0.0006, + "loss": 3.580679416656494, + "step": 3794 + }, + { + "epoch": 52.7129750982962, + "grad_norm": 0.18208397924900055, + "learning_rate": 0.0006, + "loss": 3.5940206050872803, + "step": 3795 + }, + { + "epoch": 52.72695500218436, + "grad_norm": 0.18173424899578094, + "learning_rate": 0.0006, + "loss": 3.5997331142425537, + "step": 3796 + }, + { + "epoch": 52.74093490607252, + "grad_norm": 0.1868390142917633, + "learning_rate": 0.0006, + "loss": 3.60007905960083, + "step": 3797 + }, + { + "epoch": 52.75491480996068, + "grad_norm": 0.1859273761510849, + "learning_rate": 0.0006, + "loss": 3.602668285369873, + "step": 3798 + }, + { + "epoch": 52.768894713848844, + "grad_norm": 0.18063156306743622, + "learning_rate": 0.0006, + "loss": 3.579869270324707, + "step": 3799 + }, + { + "epoch": 52.782874617737, + "grad_norm": 0.18920548260211945, + "learning_rate": 0.0006, + "loss": 3.6056337356567383, + "step": 3800 + }, + { + "epoch": 52.796854521625164, + "grad_norm": 0.20110033452510834, + "learning_rate": 0.0006, + "loss": 3.5694475173950195, + "step": 3801 + }, + { + "epoch": 52.81083442551333, + "grad_norm": 0.20331093668937683, + "learning_rate": 0.0006, + "loss": 3.5940358638763428, + "step": 3802 + }, + { + "epoch": 52.824814329401484, + "grad_norm": 0.2035607248544693, + "learning_rate": 0.0006, + "loss": 3.621305465698242, + "step": 3803 + }, + { + "epoch": 52.83879423328965, + "grad_norm": 0.1974431872367859, + "learning_rate": 0.0006, + "loss": 3.5959153175354004, + "step": 3804 + }, + { + "epoch": 52.8527741371778, + "grad_norm": 0.1832808405160904, + "learning_rate": 0.0006, + "loss": 3.582113265991211, + "step": 3805 + }, + { + "epoch": 52.86675404106597, + "grad_norm": 0.20269927382469177, + "learning_rate": 0.0006, + "loss": 3.5923209190368652, + "step": 3806 + }, + { + "epoch": 52.88073394495413, + "grad_norm": 0.20628313720226288, + "learning_rate": 0.0006, + "loss": 3.599729537963867, + "step": 3807 + }, + { + "epoch": 52.89471384884229, + "grad_norm": 0.2144002914428711, + "learning_rate": 0.0006, + "loss": 3.601041793823242, + "step": 3808 + }, + { + "epoch": 52.90869375273045, + "grad_norm": 0.215015709400177, + "learning_rate": 0.0006, + "loss": 3.5873360633850098, + "step": 3809 + }, + { + "epoch": 52.92267365661861, + "grad_norm": 0.23122714459896088, + "learning_rate": 0.0006, + "loss": 3.5839362144470215, + "step": 3810 + }, + { + "epoch": 52.93665356050677, + "grad_norm": 0.2381119281053543, + "learning_rate": 0.0006, + "loss": 3.564755439758301, + "step": 3811 + }, + { + "epoch": 52.95063346439493, + "grad_norm": 0.22975024580955505, + "learning_rate": 0.0006, + "loss": 3.594020128250122, + "step": 3812 + }, + { + "epoch": 52.964613368283096, + "grad_norm": 0.2419184148311615, + "learning_rate": 0.0006, + "loss": 3.5917205810546875, + "step": 3813 + }, + { + "epoch": 52.97859327217125, + "grad_norm": 0.21143122017383575, + "learning_rate": 0.0006, + "loss": 3.626842975616455, + "step": 3814 + }, + { + "epoch": 52.992573176059416, + "grad_norm": 0.195548415184021, + "learning_rate": 0.0006, + "loss": 3.5798377990722656, + "step": 3815 + }, + { + "epoch": 53.0, + "grad_norm": 0.22441816329956055, + "learning_rate": 0.0006, + "loss": 3.5652856826782227, + "step": 3816 + }, + { + "epoch": 53.0, + "eval_loss": 3.9635632038116455, + "eval_runtime": 44.772, + "eval_samples_per_second": 54.543, + "eval_steps_per_second": 3.417, + "step": 3816 + }, + { + "epoch": 53.01397990388816, + "grad_norm": 0.2547561228275299, + "learning_rate": 0.0006, + "loss": 3.562561511993408, + "step": 3817 + }, + { + "epoch": 53.02795980777632, + "grad_norm": 0.36890196800231934, + "learning_rate": 0.0006, + "loss": 3.534581184387207, + "step": 3818 + }, + { + "epoch": 53.04193971166448, + "grad_norm": 0.42631810903549194, + "learning_rate": 0.0006, + "loss": 3.5438239574432373, + "step": 3819 + }, + { + "epoch": 53.05591961555265, + "grad_norm": 0.29458126425743103, + "learning_rate": 0.0006, + "loss": 3.5594735145568848, + "step": 3820 + }, + { + "epoch": 53.0698995194408, + "grad_norm": 0.24320989847183228, + "learning_rate": 0.0006, + "loss": 3.5715155601501465, + "step": 3821 + }, + { + "epoch": 53.083879423328966, + "grad_norm": 0.3012531101703644, + "learning_rate": 0.0006, + "loss": 3.5324978828430176, + "step": 3822 + }, + { + "epoch": 53.09785932721712, + "grad_norm": 0.2789555788040161, + "learning_rate": 0.0006, + "loss": 3.5848183631896973, + "step": 3823 + }, + { + "epoch": 53.111839231105286, + "grad_norm": 0.2488897293806076, + "learning_rate": 0.0006, + "loss": 3.5853679180145264, + "step": 3824 + }, + { + "epoch": 53.12581913499345, + "grad_norm": 0.3016898036003113, + "learning_rate": 0.0006, + "loss": 3.585637092590332, + "step": 3825 + }, + { + "epoch": 53.139799038881605, + "grad_norm": 0.30293571949005127, + "learning_rate": 0.0006, + "loss": 3.5745015144348145, + "step": 3826 + }, + { + "epoch": 53.15377894276977, + "grad_norm": 0.24611566960811615, + "learning_rate": 0.0006, + "loss": 3.5761728286743164, + "step": 3827 + }, + { + "epoch": 53.16775884665793, + "grad_norm": 0.23852500319480896, + "learning_rate": 0.0006, + "loss": 3.59317946434021, + "step": 3828 + }, + { + "epoch": 53.18173875054609, + "grad_norm": 0.27882838249206543, + "learning_rate": 0.0006, + "loss": 3.589779853820801, + "step": 3829 + }, + { + "epoch": 53.19571865443425, + "grad_norm": 0.3252250552177429, + "learning_rate": 0.0006, + "loss": 3.564526081085205, + "step": 3830 + }, + { + "epoch": 53.20969855832241, + "grad_norm": 0.29635530710220337, + "learning_rate": 0.0006, + "loss": 3.5309946537017822, + "step": 3831 + }, + { + "epoch": 53.22367846221057, + "grad_norm": 0.25211700797080994, + "learning_rate": 0.0006, + "loss": 3.5795631408691406, + "step": 3832 + }, + { + "epoch": 53.237658366098735, + "grad_norm": 0.20772705972194672, + "learning_rate": 0.0006, + "loss": 3.5649163722991943, + "step": 3833 + }, + { + "epoch": 53.25163826998689, + "grad_norm": 0.2460525780916214, + "learning_rate": 0.0006, + "loss": 3.5484111309051514, + "step": 3834 + }, + { + "epoch": 53.265618173875055, + "grad_norm": 0.24652884900569916, + "learning_rate": 0.0006, + "loss": 3.5631136894226074, + "step": 3835 + }, + { + "epoch": 53.27959807776322, + "grad_norm": 0.23740890622138977, + "learning_rate": 0.0006, + "loss": 3.6234607696533203, + "step": 3836 + }, + { + "epoch": 53.293577981651374, + "grad_norm": 0.2463800311088562, + "learning_rate": 0.0006, + "loss": 3.5578083992004395, + "step": 3837 + }, + { + "epoch": 53.30755788553954, + "grad_norm": 0.23402568697929382, + "learning_rate": 0.0006, + "loss": 3.559845209121704, + "step": 3838 + }, + { + "epoch": 53.3215377894277, + "grad_norm": 0.2539580762386322, + "learning_rate": 0.0006, + "loss": 3.5863685607910156, + "step": 3839 + }, + { + "epoch": 53.33551769331586, + "grad_norm": 0.24994857609272003, + "learning_rate": 0.0006, + "loss": 3.5758700370788574, + "step": 3840 + }, + { + "epoch": 53.34949759720402, + "grad_norm": 0.21340647339820862, + "learning_rate": 0.0006, + "loss": 3.588602066040039, + "step": 3841 + }, + { + "epoch": 53.36347750109218, + "grad_norm": 0.2029065042734146, + "learning_rate": 0.0006, + "loss": 3.58594012260437, + "step": 3842 + }, + { + "epoch": 53.37745740498034, + "grad_norm": 0.20266403257846832, + "learning_rate": 0.0006, + "loss": 3.5906057357788086, + "step": 3843 + }, + { + "epoch": 53.391437308868504, + "grad_norm": 0.19940714538097382, + "learning_rate": 0.0006, + "loss": 3.5458335876464844, + "step": 3844 + }, + { + "epoch": 53.40541721275666, + "grad_norm": 0.21295064687728882, + "learning_rate": 0.0006, + "loss": 3.5589025020599365, + "step": 3845 + }, + { + "epoch": 53.419397116644824, + "grad_norm": 0.2150672823190689, + "learning_rate": 0.0006, + "loss": 3.5907669067382812, + "step": 3846 + }, + { + "epoch": 53.43337702053299, + "grad_norm": 0.21469077467918396, + "learning_rate": 0.0006, + "loss": 3.5403499603271484, + "step": 3847 + }, + { + "epoch": 53.44735692442114, + "grad_norm": 0.20485323667526245, + "learning_rate": 0.0006, + "loss": 3.5634326934814453, + "step": 3848 + }, + { + "epoch": 53.46133682830931, + "grad_norm": 0.1981327086687088, + "learning_rate": 0.0006, + "loss": 3.579385280609131, + "step": 3849 + }, + { + "epoch": 53.47531673219746, + "grad_norm": 0.1898331642150879, + "learning_rate": 0.0006, + "loss": 3.5824122428894043, + "step": 3850 + }, + { + "epoch": 53.489296636085626, + "grad_norm": 0.18228355050086975, + "learning_rate": 0.0006, + "loss": 3.533255100250244, + "step": 3851 + }, + { + "epoch": 53.50327653997379, + "grad_norm": 0.1803922951221466, + "learning_rate": 0.0006, + "loss": 3.589881420135498, + "step": 3852 + }, + { + "epoch": 53.517256443861946, + "grad_norm": 0.19590361416339874, + "learning_rate": 0.0006, + "loss": 3.599487066268921, + "step": 3853 + }, + { + "epoch": 53.53123634775011, + "grad_norm": 0.1935775727033615, + "learning_rate": 0.0006, + "loss": 3.5769765377044678, + "step": 3854 + }, + { + "epoch": 53.54521625163827, + "grad_norm": 0.1790810525417328, + "learning_rate": 0.0006, + "loss": 3.594104290008545, + "step": 3855 + }, + { + "epoch": 53.55919615552643, + "grad_norm": 0.17993320524692535, + "learning_rate": 0.0006, + "loss": 3.555650234222412, + "step": 3856 + }, + { + "epoch": 53.57317605941459, + "grad_norm": 0.19114883244037628, + "learning_rate": 0.0006, + "loss": 3.599574089050293, + "step": 3857 + }, + { + "epoch": 53.58715596330275, + "grad_norm": 0.18493886291980743, + "learning_rate": 0.0006, + "loss": 3.555177927017212, + "step": 3858 + }, + { + "epoch": 53.60113586719091, + "grad_norm": 0.19346027076244354, + "learning_rate": 0.0006, + "loss": 3.601219654083252, + "step": 3859 + }, + { + "epoch": 53.615115771079076, + "grad_norm": 0.2002234011888504, + "learning_rate": 0.0006, + "loss": 3.5614418983459473, + "step": 3860 + }, + { + "epoch": 53.62909567496723, + "grad_norm": 0.17705366015434265, + "learning_rate": 0.0006, + "loss": 3.587432384490967, + "step": 3861 + }, + { + "epoch": 53.643075578855395, + "grad_norm": 0.19825726747512817, + "learning_rate": 0.0006, + "loss": 3.570539951324463, + "step": 3862 + }, + { + "epoch": 53.65705548274356, + "grad_norm": 0.2038952112197876, + "learning_rate": 0.0006, + "loss": 3.575758934020996, + "step": 3863 + }, + { + "epoch": 53.671035386631715, + "grad_norm": 0.21109119057655334, + "learning_rate": 0.0006, + "loss": 3.6013951301574707, + "step": 3864 + }, + { + "epoch": 53.68501529051988, + "grad_norm": 0.21738514304161072, + "learning_rate": 0.0006, + "loss": 3.567424774169922, + "step": 3865 + }, + { + "epoch": 53.69899519440804, + "grad_norm": 0.214813694357872, + "learning_rate": 0.0006, + "loss": 3.599733352661133, + "step": 3866 + }, + { + "epoch": 53.7129750982962, + "grad_norm": 0.20838409662246704, + "learning_rate": 0.0006, + "loss": 3.595839738845825, + "step": 3867 + }, + { + "epoch": 53.72695500218436, + "grad_norm": 0.2088911384344101, + "learning_rate": 0.0006, + "loss": 3.6030569076538086, + "step": 3868 + }, + { + "epoch": 53.74093490607252, + "grad_norm": 0.22705569863319397, + "learning_rate": 0.0006, + "loss": 3.5876665115356445, + "step": 3869 + }, + { + "epoch": 53.75491480996068, + "grad_norm": 0.22327932715415955, + "learning_rate": 0.0006, + "loss": 3.5555529594421387, + "step": 3870 + }, + { + "epoch": 53.768894713848844, + "grad_norm": 0.2092375010251999, + "learning_rate": 0.0006, + "loss": 3.599871873855591, + "step": 3871 + }, + { + "epoch": 53.782874617737, + "grad_norm": 0.20672307908535004, + "learning_rate": 0.0006, + "loss": 3.598846435546875, + "step": 3872 + }, + { + "epoch": 53.796854521625164, + "grad_norm": 0.2090507596731186, + "learning_rate": 0.0006, + "loss": 3.564012050628662, + "step": 3873 + }, + { + "epoch": 53.81083442551333, + "grad_norm": 0.2044386863708496, + "learning_rate": 0.0006, + "loss": 3.585221529006958, + "step": 3874 + }, + { + "epoch": 53.824814329401484, + "grad_norm": 0.2065548598766327, + "learning_rate": 0.0006, + "loss": 3.595351457595825, + "step": 3875 + }, + { + "epoch": 53.83879423328965, + "grad_norm": 0.22895927727222443, + "learning_rate": 0.0006, + "loss": 3.5720505714416504, + "step": 3876 + }, + { + "epoch": 53.8527741371778, + "grad_norm": 0.22099260985851288, + "learning_rate": 0.0006, + "loss": 3.572587251663208, + "step": 3877 + }, + { + "epoch": 53.86675404106597, + "grad_norm": 0.19928759336471558, + "learning_rate": 0.0006, + "loss": 3.5641839504241943, + "step": 3878 + }, + { + "epoch": 53.88073394495413, + "grad_norm": 0.2735077440738678, + "learning_rate": 0.0006, + "loss": 3.575535774230957, + "step": 3879 + }, + { + "epoch": 53.89471384884229, + "grad_norm": 0.2642554044723511, + "learning_rate": 0.0006, + "loss": 3.5993123054504395, + "step": 3880 + }, + { + "epoch": 53.90869375273045, + "grad_norm": 0.22406205534934998, + "learning_rate": 0.0006, + "loss": 3.5968177318573, + "step": 3881 + }, + { + "epoch": 53.92267365661861, + "grad_norm": 0.22148431837558746, + "learning_rate": 0.0006, + "loss": 3.5668797492980957, + "step": 3882 + }, + { + "epoch": 53.93665356050677, + "grad_norm": 0.20805056393146515, + "learning_rate": 0.0006, + "loss": 3.60849666595459, + "step": 3883 + }, + { + "epoch": 53.95063346439493, + "grad_norm": 0.18656247854232788, + "learning_rate": 0.0006, + "loss": 3.5883405208587646, + "step": 3884 + }, + { + "epoch": 53.964613368283096, + "grad_norm": 0.19937767088413239, + "learning_rate": 0.0006, + "loss": 3.5897698402404785, + "step": 3885 + }, + { + "epoch": 53.97859327217125, + "grad_norm": 0.19680732488632202, + "learning_rate": 0.0006, + "loss": 3.568530559539795, + "step": 3886 + }, + { + "epoch": 53.992573176059416, + "grad_norm": 0.218981072306633, + "learning_rate": 0.0006, + "loss": 3.6194474697113037, + "step": 3887 + }, + { + "epoch": 54.0, + "grad_norm": 0.26408281922340393, + "learning_rate": 0.0006, + "loss": 3.5224976539611816, + "step": 3888 + }, + { + "epoch": 54.0, + "eval_loss": 3.983997106552124, + "eval_runtime": 44.9507, + "eval_samples_per_second": 54.326, + "eval_steps_per_second": 3.404, + "step": 3888 + }, + { + "epoch": 54.01397990388816, + "grad_norm": 0.2230917066335678, + "learning_rate": 0.0006, + "loss": 3.578058958053589, + "step": 3889 + }, + { + "epoch": 54.02795980777632, + "grad_norm": 0.23055201768875122, + "learning_rate": 0.0006, + "loss": 3.549612283706665, + "step": 3890 + }, + { + "epoch": 54.04193971166448, + "grad_norm": 0.23317518830299377, + "learning_rate": 0.0006, + "loss": 3.5662591457366943, + "step": 3891 + }, + { + "epoch": 54.05591961555265, + "grad_norm": 0.27022141218185425, + "learning_rate": 0.0006, + "loss": 3.547062873840332, + "step": 3892 + }, + { + "epoch": 54.0698995194408, + "grad_norm": 0.2665329873561859, + "learning_rate": 0.0006, + "loss": 3.540881633758545, + "step": 3893 + }, + { + "epoch": 54.083879423328966, + "grad_norm": 0.23968365788459778, + "learning_rate": 0.0006, + "loss": 3.574781894683838, + "step": 3894 + }, + { + "epoch": 54.09785932721712, + "grad_norm": 0.22174887359142303, + "learning_rate": 0.0006, + "loss": 3.514077663421631, + "step": 3895 + }, + { + "epoch": 54.111839231105286, + "grad_norm": 0.24605485796928406, + "learning_rate": 0.0006, + "loss": 3.534174919128418, + "step": 3896 + }, + { + "epoch": 54.12581913499345, + "grad_norm": 0.22874566912651062, + "learning_rate": 0.0006, + "loss": 3.574282169342041, + "step": 3897 + }, + { + "epoch": 54.139799038881605, + "grad_norm": 0.2113833874464035, + "learning_rate": 0.0006, + "loss": 3.548687696456909, + "step": 3898 + }, + { + "epoch": 54.15377894276977, + "grad_norm": 0.20756855607032776, + "learning_rate": 0.0006, + "loss": 3.556060791015625, + "step": 3899 + }, + { + "epoch": 54.16775884665793, + "grad_norm": 0.2070261538028717, + "learning_rate": 0.0006, + "loss": 3.5585689544677734, + "step": 3900 + }, + { + "epoch": 54.18173875054609, + "grad_norm": 0.20014794170856476, + "learning_rate": 0.0006, + "loss": 3.5898427963256836, + "step": 3901 + }, + { + "epoch": 54.19571865443425, + "grad_norm": 0.19851888716220856, + "learning_rate": 0.0006, + "loss": 3.564826011657715, + "step": 3902 + }, + { + "epoch": 54.20969855832241, + "grad_norm": 0.20333127677440643, + "learning_rate": 0.0006, + "loss": 3.540660858154297, + "step": 3903 + }, + { + "epoch": 54.22367846221057, + "grad_norm": 0.20291075110435486, + "learning_rate": 0.0006, + "loss": 3.544628143310547, + "step": 3904 + }, + { + "epoch": 54.237658366098735, + "grad_norm": 0.2055949866771698, + "learning_rate": 0.0006, + "loss": 3.547478675842285, + "step": 3905 + }, + { + "epoch": 54.25163826998689, + "grad_norm": 0.20305688679218292, + "learning_rate": 0.0006, + "loss": 3.5793099403381348, + "step": 3906 + }, + { + "epoch": 54.265618173875055, + "grad_norm": 0.21053043007850647, + "learning_rate": 0.0006, + "loss": 3.529263973236084, + "step": 3907 + }, + { + "epoch": 54.27959807776322, + "grad_norm": 0.2461051046848297, + "learning_rate": 0.0006, + "loss": 3.598266124725342, + "step": 3908 + }, + { + "epoch": 54.293577981651374, + "grad_norm": 0.25074276328086853, + "learning_rate": 0.0006, + "loss": 3.557170867919922, + "step": 3909 + }, + { + "epoch": 54.30755788553954, + "grad_norm": 0.23321498930454254, + "learning_rate": 0.0006, + "loss": 3.5532279014587402, + "step": 3910 + }, + { + "epoch": 54.3215377894277, + "grad_norm": 0.19062374532222748, + "learning_rate": 0.0006, + "loss": 3.5718722343444824, + "step": 3911 + }, + { + "epoch": 54.33551769331586, + "grad_norm": 0.22571852803230286, + "learning_rate": 0.0006, + "loss": 3.539036750793457, + "step": 3912 + }, + { + "epoch": 54.34949759720402, + "grad_norm": 0.23314784467220306, + "learning_rate": 0.0006, + "loss": 3.5444631576538086, + "step": 3913 + }, + { + "epoch": 54.36347750109218, + "grad_norm": 0.22334037721157074, + "learning_rate": 0.0006, + "loss": 3.5567970275878906, + "step": 3914 + }, + { + "epoch": 54.37745740498034, + "grad_norm": 0.21900276839733124, + "learning_rate": 0.0006, + "loss": 3.600113868713379, + "step": 3915 + }, + { + "epoch": 54.391437308868504, + "grad_norm": 0.20166733860969543, + "learning_rate": 0.0006, + "loss": 3.54038667678833, + "step": 3916 + }, + { + "epoch": 54.40541721275666, + "grad_norm": 0.21886761486530304, + "learning_rate": 0.0006, + "loss": 3.5708651542663574, + "step": 3917 + }, + { + "epoch": 54.419397116644824, + "grad_norm": 0.26383060216903687, + "learning_rate": 0.0006, + "loss": 3.5572509765625, + "step": 3918 + }, + { + "epoch": 54.43337702053299, + "grad_norm": 0.26116663217544556, + "learning_rate": 0.0006, + "loss": 3.528968334197998, + "step": 3919 + }, + { + "epoch": 54.44735692442114, + "grad_norm": 0.20640771090984344, + "learning_rate": 0.0006, + "loss": 3.587789535522461, + "step": 3920 + }, + { + "epoch": 54.46133682830931, + "grad_norm": 0.23454350233078003, + "learning_rate": 0.0006, + "loss": 3.586834192276001, + "step": 3921 + }, + { + "epoch": 54.47531673219746, + "grad_norm": 0.24828442931175232, + "learning_rate": 0.0006, + "loss": 3.5884881019592285, + "step": 3922 + }, + { + "epoch": 54.489296636085626, + "grad_norm": 0.23654282093048096, + "learning_rate": 0.0006, + "loss": 3.5754570960998535, + "step": 3923 + }, + { + "epoch": 54.50327653997379, + "grad_norm": 0.22721099853515625, + "learning_rate": 0.0006, + "loss": 3.5575859546661377, + "step": 3924 + }, + { + "epoch": 54.517256443861946, + "grad_norm": 0.2157498002052307, + "learning_rate": 0.0006, + "loss": 3.5929436683654785, + "step": 3925 + }, + { + "epoch": 54.53123634775011, + "grad_norm": 0.21604257822036743, + "learning_rate": 0.0006, + "loss": 3.5788726806640625, + "step": 3926 + }, + { + "epoch": 54.54521625163827, + "grad_norm": 0.22310106456279755, + "learning_rate": 0.0006, + "loss": 3.5873899459838867, + "step": 3927 + }, + { + "epoch": 54.55919615552643, + "grad_norm": 0.2121969312429428, + "learning_rate": 0.0006, + "loss": 3.575186252593994, + "step": 3928 + }, + { + "epoch": 54.57317605941459, + "grad_norm": 0.19073615968227386, + "learning_rate": 0.0006, + "loss": 3.5963356494903564, + "step": 3929 + }, + { + "epoch": 54.58715596330275, + "grad_norm": 0.18745607137680054, + "learning_rate": 0.0006, + "loss": 3.593679428100586, + "step": 3930 + }, + { + "epoch": 54.60113586719091, + "grad_norm": 0.19518259167671204, + "learning_rate": 0.0006, + "loss": 3.5730791091918945, + "step": 3931 + }, + { + "epoch": 54.615115771079076, + "grad_norm": 0.20948481559753418, + "learning_rate": 0.0006, + "loss": 3.5646820068359375, + "step": 3932 + }, + { + "epoch": 54.62909567496723, + "grad_norm": 0.1929631531238556, + "learning_rate": 0.0006, + "loss": 3.5550060272216797, + "step": 3933 + }, + { + "epoch": 54.643075578855395, + "grad_norm": 0.2104327380657196, + "learning_rate": 0.0006, + "loss": 3.5774357318878174, + "step": 3934 + }, + { + "epoch": 54.65705548274356, + "grad_norm": 0.1952148675918579, + "learning_rate": 0.0006, + "loss": 3.58856201171875, + "step": 3935 + }, + { + "epoch": 54.671035386631715, + "grad_norm": 0.17762340605258942, + "learning_rate": 0.0006, + "loss": 3.5324528217315674, + "step": 3936 + }, + { + "epoch": 54.68501529051988, + "grad_norm": 0.18349695205688477, + "learning_rate": 0.0006, + "loss": 3.5663890838623047, + "step": 3937 + }, + { + "epoch": 54.69899519440804, + "grad_norm": 0.2038232684135437, + "learning_rate": 0.0006, + "loss": 3.5811679363250732, + "step": 3938 + }, + { + "epoch": 54.7129750982962, + "grad_norm": 0.2431754469871521, + "learning_rate": 0.0006, + "loss": 3.56833553314209, + "step": 3939 + }, + { + "epoch": 54.72695500218436, + "grad_norm": 0.27498456835746765, + "learning_rate": 0.0006, + "loss": 3.5977981090545654, + "step": 3940 + }, + { + "epoch": 54.74093490607252, + "grad_norm": 0.20809921622276306, + "learning_rate": 0.0006, + "loss": 3.57193922996521, + "step": 3941 + }, + { + "epoch": 54.75491480996068, + "grad_norm": 0.18073450028896332, + "learning_rate": 0.0006, + "loss": 3.5610151290893555, + "step": 3942 + }, + { + "epoch": 54.768894713848844, + "grad_norm": 0.194604754447937, + "learning_rate": 0.0006, + "loss": 3.5716047286987305, + "step": 3943 + }, + { + "epoch": 54.782874617737, + "grad_norm": 0.20566268265247345, + "learning_rate": 0.0006, + "loss": 3.578401565551758, + "step": 3944 + }, + { + "epoch": 54.796854521625164, + "grad_norm": 0.21028153598308563, + "learning_rate": 0.0006, + "loss": 3.610511064529419, + "step": 3945 + }, + { + "epoch": 54.81083442551333, + "grad_norm": 0.21413563191890717, + "learning_rate": 0.0006, + "loss": 3.601574659347534, + "step": 3946 + }, + { + "epoch": 54.824814329401484, + "grad_norm": 0.2137378603219986, + "learning_rate": 0.0006, + "loss": 3.603997230529785, + "step": 3947 + }, + { + "epoch": 54.83879423328965, + "grad_norm": 0.2162058800458908, + "learning_rate": 0.0006, + "loss": 3.5829391479492188, + "step": 3948 + }, + { + "epoch": 54.8527741371778, + "grad_norm": 0.21700997650623322, + "learning_rate": 0.0006, + "loss": 3.595317840576172, + "step": 3949 + }, + { + "epoch": 54.86675404106597, + "grad_norm": 0.20864669978618622, + "learning_rate": 0.0006, + "loss": 3.601891040802002, + "step": 3950 + }, + { + "epoch": 54.88073394495413, + "grad_norm": 0.19780485332012177, + "learning_rate": 0.0006, + "loss": 3.567460775375366, + "step": 3951 + }, + { + "epoch": 54.89471384884229, + "grad_norm": 0.2017168402671814, + "learning_rate": 0.0006, + "loss": 3.5737192630767822, + "step": 3952 + }, + { + "epoch": 54.90869375273045, + "grad_norm": 0.22847825288772583, + "learning_rate": 0.0006, + "loss": 3.60937762260437, + "step": 3953 + }, + { + "epoch": 54.92267365661861, + "grad_norm": 0.23698270320892334, + "learning_rate": 0.0006, + "loss": 3.6013574600219727, + "step": 3954 + }, + { + "epoch": 54.93665356050677, + "grad_norm": 0.238611102104187, + "learning_rate": 0.0006, + "loss": 3.5689988136291504, + "step": 3955 + }, + { + "epoch": 54.95063346439493, + "grad_norm": 0.2680057883262634, + "learning_rate": 0.0006, + "loss": 3.5650172233581543, + "step": 3956 + }, + { + "epoch": 54.964613368283096, + "grad_norm": 0.25712481141090393, + "learning_rate": 0.0006, + "loss": 3.576777935028076, + "step": 3957 + }, + { + "epoch": 54.97859327217125, + "grad_norm": 0.2232409566640854, + "learning_rate": 0.0006, + "loss": 3.583169937133789, + "step": 3958 + }, + { + "epoch": 54.992573176059416, + "grad_norm": 0.21233153343200684, + "learning_rate": 0.0006, + "loss": 3.602219581604004, + "step": 3959 + }, + { + "epoch": 55.0, + "grad_norm": 0.24345774948596954, + "learning_rate": 0.0006, + "loss": 3.5118026733398438, + "step": 3960 + }, + { + "epoch": 55.0, + "eval_loss": 3.9819064140319824, + "eval_runtime": 44.6627, + "eval_samples_per_second": 54.677, + "eval_steps_per_second": 3.426, + "step": 3960 + }, + { + "epoch": 55.01397990388816, + "grad_norm": 0.229562908411026, + "learning_rate": 0.0006, + "loss": 3.5591073036193848, + "step": 3961 + }, + { + "epoch": 55.02795980777632, + "grad_norm": 0.21731624007225037, + "learning_rate": 0.0006, + "loss": 3.5544848442077637, + "step": 3962 + }, + { + "epoch": 55.04193971166448, + "grad_norm": 0.23528429865837097, + "learning_rate": 0.0006, + "loss": 3.5654311180114746, + "step": 3963 + }, + { + "epoch": 55.05591961555265, + "grad_norm": 0.23147839307785034, + "learning_rate": 0.0006, + "loss": 3.537006378173828, + "step": 3964 + }, + { + "epoch": 55.0698995194408, + "grad_norm": 0.22218112647533417, + "learning_rate": 0.0006, + "loss": 3.5218982696533203, + "step": 3965 + }, + { + "epoch": 55.083879423328966, + "grad_norm": 0.20697443187236786, + "learning_rate": 0.0006, + "loss": 3.5623579025268555, + "step": 3966 + }, + { + "epoch": 55.09785932721712, + "grad_norm": 0.2108476608991623, + "learning_rate": 0.0006, + "loss": 3.528214454650879, + "step": 3967 + }, + { + "epoch": 55.111839231105286, + "grad_norm": 0.21664242446422577, + "learning_rate": 0.0006, + "loss": 3.5429646968841553, + "step": 3968 + }, + { + "epoch": 55.12581913499345, + "grad_norm": 0.21359260380268097, + "learning_rate": 0.0006, + "loss": 3.5873513221740723, + "step": 3969 + }, + { + "epoch": 55.139799038881605, + "grad_norm": 0.23289452493190765, + "learning_rate": 0.0006, + "loss": 3.5551905632019043, + "step": 3970 + }, + { + "epoch": 55.15377894276977, + "grad_norm": 0.25835689902305603, + "learning_rate": 0.0006, + "loss": 3.5380427837371826, + "step": 3971 + }, + { + "epoch": 55.16775884665793, + "grad_norm": 0.25449255108833313, + "learning_rate": 0.0006, + "loss": 3.5276808738708496, + "step": 3972 + }, + { + "epoch": 55.18173875054609, + "grad_norm": 0.2472638338804245, + "learning_rate": 0.0006, + "loss": 3.539194107055664, + "step": 3973 + }, + { + "epoch": 55.19571865443425, + "grad_norm": 0.21743768453598022, + "learning_rate": 0.0006, + "loss": 3.557185173034668, + "step": 3974 + }, + { + "epoch": 55.20969855832241, + "grad_norm": 0.22787386178970337, + "learning_rate": 0.0006, + "loss": 3.581993579864502, + "step": 3975 + }, + { + "epoch": 55.22367846221057, + "grad_norm": 0.2332824170589447, + "learning_rate": 0.0006, + "loss": 3.5439846515655518, + "step": 3976 + }, + { + "epoch": 55.237658366098735, + "grad_norm": 0.2054908573627472, + "learning_rate": 0.0006, + "loss": 3.5528793334960938, + "step": 3977 + }, + { + "epoch": 55.25163826998689, + "grad_norm": 0.2087554633617401, + "learning_rate": 0.0006, + "loss": 3.536464214324951, + "step": 3978 + }, + { + "epoch": 55.265618173875055, + "grad_norm": 0.22214409708976746, + "learning_rate": 0.0006, + "loss": 3.56184458732605, + "step": 3979 + }, + { + "epoch": 55.27959807776322, + "grad_norm": 0.23214097321033478, + "learning_rate": 0.0006, + "loss": 3.5560522079467773, + "step": 3980 + }, + { + "epoch": 55.293577981651374, + "grad_norm": 0.23317331075668335, + "learning_rate": 0.0006, + "loss": 3.5433850288391113, + "step": 3981 + }, + { + "epoch": 55.30755788553954, + "grad_norm": 0.2303774058818817, + "learning_rate": 0.0006, + "loss": 3.5505576133728027, + "step": 3982 + }, + { + "epoch": 55.3215377894277, + "grad_norm": 0.2400730401277542, + "learning_rate": 0.0006, + "loss": 3.557952404022217, + "step": 3983 + }, + { + "epoch": 55.33551769331586, + "grad_norm": 0.23933538794517517, + "learning_rate": 0.0006, + "loss": 3.536656141281128, + "step": 3984 + }, + { + "epoch": 55.34949759720402, + "grad_norm": 0.23796266317367554, + "learning_rate": 0.0006, + "loss": 3.5777554512023926, + "step": 3985 + }, + { + "epoch": 55.36347750109218, + "grad_norm": 0.26078858971595764, + "learning_rate": 0.0006, + "loss": 3.549121379852295, + "step": 3986 + }, + { + "epoch": 55.37745740498034, + "grad_norm": 0.22726459801197052, + "learning_rate": 0.0006, + "loss": 3.605684518814087, + "step": 3987 + }, + { + "epoch": 55.391437308868504, + "grad_norm": 0.19872179627418518, + "learning_rate": 0.0006, + "loss": 3.5501739978790283, + "step": 3988 + }, + { + "epoch": 55.40541721275666, + "grad_norm": 0.2027827352285385, + "learning_rate": 0.0006, + "loss": 3.625922441482544, + "step": 3989 + }, + { + "epoch": 55.419397116644824, + "grad_norm": 0.24207144975662231, + "learning_rate": 0.0006, + "loss": 3.595451831817627, + "step": 3990 + }, + { + "epoch": 55.43337702053299, + "grad_norm": 0.23449009656906128, + "learning_rate": 0.0006, + "loss": 3.577167510986328, + "step": 3991 + }, + { + "epoch": 55.44735692442114, + "grad_norm": 0.22529540956020355, + "learning_rate": 0.0006, + "loss": 3.5585317611694336, + "step": 3992 + }, + { + "epoch": 55.46133682830931, + "grad_norm": 0.2354331612586975, + "learning_rate": 0.0006, + "loss": 3.574819564819336, + "step": 3993 + }, + { + "epoch": 55.47531673219746, + "grad_norm": 0.2251061201095581, + "learning_rate": 0.0006, + "loss": 3.580498695373535, + "step": 3994 + }, + { + "epoch": 55.489296636085626, + "grad_norm": 0.22107349336147308, + "learning_rate": 0.0006, + "loss": 3.578591823577881, + "step": 3995 + }, + { + "epoch": 55.50327653997379, + "grad_norm": 0.24686408042907715, + "learning_rate": 0.0006, + "loss": 3.541625499725342, + "step": 3996 + }, + { + "epoch": 55.517256443861946, + "grad_norm": 0.23731260001659393, + "learning_rate": 0.0006, + "loss": 3.5508079528808594, + "step": 3997 + }, + { + "epoch": 55.53123634775011, + "grad_norm": 0.21246901154518127, + "learning_rate": 0.0006, + "loss": 3.569500207901001, + "step": 3998 + }, + { + "epoch": 55.54521625163827, + "grad_norm": 0.21369415521621704, + "learning_rate": 0.0006, + "loss": 3.546938896179199, + "step": 3999 + }, + { + "epoch": 55.55919615552643, + "grad_norm": 0.2102644443511963, + "learning_rate": 0.0006, + "loss": 3.5842084884643555, + "step": 4000 + }, + { + "epoch": 55.57317605941459, + "grad_norm": 0.2355998456478119, + "learning_rate": 0.0006, + "loss": 3.5493381023406982, + "step": 4001 + }, + { + "epoch": 55.58715596330275, + "grad_norm": 0.2670288681983948, + "learning_rate": 0.0006, + "loss": 3.5909032821655273, + "step": 4002 + }, + { + "epoch": 55.60113586719091, + "grad_norm": 0.2958407998085022, + "learning_rate": 0.0006, + "loss": 3.624906063079834, + "step": 4003 + }, + { + "epoch": 55.615115771079076, + "grad_norm": 0.2948441505432129, + "learning_rate": 0.0006, + "loss": 3.553528070449829, + "step": 4004 + }, + { + "epoch": 55.62909567496723, + "grad_norm": 0.24873173236846924, + "learning_rate": 0.0006, + "loss": 3.5851495265960693, + "step": 4005 + }, + { + "epoch": 55.643075578855395, + "grad_norm": 0.22191756963729858, + "learning_rate": 0.0006, + "loss": 3.556459903717041, + "step": 4006 + }, + { + "epoch": 55.65705548274356, + "grad_norm": 0.22677776217460632, + "learning_rate": 0.0006, + "loss": 3.579428195953369, + "step": 4007 + }, + { + "epoch": 55.671035386631715, + "grad_norm": 0.22263763844966888, + "learning_rate": 0.0006, + "loss": 3.5878806114196777, + "step": 4008 + }, + { + "epoch": 55.68501529051988, + "grad_norm": 0.24498602747917175, + "learning_rate": 0.0006, + "loss": 3.5989317893981934, + "step": 4009 + }, + { + "epoch": 55.69899519440804, + "grad_norm": 0.26294007897377014, + "learning_rate": 0.0006, + "loss": 3.5866756439208984, + "step": 4010 + }, + { + "epoch": 55.7129750982962, + "grad_norm": 0.22105370461940765, + "learning_rate": 0.0006, + "loss": 3.594365119934082, + "step": 4011 + }, + { + "epoch": 55.72695500218436, + "grad_norm": 0.20973286032676697, + "learning_rate": 0.0006, + "loss": 3.551156997680664, + "step": 4012 + }, + { + "epoch": 55.74093490607252, + "grad_norm": 0.2123304158449173, + "learning_rate": 0.0006, + "loss": 3.587405204772949, + "step": 4013 + }, + { + "epoch": 55.75491480996068, + "grad_norm": 0.22134795784950256, + "learning_rate": 0.0006, + "loss": 3.59114146232605, + "step": 4014 + }, + { + "epoch": 55.768894713848844, + "grad_norm": 0.20822957158088684, + "learning_rate": 0.0006, + "loss": 3.5910749435424805, + "step": 4015 + }, + { + "epoch": 55.782874617737, + "grad_norm": 0.22392229735851288, + "learning_rate": 0.0006, + "loss": 3.5800669193267822, + "step": 4016 + }, + { + "epoch": 55.796854521625164, + "grad_norm": 0.2214914709329605, + "learning_rate": 0.0006, + "loss": 3.5553741455078125, + "step": 4017 + }, + { + "epoch": 55.81083442551333, + "grad_norm": 0.1993025690317154, + "learning_rate": 0.0006, + "loss": 3.567298412322998, + "step": 4018 + }, + { + "epoch": 55.824814329401484, + "grad_norm": 0.21043774485588074, + "learning_rate": 0.0006, + "loss": 3.537358045578003, + "step": 4019 + }, + { + "epoch": 55.83879423328965, + "grad_norm": 0.18501818180084229, + "learning_rate": 0.0006, + "loss": 3.5971930027008057, + "step": 4020 + }, + { + "epoch": 55.8527741371778, + "grad_norm": 0.19626867771148682, + "learning_rate": 0.0006, + "loss": 3.563570976257324, + "step": 4021 + }, + { + "epoch": 55.86675404106597, + "grad_norm": 0.19328820705413818, + "learning_rate": 0.0006, + "loss": 3.600377082824707, + "step": 4022 + }, + { + "epoch": 55.88073394495413, + "grad_norm": 0.2013237327337265, + "learning_rate": 0.0006, + "loss": 3.5916812419891357, + "step": 4023 + }, + { + "epoch": 55.89471384884229, + "grad_norm": 0.22775673866271973, + "learning_rate": 0.0006, + "loss": 3.5572638511657715, + "step": 4024 + }, + { + "epoch": 55.90869375273045, + "grad_norm": 0.2452211230993271, + "learning_rate": 0.0006, + "loss": 3.54378080368042, + "step": 4025 + }, + { + "epoch": 55.92267365661861, + "grad_norm": 0.23337189853191376, + "learning_rate": 0.0006, + "loss": 3.5853466987609863, + "step": 4026 + }, + { + "epoch": 55.93665356050677, + "grad_norm": 0.20073719322681427, + "learning_rate": 0.0006, + "loss": 3.5793843269348145, + "step": 4027 + }, + { + "epoch": 55.95063346439493, + "grad_norm": 0.1963811218738556, + "learning_rate": 0.0006, + "loss": 3.5783073902130127, + "step": 4028 + }, + { + "epoch": 55.964613368283096, + "grad_norm": 0.19921033084392548, + "learning_rate": 0.0006, + "loss": 3.5455331802368164, + "step": 4029 + }, + { + "epoch": 55.97859327217125, + "grad_norm": 0.22151921689510345, + "learning_rate": 0.0006, + "loss": 3.551476001739502, + "step": 4030 + }, + { + "epoch": 55.992573176059416, + "grad_norm": 0.2636640965938568, + "learning_rate": 0.0006, + "loss": 3.5859174728393555, + "step": 4031 + }, + { + "epoch": 56.0, + "grad_norm": 0.282680869102478, + "learning_rate": 0.0006, + "loss": 3.5818469524383545, + "step": 4032 + }, + { + "epoch": 56.0, + "eval_loss": 3.982189178466797, + "eval_runtime": 44.2577, + "eval_samples_per_second": 55.177, + "eval_steps_per_second": 3.457, + "step": 4032 + }, + { + "epoch": 56.01397990388816, + "grad_norm": 0.23316597938537598, + "learning_rate": 0.0006, + "loss": 3.5500292778015137, + "step": 4033 + }, + { + "epoch": 56.02795980777632, + "grad_norm": 0.22836777567863464, + "learning_rate": 0.0006, + "loss": 3.5661063194274902, + "step": 4034 + }, + { + "epoch": 56.04193971166448, + "grad_norm": 0.2607800364494324, + "learning_rate": 0.0006, + "loss": 3.5496177673339844, + "step": 4035 + }, + { + "epoch": 56.05591961555265, + "grad_norm": 0.2620518207550049, + "learning_rate": 0.0006, + "loss": 3.562621831893921, + "step": 4036 + }, + { + "epoch": 56.0698995194408, + "grad_norm": 0.2344953864812851, + "learning_rate": 0.0006, + "loss": 3.5371389389038086, + "step": 4037 + }, + { + "epoch": 56.083879423328966, + "grad_norm": 0.2523435950279236, + "learning_rate": 0.0006, + "loss": 3.565216541290283, + "step": 4038 + }, + { + "epoch": 56.09785932721712, + "grad_norm": 0.26315048336982727, + "learning_rate": 0.0006, + "loss": 3.5510857105255127, + "step": 4039 + }, + { + "epoch": 56.111839231105286, + "grad_norm": 0.256817102432251, + "learning_rate": 0.0006, + "loss": 3.576132297515869, + "step": 4040 + }, + { + "epoch": 56.12581913499345, + "grad_norm": 0.25146403908729553, + "learning_rate": 0.0006, + "loss": 3.550875663757324, + "step": 4041 + }, + { + "epoch": 56.139799038881605, + "grad_norm": 0.2471698820590973, + "learning_rate": 0.0006, + "loss": 3.5574288368225098, + "step": 4042 + }, + { + "epoch": 56.15377894276977, + "grad_norm": 0.2324669510126114, + "learning_rate": 0.0006, + "loss": 3.524637222290039, + "step": 4043 + }, + { + "epoch": 56.16775884665793, + "grad_norm": 0.21824438869953156, + "learning_rate": 0.0006, + "loss": 3.563664436340332, + "step": 4044 + }, + { + "epoch": 56.18173875054609, + "grad_norm": 0.2381063550710678, + "learning_rate": 0.0006, + "loss": 3.573061943054199, + "step": 4045 + }, + { + "epoch": 56.19571865443425, + "grad_norm": 0.23728328943252563, + "learning_rate": 0.0006, + "loss": 3.5563716888427734, + "step": 4046 + }, + { + "epoch": 56.20969855832241, + "grad_norm": 0.20998933911323547, + "learning_rate": 0.0006, + "loss": 3.540152072906494, + "step": 4047 + }, + { + "epoch": 56.22367846221057, + "grad_norm": 0.2249690741300583, + "learning_rate": 0.0006, + "loss": 3.5699682235717773, + "step": 4048 + }, + { + "epoch": 56.237658366098735, + "grad_norm": 0.22615988552570343, + "learning_rate": 0.0006, + "loss": 3.5604777336120605, + "step": 4049 + }, + { + "epoch": 56.25163826998689, + "grad_norm": 0.20918409526348114, + "learning_rate": 0.0006, + "loss": 3.5612001419067383, + "step": 4050 + }, + { + "epoch": 56.265618173875055, + "grad_norm": 0.22025109827518463, + "learning_rate": 0.0006, + "loss": 3.520402193069458, + "step": 4051 + }, + { + "epoch": 56.27959807776322, + "grad_norm": 0.22722174227237701, + "learning_rate": 0.0006, + "loss": 3.52360200881958, + "step": 4052 + }, + { + "epoch": 56.293577981651374, + "grad_norm": 0.2115592360496521, + "learning_rate": 0.0006, + "loss": 3.562689781188965, + "step": 4053 + }, + { + "epoch": 56.30755788553954, + "grad_norm": 0.19253599643707275, + "learning_rate": 0.0006, + "loss": 3.545013427734375, + "step": 4054 + }, + { + "epoch": 56.3215377894277, + "grad_norm": 0.2534266710281372, + "learning_rate": 0.0006, + "loss": 3.530149459838867, + "step": 4055 + }, + { + "epoch": 56.33551769331586, + "grad_norm": 0.2871302366256714, + "learning_rate": 0.0006, + "loss": 3.5667316913604736, + "step": 4056 + }, + { + "epoch": 56.34949759720402, + "grad_norm": 0.2686561048030853, + "learning_rate": 0.0006, + "loss": 3.5341169834136963, + "step": 4057 + }, + { + "epoch": 56.36347750109218, + "grad_norm": 0.21016116440296173, + "learning_rate": 0.0006, + "loss": 3.5151243209838867, + "step": 4058 + }, + { + "epoch": 56.37745740498034, + "grad_norm": 0.20810428261756897, + "learning_rate": 0.0006, + "loss": 3.5641677379608154, + "step": 4059 + }, + { + "epoch": 56.391437308868504, + "grad_norm": 0.2732172906398773, + "learning_rate": 0.0006, + "loss": 3.546082019805908, + "step": 4060 + }, + { + "epoch": 56.40541721275666, + "grad_norm": 0.26587602496147156, + "learning_rate": 0.0006, + "loss": 3.5465946197509766, + "step": 4061 + }, + { + "epoch": 56.419397116644824, + "grad_norm": 0.20492126047611237, + "learning_rate": 0.0006, + "loss": 3.5686211585998535, + "step": 4062 + }, + { + "epoch": 56.43337702053299, + "grad_norm": 0.2147696167230606, + "learning_rate": 0.0006, + "loss": 3.5808653831481934, + "step": 4063 + }, + { + "epoch": 56.44735692442114, + "grad_norm": 0.21947690844535828, + "learning_rate": 0.0006, + "loss": 3.530872344970703, + "step": 4064 + }, + { + "epoch": 56.46133682830931, + "grad_norm": 0.21305148303508759, + "learning_rate": 0.0006, + "loss": 3.5480992794036865, + "step": 4065 + }, + { + "epoch": 56.47531673219746, + "grad_norm": 0.2066979706287384, + "learning_rate": 0.0006, + "loss": 3.5198287963867188, + "step": 4066 + }, + { + "epoch": 56.489296636085626, + "grad_norm": 0.19393840432167053, + "learning_rate": 0.0006, + "loss": 3.555344581604004, + "step": 4067 + }, + { + "epoch": 56.50327653997379, + "grad_norm": 0.19889849424362183, + "learning_rate": 0.0006, + "loss": 3.56475830078125, + "step": 4068 + }, + { + "epoch": 56.517256443861946, + "grad_norm": 0.19851456582546234, + "learning_rate": 0.0006, + "loss": 3.5790982246398926, + "step": 4069 + }, + { + "epoch": 56.53123634775011, + "grad_norm": 0.19570177793502808, + "learning_rate": 0.0006, + "loss": 3.558379888534546, + "step": 4070 + }, + { + "epoch": 56.54521625163827, + "grad_norm": 0.21364007890224457, + "learning_rate": 0.0006, + "loss": 3.586343288421631, + "step": 4071 + }, + { + "epoch": 56.55919615552643, + "grad_norm": 0.22896543145179749, + "learning_rate": 0.0006, + "loss": 3.5565874576568604, + "step": 4072 + }, + { + "epoch": 56.57317605941459, + "grad_norm": 0.21665218472480774, + "learning_rate": 0.0006, + "loss": 3.5737056732177734, + "step": 4073 + }, + { + "epoch": 56.58715596330275, + "grad_norm": 0.1964256912469864, + "learning_rate": 0.0006, + "loss": 3.555798053741455, + "step": 4074 + }, + { + "epoch": 56.60113586719091, + "grad_norm": 0.2056122124195099, + "learning_rate": 0.0006, + "loss": 3.548685073852539, + "step": 4075 + }, + { + "epoch": 56.615115771079076, + "grad_norm": 0.21677979826927185, + "learning_rate": 0.0006, + "loss": 3.569136619567871, + "step": 4076 + }, + { + "epoch": 56.62909567496723, + "grad_norm": 0.2029557228088379, + "learning_rate": 0.0006, + "loss": 3.5723280906677246, + "step": 4077 + }, + { + "epoch": 56.643075578855395, + "grad_norm": 0.22111767530441284, + "learning_rate": 0.0006, + "loss": 3.5784404277801514, + "step": 4078 + }, + { + "epoch": 56.65705548274356, + "grad_norm": 0.245675191283226, + "learning_rate": 0.0006, + "loss": 3.559330940246582, + "step": 4079 + }, + { + "epoch": 56.671035386631715, + "grad_norm": 0.19715000689029694, + "learning_rate": 0.0006, + "loss": 3.5694894790649414, + "step": 4080 + }, + { + "epoch": 56.68501529051988, + "grad_norm": 0.2112303525209427, + "learning_rate": 0.0006, + "loss": 3.5932059288024902, + "step": 4081 + }, + { + "epoch": 56.69899519440804, + "grad_norm": 0.23710735142230988, + "learning_rate": 0.0006, + "loss": 3.59895658493042, + "step": 4082 + }, + { + "epoch": 56.7129750982962, + "grad_norm": 0.2507518529891968, + "learning_rate": 0.0006, + "loss": 3.58455228805542, + "step": 4083 + }, + { + "epoch": 56.72695500218436, + "grad_norm": 0.24770016968250275, + "learning_rate": 0.0006, + "loss": 3.566256046295166, + "step": 4084 + }, + { + "epoch": 56.74093490607252, + "grad_norm": 0.2407187819480896, + "learning_rate": 0.0006, + "loss": 3.6002347469329834, + "step": 4085 + }, + { + "epoch": 56.75491480996068, + "grad_norm": 0.21417197585105896, + "learning_rate": 0.0006, + "loss": 3.5579819679260254, + "step": 4086 + }, + { + "epoch": 56.768894713848844, + "grad_norm": 0.21014295518398285, + "learning_rate": 0.0006, + "loss": 3.574289321899414, + "step": 4087 + }, + { + "epoch": 56.782874617737, + "grad_norm": 0.2265855073928833, + "learning_rate": 0.0006, + "loss": 3.589186906814575, + "step": 4088 + }, + { + "epoch": 56.796854521625164, + "grad_norm": 0.22685059905052185, + "learning_rate": 0.0006, + "loss": 3.567077159881592, + "step": 4089 + }, + { + "epoch": 56.81083442551333, + "grad_norm": 0.21579493582248688, + "learning_rate": 0.0006, + "loss": 3.5568556785583496, + "step": 4090 + }, + { + "epoch": 56.824814329401484, + "grad_norm": 0.2049565464258194, + "learning_rate": 0.0006, + "loss": 3.5547285079956055, + "step": 4091 + }, + { + "epoch": 56.83879423328965, + "grad_norm": 0.21019354462623596, + "learning_rate": 0.0006, + "loss": 3.606884479522705, + "step": 4092 + }, + { + "epoch": 56.8527741371778, + "grad_norm": 0.26110008358955383, + "learning_rate": 0.0006, + "loss": 3.5626933574676514, + "step": 4093 + }, + { + "epoch": 56.86675404106597, + "grad_norm": 0.22148117423057556, + "learning_rate": 0.0006, + "loss": 3.5739552974700928, + "step": 4094 + }, + { + "epoch": 56.88073394495413, + "grad_norm": 0.20535576343536377, + "learning_rate": 0.0006, + "loss": 3.566840648651123, + "step": 4095 + }, + { + "epoch": 56.89471384884229, + "grad_norm": 0.1928025484085083, + "learning_rate": 0.0006, + "loss": 3.5637013912200928, + "step": 4096 + }, + { + "epoch": 56.90869375273045, + "grad_norm": 0.1989327371120453, + "learning_rate": 0.0006, + "loss": 3.5881259441375732, + "step": 4097 + }, + { + "epoch": 56.92267365661861, + "grad_norm": 0.21137912571430206, + "learning_rate": 0.0006, + "loss": 3.5513358116149902, + "step": 4098 + }, + { + "epoch": 56.93665356050677, + "grad_norm": 0.22471629083156586, + "learning_rate": 0.0006, + "loss": 3.5630130767822266, + "step": 4099 + }, + { + "epoch": 56.95063346439493, + "grad_norm": 0.2323181927204132, + "learning_rate": 0.0006, + "loss": 3.559762477874756, + "step": 4100 + }, + { + "epoch": 56.964613368283096, + "grad_norm": 0.2020239382982254, + "learning_rate": 0.0006, + "loss": 3.596774101257324, + "step": 4101 + }, + { + "epoch": 56.97859327217125, + "grad_norm": 0.21822074055671692, + "learning_rate": 0.0006, + "loss": 3.598115921020508, + "step": 4102 + }, + { + "epoch": 56.992573176059416, + "grad_norm": 0.20600785315036774, + "learning_rate": 0.0006, + "loss": 3.5579686164855957, + "step": 4103 + }, + { + "epoch": 57.0, + "grad_norm": 0.23575574159622192, + "learning_rate": 0.0006, + "loss": 3.57532000541687, + "step": 4104 + }, + { + "epoch": 57.0, + "eval_loss": 3.9726130962371826, + "eval_runtime": 44.7918, + "eval_samples_per_second": 54.519, + "eval_steps_per_second": 3.416, + "step": 4104 + }, + { + "epoch": 57.01397990388816, + "grad_norm": 0.2366827428340912, + "learning_rate": 0.0006, + "loss": 3.552804946899414, + "step": 4105 + }, + { + "epoch": 57.02795980777632, + "grad_norm": 0.2728131115436554, + "learning_rate": 0.0006, + "loss": 3.5407862663269043, + "step": 4106 + }, + { + "epoch": 57.04193971166448, + "grad_norm": 0.2685103416442871, + "learning_rate": 0.0006, + "loss": 3.525047779083252, + "step": 4107 + }, + { + "epoch": 57.05591961555265, + "grad_norm": 0.26493778824806213, + "learning_rate": 0.0006, + "loss": 3.527106523513794, + "step": 4108 + }, + { + "epoch": 57.0698995194408, + "grad_norm": 0.290961354970932, + "learning_rate": 0.0006, + "loss": 3.5482702255249023, + "step": 4109 + }, + { + "epoch": 57.083879423328966, + "grad_norm": 0.33083876967430115, + "learning_rate": 0.0006, + "loss": 3.5123658180236816, + "step": 4110 + }, + { + "epoch": 57.09785932721712, + "grad_norm": 0.28544098138809204, + "learning_rate": 0.0006, + "loss": 3.5563549995422363, + "step": 4111 + }, + { + "epoch": 57.111839231105286, + "grad_norm": 0.2516465187072754, + "learning_rate": 0.0006, + "loss": 3.547360420227051, + "step": 4112 + }, + { + "epoch": 57.12581913499345, + "grad_norm": 0.2485780417919159, + "learning_rate": 0.0006, + "loss": 3.5234861373901367, + "step": 4113 + }, + { + "epoch": 57.139799038881605, + "grad_norm": 0.246695414185524, + "learning_rate": 0.0006, + "loss": 3.573009490966797, + "step": 4114 + }, + { + "epoch": 57.15377894276977, + "grad_norm": 0.24958990514278412, + "learning_rate": 0.0006, + "loss": 3.5322680473327637, + "step": 4115 + }, + { + "epoch": 57.16775884665793, + "grad_norm": 0.20882244408130646, + "learning_rate": 0.0006, + "loss": 3.5463480949401855, + "step": 4116 + }, + { + "epoch": 57.18173875054609, + "grad_norm": 0.2372189313173294, + "learning_rate": 0.0006, + "loss": 3.543396472930908, + "step": 4117 + }, + { + "epoch": 57.19571865443425, + "grad_norm": 0.24817894399166107, + "learning_rate": 0.0006, + "loss": 3.5594849586486816, + "step": 4118 + }, + { + "epoch": 57.20969855832241, + "grad_norm": 0.2231832891702652, + "learning_rate": 0.0006, + "loss": 3.5276806354522705, + "step": 4119 + }, + { + "epoch": 57.22367846221057, + "grad_norm": 0.2211553156375885, + "learning_rate": 0.0006, + "loss": 3.5423057079315186, + "step": 4120 + }, + { + "epoch": 57.237658366098735, + "grad_norm": 0.2495127022266388, + "learning_rate": 0.0006, + "loss": 3.57668399810791, + "step": 4121 + }, + { + "epoch": 57.25163826998689, + "grad_norm": 0.2548885941505432, + "learning_rate": 0.0006, + "loss": 3.5487570762634277, + "step": 4122 + }, + { + "epoch": 57.265618173875055, + "grad_norm": 0.22884942591190338, + "learning_rate": 0.0006, + "loss": 3.560772180557251, + "step": 4123 + }, + { + "epoch": 57.27959807776322, + "grad_norm": 0.20817993581295013, + "learning_rate": 0.0006, + "loss": 3.5540637969970703, + "step": 4124 + }, + { + "epoch": 57.293577981651374, + "grad_norm": 0.2075389176607132, + "learning_rate": 0.0006, + "loss": 3.5382890701293945, + "step": 4125 + }, + { + "epoch": 57.30755788553954, + "grad_norm": 0.2081303596496582, + "learning_rate": 0.0006, + "loss": 3.554612874984741, + "step": 4126 + }, + { + "epoch": 57.3215377894277, + "grad_norm": 0.2108871191740036, + "learning_rate": 0.0006, + "loss": 3.583320379257202, + "step": 4127 + }, + { + "epoch": 57.33551769331586, + "grad_norm": 0.21608266234397888, + "learning_rate": 0.0006, + "loss": 3.5358712673187256, + "step": 4128 + }, + { + "epoch": 57.34949759720402, + "grad_norm": 0.21208034455776215, + "learning_rate": 0.0006, + "loss": 3.561821937561035, + "step": 4129 + }, + { + "epoch": 57.36347750109218, + "grad_norm": 0.2109878957271576, + "learning_rate": 0.0006, + "loss": 3.5592710971832275, + "step": 4130 + }, + { + "epoch": 57.37745740498034, + "grad_norm": 0.2175656110048294, + "learning_rate": 0.0006, + "loss": 3.5616424083709717, + "step": 4131 + }, + { + "epoch": 57.391437308868504, + "grad_norm": 0.2170158475637436, + "learning_rate": 0.0006, + "loss": 3.5580999851226807, + "step": 4132 + }, + { + "epoch": 57.40541721275666, + "grad_norm": 0.22486525774002075, + "learning_rate": 0.0006, + "loss": 3.562096118927002, + "step": 4133 + }, + { + "epoch": 57.419397116644824, + "grad_norm": 0.22458943724632263, + "learning_rate": 0.0006, + "loss": 3.5784192085266113, + "step": 4134 + }, + { + "epoch": 57.43337702053299, + "grad_norm": 0.20545627176761627, + "learning_rate": 0.0006, + "loss": 3.5740323066711426, + "step": 4135 + }, + { + "epoch": 57.44735692442114, + "grad_norm": 0.22105063498020172, + "learning_rate": 0.0006, + "loss": 3.537400245666504, + "step": 4136 + }, + { + "epoch": 57.46133682830931, + "grad_norm": 0.26679784059524536, + "learning_rate": 0.0006, + "loss": 3.5323081016540527, + "step": 4137 + }, + { + "epoch": 57.47531673219746, + "grad_norm": 0.2646673321723938, + "learning_rate": 0.0006, + "loss": 3.54030442237854, + "step": 4138 + }, + { + "epoch": 57.489296636085626, + "grad_norm": 0.22486890852451324, + "learning_rate": 0.0006, + "loss": 3.558323621749878, + "step": 4139 + }, + { + "epoch": 57.50327653997379, + "grad_norm": 0.20868313312530518, + "learning_rate": 0.0006, + "loss": 3.5296707153320312, + "step": 4140 + }, + { + "epoch": 57.517256443861946, + "grad_norm": 0.22973674535751343, + "learning_rate": 0.0006, + "loss": 3.5401687622070312, + "step": 4141 + }, + { + "epoch": 57.53123634775011, + "grad_norm": 0.22321778535842896, + "learning_rate": 0.0006, + "loss": 3.566683530807495, + "step": 4142 + }, + { + "epoch": 57.54521625163827, + "grad_norm": 0.20808766782283783, + "learning_rate": 0.0006, + "loss": 3.5398507118225098, + "step": 4143 + }, + { + "epoch": 57.55919615552643, + "grad_norm": 0.19632819294929504, + "learning_rate": 0.0006, + "loss": 3.5785460472106934, + "step": 4144 + }, + { + "epoch": 57.57317605941459, + "grad_norm": 0.18699012696743011, + "learning_rate": 0.0006, + "loss": 3.5495004653930664, + "step": 4145 + }, + { + "epoch": 57.58715596330275, + "grad_norm": 0.19161473214626312, + "learning_rate": 0.0006, + "loss": 3.550243854522705, + "step": 4146 + }, + { + "epoch": 57.60113586719091, + "grad_norm": 0.21041646599769592, + "learning_rate": 0.0006, + "loss": 3.5801823139190674, + "step": 4147 + }, + { + "epoch": 57.615115771079076, + "grad_norm": 0.2043760120868683, + "learning_rate": 0.0006, + "loss": 3.580418825149536, + "step": 4148 + }, + { + "epoch": 57.62909567496723, + "grad_norm": 0.21515823900699615, + "learning_rate": 0.0006, + "loss": 3.58026385307312, + "step": 4149 + }, + { + "epoch": 57.643075578855395, + "grad_norm": 0.20913724601268768, + "learning_rate": 0.0006, + "loss": 3.5452992916107178, + "step": 4150 + }, + { + "epoch": 57.65705548274356, + "grad_norm": 0.22621729969978333, + "learning_rate": 0.0006, + "loss": 3.5332765579223633, + "step": 4151 + }, + { + "epoch": 57.671035386631715, + "grad_norm": 0.26475241780281067, + "learning_rate": 0.0006, + "loss": 3.5701823234558105, + "step": 4152 + }, + { + "epoch": 57.68501529051988, + "grad_norm": 0.2567952275276184, + "learning_rate": 0.0006, + "loss": 3.597219228744507, + "step": 4153 + }, + { + "epoch": 57.69899519440804, + "grad_norm": 0.19640378654003143, + "learning_rate": 0.0006, + "loss": 3.5865941047668457, + "step": 4154 + }, + { + "epoch": 57.7129750982962, + "grad_norm": 0.21714240312576294, + "learning_rate": 0.0006, + "loss": 3.555518627166748, + "step": 4155 + }, + { + "epoch": 57.72695500218436, + "grad_norm": 0.2604375183582306, + "learning_rate": 0.0006, + "loss": 3.5756402015686035, + "step": 4156 + }, + { + "epoch": 57.74093490607252, + "grad_norm": 0.24627837538719177, + "learning_rate": 0.0006, + "loss": 3.550668239593506, + "step": 4157 + }, + { + "epoch": 57.75491480996068, + "grad_norm": 0.21893182396888733, + "learning_rate": 0.0006, + "loss": 3.5560038089752197, + "step": 4158 + }, + { + "epoch": 57.768894713848844, + "grad_norm": 0.23481261730194092, + "learning_rate": 0.0006, + "loss": 3.543942451477051, + "step": 4159 + }, + { + "epoch": 57.782874617737, + "grad_norm": 0.21777133643627167, + "learning_rate": 0.0006, + "loss": 3.5652658939361572, + "step": 4160 + }, + { + "epoch": 57.796854521625164, + "grad_norm": 0.2158525437116623, + "learning_rate": 0.0006, + "loss": 3.5803327560424805, + "step": 4161 + }, + { + "epoch": 57.81083442551333, + "grad_norm": 0.19519925117492676, + "learning_rate": 0.0006, + "loss": 3.5814499855041504, + "step": 4162 + }, + { + "epoch": 57.824814329401484, + "grad_norm": 0.2017558217048645, + "learning_rate": 0.0006, + "loss": 3.558722972869873, + "step": 4163 + }, + { + "epoch": 57.83879423328965, + "grad_norm": 0.22046449780464172, + "learning_rate": 0.0006, + "loss": 3.559990882873535, + "step": 4164 + }, + { + "epoch": 57.8527741371778, + "grad_norm": 0.22240568697452545, + "learning_rate": 0.0006, + "loss": 3.5427942276000977, + "step": 4165 + }, + { + "epoch": 57.86675404106597, + "grad_norm": 0.20282965898513794, + "learning_rate": 0.0006, + "loss": 3.5449461936950684, + "step": 4166 + }, + { + "epoch": 57.88073394495413, + "grad_norm": 0.20970730483531952, + "learning_rate": 0.0006, + "loss": 3.592543601989746, + "step": 4167 + }, + { + "epoch": 57.89471384884229, + "grad_norm": 0.21963168680667877, + "learning_rate": 0.0006, + "loss": 3.5564393997192383, + "step": 4168 + }, + { + "epoch": 57.90869375273045, + "grad_norm": 0.20854730904102325, + "learning_rate": 0.0006, + "loss": 3.565591335296631, + "step": 4169 + }, + { + "epoch": 57.92267365661861, + "grad_norm": 0.24149510264396667, + "learning_rate": 0.0006, + "loss": 3.574720859527588, + "step": 4170 + }, + { + "epoch": 57.93665356050677, + "grad_norm": 0.26011863350868225, + "learning_rate": 0.0006, + "loss": 3.593156337738037, + "step": 4171 + }, + { + "epoch": 57.95063346439493, + "grad_norm": 0.24111896753311157, + "learning_rate": 0.0006, + "loss": 3.5871872901916504, + "step": 4172 + }, + { + "epoch": 57.964613368283096, + "grad_norm": 0.22362647950649261, + "learning_rate": 0.0006, + "loss": 3.568572998046875, + "step": 4173 + }, + { + "epoch": 57.97859327217125, + "grad_norm": 0.23621505498886108, + "learning_rate": 0.0006, + "loss": 3.5627479553222656, + "step": 4174 + }, + { + "epoch": 57.992573176059416, + "grad_norm": 0.2252524048089981, + "learning_rate": 0.0006, + "loss": 3.594430446624756, + "step": 4175 + }, + { + "epoch": 58.0, + "grad_norm": 0.24568618834018707, + "learning_rate": 0.0006, + "loss": 3.5520875453948975, + "step": 4176 + }, + { + "epoch": 58.0, + "eval_loss": 3.978929042816162, + "eval_runtime": 44.8688, + "eval_samples_per_second": 54.425, + "eval_steps_per_second": 3.41, + "step": 4176 + }, + { + "epoch": 58.01397990388816, + "grad_norm": 0.23220741748809814, + "learning_rate": 0.0006, + "loss": 3.5401225090026855, + "step": 4177 + }, + { + "epoch": 58.02795980777632, + "grad_norm": 0.214580699801445, + "learning_rate": 0.0006, + "loss": 3.507652759552002, + "step": 4178 + }, + { + "epoch": 58.04193971166448, + "grad_norm": 0.20596857368946075, + "learning_rate": 0.0006, + "loss": 3.5591790676116943, + "step": 4179 + }, + { + "epoch": 58.05591961555265, + "grad_norm": 0.23054419457912445, + "learning_rate": 0.0006, + "loss": 3.518101692199707, + "step": 4180 + }, + { + "epoch": 58.0698995194408, + "grad_norm": 0.2410690039396286, + "learning_rate": 0.0006, + "loss": 3.5270299911499023, + "step": 4181 + }, + { + "epoch": 58.083879423328966, + "grad_norm": 0.24333222210407257, + "learning_rate": 0.0006, + "loss": 3.5732290744781494, + "step": 4182 + }, + { + "epoch": 58.09785932721712, + "grad_norm": 0.2547648549079895, + "learning_rate": 0.0006, + "loss": 3.5470314025878906, + "step": 4183 + }, + { + "epoch": 58.111839231105286, + "grad_norm": 0.2366316169500351, + "learning_rate": 0.0006, + "loss": 3.500774621963501, + "step": 4184 + }, + { + "epoch": 58.12581913499345, + "grad_norm": 0.22653642296791077, + "learning_rate": 0.0006, + "loss": 3.5242254734039307, + "step": 4185 + }, + { + "epoch": 58.139799038881605, + "grad_norm": 0.25555330514907837, + "learning_rate": 0.0006, + "loss": 3.5272228717803955, + "step": 4186 + }, + { + "epoch": 58.15377894276977, + "grad_norm": 0.26559844613075256, + "learning_rate": 0.0006, + "loss": 3.5599403381347656, + "step": 4187 + }, + { + "epoch": 58.16775884665793, + "grad_norm": 0.2473350614309311, + "learning_rate": 0.0006, + "loss": 3.5130624771118164, + "step": 4188 + }, + { + "epoch": 58.18173875054609, + "grad_norm": 0.22858835756778717, + "learning_rate": 0.0006, + "loss": 3.508342742919922, + "step": 4189 + }, + { + "epoch": 58.19571865443425, + "grad_norm": 0.2151159793138504, + "learning_rate": 0.0006, + "loss": 3.533581256866455, + "step": 4190 + }, + { + "epoch": 58.20969855832241, + "grad_norm": 0.2042093276977539, + "learning_rate": 0.0006, + "loss": 3.5269458293914795, + "step": 4191 + }, + { + "epoch": 58.22367846221057, + "grad_norm": 0.20638196170330048, + "learning_rate": 0.0006, + "loss": 3.5137884616851807, + "step": 4192 + }, + { + "epoch": 58.237658366098735, + "grad_norm": 0.2018391191959381, + "learning_rate": 0.0006, + "loss": 3.533733367919922, + "step": 4193 + }, + { + "epoch": 58.25163826998689, + "grad_norm": 0.21045200526714325, + "learning_rate": 0.0006, + "loss": 3.5585010051727295, + "step": 4194 + }, + { + "epoch": 58.265618173875055, + "grad_norm": 0.2040393352508545, + "learning_rate": 0.0006, + "loss": 3.547539234161377, + "step": 4195 + }, + { + "epoch": 58.27959807776322, + "grad_norm": 0.2538772523403168, + "learning_rate": 0.0006, + "loss": 3.5487847328186035, + "step": 4196 + }, + { + "epoch": 58.293577981651374, + "grad_norm": 0.30126553773880005, + "learning_rate": 0.0006, + "loss": 3.5717992782592773, + "step": 4197 + }, + { + "epoch": 58.30755788553954, + "grad_norm": 0.2787485718727112, + "learning_rate": 0.0006, + "loss": 3.543076992034912, + "step": 4198 + }, + { + "epoch": 58.3215377894277, + "grad_norm": 0.23167021572589874, + "learning_rate": 0.0006, + "loss": 3.518887519836426, + "step": 4199 + }, + { + "epoch": 58.33551769331586, + "grad_norm": 0.23871110379695892, + "learning_rate": 0.0006, + "loss": 3.536757469177246, + "step": 4200 + }, + { + "epoch": 58.34949759720402, + "grad_norm": 0.2542787492275238, + "learning_rate": 0.0006, + "loss": 3.573086738586426, + "step": 4201 + }, + { + "epoch": 58.36347750109218, + "grad_norm": 0.2967284023761749, + "learning_rate": 0.0006, + "loss": 3.5866525173187256, + "step": 4202 + }, + { + "epoch": 58.37745740498034, + "grad_norm": 0.28304803371429443, + "learning_rate": 0.0006, + "loss": 3.5601437091827393, + "step": 4203 + }, + { + "epoch": 58.391437308868504, + "grad_norm": 0.20651954412460327, + "learning_rate": 0.0006, + "loss": 3.5591554641723633, + "step": 4204 + }, + { + "epoch": 58.40541721275666, + "grad_norm": 0.23101729154586792, + "learning_rate": 0.0006, + "loss": 3.5714032649993896, + "step": 4205 + }, + { + "epoch": 58.419397116644824, + "grad_norm": 0.24556246399879456, + "learning_rate": 0.0006, + "loss": 3.550046443939209, + "step": 4206 + }, + { + "epoch": 58.43337702053299, + "grad_norm": 0.2307356745004654, + "learning_rate": 0.0006, + "loss": 3.571850299835205, + "step": 4207 + }, + { + "epoch": 58.44735692442114, + "grad_norm": 0.23186670243740082, + "learning_rate": 0.0006, + "loss": 3.555757999420166, + "step": 4208 + }, + { + "epoch": 58.46133682830931, + "grad_norm": 0.20662686228752136, + "learning_rate": 0.0006, + "loss": 3.5590686798095703, + "step": 4209 + }, + { + "epoch": 58.47531673219746, + "grad_norm": 0.20381265878677368, + "learning_rate": 0.0006, + "loss": 3.5228846073150635, + "step": 4210 + }, + { + "epoch": 58.489296636085626, + "grad_norm": 0.20927058160305023, + "learning_rate": 0.0006, + "loss": 3.5376980304718018, + "step": 4211 + }, + { + "epoch": 58.50327653997379, + "grad_norm": 0.22782307863235474, + "learning_rate": 0.0006, + "loss": 3.5477585792541504, + "step": 4212 + }, + { + "epoch": 58.517256443861946, + "grad_norm": 0.20143239200115204, + "learning_rate": 0.0006, + "loss": 3.5429391860961914, + "step": 4213 + }, + { + "epoch": 58.53123634775011, + "grad_norm": 0.2120865285396576, + "learning_rate": 0.0006, + "loss": 3.5543365478515625, + "step": 4214 + }, + { + "epoch": 58.54521625163827, + "grad_norm": 0.2032771110534668, + "learning_rate": 0.0006, + "loss": 3.5307888984680176, + "step": 4215 + }, + { + "epoch": 58.55919615552643, + "grad_norm": 0.20994187891483307, + "learning_rate": 0.0006, + "loss": 3.581739664077759, + "step": 4216 + }, + { + "epoch": 58.57317605941459, + "grad_norm": 0.23686161637306213, + "learning_rate": 0.0006, + "loss": 3.5274312496185303, + "step": 4217 + }, + { + "epoch": 58.58715596330275, + "grad_norm": 0.21081998944282532, + "learning_rate": 0.0006, + "loss": 3.547239303588867, + "step": 4218 + }, + { + "epoch": 58.60113586719091, + "grad_norm": 0.20353151857852936, + "learning_rate": 0.0006, + "loss": 3.5522308349609375, + "step": 4219 + }, + { + "epoch": 58.615115771079076, + "grad_norm": 0.20888762176036835, + "learning_rate": 0.0006, + "loss": 3.5535459518432617, + "step": 4220 + }, + { + "epoch": 58.62909567496723, + "grad_norm": 0.2024519443511963, + "learning_rate": 0.0006, + "loss": 3.5320982933044434, + "step": 4221 + }, + { + "epoch": 58.643075578855395, + "grad_norm": 0.19622337818145752, + "learning_rate": 0.0006, + "loss": 3.5581917762756348, + "step": 4222 + }, + { + "epoch": 58.65705548274356, + "grad_norm": 0.1966600865125656, + "learning_rate": 0.0006, + "loss": 3.5412650108337402, + "step": 4223 + }, + { + "epoch": 58.671035386631715, + "grad_norm": 0.19325542449951172, + "learning_rate": 0.0006, + "loss": 3.570521593093872, + "step": 4224 + }, + { + "epoch": 58.68501529051988, + "grad_norm": 0.20674128830432892, + "learning_rate": 0.0006, + "loss": 3.5727484226226807, + "step": 4225 + }, + { + "epoch": 58.69899519440804, + "grad_norm": 0.1959284245967865, + "learning_rate": 0.0006, + "loss": 3.5655486583709717, + "step": 4226 + }, + { + "epoch": 58.7129750982962, + "grad_norm": 0.2044358104467392, + "learning_rate": 0.0006, + "loss": 3.5477449893951416, + "step": 4227 + }, + { + "epoch": 58.72695500218436, + "grad_norm": 0.21381069719791412, + "learning_rate": 0.0006, + "loss": 3.533381462097168, + "step": 4228 + }, + { + "epoch": 58.74093490607252, + "grad_norm": 0.20168009400367737, + "learning_rate": 0.0006, + "loss": 3.5401244163513184, + "step": 4229 + }, + { + "epoch": 58.75491480996068, + "grad_norm": 0.20853811502456665, + "learning_rate": 0.0006, + "loss": 3.5669009685516357, + "step": 4230 + }, + { + "epoch": 58.768894713848844, + "grad_norm": 0.2135785073041916, + "learning_rate": 0.0006, + "loss": 3.5697989463806152, + "step": 4231 + }, + { + "epoch": 58.782874617737, + "grad_norm": 0.20372799038887024, + "learning_rate": 0.0006, + "loss": 3.592245101928711, + "step": 4232 + }, + { + "epoch": 58.796854521625164, + "grad_norm": 0.20562207698822021, + "learning_rate": 0.0006, + "loss": 3.5732932090759277, + "step": 4233 + }, + { + "epoch": 58.81083442551333, + "grad_norm": 0.1932520568370819, + "learning_rate": 0.0006, + "loss": 3.581766128540039, + "step": 4234 + }, + { + "epoch": 58.824814329401484, + "grad_norm": 0.20229186117649078, + "learning_rate": 0.0006, + "loss": 3.5758426189422607, + "step": 4235 + }, + { + "epoch": 58.83879423328965, + "grad_norm": 0.21348924934864044, + "learning_rate": 0.0006, + "loss": 3.573164939880371, + "step": 4236 + }, + { + "epoch": 58.8527741371778, + "grad_norm": 0.2240375131368637, + "learning_rate": 0.0006, + "loss": 3.578442096710205, + "step": 4237 + }, + { + "epoch": 58.86675404106597, + "grad_norm": 0.22859376668930054, + "learning_rate": 0.0006, + "loss": 3.5597116947174072, + "step": 4238 + }, + { + "epoch": 58.88073394495413, + "grad_norm": 0.22347290813922882, + "learning_rate": 0.0006, + "loss": 3.557039260864258, + "step": 4239 + }, + { + "epoch": 58.89471384884229, + "grad_norm": 0.19835364818572998, + "learning_rate": 0.0006, + "loss": 3.5832467079162598, + "step": 4240 + }, + { + "epoch": 58.90869375273045, + "grad_norm": 0.21189740300178528, + "learning_rate": 0.0006, + "loss": 3.5421836376190186, + "step": 4241 + }, + { + "epoch": 58.92267365661861, + "grad_norm": 0.21234451234340668, + "learning_rate": 0.0006, + "loss": 3.6048710346221924, + "step": 4242 + }, + { + "epoch": 58.93665356050677, + "grad_norm": 0.2107880860567093, + "learning_rate": 0.0006, + "loss": 3.58248233795166, + "step": 4243 + }, + { + "epoch": 58.95063346439493, + "grad_norm": 0.21674086153507233, + "learning_rate": 0.0006, + "loss": 3.582352876663208, + "step": 4244 + }, + { + "epoch": 58.964613368283096, + "grad_norm": 0.21057581901550293, + "learning_rate": 0.0006, + "loss": 3.5387773513793945, + "step": 4245 + }, + { + "epoch": 58.97859327217125, + "grad_norm": 0.20203082263469696, + "learning_rate": 0.0006, + "loss": 3.5805740356445312, + "step": 4246 + }, + { + "epoch": 58.992573176059416, + "grad_norm": 0.21071292459964752, + "learning_rate": 0.0006, + "loss": 3.5644760131835938, + "step": 4247 + }, + { + "epoch": 59.0, + "grad_norm": 0.2473233938217163, + "learning_rate": 0.0006, + "loss": 3.56392765045166, + "step": 4248 + }, + { + "epoch": 59.0, + "eval_loss": 3.9670467376708984, + "eval_runtime": 44.7697, + "eval_samples_per_second": 54.546, + "eval_steps_per_second": 3.417, + "step": 4248 + }, + { + "epoch": 59.01397990388816, + "grad_norm": 0.22915491461753845, + "learning_rate": 0.0006, + "loss": 3.5110130310058594, + "step": 4249 + }, + { + "epoch": 59.02795980777632, + "grad_norm": 0.2629511058330536, + "learning_rate": 0.0006, + "loss": 3.5493721961975098, + "step": 4250 + }, + { + "epoch": 59.04193971166448, + "grad_norm": 0.2954505383968353, + "learning_rate": 0.0006, + "loss": 3.555753707885742, + "step": 4251 + }, + { + "epoch": 59.05591961555265, + "grad_norm": 0.2728694677352905, + "learning_rate": 0.0006, + "loss": 3.5089950561523438, + "step": 4252 + }, + { + "epoch": 59.0698995194408, + "grad_norm": 0.25955384969711304, + "learning_rate": 0.0006, + "loss": 3.509044647216797, + "step": 4253 + }, + { + "epoch": 59.083879423328966, + "grad_norm": 0.32285967469215393, + "learning_rate": 0.0006, + "loss": 3.5324721336364746, + "step": 4254 + }, + { + "epoch": 59.09785932721712, + "grad_norm": 0.2913302779197693, + "learning_rate": 0.0006, + "loss": 3.5004022121429443, + "step": 4255 + }, + { + "epoch": 59.111839231105286, + "grad_norm": 0.23795513808727264, + "learning_rate": 0.0006, + "loss": 3.515099048614502, + "step": 4256 + }, + { + "epoch": 59.12581913499345, + "grad_norm": 0.2788177728652954, + "learning_rate": 0.0006, + "loss": 3.524991035461426, + "step": 4257 + }, + { + "epoch": 59.139799038881605, + "grad_norm": 0.32389938831329346, + "learning_rate": 0.0006, + "loss": 3.5330004692077637, + "step": 4258 + }, + { + "epoch": 59.15377894276977, + "grad_norm": 0.2921825647354126, + "learning_rate": 0.0006, + "loss": 3.530616283416748, + "step": 4259 + }, + { + "epoch": 59.16775884665793, + "grad_norm": 0.28415167331695557, + "learning_rate": 0.0006, + "loss": 3.5276989936828613, + "step": 4260 + }, + { + "epoch": 59.18173875054609, + "grad_norm": 0.283626526594162, + "learning_rate": 0.0006, + "loss": 3.564985752105713, + "step": 4261 + }, + { + "epoch": 59.19571865443425, + "grad_norm": 0.2655615210533142, + "learning_rate": 0.0006, + "loss": 3.536499500274658, + "step": 4262 + }, + { + "epoch": 59.20969855832241, + "grad_norm": 0.2794124484062195, + "learning_rate": 0.0006, + "loss": 3.570883274078369, + "step": 4263 + }, + { + "epoch": 59.22367846221057, + "grad_norm": 0.2803778052330017, + "learning_rate": 0.0006, + "loss": 3.5143651962280273, + "step": 4264 + }, + { + "epoch": 59.237658366098735, + "grad_norm": 0.2584295868873596, + "learning_rate": 0.0006, + "loss": 3.548056125640869, + "step": 4265 + }, + { + "epoch": 59.25163826998689, + "grad_norm": 0.26859962940216064, + "learning_rate": 0.0006, + "loss": 3.511655807495117, + "step": 4266 + }, + { + "epoch": 59.265618173875055, + "grad_norm": 0.26620036363601685, + "learning_rate": 0.0006, + "loss": 3.5554311275482178, + "step": 4267 + }, + { + "epoch": 59.27959807776322, + "grad_norm": 0.2325621247291565, + "learning_rate": 0.0006, + "loss": 3.5126709938049316, + "step": 4268 + }, + { + "epoch": 59.293577981651374, + "grad_norm": 0.24758809804916382, + "learning_rate": 0.0006, + "loss": 3.5747783184051514, + "step": 4269 + }, + { + "epoch": 59.30755788553954, + "grad_norm": 0.26378121972084045, + "learning_rate": 0.0006, + "loss": 3.538012742996216, + "step": 4270 + }, + { + "epoch": 59.3215377894277, + "grad_norm": 0.24299141764640808, + "learning_rate": 0.0006, + "loss": 3.533834457397461, + "step": 4271 + }, + { + "epoch": 59.33551769331586, + "grad_norm": 0.20792774856090546, + "learning_rate": 0.0006, + "loss": 3.5645856857299805, + "step": 4272 + }, + { + "epoch": 59.34949759720402, + "grad_norm": 0.21124716103076935, + "learning_rate": 0.0006, + "loss": 3.5616869926452637, + "step": 4273 + }, + { + "epoch": 59.36347750109218, + "grad_norm": 0.2644400894641876, + "learning_rate": 0.0006, + "loss": 3.531334400177002, + "step": 4274 + }, + { + "epoch": 59.37745740498034, + "grad_norm": 0.27659082412719727, + "learning_rate": 0.0006, + "loss": 3.5557894706726074, + "step": 4275 + }, + { + "epoch": 59.391437308868504, + "grad_norm": 0.21931052207946777, + "learning_rate": 0.0006, + "loss": 3.537261486053467, + "step": 4276 + }, + { + "epoch": 59.40541721275666, + "grad_norm": 0.20661118626594543, + "learning_rate": 0.0006, + "loss": 3.568042755126953, + "step": 4277 + }, + { + "epoch": 59.419397116644824, + "grad_norm": 0.2157975435256958, + "learning_rate": 0.0006, + "loss": 3.550891160964966, + "step": 4278 + }, + { + "epoch": 59.43337702053299, + "grad_norm": 0.20762090384960175, + "learning_rate": 0.0006, + "loss": 3.565798282623291, + "step": 4279 + }, + { + "epoch": 59.44735692442114, + "grad_norm": 0.19575528800487518, + "learning_rate": 0.0006, + "loss": 3.5518856048583984, + "step": 4280 + }, + { + "epoch": 59.46133682830931, + "grad_norm": 0.20730678737163544, + "learning_rate": 0.0006, + "loss": 3.5412862300872803, + "step": 4281 + }, + { + "epoch": 59.47531673219746, + "grad_norm": 0.21095411479473114, + "learning_rate": 0.0006, + "loss": 3.5491604804992676, + "step": 4282 + }, + { + "epoch": 59.489296636085626, + "grad_norm": 0.2229546755552292, + "learning_rate": 0.0006, + "loss": 3.534517765045166, + "step": 4283 + }, + { + "epoch": 59.50327653997379, + "grad_norm": 0.22375687956809998, + "learning_rate": 0.0006, + "loss": 3.5696470737457275, + "step": 4284 + }, + { + "epoch": 59.517256443861946, + "grad_norm": 0.2563750743865967, + "learning_rate": 0.0006, + "loss": 3.6050190925598145, + "step": 4285 + }, + { + "epoch": 59.53123634775011, + "grad_norm": 0.3055726885795593, + "learning_rate": 0.0006, + "loss": 3.572263240814209, + "step": 4286 + }, + { + "epoch": 59.54521625163827, + "grad_norm": 0.3095283508300781, + "learning_rate": 0.0006, + "loss": 3.545631170272827, + "step": 4287 + }, + { + "epoch": 59.55919615552643, + "grad_norm": 0.24958640336990356, + "learning_rate": 0.0006, + "loss": 3.549663543701172, + "step": 4288 + }, + { + "epoch": 59.57317605941459, + "grad_norm": 0.22277019917964935, + "learning_rate": 0.0006, + "loss": 3.5721545219421387, + "step": 4289 + }, + { + "epoch": 59.58715596330275, + "grad_norm": 0.22153833508491516, + "learning_rate": 0.0006, + "loss": 3.5103156566619873, + "step": 4290 + }, + { + "epoch": 59.60113586719091, + "grad_norm": 0.25579726696014404, + "learning_rate": 0.0006, + "loss": 3.550353527069092, + "step": 4291 + }, + { + "epoch": 59.615115771079076, + "grad_norm": 0.2242603898048401, + "learning_rate": 0.0006, + "loss": 3.5284783840179443, + "step": 4292 + }, + { + "epoch": 59.62909567496723, + "grad_norm": 0.21665683388710022, + "learning_rate": 0.0006, + "loss": 3.553835868835449, + "step": 4293 + }, + { + "epoch": 59.643075578855395, + "grad_norm": 0.21703463792800903, + "learning_rate": 0.0006, + "loss": 3.5393173694610596, + "step": 4294 + }, + { + "epoch": 59.65705548274356, + "grad_norm": 0.21264998614788055, + "learning_rate": 0.0006, + "loss": 3.566108465194702, + "step": 4295 + }, + { + "epoch": 59.671035386631715, + "grad_norm": 0.1935717612504959, + "learning_rate": 0.0006, + "loss": 3.5934512615203857, + "step": 4296 + }, + { + "epoch": 59.68501529051988, + "grad_norm": 0.20164808630943298, + "learning_rate": 0.0006, + "loss": 3.545046329498291, + "step": 4297 + }, + { + "epoch": 59.69899519440804, + "grad_norm": 0.19589892029762268, + "learning_rate": 0.0006, + "loss": 3.5302319526672363, + "step": 4298 + }, + { + "epoch": 59.7129750982962, + "grad_norm": 0.1893095225095749, + "learning_rate": 0.0006, + "loss": 3.5947837829589844, + "step": 4299 + }, + { + "epoch": 59.72695500218436, + "grad_norm": 0.20218202471733093, + "learning_rate": 0.0006, + "loss": 3.5889904499053955, + "step": 4300 + }, + { + "epoch": 59.74093490607252, + "grad_norm": 0.19681277871131897, + "learning_rate": 0.0006, + "loss": 3.581536293029785, + "step": 4301 + }, + { + "epoch": 59.75491480996068, + "grad_norm": 0.20112384855747223, + "learning_rate": 0.0006, + "loss": 3.5509750843048096, + "step": 4302 + }, + { + "epoch": 59.768894713848844, + "grad_norm": 0.1969940960407257, + "learning_rate": 0.0006, + "loss": 3.5462636947631836, + "step": 4303 + }, + { + "epoch": 59.782874617737, + "grad_norm": 0.20936219394207, + "learning_rate": 0.0006, + "loss": 3.5284390449523926, + "step": 4304 + }, + { + "epoch": 59.796854521625164, + "grad_norm": 0.21717803180217743, + "learning_rate": 0.0006, + "loss": 3.5669212341308594, + "step": 4305 + }, + { + "epoch": 59.81083442551333, + "grad_norm": 0.20210883021354675, + "learning_rate": 0.0006, + "loss": 3.5366921424865723, + "step": 4306 + }, + { + "epoch": 59.824814329401484, + "grad_norm": 0.224124476313591, + "learning_rate": 0.0006, + "loss": 3.5457663536071777, + "step": 4307 + }, + { + "epoch": 59.83879423328965, + "grad_norm": 0.2186291366815567, + "learning_rate": 0.0006, + "loss": 3.5732779502868652, + "step": 4308 + }, + { + "epoch": 59.8527741371778, + "grad_norm": 0.19785884022712708, + "learning_rate": 0.0006, + "loss": 3.5471811294555664, + "step": 4309 + }, + { + "epoch": 59.86675404106597, + "grad_norm": 0.24774281680583954, + "learning_rate": 0.0006, + "loss": 3.5839807987213135, + "step": 4310 + }, + { + "epoch": 59.88073394495413, + "grad_norm": 0.25087007880210876, + "learning_rate": 0.0006, + "loss": 3.56972336769104, + "step": 4311 + }, + { + "epoch": 59.89471384884229, + "grad_norm": 0.21474683284759521, + "learning_rate": 0.0006, + "loss": 3.5199289321899414, + "step": 4312 + }, + { + "epoch": 59.90869375273045, + "grad_norm": 0.2087765336036682, + "learning_rate": 0.0006, + "loss": 3.5777320861816406, + "step": 4313 + }, + { + "epoch": 59.92267365661861, + "grad_norm": 0.2228539139032364, + "learning_rate": 0.0006, + "loss": 3.531118392944336, + "step": 4314 + }, + { + "epoch": 59.93665356050677, + "grad_norm": 0.2456534057855606, + "learning_rate": 0.0006, + "loss": 3.5448033809661865, + "step": 4315 + }, + { + "epoch": 59.95063346439493, + "grad_norm": 0.2699171006679535, + "learning_rate": 0.0006, + "loss": 3.560724973678589, + "step": 4316 + }, + { + "epoch": 59.964613368283096, + "grad_norm": 0.2664966881275177, + "learning_rate": 0.0006, + "loss": 3.5932974815368652, + "step": 4317 + }, + { + "epoch": 59.97859327217125, + "grad_norm": 0.2137683779001236, + "learning_rate": 0.0006, + "loss": 3.5610086917877197, + "step": 4318 + }, + { + "epoch": 59.992573176059416, + "grad_norm": 0.2067531794309616, + "learning_rate": 0.0006, + "loss": 3.5588603019714355, + "step": 4319 + }, + { + "epoch": 60.0, + "grad_norm": 0.2458500862121582, + "learning_rate": 0.0006, + "loss": 3.5636165142059326, + "step": 4320 + }, + { + "epoch": 60.0, + "eval_loss": 3.967288017272949, + "eval_runtime": 44.2225, + "eval_samples_per_second": 55.221, + "eval_steps_per_second": 3.46, + "step": 4320 + }, + { + "epoch": 60.01397990388816, + "grad_norm": 0.25330978631973267, + "learning_rate": 0.0006, + "loss": 3.524343490600586, + "step": 4321 + }, + { + "epoch": 60.02795980777632, + "grad_norm": 0.3005860447883606, + "learning_rate": 0.0006, + "loss": 3.533761501312256, + "step": 4322 + }, + { + "epoch": 60.04193971166448, + "grad_norm": 0.29054996371269226, + "learning_rate": 0.0006, + "loss": 3.536410331726074, + "step": 4323 + }, + { + "epoch": 60.05591961555265, + "grad_norm": 0.23265458643436432, + "learning_rate": 0.0006, + "loss": 3.4965157508850098, + "step": 4324 + }, + { + "epoch": 60.0698995194408, + "grad_norm": 0.2330862134695053, + "learning_rate": 0.0006, + "loss": 3.4899768829345703, + "step": 4325 + }, + { + "epoch": 60.083879423328966, + "grad_norm": 0.23188516497612, + "learning_rate": 0.0006, + "loss": 3.504887580871582, + "step": 4326 + }, + { + "epoch": 60.09785932721712, + "grad_norm": 0.2152940034866333, + "learning_rate": 0.0006, + "loss": 3.5274603366851807, + "step": 4327 + }, + { + "epoch": 60.111839231105286, + "grad_norm": 0.21918490529060364, + "learning_rate": 0.0006, + "loss": 3.5223636627197266, + "step": 4328 + }, + { + "epoch": 60.12581913499345, + "grad_norm": 0.23193582892417908, + "learning_rate": 0.0006, + "loss": 3.5171899795532227, + "step": 4329 + }, + { + "epoch": 60.139799038881605, + "grad_norm": 0.2336687296628952, + "learning_rate": 0.0006, + "loss": 3.5403029918670654, + "step": 4330 + }, + { + "epoch": 60.15377894276977, + "grad_norm": 0.23833593726158142, + "learning_rate": 0.0006, + "loss": 3.5055623054504395, + "step": 4331 + }, + { + "epoch": 60.16775884665793, + "grad_norm": 0.2389385998249054, + "learning_rate": 0.0006, + "loss": 3.5423574447631836, + "step": 4332 + }, + { + "epoch": 60.18173875054609, + "grad_norm": 0.21729786694049835, + "learning_rate": 0.0006, + "loss": 3.508272647857666, + "step": 4333 + }, + { + "epoch": 60.19571865443425, + "grad_norm": 0.2118137627840042, + "learning_rate": 0.0006, + "loss": 3.556934356689453, + "step": 4334 + }, + { + "epoch": 60.20969855832241, + "grad_norm": 0.23217040300369263, + "learning_rate": 0.0006, + "loss": 3.546459674835205, + "step": 4335 + }, + { + "epoch": 60.22367846221057, + "grad_norm": 0.2446565330028534, + "learning_rate": 0.0006, + "loss": 3.5662269592285156, + "step": 4336 + }, + { + "epoch": 60.237658366098735, + "grad_norm": 0.22065940499305725, + "learning_rate": 0.0006, + "loss": 3.550262451171875, + "step": 4337 + }, + { + "epoch": 60.25163826998689, + "grad_norm": 0.22212697565555573, + "learning_rate": 0.0006, + "loss": 3.5495731830596924, + "step": 4338 + }, + { + "epoch": 60.265618173875055, + "grad_norm": 0.21770696341991425, + "learning_rate": 0.0006, + "loss": 3.5345935821533203, + "step": 4339 + }, + { + "epoch": 60.27959807776322, + "grad_norm": 0.2089550793170929, + "learning_rate": 0.0006, + "loss": 3.5704336166381836, + "step": 4340 + }, + { + "epoch": 60.293577981651374, + "grad_norm": 0.20426379144191742, + "learning_rate": 0.0006, + "loss": 3.546909809112549, + "step": 4341 + }, + { + "epoch": 60.30755788553954, + "grad_norm": 0.2038658708333969, + "learning_rate": 0.0006, + "loss": 3.5444231033325195, + "step": 4342 + }, + { + "epoch": 60.3215377894277, + "grad_norm": 0.20485089719295502, + "learning_rate": 0.0006, + "loss": 3.561206817626953, + "step": 4343 + }, + { + "epoch": 60.33551769331586, + "grad_norm": 0.19151435792446136, + "learning_rate": 0.0006, + "loss": 3.5226097106933594, + "step": 4344 + }, + { + "epoch": 60.34949759720402, + "grad_norm": 0.19078181684017181, + "learning_rate": 0.0006, + "loss": 3.5431442260742188, + "step": 4345 + }, + { + "epoch": 60.36347750109218, + "grad_norm": 0.2032487392425537, + "learning_rate": 0.0006, + "loss": 3.5317721366882324, + "step": 4346 + }, + { + "epoch": 60.37745740498034, + "grad_norm": 0.18330955505371094, + "learning_rate": 0.0006, + "loss": 3.521145820617676, + "step": 4347 + }, + { + "epoch": 60.391437308868504, + "grad_norm": 0.18987730145454407, + "learning_rate": 0.0006, + "loss": 3.4980595111846924, + "step": 4348 + }, + { + "epoch": 60.40541721275666, + "grad_norm": 0.19873160123825073, + "learning_rate": 0.0006, + "loss": 3.5639595985412598, + "step": 4349 + }, + { + "epoch": 60.419397116644824, + "grad_norm": 0.20323137938976288, + "learning_rate": 0.0006, + "loss": 3.5364837646484375, + "step": 4350 + }, + { + "epoch": 60.43337702053299, + "grad_norm": 0.20755112171173096, + "learning_rate": 0.0006, + "loss": 3.565398931503296, + "step": 4351 + }, + { + "epoch": 60.44735692442114, + "grad_norm": 0.19222456216812134, + "learning_rate": 0.0006, + "loss": 3.569659948348999, + "step": 4352 + }, + { + "epoch": 60.46133682830931, + "grad_norm": 0.18698982894420624, + "learning_rate": 0.0006, + "loss": 3.5305557250976562, + "step": 4353 + }, + { + "epoch": 60.47531673219746, + "grad_norm": 0.19300664961338043, + "learning_rate": 0.0006, + "loss": 3.5398356914520264, + "step": 4354 + }, + { + "epoch": 60.489296636085626, + "grad_norm": 0.19573862850666046, + "learning_rate": 0.0006, + "loss": 3.5549232959747314, + "step": 4355 + }, + { + "epoch": 60.50327653997379, + "grad_norm": 0.21893447637557983, + "learning_rate": 0.0006, + "loss": 3.5427680015563965, + "step": 4356 + }, + { + "epoch": 60.517256443861946, + "grad_norm": 0.2375156730413437, + "learning_rate": 0.0006, + "loss": 3.5368900299072266, + "step": 4357 + }, + { + "epoch": 60.53123634775011, + "grad_norm": 0.2430058717727661, + "learning_rate": 0.0006, + "loss": 3.5812578201293945, + "step": 4358 + }, + { + "epoch": 60.54521625163827, + "grad_norm": 0.21769747138023376, + "learning_rate": 0.0006, + "loss": 3.563126564025879, + "step": 4359 + }, + { + "epoch": 60.55919615552643, + "grad_norm": 0.19841895997524261, + "learning_rate": 0.0006, + "loss": 3.5683727264404297, + "step": 4360 + }, + { + "epoch": 60.57317605941459, + "grad_norm": 0.22039084136486053, + "learning_rate": 0.0006, + "loss": 3.5417304039001465, + "step": 4361 + }, + { + "epoch": 60.58715596330275, + "grad_norm": 0.22528418898582458, + "learning_rate": 0.0006, + "loss": 3.5606675148010254, + "step": 4362 + }, + { + "epoch": 60.60113586719091, + "grad_norm": 0.19975383579730988, + "learning_rate": 0.0006, + "loss": 3.5345380306243896, + "step": 4363 + }, + { + "epoch": 60.615115771079076, + "grad_norm": 0.18953508138656616, + "learning_rate": 0.0006, + "loss": 3.523921012878418, + "step": 4364 + }, + { + "epoch": 60.62909567496723, + "grad_norm": 0.19997848570346832, + "learning_rate": 0.0006, + "loss": 3.553741931915283, + "step": 4365 + }, + { + "epoch": 60.643075578855395, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.57025408744812, + "step": 4366 + }, + { + "epoch": 60.65705548274356, + "grad_norm": 0.20452328026294708, + "learning_rate": 0.0006, + "loss": 3.5293073654174805, + "step": 4367 + }, + { + "epoch": 60.671035386631715, + "grad_norm": 0.18740518391132355, + "learning_rate": 0.0006, + "loss": 3.520880699157715, + "step": 4368 + }, + { + "epoch": 60.68501529051988, + "grad_norm": 0.19408279657363892, + "learning_rate": 0.0006, + "loss": 3.553086757659912, + "step": 4369 + }, + { + "epoch": 60.69899519440804, + "grad_norm": 0.19472180306911469, + "learning_rate": 0.0006, + "loss": 3.557744026184082, + "step": 4370 + }, + { + "epoch": 60.7129750982962, + "grad_norm": 0.18123279511928558, + "learning_rate": 0.0006, + "loss": 3.547276258468628, + "step": 4371 + }, + { + "epoch": 60.72695500218436, + "grad_norm": 0.21011893451213837, + "learning_rate": 0.0006, + "loss": 3.544990062713623, + "step": 4372 + }, + { + "epoch": 60.74093490607252, + "grad_norm": 0.25020623207092285, + "learning_rate": 0.0006, + "loss": 3.541600227355957, + "step": 4373 + }, + { + "epoch": 60.75491480996068, + "grad_norm": 0.2579628825187683, + "learning_rate": 0.0006, + "loss": 3.547964096069336, + "step": 4374 + }, + { + "epoch": 60.768894713848844, + "grad_norm": 0.23156116902828217, + "learning_rate": 0.0006, + "loss": 3.550957202911377, + "step": 4375 + }, + { + "epoch": 60.782874617737, + "grad_norm": 0.22070197761058807, + "learning_rate": 0.0006, + "loss": 3.4950358867645264, + "step": 4376 + }, + { + "epoch": 60.796854521625164, + "grad_norm": 0.222877636551857, + "learning_rate": 0.0006, + "loss": 3.5622036457061768, + "step": 4377 + }, + { + "epoch": 60.81083442551333, + "grad_norm": 0.21662060916423798, + "learning_rate": 0.0006, + "loss": 3.551515579223633, + "step": 4378 + }, + { + "epoch": 60.824814329401484, + "grad_norm": 0.22380465269088745, + "learning_rate": 0.0006, + "loss": 3.5552866458892822, + "step": 4379 + }, + { + "epoch": 60.83879423328965, + "grad_norm": 0.24023373425006866, + "learning_rate": 0.0006, + "loss": 3.5741777420043945, + "step": 4380 + }, + { + "epoch": 60.8527741371778, + "grad_norm": 0.1921556293964386, + "learning_rate": 0.0006, + "loss": 3.535435199737549, + "step": 4381 + }, + { + "epoch": 60.86675404106597, + "grad_norm": 0.20002295076847076, + "learning_rate": 0.0006, + "loss": 3.5660810470581055, + "step": 4382 + }, + { + "epoch": 60.88073394495413, + "grad_norm": 0.22797644138336182, + "learning_rate": 0.0006, + "loss": 3.5361297130584717, + "step": 4383 + }, + { + "epoch": 60.89471384884229, + "grad_norm": 0.24129843711853027, + "learning_rate": 0.0006, + "loss": 3.578810214996338, + "step": 4384 + }, + { + "epoch": 60.90869375273045, + "grad_norm": 0.2363646924495697, + "learning_rate": 0.0006, + "loss": 3.5245485305786133, + "step": 4385 + }, + { + "epoch": 60.92267365661861, + "grad_norm": 0.22811074554920197, + "learning_rate": 0.0006, + "loss": 3.551769733428955, + "step": 4386 + }, + { + "epoch": 60.93665356050677, + "grad_norm": 0.2204643338918686, + "learning_rate": 0.0006, + "loss": 3.5833442211151123, + "step": 4387 + }, + { + "epoch": 60.95063346439493, + "grad_norm": 0.21389783918857574, + "learning_rate": 0.0006, + "loss": 3.531735897064209, + "step": 4388 + }, + { + "epoch": 60.964613368283096, + "grad_norm": 0.22142091393470764, + "learning_rate": 0.0006, + "loss": 3.5482523441314697, + "step": 4389 + }, + { + "epoch": 60.97859327217125, + "grad_norm": 0.21186122298240662, + "learning_rate": 0.0006, + "loss": 3.540555477142334, + "step": 4390 + }, + { + "epoch": 60.992573176059416, + "grad_norm": 0.19939634203910828, + "learning_rate": 0.0006, + "loss": 3.576408624649048, + "step": 4391 + }, + { + "epoch": 61.0, + "grad_norm": 0.23696118593215942, + "learning_rate": 0.0006, + "loss": 3.5633749961853027, + "step": 4392 + }, + { + "epoch": 61.0, + "eval_loss": 3.9743118286132812, + "eval_runtime": 44.7392, + "eval_samples_per_second": 54.583, + "eval_steps_per_second": 3.42, + "step": 4392 + }, + { + "epoch": 61.01397990388816, + "grad_norm": 0.24024035036563873, + "learning_rate": 0.0006, + "loss": 3.532285690307617, + "step": 4393 + }, + { + "epoch": 61.02795980777632, + "grad_norm": 0.2475728690624237, + "learning_rate": 0.0006, + "loss": 3.543304920196533, + "step": 4394 + }, + { + "epoch": 61.04193971166448, + "grad_norm": 0.23326511681079865, + "learning_rate": 0.0006, + "loss": 3.5022737979888916, + "step": 4395 + }, + { + "epoch": 61.05591961555265, + "grad_norm": 0.21414779126644135, + "learning_rate": 0.0006, + "loss": 3.5337772369384766, + "step": 4396 + }, + { + "epoch": 61.0698995194408, + "grad_norm": 0.2234504371881485, + "learning_rate": 0.0006, + "loss": 3.539985179901123, + "step": 4397 + }, + { + "epoch": 61.083879423328966, + "grad_norm": 0.2199121117591858, + "learning_rate": 0.0006, + "loss": 3.5312232971191406, + "step": 4398 + }, + { + "epoch": 61.09785932721712, + "grad_norm": 0.2444634735584259, + "learning_rate": 0.0006, + "loss": 3.527348518371582, + "step": 4399 + }, + { + "epoch": 61.111839231105286, + "grad_norm": 0.29022055864334106, + "learning_rate": 0.0006, + "loss": 3.4902563095092773, + "step": 4400 + }, + { + "epoch": 61.12581913499345, + "grad_norm": 0.29494911432266235, + "learning_rate": 0.0006, + "loss": 3.498292922973633, + "step": 4401 + }, + { + "epoch": 61.139799038881605, + "grad_norm": 0.22292214632034302, + "learning_rate": 0.0006, + "loss": 3.533914089202881, + "step": 4402 + }, + { + "epoch": 61.15377894276977, + "grad_norm": 0.22136220335960388, + "learning_rate": 0.0006, + "loss": 3.5109519958496094, + "step": 4403 + }, + { + "epoch": 61.16775884665793, + "grad_norm": 0.2325095534324646, + "learning_rate": 0.0006, + "loss": 3.5289368629455566, + "step": 4404 + }, + { + "epoch": 61.18173875054609, + "grad_norm": 0.2413562536239624, + "learning_rate": 0.0006, + "loss": 3.518467903137207, + "step": 4405 + }, + { + "epoch": 61.19571865443425, + "grad_norm": 0.25906774401664734, + "learning_rate": 0.0006, + "loss": 3.525516986846924, + "step": 4406 + }, + { + "epoch": 61.20969855832241, + "grad_norm": 0.27686211466789246, + "learning_rate": 0.0006, + "loss": 3.5516865253448486, + "step": 4407 + }, + { + "epoch": 61.22367846221057, + "grad_norm": 0.2906339764595032, + "learning_rate": 0.0006, + "loss": 3.541128158569336, + "step": 4408 + }, + { + "epoch": 61.237658366098735, + "grad_norm": 0.27868953347206116, + "learning_rate": 0.0006, + "loss": 3.5193347930908203, + "step": 4409 + }, + { + "epoch": 61.25163826998689, + "grad_norm": 0.27658969163894653, + "learning_rate": 0.0006, + "loss": 3.502227783203125, + "step": 4410 + }, + { + "epoch": 61.265618173875055, + "grad_norm": 0.2933507561683655, + "learning_rate": 0.0006, + "loss": 3.530291795730591, + "step": 4411 + }, + { + "epoch": 61.27959807776322, + "grad_norm": 0.2631373405456543, + "learning_rate": 0.0006, + "loss": 3.551851749420166, + "step": 4412 + }, + { + "epoch": 61.293577981651374, + "grad_norm": 0.2546952962875366, + "learning_rate": 0.0006, + "loss": 3.5503034591674805, + "step": 4413 + }, + { + "epoch": 61.30755788553954, + "grad_norm": 0.23794181644916534, + "learning_rate": 0.0006, + "loss": 3.546926498413086, + "step": 4414 + }, + { + "epoch": 61.3215377894277, + "grad_norm": 0.24853180348873138, + "learning_rate": 0.0006, + "loss": 3.514120101928711, + "step": 4415 + }, + { + "epoch": 61.33551769331586, + "grad_norm": 0.22304897010326385, + "learning_rate": 0.0006, + "loss": 3.5430846214294434, + "step": 4416 + }, + { + "epoch": 61.34949759720402, + "grad_norm": 0.2315143197774887, + "learning_rate": 0.0006, + "loss": 3.520509719848633, + "step": 4417 + }, + { + "epoch": 61.36347750109218, + "grad_norm": 0.22943219542503357, + "learning_rate": 0.0006, + "loss": 3.5467031002044678, + "step": 4418 + }, + { + "epoch": 61.37745740498034, + "grad_norm": 0.20610259473323822, + "learning_rate": 0.0006, + "loss": 3.523524761199951, + "step": 4419 + }, + { + "epoch": 61.391437308868504, + "grad_norm": 0.23042091727256775, + "learning_rate": 0.0006, + "loss": 3.5619053840637207, + "step": 4420 + }, + { + "epoch": 61.40541721275666, + "grad_norm": 0.23525655269622803, + "learning_rate": 0.0006, + "loss": 3.5647311210632324, + "step": 4421 + }, + { + "epoch": 61.419397116644824, + "grad_norm": 0.24424530565738678, + "learning_rate": 0.0006, + "loss": 3.5278732776641846, + "step": 4422 + }, + { + "epoch": 61.43337702053299, + "grad_norm": 0.22195497155189514, + "learning_rate": 0.0006, + "loss": 3.500657558441162, + "step": 4423 + }, + { + "epoch": 61.44735692442114, + "grad_norm": 0.20596756041049957, + "learning_rate": 0.0006, + "loss": 3.5107016563415527, + "step": 4424 + }, + { + "epoch": 61.46133682830931, + "grad_norm": 0.21293926239013672, + "learning_rate": 0.0006, + "loss": 3.5248196125030518, + "step": 4425 + }, + { + "epoch": 61.47531673219746, + "grad_norm": 0.21993403136730194, + "learning_rate": 0.0006, + "loss": 3.5247411727905273, + "step": 4426 + }, + { + "epoch": 61.489296636085626, + "grad_norm": 0.19609302282333374, + "learning_rate": 0.0006, + "loss": 3.543978452682495, + "step": 4427 + }, + { + "epoch": 61.50327653997379, + "grad_norm": 0.2064359486103058, + "learning_rate": 0.0006, + "loss": 3.525879144668579, + "step": 4428 + }, + { + "epoch": 61.517256443861946, + "grad_norm": 0.221832275390625, + "learning_rate": 0.0006, + "loss": 3.542086601257324, + "step": 4429 + }, + { + "epoch": 61.53123634775011, + "grad_norm": 0.20173773169517517, + "learning_rate": 0.0006, + "loss": 3.5395596027374268, + "step": 4430 + }, + { + "epoch": 61.54521625163827, + "grad_norm": 0.21064360439777374, + "learning_rate": 0.0006, + "loss": 3.5651049613952637, + "step": 4431 + }, + { + "epoch": 61.55919615552643, + "grad_norm": 0.2079596370458603, + "learning_rate": 0.0006, + "loss": 3.513719081878662, + "step": 4432 + }, + { + "epoch": 61.57317605941459, + "grad_norm": 0.1862022429704666, + "learning_rate": 0.0006, + "loss": 3.5438897609710693, + "step": 4433 + }, + { + "epoch": 61.58715596330275, + "grad_norm": 0.202021524310112, + "learning_rate": 0.0006, + "loss": 3.5497570037841797, + "step": 4434 + }, + { + "epoch": 61.60113586719091, + "grad_norm": 0.2252725064754486, + "learning_rate": 0.0006, + "loss": 3.5361452102661133, + "step": 4435 + }, + { + "epoch": 61.615115771079076, + "grad_norm": 0.22194477915763855, + "learning_rate": 0.0006, + "loss": 3.5436792373657227, + "step": 4436 + }, + { + "epoch": 61.62909567496723, + "grad_norm": 0.20660430192947388, + "learning_rate": 0.0006, + "loss": 3.5347955226898193, + "step": 4437 + }, + { + "epoch": 61.643075578855395, + "grad_norm": 0.19738668203353882, + "learning_rate": 0.0006, + "loss": 3.5478930473327637, + "step": 4438 + }, + { + "epoch": 61.65705548274356, + "grad_norm": 0.19570894539356232, + "learning_rate": 0.0006, + "loss": 3.581364154815674, + "step": 4439 + }, + { + "epoch": 61.671035386631715, + "grad_norm": 0.2311817854642868, + "learning_rate": 0.0006, + "loss": 3.5336194038391113, + "step": 4440 + }, + { + "epoch": 61.68501529051988, + "grad_norm": 0.23114202916622162, + "learning_rate": 0.0006, + "loss": 3.5473289489746094, + "step": 4441 + }, + { + "epoch": 61.69899519440804, + "grad_norm": 0.2412044256925583, + "learning_rate": 0.0006, + "loss": 3.558802604675293, + "step": 4442 + }, + { + "epoch": 61.7129750982962, + "grad_norm": 0.22932057082653046, + "learning_rate": 0.0006, + "loss": 3.553133726119995, + "step": 4443 + }, + { + "epoch": 61.72695500218436, + "grad_norm": 0.23192140460014343, + "learning_rate": 0.0006, + "loss": 3.5247159004211426, + "step": 4444 + }, + { + "epoch": 61.74093490607252, + "grad_norm": 0.23548972606658936, + "learning_rate": 0.0006, + "loss": 3.5654778480529785, + "step": 4445 + }, + { + "epoch": 61.75491480996068, + "grad_norm": 0.20992626249790192, + "learning_rate": 0.0006, + "loss": 3.5568647384643555, + "step": 4446 + }, + { + "epoch": 61.768894713848844, + "grad_norm": 0.20303797721862793, + "learning_rate": 0.0006, + "loss": 3.564765453338623, + "step": 4447 + }, + { + "epoch": 61.782874617737, + "grad_norm": 0.2019573301076889, + "learning_rate": 0.0006, + "loss": 3.523521900177002, + "step": 4448 + }, + { + "epoch": 61.796854521625164, + "grad_norm": 0.20591112971305847, + "learning_rate": 0.0006, + "loss": 3.5361227989196777, + "step": 4449 + }, + { + "epoch": 61.81083442551333, + "grad_norm": 0.21811535954475403, + "learning_rate": 0.0006, + "loss": 3.56982159614563, + "step": 4450 + }, + { + "epoch": 61.824814329401484, + "grad_norm": 0.24934124946594238, + "learning_rate": 0.0006, + "loss": 3.5518784523010254, + "step": 4451 + }, + { + "epoch": 61.83879423328965, + "grad_norm": 0.28142663836479187, + "learning_rate": 0.0006, + "loss": 3.5480635166168213, + "step": 4452 + }, + { + "epoch": 61.8527741371778, + "grad_norm": 0.27585235238075256, + "learning_rate": 0.0006, + "loss": 3.56685733795166, + "step": 4453 + }, + { + "epoch": 61.86675404106597, + "grad_norm": 0.24309827387332916, + "learning_rate": 0.0006, + "loss": 3.551058769226074, + "step": 4454 + }, + { + "epoch": 61.88073394495413, + "grad_norm": 0.22480300068855286, + "learning_rate": 0.0006, + "loss": 3.5644495487213135, + "step": 4455 + }, + { + "epoch": 61.89471384884229, + "grad_norm": 0.19861266016960144, + "learning_rate": 0.0006, + "loss": 3.5529613494873047, + "step": 4456 + }, + { + "epoch": 61.90869375273045, + "grad_norm": 0.20176313817501068, + "learning_rate": 0.0006, + "loss": 3.5173492431640625, + "step": 4457 + }, + { + "epoch": 61.92267365661861, + "grad_norm": 0.1964731365442276, + "learning_rate": 0.0006, + "loss": 3.5555479526519775, + "step": 4458 + }, + { + "epoch": 61.93665356050677, + "grad_norm": 0.20427751541137695, + "learning_rate": 0.0006, + "loss": 3.5312647819519043, + "step": 4459 + }, + { + "epoch": 61.95063346439493, + "grad_norm": 0.21940940618515015, + "learning_rate": 0.0006, + "loss": 3.536012649536133, + "step": 4460 + }, + { + "epoch": 61.964613368283096, + "grad_norm": 0.2100883573293686, + "learning_rate": 0.0006, + "loss": 3.5627548694610596, + "step": 4461 + }, + { + "epoch": 61.97859327217125, + "grad_norm": 0.21980689465999603, + "learning_rate": 0.0006, + "loss": 3.5933351516723633, + "step": 4462 + }, + { + "epoch": 61.992573176059416, + "grad_norm": 0.23822137713432312, + "learning_rate": 0.0006, + "loss": 3.567392349243164, + "step": 4463 + }, + { + "epoch": 62.0, + "grad_norm": 0.293637752532959, + "learning_rate": 0.0006, + "loss": 3.5707521438598633, + "step": 4464 + }, + { + "epoch": 62.0, + "eval_loss": 3.9813005924224854, + "eval_runtime": 44.8261, + "eval_samples_per_second": 54.477, + "eval_steps_per_second": 3.413, + "step": 4464 + }, + { + "epoch": 62.01397990388816, + "grad_norm": 0.2819560766220093, + "learning_rate": 0.0006, + "loss": 3.5146231651306152, + "step": 4465 + }, + { + "epoch": 62.02795980777632, + "grad_norm": 0.2446105033159256, + "learning_rate": 0.0006, + "loss": 3.48366117477417, + "step": 4466 + }, + { + "epoch": 62.04193971166448, + "grad_norm": 0.26826128363609314, + "learning_rate": 0.0006, + "loss": 3.511063814163208, + "step": 4467 + }, + { + "epoch": 62.05591961555265, + "grad_norm": 0.28266897797584534, + "learning_rate": 0.0006, + "loss": 3.560831069946289, + "step": 4468 + }, + { + "epoch": 62.0698995194408, + "grad_norm": 0.262866348028183, + "learning_rate": 0.0006, + "loss": 3.5248615741729736, + "step": 4469 + }, + { + "epoch": 62.083879423328966, + "grad_norm": 0.22957175970077515, + "learning_rate": 0.0006, + "loss": 3.518132209777832, + "step": 4470 + }, + { + "epoch": 62.09785932721712, + "grad_norm": 0.2311105579137802, + "learning_rate": 0.0006, + "loss": 3.520376443862915, + "step": 4471 + }, + { + "epoch": 62.111839231105286, + "grad_norm": 0.2455885261297226, + "learning_rate": 0.0006, + "loss": 3.532329797744751, + "step": 4472 + }, + { + "epoch": 62.12581913499345, + "grad_norm": 0.22050215303897858, + "learning_rate": 0.0006, + "loss": 3.5367608070373535, + "step": 4473 + }, + { + "epoch": 62.139799038881605, + "grad_norm": 0.2187507450580597, + "learning_rate": 0.0006, + "loss": 3.5165085792541504, + "step": 4474 + }, + { + "epoch": 62.15377894276977, + "grad_norm": 0.23510432243347168, + "learning_rate": 0.0006, + "loss": 3.5357909202575684, + "step": 4475 + }, + { + "epoch": 62.16775884665793, + "grad_norm": 0.22336673736572266, + "learning_rate": 0.0006, + "loss": 3.5183372497558594, + "step": 4476 + }, + { + "epoch": 62.18173875054609, + "grad_norm": 0.22019170224666595, + "learning_rate": 0.0006, + "loss": 3.532637596130371, + "step": 4477 + }, + { + "epoch": 62.19571865443425, + "grad_norm": 0.20902299880981445, + "learning_rate": 0.0006, + "loss": 3.5421581268310547, + "step": 4478 + }, + { + "epoch": 62.20969855832241, + "grad_norm": 0.22846505045890808, + "learning_rate": 0.0006, + "loss": 3.5008513927459717, + "step": 4479 + }, + { + "epoch": 62.22367846221057, + "grad_norm": 0.23657570779323578, + "learning_rate": 0.0006, + "loss": 3.5454330444335938, + "step": 4480 + }, + { + "epoch": 62.237658366098735, + "grad_norm": 0.22021226584911346, + "learning_rate": 0.0006, + "loss": 3.535137891769409, + "step": 4481 + }, + { + "epoch": 62.25163826998689, + "grad_norm": 0.21457694470882416, + "learning_rate": 0.0006, + "loss": 3.5051913261413574, + "step": 4482 + }, + { + "epoch": 62.265618173875055, + "grad_norm": 0.20432431995868683, + "learning_rate": 0.0006, + "loss": 3.5237550735473633, + "step": 4483 + }, + { + "epoch": 62.27959807776322, + "grad_norm": 0.20499777793884277, + "learning_rate": 0.0006, + "loss": 3.537209987640381, + "step": 4484 + }, + { + "epoch": 62.293577981651374, + "grad_norm": 0.21323661506175995, + "learning_rate": 0.0006, + "loss": 3.518765687942505, + "step": 4485 + }, + { + "epoch": 62.30755788553954, + "grad_norm": 0.19734761118888855, + "learning_rate": 0.0006, + "loss": 3.5132994651794434, + "step": 4486 + }, + { + "epoch": 62.3215377894277, + "grad_norm": 0.1844230592250824, + "learning_rate": 0.0006, + "loss": 3.5348291397094727, + "step": 4487 + }, + { + "epoch": 62.33551769331586, + "grad_norm": 0.20451737940311432, + "learning_rate": 0.0006, + "loss": 3.5055956840515137, + "step": 4488 + }, + { + "epoch": 62.34949759720402, + "grad_norm": 0.20004220306873322, + "learning_rate": 0.0006, + "loss": 3.558253526687622, + "step": 4489 + }, + { + "epoch": 62.36347750109218, + "grad_norm": 0.20544862747192383, + "learning_rate": 0.0006, + "loss": 3.5031163692474365, + "step": 4490 + }, + { + "epoch": 62.37745740498034, + "grad_norm": 0.23045147955417633, + "learning_rate": 0.0006, + "loss": 3.526170253753662, + "step": 4491 + }, + { + "epoch": 62.391437308868504, + "grad_norm": 0.2580485939979553, + "learning_rate": 0.0006, + "loss": 3.561131238937378, + "step": 4492 + }, + { + "epoch": 62.40541721275666, + "grad_norm": 0.24825656414031982, + "learning_rate": 0.0006, + "loss": 3.5550408363342285, + "step": 4493 + }, + { + "epoch": 62.419397116644824, + "grad_norm": 0.2317914366722107, + "learning_rate": 0.0006, + "loss": 3.543360948562622, + "step": 4494 + }, + { + "epoch": 62.43337702053299, + "grad_norm": 0.2186558097600937, + "learning_rate": 0.0006, + "loss": 3.5293631553649902, + "step": 4495 + }, + { + "epoch": 62.44735692442114, + "grad_norm": 0.22694920003414154, + "learning_rate": 0.0006, + "loss": 3.5315871238708496, + "step": 4496 + }, + { + "epoch": 62.46133682830931, + "grad_norm": 0.24042636156082153, + "learning_rate": 0.0006, + "loss": 3.507556915283203, + "step": 4497 + }, + { + "epoch": 62.47531673219746, + "grad_norm": 0.23853783309459686, + "learning_rate": 0.0006, + "loss": 3.546670913696289, + "step": 4498 + }, + { + "epoch": 62.489296636085626, + "grad_norm": 0.23252007365226746, + "learning_rate": 0.0006, + "loss": 3.522880792617798, + "step": 4499 + }, + { + "epoch": 62.50327653997379, + "grad_norm": 0.20553545653820038, + "learning_rate": 0.0006, + "loss": 3.5367445945739746, + "step": 4500 + }, + { + "epoch": 62.517256443861946, + "grad_norm": 0.19607895612716675, + "learning_rate": 0.0006, + "loss": 3.5319433212280273, + "step": 4501 + }, + { + "epoch": 62.53123634775011, + "grad_norm": 0.21482273936271667, + "learning_rate": 0.0006, + "loss": 3.525094509124756, + "step": 4502 + }, + { + "epoch": 62.54521625163827, + "grad_norm": 0.18248772621154785, + "learning_rate": 0.0006, + "loss": 3.5324039459228516, + "step": 4503 + }, + { + "epoch": 62.55919615552643, + "grad_norm": 0.19388431310653687, + "learning_rate": 0.0006, + "loss": 3.5579934120178223, + "step": 4504 + }, + { + "epoch": 62.57317605941459, + "grad_norm": 0.1987910121679306, + "learning_rate": 0.0006, + "loss": 3.5049524307250977, + "step": 4505 + }, + { + "epoch": 62.58715596330275, + "grad_norm": 0.2176462560892105, + "learning_rate": 0.0006, + "loss": 3.517348051071167, + "step": 4506 + }, + { + "epoch": 62.60113586719091, + "grad_norm": 0.20312298834323883, + "learning_rate": 0.0006, + "loss": 3.589355230331421, + "step": 4507 + }, + { + "epoch": 62.615115771079076, + "grad_norm": 0.20725034177303314, + "learning_rate": 0.0006, + "loss": 3.5353567600250244, + "step": 4508 + }, + { + "epoch": 62.62909567496723, + "grad_norm": 0.1944240778684616, + "learning_rate": 0.0006, + "loss": 3.5435595512390137, + "step": 4509 + }, + { + "epoch": 62.643075578855395, + "grad_norm": 0.1925448626279831, + "learning_rate": 0.0006, + "loss": 3.5406274795532227, + "step": 4510 + }, + { + "epoch": 62.65705548274356, + "grad_norm": 0.1932716965675354, + "learning_rate": 0.0006, + "loss": 3.582890748977661, + "step": 4511 + }, + { + "epoch": 62.671035386631715, + "grad_norm": 0.1993696093559265, + "learning_rate": 0.0006, + "loss": 3.533501148223877, + "step": 4512 + }, + { + "epoch": 62.68501529051988, + "grad_norm": 0.22586803138256073, + "learning_rate": 0.0006, + "loss": 3.5265021324157715, + "step": 4513 + }, + { + "epoch": 62.69899519440804, + "grad_norm": 0.22882722318172455, + "learning_rate": 0.0006, + "loss": 3.5486440658569336, + "step": 4514 + }, + { + "epoch": 62.7129750982962, + "grad_norm": 0.21674324572086334, + "learning_rate": 0.0006, + "loss": 3.5362353324890137, + "step": 4515 + }, + { + "epoch": 62.72695500218436, + "grad_norm": 0.1941487342119217, + "learning_rate": 0.0006, + "loss": 3.5191574096679688, + "step": 4516 + }, + { + "epoch": 62.74093490607252, + "grad_norm": 0.2034437507390976, + "learning_rate": 0.0006, + "loss": 3.5412280559539795, + "step": 4517 + }, + { + "epoch": 62.75491480996068, + "grad_norm": 0.22009888291358948, + "learning_rate": 0.0006, + "loss": 3.589108467102051, + "step": 4518 + }, + { + "epoch": 62.768894713848844, + "grad_norm": 0.21187400817871094, + "learning_rate": 0.0006, + "loss": 3.527048349380493, + "step": 4519 + }, + { + "epoch": 62.782874617737, + "grad_norm": 0.2089816778898239, + "learning_rate": 0.0006, + "loss": 3.551755905151367, + "step": 4520 + }, + { + "epoch": 62.796854521625164, + "grad_norm": 0.2095830738544464, + "learning_rate": 0.0006, + "loss": 3.5302011966705322, + "step": 4521 + }, + { + "epoch": 62.81083442551333, + "grad_norm": 0.20930075645446777, + "learning_rate": 0.0006, + "loss": 3.5276856422424316, + "step": 4522 + }, + { + "epoch": 62.824814329401484, + "grad_norm": 0.1876252442598343, + "learning_rate": 0.0006, + "loss": 3.5467052459716797, + "step": 4523 + }, + { + "epoch": 62.83879423328965, + "grad_norm": 0.21137461066246033, + "learning_rate": 0.0006, + "loss": 3.5446524620056152, + "step": 4524 + }, + { + "epoch": 62.8527741371778, + "grad_norm": 0.21340630948543549, + "learning_rate": 0.0006, + "loss": 3.580069065093994, + "step": 4525 + }, + { + "epoch": 62.86675404106597, + "grad_norm": 0.22623291611671448, + "learning_rate": 0.0006, + "loss": 3.5203771591186523, + "step": 4526 + }, + { + "epoch": 62.88073394495413, + "grad_norm": 0.20891177654266357, + "learning_rate": 0.0006, + "loss": 3.5408263206481934, + "step": 4527 + }, + { + "epoch": 62.89471384884229, + "grad_norm": 0.19802644848823547, + "learning_rate": 0.0006, + "loss": 3.521557569503784, + "step": 4528 + }, + { + "epoch": 62.90869375273045, + "grad_norm": 0.20889638364315033, + "learning_rate": 0.0006, + "loss": 3.535468578338623, + "step": 4529 + }, + { + "epoch": 62.92267365661861, + "grad_norm": 0.20450912415981293, + "learning_rate": 0.0006, + "loss": 3.5473756790161133, + "step": 4530 + }, + { + "epoch": 62.93665356050677, + "grad_norm": 0.24126461148262024, + "learning_rate": 0.0006, + "loss": 3.5418906211853027, + "step": 4531 + }, + { + "epoch": 62.95063346439493, + "grad_norm": 0.2789648473262787, + "learning_rate": 0.0006, + "loss": 3.5500879287719727, + "step": 4532 + }, + { + "epoch": 62.964613368283096, + "grad_norm": 0.2855475842952728, + "learning_rate": 0.0006, + "loss": 3.5589256286621094, + "step": 4533 + }, + { + "epoch": 62.97859327217125, + "grad_norm": 0.2353338748216629, + "learning_rate": 0.0006, + "loss": 3.576944351196289, + "step": 4534 + }, + { + "epoch": 62.992573176059416, + "grad_norm": 0.2360614389181137, + "learning_rate": 0.0006, + "loss": 3.550532341003418, + "step": 4535 + }, + { + "epoch": 63.0, + "grad_norm": 0.28869640827178955, + "learning_rate": 0.0006, + "loss": 3.4976563453674316, + "step": 4536 + }, + { + "epoch": 63.0, + "eval_loss": 3.967819929122925, + "eval_runtime": 44.8611, + "eval_samples_per_second": 54.435, + "eval_steps_per_second": 3.411, + "step": 4536 + }, + { + "epoch": 63.01397990388816, + "grad_norm": 0.2646687626838684, + "learning_rate": 0.0006, + "loss": 3.498749017715454, + "step": 4537 + }, + { + "epoch": 63.02795980777632, + "grad_norm": 0.26432088017463684, + "learning_rate": 0.0006, + "loss": 3.5114989280700684, + "step": 4538 + }, + { + "epoch": 63.04193971166448, + "grad_norm": 0.2657051980495453, + "learning_rate": 0.0006, + "loss": 3.5383224487304688, + "step": 4539 + }, + { + "epoch": 63.05591961555265, + "grad_norm": 0.24790945649147034, + "learning_rate": 0.0006, + "loss": 3.5148894786834717, + "step": 4540 + }, + { + "epoch": 63.0698995194408, + "grad_norm": 0.2703767716884613, + "learning_rate": 0.0006, + "loss": 3.5212574005126953, + "step": 4541 + }, + { + "epoch": 63.083879423328966, + "grad_norm": 0.28064072132110596, + "learning_rate": 0.0006, + "loss": 3.4917726516723633, + "step": 4542 + }, + { + "epoch": 63.09785932721712, + "grad_norm": 0.30201056599617004, + "learning_rate": 0.0006, + "loss": 3.524174213409424, + "step": 4543 + }, + { + "epoch": 63.111839231105286, + "grad_norm": 0.2668539583683014, + "learning_rate": 0.0006, + "loss": 3.5284507274627686, + "step": 4544 + }, + { + "epoch": 63.12581913499345, + "grad_norm": 0.23223146796226501, + "learning_rate": 0.0006, + "loss": 3.500607967376709, + "step": 4545 + }, + { + "epoch": 63.139799038881605, + "grad_norm": 0.22300627827644348, + "learning_rate": 0.0006, + "loss": 3.509087562561035, + "step": 4546 + }, + { + "epoch": 63.15377894276977, + "grad_norm": 0.217527836561203, + "learning_rate": 0.0006, + "loss": 3.518986225128174, + "step": 4547 + }, + { + "epoch": 63.16775884665793, + "grad_norm": 0.2347487509250641, + "learning_rate": 0.0006, + "loss": 3.5288784503936768, + "step": 4548 + }, + { + "epoch": 63.18173875054609, + "grad_norm": 0.21052609384059906, + "learning_rate": 0.0006, + "loss": 3.534576892852783, + "step": 4549 + }, + { + "epoch": 63.19571865443425, + "grad_norm": 0.20836210250854492, + "learning_rate": 0.0006, + "loss": 3.540663242340088, + "step": 4550 + }, + { + "epoch": 63.20969855832241, + "grad_norm": 0.2257382571697235, + "learning_rate": 0.0006, + "loss": 3.5042576789855957, + "step": 4551 + }, + { + "epoch": 63.22367846221057, + "grad_norm": 0.25684455037117004, + "learning_rate": 0.0006, + "loss": 3.546757221221924, + "step": 4552 + }, + { + "epoch": 63.237658366098735, + "grad_norm": 0.25408735871315, + "learning_rate": 0.0006, + "loss": 3.5245237350463867, + "step": 4553 + }, + { + "epoch": 63.25163826998689, + "grad_norm": 0.2105615735054016, + "learning_rate": 0.0006, + "loss": 3.4935879707336426, + "step": 4554 + }, + { + "epoch": 63.265618173875055, + "grad_norm": 0.23599031567573547, + "learning_rate": 0.0006, + "loss": 3.5445284843444824, + "step": 4555 + }, + { + "epoch": 63.27959807776322, + "grad_norm": 0.2786335349082947, + "learning_rate": 0.0006, + "loss": 3.5432677268981934, + "step": 4556 + }, + { + "epoch": 63.293577981651374, + "grad_norm": 0.26032358407974243, + "learning_rate": 0.0006, + "loss": 3.542494297027588, + "step": 4557 + }, + { + "epoch": 63.30755788553954, + "grad_norm": 0.23259027302265167, + "learning_rate": 0.0006, + "loss": 3.5343332290649414, + "step": 4558 + }, + { + "epoch": 63.3215377894277, + "grad_norm": 0.2183394432067871, + "learning_rate": 0.0006, + "loss": 3.552696466445923, + "step": 4559 + }, + { + "epoch": 63.33551769331586, + "grad_norm": 0.23014239966869354, + "learning_rate": 0.0006, + "loss": 3.507399559020996, + "step": 4560 + }, + { + "epoch": 63.34949759720402, + "grad_norm": 0.22618430852890015, + "learning_rate": 0.0006, + "loss": 3.5329864025115967, + "step": 4561 + }, + { + "epoch": 63.36347750109218, + "grad_norm": 0.22740741074085236, + "learning_rate": 0.0006, + "loss": 3.5098977088928223, + "step": 4562 + }, + { + "epoch": 63.37745740498034, + "grad_norm": 0.21428990364074707, + "learning_rate": 0.0006, + "loss": 3.5244359970092773, + "step": 4563 + }, + { + "epoch": 63.391437308868504, + "grad_norm": 0.224009707570076, + "learning_rate": 0.0006, + "loss": 3.491610288619995, + "step": 4564 + }, + { + "epoch": 63.40541721275666, + "grad_norm": 0.24859225749969482, + "learning_rate": 0.0006, + "loss": 3.534926414489746, + "step": 4565 + }, + { + "epoch": 63.419397116644824, + "grad_norm": 0.27701491117477417, + "learning_rate": 0.0006, + "loss": 3.501753091812134, + "step": 4566 + }, + { + "epoch": 63.43337702053299, + "grad_norm": 0.27911627292633057, + "learning_rate": 0.0006, + "loss": 3.5505383014678955, + "step": 4567 + }, + { + "epoch": 63.44735692442114, + "grad_norm": 0.25913184881210327, + "learning_rate": 0.0006, + "loss": 3.5086495876312256, + "step": 4568 + }, + { + "epoch": 63.46133682830931, + "grad_norm": 0.19867996871471405, + "learning_rate": 0.0006, + "loss": 3.497912645339966, + "step": 4569 + }, + { + "epoch": 63.47531673219746, + "grad_norm": 0.21337668597698212, + "learning_rate": 0.0006, + "loss": 3.511085033416748, + "step": 4570 + }, + { + "epoch": 63.489296636085626, + "grad_norm": 0.2221735268831253, + "learning_rate": 0.0006, + "loss": 3.504108190536499, + "step": 4571 + }, + { + "epoch": 63.50327653997379, + "grad_norm": 0.20739667117595673, + "learning_rate": 0.0006, + "loss": 3.50193452835083, + "step": 4572 + }, + { + "epoch": 63.517256443861946, + "grad_norm": 0.20149169862270355, + "learning_rate": 0.0006, + "loss": 3.5508787631988525, + "step": 4573 + }, + { + "epoch": 63.53123634775011, + "grad_norm": 0.19348420202732086, + "learning_rate": 0.0006, + "loss": 3.521906852722168, + "step": 4574 + }, + { + "epoch": 63.54521625163827, + "grad_norm": 0.19946886599063873, + "learning_rate": 0.0006, + "loss": 3.509187698364258, + "step": 4575 + }, + { + "epoch": 63.55919615552643, + "grad_norm": 0.21359245479106903, + "learning_rate": 0.0006, + "loss": 3.5194101333618164, + "step": 4576 + }, + { + "epoch": 63.57317605941459, + "grad_norm": 0.21726977825164795, + "learning_rate": 0.0006, + "loss": 3.553684711456299, + "step": 4577 + }, + { + "epoch": 63.58715596330275, + "grad_norm": 0.21707940101623535, + "learning_rate": 0.0006, + "loss": 3.5474231243133545, + "step": 4578 + }, + { + "epoch": 63.60113586719091, + "grad_norm": 0.2226727306842804, + "learning_rate": 0.0006, + "loss": 3.556403636932373, + "step": 4579 + }, + { + "epoch": 63.615115771079076, + "grad_norm": 0.22008022665977478, + "learning_rate": 0.0006, + "loss": 3.4910531044006348, + "step": 4580 + }, + { + "epoch": 63.62909567496723, + "grad_norm": 0.20050542056560516, + "learning_rate": 0.0006, + "loss": 3.5085577964782715, + "step": 4581 + }, + { + "epoch": 63.643075578855395, + "grad_norm": 0.21937592327594757, + "learning_rate": 0.0006, + "loss": 3.530182361602783, + "step": 4582 + }, + { + "epoch": 63.65705548274356, + "grad_norm": 0.23152779042720795, + "learning_rate": 0.0006, + "loss": 3.551499843597412, + "step": 4583 + }, + { + "epoch": 63.671035386631715, + "grad_norm": 0.22870875895023346, + "learning_rate": 0.0006, + "loss": 3.5576539039611816, + "step": 4584 + }, + { + "epoch": 63.68501529051988, + "grad_norm": 0.23679395020008087, + "learning_rate": 0.0006, + "loss": 3.5392303466796875, + "step": 4585 + }, + { + "epoch": 63.69899519440804, + "grad_norm": 0.2301628291606903, + "learning_rate": 0.0006, + "loss": 3.53672194480896, + "step": 4586 + }, + { + "epoch": 63.7129750982962, + "grad_norm": 0.20859898626804352, + "learning_rate": 0.0006, + "loss": 3.5405986309051514, + "step": 4587 + }, + { + "epoch": 63.72695500218436, + "grad_norm": 0.2263292521238327, + "learning_rate": 0.0006, + "loss": 3.557982921600342, + "step": 4588 + }, + { + "epoch": 63.74093490607252, + "grad_norm": 0.21420416235923767, + "learning_rate": 0.0006, + "loss": 3.531942129135132, + "step": 4589 + }, + { + "epoch": 63.75491480996068, + "grad_norm": 0.21604575216770172, + "learning_rate": 0.0006, + "loss": 3.54978346824646, + "step": 4590 + }, + { + "epoch": 63.768894713848844, + "grad_norm": 0.2530747354030609, + "learning_rate": 0.0006, + "loss": 3.576831817626953, + "step": 4591 + }, + { + "epoch": 63.782874617737, + "grad_norm": 0.26169830560684204, + "learning_rate": 0.0006, + "loss": 3.5594139099121094, + "step": 4592 + }, + { + "epoch": 63.796854521625164, + "grad_norm": 0.23454166948795319, + "learning_rate": 0.0006, + "loss": 3.527966022491455, + "step": 4593 + }, + { + "epoch": 63.81083442551333, + "grad_norm": 0.25329118967056274, + "learning_rate": 0.0006, + "loss": 3.555817127227783, + "step": 4594 + }, + { + "epoch": 63.824814329401484, + "grad_norm": 0.26875534653663635, + "learning_rate": 0.0006, + "loss": 3.5659937858581543, + "step": 4595 + }, + { + "epoch": 63.83879423328965, + "grad_norm": 0.2446713000535965, + "learning_rate": 0.0006, + "loss": 3.520578384399414, + "step": 4596 + }, + { + "epoch": 63.8527741371778, + "grad_norm": 0.24629594385623932, + "learning_rate": 0.0006, + "loss": 3.562185764312744, + "step": 4597 + }, + { + "epoch": 63.86675404106597, + "grad_norm": 0.25355106592178345, + "learning_rate": 0.0006, + "loss": 3.549164295196533, + "step": 4598 + }, + { + "epoch": 63.88073394495413, + "grad_norm": 0.23251968622207642, + "learning_rate": 0.0006, + "loss": 3.529660224914551, + "step": 4599 + }, + { + "epoch": 63.89471384884229, + "grad_norm": 0.21848365664482117, + "learning_rate": 0.0006, + "loss": 3.582645893096924, + "step": 4600 + }, + { + "epoch": 63.90869375273045, + "grad_norm": 0.2525595426559448, + "learning_rate": 0.0006, + "loss": 3.5324134826660156, + "step": 4601 + }, + { + "epoch": 63.92267365661861, + "grad_norm": 0.2766541838645935, + "learning_rate": 0.0006, + "loss": 3.525892734527588, + "step": 4602 + }, + { + "epoch": 63.93665356050677, + "grad_norm": 0.2581831216812134, + "learning_rate": 0.0006, + "loss": 3.568148374557495, + "step": 4603 + }, + { + "epoch": 63.95063346439493, + "grad_norm": 0.2600967288017273, + "learning_rate": 0.0006, + "loss": 3.5735561847686768, + "step": 4604 + }, + { + "epoch": 63.964613368283096, + "grad_norm": 0.3125685155391693, + "learning_rate": 0.0006, + "loss": 3.513974666595459, + "step": 4605 + }, + { + "epoch": 63.97859327217125, + "grad_norm": 0.2686053514480591, + "learning_rate": 0.0006, + "loss": 3.533506155014038, + "step": 4606 + }, + { + "epoch": 63.992573176059416, + "grad_norm": 0.23033086955547333, + "learning_rate": 0.0006, + "loss": 3.5701582431793213, + "step": 4607 + }, + { + "epoch": 64.0, + "grad_norm": 0.2688716948032379, + "learning_rate": 0.0006, + "loss": 3.5370922088623047, + "step": 4608 + }, + { + "epoch": 64.0, + "eval_loss": 3.9788827896118164, + "eval_runtime": 44.2801, + "eval_samples_per_second": 55.149, + "eval_steps_per_second": 3.455, + "step": 4608 + }, + { + "epoch": 64.01397990388816, + "grad_norm": 0.27457329630851746, + "learning_rate": 0.0006, + "loss": 3.4789271354675293, + "step": 4609 + }, + { + "epoch": 64.02795980777633, + "grad_norm": 0.29753434658050537, + "learning_rate": 0.0006, + "loss": 3.5277628898620605, + "step": 4610 + }, + { + "epoch": 64.04193971166448, + "grad_norm": 0.36113694310188293, + "learning_rate": 0.0006, + "loss": 3.5066421031951904, + "step": 4611 + }, + { + "epoch": 64.05591961555264, + "grad_norm": 0.37955453991889954, + "learning_rate": 0.0006, + "loss": 3.532745361328125, + "step": 4612 + }, + { + "epoch": 64.06989951944081, + "grad_norm": 0.3055022060871124, + "learning_rate": 0.0006, + "loss": 3.526583671569824, + "step": 4613 + }, + { + "epoch": 64.08387942332897, + "grad_norm": 0.25849053263664246, + "learning_rate": 0.0006, + "loss": 3.525885581970215, + "step": 4614 + }, + { + "epoch": 64.09785932721712, + "grad_norm": 0.31513285636901855, + "learning_rate": 0.0006, + "loss": 3.5116710662841797, + "step": 4615 + }, + { + "epoch": 64.1118392311053, + "grad_norm": 0.3306029736995697, + "learning_rate": 0.0006, + "loss": 3.52685284614563, + "step": 4616 + }, + { + "epoch": 64.12581913499345, + "grad_norm": 0.3205282688140869, + "learning_rate": 0.0006, + "loss": 3.5442304611206055, + "step": 4617 + }, + { + "epoch": 64.1397990388816, + "grad_norm": 0.30371955037117004, + "learning_rate": 0.0006, + "loss": 3.523794174194336, + "step": 4618 + }, + { + "epoch": 64.15377894276976, + "grad_norm": 0.23337553441524506, + "learning_rate": 0.0006, + "loss": 3.530444860458374, + "step": 4619 + }, + { + "epoch": 64.16775884665793, + "grad_norm": 0.2223677784204483, + "learning_rate": 0.0006, + "loss": 3.5071358680725098, + "step": 4620 + }, + { + "epoch": 64.18173875054609, + "grad_norm": 0.21216993033885956, + "learning_rate": 0.0006, + "loss": 3.504469156265259, + "step": 4621 + }, + { + "epoch": 64.19571865443424, + "grad_norm": 0.21772179007530212, + "learning_rate": 0.0006, + "loss": 3.543393135070801, + "step": 4622 + }, + { + "epoch": 64.20969855832242, + "grad_norm": 0.2010853886604309, + "learning_rate": 0.0006, + "loss": 3.5219016075134277, + "step": 4623 + }, + { + "epoch": 64.22367846221057, + "grad_norm": 0.20491622388362885, + "learning_rate": 0.0006, + "loss": 3.4971656799316406, + "step": 4624 + }, + { + "epoch": 64.23765836609873, + "grad_norm": 0.19605079293251038, + "learning_rate": 0.0006, + "loss": 3.511746883392334, + "step": 4625 + }, + { + "epoch": 64.2516382699869, + "grad_norm": 0.2011575698852539, + "learning_rate": 0.0006, + "loss": 3.4981908798217773, + "step": 4626 + }, + { + "epoch": 64.26561817387505, + "grad_norm": 0.20687544345855713, + "learning_rate": 0.0006, + "loss": 3.5076913833618164, + "step": 4627 + }, + { + "epoch": 64.27959807776321, + "grad_norm": 0.20696480572223663, + "learning_rate": 0.0006, + "loss": 3.536569595336914, + "step": 4628 + }, + { + "epoch": 64.29357798165138, + "grad_norm": 0.200603649020195, + "learning_rate": 0.0006, + "loss": 3.525024175643921, + "step": 4629 + }, + { + "epoch": 64.30755788553954, + "grad_norm": 0.2087119072675705, + "learning_rate": 0.0006, + "loss": 3.508463144302368, + "step": 4630 + }, + { + "epoch": 64.3215377894277, + "grad_norm": 0.20823124051094055, + "learning_rate": 0.0006, + "loss": 3.5153684616088867, + "step": 4631 + }, + { + "epoch": 64.33551769331586, + "grad_norm": 0.19936303794384003, + "learning_rate": 0.0006, + "loss": 3.4908385276794434, + "step": 4632 + }, + { + "epoch": 64.34949759720402, + "grad_norm": 0.20928572118282318, + "learning_rate": 0.0006, + "loss": 3.5094854831695557, + "step": 4633 + }, + { + "epoch": 64.36347750109218, + "grad_norm": 0.22391293942928314, + "learning_rate": 0.0006, + "loss": 3.514522075653076, + "step": 4634 + }, + { + "epoch": 64.37745740498035, + "grad_norm": 0.19804537296295166, + "learning_rate": 0.0006, + "loss": 3.5072293281555176, + "step": 4635 + }, + { + "epoch": 64.3914373088685, + "grad_norm": 0.18472325801849365, + "learning_rate": 0.0006, + "loss": 3.5149683952331543, + "step": 4636 + }, + { + "epoch": 64.40541721275666, + "grad_norm": 0.20187066495418549, + "learning_rate": 0.0006, + "loss": 3.5198612213134766, + "step": 4637 + }, + { + "epoch": 64.41939711664482, + "grad_norm": 0.19778090715408325, + "learning_rate": 0.0006, + "loss": 3.540841817855835, + "step": 4638 + }, + { + "epoch": 64.43337702053299, + "grad_norm": 0.20325049757957458, + "learning_rate": 0.0006, + "loss": 3.522329330444336, + "step": 4639 + }, + { + "epoch": 64.44735692442114, + "grad_norm": 0.21200744807720184, + "learning_rate": 0.0006, + "loss": 3.5492870807647705, + "step": 4640 + }, + { + "epoch": 64.4613368283093, + "grad_norm": 0.21482640504837036, + "learning_rate": 0.0006, + "loss": 3.5450363159179688, + "step": 4641 + }, + { + "epoch": 64.47531673219747, + "grad_norm": 0.2257383018732071, + "learning_rate": 0.0006, + "loss": 3.518486976623535, + "step": 4642 + }, + { + "epoch": 64.48929663608563, + "grad_norm": 0.20710107684135437, + "learning_rate": 0.0006, + "loss": 3.5212514400482178, + "step": 4643 + }, + { + "epoch": 64.50327653997378, + "grad_norm": 0.20518364012241364, + "learning_rate": 0.0006, + "loss": 3.5239462852478027, + "step": 4644 + }, + { + "epoch": 64.51725644386195, + "grad_norm": 0.20311623811721802, + "learning_rate": 0.0006, + "loss": 3.5299072265625, + "step": 4645 + }, + { + "epoch": 64.53123634775011, + "grad_norm": 0.2045847624540329, + "learning_rate": 0.0006, + "loss": 3.5337295532226562, + "step": 4646 + }, + { + "epoch": 64.54521625163827, + "grad_norm": 0.20734596252441406, + "learning_rate": 0.0006, + "loss": 3.5001375675201416, + "step": 4647 + }, + { + "epoch": 64.55919615552644, + "grad_norm": 0.2103254497051239, + "learning_rate": 0.0006, + "loss": 3.50685977935791, + "step": 4648 + }, + { + "epoch": 64.57317605941459, + "grad_norm": 0.19903342425823212, + "learning_rate": 0.0006, + "loss": 3.5295052528381348, + "step": 4649 + }, + { + "epoch": 64.58715596330275, + "grad_norm": 0.21105562150478363, + "learning_rate": 0.0006, + "loss": 3.5062971115112305, + "step": 4650 + }, + { + "epoch": 64.60113586719092, + "grad_norm": 0.2149161994457245, + "learning_rate": 0.0006, + "loss": 3.5040459632873535, + "step": 4651 + }, + { + "epoch": 64.61511577107908, + "grad_norm": 0.19698478281497955, + "learning_rate": 0.0006, + "loss": 3.541640281677246, + "step": 4652 + }, + { + "epoch": 64.62909567496723, + "grad_norm": 0.22909119725227356, + "learning_rate": 0.0006, + "loss": 3.546515941619873, + "step": 4653 + }, + { + "epoch": 64.6430755788554, + "grad_norm": 0.2322760671377182, + "learning_rate": 0.0006, + "loss": 3.5374197959899902, + "step": 4654 + }, + { + "epoch": 64.65705548274356, + "grad_norm": 0.2173723429441452, + "learning_rate": 0.0006, + "loss": 3.543529510498047, + "step": 4655 + }, + { + "epoch": 64.67103538663171, + "grad_norm": 0.21360787749290466, + "learning_rate": 0.0006, + "loss": 3.560333251953125, + "step": 4656 + }, + { + "epoch": 64.68501529051987, + "grad_norm": 0.23260995745658875, + "learning_rate": 0.0006, + "loss": 3.5468926429748535, + "step": 4657 + }, + { + "epoch": 64.69899519440804, + "grad_norm": 0.23099006712436676, + "learning_rate": 0.0006, + "loss": 3.5222787857055664, + "step": 4658 + }, + { + "epoch": 64.7129750982962, + "grad_norm": 0.20590323209762573, + "learning_rate": 0.0006, + "loss": 3.538832426071167, + "step": 4659 + }, + { + "epoch": 64.72695500218435, + "grad_norm": 0.2339620441198349, + "learning_rate": 0.0006, + "loss": 3.5201845169067383, + "step": 4660 + }, + { + "epoch": 64.74093490607252, + "grad_norm": 0.27160516381263733, + "learning_rate": 0.0006, + "loss": 3.5465309619903564, + "step": 4661 + }, + { + "epoch": 64.75491480996068, + "grad_norm": 0.2624864876270294, + "learning_rate": 0.0006, + "loss": 3.5205435752868652, + "step": 4662 + }, + { + "epoch": 64.76889471384884, + "grad_norm": 0.23907902836799622, + "learning_rate": 0.0006, + "loss": 3.553205728530884, + "step": 4663 + }, + { + "epoch": 64.78287461773701, + "grad_norm": 0.2217475026845932, + "learning_rate": 0.0006, + "loss": 3.514068603515625, + "step": 4664 + }, + { + "epoch": 64.79685452162516, + "grad_norm": 0.20445777475833893, + "learning_rate": 0.0006, + "loss": 3.5382182598114014, + "step": 4665 + }, + { + "epoch": 64.81083442551332, + "grad_norm": 0.2027028501033783, + "learning_rate": 0.0006, + "loss": 3.549323081970215, + "step": 4666 + }, + { + "epoch": 64.82481432940149, + "grad_norm": 0.2211705446243286, + "learning_rate": 0.0006, + "loss": 3.5627710819244385, + "step": 4667 + }, + { + "epoch": 64.83879423328965, + "grad_norm": 0.23401948809623718, + "learning_rate": 0.0006, + "loss": 3.5169739723205566, + "step": 4668 + }, + { + "epoch": 64.8527741371778, + "grad_norm": 0.21921628713607788, + "learning_rate": 0.0006, + "loss": 3.5405478477478027, + "step": 4669 + }, + { + "epoch": 64.86675404106597, + "grad_norm": 0.20840027928352356, + "learning_rate": 0.0006, + "loss": 3.528883218765259, + "step": 4670 + }, + { + "epoch": 64.88073394495413, + "grad_norm": 0.21593457460403442, + "learning_rate": 0.0006, + "loss": 3.570455551147461, + "step": 4671 + }, + { + "epoch": 64.89471384884229, + "grad_norm": 0.22351567447185516, + "learning_rate": 0.0006, + "loss": 3.567831516265869, + "step": 4672 + }, + { + "epoch": 64.90869375273044, + "grad_norm": 0.22733932733535767, + "learning_rate": 0.0006, + "loss": 3.55277156829834, + "step": 4673 + }, + { + "epoch": 64.92267365661861, + "grad_norm": 0.19557999074459076, + "learning_rate": 0.0006, + "loss": 3.523028612136841, + "step": 4674 + }, + { + "epoch": 64.93665356050677, + "grad_norm": 0.22674734890460968, + "learning_rate": 0.0006, + "loss": 3.565629720687866, + "step": 4675 + }, + { + "epoch": 64.95063346439493, + "grad_norm": 0.23879630863666534, + "learning_rate": 0.0006, + "loss": 3.5556788444519043, + "step": 4676 + }, + { + "epoch": 64.9646133682831, + "grad_norm": 0.24172860383987427, + "learning_rate": 0.0006, + "loss": 3.580190658569336, + "step": 4677 + }, + { + "epoch": 64.97859327217125, + "grad_norm": 0.24994441866874695, + "learning_rate": 0.0006, + "loss": 3.506659507751465, + "step": 4678 + }, + { + "epoch": 64.99257317605941, + "grad_norm": 0.20717456936836243, + "learning_rate": 0.0006, + "loss": 3.526215076446533, + "step": 4679 + }, + { + "epoch": 65.0, + "grad_norm": 0.23991262912750244, + "learning_rate": 0.0006, + "loss": 3.5615687370300293, + "step": 4680 + }, + { + "epoch": 65.0, + "eval_loss": 3.974820137023926, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 4680 + }, + { + "epoch": 65.01397990388816, + "grad_norm": 0.22059205174446106, + "learning_rate": 0.0006, + "loss": 3.4952855110168457, + "step": 4681 + }, + { + "epoch": 65.02795980777633, + "grad_norm": 0.23085950314998627, + "learning_rate": 0.0006, + "loss": 3.5180296897888184, + "step": 4682 + }, + { + "epoch": 65.04193971166448, + "grad_norm": 0.20950855314731598, + "learning_rate": 0.0006, + "loss": 3.5476295948028564, + "step": 4683 + }, + { + "epoch": 65.05591961555264, + "grad_norm": 0.1958799958229065, + "learning_rate": 0.0006, + "loss": 3.5180916786193848, + "step": 4684 + }, + { + "epoch": 65.06989951944081, + "grad_norm": 0.20676101744174957, + "learning_rate": 0.0006, + "loss": 3.4882211685180664, + "step": 4685 + }, + { + "epoch": 65.08387942332897, + "grad_norm": 0.24798569083213806, + "learning_rate": 0.0006, + "loss": 3.5030102729797363, + "step": 4686 + }, + { + "epoch": 65.09785932721712, + "grad_norm": 0.2997048795223236, + "learning_rate": 0.0006, + "loss": 3.5148534774780273, + "step": 4687 + }, + { + "epoch": 65.1118392311053, + "grad_norm": 0.27347132563591003, + "learning_rate": 0.0006, + "loss": 3.534639358520508, + "step": 4688 + }, + { + "epoch": 65.12581913499345, + "grad_norm": 0.2220011204481125, + "learning_rate": 0.0006, + "loss": 3.50504994392395, + "step": 4689 + }, + { + "epoch": 65.1397990388816, + "grad_norm": 0.2552279829978943, + "learning_rate": 0.0006, + "loss": 3.4893431663513184, + "step": 4690 + }, + { + "epoch": 65.15377894276976, + "grad_norm": 0.32200172543525696, + "learning_rate": 0.0006, + "loss": 3.515808582305908, + "step": 4691 + }, + { + "epoch": 65.16775884665793, + "grad_norm": 0.31339603662490845, + "learning_rate": 0.0006, + "loss": 3.493312358856201, + "step": 4692 + }, + { + "epoch": 65.18173875054609, + "grad_norm": 0.30790913105010986, + "learning_rate": 0.0006, + "loss": 3.5001792907714844, + "step": 4693 + }, + { + "epoch": 65.19571865443424, + "grad_norm": 0.25261157751083374, + "learning_rate": 0.0006, + "loss": 3.491820812225342, + "step": 4694 + }, + { + "epoch": 65.20969855832242, + "grad_norm": 0.20875515043735504, + "learning_rate": 0.0006, + "loss": 3.5120949745178223, + "step": 4695 + }, + { + "epoch": 65.22367846221057, + "grad_norm": 0.22966094315052032, + "learning_rate": 0.0006, + "loss": 3.4509716033935547, + "step": 4696 + }, + { + "epoch": 65.23765836609873, + "grad_norm": 0.22414445877075195, + "learning_rate": 0.0006, + "loss": 3.5032718181610107, + "step": 4697 + }, + { + "epoch": 65.2516382699869, + "grad_norm": 0.21083641052246094, + "learning_rate": 0.0006, + "loss": 3.4912984371185303, + "step": 4698 + }, + { + "epoch": 65.26561817387505, + "grad_norm": 0.21424371004104614, + "learning_rate": 0.0006, + "loss": 3.493704080581665, + "step": 4699 + }, + { + "epoch": 65.27959807776321, + "grad_norm": 0.21155135333538055, + "learning_rate": 0.0006, + "loss": 3.523045063018799, + "step": 4700 + }, + { + "epoch": 65.29357798165138, + "grad_norm": 0.2245800942182541, + "learning_rate": 0.0006, + "loss": 3.5085060596466064, + "step": 4701 + }, + { + "epoch": 65.30755788553954, + "grad_norm": 0.2271309345960617, + "learning_rate": 0.0006, + "loss": 3.51690673828125, + "step": 4702 + }, + { + "epoch": 65.3215377894277, + "grad_norm": 0.23873905837535858, + "learning_rate": 0.0006, + "loss": 3.533975124359131, + "step": 4703 + }, + { + "epoch": 65.33551769331586, + "grad_norm": 0.22801156342029572, + "learning_rate": 0.0006, + "loss": 3.554079532623291, + "step": 4704 + }, + { + "epoch": 65.34949759720402, + "grad_norm": 0.20530614256858826, + "learning_rate": 0.0006, + "loss": 3.5536623001098633, + "step": 4705 + }, + { + "epoch": 65.36347750109218, + "grad_norm": 0.19286230206489563, + "learning_rate": 0.0006, + "loss": 3.5279109477996826, + "step": 4706 + }, + { + "epoch": 65.37745740498035, + "grad_norm": 0.20883116126060486, + "learning_rate": 0.0006, + "loss": 3.526639223098755, + "step": 4707 + }, + { + "epoch": 65.3914373088685, + "grad_norm": 0.20705194771289825, + "learning_rate": 0.0006, + "loss": 3.5389089584350586, + "step": 4708 + }, + { + "epoch": 65.40541721275666, + "grad_norm": 0.1948518604040146, + "learning_rate": 0.0006, + "loss": 3.504940986633301, + "step": 4709 + }, + { + "epoch": 65.41939711664482, + "grad_norm": 0.20147304236888885, + "learning_rate": 0.0006, + "loss": 3.5085673332214355, + "step": 4710 + }, + { + "epoch": 65.43337702053299, + "grad_norm": 0.2229771912097931, + "learning_rate": 0.0006, + "loss": 3.4806604385375977, + "step": 4711 + }, + { + "epoch": 65.44735692442114, + "grad_norm": 0.252258837223053, + "learning_rate": 0.0006, + "loss": 3.5160961151123047, + "step": 4712 + }, + { + "epoch": 65.4613368283093, + "grad_norm": 0.2482563853263855, + "learning_rate": 0.0006, + "loss": 3.522674560546875, + "step": 4713 + }, + { + "epoch": 65.47531673219747, + "grad_norm": 0.22155597805976868, + "learning_rate": 0.0006, + "loss": 3.5124268531799316, + "step": 4714 + }, + { + "epoch": 65.48929663608563, + "grad_norm": 0.223913311958313, + "learning_rate": 0.0006, + "loss": 3.5122427940368652, + "step": 4715 + }, + { + "epoch": 65.50327653997378, + "grad_norm": 0.20946767926216125, + "learning_rate": 0.0006, + "loss": 3.552161693572998, + "step": 4716 + }, + { + "epoch": 65.51725644386195, + "grad_norm": 0.21044479310512543, + "learning_rate": 0.0006, + "loss": 3.5450949668884277, + "step": 4717 + }, + { + "epoch": 65.53123634775011, + "grad_norm": 0.25752949714660645, + "learning_rate": 0.0006, + "loss": 3.5267398357391357, + "step": 4718 + }, + { + "epoch": 65.54521625163827, + "grad_norm": 0.28068798780441284, + "learning_rate": 0.0006, + "loss": 3.537827491760254, + "step": 4719 + }, + { + "epoch": 65.55919615552644, + "grad_norm": 0.2259511947631836, + "learning_rate": 0.0006, + "loss": 3.540821075439453, + "step": 4720 + }, + { + "epoch": 65.57317605941459, + "grad_norm": 0.2032593935728073, + "learning_rate": 0.0006, + "loss": 3.540170669555664, + "step": 4721 + }, + { + "epoch": 65.58715596330275, + "grad_norm": 0.2432602047920227, + "learning_rate": 0.0006, + "loss": 3.5356297492980957, + "step": 4722 + }, + { + "epoch": 65.60113586719092, + "grad_norm": 0.20527289807796478, + "learning_rate": 0.0006, + "loss": 3.4675498008728027, + "step": 4723 + }, + { + "epoch": 65.61511577107908, + "grad_norm": 0.18697771430015564, + "learning_rate": 0.0006, + "loss": 3.5208992958068848, + "step": 4724 + }, + { + "epoch": 65.62909567496723, + "grad_norm": 0.2044762223958969, + "learning_rate": 0.0006, + "loss": 3.5583274364471436, + "step": 4725 + }, + { + "epoch": 65.6430755788554, + "grad_norm": 0.22855281829833984, + "learning_rate": 0.0006, + "loss": 3.5497756004333496, + "step": 4726 + }, + { + "epoch": 65.65705548274356, + "grad_norm": 0.21672320365905762, + "learning_rate": 0.0006, + "loss": 3.530869960784912, + "step": 4727 + }, + { + "epoch": 65.67103538663171, + "grad_norm": 0.20629048347473145, + "learning_rate": 0.0006, + "loss": 3.5381593704223633, + "step": 4728 + }, + { + "epoch": 65.68501529051987, + "grad_norm": 0.21036849915981293, + "learning_rate": 0.0006, + "loss": 3.531111478805542, + "step": 4729 + }, + { + "epoch": 65.69899519440804, + "grad_norm": 0.19463932514190674, + "learning_rate": 0.0006, + "loss": 3.523106098175049, + "step": 4730 + }, + { + "epoch": 65.7129750982962, + "grad_norm": 0.2210976481437683, + "learning_rate": 0.0006, + "loss": 3.5480356216430664, + "step": 4731 + }, + { + "epoch": 65.72695500218435, + "grad_norm": 0.2288331687450409, + "learning_rate": 0.0006, + "loss": 3.5317163467407227, + "step": 4732 + }, + { + "epoch": 65.74093490607252, + "grad_norm": 0.22445930540561676, + "learning_rate": 0.0006, + "loss": 3.5453107357025146, + "step": 4733 + }, + { + "epoch": 65.75491480996068, + "grad_norm": 0.20268939435482025, + "learning_rate": 0.0006, + "loss": 3.5546514987945557, + "step": 4734 + }, + { + "epoch": 65.76889471384884, + "grad_norm": 0.2070288211107254, + "learning_rate": 0.0006, + "loss": 3.5345590114593506, + "step": 4735 + }, + { + "epoch": 65.78287461773701, + "grad_norm": 0.2052922248840332, + "learning_rate": 0.0006, + "loss": 3.538299083709717, + "step": 4736 + }, + { + "epoch": 65.79685452162516, + "grad_norm": 0.2146841138601303, + "learning_rate": 0.0006, + "loss": 3.541652202606201, + "step": 4737 + }, + { + "epoch": 65.81083442551332, + "grad_norm": 0.21826434135437012, + "learning_rate": 0.0006, + "loss": 3.4880056381225586, + "step": 4738 + }, + { + "epoch": 65.82481432940149, + "grad_norm": 0.18492230772972107, + "learning_rate": 0.0006, + "loss": 3.5282340049743652, + "step": 4739 + }, + { + "epoch": 65.83879423328965, + "grad_norm": 0.2422342747449875, + "learning_rate": 0.0006, + "loss": 3.5482215881347656, + "step": 4740 + }, + { + "epoch": 65.8527741371778, + "grad_norm": 0.300968199968338, + "learning_rate": 0.0006, + "loss": 3.545173168182373, + "step": 4741 + }, + { + "epoch": 65.86675404106597, + "grad_norm": 0.23397785425186157, + "learning_rate": 0.0006, + "loss": 3.5014636516571045, + "step": 4742 + }, + { + "epoch": 65.88073394495413, + "grad_norm": 0.20114080607891083, + "learning_rate": 0.0006, + "loss": 3.517125368118286, + "step": 4743 + }, + { + "epoch": 65.89471384884229, + "grad_norm": 0.23073594272136688, + "learning_rate": 0.0006, + "loss": 3.5259623527526855, + "step": 4744 + }, + { + "epoch": 65.90869375273044, + "grad_norm": 0.25975924730300903, + "learning_rate": 0.0006, + "loss": 3.5394439697265625, + "step": 4745 + }, + { + "epoch": 65.92267365661861, + "grad_norm": 0.2565694749355316, + "learning_rate": 0.0006, + "loss": 3.5301175117492676, + "step": 4746 + }, + { + "epoch": 65.93665356050677, + "grad_norm": 0.24380211532115936, + "learning_rate": 0.0006, + "loss": 3.5519638061523438, + "step": 4747 + }, + { + "epoch": 65.95063346439493, + "grad_norm": 0.2337062805891037, + "learning_rate": 0.0006, + "loss": 3.5365114212036133, + "step": 4748 + }, + { + "epoch": 65.9646133682831, + "grad_norm": 0.2107299268245697, + "learning_rate": 0.0006, + "loss": 3.5433106422424316, + "step": 4749 + }, + { + "epoch": 65.97859327217125, + "grad_norm": 0.2159995585680008, + "learning_rate": 0.0006, + "loss": 3.539796829223633, + "step": 4750 + }, + { + "epoch": 65.99257317605941, + "grad_norm": 0.23707467317581177, + "learning_rate": 0.0006, + "loss": 3.5315332412719727, + "step": 4751 + }, + { + "epoch": 66.0, + "grad_norm": 0.27253037691116333, + "learning_rate": 0.0006, + "loss": 3.5477747917175293, + "step": 4752 + }, + { + "epoch": 66.0, + "eval_loss": 3.973580837249756, + "eval_runtime": 44.8472, + "eval_samples_per_second": 54.452, + "eval_steps_per_second": 3.412, + "step": 4752 + }, + { + "epoch": 66.01397990388816, + "grad_norm": 0.22843532264232635, + "learning_rate": 0.0006, + "loss": 3.463778018951416, + "step": 4753 + }, + { + "epoch": 66.02795980777633, + "grad_norm": 0.24956060945987701, + "learning_rate": 0.0006, + "loss": 3.5249979496002197, + "step": 4754 + }, + { + "epoch": 66.04193971166448, + "grad_norm": 0.3091195821762085, + "learning_rate": 0.0006, + "loss": 3.4742040634155273, + "step": 4755 + }, + { + "epoch": 66.05591961555264, + "grad_norm": 0.346617192029953, + "learning_rate": 0.0006, + "loss": 3.4870445728302, + "step": 4756 + }, + { + "epoch": 66.06989951944081, + "grad_norm": 0.2875824570655823, + "learning_rate": 0.0006, + "loss": 3.5412697792053223, + "step": 4757 + }, + { + "epoch": 66.08387942332897, + "grad_norm": 0.2508425712585449, + "learning_rate": 0.0006, + "loss": 3.488759756088257, + "step": 4758 + }, + { + "epoch": 66.09785932721712, + "grad_norm": 0.2538967728614807, + "learning_rate": 0.0006, + "loss": 3.536404609680176, + "step": 4759 + }, + { + "epoch": 66.1118392311053, + "grad_norm": 0.24713276326656342, + "learning_rate": 0.0006, + "loss": 3.502939462661743, + "step": 4760 + }, + { + "epoch": 66.12581913499345, + "grad_norm": 0.2381032407283783, + "learning_rate": 0.0006, + "loss": 3.5297226905822754, + "step": 4761 + }, + { + "epoch": 66.1397990388816, + "grad_norm": 0.23749777674674988, + "learning_rate": 0.0006, + "loss": 3.510740280151367, + "step": 4762 + }, + { + "epoch": 66.15377894276976, + "grad_norm": 0.24993619322776794, + "learning_rate": 0.0006, + "loss": 3.4966745376586914, + "step": 4763 + }, + { + "epoch": 66.16775884665793, + "grad_norm": 0.25855013728141785, + "learning_rate": 0.0006, + "loss": 3.545177936553955, + "step": 4764 + }, + { + "epoch": 66.18173875054609, + "grad_norm": 0.2206948697566986, + "learning_rate": 0.0006, + "loss": 3.5404415130615234, + "step": 4765 + }, + { + "epoch": 66.19571865443424, + "grad_norm": 0.2627105116844177, + "learning_rate": 0.0006, + "loss": 3.5475361347198486, + "step": 4766 + }, + { + "epoch": 66.20969855832242, + "grad_norm": 0.29578864574432373, + "learning_rate": 0.0006, + "loss": 3.510110855102539, + "step": 4767 + }, + { + "epoch": 66.22367846221057, + "grad_norm": 0.257691353559494, + "learning_rate": 0.0006, + "loss": 3.5143630504608154, + "step": 4768 + }, + { + "epoch": 66.23765836609873, + "grad_norm": 0.24346867203712463, + "learning_rate": 0.0006, + "loss": 3.5007784366607666, + "step": 4769 + }, + { + "epoch": 66.2516382699869, + "grad_norm": 0.230575293302536, + "learning_rate": 0.0006, + "loss": 3.5051684379577637, + "step": 4770 + }, + { + "epoch": 66.26561817387505, + "grad_norm": 0.23823921382427216, + "learning_rate": 0.0006, + "loss": 3.4773342609405518, + "step": 4771 + }, + { + "epoch": 66.27959807776321, + "grad_norm": 0.20743288099765778, + "learning_rate": 0.0006, + "loss": 3.496393918991089, + "step": 4772 + }, + { + "epoch": 66.29357798165138, + "grad_norm": 0.21969960629940033, + "learning_rate": 0.0006, + "loss": 3.494748830795288, + "step": 4773 + }, + { + "epoch": 66.30755788553954, + "grad_norm": 0.20902593433856964, + "learning_rate": 0.0006, + "loss": 3.529416561126709, + "step": 4774 + }, + { + "epoch": 66.3215377894277, + "grad_norm": 0.2380436211824417, + "learning_rate": 0.0006, + "loss": 3.508625030517578, + "step": 4775 + }, + { + "epoch": 66.33551769331586, + "grad_norm": 0.26387956738471985, + "learning_rate": 0.0006, + "loss": 3.4886221885681152, + "step": 4776 + }, + { + "epoch": 66.34949759720402, + "grad_norm": 0.24655069410800934, + "learning_rate": 0.0006, + "loss": 3.5089354515075684, + "step": 4777 + }, + { + "epoch": 66.36347750109218, + "grad_norm": 0.2446470856666565, + "learning_rate": 0.0006, + "loss": 3.5295841693878174, + "step": 4778 + }, + { + "epoch": 66.37745740498035, + "grad_norm": 0.23909035325050354, + "learning_rate": 0.0006, + "loss": 3.500223159790039, + "step": 4779 + }, + { + "epoch": 66.3914373088685, + "grad_norm": 0.21958141028881073, + "learning_rate": 0.0006, + "loss": 3.5225610733032227, + "step": 4780 + }, + { + "epoch": 66.40541721275666, + "grad_norm": 0.20134378969669342, + "learning_rate": 0.0006, + "loss": 3.5055198669433594, + "step": 4781 + }, + { + "epoch": 66.41939711664482, + "grad_norm": 0.22621650993824005, + "learning_rate": 0.0006, + "loss": 3.5356178283691406, + "step": 4782 + }, + { + "epoch": 66.43337702053299, + "grad_norm": 0.214684396982193, + "learning_rate": 0.0006, + "loss": 3.5069541931152344, + "step": 4783 + }, + { + "epoch": 66.44735692442114, + "grad_norm": 0.217989981174469, + "learning_rate": 0.0006, + "loss": 3.499561071395874, + "step": 4784 + }, + { + "epoch": 66.4613368283093, + "grad_norm": 0.21457986533641815, + "learning_rate": 0.0006, + "loss": 3.5139474868774414, + "step": 4785 + }, + { + "epoch": 66.47531673219747, + "grad_norm": 0.24017205834388733, + "learning_rate": 0.0006, + "loss": 3.5267739295959473, + "step": 4786 + }, + { + "epoch": 66.48929663608563, + "grad_norm": 0.22864149510860443, + "learning_rate": 0.0006, + "loss": 3.5324792861938477, + "step": 4787 + }, + { + "epoch": 66.50327653997378, + "grad_norm": 0.219966322183609, + "learning_rate": 0.0006, + "loss": 3.491529703140259, + "step": 4788 + }, + { + "epoch": 66.51725644386195, + "grad_norm": 0.23360539972782135, + "learning_rate": 0.0006, + "loss": 3.4962849617004395, + "step": 4789 + }, + { + "epoch": 66.53123634775011, + "grad_norm": 0.24652886390686035, + "learning_rate": 0.0006, + "loss": 3.510777473449707, + "step": 4790 + }, + { + "epoch": 66.54521625163827, + "grad_norm": 0.23419316112995148, + "learning_rate": 0.0006, + "loss": 3.5549509525299072, + "step": 4791 + }, + { + "epoch": 66.55919615552644, + "grad_norm": 0.2514760494232178, + "learning_rate": 0.0006, + "loss": 3.49761962890625, + "step": 4792 + }, + { + "epoch": 66.57317605941459, + "grad_norm": 0.24227535724639893, + "learning_rate": 0.0006, + "loss": 3.5556445121765137, + "step": 4793 + }, + { + "epoch": 66.58715596330275, + "grad_norm": 0.24751204252243042, + "learning_rate": 0.0006, + "loss": 3.5131940841674805, + "step": 4794 + }, + { + "epoch": 66.60113586719092, + "grad_norm": 0.24366872012615204, + "learning_rate": 0.0006, + "loss": 3.5310516357421875, + "step": 4795 + }, + { + "epoch": 66.61511577107908, + "grad_norm": 0.2177760899066925, + "learning_rate": 0.0006, + "loss": 3.5267493724823, + "step": 4796 + }, + { + "epoch": 66.62909567496723, + "grad_norm": 0.19654381275177002, + "learning_rate": 0.0006, + "loss": 3.5158896446228027, + "step": 4797 + }, + { + "epoch": 66.6430755788554, + "grad_norm": 0.2041735202074051, + "learning_rate": 0.0006, + "loss": 3.5645484924316406, + "step": 4798 + }, + { + "epoch": 66.65705548274356, + "grad_norm": 0.21368929743766785, + "learning_rate": 0.0006, + "loss": 3.5481250286102295, + "step": 4799 + }, + { + "epoch": 66.67103538663171, + "grad_norm": 0.2047458291053772, + "learning_rate": 0.0006, + "loss": 3.498279571533203, + "step": 4800 + }, + { + "epoch": 66.68501529051987, + "grad_norm": 0.21750541031360626, + "learning_rate": 0.0006, + "loss": 3.5349860191345215, + "step": 4801 + }, + { + "epoch": 66.69899519440804, + "grad_norm": 0.2415834218263626, + "learning_rate": 0.0006, + "loss": 3.5091004371643066, + "step": 4802 + }, + { + "epoch": 66.7129750982962, + "grad_norm": 0.19963665306568146, + "learning_rate": 0.0006, + "loss": 3.5369873046875, + "step": 4803 + }, + { + "epoch": 66.72695500218435, + "grad_norm": 0.23620283603668213, + "learning_rate": 0.0006, + "loss": 3.5239949226379395, + "step": 4804 + }, + { + "epoch": 66.74093490607252, + "grad_norm": 0.2616693079471588, + "learning_rate": 0.0006, + "loss": 3.545588493347168, + "step": 4805 + }, + { + "epoch": 66.75491480996068, + "grad_norm": 0.23235733807086945, + "learning_rate": 0.0006, + "loss": 3.5250823497772217, + "step": 4806 + }, + { + "epoch": 66.76889471384884, + "grad_norm": 0.20908917486667633, + "learning_rate": 0.0006, + "loss": 3.547023057937622, + "step": 4807 + }, + { + "epoch": 66.78287461773701, + "grad_norm": 0.23014947772026062, + "learning_rate": 0.0006, + "loss": 3.527070999145508, + "step": 4808 + }, + { + "epoch": 66.79685452162516, + "grad_norm": 0.2468312382698059, + "learning_rate": 0.0006, + "loss": 3.5456371307373047, + "step": 4809 + }, + { + "epoch": 66.81083442551332, + "grad_norm": 0.21409334242343903, + "learning_rate": 0.0006, + "loss": 3.5282058715820312, + "step": 4810 + }, + { + "epoch": 66.82481432940149, + "grad_norm": 0.20337609946727753, + "learning_rate": 0.0006, + "loss": 3.5054173469543457, + "step": 4811 + }, + { + "epoch": 66.83879423328965, + "grad_norm": 0.20335888862609863, + "learning_rate": 0.0006, + "loss": 3.5417919158935547, + "step": 4812 + }, + { + "epoch": 66.8527741371778, + "grad_norm": 0.20672455430030823, + "learning_rate": 0.0006, + "loss": 3.549217700958252, + "step": 4813 + }, + { + "epoch": 66.86675404106597, + "grad_norm": 0.19788624346256256, + "learning_rate": 0.0006, + "loss": 3.5244839191436768, + "step": 4814 + }, + { + "epoch": 66.88073394495413, + "grad_norm": 0.19756834208965302, + "learning_rate": 0.0006, + "loss": 3.5210156440734863, + "step": 4815 + }, + { + "epoch": 66.89471384884229, + "grad_norm": 0.18592269718647003, + "learning_rate": 0.0006, + "loss": 3.522824764251709, + "step": 4816 + }, + { + "epoch": 66.90869375273044, + "grad_norm": 0.2011021077632904, + "learning_rate": 0.0006, + "loss": 3.521613597869873, + "step": 4817 + }, + { + "epoch": 66.92267365661861, + "grad_norm": 0.20816446840763092, + "learning_rate": 0.0006, + "loss": 3.562373161315918, + "step": 4818 + }, + { + "epoch": 66.93665356050677, + "grad_norm": 0.1967775523662567, + "learning_rate": 0.0006, + "loss": 3.5357818603515625, + "step": 4819 + }, + { + "epoch": 66.95063346439493, + "grad_norm": 0.20569968223571777, + "learning_rate": 0.0006, + "loss": 3.5232982635498047, + "step": 4820 + }, + { + "epoch": 66.9646133682831, + "grad_norm": 0.2095642238855362, + "learning_rate": 0.0006, + "loss": 3.5395994186401367, + "step": 4821 + }, + { + "epoch": 66.97859327217125, + "grad_norm": 0.22340409457683563, + "learning_rate": 0.0006, + "loss": 3.5163097381591797, + "step": 4822 + }, + { + "epoch": 66.99257317605941, + "grad_norm": 0.2131485939025879, + "learning_rate": 0.0006, + "loss": 3.555629253387451, + "step": 4823 + }, + { + "epoch": 67.0, + "grad_norm": 0.22373832762241364, + "learning_rate": 0.0006, + "loss": 3.5017800331115723, + "step": 4824 + }, + { + "epoch": 67.0, + "eval_loss": 3.9781124591827393, + "eval_runtime": 44.8111, + "eval_samples_per_second": 54.495, + "eval_steps_per_second": 3.414, + "step": 4824 + }, + { + "epoch": 67.01397990388816, + "grad_norm": 0.21282735466957092, + "learning_rate": 0.0006, + "loss": 3.482837677001953, + "step": 4825 + }, + { + "epoch": 67.02795980777633, + "grad_norm": 0.23839101195335388, + "learning_rate": 0.0006, + "loss": 3.5095958709716797, + "step": 4826 + }, + { + "epoch": 67.04193971166448, + "grad_norm": 0.2598385810852051, + "learning_rate": 0.0006, + "loss": 3.463888645172119, + "step": 4827 + }, + { + "epoch": 67.05591961555264, + "grad_norm": 0.24132144451141357, + "learning_rate": 0.0006, + "loss": 3.478180408477783, + "step": 4828 + }, + { + "epoch": 67.06989951944081, + "grad_norm": 0.23276527225971222, + "learning_rate": 0.0006, + "loss": 3.5064096450805664, + "step": 4829 + }, + { + "epoch": 67.08387942332897, + "grad_norm": 0.21749058365821838, + "learning_rate": 0.0006, + "loss": 3.5057930946350098, + "step": 4830 + }, + { + "epoch": 67.09785932721712, + "grad_norm": 0.22310365736484528, + "learning_rate": 0.0006, + "loss": 3.492342233657837, + "step": 4831 + }, + { + "epoch": 67.1118392311053, + "grad_norm": 0.23109206557273865, + "learning_rate": 0.0006, + "loss": 3.4776313304901123, + "step": 4832 + }, + { + "epoch": 67.12581913499345, + "grad_norm": 0.21820154786109924, + "learning_rate": 0.0006, + "loss": 3.4983036518096924, + "step": 4833 + }, + { + "epoch": 67.1397990388816, + "grad_norm": 0.214705228805542, + "learning_rate": 0.0006, + "loss": 3.4997382164001465, + "step": 4834 + }, + { + "epoch": 67.15377894276976, + "grad_norm": 0.230570450425148, + "learning_rate": 0.0006, + "loss": 3.5172224044799805, + "step": 4835 + }, + { + "epoch": 67.16775884665793, + "grad_norm": 0.21726474165916443, + "learning_rate": 0.0006, + "loss": 3.4625420570373535, + "step": 4836 + }, + { + "epoch": 67.18173875054609, + "grad_norm": 0.21541455388069153, + "learning_rate": 0.0006, + "loss": 3.5274102687835693, + "step": 4837 + }, + { + "epoch": 67.19571865443424, + "grad_norm": 0.21431861817836761, + "learning_rate": 0.0006, + "loss": 3.5112781524658203, + "step": 4838 + }, + { + "epoch": 67.20969855832242, + "grad_norm": 0.22660572826862335, + "learning_rate": 0.0006, + "loss": 3.4687018394470215, + "step": 4839 + }, + { + "epoch": 67.22367846221057, + "grad_norm": 0.21821390092372894, + "learning_rate": 0.0006, + "loss": 3.5137336254119873, + "step": 4840 + }, + { + "epoch": 67.23765836609873, + "grad_norm": 0.20666861534118652, + "learning_rate": 0.0006, + "loss": 3.5264923572540283, + "step": 4841 + }, + { + "epoch": 67.2516382699869, + "grad_norm": 0.2266923040151596, + "learning_rate": 0.0006, + "loss": 3.5288591384887695, + "step": 4842 + }, + { + "epoch": 67.26561817387505, + "grad_norm": 0.20246101915836334, + "learning_rate": 0.0006, + "loss": 3.5267882347106934, + "step": 4843 + }, + { + "epoch": 67.27959807776321, + "grad_norm": 0.20115883648395538, + "learning_rate": 0.0006, + "loss": 3.5004916191101074, + "step": 4844 + }, + { + "epoch": 67.29357798165138, + "grad_norm": 0.21547555923461914, + "learning_rate": 0.0006, + "loss": 3.5347824096679688, + "step": 4845 + }, + { + "epoch": 67.30755788553954, + "grad_norm": 0.22675341367721558, + "learning_rate": 0.0006, + "loss": 3.5119810104370117, + "step": 4846 + }, + { + "epoch": 67.3215377894277, + "grad_norm": 0.2440510094165802, + "learning_rate": 0.0006, + "loss": 3.489138126373291, + "step": 4847 + }, + { + "epoch": 67.33551769331586, + "grad_norm": 0.3055892884731293, + "learning_rate": 0.0006, + "loss": 3.5096774101257324, + "step": 4848 + }, + { + "epoch": 67.34949759720402, + "grad_norm": 0.3053153455257416, + "learning_rate": 0.0006, + "loss": 3.4901437759399414, + "step": 4849 + }, + { + "epoch": 67.36347750109218, + "grad_norm": 0.27368026971817017, + "learning_rate": 0.0006, + "loss": 3.5251317024230957, + "step": 4850 + }, + { + "epoch": 67.37745740498035, + "grad_norm": 0.2427835315465927, + "learning_rate": 0.0006, + "loss": 3.5069375038146973, + "step": 4851 + }, + { + "epoch": 67.3914373088685, + "grad_norm": 0.22328020632266998, + "learning_rate": 0.0006, + "loss": 3.5156240463256836, + "step": 4852 + }, + { + "epoch": 67.40541721275666, + "grad_norm": 0.22034069895744324, + "learning_rate": 0.0006, + "loss": 3.527740001678467, + "step": 4853 + }, + { + "epoch": 67.41939711664482, + "grad_norm": 0.23175004124641418, + "learning_rate": 0.0006, + "loss": 3.5049824714660645, + "step": 4854 + }, + { + "epoch": 67.43337702053299, + "grad_norm": 0.251209020614624, + "learning_rate": 0.0006, + "loss": 3.521754503250122, + "step": 4855 + }, + { + "epoch": 67.44735692442114, + "grad_norm": 0.26046663522720337, + "learning_rate": 0.0006, + "loss": 3.507568359375, + "step": 4856 + }, + { + "epoch": 67.4613368283093, + "grad_norm": 0.2206648588180542, + "learning_rate": 0.0006, + "loss": 3.513352870941162, + "step": 4857 + }, + { + "epoch": 67.47531673219747, + "grad_norm": 0.21608634293079376, + "learning_rate": 0.0006, + "loss": 3.4996538162231445, + "step": 4858 + }, + { + "epoch": 67.48929663608563, + "grad_norm": 0.24478112161159515, + "learning_rate": 0.0006, + "loss": 3.5210018157958984, + "step": 4859 + }, + { + "epoch": 67.50327653997378, + "grad_norm": 0.24971047043800354, + "learning_rate": 0.0006, + "loss": 3.5325865745544434, + "step": 4860 + }, + { + "epoch": 67.51725644386195, + "grad_norm": 0.26053082942962646, + "learning_rate": 0.0006, + "loss": 3.546248435974121, + "step": 4861 + }, + { + "epoch": 67.53123634775011, + "grad_norm": 0.2662231922149658, + "learning_rate": 0.0006, + "loss": 3.5073113441467285, + "step": 4862 + }, + { + "epoch": 67.54521625163827, + "grad_norm": 0.24797172844409943, + "learning_rate": 0.0006, + "loss": 3.536888360977173, + "step": 4863 + }, + { + "epoch": 67.55919615552644, + "grad_norm": 0.2383667528629303, + "learning_rate": 0.0006, + "loss": 3.5343832969665527, + "step": 4864 + }, + { + "epoch": 67.57317605941459, + "grad_norm": 0.2696457803249359, + "learning_rate": 0.0006, + "loss": 3.51254940032959, + "step": 4865 + }, + { + "epoch": 67.58715596330275, + "grad_norm": 0.2644849419593811, + "learning_rate": 0.0006, + "loss": 3.5213255882263184, + "step": 4866 + }, + { + "epoch": 67.60113586719092, + "grad_norm": 0.2375287413597107, + "learning_rate": 0.0006, + "loss": 3.5177063941955566, + "step": 4867 + }, + { + "epoch": 67.61511577107908, + "grad_norm": 0.2249385118484497, + "learning_rate": 0.0006, + "loss": 3.541508674621582, + "step": 4868 + }, + { + "epoch": 67.62909567496723, + "grad_norm": 0.2155243158340454, + "learning_rate": 0.0006, + "loss": 3.5091710090637207, + "step": 4869 + }, + { + "epoch": 67.6430755788554, + "grad_norm": 0.20459716022014618, + "learning_rate": 0.0006, + "loss": 3.5284833908081055, + "step": 4870 + }, + { + "epoch": 67.65705548274356, + "grad_norm": 0.22957809269428253, + "learning_rate": 0.0006, + "loss": 3.4831137657165527, + "step": 4871 + }, + { + "epoch": 67.67103538663171, + "grad_norm": 0.2776307165622711, + "learning_rate": 0.0006, + "loss": 3.5084991455078125, + "step": 4872 + }, + { + "epoch": 67.68501529051987, + "grad_norm": 0.2769255042076111, + "learning_rate": 0.0006, + "loss": 3.5352253913879395, + "step": 4873 + }, + { + "epoch": 67.69899519440804, + "grad_norm": 0.2233399897813797, + "learning_rate": 0.0006, + "loss": 3.5451040267944336, + "step": 4874 + }, + { + "epoch": 67.7129750982962, + "grad_norm": 0.20665188133716583, + "learning_rate": 0.0006, + "loss": 3.528292417526245, + "step": 4875 + }, + { + "epoch": 67.72695500218435, + "grad_norm": 0.22606195509433746, + "learning_rate": 0.0006, + "loss": 3.519838571548462, + "step": 4876 + }, + { + "epoch": 67.74093490607252, + "grad_norm": 0.22447355091571808, + "learning_rate": 0.0006, + "loss": 3.562148094177246, + "step": 4877 + }, + { + "epoch": 67.75491480996068, + "grad_norm": 0.2255096584558487, + "learning_rate": 0.0006, + "loss": 3.53926420211792, + "step": 4878 + }, + { + "epoch": 67.76889471384884, + "grad_norm": 0.2142494022846222, + "learning_rate": 0.0006, + "loss": 3.533456563949585, + "step": 4879 + }, + { + "epoch": 67.78287461773701, + "grad_norm": 0.2157258242368698, + "learning_rate": 0.0006, + "loss": 3.534109592437744, + "step": 4880 + }, + { + "epoch": 67.79685452162516, + "grad_norm": 0.20596624910831451, + "learning_rate": 0.0006, + "loss": 3.5252795219421387, + "step": 4881 + }, + { + "epoch": 67.81083442551332, + "grad_norm": 0.24075612425804138, + "learning_rate": 0.0006, + "loss": 3.549905300140381, + "step": 4882 + }, + { + "epoch": 67.82481432940149, + "grad_norm": 0.27206453680992126, + "learning_rate": 0.0006, + "loss": 3.4850993156433105, + "step": 4883 + }, + { + "epoch": 67.83879423328965, + "grad_norm": 0.2525651454925537, + "learning_rate": 0.0006, + "loss": 3.4936270713806152, + "step": 4884 + }, + { + "epoch": 67.8527741371778, + "grad_norm": 0.20669442415237427, + "learning_rate": 0.0006, + "loss": 3.5201377868652344, + "step": 4885 + }, + { + "epoch": 67.86675404106597, + "grad_norm": 0.19694887101650238, + "learning_rate": 0.0006, + "loss": 3.5146493911743164, + "step": 4886 + }, + { + "epoch": 67.88073394495413, + "grad_norm": 0.20657725632190704, + "learning_rate": 0.0006, + "loss": 3.539475917816162, + "step": 4887 + }, + { + "epoch": 67.89471384884229, + "grad_norm": 0.2321559488773346, + "learning_rate": 0.0006, + "loss": 3.541250705718994, + "step": 4888 + }, + { + "epoch": 67.90869375273044, + "grad_norm": 0.22864052653312683, + "learning_rate": 0.0006, + "loss": 3.5151207447052, + "step": 4889 + }, + { + "epoch": 67.92267365661861, + "grad_norm": 0.2121419608592987, + "learning_rate": 0.0006, + "loss": 3.5219309329986572, + "step": 4890 + }, + { + "epoch": 67.93665356050677, + "grad_norm": 0.2194126695394516, + "learning_rate": 0.0006, + "loss": 3.5411415100097656, + "step": 4891 + }, + { + "epoch": 67.95063346439493, + "grad_norm": 0.23670069873332977, + "learning_rate": 0.0006, + "loss": 3.56632137298584, + "step": 4892 + }, + { + "epoch": 67.9646133682831, + "grad_norm": 0.22159531712532043, + "learning_rate": 0.0006, + "loss": 3.5245089530944824, + "step": 4893 + }, + { + "epoch": 67.97859327217125, + "grad_norm": 0.20856274664402008, + "learning_rate": 0.0006, + "loss": 3.5363054275512695, + "step": 4894 + }, + { + "epoch": 67.99257317605941, + "grad_norm": 0.21568304300308228, + "learning_rate": 0.0006, + "loss": 3.5226120948791504, + "step": 4895 + }, + { + "epoch": 68.0, + "grad_norm": 0.22287404537200928, + "learning_rate": 0.0006, + "loss": 3.5020053386688232, + "step": 4896 + }, + { + "epoch": 68.0, + "eval_loss": 3.976909637451172, + "eval_runtime": 44.2603, + "eval_samples_per_second": 55.174, + "eval_steps_per_second": 3.457, + "step": 4896 + }, + { + "epoch": 68.01397990388816, + "grad_norm": 0.20234280824661255, + "learning_rate": 0.0006, + "loss": 3.484044075012207, + "step": 4897 + }, + { + "epoch": 68.02795980777633, + "grad_norm": 0.2183598279953003, + "learning_rate": 0.0006, + "loss": 3.4933700561523438, + "step": 4898 + }, + { + "epoch": 68.04193971166448, + "grad_norm": 0.24236822128295898, + "learning_rate": 0.0006, + "loss": 3.5028629302978516, + "step": 4899 + }, + { + "epoch": 68.05591961555264, + "grad_norm": 0.26641783118247986, + "learning_rate": 0.0006, + "loss": 3.475382089614868, + "step": 4900 + }, + { + "epoch": 68.06989951944081, + "grad_norm": 0.2867112159729004, + "learning_rate": 0.0006, + "loss": 3.5016913414001465, + "step": 4901 + }, + { + "epoch": 68.08387942332897, + "grad_norm": 0.24962085485458374, + "learning_rate": 0.0006, + "loss": 3.484367609024048, + "step": 4902 + }, + { + "epoch": 68.09785932721712, + "grad_norm": 0.2124275118112564, + "learning_rate": 0.0006, + "loss": 3.5119738578796387, + "step": 4903 + }, + { + "epoch": 68.1118392311053, + "grad_norm": 0.24732011556625366, + "learning_rate": 0.0006, + "loss": 3.486185073852539, + "step": 4904 + }, + { + "epoch": 68.12581913499345, + "grad_norm": 0.28683924674987793, + "learning_rate": 0.0006, + "loss": 3.495997905731201, + "step": 4905 + }, + { + "epoch": 68.1397990388816, + "grad_norm": 0.25751420855522156, + "learning_rate": 0.0006, + "loss": 3.4736456871032715, + "step": 4906 + }, + { + "epoch": 68.15377894276976, + "grad_norm": 0.24258914589881897, + "learning_rate": 0.0006, + "loss": 3.4900879859924316, + "step": 4907 + }, + { + "epoch": 68.16775884665793, + "grad_norm": 0.2878887951374054, + "learning_rate": 0.0006, + "loss": 3.4851484298706055, + "step": 4908 + }, + { + "epoch": 68.18173875054609, + "grad_norm": 0.27111393213272095, + "learning_rate": 0.0006, + "loss": 3.4835691452026367, + "step": 4909 + }, + { + "epoch": 68.19571865443424, + "grad_norm": 0.2475033849477768, + "learning_rate": 0.0006, + "loss": 3.4887213706970215, + "step": 4910 + }, + { + "epoch": 68.20969855832242, + "grad_norm": 0.267839252948761, + "learning_rate": 0.0006, + "loss": 3.515256404876709, + "step": 4911 + }, + { + "epoch": 68.22367846221057, + "grad_norm": 0.2135075181722641, + "learning_rate": 0.0006, + "loss": 3.5156445503234863, + "step": 4912 + }, + { + "epoch": 68.23765836609873, + "grad_norm": 0.22425328195095062, + "learning_rate": 0.0006, + "loss": 3.505338668823242, + "step": 4913 + }, + { + "epoch": 68.2516382699869, + "grad_norm": 0.2322927862405777, + "learning_rate": 0.0006, + "loss": 3.519695281982422, + "step": 4914 + }, + { + "epoch": 68.26561817387505, + "grad_norm": 0.2472568154335022, + "learning_rate": 0.0006, + "loss": 3.4845151901245117, + "step": 4915 + }, + { + "epoch": 68.27959807776321, + "grad_norm": 0.2725318968296051, + "learning_rate": 0.0006, + "loss": 3.4981484413146973, + "step": 4916 + }, + { + "epoch": 68.29357798165138, + "grad_norm": 0.2940191626548767, + "learning_rate": 0.0006, + "loss": 3.5088295936584473, + "step": 4917 + }, + { + "epoch": 68.30755788553954, + "grad_norm": 0.24303823709487915, + "learning_rate": 0.0006, + "loss": 3.492511749267578, + "step": 4918 + }, + { + "epoch": 68.3215377894277, + "grad_norm": 0.21951992809772491, + "learning_rate": 0.0006, + "loss": 3.509099006652832, + "step": 4919 + }, + { + "epoch": 68.33551769331586, + "grad_norm": 0.22776944935321808, + "learning_rate": 0.0006, + "loss": 3.501638650894165, + "step": 4920 + }, + { + "epoch": 68.34949759720402, + "grad_norm": 0.21173885464668274, + "learning_rate": 0.0006, + "loss": 3.4885807037353516, + "step": 4921 + }, + { + "epoch": 68.36347750109218, + "grad_norm": 0.2253648191690445, + "learning_rate": 0.0006, + "loss": 3.5350418090820312, + "step": 4922 + }, + { + "epoch": 68.37745740498035, + "grad_norm": 0.24312502145767212, + "learning_rate": 0.0006, + "loss": 3.490877866744995, + "step": 4923 + }, + { + "epoch": 68.3914373088685, + "grad_norm": 0.2103606015443802, + "learning_rate": 0.0006, + "loss": 3.5088863372802734, + "step": 4924 + }, + { + "epoch": 68.40541721275666, + "grad_norm": 0.19921863079071045, + "learning_rate": 0.0006, + "loss": 3.5282039642333984, + "step": 4925 + }, + { + "epoch": 68.41939711664482, + "grad_norm": 0.2041940689086914, + "learning_rate": 0.0006, + "loss": 3.5212771892547607, + "step": 4926 + }, + { + "epoch": 68.43337702053299, + "grad_norm": 0.22238804399967194, + "learning_rate": 0.0006, + "loss": 3.4951324462890625, + "step": 4927 + }, + { + "epoch": 68.44735692442114, + "grad_norm": 0.23161815106868744, + "learning_rate": 0.0006, + "loss": 3.5463013648986816, + "step": 4928 + }, + { + "epoch": 68.4613368283093, + "grad_norm": 0.21717964112758636, + "learning_rate": 0.0006, + "loss": 3.5081775188446045, + "step": 4929 + }, + { + "epoch": 68.47531673219747, + "grad_norm": 0.21505609154701233, + "learning_rate": 0.0006, + "loss": 3.52695631980896, + "step": 4930 + }, + { + "epoch": 68.48929663608563, + "grad_norm": 0.2720189094543457, + "learning_rate": 0.0006, + "loss": 3.497748374938965, + "step": 4931 + }, + { + "epoch": 68.50327653997378, + "grad_norm": 0.2619168758392334, + "learning_rate": 0.0006, + "loss": 3.5015270709991455, + "step": 4932 + }, + { + "epoch": 68.51725644386195, + "grad_norm": 0.21718725562095642, + "learning_rate": 0.0006, + "loss": 3.533599853515625, + "step": 4933 + }, + { + "epoch": 68.53123634775011, + "grad_norm": 0.22977295517921448, + "learning_rate": 0.0006, + "loss": 3.507884979248047, + "step": 4934 + }, + { + "epoch": 68.54521625163827, + "grad_norm": 0.230342298746109, + "learning_rate": 0.0006, + "loss": 3.497065544128418, + "step": 4935 + }, + { + "epoch": 68.55919615552644, + "grad_norm": 0.2253657728433609, + "learning_rate": 0.0006, + "loss": 3.5066728591918945, + "step": 4936 + }, + { + "epoch": 68.57317605941459, + "grad_norm": 0.23173992335796356, + "learning_rate": 0.0006, + "loss": 3.5072999000549316, + "step": 4937 + }, + { + "epoch": 68.58715596330275, + "grad_norm": 0.22984914481639862, + "learning_rate": 0.0006, + "loss": 3.5296144485473633, + "step": 4938 + }, + { + "epoch": 68.60113586719092, + "grad_norm": 0.2349584549665451, + "learning_rate": 0.0006, + "loss": 3.5185141563415527, + "step": 4939 + }, + { + "epoch": 68.61511577107908, + "grad_norm": 0.2469010204076767, + "learning_rate": 0.0006, + "loss": 3.545579433441162, + "step": 4940 + }, + { + "epoch": 68.62909567496723, + "grad_norm": 0.23078389465808868, + "learning_rate": 0.0006, + "loss": 3.5281553268432617, + "step": 4941 + }, + { + "epoch": 68.6430755788554, + "grad_norm": 0.23545116186141968, + "learning_rate": 0.0006, + "loss": 3.5376791954040527, + "step": 4942 + }, + { + "epoch": 68.65705548274356, + "grad_norm": 0.22288277745246887, + "learning_rate": 0.0006, + "loss": 3.490978240966797, + "step": 4943 + }, + { + "epoch": 68.67103538663171, + "grad_norm": 0.21703778207302094, + "learning_rate": 0.0006, + "loss": 3.505856513977051, + "step": 4944 + }, + { + "epoch": 68.68501529051987, + "grad_norm": 0.24922960996627808, + "learning_rate": 0.0006, + "loss": 3.5120937824249268, + "step": 4945 + }, + { + "epoch": 68.69899519440804, + "grad_norm": 0.24075160920619965, + "learning_rate": 0.0006, + "loss": 3.515216588973999, + "step": 4946 + }, + { + "epoch": 68.7129750982962, + "grad_norm": 0.21714574098587036, + "learning_rate": 0.0006, + "loss": 3.5308592319488525, + "step": 4947 + }, + { + "epoch": 68.72695500218435, + "grad_norm": 0.21521902084350586, + "learning_rate": 0.0006, + "loss": 3.5040221214294434, + "step": 4948 + }, + { + "epoch": 68.74093490607252, + "grad_norm": 0.2078350931406021, + "learning_rate": 0.0006, + "loss": 3.5399329662323, + "step": 4949 + }, + { + "epoch": 68.75491480996068, + "grad_norm": 0.23039595782756805, + "learning_rate": 0.0006, + "loss": 3.5079939365386963, + "step": 4950 + }, + { + "epoch": 68.76889471384884, + "grad_norm": 0.23072801530361176, + "learning_rate": 0.0006, + "loss": 3.5254414081573486, + "step": 4951 + }, + { + "epoch": 68.78287461773701, + "grad_norm": 0.204904243350029, + "learning_rate": 0.0006, + "loss": 3.5212371349334717, + "step": 4952 + }, + { + "epoch": 68.79685452162516, + "grad_norm": 0.21405813097953796, + "learning_rate": 0.0006, + "loss": 3.557215690612793, + "step": 4953 + }, + { + "epoch": 68.81083442551332, + "grad_norm": 0.2332632839679718, + "learning_rate": 0.0006, + "loss": 3.522718906402588, + "step": 4954 + }, + { + "epoch": 68.82481432940149, + "grad_norm": 0.2211279273033142, + "learning_rate": 0.0006, + "loss": 3.534191608428955, + "step": 4955 + }, + { + "epoch": 68.83879423328965, + "grad_norm": 0.2153792679309845, + "learning_rate": 0.0006, + "loss": 3.497591018676758, + "step": 4956 + }, + { + "epoch": 68.8527741371778, + "grad_norm": 0.28634506464004517, + "learning_rate": 0.0006, + "loss": 3.5333778858184814, + "step": 4957 + }, + { + "epoch": 68.86675404106597, + "grad_norm": 0.2748981714248657, + "learning_rate": 0.0006, + "loss": 3.533328056335449, + "step": 4958 + }, + { + "epoch": 68.88073394495413, + "grad_norm": 0.22137348353862762, + "learning_rate": 0.0006, + "loss": 3.516744613647461, + "step": 4959 + }, + { + "epoch": 68.89471384884229, + "grad_norm": 0.21476638317108154, + "learning_rate": 0.0006, + "loss": 3.5090954303741455, + "step": 4960 + }, + { + "epoch": 68.90869375273044, + "grad_norm": 0.2204403430223465, + "learning_rate": 0.0006, + "loss": 3.534665107727051, + "step": 4961 + }, + { + "epoch": 68.92267365661861, + "grad_norm": 0.20083564519882202, + "learning_rate": 0.0006, + "loss": 3.5572776794433594, + "step": 4962 + }, + { + "epoch": 68.93665356050677, + "grad_norm": 0.23286207020282745, + "learning_rate": 0.0006, + "loss": 3.5279769897460938, + "step": 4963 + }, + { + "epoch": 68.95063346439493, + "grad_norm": 0.2934340536594391, + "learning_rate": 0.0006, + "loss": 3.5299172401428223, + "step": 4964 + }, + { + "epoch": 68.9646133682831, + "grad_norm": 0.29742664098739624, + "learning_rate": 0.0006, + "loss": 3.5258350372314453, + "step": 4965 + }, + { + "epoch": 68.97859327217125, + "grad_norm": 0.23674239218235016, + "learning_rate": 0.0006, + "loss": 3.511875629425049, + "step": 4966 + }, + { + "epoch": 68.99257317605941, + "grad_norm": 0.1859714239835739, + "learning_rate": 0.0006, + "loss": 3.5111045837402344, + "step": 4967 + }, + { + "epoch": 69.0, + "grad_norm": 0.21548990905284882, + "learning_rate": 0.0006, + "loss": 3.567469358444214, + "step": 4968 + }, + { + "epoch": 69.0, + "eval_loss": 3.987680673599243, + "eval_runtime": 44.8193, + "eval_samples_per_second": 54.485, + "eval_steps_per_second": 3.414, + "step": 4968 + }, + { + "epoch": 69.01397990388816, + "grad_norm": 0.25460419058799744, + "learning_rate": 0.0006, + "loss": 3.513350009918213, + "step": 4969 + }, + { + "epoch": 69.02795980777633, + "grad_norm": 0.2635819613933563, + "learning_rate": 0.0006, + "loss": 3.516538143157959, + "step": 4970 + }, + { + "epoch": 69.04193971166448, + "grad_norm": 0.25024983286857605, + "learning_rate": 0.0006, + "loss": 3.501711845397949, + "step": 4971 + }, + { + "epoch": 69.05591961555264, + "grad_norm": 0.23533429205417633, + "learning_rate": 0.0006, + "loss": 3.4735984802246094, + "step": 4972 + }, + { + "epoch": 69.06989951944081, + "grad_norm": 0.23477932810783386, + "learning_rate": 0.0006, + "loss": 3.532632827758789, + "step": 4973 + }, + { + "epoch": 69.08387942332897, + "grad_norm": 0.23769758641719818, + "learning_rate": 0.0006, + "loss": 3.4775495529174805, + "step": 4974 + }, + { + "epoch": 69.09785932721712, + "grad_norm": 0.24599312245845795, + "learning_rate": 0.0006, + "loss": 3.481222629547119, + "step": 4975 + }, + { + "epoch": 69.1118392311053, + "grad_norm": 0.24212618172168732, + "learning_rate": 0.0006, + "loss": 3.485240936279297, + "step": 4976 + }, + { + "epoch": 69.12581913499345, + "grad_norm": 0.2271437644958496, + "learning_rate": 0.0006, + "loss": 3.476949691772461, + "step": 4977 + }, + { + "epoch": 69.1397990388816, + "grad_norm": 0.2542489469051361, + "learning_rate": 0.0006, + "loss": 3.4601399898529053, + "step": 4978 + }, + { + "epoch": 69.15377894276976, + "grad_norm": 0.24926388263702393, + "learning_rate": 0.0006, + "loss": 3.4832189083099365, + "step": 4979 + }, + { + "epoch": 69.16775884665793, + "grad_norm": 0.22356736660003662, + "learning_rate": 0.0006, + "loss": 3.5187554359436035, + "step": 4980 + }, + { + "epoch": 69.18173875054609, + "grad_norm": 0.21727295219898224, + "learning_rate": 0.0006, + "loss": 3.5310418605804443, + "step": 4981 + }, + { + "epoch": 69.19571865443424, + "grad_norm": 0.22234170138835907, + "learning_rate": 0.0006, + "loss": 3.506479263305664, + "step": 4982 + }, + { + "epoch": 69.20969855832242, + "grad_norm": 0.21620802581310272, + "learning_rate": 0.0006, + "loss": 3.488720655441284, + "step": 4983 + }, + { + "epoch": 69.22367846221057, + "grad_norm": 0.23558273911476135, + "learning_rate": 0.0006, + "loss": 3.4884839057922363, + "step": 4984 + }, + { + "epoch": 69.23765836609873, + "grad_norm": 0.2330513894557953, + "learning_rate": 0.0006, + "loss": 3.4810781478881836, + "step": 4985 + }, + { + "epoch": 69.2516382699869, + "grad_norm": 0.23570097982883453, + "learning_rate": 0.0006, + "loss": 3.4966390132904053, + "step": 4986 + }, + { + "epoch": 69.26561817387505, + "grad_norm": 0.2415456771850586, + "learning_rate": 0.0006, + "loss": 3.499464511871338, + "step": 4987 + }, + { + "epoch": 69.27959807776321, + "grad_norm": 0.22498410940170288, + "learning_rate": 0.0006, + "loss": 3.494260311126709, + "step": 4988 + }, + { + "epoch": 69.29357798165138, + "grad_norm": 0.23802009224891663, + "learning_rate": 0.0006, + "loss": 3.4801578521728516, + "step": 4989 + }, + { + "epoch": 69.30755788553954, + "grad_norm": 0.24189673364162445, + "learning_rate": 0.0006, + "loss": 3.513599395751953, + "step": 4990 + }, + { + "epoch": 69.3215377894277, + "grad_norm": 0.21577486395835876, + "learning_rate": 0.0006, + "loss": 3.493995428085327, + "step": 4991 + }, + { + "epoch": 69.33551769331586, + "grad_norm": 0.21220745146274567, + "learning_rate": 0.0006, + "loss": 3.495041847229004, + "step": 4992 + }, + { + "epoch": 69.34949759720402, + "grad_norm": 0.248879075050354, + "learning_rate": 0.0006, + "loss": 3.5003933906555176, + "step": 4993 + }, + { + "epoch": 69.36347750109218, + "grad_norm": 0.26753994822502136, + "learning_rate": 0.0006, + "loss": 3.491333484649658, + "step": 4994 + }, + { + "epoch": 69.37745740498035, + "grad_norm": 0.24140691757202148, + "learning_rate": 0.0006, + "loss": 3.495715618133545, + "step": 4995 + }, + { + "epoch": 69.3914373088685, + "grad_norm": 0.20997264981269836, + "learning_rate": 0.0006, + "loss": 3.520455837249756, + "step": 4996 + }, + { + "epoch": 69.40541721275666, + "grad_norm": 0.21708904206752777, + "learning_rate": 0.0006, + "loss": 3.4696202278137207, + "step": 4997 + }, + { + "epoch": 69.41939711664482, + "grad_norm": 0.25731977820396423, + "learning_rate": 0.0006, + "loss": 3.4827113151550293, + "step": 4998 + }, + { + "epoch": 69.43337702053299, + "grad_norm": 0.24132139980793, + "learning_rate": 0.0006, + "loss": 3.5224547386169434, + "step": 4999 + }, + { + "epoch": 69.44735692442114, + "grad_norm": 0.21150226891040802, + "learning_rate": 0.0006, + "loss": 3.4872965812683105, + "step": 5000 + }, + { + "epoch": 69.4613368283093, + "grad_norm": 0.20874962210655212, + "learning_rate": 0.0006, + "loss": 3.477656364440918, + "step": 5001 + }, + { + "epoch": 69.47531673219747, + "grad_norm": 0.20523078739643097, + "learning_rate": 0.0006, + "loss": 3.4912261962890625, + "step": 5002 + }, + { + "epoch": 69.48929663608563, + "grad_norm": 0.20590092241764069, + "learning_rate": 0.0006, + "loss": 3.5227253437042236, + "step": 5003 + }, + { + "epoch": 69.50327653997378, + "grad_norm": 0.21837440133094788, + "learning_rate": 0.0006, + "loss": 3.514094591140747, + "step": 5004 + }, + { + "epoch": 69.51725644386195, + "grad_norm": 0.23487630486488342, + "learning_rate": 0.0006, + "loss": 3.517775535583496, + "step": 5005 + }, + { + "epoch": 69.53123634775011, + "grad_norm": 0.23771126568317413, + "learning_rate": 0.0006, + "loss": 3.5164601802825928, + "step": 5006 + }, + { + "epoch": 69.54521625163827, + "grad_norm": 0.23423148691654205, + "learning_rate": 0.0006, + "loss": 3.5120983123779297, + "step": 5007 + }, + { + "epoch": 69.55919615552644, + "grad_norm": 0.2332620471715927, + "learning_rate": 0.0006, + "loss": 3.5184125900268555, + "step": 5008 + }, + { + "epoch": 69.57317605941459, + "grad_norm": 0.24148650467395782, + "learning_rate": 0.0006, + "loss": 3.509979248046875, + "step": 5009 + }, + { + "epoch": 69.58715596330275, + "grad_norm": 0.20881295204162598, + "learning_rate": 0.0006, + "loss": 3.5542125701904297, + "step": 5010 + }, + { + "epoch": 69.60113586719092, + "grad_norm": 0.21871483325958252, + "learning_rate": 0.0006, + "loss": 3.5178754329681396, + "step": 5011 + }, + { + "epoch": 69.61511577107908, + "grad_norm": 0.21630224585533142, + "learning_rate": 0.0006, + "loss": 3.5215046405792236, + "step": 5012 + }, + { + "epoch": 69.62909567496723, + "grad_norm": 0.2211679369211197, + "learning_rate": 0.0006, + "loss": 3.5213570594787598, + "step": 5013 + }, + { + "epoch": 69.6430755788554, + "grad_norm": 0.2206520140171051, + "learning_rate": 0.0006, + "loss": 3.5378212928771973, + "step": 5014 + }, + { + "epoch": 69.65705548274356, + "grad_norm": 0.21500450372695923, + "learning_rate": 0.0006, + "loss": 3.536560535430908, + "step": 5015 + }, + { + "epoch": 69.67103538663171, + "grad_norm": 0.2839236855506897, + "learning_rate": 0.0006, + "loss": 3.4911935329437256, + "step": 5016 + }, + { + "epoch": 69.68501529051987, + "grad_norm": 0.28307443857192993, + "learning_rate": 0.0006, + "loss": 3.5304269790649414, + "step": 5017 + }, + { + "epoch": 69.69899519440804, + "grad_norm": 0.20590558648109436, + "learning_rate": 0.0006, + "loss": 3.505474328994751, + "step": 5018 + }, + { + "epoch": 69.7129750982962, + "grad_norm": 0.24152527749538422, + "learning_rate": 0.0006, + "loss": 3.501438617706299, + "step": 5019 + }, + { + "epoch": 69.72695500218435, + "grad_norm": 0.21834975481033325, + "learning_rate": 0.0006, + "loss": 3.515756130218506, + "step": 5020 + }, + { + "epoch": 69.74093490607252, + "grad_norm": 0.2066304087638855, + "learning_rate": 0.0006, + "loss": 3.507535457611084, + "step": 5021 + }, + { + "epoch": 69.75491480996068, + "grad_norm": 0.2547939419746399, + "learning_rate": 0.0006, + "loss": 3.512665033340454, + "step": 5022 + }, + { + "epoch": 69.76889471384884, + "grad_norm": 0.25813716650009155, + "learning_rate": 0.0006, + "loss": 3.517632484436035, + "step": 5023 + }, + { + "epoch": 69.78287461773701, + "grad_norm": 0.223160520195961, + "learning_rate": 0.0006, + "loss": 3.5371553897857666, + "step": 5024 + }, + { + "epoch": 69.79685452162516, + "grad_norm": 0.2616842985153198, + "learning_rate": 0.0006, + "loss": 3.519502639770508, + "step": 5025 + }, + { + "epoch": 69.81083442551332, + "grad_norm": 0.2976956367492676, + "learning_rate": 0.0006, + "loss": 3.521639108657837, + "step": 5026 + }, + { + "epoch": 69.82481432940149, + "grad_norm": 0.253215491771698, + "learning_rate": 0.0006, + "loss": 3.5242714881896973, + "step": 5027 + }, + { + "epoch": 69.83879423328965, + "grad_norm": 0.2184867113828659, + "learning_rate": 0.0006, + "loss": 3.5430054664611816, + "step": 5028 + }, + { + "epoch": 69.8527741371778, + "grad_norm": 0.2110685110092163, + "learning_rate": 0.0006, + "loss": 3.518589735031128, + "step": 5029 + }, + { + "epoch": 69.86675404106597, + "grad_norm": 0.20499959588050842, + "learning_rate": 0.0006, + "loss": 3.5182108879089355, + "step": 5030 + }, + { + "epoch": 69.88073394495413, + "grad_norm": 0.21809129416942596, + "learning_rate": 0.0006, + "loss": 3.52005672454834, + "step": 5031 + }, + { + "epoch": 69.89471384884229, + "grad_norm": 0.22639480233192444, + "learning_rate": 0.0006, + "loss": 3.5405101776123047, + "step": 5032 + }, + { + "epoch": 69.90869375273044, + "grad_norm": 0.23321937024593353, + "learning_rate": 0.0006, + "loss": 3.5433502197265625, + "step": 5033 + }, + { + "epoch": 69.92267365661861, + "grad_norm": 0.22899670898914337, + "learning_rate": 0.0006, + "loss": 3.5300326347351074, + "step": 5034 + }, + { + "epoch": 69.93665356050677, + "grad_norm": 0.20367449522018433, + "learning_rate": 0.0006, + "loss": 3.5184967517852783, + "step": 5035 + }, + { + "epoch": 69.95063346439493, + "grad_norm": 0.21195004880428314, + "learning_rate": 0.0006, + "loss": 3.518951416015625, + "step": 5036 + }, + { + "epoch": 69.9646133682831, + "grad_norm": 0.23766686022281647, + "learning_rate": 0.0006, + "loss": 3.5148468017578125, + "step": 5037 + }, + { + "epoch": 69.97859327217125, + "grad_norm": 0.2558269500732422, + "learning_rate": 0.0006, + "loss": 3.5006861686706543, + "step": 5038 + }, + { + "epoch": 69.99257317605941, + "grad_norm": 0.23287998139858246, + "learning_rate": 0.0006, + "loss": 3.533900260925293, + "step": 5039 + }, + { + "epoch": 70.0, + "grad_norm": 0.24295051395893097, + "learning_rate": 0.0006, + "loss": 3.539205551147461, + "step": 5040 + }, + { + "epoch": 70.0, + "eval_loss": 3.9832167625427246, + "eval_runtime": 44.8557, + "eval_samples_per_second": 54.441, + "eval_steps_per_second": 3.411, + "step": 5040 + }, + { + "epoch": 70.01397990388816, + "grad_norm": 0.2342662364244461, + "learning_rate": 0.0006, + "loss": 3.4744529724121094, + "step": 5041 + }, + { + "epoch": 70.02795980777633, + "grad_norm": 0.24356921017169952, + "learning_rate": 0.0006, + "loss": 3.4678807258605957, + "step": 5042 + }, + { + "epoch": 70.04193971166448, + "grad_norm": 0.23141354322433472, + "learning_rate": 0.0006, + "loss": 3.4766411781311035, + "step": 5043 + }, + { + "epoch": 70.05591961555264, + "grad_norm": 0.2291923612356186, + "learning_rate": 0.0006, + "loss": 3.520775318145752, + "step": 5044 + }, + { + "epoch": 70.06989951944081, + "grad_norm": 0.24368838965892792, + "learning_rate": 0.0006, + "loss": 3.498244285583496, + "step": 5045 + }, + { + "epoch": 70.08387942332897, + "grad_norm": 0.24241037666797638, + "learning_rate": 0.0006, + "loss": 3.5297322273254395, + "step": 5046 + }, + { + "epoch": 70.09785932721712, + "grad_norm": 0.23169396817684174, + "learning_rate": 0.0006, + "loss": 3.4835686683654785, + "step": 5047 + }, + { + "epoch": 70.1118392311053, + "grad_norm": 0.21968135237693787, + "learning_rate": 0.0006, + "loss": 3.4419684410095215, + "step": 5048 + }, + { + "epoch": 70.12581913499345, + "grad_norm": 0.22738288342952728, + "learning_rate": 0.0006, + "loss": 3.4862613677978516, + "step": 5049 + }, + { + "epoch": 70.1397990388816, + "grad_norm": 0.2366214394569397, + "learning_rate": 0.0006, + "loss": 3.4799740314483643, + "step": 5050 + }, + { + "epoch": 70.15377894276976, + "grad_norm": 0.2310013324022293, + "learning_rate": 0.0006, + "loss": 3.491863250732422, + "step": 5051 + }, + { + "epoch": 70.16775884665793, + "grad_norm": 0.22765891253948212, + "learning_rate": 0.0006, + "loss": 3.4830703735351562, + "step": 5052 + }, + { + "epoch": 70.18173875054609, + "grad_norm": 0.23263567686080933, + "learning_rate": 0.0006, + "loss": 3.4692440032958984, + "step": 5053 + }, + { + "epoch": 70.19571865443424, + "grad_norm": 0.22552041709423065, + "learning_rate": 0.0006, + "loss": 3.4950807094573975, + "step": 5054 + }, + { + "epoch": 70.20969855832242, + "grad_norm": 0.2157282680273056, + "learning_rate": 0.0006, + "loss": 3.501680374145508, + "step": 5055 + }, + { + "epoch": 70.22367846221057, + "grad_norm": 0.2158394753932953, + "learning_rate": 0.0006, + "loss": 3.4894015789031982, + "step": 5056 + }, + { + "epoch": 70.23765836609873, + "grad_norm": 0.22618336975574493, + "learning_rate": 0.0006, + "loss": 3.479133129119873, + "step": 5057 + }, + { + "epoch": 70.2516382699869, + "grad_norm": 0.23803631961345673, + "learning_rate": 0.0006, + "loss": 3.4984683990478516, + "step": 5058 + }, + { + "epoch": 70.26561817387505, + "grad_norm": 0.23439951241016388, + "learning_rate": 0.0006, + "loss": 3.503323554992676, + "step": 5059 + }, + { + "epoch": 70.27959807776321, + "grad_norm": 0.23607788980007172, + "learning_rate": 0.0006, + "loss": 3.5056004524230957, + "step": 5060 + }, + { + "epoch": 70.29357798165138, + "grad_norm": 0.22633908689022064, + "learning_rate": 0.0006, + "loss": 3.5278968811035156, + "step": 5061 + }, + { + "epoch": 70.30755788553954, + "grad_norm": 0.21656733751296997, + "learning_rate": 0.0006, + "loss": 3.5163440704345703, + "step": 5062 + }, + { + "epoch": 70.3215377894277, + "grad_norm": 0.19461899995803833, + "learning_rate": 0.0006, + "loss": 3.506269931793213, + "step": 5063 + }, + { + "epoch": 70.33551769331586, + "grad_norm": 0.22591930627822876, + "learning_rate": 0.0006, + "loss": 3.51469087600708, + "step": 5064 + }, + { + "epoch": 70.34949759720402, + "grad_norm": 0.23841705918312073, + "learning_rate": 0.0006, + "loss": 3.4775524139404297, + "step": 5065 + }, + { + "epoch": 70.36347750109218, + "grad_norm": 0.24957220256328583, + "learning_rate": 0.0006, + "loss": 3.5303030014038086, + "step": 5066 + }, + { + "epoch": 70.37745740498035, + "grad_norm": 0.2574119567871094, + "learning_rate": 0.0006, + "loss": 3.524887800216675, + "step": 5067 + }, + { + "epoch": 70.3914373088685, + "grad_norm": 0.23704029619693756, + "learning_rate": 0.0006, + "loss": 3.5258219242095947, + "step": 5068 + }, + { + "epoch": 70.40541721275666, + "grad_norm": 0.221607968211174, + "learning_rate": 0.0006, + "loss": 3.5022010803222656, + "step": 5069 + }, + { + "epoch": 70.41939711664482, + "grad_norm": 0.2071426510810852, + "learning_rate": 0.0006, + "loss": 3.499718189239502, + "step": 5070 + }, + { + "epoch": 70.43337702053299, + "grad_norm": 0.2146281599998474, + "learning_rate": 0.0006, + "loss": 3.495534896850586, + "step": 5071 + }, + { + "epoch": 70.44735692442114, + "grad_norm": 0.21276946365833282, + "learning_rate": 0.0006, + "loss": 3.5138864517211914, + "step": 5072 + }, + { + "epoch": 70.4613368283093, + "grad_norm": 0.21113698184490204, + "learning_rate": 0.0006, + "loss": 3.531108856201172, + "step": 5073 + }, + { + "epoch": 70.47531673219747, + "grad_norm": 0.233713299036026, + "learning_rate": 0.0006, + "loss": 3.499675750732422, + "step": 5074 + }, + { + "epoch": 70.48929663608563, + "grad_norm": 0.2445792704820633, + "learning_rate": 0.0006, + "loss": 3.489576816558838, + "step": 5075 + }, + { + "epoch": 70.50327653997378, + "grad_norm": 0.22929179668426514, + "learning_rate": 0.0006, + "loss": 3.511636257171631, + "step": 5076 + }, + { + "epoch": 70.51725644386195, + "grad_norm": 0.21347999572753906, + "learning_rate": 0.0006, + "loss": 3.482804536819458, + "step": 5077 + }, + { + "epoch": 70.53123634775011, + "grad_norm": 0.21338650584220886, + "learning_rate": 0.0006, + "loss": 3.4532628059387207, + "step": 5078 + }, + { + "epoch": 70.54521625163827, + "grad_norm": 0.24062009155750275, + "learning_rate": 0.0006, + "loss": 3.5084481239318848, + "step": 5079 + }, + { + "epoch": 70.55919615552644, + "grad_norm": 0.2101839929819107, + "learning_rate": 0.0006, + "loss": 3.5022215843200684, + "step": 5080 + }, + { + "epoch": 70.57317605941459, + "grad_norm": 0.21427087485790253, + "learning_rate": 0.0006, + "loss": 3.468010902404785, + "step": 5081 + }, + { + "epoch": 70.58715596330275, + "grad_norm": 0.21073004603385925, + "learning_rate": 0.0006, + "loss": 3.53702974319458, + "step": 5082 + }, + { + "epoch": 70.60113586719092, + "grad_norm": 0.2176336646080017, + "learning_rate": 0.0006, + "loss": 3.4857382774353027, + "step": 5083 + }, + { + "epoch": 70.61511577107908, + "grad_norm": 0.24387815594673157, + "learning_rate": 0.0006, + "loss": 3.5301153659820557, + "step": 5084 + }, + { + "epoch": 70.62909567496723, + "grad_norm": 0.2560335397720337, + "learning_rate": 0.0006, + "loss": 3.4792633056640625, + "step": 5085 + }, + { + "epoch": 70.6430755788554, + "grad_norm": 0.24951279163360596, + "learning_rate": 0.0006, + "loss": 3.5134525299072266, + "step": 5086 + }, + { + "epoch": 70.65705548274356, + "grad_norm": 0.23483215272426605, + "learning_rate": 0.0006, + "loss": 3.5170576572418213, + "step": 5087 + }, + { + "epoch": 70.67103538663171, + "grad_norm": 0.21526923775672913, + "learning_rate": 0.0006, + "loss": 3.4973630905151367, + "step": 5088 + }, + { + "epoch": 70.68501529051987, + "grad_norm": 0.2129240781068802, + "learning_rate": 0.0006, + "loss": 3.5371346473693848, + "step": 5089 + }, + { + "epoch": 70.69899519440804, + "grad_norm": 0.22548805177211761, + "learning_rate": 0.0006, + "loss": 3.509589195251465, + "step": 5090 + }, + { + "epoch": 70.7129750982962, + "grad_norm": 0.21366626024246216, + "learning_rate": 0.0006, + "loss": 3.5004022121429443, + "step": 5091 + }, + { + "epoch": 70.72695500218435, + "grad_norm": 0.2066943347454071, + "learning_rate": 0.0006, + "loss": 3.5086469650268555, + "step": 5092 + }, + { + "epoch": 70.74093490607252, + "grad_norm": 0.20916718244552612, + "learning_rate": 0.0006, + "loss": 3.508835554122925, + "step": 5093 + }, + { + "epoch": 70.75491480996068, + "grad_norm": 0.21769332885742188, + "learning_rate": 0.0006, + "loss": 3.470569372177124, + "step": 5094 + }, + { + "epoch": 70.76889471384884, + "grad_norm": 0.2393418401479721, + "learning_rate": 0.0006, + "loss": 3.5554609298706055, + "step": 5095 + }, + { + "epoch": 70.78287461773701, + "grad_norm": 0.22856567800045013, + "learning_rate": 0.0006, + "loss": 3.5240354537963867, + "step": 5096 + }, + { + "epoch": 70.79685452162516, + "grad_norm": 0.2168598771095276, + "learning_rate": 0.0006, + "loss": 3.5223824977874756, + "step": 5097 + }, + { + "epoch": 70.81083442551332, + "grad_norm": 0.23636406660079956, + "learning_rate": 0.0006, + "loss": 3.515028953552246, + "step": 5098 + }, + { + "epoch": 70.82481432940149, + "grad_norm": 0.25196272134780884, + "learning_rate": 0.0006, + "loss": 3.5251357555389404, + "step": 5099 + }, + { + "epoch": 70.83879423328965, + "grad_norm": 0.2760903239250183, + "learning_rate": 0.0006, + "loss": 3.5171520709991455, + "step": 5100 + }, + { + "epoch": 70.8527741371778, + "grad_norm": 0.24275866150856018, + "learning_rate": 0.0006, + "loss": 3.515378713607788, + "step": 5101 + }, + { + "epoch": 70.86675404106597, + "grad_norm": 0.20806105434894562, + "learning_rate": 0.0006, + "loss": 3.5539910793304443, + "step": 5102 + }, + { + "epoch": 70.88073394495413, + "grad_norm": 0.22015595436096191, + "learning_rate": 0.0006, + "loss": 3.5204410552978516, + "step": 5103 + }, + { + "epoch": 70.89471384884229, + "grad_norm": 0.2634579837322235, + "learning_rate": 0.0006, + "loss": 3.531816005706787, + "step": 5104 + }, + { + "epoch": 70.90869375273044, + "grad_norm": 0.2532503008842468, + "learning_rate": 0.0006, + "loss": 3.494335174560547, + "step": 5105 + }, + { + "epoch": 70.92267365661861, + "grad_norm": 0.21336589753627777, + "learning_rate": 0.0006, + "loss": 3.527202606201172, + "step": 5106 + }, + { + "epoch": 70.93665356050677, + "grad_norm": 0.20789426565170288, + "learning_rate": 0.0006, + "loss": 3.516286849975586, + "step": 5107 + }, + { + "epoch": 70.95063346439493, + "grad_norm": 0.21855080127716064, + "learning_rate": 0.0006, + "loss": 3.510622978210449, + "step": 5108 + }, + { + "epoch": 70.9646133682831, + "grad_norm": 0.21742936968803406, + "learning_rate": 0.0006, + "loss": 3.5159173011779785, + "step": 5109 + }, + { + "epoch": 70.97859327217125, + "grad_norm": 0.21697010099887848, + "learning_rate": 0.0006, + "loss": 3.5253071784973145, + "step": 5110 + }, + { + "epoch": 70.99257317605941, + "grad_norm": 0.1939983069896698, + "learning_rate": 0.0006, + "loss": 3.5092079639434814, + "step": 5111 + }, + { + "epoch": 71.0, + "grad_norm": 0.21768872439861298, + "learning_rate": 0.0006, + "loss": 3.549747943878174, + "step": 5112 + }, + { + "epoch": 71.0, + "eval_loss": 3.981994867324829, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 5112 + }, + { + "epoch": 71.01397990388816, + "grad_norm": 0.20411916077136993, + "learning_rate": 0.0006, + "loss": 3.4846625328063965, + "step": 5113 + }, + { + "epoch": 71.02795980777633, + "grad_norm": 0.23582075536251068, + "learning_rate": 0.0006, + "loss": 3.5063037872314453, + "step": 5114 + }, + { + "epoch": 71.04193971166448, + "grad_norm": 0.25915080308914185, + "learning_rate": 0.0006, + "loss": 3.487607955932617, + "step": 5115 + }, + { + "epoch": 71.05591961555264, + "grad_norm": 0.279734343290329, + "learning_rate": 0.0006, + "loss": 3.4697108268737793, + "step": 5116 + }, + { + "epoch": 71.06989951944081, + "grad_norm": 0.2628752589225769, + "learning_rate": 0.0006, + "loss": 3.493368625640869, + "step": 5117 + }, + { + "epoch": 71.08387942332897, + "grad_norm": 0.22309084236621857, + "learning_rate": 0.0006, + "loss": 3.484891891479492, + "step": 5118 + }, + { + "epoch": 71.09785932721712, + "grad_norm": 0.302577406167984, + "learning_rate": 0.0006, + "loss": 3.485151767730713, + "step": 5119 + }, + { + "epoch": 71.1118392311053, + "grad_norm": 0.37276333570480347, + "learning_rate": 0.0006, + "loss": 3.4952797889709473, + "step": 5120 + }, + { + "epoch": 71.12581913499345, + "grad_norm": 0.3283502757549286, + "learning_rate": 0.0006, + "loss": 3.4817187786102295, + "step": 5121 + }, + { + "epoch": 71.1397990388816, + "grad_norm": 0.2639681398868561, + "learning_rate": 0.0006, + "loss": 3.488034248352051, + "step": 5122 + }, + { + "epoch": 71.15377894276976, + "grad_norm": 0.23883986473083496, + "learning_rate": 0.0006, + "loss": 3.4839282035827637, + "step": 5123 + }, + { + "epoch": 71.16775884665793, + "grad_norm": 0.25839197635650635, + "learning_rate": 0.0006, + "loss": 3.4969372749328613, + "step": 5124 + }, + { + "epoch": 71.18173875054609, + "grad_norm": 0.2511022090911865, + "learning_rate": 0.0006, + "loss": 3.4977002143859863, + "step": 5125 + }, + { + "epoch": 71.19571865443424, + "grad_norm": 0.23030386865139008, + "learning_rate": 0.0006, + "loss": 3.499420404434204, + "step": 5126 + }, + { + "epoch": 71.20969855832242, + "grad_norm": 0.26834407448768616, + "learning_rate": 0.0006, + "loss": 3.492626190185547, + "step": 5127 + }, + { + "epoch": 71.22367846221057, + "grad_norm": 0.25042101740837097, + "learning_rate": 0.0006, + "loss": 3.50586199760437, + "step": 5128 + }, + { + "epoch": 71.23765836609873, + "grad_norm": 0.23350484669208527, + "learning_rate": 0.0006, + "loss": 3.4870376586914062, + "step": 5129 + }, + { + "epoch": 71.2516382699869, + "grad_norm": 0.26074114441871643, + "learning_rate": 0.0006, + "loss": 3.4873902797698975, + "step": 5130 + }, + { + "epoch": 71.26561817387505, + "grad_norm": 0.23405839502811432, + "learning_rate": 0.0006, + "loss": 3.477447032928467, + "step": 5131 + }, + { + "epoch": 71.27959807776321, + "grad_norm": 0.22196513414382935, + "learning_rate": 0.0006, + "loss": 3.513475179672241, + "step": 5132 + }, + { + "epoch": 71.29357798165138, + "grad_norm": 0.21518723666667938, + "learning_rate": 0.0006, + "loss": 3.4947776794433594, + "step": 5133 + }, + { + "epoch": 71.30755788553954, + "grad_norm": 0.2067832201719284, + "learning_rate": 0.0006, + "loss": 3.4992613792419434, + "step": 5134 + }, + { + "epoch": 71.3215377894277, + "grad_norm": 0.2346884161233902, + "learning_rate": 0.0006, + "loss": 3.510505437850952, + "step": 5135 + }, + { + "epoch": 71.33551769331586, + "grad_norm": 0.21138189733028412, + "learning_rate": 0.0006, + "loss": 3.4731202125549316, + "step": 5136 + }, + { + "epoch": 71.34949759720402, + "grad_norm": 0.21185064315795898, + "learning_rate": 0.0006, + "loss": 3.5232839584350586, + "step": 5137 + }, + { + "epoch": 71.36347750109218, + "grad_norm": 0.25712820887565613, + "learning_rate": 0.0006, + "loss": 3.46025013923645, + "step": 5138 + }, + { + "epoch": 71.37745740498035, + "grad_norm": 0.21276356279850006, + "learning_rate": 0.0006, + "loss": 3.489804983139038, + "step": 5139 + }, + { + "epoch": 71.3914373088685, + "grad_norm": 0.2022353708744049, + "learning_rate": 0.0006, + "loss": 3.504286289215088, + "step": 5140 + }, + { + "epoch": 71.40541721275666, + "grad_norm": 0.21934957802295685, + "learning_rate": 0.0006, + "loss": 3.517760753631592, + "step": 5141 + }, + { + "epoch": 71.41939711664482, + "grad_norm": 0.2196030169725418, + "learning_rate": 0.0006, + "loss": 3.5004754066467285, + "step": 5142 + }, + { + "epoch": 71.43337702053299, + "grad_norm": 0.2015426605939865, + "learning_rate": 0.0006, + "loss": 3.465399980545044, + "step": 5143 + }, + { + "epoch": 71.44735692442114, + "grad_norm": 0.20420803129673004, + "learning_rate": 0.0006, + "loss": 3.4855151176452637, + "step": 5144 + }, + { + "epoch": 71.4613368283093, + "grad_norm": 0.20710550248622894, + "learning_rate": 0.0006, + "loss": 3.479557514190674, + "step": 5145 + }, + { + "epoch": 71.47531673219747, + "grad_norm": 0.21790869534015656, + "learning_rate": 0.0006, + "loss": 3.478614330291748, + "step": 5146 + }, + { + "epoch": 71.48929663608563, + "grad_norm": 0.2018311470746994, + "learning_rate": 0.0006, + "loss": 3.488673448562622, + "step": 5147 + }, + { + "epoch": 71.50327653997378, + "grad_norm": 0.21153512597084045, + "learning_rate": 0.0006, + "loss": 3.5044631958007812, + "step": 5148 + }, + { + "epoch": 71.51725644386195, + "grad_norm": 0.21591797471046448, + "learning_rate": 0.0006, + "loss": 3.522662401199341, + "step": 5149 + }, + { + "epoch": 71.53123634775011, + "grad_norm": 0.20586389303207397, + "learning_rate": 0.0006, + "loss": 3.4791407585144043, + "step": 5150 + }, + { + "epoch": 71.54521625163827, + "grad_norm": 0.2201298475265503, + "learning_rate": 0.0006, + "loss": 3.4494271278381348, + "step": 5151 + }, + { + "epoch": 71.55919615552644, + "grad_norm": 0.22793325781822205, + "learning_rate": 0.0006, + "loss": 3.495795726776123, + "step": 5152 + }, + { + "epoch": 71.57317605941459, + "grad_norm": 0.2414522022008896, + "learning_rate": 0.0006, + "loss": 3.5030856132507324, + "step": 5153 + }, + { + "epoch": 71.58715596330275, + "grad_norm": 0.23775361478328705, + "learning_rate": 0.0006, + "loss": 3.519958972930908, + "step": 5154 + }, + { + "epoch": 71.60113586719092, + "grad_norm": 0.21599332988262177, + "learning_rate": 0.0006, + "loss": 3.518765449523926, + "step": 5155 + }, + { + "epoch": 71.61511577107908, + "grad_norm": 0.19520622491836548, + "learning_rate": 0.0006, + "loss": 3.514953136444092, + "step": 5156 + }, + { + "epoch": 71.62909567496723, + "grad_norm": 0.21063624322414398, + "learning_rate": 0.0006, + "loss": 3.507232189178467, + "step": 5157 + }, + { + "epoch": 71.6430755788554, + "grad_norm": 0.20278486609458923, + "learning_rate": 0.0006, + "loss": 3.5083611011505127, + "step": 5158 + }, + { + "epoch": 71.65705548274356, + "grad_norm": 0.20769764482975006, + "learning_rate": 0.0006, + "loss": 3.5421876907348633, + "step": 5159 + }, + { + "epoch": 71.67103538663171, + "grad_norm": 0.21942169964313507, + "learning_rate": 0.0006, + "loss": 3.511857509613037, + "step": 5160 + }, + { + "epoch": 71.68501529051987, + "grad_norm": 0.21532300114631653, + "learning_rate": 0.0006, + "loss": 3.4975109100341797, + "step": 5161 + }, + { + "epoch": 71.69899519440804, + "grad_norm": 0.20382282137870789, + "learning_rate": 0.0006, + "loss": 3.500424861907959, + "step": 5162 + }, + { + "epoch": 71.7129750982962, + "grad_norm": 0.22072380781173706, + "learning_rate": 0.0006, + "loss": 3.50101900100708, + "step": 5163 + }, + { + "epoch": 71.72695500218435, + "grad_norm": 0.21554681658744812, + "learning_rate": 0.0006, + "loss": 3.528384208679199, + "step": 5164 + }, + { + "epoch": 71.74093490607252, + "grad_norm": 0.22927747666835785, + "learning_rate": 0.0006, + "loss": 3.488309621810913, + "step": 5165 + }, + { + "epoch": 71.75491480996068, + "grad_norm": 0.23190589249134064, + "learning_rate": 0.0006, + "loss": 3.547053337097168, + "step": 5166 + }, + { + "epoch": 71.76889471384884, + "grad_norm": 0.262680321931839, + "learning_rate": 0.0006, + "loss": 3.5154809951782227, + "step": 5167 + }, + { + "epoch": 71.78287461773701, + "grad_norm": 0.29555177688598633, + "learning_rate": 0.0006, + "loss": 3.4969329833984375, + "step": 5168 + }, + { + "epoch": 71.79685452162516, + "grad_norm": 0.26300716400146484, + "learning_rate": 0.0006, + "loss": 3.4716663360595703, + "step": 5169 + }, + { + "epoch": 71.81083442551332, + "grad_norm": 0.21645912528038025, + "learning_rate": 0.0006, + "loss": 3.4847588539123535, + "step": 5170 + }, + { + "epoch": 71.82481432940149, + "grad_norm": 0.21476063132286072, + "learning_rate": 0.0006, + "loss": 3.4949374198913574, + "step": 5171 + }, + { + "epoch": 71.83879423328965, + "grad_norm": 0.26659518480300903, + "learning_rate": 0.0006, + "loss": 3.519371271133423, + "step": 5172 + }, + { + "epoch": 71.8527741371778, + "grad_norm": 0.2567320764064789, + "learning_rate": 0.0006, + "loss": 3.522982120513916, + "step": 5173 + }, + { + "epoch": 71.86675404106597, + "grad_norm": 0.21162307262420654, + "learning_rate": 0.0006, + "loss": 3.489562749862671, + "step": 5174 + }, + { + "epoch": 71.88073394495413, + "grad_norm": 0.22359566390514374, + "learning_rate": 0.0006, + "loss": 3.51139760017395, + "step": 5175 + }, + { + "epoch": 71.89471384884229, + "grad_norm": 0.19192424416542053, + "learning_rate": 0.0006, + "loss": 3.568310260772705, + "step": 5176 + }, + { + "epoch": 71.90869375273044, + "grad_norm": 0.21490535140037537, + "learning_rate": 0.0006, + "loss": 3.52728271484375, + "step": 5177 + }, + { + "epoch": 71.92267365661861, + "grad_norm": 0.21532146632671356, + "learning_rate": 0.0006, + "loss": 3.533647060394287, + "step": 5178 + }, + { + "epoch": 71.93665356050677, + "grad_norm": 0.2047201246023178, + "learning_rate": 0.0006, + "loss": 3.528214931488037, + "step": 5179 + }, + { + "epoch": 71.95063346439493, + "grad_norm": 0.20230898261070251, + "learning_rate": 0.0006, + "loss": 3.530636787414551, + "step": 5180 + }, + { + "epoch": 71.9646133682831, + "grad_norm": 0.1971510648727417, + "learning_rate": 0.0006, + "loss": 3.5658822059631348, + "step": 5181 + }, + { + "epoch": 71.97859327217125, + "grad_norm": 0.21853342652320862, + "learning_rate": 0.0006, + "loss": 3.4901480674743652, + "step": 5182 + }, + { + "epoch": 71.99257317605941, + "grad_norm": 0.2481825053691864, + "learning_rate": 0.0006, + "loss": 3.5149893760681152, + "step": 5183 + }, + { + "epoch": 72.0, + "grad_norm": 0.28394815325737, + "learning_rate": 0.0006, + "loss": 3.5142500400543213, + "step": 5184 + }, + { + "epoch": 72.0, + "eval_loss": 3.9889707565307617, + "eval_runtime": 44.317, + "eval_samples_per_second": 55.103, + "eval_steps_per_second": 3.452, + "step": 5184 + }, + { + "epoch": 72.01397990388816, + "grad_norm": 0.26481005549430847, + "learning_rate": 0.0006, + "loss": 3.46201753616333, + "step": 5185 + }, + { + "epoch": 72.02795980777633, + "grad_norm": 0.25808629393577576, + "learning_rate": 0.0006, + "loss": 3.4581098556518555, + "step": 5186 + }, + { + "epoch": 72.04193971166448, + "grad_norm": 0.25713175535202026, + "learning_rate": 0.0006, + "loss": 3.48715877532959, + "step": 5187 + }, + { + "epoch": 72.05591961555264, + "grad_norm": 0.23583672940731049, + "learning_rate": 0.0006, + "loss": 3.498791217803955, + "step": 5188 + }, + { + "epoch": 72.06989951944081, + "grad_norm": 0.23554176092147827, + "learning_rate": 0.0006, + "loss": 3.4428248405456543, + "step": 5189 + }, + { + "epoch": 72.08387942332897, + "grad_norm": 0.26283830404281616, + "learning_rate": 0.0006, + "loss": 3.4555912017822266, + "step": 5190 + }, + { + "epoch": 72.09785932721712, + "grad_norm": 0.23904164135456085, + "learning_rate": 0.0006, + "loss": 3.447741985321045, + "step": 5191 + }, + { + "epoch": 72.1118392311053, + "grad_norm": 0.2249821275472641, + "learning_rate": 0.0006, + "loss": 3.4523983001708984, + "step": 5192 + }, + { + "epoch": 72.12581913499345, + "grad_norm": 0.22013622522354126, + "learning_rate": 0.0006, + "loss": 3.480325698852539, + "step": 5193 + }, + { + "epoch": 72.1397990388816, + "grad_norm": 0.21792154014110565, + "learning_rate": 0.0006, + "loss": 3.460036277770996, + "step": 5194 + }, + { + "epoch": 72.15377894276976, + "grad_norm": 0.2302364856004715, + "learning_rate": 0.0006, + "loss": 3.4833297729492188, + "step": 5195 + }, + { + "epoch": 72.16775884665793, + "grad_norm": 0.21317389607429504, + "learning_rate": 0.0006, + "loss": 3.5042786598205566, + "step": 5196 + }, + { + "epoch": 72.18173875054609, + "grad_norm": 0.19275978207588196, + "learning_rate": 0.0006, + "loss": 3.5171995162963867, + "step": 5197 + }, + { + "epoch": 72.19571865443424, + "grad_norm": 0.21028508245944977, + "learning_rate": 0.0006, + "loss": 3.457441806793213, + "step": 5198 + }, + { + "epoch": 72.20969855832242, + "grad_norm": 0.1986231505870819, + "learning_rate": 0.0006, + "loss": 3.489072322845459, + "step": 5199 + }, + { + "epoch": 72.22367846221057, + "grad_norm": 0.19699154794216156, + "learning_rate": 0.0006, + "loss": 3.468651533126831, + "step": 5200 + }, + { + "epoch": 72.23765836609873, + "grad_norm": 0.20329497754573822, + "learning_rate": 0.0006, + "loss": 3.4969425201416016, + "step": 5201 + }, + { + "epoch": 72.2516382699869, + "grad_norm": 0.20615696907043457, + "learning_rate": 0.0006, + "loss": 3.4797892570495605, + "step": 5202 + }, + { + "epoch": 72.26561817387505, + "grad_norm": 0.20542259514331818, + "learning_rate": 0.0006, + "loss": 3.530893325805664, + "step": 5203 + }, + { + "epoch": 72.27959807776321, + "grad_norm": 0.21758593618869781, + "learning_rate": 0.0006, + "loss": 3.494999647140503, + "step": 5204 + }, + { + "epoch": 72.29357798165138, + "grad_norm": 0.21938979625701904, + "learning_rate": 0.0006, + "loss": 3.4716687202453613, + "step": 5205 + }, + { + "epoch": 72.30755788553954, + "grad_norm": 0.21116693317890167, + "learning_rate": 0.0006, + "loss": 3.510025978088379, + "step": 5206 + }, + { + "epoch": 72.3215377894277, + "grad_norm": 0.22996407747268677, + "learning_rate": 0.0006, + "loss": 3.515085220336914, + "step": 5207 + }, + { + "epoch": 72.33551769331586, + "grad_norm": 0.23071469366550446, + "learning_rate": 0.0006, + "loss": 3.4844086170196533, + "step": 5208 + }, + { + "epoch": 72.34949759720402, + "grad_norm": 0.25695133209228516, + "learning_rate": 0.0006, + "loss": 3.5199429988861084, + "step": 5209 + }, + { + "epoch": 72.36347750109218, + "grad_norm": 0.2724803388118744, + "learning_rate": 0.0006, + "loss": 3.516205072402954, + "step": 5210 + }, + { + "epoch": 72.37745740498035, + "grad_norm": 0.2681419551372528, + "learning_rate": 0.0006, + "loss": 3.499340295791626, + "step": 5211 + }, + { + "epoch": 72.3914373088685, + "grad_norm": 0.2519148886203766, + "learning_rate": 0.0006, + "loss": 3.508042812347412, + "step": 5212 + }, + { + "epoch": 72.40541721275666, + "grad_norm": 0.2280866652727127, + "learning_rate": 0.0006, + "loss": 3.501939058303833, + "step": 5213 + }, + { + "epoch": 72.41939711664482, + "grad_norm": 0.2323485016822815, + "learning_rate": 0.0006, + "loss": 3.4846863746643066, + "step": 5214 + }, + { + "epoch": 72.43337702053299, + "grad_norm": 0.2441403865814209, + "learning_rate": 0.0006, + "loss": 3.4963583946228027, + "step": 5215 + }, + { + "epoch": 72.44735692442114, + "grad_norm": 0.2406138777732849, + "learning_rate": 0.0006, + "loss": 3.4914402961730957, + "step": 5216 + }, + { + "epoch": 72.4613368283093, + "grad_norm": 0.23548054695129395, + "learning_rate": 0.0006, + "loss": 3.5411581993103027, + "step": 5217 + }, + { + "epoch": 72.47531673219747, + "grad_norm": 0.21609817445278168, + "learning_rate": 0.0006, + "loss": 3.5331366062164307, + "step": 5218 + }, + { + "epoch": 72.48929663608563, + "grad_norm": 0.20667463541030884, + "learning_rate": 0.0006, + "loss": 3.4875259399414062, + "step": 5219 + }, + { + "epoch": 72.50327653997378, + "grad_norm": 0.21997129917144775, + "learning_rate": 0.0006, + "loss": 3.45741868019104, + "step": 5220 + }, + { + "epoch": 72.51725644386195, + "grad_norm": 0.23778799176216125, + "learning_rate": 0.0006, + "loss": 3.5240767002105713, + "step": 5221 + }, + { + "epoch": 72.53123634775011, + "grad_norm": 0.2373982071876526, + "learning_rate": 0.0006, + "loss": 3.4988675117492676, + "step": 5222 + }, + { + "epoch": 72.54521625163827, + "grad_norm": 0.24703051149845123, + "learning_rate": 0.0006, + "loss": 3.512615203857422, + "step": 5223 + }, + { + "epoch": 72.55919615552644, + "grad_norm": 0.2259516716003418, + "learning_rate": 0.0006, + "loss": 3.5054564476013184, + "step": 5224 + }, + { + "epoch": 72.57317605941459, + "grad_norm": 0.20849403738975525, + "learning_rate": 0.0006, + "loss": 3.513225555419922, + "step": 5225 + }, + { + "epoch": 72.58715596330275, + "grad_norm": 0.20204737782478333, + "learning_rate": 0.0006, + "loss": 3.499671220779419, + "step": 5226 + }, + { + "epoch": 72.60113586719092, + "grad_norm": 0.2146504670381546, + "learning_rate": 0.0006, + "loss": 3.479963779449463, + "step": 5227 + }, + { + "epoch": 72.61511577107908, + "grad_norm": 0.2070881426334381, + "learning_rate": 0.0006, + "loss": 3.4819841384887695, + "step": 5228 + }, + { + "epoch": 72.62909567496723, + "grad_norm": 0.21011002361774445, + "learning_rate": 0.0006, + "loss": 3.480698347091675, + "step": 5229 + }, + { + "epoch": 72.6430755788554, + "grad_norm": 0.22228984534740448, + "learning_rate": 0.0006, + "loss": 3.504167318344116, + "step": 5230 + }, + { + "epoch": 72.65705548274356, + "grad_norm": 0.21016335487365723, + "learning_rate": 0.0006, + "loss": 3.4877564907073975, + "step": 5231 + }, + { + "epoch": 72.67103538663171, + "grad_norm": 0.20774874091148376, + "learning_rate": 0.0006, + "loss": 3.5095250606536865, + "step": 5232 + }, + { + "epoch": 72.68501529051987, + "grad_norm": 0.21587499976158142, + "learning_rate": 0.0006, + "loss": 3.481410503387451, + "step": 5233 + }, + { + "epoch": 72.69899519440804, + "grad_norm": 0.21865521371364594, + "learning_rate": 0.0006, + "loss": 3.4801032543182373, + "step": 5234 + }, + { + "epoch": 72.7129750982962, + "grad_norm": 0.20692583918571472, + "learning_rate": 0.0006, + "loss": 3.5247631072998047, + "step": 5235 + }, + { + "epoch": 72.72695500218435, + "grad_norm": 0.21028351783752441, + "learning_rate": 0.0006, + "loss": 3.4889426231384277, + "step": 5236 + }, + { + "epoch": 72.74093490607252, + "grad_norm": 0.20704887807369232, + "learning_rate": 0.0006, + "loss": 3.514674663543701, + "step": 5237 + }, + { + "epoch": 72.75491480996068, + "grad_norm": 0.22431230545043945, + "learning_rate": 0.0006, + "loss": 3.520341396331787, + "step": 5238 + }, + { + "epoch": 72.76889471384884, + "grad_norm": 0.26835498213768005, + "learning_rate": 0.0006, + "loss": 3.515369176864624, + "step": 5239 + }, + { + "epoch": 72.78287461773701, + "grad_norm": 0.2570379376411438, + "learning_rate": 0.0006, + "loss": 3.5058908462524414, + "step": 5240 + }, + { + "epoch": 72.79685452162516, + "grad_norm": 0.22710268199443817, + "learning_rate": 0.0006, + "loss": 3.5321788787841797, + "step": 5241 + }, + { + "epoch": 72.81083442551332, + "grad_norm": 0.21135354042053223, + "learning_rate": 0.0006, + "loss": 3.5038869380950928, + "step": 5242 + }, + { + "epoch": 72.82481432940149, + "grad_norm": 0.20677657425403595, + "learning_rate": 0.0006, + "loss": 3.509671211242676, + "step": 5243 + }, + { + "epoch": 72.83879423328965, + "grad_norm": 0.21803733706474304, + "learning_rate": 0.0006, + "loss": 3.540374755859375, + "step": 5244 + }, + { + "epoch": 72.8527741371778, + "grad_norm": 0.24457798898220062, + "learning_rate": 0.0006, + "loss": 3.5087430477142334, + "step": 5245 + }, + { + "epoch": 72.86675404106597, + "grad_norm": 0.2483559548854828, + "learning_rate": 0.0006, + "loss": 3.5065975189208984, + "step": 5246 + }, + { + "epoch": 72.88073394495413, + "grad_norm": 0.22601056098937988, + "learning_rate": 0.0006, + "loss": 3.533181667327881, + "step": 5247 + }, + { + "epoch": 72.89471384884229, + "grad_norm": 0.1951705366373062, + "learning_rate": 0.0006, + "loss": 3.5082955360412598, + "step": 5248 + }, + { + "epoch": 72.90869375273044, + "grad_norm": 0.2373722940683365, + "learning_rate": 0.0006, + "loss": 3.5175671577453613, + "step": 5249 + }, + { + "epoch": 72.92267365661861, + "grad_norm": 0.2238793820142746, + "learning_rate": 0.0006, + "loss": 3.4822793006896973, + "step": 5250 + }, + { + "epoch": 72.93665356050677, + "grad_norm": 0.19394482672214508, + "learning_rate": 0.0006, + "loss": 3.5329837799072266, + "step": 5251 + }, + { + "epoch": 72.95063346439493, + "grad_norm": 0.19733992218971252, + "learning_rate": 0.0006, + "loss": 3.516442060470581, + "step": 5252 + }, + { + "epoch": 72.9646133682831, + "grad_norm": 0.1991652250289917, + "learning_rate": 0.0006, + "loss": 3.4855995178222656, + "step": 5253 + }, + { + "epoch": 72.97859327217125, + "grad_norm": 0.20192593336105347, + "learning_rate": 0.0006, + "loss": 3.500981330871582, + "step": 5254 + }, + { + "epoch": 72.99257317605941, + "grad_norm": 0.1900099813938141, + "learning_rate": 0.0006, + "loss": 3.516650676727295, + "step": 5255 + }, + { + "epoch": 73.0, + "grad_norm": 0.2279117852449417, + "learning_rate": 0.0006, + "loss": 3.5318033695220947, + "step": 5256 + }, + { + "epoch": 73.0, + "eval_loss": 3.990769147872925, + "eval_runtime": 44.8752, + "eval_samples_per_second": 54.418, + "eval_steps_per_second": 3.409, + "step": 5256 + }, + { + "epoch": 73.01397990388816, + "grad_norm": 0.21681782603263855, + "learning_rate": 0.0006, + "loss": 3.481177806854248, + "step": 5257 + }, + { + "epoch": 73.02795980777633, + "grad_norm": 0.23727980256080627, + "learning_rate": 0.0006, + "loss": 3.4718916416168213, + "step": 5258 + }, + { + "epoch": 73.04193971166448, + "grad_norm": 0.3004179000854492, + "learning_rate": 0.0006, + "loss": 3.4856271743774414, + "step": 5259 + }, + { + "epoch": 73.05591961555264, + "grad_norm": 0.3563845157623291, + "learning_rate": 0.0006, + "loss": 3.5074610710144043, + "step": 5260 + }, + { + "epoch": 73.06989951944081, + "grad_norm": 0.28933605551719666, + "learning_rate": 0.0006, + "loss": 3.4824771881103516, + "step": 5261 + }, + { + "epoch": 73.08387942332897, + "grad_norm": 0.20685118436813354, + "learning_rate": 0.0006, + "loss": 3.4652299880981445, + "step": 5262 + }, + { + "epoch": 73.09785932721712, + "grad_norm": 0.27588045597076416, + "learning_rate": 0.0006, + "loss": 3.5053865909576416, + "step": 5263 + }, + { + "epoch": 73.1118392311053, + "grad_norm": 0.28780898451805115, + "learning_rate": 0.0006, + "loss": 3.4900169372558594, + "step": 5264 + }, + { + "epoch": 73.12581913499345, + "grad_norm": 0.25440889596939087, + "learning_rate": 0.0006, + "loss": 3.473628520965576, + "step": 5265 + }, + { + "epoch": 73.1397990388816, + "grad_norm": 0.23374824225902557, + "learning_rate": 0.0006, + "loss": 3.473111629486084, + "step": 5266 + }, + { + "epoch": 73.15377894276976, + "grad_norm": 0.22421608865261078, + "learning_rate": 0.0006, + "loss": 3.4926185607910156, + "step": 5267 + }, + { + "epoch": 73.16775884665793, + "grad_norm": 0.24340282380580902, + "learning_rate": 0.0006, + "loss": 3.4895753860473633, + "step": 5268 + }, + { + "epoch": 73.18173875054609, + "grad_norm": 0.2423272281885147, + "learning_rate": 0.0006, + "loss": 3.498384952545166, + "step": 5269 + }, + { + "epoch": 73.19571865443424, + "grad_norm": 0.20698750019073486, + "learning_rate": 0.0006, + "loss": 3.4790406227111816, + "step": 5270 + }, + { + "epoch": 73.20969855832242, + "grad_norm": 0.21184271574020386, + "learning_rate": 0.0006, + "loss": 3.4132208824157715, + "step": 5271 + }, + { + "epoch": 73.22367846221057, + "grad_norm": 0.20834460854530334, + "learning_rate": 0.0006, + "loss": 3.4493658542633057, + "step": 5272 + }, + { + "epoch": 73.23765836609873, + "grad_norm": 0.20421066880226135, + "learning_rate": 0.0006, + "loss": 3.486607551574707, + "step": 5273 + }, + { + "epoch": 73.2516382699869, + "grad_norm": 0.2166317254304886, + "learning_rate": 0.0006, + "loss": 3.4880776405334473, + "step": 5274 + }, + { + "epoch": 73.26561817387505, + "grad_norm": 0.2271069586277008, + "learning_rate": 0.0006, + "loss": 3.5396530628204346, + "step": 5275 + }, + { + "epoch": 73.27959807776321, + "grad_norm": 0.2804903984069824, + "learning_rate": 0.0006, + "loss": 3.5006351470947266, + "step": 5276 + }, + { + "epoch": 73.29357798165138, + "grad_norm": 0.2573811113834381, + "learning_rate": 0.0006, + "loss": 3.4821765422821045, + "step": 5277 + }, + { + "epoch": 73.30755788553954, + "grad_norm": 0.23412485420703888, + "learning_rate": 0.0006, + "loss": 3.4935741424560547, + "step": 5278 + }, + { + "epoch": 73.3215377894277, + "grad_norm": 0.28513026237487793, + "learning_rate": 0.0006, + "loss": 3.4645705223083496, + "step": 5279 + }, + { + "epoch": 73.33551769331586, + "grad_norm": 0.29753562808036804, + "learning_rate": 0.0006, + "loss": 3.5176053047180176, + "step": 5280 + }, + { + "epoch": 73.34949759720402, + "grad_norm": 0.27373817563056946, + "learning_rate": 0.0006, + "loss": 3.4775936603546143, + "step": 5281 + }, + { + "epoch": 73.36347750109218, + "grad_norm": 0.2177509367465973, + "learning_rate": 0.0006, + "loss": 3.480635643005371, + "step": 5282 + }, + { + "epoch": 73.37745740498035, + "grad_norm": 0.25387322902679443, + "learning_rate": 0.0006, + "loss": 3.469754695892334, + "step": 5283 + }, + { + "epoch": 73.3914373088685, + "grad_norm": 0.2564674913883209, + "learning_rate": 0.0006, + "loss": 3.5017647743225098, + "step": 5284 + }, + { + "epoch": 73.40541721275666, + "grad_norm": 0.22612597048282623, + "learning_rate": 0.0006, + "loss": 3.4689712524414062, + "step": 5285 + }, + { + "epoch": 73.41939711664482, + "grad_norm": 0.2263033241033554, + "learning_rate": 0.0006, + "loss": 3.4711971282958984, + "step": 5286 + }, + { + "epoch": 73.43337702053299, + "grad_norm": 0.2290525883436203, + "learning_rate": 0.0006, + "loss": 3.4785008430480957, + "step": 5287 + }, + { + "epoch": 73.44735692442114, + "grad_norm": 0.2285647839307785, + "learning_rate": 0.0006, + "loss": 3.47416353225708, + "step": 5288 + }, + { + "epoch": 73.4613368283093, + "grad_norm": 0.2135833501815796, + "learning_rate": 0.0006, + "loss": 3.497528076171875, + "step": 5289 + }, + { + "epoch": 73.47531673219747, + "grad_norm": 0.24894089996814728, + "learning_rate": 0.0006, + "loss": 3.4764437675476074, + "step": 5290 + }, + { + "epoch": 73.48929663608563, + "grad_norm": 0.27769771218299866, + "learning_rate": 0.0006, + "loss": 3.530491828918457, + "step": 5291 + }, + { + "epoch": 73.50327653997378, + "grad_norm": 0.2881193161010742, + "learning_rate": 0.0006, + "loss": 3.480968475341797, + "step": 5292 + }, + { + "epoch": 73.51725644386195, + "grad_norm": 0.26066645979881287, + "learning_rate": 0.0006, + "loss": 3.488679885864258, + "step": 5293 + }, + { + "epoch": 73.53123634775011, + "grad_norm": 0.2325759381055832, + "learning_rate": 0.0006, + "loss": 3.50810170173645, + "step": 5294 + }, + { + "epoch": 73.54521625163827, + "grad_norm": 0.2113630324602127, + "learning_rate": 0.0006, + "loss": 3.516207218170166, + "step": 5295 + }, + { + "epoch": 73.55919615552644, + "grad_norm": 0.22719664871692657, + "learning_rate": 0.0006, + "loss": 3.5046021938323975, + "step": 5296 + }, + { + "epoch": 73.57317605941459, + "grad_norm": 0.20094481110572815, + "learning_rate": 0.0006, + "loss": 3.5129313468933105, + "step": 5297 + }, + { + "epoch": 73.58715596330275, + "grad_norm": 0.18975555896759033, + "learning_rate": 0.0006, + "loss": 3.4832587242126465, + "step": 5298 + }, + { + "epoch": 73.60113586719092, + "grad_norm": 0.2168205976486206, + "learning_rate": 0.0006, + "loss": 3.485678195953369, + "step": 5299 + }, + { + "epoch": 73.61511577107908, + "grad_norm": 0.20437777042388916, + "learning_rate": 0.0006, + "loss": 3.5342376232147217, + "step": 5300 + }, + { + "epoch": 73.62909567496723, + "grad_norm": 0.1951008290052414, + "learning_rate": 0.0006, + "loss": 3.496528148651123, + "step": 5301 + }, + { + "epoch": 73.6430755788554, + "grad_norm": 0.194418802857399, + "learning_rate": 0.0006, + "loss": 3.496985912322998, + "step": 5302 + }, + { + "epoch": 73.65705548274356, + "grad_norm": 0.21475602686405182, + "learning_rate": 0.0006, + "loss": 3.4993209838867188, + "step": 5303 + }, + { + "epoch": 73.67103538663171, + "grad_norm": 0.21515145897865295, + "learning_rate": 0.0006, + "loss": 3.5003676414489746, + "step": 5304 + }, + { + "epoch": 73.68501529051987, + "grad_norm": 0.19101263582706451, + "learning_rate": 0.0006, + "loss": 3.4970169067382812, + "step": 5305 + }, + { + "epoch": 73.69899519440804, + "grad_norm": 0.21630576252937317, + "learning_rate": 0.0006, + "loss": 3.4644386768341064, + "step": 5306 + }, + { + "epoch": 73.7129750982962, + "grad_norm": 0.2233273833990097, + "learning_rate": 0.0006, + "loss": 3.5082266330718994, + "step": 5307 + }, + { + "epoch": 73.72695500218435, + "grad_norm": 0.2207949310541153, + "learning_rate": 0.0006, + "loss": 3.5124080181121826, + "step": 5308 + }, + { + "epoch": 73.74093490607252, + "grad_norm": 0.2216075360774994, + "learning_rate": 0.0006, + "loss": 3.5385897159576416, + "step": 5309 + }, + { + "epoch": 73.75491480996068, + "grad_norm": 0.242542564868927, + "learning_rate": 0.0006, + "loss": 3.4922280311584473, + "step": 5310 + }, + { + "epoch": 73.76889471384884, + "grad_norm": 0.25550341606140137, + "learning_rate": 0.0006, + "loss": 3.5120809078216553, + "step": 5311 + }, + { + "epoch": 73.78287461773701, + "grad_norm": 0.2312568724155426, + "learning_rate": 0.0006, + "loss": 3.5122501850128174, + "step": 5312 + }, + { + "epoch": 73.79685452162516, + "grad_norm": 0.22861020267009735, + "learning_rate": 0.0006, + "loss": 3.5362534523010254, + "step": 5313 + }, + { + "epoch": 73.81083442551332, + "grad_norm": 0.2227325290441513, + "learning_rate": 0.0006, + "loss": 3.509556770324707, + "step": 5314 + }, + { + "epoch": 73.82481432940149, + "grad_norm": 0.20523901283740997, + "learning_rate": 0.0006, + "loss": 3.478180170059204, + "step": 5315 + }, + { + "epoch": 73.83879423328965, + "grad_norm": 0.21429577469825745, + "learning_rate": 0.0006, + "loss": 3.5295538902282715, + "step": 5316 + }, + { + "epoch": 73.8527741371778, + "grad_norm": 0.2419414520263672, + "learning_rate": 0.0006, + "loss": 3.518057346343994, + "step": 5317 + }, + { + "epoch": 73.86675404106597, + "grad_norm": 0.27580955624580383, + "learning_rate": 0.0006, + "loss": 3.5108370780944824, + "step": 5318 + }, + { + "epoch": 73.88073394495413, + "grad_norm": 0.24745431542396545, + "learning_rate": 0.0006, + "loss": 3.5286366939544678, + "step": 5319 + }, + { + "epoch": 73.89471384884229, + "grad_norm": 0.2149314135313034, + "learning_rate": 0.0006, + "loss": 3.485231399536133, + "step": 5320 + }, + { + "epoch": 73.90869375273044, + "grad_norm": 0.2078951895236969, + "learning_rate": 0.0006, + "loss": 3.5262768268585205, + "step": 5321 + }, + { + "epoch": 73.92267365661861, + "grad_norm": 0.2416444718837738, + "learning_rate": 0.0006, + "loss": 3.5233588218688965, + "step": 5322 + }, + { + "epoch": 73.93665356050677, + "grad_norm": 0.22926902770996094, + "learning_rate": 0.0006, + "loss": 3.5189247131347656, + "step": 5323 + }, + { + "epoch": 73.95063346439493, + "grad_norm": 0.21510642766952515, + "learning_rate": 0.0006, + "loss": 3.473496198654175, + "step": 5324 + }, + { + "epoch": 73.9646133682831, + "grad_norm": 0.2103978842496872, + "learning_rate": 0.0006, + "loss": 3.482978343963623, + "step": 5325 + }, + { + "epoch": 73.97859327217125, + "grad_norm": 0.1958087682723999, + "learning_rate": 0.0006, + "loss": 3.5095043182373047, + "step": 5326 + }, + { + "epoch": 73.99257317605941, + "grad_norm": 0.1914149820804596, + "learning_rate": 0.0006, + "loss": 3.5150370597839355, + "step": 5327 + }, + { + "epoch": 74.0, + "grad_norm": 0.23419693112373352, + "learning_rate": 0.0006, + "loss": 3.5106215476989746, + "step": 5328 + }, + { + "epoch": 74.0, + "eval_loss": 3.9748404026031494, + "eval_runtime": 44.8747, + "eval_samples_per_second": 54.418, + "eval_steps_per_second": 3.409, + "step": 5328 + }, + { + "epoch": 74.01397990388816, + "grad_norm": 0.2479415088891983, + "learning_rate": 0.0006, + "loss": 3.4701595306396484, + "step": 5329 + }, + { + "epoch": 74.02795980777633, + "grad_norm": 0.24987533688545227, + "learning_rate": 0.0006, + "loss": 3.4586291313171387, + "step": 5330 + }, + { + "epoch": 74.04193971166448, + "grad_norm": 0.23266810178756714, + "learning_rate": 0.0006, + "loss": 3.4172134399414062, + "step": 5331 + }, + { + "epoch": 74.05591961555264, + "grad_norm": 0.2236100137233734, + "learning_rate": 0.0006, + "loss": 3.4862887859344482, + "step": 5332 + }, + { + "epoch": 74.06989951944081, + "grad_norm": 0.20534487068653107, + "learning_rate": 0.0006, + "loss": 3.45927357673645, + "step": 5333 + }, + { + "epoch": 74.08387942332897, + "grad_norm": 0.2238253802061081, + "learning_rate": 0.0006, + "loss": 3.467851400375366, + "step": 5334 + }, + { + "epoch": 74.09785932721712, + "grad_norm": 0.26896408200263977, + "learning_rate": 0.0006, + "loss": 3.4854512214660645, + "step": 5335 + }, + { + "epoch": 74.1118392311053, + "grad_norm": 0.2958875000476837, + "learning_rate": 0.0006, + "loss": 3.4699835777282715, + "step": 5336 + }, + { + "epoch": 74.12581913499345, + "grad_norm": 0.2670096755027771, + "learning_rate": 0.0006, + "loss": 3.469750165939331, + "step": 5337 + }, + { + "epoch": 74.1397990388816, + "grad_norm": 0.24695175886154175, + "learning_rate": 0.0006, + "loss": 3.4648962020874023, + "step": 5338 + }, + { + "epoch": 74.15377894276976, + "grad_norm": 0.22581245005130768, + "learning_rate": 0.0006, + "loss": 3.4659342765808105, + "step": 5339 + }, + { + "epoch": 74.16775884665793, + "grad_norm": 0.214495450258255, + "learning_rate": 0.0006, + "loss": 3.484555721282959, + "step": 5340 + }, + { + "epoch": 74.18173875054609, + "grad_norm": 0.2219872921705246, + "learning_rate": 0.0006, + "loss": 3.4930648803710938, + "step": 5341 + }, + { + "epoch": 74.19571865443424, + "grad_norm": 0.23231728374958038, + "learning_rate": 0.0006, + "loss": 3.4828286170959473, + "step": 5342 + }, + { + "epoch": 74.20969855832242, + "grad_norm": 0.2273619920015335, + "learning_rate": 0.0006, + "loss": 3.4727272987365723, + "step": 5343 + }, + { + "epoch": 74.22367846221057, + "grad_norm": 0.22086025774478912, + "learning_rate": 0.0006, + "loss": 3.5108399391174316, + "step": 5344 + }, + { + "epoch": 74.23765836609873, + "grad_norm": 0.2132318615913391, + "learning_rate": 0.0006, + "loss": 3.4821221828460693, + "step": 5345 + }, + { + "epoch": 74.2516382699869, + "grad_norm": 0.2375437170267105, + "learning_rate": 0.0006, + "loss": 3.5120530128479004, + "step": 5346 + }, + { + "epoch": 74.26561817387505, + "grad_norm": 0.24744948744773865, + "learning_rate": 0.0006, + "loss": 3.4861230850219727, + "step": 5347 + }, + { + "epoch": 74.27959807776321, + "grad_norm": 0.2221650779247284, + "learning_rate": 0.0006, + "loss": 3.494476556777954, + "step": 5348 + }, + { + "epoch": 74.29357798165138, + "grad_norm": 0.1984807401895523, + "learning_rate": 0.0006, + "loss": 3.492462635040283, + "step": 5349 + }, + { + "epoch": 74.30755788553954, + "grad_norm": 0.2298664003610611, + "learning_rate": 0.0006, + "loss": 3.478318214416504, + "step": 5350 + }, + { + "epoch": 74.3215377894277, + "grad_norm": 0.25947070121765137, + "learning_rate": 0.0006, + "loss": 3.487811326980591, + "step": 5351 + }, + { + "epoch": 74.33551769331586, + "grad_norm": 0.23611490428447723, + "learning_rate": 0.0006, + "loss": 3.500941276550293, + "step": 5352 + }, + { + "epoch": 74.34949759720402, + "grad_norm": 0.2209966480731964, + "learning_rate": 0.0006, + "loss": 3.4910011291503906, + "step": 5353 + }, + { + "epoch": 74.36347750109218, + "grad_norm": 0.2637932300567627, + "learning_rate": 0.0006, + "loss": 3.5082242488861084, + "step": 5354 + }, + { + "epoch": 74.37745740498035, + "grad_norm": 0.27074548602104187, + "learning_rate": 0.0006, + "loss": 3.4829864501953125, + "step": 5355 + }, + { + "epoch": 74.3914373088685, + "grad_norm": 0.24120314419269562, + "learning_rate": 0.0006, + "loss": 3.5099215507507324, + "step": 5356 + }, + { + "epoch": 74.40541721275666, + "grad_norm": 0.22281570732593536, + "learning_rate": 0.0006, + "loss": 3.4863901138305664, + "step": 5357 + }, + { + "epoch": 74.41939711664482, + "grad_norm": 0.24500703811645508, + "learning_rate": 0.0006, + "loss": 3.492774248123169, + "step": 5358 + }, + { + "epoch": 74.43337702053299, + "grad_norm": 0.2938194274902344, + "learning_rate": 0.0006, + "loss": 3.5095953941345215, + "step": 5359 + }, + { + "epoch": 74.44735692442114, + "grad_norm": 0.23553980886936188, + "learning_rate": 0.0006, + "loss": 3.4738357067108154, + "step": 5360 + }, + { + "epoch": 74.4613368283093, + "grad_norm": 0.23400643467903137, + "learning_rate": 0.0006, + "loss": 3.503324508666992, + "step": 5361 + }, + { + "epoch": 74.47531673219747, + "grad_norm": 0.26702186465263367, + "learning_rate": 0.0006, + "loss": 3.5077764987945557, + "step": 5362 + }, + { + "epoch": 74.48929663608563, + "grad_norm": 0.26146429777145386, + "learning_rate": 0.0006, + "loss": 3.4926650524139404, + "step": 5363 + }, + { + "epoch": 74.50327653997378, + "grad_norm": 0.24903273582458496, + "learning_rate": 0.0006, + "loss": 3.4951210021972656, + "step": 5364 + }, + { + "epoch": 74.51725644386195, + "grad_norm": 0.2189243733882904, + "learning_rate": 0.0006, + "loss": 3.50642728805542, + "step": 5365 + }, + { + "epoch": 74.53123634775011, + "grad_norm": 0.2049291431903839, + "learning_rate": 0.0006, + "loss": 3.5034496784210205, + "step": 5366 + }, + { + "epoch": 74.54521625163827, + "grad_norm": 0.20688633620738983, + "learning_rate": 0.0006, + "loss": 3.4878382682800293, + "step": 5367 + }, + { + "epoch": 74.55919615552644, + "grad_norm": 0.201416477560997, + "learning_rate": 0.0006, + "loss": 3.503418445587158, + "step": 5368 + }, + { + "epoch": 74.57317605941459, + "grad_norm": 0.2094922661781311, + "learning_rate": 0.0006, + "loss": 3.4678902626037598, + "step": 5369 + }, + { + "epoch": 74.58715596330275, + "grad_norm": 0.23010285198688507, + "learning_rate": 0.0006, + "loss": 3.4749817848205566, + "step": 5370 + }, + { + "epoch": 74.60113586719092, + "grad_norm": 0.22642597556114197, + "learning_rate": 0.0006, + "loss": 3.4843454360961914, + "step": 5371 + }, + { + "epoch": 74.61511577107908, + "grad_norm": 0.2123269885778427, + "learning_rate": 0.0006, + "loss": 3.4823896884918213, + "step": 5372 + }, + { + "epoch": 74.62909567496723, + "grad_norm": 0.21990132331848145, + "learning_rate": 0.0006, + "loss": 3.4970970153808594, + "step": 5373 + }, + { + "epoch": 74.6430755788554, + "grad_norm": 0.23335176706314087, + "learning_rate": 0.0006, + "loss": 3.481468677520752, + "step": 5374 + }, + { + "epoch": 74.65705548274356, + "grad_norm": 0.22706177830696106, + "learning_rate": 0.0006, + "loss": 3.504356861114502, + "step": 5375 + }, + { + "epoch": 74.67103538663171, + "grad_norm": 0.22790828347206116, + "learning_rate": 0.0006, + "loss": 3.472900867462158, + "step": 5376 + }, + { + "epoch": 74.68501529051987, + "grad_norm": 0.26810064911842346, + "learning_rate": 0.0006, + "loss": 3.4734930992126465, + "step": 5377 + }, + { + "epoch": 74.69899519440804, + "grad_norm": 0.28308895230293274, + "learning_rate": 0.0006, + "loss": 3.5265793800354004, + "step": 5378 + }, + { + "epoch": 74.7129750982962, + "grad_norm": 0.23838670551776886, + "learning_rate": 0.0006, + "loss": 3.4594779014587402, + "step": 5379 + }, + { + "epoch": 74.72695500218435, + "grad_norm": 0.22041939198970795, + "learning_rate": 0.0006, + "loss": 3.5098114013671875, + "step": 5380 + }, + { + "epoch": 74.74093490607252, + "grad_norm": 0.24805180728435516, + "learning_rate": 0.0006, + "loss": 3.5069029331207275, + "step": 5381 + }, + { + "epoch": 74.75491480996068, + "grad_norm": 0.3026084005832672, + "learning_rate": 0.0006, + "loss": 3.4828643798828125, + "step": 5382 + }, + { + "epoch": 74.76889471384884, + "grad_norm": 0.2749265432357788, + "learning_rate": 0.0006, + "loss": 3.536533832550049, + "step": 5383 + }, + { + "epoch": 74.78287461773701, + "grad_norm": 0.23131245374679565, + "learning_rate": 0.0006, + "loss": 3.4843153953552246, + "step": 5384 + }, + { + "epoch": 74.79685452162516, + "grad_norm": 0.28015977144241333, + "learning_rate": 0.0006, + "loss": 3.5087320804595947, + "step": 5385 + }, + { + "epoch": 74.81083442551332, + "grad_norm": 0.28901320695877075, + "learning_rate": 0.0006, + "loss": 3.509774684906006, + "step": 5386 + }, + { + "epoch": 74.82481432940149, + "grad_norm": 0.2902369499206543, + "learning_rate": 0.0006, + "loss": 3.5354912281036377, + "step": 5387 + }, + { + "epoch": 74.83879423328965, + "grad_norm": 0.28103142976760864, + "learning_rate": 0.0006, + "loss": 3.5079479217529297, + "step": 5388 + }, + { + "epoch": 74.8527741371778, + "grad_norm": 0.21874217689037323, + "learning_rate": 0.0006, + "loss": 3.527747631072998, + "step": 5389 + }, + { + "epoch": 74.86675404106597, + "grad_norm": 0.2200363576412201, + "learning_rate": 0.0006, + "loss": 3.4977521896362305, + "step": 5390 + }, + { + "epoch": 74.88073394495413, + "grad_norm": 0.24229851365089417, + "learning_rate": 0.0006, + "loss": 3.535094738006592, + "step": 5391 + }, + { + "epoch": 74.89471384884229, + "grad_norm": 0.25623074173927307, + "learning_rate": 0.0006, + "loss": 3.5501794815063477, + "step": 5392 + }, + { + "epoch": 74.90869375273044, + "grad_norm": 0.25281623005867004, + "learning_rate": 0.0006, + "loss": 3.4836385250091553, + "step": 5393 + }, + { + "epoch": 74.92267365661861, + "grad_norm": 0.2236766219139099, + "learning_rate": 0.0006, + "loss": 3.4966232776641846, + "step": 5394 + }, + { + "epoch": 74.93665356050677, + "grad_norm": 0.20852778851985931, + "learning_rate": 0.0006, + "loss": 3.516902446746826, + "step": 5395 + }, + { + "epoch": 74.95063346439493, + "grad_norm": 0.22248536348342896, + "learning_rate": 0.0006, + "loss": 3.5233588218688965, + "step": 5396 + }, + { + "epoch": 74.9646133682831, + "grad_norm": 0.23792508244514465, + "learning_rate": 0.0006, + "loss": 3.4896931648254395, + "step": 5397 + }, + { + "epoch": 74.97859327217125, + "grad_norm": 0.20838406682014465, + "learning_rate": 0.0006, + "loss": 3.4921011924743652, + "step": 5398 + }, + { + "epoch": 74.99257317605941, + "grad_norm": 0.22375819087028503, + "learning_rate": 0.0006, + "loss": 3.5101675987243652, + "step": 5399 + }, + { + "epoch": 75.0, + "grad_norm": 0.3014359772205353, + "learning_rate": 0.0006, + "loss": 3.5245840549468994, + "step": 5400 + }, + { + "epoch": 75.0, + "eval_loss": 3.9896810054779053, + "eval_runtime": 45.1449, + "eval_samples_per_second": 54.092, + "eval_steps_per_second": 3.389, + "step": 5400 + }, + { + "epoch": 75.01397990388816, + "grad_norm": 0.2802879214286804, + "learning_rate": 0.0006, + "loss": 3.4459807872772217, + "step": 5401 + }, + { + "epoch": 75.02795980777633, + "grad_norm": 0.2268809676170349, + "learning_rate": 0.0006, + "loss": 3.492509365081787, + "step": 5402 + }, + { + "epoch": 75.04193971166448, + "grad_norm": 0.32269951701164246, + "learning_rate": 0.0006, + "loss": 3.4565114974975586, + "step": 5403 + }, + { + "epoch": 75.05591961555264, + "grad_norm": 0.37944868206977844, + "learning_rate": 0.0006, + "loss": 3.4896206855773926, + "step": 5404 + }, + { + "epoch": 75.06989951944081, + "grad_norm": 0.2834550440311432, + "learning_rate": 0.0006, + "loss": 3.4488000869750977, + "step": 5405 + }, + { + "epoch": 75.08387942332897, + "grad_norm": 0.24261713027954102, + "learning_rate": 0.0006, + "loss": 3.4881110191345215, + "step": 5406 + }, + { + "epoch": 75.09785932721712, + "grad_norm": 0.25649914145469666, + "learning_rate": 0.0006, + "loss": 3.4687750339508057, + "step": 5407 + }, + { + "epoch": 75.1118392311053, + "grad_norm": 0.28500616550445557, + "learning_rate": 0.0006, + "loss": 3.5017337799072266, + "step": 5408 + }, + { + "epoch": 75.12581913499345, + "grad_norm": 0.288143128156662, + "learning_rate": 0.0006, + "loss": 3.46737003326416, + "step": 5409 + }, + { + "epoch": 75.1397990388816, + "grad_norm": 0.23640452325344086, + "learning_rate": 0.0006, + "loss": 3.485724925994873, + "step": 5410 + }, + { + "epoch": 75.15377894276976, + "grad_norm": 0.231221541762352, + "learning_rate": 0.0006, + "loss": 3.4711289405822754, + "step": 5411 + }, + { + "epoch": 75.16775884665793, + "grad_norm": 0.22871847450733185, + "learning_rate": 0.0006, + "loss": 3.457324504852295, + "step": 5412 + }, + { + "epoch": 75.18173875054609, + "grad_norm": 0.24795132875442505, + "learning_rate": 0.0006, + "loss": 3.4799628257751465, + "step": 5413 + }, + { + "epoch": 75.19571865443424, + "grad_norm": 0.2337426245212555, + "learning_rate": 0.0006, + "loss": 3.4352688789367676, + "step": 5414 + }, + { + "epoch": 75.20969855832242, + "grad_norm": 0.251052588224411, + "learning_rate": 0.0006, + "loss": 3.4770374298095703, + "step": 5415 + }, + { + "epoch": 75.22367846221057, + "grad_norm": 0.2879040241241455, + "learning_rate": 0.0006, + "loss": 3.495934009552002, + "step": 5416 + }, + { + "epoch": 75.23765836609873, + "grad_norm": 0.273510605096817, + "learning_rate": 0.0006, + "loss": 3.497647762298584, + "step": 5417 + }, + { + "epoch": 75.2516382699869, + "grad_norm": 0.24495841562747955, + "learning_rate": 0.0006, + "loss": 3.455962896347046, + "step": 5418 + }, + { + "epoch": 75.26561817387505, + "grad_norm": 0.2345196157693863, + "learning_rate": 0.0006, + "loss": 3.5110573768615723, + "step": 5419 + }, + { + "epoch": 75.27959807776321, + "grad_norm": 0.22574985027313232, + "learning_rate": 0.0006, + "loss": 3.499999523162842, + "step": 5420 + }, + { + "epoch": 75.29357798165138, + "grad_norm": 0.21367499232292175, + "learning_rate": 0.0006, + "loss": 3.4823455810546875, + "step": 5421 + }, + { + "epoch": 75.30755788553954, + "grad_norm": 0.2120848447084427, + "learning_rate": 0.0006, + "loss": 3.4786484241485596, + "step": 5422 + }, + { + "epoch": 75.3215377894277, + "grad_norm": 0.21794751286506653, + "learning_rate": 0.0006, + "loss": 3.4970765113830566, + "step": 5423 + }, + { + "epoch": 75.33551769331586, + "grad_norm": 0.21963100135326385, + "learning_rate": 0.0006, + "loss": 3.5118799209594727, + "step": 5424 + }, + { + "epoch": 75.34949759720402, + "grad_norm": 0.21615713834762573, + "learning_rate": 0.0006, + "loss": 3.4728214740753174, + "step": 5425 + }, + { + "epoch": 75.36347750109218, + "grad_norm": 0.23004800081253052, + "learning_rate": 0.0006, + "loss": 3.496875762939453, + "step": 5426 + }, + { + "epoch": 75.37745740498035, + "grad_norm": 0.24208541214466095, + "learning_rate": 0.0006, + "loss": 3.4958276748657227, + "step": 5427 + }, + { + "epoch": 75.3914373088685, + "grad_norm": 0.20642924308776855, + "learning_rate": 0.0006, + "loss": 3.500385284423828, + "step": 5428 + }, + { + "epoch": 75.40541721275666, + "grad_norm": 0.2259436547756195, + "learning_rate": 0.0006, + "loss": 3.4697232246398926, + "step": 5429 + }, + { + "epoch": 75.41939711664482, + "grad_norm": 0.25861549377441406, + "learning_rate": 0.0006, + "loss": 3.5008928775787354, + "step": 5430 + }, + { + "epoch": 75.43337702053299, + "grad_norm": 0.24532392621040344, + "learning_rate": 0.0006, + "loss": 3.4718515872955322, + "step": 5431 + }, + { + "epoch": 75.44735692442114, + "grad_norm": 0.23508992791175842, + "learning_rate": 0.0006, + "loss": 3.4947562217712402, + "step": 5432 + }, + { + "epoch": 75.4613368283093, + "grad_norm": 0.25019076466560364, + "learning_rate": 0.0006, + "loss": 3.5137546062469482, + "step": 5433 + }, + { + "epoch": 75.47531673219747, + "grad_norm": 0.23382526636123657, + "learning_rate": 0.0006, + "loss": 3.503502368927002, + "step": 5434 + }, + { + "epoch": 75.48929663608563, + "grad_norm": 0.23226714134216309, + "learning_rate": 0.0006, + "loss": 3.4856209754943848, + "step": 5435 + }, + { + "epoch": 75.50327653997378, + "grad_norm": 0.2705337107181549, + "learning_rate": 0.0006, + "loss": 3.4829044342041016, + "step": 5436 + }, + { + "epoch": 75.51725644386195, + "grad_norm": 0.23903003334999084, + "learning_rate": 0.0006, + "loss": 3.473284959793091, + "step": 5437 + }, + { + "epoch": 75.53123634775011, + "grad_norm": 0.2298477441072464, + "learning_rate": 0.0006, + "loss": 3.4981393814086914, + "step": 5438 + }, + { + "epoch": 75.54521625163827, + "grad_norm": 0.2785218060016632, + "learning_rate": 0.0006, + "loss": 3.491668701171875, + "step": 5439 + }, + { + "epoch": 75.55919615552644, + "grad_norm": 0.30322644114494324, + "learning_rate": 0.0006, + "loss": 3.5061874389648438, + "step": 5440 + }, + { + "epoch": 75.57317605941459, + "grad_norm": 0.26536163687705994, + "learning_rate": 0.0006, + "loss": 3.491297721862793, + "step": 5441 + }, + { + "epoch": 75.58715596330275, + "grad_norm": 0.25591710209846497, + "learning_rate": 0.0006, + "loss": 3.4608688354492188, + "step": 5442 + }, + { + "epoch": 75.60113586719092, + "grad_norm": 0.29031914472579956, + "learning_rate": 0.0006, + "loss": 3.5015907287597656, + "step": 5443 + }, + { + "epoch": 75.61511577107908, + "grad_norm": 0.3028157353401184, + "learning_rate": 0.0006, + "loss": 3.488694190979004, + "step": 5444 + }, + { + "epoch": 75.62909567496723, + "grad_norm": 0.2612902522087097, + "learning_rate": 0.0006, + "loss": 3.5170979499816895, + "step": 5445 + }, + { + "epoch": 75.6430755788554, + "grad_norm": 0.2346487045288086, + "learning_rate": 0.0006, + "loss": 3.501101493835449, + "step": 5446 + }, + { + "epoch": 75.65705548274356, + "grad_norm": 0.24434567987918854, + "learning_rate": 0.0006, + "loss": 3.48040771484375, + "step": 5447 + }, + { + "epoch": 75.67103538663171, + "grad_norm": 0.2538795471191406, + "learning_rate": 0.0006, + "loss": 3.480721950531006, + "step": 5448 + }, + { + "epoch": 75.68501529051987, + "grad_norm": 0.23026305437088013, + "learning_rate": 0.0006, + "loss": 3.501366138458252, + "step": 5449 + }, + { + "epoch": 75.69899519440804, + "grad_norm": 0.21872632205486298, + "learning_rate": 0.0006, + "loss": 3.4855334758758545, + "step": 5450 + }, + { + "epoch": 75.7129750982962, + "grad_norm": 0.23016631603240967, + "learning_rate": 0.0006, + "loss": 3.487691879272461, + "step": 5451 + }, + { + "epoch": 75.72695500218435, + "grad_norm": 0.25731417536735535, + "learning_rate": 0.0006, + "loss": 3.509885787963867, + "step": 5452 + }, + { + "epoch": 75.74093490607252, + "grad_norm": 0.23140797019004822, + "learning_rate": 0.0006, + "loss": 3.4974255561828613, + "step": 5453 + }, + { + "epoch": 75.75491480996068, + "grad_norm": 0.2290206402540207, + "learning_rate": 0.0006, + "loss": 3.497750997543335, + "step": 5454 + }, + { + "epoch": 75.76889471384884, + "grad_norm": 0.22882549464702606, + "learning_rate": 0.0006, + "loss": 3.513742446899414, + "step": 5455 + }, + { + "epoch": 75.78287461773701, + "grad_norm": 0.22749373316764832, + "learning_rate": 0.0006, + "loss": 3.5267224311828613, + "step": 5456 + }, + { + "epoch": 75.79685452162516, + "grad_norm": 0.23185116052627563, + "learning_rate": 0.0006, + "loss": 3.4946181774139404, + "step": 5457 + }, + { + "epoch": 75.81083442551332, + "grad_norm": 0.21161580085754395, + "learning_rate": 0.0006, + "loss": 3.51632022857666, + "step": 5458 + }, + { + "epoch": 75.82481432940149, + "grad_norm": 0.2244153618812561, + "learning_rate": 0.0006, + "loss": 3.5021536350250244, + "step": 5459 + }, + { + "epoch": 75.83879423328965, + "grad_norm": 0.2286757528781891, + "learning_rate": 0.0006, + "loss": 3.5064220428466797, + "step": 5460 + }, + { + "epoch": 75.8527741371778, + "grad_norm": 0.24235443770885468, + "learning_rate": 0.0006, + "loss": 3.47468638420105, + "step": 5461 + }, + { + "epoch": 75.86675404106597, + "grad_norm": 0.21012619137763977, + "learning_rate": 0.0006, + "loss": 3.469088077545166, + "step": 5462 + }, + { + "epoch": 75.88073394495413, + "grad_norm": 0.20562565326690674, + "learning_rate": 0.0006, + "loss": 3.4918551445007324, + "step": 5463 + }, + { + "epoch": 75.89471384884229, + "grad_norm": 0.2122880220413208, + "learning_rate": 0.0006, + "loss": 3.5048160552978516, + "step": 5464 + }, + { + "epoch": 75.90869375273044, + "grad_norm": 0.20818278193473816, + "learning_rate": 0.0006, + "loss": 3.4814553260803223, + "step": 5465 + }, + { + "epoch": 75.92267365661861, + "grad_norm": 0.20316754281520844, + "learning_rate": 0.0006, + "loss": 3.500009775161743, + "step": 5466 + }, + { + "epoch": 75.93665356050677, + "grad_norm": 0.2093973606824875, + "learning_rate": 0.0006, + "loss": 3.4891273975372314, + "step": 5467 + }, + { + "epoch": 75.95063346439493, + "grad_norm": 0.20942363142967224, + "learning_rate": 0.0006, + "loss": 3.5271172523498535, + "step": 5468 + }, + { + "epoch": 75.9646133682831, + "grad_norm": 0.22052891552448273, + "learning_rate": 0.0006, + "loss": 3.508040189743042, + "step": 5469 + }, + { + "epoch": 75.97859327217125, + "grad_norm": 0.2208913266658783, + "learning_rate": 0.0006, + "loss": 3.5075063705444336, + "step": 5470 + }, + { + "epoch": 75.99257317605941, + "grad_norm": 0.20618212223052979, + "learning_rate": 0.0006, + "loss": 3.5018906593322754, + "step": 5471 + }, + { + "epoch": 76.0, + "grad_norm": 0.23915603756904602, + "learning_rate": 0.0006, + "loss": 3.490349054336548, + "step": 5472 + }, + { + "epoch": 76.0, + "eval_loss": 3.9777374267578125, + "eval_runtime": 44.3634, + "eval_samples_per_second": 55.045, + "eval_steps_per_second": 3.449, + "step": 5472 + }, + { + "epoch": 76.01397990388816, + "grad_norm": 0.2418874055147171, + "learning_rate": 0.0006, + "loss": 3.443974018096924, + "step": 5473 + }, + { + "epoch": 76.02795980777633, + "grad_norm": 0.24863727390766144, + "learning_rate": 0.0006, + "loss": 3.4233765602111816, + "step": 5474 + }, + { + "epoch": 76.04193971166448, + "grad_norm": 0.2790309488773346, + "learning_rate": 0.0006, + "loss": 3.441854953765869, + "step": 5475 + }, + { + "epoch": 76.05591961555264, + "grad_norm": 0.26523181796073914, + "learning_rate": 0.0006, + "loss": 3.5107715129852295, + "step": 5476 + }, + { + "epoch": 76.06989951944081, + "grad_norm": 0.22338931262493134, + "learning_rate": 0.0006, + "loss": 3.4805355072021484, + "step": 5477 + }, + { + "epoch": 76.08387942332897, + "grad_norm": 0.2959517240524292, + "learning_rate": 0.0006, + "loss": 3.4402217864990234, + "step": 5478 + }, + { + "epoch": 76.09785932721712, + "grad_norm": 0.29325243830680847, + "learning_rate": 0.0006, + "loss": 3.448124885559082, + "step": 5479 + }, + { + "epoch": 76.1118392311053, + "grad_norm": 0.24323450028896332, + "learning_rate": 0.0006, + "loss": 3.4593453407287598, + "step": 5480 + }, + { + "epoch": 76.12581913499345, + "grad_norm": 0.22358393669128418, + "learning_rate": 0.0006, + "loss": 3.463690757751465, + "step": 5481 + }, + { + "epoch": 76.1397990388816, + "grad_norm": 0.23993486166000366, + "learning_rate": 0.0006, + "loss": 3.468006134033203, + "step": 5482 + }, + { + "epoch": 76.15377894276976, + "grad_norm": 0.2388140857219696, + "learning_rate": 0.0006, + "loss": 3.4615962505340576, + "step": 5483 + }, + { + "epoch": 76.16775884665793, + "grad_norm": 0.21697917580604553, + "learning_rate": 0.0006, + "loss": 3.498293161392212, + "step": 5484 + }, + { + "epoch": 76.18173875054609, + "grad_norm": 0.21932202577590942, + "learning_rate": 0.0006, + "loss": 3.4642910957336426, + "step": 5485 + }, + { + "epoch": 76.19571865443424, + "grad_norm": 0.23881328105926514, + "learning_rate": 0.0006, + "loss": 3.4731202125549316, + "step": 5486 + }, + { + "epoch": 76.20969855832242, + "grad_norm": 0.24131019413471222, + "learning_rate": 0.0006, + "loss": 3.514042854309082, + "step": 5487 + }, + { + "epoch": 76.22367846221057, + "grad_norm": 0.2567158639431, + "learning_rate": 0.0006, + "loss": 3.496260643005371, + "step": 5488 + }, + { + "epoch": 76.23765836609873, + "grad_norm": 0.24889737367630005, + "learning_rate": 0.0006, + "loss": 3.4490113258361816, + "step": 5489 + }, + { + "epoch": 76.2516382699869, + "grad_norm": 0.2594841718673706, + "learning_rate": 0.0006, + "loss": 3.4855408668518066, + "step": 5490 + }, + { + "epoch": 76.26561817387505, + "grad_norm": 0.25379180908203125, + "learning_rate": 0.0006, + "loss": 3.484755277633667, + "step": 5491 + }, + { + "epoch": 76.27959807776321, + "grad_norm": 0.2550116181373596, + "learning_rate": 0.0006, + "loss": 3.472916603088379, + "step": 5492 + }, + { + "epoch": 76.29357798165138, + "grad_norm": 0.22609412670135498, + "learning_rate": 0.0006, + "loss": 3.4655003547668457, + "step": 5493 + }, + { + "epoch": 76.30755788553954, + "grad_norm": 0.2155119925737381, + "learning_rate": 0.0006, + "loss": 3.4827067852020264, + "step": 5494 + }, + { + "epoch": 76.3215377894277, + "grad_norm": 0.23875075578689575, + "learning_rate": 0.0006, + "loss": 3.5023036003112793, + "step": 5495 + }, + { + "epoch": 76.33551769331586, + "grad_norm": 0.20443911850452423, + "learning_rate": 0.0006, + "loss": 3.483880043029785, + "step": 5496 + }, + { + "epoch": 76.34949759720402, + "grad_norm": 0.2072031944990158, + "learning_rate": 0.0006, + "loss": 3.4842820167541504, + "step": 5497 + }, + { + "epoch": 76.36347750109218, + "grad_norm": 0.20795385539531708, + "learning_rate": 0.0006, + "loss": 3.503988265991211, + "step": 5498 + }, + { + "epoch": 76.37745740498035, + "grad_norm": 0.21297147870063782, + "learning_rate": 0.0006, + "loss": 3.4640579223632812, + "step": 5499 + }, + { + "epoch": 76.3914373088685, + "grad_norm": 0.20675528049468994, + "learning_rate": 0.0006, + "loss": 3.462296485900879, + "step": 5500 + }, + { + "epoch": 76.40541721275666, + "grad_norm": 0.20660211145877838, + "learning_rate": 0.0006, + "loss": 3.484466552734375, + "step": 5501 + }, + { + "epoch": 76.41939711664482, + "grad_norm": 0.23562943935394287, + "learning_rate": 0.0006, + "loss": 3.5207087993621826, + "step": 5502 + }, + { + "epoch": 76.43337702053299, + "grad_norm": 0.23841898143291473, + "learning_rate": 0.0006, + "loss": 3.4793286323547363, + "step": 5503 + }, + { + "epoch": 76.44735692442114, + "grad_norm": 0.22068238258361816, + "learning_rate": 0.0006, + "loss": 3.4763593673706055, + "step": 5504 + }, + { + "epoch": 76.4613368283093, + "grad_norm": 0.2076147049665451, + "learning_rate": 0.0006, + "loss": 3.4937491416931152, + "step": 5505 + }, + { + "epoch": 76.47531673219747, + "grad_norm": 0.2138012796640396, + "learning_rate": 0.0006, + "loss": 3.452348232269287, + "step": 5506 + }, + { + "epoch": 76.48929663608563, + "grad_norm": 0.22696714103221893, + "learning_rate": 0.0006, + "loss": 3.4932503700256348, + "step": 5507 + }, + { + "epoch": 76.50327653997378, + "grad_norm": 0.2209995836019516, + "learning_rate": 0.0006, + "loss": 3.4709179401397705, + "step": 5508 + }, + { + "epoch": 76.51725644386195, + "grad_norm": 0.2194036841392517, + "learning_rate": 0.0006, + "loss": 3.5052647590637207, + "step": 5509 + }, + { + "epoch": 76.53123634775011, + "grad_norm": 0.2052760273218155, + "learning_rate": 0.0006, + "loss": 3.4574718475341797, + "step": 5510 + }, + { + "epoch": 76.54521625163827, + "grad_norm": 0.20317119359970093, + "learning_rate": 0.0006, + "loss": 3.502560615539551, + "step": 5511 + }, + { + "epoch": 76.55919615552644, + "grad_norm": 0.19807544350624084, + "learning_rate": 0.0006, + "loss": 3.4829111099243164, + "step": 5512 + }, + { + "epoch": 76.57317605941459, + "grad_norm": 0.23340080678462982, + "learning_rate": 0.0006, + "loss": 3.486851692199707, + "step": 5513 + }, + { + "epoch": 76.58715596330275, + "grad_norm": 0.22508011758327484, + "learning_rate": 0.0006, + "loss": 3.4909684658050537, + "step": 5514 + }, + { + "epoch": 76.60113586719092, + "grad_norm": 0.20285551249980927, + "learning_rate": 0.0006, + "loss": 3.5109267234802246, + "step": 5515 + }, + { + "epoch": 76.61511577107908, + "grad_norm": 0.21424166858196259, + "learning_rate": 0.0006, + "loss": 3.535339832305908, + "step": 5516 + }, + { + "epoch": 76.62909567496723, + "grad_norm": 0.22599352896213531, + "learning_rate": 0.0006, + "loss": 3.513669729232788, + "step": 5517 + }, + { + "epoch": 76.6430755788554, + "grad_norm": 0.23167334496974945, + "learning_rate": 0.0006, + "loss": 3.464939594268799, + "step": 5518 + }, + { + "epoch": 76.65705548274356, + "grad_norm": 0.23066985607147217, + "learning_rate": 0.0006, + "loss": 3.5059399604797363, + "step": 5519 + }, + { + "epoch": 76.67103538663171, + "grad_norm": 0.23994891345500946, + "learning_rate": 0.0006, + "loss": 3.500594139099121, + "step": 5520 + }, + { + "epoch": 76.68501529051987, + "grad_norm": 0.211285799741745, + "learning_rate": 0.0006, + "loss": 3.478522300720215, + "step": 5521 + }, + { + "epoch": 76.69899519440804, + "grad_norm": 0.20075270533561707, + "learning_rate": 0.0006, + "loss": 3.5288326740264893, + "step": 5522 + }, + { + "epoch": 76.7129750982962, + "grad_norm": 0.23529106378555298, + "learning_rate": 0.0006, + "loss": 3.4779129028320312, + "step": 5523 + }, + { + "epoch": 76.72695500218435, + "grad_norm": 0.2311454862356186, + "learning_rate": 0.0006, + "loss": 3.496515989303589, + "step": 5524 + }, + { + "epoch": 76.74093490607252, + "grad_norm": 0.2181762307882309, + "learning_rate": 0.0006, + "loss": 3.5054616928100586, + "step": 5525 + }, + { + "epoch": 76.75491480996068, + "grad_norm": 0.21688713133335114, + "learning_rate": 0.0006, + "loss": 3.486077070236206, + "step": 5526 + }, + { + "epoch": 76.76889471384884, + "grad_norm": 0.208486407995224, + "learning_rate": 0.0006, + "loss": 3.519576072692871, + "step": 5527 + }, + { + "epoch": 76.78287461773701, + "grad_norm": 0.20486991107463837, + "learning_rate": 0.0006, + "loss": 3.521792411804199, + "step": 5528 + }, + { + "epoch": 76.79685452162516, + "grad_norm": 0.19922950863838196, + "learning_rate": 0.0006, + "loss": 3.491504669189453, + "step": 5529 + }, + { + "epoch": 76.81083442551332, + "grad_norm": 0.1996903419494629, + "learning_rate": 0.0006, + "loss": 3.468512535095215, + "step": 5530 + }, + { + "epoch": 76.82481432940149, + "grad_norm": 0.222084179520607, + "learning_rate": 0.0006, + "loss": 3.5042052268981934, + "step": 5531 + }, + { + "epoch": 76.83879423328965, + "grad_norm": 0.20673534274101257, + "learning_rate": 0.0006, + "loss": 3.497204303741455, + "step": 5532 + }, + { + "epoch": 76.8527741371778, + "grad_norm": 0.21386823058128357, + "learning_rate": 0.0006, + "loss": 3.488496780395508, + "step": 5533 + }, + { + "epoch": 76.86675404106597, + "grad_norm": 0.21389922499656677, + "learning_rate": 0.0006, + "loss": 3.4649922847747803, + "step": 5534 + }, + { + "epoch": 76.88073394495413, + "grad_norm": 0.20491436123847961, + "learning_rate": 0.0006, + "loss": 3.5298590660095215, + "step": 5535 + }, + { + "epoch": 76.89471384884229, + "grad_norm": 0.21831119060516357, + "learning_rate": 0.0006, + "loss": 3.4953153133392334, + "step": 5536 + }, + { + "epoch": 76.90869375273044, + "grad_norm": 0.20591680705547333, + "learning_rate": 0.0006, + "loss": 3.4926888942718506, + "step": 5537 + }, + { + "epoch": 76.92267365661861, + "grad_norm": 0.2123914211988449, + "learning_rate": 0.0006, + "loss": 3.4734320640563965, + "step": 5538 + }, + { + "epoch": 76.93665356050677, + "grad_norm": 0.22081080079078674, + "learning_rate": 0.0006, + "loss": 3.500866413116455, + "step": 5539 + }, + { + "epoch": 76.95063346439493, + "grad_norm": 0.20731335878372192, + "learning_rate": 0.0006, + "loss": 3.5050065517425537, + "step": 5540 + }, + { + "epoch": 76.9646133682831, + "grad_norm": 0.21011851727962494, + "learning_rate": 0.0006, + "loss": 3.490650177001953, + "step": 5541 + }, + { + "epoch": 76.97859327217125, + "grad_norm": 0.2390926033258438, + "learning_rate": 0.0006, + "loss": 3.4951090812683105, + "step": 5542 + }, + { + "epoch": 76.99257317605941, + "grad_norm": 0.2596230208873749, + "learning_rate": 0.0006, + "loss": 3.5060253143310547, + "step": 5543 + }, + { + "epoch": 77.0, + "grad_norm": 0.25238990783691406, + "learning_rate": 0.0006, + "loss": 3.4590630531311035, + "step": 5544 + }, + { + "epoch": 77.0, + "eval_loss": 3.9981307983398438, + "eval_runtime": 44.7924, + "eval_samples_per_second": 54.518, + "eval_steps_per_second": 3.416, + "step": 5544 + }, + { + "epoch": 77.01397990388816, + "grad_norm": 0.22038361430168152, + "learning_rate": 0.0006, + "loss": 3.4686741828918457, + "step": 5545 + }, + { + "epoch": 77.02795980777633, + "grad_norm": 0.24023033678531647, + "learning_rate": 0.0006, + "loss": 3.4764277935028076, + "step": 5546 + }, + { + "epoch": 77.04193971166448, + "grad_norm": 0.2292146384716034, + "learning_rate": 0.0006, + "loss": 3.4723358154296875, + "step": 5547 + }, + { + "epoch": 77.05591961555264, + "grad_norm": 0.2493198812007904, + "learning_rate": 0.0006, + "loss": 3.4568331241607666, + "step": 5548 + }, + { + "epoch": 77.06989951944081, + "grad_norm": 0.24256594479084015, + "learning_rate": 0.0006, + "loss": 3.4423820972442627, + "step": 5549 + }, + { + "epoch": 77.08387942332897, + "grad_norm": 0.23987102508544922, + "learning_rate": 0.0006, + "loss": 3.465493679046631, + "step": 5550 + }, + { + "epoch": 77.09785932721712, + "grad_norm": 0.22210195660591125, + "learning_rate": 0.0006, + "loss": 3.4376380443573, + "step": 5551 + }, + { + "epoch": 77.1118392311053, + "grad_norm": 0.24909666180610657, + "learning_rate": 0.0006, + "loss": 3.490691900253296, + "step": 5552 + }, + { + "epoch": 77.12581913499345, + "grad_norm": 0.25187668204307556, + "learning_rate": 0.0006, + "loss": 3.487443447113037, + "step": 5553 + }, + { + "epoch": 77.1397990388816, + "grad_norm": 0.24957744777202606, + "learning_rate": 0.0006, + "loss": 3.4741783142089844, + "step": 5554 + }, + { + "epoch": 77.15377894276976, + "grad_norm": 0.24963968992233276, + "learning_rate": 0.0006, + "loss": 3.442970037460327, + "step": 5555 + }, + { + "epoch": 77.16775884665793, + "grad_norm": 0.2636677026748657, + "learning_rate": 0.0006, + "loss": 3.442943572998047, + "step": 5556 + }, + { + "epoch": 77.18173875054609, + "grad_norm": 0.2390320599079132, + "learning_rate": 0.0006, + "loss": 3.446042537689209, + "step": 5557 + }, + { + "epoch": 77.19571865443424, + "grad_norm": 0.24128425121307373, + "learning_rate": 0.0006, + "loss": 3.4540657997131348, + "step": 5558 + }, + { + "epoch": 77.20969855832242, + "grad_norm": 0.2793026566505432, + "learning_rate": 0.0006, + "loss": 3.475677013397217, + "step": 5559 + }, + { + "epoch": 77.22367846221057, + "grad_norm": 0.2781931459903717, + "learning_rate": 0.0006, + "loss": 3.432591438293457, + "step": 5560 + }, + { + "epoch": 77.23765836609873, + "grad_norm": 0.27104610204696655, + "learning_rate": 0.0006, + "loss": 3.434600353240967, + "step": 5561 + }, + { + "epoch": 77.2516382699869, + "grad_norm": 0.24446748197078705, + "learning_rate": 0.0006, + "loss": 3.4536900520324707, + "step": 5562 + }, + { + "epoch": 77.26561817387505, + "grad_norm": 0.2234327495098114, + "learning_rate": 0.0006, + "loss": 3.472113609313965, + "step": 5563 + }, + { + "epoch": 77.27959807776321, + "grad_norm": 0.22455455362796783, + "learning_rate": 0.0006, + "loss": 3.478461742401123, + "step": 5564 + }, + { + "epoch": 77.29357798165138, + "grad_norm": 0.24232162535190582, + "learning_rate": 0.0006, + "loss": 3.476224899291992, + "step": 5565 + }, + { + "epoch": 77.30755788553954, + "grad_norm": 0.22650426626205444, + "learning_rate": 0.0006, + "loss": 3.4830868244171143, + "step": 5566 + }, + { + "epoch": 77.3215377894277, + "grad_norm": 0.20385561883449554, + "learning_rate": 0.0006, + "loss": 3.4758248329162598, + "step": 5567 + }, + { + "epoch": 77.33551769331586, + "grad_norm": 0.21887609362602234, + "learning_rate": 0.0006, + "loss": 3.444990873336792, + "step": 5568 + }, + { + "epoch": 77.34949759720402, + "grad_norm": 0.2225635051727295, + "learning_rate": 0.0006, + "loss": 3.469752311706543, + "step": 5569 + }, + { + "epoch": 77.36347750109218, + "grad_norm": 0.24805355072021484, + "learning_rate": 0.0006, + "loss": 3.492915153503418, + "step": 5570 + }, + { + "epoch": 77.37745740498035, + "grad_norm": 0.2526283860206604, + "learning_rate": 0.0006, + "loss": 3.465193271636963, + "step": 5571 + }, + { + "epoch": 77.3914373088685, + "grad_norm": 0.24211226403713226, + "learning_rate": 0.0006, + "loss": 3.4413485527038574, + "step": 5572 + }, + { + "epoch": 77.40541721275666, + "grad_norm": 0.2326599657535553, + "learning_rate": 0.0006, + "loss": 3.4961862564086914, + "step": 5573 + }, + { + "epoch": 77.41939711664482, + "grad_norm": 0.20717164874076843, + "learning_rate": 0.0006, + "loss": 3.525745391845703, + "step": 5574 + }, + { + "epoch": 77.43337702053299, + "grad_norm": 0.25477585196495056, + "learning_rate": 0.0006, + "loss": 3.5035266876220703, + "step": 5575 + }, + { + "epoch": 77.44735692442114, + "grad_norm": 0.25919151306152344, + "learning_rate": 0.0006, + "loss": 3.490316867828369, + "step": 5576 + }, + { + "epoch": 77.4613368283093, + "grad_norm": 0.23436813056468964, + "learning_rate": 0.0006, + "loss": 3.4723501205444336, + "step": 5577 + }, + { + "epoch": 77.47531673219747, + "grad_norm": 0.22665677964687347, + "learning_rate": 0.0006, + "loss": 3.478048801422119, + "step": 5578 + }, + { + "epoch": 77.48929663608563, + "grad_norm": 0.2232775241136551, + "learning_rate": 0.0006, + "loss": 3.5051913261413574, + "step": 5579 + }, + { + "epoch": 77.50327653997378, + "grad_norm": 0.22552873194217682, + "learning_rate": 0.0006, + "loss": 3.45631742477417, + "step": 5580 + }, + { + "epoch": 77.51725644386195, + "grad_norm": 0.21110759675502777, + "learning_rate": 0.0006, + "loss": 3.5175533294677734, + "step": 5581 + }, + { + "epoch": 77.53123634775011, + "grad_norm": 0.20691822469234467, + "learning_rate": 0.0006, + "loss": 3.4880058765411377, + "step": 5582 + }, + { + "epoch": 77.54521625163827, + "grad_norm": 0.2127186805009842, + "learning_rate": 0.0006, + "loss": 3.4998388290405273, + "step": 5583 + }, + { + "epoch": 77.55919615552644, + "grad_norm": 0.20933803915977478, + "learning_rate": 0.0006, + "loss": 3.466125249862671, + "step": 5584 + }, + { + "epoch": 77.57317605941459, + "grad_norm": 0.2276456654071808, + "learning_rate": 0.0006, + "loss": 3.459625482559204, + "step": 5585 + }, + { + "epoch": 77.58715596330275, + "grad_norm": 0.22685237228870392, + "learning_rate": 0.0006, + "loss": 3.492049217224121, + "step": 5586 + }, + { + "epoch": 77.60113586719092, + "grad_norm": 0.21664106845855713, + "learning_rate": 0.0006, + "loss": 3.5223960876464844, + "step": 5587 + }, + { + "epoch": 77.61511577107908, + "grad_norm": 0.23587282001972198, + "learning_rate": 0.0006, + "loss": 3.518566370010376, + "step": 5588 + }, + { + "epoch": 77.62909567496723, + "grad_norm": 0.23437966406345367, + "learning_rate": 0.0006, + "loss": 3.491976022720337, + "step": 5589 + }, + { + "epoch": 77.6430755788554, + "grad_norm": 0.23540490865707397, + "learning_rate": 0.0006, + "loss": 3.4611740112304688, + "step": 5590 + }, + { + "epoch": 77.65705548274356, + "grad_norm": 0.25225862860679626, + "learning_rate": 0.0006, + "loss": 3.5131006240844727, + "step": 5591 + }, + { + "epoch": 77.67103538663171, + "grad_norm": 0.24235303699970245, + "learning_rate": 0.0006, + "loss": 3.5291337966918945, + "step": 5592 + }, + { + "epoch": 77.68501529051987, + "grad_norm": 0.20641890168190002, + "learning_rate": 0.0006, + "loss": 3.484412431716919, + "step": 5593 + }, + { + "epoch": 77.69899519440804, + "grad_norm": 0.22332488000392914, + "learning_rate": 0.0006, + "loss": 3.521279811859131, + "step": 5594 + }, + { + "epoch": 77.7129750982962, + "grad_norm": 0.22490297257900238, + "learning_rate": 0.0006, + "loss": 3.493229866027832, + "step": 5595 + }, + { + "epoch": 77.72695500218435, + "grad_norm": 0.19960972666740417, + "learning_rate": 0.0006, + "loss": 3.454841136932373, + "step": 5596 + }, + { + "epoch": 77.74093490607252, + "grad_norm": 0.22220884263515472, + "learning_rate": 0.0006, + "loss": 3.490431547164917, + "step": 5597 + }, + { + "epoch": 77.75491480996068, + "grad_norm": 0.22000782191753387, + "learning_rate": 0.0006, + "loss": 3.52382230758667, + "step": 5598 + }, + { + "epoch": 77.76889471384884, + "grad_norm": 0.2174588292837143, + "learning_rate": 0.0006, + "loss": 3.514397621154785, + "step": 5599 + }, + { + "epoch": 77.78287461773701, + "grad_norm": 0.2279520481824875, + "learning_rate": 0.0006, + "loss": 3.4750583171844482, + "step": 5600 + }, + { + "epoch": 77.79685452162516, + "grad_norm": 0.21765829622745514, + "learning_rate": 0.0006, + "loss": 3.512150526046753, + "step": 5601 + }, + { + "epoch": 77.81083442551332, + "grad_norm": 0.20984821021556854, + "learning_rate": 0.0006, + "loss": 3.4623773097991943, + "step": 5602 + }, + { + "epoch": 77.82481432940149, + "grad_norm": 0.22201800346374512, + "learning_rate": 0.0006, + "loss": 3.4842002391815186, + "step": 5603 + }, + { + "epoch": 77.83879423328965, + "grad_norm": 0.194268599152565, + "learning_rate": 0.0006, + "loss": 3.4671778678894043, + "step": 5604 + }, + { + "epoch": 77.8527741371778, + "grad_norm": 0.26137876510620117, + "learning_rate": 0.0006, + "loss": 3.5220279693603516, + "step": 5605 + }, + { + "epoch": 77.86675404106597, + "grad_norm": 0.34975603222846985, + "learning_rate": 0.0006, + "loss": 3.500293254852295, + "step": 5606 + }, + { + "epoch": 77.88073394495413, + "grad_norm": 0.35652515292167664, + "learning_rate": 0.0006, + "loss": 3.514991521835327, + "step": 5607 + }, + { + "epoch": 77.89471384884229, + "grad_norm": 0.29652512073516846, + "learning_rate": 0.0006, + "loss": 3.4788379669189453, + "step": 5608 + }, + { + "epoch": 77.90869375273044, + "grad_norm": 0.24133038520812988, + "learning_rate": 0.0006, + "loss": 3.5168981552124023, + "step": 5609 + }, + { + "epoch": 77.92267365661861, + "grad_norm": 0.26977378129959106, + "learning_rate": 0.0006, + "loss": 3.479185104370117, + "step": 5610 + }, + { + "epoch": 77.93665356050677, + "grad_norm": 0.3470935523509979, + "learning_rate": 0.0006, + "loss": 3.477111577987671, + "step": 5611 + }, + { + "epoch": 77.95063346439493, + "grad_norm": 0.29587116837501526, + "learning_rate": 0.0006, + "loss": 3.497286319732666, + "step": 5612 + }, + { + "epoch": 77.9646133682831, + "grad_norm": 0.23551815748214722, + "learning_rate": 0.0006, + "loss": 3.521495819091797, + "step": 5613 + }, + { + "epoch": 77.97859327217125, + "grad_norm": 0.23533079028129578, + "learning_rate": 0.0006, + "loss": 3.525179147720337, + "step": 5614 + }, + { + "epoch": 77.99257317605941, + "grad_norm": 0.24980391561985016, + "learning_rate": 0.0006, + "loss": 3.5037364959716797, + "step": 5615 + }, + { + "epoch": 78.0, + "grad_norm": 0.26153600215911865, + "learning_rate": 0.0006, + "loss": 3.515974521636963, + "step": 5616 + }, + { + "epoch": 78.0, + "eval_loss": 3.989530563354492, + "eval_runtime": 44.8691, + "eval_samples_per_second": 54.425, + "eval_steps_per_second": 3.41, + "step": 5616 + }, + { + "epoch": 78.01397990388816, + "grad_norm": 0.2100374549627304, + "learning_rate": 0.0006, + "loss": 3.4879980087280273, + "step": 5617 + }, + { + "epoch": 78.02795980777633, + "grad_norm": 0.23255975544452667, + "learning_rate": 0.0006, + "loss": 3.43629789352417, + "step": 5618 + }, + { + "epoch": 78.04193971166448, + "grad_norm": 0.2895263731479645, + "learning_rate": 0.0006, + "loss": 3.4705724716186523, + "step": 5619 + }, + { + "epoch": 78.05591961555264, + "grad_norm": 0.31454774737358093, + "learning_rate": 0.0006, + "loss": 3.451716661453247, + "step": 5620 + }, + { + "epoch": 78.06989951944081, + "grad_norm": 0.2520895004272461, + "learning_rate": 0.0006, + "loss": 3.4636831283569336, + "step": 5621 + }, + { + "epoch": 78.08387942332897, + "grad_norm": 0.24788936972618103, + "learning_rate": 0.0006, + "loss": 3.4423277378082275, + "step": 5622 + }, + { + "epoch": 78.09785932721712, + "grad_norm": 0.27085408568382263, + "learning_rate": 0.0006, + "loss": 3.4572410583496094, + "step": 5623 + }, + { + "epoch": 78.1118392311053, + "grad_norm": 0.25386592745780945, + "learning_rate": 0.0006, + "loss": 3.4571075439453125, + "step": 5624 + }, + { + "epoch": 78.12581913499345, + "grad_norm": 0.24330876767635345, + "learning_rate": 0.0006, + "loss": 3.4500632286071777, + "step": 5625 + }, + { + "epoch": 78.1397990388816, + "grad_norm": 0.24485483765602112, + "learning_rate": 0.0006, + "loss": 3.475353240966797, + "step": 5626 + }, + { + "epoch": 78.15377894276976, + "grad_norm": 0.25498270988464355, + "learning_rate": 0.0006, + "loss": 3.485459089279175, + "step": 5627 + }, + { + "epoch": 78.16775884665793, + "grad_norm": 0.24147716164588928, + "learning_rate": 0.0006, + "loss": 3.5107951164245605, + "step": 5628 + }, + { + "epoch": 78.18173875054609, + "grad_norm": 0.22279144823551178, + "learning_rate": 0.0006, + "loss": 3.510791778564453, + "step": 5629 + }, + { + "epoch": 78.19571865443424, + "grad_norm": 0.2423589825630188, + "learning_rate": 0.0006, + "loss": 3.4248547554016113, + "step": 5630 + }, + { + "epoch": 78.20969855832242, + "grad_norm": 0.25929296016693115, + "learning_rate": 0.0006, + "loss": 3.4600253105163574, + "step": 5631 + }, + { + "epoch": 78.22367846221057, + "grad_norm": 0.23566672205924988, + "learning_rate": 0.0006, + "loss": 3.4578680992126465, + "step": 5632 + }, + { + "epoch": 78.23765836609873, + "grad_norm": 0.23223716020584106, + "learning_rate": 0.0006, + "loss": 3.4563381671905518, + "step": 5633 + }, + { + "epoch": 78.2516382699869, + "grad_norm": 0.2368844598531723, + "learning_rate": 0.0006, + "loss": 3.4480276107788086, + "step": 5634 + }, + { + "epoch": 78.26561817387505, + "grad_norm": 0.24832561612129211, + "learning_rate": 0.0006, + "loss": 3.496946334838867, + "step": 5635 + }, + { + "epoch": 78.27959807776321, + "grad_norm": 0.24947865307331085, + "learning_rate": 0.0006, + "loss": 3.4892706871032715, + "step": 5636 + }, + { + "epoch": 78.29357798165138, + "grad_norm": 0.23110949993133545, + "learning_rate": 0.0006, + "loss": 3.454031467437744, + "step": 5637 + }, + { + "epoch": 78.30755788553954, + "grad_norm": 0.2529185116291046, + "learning_rate": 0.0006, + "loss": 3.4528121948242188, + "step": 5638 + }, + { + "epoch": 78.3215377894277, + "grad_norm": 0.28784650564193726, + "learning_rate": 0.0006, + "loss": 3.4587960243225098, + "step": 5639 + }, + { + "epoch": 78.33551769331586, + "grad_norm": 0.3063037097454071, + "learning_rate": 0.0006, + "loss": 3.4946982860565186, + "step": 5640 + }, + { + "epoch": 78.34949759720402, + "grad_norm": 0.25911253690719604, + "learning_rate": 0.0006, + "loss": 3.4736804962158203, + "step": 5641 + }, + { + "epoch": 78.36347750109218, + "grad_norm": 0.24036385118961334, + "learning_rate": 0.0006, + "loss": 3.502281665802002, + "step": 5642 + }, + { + "epoch": 78.37745740498035, + "grad_norm": 0.3214871883392334, + "learning_rate": 0.0006, + "loss": 3.462540626525879, + "step": 5643 + }, + { + "epoch": 78.3914373088685, + "grad_norm": 0.2729061245918274, + "learning_rate": 0.0006, + "loss": 3.4772369861602783, + "step": 5644 + }, + { + "epoch": 78.40541721275666, + "grad_norm": 0.19852563738822937, + "learning_rate": 0.0006, + "loss": 3.483013391494751, + "step": 5645 + }, + { + "epoch": 78.41939711664482, + "grad_norm": 0.23686745762825012, + "learning_rate": 0.0006, + "loss": 3.471310615539551, + "step": 5646 + }, + { + "epoch": 78.43337702053299, + "grad_norm": 0.2407468557357788, + "learning_rate": 0.0006, + "loss": 3.468752384185791, + "step": 5647 + }, + { + "epoch": 78.44735692442114, + "grad_norm": 0.21730437874794006, + "learning_rate": 0.0006, + "loss": 3.4616923332214355, + "step": 5648 + }, + { + "epoch": 78.4613368283093, + "grad_norm": 0.22194430232048035, + "learning_rate": 0.0006, + "loss": 3.5024828910827637, + "step": 5649 + }, + { + "epoch": 78.47531673219747, + "grad_norm": 0.20579543709754944, + "learning_rate": 0.0006, + "loss": 3.4653728008270264, + "step": 5650 + }, + { + "epoch": 78.48929663608563, + "grad_norm": 0.21063153445720673, + "learning_rate": 0.0006, + "loss": 3.460247039794922, + "step": 5651 + }, + { + "epoch": 78.50327653997378, + "grad_norm": 0.2112281769514084, + "learning_rate": 0.0006, + "loss": 3.5004734992980957, + "step": 5652 + }, + { + "epoch": 78.51725644386195, + "grad_norm": 0.21281960606575012, + "learning_rate": 0.0006, + "loss": 3.49147367477417, + "step": 5653 + }, + { + "epoch": 78.53123634775011, + "grad_norm": 0.21079784631729126, + "learning_rate": 0.0006, + "loss": 3.4941132068634033, + "step": 5654 + }, + { + "epoch": 78.54521625163827, + "grad_norm": 0.2113049030303955, + "learning_rate": 0.0006, + "loss": 3.4483916759490967, + "step": 5655 + }, + { + "epoch": 78.55919615552644, + "grad_norm": 0.19891786575317383, + "learning_rate": 0.0006, + "loss": 3.477287769317627, + "step": 5656 + }, + { + "epoch": 78.57317605941459, + "grad_norm": 0.24941609799861908, + "learning_rate": 0.0006, + "loss": 3.527385711669922, + "step": 5657 + }, + { + "epoch": 78.58715596330275, + "grad_norm": 0.23287516832351685, + "learning_rate": 0.0006, + "loss": 3.4806594848632812, + "step": 5658 + }, + { + "epoch": 78.60113586719092, + "grad_norm": 0.211700439453125, + "learning_rate": 0.0006, + "loss": 3.455684185028076, + "step": 5659 + }, + { + "epoch": 78.61511577107908, + "grad_norm": 0.20621828734874725, + "learning_rate": 0.0006, + "loss": 3.4775843620300293, + "step": 5660 + }, + { + "epoch": 78.62909567496723, + "grad_norm": 0.2308485507965088, + "learning_rate": 0.0006, + "loss": 3.4990549087524414, + "step": 5661 + }, + { + "epoch": 78.6430755788554, + "grad_norm": 0.22869032621383667, + "learning_rate": 0.0006, + "loss": 3.476654529571533, + "step": 5662 + }, + { + "epoch": 78.65705548274356, + "grad_norm": 0.2244352102279663, + "learning_rate": 0.0006, + "loss": 3.4927053451538086, + "step": 5663 + }, + { + "epoch": 78.67103538663171, + "grad_norm": 0.21660304069519043, + "learning_rate": 0.0006, + "loss": 3.509037494659424, + "step": 5664 + }, + { + "epoch": 78.68501529051987, + "grad_norm": 0.21199069917201996, + "learning_rate": 0.0006, + "loss": 3.5118260383605957, + "step": 5665 + }, + { + "epoch": 78.69899519440804, + "grad_norm": 0.23588138818740845, + "learning_rate": 0.0006, + "loss": 3.497911214828491, + "step": 5666 + }, + { + "epoch": 78.7129750982962, + "grad_norm": 0.24299076199531555, + "learning_rate": 0.0006, + "loss": 3.4978718757629395, + "step": 5667 + }, + { + "epoch": 78.72695500218435, + "grad_norm": 0.22472943365573883, + "learning_rate": 0.0006, + "loss": 3.4873275756835938, + "step": 5668 + }, + { + "epoch": 78.74093490607252, + "grad_norm": 0.24047710001468658, + "learning_rate": 0.0006, + "loss": 3.51192307472229, + "step": 5669 + }, + { + "epoch": 78.75491480996068, + "grad_norm": 0.23834499716758728, + "learning_rate": 0.0006, + "loss": 3.5092411041259766, + "step": 5670 + }, + { + "epoch": 78.76889471384884, + "grad_norm": 0.22663438320159912, + "learning_rate": 0.0006, + "loss": 3.4869158267974854, + "step": 5671 + }, + { + "epoch": 78.78287461773701, + "grad_norm": 0.23967741429805756, + "learning_rate": 0.0006, + "loss": 3.4928178787231445, + "step": 5672 + }, + { + "epoch": 78.79685452162516, + "grad_norm": 0.2554507851600647, + "learning_rate": 0.0006, + "loss": 3.506929636001587, + "step": 5673 + }, + { + "epoch": 78.81083442551332, + "grad_norm": 0.2269635796546936, + "learning_rate": 0.0006, + "loss": 3.491553544998169, + "step": 5674 + }, + { + "epoch": 78.82481432940149, + "grad_norm": 0.22387325763702393, + "learning_rate": 0.0006, + "loss": 3.510486602783203, + "step": 5675 + }, + { + "epoch": 78.83879423328965, + "grad_norm": 0.22415105998516083, + "learning_rate": 0.0006, + "loss": 3.508218765258789, + "step": 5676 + }, + { + "epoch": 78.8527741371778, + "grad_norm": 0.21340659260749817, + "learning_rate": 0.0006, + "loss": 3.4840855598449707, + "step": 5677 + }, + { + "epoch": 78.86675404106597, + "grad_norm": 0.20351317524909973, + "learning_rate": 0.0006, + "loss": 3.485891342163086, + "step": 5678 + }, + { + "epoch": 78.88073394495413, + "grad_norm": 0.21389521658420563, + "learning_rate": 0.0006, + "loss": 3.447760581970215, + "step": 5679 + }, + { + "epoch": 78.89471384884229, + "grad_norm": 0.20613767206668854, + "learning_rate": 0.0006, + "loss": 3.484274387359619, + "step": 5680 + }, + { + "epoch": 78.90869375273044, + "grad_norm": 0.22112590074539185, + "learning_rate": 0.0006, + "loss": 3.4902679920196533, + "step": 5681 + }, + { + "epoch": 78.92267365661861, + "grad_norm": 0.24395327270030975, + "learning_rate": 0.0006, + "loss": 3.5017199516296387, + "step": 5682 + }, + { + "epoch": 78.93665356050677, + "grad_norm": 0.21891266107559204, + "learning_rate": 0.0006, + "loss": 3.4892828464508057, + "step": 5683 + }, + { + "epoch": 78.95063346439493, + "grad_norm": 0.1842963546514511, + "learning_rate": 0.0006, + "loss": 3.4611716270446777, + "step": 5684 + }, + { + "epoch": 78.9646133682831, + "grad_norm": 0.21199378371238708, + "learning_rate": 0.0006, + "loss": 3.487452507019043, + "step": 5685 + }, + { + "epoch": 78.97859327217125, + "grad_norm": 0.2304743379354477, + "learning_rate": 0.0006, + "loss": 3.502875804901123, + "step": 5686 + }, + { + "epoch": 78.99257317605941, + "grad_norm": 0.22459475696086884, + "learning_rate": 0.0006, + "loss": 3.47969388961792, + "step": 5687 + }, + { + "epoch": 79.0, + "grad_norm": 0.22847296297550201, + "learning_rate": 0.0006, + "loss": 3.497244358062744, + "step": 5688 + }, + { + "epoch": 79.0, + "eval_loss": 3.9824025630950928, + "eval_runtime": 45.0842, + "eval_samples_per_second": 54.165, + "eval_steps_per_second": 3.394, + "step": 5688 + }, + { + "epoch": 79.01397990388816, + "grad_norm": 0.2116587609052658, + "learning_rate": 0.0006, + "loss": 3.467320442199707, + "step": 5689 + }, + { + "epoch": 79.02795980777633, + "grad_norm": 0.2433212846517563, + "learning_rate": 0.0006, + "loss": 3.454660415649414, + "step": 5690 + }, + { + "epoch": 79.04193971166448, + "grad_norm": 0.27106034755706787, + "learning_rate": 0.0006, + "loss": 3.4242570400238037, + "step": 5691 + }, + { + "epoch": 79.05591961555264, + "grad_norm": 0.2392120659351349, + "learning_rate": 0.0006, + "loss": 3.461986541748047, + "step": 5692 + }, + { + "epoch": 79.06989951944081, + "grad_norm": 0.2061600536108017, + "learning_rate": 0.0006, + "loss": 3.462704658508301, + "step": 5693 + }, + { + "epoch": 79.08387942332897, + "grad_norm": 0.23523560166358948, + "learning_rate": 0.0006, + "loss": 3.435553789138794, + "step": 5694 + }, + { + "epoch": 79.09785932721712, + "grad_norm": 0.23340672254562378, + "learning_rate": 0.0006, + "loss": 3.4382264614105225, + "step": 5695 + }, + { + "epoch": 79.1118392311053, + "grad_norm": 0.23986691236495972, + "learning_rate": 0.0006, + "loss": 3.465056896209717, + "step": 5696 + }, + { + "epoch": 79.12581913499345, + "grad_norm": 0.3069128394126892, + "learning_rate": 0.0006, + "loss": 3.4774551391601562, + "step": 5697 + }, + { + "epoch": 79.1397990388816, + "grad_norm": 0.3146822154521942, + "learning_rate": 0.0006, + "loss": 3.463569402694702, + "step": 5698 + }, + { + "epoch": 79.15377894276976, + "grad_norm": 0.2516225576400757, + "learning_rate": 0.0006, + "loss": 3.455902576446533, + "step": 5699 + }, + { + "epoch": 79.16775884665793, + "grad_norm": 0.23645997047424316, + "learning_rate": 0.0006, + "loss": 3.4733195304870605, + "step": 5700 + }, + { + "epoch": 79.18173875054609, + "grad_norm": 0.23653559386730194, + "learning_rate": 0.0006, + "loss": 3.4751782417297363, + "step": 5701 + }, + { + "epoch": 79.19571865443424, + "grad_norm": 0.2404588907957077, + "learning_rate": 0.0006, + "loss": 3.43743896484375, + "step": 5702 + }, + { + "epoch": 79.20969855832242, + "grad_norm": 0.2621341049671173, + "learning_rate": 0.0006, + "loss": 3.4895966053009033, + "step": 5703 + }, + { + "epoch": 79.22367846221057, + "grad_norm": 0.28223180770874023, + "learning_rate": 0.0006, + "loss": 3.4525022506713867, + "step": 5704 + }, + { + "epoch": 79.23765836609873, + "grad_norm": 0.25029054284095764, + "learning_rate": 0.0006, + "loss": 3.491457939147949, + "step": 5705 + }, + { + "epoch": 79.2516382699869, + "grad_norm": 0.20627525448799133, + "learning_rate": 0.0006, + "loss": 3.4669456481933594, + "step": 5706 + }, + { + "epoch": 79.26561817387505, + "grad_norm": 0.2029162049293518, + "learning_rate": 0.0006, + "loss": 3.467924118041992, + "step": 5707 + }, + { + "epoch": 79.27959807776321, + "grad_norm": 0.21813155710697174, + "learning_rate": 0.0006, + "loss": 3.4625706672668457, + "step": 5708 + }, + { + "epoch": 79.29357798165138, + "grad_norm": 0.22105057537555695, + "learning_rate": 0.0006, + "loss": 3.475510597229004, + "step": 5709 + }, + { + "epoch": 79.30755788553954, + "grad_norm": 0.22906996309757233, + "learning_rate": 0.0006, + "loss": 3.468635320663452, + "step": 5710 + }, + { + "epoch": 79.3215377894277, + "grad_norm": 0.24189208447933197, + "learning_rate": 0.0006, + "loss": 3.5031652450561523, + "step": 5711 + }, + { + "epoch": 79.33551769331586, + "grad_norm": 0.24393346905708313, + "learning_rate": 0.0006, + "loss": 3.454542636871338, + "step": 5712 + }, + { + "epoch": 79.34949759720402, + "grad_norm": 0.2266826182603836, + "learning_rate": 0.0006, + "loss": 3.4841208457946777, + "step": 5713 + }, + { + "epoch": 79.36347750109218, + "grad_norm": 0.2427995502948761, + "learning_rate": 0.0006, + "loss": 3.4595608711242676, + "step": 5714 + }, + { + "epoch": 79.37745740498035, + "grad_norm": 0.22999171912670135, + "learning_rate": 0.0006, + "loss": 3.485996723175049, + "step": 5715 + }, + { + "epoch": 79.3914373088685, + "grad_norm": 0.20932789146900177, + "learning_rate": 0.0006, + "loss": 3.488872528076172, + "step": 5716 + }, + { + "epoch": 79.40541721275666, + "grad_norm": 0.21802127361297607, + "learning_rate": 0.0006, + "loss": 3.4697980880737305, + "step": 5717 + }, + { + "epoch": 79.41939711664482, + "grad_norm": 0.197403684258461, + "learning_rate": 0.0006, + "loss": 3.486513614654541, + "step": 5718 + }, + { + "epoch": 79.43337702053299, + "grad_norm": 0.23447830975055695, + "learning_rate": 0.0006, + "loss": 3.475939989089966, + "step": 5719 + }, + { + "epoch": 79.44735692442114, + "grad_norm": 0.22854745388031006, + "learning_rate": 0.0006, + "loss": 3.465761661529541, + "step": 5720 + }, + { + "epoch": 79.4613368283093, + "grad_norm": 0.23276479542255402, + "learning_rate": 0.0006, + "loss": 3.4629950523376465, + "step": 5721 + }, + { + "epoch": 79.47531673219747, + "grad_norm": 0.2330375462770462, + "learning_rate": 0.0006, + "loss": 3.4637608528137207, + "step": 5722 + }, + { + "epoch": 79.48929663608563, + "grad_norm": 0.20138737559318542, + "learning_rate": 0.0006, + "loss": 3.481213092803955, + "step": 5723 + }, + { + "epoch": 79.50327653997378, + "grad_norm": 0.21511636674404144, + "learning_rate": 0.0006, + "loss": 3.476829767227173, + "step": 5724 + }, + { + "epoch": 79.51725644386195, + "grad_norm": 0.23398199677467346, + "learning_rate": 0.0006, + "loss": 3.489365577697754, + "step": 5725 + }, + { + "epoch": 79.53123634775011, + "grad_norm": 0.2232203334569931, + "learning_rate": 0.0006, + "loss": 3.4860544204711914, + "step": 5726 + }, + { + "epoch": 79.54521625163827, + "grad_norm": 0.22046223282814026, + "learning_rate": 0.0006, + "loss": 3.474432945251465, + "step": 5727 + }, + { + "epoch": 79.55919615552644, + "grad_norm": 0.21202176809310913, + "learning_rate": 0.0006, + "loss": 3.4932260513305664, + "step": 5728 + }, + { + "epoch": 79.57317605941459, + "grad_norm": 0.20418033003807068, + "learning_rate": 0.0006, + "loss": 3.4956419467926025, + "step": 5729 + }, + { + "epoch": 79.58715596330275, + "grad_norm": 0.2247099131345749, + "learning_rate": 0.0006, + "loss": 3.4714908599853516, + "step": 5730 + }, + { + "epoch": 79.60113586719092, + "grad_norm": 0.22176751494407654, + "learning_rate": 0.0006, + "loss": 3.4729676246643066, + "step": 5731 + }, + { + "epoch": 79.61511577107908, + "grad_norm": 0.3019230365753174, + "learning_rate": 0.0006, + "loss": 3.510695695877075, + "step": 5732 + }, + { + "epoch": 79.62909567496723, + "grad_norm": 0.2699214220046997, + "learning_rate": 0.0006, + "loss": 3.4848737716674805, + "step": 5733 + }, + { + "epoch": 79.6430755788554, + "grad_norm": 0.21180644631385803, + "learning_rate": 0.0006, + "loss": 3.4982075691223145, + "step": 5734 + }, + { + "epoch": 79.65705548274356, + "grad_norm": 0.22198693454265594, + "learning_rate": 0.0006, + "loss": 3.4891958236694336, + "step": 5735 + }, + { + "epoch": 79.67103538663171, + "grad_norm": 0.23550960421562195, + "learning_rate": 0.0006, + "loss": 3.4809060096740723, + "step": 5736 + }, + { + "epoch": 79.68501529051987, + "grad_norm": 0.22033970057964325, + "learning_rate": 0.0006, + "loss": 3.4804179668426514, + "step": 5737 + }, + { + "epoch": 79.69899519440804, + "grad_norm": 0.22671130299568176, + "learning_rate": 0.0006, + "loss": 3.5053179264068604, + "step": 5738 + }, + { + "epoch": 79.7129750982962, + "grad_norm": 0.22178004682064056, + "learning_rate": 0.0006, + "loss": 3.481842279434204, + "step": 5739 + }, + { + "epoch": 79.72695500218435, + "grad_norm": 0.21100834012031555, + "learning_rate": 0.0006, + "loss": 3.4759697914123535, + "step": 5740 + }, + { + "epoch": 79.74093490607252, + "grad_norm": 0.22176271677017212, + "learning_rate": 0.0006, + "loss": 3.475595712661743, + "step": 5741 + }, + { + "epoch": 79.75491480996068, + "grad_norm": 0.24720509350299835, + "learning_rate": 0.0006, + "loss": 3.489837646484375, + "step": 5742 + }, + { + "epoch": 79.76889471384884, + "grad_norm": 0.26469993591308594, + "learning_rate": 0.0006, + "loss": 3.506197452545166, + "step": 5743 + }, + { + "epoch": 79.78287461773701, + "grad_norm": 0.24642309546470642, + "learning_rate": 0.0006, + "loss": 3.470227003097534, + "step": 5744 + }, + { + "epoch": 79.79685452162516, + "grad_norm": 0.2302687019109726, + "learning_rate": 0.0006, + "loss": 3.4808273315429688, + "step": 5745 + }, + { + "epoch": 79.81083442551332, + "grad_norm": 0.21863581240177155, + "learning_rate": 0.0006, + "loss": 3.4925639629364014, + "step": 5746 + }, + { + "epoch": 79.82481432940149, + "grad_norm": 0.22680892050266266, + "learning_rate": 0.0006, + "loss": 3.5036230087280273, + "step": 5747 + }, + { + "epoch": 79.83879423328965, + "grad_norm": 0.2469770610332489, + "learning_rate": 0.0006, + "loss": 3.483344078063965, + "step": 5748 + }, + { + "epoch": 79.8527741371778, + "grad_norm": 0.24359549582004547, + "learning_rate": 0.0006, + "loss": 3.4770007133483887, + "step": 5749 + }, + { + "epoch": 79.86675404106597, + "grad_norm": 0.22829081118106842, + "learning_rate": 0.0006, + "loss": 3.4755868911743164, + "step": 5750 + }, + { + "epoch": 79.88073394495413, + "grad_norm": 0.19276872277259827, + "learning_rate": 0.0006, + "loss": 3.4675350189208984, + "step": 5751 + }, + { + "epoch": 79.89471384884229, + "grad_norm": 0.19389234483242035, + "learning_rate": 0.0006, + "loss": 3.4747910499572754, + "step": 5752 + }, + { + "epoch": 79.90869375273044, + "grad_norm": 0.19570349156856537, + "learning_rate": 0.0006, + "loss": 3.5035524368286133, + "step": 5753 + }, + { + "epoch": 79.92267365661861, + "grad_norm": 0.21111367642879486, + "learning_rate": 0.0006, + "loss": 3.488398551940918, + "step": 5754 + }, + { + "epoch": 79.93665356050677, + "grad_norm": 0.219063401222229, + "learning_rate": 0.0006, + "loss": 3.483445882797241, + "step": 5755 + }, + { + "epoch": 79.95063346439493, + "grad_norm": 0.22253118455410004, + "learning_rate": 0.0006, + "loss": 3.45628023147583, + "step": 5756 + }, + { + "epoch": 79.9646133682831, + "grad_norm": 0.25083762407302856, + "learning_rate": 0.0006, + "loss": 3.5318427085876465, + "step": 5757 + }, + { + "epoch": 79.97859327217125, + "grad_norm": 0.22656984627246857, + "learning_rate": 0.0006, + "loss": 3.48038649559021, + "step": 5758 + }, + { + "epoch": 79.99257317605941, + "grad_norm": 0.20029467344284058, + "learning_rate": 0.0006, + "loss": 3.482250213623047, + "step": 5759 + }, + { + "epoch": 80.0, + "grad_norm": 0.24279549717903137, + "learning_rate": 0.0006, + "loss": 3.5121026039123535, + "step": 5760 + }, + { + "epoch": 80.0, + "eval_loss": 3.978234052658081, + "eval_runtime": 44.1332, + "eval_samples_per_second": 55.333, + "eval_steps_per_second": 3.467, + "step": 5760 + }, + { + "epoch": 80.01397990388816, + "grad_norm": 0.25131338834762573, + "learning_rate": 0.0006, + "loss": 3.4301276206970215, + "step": 5761 + }, + { + "epoch": 80.02795980777633, + "grad_norm": 0.2534768283367157, + "learning_rate": 0.0006, + "loss": 3.451167583465576, + "step": 5762 + }, + { + "epoch": 80.04193971166448, + "grad_norm": 0.25048282742500305, + "learning_rate": 0.0006, + "loss": 3.481504440307617, + "step": 5763 + }, + { + "epoch": 80.05591961555264, + "grad_norm": 0.24254269897937775, + "learning_rate": 0.0006, + "loss": 3.4106149673461914, + "step": 5764 + }, + { + "epoch": 80.06989951944081, + "grad_norm": 0.22116127610206604, + "learning_rate": 0.0006, + "loss": 3.4241909980773926, + "step": 5765 + }, + { + "epoch": 80.08387942332897, + "grad_norm": 0.23056873679161072, + "learning_rate": 0.0006, + "loss": 3.441988468170166, + "step": 5766 + }, + { + "epoch": 80.09785932721712, + "grad_norm": 0.270584374666214, + "learning_rate": 0.0006, + "loss": 3.443169116973877, + "step": 5767 + }, + { + "epoch": 80.1118392311053, + "grad_norm": 0.2976143956184387, + "learning_rate": 0.0006, + "loss": 3.448213815689087, + "step": 5768 + }, + { + "epoch": 80.12581913499345, + "grad_norm": 0.26311707496643066, + "learning_rate": 0.0006, + "loss": 3.4544711112976074, + "step": 5769 + }, + { + "epoch": 80.1397990388816, + "grad_norm": 0.23963525891304016, + "learning_rate": 0.0006, + "loss": 3.470118522644043, + "step": 5770 + }, + { + "epoch": 80.15377894276976, + "grad_norm": 0.22066232562065125, + "learning_rate": 0.0006, + "loss": 3.454728126525879, + "step": 5771 + }, + { + "epoch": 80.16775884665793, + "grad_norm": 0.2365395873785019, + "learning_rate": 0.0006, + "loss": 3.4711155891418457, + "step": 5772 + }, + { + "epoch": 80.18173875054609, + "grad_norm": 0.2447291910648346, + "learning_rate": 0.0006, + "loss": 3.4850234985351562, + "step": 5773 + }, + { + "epoch": 80.19571865443424, + "grad_norm": 0.21378695964813232, + "learning_rate": 0.0006, + "loss": 3.4519004821777344, + "step": 5774 + }, + { + "epoch": 80.20969855832242, + "grad_norm": 0.22056379914283752, + "learning_rate": 0.0006, + "loss": 3.440544366836548, + "step": 5775 + }, + { + "epoch": 80.22367846221057, + "grad_norm": 0.2642355263233185, + "learning_rate": 0.0006, + "loss": 3.474979877471924, + "step": 5776 + }, + { + "epoch": 80.23765836609873, + "grad_norm": 0.2748482823371887, + "learning_rate": 0.0006, + "loss": 3.475363254547119, + "step": 5777 + }, + { + "epoch": 80.2516382699869, + "grad_norm": 0.24379116296768188, + "learning_rate": 0.0006, + "loss": 3.496967315673828, + "step": 5778 + }, + { + "epoch": 80.26561817387505, + "grad_norm": 0.2028840184211731, + "learning_rate": 0.0006, + "loss": 3.431668758392334, + "step": 5779 + }, + { + "epoch": 80.27959807776321, + "grad_norm": 0.21429325640201569, + "learning_rate": 0.0006, + "loss": 3.440277099609375, + "step": 5780 + }, + { + "epoch": 80.29357798165138, + "grad_norm": 0.24563860893249512, + "learning_rate": 0.0006, + "loss": 3.4491970539093018, + "step": 5781 + }, + { + "epoch": 80.30755788553954, + "grad_norm": 0.26240795850753784, + "learning_rate": 0.0006, + "loss": 3.4703845977783203, + "step": 5782 + }, + { + "epoch": 80.3215377894277, + "grad_norm": 0.22902022302150726, + "learning_rate": 0.0006, + "loss": 3.472461700439453, + "step": 5783 + }, + { + "epoch": 80.33551769331586, + "grad_norm": 0.21905358135700226, + "learning_rate": 0.0006, + "loss": 3.4711859226226807, + "step": 5784 + }, + { + "epoch": 80.34949759720402, + "grad_norm": 0.2465618997812271, + "learning_rate": 0.0006, + "loss": 3.4803764820098877, + "step": 5785 + }, + { + "epoch": 80.36347750109218, + "grad_norm": 0.22397007048130035, + "learning_rate": 0.0006, + "loss": 3.5154547691345215, + "step": 5786 + }, + { + "epoch": 80.37745740498035, + "grad_norm": 0.2198820561170578, + "learning_rate": 0.0006, + "loss": 3.47590970993042, + "step": 5787 + }, + { + "epoch": 80.3914373088685, + "grad_norm": 0.20409493148326874, + "learning_rate": 0.0006, + "loss": 3.477367401123047, + "step": 5788 + }, + { + "epoch": 80.40541721275666, + "grad_norm": 0.217926487326622, + "learning_rate": 0.0006, + "loss": 3.490652084350586, + "step": 5789 + }, + { + "epoch": 80.41939711664482, + "grad_norm": 0.21637201309204102, + "learning_rate": 0.0006, + "loss": 3.458226442337036, + "step": 5790 + }, + { + "epoch": 80.43337702053299, + "grad_norm": 0.20321200788021088, + "learning_rate": 0.0006, + "loss": 3.452885866165161, + "step": 5791 + }, + { + "epoch": 80.44735692442114, + "grad_norm": 0.21885623037815094, + "learning_rate": 0.0006, + "loss": 3.4941980838775635, + "step": 5792 + }, + { + "epoch": 80.4613368283093, + "grad_norm": 0.22409287095069885, + "learning_rate": 0.0006, + "loss": 3.4670767784118652, + "step": 5793 + }, + { + "epoch": 80.47531673219747, + "grad_norm": 0.21799036860466003, + "learning_rate": 0.0006, + "loss": 3.4714083671569824, + "step": 5794 + }, + { + "epoch": 80.48929663608563, + "grad_norm": 0.21685674786567688, + "learning_rate": 0.0006, + "loss": 3.4904956817626953, + "step": 5795 + }, + { + "epoch": 80.50327653997378, + "grad_norm": 0.20650283992290497, + "learning_rate": 0.0006, + "loss": 3.4683380126953125, + "step": 5796 + }, + { + "epoch": 80.51725644386195, + "grad_norm": 0.21926143765449524, + "learning_rate": 0.0006, + "loss": 3.4641075134277344, + "step": 5797 + }, + { + "epoch": 80.53123634775011, + "grad_norm": 0.2350672036409378, + "learning_rate": 0.0006, + "loss": 3.44460391998291, + "step": 5798 + }, + { + "epoch": 80.54521625163827, + "grad_norm": 0.2503013610839844, + "learning_rate": 0.0006, + "loss": 3.4592742919921875, + "step": 5799 + }, + { + "epoch": 80.55919615552644, + "grad_norm": 0.24494926631450653, + "learning_rate": 0.0006, + "loss": 3.5099523067474365, + "step": 5800 + }, + { + "epoch": 80.57317605941459, + "grad_norm": 0.23444698750972748, + "learning_rate": 0.0006, + "loss": 3.451995849609375, + "step": 5801 + }, + { + "epoch": 80.58715596330275, + "grad_norm": 0.22345036268234253, + "learning_rate": 0.0006, + "loss": 3.4782915115356445, + "step": 5802 + }, + { + "epoch": 80.60113586719092, + "grad_norm": 0.22532342374324799, + "learning_rate": 0.0006, + "loss": 3.5129644870758057, + "step": 5803 + }, + { + "epoch": 80.61511577107908, + "grad_norm": 0.26806071400642395, + "learning_rate": 0.0006, + "loss": 3.4816815853118896, + "step": 5804 + }, + { + "epoch": 80.62909567496723, + "grad_norm": 0.2529740035533905, + "learning_rate": 0.0006, + "loss": 3.4738473892211914, + "step": 5805 + }, + { + "epoch": 80.6430755788554, + "grad_norm": 0.21056286990642548, + "learning_rate": 0.0006, + "loss": 3.464974880218506, + "step": 5806 + }, + { + "epoch": 80.65705548274356, + "grad_norm": 0.21475818753242493, + "learning_rate": 0.0006, + "loss": 3.4820570945739746, + "step": 5807 + }, + { + "epoch": 80.67103538663171, + "grad_norm": 0.2191086858510971, + "learning_rate": 0.0006, + "loss": 3.502323627471924, + "step": 5808 + }, + { + "epoch": 80.68501529051987, + "grad_norm": 0.2302156239748001, + "learning_rate": 0.0006, + "loss": 3.4993669986724854, + "step": 5809 + }, + { + "epoch": 80.69899519440804, + "grad_norm": 0.22701990604400635, + "learning_rate": 0.0006, + "loss": 3.462667465209961, + "step": 5810 + }, + { + "epoch": 80.7129750982962, + "grad_norm": 0.20839478075504303, + "learning_rate": 0.0006, + "loss": 3.4990062713623047, + "step": 5811 + }, + { + "epoch": 80.72695500218435, + "grad_norm": 0.24495407938957214, + "learning_rate": 0.0006, + "loss": 3.514021396636963, + "step": 5812 + }, + { + "epoch": 80.74093490607252, + "grad_norm": 0.27316489815711975, + "learning_rate": 0.0006, + "loss": 3.463404655456543, + "step": 5813 + }, + { + "epoch": 80.75491480996068, + "grad_norm": 0.22948578000068665, + "learning_rate": 0.0006, + "loss": 3.505904197692871, + "step": 5814 + }, + { + "epoch": 80.76889471384884, + "grad_norm": 0.21909916400909424, + "learning_rate": 0.0006, + "loss": 3.5149335861206055, + "step": 5815 + }, + { + "epoch": 80.78287461773701, + "grad_norm": 0.23310492932796478, + "learning_rate": 0.0006, + "loss": 3.464721202850342, + "step": 5816 + }, + { + "epoch": 80.79685452162516, + "grad_norm": 0.2319480925798416, + "learning_rate": 0.0006, + "loss": 3.4716296195983887, + "step": 5817 + }, + { + "epoch": 80.81083442551332, + "grad_norm": 0.22677654027938843, + "learning_rate": 0.0006, + "loss": 3.4898571968078613, + "step": 5818 + }, + { + "epoch": 80.82481432940149, + "grad_norm": 0.2309885025024414, + "learning_rate": 0.0006, + "loss": 3.5047802925109863, + "step": 5819 + }, + { + "epoch": 80.83879423328965, + "grad_norm": 0.23699891567230225, + "learning_rate": 0.0006, + "loss": 3.4849839210510254, + "step": 5820 + }, + { + "epoch": 80.8527741371778, + "grad_norm": 0.2177085429430008, + "learning_rate": 0.0006, + "loss": 3.5039596557617188, + "step": 5821 + }, + { + "epoch": 80.86675404106597, + "grad_norm": 0.2501188814640045, + "learning_rate": 0.0006, + "loss": 3.476724863052368, + "step": 5822 + }, + { + "epoch": 80.88073394495413, + "grad_norm": 0.24670550227165222, + "learning_rate": 0.0006, + "loss": 3.4802114963531494, + "step": 5823 + }, + { + "epoch": 80.89471384884229, + "grad_norm": 0.2456343024969101, + "learning_rate": 0.0006, + "loss": 3.4718332290649414, + "step": 5824 + }, + { + "epoch": 80.90869375273044, + "grad_norm": 0.23390130698680878, + "learning_rate": 0.0006, + "loss": 3.486870765686035, + "step": 5825 + }, + { + "epoch": 80.92267365661861, + "grad_norm": 0.22055526077747345, + "learning_rate": 0.0006, + "loss": 3.514493227005005, + "step": 5826 + }, + { + "epoch": 80.93665356050677, + "grad_norm": 0.2336755096912384, + "learning_rate": 0.0006, + "loss": 3.470463275909424, + "step": 5827 + }, + { + "epoch": 80.95063346439493, + "grad_norm": 0.23320306837558746, + "learning_rate": 0.0006, + "loss": 3.4858689308166504, + "step": 5828 + }, + { + "epoch": 80.9646133682831, + "grad_norm": 0.23942042887210846, + "learning_rate": 0.0006, + "loss": 3.5128583908081055, + "step": 5829 + }, + { + "epoch": 80.97859327217125, + "grad_norm": 0.26255691051483154, + "learning_rate": 0.0006, + "loss": 3.4763708114624023, + "step": 5830 + }, + { + "epoch": 80.99257317605941, + "grad_norm": 0.2564900517463684, + "learning_rate": 0.0006, + "loss": 3.5013113021850586, + "step": 5831 + }, + { + "epoch": 81.0, + "grad_norm": 0.27842438220977783, + "learning_rate": 0.0006, + "loss": 3.530803680419922, + "step": 5832 + }, + { + "epoch": 81.0, + "eval_loss": 3.994793653488159, + "eval_runtime": 44.7478, + "eval_samples_per_second": 54.573, + "eval_steps_per_second": 3.419, + "step": 5832 + }, + { + "epoch": 81.01397990388816, + "grad_norm": 0.2241310030221939, + "learning_rate": 0.0006, + "loss": 3.4611167907714844, + "step": 5833 + }, + { + "epoch": 81.02795980777633, + "grad_norm": 0.2282719761133194, + "learning_rate": 0.0006, + "loss": 3.4444174766540527, + "step": 5834 + }, + { + "epoch": 81.04193971166448, + "grad_norm": 0.22664876282215118, + "learning_rate": 0.0006, + "loss": 3.4553420543670654, + "step": 5835 + }, + { + "epoch": 81.05591961555264, + "grad_norm": 0.23604267835617065, + "learning_rate": 0.0006, + "loss": 3.446911573410034, + "step": 5836 + }, + { + "epoch": 81.06989951944081, + "grad_norm": 0.24082261323928833, + "learning_rate": 0.0006, + "loss": 3.4441776275634766, + "step": 5837 + }, + { + "epoch": 81.08387942332897, + "grad_norm": 0.22746489942073822, + "learning_rate": 0.0006, + "loss": 3.452177047729492, + "step": 5838 + }, + { + "epoch": 81.09785932721712, + "grad_norm": 0.21123987436294556, + "learning_rate": 0.0006, + "loss": 3.4311065673828125, + "step": 5839 + }, + { + "epoch": 81.1118392311053, + "grad_norm": 0.22218266129493713, + "learning_rate": 0.0006, + "loss": 3.467769145965576, + "step": 5840 + }, + { + "epoch": 81.12581913499345, + "grad_norm": 0.2289019376039505, + "learning_rate": 0.0006, + "loss": 3.4591445922851562, + "step": 5841 + }, + { + "epoch": 81.1397990388816, + "grad_norm": 0.21944275498390198, + "learning_rate": 0.0006, + "loss": 3.471113681793213, + "step": 5842 + }, + { + "epoch": 81.15377894276976, + "grad_norm": 0.22327102720737457, + "learning_rate": 0.0006, + "loss": 3.466477394104004, + "step": 5843 + }, + { + "epoch": 81.16775884665793, + "grad_norm": 0.24516990780830383, + "learning_rate": 0.0006, + "loss": 3.4205875396728516, + "step": 5844 + }, + { + "epoch": 81.18173875054609, + "grad_norm": 0.22093479335308075, + "learning_rate": 0.0006, + "loss": 3.4454703330993652, + "step": 5845 + }, + { + "epoch": 81.19571865443424, + "grad_norm": 0.2028535008430481, + "learning_rate": 0.0006, + "loss": 3.4515299797058105, + "step": 5846 + }, + { + "epoch": 81.20969855832242, + "grad_norm": 0.2238505333662033, + "learning_rate": 0.0006, + "loss": 3.459362506866455, + "step": 5847 + }, + { + "epoch": 81.22367846221057, + "grad_norm": 0.2231738269329071, + "learning_rate": 0.0006, + "loss": 3.4835047721862793, + "step": 5848 + }, + { + "epoch": 81.23765836609873, + "grad_norm": 0.23899082839488983, + "learning_rate": 0.0006, + "loss": 3.471942901611328, + "step": 5849 + }, + { + "epoch": 81.2516382699869, + "grad_norm": 0.2504292130470276, + "learning_rate": 0.0006, + "loss": 3.447814702987671, + "step": 5850 + }, + { + "epoch": 81.26561817387505, + "grad_norm": 0.24690432846546173, + "learning_rate": 0.0006, + "loss": 3.4676897525787354, + "step": 5851 + }, + { + "epoch": 81.27959807776321, + "grad_norm": 0.2241731733083725, + "learning_rate": 0.0006, + "loss": 3.4704437255859375, + "step": 5852 + }, + { + "epoch": 81.29357798165138, + "grad_norm": 0.21579913794994354, + "learning_rate": 0.0006, + "loss": 3.4581332206726074, + "step": 5853 + }, + { + "epoch": 81.30755788553954, + "grad_norm": 0.19946254789829254, + "learning_rate": 0.0006, + "loss": 3.49086856842041, + "step": 5854 + }, + { + "epoch": 81.3215377894277, + "grad_norm": 0.21698544919490814, + "learning_rate": 0.0006, + "loss": 3.47237491607666, + "step": 5855 + }, + { + "epoch": 81.33551769331586, + "grad_norm": 0.23065327107906342, + "learning_rate": 0.0006, + "loss": 3.471611261367798, + "step": 5856 + }, + { + "epoch": 81.34949759720402, + "grad_norm": 0.25529375672340393, + "learning_rate": 0.0006, + "loss": 3.474853038787842, + "step": 5857 + }, + { + "epoch": 81.36347750109218, + "grad_norm": 0.2427460253238678, + "learning_rate": 0.0006, + "loss": 3.47169828414917, + "step": 5858 + }, + { + "epoch": 81.37745740498035, + "grad_norm": 0.21831433475017548, + "learning_rate": 0.0006, + "loss": 3.469316005706787, + "step": 5859 + }, + { + "epoch": 81.3914373088685, + "grad_norm": 0.22414742410182953, + "learning_rate": 0.0006, + "loss": 3.4708399772644043, + "step": 5860 + }, + { + "epoch": 81.40541721275666, + "grad_norm": 0.24430912733078003, + "learning_rate": 0.0006, + "loss": 3.4687514305114746, + "step": 5861 + }, + { + "epoch": 81.41939711664482, + "grad_norm": 0.2250177413225174, + "learning_rate": 0.0006, + "loss": 3.471647024154663, + "step": 5862 + }, + { + "epoch": 81.43337702053299, + "grad_norm": 0.21442367136478424, + "learning_rate": 0.0006, + "loss": 3.5020229816436768, + "step": 5863 + }, + { + "epoch": 81.44735692442114, + "grad_norm": 0.2115623503923416, + "learning_rate": 0.0006, + "loss": 3.4541711807250977, + "step": 5864 + }, + { + "epoch": 81.4613368283093, + "grad_norm": 0.21600203216075897, + "learning_rate": 0.0006, + "loss": 3.444777011871338, + "step": 5865 + }, + { + "epoch": 81.47531673219747, + "grad_norm": 0.2073121964931488, + "learning_rate": 0.0006, + "loss": 3.4678783416748047, + "step": 5866 + }, + { + "epoch": 81.48929663608563, + "grad_norm": 0.21327655017375946, + "learning_rate": 0.0006, + "loss": 3.492672920227051, + "step": 5867 + }, + { + "epoch": 81.50327653997378, + "grad_norm": 0.19428470730781555, + "learning_rate": 0.0006, + "loss": 3.4926891326904297, + "step": 5868 + }, + { + "epoch": 81.51725644386195, + "grad_norm": 0.2175777107477188, + "learning_rate": 0.0006, + "loss": 3.4540810585021973, + "step": 5869 + }, + { + "epoch": 81.53123634775011, + "grad_norm": 0.2322985827922821, + "learning_rate": 0.0006, + "loss": 3.4896368980407715, + "step": 5870 + }, + { + "epoch": 81.54521625163827, + "grad_norm": 0.24916131794452667, + "learning_rate": 0.0006, + "loss": 3.4834001064300537, + "step": 5871 + }, + { + "epoch": 81.55919615552644, + "grad_norm": 0.24375544488430023, + "learning_rate": 0.0006, + "loss": 3.4601101875305176, + "step": 5872 + }, + { + "epoch": 81.57317605941459, + "grad_norm": 0.22558897733688354, + "learning_rate": 0.0006, + "loss": 3.479156970977783, + "step": 5873 + }, + { + "epoch": 81.58715596330275, + "grad_norm": 0.2258717566728592, + "learning_rate": 0.0006, + "loss": 3.4763894081115723, + "step": 5874 + }, + { + "epoch": 81.60113586719092, + "grad_norm": 0.2349073439836502, + "learning_rate": 0.0006, + "loss": 3.4897050857543945, + "step": 5875 + }, + { + "epoch": 81.61511577107908, + "grad_norm": 0.2525520920753479, + "learning_rate": 0.0006, + "loss": 3.462857246398926, + "step": 5876 + }, + { + "epoch": 81.62909567496723, + "grad_norm": 0.21800200641155243, + "learning_rate": 0.0006, + "loss": 3.466336488723755, + "step": 5877 + }, + { + "epoch": 81.6430755788554, + "grad_norm": 0.19487148523330688, + "learning_rate": 0.0006, + "loss": 3.494813919067383, + "step": 5878 + }, + { + "epoch": 81.65705548274356, + "grad_norm": 0.2188173234462738, + "learning_rate": 0.0006, + "loss": 3.498023271560669, + "step": 5879 + }, + { + "epoch": 81.67103538663171, + "grad_norm": 0.22095468640327454, + "learning_rate": 0.0006, + "loss": 3.4900009632110596, + "step": 5880 + }, + { + "epoch": 81.68501529051987, + "grad_norm": 0.22997792065143585, + "learning_rate": 0.0006, + "loss": 3.476071357727051, + "step": 5881 + }, + { + "epoch": 81.69899519440804, + "grad_norm": 0.2245410829782486, + "learning_rate": 0.0006, + "loss": 3.456820249557495, + "step": 5882 + }, + { + "epoch": 81.7129750982962, + "grad_norm": 0.22648558020591736, + "learning_rate": 0.0006, + "loss": 3.487612247467041, + "step": 5883 + }, + { + "epoch": 81.72695500218435, + "grad_norm": 0.2600322961807251, + "learning_rate": 0.0006, + "loss": 3.47613525390625, + "step": 5884 + }, + { + "epoch": 81.74093490607252, + "grad_norm": 0.29320329427719116, + "learning_rate": 0.0006, + "loss": 3.4669876098632812, + "step": 5885 + }, + { + "epoch": 81.75491480996068, + "grad_norm": 0.27352645993232727, + "learning_rate": 0.0006, + "loss": 3.4944510459899902, + "step": 5886 + }, + { + "epoch": 81.76889471384884, + "grad_norm": 0.22296367585659027, + "learning_rate": 0.0006, + "loss": 3.4747262001037598, + "step": 5887 + }, + { + "epoch": 81.78287461773701, + "grad_norm": 0.23558233678340912, + "learning_rate": 0.0006, + "loss": 3.4883317947387695, + "step": 5888 + }, + { + "epoch": 81.79685452162516, + "grad_norm": 0.25436776876449585, + "learning_rate": 0.0006, + "loss": 3.486569881439209, + "step": 5889 + }, + { + "epoch": 81.81083442551332, + "grad_norm": 0.24357469379901886, + "learning_rate": 0.0006, + "loss": 3.5173630714416504, + "step": 5890 + }, + { + "epoch": 81.82481432940149, + "grad_norm": 0.208529993891716, + "learning_rate": 0.0006, + "loss": 3.4895973205566406, + "step": 5891 + }, + { + "epoch": 81.83879423328965, + "grad_norm": 0.2506846785545349, + "learning_rate": 0.0006, + "loss": 3.471381425857544, + "step": 5892 + }, + { + "epoch": 81.8527741371778, + "grad_norm": 0.23839038610458374, + "learning_rate": 0.0006, + "loss": 3.5134239196777344, + "step": 5893 + }, + { + "epoch": 81.86675404106597, + "grad_norm": 0.25112682580947876, + "learning_rate": 0.0006, + "loss": 3.4818389415740967, + "step": 5894 + }, + { + "epoch": 81.88073394495413, + "grad_norm": 0.26375311613082886, + "learning_rate": 0.0006, + "loss": 3.451540946960449, + "step": 5895 + }, + { + "epoch": 81.89471384884229, + "grad_norm": 0.24909956753253937, + "learning_rate": 0.0006, + "loss": 3.4711599349975586, + "step": 5896 + }, + { + "epoch": 81.90869375273044, + "grad_norm": 0.25776103138923645, + "learning_rate": 0.0006, + "loss": 3.4937872886657715, + "step": 5897 + }, + { + "epoch": 81.92267365661861, + "grad_norm": 0.24449801445007324, + "learning_rate": 0.0006, + "loss": 3.4718785285949707, + "step": 5898 + }, + { + "epoch": 81.93665356050677, + "grad_norm": 0.25146451592445374, + "learning_rate": 0.0006, + "loss": 3.468308210372925, + "step": 5899 + }, + { + "epoch": 81.95063346439493, + "grad_norm": 0.2371637523174286, + "learning_rate": 0.0006, + "loss": 3.5168726444244385, + "step": 5900 + }, + { + "epoch": 81.9646133682831, + "grad_norm": 0.2174614518880844, + "learning_rate": 0.0006, + "loss": 3.4614851474761963, + "step": 5901 + }, + { + "epoch": 81.97859327217125, + "grad_norm": 0.2184949368238449, + "learning_rate": 0.0006, + "loss": 3.501692771911621, + "step": 5902 + }, + { + "epoch": 81.99257317605941, + "grad_norm": 0.24104104936122894, + "learning_rate": 0.0006, + "loss": 3.470581293106079, + "step": 5903 + }, + { + "epoch": 82.0, + "grad_norm": 0.255840003490448, + "learning_rate": 0.0006, + "loss": 3.419551372528076, + "step": 5904 + }, + { + "epoch": 82.0, + "eval_loss": 3.9897069931030273, + "eval_runtime": 45.1448, + "eval_samples_per_second": 54.093, + "eval_steps_per_second": 3.389, + "step": 5904 + }, + { + "epoch": 82.01397990388816, + "grad_norm": 0.23519675433635712, + "learning_rate": 0.0006, + "loss": 3.4497785568237305, + "step": 5905 + }, + { + "epoch": 82.02795980777633, + "grad_norm": 0.24893461167812347, + "learning_rate": 0.0006, + "loss": 3.4210000038146973, + "step": 5906 + }, + { + "epoch": 82.04193971166448, + "grad_norm": 0.2475820779800415, + "learning_rate": 0.0006, + "loss": 3.465670585632324, + "step": 5907 + }, + { + "epoch": 82.05591961555264, + "grad_norm": 0.24113906919956207, + "learning_rate": 0.0006, + "loss": 3.454935073852539, + "step": 5908 + }, + { + "epoch": 82.06989951944081, + "grad_norm": 0.22427043318748474, + "learning_rate": 0.0006, + "loss": 3.47190523147583, + "step": 5909 + }, + { + "epoch": 82.08387942332897, + "grad_norm": 0.22878019511699677, + "learning_rate": 0.0006, + "loss": 3.4521985054016113, + "step": 5910 + }, + { + "epoch": 82.09785932721712, + "grad_norm": 0.25299179553985596, + "learning_rate": 0.0006, + "loss": 3.439011335372925, + "step": 5911 + }, + { + "epoch": 82.1118392311053, + "grad_norm": 0.29394835233688354, + "learning_rate": 0.0006, + "loss": 3.4350290298461914, + "step": 5912 + }, + { + "epoch": 82.12581913499345, + "grad_norm": 0.29244497418403625, + "learning_rate": 0.0006, + "loss": 3.452918291091919, + "step": 5913 + }, + { + "epoch": 82.1397990388816, + "grad_norm": 0.2498885989189148, + "learning_rate": 0.0006, + "loss": 3.445600986480713, + "step": 5914 + }, + { + "epoch": 82.15377894276976, + "grad_norm": 0.2340220957994461, + "learning_rate": 0.0006, + "loss": 3.446509838104248, + "step": 5915 + }, + { + "epoch": 82.16775884665793, + "grad_norm": 0.2612140476703644, + "learning_rate": 0.0006, + "loss": 3.4699525833129883, + "step": 5916 + }, + { + "epoch": 82.18173875054609, + "grad_norm": 0.29881903529167175, + "learning_rate": 0.0006, + "loss": 3.4616494178771973, + "step": 5917 + }, + { + "epoch": 82.19571865443424, + "grad_norm": 0.3289170265197754, + "learning_rate": 0.0006, + "loss": 3.459996461868286, + "step": 5918 + }, + { + "epoch": 82.20969855832242, + "grad_norm": 0.33752408623695374, + "learning_rate": 0.0006, + "loss": 3.485208511352539, + "step": 5919 + }, + { + "epoch": 82.22367846221057, + "grad_norm": 0.28907373547554016, + "learning_rate": 0.0006, + "loss": 3.4453067779541016, + "step": 5920 + }, + { + "epoch": 82.23765836609873, + "grad_norm": 0.22920988500118256, + "learning_rate": 0.0006, + "loss": 3.4516754150390625, + "step": 5921 + }, + { + "epoch": 82.2516382699869, + "grad_norm": 0.2918834090232849, + "learning_rate": 0.0006, + "loss": 3.4532060623168945, + "step": 5922 + }, + { + "epoch": 82.26561817387505, + "grad_norm": 0.35092175006866455, + "learning_rate": 0.0006, + "loss": 3.481351852416992, + "step": 5923 + }, + { + "epoch": 82.27959807776321, + "grad_norm": 0.35510894656181335, + "learning_rate": 0.0006, + "loss": 3.4563896656036377, + "step": 5924 + }, + { + "epoch": 82.29357798165138, + "grad_norm": 0.284163236618042, + "learning_rate": 0.0006, + "loss": 3.4800498485565186, + "step": 5925 + }, + { + "epoch": 82.30755788553954, + "grad_norm": 0.22560057044029236, + "learning_rate": 0.0006, + "loss": 3.461622714996338, + "step": 5926 + }, + { + "epoch": 82.3215377894277, + "grad_norm": 0.2595600485801697, + "learning_rate": 0.0006, + "loss": 3.4619455337524414, + "step": 5927 + }, + { + "epoch": 82.33551769331586, + "grad_norm": 0.26929134130477905, + "learning_rate": 0.0006, + "loss": 3.4466819763183594, + "step": 5928 + }, + { + "epoch": 82.34949759720402, + "grad_norm": 0.2876140773296356, + "learning_rate": 0.0006, + "loss": 3.4429526329040527, + "step": 5929 + }, + { + "epoch": 82.36347750109218, + "grad_norm": 0.24692676961421967, + "learning_rate": 0.0006, + "loss": 3.465346336364746, + "step": 5930 + }, + { + "epoch": 82.37745740498035, + "grad_norm": 0.2190248966217041, + "learning_rate": 0.0006, + "loss": 3.4734861850738525, + "step": 5931 + }, + { + "epoch": 82.3914373088685, + "grad_norm": 0.23190239071846008, + "learning_rate": 0.0006, + "loss": 3.4560375213623047, + "step": 5932 + }, + { + "epoch": 82.40541721275666, + "grad_norm": 0.26482656598091125, + "learning_rate": 0.0006, + "loss": 3.4604647159576416, + "step": 5933 + }, + { + "epoch": 82.41939711664482, + "grad_norm": 0.24802184104919434, + "learning_rate": 0.0006, + "loss": 3.414149284362793, + "step": 5934 + }, + { + "epoch": 82.43337702053299, + "grad_norm": 0.22652000188827515, + "learning_rate": 0.0006, + "loss": 3.473421096801758, + "step": 5935 + }, + { + "epoch": 82.44735692442114, + "grad_norm": 0.22467140853405, + "learning_rate": 0.0006, + "loss": 3.451671600341797, + "step": 5936 + }, + { + "epoch": 82.4613368283093, + "grad_norm": 0.244468092918396, + "learning_rate": 0.0006, + "loss": 3.4695382118225098, + "step": 5937 + }, + { + "epoch": 82.47531673219747, + "grad_norm": 0.2423151284456253, + "learning_rate": 0.0006, + "loss": 3.45648193359375, + "step": 5938 + }, + { + "epoch": 82.48929663608563, + "grad_norm": 0.24979142844676971, + "learning_rate": 0.0006, + "loss": 3.4783148765563965, + "step": 5939 + }, + { + "epoch": 82.50327653997378, + "grad_norm": 0.2788648009300232, + "learning_rate": 0.0006, + "loss": 3.457810401916504, + "step": 5940 + }, + { + "epoch": 82.51725644386195, + "grad_norm": 0.2886991500854492, + "learning_rate": 0.0006, + "loss": 3.479522228240967, + "step": 5941 + }, + { + "epoch": 82.53123634775011, + "grad_norm": 0.26907554268836975, + "learning_rate": 0.0006, + "loss": 3.449568510055542, + "step": 5942 + }, + { + "epoch": 82.54521625163827, + "grad_norm": 0.2253459244966507, + "learning_rate": 0.0006, + "loss": 3.4410414695739746, + "step": 5943 + }, + { + "epoch": 82.55919615552644, + "grad_norm": 0.23267745971679688, + "learning_rate": 0.0006, + "loss": 3.4297232627868652, + "step": 5944 + }, + { + "epoch": 82.57317605941459, + "grad_norm": 0.2892511785030365, + "learning_rate": 0.0006, + "loss": 3.4358129501342773, + "step": 5945 + }, + { + "epoch": 82.58715596330275, + "grad_norm": 0.2826172113418579, + "learning_rate": 0.0006, + "loss": 3.46335506439209, + "step": 5946 + }, + { + "epoch": 82.60113586719092, + "grad_norm": 0.2273692488670349, + "learning_rate": 0.0006, + "loss": 3.5010366439819336, + "step": 5947 + }, + { + "epoch": 82.61511577107908, + "grad_norm": 0.21712201833724976, + "learning_rate": 0.0006, + "loss": 3.4793381690979004, + "step": 5948 + }, + { + "epoch": 82.62909567496723, + "grad_norm": 0.22338661551475525, + "learning_rate": 0.0006, + "loss": 3.4844970703125, + "step": 5949 + }, + { + "epoch": 82.6430755788554, + "grad_norm": 0.21227683126926422, + "learning_rate": 0.0006, + "loss": 3.4780616760253906, + "step": 5950 + }, + { + "epoch": 82.65705548274356, + "grad_norm": 0.22288236021995544, + "learning_rate": 0.0006, + "loss": 3.4671804904937744, + "step": 5951 + }, + { + "epoch": 82.67103538663171, + "grad_norm": 0.23190240561962128, + "learning_rate": 0.0006, + "loss": 3.5143930912017822, + "step": 5952 + }, + { + "epoch": 82.68501529051987, + "grad_norm": 0.21063187718391418, + "learning_rate": 0.0006, + "loss": 3.497652530670166, + "step": 5953 + }, + { + "epoch": 82.69899519440804, + "grad_norm": 0.2175041288137436, + "learning_rate": 0.0006, + "loss": 3.4725892543792725, + "step": 5954 + }, + { + "epoch": 82.7129750982962, + "grad_norm": 0.23813064396381378, + "learning_rate": 0.0006, + "loss": 3.480269193649292, + "step": 5955 + }, + { + "epoch": 82.72695500218435, + "grad_norm": 0.1962498128414154, + "learning_rate": 0.0006, + "loss": 3.4666576385498047, + "step": 5956 + }, + { + "epoch": 82.74093490607252, + "grad_norm": 0.20937910676002502, + "learning_rate": 0.0006, + "loss": 3.485138416290283, + "step": 5957 + }, + { + "epoch": 82.75491480996068, + "grad_norm": 0.23929032683372498, + "learning_rate": 0.0006, + "loss": 3.4557695388793945, + "step": 5958 + }, + { + "epoch": 82.76889471384884, + "grad_norm": 0.21904121339321136, + "learning_rate": 0.0006, + "loss": 3.477562427520752, + "step": 5959 + }, + { + "epoch": 82.78287461773701, + "grad_norm": 0.20288591086864471, + "learning_rate": 0.0006, + "loss": 3.4972333908081055, + "step": 5960 + }, + { + "epoch": 82.79685452162516, + "grad_norm": 0.2116696536540985, + "learning_rate": 0.0006, + "loss": 3.48240327835083, + "step": 5961 + }, + { + "epoch": 82.81083442551332, + "grad_norm": 0.22824831306934357, + "learning_rate": 0.0006, + "loss": 3.4596962928771973, + "step": 5962 + }, + { + "epoch": 82.82481432940149, + "grad_norm": 0.2335250973701477, + "learning_rate": 0.0006, + "loss": 3.477674961090088, + "step": 5963 + }, + { + "epoch": 82.83879423328965, + "grad_norm": 0.24267305433750153, + "learning_rate": 0.0006, + "loss": 3.5068936347961426, + "step": 5964 + }, + { + "epoch": 82.8527741371778, + "grad_norm": 0.22586151957511902, + "learning_rate": 0.0006, + "loss": 3.5154266357421875, + "step": 5965 + }, + { + "epoch": 82.86675404106597, + "grad_norm": 0.219172403216362, + "learning_rate": 0.0006, + "loss": 3.4788248538970947, + "step": 5966 + }, + { + "epoch": 82.88073394495413, + "grad_norm": 0.230057954788208, + "learning_rate": 0.0006, + "loss": 3.463099479675293, + "step": 5967 + }, + { + "epoch": 82.89471384884229, + "grad_norm": 0.24492645263671875, + "learning_rate": 0.0006, + "loss": 3.495624542236328, + "step": 5968 + }, + { + "epoch": 82.90869375273044, + "grad_norm": 0.2710586488246918, + "learning_rate": 0.0006, + "loss": 3.4884939193725586, + "step": 5969 + }, + { + "epoch": 82.92267365661861, + "grad_norm": 0.26602303981781006, + "learning_rate": 0.0006, + "loss": 3.5522756576538086, + "step": 5970 + }, + { + "epoch": 82.93665356050677, + "grad_norm": 0.21950770914554596, + "learning_rate": 0.0006, + "loss": 3.506800651550293, + "step": 5971 + }, + { + "epoch": 82.95063346439493, + "grad_norm": 0.2120460718870163, + "learning_rate": 0.0006, + "loss": 3.4889087677001953, + "step": 5972 + }, + { + "epoch": 82.9646133682831, + "grad_norm": 0.23518255352973938, + "learning_rate": 0.0006, + "loss": 3.4935286045074463, + "step": 5973 + }, + { + "epoch": 82.97859327217125, + "grad_norm": 0.2183351367712021, + "learning_rate": 0.0006, + "loss": 3.4557912349700928, + "step": 5974 + }, + { + "epoch": 82.99257317605941, + "grad_norm": 0.21057291328907013, + "learning_rate": 0.0006, + "loss": 3.494884967803955, + "step": 5975 + }, + { + "epoch": 83.0, + "grad_norm": 0.23379701375961304, + "learning_rate": 0.0006, + "loss": 3.537684202194214, + "step": 5976 + }, + { + "epoch": 83.0, + "eval_loss": 3.996980667114258, + "eval_runtime": 44.805, + "eval_samples_per_second": 54.503, + "eval_steps_per_second": 3.415, + "step": 5976 + }, + { + "epoch": 83.01397990388816, + "grad_norm": 0.21832400560379028, + "learning_rate": 0.0006, + "loss": 3.4219069480895996, + "step": 5977 + }, + { + "epoch": 83.02795980777633, + "grad_norm": 0.22840751707553864, + "learning_rate": 0.0006, + "loss": 3.444056987762451, + "step": 5978 + }, + { + "epoch": 83.04193971166448, + "grad_norm": 0.24846753478050232, + "learning_rate": 0.0006, + "loss": 3.433744430541992, + "step": 5979 + }, + { + "epoch": 83.05591961555264, + "grad_norm": 0.2614847421646118, + "learning_rate": 0.0006, + "loss": 3.4292588233947754, + "step": 5980 + }, + { + "epoch": 83.06989951944081, + "grad_norm": 0.2762290835380554, + "learning_rate": 0.0006, + "loss": 3.4379489421844482, + "step": 5981 + }, + { + "epoch": 83.08387942332897, + "grad_norm": 0.2695395052433014, + "learning_rate": 0.0006, + "loss": 3.435392141342163, + "step": 5982 + }, + { + "epoch": 83.09785932721712, + "grad_norm": 0.285564661026001, + "learning_rate": 0.0006, + "loss": 3.4732954502105713, + "step": 5983 + }, + { + "epoch": 83.1118392311053, + "grad_norm": 0.28408879041671753, + "learning_rate": 0.0006, + "loss": 3.460115432739258, + "step": 5984 + }, + { + "epoch": 83.12581913499345, + "grad_norm": 0.2638843357563019, + "learning_rate": 0.0006, + "loss": 3.4600658416748047, + "step": 5985 + }, + { + "epoch": 83.1397990388816, + "grad_norm": 0.276947557926178, + "learning_rate": 0.0006, + "loss": 3.427304744720459, + "step": 5986 + }, + { + "epoch": 83.15377894276976, + "grad_norm": 0.29645398259162903, + "learning_rate": 0.0006, + "loss": 3.49354887008667, + "step": 5987 + }, + { + "epoch": 83.16775884665793, + "grad_norm": 0.24671341478824615, + "learning_rate": 0.0006, + "loss": 3.418001890182495, + "step": 5988 + }, + { + "epoch": 83.18173875054609, + "grad_norm": 0.23004917800426483, + "learning_rate": 0.0006, + "loss": 3.4566028118133545, + "step": 5989 + }, + { + "epoch": 83.19571865443424, + "grad_norm": 0.2323729544878006, + "learning_rate": 0.0006, + "loss": 3.476187229156494, + "step": 5990 + }, + { + "epoch": 83.20969855832242, + "grad_norm": 0.2461102306842804, + "learning_rate": 0.0006, + "loss": 3.4485220909118652, + "step": 5991 + }, + { + "epoch": 83.22367846221057, + "grad_norm": 0.2316771298646927, + "learning_rate": 0.0006, + "loss": 3.4753873348236084, + "step": 5992 + }, + { + "epoch": 83.23765836609873, + "grad_norm": 0.21398794651031494, + "learning_rate": 0.0006, + "loss": 3.4336280822753906, + "step": 5993 + }, + { + "epoch": 83.2516382699869, + "grad_norm": 0.2328646034002304, + "learning_rate": 0.0006, + "loss": 3.4349019527435303, + "step": 5994 + }, + { + "epoch": 83.26561817387505, + "grad_norm": 0.2613484859466553, + "learning_rate": 0.0006, + "loss": 3.4748740196228027, + "step": 5995 + }, + { + "epoch": 83.27959807776321, + "grad_norm": 0.24692191183567047, + "learning_rate": 0.0006, + "loss": 3.469376802444458, + "step": 5996 + }, + { + "epoch": 83.29357798165138, + "grad_norm": 0.21643374860286713, + "learning_rate": 0.0006, + "loss": 3.4703941345214844, + "step": 5997 + }, + { + "epoch": 83.30755788553954, + "grad_norm": 0.2107238620519638, + "learning_rate": 0.0006, + "loss": 3.4441919326782227, + "step": 5998 + }, + { + "epoch": 83.3215377894277, + "grad_norm": 0.2236919403076172, + "learning_rate": 0.0006, + "loss": 3.475111484527588, + "step": 5999 + }, + { + "epoch": 83.33551769331586, + "grad_norm": 0.23031125962734222, + "learning_rate": 0.0006, + "loss": 3.463629961013794, + "step": 6000 + }, + { + "epoch": 83.34949759720402, + "grad_norm": 0.23520728945732117, + "learning_rate": 0.0006, + "loss": 3.4377198219299316, + "step": 6001 + }, + { + "epoch": 83.36347750109218, + "grad_norm": 0.24083353579044342, + "learning_rate": 0.0006, + "loss": 3.4637320041656494, + "step": 6002 + }, + { + "epoch": 83.37745740498035, + "grad_norm": 0.2591738700866699, + "learning_rate": 0.0006, + "loss": 3.4864988327026367, + "step": 6003 + }, + { + "epoch": 83.3914373088685, + "grad_norm": 0.22105777263641357, + "learning_rate": 0.0006, + "loss": 3.425142288208008, + "step": 6004 + }, + { + "epoch": 83.40541721275666, + "grad_norm": 0.22660304605960846, + "learning_rate": 0.0006, + "loss": 3.468355894088745, + "step": 6005 + }, + { + "epoch": 83.41939711664482, + "grad_norm": 0.320535808801651, + "learning_rate": 0.0006, + "loss": 3.448850631713867, + "step": 6006 + }, + { + "epoch": 83.43337702053299, + "grad_norm": 0.3168669044971466, + "learning_rate": 0.0006, + "loss": 3.4643197059631348, + "step": 6007 + }, + { + "epoch": 83.44735692442114, + "grad_norm": 0.2560042440891266, + "learning_rate": 0.0006, + "loss": 3.475637912750244, + "step": 6008 + }, + { + "epoch": 83.4613368283093, + "grad_norm": 0.21204592287540436, + "learning_rate": 0.0006, + "loss": 3.4471921920776367, + "step": 6009 + }, + { + "epoch": 83.47531673219747, + "grad_norm": 0.21767926216125488, + "learning_rate": 0.0006, + "loss": 3.4536280632019043, + "step": 6010 + }, + { + "epoch": 83.48929663608563, + "grad_norm": 0.24681858718395233, + "learning_rate": 0.0006, + "loss": 3.4713847637176514, + "step": 6011 + }, + { + "epoch": 83.50327653997378, + "grad_norm": 0.26184895634651184, + "learning_rate": 0.0006, + "loss": 3.4650652408599854, + "step": 6012 + }, + { + "epoch": 83.51725644386195, + "grad_norm": 0.24959588050842285, + "learning_rate": 0.0006, + "loss": 3.4610469341278076, + "step": 6013 + }, + { + "epoch": 83.53123634775011, + "grad_norm": 0.2062264084815979, + "learning_rate": 0.0006, + "loss": 3.477700710296631, + "step": 6014 + }, + { + "epoch": 83.54521625163827, + "grad_norm": 0.212580144405365, + "learning_rate": 0.0006, + "loss": 3.450294017791748, + "step": 6015 + }, + { + "epoch": 83.55919615552644, + "grad_norm": 0.24017730355262756, + "learning_rate": 0.0006, + "loss": 3.4375219345092773, + "step": 6016 + }, + { + "epoch": 83.57317605941459, + "grad_norm": 0.29706305265426636, + "learning_rate": 0.0006, + "loss": 3.4510207176208496, + "step": 6017 + }, + { + "epoch": 83.58715596330275, + "grad_norm": 0.29583004117012024, + "learning_rate": 0.0006, + "loss": 3.463989734649658, + "step": 6018 + }, + { + "epoch": 83.60113586719092, + "grad_norm": 0.22219108045101166, + "learning_rate": 0.0006, + "loss": 3.4602017402648926, + "step": 6019 + }, + { + "epoch": 83.61511577107908, + "grad_norm": 0.2245914787054062, + "learning_rate": 0.0006, + "loss": 3.4729413986206055, + "step": 6020 + }, + { + "epoch": 83.62909567496723, + "grad_norm": 0.2378871887922287, + "learning_rate": 0.0006, + "loss": 3.493058443069458, + "step": 6021 + }, + { + "epoch": 83.6430755788554, + "grad_norm": 0.2393491417169571, + "learning_rate": 0.0006, + "loss": 3.481888771057129, + "step": 6022 + }, + { + "epoch": 83.65705548274356, + "grad_norm": 0.22587546706199646, + "learning_rate": 0.0006, + "loss": 3.4741945266723633, + "step": 6023 + }, + { + "epoch": 83.67103538663171, + "grad_norm": 0.21970580518245697, + "learning_rate": 0.0006, + "loss": 3.453437089920044, + "step": 6024 + }, + { + "epoch": 83.68501529051987, + "grad_norm": 0.28560149669647217, + "learning_rate": 0.0006, + "loss": 3.4655563831329346, + "step": 6025 + }, + { + "epoch": 83.69899519440804, + "grad_norm": 0.3692651689052582, + "learning_rate": 0.0006, + "loss": 3.466190814971924, + "step": 6026 + }, + { + "epoch": 83.7129750982962, + "grad_norm": 0.2955428659915924, + "learning_rate": 0.0006, + "loss": 3.471492052078247, + "step": 6027 + }, + { + "epoch": 83.72695500218435, + "grad_norm": 0.21010912954807281, + "learning_rate": 0.0006, + "loss": 3.4699859619140625, + "step": 6028 + }, + { + "epoch": 83.74093490607252, + "grad_norm": 0.26358452439308167, + "learning_rate": 0.0006, + "loss": 3.4771690368652344, + "step": 6029 + }, + { + "epoch": 83.75491480996068, + "grad_norm": 0.2645658850669861, + "learning_rate": 0.0006, + "loss": 3.4879064559936523, + "step": 6030 + }, + { + "epoch": 83.76889471384884, + "grad_norm": 0.21529845893383026, + "learning_rate": 0.0006, + "loss": 3.483954429626465, + "step": 6031 + }, + { + "epoch": 83.78287461773701, + "grad_norm": 0.2099343240261078, + "learning_rate": 0.0006, + "loss": 3.4544146060943604, + "step": 6032 + }, + { + "epoch": 83.79685452162516, + "grad_norm": 0.2181747704744339, + "learning_rate": 0.0006, + "loss": 3.491983413696289, + "step": 6033 + }, + { + "epoch": 83.81083442551332, + "grad_norm": 0.23016685247421265, + "learning_rate": 0.0006, + "loss": 3.4659135341644287, + "step": 6034 + }, + { + "epoch": 83.82481432940149, + "grad_norm": 0.2403937429189682, + "learning_rate": 0.0006, + "loss": 3.506269931793213, + "step": 6035 + }, + { + "epoch": 83.83879423328965, + "grad_norm": 0.22122806310653687, + "learning_rate": 0.0006, + "loss": 3.4617505073547363, + "step": 6036 + }, + { + "epoch": 83.8527741371778, + "grad_norm": 0.22495940327644348, + "learning_rate": 0.0006, + "loss": 3.4756948947906494, + "step": 6037 + }, + { + "epoch": 83.86675404106597, + "grad_norm": 0.22538618743419647, + "learning_rate": 0.0006, + "loss": 3.488034725189209, + "step": 6038 + }, + { + "epoch": 83.88073394495413, + "grad_norm": 0.2117580771446228, + "learning_rate": 0.0006, + "loss": 3.4975039958953857, + "step": 6039 + }, + { + "epoch": 83.89471384884229, + "grad_norm": 0.2120361030101776, + "learning_rate": 0.0006, + "loss": 3.4867331981658936, + "step": 6040 + }, + { + "epoch": 83.90869375273044, + "grad_norm": 0.19643139839172363, + "learning_rate": 0.0006, + "loss": 3.488924980163574, + "step": 6041 + }, + { + "epoch": 83.92267365661861, + "grad_norm": 0.19628021121025085, + "learning_rate": 0.0006, + "loss": 3.461667060852051, + "step": 6042 + }, + { + "epoch": 83.93665356050677, + "grad_norm": 0.20119936764240265, + "learning_rate": 0.0006, + "loss": 3.4937024116516113, + "step": 6043 + }, + { + "epoch": 83.95063346439493, + "grad_norm": 0.2125128209590912, + "learning_rate": 0.0006, + "loss": 3.4840517044067383, + "step": 6044 + }, + { + "epoch": 83.9646133682831, + "grad_norm": 0.20223572850227356, + "learning_rate": 0.0006, + "loss": 3.5131449699401855, + "step": 6045 + }, + { + "epoch": 83.97859327217125, + "grad_norm": 0.20483054220676422, + "learning_rate": 0.0006, + "loss": 3.471453905105591, + "step": 6046 + }, + { + "epoch": 83.99257317605941, + "grad_norm": 0.2104625701904297, + "learning_rate": 0.0006, + "loss": 3.4952552318573, + "step": 6047 + }, + { + "epoch": 84.0, + "grad_norm": 0.2537861764431, + "learning_rate": 0.0006, + "loss": 3.536937713623047, + "step": 6048 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 2.577349251805741e+18, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6048/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6336/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6336/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6336/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6336/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..825996c021c53ee17d48fcefae5169415772fdc7 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f409abe109686868be40de8b79ccc4c258b4c8928d7c2bf5b782ec7acf101610 +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6336/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..840052afd9110e9f13717a787e9e32f720c433b4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ae04a5e9efd92526735a6ebf7c904c3f39988bc1c1b15ecfa6eb6ddf2bb0057 +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6336/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..f2cdb6d000de6c60719cb36c84ed8f848bbd6578 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75a4c0876b55921a6d5989ea7c410ec42409ff2152b3ad10da6b4176b59fd7a3 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6336/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..7f80bf129c86aeb6c6d52f1b870f692292d2bfed --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fd81a2abd34ed84a71b641d00e154540849bc5b187677a41ab068cc6ee2661e +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6336/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..806ff31f0128f007291ee83361dda9fba5eeb32b --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79947657782b5ee38d1d49b023c1983388f9e08fc318792128b0f35b4e555422 +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6336/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6336/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6336/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..59128733d248138932d3cd4f75800ae607f2e765 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/trainer_state.json @@ -0,0 +1,45082 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 88.0, + "eval_steps": 500, + "global_step": 6336, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + }, + { + "epoch": 8.0, + "eval_loss": 5.100707530975342, + "eval_runtime": 44.2493, + "eval_samples_per_second": 55.187, + "eval_steps_per_second": 3.458, + "step": 576 + }, + { + "epoch": 8.013979903888162, + "grad_norm": 0.3658510148525238, + "learning_rate": 0.0006, + "loss": 4.759055137634277, + "step": 577 + }, + { + "epoch": 8.027959807776321, + "grad_norm": 0.41794446110725403, + "learning_rate": 0.0006, + "loss": 4.737661838531494, + "step": 578 + }, + { + "epoch": 8.041939711664483, + "grad_norm": 0.43284085392951965, + "learning_rate": 0.0006, + "loss": 4.775538444519043, + "step": 579 + }, + { + "epoch": 8.055919615552643, + "grad_norm": 0.4716675281524658, + "learning_rate": 0.0006, + "loss": 4.762231826782227, + "step": 580 + }, + { + "epoch": 8.069899519440805, + "grad_norm": 0.3849579393863678, + "learning_rate": 0.0006, + "loss": 4.753598690032959, + "step": 581 + }, + { + "epoch": 8.083879423328964, + "grad_norm": 0.3721151053905487, + "learning_rate": 0.0006, + "loss": 4.728978157043457, + "step": 582 + }, + { + "epoch": 8.097859327217126, + "grad_norm": 0.37009572982788086, + "learning_rate": 0.0006, + "loss": 4.759153366088867, + "step": 583 + }, + { + "epoch": 8.111839231105286, + "grad_norm": 0.37051302194595337, + "learning_rate": 0.0006, + "loss": 4.744197368621826, + "step": 584 + }, + { + "epoch": 8.125819134993447, + "grad_norm": 0.331238329410553, + "learning_rate": 0.0006, + "loss": 4.7338385581970215, + "step": 585 + }, + { + "epoch": 8.139799038881607, + "grad_norm": 0.3737713694572449, + "learning_rate": 0.0006, + "loss": 4.719110488891602, + "step": 586 + }, + { + "epoch": 8.153778942769769, + "grad_norm": 0.3713214695453644, + "learning_rate": 0.0006, + "loss": 4.734012126922607, + "step": 587 + }, + { + "epoch": 8.167758846657929, + "grad_norm": 0.4060780107975006, + "learning_rate": 0.0006, + "loss": 4.746830940246582, + "step": 588 + }, + { + "epoch": 8.18173875054609, + "grad_norm": 0.39814314246177673, + "learning_rate": 0.0006, + "loss": 4.722851753234863, + "step": 589 + }, + { + "epoch": 8.19571865443425, + "grad_norm": 0.3175652325153351, + "learning_rate": 0.0006, + "loss": 4.745110034942627, + "step": 590 + }, + { + "epoch": 8.209698558322412, + "grad_norm": 0.37214916944503784, + "learning_rate": 0.0006, + "loss": 4.7362775802612305, + "step": 591 + }, + { + "epoch": 8.223678462210572, + "grad_norm": 0.3873472809791565, + "learning_rate": 0.0006, + "loss": 4.738964557647705, + "step": 592 + }, + { + "epoch": 8.237658366098733, + "grad_norm": 0.3299207091331482, + "learning_rate": 0.0006, + "loss": 4.713451385498047, + "step": 593 + }, + { + "epoch": 8.251638269986893, + "grad_norm": 0.32445064187049866, + "learning_rate": 0.0006, + "loss": 4.725602149963379, + "step": 594 + }, + { + "epoch": 8.265618173875055, + "grad_norm": 0.32903164625167847, + "learning_rate": 0.0006, + "loss": 4.732064247131348, + "step": 595 + }, + { + "epoch": 8.279598077763215, + "grad_norm": 0.3166804313659668, + "learning_rate": 0.0006, + "loss": 4.678950786590576, + "step": 596 + }, + { + "epoch": 8.293577981651376, + "grad_norm": 0.2750290334224701, + "learning_rate": 0.0006, + "loss": 4.719513416290283, + "step": 597 + }, + { + "epoch": 8.307557885539538, + "grad_norm": 0.291029691696167, + "learning_rate": 0.0006, + "loss": 4.715405464172363, + "step": 598 + }, + { + "epoch": 8.321537789427698, + "grad_norm": 0.34105145931243896, + "learning_rate": 0.0006, + "loss": 4.722611427307129, + "step": 599 + }, + { + "epoch": 8.33551769331586, + "grad_norm": 0.3078882694244385, + "learning_rate": 0.0006, + "loss": 4.668856620788574, + "step": 600 + }, + { + "epoch": 8.349497597204019, + "grad_norm": 0.3218833804130554, + "learning_rate": 0.0006, + "loss": 4.719579696655273, + "step": 601 + }, + { + "epoch": 8.36347750109218, + "grad_norm": 0.35716721415519714, + "learning_rate": 0.0006, + "loss": 4.690774440765381, + "step": 602 + }, + { + "epoch": 8.37745740498034, + "grad_norm": 0.3045452833175659, + "learning_rate": 0.0006, + "loss": 4.696503639221191, + "step": 603 + }, + { + "epoch": 8.391437308868502, + "grad_norm": 0.3127244710922241, + "learning_rate": 0.0006, + "loss": 4.701899528503418, + "step": 604 + }, + { + "epoch": 8.405417212756662, + "grad_norm": 0.34988710284233093, + "learning_rate": 0.0006, + "loss": 4.677641868591309, + "step": 605 + }, + { + "epoch": 8.419397116644824, + "grad_norm": 0.34035569429397583, + "learning_rate": 0.0006, + "loss": 4.707778453826904, + "step": 606 + }, + { + "epoch": 8.433377020532983, + "grad_norm": 0.3341112732887268, + "learning_rate": 0.0006, + "loss": 4.724853038787842, + "step": 607 + }, + { + "epoch": 8.447356924421145, + "grad_norm": 0.41744324564933777, + "learning_rate": 0.0006, + "loss": 4.680908203125, + "step": 608 + }, + { + "epoch": 8.461336828309305, + "grad_norm": 0.40402331948280334, + "learning_rate": 0.0006, + "loss": 4.726455211639404, + "step": 609 + }, + { + "epoch": 8.475316732197467, + "grad_norm": 0.4727570414543152, + "learning_rate": 0.0006, + "loss": 4.6793084144592285, + "step": 610 + }, + { + "epoch": 8.489296636085626, + "grad_norm": 0.43002694845199585, + "learning_rate": 0.0006, + "loss": 4.663918972015381, + "step": 611 + }, + { + "epoch": 8.503276539973788, + "grad_norm": 0.36124858260154724, + "learning_rate": 0.0006, + "loss": 4.657375335693359, + "step": 612 + }, + { + "epoch": 8.517256443861948, + "grad_norm": 0.37644803524017334, + "learning_rate": 0.0006, + "loss": 4.676977157592773, + "step": 613 + }, + { + "epoch": 8.53123634775011, + "grad_norm": 0.32347747683525085, + "learning_rate": 0.0006, + "loss": 4.708547115325928, + "step": 614 + }, + { + "epoch": 8.54521625163827, + "grad_norm": 0.3071717619895935, + "learning_rate": 0.0006, + "loss": 4.650189399719238, + "step": 615 + }, + { + "epoch": 8.55919615552643, + "grad_norm": 0.30222490429878235, + "learning_rate": 0.0006, + "loss": 4.647942543029785, + "step": 616 + }, + { + "epoch": 8.57317605941459, + "grad_norm": 0.31545212864875793, + "learning_rate": 0.0006, + "loss": 4.660242080688477, + "step": 617 + }, + { + "epoch": 8.587155963302752, + "grad_norm": 0.31644752621650696, + "learning_rate": 0.0006, + "loss": 4.666710376739502, + "step": 618 + }, + { + "epoch": 8.601135867190912, + "grad_norm": 0.26057198643684387, + "learning_rate": 0.0006, + "loss": 4.668096542358398, + "step": 619 + }, + { + "epoch": 8.615115771079074, + "grad_norm": 0.25473910570144653, + "learning_rate": 0.0006, + "loss": 4.641562461853027, + "step": 620 + }, + { + "epoch": 8.629095674967235, + "grad_norm": 0.2456732839345932, + "learning_rate": 0.0006, + "loss": 4.6545281410217285, + "step": 621 + }, + { + "epoch": 8.643075578855395, + "grad_norm": 0.25180476903915405, + "learning_rate": 0.0006, + "loss": 4.6506524085998535, + "step": 622 + }, + { + "epoch": 8.657055482743557, + "grad_norm": 0.21761579811573029, + "learning_rate": 0.0006, + "loss": 4.638909339904785, + "step": 623 + }, + { + "epoch": 8.671035386631717, + "grad_norm": 0.23590542376041412, + "learning_rate": 0.0006, + "loss": 4.6572747230529785, + "step": 624 + }, + { + "epoch": 8.685015290519878, + "grad_norm": 0.23870624601840973, + "learning_rate": 0.0006, + "loss": 4.643742084503174, + "step": 625 + }, + { + "epoch": 8.698995194408038, + "grad_norm": 0.2191203385591507, + "learning_rate": 0.0006, + "loss": 4.632617950439453, + "step": 626 + }, + { + "epoch": 8.7129750982962, + "grad_norm": 0.22107063233852386, + "learning_rate": 0.0006, + "loss": 4.625616073608398, + "step": 627 + }, + { + "epoch": 8.72695500218436, + "grad_norm": 0.20833902060985565, + "learning_rate": 0.0006, + "loss": 4.609896659851074, + "step": 628 + }, + { + "epoch": 8.740934906072521, + "grad_norm": 0.254967600107193, + "learning_rate": 0.0006, + "loss": 4.651735782623291, + "step": 629 + }, + { + "epoch": 8.754914809960681, + "grad_norm": 0.31587523221969604, + "learning_rate": 0.0006, + "loss": 4.6404032707214355, + "step": 630 + }, + { + "epoch": 8.768894713848843, + "grad_norm": 0.28598251938819885, + "learning_rate": 0.0006, + "loss": 4.602679252624512, + "step": 631 + }, + { + "epoch": 8.782874617737003, + "grad_norm": 0.23216590285301208, + "learning_rate": 0.0006, + "loss": 4.610319137573242, + "step": 632 + }, + { + "epoch": 8.796854521625164, + "grad_norm": 0.29212239384651184, + "learning_rate": 0.0006, + "loss": 4.600744247436523, + "step": 633 + }, + { + "epoch": 8.810834425513324, + "grad_norm": 0.3375801146030426, + "learning_rate": 0.0006, + "loss": 4.627819061279297, + "step": 634 + }, + { + "epoch": 8.824814329401486, + "grad_norm": 0.4207753837108612, + "learning_rate": 0.0006, + "loss": 4.634505271911621, + "step": 635 + }, + { + "epoch": 8.838794233289645, + "grad_norm": 0.4640173614025116, + "learning_rate": 0.0006, + "loss": 4.636714935302734, + "step": 636 + }, + { + "epoch": 8.852774137177807, + "grad_norm": 0.5255663990974426, + "learning_rate": 0.0006, + "loss": 4.659462928771973, + "step": 637 + }, + { + "epoch": 8.866754041065967, + "grad_norm": 0.5108268857002258, + "learning_rate": 0.0006, + "loss": 4.633192539215088, + "step": 638 + }, + { + "epoch": 8.880733944954128, + "grad_norm": 0.3821936845779419, + "learning_rate": 0.0006, + "loss": 4.621200084686279, + "step": 639 + }, + { + "epoch": 8.89471384884229, + "grad_norm": 0.3918485939502716, + "learning_rate": 0.0006, + "loss": 4.632599830627441, + "step": 640 + }, + { + "epoch": 8.90869375273045, + "grad_norm": 0.3416556119918823, + "learning_rate": 0.0006, + "loss": 4.620438098907471, + "step": 641 + }, + { + "epoch": 8.922673656618612, + "grad_norm": 0.3191553056240082, + "learning_rate": 0.0006, + "loss": 4.617823600769043, + "step": 642 + }, + { + "epoch": 8.936653560506771, + "grad_norm": 0.3368529677391052, + "learning_rate": 0.0006, + "loss": 4.617222785949707, + "step": 643 + }, + { + "epoch": 8.950633464394933, + "grad_norm": 0.3255428969860077, + "learning_rate": 0.0006, + "loss": 4.633878707885742, + "step": 644 + }, + { + "epoch": 8.964613368283093, + "grad_norm": 0.31394779682159424, + "learning_rate": 0.0006, + "loss": 4.642603874206543, + "step": 645 + }, + { + "epoch": 8.978593272171254, + "grad_norm": 0.29999351501464844, + "learning_rate": 0.0006, + "loss": 4.5925211906433105, + "step": 646 + }, + { + "epoch": 8.992573176059414, + "grad_norm": 0.309154748916626, + "learning_rate": 0.0006, + "loss": 4.61745023727417, + "step": 647 + }, + { + "epoch": 9.0, + "grad_norm": 0.2660452425479889, + "learning_rate": 0.0006, + "loss": 4.575107097625732, + "step": 648 + }, + { + "epoch": 9.0, + "eval_loss": 4.8804192543029785, + "eval_runtime": 45.0015, + "eval_samples_per_second": 54.265, + "eval_steps_per_second": 3.4, + "step": 648 + }, + { + "epoch": 9.013979903888162, + "grad_norm": 0.24159297347068787, + "learning_rate": 0.0006, + "loss": 4.571323871612549, + "step": 649 + }, + { + "epoch": 9.027959807776321, + "grad_norm": 0.2835831046104431, + "learning_rate": 0.0006, + "loss": 4.614255905151367, + "step": 650 + }, + { + "epoch": 9.041939711664483, + "grad_norm": 0.2646859288215637, + "learning_rate": 0.0006, + "loss": 4.578947067260742, + "step": 651 + }, + { + "epoch": 9.055919615552643, + "grad_norm": 0.28868553042411804, + "learning_rate": 0.0006, + "loss": 4.575977325439453, + "step": 652 + }, + { + "epoch": 9.069899519440805, + "grad_norm": 0.2899586856365204, + "learning_rate": 0.0006, + "loss": 4.541798114776611, + "step": 653 + }, + { + "epoch": 9.083879423328964, + "grad_norm": 0.32786068320274353, + "learning_rate": 0.0006, + "loss": 4.575140953063965, + "step": 654 + }, + { + "epoch": 9.097859327217126, + "grad_norm": 0.35675594210624695, + "learning_rate": 0.0006, + "loss": 4.58184814453125, + "step": 655 + }, + { + "epoch": 9.111839231105286, + "grad_norm": 0.3380381166934967, + "learning_rate": 0.0006, + "loss": 4.546271324157715, + "step": 656 + }, + { + "epoch": 9.125819134993447, + "grad_norm": 0.3035511374473572, + "learning_rate": 0.0006, + "loss": 4.591629981994629, + "step": 657 + }, + { + "epoch": 9.139799038881607, + "grad_norm": 0.2733091711997986, + "learning_rate": 0.0006, + "loss": 4.559020042419434, + "step": 658 + }, + { + "epoch": 9.153778942769769, + "grad_norm": 0.2870676815509796, + "learning_rate": 0.0006, + "loss": 4.552787780761719, + "step": 659 + }, + { + "epoch": 9.167758846657929, + "grad_norm": 0.37471064925193787, + "learning_rate": 0.0006, + "loss": 4.572757244110107, + "step": 660 + }, + { + "epoch": 9.18173875054609, + "grad_norm": 0.37889063358306885, + "learning_rate": 0.0006, + "loss": 4.573302268981934, + "step": 661 + }, + { + "epoch": 9.19571865443425, + "grad_norm": 0.29983851313591003, + "learning_rate": 0.0006, + "loss": 4.571202754974365, + "step": 662 + }, + { + "epoch": 9.209698558322412, + "grad_norm": 0.27595147490501404, + "learning_rate": 0.0006, + "loss": 4.529508590698242, + "step": 663 + }, + { + "epoch": 9.223678462210572, + "grad_norm": 0.22693437337875366, + "learning_rate": 0.0006, + "loss": 4.572267532348633, + "step": 664 + }, + { + "epoch": 9.237658366098733, + "grad_norm": 0.27147138118743896, + "learning_rate": 0.0006, + "loss": 4.529747009277344, + "step": 665 + }, + { + "epoch": 9.251638269986893, + "grad_norm": 0.24952703714370728, + "learning_rate": 0.0006, + "loss": 4.553647994995117, + "step": 666 + }, + { + "epoch": 9.265618173875055, + "grad_norm": 0.3086707592010498, + "learning_rate": 0.0006, + "loss": 4.494636058807373, + "step": 667 + }, + { + "epoch": 9.279598077763215, + "grad_norm": 0.3265218138694763, + "learning_rate": 0.0006, + "loss": 4.522481918334961, + "step": 668 + }, + { + "epoch": 9.293577981651376, + "grad_norm": 0.2744608223438263, + "learning_rate": 0.0006, + "loss": 4.544595241546631, + "step": 669 + }, + { + "epoch": 9.307557885539538, + "grad_norm": 0.26698485016822815, + "learning_rate": 0.0006, + "loss": 4.506407260894775, + "step": 670 + }, + { + "epoch": 9.321537789427698, + "grad_norm": 0.2775942087173462, + "learning_rate": 0.0006, + "loss": 4.534619331359863, + "step": 671 + }, + { + "epoch": 9.33551769331586, + "grad_norm": 0.2421862781047821, + "learning_rate": 0.0006, + "loss": 4.523318290710449, + "step": 672 + }, + { + "epoch": 9.349497597204019, + "grad_norm": 0.2756497263908386, + "learning_rate": 0.0006, + "loss": 4.517561912536621, + "step": 673 + }, + { + "epoch": 9.36347750109218, + "grad_norm": 0.28845369815826416, + "learning_rate": 0.0006, + "loss": 4.530844688415527, + "step": 674 + }, + { + "epoch": 9.37745740498034, + "grad_norm": 0.32285866141319275, + "learning_rate": 0.0006, + "loss": 4.55369758605957, + "step": 675 + }, + { + "epoch": 9.391437308868502, + "grad_norm": 0.3726065754890442, + "learning_rate": 0.0006, + "loss": 4.524348258972168, + "step": 676 + }, + { + "epoch": 9.405417212756662, + "grad_norm": 0.39524078369140625, + "learning_rate": 0.0006, + "loss": 4.535778045654297, + "step": 677 + }, + { + "epoch": 9.419397116644824, + "grad_norm": 0.3859797716140747, + "learning_rate": 0.0006, + "loss": 4.538474082946777, + "step": 678 + }, + { + "epoch": 9.433377020532983, + "grad_norm": 0.36151406168937683, + "learning_rate": 0.0006, + "loss": 4.54434061050415, + "step": 679 + }, + { + "epoch": 9.447356924421145, + "grad_norm": 0.40345999598503113, + "learning_rate": 0.0006, + "loss": 4.532961845397949, + "step": 680 + }, + { + "epoch": 9.461336828309305, + "grad_norm": 0.38864144682884216, + "learning_rate": 0.0006, + "loss": 4.567630767822266, + "step": 681 + }, + { + "epoch": 9.475316732197467, + "grad_norm": 0.3816355764865875, + "learning_rate": 0.0006, + "loss": 4.535771369934082, + "step": 682 + }, + { + "epoch": 9.489296636085626, + "grad_norm": 0.38756558299064636, + "learning_rate": 0.0006, + "loss": 4.4971089363098145, + "step": 683 + }, + { + "epoch": 9.503276539973788, + "grad_norm": 0.4572933614253998, + "learning_rate": 0.0006, + "loss": 4.534860134124756, + "step": 684 + }, + { + "epoch": 9.517256443861948, + "grad_norm": 0.42368650436401367, + "learning_rate": 0.0006, + "loss": 4.542638301849365, + "step": 685 + }, + { + "epoch": 9.53123634775011, + "grad_norm": 0.36939486861228943, + "learning_rate": 0.0006, + "loss": 4.571430206298828, + "step": 686 + }, + { + "epoch": 9.54521625163827, + "grad_norm": 0.3900398313999176, + "learning_rate": 0.0006, + "loss": 4.544435501098633, + "step": 687 + }, + { + "epoch": 9.55919615552643, + "grad_norm": 0.37829288840293884, + "learning_rate": 0.0006, + "loss": 4.564268112182617, + "step": 688 + }, + { + "epoch": 9.57317605941459, + "grad_norm": 0.3553886115550995, + "learning_rate": 0.0006, + "loss": 4.5373430252075195, + "step": 689 + }, + { + "epoch": 9.587155963302752, + "grad_norm": 0.3613419532775879, + "learning_rate": 0.0006, + "loss": 4.559074401855469, + "step": 690 + }, + { + "epoch": 9.601135867190912, + "grad_norm": 0.32644546031951904, + "learning_rate": 0.0006, + "loss": 4.533667087554932, + "step": 691 + }, + { + "epoch": 9.615115771079074, + "grad_norm": 0.3264399468898773, + "learning_rate": 0.0006, + "loss": 4.508299350738525, + "step": 692 + }, + { + "epoch": 9.629095674967235, + "grad_norm": 0.3534526526927948, + "learning_rate": 0.0006, + "loss": 4.542442798614502, + "step": 693 + }, + { + "epoch": 9.643075578855395, + "grad_norm": 0.3333452343940735, + "learning_rate": 0.0006, + "loss": 4.497692584991455, + "step": 694 + }, + { + "epoch": 9.657055482743557, + "grad_norm": 0.3214292526245117, + "learning_rate": 0.0006, + "loss": 4.512363433837891, + "step": 695 + }, + { + "epoch": 9.671035386631717, + "grad_norm": 0.2805672585964203, + "learning_rate": 0.0006, + "loss": 4.496874809265137, + "step": 696 + }, + { + "epoch": 9.685015290519878, + "grad_norm": 0.2618725895881653, + "learning_rate": 0.0006, + "loss": 4.51375675201416, + "step": 697 + }, + { + "epoch": 9.698995194408038, + "grad_norm": 0.2556597888469696, + "learning_rate": 0.0006, + "loss": 4.512338638305664, + "step": 698 + }, + { + "epoch": 9.7129750982962, + "grad_norm": 0.23784305155277252, + "learning_rate": 0.0006, + "loss": 4.486503601074219, + "step": 699 + }, + { + "epoch": 9.72695500218436, + "grad_norm": 0.2240338921546936, + "learning_rate": 0.0006, + "loss": 4.486850261688232, + "step": 700 + }, + { + "epoch": 9.740934906072521, + "grad_norm": 0.24686725437641144, + "learning_rate": 0.0006, + "loss": 4.501359462738037, + "step": 701 + }, + { + "epoch": 9.754914809960681, + "grad_norm": 0.20819595456123352, + "learning_rate": 0.0006, + "loss": 4.495186805725098, + "step": 702 + }, + { + "epoch": 9.768894713848843, + "grad_norm": 0.21858957409858704, + "learning_rate": 0.0006, + "loss": 4.475093364715576, + "step": 703 + }, + { + "epoch": 9.782874617737003, + "grad_norm": 0.22676466405391693, + "learning_rate": 0.0006, + "loss": 4.4702534675598145, + "step": 704 + }, + { + "epoch": 9.796854521625164, + "grad_norm": 0.18317611515522003, + "learning_rate": 0.0006, + "loss": 4.471231937408447, + "step": 705 + }, + { + "epoch": 9.810834425513324, + "grad_norm": 0.20979148149490356, + "learning_rate": 0.0006, + "loss": 4.454103946685791, + "step": 706 + }, + { + "epoch": 9.824814329401486, + "grad_norm": 0.2146051526069641, + "learning_rate": 0.0006, + "loss": 4.505178928375244, + "step": 707 + }, + { + "epoch": 9.838794233289645, + "grad_norm": 0.2344852089881897, + "learning_rate": 0.0006, + "loss": 4.437984943389893, + "step": 708 + }, + { + "epoch": 9.852774137177807, + "grad_norm": 0.26532089710235596, + "learning_rate": 0.0006, + "loss": 4.477126121520996, + "step": 709 + }, + { + "epoch": 9.866754041065967, + "grad_norm": 0.2737913131713867, + "learning_rate": 0.0006, + "loss": 4.498421669006348, + "step": 710 + }, + { + "epoch": 9.880733944954128, + "grad_norm": 0.26651278138160706, + "learning_rate": 0.0006, + "loss": 4.480839729309082, + "step": 711 + }, + { + "epoch": 9.89471384884229, + "grad_norm": 0.26576584577560425, + "learning_rate": 0.0006, + "loss": 4.490936279296875, + "step": 712 + }, + { + "epoch": 9.90869375273045, + "grad_norm": 0.22483965754508972, + "learning_rate": 0.0006, + "loss": 4.477953910827637, + "step": 713 + }, + { + "epoch": 9.922673656618612, + "grad_norm": 0.23576045036315918, + "learning_rate": 0.0006, + "loss": 4.4731292724609375, + "step": 714 + }, + { + "epoch": 9.936653560506771, + "grad_norm": 0.2731139361858368, + "learning_rate": 0.0006, + "loss": 4.441622734069824, + "step": 715 + }, + { + "epoch": 9.950633464394933, + "grad_norm": 0.2677643597126007, + "learning_rate": 0.0006, + "loss": 4.49604606628418, + "step": 716 + }, + { + "epoch": 9.964613368283093, + "grad_norm": 0.21940895915031433, + "learning_rate": 0.0006, + "loss": 4.485573768615723, + "step": 717 + }, + { + "epoch": 9.978593272171254, + "grad_norm": 0.2060987651348114, + "learning_rate": 0.0006, + "loss": 4.482657432556152, + "step": 718 + }, + { + "epoch": 9.992573176059414, + "grad_norm": 0.22163978219032288, + "learning_rate": 0.0006, + "loss": 4.478459358215332, + "step": 719 + }, + { + "epoch": 10.0, + "grad_norm": 0.2505086064338684, + "learning_rate": 0.0006, + "loss": 4.4393510818481445, + "step": 720 + }, + { + "epoch": 10.0, + "eval_loss": 4.695676803588867, + "eval_runtime": 49.0751, + "eval_samples_per_second": 49.76, + "eval_steps_per_second": 3.118, + "step": 720 + }, + { + "epoch": 10.013979903888162, + "grad_norm": 0.23820190131664276, + "learning_rate": 0.0006, + "loss": 4.437685489654541, + "step": 721 + }, + { + "epoch": 10.027959807776321, + "grad_norm": 0.2220371812582016, + "learning_rate": 0.0006, + "loss": 4.449873924255371, + "step": 722 + }, + { + "epoch": 10.041939711664483, + "grad_norm": 0.20369848608970642, + "learning_rate": 0.0006, + "loss": 4.448882579803467, + "step": 723 + }, + { + "epoch": 10.055919615552643, + "grad_norm": 0.2360001504421234, + "learning_rate": 0.0006, + "loss": 4.399251937866211, + "step": 724 + }, + { + "epoch": 10.069899519440805, + "grad_norm": 0.23537491261959076, + "learning_rate": 0.0006, + "loss": 4.442960739135742, + "step": 725 + }, + { + "epoch": 10.083879423328964, + "grad_norm": 0.24433870613574982, + "learning_rate": 0.0006, + "loss": 4.44808292388916, + "step": 726 + }, + { + "epoch": 10.097859327217126, + "grad_norm": 0.3406696021556854, + "learning_rate": 0.0006, + "loss": 4.443426132202148, + "step": 727 + }, + { + "epoch": 10.111839231105286, + "grad_norm": 0.4102286100387573, + "learning_rate": 0.0006, + "loss": 4.424919605255127, + "step": 728 + }, + { + "epoch": 10.125819134993447, + "grad_norm": 0.36462604999542236, + "learning_rate": 0.0006, + "loss": 4.45366907119751, + "step": 729 + }, + { + "epoch": 10.139799038881607, + "grad_norm": 0.4374827444553375, + "learning_rate": 0.0006, + "loss": 4.415630340576172, + "step": 730 + }, + { + "epoch": 10.153778942769769, + "grad_norm": 0.45248138904571533, + "learning_rate": 0.0006, + "loss": 4.448849678039551, + "step": 731 + }, + { + "epoch": 10.167758846657929, + "grad_norm": 0.3806457221508026, + "learning_rate": 0.0006, + "loss": 4.443390846252441, + "step": 732 + }, + { + "epoch": 10.18173875054609, + "grad_norm": 0.3491523861885071, + "learning_rate": 0.0006, + "loss": 4.4648637771606445, + "step": 733 + }, + { + "epoch": 10.19571865443425, + "grad_norm": 0.3327210247516632, + "learning_rate": 0.0006, + "loss": 4.460919380187988, + "step": 734 + }, + { + "epoch": 10.209698558322412, + "grad_norm": 0.29772236943244934, + "learning_rate": 0.0006, + "loss": 4.45159912109375, + "step": 735 + }, + { + "epoch": 10.223678462210572, + "grad_norm": 0.33083397150039673, + "learning_rate": 0.0006, + "loss": 4.463382720947266, + "step": 736 + }, + { + "epoch": 10.237658366098733, + "grad_norm": 0.3930598795413971, + "learning_rate": 0.0006, + "loss": 4.434510231018066, + "step": 737 + }, + { + "epoch": 10.251638269986893, + "grad_norm": 0.4342896044254303, + "learning_rate": 0.0006, + "loss": 4.451700210571289, + "step": 738 + }, + { + "epoch": 10.265618173875055, + "grad_norm": 0.4544043242931366, + "learning_rate": 0.0006, + "loss": 4.437224388122559, + "step": 739 + }, + { + "epoch": 10.279598077763215, + "grad_norm": 0.4487038254737854, + "learning_rate": 0.0006, + "loss": 4.46157693862915, + "step": 740 + }, + { + "epoch": 10.293577981651376, + "grad_norm": 0.4420500695705414, + "learning_rate": 0.0006, + "loss": 4.399561405181885, + "step": 741 + }, + { + "epoch": 10.307557885539538, + "grad_norm": 0.4167289435863495, + "learning_rate": 0.0006, + "loss": 4.41792106628418, + "step": 742 + }, + { + "epoch": 10.321537789427698, + "grad_norm": 0.3186971843242645, + "learning_rate": 0.0006, + "loss": 4.435683250427246, + "step": 743 + }, + { + "epoch": 10.33551769331586, + "grad_norm": 0.3077184855937958, + "learning_rate": 0.0006, + "loss": 4.481947898864746, + "step": 744 + }, + { + "epoch": 10.349497597204019, + "grad_norm": 0.26811280846595764, + "learning_rate": 0.0006, + "loss": 4.4339447021484375, + "step": 745 + }, + { + "epoch": 10.36347750109218, + "grad_norm": 0.28448057174682617, + "learning_rate": 0.0006, + "loss": 4.441644668579102, + "step": 746 + }, + { + "epoch": 10.37745740498034, + "grad_norm": 0.30731502175331116, + "learning_rate": 0.0006, + "loss": 4.428773880004883, + "step": 747 + }, + { + "epoch": 10.391437308868502, + "grad_norm": 0.28036001324653625, + "learning_rate": 0.0006, + "loss": 4.4433135986328125, + "step": 748 + }, + { + "epoch": 10.405417212756662, + "grad_norm": 0.2882847189903259, + "learning_rate": 0.0006, + "loss": 4.433401107788086, + "step": 749 + }, + { + "epoch": 10.419397116644824, + "grad_norm": 0.23622776567935944, + "learning_rate": 0.0006, + "loss": 4.444611549377441, + "step": 750 + }, + { + "epoch": 10.433377020532983, + "grad_norm": 0.2306167632341385, + "learning_rate": 0.0006, + "loss": 4.397875785827637, + "step": 751 + }, + { + "epoch": 10.447356924421145, + "grad_norm": 0.22725090384483337, + "learning_rate": 0.0006, + "loss": 4.429759502410889, + "step": 752 + }, + { + "epoch": 10.461336828309305, + "grad_norm": 0.250709593296051, + "learning_rate": 0.0006, + "loss": 4.415618896484375, + "step": 753 + }, + { + "epoch": 10.475316732197467, + "grad_norm": 0.22341276705265045, + "learning_rate": 0.0006, + "loss": 4.389362335205078, + "step": 754 + }, + { + "epoch": 10.489296636085626, + "grad_norm": 0.22595296800136566, + "learning_rate": 0.0006, + "loss": 4.383584022521973, + "step": 755 + }, + { + "epoch": 10.503276539973788, + "grad_norm": 0.24277575314044952, + "learning_rate": 0.0006, + "loss": 4.403777599334717, + "step": 756 + }, + { + "epoch": 10.517256443861948, + "grad_norm": 0.2670708894729614, + "learning_rate": 0.0006, + "loss": 4.398499011993408, + "step": 757 + }, + { + "epoch": 10.53123634775011, + "grad_norm": 0.2640696167945862, + "learning_rate": 0.0006, + "loss": 4.426726818084717, + "step": 758 + }, + { + "epoch": 10.54521625163827, + "grad_norm": 0.2248653769493103, + "learning_rate": 0.0006, + "loss": 4.400103569030762, + "step": 759 + }, + { + "epoch": 10.55919615552643, + "grad_norm": 0.21466240286827087, + "learning_rate": 0.0006, + "loss": 4.404158592224121, + "step": 760 + }, + { + "epoch": 10.57317605941459, + "grad_norm": 0.236923947930336, + "learning_rate": 0.0006, + "loss": 4.37059211730957, + "step": 761 + }, + { + "epoch": 10.587155963302752, + "grad_norm": 0.2515387535095215, + "learning_rate": 0.0006, + "loss": 4.415055274963379, + "step": 762 + }, + { + "epoch": 10.601135867190912, + "grad_norm": 0.23461885750293732, + "learning_rate": 0.0006, + "loss": 4.375036239624023, + "step": 763 + }, + { + "epoch": 10.615115771079074, + "grad_norm": 0.20975761115550995, + "learning_rate": 0.0006, + "loss": 4.3903398513793945, + "step": 764 + }, + { + "epoch": 10.629095674967235, + "grad_norm": 0.19859997928142548, + "learning_rate": 0.0006, + "loss": 4.379380226135254, + "step": 765 + }, + { + "epoch": 10.643075578855395, + "grad_norm": 0.22310325503349304, + "learning_rate": 0.0006, + "loss": 4.382110595703125, + "step": 766 + }, + { + "epoch": 10.657055482743557, + "grad_norm": 0.23940646648406982, + "learning_rate": 0.0006, + "loss": 4.393403053283691, + "step": 767 + }, + { + "epoch": 10.671035386631717, + "grad_norm": 0.2230468988418579, + "learning_rate": 0.0006, + "loss": 4.391970634460449, + "step": 768 + }, + { + "epoch": 10.685015290519878, + "grad_norm": 0.18139775097370148, + "learning_rate": 0.0006, + "loss": 4.399993896484375, + "step": 769 + }, + { + "epoch": 10.698995194408038, + "grad_norm": 0.19936902821063995, + "learning_rate": 0.0006, + "loss": 4.373854160308838, + "step": 770 + }, + { + "epoch": 10.7129750982962, + "grad_norm": 0.22132465243339539, + "learning_rate": 0.0006, + "loss": 4.377530097961426, + "step": 771 + }, + { + "epoch": 10.72695500218436, + "grad_norm": 0.24254944920539856, + "learning_rate": 0.0006, + "loss": 4.398683547973633, + "step": 772 + }, + { + "epoch": 10.740934906072521, + "grad_norm": 0.2666397988796234, + "learning_rate": 0.0006, + "loss": 4.3879899978637695, + "step": 773 + }, + { + "epoch": 10.754914809960681, + "grad_norm": 0.24728631973266602, + "learning_rate": 0.0006, + "loss": 4.356976509094238, + "step": 774 + }, + { + "epoch": 10.768894713848843, + "grad_norm": 0.2612453103065491, + "learning_rate": 0.0006, + "loss": 4.391525745391846, + "step": 775 + }, + { + "epoch": 10.782874617737003, + "grad_norm": 0.24060510098934174, + "learning_rate": 0.0006, + "loss": 4.376985549926758, + "step": 776 + }, + { + "epoch": 10.796854521625164, + "grad_norm": 0.22708238661289215, + "learning_rate": 0.0006, + "loss": 4.368545055389404, + "step": 777 + }, + { + "epoch": 10.810834425513324, + "grad_norm": 0.26931291818618774, + "learning_rate": 0.0006, + "loss": 4.369227409362793, + "step": 778 + }, + { + "epoch": 10.824814329401486, + "grad_norm": 0.265288770198822, + "learning_rate": 0.0006, + "loss": 4.378131866455078, + "step": 779 + }, + { + "epoch": 10.838794233289645, + "grad_norm": 0.3015305697917938, + "learning_rate": 0.0006, + "loss": 4.376267910003662, + "step": 780 + }, + { + "epoch": 10.852774137177807, + "grad_norm": 0.3345746099948883, + "learning_rate": 0.0006, + "loss": 4.3751420974731445, + "step": 781 + }, + { + "epoch": 10.866754041065967, + "grad_norm": 0.32446005940437317, + "learning_rate": 0.0006, + "loss": 4.370899200439453, + "step": 782 + }, + { + "epoch": 10.880733944954128, + "grad_norm": 0.27070069313049316, + "learning_rate": 0.0006, + "loss": 4.391958236694336, + "step": 783 + }, + { + "epoch": 10.89471384884229, + "grad_norm": 0.25584667921066284, + "learning_rate": 0.0006, + "loss": 4.407493591308594, + "step": 784 + }, + { + "epoch": 10.90869375273045, + "grad_norm": 0.2710244655609131, + "learning_rate": 0.0006, + "loss": 4.374400615692139, + "step": 785 + }, + { + "epoch": 10.922673656618612, + "grad_norm": 0.32413622736930847, + "learning_rate": 0.0006, + "loss": 4.379607200622559, + "step": 786 + }, + { + "epoch": 10.936653560506771, + "grad_norm": 0.3253782391548157, + "learning_rate": 0.0006, + "loss": 4.376441955566406, + "step": 787 + }, + { + "epoch": 10.950633464394933, + "grad_norm": 0.30534613132476807, + "learning_rate": 0.0006, + "loss": 4.382739067077637, + "step": 788 + }, + { + "epoch": 10.964613368283093, + "grad_norm": 0.35726621747016907, + "learning_rate": 0.0006, + "loss": 4.3765869140625, + "step": 789 + }, + { + "epoch": 10.978593272171254, + "grad_norm": 0.32763028144836426, + "learning_rate": 0.0006, + "loss": 4.391537189483643, + "step": 790 + }, + { + "epoch": 10.992573176059414, + "grad_norm": 0.31811195611953735, + "learning_rate": 0.0006, + "loss": 4.371829032897949, + "step": 791 + }, + { + "epoch": 11.0, + "grad_norm": 0.37317267060279846, + "learning_rate": 0.0006, + "loss": 4.381916522979736, + "step": 792 + }, + { + "epoch": 11.0, + "eval_loss": 4.588687896728516, + "eval_runtime": 44.8041, + "eval_samples_per_second": 54.504, + "eval_steps_per_second": 3.415, + "step": 792 + }, + { + "epoch": 11.013979903888162, + "grad_norm": 0.37882938981056213, + "learning_rate": 0.0006, + "loss": 4.3463640213012695, + "step": 793 + }, + { + "epoch": 11.027959807776321, + "grad_norm": 0.34719496965408325, + "learning_rate": 0.0006, + "loss": 4.329861640930176, + "step": 794 + }, + { + "epoch": 11.041939711664483, + "grad_norm": 0.36161214113235474, + "learning_rate": 0.0006, + "loss": 4.3287835121154785, + "step": 795 + }, + { + "epoch": 11.055919615552643, + "grad_norm": 0.3743649125099182, + "learning_rate": 0.0006, + "loss": 4.334251403808594, + "step": 796 + }, + { + "epoch": 11.069899519440805, + "grad_norm": 0.32266443967819214, + "learning_rate": 0.0006, + "loss": 4.364782810211182, + "step": 797 + }, + { + "epoch": 11.083879423328964, + "grad_norm": 0.27460047602653503, + "learning_rate": 0.0006, + "loss": 4.348380088806152, + "step": 798 + }, + { + "epoch": 11.097859327217126, + "grad_norm": 0.30498892068862915, + "learning_rate": 0.0006, + "loss": 4.347856521606445, + "step": 799 + }, + { + "epoch": 11.111839231105286, + "grad_norm": 0.29740771651268005, + "learning_rate": 0.0006, + "loss": 4.343471050262451, + "step": 800 + }, + { + "epoch": 11.125819134993447, + "grad_norm": 0.3004681169986725, + "learning_rate": 0.0006, + "loss": 4.337590217590332, + "step": 801 + }, + { + "epoch": 11.139799038881607, + "grad_norm": 0.3000192642211914, + "learning_rate": 0.0006, + "loss": 4.349949836730957, + "step": 802 + }, + { + "epoch": 11.153778942769769, + "grad_norm": 0.27461889386177063, + "learning_rate": 0.0006, + "loss": 4.338934898376465, + "step": 803 + }, + { + "epoch": 11.167758846657929, + "grad_norm": 0.2856169641017914, + "learning_rate": 0.0006, + "loss": 4.320754051208496, + "step": 804 + }, + { + "epoch": 11.18173875054609, + "grad_norm": 0.29822713136672974, + "learning_rate": 0.0006, + "loss": 4.357949733734131, + "step": 805 + }, + { + "epoch": 11.19571865443425, + "grad_norm": 0.34061339497566223, + "learning_rate": 0.0006, + "loss": 4.327282905578613, + "step": 806 + }, + { + "epoch": 11.209698558322412, + "grad_norm": 0.3379063010215759, + "learning_rate": 0.0006, + "loss": 4.355471611022949, + "step": 807 + }, + { + "epoch": 11.223678462210572, + "grad_norm": 0.2859216630458832, + "learning_rate": 0.0006, + "loss": 4.352344989776611, + "step": 808 + }, + { + "epoch": 11.237658366098733, + "grad_norm": 0.29522669315338135, + "learning_rate": 0.0006, + "loss": 4.349186897277832, + "step": 809 + }, + { + "epoch": 11.251638269986893, + "grad_norm": 0.273798406124115, + "learning_rate": 0.0006, + "loss": 4.342379570007324, + "step": 810 + }, + { + "epoch": 11.265618173875055, + "grad_norm": 0.25298982858657837, + "learning_rate": 0.0006, + "loss": 4.358835220336914, + "step": 811 + }, + { + "epoch": 11.279598077763215, + "grad_norm": 0.2170463651418686, + "learning_rate": 0.0006, + "loss": 4.3422017097473145, + "step": 812 + }, + { + "epoch": 11.293577981651376, + "grad_norm": 0.24855731427669525, + "learning_rate": 0.0006, + "loss": 4.322849750518799, + "step": 813 + }, + { + "epoch": 11.307557885539538, + "grad_norm": 0.22564345598220825, + "learning_rate": 0.0006, + "loss": 4.316864967346191, + "step": 814 + }, + { + "epoch": 11.321537789427698, + "grad_norm": 0.21532197296619415, + "learning_rate": 0.0006, + "loss": 4.326743125915527, + "step": 815 + }, + { + "epoch": 11.33551769331586, + "grad_norm": 0.20514146983623505, + "learning_rate": 0.0006, + "loss": 4.326531887054443, + "step": 816 + }, + { + "epoch": 11.349497597204019, + "grad_norm": 0.19035090506076813, + "learning_rate": 0.0006, + "loss": 4.318154335021973, + "step": 817 + }, + { + "epoch": 11.36347750109218, + "grad_norm": 0.17889662086963654, + "learning_rate": 0.0006, + "loss": 4.35410213470459, + "step": 818 + }, + { + "epoch": 11.37745740498034, + "grad_norm": 0.20564863085746765, + "learning_rate": 0.0006, + "loss": 4.350226879119873, + "step": 819 + }, + { + "epoch": 11.391437308868502, + "grad_norm": 0.2412603348493576, + "learning_rate": 0.0006, + "loss": 4.325137138366699, + "step": 820 + }, + { + "epoch": 11.405417212756662, + "grad_norm": 0.2603496015071869, + "learning_rate": 0.0006, + "loss": 4.335752487182617, + "step": 821 + }, + { + "epoch": 11.419397116644824, + "grad_norm": 0.2968119978904724, + "learning_rate": 0.0006, + "loss": 4.3317670822143555, + "step": 822 + }, + { + "epoch": 11.433377020532983, + "grad_norm": 0.3280937969684601, + "learning_rate": 0.0006, + "loss": 4.322279453277588, + "step": 823 + }, + { + "epoch": 11.447356924421145, + "grad_norm": 0.3598847985267639, + "learning_rate": 0.0006, + "loss": 4.312255859375, + "step": 824 + }, + { + "epoch": 11.461336828309305, + "grad_norm": 0.3996485471725464, + "learning_rate": 0.0006, + "loss": 4.327103614807129, + "step": 825 + }, + { + "epoch": 11.475316732197467, + "grad_norm": 0.4352041780948639, + "learning_rate": 0.0006, + "loss": 4.368639945983887, + "step": 826 + }, + { + "epoch": 11.489296636085626, + "grad_norm": 0.4451918601989746, + "learning_rate": 0.0006, + "loss": 4.335113048553467, + "step": 827 + }, + { + "epoch": 11.503276539973788, + "grad_norm": 0.4403933584690094, + "learning_rate": 0.0006, + "loss": 4.369889259338379, + "step": 828 + }, + { + "epoch": 11.517256443861948, + "grad_norm": 0.34862443804740906, + "learning_rate": 0.0006, + "loss": 4.316292762756348, + "step": 829 + }, + { + "epoch": 11.53123634775011, + "grad_norm": 0.3240634500980377, + "learning_rate": 0.0006, + "loss": 4.328078746795654, + "step": 830 + }, + { + "epoch": 11.54521625163827, + "grad_norm": 0.2445751428604126, + "learning_rate": 0.0006, + "loss": 4.291940689086914, + "step": 831 + }, + { + "epoch": 11.55919615552643, + "grad_norm": 0.24376554787158966, + "learning_rate": 0.0006, + "loss": 4.339217662811279, + "step": 832 + }, + { + "epoch": 11.57317605941459, + "grad_norm": 0.22419725358486176, + "learning_rate": 0.0006, + "loss": 4.2887468338012695, + "step": 833 + }, + { + "epoch": 11.587155963302752, + "grad_norm": 0.22318261861801147, + "learning_rate": 0.0006, + "loss": 4.298492908477783, + "step": 834 + }, + { + "epoch": 11.601135867190912, + "grad_norm": 0.2357342392206192, + "learning_rate": 0.0006, + "loss": 4.328692436218262, + "step": 835 + }, + { + "epoch": 11.615115771079074, + "grad_norm": 0.25450602173805237, + "learning_rate": 0.0006, + "loss": 4.360058784484863, + "step": 836 + }, + { + "epoch": 11.629095674967235, + "grad_norm": 0.24540965259075165, + "learning_rate": 0.0006, + "loss": 4.311890602111816, + "step": 837 + }, + { + "epoch": 11.643075578855395, + "grad_norm": 0.2535638213157654, + "learning_rate": 0.0006, + "loss": 4.327730178833008, + "step": 838 + }, + { + "epoch": 11.657055482743557, + "grad_norm": 0.23063556849956512, + "learning_rate": 0.0006, + "loss": 4.303299903869629, + "step": 839 + }, + { + "epoch": 11.671035386631717, + "grad_norm": 0.21813632547855377, + "learning_rate": 0.0006, + "loss": 4.315352439880371, + "step": 840 + }, + { + "epoch": 11.685015290519878, + "grad_norm": 0.2170359194278717, + "learning_rate": 0.0006, + "loss": 4.278632164001465, + "step": 841 + }, + { + "epoch": 11.698995194408038, + "grad_norm": 0.21059377491474152, + "learning_rate": 0.0006, + "loss": 4.306049346923828, + "step": 842 + }, + { + "epoch": 11.7129750982962, + "grad_norm": 0.19872888922691345, + "learning_rate": 0.0006, + "loss": 4.3091535568237305, + "step": 843 + }, + { + "epoch": 11.72695500218436, + "grad_norm": 0.20059862732887268, + "learning_rate": 0.0006, + "loss": 4.2884063720703125, + "step": 844 + }, + { + "epoch": 11.740934906072521, + "grad_norm": 0.19952483475208282, + "learning_rate": 0.0006, + "loss": 4.293610572814941, + "step": 845 + }, + { + "epoch": 11.754914809960681, + "grad_norm": 0.19794537127017975, + "learning_rate": 0.0006, + "loss": 4.288822174072266, + "step": 846 + }, + { + "epoch": 11.768894713848843, + "grad_norm": 0.213914692401886, + "learning_rate": 0.0006, + "loss": 4.320849418640137, + "step": 847 + }, + { + "epoch": 11.782874617737003, + "grad_norm": 0.18500955402851105, + "learning_rate": 0.0006, + "loss": 4.29300594329834, + "step": 848 + }, + { + "epoch": 11.796854521625164, + "grad_norm": 0.19446656107902527, + "learning_rate": 0.0006, + "loss": 4.3079352378845215, + "step": 849 + }, + { + "epoch": 11.810834425513324, + "grad_norm": 0.22191768884658813, + "learning_rate": 0.0006, + "loss": 4.295967102050781, + "step": 850 + }, + { + "epoch": 11.824814329401486, + "grad_norm": 0.20748084783554077, + "learning_rate": 0.0006, + "loss": 4.332365989685059, + "step": 851 + }, + { + "epoch": 11.838794233289645, + "grad_norm": 0.20993955433368683, + "learning_rate": 0.0006, + "loss": 4.294618129730225, + "step": 852 + }, + { + "epoch": 11.852774137177807, + "grad_norm": 0.23506952822208405, + "learning_rate": 0.0006, + "loss": 4.313426971435547, + "step": 853 + }, + { + "epoch": 11.866754041065967, + "grad_norm": 0.2379443347454071, + "learning_rate": 0.0006, + "loss": 4.297664642333984, + "step": 854 + }, + { + "epoch": 11.880733944954128, + "grad_norm": 0.2127852737903595, + "learning_rate": 0.0006, + "loss": 4.2807698249816895, + "step": 855 + }, + { + "epoch": 11.89471384884229, + "grad_norm": 0.2125532180070877, + "learning_rate": 0.0006, + "loss": 4.310990333557129, + "step": 856 + }, + { + "epoch": 11.90869375273045, + "grad_norm": 0.1996062994003296, + "learning_rate": 0.0006, + "loss": 4.253237724304199, + "step": 857 + }, + { + "epoch": 11.922673656618612, + "grad_norm": 0.20747603476047516, + "learning_rate": 0.0006, + "loss": 4.294193267822266, + "step": 858 + }, + { + "epoch": 11.936653560506771, + "grad_norm": 0.24082425236701965, + "learning_rate": 0.0006, + "loss": 4.269967079162598, + "step": 859 + }, + { + "epoch": 11.950633464394933, + "grad_norm": 0.28993573784828186, + "learning_rate": 0.0006, + "loss": 4.294550895690918, + "step": 860 + }, + { + "epoch": 11.964613368283093, + "grad_norm": 0.29576948285102844, + "learning_rate": 0.0006, + "loss": 4.3188252449035645, + "step": 861 + }, + { + "epoch": 11.978593272171254, + "grad_norm": 0.2754935026168823, + "learning_rate": 0.0006, + "loss": 4.312817573547363, + "step": 862 + }, + { + "epoch": 11.992573176059414, + "grad_norm": 0.3062523305416107, + "learning_rate": 0.0006, + "loss": 4.288214683532715, + "step": 863 + }, + { + "epoch": 12.0, + "grad_norm": 0.3367644250392914, + "learning_rate": 0.0006, + "loss": 4.314888954162598, + "step": 864 + }, + { + "epoch": 12.0, + "eval_loss": 4.516861438751221, + "eval_runtime": 44.2584, + "eval_samples_per_second": 55.176, + "eval_steps_per_second": 3.457, + "step": 864 + }, + { + "epoch": 12.013979903888162, + "grad_norm": 0.2976512014865875, + "learning_rate": 0.0006, + "loss": 4.278797149658203, + "step": 865 + }, + { + "epoch": 12.027959807776321, + "grad_norm": 0.32217127084732056, + "learning_rate": 0.0006, + "loss": 4.2823615074157715, + "step": 866 + }, + { + "epoch": 12.041939711664483, + "grad_norm": 0.31538400053977966, + "learning_rate": 0.0006, + "loss": 4.252805709838867, + "step": 867 + }, + { + "epoch": 12.055919615552643, + "grad_norm": 0.3501375913619995, + "learning_rate": 0.0006, + "loss": 4.276501655578613, + "step": 868 + }, + { + "epoch": 12.069899519440805, + "grad_norm": 0.3452056646347046, + "learning_rate": 0.0006, + "loss": 4.275739669799805, + "step": 869 + }, + { + "epoch": 12.083879423328964, + "grad_norm": 0.36963316798210144, + "learning_rate": 0.0006, + "loss": 4.3215227127075195, + "step": 870 + }, + { + "epoch": 12.097859327217126, + "grad_norm": 0.41605016589164734, + "learning_rate": 0.0006, + "loss": 4.28739595413208, + "step": 871 + }, + { + "epoch": 12.111839231105286, + "grad_norm": 0.37700653076171875, + "learning_rate": 0.0006, + "loss": 4.291154861450195, + "step": 872 + }, + { + "epoch": 12.125819134993447, + "grad_norm": 0.3194253444671631, + "learning_rate": 0.0006, + "loss": 4.259326934814453, + "step": 873 + }, + { + "epoch": 12.139799038881607, + "grad_norm": 0.31770631670951843, + "learning_rate": 0.0006, + "loss": 4.270082473754883, + "step": 874 + }, + { + "epoch": 12.153778942769769, + "grad_norm": 0.3748120069503784, + "learning_rate": 0.0006, + "loss": 4.2727274894714355, + "step": 875 + }, + { + "epoch": 12.167758846657929, + "grad_norm": 0.3821348547935486, + "learning_rate": 0.0006, + "loss": 4.2848286628723145, + "step": 876 + }, + { + "epoch": 12.18173875054609, + "grad_norm": 0.31894201040267944, + "learning_rate": 0.0006, + "loss": 4.289551258087158, + "step": 877 + }, + { + "epoch": 12.19571865443425, + "grad_norm": 0.2695826292037964, + "learning_rate": 0.0006, + "loss": 4.2797346115112305, + "step": 878 + }, + { + "epoch": 12.209698558322412, + "grad_norm": 0.23966269195079803, + "learning_rate": 0.0006, + "loss": 4.24021577835083, + "step": 879 + }, + { + "epoch": 12.223678462210572, + "grad_norm": 0.24342599511146545, + "learning_rate": 0.0006, + "loss": 4.277721881866455, + "step": 880 + }, + { + "epoch": 12.237658366098733, + "grad_norm": 0.2522958815097809, + "learning_rate": 0.0006, + "loss": 4.263946533203125, + "step": 881 + }, + { + "epoch": 12.251638269986893, + "grad_norm": 0.2708299458026886, + "learning_rate": 0.0006, + "loss": 4.274540901184082, + "step": 882 + }, + { + "epoch": 12.265618173875055, + "grad_norm": 0.2978788912296295, + "learning_rate": 0.0006, + "loss": 4.2674970626831055, + "step": 883 + }, + { + "epoch": 12.279598077763215, + "grad_norm": 0.2898774743080139, + "learning_rate": 0.0006, + "loss": 4.235060691833496, + "step": 884 + }, + { + "epoch": 12.293577981651376, + "grad_norm": 0.27941837906837463, + "learning_rate": 0.0006, + "loss": 4.284140586853027, + "step": 885 + }, + { + "epoch": 12.307557885539538, + "grad_norm": 0.25050559639930725, + "learning_rate": 0.0006, + "loss": 4.270134925842285, + "step": 886 + }, + { + "epoch": 12.321537789427698, + "grad_norm": 0.21867156028747559, + "learning_rate": 0.0006, + "loss": 4.241571426391602, + "step": 887 + }, + { + "epoch": 12.33551769331586, + "grad_norm": 0.24735847115516663, + "learning_rate": 0.0006, + "loss": 4.253087997436523, + "step": 888 + }, + { + "epoch": 12.349497597204019, + "grad_norm": 0.23069104552268982, + "learning_rate": 0.0006, + "loss": 4.258606910705566, + "step": 889 + }, + { + "epoch": 12.36347750109218, + "grad_norm": 0.2594369947910309, + "learning_rate": 0.0006, + "loss": 4.307351112365723, + "step": 890 + }, + { + "epoch": 12.37745740498034, + "grad_norm": 0.25349098443984985, + "learning_rate": 0.0006, + "loss": 4.264268398284912, + "step": 891 + }, + { + "epoch": 12.391437308868502, + "grad_norm": 0.2550840675830841, + "learning_rate": 0.0006, + "loss": 4.247092247009277, + "step": 892 + }, + { + "epoch": 12.405417212756662, + "grad_norm": 0.2107602059841156, + "learning_rate": 0.0006, + "loss": 4.240527153015137, + "step": 893 + }, + { + "epoch": 12.419397116644824, + "grad_norm": 0.2025548368692398, + "learning_rate": 0.0006, + "loss": 4.244686126708984, + "step": 894 + }, + { + "epoch": 12.433377020532983, + "grad_norm": 0.22061701118946075, + "learning_rate": 0.0006, + "loss": 4.233231544494629, + "step": 895 + }, + { + "epoch": 12.447356924421145, + "grad_norm": 0.19503085315227509, + "learning_rate": 0.0006, + "loss": 4.23851203918457, + "step": 896 + }, + { + "epoch": 12.461336828309305, + "grad_norm": 0.19313643872737885, + "learning_rate": 0.0006, + "loss": 4.190886497497559, + "step": 897 + }, + { + "epoch": 12.475316732197467, + "grad_norm": 0.21094176173210144, + "learning_rate": 0.0006, + "loss": 4.277888298034668, + "step": 898 + }, + { + "epoch": 12.489296636085626, + "grad_norm": 0.1980651170015335, + "learning_rate": 0.0006, + "loss": 4.251066207885742, + "step": 899 + }, + { + "epoch": 12.503276539973788, + "grad_norm": 0.179737389087677, + "learning_rate": 0.0006, + "loss": 4.194703102111816, + "step": 900 + }, + { + "epoch": 12.517256443861948, + "grad_norm": 0.19069281220436096, + "learning_rate": 0.0006, + "loss": 4.242412567138672, + "step": 901 + }, + { + "epoch": 12.53123634775011, + "grad_norm": 0.191154345870018, + "learning_rate": 0.0006, + "loss": 4.2432780265808105, + "step": 902 + }, + { + "epoch": 12.54521625163827, + "grad_norm": 0.19760103523731232, + "learning_rate": 0.0006, + "loss": 4.23294734954834, + "step": 903 + }, + { + "epoch": 12.55919615552643, + "grad_norm": 0.19982324540615082, + "learning_rate": 0.0006, + "loss": 4.249764442443848, + "step": 904 + }, + { + "epoch": 12.57317605941459, + "grad_norm": 0.1986108422279358, + "learning_rate": 0.0006, + "loss": 4.213435649871826, + "step": 905 + }, + { + "epoch": 12.587155963302752, + "grad_norm": 0.19727319478988647, + "learning_rate": 0.0006, + "loss": 4.247962951660156, + "step": 906 + }, + { + "epoch": 12.601135867190912, + "grad_norm": 0.23404482007026672, + "learning_rate": 0.0006, + "loss": 4.237396240234375, + "step": 907 + }, + { + "epoch": 12.615115771079074, + "grad_norm": 0.21136441826820374, + "learning_rate": 0.0006, + "loss": 4.236040115356445, + "step": 908 + }, + { + "epoch": 12.629095674967235, + "grad_norm": 0.2209048718214035, + "learning_rate": 0.0006, + "loss": 4.234212875366211, + "step": 909 + }, + { + "epoch": 12.643075578855395, + "grad_norm": 0.22120307385921478, + "learning_rate": 0.0006, + "loss": 4.2711076736450195, + "step": 910 + }, + { + "epoch": 12.657055482743557, + "grad_norm": 0.22733066976070404, + "learning_rate": 0.0006, + "loss": 4.231651306152344, + "step": 911 + }, + { + "epoch": 12.671035386631717, + "grad_norm": 0.2435602843761444, + "learning_rate": 0.0006, + "loss": 4.249372482299805, + "step": 912 + }, + { + "epoch": 12.685015290519878, + "grad_norm": 0.28881654143333435, + "learning_rate": 0.0006, + "loss": 4.2626051902771, + "step": 913 + }, + { + "epoch": 12.698995194408038, + "grad_norm": 0.3211199641227722, + "learning_rate": 0.0006, + "loss": 4.254220485687256, + "step": 914 + }, + { + "epoch": 12.7129750982962, + "grad_norm": 0.3118100166320801, + "learning_rate": 0.0006, + "loss": 4.233747959136963, + "step": 915 + }, + { + "epoch": 12.72695500218436, + "grad_norm": 0.33411866426467896, + "learning_rate": 0.0006, + "loss": 4.270386219024658, + "step": 916 + }, + { + "epoch": 12.740934906072521, + "grad_norm": 0.2968253195285797, + "learning_rate": 0.0006, + "loss": 4.242254257202148, + "step": 917 + }, + { + "epoch": 12.754914809960681, + "grad_norm": 0.2959132194519043, + "learning_rate": 0.0006, + "loss": 4.232100486755371, + "step": 918 + }, + { + "epoch": 12.768894713848843, + "grad_norm": 0.2729283273220062, + "learning_rate": 0.0006, + "loss": 4.233869552612305, + "step": 919 + }, + { + "epoch": 12.782874617737003, + "grad_norm": 0.2669033408164978, + "learning_rate": 0.0006, + "loss": 4.261008262634277, + "step": 920 + }, + { + "epoch": 12.796854521625164, + "grad_norm": 0.2738507091999054, + "learning_rate": 0.0006, + "loss": 4.2286763191223145, + "step": 921 + }, + { + "epoch": 12.810834425513324, + "grad_norm": 0.29105183482170105, + "learning_rate": 0.0006, + "loss": 4.281410217285156, + "step": 922 + }, + { + "epoch": 12.824814329401486, + "grad_norm": 0.31330201029777527, + "learning_rate": 0.0006, + "loss": 4.264181613922119, + "step": 923 + }, + { + "epoch": 12.838794233289645, + "grad_norm": 0.31324025988578796, + "learning_rate": 0.0006, + "loss": 4.250385284423828, + "step": 924 + }, + { + "epoch": 12.852774137177807, + "grad_norm": 0.2727925181388855, + "learning_rate": 0.0006, + "loss": 4.24821138381958, + "step": 925 + }, + { + "epoch": 12.866754041065967, + "grad_norm": 0.27350082993507385, + "learning_rate": 0.0006, + "loss": 4.230215072631836, + "step": 926 + }, + { + "epoch": 12.880733944954128, + "grad_norm": 0.2269950658082962, + "learning_rate": 0.0006, + "loss": 4.210305213928223, + "step": 927 + }, + { + "epoch": 12.89471384884229, + "grad_norm": 0.24667619168758392, + "learning_rate": 0.0006, + "loss": 4.239969253540039, + "step": 928 + }, + { + "epoch": 12.90869375273045, + "grad_norm": 0.22510501742362976, + "learning_rate": 0.0006, + "loss": 4.192750930786133, + "step": 929 + }, + { + "epoch": 12.922673656618612, + "grad_norm": 0.22887611389160156, + "learning_rate": 0.0006, + "loss": 4.264463424682617, + "step": 930 + }, + { + "epoch": 12.936653560506771, + "grad_norm": 0.22195978462696075, + "learning_rate": 0.0006, + "loss": 4.205256938934326, + "step": 931 + }, + { + "epoch": 12.950633464394933, + "grad_norm": 0.23184578120708466, + "learning_rate": 0.0006, + "loss": 4.214578628540039, + "step": 932 + }, + { + "epoch": 12.964613368283093, + "grad_norm": 0.2186676561832428, + "learning_rate": 0.0006, + "loss": 4.227711200714111, + "step": 933 + }, + { + "epoch": 12.978593272171254, + "grad_norm": 0.2160426527261734, + "learning_rate": 0.0006, + "loss": 4.221796989440918, + "step": 934 + }, + { + "epoch": 12.992573176059414, + "grad_norm": 0.21562792360782623, + "learning_rate": 0.0006, + "loss": 4.21957540512085, + "step": 935 + }, + { + "epoch": 13.0, + "grad_norm": 0.22538058459758759, + "learning_rate": 0.0006, + "loss": 4.2353973388671875, + "step": 936 + }, + { + "epoch": 13.0, + "eval_loss": 4.426600933074951, + "eval_runtime": 44.8138, + "eval_samples_per_second": 54.492, + "eval_steps_per_second": 3.414, + "step": 936 + }, + { + "epoch": 13.013979903888162, + "grad_norm": 0.24888049066066742, + "learning_rate": 0.0006, + "loss": 4.18648624420166, + "step": 937 + }, + { + "epoch": 13.027959807776321, + "grad_norm": 0.28330180048942566, + "learning_rate": 0.0006, + "loss": 4.188892364501953, + "step": 938 + }, + { + "epoch": 13.041939711664483, + "grad_norm": 0.31152188777923584, + "learning_rate": 0.0006, + "loss": 4.2053399085998535, + "step": 939 + }, + { + "epoch": 13.055919615552643, + "grad_norm": 0.2842433452606201, + "learning_rate": 0.0006, + "loss": 4.191902160644531, + "step": 940 + }, + { + "epoch": 13.069899519440805, + "grad_norm": 0.23664532601833344, + "learning_rate": 0.0006, + "loss": 4.1831865310668945, + "step": 941 + }, + { + "epoch": 13.083879423328964, + "grad_norm": 0.24204140901565552, + "learning_rate": 0.0006, + "loss": 4.202641487121582, + "step": 942 + }, + { + "epoch": 13.097859327217126, + "grad_norm": 0.235311359167099, + "learning_rate": 0.0006, + "loss": 4.174511909484863, + "step": 943 + }, + { + "epoch": 13.111839231105286, + "grad_norm": 0.27127715945243835, + "learning_rate": 0.0006, + "loss": 4.201844215393066, + "step": 944 + }, + { + "epoch": 13.125819134993447, + "grad_norm": 0.2722373604774475, + "learning_rate": 0.0006, + "loss": 4.157383918762207, + "step": 945 + }, + { + "epoch": 13.139799038881607, + "grad_norm": 0.25446659326553345, + "learning_rate": 0.0006, + "loss": 4.221236228942871, + "step": 946 + }, + { + "epoch": 13.153778942769769, + "grad_norm": 0.273017019033432, + "learning_rate": 0.0006, + "loss": 4.195512771606445, + "step": 947 + }, + { + "epoch": 13.167758846657929, + "grad_norm": 0.24766312539577484, + "learning_rate": 0.0006, + "loss": 4.220959663391113, + "step": 948 + }, + { + "epoch": 13.18173875054609, + "grad_norm": 0.24636317789554596, + "learning_rate": 0.0006, + "loss": 4.214302062988281, + "step": 949 + }, + { + "epoch": 13.19571865443425, + "grad_norm": 0.3177756667137146, + "learning_rate": 0.0006, + "loss": 4.213500022888184, + "step": 950 + }, + { + "epoch": 13.209698558322412, + "grad_norm": 0.44579195976257324, + "learning_rate": 0.0006, + "loss": 4.227644920349121, + "step": 951 + }, + { + "epoch": 13.223678462210572, + "grad_norm": 0.4217414855957031, + "learning_rate": 0.0006, + "loss": 4.180937767028809, + "step": 952 + }, + { + "epoch": 13.237658366098733, + "grad_norm": 0.30148059129714966, + "learning_rate": 0.0006, + "loss": 4.207760810852051, + "step": 953 + }, + { + "epoch": 13.251638269986893, + "grad_norm": 0.3192492127418518, + "learning_rate": 0.0006, + "loss": 4.197999000549316, + "step": 954 + }, + { + "epoch": 13.265618173875055, + "grad_norm": 0.37334588170051575, + "learning_rate": 0.0006, + "loss": 4.208001136779785, + "step": 955 + }, + { + "epoch": 13.279598077763215, + "grad_norm": 0.4059637784957886, + "learning_rate": 0.0006, + "loss": 4.211322784423828, + "step": 956 + }, + { + "epoch": 13.293577981651376, + "grad_norm": 0.3389599323272705, + "learning_rate": 0.0006, + "loss": 4.204404354095459, + "step": 957 + }, + { + "epoch": 13.307557885539538, + "grad_norm": 0.2675766050815582, + "learning_rate": 0.0006, + "loss": 4.245941162109375, + "step": 958 + }, + { + "epoch": 13.321537789427698, + "grad_norm": 0.2730264365673065, + "learning_rate": 0.0006, + "loss": 4.2221221923828125, + "step": 959 + }, + { + "epoch": 13.33551769331586, + "grad_norm": 0.26458224654197693, + "learning_rate": 0.0006, + "loss": 4.205596923828125, + "step": 960 + }, + { + "epoch": 13.349497597204019, + "grad_norm": 0.2872551381587982, + "learning_rate": 0.0006, + "loss": 4.196977615356445, + "step": 961 + }, + { + "epoch": 13.36347750109218, + "grad_norm": 0.2954796850681305, + "learning_rate": 0.0006, + "loss": 4.202796936035156, + "step": 962 + }, + { + "epoch": 13.37745740498034, + "grad_norm": 0.2619425654411316, + "learning_rate": 0.0006, + "loss": 4.196845054626465, + "step": 963 + }, + { + "epoch": 13.391437308868502, + "grad_norm": 0.30088478326797485, + "learning_rate": 0.0006, + "loss": 4.219697952270508, + "step": 964 + }, + { + "epoch": 13.405417212756662, + "grad_norm": 0.30388689041137695, + "learning_rate": 0.0006, + "loss": 4.187566757202148, + "step": 965 + }, + { + "epoch": 13.419397116644824, + "grad_norm": 0.27918127179145813, + "learning_rate": 0.0006, + "loss": 4.223600387573242, + "step": 966 + }, + { + "epoch": 13.433377020532983, + "grad_norm": 0.27634528279304504, + "learning_rate": 0.0006, + "loss": 4.165332317352295, + "step": 967 + }, + { + "epoch": 13.447356924421145, + "grad_norm": 0.28830021619796753, + "learning_rate": 0.0006, + "loss": 4.204029560089111, + "step": 968 + }, + { + "epoch": 13.461336828309305, + "grad_norm": 0.29220864176750183, + "learning_rate": 0.0006, + "loss": 4.218057155609131, + "step": 969 + }, + { + "epoch": 13.475316732197467, + "grad_norm": 0.3089624345302582, + "learning_rate": 0.0006, + "loss": 4.200654983520508, + "step": 970 + }, + { + "epoch": 13.489296636085626, + "grad_norm": 0.36479851603507996, + "learning_rate": 0.0006, + "loss": 4.182811737060547, + "step": 971 + }, + { + "epoch": 13.503276539973788, + "grad_norm": 0.37561097741127014, + "learning_rate": 0.0006, + "loss": 4.190266132354736, + "step": 972 + }, + { + "epoch": 13.517256443861948, + "grad_norm": 0.3263583183288574, + "learning_rate": 0.0006, + "loss": 4.214815616607666, + "step": 973 + }, + { + "epoch": 13.53123634775011, + "grad_norm": 0.21552999317646027, + "learning_rate": 0.0006, + "loss": 4.171380043029785, + "step": 974 + }, + { + "epoch": 13.54521625163827, + "grad_norm": 0.247328519821167, + "learning_rate": 0.0006, + "loss": 4.175377368927002, + "step": 975 + }, + { + "epoch": 13.55919615552643, + "grad_norm": 0.23740540444850922, + "learning_rate": 0.0006, + "loss": 4.212357997894287, + "step": 976 + }, + { + "epoch": 13.57317605941459, + "grad_norm": 0.21533876657485962, + "learning_rate": 0.0006, + "loss": 4.203285217285156, + "step": 977 + }, + { + "epoch": 13.587155963302752, + "grad_norm": 0.21462024748325348, + "learning_rate": 0.0006, + "loss": 4.178012371063232, + "step": 978 + }, + { + "epoch": 13.601135867190912, + "grad_norm": 0.2279169261455536, + "learning_rate": 0.0006, + "loss": 4.193912982940674, + "step": 979 + }, + { + "epoch": 13.615115771079074, + "grad_norm": 0.2202417552471161, + "learning_rate": 0.0006, + "loss": 4.167629718780518, + "step": 980 + }, + { + "epoch": 13.629095674967235, + "grad_norm": 0.20586472749710083, + "learning_rate": 0.0006, + "loss": 4.159290313720703, + "step": 981 + }, + { + "epoch": 13.643075578855395, + "grad_norm": 0.20200690627098083, + "learning_rate": 0.0006, + "loss": 4.210315227508545, + "step": 982 + }, + { + "epoch": 13.657055482743557, + "grad_norm": 0.21710257232189178, + "learning_rate": 0.0006, + "loss": 4.21730375289917, + "step": 983 + }, + { + "epoch": 13.671035386631717, + "grad_norm": 0.22058045864105225, + "learning_rate": 0.0006, + "loss": 4.1996073722839355, + "step": 984 + }, + { + "epoch": 13.685015290519878, + "grad_norm": 0.21549592912197113, + "learning_rate": 0.0006, + "loss": 4.209203720092773, + "step": 985 + }, + { + "epoch": 13.698995194408038, + "grad_norm": 0.22274717688560486, + "learning_rate": 0.0006, + "loss": 4.220660209655762, + "step": 986 + }, + { + "epoch": 13.7129750982962, + "grad_norm": 0.22791637480258942, + "learning_rate": 0.0006, + "loss": 4.158679962158203, + "step": 987 + }, + { + "epoch": 13.72695500218436, + "grad_norm": 0.216218963265419, + "learning_rate": 0.0006, + "loss": 4.188124656677246, + "step": 988 + }, + { + "epoch": 13.740934906072521, + "grad_norm": 0.19149383902549744, + "learning_rate": 0.0006, + "loss": 4.181729316711426, + "step": 989 + }, + { + "epoch": 13.754914809960681, + "grad_norm": 0.18964019417762756, + "learning_rate": 0.0006, + "loss": 4.184767246246338, + "step": 990 + }, + { + "epoch": 13.768894713848843, + "grad_norm": 0.1778000295162201, + "learning_rate": 0.0006, + "loss": 4.1802263259887695, + "step": 991 + }, + { + "epoch": 13.782874617737003, + "grad_norm": 0.18277616798877716, + "learning_rate": 0.0006, + "loss": 4.1657867431640625, + "step": 992 + }, + { + "epoch": 13.796854521625164, + "grad_norm": 0.18610034883022308, + "learning_rate": 0.0006, + "loss": 4.156744956970215, + "step": 993 + }, + { + "epoch": 13.810834425513324, + "grad_norm": 0.19332963228225708, + "learning_rate": 0.0006, + "loss": 4.143558502197266, + "step": 994 + }, + { + "epoch": 13.824814329401486, + "grad_norm": 0.19758112728595734, + "learning_rate": 0.0006, + "loss": 4.195793151855469, + "step": 995 + }, + { + "epoch": 13.838794233289645, + "grad_norm": 0.1933647245168686, + "learning_rate": 0.0006, + "loss": 4.169734954833984, + "step": 996 + }, + { + "epoch": 13.852774137177807, + "grad_norm": 0.2362028956413269, + "learning_rate": 0.0006, + "loss": 4.175025939941406, + "step": 997 + }, + { + "epoch": 13.866754041065967, + "grad_norm": 0.2465490996837616, + "learning_rate": 0.0006, + "loss": 4.173909664154053, + "step": 998 + }, + { + "epoch": 13.880733944954128, + "grad_norm": 0.23449952900409698, + "learning_rate": 0.0006, + "loss": 4.173429489135742, + "step": 999 + }, + { + "epoch": 13.89471384884229, + "grad_norm": 0.2282160222530365, + "learning_rate": 0.0006, + "loss": 4.158538341522217, + "step": 1000 + }, + { + "epoch": 13.90869375273045, + "grad_norm": 0.21066738665103912, + "learning_rate": 0.0006, + "loss": 4.171584129333496, + "step": 1001 + }, + { + "epoch": 13.922673656618612, + "grad_norm": 0.18787573277950287, + "learning_rate": 0.0006, + "loss": 4.1837544441223145, + "step": 1002 + }, + { + "epoch": 13.936653560506771, + "grad_norm": 0.2001059353351593, + "learning_rate": 0.0006, + "loss": 4.160369873046875, + "step": 1003 + }, + { + "epoch": 13.950633464394933, + "grad_norm": 0.21644988656044006, + "learning_rate": 0.0006, + "loss": 4.221372604370117, + "step": 1004 + }, + { + "epoch": 13.964613368283093, + "grad_norm": 0.22083887457847595, + "learning_rate": 0.0006, + "loss": 4.149261474609375, + "step": 1005 + }, + { + "epoch": 13.978593272171254, + "grad_norm": 0.2201409637928009, + "learning_rate": 0.0006, + "loss": 4.192010879516602, + "step": 1006 + }, + { + "epoch": 13.992573176059414, + "grad_norm": 0.18888601660728455, + "learning_rate": 0.0006, + "loss": 4.17539119720459, + "step": 1007 + }, + { + "epoch": 14.0, + "grad_norm": 0.2073872834444046, + "learning_rate": 0.0006, + "loss": 4.145265579223633, + "step": 1008 + }, + { + "epoch": 14.0, + "eval_loss": 4.36876106262207, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 1008 + }, + { + "epoch": 14.013979903888162, + "grad_norm": 0.20773135125637054, + "learning_rate": 0.0006, + "loss": 4.132615089416504, + "step": 1009 + }, + { + "epoch": 14.027959807776321, + "grad_norm": 0.22409620881080627, + "learning_rate": 0.0006, + "loss": 4.172839164733887, + "step": 1010 + }, + { + "epoch": 14.041939711664483, + "grad_norm": 0.24046066403388977, + "learning_rate": 0.0006, + "loss": 4.126678943634033, + "step": 1011 + }, + { + "epoch": 14.055919615552643, + "grad_norm": 0.29185160994529724, + "learning_rate": 0.0006, + "loss": 4.177952766418457, + "step": 1012 + }, + { + "epoch": 14.069899519440805, + "grad_norm": 0.2984033226966858, + "learning_rate": 0.0006, + "loss": 4.155030250549316, + "step": 1013 + }, + { + "epoch": 14.083879423328964, + "grad_norm": 0.30262473225593567, + "learning_rate": 0.0006, + "loss": 4.145394325256348, + "step": 1014 + }, + { + "epoch": 14.097859327217126, + "grad_norm": 0.3278133273124695, + "learning_rate": 0.0006, + "loss": 4.172739028930664, + "step": 1015 + }, + { + "epoch": 14.111839231105286, + "grad_norm": 0.3285452425479889, + "learning_rate": 0.0006, + "loss": 4.153196334838867, + "step": 1016 + }, + { + "epoch": 14.125819134993447, + "grad_norm": 0.33912697434425354, + "learning_rate": 0.0006, + "loss": 4.098162651062012, + "step": 1017 + }, + { + "epoch": 14.139799038881607, + "grad_norm": 0.32080814242362976, + "learning_rate": 0.0006, + "loss": 4.157135009765625, + "step": 1018 + }, + { + "epoch": 14.153778942769769, + "grad_norm": 0.31288477778434753, + "learning_rate": 0.0006, + "loss": 4.142683029174805, + "step": 1019 + }, + { + "epoch": 14.167758846657929, + "grad_norm": 0.350289523601532, + "learning_rate": 0.0006, + "loss": 4.134700775146484, + "step": 1020 + }, + { + "epoch": 14.18173875054609, + "grad_norm": 0.34274575114250183, + "learning_rate": 0.0006, + "loss": 4.1578569412231445, + "step": 1021 + }, + { + "epoch": 14.19571865443425, + "grad_norm": 0.2843035161495209, + "learning_rate": 0.0006, + "loss": 4.13760232925415, + "step": 1022 + }, + { + "epoch": 14.209698558322412, + "grad_norm": 0.28235161304473877, + "learning_rate": 0.0006, + "loss": 4.1492462158203125, + "step": 1023 + }, + { + "epoch": 14.223678462210572, + "grad_norm": 0.24407248198986053, + "learning_rate": 0.0006, + "loss": 4.144372463226318, + "step": 1024 + }, + { + "epoch": 14.237658366098733, + "grad_norm": 0.2489742934703827, + "learning_rate": 0.0006, + "loss": 4.137950897216797, + "step": 1025 + }, + { + "epoch": 14.251638269986893, + "grad_norm": 0.26035651564598083, + "learning_rate": 0.0006, + "loss": 4.144070625305176, + "step": 1026 + }, + { + "epoch": 14.265618173875055, + "grad_norm": 0.2726516127586365, + "learning_rate": 0.0006, + "loss": 4.145204067230225, + "step": 1027 + }, + { + "epoch": 14.279598077763215, + "grad_norm": 0.2723483443260193, + "learning_rate": 0.0006, + "loss": 4.118407249450684, + "step": 1028 + }, + { + "epoch": 14.293577981651376, + "grad_norm": 0.27476269006729126, + "learning_rate": 0.0006, + "loss": 4.111325263977051, + "step": 1029 + }, + { + "epoch": 14.307557885539538, + "grad_norm": 0.26202502846717834, + "learning_rate": 0.0006, + "loss": 4.122248649597168, + "step": 1030 + }, + { + "epoch": 14.321537789427698, + "grad_norm": 0.2472032904624939, + "learning_rate": 0.0006, + "loss": 4.157790184020996, + "step": 1031 + }, + { + "epoch": 14.33551769331586, + "grad_norm": 0.2518343925476074, + "learning_rate": 0.0006, + "loss": 4.109132766723633, + "step": 1032 + }, + { + "epoch": 14.349497597204019, + "grad_norm": 0.2652401924133301, + "learning_rate": 0.0006, + "loss": 4.144079685211182, + "step": 1033 + }, + { + "epoch": 14.36347750109218, + "grad_norm": 0.2356770783662796, + "learning_rate": 0.0006, + "loss": 4.128426551818848, + "step": 1034 + }, + { + "epoch": 14.37745740498034, + "grad_norm": 0.2164214551448822, + "learning_rate": 0.0006, + "loss": 4.1644392013549805, + "step": 1035 + }, + { + "epoch": 14.391437308868502, + "grad_norm": 0.22383111715316772, + "learning_rate": 0.0006, + "loss": 4.165862083435059, + "step": 1036 + }, + { + "epoch": 14.405417212756662, + "grad_norm": 0.23152419924736023, + "learning_rate": 0.0006, + "loss": 4.140036582946777, + "step": 1037 + }, + { + "epoch": 14.419397116644824, + "grad_norm": 0.2387741357088089, + "learning_rate": 0.0006, + "loss": 4.130461692810059, + "step": 1038 + }, + { + "epoch": 14.433377020532983, + "grad_norm": 0.24018129706382751, + "learning_rate": 0.0006, + "loss": 4.148482322692871, + "step": 1039 + }, + { + "epoch": 14.447356924421145, + "grad_norm": 0.25487351417541504, + "learning_rate": 0.0006, + "loss": 4.158121109008789, + "step": 1040 + }, + { + "epoch": 14.461336828309305, + "grad_norm": 0.28220096230506897, + "learning_rate": 0.0006, + "loss": 4.160198211669922, + "step": 1041 + }, + { + "epoch": 14.475316732197467, + "grad_norm": 0.2574434280395508, + "learning_rate": 0.0006, + "loss": 4.168512344360352, + "step": 1042 + }, + { + "epoch": 14.489296636085626, + "grad_norm": 0.22569820284843445, + "learning_rate": 0.0006, + "loss": 4.1595001220703125, + "step": 1043 + }, + { + "epoch": 14.503276539973788, + "grad_norm": 0.2473423182964325, + "learning_rate": 0.0006, + "loss": 4.084580898284912, + "step": 1044 + }, + { + "epoch": 14.517256443861948, + "grad_norm": 0.24281060695648193, + "learning_rate": 0.0006, + "loss": 4.139714241027832, + "step": 1045 + }, + { + "epoch": 14.53123634775011, + "grad_norm": 0.24691344797611237, + "learning_rate": 0.0006, + "loss": 4.115398406982422, + "step": 1046 + }, + { + "epoch": 14.54521625163827, + "grad_norm": 0.2583645284175873, + "learning_rate": 0.0006, + "loss": 4.142148494720459, + "step": 1047 + }, + { + "epoch": 14.55919615552643, + "grad_norm": 0.23258574306964874, + "learning_rate": 0.0006, + "loss": 4.16251277923584, + "step": 1048 + }, + { + "epoch": 14.57317605941459, + "grad_norm": 0.22103039920330048, + "learning_rate": 0.0006, + "loss": 4.1308441162109375, + "step": 1049 + }, + { + "epoch": 14.587155963302752, + "grad_norm": 0.23713579773902893, + "learning_rate": 0.0006, + "loss": 4.1565985679626465, + "step": 1050 + }, + { + "epoch": 14.601135867190912, + "grad_norm": 0.24406634271144867, + "learning_rate": 0.0006, + "loss": 4.14628267288208, + "step": 1051 + }, + { + "epoch": 14.615115771079074, + "grad_norm": 0.26821228861808777, + "learning_rate": 0.0006, + "loss": 4.138063430786133, + "step": 1052 + }, + { + "epoch": 14.629095674967235, + "grad_norm": 0.25483864545822144, + "learning_rate": 0.0006, + "loss": 4.1311163902282715, + "step": 1053 + }, + { + "epoch": 14.643075578855395, + "grad_norm": 0.23937982320785522, + "learning_rate": 0.0006, + "loss": 4.150882244110107, + "step": 1054 + }, + { + "epoch": 14.657055482743557, + "grad_norm": 0.21896475553512573, + "learning_rate": 0.0006, + "loss": 4.114015102386475, + "step": 1055 + }, + { + "epoch": 14.671035386631717, + "grad_norm": 0.20821231603622437, + "learning_rate": 0.0006, + "loss": 4.139034271240234, + "step": 1056 + }, + { + "epoch": 14.685015290519878, + "grad_norm": 0.1978551596403122, + "learning_rate": 0.0006, + "loss": 4.1810503005981445, + "step": 1057 + }, + { + "epoch": 14.698995194408038, + "grad_norm": 0.1945771872997284, + "learning_rate": 0.0006, + "loss": 4.120734214782715, + "step": 1058 + }, + { + "epoch": 14.7129750982962, + "grad_norm": 0.19518673419952393, + "learning_rate": 0.0006, + "loss": 4.14264440536499, + "step": 1059 + }, + { + "epoch": 14.72695500218436, + "grad_norm": 0.202596515417099, + "learning_rate": 0.0006, + "loss": 4.151649475097656, + "step": 1060 + }, + { + "epoch": 14.740934906072521, + "grad_norm": 0.1904762089252472, + "learning_rate": 0.0006, + "loss": 4.127899169921875, + "step": 1061 + }, + { + "epoch": 14.754914809960681, + "grad_norm": 0.20685508847236633, + "learning_rate": 0.0006, + "loss": 4.093445777893066, + "step": 1062 + }, + { + "epoch": 14.768894713848843, + "grad_norm": 0.22678329050540924, + "learning_rate": 0.0006, + "loss": 4.132084369659424, + "step": 1063 + }, + { + "epoch": 14.782874617737003, + "grad_norm": 0.24631841480731964, + "learning_rate": 0.0006, + "loss": 4.154788970947266, + "step": 1064 + }, + { + "epoch": 14.796854521625164, + "grad_norm": 0.24445782601833344, + "learning_rate": 0.0006, + "loss": 4.144735336303711, + "step": 1065 + }, + { + "epoch": 14.810834425513324, + "grad_norm": 0.22330640256404877, + "learning_rate": 0.0006, + "loss": 4.159893989562988, + "step": 1066 + }, + { + "epoch": 14.824814329401486, + "grad_norm": 0.22422967851161957, + "learning_rate": 0.0006, + "loss": 4.104874610900879, + "step": 1067 + }, + { + "epoch": 14.838794233289645, + "grad_norm": 0.24583931267261505, + "learning_rate": 0.0006, + "loss": 4.139403820037842, + "step": 1068 + }, + { + "epoch": 14.852774137177807, + "grad_norm": 0.2917379140853882, + "learning_rate": 0.0006, + "loss": 4.168988227844238, + "step": 1069 + }, + { + "epoch": 14.866754041065967, + "grad_norm": 0.3171777129173279, + "learning_rate": 0.0006, + "loss": 4.131263732910156, + "step": 1070 + }, + { + "epoch": 14.880733944954128, + "grad_norm": 0.3039591312408447, + "learning_rate": 0.0006, + "loss": 4.149853706359863, + "step": 1071 + }, + { + "epoch": 14.89471384884229, + "grad_norm": 0.2690650522708893, + "learning_rate": 0.0006, + "loss": 4.154787540435791, + "step": 1072 + }, + { + "epoch": 14.90869375273045, + "grad_norm": 0.28683212399482727, + "learning_rate": 0.0006, + "loss": 4.12751579284668, + "step": 1073 + }, + { + "epoch": 14.922673656618612, + "grad_norm": 0.30022913217544556, + "learning_rate": 0.0006, + "loss": 4.141940116882324, + "step": 1074 + }, + { + "epoch": 14.936653560506771, + "grad_norm": 0.3312259316444397, + "learning_rate": 0.0006, + "loss": 4.141905784606934, + "step": 1075 + }, + { + "epoch": 14.950633464394933, + "grad_norm": 0.31159237027168274, + "learning_rate": 0.0006, + "loss": 4.160192966461182, + "step": 1076 + }, + { + "epoch": 14.964613368283093, + "grad_norm": 0.30093592405319214, + "learning_rate": 0.0006, + "loss": 4.1085076332092285, + "step": 1077 + }, + { + "epoch": 14.978593272171254, + "grad_norm": 0.2728535830974579, + "learning_rate": 0.0006, + "loss": 4.156959056854248, + "step": 1078 + }, + { + "epoch": 14.992573176059414, + "grad_norm": 0.24766813218593597, + "learning_rate": 0.0006, + "loss": 4.113999843597412, + "step": 1079 + }, + { + "epoch": 15.0, + "grad_norm": 0.2538154721260071, + "learning_rate": 0.0006, + "loss": 4.147134780883789, + "step": 1080 + }, + { + "epoch": 15.0, + "eval_loss": 4.323154926300049, + "eval_runtime": 44.8813, + "eval_samples_per_second": 54.41, + "eval_steps_per_second": 3.409, + "step": 1080 + }, + { + "epoch": 15.013979903888162, + "grad_norm": 0.22535280883312225, + "learning_rate": 0.0006, + "loss": 4.112179756164551, + "step": 1081 + }, + { + "epoch": 15.027959807776321, + "grad_norm": 0.24340929090976715, + "learning_rate": 0.0006, + "loss": 4.080923080444336, + "step": 1082 + }, + { + "epoch": 15.041939711664483, + "grad_norm": 0.23159465193748474, + "learning_rate": 0.0006, + "loss": 4.097067356109619, + "step": 1083 + }, + { + "epoch": 15.055919615552643, + "grad_norm": 0.22674769163131714, + "learning_rate": 0.0006, + "loss": 4.118601322174072, + "step": 1084 + }, + { + "epoch": 15.069899519440805, + "grad_norm": 0.2524292469024658, + "learning_rate": 0.0006, + "loss": 4.101109504699707, + "step": 1085 + }, + { + "epoch": 15.083879423328964, + "grad_norm": 0.2505405843257904, + "learning_rate": 0.0006, + "loss": 4.121405601501465, + "step": 1086 + }, + { + "epoch": 15.097859327217126, + "grad_norm": 0.2557983696460724, + "learning_rate": 0.0006, + "loss": 4.1063947677612305, + "step": 1087 + }, + { + "epoch": 15.111839231105286, + "grad_norm": 0.24452129006385803, + "learning_rate": 0.0006, + "loss": 4.086133003234863, + "step": 1088 + }, + { + "epoch": 15.125819134993447, + "grad_norm": 0.25821781158447266, + "learning_rate": 0.0006, + "loss": 4.076262950897217, + "step": 1089 + }, + { + "epoch": 15.139799038881607, + "grad_norm": 0.23650537431240082, + "learning_rate": 0.0006, + "loss": 4.101842880249023, + "step": 1090 + }, + { + "epoch": 15.153778942769769, + "grad_norm": 0.2206192910671234, + "learning_rate": 0.0006, + "loss": 4.11027193069458, + "step": 1091 + }, + { + "epoch": 15.167758846657929, + "grad_norm": 0.21843163669109344, + "learning_rate": 0.0006, + "loss": 4.098437309265137, + "step": 1092 + }, + { + "epoch": 15.18173875054609, + "grad_norm": 0.2528176009654999, + "learning_rate": 0.0006, + "loss": 4.108713150024414, + "step": 1093 + }, + { + "epoch": 15.19571865443425, + "grad_norm": 0.26697206497192383, + "learning_rate": 0.0006, + "loss": 4.113210201263428, + "step": 1094 + }, + { + "epoch": 15.209698558322412, + "grad_norm": 0.26480963826179504, + "learning_rate": 0.0006, + "loss": 4.1103620529174805, + "step": 1095 + }, + { + "epoch": 15.223678462210572, + "grad_norm": 0.24887347221374512, + "learning_rate": 0.0006, + "loss": 4.103529930114746, + "step": 1096 + }, + { + "epoch": 15.237658366098733, + "grad_norm": 0.2344668060541153, + "learning_rate": 0.0006, + "loss": 4.129784107208252, + "step": 1097 + }, + { + "epoch": 15.251638269986893, + "grad_norm": 0.22639742493629456, + "learning_rate": 0.0006, + "loss": 4.113495349884033, + "step": 1098 + }, + { + "epoch": 15.265618173875055, + "grad_norm": 0.22466333210468292, + "learning_rate": 0.0006, + "loss": 4.102309703826904, + "step": 1099 + }, + { + "epoch": 15.279598077763215, + "grad_norm": 0.25135037302970886, + "learning_rate": 0.0006, + "loss": 4.117668628692627, + "step": 1100 + }, + { + "epoch": 15.293577981651376, + "grad_norm": 0.2347089946269989, + "learning_rate": 0.0006, + "loss": 4.086637496948242, + "step": 1101 + }, + { + "epoch": 15.307557885539538, + "grad_norm": 0.2347242832183838, + "learning_rate": 0.0006, + "loss": 4.098714828491211, + "step": 1102 + }, + { + "epoch": 15.321537789427698, + "grad_norm": 0.23990283906459808, + "learning_rate": 0.0006, + "loss": 4.079837799072266, + "step": 1103 + }, + { + "epoch": 15.33551769331586, + "grad_norm": 0.22366675734519958, + "learning_rate": 0.0006, + "loss": 4.108136177062988, + "step": 1104 + }, + { + "epoch": 15.349497597204019, + "grad_norm": 0.21823780238628387, + "learning_rate": 0.0006, + "loss": 4.10054349899292, + "step": 1105 + }, + { + "epoch": 15.36347750109218, + "grad_norm": 0.23059198260307312, + "learning_rate": 0.0006, + "loss": 4.108620643615723, + "step": 1106 + }, + { + "epoch": 15.37745740498034, + "grad_norm": 0.2313755601644516, + "learning_rate": 0.0006, + "loss": 4.088565826416016, + "step": 1107 + }, + { + "epoch": 15.391437308868502, + "grad_norm": 0.2546829283237457, + "learning_rate": 0.0006, + "loss": 4.104948043823242, + "step": 1108 + }, + { + "epoch": 15.405417212756662, + "grad_norm": 0.23666726052761078, + "learning_rate": 0.0006, + "loss": 4.111965179443359, + "step": 1109 + }, + { + "epoch": 15.419397116644824, + "grad_norm": 0.21971021592617035, + "learning_rate": 0.0006, + "loss": 4.097846984863281, + "step": 1110 + }, + { + "epoch": 15.433377020532983, + "grad_norm": 0.20951911807060242, + "learning_rate": 0.0006, + "loss": 4.110099792480469, + "step": 1111 + }, + { + "epoch": 15.447356924421145, + "grad_norm": 0.19590918719768524, + "learning_rate": 0.0006, + "loss": 4.101154327392578, + "step": 1112 + }, + { + "epoch": 15.461336828309305, + "grad_norm": 0.21048946678638458, + "learning_rate": 0.0006, + "loss": 4.0986127853393555, + "step": 1113 + }, + { + "epoch": 15.475316732197467, + "grad_norm": 0.21423374116420746, + "learning_rate": 0.0006, + "loss": 4.082328796386719, + "step": 1114 + }, + { + "epoch": 15.489296636085626, + "grad_norm": 0.227146714925766, + "learning_rate": 0.0006, + "loss": 4.105281829833984, + "step": 1115 + }, + { + "epoch": 15.503276539973788, + "grad_norm": 0.2079153060913086, + "learning_rate": 0.0006, + "loss": 4.100836753845215, + "step": 1116 + }, + { + "epoch": 15.517256443861948, + "grad_norm": 0.21084675192832947, + "learning_rate": 0.0006, + "loss": 4.0934343338012695, + "step": 1117 + }, + { + "epoch": 15.53123634775011, + "grad_norm": 0.23863616585731506, + "learning_rate": 0.0006, + "loss": 4.101540565490723, + "step": 1118 + }, + { + "epoch": 15.54521625163827, + "grad_norm": 0.2518490254878998, + "learning_rate": 0.0006, + "loss": 4.12303352355957, + "step": 1119 + }, + { + "epoch": 15.55919615552643, + "grad_norm": 0.24282905459403992, + "learning_rate": 0.0006, + "loss": 4.080670356750488, + "step": 1120 + }, + { + "epoch": 15.57317605941459, + "grad_norm": 0.24171605706214905, + "learning_rate": 0.0006, + "loss": 4.117938041687012, + "step": 1121 + }, + { + "epoch": 15.587155963302752, + "grad_norm": 0.28453412652015686, + "learning_rate": 0.0006, + "loss": 4.080114364624023, + "step": 1122 + }, + { + "epoch": 15.601135867190912, + "grad_norm": 0.30322617292404175, + "learning_rate": 0.0006, + "loss": 4.079695701599121, + "step": 1123 + }, + { + "epoch": 15.615115771079074, + "grad_norm": 0.2657633125782013, + "learning_rate": 0.0006, + "loss": 4.0916290283203125, + "step": 1124 + }, + { + "epoch": 15.629095674967235, + "grad_norm": 0.2467080056667328, + "learning_rate": 0.0006, + "loss": 4.095594882965088, + "step": 1125 + }, + { + "epoch": 15.643075578855395, + "grad_norm": 0.21767394244670868, + "learning_rate": 0.0006, + "loss": 4.079174041748047, + "step": 1126 + }, + { + "epoch": 15.657055482743557, + "grad_norm": 0.2088327705860138, + "learning_rate": 0.0006, + "loss": 4.060707092285156, + "step": 1127 + }, + { + "epoch": 15.671035386631717, + "grad_norm": 0.1921205073595047, + "learning_rate": 0.0006, + "loss": 4.073911666870117, + "step": 1128 + }, + { + "epoch": 15.685015290519878, + "grad_norm": 0.209339901804924, + "learning_rate": 0.0006, + "loss": 4.089954376220703, + "step": 1129 + }, + { + "epoch": 15.698995194408038, + "grad_norm": 0.23513881862163544, + "learning_rate": 0.0006, + "loss": 4.084906578063965, + "step": 1130 + }, + { + "epoch": 15.7129750982962, + "grad_norm": 0.26140275597572327, + "learning_rate": 0.0006, + "loss": 4.086570739746094, + "step": 1131 + }, + { + "epoch": 15.72695500218436, + "grad_norm": 0.290431946516037, + "learning_rate": 0.0006, + "loss": 4.071229457855225, + "step": 1132 + }, + { + "epoch": 15.740934906072521, + "grad_norm": 0.3061376214027405, + "learning_rate": 0.0006, + "loss": 4.103148460388184, + "step": 1133 + }, + { + "epoch": 15.754914809960681, + "grad_norm": 0.26312482357025146, + "learning_rate": 0.0006, + "loss": 4.088448524475098, + "step": 1134 + }, + { + "epoch": 15.768894713848843, + "grad_norm": 0.22474883496761322, + "learning_rate": 0.0006, + "loss": 4.091766834259033, + "step": 1135 + }, + { + "epoch": 15.782874617737003, + "grad_norm": 0.2341146171092987, + "learning_rate": 0.0006, + "loss": 4.1222758293151855, + "step": 1136 + }, + { + "epoch": 15.796854521625164, + "grad_norm": 0.23556149005889893, + "learning_rate": 0.0006, + "loss": 4.094954013824463, + "step": 1137 + }, + { + "epoch": 15.810834425513324, + "grad_norm": 0.263315349817276, + "learning_rate": 0.0006, + "loss": 4.1065473556518555, + "step": 1138 + }, + { + "epoch": 15.824814329401486, + "grad_norm": 0.2700869143009186, + "learning_rate": 0.0006, + "loss": 4.0890045166015625, + "step": 1139 + }, + { + "epoch": 15.838794233289645, + "grad_norm": 0.28697484731674194, + "learning_rate": 0.0006, + "loss": 4.092496395111084, + "step": 1140 + }, + { + "epoch": 15.852774137177807, + "grad_norm": 0.2824092507362366, + "learning_rate": 0.0006, + "loss": 4.079615592956543, + "step": 1141 + }, + { + "epoch": 15.866754041065967, + "grad_norm": 0.24547280371189117, + "learning_rate": 0.0006, + "loss": 4.089683532714844, + "step": 1142 + }, + { + "epoch": 15.880733944954128, + "grad_norm": 0.23653888702392578, + "learning_rate": 0.0006, + "loss": 4.067309379577637, + "step": 1143 + }, + { + "epoch": 15.89471384884229, + "grad_norm": 0.23784421384334564, + "learning_rate": 0.0006, + "loss": 4.09156608581543, + "step": 1144 + }, + { + "epoch": 15.90869375273045, + "grad_norm": 0.22753281891345978, + "learning_rate": 0.0006, + "loss": 4.095428466796875, + "step": 1145 + }, + { + "epoch": 15.922673656618612, + "grad_norm": 0.2464212030172348, + "learning_rate": 0.0006, + "loss": 4.1036376953125, + "step": 1146 + }, + { + "epoch": 15.936653560506771, + "grad_norm": 0.25531601905822754, + "learning_rate": 0.0006, + "loss": 4.073996543884277, + "step": 1147 + }, + { + "epoch": 15.950633464394933, + "grad_norm": 0.24145905673503876, + "learning_rate": 0.0006, + "loss": 4.094479560852051, + "step": 1148 + }, + { + "epoch": 15.964613368283093, + "grad_norm": 0.24274317920207977, + "learning_rate": 0.0006, + "loss": 4.101981163024902, + "step": 1149 + }, + { + "epoch": 15.978593272171254, + "grad_norm": 0.2350679188966751, + "learning_rate": 0.0006, + "loss": 4.057965278625488, + "step": 1150 + }, + { + "epoch": 15.992573176059414, + "grad_norm": 0.24072253704071045, + "learning_rate": 0.0006, + "loss": 4.020050048828125, + "step": 1151 + }, + { + "epoch": 16.0, + "grad_norm": 0.253978967666626, + "learning_rate": 0.0006, + "loss": 4.061928749084473, + "step": 1152 + }, + { + "epoch": 16.0, + "eval_loss": 4.270665645599365, + "eval_runtime": 44.5063, + "eval_samples_per_second": 54.869, + "eval_steps_per_second": 3.438, + "step": 1152 + }, + { + "epoch": 16.01397990388816, + "grad_norm": 0.3265204131603241, + "learning_rate": 0.0006, + "loss": 4.059116363525391, + "step": 1153 + }, + { + "epoch": 16.027959807776323, + "grad_norm": 0.34139737486839294, + "learning_rate": 0.0006, + "loss": 4.062219619750977, + "step": 1154 + }, + { + "epoch": 16.041939711664483, + "grad_norm": 0.2849949598312378, + "learning_rate": 0.0006, + "loss": 4.032323837280273, + "step": 1155 + }, + { + "epoch": 16.055919615552643, + "grad_norm": 0.25031402707099915, + "learning_rate": 0.0006, + "loss": 4.075527191162109, + "step": 1156 + }, + { + "epoch": 16.069899519440803, + "grad_norm": 0.25207436084747314, + "learning_rate": 0.0006, + "loss": 4.0883097648620605, + "step": 1157 + }, + { + "epoch": 16.083879423328966, + "grad_norm": 0.28677356243133545, + "learning_rate": 0.0006, + "loss": 4.040797233581543, + "step": 1158 + }, + { + "epoch": 16.097859327217126, + "grad_norm": 0.30778825283050537, + "learning_rate": 0.0006, + "loss": 4.051504135131836, + "step": 1159 + }, + { + "epoch": 16.111839231105286, + "grad_norm": 0.3136911988258362, + "learning_rate": 0.0006, + "loss": 4.045449256896973, + "step": 1160 + }, + { + "epoch": 16.125819134993446, + "grad_norm": 0.34384530782699585, + "learning_rate": 0.0006, + "loss": 4.069897651672363, + "step": 1161 + }, + { + "epoch": 16.13979903888161, + "grad_norm": 0.3074268400669098, + "learning_rate": 0.0006, + "loss": 4.0621137619018555, + "step": 1162 + }, + { + "epoch": 16.15377894276977, + "grad_norm": 0.33090949058532715, + "learning_rate": 0.0006, + "loss": 4.084089279174805, + "step": 1163 + }, + { + "epoch": 16.16775884665793, + "grad_norm": 0.26358580589294434, + "learning_rate": 0.0006, + "loss": 4.066563606262207, + "step": 1164 + }, + { + "epoch": 16.18173875054609, + "grad_norm": 0.25586041808128357, + "learning_rate": 0.0006, + "loss": 4.08109188079834, + "step": 1165 + }, + { + "epoch": 16.195718654434252, + "grad_norm": 0.2966184616088867, + "learning_rate": 0.0006, + "loss": 4.039186477661133, + "step": 1166 + }, + { + "epoch": 16.209698558322412, + "grad_norm": 0.3064924478530884, + "learning_rate": 0.0006, + "loss": 4.08139705657959, + "step": 1167 + }, + { + "epoch": 16.22367846221057, + "grad_norm": 0.28671345114707947, + "learning_rate": 0.0006, + "loss": 4.04637336730957, + "step": 1168 + }, + { + "epoch": 16.23765836609873, + "grad_norm": 0.26209691166877747, + "learning_rate": 0.0006, + "loss": 4.052768707275391, + "step": 1169 + }, + { + "epoch": 16.251638269986895, + "grad_norm": 0.2758907079696655, + "learning_rate": 0.0006, + "loss": 4.064321517944336, + "step": 1170 + }, + { + "epoch": 16.265618173875055, + "grad_norm": 0.25961801409721375, + "learning_rate": 0.0006, + "loss": 4.057299613952637, + "step": 1171 + }, + { + "epoch": 16.279598077763215, + "grad_norm": 0.2513751685619354, + "learning_rate": 0.0006, + "loss": 4.064148902893066, + "step": 1172 + }, + { + "epoch": 16.293577981651374, + "grad_norm": 0.23920276761054993, + "learning_rate": 0.0006, + "loss": 4.101890563964844, + "step": 1173 + }, + { + "epoch": 16.307557885539538, + "grad_norm": 0.22746537625789642, + "learning_rate": 0.0006, + "loss": 4.086627006530762, + "step": 1174 + }, + { + "epoch": 16.321537789427698, + "grad_norm": 0.22633525729179382, + "learning_rate": 0.0006, + "loss": 4.04669189453125, + "step": 1175 + }, + { + "epoch": 16.335517693315857, + "grad_norm": 0.2654891610145569, + "learning_rate": 0.0006, + "loss": 4.086793422698975, + "step": 1176 + }, + { + "epoch": 16.34949759720402, + "grad_norm": 0.2872653007507324, + "learning_rate": 0.0006, + "loss": 4.077983856201172, + "step": 1177 + }, + { + "epoch": 16.36347750109218, + "grad_norm": 0.25726038217544556, + "learning_rate": 0.0006, + "loss": 4.066011428833008, + "step": 1178 + }, + { + "epoch": 16.37745740498034, + "grad_norm": 0.2592027485370636, + "learning_rate": 0.0006, + "loss": 4.0482988357543945, + "step": 1179 + }, + { + "epoch": 16.3914373088685, + "grad_norm": 0.2768886685371399, + "learning_rate": 0.0006, + "loss": 4.065151214599609, + "step": 1180 + }, + { + "epoch": 16.405417212756664, + "grad_norm": 0.2956002652645111, + "learning_rate": 0.0006, + "loss": 4.037791728973389, + "step": 1181 + }, + { + "epoch": 16.419397116644824, + "grad_norm": 0.3092120885848999, + "learning_rate": 0.0006, + "loss": 4.062164306640625, + "step": 1182 + }, + { + "epoch": 16.433377020532983, + "grad_norm": 0.29516810178756714, + "learning_rate": 0.0006, + "loss": 4.025505065917969, + "step": 1183 + }, + { + "epoch": 16.447356924421143, + "grad_norm": 0.2640177607536316, + "learning_rate": 0.0006, + "loss": 4.060182571411133, + "step": 1184 + }, + { + "epoch": 16.461336828309307, + "grad_norm": 0.2444908320903778, + "learning_rate": 0.0006, + "loss": 4.046144962310791, + "step": 1185 + }, + { + "epoch": 16.475316732197467, + "grad_norm": 0.23190705478191376, + "learning_rate": 0.0006, + "loss": 4.075569152832031, + "step": 1186 + }, + { + "epoch": 16.489296636085626, + "grad_norm": 0.2383626103401184, + "learning_rate": 0.0006, + "loss": 4.088897705078125, + "step": 1187 + }, + { + "epoch": 16.503276539973786, + "grad_norm": 0.20688803493976593, + "learning_rate": 0.0006, + "loss": 4.064517974853516, + "step": 1188 + }, + { + "epoch": 16.51725644386195, + "grad_norm": 0.22610054910182953, + "learning_rate": 0.0006, + "loss": 4.04502010345459, + "step": 1189 + }, + { + "epoch": 16.53123634775011, + "grad_norm": 0.2014893889427185, + "learning_rate": 0.0006, + "loss": 4.058279514312744, + "step": 1190 + }, + { + "epoch": 16.54521625163827, + "grad_norm": 0.21459777653217316, + "learning_rate": 0.0006, + "loss": 4.066389083862305, + "step": 1191 + }, + { + "epoch": 16.55919615552643, + "grad_norm": 0.22909940779209137, + "learning_rate": 0.0006, + "loss": 4.0557966232299805, + "step": 1192 + }, + { + "epoch": 16.573176059414592, + "grad_norm": 0.20039083063602448, + "learning_rate": 0.0006, + "loss": 4.092845916748047, + "step": 1193 + }, + { + "epoch": 16.587155963302752, + "grad_norm": 0.22651726007461548, + "learning_rate": 0.0006, + "loss": 4.034615516662598, + "step": 1194 + }, + { + "epoch": 16.601135867190912, + "grad_norm": 0.21901755034923553, + "learning_rate": 0.0006, + "loss": 4.035619735717773, + "step": 1195 + }, + { + "epoch": 16.615115771079076, + "grad_norm": 0.22930841147899628, + "learning_rate": 0.0006, + "loss": 4.080800533294678, + "step": 1196 + }, + { + "epoch": 16.629095674967235, + "grad_norm": 0.212818443775177, + "learning_rate": 0.0006, + "loss": 4.030189514160156, + "step": 1197 + }, + { + "epoch": 16.643075578855395, + "grad_norm": 0.2370826154947281, + "learning_rate": 0.0006, + "loss": 4.062643527984619, + "step": 1198 + }, + { + "epoch": 16.657055482743555, + "grad_norm": 0.24786995351314545, + "learning_rate": 0.0006, + "loss": 4.031761169433594, + "step": 1199 + }, + { + "epoch": 16.67103538663172, + "grad_norm": 0.2305847704410553, + "learning_rate": 0.0006, + "loss": 4.083752155303955, + "step": 1200 + }, + { + "epoch": 16.68501529051988, + "grad_norm": 0.23336584866046906, + "learning_rate": 0.0006, + "loss": 4.079145431518555, + "step": 1201 + }, + { + "epoch": 16.698995194408038, + "grad_norm": 0.23976293206214905, + "learning_rate": 0.0006, + "loss": 4.020473957061768, + "step": 1202 + }, + { + "epoch": 16.712975098296198, + "grad_norm": 0.222761869430542, + "learning_rate": 0.0006, + "loss": 4.065582752227783, + "step": 1203 + }, + { + "epoch": 16.72695500218436, + "grad_norm": 0.23725618422031403, + "learning_rate": 0.0006, + "loss": 4.0263776779174805, + "step": 1204 + }, + { + "epoch": 16.74093490607252, + "grad_norm": 0.23873984813690186, + "learning_rate": 0.0006, + "loss": 4.053092956542969, + "step": 1205 + }, + { + "epoch": 16.75491480996068, + "grad_norm": 0.21043002605438232, + "learning_rate": 0.0006, + "loss": 4.063965797424316, + "step": 1206 + }, + { + "epoch": 16.76889471384884, + "grad_norm": 0.19863522052764893, + "learning_rate": 0.0006, + "loss": 4.061187267303467, + "step": 1207 + }, + { + "epoch": 16.782874617737004, + "grad_norm": 0.1953752487897873, + "learning_rate": 0.0006, + "loss": 4.046016693115234, + "step": 1208 + }, + { + "epoch": 16.796854521625164, + "grad_norm": 0.2130361795425415, + "learning_rate": 0.0006, + "loss": 4.066933631896973, + "step": 1209 + }, + { + "epoch": 16.810834425513324, + "grad_norm": 0.19598130881786346, + "learning_rate": 0.0006, + "loss": 4.071558952331543, + "step": 1210 + }, + { + "epoch": 16.824814329401484, + "grad_norm": 0.20331116020679474, + "learning_rate": 0.0006, + "loss": 4.088632106781006, + "step": 1211 + }, + { + "epoch": 16.838794233289647, + "grad_norm": 0.20423150062561035, + "learning_rate": 0.0006, + "loss": 4.032224655151367, + "step": 1212 + }, + { + "epoch": 16.852774137177807, + "grad_norm": 0.2401197850704193, + "learning_rate": 0.0006, + "loss": 4.037393569946289, + "step": 1213 + }, + { + "epoch": 16.866754041065967, + "grad_norm": 0.26102620363235474, + "learning_rate": 0.0006, + "loss": 4.04738712310791, + "step": 1214 + }, + { + "epoch": 16.88073394495413, + "grad_norm": 0.2438521534204483, + "learning_rate": 0.0006, + "loss": 4.015673637390137, + "step": 1215 + }, + { + "epoch": 16.89471384884229, + "grad_norm": 0.20742061734199524, + "learning_rate": 0.0006, + "loss": 4.049060821533203, + "step": 1216 + }, + { + "epoch": 16.90869375273045, + "grad_norm": 0.22028608620166779, + "learning_rate": 0.0006, + "loss": 4.088971138000488, + "step": 1217 + }, + { + "epoch": 16.92267365661861, + "grad_norm": 0.21746744215488434, + "learning_rate": 0.0006, + "loss": 4.021710395812988, + "step": 1218 + }, + { + "epoch": 16.936653560506773, + "grad_norm": 0.2226102203130722, + "learning_rate": 0.0006, + "loss": 4.050119400024414, + "step": 1219 + }, + { + "epoch": 16.950633464394933, + "grad_norm": 0.23903657495975494, + "learning_rate": 0.0006, + "loss": 4.0570526123046875, + "step": 1220 + }, + { + "epoch": 16.964613368283093, + "grad_norm": 0.2556349039077759, + "learning_rate": 0.0006, + "loss": 4.0448808670043945, + "step": 1221 + }, + { + "epoch": 16.978593272171253, + "grad_norm": 0.28445592522621155, + "learning_rate": 0.0006, + "loss": 4.052034378051758, + "step": 1222 + }, + { + "epoch": 16.992573176059416, + "grad_norm": 0.273973673582077, + "learning_rate": 0.0006, + "loss": 4.02907657623291, + "step": 1223 + }, + { + "epoch": 17.0, + "grad_norm": 0.26125091314315796, + "learning_rate": 0.0006, + "loss": 4.10643196105957, + "step": 1224 + }, + { + "epoch": 17.0, + "eval_loss": 4.2585954666137695, + "eval_runtime": 44.8583, + "eval_samples_per_second": 54.438, + "eval_steps_per_second": 3.411, + "step": 1224 + }, + { + "epoch": 17.01397990388816, + "grad_norm": 0.2786196768283844, + "learning_rate": 0.0006, + "loss": 4.044719219207764, + "step": 1225 + }, + { + "epoch": 17.027959807776323, + "grad_norm": 0.2969571650028229, + "learning_rate": 0.0006, + "loss": 4.022037506103516, + "step": 1226 + }, + { + "epoch": 17.041939711664483, + "grad_norm": 0.32196253538131714, + "learning_rate": 0.0006, + "loss": 4.03636360168457, + "step": 1227 + }, + { + "epoch": 17.055919615552643, + "grad_norm": 0.28617000579833984, + "learning_rate": 0.0006, + "loss": 4.012125492095947, + "step": 1228 + }, + { + "epoch": 17.069899519440803, + "grad_norm": 0.26539644598960876, + "learning_rate": 0.0006, + "loss": 4.020190715789795, + "step": 1229 + }, + { + "epoch": 17.083879423328966, + "grad_norm": 0.24315394461154938, + "learning_rate": 0.0006, + "loss": 4.0553812980651855, + "step": 1230 + }, + { + "epoch": 17.097859327217126, + "grad_norm": 0.23798158764839172, + "learning_rate": 0.0006, + "loss": 4.004805088043213, + "step": 1231 + }, + { + "epoch": 17.111839231105286, + "grad_norm": 0.25723618268966675, + "learning_rate": 0.0006, + "loss": 4.00108003616333, + "step": 1232 + }, + { + "epoch": 17.125819134993446, + "grad_norm": 0.2669757604598999, + "learning_rate": 0.0006, + "loss": 4.00828742980957, + "step": 1233 + }, + { + "epoch": 17.13979903888161, + "grad_norm": 0.26421651244163513, + "learning_rate": 0.0006, + "loss": 3.995478391647339, + "step": 1234 + }, + { + "epoch": 17.15377894276977, + "grad_norm": 0.24745801091194153, + "learning_rate": 0.0006, + "loss": 4.0171027183532715, + "step": 1235 + }, + { + "epoch": 17.16775884665793, + "grad_norm": 0.27028775215148926, + "learning_rate": 0.0006, + "loss": 4.017108917236328, + "step": 1236 + }, + { + "epoch": 17.18173875054609, + "grad_norm": 0.27247968316078186, + "learning_rate": 0.0006, + "loss": 4.032601356506348, + "step": 1237 + }, + { + "epoch": 17.195718654434252, + "grad_norm": 0.24620869755744934, + "learning_rate": 0.0006, + "loss": 4.022171974182129, + "step": 1238 + }, + { + "epoch": 17.209698558322412, + "grad_norm": 0.23407386243343353, + "learning_rate": 0.0006, + "loss": 3.9946959018707275, + "step": 1239 + }, + { + "epoch": 17.22367846221057, + "grad_norm": 0.22559069097042084, + "learning_rate": 0.0006, + "loss": 4.013072490692139, + "step": 1240 + }, + { + "epoch": 17.23765836609873, + "grad_norm": 0.226687952876091, + "learning_rate": 0.0006, + "loss": 4.023543834686279, + "step": 1241 + }, + { + "epoch": 17.251638269986895, + "grad_norm": 0.24436360597610474, + "learning_rate": 0.0006, + "loss": 4.044206619262695, + "step": 1242 + }, + { + "epoch": 17.265618173875055, + "grad_norm": 0.25527626276016235, + "learning_rate": 0.0006, + "loss": 4.016424179077148, + "step": 1243 + }, + { + "epoch": 17.279598077763215, + "grad_norm": 0.26126864552497864, + "learning_rate": 0.0006, + "loss": 4.024394512176514, + "step": 1244 + }, + { + "epoch": 17.293577981651374, + "grad_norm": 0.25746744871139526, + "learning_rate": 0.0006, + "loss": 4.046844482421875, + "step": 1245 + }, + { + "epoch": 17.307557885539538, + "grad_norm": 0.26579564809799194, + "learning_rate": 0.0006, + "loss": 4.021010398864746, + "step": 1246 + }, + { + "epoch": 17.321537789427698, + "grad_norm": 0.2713971734046936, + "learning_rate": 0.0006, + "loss": 4.022331237792969, + "step": 1247 + }, + { + "epoch": 17.335517693315857, + "grad_norm": 0.24217180907726288, + "learning_rate": 0.0006, + "loss": 4.006353855133057, + "step": 1248 + }, + { + "epoch": 17.34949759720402, + "grad_norm": 0.26899752020835876, + "learning_rate": 0.0006, + "loss": 4.068023681640625, + "step": 1249 + }, + { + "epoch": 17.36347750109218, + "grad_norm": 0.26745253801345825, + "learning_rate": 0.0006, + "loss": 4.031207084655762, + "step": 1250 + }, + { + "epoch": 17.37745740498034, + "grad_norm": 0.21533764898777008, + "learning_rate": 0.0006, + "loss": 4.042410850524902, + "step": 1251 + }, + { + "epoch": 17.3914373088685, + "grad_norm": 0.21958027780056, + "learning_rate": 0.0006, + "loss": 4.02597713470459, + "step": 1252 + }, + { + "epoch": 17.405417212756664, + "grad_norm": 0.263068825006485, + "learning_rate": 0.0006, + "loss": 4.0035905838012695, + "step": 1253 + }, + { + "epoch": 17.419397116644824, + "grad_norm": 0.24044716358184814, + "learning_rate": 0.0006, + "loss": 4.005317687988281, + "step": 1254 + }, + { + "epoch": 17.433377020532983, + "grad_norm": 0.19142559170722961, + "learning_rate": 0.0006, + "loss": 3.9976844787597656, + "step": 1255 + }, + { + "epoch": 17.447356924421143, + "grad_norm": 0.18650250136852264, + "learning_rate": 0.0006, + "loss": 4.031353950500488, + "step": 1256 + }, + { + "epoch": 17.461336828309307, + "grad_norm": 0.1984022557735443, + "learning_rate": 0.0006, + "loss": 4.002097129821777, + "step": 1257 + }, + { + "epoch": 17.475316732197467, + "grad_norm": 0.20087844133377075, + "learning_rate": 0.0006, + "loss": 4.031151294708252, + "step": 1258 + }, + { + "epoch": 17.489296636085626, + "grad_norm": 0.20881228148937225, + "learning_rate": 0.0006, + "loss": 4.034793853759766, + "step": 1259 + }, + { + "epoch": 17.503276539973786, + "grad_norm": 0.23958556354045868, + "learning_rate": 0.0006, + "loss": 4.025238990783691, + "step": 1260 + }, + { + "epoch": 17.51725644386195, + "grad_norm": 0.23927845060825348, + "learning_rate": 0.0006, + "loss": 3.999828338623047, + "step": 1261 + }, + { + "epoch": 17.53123634775011, + "grad_norm": 0.20342715084552765, + "learning_rate": 0.0006, + "loss": 4.054262161254883, + "step": 1262 + }, + { + "epoch": 17.54521625163827, + "grad_norm": 0.21370555460453033, + "learning_rate": 0.0006, + "loss": 4.011582374572754, + "step": 1263 + }, + { + "epoch": 17.55919615552643, + "grad_norm": 0.23681946098804474, + "learning_rate": 0.0006, + "loss": 4.029694080352783, + "step": 1264 + }, + { + "epoch": 17.573176059414592, + "grad_norm": 0.24190311133861542, + "learning_rate": 0.0006, + "loss": 4.018783092498779, + "step": 1265 + }, + { + "epoch": 17.587155963302752, + "grad_norm": 0.23215509951114655, + "learning_rate": 0.0006, + "loss": 4.009703159332275, + "step": 1266 + }, + { + "epoch": 17.601135867190912, + "grad_norm": 0.21122977137565613, + "learning_rate": 0.0006, + "loss": 4.0345659255981445, + "step": 1267 + }, + { + "epoch": 17.615115771079076, + "grad_norm": 0.2075948715209961, + "learning_rate": 0.0006, + "loss": 4.070703506469727, + "step": 1268 + }, + { + "epoch": 17.629095674967235, + "grad_norm": 0.21667909622192383, + "learning_rate": 0.0006, + "loss": 4.020771503448486, + "step": 1269 + }, + { + "epoch": 17.643075578855395, + "grad_norm": 0.20960724353790283, + "learning_rate": 0.0006, + "loss": 4.026404857635498, + "step": 1270 + }, + { + "epoch": 17.657055482743555, + "grad_norm": 0.22575686872005463, + "learning_rate": 0.0006, + "loss": 4.01981258392334, + "step": 1271 + }, + { + "epoch": 17.67103538663172, + "grad_norm": 0.2565988302230835, + "learning_rate": 0.0006, + "loss": 4.015827178955078, + "step": 1272 + }, + { + "epoch": 17.68501529051988, + "grad_norm": 0.24831551313400269, + "learning_rate": 0.0006, + "loss": 4.012457847595215, + "step": 1273 + }, + { + "epoch": 17.698995194408038, + "grad_norm": 0.22595494985580444, + "learning_rate": 0.0006, + "loss": 4.031386375427246, + "step": 1274 + }, + { + "epoch": 17.712975098296198, + "grad_norm": 0.20687322318553925, + "learning_rate": 0.0006, + "loss": 4.014216423034668, + "step": 1275 + }, + { + "epoch": 17.72695500218436, + "grad_norm": 0.21916012465953827, + "learning_rate": 0.0006, + "loss": 4.037643909454346, + "step": 1276 + }, + { + "epoch": 17.74093490607252, + "grad_norm": 0.2243107706308365, + "learning_rate": 0.0006, + "loss": 4.033044815063477, + "step": 1277 + }, + { + "epoch": 17.75491480996068, + "grad_norm": 0.2402164787054062, + "learning_rate": 0.0006, + "loss": 4.026636123657227, + "step": 1278 + }, + { + "epoch": 17.76889471384884, + "grad_norm": 0.27957046031951904, + "learning_rate": 0.0006, + "loss": 4.0270867347717285, + "step": 1279 + }, + { + "epoch": 17.782874617737004, + "grad_norm": 0.27447596192359924, + "learning_rate": 0.0006, + "loss": 4.0120134353637695, + "step": 1280 + }, + { + "epoch": 17.796854521625164, + "grad_norm": 0.26926323771476746, + "learning_rate": 0.0006, + "loss": 4.027970314025879, + "step": 1281 + }, + { + "epoch": 17.810834425513324, + "grad_norm": 0.2535291314125061, + "learning_rate": 0.0006, + "loss": 4.002565383911133, + "step": 1282 + }, + { + "epoch": 17.824814329401484, + "grad_norm": 0.22639447450637817, + "learning_rate": 0.0006, + "loss": 4.032750606536865, + "step": 1283 + }, + { + "epoch": 17.838794233289647, + "grad_norm": 0.23384462296962738, + "learning_rate": 0.0006, + "loss": 4.03568172454834, + "step": 1284 + }, + { + "epoch": 17.852774137177807, + "grad_norm": 0.22971470654010773, + "learning_rate": 0.0006, + "loss": 4.031299591064453, + "step": 1285 + }, + { + "epoch": 17.866754041065967, + "grad_norm": 0.24540141224861145, + "learning_rate": 0.0006, + "loss": 4.0142669677734375, + "step": 1286 + }, + { + "epoch": 17.88073394495413, + "grad_norm": 0.2304888367652893, + "learning_rate": 0.0006, + "loss": 3.9964895248413086, + "step": 1287 + }, + { + "epoch": 17.89471384884229, + "grad_norm": 0.22082284092903137, + "learning_rate": 0.0006, + "loss": 4.024693489074707, + "step": 1288 + }, + { + "epoch": 17.90869375273045, + "grad_norm": 0.23677092790603638, + "learning_rate": 0.0006, + "loss": 4.002082347869873, + "step": 1289 + }, + { + "epoch": 17.92267365661861, + "grad_norm": 0.23122332990169525, + "learning_rate": 0.0006, + "loss": 4.025351524353027, + "step": 1290 + }, + { + "epoch": 17.936653560506773, + "grad_norm": 0.2548119127750397, + "learning_rate": 0.0006, + "loss": 3.9955825805664062, + "step": 1291 + }, + { + "epoch": 17.950633464394933, + "grad_norm": 0.26950931549072266, + "learning_rate": 0.0006, + "loss": 4.026151180267334, + "step": 1292 + }, + { + "epoch": 17.964613368283093, + "grad_norm": 0.3023233711719513, + "learning_rate": 0.0006, + "loss": 4.006035804748535, + "step": 1293 + }, + { + "epoch": 17.978593272171253, + "grad_norm": 0.3190958499908447, + "learning_rate": 0.0006, + "loss": 4.023565292358398, + "step": 1294 + }, + { + "epoch": 17.992573176059416, + "grad_norm": 0.28878068923950195, + "learning_rate": 0.0006, + "loss": 4.020973205566406, + "step": 1295 + }, + { + "epoch": 18.0, + "grad_norm": 0.27312418818473816, + "learning_rate": 0.0006, + "loss": 3.99906587600708, + "step": 1296 + }, + { + "epoch": 18.0, + "eval_loss": 4.224447250366211, + "eval_runtime": 52.5728, + "eval_samples_per_second": 46.45, + "eval_steps_per_second": 2.91, + "step": 1296 + }, + { + "epoch": 18.01397990388816, + "grad_norm": 0.2567712664604187, + "learning_rate": 0.0006, + "loss": 3.9755055904388428, + "step": 1297 + }, + { + "epoch": 18.027959807776323, + "grad_norm": 0.25048133730888367, + "learning_rate": 0.0006, + "loss": 4.009254455566406, + "step": 1298 + }, + { + "epoch": 18.041939711664483, + "grad_norm": 0.2556909918785095, + "learning_rate": 0.0006, + "loss": 4.001235008239746, + "step": 1299 + }, + { + "epoch": 18.055919615552643, + "grad_norm": 0.2501400113105774, + "learning_rate": 0.0006, + "loss": 3.980726480484009, + "step": 1300 + }, + { + "epoch": 18.069899519440803, + "grad_norm": 0.23977792263031006, + "learning_rate": 0.0006, + "loss": 3.964195728302002, + "step": 1301 + }, + { + "epoch": 18.083879423328966, + "grad_norm": 0.25650718808174133, + "learning_rate": 0.0006, + "loss": 4.015914440155029, + "step": 1302 + }, + { + "epoch": 18.097859327217126, + "grad_norm": 0.234053835272789, + "learning_rate": 0.0006, + "loss": 4.0159149169921875, + "step": 1303 + }, + { + "epoch": 18.111839231105286, + "grad_norm": 0.21967713534832, + "learning_rate": 0.0006, + "loss": 4.0055694580078125, + "step": 1304 + }, + { + "epoch": 18.125819134993446, + "grad_norm": 0.21790878474712372, + "learning_rate": 0.0006, + "loss": 3.986253261566162, + "step": 1305 + }, + { + "epoch": 18.13979903888161, + "grad_norm": 0.22955302894115448, + "learning_rate": 0.0006, + "loss": 3.959421157836914, + "step": 1306 + }, + { + "epoch": 18.15377894276977, + "grad_norm": 0.2559174597263336, + "learning_rate": 0.0006, + "loss": 4.0069756507873535, + "step": 1307 + }, + { + "epoch": 18.16775884665793, + "grad_norm": 0.26132866740226746, + "learning_rate": 0.0006, + "loss": 3.9874095916748047, + "step": 1308 + }, + { + "epoch": 18.18173875054609, + "grad_norm": 0.23258940875530243, + "learning_rate": 0.0006, + "loss": 3.9762492179870605, + "step": 1309 + }, + { + "epoch": 18.195718654434252, + "grad_norm": 0.22347190976142883, + "learning_rate": 0.0006, + "loss": 3.9923410415649414, + "step": 1310 + }, + { + "epoch": 18.209698558322412, + "grad_norm": 0.23095804452896118, + "learning_rate": 0.0006, + "loss": 4.019245624542236, + "step": 1311 + }, + { + "epoch": 18.22367846221057, + "grad_norm": 0.24817052483558655, + "learning_rate": 0.0006, + "loss": 3.9697511196136475, + "step": 1312 + }, + { + "epoch": 18.23765836609873, + "grad_norm": 0.2566024959087372, + "learning_rate": 0.0006, + "loss": 3.978804111480713, + "step": 1313 + }, + { + "epoch": 18.251638269986895, + "grad_norm": 0.2527952790260315, + "learning_rate": 0.0006, + "loss": 3.972018241882324, + "step": 1314 + }, + { + "epoch": 18.265618173875055, + "grad_norm": 0.2508150637149811, + "learning_rate": 0.0006, + "loss": 3.9971275329589844, + "step": 1315 + }, + { + "epoch": 18.279598077763215, + "grad_norm": 0.23242022097110748, + "learning_rate": 0.0006, + "loss": 3.9712045192718506, + "step": 1316 + }, + { + "epoch": 18.293577981651374, + "grad_norm": 0.23474404215812683, + "learning_rate": 0.0006, + "loss": 3.9926767349243164, + "step": 1317 + }, + { + "epoch": 18.307557885539538, + "grad_norm": 0.2417769432067871, + "learning_rate": 0.0006, + "loss": 3.9920949935913086, + "step": 1318 + }, + { + "epoch": 18.321537789427698, + "grad_norm": 0.23839452862739563, + "learning_rate": 0.0006, + "loss": 4.016645431518555, + "step": 1319 + }, + { + "epoch": 18.335517693315857, + "grad_norm": 0.2512452304363251, + "learning_rate": 0.0006, + "loss": 3.97586727142334, + "step": 1320 + }, + { + "epoch": 18.34949759720402, + "grad_norm": 0.27503693103790283, + "learning_rate": 0.0006, + "loss": 4.000148773193359, + "step": 1321 + }, + { + "epoch": 18.36347750109218, + "grad_norm": 0.27830836176872253, + "learning_rate": 0.0006, + "loss": 3.9972195625305176, + "step": 1322 + }, + { + "epoch": 18.37745740498034, + "grad_norm": 0.2571812570095062, + "learning_rate": 0.0006, + "loss": 3.9900810718536377, + "step": 1323 + }, + { + "epoch": 18.3914373088685, + "grad_norm": 0.2310052365064621, + "learning_rate": 0.0006, + "loss": 4.003000259399414, + "step": 1324 + }, + { + "epoch": 18.405417212756664, + "grad_norm": 0.19615735113620758, + "learning_rate": 0.0006, + "loss": 3.9536571502685547, + "step": 1325 + }, + { + "epoch": 18.419397116644824, + "grad_norm": 0.21323896944522858, + "learning_rate": 0.0006, + "loss": 3.977508068084717, + "step": 1326 + }, + { + "epoch": 18.433377020532983, + "grad_norm": 0.21404202282428741, + "learning_rate": 0.0006, + "loss": 4.015361785888672, + "step": 1327 + }, + { + "epoch": 18.447356924421143, + "grad_norm": 0.1991959661245346, + "learning_rate": 0.0006, + "loss": 4.000286102294922, + "step": 1328 + }, + { + "epoch": 18.461336828309307, + "grad_norm": 0.2073599398136139, + "learning_rate": 0.0006, + "loss": 3.973065137863159, + "step": 1329 + }, + { + "epoch": 18.475316732197467, + "grad_norm": 0.2096073031425476, + "learning_rate": 0.0006, + "loss": 3.987032890319824, + "step": 1330 + }, + { + "epoch": 18.489296636085626, + "grad_norm": 0.2380610853433609, + "learning_rate": 0.0006, + "loss": 4.035274505615234, + "step": 1331 + }, + { + "epoch": 18.503276539973786, + "grad_norm": 0.23570716381072998, + "learning_rate": 0.0006, + "loss": 4.010516166687012, + "step": 1332 + }, + { + "epoch": 18.51725644386195, + "grad_norm": 0.24805466830730438, + "learning_rate": 0.0006, + "loss": 3.9750983715057373, + "step": 1333 + }, + { + "epoch": 18.53123634775011, + "grad_norm": 0.25173231959342957, + "learning_rate": 0.0006, + "loss": 3.9742345809936523, + "step": 1334 + }, + { + "epoch": 18.54521625163827, + "grad_norm": 0.24590367078781128, + "learning_rate": 0.0006, + "loss": 4.0037312507629395, + "step": 1335 + }, + { + "epoch": 18.55919615552643, + "grad_norm": 0.24379394948482513, + "learning_rate": 0.0006, + "loss": 3.993858814239502, + "step": 1336 + }, + { + "epoch": 18.573176059414592, + "grad_norm": 0.21708883345127106, + "learning_rate": 0.0006, + "loss": 3.965670585632324, + "step": 1337 + }, + { + "epoch": 18.587155963302752, + "grad_norm": 0.21024051308631897, + "learning_rate": 0.0006, + "loss": 3.987551689147949, + "step": 1338 + }, + { + "epoch": 18.601135867190912, + "grad_norm": 0.23376783728599548, + "learning_rate": 0.0006, + "loss": 4.002841472625732, + "step": 1339 + }, + { + "epoch": 18.615115771079076, + "grad_norm": 0.25350701808929443, + "learning_rate": 0.0006, + "loss": 3.9881370067596436, + "step": 1340 + }, + { + "epoch": 18.629095674967235, + "grad_norm": 0.2542140483856201, + "learning_rate": 0.0006, + "loss": 4.003695964813232, + "step": 1341 + }, + { + "epoch": 18.643075578855395, + "grad_norm": 0.22932685911655426, + "learning_rate": 0.0006, + "loss": 4.0146002769470215, + "step": 1342 + }, + { + "epoch": 18.657055482743555, + "grad_norm": 0.21099458634853363, + "learning_rate": 0.0006, + "loss": 3.970472812652588, + "step": 1343 + }, + { + "epoch": 18.67103538663172, + "grad_norm": 0.2234615832567215, + "learning_rate": 0.0006, + "loss": 3.9821488857269287, + "step": 1344 + }, + { + "epoch": 18.68501529051988, + "grad_norm": 0.230327770113945, + "learning_rate": 0.0006, + "loss": 3.996274948120117, + "step": 1345 + }, + { + "epoch": 18.698995194408038, + "grad_norm": 0.23596233129501343, + "learning_rate": 0.0006, + "loss": 3.9747462272644043, + "step": 1346 + }, + { + "epoch": 18.712975098296198, + "grad_norm": 0.24173159897327423, + "learning_rate": 0.0006, + "loss": 4.011804103851318, + "step": 1347 + }, + { + "epoch": 18.72695500218436, + "grad_norm": 0.24087604880332947, + "learning_rate": 0.0006, + "loss": 4.008726119995117, + "step": 1348 + }, + { + "epoch": 18.74093490607252, + "grad_norm": 0.2457292526960373, + "learning_rate": 0.0006, + "loss": 3.990793228149414, + "step": 1349 + }, + { + "epoch": 18.75491480996068, + "grad_norm": 0.22946089506149292, + "learning_rate": 0.0006, + "loss": 3.980494260787964, + "step": 1350 + }, + { + "epoch": 18.76889471384884, + "grad_norm": 0.22986692190170288, + "learning_rate": 0.0006, + "loss": 3.97006893157959, + "step": 1351 + }, + { + "epoch": 18.782874617737004, + "grad_norm": 0.23358555138111115, + "learning_rate": 0.0006, + "loss": 4.008172035217285, + "step": 1352 + }, + { + "epoch": 18.796854521625164, + "grad_norm": 0.20183615386486053, + "learning_rate": 0.0006, + "loss": 3.9720888137817383, + "step": 1353 + }, + { + "epoch": 18.810834425513324, + "grad_norm": 0.19975653290748596, + "learning_rate": 0.0006, + "loss": 3.9783310890197754, + "step": 1354 + }, + { + "epoch": 18.824814329401484, + "grad_norm": 0.18911021947860718, + "learning_rate": 0.0006, + "loss": 3.985982894897461, + "step": 1355 + }, + { + "epoch": 18.838794233289647, + "grad_norm": 0.15984168648719788, + "learning_rate": 0.0006, + "loss": 3.9740548133850098, + "step": 1356 + }, + { + "epoch": 18.852774137177807, + "grad_norm": 0.1755436211824417, + "learning_rate": 0.0006, + "loss": 4.013090133666992, + "step": 1357 + }, + { + "epoch": 18.866754041065967, + "grad_norm": 0.1798417866230011, + "learning_rate": 0.0006, + "loss": 3.997880697250366, + "step": 1358 + }, + { + "epoch": 18.88073394495413, + "grad_norm": 0.20206265151500702, + "learning_rate": 0.0006, + "loss": 3.9892373085021973, + "step": 1359 + }, + { + "epoch": 18.89471384884229, + "grad_norm": 0.23685456812381744, + "learning_rate": 0.0006, + "loss": 3.9909186363220215, + "step": 1360 + }, + { + "epoch": 18.90869375273045, + "grad_norm": 0.26053836941719055, + "learning_rate": 0.0006, + "loss": 4.00327205657959, + "step": 1361 + }, + { + "epoch": 18.92267365661861, + "grad_norm": 0.26215845346450806, + "learning_rate": 0.0006, + "loss": 3.9714717864990234, + "step": 1362 + }, + { + "epoch": 18.936653560506773, + "grad_norm": 0.2433871030807495, + "learning_rate": 0.0006, + "loss": 3.949416160583496, + "step": 1363 + }, + { + "epoch": 18.950633464394933, + "grad_norm": 0.23331883549690247, + "learning_rate": 0.0006, + "loss": 3.980501413345337, + "step": 1364 + }, + { + "epoch": 18.964613368283093, + "grad_norm": 0.2346954047679901, + "learning_rate": 0.0006, + "loss": 3.9974493980407715, + "step": 1365 + }, + { + "epoch": 18.978593272171253, + "grad_norm": 0.25101345777511597, + "learning_rate": 0.0006, + "loss": 3.9800148010253906, + "step": 1366 + }, + { + "epoch": 18.992573176059416, + "grad_norm": 0.26811933517456055, + "learning_rate": 0.0006, + "loss": 4.0065741539001465, + "step": 1367 + }, + { + "epoch": 19.0, + "grad_norm": 0.2731736898422241, + "learning_rate": 0.0006, + "loss": 4.014575481414795, + "step": 1368 + }, + { + "epoch": 19.0, + "eval_loss": 4.200716972351074, + "eval_runtime": 44.6962, + "eval_samples_per_second": 54.636, + "eval_steps_per_second": 3.423, + "step": 1368 + }, + { + "epoch": 19.01397990388816, + "grad_norm": 0.2517746686935425, + "learning_rate": 0.0006, + "loss": 3.9486539363861084, + "step": 1369 + }, + { + "epoch": 19.027959807776323, + "grad_norm": 0.2482699453830719, + "learning_rate": 0.0006, + "loss": 3.95015287399292, + "step": 1370 + }, + { + "epoch": 19.041939711664483, + "grad_norm": 0.21693618595600128, + "learning_rate": 0.0006, + "loss": 3.970022201538086, + "step": 1371 + }, + { + "epoch": 19.055919615552643, + "grad_norm": 0.2035159319639206, + "learning_rate": 0.0006, + "loss": 3.941457748413086, + "step": 1372 + }, + { + "epoch": 19.069899519440803, + "grad_norm": 0.2201429009437561, + "learning_rate": 0.0006, + "loss": 3.946794033050537, + "step": 1373 + }, + { + "epoch": 19.083879423328966, + "grad_norm": 0.22910255193710327, + "learning_rate": 0.0006, + "loss": 3.94606876373291, + "step": 1374 + }, + { + "epoch": 19.097859327217126, + "grad_norm": 0.22378197312355042, + "learning_rate": 0.0006, + "loss": 3.957899570465088, + "step": 1375 + }, + { + "epoch": 19.111839231105286, + "grad_norm": 0.21728114783763885, + "learning_rate": 0.0006, + "loss": 3.9565982818603516, + "step": 1376 + }, + { + "epoch": 19.125819134993446, + "grad_norm": 0.21887634694576263, + "learning_rate": 0.0006, + "loss": 3.9649534225463867, + "step": 1377 + }, + { + "epoch": 19.13979903888161, + "grad_norm": 0.21892991662025452, + "learning_rate": 0.0006, + "loss": 3.971388101577759, + "step": 1378 + }, + { + "epoch": 19.15377894276977, + "grad_norm": 0.24582402408123016, + "learning_rate": 0.0006, + "loss": 3.9370944499969482, + "step": 1379 + }, + { + "epoch": 19.16775884665793, + "grad_norm": 0.27547118067741394, + "learning_rate": 0.0006, + "loss": 3.939406156539917, + "step": 1380 + }, + { + "epoch": 19.18173875054609, + "grad_norm": 0.3131563365459442, + "learning_rate": 0.0006, + "loss": 3.942620277404785, + "step": 1381 + }, + { + "epoch": 19.195718654434252, + "grad_norm": 0.3211703598499298, + "learning_rate": 0.0006, + "loss": 3.9388349056243896, + "step": 1382 + }, + { + "epoch": 19.209698558322412, + "grad_norm": 0.2791919410228729, + "learning_rate": 0.0006, + "loss": 3.9827399253845215, + "step": 1383 + }, + { + "epoch": 19.22367846221057, + "grad_norm": 0.2872016727924347, + "learning_rate": 0.0006, + "loss": 3.976715087890625, + "step": 1384 + }, + { + "epoch": 19.23765836609873, + "grad_norm": 0.2790389060974121, + "learning_rate": 0.0006, + "loss": 3.952850818634033, + "step": 1385 + }, + { + "epoch": 19.251638269986895, + "grad_norm": 0.31903740763664246, + "learning_rate": 0.0006, + "loss": 3.964506149291992, + "step": 1386 + }, + { + "epoch": 19.265618173875055, + "grad_norm": 0.31013646721839905, + "learning_rate": 0.0006, + "loss": 3.967219352722168, + "step": 1387 + }, + { + "epoch": 19.279598077763215, + "grad_norm": 0.2574339509010315, + "learning_rate": 0.0006, + "loss": 3.979168176651001, + "step": 1388 + }, + { + "epoch": 19.293577981651374, + "grad_norm": 0.24621108174324036, + "learning_rate": 0.0006, + "loss": 3.981734275817871, + "step": 1389 + }, + { + "epoch": 19.307557885539538, + "grad_norm": 0.25113818049430847, + "learning_rate": 0.0006, + "loss": 3.9787755012512207, + "step": 1390 + }, + { + "epoch": 19.321537789427698, + "grad_norm": 0.259971022605896, + "learning_rate": 0.0006, + "loss": 3.9648823738098145, + "step": 1391 + }, + { + "epoch": 19.335517693315857, + "grad_norm": 0.22580404579639435, + "learning_rate": 0.0006, + "loss": 3.9658002853393555, + "step": 1392 + }, + { + "epoch": 19.34949759720402, + "grad_norm": 0.2133680284023285, + "learning_rate": 0.0006, + "loss": 3.9615914821624756, + "step": 1393 + }, + { + "epoch": 19.36347750109218, + "grad_norm": 0.2387680858373642, + "learning_rate": 0.0006, + "loss": 3.993811845779419, + "step": 1394 + }, + { + "epoch": 19.37745740498034, + "grad_norm": 0.26086220145225525, + "learning_rate": 0.0006, + "loss": 3.932701826095581, + "step": 1395 + }, + { + "epoch": 19.3914373088685, + "grad_norm": 0.23255233466625214, + "learning_rate": 0.0006, + "loss": 3.8969321250915527, + "step": 1396 + }, + { + "epoch": 19.405417212756664, + "grad_norm": 0.22894541919231415, + "learning_rate": 0.0006, + "loss": 3.9569311141967773, + "step": 1397 + }, + { + "epoch": 19.419397116644824, + "grad_norm": 0.2254200130701065, + "learning_rate": 0.0006, + "loss": 3.953199863433838, + "step": 1398 + }, + { + "epoch": 19.433377020532983, + "grad_norm": 0.25802481174468994, + "learning_rate": 0.0006, + "loss": 3.9714815616607666, + "step": 1399 + }, + { + "epoch": 19.447356924421143, + "grad_norm": 0.24725162982940674, + "learning_rate": 0.0006, + "loss": 3.957339286804199, + "step": 1400 + }, + { + "epoch": 19.461336828309307, + "grad_norm": 0.2162018120288849, + "learning_rate": 0.0006, + "loss": 3.986801862716675, + "step": 1401 + }, + { + "epoch": 19.475316732197467, + "grad_norm": 0.21530906856060028, + "learning_rate": 0.0006, + "loss": 3.9766759872436523, + "step": 1402 + }, + { + "epoch": 19.489296636085626, + "grad_norm": 0.20260323584079742, + "learning_rate": 0.0006, + "loss": 3.9576425552368164, + "step": 1403 + }, + { + "epoch": 19.503276539973786, + "grad_norm": 0.188974529504776, + "learning_rate": 0.0006, + "loss": 3.9852395057678223, + "step": 1404 + }, + { + "epoch": 19.51725644386195, + "grad_norm": 0.19727374613285065, + "learning_rate": 0.0006, + "loss": 3.972484588623047, + "step": 1405 + }, + { + "epoch": 19.53123634775011, + "grad_norm": 0.23708008229732513, + "learning_rate": 0.0006, + "loss": 3.992471694946289, + "step": 1406 + }, + { + "epoch": 19.54521625163827, + "grad_norm": 0.23783449828624725, + "learning_rate": 0.0006, + "loss": 3.9788265228271484, + "step": 1407 + }, + { + "epoch": 19.55919615552643, + "grad_norm": 0.24744364619255066, + "learning_rate": 0.0006, + "loss": 3.9559011459350586, + "step": 1408 + }, + { + "epoch": 19.573176059414592, + "grad_norm": 0.24828094244003296, + "learning_rate": 0.0006, + "loss": 3.9663949012756348, + "step": 1409 + }, + { + "epoch": 19.587155963302752, + "grad_norm": 0.2681315541267395, + "learning_rate": 0.0006, + "loss": 3.9581191539764404, + "step": 1410 + }, + { + "epoch": 19.601135867190912, + "grad_norm": 0.2691532373428345, + "learning_rate": 0.0006, + "loss": 3.9832754135131836, + "step": 1411 + }, + { + "epoch": 19.615115771079076, + "grad_norm": 0.2900252640247345, + "learning_rate": 0.0006, + "loss": 3.984365940093994, + "step": 1412 + }, + { + "epoch": 19.629095674967235, + "grad_norm": 0.3194943070411682, + "learning_rate": 0.0006, + "loss": 3.9856505393981934, + "step": 1413 + }, + { + "epoch": 19.643075578855395, + "grad_norm": 0.3029029071331024, + "learning_rate": 0.0006, + "loss": 3.968992233276367, + "step": 1414 + }, + { + "epoch": 19.657055482743555, + "grad_norm": 0.2658176124095917, + "learning_rate": 0.0006, + "loss": 3.995187282562256, + "step": 1415 + }, + { + "epoch": 19.67103538663172, + "grad_norm": 0.26807504892349243, + "learning_rate": 0.0006, + "loss": 3.9756274223327637, + "step": 1416 + }, + { + "epoch": 19.68501529051988, + "grad_norm": 0.27718642354011536, + "learning_rate": 0.0006, + "loss": 3.9510018825531006, + "step": 1417 + }, + { + "epoch": 19.698995194408038, + "grad_norm": 0.26322051882743835, + "learning_rate": 0.0006, + "loss": 3.965155601501465, + "step": 1418 + }, + { + "epoch": 19.712975098296198, + "grad_norm": 0.2566570043563843, + "learning_rate": 0.0006, + "loss": 3.984218120574951, + "step": 1419 + }, + { + "epoch": 19.72695500218436, + "grad_norm": 0.2218743860721588, + "learning_rate": 0.0006, + "loss": 3.9338784217834473, + "step": 1420 + }, + { + "epoch": 19.74093490607252, + "grad_norm": 0.22894173860549927, + "learning_rate": 0.0006, + "loss": 3.9869046211242676, + "step": 1421 + }, + { + "epoch": 19.75491480996068, + "grad_norm": 0.26837027072906494, + "learning_rate": 0.0006, + "loss": 3.96799898147583, + "step": 1422 + }, + { + "epoch": 19.76889471384884, + "grad_norm": 0.2767876982688904, + "learning_rate": 0.0006, + "loss": 3.9431071281433105, + "step": 1423 + }, + { + "epoch": 19.782874617737004, + "grad_norm": 0.24402284622192383, + "learning_rate": 0.0006, + "loss": 3.9631881713867188, + "step": 1424 + }, + { + "epoch": 19.796854521625164, + "grad_norm": 0.23500724136829376, + "learning_rate": 0.0006, + "loss": 3.9943337440490723, + "step": 1425 + }, + { + "epoch": 19.810834425513324, + "grad_norm": 0.22509142756462097, + "learning_rate": 0.0006, + "loss": 3.961226224899292, + "step": 1426 + }, + { + "epoch": 19.824814329401484, + "grad_norm": 0.23524795472621918, + "learning_rate": 0.0006, + "loss": 3.9552102088928223, + "step": 1427 + }, + { + "epoch": 19.838794233289647, + "grad_norm": 0.22307050228118896, + "learning_rate": 0.0006, + "loss": 3.9623494148254395, + "step": 1428 + }, + { + "epoch": 19.852774137177807, + "grad_norm": 0.21144486963748932, + "learning_rate": 0.0006, + "loss": 3.9620237350463867, + "step": 1429 + }, + { + "epoch": 19.866754041065967, + "grad_norm": 0.20249812304973602, + "learning_rate": 0.0006, + "loss": 3.953911066055298, + "step": 1430 + }, + { + "epoch": 19.88073394495413, + "grad_norm": 0.2350354939699173, + "learning_rate": 0.0006, + "loss": 3.9616730213165283, + "step": 1431 + }, + { + "epoch": 19.89471384884229, + "grad_norm": 0.2566683292388916, + "learning_rate": 0.0006, + "loss": 3.9372501373291016, + "step": 1432 + }, + { + "epoch": 19.90869375273045, + "grad_norm": 0.2520846128463745, + "learning_rate": 0.0006, + "loss": 3.9814648628234863, + "step": 1433 + }, + { + "epoch": 19.92267365661861, + "grad_norm": 0.23989640176296234, + "learning_rate": 0.0006, + "loss": 3.9692864418029785, + "step": 1434 + }, + { + "epoch": 19.936653560506773, + "grad_norm": 0.20650425553321838, + "learning_rate": 0.0006, + "loss": 3.960256814956665, + "step": 1435 + }, + { + "epoch": 19.950633464394933, + "grad_norm": 0.20478376746177673, + "learning_rate": 0.0006, + "loss": 3.9585227966308594, + "step": 1436 + }, + { + "epoch": 19.964613368283093, + "grad_norm": 0.234436497092247, + "learning_rate": 0.0006, + "loss": 3.945631742477417, + "step": 1437 + }, + { + "epoch": 19.978593272171253, + "grad_norm": 0.19969749450683594, + "learning_rate": 0.0006, + "loss": 3.9646050930023193, + "step": 1438 + }, + { + "epoch": 19.992573176059416, + "grad_norm": 0.20638690888881683, + "learning_rate": 0.0006, + "loss": 3.9461846351623535, + "step": 1439 + }, + { + "epoch": 20.0, + "grad_norm": 0.2120274156332016, + "learning_rate": 0.0006, + "loss": 3.965153217315674, + "step": 1440 + }, + { + "epoch": 20.0, + "eval_loss": 4.168524742126465, + "eval_runtime": 44.2796, + "eval_samples_per_second": 55.15, + "eval_steps_per_second": 3.455, + "step": 1440 + }, + { + "epoch": 20.01397990388816, + "grad_norm": 0.19704894721508026, + "learning_rate": 0.0006, + "loss": 3.937016248703003, + "step": 1441 + }, + { + "epoch": 20.027959807776323, + "grad_norm": 0.18682368099689484, + "learning_rate": 0.0006, + "loss": 3.895922899246216, + "step": 1442 + }, + { + "epoch": 20.041939711664483, + "grad_norm": 0.18982571363449097, + "learning_rate": 0.0006, + "loss": 3.929841995239258, + "step": 1443 + }, + { + "epoch": 20.055919615552643, + "grad_norm": 0.20811910927295685, + "learning_rate": 0.0006, + "loss": 3.9498324394226074, + "step": 1444 + }, + { + "epoch": 20.069899519440803, + "grad_norm": 0.2149062603712082, + "learning_rate": 0.0006, + "loss": 3.929853916168213, + "step": 1445 + }, + { + "epoch": 20.083879423328966, + "grad_norm": 0.20016685128211975, + "learning_rate": 0.0006, + "loss": 3.9374136924743652, + "step": 1446 + }, + { + "epoch": 20.097859327217126, + "grad_norm": 0.19969616830348969, + "learning_rate": 0.0006, + "loss": 3.932447910308838, + "step": 1447 + }, + { + "epoch": 20.111839231105286, + "grad_norm": 0.2163356989622116, + "learning_rate": 0.0006, + "loss": 3.9325437545776367, + "step": 1448 + }, + { + "epoch": 20.125819134993446, + "grad_norm": 0.22026969492435455, + "learning_rate": 0.0006, + "loss": 3.9118852615356445, + "step": 1449 + }, + { + "epoch": 20.13979903888161, + "grad_norm": 0.23337116837501526, + "learning_rate": 0.0006, + "loss": 3.9416019916534424, + "step": 1450 + }, + { + "epoch": 20.15377894276977, + "grad_norm": 0.23971447348594666, + "learning_rate": 0.0006, + "loss": 3.9416871070861816, + "step": 1451 + }, + { + "epoch": 20.16775884665793, + "grad_norm": 0.25973960757255554, + "learning_rate": 0.0006, + "loss": 3.93826961517334, + "step": 1452 + }, + { + "epoch": 20.18173875054609, + "grad_norm": 0.2303445190191269, + "learning_rate": 0.0006, + "loss": 3.909383535385132, + "step": 1453 + }, + { + "epoch": 20.195718654434252, + "grad_norm": 0.21090206503868103, + "learning_rate": 0.0006, + "loss": 3.935939311981201, + "step": 1454 + }, + { + "epoch": 20.209698558322412, + "grad_norm": 0.2278691977262497, + "learning_rate": 0.0006, + "loss": 3.9623684883117676, + "step": 1455 + }, + { + "epoch": 20.22367846221057, + "grad_norm": 0.22291512787342072, + "learning_rate": 0.0006, + "loss": 3.9386210441589355, + "step": 1456 + }, + { + "epoch": 20.23765836609873, + "grad_norm": 0.2385793924331665, + "learning_rate": 0.0006, + "loss": 3.927365303039551, + "step": 1457 + }, + { + "epoch": 20.251638269986895, + "grad_norm": 0.23949867486953735, + "learning_rate": 0.0006, + "loss": 3.956698179244995, + "step": 1458 + }, + { + "epoch": 20.265618173875055, + "grad_norm": 0.2232269048690796, + "learning_rate": 0.0006, + "loss": 3.9465065002441406, + "step": 1459 + }, + { + "epoch": 20.279598077763215, + "grad_norm": 0.22286680340766907, + "learning_rate": 0.0006, + "loss": 3.9102284908294678, + "step": 1460 + }, + { + "epoch": 20.293577981651374, + "grad_norm": 0.24039050936698914, + "learning_rate": 0.0006, + "loss": 3.928055763244629, + "step": 1461 + }, + { + "epoch": 20.307557885539538, + "grad_norm": 0.2532738447189331, + "learning_rate": 0.0006, + "loss": 3.931753635406494, + "step": 1462 + }, + { + "epoch": 20.321537789427698, + "grad_norm": 0.2206273376941681, + "learning_rate": 0.0006, + "loss": 3.936119556427002, + "step": 1463 + }, + { + "epoch": 20.335517693315857, + "grad_norm": 0.20918945968151093, + "learning_rate": 0.0006, + "loss": 3.9228529930114746, + "step": 1464 + }, + { + "epoch": 20.34949759720402, + "grad_norm": 0.2324502319097519, + "learning_rate": 0.0006, + "loss": 3.9370768070220947, + "step": 1465 + }, + { + "epoch": 20.36347750109218, + "grad_norm": 0.26811033487319946, + "learning_rate": 0.0006, + "loss": 3.968515396118164, + "step": 1466 + }, + { + "epoch": 20.37745740498034, + "grad_norm": 0.2896045744419098, + "learning_rate": 0.0006, + "loss": 3.945124626159668, + "step": 1467 + }, + { + "epoch": 20.3914373088685, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 3.9399516582489014, + "step": 1468 + }, + { + "epoch": 20.405417212756664, + "grad_norm": 0.3076821565628052, + "learning_rate": 0.0006, + "loss": 3.9545583724975586, + "step": 1469 + }, + { + "epoch": 20.419397116644824, + "grad_norm": 0.3019449710845947, + "learning_rate": 0.0006, + "loss": 3.9502270221710205, + "step": 1470 + }, + { + "epoch": 20.433377020532983, + "grad_norm": 0.31832560896873474, + "learning_rate": 0.0006, + "loss": 3.940439224243164, + "step": 1471 + }, + { + "epoch": 20.447356924421143, + "grad_norm": 0.30303657054901123, + "learning_rate": 0.0006, + "loss": 3.9451770782470703, + "step": 1472 + }, + { + "epoch": 20.461336828309307, + "grad_norm": 0.28122979402542114, + "learning_rate": 0.0006, + "loss": 3.934508800506592, + "step": 1473 + }, + { + "epoch": 20.475316732197467, + "grad_norm": 0.27013441920280457, + "learning_rate": 0.0006, + "loss": 3.924323081970215, + "step": 1474 + }, + { + "epoch": 20.489296636085626, + "grad_norm": 0.29052063822746277, + "learning_rate": 0.0006, + "loss": 3.970916748046875, + "step": 1475 + }, + { + "epoch": 20.503276539973786, + "grad_norm": 0.2871626913547516, + "learning_rate": 0.0006, + "loss": 3.945425033569336, + "step": 1476 + }, + { + "epoch": 20.51725644386195, + "grad_norm": 0.2396184206008911, + "learning_rate": 0.0006, + "loss": 3.964290142059326, + "step": 1477 + }, + { + "epoch": 20.53123634775011, + "grad_norm": 0.21942107379436493, + "learning_rate": 0.0006, + "loss": 3.910101890563965, + "step": 1478 + }, + { + "epoch": 20.54521625163827, + "grad_norm": 0.22193685173988342, + "learning_rate": 0.0006, + "loss": 3.914005756378174, + "step": 1479 + }, + { + "epoch": 20.55919615552643, + "grad_norm": 0.20207515358924866, + "learning_rate": 0.0006, + "loss": 3.9575581550598145, + "step": 1480 + }, + { + "epoch": 20.573176059414592, + "grad_norm": 0.17855247855186462, + "learning_rate": 0.0006, + "loss": 3.941490411758423, + "step": 1481 + }, + { + "epoch": 20.587155963302752, + "grad_norm": 0.21268485486507416, + "learning_rate": 0.0006, + "loss": 3.94045352935791, + "step": 1482 + }, + { + "epoch": 20.601135867190912, + "grad_norm": 0.24890053272247314, + "learning_rate": 0.0006, + "loss": 3.932961940765381, + "step": 1483 + }, + { + "epoch": 20.615115771079076, + "grad_norm": 0.23771314322948456, + "learning_rate": 0.0006, + "loss": 3.9067630767822266, + "step": 1484 + }, + { + "epoch": 20.629095674967235, + "grad_norm": 0.20990237593650818, + "learning_rate": 0.0006, + "loss": 3.9476752281188965, + "step": 1485 + }, + { + "epoch": 20.643075578855395, + "grad_norm": 0.20058798789978027, + "learning_rate": 0.0006, + "loss": 3.9350547790527344, + "step": 1486 + }, + { + "epoch": 20.657055482743555, + "grad_norm": 0.1953001767396927, + "learning_rate": 0.0006, + "loss": 3.9437222480773926, + "step": 1487 + }, + { + "epoch": 20.67103538663172, + "grad_norm": 0.18748535215854645, + "learning_rate": 0.0006, + "loss": 3.9336047172546387, + "step": 1488 + }, + { + "epoch": 20.68501529051988, + "grad_norm": 0.18874801695346832, + "learning_rate": 0.0006, + "loss": 3.9042580127716064, + "step": 1489 + }, + { + "epoch": 20.698995194408038, + "grad_norm": 0.1844169795513153, + "learning_rate": 0.0006, + "loss": 3.9302420616149902, + "step": 1490 + }, + { + "epoch": 20.712975098296198, + "grad_norm": 0.18519413471221924, + "learning_rate": 0.0006, + "loss": 3.9527437686920166, + "step": 1491 + }, + { + "epoch": 20.72695500218436, + "grad_norm": 0.20084598660469055, + "learning_rate": 0.0006, + "loss": 3.9161760807037354, + "step": 1492 + }, + { + "epoch": 20.74093490607252, + "grad_norm": 0.2015734612941742, + "learning_rate": 0.0006, + "loss": 3.9466545581817627, + "step": 1493 + }, + { + "epoch": 20.75491480996068, + "grad_norm": 0.2210122048854828, + "learning_rate": 0.0006, + "loss": 3.8994693756103516, + "step": 1494 + }, + { + "epoch": 20.76889471384884, + "grad_norm": 0.23019762337207794, + "learning_rate": 0.0006, + "loss": 3.93685245513916, + "step": 1495 + }, + { + "epoch": 20.782874617737004, + "grad_norm": 0.21246281266212463, + "learning_rate": 0.0006, + "loss": 3.9499399662017822, + "step": 1496 + }, + { + "epoch": 20.796854521625164, + "grad_norm": 0.21142810583114624, + "learning_rate": 0.0006, + "loss": 3.9317150115966797, + "step": 1497 + }, + { + "epoch": 20.810834425513324, + "grad_norm": 0.20230524241924286, + "learning_rate": 0.0006, + "loss": 3.9389750957489014, + "step": 1498 + }, + { + "epoch": 20.824814329401484, + "grad_norm": 0.21096977591514587, + "learning_rate": 0.0006, + "loss": 3.9325194358825684, + "step": 1499 + }, + { + "epoch": 20.838794233289647, + "grad_norm": 0.2309989333152771, + "learning_rate": 0.0006, + "loss": 3.943641185760498, + "step": 1500 + }, + { + "epoch": 20.852774137177807, + "grad_norm": 0.2016306221485138, + "learning_rate": 0.0006, + "loss": 3.986043930053711, + "step": 1501 + }, + { + "epoch": 20.866754041065967, + "grad_norm": 0.2107970118522644, + "learning_rate": 0.0006, + "loss": 3.9219160079956055, + "step": 1502 + }, + { + "epoch": 20.88073394495413, + "grad_norm": 0.21580125391483307, + "learning_rate": 0.0006, + "loss": 3.942014694213867, + "step": 1503 + }, + { + "epoch": 20.89471384884229, + "grad_norm": 0.21348726749420166, + "learning_rate": 0.0006, + "loss": 3.9389920234680176, + "step": 1504 + }, + { + "epoch": 20.90869375273045, + "grad_norm": 0.23094943165779114, + "learning_rate": 0.0006, + "loss": 3.952993392944336, + "step": 1505 + }, + { + "epoch": 20.92267365661861, + "grad_norm": 0.22431740164756775, + "learning_rate": 0.0006, + "loss": 3.897671937942505, + "step": 1506 + }, + { + "epoch": 20.936653560506773, + "grad_norm": 0.20056353509426117, + "learning_rate": 0.0006, + "loss": 3.9100005626678467, + "step": 1507 + }, + { + "epoch": 20.950633464394933, + "grad_norm": 0.20604434609413147, + "learning_rate": 0.0006, + "loss": 3.9486045837402344, + "step": 1508 + }, + { + "epoch": 20.964613368283093, + "grad_norm": 0.22979380190372467, + "learning_rate": 0.0006, + "loss": 3.977163553237915, + "step": 1509 + }, + { + "epoch": 20.978593272171253, + "grad_norm": 0.2421523779630661, + "learning_rate": 0.0006, + "loss": 3.9216256141662598, + "step": 1510 + }, + { + "epoch": 20.992573176059416, + "grad_norm": 0.25776705145835876, + "learning_rate": 0.0006, + "loss": 3.9221739768981934, + "step": 1511 + }, + { + "epoch": 21.0, + "grad_norm": 0.2750694751739502, + "learning_rate": 0.0006, + "loss": 3.938098907470703, + "step": 1512 + }, + { + "epoch": 21.0, + "eval_loss": 4.159763336181641, + "eval_runtime": 44.8663, + "eval_samples_per_second": 54.428, + "eval_steps_per_second": 3.41, + "step": 1512 + }, + { + "epoch": 21.01397990388816, + "grad_norm": 0.24513043463230133, + "learning_rate": 0.0006, + "loss": 3.8939385414123535, + "step": 1513 + }, + { + "epoch": 21.027959807776323, + "grad_norm": 0.22209352254867554, + "learning_rate": 0.0006, + "loss": 3.9044857025146484, + "step": 1514 + }, + { + "epoch": 21.041939711664483, + "grad_norm": 0.22437648475170135, + "learning_rate": 0.0006, + "loss": 3.9325196743011475, + "step": 1515 + }, + { + "epoch": 21.055919615552643, + "grad_norm": 0.21168062090873718, + "learning_rate": 0.0006, + "loss": 3.882176637649536, + "step": 1516 + }, + { + "epoch": 21.069899519440803, + "grad_norm": 0.22334499657154083, + "learning_rate": 0.0006, + "loss": 3.8978934288024902, + "step": 1517 + }, + { + "epoch": 21.083879423328966, + "grad_norm": 0.21038010716438293, + "learning_rate": 0.0006, + "loss": 3.8807029724121094, + "step": 1518 + }, + { + "epoch": 21.097859327217126, + "grad_norm": 0.2243613600730896, + "learning_rate": 0.0006, + "loss": 3.924865961074829, + "step": 1519 + }, + { + "epoch": 21.111839231105286, + "grad_norm": 0.2535616159439087, + "learning_rate": 0.0006, + "loss": 3.9288227558135986, + "step": 1520 + }, + { + "epoch": 21.125819134993446, + "grad_norm": 0.2782756984233856, + "learning_rate": 0.0006, + "loss": 3.908233642578125, + "step": 1521 + }, + { + "epoch": 21.13979903888161, + "grad_norm": 0.2586214542388916, + "learning_rate": 0.0006, + "loss": 3.9151182174682617, + "step": 1522 + }, + { + "epoch": 21.15377894276977, + "grad_norm": 0.22465091943740845, + "learning_rate": 0.0006, + "loss": 3.9209084510803223, + "step": 1523 + }, + { + "epoch": 21.16775884665793, + "grad_norm": 0.2588018774986267, + "learning_rate": 0.0006, + "loss": 3.9295971393585205, + "step": 1524 + }, + { + "epoch": 21.18173875054609, + "grad_norm": 0.2637675702571869, + "learning_rate": 0.0006, + "loss": 3.9353199005126953, + "step": 1525 + }, + { + "epoch": 21.195718654434252, + "grad_norm": 0.2806383967399597, + "learning_rate": 0.0006, + "loss": 3.922337770462036, + "step": 1526 + }, + { + "epoch": 21.209698558322412, + "grad_norm": 0.27103501558303833, + "learning_rate": 0.0006, + "loss": 3.8811073303222656, + "step": 1527 + }, + { + "epoch": 21.22367846221057, + "grad_norm": 0.27203720808029175, + "learning_rate": 0.0006, + "loss": 3.9036178588867188, + "step": 1528 + }, + { + "epoch": 21.23765836609873, + "grad_norm": 0.2783355712890625, + "learning_rate": 0.0006, + "loss": 3.885456085205078, + "step": 1529 + }, + { + "epoch": 21.251638269986895, + "grad_norm": 0.2884930968284607, + "learning_rate": 0.0006, + "loss": 3.8936941623687744, + "step": 1530 + }, + { + "epoch": 21.265618173875055, + "grad_norm": 0.2829558849334717, + "learning_rate": 0.0006, + "loss": 3.927624225616455, + "step": 1531 + }, + { + "epoch": 21.279598077763215, + "grad_norm": 0.2809497117996216, + "learning_rate": 0.0006, + "loss": 3.8896753787994385, + "step": 1532 + }, + { + "epoch": 21.293577981651374, + "grad_norm": 0.27037671208381653, + "learning_rate": 0.0006, + "loss": 3.91316294670105, + "step": 1533 + }, + { + "epoch": 21.307557885539538, + "grad_norm": 0.310051292181015, + "learning_rate": 0.0006, + "loss": 3.9137332439422607, + "step": 1534 + }, + { + "epoch": 21.321537789427698, + "grad_norm": 0.30489876866340637, + "learning_rate": 0.0006, + "loss": 3.9088284969329834, + "step": 1535 + }, + { + "epoch": 21.335517693315857, + "grad_norm": 0.2607756555080414, + "learning_rate": 0.0006, + "loss": 3.9097847938537598, + "step": 1536 + }, + { + "epoch": 21.34949759720402, + "grad_norm": 0.2460775375366211, + "learning_rate": 0.0006, + "loss": 3.941211700439453, + "step": 1537 + }, + { + "epoch": 21.36347750109218, + "grad_norm": 0.24271734058856964, + "learning_rate": 0.0006, + "loss": 3.9140594005584717, + "step": 1538 + }, + { + "epoch": 21.37745740498034, + "grad_norm": 0.20012645423412323, + "learning_rate": 0.0006, + "loss": 3.888446807861328, + "step": 1539 + }, + { + "epoch": 21.3914373088685, + "grad_norm": 0.2196308672428131, + "learning_rate": 0.0006, + "loss": 3.9153785705566406, + "step": 1540 + }, + { + "epoch": 21.405417212756664, + "grad_norm": 0.22184589505195618, + "learning_rate": 0.0006, + "loss": 3.91996431350708, + "step": 1541 + }, + { + "epoch": 21.419397116644824, + "grad_norm": 0.22947315871715546, + "learning_rate": 0.0006, + "loss": 3.9268412590026855, + "step": 1542 + }, + { + "epoch": 21.433377020532983, + "grad_norm": 0.22275054454803467, + "learning_rate": 0.0006, + "loss": 3.909275531768799, + "step": 1543 + }, + { + "epoch": 21.447356924421143, + "grad_norm": 0.23103971779346466, + "learning_rate": 0.0006, + "loss": 3.925635814666748, + "step": 1544 + }, + { + "epoch": 21.461336828309307, + "grad_norm": 0.23379720747470856, + "learning_rate": 0.0006, + "loss": 3.926647186279297, + "step": 1545 + }, + { + "epoch": 21.475316732197467, + "grad_norm": 0.2244282215833664, + "learning_rate": 0.0006, + "loss": 3.9428000450134277, + "step": 1546 + }, + { + "epoch": 21.489296636085626, + "grad_norm": 0.22773298621177673, + "learning_rate": 0.0006, + "loss": 3.9378256797790527, + "step": 1547 + }, + { + "epoch": 21.503276539973786, + "grad_norm": 0.1918657273054123, + "learning_rate": 0.0006, + "loss": 3.904022216796875, + "step": 1548 + }, + { + "epoch": 21.51725644386195, + "grad_norm": 0.18415570259094238, + "learning_rate": 0.0006, + "loss": 3.9105122089385986, + "step": 1549 + }, + { + "epoch": 21.53123634775011, + "grad_norm": 0.22141380608081818, + "learning_rate": 0.0006, + "loss": 3.9153857231140137, + "step": 1550 + }, + { + "epoch": 21.54521625163827, + "grad_norm": 0.22533352673053741, + "learning_rate": 0.0006, + "loss": 3.9148974418640137, + "step": 1551 + }, + { + "epoch": 21.55919615552643, + "grad_norm": 0.2124762088060379, + "learning_rate": 0.0006, + "loss": 3.926311731338501, + "step": 1552 + }, + { + "epoch": 21.573176059414592, + "grad_norm": 0.239680215716362, + "learning_rate": 0.0006, + "loss": 3.9260334968566895, + "step": 1553 + }, + { + "epoch": 21.587155963302752, + "grad_norm": 0.24158740043640137, + "learning_rate": 0.0006, + "loss": 3.933223247528076, + "step": 1554 + }, + { + "epoch": 21.601135867190912, + "grad_norm": 0.2216576784849167, + "learning_rate": 0.0006, + "loss": 3.9065442085266113, + "step": 1555 + }, + { + "epoch": 21.615115771079076, + "grad_norm": 0.20099912583827972, + "learning_rate": 0.0006, + "loss": 3.923278570175171, + "step": 1556 + }, + { + "epoch": 21.629095674967235, + "grad_norm": 0.2337288111448288, + "learning_rate": 0.0006, + "loss": 3.92032527923584, + "step": 1557 + }, + { + "epoch": 21.643075578855395, + "grad_norm": 0.23574814200401306, + "learning_rate": 0.0006, + "loss": 3.896244525909424, + "step": 1558 + }, + { + "epoch": 21.657055482743555, + "grad_norm": 0.21338573098182678, + "learning_rate": 0.0006, + "loss": 3.930345058441162, + "step": 1559 + }, + { + "epoch": 21.67103538663172, + "grad_norm": 0.2375067174434662, + "learning_rate": 0.0006, + "loss": 3.864104986190796, + "step": 1560 + }, + { + "epoch": 21.68501529051988, + "grad_norm": 0.22490349411964417, + "learning_rate": 0.0006, + "loss": 3.883296012878418, + "step": 1561 + }, + { + "epoch": 21.698995194408038, + "grad_norm": 0.23021313548088074, + "learning_rate": 0.0006, + "loss": 3.915200710296631, + "step": 1562 + }, + { + "epoch": 21.712975098296198, + "grad_norm": 0.22590875625610352, + "learning_rate": 0.0006, + "loss": 3.903597354888916, + "step": 1563 + }, + { + "epoch": 21.72695500218436, + "grad_norm": 0.19066260755062103, + "learning_rate": 0.0006, + "loss": 3.9162631034851074, + "step": 1564 + }, + { + "epoch": 21.74093490607252, + "grad_norm": 0.18134327232837677, + "learning_rate": 0.0006, + "loss": 3.9167914390563965, + "step": 1565 + }, + { + "epoch": 21.75491480996068, + "grad_norm": 0.1782190054655075, + "learning_rate": 0.0006, + "loss": 3.900925636291504, + "step": 1566 + }, + { + "epoch": 21.76889471384884, + "grad_norm": 0.19034099578857422, + "learning_rate": 0.0006, + "loss": 3.896559238433838, + "step": 1567 + }, + { + "epoch": 21.782874617737004, + "grad_norm": 0.21509577333927155, + "learning_rate": 0.0006, + "loss": 3.891681671142578, + "step": 1568 + }, + { + "epoch": 21.796854521625164, + "grad_norm": 0.2370351105928421, + "learning_rate": 0.0006, + "loss": 3.886570453643799, + "step": 1569 + }, + { + "epoch": 21.810834425513324, + "grad_norm": 0.25546324253082275, + "learning_rate": 0.0006, + "loss": 3.9247193336486816, + "step": 1570 + }, + { + "epoch": 21.824814329401484, + "grad_norm": 0.2513384222984314, + "learning_rate": 0.0006, + "loss": 3.9120583534240723, + "step": 1571 + }, + { + "epoch": 21.838794233289647, + "grad_norm": 0.24691323935985565, + "learning_rate": 0.0006, + "loss": 3.9144935607910156, + "step": 1572 + }, + { + "epoch": 21.852774137177807, + "grad_norm": 0.2573968172073364, + "learning_rate": 0.0006, + "loss": 3.9517531394958496, + "step": 1573 + }, + { + "epoch": 21.866754041065967, + "grad_norm": 0.25461453199386597, + "learning_rate": 0.0006, + "loss": 3.93508243560791, + "step": 1574 + }, + { + "epoch": 21.88073394495413, + "grad_norm": 0.23756568133831024, + "learning_rate": 0.0006, + "loss": 3.8885269165039062, + "step": 1575 + }, + { + "epoch": 21.89471384884229, + "grad_norm": 0.2193172425031662, + "learning_rate": 0.0006, + "loss": 3.9103426933288574, + "step": 1576 + }, + { + "epoch": 21.90869375273045, + "grad_norm": 0.2350149303674698, + "learning_rate": 0.0006, + "loss": 3.9399590492248535, + "step": 1577 + }, + { + "epoch": 21.92267365661861, + "grad_norm": 0.23759333789348602, + "learning_rate": 0.0006, + "loss": 3.9433584213256836, + "step": 1578 + }, + { + "epoch": 21.936653560506773, + "grad_norm": 0.21108432114124298, + "learning_rate": 0.0006, + "loss": 3.9241819381713867, + "step": 1579 + }, + { + "epoch": 21.950633464394933, + "grad_norm": 0.22088949382305145, + "learning_rate": 0.0006, + "loss": 3.9231910705566406, + "step": 1580 + }, + { + "epoch": 21.964613368283093, + "grad_norm": 0.22125045955181122, + "learning_rate": 0.0006, + "loss": 3.896329164505005, + "step": 1581 + }, + { + "epoch": 21.978593272171253, + "grad_norm": 0.20745202898979187, + "learning_rate": 0.0006, + "loss": 3.8920536041259766, + "step": 1582 + }, + { + "epoch": 21.992573176059416, + "grad_norm": 0.2409721463918686, + "learning_rate": 0.0006, + "loss": 3.9061317443847656, + "step": 1583 + }, + { + "epoch": 22.0, + "grad_norm": 0.2669669985771179, + "learning_rate": 0.0006, + "loss": 3.922062397003174, + "step": 1584 + }, + { + "epoch": 22.0, + "eval_loss": 4.140966415405273, + "eval_runtime": 46.7132, + "eval_samples_per_second": 52.276, + "eval_steps_per_second": 3.275, + "step": 1584 + }, + { + "epoch": 22.01397990388816, + "grad_norm": 0.26155969500541687, + "learning_rate": 0.0006, + "loss": 3.888944625854492, + "step": 1585 + }, + { + "epoch": 22.027959807776323, + "grad_norm": 0.2579149007797241, + "learning_rate": 0.0006, + "loss": 3.8924355506896973, + "step": 1586 + }, + { + "epoch": 22.041939711664483, + "grad_norm": 0.2429896742105484, + "learning_rate": 0.0006, + "loss": 3.8714070320129395, + "step": 1587 + }, + { + "epoch": 22.055919615552643, + "grad_norm": 0.23497673869132996, + "learning_rate": 0.0006, + "loss": 3.905089855194092, + "step": 1588 + }, + { + "epoch": 22.069899519440803, + "grad_norm": 0.24074940383434296, + "learning_rate": 0.0006, + "loss": 3.886845111846924, + "step": 1589 + }, + { + "epoch": 22.083879423328966, + "grad_norm": 0.2226274162530899, + "learning_rate": 0.0006, + "loss": 3.8554329872131348, + "step": 1590 + }, + { + "epoch": 22.097859327217126, + "grad_norm": 0.22924423217773438, + "learning_rate": 0.0006, + "loss": 3.8914356231689453, + "step": 1591 + }, + { + "epoch": 22.111839231105286, + "grad_norm": 0.2459387183189392, + "learning_rate": 0.0006, + "loss": 3.902522087097168, + "step": 1592 + }, + { + "epoch": 22.125819134993446, + "grad_norm": 0.2704590857028961, + "learning_rate": 0.0006, + "loss": 3.896497964859009, + "step": 1593 + }, + { + "epoch": 22.13979903888161, + "grad_norm": 0.2848219871520996, + "learning_rate": 0.0006, + "loss": 3.88423228263855, + "step": 1594 + }, + { + "epoch": 22.15377894276977, + "grad_norm": 0.22996552288532257, + "learning_rate": 0.0006, + "loss": 3.9034953117370605, + "step": 1595 + }, + { + "epoch": 22.16775884665793, + "grad_norm": 0.2117270529270172, + "learning_rate": 0.0006, + "loss": 3.888279914855957, + "step": 1596 + }, + { + "epoch": 22.18173875054609, + "grad_norm": 0.19724160432815552, + "learning_rate": 0.0006, + "loss": 3.860525131225586, + "step": 1597 + }, + { + "epoch": 22.195718654434252, + "grad_norm": 0.2012624740600586, + "learning_rate": 0.0006, + "loss": 3.8930106163024902, + "step": 1598 + }, + { + "epoch": 22.209698558322412, + "grad_norm": 0.20243871212005615, + "learning_rate": 0.0006, + "loss": 3.8727619647979736, + "step": 1599 + }, + { + "epoch": 22.22367846221057, + "grad_norm": 0.21737465262413025, + "learning_rate": 0.0006, + "loss": 3.887969493865967, + "step": 1600 + }, + { + "epoch": 22.23765836609873, + "grad_norm": 0.23969845473766327, + "learning_rate": 0.0006, + "loss": 3.8629722595214844, + "step": 1601 + }, + { + "epoch": 22.251638269986895, + "grad_norm": 0.22874902188777924, + "learning_rate": 0.0006, + "loss": 3.9135584831237793, + "step": 1602 + }, + { + "epoch": 22.265618173875055, + "grad_norm": 0.209506556391716, + "learning_rate": 0.0006, + "loss": 3.8734190464019775, + "step": 1603 + }, + { + "epoch": 22.279598077763215, + "grad_norm": 0.22235789895057678, + "learning_rate": 0.0006, + "loss": 3.884854793548584, + "step": 1604 + }, + { + "epoch": 22.293577981651374, + "grad_norm": 0.21975041925907135, + "learning_rate": 0.0006, + "loss": 3.8860888481140137, + "step": 1605 + }, + { + "epoch": 22.307557885539538, + "grad_norm": 0.21474459767341614, + "learning_rate": 0.0006, + "loss": 3.9052200317382812, + "step": 1606 + }, + { + "epoch": 22.321537789427698, + "grad_norm": 0.2103329747915268, + "learning_rate": 0.0006, + "loss": 3.8516340255737305, + "step": 1607 + }, + { + "epoch": 22.335517693315857, + "grad_norm": 0.1981191635131836, + "learning_rate": 0.0006, + "loss": 3.9017434120178223, + "step": 1608 + }, + { + "epoch": 22.34949759720402, + "grad_norm": 0.20679591596126556, + "learning_rate": 0.0006, + "loss": 3.889885425567627, + "step": 1609 + }, + { + "epoch": 22.36347750109218, + "grad_norm": 0.20809867978096008, + "learning_rate": 0.0006, + "loss": 3.881868362426758, + "step": 1610 + }, + { + "epoch": 22.37745740498034, + "grad_norm": 0.21394680440425873, + "learning_rate": 0.0006, + "loss": 3.89980411529541, + "step": 1611 + }, + { + "epoch": 22.3914373088685, + "grad_norm": 0.2334284782409668, + "learning_rate": 0.0006, + "loss": 3.8672266006469727, + "step": 1612 + }, + { + "epoch": 22.405417212756664, + "grad_norm": 0.26521918177604675, + "learning_rate": 0.0006, + "loss": 3.8918118476867676, + "step": 1613 + }, + { + "epoch": 22.419397116644824, + "grad_norm": 0.2652994394302368, + "learning_rate": 0.0006, + "loss": 3.8683271408081055, + "step": 1614 + }, + { + "epoch": 22.433377020532983, + "grad_norm": 0.2568066716194153, + "learning_rate": 0.0006, + "loss": 3.892523765563965, + "step": 1615 + }, + { + "epoch": 22.447356924421143, + "grad_norm": 0.260052353143692, + "learning_rate": 0.0006, + "loss": 3.897305488586426, + "step": 1616 + }, + { + "epoch": 22.461336828309307, + "grad_norm": 0.2744271457195282, + "learning_rate": 0.0006, + "loss": 3.8962221145629883, + "step": 1617 + }, + { + "epoch": 22.475316732197467, + "grad_norm": 0.23755787312984467, + "learning_rate": 0.0006, + "loss": 3.888184070587158, + "step": 1618 + }, + { + "epoch": 22.489296636085626, + "grad_norm": 0.2515312135219574, + "learning_rate": 0.0006, + "loss": 3.8946003913879395, + "step": 1619 + }, + { + "epoch": 22.503276539973786, + "grad_norm": 0.24835044145584106, + "learning_rate": 0.0006, + "loss": 3.8711423873901367, + "step": 1620 + }, + { + "epoch": 22.51725644386195, + "grad_norm": 0.22615326941013336, + "learning_rate": 0.0006, + "loss": 3.8878846168518066, + "step": 1621 + }, + { + "epoch": 22.53123634775011, + "grad_norm": 0.20482423901557922, + "learning_rate": 0.0006, + "loss": 3.8782598972320557, + "step": 1622 + }, + { + "epoch": 22.54521625163827, + "grad_norm": 0.20436473190784454, + "learning_rate": 0.0006, + "loss": 3.9075279235839844, + "step": 1623 + }, + { + "epoch": 22.55919615552643, + "grad_norm": 0.2066277265548706, + "learning_rate": 0.0006, + "loss": 3.89908766746521, + "step": 1624 + }, + { + "epoch": 22.573176059414592, + "grad_norm": 0.20735307037830353, + "learning_rate": 0.0006, + "loss": 3.865204334259033, + "step": 1625 + }, + { + "epoch": 22.587155963302752, + "grad_norm": 0.20955748856067657, + "learning_rate": 0.0006, + "loss": 3.8835532665252686, + "step": 1626 + }, + { + "epoch": 22.601135867190912, + "grad_norm": 0.21354222297668457, + "learning_rate": 0.0006, + "loss": 3.9012551307678223, + "step": 1627 + }, + { + "epoch": 22.615115771079076, + "grad_norm": 0.2075091004371643, + "learning_rate": 0.0006, + "loss": 3.8733482360839844, + "step": 1628 + }, + { + "epoch": 22.629095674967235, + "grad_norm": 0.20207874476909637, + "learning_rate": 0.0006, + "loss": 3.9193859100341797, + "step": 1629 + }, + { + "epoch": 22.643075578855395, + "grad_norm": 0.21863923966884613, + "learning_rate": 0.0006, + "loss": 3.883518695831299, + "step": 1630 + }, + { + "epoch": 22.657055482743555, + "grad_norm": 0.22117522358894348, + "learning_rate": 0.0006, + "loss": 3.9163284301757812, + "step": 1631 + }, + { + "epoch": 22.67103538663172, + "grad_norm": 0.2078622728586197, + "learning_rate": 0.0006, + "loss": 3.868274688720703, + "step": 1632 + }, + { + "epoch": 22.68501529051988, + "grad_norm": 0.22745893895626068, + "learning_rate": 0.0006, + "loss": 3.9171340465545654, + "step": 1633 + }, + { + "epoch": 22.698995194408038, + "grad_norm": 0.2312736064195633, + "learning_rate": 0.0006, + "loss": 3.9487013816833496, + "step": 1634 + }, + { + "epoch": 22.712975098296198, + "grad_norm": 0.20491497218608856, + "learning_rate": 0.0006, + "loss": 3.91833758354187, + "step": 1635 + }, + { + "epoch": 22.72695500218436, + "grad_norm": 0.1899084597826004, + "learning_rate": 0.0006, + "loss": 3.876225709915161, + "step": 1636 + }, + { + "epoch": 22.74093490607252, + "grad_norm": 0.18581682443618774, + "learning_rate": 0.0006, + "loss": 3.8667988777160645, + "step": 1637 + }, + { + "epoch": 22.75491480996068, + "grad_norm": 0.19855599105358124, + "learning_rate": 0.0006, + "loss": 3.900789260864258, + "step": 1638 + }, + { + "epoch": 22.76889471384884, + "grad_norm": 0.19951458275318146, + "learning_rate": 0.0006, + "loss": 3.8850367069244385, + "step": 1639 + }, + { + "epoch": 22.782874617737004, + "grad_norm": 0.22802744805812836, + "learning_rate": 0.0006, + "loss": 3.9181363582611084, + "step": 1640 + }, + { + "epoch": 22.796854521625164, + "grad_norm": 0.24279919266700745, + "learning_rate": 0.0006, + "loss": 3.8843770027160645, + "step": 1641 + }, + { + "epoch": 22.810834425513324, + "grad_norm": 0.23554913699626923, + "learning_rate": 0.0006, + "loss": 3.8802413940429688, + "step": 1642 + }, + { + "epoch": 22.824814329401484, + "grad_norm": 0.22343270480632782, + "learning_rate": 0.0006, + "loss": 3.8524107933044434, + "step": 1643 + }, + { + "epoch": 22.838794233289647, + "grad_norm": 0.2185724526643753, + "learning_rate": 0.0006, + "loss": 3.9117047786712646, + "step": 1644 + }, + { + "epoch": 22.852774137177807, + "grad_norm": 0.2114841341972351, + "learning_rate": 0.0006, + "loss": 3.90325927734375, + "step": 1645 + }, + { + "epoch": 22.866754041065967, + "grad_norm": 0.21072550117969513, + "learning_rate": 0.0006, + "loss": 3.8988137245178223, + "step": 1646 + }, + { + "epoch": 22.88073394495413, + "grad_norm": 0.2250078171491623, + "learning_rate": 0.0006, + "loss": 3.9201531410217285, + "step": 1647 + }, + { + "epoch": 22.89471384884229, + "grad_norm": 0.20928071439266205, + "learning_rate": 0.0006, + "loss": 3.91666316986084, + "step": 1648 + }, + { + "epoch": 22.90869375273045, + "grad_norm": 0.24096311628818512, + "learning_rate": 0.0006, + "loss": 3.8797364234924316, + "step": 1649 + }, + { + "epoch": 22.92267365661861, + "grad_norm": 0.2591194212436676, + "learning_rate": 0.0006, + "loss": 3.883273124694824, + "step": 1650 + }, + { + "epoch": 22.936653560506773, + "grad_norm": 0.27342668175697327, + "learning_rate": 0.0006, + "loss": 3.8645026683807373, + "step": 1651 + }, + { + "epoch": 22.950633464394933, + "grad_norm": 0.2448573112487793, + "learning_rate": 0.0006, + "loss": 3.9093551635742188, + "step": 1652 + }, + { + "epoch": 22.964613368283093, + "grad_norm": 0.19899503886699677, + "learning_rate": 0.0006, + "loss": 3.9001057147979736, + "step": 1653 + }, + { + "epoch": 22.978593272171253, + "grad_norm": 0.2023746520280838, + "learning_rate": 0.0006, + "loss": 3.886474370956421, + "step": 1654 + }, + { + "epoch": 22.992573176059416, + "grad_norm": 0.19894269108772278, + "learning_rate": 0.0006, + "loss": 3.9004204273223877, + "step": 1655 + }, + { + "epoch": 23.0, + "grad_norm": 0.2401709407567978, + "learning_rate": 0.0006, + "loss": 3.8665566444396973, + "step": 1656 + }, + { + "epoch": 23.0, + "eval_loss": 4.112459659576416, + "eval_runtime": 44.8325, + "eval_samples_per_second": 54.469, + "eval_steps_per_second": 3.413, + "step": 1656 + }, + { + "epoch": 23.01397990388816, + "grad_norm": 0.22662921249866486, + "learning_rate": 0.0006, + "loss": 3.853271961212158, + "step": 1657 + }, + { + "epoch": 23.027959807776323, + "grad_norm": 0.24406856298446655, + "learning_rate": 0.0006, + "loss": 3.8691890239715576, + "step": 1658 + }, + { + "epoch": 23.041939711664483, + "grad_norm": 0.2266651839017868, + "learning_rate": 0.0006, + "loss": 3.838599681854248, + "step": 1659 + }, + { + "epoch": 23.055919615552643, + "grad_norm": 0.22303511202335358, + "learning_rate": 0.0006, + "loss": 3.8678267002105713, + "step": 1660 + }, + { + "epoch": 23.069899519440803, + "grad_norm": 0.2272164225578308, + "learning_rate": 0.0006, + "loss": 3.9045681953430176, + "step": 1661 + }, + { + "epoch": 23.083879423328966, + "grad_norm": 0.25004875659942627, + "learning_rate": 0.0006, + "loss": 3.856503963470459, + "step": 1662 + }, + { + "epoch": 23.097859327217126, + "grad_norm": 0.26016247272491455, + "learning_rate": 0.0006, + "loss": 3.878587007522583, + "step": 1663 + }, + { + "epoch": 23.111839231105286, + "grad_norm": 0.28539901971817017, + "learning_rate": 0.0006, + "loss": 3.864248514175415, + "step": 1664 + }, + { + "epoch": 23.125819134993446, + "grad_norm": 0.27504822611808777, + "learning_rate": 0.0006, + "loss": 3.821448802947998, + "step": 1665 + }, + { + "epoch": 23.13979903888161, + "grad_norm": 0.238910973072052, + "learning_rate": 0.0006, + "loss": 3.8635847568511963, + "step": 1666 + }, + { + "epoch": 23.15377894276977, + "grad_norm": 0.24179652333259583, + "learning_rate": 0.0006, + "loss": 3.8339638710021973, + "step": 1667 + }, + { + "epoch": 23.16775884665793, + "grad_norm": 0.2199544757604599, + "learning_rate": 0.0006, + "loss": 3.868396759033203, + "step": 1668 + }, + { + "epoch": 23.18173875054609, + "grad_norm": 0.1965002566576004, + "learning_rate": 0.0006, + "loss": 3.8761439323425293, + "step": 1669 + }, + { + "epoch": 23.195718654434252, + "grad_norm": 0.20426614582538605, + "learning_rate": 0.0006, + "loss": 3.822899580001831, + "step": 1670 + }, + { + "epoch": 23.209698558322412, + "grad_norm": 0.2197263389825821, + "learning_rate": 0.0006, + "loss": 3.887728452682495, + "step": 1671 + }, + { + "epoch": 23.22367846221057, + "grad_norm": 0.22844573855400085, + "learning_rate": 0.0006, + "loss": 3.8550517559051514, + "step": 1672 + }, + { + "epoch": 23.23765836609873, + "grad_norm": 0.2347746044397354, + "learning_rate": 0.0006, + "loss": 3.903310537338257, + "step": 1673 + }, + { + "epoch": 23.251638269986895, + "grad_norm": 0.24167625606060028, + "learning_rate": 0.0006, + "loss": 3.8397774696350098, + "step": 1674 + }, + { + "epoch": 23.265618173875055, + "grad_norm": 0.2691650688648224, + "learning_rate": 0.0006, + "loss": 3.853254795074463, + "step": 1675 + }, + { + "epoch": 23.279598077763215, + "grad_norm": 0.29421621561050415, + "learning_rate": 0.0006, + "loss": 3.86065411567688, + "step": 1676 + }, + { + "epoch": 23.293577981651374, + "grad_norm": 0.31074345111846924, + "learning_rate": 0.0006, + "loss": 3.8716742992401123, + "step": 1677 + }, + { + "epoch": 23.307557885539538, + "grad_norm": 0.3044569194316864, + "learning_rate": 0.0006, + "loss": 3.8738951683044434, + "step": 1678 + }, + { + "epoch": 23.321537789427698, + "grad_norm": 0.30496764183044434, + "learning_rate": 0.0006, + "loss": 3.884446620941162, + "step": 1679 + }, + { + "epoch": 23.335517693315857, + "grad_norm": 0.31122756004333496, + "learning_rate": 0.0006, + "loss": 3.878495693206787, + "step": 1680 + }, + { + "epoch": 23.34949759720402, + "grad_norm": 0.32268181443214417, + "learning_rate": 0.0006, + "loss": 3.8793649673461914, + "step": 1681 + }, + { + "epoch": 23.36347750109218, + "grad_norm": 0.3297140598297119, + "learning_rate": 0.0006, + "loss": 3.87484073638916, + "step": 1682 + }, + { + "epoch": 23.37745740498034, + "grad_norm": 0.26007479429244995, + "learning_rate": 0.0006, + "loss": 3.8510947227478027, + "step": 1683 + }, + { + "epoch": 23.3914373088685, + "grad_norm": 0.2627335786819458, + "learning_rate": 0.0006, + "loss": 3.8783209323883057, + "step": 1684 + }, + { + "epoch": 23.405417212756664, + "grad_norm": 0.256452739238739, + "learning_rate": 0.0006, + "loss": 3.8594281673431396, + "step": 1685 + }, + { + "epoch": 23.419397116644824, + "grad_norm": 0.23892226815223694, + "learning_rate": 0.0006, + "loss": 3.898951292037964, + "step": 1686 + }, + { + "epoch": 23.433377020532983, + "grad_norm": 0.21625587344169617, + "learning_rate": 0.0006, + "loss": 3.8679966926574707, + "step": 1687 + }, + { + "epoch": 23.447356924421143, + "grad_norm": 0.21924619376659393, + "learning_rate": 0.0006, + "loss": 3.8774075508117676, + "step": 1688 + }, + { + "epoch": 23.461336828309307, + "grad_norm": 0.21500127017498016, + "learning_rate": 0.0006, + "loss": 3.870619297027588, + "step": 1689 + }, + { + "epoch": 23.475316732197467, + "grad_norm": 0.22580556571483612, + "learning_rate": 0.0006, + "loss": 3.887722969055176, + "step": 1690 + }, + { + "epoch": 23.489296636085626, + "grad_norm": 0.2500104308128357, + "learning_rate": 0.0006, + "loss": 3.88789963722229, + "step": 1691 + }, + { + "epoch": 23.503276539973786, + "grad_norm": 0.22462762892246246, + "learning_rate": 0.0006, + "loss": 3.863997459411621, + "step": 1692 + }, + { + "epoch": 23.51725644386195, + "grad_norm": 0.21427781879901886, + "learning_rate": 0.0006, + "loss": 3.8827033042907715, + "step": 1693 + }, + { + "epoch": 23.53123634775011, + "grad_norm": 0.22278577089309692, + "learning_rate": 0.0006, + "loss": 3.8659563064575195, + "step": 1694 + }, + { + "epoch": 23.54521625163827, + "grad_norm": 0.22801144421100616, + "learning_rate": 0.0006, + "loss": 3.9031362533569336, + "step": 1695 + }, + { + "epoch": 23.55919615552643, + "grad_norm": 0.25071898102760315, + "learning_rate": 0.0006, + "loss": 3.887746810913086, + "step": 1696 + }, + { + "epoch": 23.573176059414592, + "grad_norm": 0.2564085125923157, + "learning_rate": 0.0006, + "loss": 3.8918356895446777, + "step": 1697 + }, + { + "epoch": 23.587155963302752, + "grad_norm": 0.24603120982646942, + "learning_rate": 0.0006, + "loss": 3.850416421890259, + "step": 1698 + }, + { + "epoch": 23.601135867190912, + "grad_norm": 0.20539002120494843, + "learning_rate": 0.0006, + "loss": 3.862060070037842, + "step": 1699 + }, + { + "epoch": 23.615115771079076, + "grad_norm": 0.2022249400615692, + "learning_rate": 0.0006, + "loss": 3.899008274078369, + "step": 1700 + }, + { + "epoch": 23.629095674967235, + "grad_norm": 0.2435392290353775, + "learning_rate": 0.0006, + "loss": 3.844388961791992, + "step": 1701 + }, + { + "epoch": 23.643075578855395, + "grad_norm": 0.21146756410598755, + "learning_rate": 0.0006, + "loss": 3.8972439765930176, + "step": 1702 + }, + { + "epoch": 23.657055482743555, + "grad_norm": 0.2025400996208191, + "learning_rate": 0.0006, + "loss": 3.865253448486328, + "step": 1703 + }, + { + "epoch": 23.67103538663172, + "grad_norm": 0.21129970252513885, + "learning_rate": 0.0006, + "loss": 3.8768205642700195, + "step": 1704 + }, + { + "epoch": 23.68501529051988, + "grad_norm": 0.22982284426689148, + "learning_rate": 0.0006, + "loss": 3.8792667388916016, + "step": 1705 + }, + { + "epoch": 23.698995194408038, + "grad_norm": 0.23013733327388763, + "learning_rate": 0.0006, + "loss": 3.880897045135498, + "step": 1706 + }, + { + "epoch": 23.712975098296198, + "grad_norm": 0.2277672290802002, + "learning_rate": 0.0006, + "loss": 3.8738410472869873, + "step": 1707 + }, + { + "epoch": 23.72695500218436, + "grad_norm": 0.2343369573354721, + "learning_rate": 0.0006, + "loss": 3.8587026596069336, + "step": 1708 + }, + { + "epoch": 23.74093490607252, + "grad_norm": 0.23159530758857727, + "learning_rate": 0.0006, + "loss": 3.856306552886963, + "step": 1709 + }, + { + "epoch": 23.75491480996068, + "grad_norm": 0.19541035592556, + "learning_rate": 0.0006, + "loss": 3.8294754028320312, + "step": 1710 + }, + { + "epoch": 23.76889471384884, + "grad_norm": 0.22999322414398193, + "learning_rate": 0.0006, + "loss": 3.882676124572754, + "step": 1711 + }, + { + "epoch": 23.782874617737004, + "grad_norm": 0.23442843556404114, + "learning_rate": 0.0006, + "loss": 3.8887529373168945, + "step": 1712 + }, + { + "epoch": 23.796854521625164, + "grad_norm": 0.22914239764213562, + "learning_rate": 0.0006, + "loss": 3.867673635482788, + "step": 1713 + }, + { + "epoch": 23.810834425513324, + "grad_norm": 0.20683827996253967, + "learning_rate": 0.0006, + "loss": 3.8999581336975098, + "step": 1714 + }, + { + "epoch": 23.824814329401484, + "grad_norm": 0.19281277060508728, + "learning_rate": 0.0006, + "loss": 3.8997726440429688, + "step": 1715 + }, + { + "epoch": 23.838794233289647, + "grad_norm": 0.20058563351631165, + "learning_rate": 0.0006, + "loss": 3.8583860397338867, + "step": 1716 + }, + { + "epoch": 23.852774137177807, + "grad_norm": 0.19856606423854828, + "learning_rate": 0.0006, + "loss": 3.88948392868042, + "step": 1717 + }, + { + "epoch": 23.866754041065967, + "grad_norm": 0.2099323868751526, + "learning_rate": 0.0006, + "loss": 3.878458261489868, + "step": 1718 + }, + { + "epoch": 23.88073394495413, + "grad_norm": 0.22945016622543335, + "learning_rate": 0.0006, + "loss": 3.84116268157959, + "step": 1719 + }, + { + "epoch": 23.89471384884229, + "grad_norm": 0.22646087408065796, + "learning_rate": 0.0006, + "loss": 3.9006617069244385, + "step": 1720 + }, + { + "epoch": 23.90869375273045, + "grad_norm": 0.20282860100269318, + "learning_rate": 0.0006, + "loss": 3.8781144618988037, + "step": 1721 + }, + { + "epoch": 23.92267365661861, + "grad_norm": 0.1918555349111557, + "learning_rate": 0.0006, + "loss": 3.8560891151428223, + "step": 1722 + }, + { + "epoch": 23.936653560506773, + "grad_norm": 0.19286513328552246, + "learning_rate": 0.0006, + "loss": 3.873220920562744, + "step": 1723 + }, + { + "epoch": 23.950633464394933, + "grad_norm": 0.21071338653564453, + "learning_rate": 0.0006, + "loss": 3.9147067070007324, + "step": 1724 + }, + { + "epoch": 23.964613368283093, + "grad_norm": 0.20956715941429138, + "learning_rate": 0.0006, + "loss": 3.8762729167938232, + "step": 1725 + }, + { + "epoch": 23.978593272171253, + "grad_norm": 0.23053105175495148, + "learning_rate": 0.0006, + "loss": 3.873781681060791, + "step": 1726 + }, + { + "epoch": 23.992573176059416, + "grad_norm": 0.2719029486179352, + "learning_rate": 0.0006, + "loss": 3.862342357635498, + "step": 1727 + }, + { + "epoch": 24.0, + "grad_norm": 0.2933610677719116, + "learning_rate": 0.0006, + "loss": 3.8657689094543457, + "step": 1728 + }, + { + "epoch": 24.0, + "eval_loss": 4.0959153175354, + "eval_runtime": 44.3631, + "eval_samples_per_second": 55.046, + "eval_steps_per_second": 3.449, + "step": 1728 + }, + { + "epoch": 24.01397990388816, + "grad_norm": 0.24905365705490112, + "learning_rate": 0.0006, + "loss": 3.838136911392212, + "step": 1729 + }, + { + "epoch": 24.027959807776323, + "grad_norm": 0.25948020815849304, + "learning_rate": 0.0006, + "loss": 3.8581268787384033, + "step": 1730 + }, + { + "epoch": 24.041939711664483, + "grad_norm": 0.24965140223503113, + "learning_rate": 0.0006, + "loss": 3.8628978729248047, + "step": 1731 + }, + { + "epoch": 24.055919615552643, + "grad_norm": 0.23428823053836823, + "learning_rate": 0.0006, + "loss": 3.8188819885253906, + "step": 1732 + }, + { + "epoch": 24.069899519440803, + "grad_norm": 0.22191211581230164, + "learning_rate": 0.0006, + "loss": 3.8616039752960205, + "step": 1733 + }, + { + "epoch": 24.083879423328966, + "grad_norm": 0.20257535576820374, + "learning_rate": 0.0006, + "loss": 3.8632802963256836, + "step": 1734 + }, + { + "epoch": 24.097859327217126, + "grad_norm": 0.20385196805000305, + "learning_rate": 0.0006, + "loss": 3.885817050933838, + "step": 1735 + }, + { + "epoch": 24.111839231105286, + "grad_norm": 0.19921693205833435, + "learning_rate": 0.0006, + "loss": 3.838515043258667, + "step": 1736 + }, + { + "epoch": 24.125819134993446, + "grad_norm": 0.20221556723117828, + "learning_rate": 0.0006, + "loss": 3.8585309982299805, + "step": 1737 + }, + { + "epoch": 24.13979903888161, + "grad_norm": 0.20124691724777222, + "learning_rate": 0.0006, + "loss": 3.81656551361084, + "step": 1738 + }, + { + "epoch": 24.15377894276977, + "grad_norm": 0.1810830533504486, + "learning_rate": 0.0006, + "loss": 3.841783046722412, + "step": 1739 + }, + { + "epoch": 24.16775884665793, + "grad_norm": 0.18414196372032166, + "learning_rate": 0.0006, + "loss": 3.8614797592163086, + "step": 1740 + }, + { + "epoch": 24.18173875054609, + "grad_norm": 0.18930725753307343, + "learning_rate": 0.0006, + "loss": 3.8382534980773926, + "step": 1741 + }, + { + "epoch": 24.195718654434252, + "grad_norm": 0.19658128917217255, + "learning_rate": 0.0006, + "loss": 3.881742477416992, + "step": 1742 + }, + { + "epoch": 24.209698558322412, + "grad_norm": 0.20175589621067047, + "learning_rate": 0.0006, + "loss": 3.8760581016540527, + "step": 1743 + }, + { + "epoch": 24.22367846221057, + "grad_norm": 0.19416265189647675, + "learning_rate": 0.0006, + "loss": 3.8373687267303467, + "step": 1744 + }, + { + "epoch": 24.23765836609873, + "grad_norm": 0.20206521451473236, + "learning_rate": 0.0006, + "loss": 3.8322830200195312, + "step": 1745 + }, + { + "epoch": 24.251638269986895, + "grad_norm": 0.21797429025173187, + "learning_rate": 0.0006, + "loss": 3.849905490875244, + "step": 1746 + }, + { + "epoch": 24.265618173875055, + "grad_norm": 0.21295784413814545, + "learning_rate": 0.0006, + "loss": 3.847714900970459, + "step": 1747 + }, + { + "epoch": 24.279598077763215, + "grad_norm": 0.22023876011371613, + "learning_rate": 0.0006, + "loss": 3.8221592903137207, + "step": 1748 + }, + { + "epoch": 24.293577981651374, + "grad_norm": 0.2125576138496399, + "learning_rate": 0.0006, + "loss": 3.8070976734161377, + "step": 1749 + }, + { + "epoch": 24.307557885539538, + "grad_norm": 0.18673811852931976, + "learning_rate": 0.0006, + "loss": 3.866878032684326, + "step": 1750 + }, + { + "epoch": 24.321537789427698, + "grad_norm": 0.1972627341747284, + "learning_rate": 0.0006, + "loss": 3.846404552459717, + "step": 1751 + }, + { + "epoch": 24.335517693315857, + "grad_norm": 0.21846632659435272, + "learning_rate": 0.0006, + "loss": 3.8528640270233154, + "step": 1752 + }, + { + "epoch": 24.34949759720402, + "grad_norm": 0.22234080731868744, + "learning_rate": 0.0006, + "loss": 3.8268141746520996, + "step": 1753 + }, + { + "epoch": 24.36347750109218, + "grad_norm": 0.23002761602401733, + "learning_rate": 0.0006, + "loss": 3.832444667816162, + "step": 1754 + }, + { + "epoch": 24.37745740498034, + "grad_norm": 0.22526559233665466, + "learning_rate": 0.0006, + "loss": 3.864406108856201, + "step": 1755 + }, + { + "epoch": 24.3914373088685, + "grad_norm": 0.2290039211511612, + "learning_rate": 0.0006, + "loss": 3.8449103832244873, + "step": 1756 + }, + { + "epoch": 24.405417212756664, + "grad_norm": 0.23145617544651031, + "learning_rate": 0.0006, + "loss": 3.8183751106262207, + "step": 1757 + }, + { + "epoch": 24.419397116644824, + "grad_norm": 0.24287554621696472, + "learning_rate": 0.0006, + "loss": 3.809481382369995, + "step": 1758 + }, + { + "epoch": 24.433377020532983, + "grad_norm": 0.2672404646873474, + "learning_rate": 0.0006, + "loss": 3.877800464630127, + "step": 1759 + }, + { + "epoch": 24.447356924421143, + "grad_norm": 0.26292186975479126, + "learning_rate": 0.0006, + "loss": 3.8329367637634277, + "step": 1760 + }, + { + "epoch": 24.461336828309307, + "grad_norm": 0.26235947012901306, + "learning_rate": 0.0006, + "loss": 3.8414158821105957, + "step": 1761 + }, + { + "epoch": 24.475316732197467, + "grad_norm": 0.2638382613658905, + "learning_rate": 0.0006, + "loss": 3.849188804626465, + "step": 1762 + }, + { + "epoch": 24.489296636085626, + "grad_norm": 0.2564602196216583, + "learning_rate": 0.0006, + "loss": 3.865501880645752, + "step": 1763 + }, + { + "epoch": 24.503276539973786, + "grad_norm": 0.21352271735668182, + "learning_rate": 0.0006, + "loss": 3.87910795211792, + "step": 1764 + }, + { + "epoch": 24.51725644386195, + "grad_norm": 0.2470584511756897, + "learning_rate": 0.0006, + "loss": 3.858750343322754, + "step": 1765 + }, + { + "epoch": 24.53123634775011, + "grad_norm": 0.24907536804676056, + "learning_rate": 0.0006, + "loss": 3.8532559871673584, + "step": 1766 + }, + { + "epoch": 24.54521625163827, + "grad_norm": 0.2426205575466156, + "learning_rate": 0.0006, + "loss": 3.8659827709198, + "step": 1767 + }, + { + "epoch": 24.55919615552643, + "grad_norm": 0.23481151461601257, + "learning_rate": 0.0006, + "loss": 3.863948345184326, + "step": 1768 + }, + { + "epoch": 24.573176059414592, + "grad_norm": 0.22717779874801636, + "learning_rate": 0.0006, + "loss": 3.848527193069458, + "step": 1769 + }, + { + "epoch": 24.587155963302752, + "grad_norm": 0.2267129123210907, + "learning_rate": 0.0006, + "loss": 3.8600735664367676, + "step": 1770 + }, + { + "epoch": 24.601135867190912, + "grad_norm": 0.24967710673809052, + "learning_rate": 0.0006, + "loss": 3.84291934967041, + "step": 1771 + }, + { + "epoch": 24.615115771079076, + "grad_norm": 0.25308957695961, + "learning_rate": 0.0006, + "loss": 3.846181631088257, + "step": 1772 + }, + { + "epoch": 24.629095674967235, + "grad_norm": 0.2689298391342163, + "learning_rate": 0.0006, + "loss": 3.8572893142700195, + "step": 1773 + }, + { + "epoch": 24.643075578855395, + "grad_norm": 0.26458555459976196, + "learning_rate": 0.0006, + "loss": 3.8583621978759766, + "step": 1774 + }, + { + "epoch": 24.657055482743555, + "grad_norm": 0.24416811764240265, + "learning_rate": 0.0006, + "loss": 3.8648223876953125, + "step": 1775 + }, + { + "epoch": 24.67103538663172, + "grad_norm": 0.22218526899814606, + "learning_rate": 0.0006, + "loss": 3.839395523071289, + "step": 1776 + }, + { + "epoch": 24.68501529051988, + "grad_norm": 0.2147492915391922, + "learning_rate": 0.0006, + "loss": 3.875734567642212, + "step": 1777 + }, + { + "epoch": 24.698995194408038, + "grad_norm": 0.2346794754266739, + "learning_rate": 0.0006, + "loss": 3.854768991470337, + "step": 1778 + }, + { + "epoch": 24.712975098296198, + "grad_norm": 0.21406520903110504, + "learning_rate": 0.0006, + "loss": 3.8269104957580566, + "step": 1779 + }, + { + "epoch": 24.72695500218436, + "grad_norm": 0.20716224610805511, + "learning_rate": 0.0006, + "loss": 3.8245768547058105, + "step": 1780 + }, + { + "epoch": 24.74093490607252, + "grad_norm": 0.21445901691913605, + "learning_rate": 0.0006, + "loss": 3.8877978324890137, + "step": 1781 + }, + { + "epoch": 24.75491480996068, + "grad_norm": 0.21964985132217407, + "learning_rate": 0.0006, + "loss": 3.8602452278137207, + "step": 1782 + }, + { + "epoch": 24.76889471384884, + "grad_norm": 0.209807351231575, + "learning_rate": 0.0006, + "loss": 3.853428602218628, + "step": 1783 + }, + { + "epoch": 24.782874617737004, + "grad_norm": 0.19564911723136902, + "learning_rate": 0.0006, + "loss": 3.832275867462158, + "step": 1784 + }, + { + "epoch": 24.796854521625164, + "grad_norm": 0.21394333243370056, + "learning_rate": 0.0006, + "loss": 3.8543171882629395, + "step": 1785 + }, + { + "epoch": 24.810834425513324, + "grad_norm": 0.23156948387622833, + "learning_rate": 0.0006, + "loss": 3.8539412021636963, + "step": 1786 + }, + { + "epoch": 24.824814329401484, + "grad_norm": 0.2378678321838379, + "learning_rate": 0.0006, + "loss": 3.8409833908081055, + "step": 1787 + }, + { + "epoch": 24.838794233289647, + "grad_norm": 0.23816189169883728, + "learning_rate": 0.0006, + "loss": 3.855379581451416, + "step": 1788 + }, + { + "epoch": 24.852774137177807, + "grad_norm": 0.23109886050224304, + "learning_rate": 0.0006, + "loss": 3.8689517974853516, + "step": 1789 + }, + { + "epoch": 24.866754041065967, + "grad_norm": 0.2042883038520813, + "learning_rate": 0.0006, + "loss": 3.8730404376983643, + "step": 1790 + }, + { + "epoch": 24.88073394495413, + "grad_norm": 0.2039479911327362, + "learning_rate": 0.0006, + "loss": 3.8474984169006348, + "step": 1791 + }, + { + "epoch": 24.89471384884229, + "grad_norm": 0.213027223944664, + "learning_rate": 0.0006, + "loss": 3.8539695739746094, + "step": 1792 + }, + { + "epoch": 24.90869375273045, + "grad_norm": 0.2280654013156891, + "learning_rate": 0.0006, + "loss": 3.8633079528808594, + "step": 1793 + }, + { + "epoch": 24.92267365661861, + "grad_norm": 0.20864921808242798, + "learning_rate": 0.0006, + "loss": 3.8110368251800537, + "step": 1794 + }, + { + "epoch": 24.936653560506773, + "grad_norm": 0.23002111911773682, + "learning_rate": 0.0006, + "loss": 3.8334741592407227, + "step": 1795 + }, + { + "epoch": 24.950633464394933, + "grad_norm": 0.232331782579422, + "learning_rate": 0.0006, + "loss": 3.871887683868408, + "step": 1796 + }, + { + "epoch": 24.964613368283093, + "grad_norm": 0.24141235649585724, + "learning_rate": 0.0006, + "loss": 3.8614959716796875, + "step": 1797 + }, + { + "epoch": 24.978593272171253, + "grad_norm": 0.2545177638530731, + "learning_rate": 0.0006, + "loss": 3.8563568592071533, + "step": 1798 + }, + { + "epoch": 24.992573176059416, + "grad_norm": 0.25186386704444885, + "learning_rate": 0.0006, + "loss": 3.882166862487793, + "step": 1799 + }, + { + "epoch": 25.0, + "grad_norm": 0.260195791721344, + "learning_rate": 0.0006, + "loss": 3.884554862976074, + "step": 1800 + }, + { + "epoch": 25.0, + "eval_loss": 4.08809757232666, + "eval_runtime": 44.7947, + "eval_samples_per_second": 54.515, + "eval_steps_per_second": 3.416, + "step": 1800 + }, + { + "epoch": 25.01397990388816, + "grad_norm": 0.25396403670310974, + "learning_rate": 0.0006, + "loss": 3.8217287063598633, + "step": 1801 + }, + { + "epoch": 25.027959807776323, + "grad_norm": 0.2773195207118988, + "learning_rate": 0.0006, + "loss": 3.809542417526245, + "step": 1802 + }, + { + "epoch": 25.041939711664483, + "grad_norm": 0.3073263168334961, + "learning_rate": 0.0006, + "loss": 3.825706958770752, + "step": 1803 + }, + { + "epoch": 25.055919615552643, + "grad_norm": 0.30885398387908936, + "learning_rate": 0.0006, + "loss": 3.8081188201904297, + "step": 1804 + }, + { + "epoch": 25.069899519440803, + "grad_norm": 0.27356019616127014, + "learning_rate": 0.0006, + "loss": 3.8538241386413574, + "step": 1805 + }, + { + "epoch": 25.083879423328966, + "grad_norm": 0.22830164432525635, + "learning_rate": 0.0006, + "loss": 3.8246965408325195, + "step": 1806 + }, + { + "epoch": 25.097859327217126, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.8552842140197754, + "step": 1807 + }, + { + "epoch": 25.111839231105286, + "grad_norm": 0.21718722581863403, + "learning_rate": 0.0006, + "loss": 3.8489418029785156, + "step": 1808 + }, + { + "epoch": 25.125819134993446, + "grad_norm": 0.2480861395597458, + "learning_rate": 0.0006, + "loss": 3.821455955505371, + "step": 1809 + }, + { + "epoch": 25.13979903888161, + "grad_norm": 0.2796635627746582, + "learning_rate": 0.0006, + "loss": 3.8202435970306396, + "step": 1810 + }, + { + "epoch": 25.15377894276977, + "grad_norm": 0.2829958200454712, + "learning_rate": 0.0006, + "loss": 3.8293306827545166, + "step": 1811 + }, + { + "epoch": 25.16775884665793, + "grad_norm": 0.2510125935077667, + "learning_rate": 0.0006, + "loss": 3.8342957496643066, + "step": 1812 + }, + { + "epoch": 25.18173875054609, + "grad_norm": 0.22923722863197327, + "learning_rate": 0.0006, + "loss": 3.8448352813720703, + "step": 1813 + }, + { + "epoch": 25.195718654434252, + "grad_norm": 0.21439228951931, + "learning_rate": 0.0006, + "loss": 3.8343517780303955, + "step": 1814 + }, + { + "epoch": 25.209698558322412, + "grad_norm": 0.1965373307466507, + "learning_rate": 0.0006, + "loss": 3.8163528442382812, + "step": 1815 + }, + { + "epoch": 25.22367846221057, + "grad_norm": 0.20121058821678162, + "learning_rate": 0.0006, + "loss": 3.8007280826568604, + "step": 1816 + }, + { + "epoch": 25.23765836609873, + "grad_norm": 0.21383272111415863, + "learning_rate": 0.0006, + "loss": 3.8200385570526123, + "step": 1817 + }, + { + "epoch": 25.251638269986895, + "grad_norm": 0.2066601663827896, + "learning_rate": 0.0006, + "loss": 3.8333921432495117, + "step": 1818 + }, + { + "epoch": 25.265618173875055, + "grad_norm": 0.2104874551296234, + "learning_rate": 0.0006, + "loss": 3.838012218475342, + "step": 1819 + }, + { + "epoch": 25.279598077763215, + "grad_norm": 0.19733119010925293, + "learning_rate": 0.0006, + "loss": 3.835139274597168, + "step": 1820 + }, + { + "epoch": 25.293577981651374, + "grad_norm": 0.2119498997926712, + "learning_rate": 0.0006, + "loss": 3.8099722862243652, + "step": 1821 + }, + { + "epoch": 25.307557885539538, + "grad_norm": 0.21863529086112976, + "learning_rate": 0.0006, + "loss": 3.7801573276519775, + "step": 1822 + }, + { + "epoch": 25.321537789427698, + "grad_norm": 0.2113322764635086, + "learning_rate": 0.0006, + "loss": 3.809903621673584, + "step": 1823 + }, + { + "epoch": 25.335517693315857, + "grad_norm": 0.21594023704528809, + "learning_rate": 0.0006, + "loss": 3.8485071659088135, + "step": 1824 + }, + { + "epoch": 25.34949759720402, + "grad_norm": 0.21475964784622192, + "learning_rate": 0.0006, + "loss": 3.7894768714904785, + "step": 1825 + }, + { + "epoch": 25.36347750109218, + "grad_norm": 0.21174900233745575, + "learning_rate": 0.0006, + "loss": 3.821711540222168, + "step": 1826 + }, + { + "epoch": 25.37745740498034, + "grad_norm": 0.2065584659576416, + "learning_rate": 0.0006, + "loss": 3.8439841270446777, + "step": 1827 + }, + { + "epoch": 25.3914373088685, + "grad_norm": 0.19157007336616516, + "learning_rate": 0.0006, + "loss": 3.864245891571045, + "step": 1828 + }, + { + "epoch": 25.405417212756664, + "grad_norm": 0.19983816146850586, + "learning_rate": 0.0006, + "loss": 3.8317415714263916, + "step": 1829 + }, + { + "epoch": 25.419397116644824, + "grad_norm": 0.20506152510643005, + "learning_rate": 0.0006, + "loss": 3.8009896278381348, + "step": 1830 + }, + { + "epoch": 25.433377020532983, + "grad_norm": 0.19056960940361023, + "learning_rate": 0.0006, + "loss": 3.8383498191833496, + "step": 1831 + }, + { + "epoch": 25.447356924421143, + "grad_norm": 0.19262190163135529, + "learning_rate": 0.0006, + "loss": 3.838902235031128, + "step": 1832 + }, + { + "epoch": 25.461336828309307, + "grad_norm": 0.19859355688095093, + "learning_rate": 0.0006, + "loss": 3.82452392578125, + "step": 1833 + }, + { + "epoch": 25.475316732197467, + "grad_norm": 0.2144225388765335, + "learning_rate": 0.0006, + "loss": 3.8110032081604004, + "step": 1834 + }, + { + "epoch": 25.489296636085626, + "grad_norm": 0.20566298067569733, + "learning_rate": 0.0006, + "loss": 3.8662471771240234, + "step": 1835 + }, + { + "epoch": 25.503276539973786, + "grad_norm": 0.2071852684020996, + "learning_rate": 0.0006, + "loss": 3.821134090423584, + "step": 1836 + }, + { + "epoch": 25.51725644386195, + "grad_norm": 0.2095036506652832, + "learning_rate": 0.0006, + "loss": 3.824092388153076, + "step": 1837 + }, + { + "epoch": 25.53123634775011, + "grad_norm": 0.20136208832263947, + "learning_rate": 0.0006, + "loss": 3.8669862747192383, + "step": 1838 + }, + { + "epoch": 25.54521625163827, + "grad_norm": 0.1983811855316162, + "learning_rate": 0.0006, + "loss": 3.8120107650756836, + "step": 1839 + }, + { + "epoch": 25.55919615552643, + "grad_norm": 0.22859714925289154, + "learning_rate": 0.0006, + "loss": 3.8519299030303955, + "step": 1840 + }, + { + "epoch": 25.573176059414592, + "grad_norm": 0.23672667145729065, + "learning_rate": 0.0006, + "loss": 3.8245458602905273, + "step": 1841 + }, + { + "epoch": 25.587155963302752, + "grad_norm": 0.22698380053043365, + "learning_rate": 0.0006, + "loss": 3.8406805992126465, + "step": 1842 + }, + { + "epoch": 25.601135867190912, + "grad_norm": 0.25684037804603577, + "learning_rate": 0.0006, + "loss": 3.8584351539611816, + "step": 1843 + }, + { + "epoch": 25.615115771079076, + "grad_norm": 0.28180673718452454, + "learning_rate": 0.0006, + "loss": 3.8085098266601562, + "step": 1844 + }, + { + "epoch": 25.629095674967235, + "grad_norm": 0.2814631462097168, + "learning_rate": 0.0006, + "loss": 3.845083236694336, + "step": 1845 + }, + { + "epoch": 25.643075578855395, + "grad_norm": 0.23630981147289276, + "learning_rate": 0.0006, + "loss": 3.847749710083008, + "step": 1846 + }, + { + "epoch": 25.657055482743555, + "grad_norm": 0.22463662922382355, + "learning_rate": 0.0006, + "loss": 3.8172082901000977, + "step": 1847 + }, + { + "epoch": 25.67103538663172, + "grad_norm": 0.26551681756973267, + "learning_rate": 0.0006, + "loss": 3.8205654621124268, + "step": 1848 + }, + { + "epoch": 25.68501529051988, + "grad_norm": 0.27824243903160095, + "learning_rate": 0.0006, + "loss": 3.846076011657715, + "step": 1849 + }, + { + "epoch": 25.698995194408038, + "grad_norm": 0.266998291015625, + "learning_rate": 0.0006, + "loss": 3.8543574810028076, + "step": 1850 + }, + { + "epoch": 25.712975098296198, + "grad_norm": 0.22980351746082306, + "learning_rate": 0.0006, + "loss": 3.855511426925659, + "step": 1851 + }, + { + "epoch": 25.72695500218436, + "grad_norm": 0.23482872545719147, + "learning_rate": 0.0006, + "loss": 3.8687663078308105, + "step": 1852 + }, + { + "epoch": 25.74093490607252, + "grad_norm": 0.21119585633277893, + "learning_rate": 0.0006, + "loss": 3.8147101402282715, + "step": 1853 + }, + { + "epoch": 25.75491480996068, + "grad_norm": 0.21200446784496307, + "learning_rate": 0.0006, + "loss": 3.858473777770996, + "step": 1854 + }, + { + "epoch": 25.76889471384884, + "grad_norm": 0.20497842133045197, + "learning_rate": 0.0006, + "loss": 3.8545501232147217, + "step": 1855 + }, + { + "epoch": 25.782874617737004, + "grad_norm": 0.19328081607818604, + "learning_rate": 0.0006, + "loss": 3.7941341400146484, + "step": 1856 + }, + { + "epoch": 25.796854521625164, + "grad_norm": 0.2191578894853592, + "learning_rate": 0.0006, + "loss": 3.8408665657043457, + "step": 1857 + }, + { + "epoch": 25.810834425513324, + "grad_norm": 0.2548826038837433, + "learning_rate": 0.0006, + "loss": 3.854130744934082, + "step": 1858 + }, + { + "epoch": 25.824814329401484, + "grad_norm": 0.2290351390838623, + "learning_rate": 0.0006, + "loss": 3.8680176734924316, + "step": 1859 + }, + { + "epoch": 25.838794233289647, + "grad_norm": 0.20760944485664368, + "learning_rate": 0.0006, + "loss": 3.83731746673584, + "step": 1860 + }, + { + "epoch": 25.852774137177807, + "grad_norm": 0.19587582349777222, + "learning_rate": 0.0006, + "loss": 3.8173444271087646, + "step": 1861 + }, + { + "epoch": 25.866754041065967, + "grad_norm": 0.20762693881988525, + "learning_rate": 0.0006, + "loss": 3.8479790687561035, + "step": 1862 + }, + { + "epoch": 25.88073394495413, + "grad_norm": 0.20633186399936676, + "learning_rate": 0.0006, + "loss": 3.852285385131836, + "step": 1863 + }, + { + "epoch": 25.89471384884229, + "grad_norm": 0.21484960615634918, + "learning_rate": 0.0006, + "loss": 3.832592725753784, + "step": 1864 + }, + { + "epoch": 25.90869375273045, + "grad_norm": 0.19569595158100128, + "learning_rate": 0.0006, + "loss": 3.838071584701538, + "step": 1865 + }, + { + "epoch": 25.92267365661861, + "grad_norm": 0.19532904028892517, + "learning_rate": 0.0006, + "loss": 3.854252815246582, + "step": 1866 + }, + { + "epoch": 25.936653560506773, + "grad_norm": 0.1909649819135666, + "learning_rate": 0.0006, + "loss": 3.8444578647613525, + "step": 1867 + }, + { + "epoch": 25.950633464394933, + "grad_norm": 0.17476283013820648, + "learning_rate": 0.0006, + "loss": 3.836519241333008, + "step": 1868 + }, + { + "epoch": 25.964613368283093, + "grad_norm": 0.1895206719636917, + "learning_rate": 0.0006, + "loss": 3.8282582759857178, + "step": 1869 + }, + { + "epoch": 25.978593272171253, + "grad_norm": 0.20038437843322754, + "learning_rate": 0.0006, + "loss": 3.80542254447937, + "step": 1870 + }, + { + "epoch": 25.992573176059416, + "grad_norm": 0.20728608965873718, + "learning_rate": 0.0006, + "loss": 3.8584811687469482, + "step": 1871 + }, + { + "epoch": 26.0, + "grad_norm": 0.22110891342163086, + "learning_rate": 0.0006, + "loss": 3.8020238876342773, + "step": 1872 + }, + { + "epoch": 26.0, + "eval_loss": 4.072164058685303, + "eval_runtime": 44.9089, + "eval_samples_per_second": 54.377, + "eval_steps_per_second": 3.407, + "step": 1872 + }, + { + "epoch": 26.01397990388816, + "grad_norm": 0.2222519814968109, + "learning_rate": 0.0006, + "loss": 3.8309168815612793, + "step": 1873 + }, + { + "epoch": 26.027959807776323, + "grad_norm": 0.2637656033039093, + "learning_rate": 0.0006, + "loss": 3.8025143146514893, + "step": 1874 + }, + { + "epoch": 26.041939711664483, + "grad_norm": 0.2665974795818329, + "learning_rate": 0.0006, + "loss": 3.8244004249572754, + "step": 1875 + }, + { + "epoch": 26.055919615552643, + "grad_norm": 0.22475720942020416, + "learning_rate": 0.0006, + "loss": 3.80039119720459, + "step": 1876 + }, + { + "epoch": 26.069899519440803, + "grad_norm": 0.22994336485862732, + "learning_rate": 0.0006, + "loss": 3.7700726985931396, + "step": 1877 + }, + { + "epoch": 26.083879423328966, + "grad_norm": 0.24214622378349304, + "learning_rate": 0.0006, + "loss": 3.818725109100342, + "step": 1878 + }, + { + "epoch": 26.097859327217126, + "grad_norm": 0.22701293230056763, + "learning_rate": 0.0006, + "loss": 3.833803176879883, + "step": 1879 + }, + { + "epoch": 26.111839231105286, + "grad_norm": 0.21452295780181885, + "learning_rate": 0.0006, + "loss": 3.8391427993774414, + "step": 1880 + }, + { + "epoch": 26.125819134993446, + "grad_norm": 0.20179636776447296, + "learning_rate": 0.0006, + "loss": 3.802957057952881, + "step": 1881 + }, + { + "epoch": 26.13979903888161, + "grad_norm": 0.2087477445602417, + "learning_rate": 0.0006, + "loss": 3.8339905738830566, + "step": 1882 + }, + { + "epoch": 26.15377894276977, + "grad_norm": 0.23583556711673737, + "learning_rate": 0.0006, + "loss": 3.802438259124756, + "step": 1883 + }, + { + "epoch": 26.16775884665793, + "grad_norm": 0.2504311501979828, + "learning_rate": 0.0006, + "loss": 3.80244517326355, + "step": 1884 + }, + { + "epoch": 26.18173875054609, + "grad_norm": 0.24903984367847443, + "learning_rate": 0.0006, + "loss": 3.788865566253662, + "step": 1885 + }, + { + "epoch": 26.195718654434252, + "grad_norm": 0.2707931101322174, + "learning_rate": 0.0006, + "loss": 3.800051212310791, + "step": 1886 + }, + { + "epoch": 26.209698558322412, + "grad_norm": 0.24902892112731934, + "learning_rate": 0.0006, + "loss": 3.8068337440490723, + "step": 1887 + }, + { + "epoch": 26.22367846221057, + "grad_norm": 0.22655536234378815, + "learning_rate": 0.0006, + "loss": 3.779439926147461, + "step": 1888 + }, + { + "epoch": 26.23765836609873, + "grad_norm": 0.24797996878623962, + "learning_rate": 0.0006, + "loss": 3.822831153869629, + "step": 1889 + }, + { + "epoch": 26.251638269986895, + "grad_norm": 0.2821420431137085, + "learning_rate": 0.0006, + "loss": 3.807954788208008, + "step": 1890 + }, + { + "epoch": 26.265618173875055, + "grad_norm": 0.30392691493034363, + "learning_rate": 0.0006, + "loss": 3.776951789855957, + "step": 1891 + }, + { + "epoch": 26.279598077763215, + "grad_norm": 0.32641273736953735, + "learning_rate": 0.0006, + "loss": 3.8216311931610107, + "step": 1892 + }, + { + "epoch": 26.293577981651374, + "grad_norm": 0.32674387097358704, + "learning_rate": 0.0006, + "loss": 3.815596580505371, + "step": 1893 + }, + { + "epoch": 26.307557885539538, + "grad_norm": 0.29137250781059265, + "learning_rate": 0.0006, + "loss": 3.8170812129974365, + "step": 1894 + }, + { + "epoch": 26.321537789427698, + "grad_norm": 0.24291734397411346, + "learning_rate": 0.0006, + "loss": 3.810352087020874, + "step": 1895 + }, + { + "epoch": 26.335517693315857, + "grad_norm": 0.24023209512233734, + "learning_rate": 0.0006, + "loss": 3.8075947761535645, + "step": 1896 + }, + { + "epoch": 26.34949759720402, + "grad_norm": 0.24334804713726044, + "learning_rate": 0.0006, + "loss": 3.831556797027588, + "step": 1897 + }, + { + "epoch": 26.36347750109218, + "grad_norm": 0.2109663337469101, + "learning_rate": 0.0006, + "loss": 3.838347911834717, + "step": 1898 + }, + { + "epoch": 26.37745740498034, + "grad_norm": 0.19668002426624298, + "learning_rate": 0.0006, + "loss": 3.774737596511841, + "step": 1899 + }, + { + "epoch": 26.3914373088685, + "grad_norm": 0.21329134702682495, + "learning_rate": 0.0006, + "loss": 3.8237252235412598, + "step": 1900 + }, + { + "epoch": 26.405417212756664, + "grad_norm": 0.20381781458854675, + "learning_rate": 0.0006, + "loss": 3.802569627761841, + "step": 1901 + }, + { + "epoch": 26.419397116644824, + "grad_norm": 0.19083160161972046, + "learning_rate": 0.0006, + "loss": 3.8301358222961426, + "step": 1902 + }, + { + "epoch": 26.433377020532983, + "grad_norm": 0.20012904703617096, + "learning_rate": 0.0006, + "loss": 3.7966408729553223, + "step": 1903 + }, + { + "epoch": 26.447356924421143, + "grad_norm": 0.19483457505702972, + "learning_rate": 0.0006, + "loss": 3.8431968688964844, + "step": 1904 + }, + { + "epoch": 26.461336828309307, + "grad_norm": 0.19946353137493134, + "learning_rate": 0.0006, + "loss": 3.8023815155029297, + "step": 1905 + }, + { + "epoch": 26.475316732197467, + "grad_norm": 0.1984100341796875, + "learning_rate": 0.0006, + "loss": 3.8283071517944336, + "step": 1906 + }, + { + "epoch": 26.489296636085626, + "grad_norm": 0.2148299664258957, + "learning_rate": 0.0006, + "loss": 3.8377504348754883, + "step": 1907 + }, + { + "epoch": 26.503276539973786, + "grad_norm": 0.22139184176921844, + "learning_rate": 0.0006, + "loss": 3.823051691055298, + "step": 1908 + }, + { + "epoch": 26.51725644386195, + "grad_norm": 0.18289034068584442, + "learning_rate": 0.0006, + "loss": 3.8027071952819824, + "step": 1909 + }, + { + "epoch": 26.53123634775011, + "grad_norm": 0.1816026121377945, + "learning_rate": 0.0006, + "loss": 3.823786735534668, + "step": 1910 + }, + { + "epoch": 26.54521625163827, + "grad_norm": 0.19074322283267975, + "learning_rate": 0.0006, + "loss": 3.813331127166748, + "step": 1911 + }, + { + "epoch": 26.55919615552643, + "grad_norm": 0.20301467180252075, + "learning_rate": 0.0006, + "loss": 3.8218350410461426, + "step": 1912 + }, + { + "epoch": 26.573176059414592, + "grad_norm": 0.25266432762145996, + "learning_rate": 0.0006, + "loss": 3.8455142974853516, + "step": 1913 + }, + { + "epoch": 26.587155963302752, + "grad_norm": 0.25804755091667175, + "learning_rate": 0.0006, + "loss": 3.799227476119995, + "step": 1914 + }, + { + "epoch": 26.601135867190912, + "grad_norm": 0.2555372416973114, + "learning_rate": 0.0006, + "loss": 3.8125686645507812, + "step": 1915 + }, + { + "epoch": 26.615115771079076, + "grad_norm": 0.2266194075345993, + "learning_rate": 0.0006, + "loss": 3.858363628387451, + "step": 1916 + }, + { + "epoch": 26.629095674967235, + "grad_norm": 0.1933048665523529, + "learning_rate": 0.0006, + "loss": 3.8078083992004395, + "step": 1917 + }, + { + "epoch": 26.643075578855395, + "grad_norm": 0.19936731457710266, + "learning_rate": 0.0006, + "loss": 3.81748628616333, + "step": 1918 + }, + { + "epoch": 26.657055482743555, + "grad_norm": 0.22041693329811096, + "learning_rate": 0.0006, + "loss": 3.833272933959961, + "step": 1919 + }, + { + "epoch": 26.67103538663172, + "grad_norm": 0.20679150521755219, + "learning_rate": 0.0006, + "loss": 3.8127288818359375, + "step": 1920 + }, + { + "epoch": 26.68501529051988, + "grad_norm": 0.21545100212097168, + "learning_rate": 0.0006, + "loss": 3.816051483154297, + "step": 1921 + }, + { + "epoch": 26.698995194408038, + "grad_norm": 0.23554518818855286, + "learning_rate": 0.0006, + "loss": 3.8180980682373047, + "step": 1922 + }, + { + "epoch": 26.712975098296198, + "grad_norm": 0.21942466497421265, + "learning_rate": 0.0006, + "loss": 3.803107976913452, + "step": 1923 + }, + { + "epoch": 26.72695500218436, + "grad_norm": 0.22335010766983032, + "learning_rate": 0.0006, + "loss": 3.847890853881836, + "step": 1924 + }, + { + "epoch": 26.74093490607252, + "grad_norm": 0.24731314182281494, + "learning_rate": 0.0006, + "loss": 3.7945008277893066, + "step": 1925 + }, + { + "epoch": 26.75491480996068, + "grad_norm": 0.2804568111896515, + "learning_rate": 0.0006, + "loss": 3.8400068283081055, + "step": 1926 + }, + { + "epoch": 26.76889471384884, + "grad_norm": 0.28787222504615784, + "learning_rate": 0.0006, + "loss": 3.839771270751953, + "step": 1927 + }, + { + "epoch": 26.782874617737004, + "grad_norm": 0.2949632406234741, + "learning_rate": 0.0006, + "loss": 3.8225326538085938, + "step": 1928 + }, + { + "epoch": 26.796854521625164, + "grad_norm": 0.31546032428741455, + "learning_rate": 0.0006, + "loss": 3.8182597160339355, + "step": 1929 + }, + { + "epoch": 26.810834425513324, + "grad_norm": 0.2956962585449219, + "learning_rate": 0.0006, + "loss": 3.8315680027008057, + "step": 1930 + }, + { + "epoch": 26.824814329401484, + "grad_norm": 0.26943835616111755, + "learning_rate": 0.0006, + "loss": 3.787720203399658, + "step": 1931 + }, + { + "epoch": 26.838794233289647, + "grad_norm": 0.24272359907627106, + "learning_rate": 0.0006, + "loss": 3.7973692417144775, + "step": 1932 + }, + { + "epoch": 26.852774137177807, + "grad_norm": 0.20553994178771973, + "learning_rate": 0.0006, + "loss": 3.8241593837738037, + "step": 1933 + }, + { + "epoch": 26.866754041065967, + "grad_norm": 0.21927912533283234, + "learning_rate": 0.0006, + "loss": 3.8608899116516113, + "step": 1934 + }, + { + "epoch": 26.88073394495413, + "grad_norm": 0.22878016531467438, + "learning_rate": 0.0006, + "loss": 3.8341972827911377, + "step": 1935 + }, + { + "epoch": 26.89471384884229, + "grad_norm": 0.2085554301738739, + "learning_rate": 0.0006, + "loss": 3.8261351585388184, + "step": 1936 + }, + { + "epoch": 26.90869375273045, + "grad_norm": 0.21259072422981262, + "learning_rate": 0.0006, + "loss": 3.862056255340576, + "step": 1937 + }, + { + "epoch": 26.92267365661861, + "grad_norm": 0.21354122459888458, + "learning_rate": 0.0006, + "loss": 3.80879545211792, + "step": 1938 + }, + { + "epoch": 26.936653560506773, + "grad_norm": 0.2350253462791443, + "learning_rate": 0.0006, + "loss": 3.817826271057129, + "step": 1939 + }, + { + "epoch": 26.950633464394933, + "grad_norm": 0.23833836615085602, + "learning_rate": 0.0006, + "loss": 3.8220884799957275, + "step": 1940 + }, + { + "epoch": 26.964613368283093, + "grad_norm": 0.2368069440126419, + "learning_rate": 0.0006, + "loss": 3.843264579772949, + "step": 1941 + }, + { + "epoch": 26.978593272171253, + "grad_norm": 0.22663559019565582, + "learning_rate": 0.0006, + "loss": 3.81339430809021, + "step": 1942 + }, + { + "epoch": 26.992573176059416, + "grad_norm": 0.2151402235031128, + "learning_rate": 0.0006, + "loss": 3.8262834548950195, + "step": 1943 + }, + { + "epoch": 27.0, + "grad_norm": 0.24320295453071594, + "learning_rate": 0.0006, + "loss": 3.858567237854004, + "step": 1944 + }, + { + "epoch": 27.0, + "eval_loss": 4.0613322257995605, + "eval_runtime": 44.766, + "eval_samples_per_second": 54.55, + "eval_steps_per_second": 3.418, + "step": 1944 + }, + { + "epoch": 27.01397990388816, + "grad_norm": 0.21188032627105713, + "learning_rate": 0.0006, + "loss": 3.7631278038024902, + "step": 1945 + }, + { + "epoch": 27.027959807776323, + "grad_norm": 0.22298137843608856, + "learning_rate": 0.0006, + "loss": 3.784029245376587, + "step": 1946 + }, + { + "epoch": 27.041939711664483, + "grad_norm": 0.26530158519744873, + "learning_rate": 0.0006, + "loss": 3.795860767364502, + "step": 1947 + }, + { + "epoch": 27.055919615552643, + "grad_norm": 0.24476729333400726, + "learning_rate": 0.0006, + "loss": 3.77512264251709, + "step": 1948 + }, + { + "epoch": 27.069899519440803, + "grad_norm": 0.1934421956539154, + "learning_rate": 0.0006, + "loss": 3.7797446250915527, + "step": 1949 + }, + { + "epoch": 27.083879423328966, + "grad_norm": 0.19777092337608337, + "learning_rate": 0.0006, + "loss": 3.798935890197754, + "step": 1950 + }, + { + "epoch": 27.097859327217126, + "grad_norm": 0.2071693390607834, + "learning_rate": 0.0006, + "loss": 3.763094425201416, + "step": 1951 + }, + { + "epoch": 27.111839231105286, + "grad_norm": 0.18394742906093597, + "learning_rate": 0.0006, + "loss": 3.7892322540283203, + "step": 1952 + }, + { + "epoch": 27.125819134993446, + "grad_norm": 0.17878273129463196, + "learning_rate": 0.0006, + "loss": 3.787968158721924, + "step": 1953 + }, + { + "epoch": 27.13979903888161, + "grad_norm": 0.18792171776294708, + "learning_rate": 0.0006, + "loss": 3.7719640731811523, + "step": 1954 + }, + { + "epoch": 27.15377894276977, + "grad_norm": 0.18718759715557098, + "learning_rate": 0.0006, + "loss": 3.791835308074951, + "step": 1955 + }, + { + "epoch": 27.16775884665793, + "grad_norm": 0.18716055154800415, + "learning_rate": 0.0006, + "loss": 3.7490220069885254, + "step": 1956 + }, + { + "epoch": 27.18173875054609, + "grad_norm": 0.18429182469844818, + "learning_rate": 0.0006, + "loss": 3.8020081520080566, + "step": 1957 + }, + { + "epoch": 27.195718654434252, + "grad_norm": 0.18571704626083374, + "learning_rate": 0.0006, + "loss": 3.8152215480804443, + "step": 1958 + }, + { + "epoch": 27.209698558322412, + "grad_norm": 0.1788843423128128, + "learning_rate": 0.0006, + "loss": 3.8173317909240723, + "step": 1959 + }, + { + "epoch": 27.22367846221057, + "grad_norm": 0.20459426939487457, + "learning_rate": 0.0006, + "loss": 3.7760040760040283, + "step": 1960 + }, + { + "epoch": 27.23765836609873, + "grad_norm": 0.22360935807228088, + "learning_rate": 0.0006, + "loss": 3.8140203952789307, + "step": 1961 + }, + { + "epoch": 27.251638269986895, + "grad_norm": 0.2062767595052719, + "learning_rate": 0.0006, + "loss": 3.792001247406006, + "step": 1962 + }, + { + "epoch": 27.265618173875055, + "grad_norm": 0.20628073811531067, + "learning_rate": 0.0006, + "loss": 3.7873167991638184, + "step": 1963 + }, + { + "epoch": 27.279598077763215, + "grad_norm": 0.19888348877429962, + "learning_rate": 0.0006, + "loss": 3.7903614044189453, + "step": 1964 + }, + { + "epoch": 27.293577981651374, + "grad_norm": 0.22033332288265228, + "learning_rate": 0.0006, + "loss": 3.802497148513794, + "step": 1965 + }, + { + "epoch": 27.307557885539538, + "grad_norm": 0.23476941883563995, + "learning_rate": 0.0006, + "loss": 3.794090986251831, + "step": 1966 + }, + { + "epoch": 27.321537789427698, + "grad_norm": 0.19639968872070312, + "learning_rate": 0.0006, + "loss": 3.831794023513794, + "step": 1967 + }, + { + "epoch": 27.335517693315857, + "grad_norm": 0.18169641494750977, + "learning_rate": 0.0006, + "loss": 3.7687768936157227, + "step": 1968 + }, + { + "epoch": 27.34949759720402, + "grad_norm": 0.17781762778759003, + "learning_rate": 0.0006, + "loss": 3.7868471145629883, + "step": 1969 + }, + { + "epoch": 27.36347750109218, + "grad_norm": 0.18990416824817657, + "learning_rate": 0.0006, + "loss": 3.8340392112731934, + "step": 1970 + }, + { + "epoch": 27.37745740498034, + "grad_norm": 0.2031438797712326, + "learning_rate": 0.0006, + "loss": 3.804513454437256, + "step": 1971 + }, + { + "epoch": 27.3914373088685, + "grad_norm": 0.21233421564102173, + "learning_rate": 0.0006, + "loss": 3.7908449172973633, + "step": 1972 + }, + { + "epoch": 27.405417212756664, + "grad_norm": 0.22480927407741547, + "learning_rate": 0.0006, + "loss": 3.7894086837768555, + "step": 1973 + }, + { + "epoch": 27.419397116644824, + "grad_norm": 0.22713422775268555, + "learning_rate": 0.0006, + "loss": 3.826005458831787, + "step": 1974 + }, + { + "epoch": 27.433377020532983, + "grad_norm": 0.21637366712093353, + "learning_rate": 0.0006, + "loss": 3.8232319355010986, + "step": 1975 + }, + { + "epoch": 27.447356924421143, + "grad_norm": 0.24092449247837067, + "learning_rate": 0.0006, + "loss": 3.813279628753662, + "step": 1976 + }, + { + "epoch": 27.461336828309307, + "grad_norm": 0.21143047511577606, + "learning_rate": 0.0006, + "loss": 3.811586856842041, + "step": 1977 + }, + { + "epoch": 27.475316732197467, + "grad_norm": 0.21049432456493378, + "learning_rate": 0.0006, + "loss": 3.8227009773254395, + "step": 1978 + }, + { + "epoch": 27.489296636085626, + "grad_norm": 0.21853850781917572, + "learning_rate": 0.0006, + "loss": 3.7992515563964844, + "step": 1979 + }, + { + "epoch": 27.503276539973786, + "grad_norm": 0.22405001521110535, + "learning_rate": 0.0006, + "loss": 3.8311715126037598, + "step": 1980 + }, + { + "epoch": 27.51725644386195, + "grad_norm": 0.24085809290409088, + "learning_rate": 0.0006, + "loss": 3.801962375640869, + "step": 1981 + }, + { + "epoch": 27.53123634775011, + "grad_norm": 0.2612341642379761, + "learning_rate": 0.0006, + "loss": 3.7867887020111084, + "step": 1982 + }, + { + "epoch": 27.54521625163827, + "grad_norm": 0.25136062502861023, + "learning_rate": 0.0006, + "loss": 3.8302273750305176, + "step": 1983 + }, + { + "epoch": 27.55919615552643, + "grad_norm": 0.2485426515340805, + "learning_rate": 0.0006, + "loss": 3.770616054534912, + "step": 1984 + }, + { + "epoch": 27.573176059414592, + "grad_norm": 0.28883907198905945, + "learning_rate": 0.0006, + "loss": 3.8152146339416504, + "step": 1985 + }, + { + "epoch": 27.587155963302752, + "grad_norm": 0.28177911043167114, + "learning_rate": 0.0006, + "loss": 3.7966861724853516, + "step": 1986 + }, + { + "epoch": 27.601135867190912, + "grad_norm": 0.2573191523551941, + "learning_rate": 0.0006, + "loss": 3.820788621902466, + "step": 1987 + }, + { + "epoch": 27.615115771079076, + "grad_norm": 0.22225657105445862, + "learning_rate": 0.0006, + "loss": 3.778477191925049, + "step": 1988 + }, + { + "epoch": 27.629095674967235, + "grad_norm": 0.20118530094623566, + "learning_rate": 0.0006, + "loss": 3.8416988849639893, + "step": 1989 + }, + { + "epoch": 27.643075578855395, + "grad_norm": 0.21168658137321472, + "learning_rate": 0.0006, + "loss": 3.798020839691162, + "step": 1990 + }, + { + "epoch": 27.657055482743555, + "grad_norm": 0.2460680454969406, + "learning_rate": 0.0006, + "loss": 3.805917263031006, + "step": 1991 + }, + { + "epoch": 27.67103538663172, + "grad_norm": 0.2700909674167633, + "learning_rate": 0.0006, + "loss": 3.8042726516723633, + "step": 1992 + }, + { + "epoch": 27.68501529051988, + "grad_norm": 0.25814294815063477, + "learning_rate": 0.0006, + "loss": 3.799159049987793, + "step": 1993 + }, + { + "epoch": 27.698995194408038, + "grad_norm": 0.2231985628604889, + "learning_rate": 0.0006, + "loss": 3.778750419616699, + "step": 1994 + }, + { + "epoch": 27.712975098296198, + "grad_norm": 0.20807890594005585, + "learning_rate": 0.0006, + "loss": 3.787919044494629, + "step": 1995 + }, + { + "epoch": 27.72695500218436, + "grad_norm": 0.19537150859832764, + "learning_rate": 0.0006, + "loss": 3.7917299270629883, + "step": 1996 + }, + { + "epoch": 27.74093490607252, + "grad_norm": 0.21057647466659546, + "learning_rate": 0.0006, + "loss": 3.8096866607666016, + "step": 1997 + }, + { + "epoch": 27.75491480996068, + "grad_norm": 0.18983247876167297, + "learning_rate": 0.0006, + "loss": 3.7881717681884766, + "step": 1998 + }, + { + "epoch": 27.76889471384884, + "grad_norm": 0.18701069056987762, + "learning_rate": 0.0006, + "loss": 3.810790538787842, + "step": 1999 + }, + { + "epoch": 27.782874617737004, + "grad_norm": 0.1920134723186493, + "learning_rate": 0.0006, + "loss": 3.8161087036132812, + "step": 2000 + }, + { + "epoch": 27.796854521625164, + "grad_norm": 0.20413947105407715, + "learning_rate": 0.0006, + "loss": 3.790499687194824, + "step": 2001 + }, + { + "epoch": 27.810834425513324, + "grad_norm": 0.1920027732849121, + "learning_rate": 0.0006, + "loss": 3.8194262981414795, + "step": 2002 + }, + { + "epoch": 27.824814329401484, + "grad_norm": 0.18630221486091614, + "learning_rate": 0.0006, + "loss": 3.8267152309417725, + "step": 2003 + }, + { + "epoch": 27.838794233289647, + "grad_norm": 0.1787925660610199, + "learning_rate": 0.0006, + "loss": 3.8147521018981934, + "step": 2004 + }, + { + "epoch": 27.852774137177807, + "grad_norm": 0.19187216460704803, + "learning_rate": 0.0006, + "loss": 3.7751095294952393, + "step": 2005 + }, + { + "epoch": 27.866754041065967, + "grad_norm": 0.18825744092464447, + "learning_rate": 0.0006, + "loss": 3.807401657104492, + "step": 2006 + }, + { + "epoch": 27.88073394495413, + "grad_norm": 0.1879836469888687, + "learning_rate": 0.0006, + "loss": 3.8302509784698486, + "step": 2007 + }, + { + "epoch": 27.89471384884229, + "grad_norm": 0.19136391580104828, + "learning_rate": 0.0006, + "loss": 3.7886242866516113, + "step": 2008 + }, + { + "epoch": 27.90869375273045, + "grad_norm": 0.18774119019508362, + "learning_rate": 0.0006, + "loss": 3.8202977180480957, + "step": 2009 + }, + { + "epoch": 27.92267365661861, + "grad_norm": 0.17794452607631683, + "learning_rate": 0.0006, + "loss": 3.813382387161255, + "step": 2010 + }, + { + "epoch": 27.936653560506773, + "grad_norm": 0.1876268833875656, + "learning_rate": 0.0006, + "loss": 3.810610294342041, + "step": 2011 + }, + { + "epoch": 27.950633464394933, + "grad_norm": 0.19262051582336426, + "learning_rate": 0.0006, + "loss": 3.8113245964050293, + "step": 2012 + }, + { + "epoch": 27.964613368283093, + "grad_norm": 0.19371771812438965, + "learning_rate": 0.0006, + "loss": 3.804790496826172, + "step": 2013 + }, + { + "epoch": 27.978593272171253, + "grad_norm": 0.1922861784696579, + "learning_rate": 0.0006, + "loss": 3.8278889656066895, + "step": 2014 + }, + { + "epoch": 27.992573176059416, + "grad_norm": 0.19748565554618835, + "learning_rate": 0.0006, + "loss": 3.8127200603485107, + "step": 2015 + }, + { + "epoch": 28.0, + "grad_norm": 0.25027501583099365, + "learning_rate": 0.0006, + "loss": 3.7899413108825684, + "step": 2016 + }, + { + "epoch": 28.0, + "eval_loss": 4.047704219818115, + "eval_runtime": 44.293, + "eval_samples_per_second": 55.133, + "eval_steps_per_second": 3.454, + "step": 2016 + }, + { + "epoch": 28.01397990388816, + "grad_norm": 0.25172367691993713, + "learning_rate": 0.0006, + "loss": 3.75449538230896, + "step": 2017 + }, + { + "epoch": 28.027959807776323, + "grad_norm": 0.23494598269462585, + "learning_rate": 0.0006, + "loss": 3.7609024047851562, + "step": 2018 + }, + { + "epoch": 28.041939711664483, + "grad_norm": 0.22459708154201508, + "learning_rate": 0.0006, + "loss": 3.7843551635742188, + "step": 2019 + }, + { + "epoch": 28.055919615552643, + "grad_norm": 0.2038632035255432, + "learning_rate": 0.0006, + "loss": 3.7818198204040527, + "step": 2020 + }, + { + "epoch": 28.069899519440803, + "grad_norm": 0.22050008177757263, + "learning_rate": 0.0006, + "loss": 3.787442684173584, + "step": 2021 + }, + { + "epoch": 28.083879423328966, + "grad_norm": 0.24645832180976868, + "learning_rate": 0.0006, + "loss": 3.768704414367676, + "step": 2022 + }, + { + "epoch": 28.097859327217126, + "grad_norm": 0.2440163493156433, + "learning_rate": 0.0006, + "loss": 3.7783756256103516, + "step": 2023 + }, + { + "epoch": 28.111839231105286, + "grad_norm": 0.2482181042432785, + "learning_rate": 0.0006, + "loss": 3.786881923675537, + "step": 2024 + }, + { + "epoch": 28.125819134993446, + "grad_norm": 0.23494760692119598, + "learning_rate": 0.0006, + "loss": 3.790039300918579, + "step": 2025 + }, + { + "epoch": 28.13979903888161, + "grad_norm": 0.2172182947397232, + "learning_rate": 0.0006, + "loss": 3.818756580352783, + "step": 2026 + }, + { + "epoch": 28.15377894276977, + "grad_norm": 0.2103179395198822, + "learning_rate": 0.0006, + "loss": 3.7768917083740234, + "step": 2027 + }, + { + "epoch": 28.16775884665793, + "grad_norm": 0.22322365641593933, + "learning_rate": 0.0006, + "loss": 3.8223648071289062, + "step": 2028 + }, + { + "epoch": 28.18173875054609, + "grad_norm": 0.24199382960796356, + "learning_rate": 0.0006, + "loss": 3.781357765197754, + "step": 2029 + }, + { + "epoch": 28.195718654434252, + "grad_norm": 0.2500663101673126, + "learning_rate": 0.0006, + "loss": 3.8061184883117676, + "step": 2030 + }, + { + "epoch": 28.209698558322412, + "grad_norm": 0.2439824491739273, + "learning_rate": 0.0006, + "loss": 3.7886464595794678, + "step": 2031 + }, + { + "epoch": 28.22367846221057, + "grad_norm": 0.24563106894493103, + "learning_rate": 0.0006, + "loss": 3.7901692390441895, + "step": 2032 + }, + { + "epoch": 28.23765836609873, + "grad_norm": 0.2287624627351761, + "learning_rate": 0.0006, + "loss": 3.789931058883667, + "step": 2033 + }, + { + "epoch": 28.251638269986895, + "grad_norm": 0.2231188714504242, + "learning_rate": 0.0006, + "loss": 3.7879133224487305, + "step": 2034 + }, + { + "epoch": 28.265618173875055, + "grad_norm": 0.23090387880802155, + "learning_rate": 0.0006, + "loss": 3.7826130390167236, + "step": 2035 + }, + { + "epoch": 28.279598077763215, + "grad_norm": 0.216018944978714, + "learning_rate": 0.0006, + "loss": 3.7764949798583984, + "step": 2036 + }, + { + "epoch": 28.293577981651374, + "grad_norm": 0.22649185359477997, + "learning_rate": 0.0006, + "loss": 3.7911291122436523, + "step": 2037 + }, + { + "epoch": 28.307557885539538, + "grad_norm": 0.2350836843252182, + "learning_rate": 0.0006, + "loss": 3.7668724060058594, + "step": 2038 + }, + { + "epoch": 28.321537789427698, + "grad_norm": 0.23206329345703125, + "learning_rate": 0.0006, + "loss": 3.782243251800537, + "step": 2039 + }, + { + "epoch": 28.335517693315857, + "grad_norm": 0.21896308660507202, + "learning_rate": 0.0006, + "loss": 3.7605721950531006, + "step": 2040 + }, + { + "epoch": 28.34949759720402, + "grad_norm": 0.20381200313568115, + "learning_rate": 0.0006, + "loss": 3.743945598602295, + "step": 2041 + }, + { + "epoch": 28.36347750109218, + "grad_norm": 0.19196000695228577, + "learning_rate": 0.0006, + "loss": 3.808107852935791, + "step": 2042 + }, + { + "epoch": 28.37745740498034, + "grad_norm": 0.19517889618873596, + "learning_rate": 0.0006, + "loss": 3.7906723022460938, + "step": 2043 + }, + { + "epoch": 28.3914373088685, + "grad_norm": 0.20455795526504517, + "learning_rate": 0.0006, + "loss": 3.7421011924743652, + "step": 2044 + }, + { + "epoch": 28.405417212756664, + "grad_norm": 0.1867467314004898, + "learning_rate": 0.0006, + "loss": 3.775509834289551, + "step": 2045 + }, + { + "epoch": 28.419397116644824, + "grad_norm": 0.2029324471950531, + "learning_rate": 0.0006, + "loss": 3.771353244781494, + "step": 2046 + }, + { + "epoch": 28.433377020532983, + "grad_norm": 0.19967497885227203, + "learning_rate": 0.0006, + "loss": 3.7821149826049805, + "step": 2047 + }, + { + "epoch": 28.447356924421143, + "grad_norm": 0.19440607726573944, + "learning_rate": 0.0006, + "loss": 3.8114213943481445, + "step": 2048 + }, + { + "epoch": 28.461336828309307, + "grad_norm": 0.19679802656173706, + "learning_rate": 0.0006, + "loss": 3.7699532508850098, + "step": 2049 + }, + { + "epoch": 28.475316732197467, + "grad_norm": 0.1939811110496521, + "learning_rate": 0.0006, + "loss": 3.7673027515411377, + "step": 2050 + }, + { + "epoch": 28.489296636085626, + "grad_norm": 0.18712401390075684, + "learning_rate": 0.0006, + "loss": 3.816699266433716, + "step": 2051 + }, + { + "epoch": 28.503276539973786, + "grad_norm": 0.202956885099411, + "learning_rate": 0.0006, + "loss": 3.7746071815490723, + "step": 2052 + }, + { + "epoch": 28.51725644386195, + "grad_norm": 0.19098156690597534, + "learning_rate": 0.0006, + "loss": 3.8065481185913086, + "step": 2053 + }, + { + "epoch": 28.53123634775011, + "grad_norm": 0.21144428849220276, + "learning_rate": 0.0006, + "loss": 3.7890982627868652, + "step": 2054 + }, + { + "epoch": 28.54521625163827, + "grad_norm": 0.21882614493370056, + "learning_rate": 0.0006, + "loss": 3.8168821334838867, + "step": 2055 + }, + { + "epoch": 28.55919615552643, + "grad_norm": 0.22200101613998413, + "learning_rate": 0.0006, + "loss": 3.804454803466797, + "step": 2056 + }, + { + "epoch": 28.573176059414592, + "grad_norm": 0.22404780983924866, + "learning_rate": 0.0006, + "loss": 3.808764934539795, + "step": 2057 + }, + { + "epoch": 28.587155963302752, + "grad_norm": 0.22770099341869354, + "learning_rate": 0.0006, + "loss": 3.74835467338562, + "step": 2058 + }, + { + "epoch": 28.601135867190912, + "grad_norm": 0.23214420676231384, + "learning_rate": 0.0006, + "loss": 3.7480111122131348, + "step": 2059 + }, + { + "epoch": 28.615115771079076, + "grad_norm": 0.21786348521709442, + "learning_rate": 0.0006, + "loss": 3.8095176219940186, + "step": 2060 + }, + { + "epoch": 28.629095674967235, + "grad_norm": 0.21004106104373932, + "learning_rate": 0.0006, + "loss": 3.792745590209961, + "step": 2061 + }, + { + "epoch": 28.643075578855395, + "grad_norm": 0.21076138317584991, + "learning_rate": 0.0006, + "loss": 3.7878952026367188, + "step": 2062 + }, + { + "epoch": 28.657055482743555, + "grad_norm": 0.2184346616268158, + "learning_rate": 0.0006, + "loss": 3.757188320159912, + "step": 2063 + }, + { + "epoch": 28.67103538663172, + "grad_norm": 0.22100569307804108, + "learning_rate": 0.0006, + "loss": 3.8131773471832275, + "step": 2064 + }, + { + "epoch": 28.68501529051988, + "grad_norm": 0.23257511854171753, + "learning_rate": 0.0006, + "loss": 3.793826103210449, + "step": 2065 + }, + { + "epoch": 28.698995194408038, + "grad_norm": 0.22312869131565094, + "learning_rate": 0.0006, + "loss": 3.782083749771118, + "step": 2066 + }, + { + "epoch": 28.712975098296198, + "grad_norm": 0.2318405956029892, + "learning_rate": 0.0006, + "loss": 3.7814879417419434, + "step": 2067 + }, + { + "epoch": 28.72695500218436, + "grad_norm": 0.23719379305839539, + "learning_rate": 0.0006, + "loss": 3.8320484161376953, + "step": 2068 + }, + { + "epoch": 28.74093490607252, + "grad_norm": 0.23100806772708893, + "learning_rate": 0.0006, + "loss": 3.7921783924102783, + "step": 2069 + }, + { + "epoch": 28.75491480996068, + "grad_norm": 0.21540866792201996, + "learning_rate": 0.0006, + "loss": 3.8325204849243164, + "step": 2070 + }, + { + "epoch": 28.76889471384884, + "grad_norm": 0.2698654532432556, + "learning_rate": 0.0006, + "loss": 3.7965879440307617, + "step": 2071 + }, + { + "epoch": 28.782874617737004, + "grad_norm": 0.3101225793361664, + "learning_rate": 0.0006, + "loss": 3.78842830657959, + "step": 2072 + }, + { + "epoch": 28.796854521625164, + "grad_norm": 0.2607600688934326, + "learning_rate": 0.0006, + "loss": 3.770064115524292, + "step": 2073 + }, + { + "epoch": 28.810834425513324, + "grad_norm": 0.20558302104473114, + "learning_rate": 0.0006, + "loss": 3.7448501586914062, + "step": 2074 + }, + { + "epoch": 28.824814329401484, + "grad_norm": 0.20030120015144348, + "learning_rate": 0.0006, + "loss": 3.7689406871795654, + "step": 2075 + }, + { + "epoch": 28.838794233289647, + "grad_norm": 0.21781118214130402, + "learning_rate": 0.0006, + "loss": 3.7682244777679443, + "step": 2076 + }, + { + "epoch": 28.852774137177807, + "grad_norm": 0.23543044924736023, + "learning_rate": 0.0006, + "loss": 3.8094193935394287, + "step": 2077 + }, + { + "epoch": 28.866754041065967, + "grad_norm": 0.21634669601917267, + "learning_rate": 0.0006, + "loss": 3.792099952697754, + "step": 2078 + }, + { + "epoch": 28.88073394495413, + "grad_norm": 0.2251661866903305, + "learning_rate": 0.0006, + "loss": 3.7849509716033936, + "step": 2079 + }, + { + "epoch": 28.89471384884229, + "grad_norm": 0.23872914910316467, + "learning_rate": 0.0006, + "loss": 3.8391621112823486, + "step": 2080 + }, + { + "epoch": 28.90869375273045, + "grad_norm": 0.22259248793125153, + "learning_rate": 0.0006, + "loss": 3.8272876739501953, + "step": 2081 + }, + { + "epoch": 28.92267365661861, + "grad_norm": 0.22052262723445892, + "learning_rate": 0.0006, + "loss": 3.7986836433410645, + "step": 2082 + }, + { + "epoch": 28.936653560506773, + "grad_norm": 0.24487647414207458, + "learning_rate": 0.0006, + "loss": 3.798004150390625, + "step": 2083 + }, + { + "epoch": 28.950633464394933, + "grad_norm": 0.22992238402366638, + "learning_rate": 0.0006, + "loss": 3.788522720336914, + "step": 2084 + }, + { + "epoch": 28.964613368283093, + "grad_norm": 0.22521597146987915, + "learning_rate": 0.0006, + "loss": 3.767259120941162, + "step": 2085 + }, + { + "epoch": 28.978593272171253, + "grad_norm": 0.2201499044895172, + "learning_rate": 0.0006, + "loss": 3.7850542068481445, + "step": 2086 + }, + { + "epoch": 28.992573176059416, + "grad_norm": 0.22226814925670624, + "learning_rate": 0.0006, + "loss": 3.8013534545898438, + "step": 2087 + }, + { + "epoch": 29.0, + "grad_norm": 0.27624809741973877, + "learning_rate": 0.0006, + "loss": 3.762004852294922, + "step": 2088 + }, + { + "epoch": 29.0, + "eval_loss": 4.034304618835449, + "eval_runtime": 44.6573, + "eval_samples_per_second": 54.683, + "eval_steps_per_second": 3.426, + "step": 2088 + }, + { + "epoch": 29.01397990388816, + "grad_norm": 0.2550967037677765, + "learning_rate": 0.0006, + "loss": 3.7724227905273438, + "step": 2089 + }, + { + "epoch": 29.027959807776323, + "grad_norm": 0.26730602979660034, + "learning_rate": 0.0006, + "loss": 3.7728946208953857, + "step": 2090 + }, + { + "epoch": 29.041939711664483, + "grad_norm": 0.2394205927848816, + "learning_rate": 0.0006, + "loss": 3.7737584114074707, + "step": 2091 + }, + { + "epoch": 29.055919615552643, + "grad_norm": 0.22488200664520264, + "learning_rate": 0.0006, + "loss": 3.761014938354492, + "step": 2092 + }, + { + "epoch": 29.069899519440803, + "grad_norm": 0.2389903962612152, + "learning_rate": 0.0006, + "loss": 3.766557216644287, + "step": 2093 + }, + { + "epoch": 29.083879423328966, + "grad_norm": 0.234152153134346, + "learning_rate": 0.0006, + "loss": 3.7447147369384766, + "step": 2094 + }, + { + "epoch": 29.097859327217126, + "grad_norm": 0.23123252391815186, + "learning_rate": 0.0006, + "loss": 3.77197527885437, + "step": 2095 + }, + { + "epoch": 29.111839231105286, + "grad_norm": 0.23263143002986908, + "learning_rate": 0.0006, + "loss": 3.7390198707580566, + "step": 2096 + }, + { + "epoch": 29.125819134993446, + "grad_norm": 0.23235775530338287, + "learning_rate": 0.0006, + "loss": 3.7675256729125977, + "step": 2097 + }, + { + "epoch": 29.13979903888161, + "grad_norm": 0.2208816260099411, + "learning_rate": 0.0006, + "loss": 3.7588067054748535, + "step": 2098 + }, + { + "epoch": 29.15377894276977, + "grad_norm": 0.21216371655464172, + "learning_rate": 0.0006, + "loss": 3.7370502948760986, + "step": 2099 + }, + { + "epoch": 29.16775884665793, + "grad_norm": 0.2210543155670166, + "learning_rate": 0.0006, + "loss": 3.767308473587036, + "step": 2100 + }, + { + "epoch": 29.18173875054609, + "grad_norm": 0.21628431975841522, + "learning_rate": 0.0006, + "loss": 3.7298972606658936, + "step": 2101 + }, + { + "epoch": 29.195718654434252, + "grad_norm": 0.21493588387966156, + "learning_rate": 0.0006, + "loss": 3.7806448936462402, + "step": 2102 + }, + { + "epoch": 29.209698558322412, + "grad_norm": 0.25978055596351624, + "learning_rate": 0.0006, + "loss": 3.7716293334960938, + "step": 2103 + }, + { + "epoch": 29.22367846221057, + "grad_norm": 0.2744791507720947, + "learning_rate": 0.0006, + "loss": 3.76897931098938, + "step": 2104 + }, + { + "epoch": 29.23765836609873, + "grad_norm": 0.22959400713443756, + "learning_rate": 0.0006, + "loss": 3.7545714378356934, + "step": 2105 + }, + { + "epoch": 29.251638269986895, + "grad_norm": 0.20369231700897217, + "learning_rate": 0.0006, + "loss": 3.7944722175598145, + "step": 2106 + }, + { + "epoch": 29.265618173875055, + "grad_norm": 0.21663758158683777, + "learning_rate": 0.0006, + "loss": 3.7564756870269775, + "step": 2107 + }, + { + "epoch": 29.279598077763215, + "grad_norm": 0.21862861514091492, + "learning_rate": 0.0006, + "loss": 3.7722725868225098, + "step": 2108 + }, + { + "epoch": 29.293577981651374, + "grad_norm": 0.2044878453016281, + "learning_rate": 0.0006, + "loss": 3.7471303939819336, + "step": 2109 + }, + { + "epoch": 29.307557885539538, + "grad_norm": 0.23015929758548737, + "learning_rate": 0.0006, + "loss": 3.7584962844848633, + "step": 2110 + }, + { + "epoch": 29.321537789427698, + "grad_norm": 0.22548329830169678, + "learning_rate": 0.0006, + "loss": 3.795933723449707, + "step": 2111 + }, + { + "epoch": 29.335517693315857, + "grad_norm": 0.2000468522310257, + "learning_rate": 0.0006, + "loss": 3.766310691833496, + "step": 2112 + }, + { + "epoch": 29.34949759720402, + "grad_norm": 0.19711551070213318, + "learning_rate": 0.0006, + "loss": 3.7296276092529297, + "step": 2113 + }, + { + "epoch": 29.36347750109218, + "grad_norm": 0.18838997185230255, + "learning_rate": 0.0006, + "loss": 3.7685282230377197, + "step": 2114 + }, + { + "epoch": 29.37745740498034, + "grad_norm": 0.1897876113653183, + "learning_rate": 0.0006, + "loss": 3.7280936241149902, + "step": 2115 + }, + { + "epoch": 29.3914373088685, + "grad_norm": 0.21697933971881866, + "learning_rate": 0.0006, + "loss": 3.7991929054260254, + "step": 2116 + }, + { + "epoch": 29.405417212756664, + "grad_norm": 0.23445849120616913, + "learning_rate": 0.0006, + "loss": 3.7857418060302734, + "step": 2117 + }, + { + "epoch": 29.419397116644824, + "grad_norm": 0.24155527353286743, + "learning_rate": 0.0006, + "loss": 3.7897872924804688, + "step": 2118 + }, + { + "epoch": 29.433377020532983, + "grad_norm": 0.2610265016555786, + "learning_rate": 0.0006, + "loss": 3.7867324352264404, + "step": 2119 + }, + { + "epoch": 29.447356924421143, + "grad_norm": 0.2809581160545349, + "learning_rate": 0.0006, + "loss": 3.783799648284912, + "step": 2120 + }, + { + "epoch": 29.461336828309307, + "grad_norm": 0.2621572017669678, + "learning_rate": 0.0006, + "loss": 3.7778549194335938, + "step": 2121 + }, + { + "epoch": 29.475316732197467, + "grad_norm": 0.26002970337867737, + "learning_rate": 0.0006, + "loss": 3.787945508956909, + "step": 2122 + }, + { + "epoch": 29.489296636085626, + "grad_norm": 0.24866686761379242, + "learning_rate": 0.0006, + "loss": 3.7406349182128906, + "step": 2123 + }, + { + "epoch": 29.503276539973786, + "grad_norm": 0.25588324666023254, + "learning_rate": 0.0006, + "loss": 3.785625457763672, + "step": 2124 + }, + { + "epoch": 29.51725644386195, + "grad_norm": 0.24724243581295013, + "learning_rate": 0.0006, + "loss": 3.7581701278686523, + "step": 2125 + }, + { + "epoch": 29.53123634775011, + "grad_norm": 0.23544734716415405, + "learning_rate": 0.0006, + "loss": 3.8163957595825195, + "step": 2126 + }, + { + "epoch": 29.54521625163827, + "grad_norm": 0.2108801156282425, + "learning_rate": 0.0006, + "loss": 3.7881739139556885, + "step": 2127 + }, + { + "epoch": 29.55919615552643, + "grad_norm": 0.20459668338298798, + "learning_rate": 0.0006, + "loss": 3.7641284465789795, + "step": 2128 + }, + { + "epoch": 29.573176059414592, + "grad_norm": 0.24020728468894958, + "learning_rate": 0.0006, + "loss": 3.7748730182647705, + "step": 2129 + }, + { + "epoch": 29.587155963302752, + "grad_norm": 0.256273478269577, + "learning_rate": 0.0006, + "loss": 3.8076486587524414, + "step": 2130 + }, + { + "epoch": 29.601135867190912, + "grad_norm": 0.23295973241329193, + "learning_rate": 0.0006, + "loss": 3.7687063217163086, + "step": 2131 + }, + { + "epoch": 29.615115771079076, + "grad_norm": 0.21554847061634064, + "learning_rate": 0.0006, + "loss": 3.781867027282715, + "step": 2132 + }, + { + "epoch": 29.629095674967235, + "grad_norm": 0.20645774900913239, + "learning_rate": 0.0006, + "loss": 3.7813425064086914, + "step": 2133 + }, + { + "epoch": 29.643075578855395, + "grad_norm": 0.2018265724182129, + "learning_rate": 0.0006, + "loss": 3.772895574569702, + "step": 2134 + }, + { + "epoch": 29.657055482743555, + "grad_norm": 0.20170100033283234, + "learning_rate": 0.0006, + "loss": 3.7819175720214844, + "step": 2135 + }, + { + "epoch": 29.67103538663172, + "grad_norm": 0.22640688717365265, + "learning_rate": 0.0006, + "loss": 3.7999017238616943, + "step": 2136 + }, + { + "epoch": 29.68501529051988, + "grad_norm": 0.23747675120830536, + "learning_rate": 0.0006, + "loss": 3.804999828338623, + "step": 2137 + }, + { + "epoch": 29.698995194408038, + "grad_norm": 0.20005857944488525, + "learning_rate": 0.0006, + "loss": 3.7815160751342773, + "step": 2138 + }, + { + "epoch": 29.712975098296198, + "grad_norm": 0.17901667952537537, + "learning_rate": 0.0006, + "loss": 3.7898688316345215, + "step": 2139 + }, + { + "epoch": 29.72695500218436, + "grad_norm": 0.1890905797481537, + "learning_rate": 0.0006, + "loss": 3.8001184463500977, + "step": 2140 + }, + { + "epoch": 29.74093490607252, + "grad_norm": 0.19565847516059875, + "learning_rate": 0.0006, + "loss": 3.7522482872009277, + "step": 2141 + }, + { + "epoch": 29.75491480996068, + "grad_norm": 0.19429196417331696, + "learning_rate": 0.0006, + "loss": 3.768972158432007, + "step": 2142 + }, + { + "epoch": 29.76889471384884, + "grad_norm": 0.23846636712551117, + "learning_rate": 0.0006, + "loss": 3.765216112136841, + "step": 2143 + }, + { + "epoch": 29.782874617737004, + "grad_norm": 0.23820780217647552, + "learning_rate": 0.0006, + "loss": 3.8027703762054443, + "step": 2144 + }, + { + "epoch": 29.796854521625164, + "grad_norm": 0.21104726195335388, + "learning_rate": 0.0006, + "loss": 3.7682833671569824, + "step": 2145 + }, + { + "epoch": 29.810834425513324, + "grad_norm": 0.1911051720380783, + "learning_rate": 0.0006, + "loss": 3.781782627105713, + "step": 2146 + }, + { + "epoch": 29.824814329401484, + "grad_norm": 0.18881288170814514, + "learning_rate": 0.0006, + "loss": 3.7703428268432617, + "step": 2147 + }, + { + "epoch": 29.838794233289647, + "grad_norm": 0.18292994797229767, + "learning_rate": 0.0006, + "loss": 3.769176721572876, + "step": 2148 + }, + { + "epoch": 29.852774137177807, + "grad_norm": 0.1777714639902115, + "learning_rate": 0.0006, + "loss": 3.7488298416137695, + "step": 2149 + }, + { + "epoch": 29.866754041065967, + "grad_norm": 0.2037898749113083, + "learning_rate": 0.0006, + "loss": 3.804396390914917, + "step": 2150 + }, + { + "epoch": 29.88073394495413, + "grad_norm": 0.2121828943490982, + "learning_rate": 0.0006, + "loss": 3.75870943069458, + "step": 2151 + }, + { + "epoch": 29.89471384884229, + "grad_norm": 0.23231184482574463, + "learning_rate": 0.0006, + "loss": 3.80178165435791, + "step": 2152 + }, + { + "epoch": 29.90869375273045, + "grad_norm": 0.24045611917972565, + "learning_rate": 0.0006, + "loss": 3.7690834999084473, + "step": 2153 + }, + { + "epoch": 29.92267365661861, + "grad_norm": 0.19830496609210968, + "learning_rate": 0.0006, + "loss": 3.764401912689209, + "step": 2154 + }, + { + "epoch": 29.936653560506773, + "grad_norm": 0.17704227566719055, + "learning_rate": 0.0006, + "loss": 3.7634594440460205, + "step": 2155 + }, + { + "epoch": 29.950633464394933, + "grad_norm": 0.17783164978027344, + "learning_rate": 0.0006, + "loss": 3.7856998443603516, + "step": 2156 + }, + { + "epoch": 29.964613368283093, + "grad_norm": 0.19684971868991852, + "learning_rate": 0.0006, + "loss": 3.805774211883545, + "step": 2157 + }, + { + "epoch": 29.978593272171253, + "grad_norm": 0.21662312746047974, + "learning_rate": 0.0006, + "loss": 3.757896661758423, + "step": 2158 + }, + { + "epoch": 29.992573176059416, + "grad_norm": 0.22000661492347717, + "learning_rate": 0.0006, + "loss": 3.7747678756713867, + "step": 2159 + }, + { + "epoch": 30.0, + "grad_norm": 0.21501901745796204, + "learning_rate": 0.0006, + "loss": 3.785585880279541, + "step": 2160 + }, + { + "epoch": 30.0, + "eval_loss": 4.034003734588623, + "eval_runtime": 44.9097, + "eval_samples_per_second": 54.376, + "eval_steps_per_second": 3.407, + "step": 2160 + }, + { + "epoch": 30.01397990388816, + "grad_norm": 0.19710904359817505, + "learning_rate": 0.0006, + "loss": 3.756235122680664, + "step": 2161 + }, + { + "epoch": 30.027959807776323, + "grad_norm": 0.19829736649990082, + "learning_rate": 0.0006, + "loss": 3.734067916870117, + "step": 2162 + }, + { + "epoch": 30.041939711664483, + "grad_norm": 0.21622520685195923, + "learning_rate": 0.0006, + "loss": 3.7329437732696533, + "step": 2163 + }, + { + "epoch": 30.055919615552643, + "grad_norm": 0.22544652223587036, + "learning_rate": 0.0006, + "loss": 3.748716354370117, + "step": 2164 + }, + { + "epoch": 30.069899519440803, + "grad_norm": 0.21098364889621735, + "learning_rate": 0.0006, + "loss": 3.779047727584839, + "step": 2165 + }, + { + "epoch": 30.083879423328966, + "grad_norm": 0.21309930086135864, + "learning_rate": 0.0006, + "loss": 3.7690274715423584, + "step": 2166 + }, + { + "epoch": 30.097859327217126, + "grad_norm": 0.23025690019130707, + "learning_rate": 0.0006, + "loss": 3.7500953674316406, + "step": 2167 + }, + { + "epoch": 30.111839231105286, + "grad_norm": 0.25107935070991516, + "learning_rate": 0.0006, + "loss": 3.745492458343506, + "step": 2168 + }, + { + "epoch": 30.125819134993446, + "grad_norm": 0.29873573780059814, + "learning_rate": 0.0006, + "loss": 3.759793758392334, + "step": 2169 + }, + { + "epoch": 30.13979903888161, + "grad_norm": 0.2810286283493042, + "learning_rate": 0.0006, + "loss": 3.772998809814453, + "step": 2170 + }, + { + "epoch": 30.15377894276977, + "grad_norm": 0.2102176398038864, + "learning_rate": 0.0006, + "loss": 3.740170955657959, + "step": 2171 + }, + { + "epoch": 30.16775884665793, + "grad_norm": 0.24143251776695251, + "learning_rate": 0.0006, + "loss": 3.7317001819610596, + "step": 2172 + }, + { + "epoch": 30.18173875054609, + "grad_norm": 0.2643064558506012, + "learning_rate": 0.0006, + "loss": 3.773263692855835, + "step": 2173 + }, + { + "epoch": 30.195718654434252, + "grad_norm": 0.27571243047714233, + "learning_rate": 0.0006, + "loss": 3.7619900703430176, + "step": 2174 + }, + { + "epoch": 30.209698558322412, + "grad_norm": 0.25359588861465454, + "learning_rate": 0.0006, + "loss": 3.7608513832092285, + "step": 2175 + }, + { + "epoch": 30.22367846221057, + "grad_norm": 0.2500684857368469, + "learning_rate": 0.0006, + "loss": 3.75856614112854, + "step": 2176 + }, + { + "epoch": 30.23765836609873, + "grad_norm": 0.23100309073925018, + "learning_rate": 0.0006, + "loss": 3.749786853790283, + "step": 2177 + }, + { + "epoch": 30.251638269986895, + "grad_norm": 0.24384984374046326, + "learning_rate": 0.0006, + "loss": 3.762244701385498, + "step": 2178 + }, + { + "epoch": 30.265618173875055, + "grad_norm": 0.24593998491764069, + "learning_rate": 0.0006, + "loss": 3.754594326019287, + "step": 2179 + }, + { + "epoch": 30.279598077763215, + "grad_norm": 0.2529342770576477, + "learning_rate": 0.0006, + "loss": 3.7641053199768066, + "step": 2180 + }, + { + "epoch": 30.293577981651374, + "grad_norm": 0.25954094529151917, + "learning_rate": 0.0006, + "loss": 3.810336112976074, + "step": 2181 + }, + { + "epoch": 30.307557885539538, + "grad_norm": 0.2249951958656311, + "learning_rate": 0.0006, + "loss": 3.7542617321014404, + "step": 2182 + }, + { + "epoch": 30.321537789427698, + "grad_norm": 0.19795064628124237, + "learning_rate": 0.0006, + "loss": 3.7734434604644775, + "step": 2183 + }, + { + "epoch": 30.335517693315857, + "grad_norm": 0.20744608342647552, + "learning_rate": 0.0006, + "loss": 3.7816128730773926, + "step": 2184 + }, + { + "epoch": 30.34949759720402, + "grad_norm": 0.19988055527210236, + "learning_rate": 0.0006, + "loss": 3.7631936073303223, + "step": 2185 + }, + { + "epoch": 30.36347750109218, + "grad_norm": 0.22226445376873016, + "learning_rate": 0.0006, + "loss": 3.762910842895508, + "step": 2186 + }, + { + "epoch": 30.37745740498034, + "grad_norm": 0.21986067295074463, + "learning_rate": 0.0006, + "loss": 3.733893394470215, + "step": 2187 + }, + { + "epoch": 30.3914373088685, + "grad_norm": 0.2170228660106659, + "learning_rate": 0.0006, + "loss": 3.726433515548706, + "step": 2188 + }, + { + "epoch": 30.405417212756664, + "grad_norm": 0.2179550975561142, + "learning_rate": 0.0006, + "loss": 3.792311668395996, + "step": 2189 + }, + { + "epoch": 30.419397116644824, + "grad_norm": 0.208037331700325, + "learning_rate": 0.0006, + "loss": 3.774639129638672, + "step": 2190 + }, + { + "epoch": 30.433377020532983, + "grad_norm": 0.20745441317558289, + "learning_rate": 0.0006, + "loss": 3.776130199432373, + "step": 2191 + }, + { + "epoch": 30.447356924421143, + "grad_norm": 0.1988024264574051, + "learning_rate": 0.0006, + "loss": 3.7453784942626953, + "step": 2192 + }, + { + "epoch": 30.461336828309307, + "grad_norm": 0.194968581199646, + "learning_rate": 0.0006, + "loss": 3.764653205871582, + "step": 2193 + }, + { + "epoch": 30.475316732197467, + "grad_norm": 0.20658300817012787, + "learning_rate": 0.0006, + "loss": 3.796513080596924, + "step": 2194 + }, + { + "epoch": 30.489296636085626, + "grad_norm": 0.2123410701751709, + "learning_rate": 0.0006, + "loss": 3.7630836963653564, + "step": 2195 + }, + { + "epoch": 30.503276539973786, + "grad_norm": 0.20894059538841248, + "learning_rate": 0.0006, + "loss": 3.7265470027923584, + "step": 2196 + }, + { + "epoch": 30.51725644386195, + "grad_norm": 0.2016828954219818, + "learning_rate": 0.0006, + "loss": 3.8083386421203613, + "step": 2197 + }, + { + "epoch": 30.53123634775011, + "grad_norm": 0.19584205746650696, + "learning_rate": 0.0006, + "loss": 3.7492105960845947, + "step": 2198 + }, + { + "epoch": 30.54521625163827, + "grad_norm": 0.18635272979736328, + "learning_rate": 0.0006, + "loss": 3.711009979248047, + "step": 2199 + }, + { + "epoch": 30.55919615552643, + "grad_norm": 0.1920594871044159, + "learning_rate": 0.0006, + "loss": 3.760801315307617, + "step": 2200 + }, + { + "epoch": 30.573176059414592, + "grad_norm": 0.1978331208229065, + "learning_rate": 0.0006, + "loss": 3.780529022216797, + "step": 2201 + }, + { + "epoch": 30.587155963302752, + "grad_norm": 0.20076943933963776, + "learning_rate": 0.0006, + "loss": 3.7767038345336914, + "step": 2202 + }, + { + "epoch": 30.601135867190912, + "grad_norm": 0.2067444622516632, + "learning_rate": 0.0006, + "loss": 3.7607920169830322, + "step": 2203 + }, + { + "epoch": 30.615115771079076, + "grad_norm": 0.2081940472126007, + "learning_rate": 0.0006, + "loss": 3.741936206817627, + "step": 2204 + }, + { + "epoch": 30.629095674967235, + "grad_norm": 0.21212869882583618, + "learning_rate": 0.0006, + "loss": 3.7597827911376953, + "step": 2205 + }, + { + "epoch": 30.643075578855395, + "grad_norm": 0.21539026498794556, + "learning_rate": 0.0006, + "loss": 3.764646053314209, + "step": 2206 + }, + { + "epoch": 30.657055482743555, + "grad_norm": 0.19788387417793274, + "learning_rate": 0.0006, + "loss": 3.7535128593444824, + "step": 2207 + }, + { + "epoch": 30.67103538663172, + "grad_norm": 0.20757688581943512, + "learning_rate": 0.0006, + "loss": 3.7414169311523438, + "step": 2208 + }, + { + "epoch": 30.68501529051988, + "grad_norm": 0.199361652135849, + "learning_rate": 0.0006, + "loss": 3.7578506469726562, + "step": 2209 + }, + { + "epoch": 30.698995194408038, + "grad_norm": 0.1909894198179245, + "learning_rate": 0.0006, + "loss": 3.736250400543213, + "step": 2210 + }, + { + "epoch": 30.712975098296198, + "grad_norm": 0.19766664505004883, + "learning_rate": 0.0006, + "loss": 3.7435379028320312, + "step": 2211 + }, + { + "epoch": 30.72695500218436, + "grad_norm": 0.21857766807079315, + "learning_rate": 0.0006, + "loss": 3.7478690147399902, + "step": 2212 + }, + { + "epoch": 30.74093490607252, + "grad_norm": 0.22385898232460022, + "learning_rate": 0.0006, + "loss": 3.7522530555725098, + "step": 2213 + }, + { + "epoch": 30.75491480996068, + "grad_norm": 0.2329241931438446, + "learning_rate": 0.0006, + "loss": 3.7568247318267822, + "step": 2214 + }, + { + "epoch": 30.76889471384884, + "grad_norm": 0.2218400090932846, + "learning_rate": 0.0006, + "loss": 3.7662744522094727, + "step": 2215 + }, + { + "epoch": 30.782874617737004, + "grad_norm": 0.21350212395191193, + "learning_rate": 0.0006, + "loss": 3.7683777809143066, + "step": 2216 + }, + { + "epoch": 30.796854521625164, + "grad_norm": 0.22357074916362762, + "learning_rate": 0.0006, + "loss": 3.763437032699585, + "step": 2217 + }, + { + "epoch": 30.810834425513324, + "grad_norm": 0.22268560528755188, + "learning_rate": 0.0006, + "loss": 3.772836685180664, + "step": 2218 + }, + { + "epoch": 30.824814329401484, + "grad_norm": 0.2434026449918747, + "learning_rate": 0.0006, + "loss": 3.752986431121826, + "step": 2219 + }, + { + "epoch": 30.838794233289647, + "grad_norm": 0.2298414409160614, + "learning_rate": 0.0006, + "loss": 3.7837061882019043, + "step": 2220 + }, + { + "epoch": 30.852774137177807, + "grad_norm": 0.227672278881073, + "learning_rate": 0.0006, + "loss": 3.746065378189087, + "step": 2221 + }, + { + "epoch": 30.866754041065967, + "grad_norm": 0.2562827169895172, + "learning_rate": 0.0006, + "loss": 3.7741947174072266, + "step": 2222 + }, + { + "epoch": 30.88073394495413, + "grad_norm": 0.23657815158367157, + "learning_rate": 0.0006, + "loss": 3.746457099914551, + "step": 2223 + }, + { + "epoch": 30.89471384884229, + "grad_norm": 0.2158907800912857, + "learning_rate": 0.0006, + "loss": 3.7821710109710693, + "step": 2224 + }, + { + "epoch": 30.90869375273045, + "grad_norm": 0.22501254081726074, + "learning_rate": 0.0006, + "loss": 3.7528274059295654, + "step": 2225 + }, + { + "epoch": 30.92267365661861, + "grad_norm": 0.20252224802970886, + "learning_rate": 0.0006, + "loss": 3.749418258666992, + "step": 2226 + }, + { + "epoch": 30.936653560506773, + "grad_norm": 0.2067883312702179, + "learning_rate": 0.0006, + "loss": 3.7560606002807617, + "step": 2227 + }, + { + "epoch": 30.950633464394933, + "grad_norm": 0.23104053735733032, + "learning_rate": 0.0006, + "loss": 3.7883846759796143, + "step": 2228 + }, + { + "epoch": 30.964613368283093, + "grad_norm": 0.21476604044437408, + "learning_rate": 0.0006, + "loss": 3.7976977825164795, + "step": 2229 + }, + { + "epoch": 30.978593272171253, + "grad_norm": 0.2130427062511444, + "learning_rate": 0.0006, + "loss": 3.7429304122924805, + "step": 2230 + }, + { + "epoch": 30.992573176059416, + "grad_norm": 0.2047216147184372, + "learning_rate": 0.0006, + "loss": 3.7669787406921387, + "step": 2231 + }, + { + "epoch": 31.0, + "grad_norm": 0.22254081070423126, + "learning_rate": 0.0006, + "loss": 3.7794251441955566, + "step": 2232 + }, + { + "epoch": 31.0, + "eval_loss": 4.039162635803223, + "eval_runtime": 44.9069, + "eval_samples_per_second": 54.379, + "eval_steps_per_second": 3.407, + "step": 2232 + }, + { + "epoch": 31.01397990388816, + "grad_norm": 0.2278132289648056, + "learning_rate": 0.0006, + "loss": 3.7363929748535156, + "step": 2233 + }, + { + "epoch": 31.027959807776323, + "grad_norm": 0.2377072274684906, + "learning_rate": 0.0006, + "loss": 3.72847318649292, + "step": 2234 + }, + { + "epoch": 31.041939711664483, + "grad_norm": 0.23790542781352997, + "learning_rate": 0.0006, + "loss": 3.767193078994751, + "step": 2235 + }, + { + "epoch": 31.055919615552643, + "grad_norm": 0.2587272524833679, + "learning_rate": 0.0006, + "loss": 3.7564640045166016, + "step": 2236 + }, + { + "epoch": 31.069899519440803, + "grad_norm": 0.27550312876701355, + "learning_rate": 0.0006, + "loss": 3.727578639984131, + "step": 2237 + }, + { + "epoch": 31.083879423328966, + "grad_norm": 0.2488662451505661, + "learning_rate": 0.0006, + "loss": 3.7420730590820312, + "step": 2238 + }, + { + "epoch": 31.097859327217126, + "grad_norm": 0.22699029743671417, + "learning_rate": 0.0006, + "loss": 3.7323155403137207, + "step": 2239 + }, + { + "epoch": 31.111839231105286, + "grad_norm": 0.23360148072242737, + "learning_rate": 0.0006, + "loss": 3.719024181365967, + "step": 2240 + }, + { + "epoch": 31.125819134993446, + "grad_norm": 0.24322988092899323, + "learning_rate": 0.0006, + "loss": 3.74485445022583, + "step": 2241 + }, + { + "epoch": 31.13979903888161, + "grad_norm": 0.2474174052476883, + "learning_rate": 0.0006, + "loss": 3.746826171875, + "step": 2242 + }, + { + "epoch": 31.15377894276977, + "grad_norm": 0.2417406439781189, + "learning_rate": 0.0006, + "loss": 3.7285032272338867, + "step": 2243 + }, + { + "epoch": 31.16775884665793, + "grad_norm": 0.2390318512916565, + "learning_rate": 0.0006, + "loss": 3.7464442253112793, + "step": 2244 + }, + { + "epoch": 31.18173875054609, + "grad_norm": 0.21819323301315308, + "learning_rate": 0.0006, + "loss": 3.735110282897949, + "step": 2245 + }, + { + "epoch": 31.195718654434252, + "grad_norm": 0.21953554451465607, + "learning_rate": 0.0006, + "loss": 3.7270030975341797, + "step": 2246 + }, + { + "epoch": 31.209698558322412, + "grad_norm": 0.1930384635925293, + "learning_rate": 0.0006, + "loss": 3.7519941329956055, + "step": 2247 + }, + { + "epoch": 31.22367846221057, + "grad_norm": 0.19799190759658813, + "learning_rate": 0.0006, + "loss": 3.7428221702575684, + "step": 2248 + }, + { + "epoch": 31.23765836609873, + "grad_norm": 0.20948201417922974, + "learning_rate": 0.0006, + "loss": 3.733120918273926, + "step": 2249 + }, + { + "epoch": 31.251638269986895, + "grad_norm": 0.23768769204616547, + "learning_rate": 0.0006, + "loss": 3.7059035301208496, + "step": 2250 + }, + { + "epoch": 31.265618173875055, + "grad_norm": 0.2808842957019806, + "learning_rate": 0.0006, + "loss": 3.7245287895202637, + "step": 2251 + }, + { + "epoch": 31.279598077763215, + "grad_norm": 0.27633124589920044, + "learning_rate": 0.0006, + "loss": 3.7436366081237793, + "step": 2252 + }, + { + "epoch": 31.293577981651374, + "grad_norm": 0.24137185513973236, + "learning_rate": 0.0006, + "loss": 3.7651219367980957, + "step": 2253 + }, + { + "epoch": 31.307557885539538, + "grad_norm": 0.22056810557842255, + "learning_rate": 0.0006, + "loss": 3.7417521476745605, + "step": 2254 + }, + { + "epoch": 31.321537789427698, + "grad_norm": 0.20137323439121246, + "learning_rate": 0.0006, + "loss": 3.750187397003174, + "step": 2255 + }, + { + "epoch": 31.335517693315857, + "grad_norm": 0.2142433375120163, + "learning_rate": 0.0006, + "loss": 3.7292675971984863, + "step": 2256 + }, + { + "epoch": 31.34949759720402, + "grad_norm": 0.21193967759609222, + "learning_rate": 0.0006, + "loss": 3.7459473609924316, + "step": 2257 + }, + { + "epoch": 31.36347750109218, + "grad_norm": 0.21418534219264984, + "learning_rate": 0.0006, + "loss": 3.754359722137451, + "step": 2258 + }, + { + "epoch": 31.37745740498034, + "grad_norm": 0.23507359623908997, + "learning_rate": 0.0006, + "loss": 3.763413906097412, + "step": 2259 + }, + { + "epoch": 31.3914373088685, + "grad_norm": 0.20393887162208557, + "learning_rate": 0.0006, + "loss": 3.73878812789917, + "step": 2260 + }, + { + "epoch": 31.405417212756664, + "grad_norm": 0.21752159297466278, + "learning_rate": 0.0006, + "loss": 3.750549793243408, + "step": 2261 + }, + { + "epoch": 31.419397116644824, + "grad_norm": 0.22629529237747192, + "learning_rate": 0.0006, + "loss": 3.7791430950164795, + "step": 2262 + }, + { + "epoch": 31.433377020532983, + "grad_norm": 0.2114613950252533, + "learning_rate": 0.0006, + "loss": 3.7709264755249023, + "step": 2263 + }, + { + "epoch": 31.447356924421143, + "grad_norm": 0.23241667449474335, + "learning_rate": 0.0006, + "loss": 3.745750665664673, + "step": 2264 + }, + { + "epoch": 31.461336828309307, + "grad_norm": 0.2434246987104416, + "learning_rate": 0.0006, + "loss": 3.769727945327759, + "step": 2265 + }, + { + "epoch": 31.475316732197467, + "grad_norm": 0.247820645570755, + "learning_rate": 0.0006, + "loss": 3.7528204917907715, + "step": 2266 + }, + { + "epoch": 31.489296636085626, + "grad_norm": 0.21287164092063904, + "learning_rate": 0.0006, + "loss": 3.728661060333252, + "step": 2267 + }, + { + "epoch": 31.503276539973786, + "grad_norm": 0.20983846485614777, + "learning_rate": 0.0006, + "loss": 3.7524428367614746, + "step": 2268 + }, + { + "epoch": 31.51725644386195, + "grad_norm": 0.23799288272857666, + "learning_rate": 0.0006, + "loss": 3.7276647090911865, + "step": 2269 + }, + { + "epoch": 31.53123634775011, + "grad_norm": 0.247065007686615, + "learning_rate": 0.0006, + "loss": 3.7506704330444336, + "step": 2270 + }, + { + "epoch": 31.54521625163827, + "grad_norm": 0.20670939981937408, + "learning_rate": 0.0006, + "loss": 3.71852445602417, + "step": 2271 + }, + { + "epoch": 31.55919615552643, + "grad_norm": 0.19463716447353363, + "learning_rate": 0.0006, + "loss": 3.732757568359375, + "step": 2272 + }, + { + "epoch": 31.573176059414592, + "grad_norm": 0.20368841290473938, + "learning_rate": 0.0006, + "loss": 3.746676445007324, + "step": 2273 + }, + { + "epoch": 31.587155963302752, + "grad_norm": 0.19691342115402222, + "learning_rate": 0.0006, + "loss": 3.7535760402679443, + "step": 2274 + }, + { + "epoch": 31.601135867190912, + "grad_norm": 0.2026553899049759, + "learning_rate": 0.0006, + "loss": 3.7406957149505615, + "step": 2275 + }, + { + "epoch": 31.615115771079076, + "grad_norm": 0.21494299173355103, + "learning_rate": 0.0006, + "loss": 3.735888957977295, + "step": 2276 + }, + { + "epoch": 31.629095674967235, + "grad_norm": 0.21644766628742218, + "learning_rate": 0.0006, + "loss": 3.723767042160034, + "step": 2277 + }, + { + "epoch": 31.643075578855395, + "grad_norm": 0.20087581872940063, + "learning_rate": 0.0006, + "loss": 3.7622008323669434, + "step": 2278 + }, + { + "epoch": 31.657055482743555, + "grad_norm": 0.1949695646762848, + "learning_rate": 0.0006, + "loss": 3.7726354598999023, + "step": 2279 + }, + { + "epoch": 31.67103538663172, + "grad_norm": 0.19120797514915466, + "learning_rate": 0.0006, + "loss": 3.7454679012298584, + "step": 2280 + }, + { + "epoch": 31.68501529051988, + "grad_norm": 0.19480115175247192, + "learning_rate": 0.0006, + "loss": 3.743934392929077, + "step": 2281 + }, + { + "epoch": 31.698995194408038, + "grad_norm": 0.1891610324382782, + "learning_rate": 0.0006, + "loss": 3.7724897861480713, + "step": 2282 + }, + { + "epoch": 31.712975098296198, + "grad_norm": 0.18533185124397278, + "learning_rate": 0.0006, + "loss": 3.7556838989257812, + "step": 2283 + }, + { + "epoch": 31.72695500218436, + "grad_norm": 0.20079447329044342, + "learning_rate": 0.0006, + "loss": 3.76758074760437, + "step": 2284 + }, + { + "epoch": 31.74093490607252, + "grad_norm": 0.2103433609008789, + "learning_rate": 0.0006, + "loss": 3.769477367401123, + "step": 2285 + }, + { + "epoch": 31.75491480996068, + "grad_norm": 0.21428923308849335, + "learning_rate": 0.0006, + "loss": 3.7317447662353516, + "step": 2286 + }, + { + "epoch": 31.76889471384884, + "grad_norm": 0.20154133439064026, + "learning_rate": 0.0006, + "loss": 3.749814987182617, + "step": 2287 + }, + { + "epoch": 31.782874617737004, + "grad_norm": 0.18998542428016663, + "learning_rate": 0.0006, + "loss": 3.7655510902404785, + "step": 2288 + }, + { + "epoch": 31.796854521625164, + "grad_norm": 0.2068665474653244, + "learning_rate": 0.0006, + "loss": 3.7375988960266113, + "step": 2289 + }, + { + "epoch": 31.810834425513324, + "grad_norm": 0.22979815304279327, + "learning_rate": 0.0006, + "loss": 3.728095531463623, + "step": 2290 + }, + { + "epoch": 31.824814329401484, + "grad_norm": 0.2378212958574295, + "learning_rate": 0.0006, + "loss": 3.73091459274292, + "step": 2291 + }, + { + "epoch": 31.838794233289647, + "grad_norm": 0.2353672832250595, + "learning_rate": 0.0006, + "loss": 3.7491769790649414, + "step": 2292 + }, + { + "epoch": 31.852774137177807, + "grad_norm": 0.22341586649417877, + "learning_rate": 0.0006, + "loss": 3.777111530303955, + "step": 2293 + }, + { + "epoch": 31.866754041065967, + "grad_norm": 0.20436930656433105, + "learning_rate": 0.0006, + "loss": 3.740997552871704, + "step": 2294 + }, + { + "epoch": 31.88073394495413, + "grad_norm": 0.20836040377616882, + "learning_rate": 0.0006, + "loss": 3.755582571029663, + "step": 2295 + }, + { + "epoch": 31.89471384884229, + "grad_norm": 0.2045193612575531, + "learning_rate": 0.0006, + "loss": 3.7583560943603516, + "step": 2296 + }, + { + "epoch": 31.90869375273045, + "grad_norm": 0.2025591880083084, + "learning_rate": 0.0006, + "loss": 3.773345470428467, + "step": 2297 + }, + { + "epoch": 31.92267365661861, + "grad_norm": 0.20309099555015564, + "learning_rate": 0.0006, + "loss": 3.7392163276672363, + "step": 2298 + }, + { + "epoch": 31.936653560506773, + "grad_norm": 0.2129351645708084, + "learning_rate": 0.0006, + "loss": 3.7801311016082764, + "step": 2299 + }, + { + "epoch": 31.950633464394933, + "grad_norm": 0.19950738549232483, + "learning_rate": 0.0006, + "loss": 3.779261589050293, + "step": 2300 + }, + { + "epoch": 31.964613368283093, + "grad_norm": 0.22837352752685547, + "learning_rate": 0.0006, + "loss": 3.782731294631958, + "step": 2301 + }, + { + "epoch": 31.978593272171253, + "grad_norm": 0.2576889097690582, + "learning_rate": 0.0006, + "loss": 3.7778096199035645, + "step": 2302 + }, + { + "epoch": 31.992573176059416, + "grad_norm": 0.2770138382911682, + "learning_rate": 0.0006, + "loss": 3.735755443572998, + "step": 2303 + }, + { + "epoch": 32.0, + "grad_norm": 0.2632865309715271, + "learning_rate": 0.0006, + "loss": 3.7562808990478516, + "step": 2304 + }, + { + "epoch": 32.0, + "eval_loss": 4.031628608703613, + "eval_runtime": 44.2115, + "eval_samples_per_second": 55.234, + "eval_steps_per_second": 3.461, + "step": 2304 + }, + { + "epoch": 32.01397990388816, + "grad_norm": 0.20234128832817078, + "learning_rate": 0.0006, + "loss": 3.734489917755127, + "step": 2305 + }, + { + "epoch": 32.02795980777632, + "grad_norm": 0.24983637034893036, + "learning_rate": 0.0006, + "loss": 3.7351019382476807, + "step": 2306 + }, + { + "epoch": 32.04193971166448, + "grad_norm": 0.27358478307724, + "learning_rate": 0.0006, + "loss": 3.708712100982666, + "step": 2307 + }, + { + "epoch": 32.05591961555265, + "grad_norm": 0.24693739414215088, + "learning_rate": 0.0006, + "loss": 3.731858491897583, + "step": 2308 + }, + { + "epoch": 32.0698995194408, + "grad_norm": 0.22751131653785706, + "learning_rate": 0.0006, + "loss": 3.7074670791625977, + "step": 2309 + }, + { + "epoch": 32.083879423328966, + "grad_norm": 0.23400720953941345, + "learning_rate": 0.0006, + "loss": 3.714092493057251, + "step": 2310 + }, + { + "epoch": 32.09785932721712, + "grad_norm": 0.20711684226989746, + "learning_rate": 0.0006, + "loss": 3.754727840423584, + "step": 2311 + }, + { + "epoch": 32.111839231105286, + "grad_norm": 0.21589399874210358, + "learning_rate": 0.0006, + "loss": 3.6953847408294678, + "step": 2312 + }, + { + "epoch": 32.12581913499345, + "grad_norm": 0.24575738608837128, + "learning_rate": 0.0006, + "loss": 3.7078802585601807, + "step": 2313 + }, + { + "epoch": 32.139799038881605, + "grad_norm": 0.23152033984661102, + "learning_rate": 0.0006, + "loss": 3.7402305603027344, + "step": 2314 + }, + { + "epoch": 32.15377894276977, + "grad_norm": 0.22639606893062592, + "learning_rate": 0.0006, + "loss": 3.7264223098754883, + "step": 2315 + }, + { + "epoch": 32.16775884665793, + "grad_norm": 0.24701760709285736, + "learning_rate": 0.0006, + "loss": 3.7497639656066895, + "step": 2316 + }, + { + "epoch": 32.18173875054609, + "grad_norm": 0.274832159280777, + "learning_rate": 0.0006, + "loss": 3.7557122707366943, + "step": 2317 + }, + { + "epoch": 32.19571865443425, + "grad_norm": 0.27472418546676636, + "learning_rate": 0.0006, + "loss": 3.6863393783569336, + "step": 2318 + }, + { + "epoch": 32.20969855832241, + "grad_norm": 0.2625530958175659, + "learning_rate": 0.0006, + "loss": 3.7203545570373535, + "step": 2319 + }, + { + "epoch": 32.22367846221057, + "grad_norm": 0.2576068341732025, + "learning_rate": 0.0006, + "loss": 3.734747886657715, + "step": 2320 + }, + { + "epoch": 32.237658366098735, + "grad_norm": 0.25946059823036194, + "learning_rate": 0.0006, + "loss": 3.7501730918884277, + "step": 2321 + }, + { + "epoch": 32.25163826998689, + "grad_norm": 0.2524135410785675, + "learning_rate": 0.0006, + "loss": 3.75177001953125, + "step": 2322 + }, + { + "epoch": 32.265618173875055, + "grad_norm": 0.2568551003932953, + "learning_rate": 0.0006, + "loss": 3.752450704574585, + "step": 2323 + }, + { + "epoch": 32.27959807776322, + "grad_norm": 0.2489749640226364, + "learning_rate": 0.0006, + "loss": 3.711735486984253, + "step": 2324 + }, + { + "epoch": 32.293577981651374, + "grad_norm": 0.2425498366355896, + "learning_rate": 0.0006, + "loss": 3.7004239559173584, + "step": 2325 + }, + { + "epoch": 32.30755788553954, + "grad_norm": 0.24359773099422455, + "learning_rate": 0.0006, + "loss": 3.733870029449463, + "step": 2326 + }, + { + "epoch": 32.3215377894277, + "grad_norm": 0.22314727306365967, + "learning_rate": 0.0006, + "loss": 3.699841022491455, + "step": 2327 + }, + { + "epoch": 32.33551769331586, + "grad_norm": 0.2047620266675949, + "learning_rate": 0.0006, + "loss": 3.732534170150757, + "step": 2328 + }, + { + "epoch": 32.34949759720402, + "grad_norm": 0.24393224716186523, + "learning_rate": 0.0006, + "loss": 3.7200770378112793, + "step": 2329 + }, + { + "epoch": 32.36347750109218, + "grad_norm": 0.23884256184101105, + "learning_rate": 0.0006, + "loss": 3.722318410873413, + "step": 2330 + }, + { + "epoch": 32.37745740498034, + "grad_norm": 0.23262189328670502, + "learning_rate": 0.0006, + "loss": 3.759033203125, + "step": 2331 + }, + { + "epoch": 32.391437308868504, + "grad_norm": 0.22542893886566162, + "learning_rate": 0.0006, + "loss": 3.729198694229126, + "step": 2332 + }, + { + "epoch": 32.40541721275666, + "grad_norm": 0.22479060292243958, + "learning_rate": 0.0006, + "loss": 3.7298169136047363, + "step": 2333 + }, + { + "epoch": 32.419397116644824, + "grad_norm": 0.21571804583072662, + "learning_rate": 0.0006, + "loss": 3.699937343597412, + "step": 2334 + }, + { + "epoch": 32.43337702053299, + "grad_norm": 0.20804545283317566, + "learning_rate": 0.0006, + "loss": 3.7495696544647217, + "step": 2335 + }, + { + "epoch": 32.44735692442114, + "grad_norm": 0.22751706838607788, + "learning_rate": 0.0006, + "loss": 3.7369821071624756, + "step": 2336 + }, + { + "epoch": 32.46133682830931, + "grad_norm": 0.2326795756816864, + "learning_rate": 0.0006, + "loss": 3.7636334896087646, + "step": 2337 + }, + { + "epoch": 32.47531673219746, + "grad_norm": 0.19971159100532532, + "learning_rate": 0.0006, + "loss": 3.72151517868042, + "step": 2338 + }, + { + "epoch": 32.489296636085626, + "grad_norm": 0.21078036725521088, + "learning_rate": 0.0006, + "loss": 3.7050065994262695, + "step": 2339 + }, + { + "epoch": 32.50327653997379, + "grad_norm": 0.22198088467121124, + "learning_rate": 0.0006, + "loss": 3.7654409408569336, + "step": 2340 + }, + { + "epoch": 32.517256443861946, + "grad_norm": 0.20995207130908966, + "learning_rate": 0.0006, + "loss": 3.7516250610351562, + "step": 2341 + }, + { + "epoch": 32.53123634775011, + "grad_norm": 0.20757141709327698, + "learning_rate": 0.0006, + "loss": 3.7412633895874023, + "step": 2342 + }, + { + "epoch": 32.54521625163827, + "grad_norm": 0.20053881406784058, + "learning_rate": 0.0006, + "loss": 3.7477493286132812, + "step": 2343 + }, + { + "epoch": 32.55919615552643, + "grad_norm": 0.20223091542720795, + "learning_rate": 0.0006, + "loss": 3.7149064540863037, + "step": 2344 + }, + { + "epoch": 32.57317605941459, + "grad_norm": 0.20179468393325806, + "learning_rate": 0.0006, + "loss": 3.70635724067688, + "step": 2345 + }, + { + "epoch": 32.58715596330275, + "grad_norm": 0.19670480489730835, + "learning_rate": 0.0006, + "loss": 3.7276744842529297, + "step": 2346 + }, + { + "epoch": 32.60113586719091, + "grad_norm": 0.1992012858390808, + "learning_rate": 0.0006, + "loss": 3.7659356594085693, + "step": 2347 + }, + { + "epoch": 32.615115771079076, + "grad_norm": 0.20124201476573944, + "learning_rate": 0.0006, + "loss": 3.722212791442871, + "step": 2348 + }, + { + "epoch": 32.62909567496723, + "grad_norm": 0.21972708404064178, + "learning_rate": 0.0006, + "loss": 3.751830577850342, + "step": 2349 + }, + { + "epoch": 32.643075578855395, + "grad_norm": 0.20454947650432587, + "learning_rate": 0.0006, + "loss": 3.7196669578552246, + "step": 2350 + }, + { + "epoch": 32.65705548274356, + "grad_norm": 0.1783330887556076, + "learning_rate": 0.0006, + "loss": 3.721461772918701, + "step": 2351 + }, + { + "epoch": 32.671035386631715, + "grad_norm": 0.2027900367975235, + "learning_rate": 0.0006, + "loss": 3.753718614578247, + "step": 2352 + }, + { + "epoch": 32.68501529051988, + "grad_norm": 0.21232381463050842, + "learning_rate": 0.0006, + "loss": 3.732736349105835, + "step": 2353 + }, + { + "epoch": 32.69899519440804, + "grad_norm": 0.2214568555355072, + "learning_rate": 0.0006, + "loss": 3.7250165939331055, + "step": 2354 + }, + { + "epoch": 32.7129750982962, + "grad_norm": 0.2626485228538513, + "learning_rate": 0.0006, + "loss": 3.72263503074646, + "step": 2355 + }, + { + "epoch": 32.72695500218436, + "grad_norm": 0.30096277594566345, + "learning_rate": 0.0006, + "loss": 3.7599854469299316, + "step": 2356 + }, + { + "epoch": 32.74093490607252, + "grad_norm": 0.3374342620372772, + "learning_rate": 0.0006, + "loss": 3.7493844032287598, + "step": 2357 + }, + { + "epoch": 32.75491480996068, + "grad_norm": 0.3051377534866333, + "learning_rate": 0.0006, + "loss": 3.7515692710876465, + "step": 2358 + }, + { + "epoch": 32.768894713848844, + "grad_norm": 0.2130587249994278, + "learning_rate": 0.0006, + "loss": 3.751307964324951, + "step": 2359 + }, + { + "epoch": 32.782874617737, + "grad_norm": 0.25198230147361755, + "learning_rate": 0.0006, + "loss": 3.7500064373016357, + "step": 2360 + }, + { + "epoch": 32.796854521625164, + "grad_norm": 0.27613863348960876, + "learning_rate": 0.0006, + "loss": 3.7257039546966553, + "step": 2361 + }, + { + "epoch": 32.81083442551333, + "grad_norm": 0.23749367892742157, + "learning_rate": 0.0006, + "loss": 3.778343439102173, + "step": 2362 + }, + { + "epoch": 32.824814329401484, + "grad_norm": 0.2063702642917633, + "learning_rate": 0.0006, + "loss": 3.7493772506713867, + "step": 2363 + }, + { + "epoch": 32.83879423328965, + "grad_norm": 0.21169374883174896, + "learning_rate": 0.0006, + "loss": 3.722567081451416, + "step": 2364 + }, + { + "epoch": 32.8527741371778, + "grad_norm": 0.23291490972042084, + "learning_rate": 0.0006, + "loss": 3.7555532455444336, + "step": 2365 + }, + { + "epoch": 32.86675404106597, + "grad_norm": 0.21486155688762665, + "learning_rate": 0.0006, + "loss": 3.7401528358459473, + "step": 2366 + }, + { + "epoch": 32.88073394495413, + "grad_norm": 0.2296247035264969, + "learning_rate": 0.0006, + "loss": 3.7867965698242188, + "step": 2367 + }, + { + "epoch": 32.89471384884229, + "grad_norm": 0.2335108071565628, + "learning_rate": 0.0006, + "loss": 3.768036365509033, + "step": 2368 + }, + { + "epoch": 32.90869375273045, + "grad_norm": 0.23921863734722137, + "learning_rate": 0.0006, + "loss": 3.725252151489258, + "step": 2369 + }, + { + "epoch": 32.92267365661861, + "grad_norm": 0.20303526520729065, + "learning_rate": 0.0006, + "loss": 3.7806248664855957, + "step": 2370 + }, + { + "epoch": 32.93665356050677, + "grad_norm": 0.19293150305747986, + "learning_rate": 0.0006, + "loss": 3.759281873703003, + "step": 2371 + }, + { + "epoch": 32.95063346439493, + "grad_norm": 0.20609107613563538, + "learning_rate": 0.0006, + "loss": 3.764190196990967, + "step": 2372 + }, + { + "epoch": 32.964613368283096, + "grad_norm": 0.2014189213514328, + "learning_rate": 0.0006, + "loss": 3.7365214824676514, + "step": 2373 + }, + { + "epoch": 32.97859327217125, + "grad_norm": 0.22045451402664185, + "learning_rate": 0.0006, + "loss": 3.7435812950134277, + "step": 2374 + }, + { + "epoch": 32.992573176059416, + "grad_norm": 0.24228639900684357, + "learning_rate": 0.0006, + "loss": 3.751309394836426, + "step": 2375 + }, + { + "epoch": 33.0, + "grad_norm": 0.2645106613636017, + "learning_rate": 0.0006, + "loss": 3.7629928588867188, + "step": 2376 + }, + { + "epoch": 33.0, + "eval_loss": 4.026789665222168, + "eval_runtime": 44.9957, + "eval_samples_per_second": 54.272, + "eval_steps_per_second": 3.4, + "step": 2376 + }, + { + "epoch": 33.01397990388816, + "grad_norm": 0.21402551233768463, + "learning_rate": 0.0006, + "loss": 3.72019100189209, + "step": 2377 + }, + { + "epoch": 33.02795980777632, + "grad_norm": 0.23886585235595703, + "learning_rate": 0.0006, + "loss": 3.687084674835205, + "step": 2378 + }, + { + "epoch": 33.04193971166448, + "grad_norm": 0.29936572909355164, + "learning_rate": 0.0006, + "loss": 3.697310447692871, + "step": 2379 + }, + { + "epoch": 33.05591961555265, + "grad_norm": 0.30007585883140564, + "learning_rate": 0.0006, + "loss": 3.6913352012634277, + "step": 2380 + }, + { + "epoch": 33.0698995194408, + "grad_norm": 0.26594656705856323, + "learning_rate": 0.0006, + "loss": 3.740802526473999, + "step": 2381 + }, + { + "epoch": 33.083879423328966, + "grad_norm": 0.2658730447292328, + "learning_rate": 0.0006, + "loss": 3.692746162414551, + "step": 2382 + }, + { + "epoch": 33.09785932721712, + "grad_norm": 0.26755523681640625, + "learning_rate": 0.0006, + "loss": 3.7534420490264893, + "step": 2383 + }, + { + "epoch": 33.111839231105286, + "grad_norm": 0.23070940375328064, + "learning_rate": 0.0006, + "loss": 3.717876672744751, + "step": 2384 + }, + { + "epoch": 33.12581913499345, + "grad_norm": 0.2476235181093216, + "learning_rate": 0.0006, + "loss": 3.7072248458862305, + "step": 2385 + }, + { + "epoch": 33.139799038881605, + "grad_norm": 0.2454477846622467, + "learning_rate": 0.0006, + "loss": 3.729762077331543, + "step": 2386 + }, + { + "epoch": 33.15377894276977, + "grad_norm": 0.24090935289859772, + "learning_rate": 0.0006, + "loss": 3.721374988555908, + "step": 2387 + }, + { + "epoch": 33.16775884665793, + "grad_norm": 0.2440263032913208, + "learning_rate": 0.0006, + "loss": 3.730433464050293, + "step": 2388 + }, + { + "epoch": 33.18173875054609, + "grad_norm": 0.21699118614196777, + "learning_rate": 0.0006, + "loss": 3.724730968475342, + "step": 2389 + }, + { + "epoch": 33.19571865443425, + "grad_norm": 0.2302001267671585, + "learning_rate": 0.0006, + "loss": 3.69376277923584, + "step": 2390 + }, + { + "epoch": 33.20969855832241, + "grad_norm": 0.24707409739494324, + "learning_rate": 0.0006, + "loss": 3.705653667449951, + "step": 2391 + }, + { + "epoch": 33.22367846221057, + "grad_norm": 0.22896641492843628, + "learning_rate": 0.0006, + "loss": 3.747000217437744, + "step": 2392 + }, + { + "epoch": 33.237658366098735, + "grad_norm": 0.2278730720281601, + "learning_rate": 0.0006, + "loss": 3.733464241027832, + "step": 2393 + }, + { + "epoch": 33.25163826998689, + "grad_norm": 0.23909862339496613, + "learning_rate": 0.0006, + "loss": 3.733661413192749, + "step": 2394 + }, + { + "epoch": 33.265618173875055, + "grad_norm": 0.2349950075149536, + "learning_rate": 0.0006, + "loss": 3.7337965965270996, + "step": 2395 + }, + { + "epoch": 33.27959807776322, + "grad_norm": 0.22655968368053436, + "learning_rate": 0.0006, + "loss": 3.70503306388855, + "step": 2396 + }, + { + "epoch": 33.293577981651374, + "grad_norm": 0.22167043387889862, + "learning_rate": 0.0006, + "loss": 3.738797903060913, + "step": 2397 + }, + { + "epoch": 33.30755788553954, + "grad_norm": 0.2278883010149002, + "learning_rate": 0.0006, + "loss": 3.712550640106201, + "step": 2398 + }, + { + "epoch": 33.3215377894277, + "grad_norm": 0.2220565229654312, + "learning_rate": 0.0006, + "loss": 3.7278006076812744, + "step": 2399 + }, + { + "epoch": 33.33551769331586, + "grad_norm": 0.21888740360736847, + "learning_rate": 0.0006, + "loss": 3.72243595123291, + "step": 2400 + }, + { + "epoch": 33.34949759720402, + "grad_norm": 0.21587581932544708, + "learning_rate": 0.0006, + "loss": 3.7177581787109375, + "step": 2401 + }, + { + "epoch": 33.36347750109218, + "grad_norm": 0.1923578530550003, + "learning_rate": 0.0006, + "loss": 3.711294651031494, + "step": 2402 + }, + { + "epoch": 33.37745740498034, + "grad_norm": 0.1994934380054474, + "learning_rate": 0.0006, + "loss": 3.762061595916748, + "step": 2403 + }, + { + "epoch": 33.391437308868504, + "grad_norm": 0.20074427127838135, + "learning_rate": 0.0006, + "loss": 3.708559036254883, + "step": 2404 + }, + { + "epoch": 33.40541721275666, + "grad_norm": 0.21349482238292694, + "learning_rate": 0.0006, + "loss": 3.7089147567749023, + "step": 2405 + }, + { + "epoch": 33.419397116644824, + "grad_norm": 0.25523608922958374, + "learning_rate": 0.0006, + "loss": 3.7241058349609375, + "step": 2406 + }, + { + "epoch": 33.43337702053299, + "grad_norm": 0.27654796838760376, + "learning_rate": 0.0006, + "loss": 3.723618984222412, + "step": 2407 + }, + { + "epoch": 33.44735692442114, + "grad_norm": 0.2651479244232178, + "learning_rate": 0.0006, + "loss": 3.7367782592773438, + "step": 2408 + }, + { + "epoch": 33.46133682830931, + "grad_norm": 0.23403556644916534, + "learning_rate": 0.0006, + "loss": 3.7198312282562256, + "step": 2409 + }, + { + "epoch": 33.47531673219746, + "grad_norm": 0.20970726013183594, + "learning_rate": 0.0006, + "loss": 3.7088186740875244, + "step": 2410 + }, + { + "epoch": 33.489296636085626, + "grad_norm": 0.18532544374465942, + "learning_rate": 0.0006, + "loss": 3.7162208557128906, + "step": 2411 + }, + { + "epoch": 33.50327653997379, + "grad_norm": 0.19590279459953308, + "learning_rate": 0.0006, + "loss": 3.766357898712158, + "step": 2412 + }, + { + "epoch": 33.517256443861946, + "grad_norm": 0.203349307179451, + "learning_rate": 0.0006, + "loss": 3.732177257537842, + "step": 2413 + }, + { + "epoch": 33.53123634775011, + "grad_norm": 0.2015952616930008, + "learning_rate": 0.0006, + "loss": 3.741609573364258, + "step": 2414 + }, + { + "epoch": 33.54521625163827, + "grad_norm": 0.20024161040782928, + "learning_rate": 0.0006, + "loss": 3.6894431114196777, + "step": 2415 + }, + { + "epoch": 33.55919615552643, + "grad_norm": 0.20932617783546448, + "learning_rate": 0.0006, + "loss": 3.721979856491089, + "step": 2416 + }, + { + "epoch": 33.57317605941459, + "grad_norm": 0.22069773077964783, + "learning_rate": 0.0006, + "loss": 3.712203025817871, + "step": 2417 + }, + { + "epoch": 33.58715596330275, + "grad_norm": 0.22341343760490417, + "learning_rate": 0.0006, + "loss": 3.7469263076782227, + "step": 2418 + }, + { + "epoch": 33.60113586719091, + "grad_norm": 0.21758507192134857, + "learning_rate": 0.0006, + "loss": 3.721778392791748, + "step": 2419 + }, + { + "epoch": 33.615115771079076, + "grad_norm": 0.20480088889598846, + "learning_rate": 0.0006, + "loss": 3.743570327758789, + "step": 2420 + }, + { + "epoch": 33.62909567496723, + "grad_norm": 0.23068399727344513, + "learning_rate": 0.0006, + "loss": 3.7203001976013184, + "step": 2421 + }, + { + "epoch": 33.643075578855395, + "grad_norm": 0.2526263892650604, + "learning_rate": 0.0006, + "loss": 3.7336440086364746, + "step": 2422 + }, + { + "epoch": 33.65705548274356, + "grad_norm": 0.218627467751503, + "learning_rate": 0.0006, + "loss": 3.730762243270874, + "step": 2423 + }, + { + "epoch": 33.671035386631715, + "grad_norm": 0.21883417665958405, + "learning_rate": 0.0006, + "loss": 3.749356508255005, + "step": 2424 + }, + { + "epoch": 33.68501529051988, + "grad_norm": 0.22885626554489136, + "learning_rate": 0.0006, + "loss": 3.7426199913024902, + "step": 2425 + }, + { + "epoch": 33.69899519440804, + "grad_norm": 0.23709580302238464, + "learning_rate": 0.0006, + "loss": 3.691652774810791, + "step": 2426 + }, + { + "epoch": 33.7129750982962, + "grad_norm": 0.2258225381374359, + "learning_rate": 0.0006, + "loss": 3.7368886470794678, + "step": 2427 + }, + { + "epoch": 33.72695500218436, + "grad_norm": 0.1993306577205658, + "learning_rate": 0.0006, + "loss": 3.722733497619629, + "step": 2428 + }, + { + "epoch": 33.74093490607252, + "grad_norm": 0.20307473838329315, + "learning_rate": 0.0006, + "loss": 3.7507500648498535, + "step": 2429 + }, + { + "epoch": 33.75491480996068, + "grad_norm": 0.20076696574687958, + "learning_rate": 0.0006, + "loss": 3.6896910667419434, + "step": 2430 + }, + { + "epoch": 33.768894713848844, + "grad_norm": 0.21118830144405365, + "learning_rate": 0.0006, + "loss": 3.7176647186279297, + "step": 2431 + }, + { + "epoch": 33.782874617737, + "grad_norm": 0.21605782210826874, + "learning_rate": 0.0006, + "loss": 3.7423641681671143, + "step": 2432 + }, + { + "epoch": 33.796854521625164, + "grad_norm": 0.22233152389526367, + "learning_rate": 0.0006, + "loss": 3.7296109199523926, + "step": 2433 + }, + { + "epoch": 33.81083442551333, + "grad_norm": 0.2253616899251938, + "learning_rate": 0.0006, + "loss": 3.7095072269439697, + "step": 2434 + }, + { + "epoch": 33.824814329401484, + "grad_norm": 0.2105807662010193, + "learning_rate": 0.0006, + "loss": 3.760921001434326, + "step": 2435 + }, + { + "epoch": 33.83879423328965, + "grad_norm": 0.20413213968276978, + "learning_rate": 0.0006, + "loss": 3.7356553077697754, + "step": 2436 + }, + { + "epoch": 33.8527741371778, + "grad_norm": 0.19781213998794556, + "learning_rate": 0.0006, + "loss": 3.726787567138672, + "step": 2437 + }, + { + "epoch": 33.86675404106597, + "grad_norm": 0.199616938829422, + "learning_rate": 0.0006, + "loss": 3.7200419902801514, + "step": 2438 + }, + { + "epoch": 33.88073394495413, + "grad_norm": 0.19702564179897308, + "learning_rate": 0.0006, + "loss": 3.714287281036377, + "step": 2439 + }, + { + "epoch": 33.89471384884229, + "grad_norm": 0.19456833600997925, + "learning_rate": 0.0006, + "loss": 3.739231586456299, + "step": 2440 + }, + { + "epoch": 33.90869375273045, + "grad_norm": 0.1890697181224823, + "learning_rate": 0.0006, + "loss": 3.7088429927825928, + "step": 2441 + }, + { + "epoch": 33.92267365661861, + "grad_norm": 0.1845911741256714, + "learning_rate": 0.0006, + "loss": 3.760782241821289, + "step": 2442 + }, + { + "epoch": 33.93665356050677, + "grad_norm": 0.19045902788639069, + "learning_rate": 0.0006, + "loss": 3.736957311630249, + "step": 2443 + }, + { + "epoch": 33.95063346439493, + "grad_norm": 0.1934187412261963, + "learning_rate": 0.0006, + "loss": 3.756351947784424, + "step": 2444 + }, + { + "epoch": 33.964613368283096, + "grad_norm": 0.19774580001831055, + "learning_rate": 0.0006, + "loss": 3.7332229614257812, + "step": 2445 + }, + { + "epoch": 33.97859327217125, + "grad_norm": 0.20653048157691956, + "learning_rate": 0.0006, + "loss": 3.7112321853637695, + "step": 2446 + }, + { + "epoch": 33.992573176059416, + "grad_norm": 0.18618541955947876, + "learning_rate": 0.0006, + "loss": 3.735710620880127, + "step": 2447 + }, + { + "epoch": 34.0, + "grad_norm": 0.22846414148807526, + "learning_rate": 0.0006, + "loss": 3.739706039428711, + "step": 2448 + }, + { + "epoch": 34.0, + "eval_loss": 4.0099663734436035, + "eval_runtime": 45.2096, + "eval_samples_per_second": 54.015, + "eval_steps_per_second": 3.384, + "step": 2448 + }, + { + "epoch": 34.01397990388816, + "grad_norm": 0.20987462997436523, + "learning_rate": 0.0006, + "loss": 3.6798832416534424, + "step": 2449 + }, + { + "epoch": 34.02795980777632, + "grad_norm": 0.2230423390865326, + "learning_rate": 0.0006, + "loss": 3.7157368659973145, + "step": 2450 + }, + { + "epoch": 34.04193971166448, + "grad_norm": 0.24115242063999176, + "learning_rate": 0.0006, + "loss": 3.696037769317627, + "step": 2451 + }, + { + "epoch": 34.05591961555265, + "grad_norm": 0.24499665200710297, + "learning_rate": 0.0006, + "loss": 3.695420742034912, + "step": 2452 + }, + { + "epoch": 34.0698995194408, + "grad_norm": 0.23336757719516754, + "learning_rate": 0.0006, + "loss": 3.7252023220062256, + "step": 2453 + }, + { + "epoch": 34.083879423328966, + "grad_norm": 0.23716159164905548, + "learning_rate": 0.0006, + "loss": 3.714542865753174, + "step": 2454 + }, + { + "epoch": 34.09785932721712, + "grad_norm": 0.2305644154548645, + "learning_rate": 0.0006, + "loss": 3.6989386081695557, + "step": 2455 + }, + { + "epoch": 34.111839231105286, + "grad_norm": 0.2281671017408371, + "learning_rate": 0.0006, + "loss": 3.6952829360961914, + "step": 2456 + }, + { + "epoch": 34.12581913499345, + "grad_norm": 0.21031132340431213, + "learning_rate": 0.0006, + "loss": 3.7337589263916016, + "step": 2457 + }, + { + "epoch": 34.139799038881605, + "grad_norm": 0.2233671098947525, + "learning_rate": 0.0006, + "loss": 3.6923675537109375, + "step": 2458 + }, + { + "epoch": 34.15377894276977, + "grad_norm": 0.22766625881195068, + "learning_rate": 0.0006, + "loss": 3.70849609375, + "step": 2459 + }, + { + "epoch": 34.16775884665793, + "grad_norm": 0.22433766722679138, + "learning_rate": 0.0006, + "loss": 3.718319892883301, + "step": 2460 + }, + { + "epoch": 34.18173875054609, + "grad_norm": 0.20621491968631744, + "learning_rate": 0.0006, + "loss": 3.6874704360961914, + "step": 2461 + }, + { + "epoch": 34.19571865443425, + "grad_norm": 0.21353304386138916, + "learning_rate": 0.0006, + "loss": 3.663358688354492, + "step": 2462 + }, + { + "epoch": 34.20969855832241, + "grad_norm": 0.20652951300144196, + "learning_rate": 0.0006, + "loss": 3.718107223510742, + "step": 2463 + }, + { + "epoch": 34.22367846221057, + "grad_norm": 0.19780176877975464, + "learning_rate": 0.0006, + "loss": 3.7255396842956543, + "step": 2464 + }, + { + "epoch": 34.237658366098735, + "grad_norm": 0.20636138319969177, + "learning_rate": 0.0006, + "loss": 3.696850538253784, + "step": 2465 + }, + { + "epoch": 34.25163826998689, + "grad_norm": 0.23691460490226746, + "learning_rate": 0.0006, + "loss": 3.687997341156006, + "step": 2466 + }, + { + "epoch": 34.265618173875055, + "grad_norm": 0.2380511611700058, + "learning_rate": 0.0006, + "loss": 3.716610908508301, + "step": 2467 + }, + { + "epoch": 34.27959807776322, + "grad_norm": 0.21508945524692535, + "learning_rate": 0.0006, + "loss": 3.6993470191955566, + "step": 2468 + }, + { + "epoch": 34.293577981651374, + "grad_norm": 0.20441125333309174, + "learning_rate": 0.0006, + "loss": 3.7194275856018066, + "step": 2469 + }, + { + "epoch": 34.30755788553954, + "grad_norm": 0.19704242050647736, + "learning_rate": 0.0006, + "loss": 3.675929546356201, + "step": 2470 + }, + { + "epoch": 34.3215377894277, + "grad_norm": 0.1918456256389618, + "learning_rate": 0.0006, + "loss": 3.7189574241638184, + "step": 2471 + }, + { + "epoch": 34.33551769331586, + "grad_norm": 0.19687092304229736, + "learning_rate": 0.0006, + "loss": 3.725809335708618, + "step": 2472 + }, + { + "epoch": 34.34949759720402, + "grad_norm": 0.2048639953136444, + "learning_rate": 0.0006, + "loss": 3.7461748123168945, + "step": 2473 + }, + { + "epoch": 34.36347750109218, + "grad_norm": 0.21086618304252625, + "learning_rate": 0.0006, + "loss": 3.6849746704101562, + "step": 2474 + }, + { + "epoch": 34.37745740498034, + "grad_norm": 0.2172154039144516, + "learning_rate": 0.0006, + "loss": 3.7379322052001953, + "step": 2475 + }, + { + "epoch": 34.391437308868504, + "grad_norm": 0.22725504636764526, + "learning_rate": 0.0006, + "loss": 3.7341527938842773, + "step": 2476 + }, + { + "epoch": 34.40541721275666, + "grad_norm": 0.22309242188930511, + "learning_rate": 0.0006, + "loss": 3.724946975708008, + "step": 2477 + }, + { + "epoch": 34.419397116644824, + "grad_norm": 0.25252285599708557, + "learning_rate": 0.0006, + "loss": 3.710257053375244, + "step": 2478 + }, + { + "epoch": 34.43337702053299, + "grad_norm": 0.2549746334552765, + "learning_rate": 0.0006, + "loss": 3.7105040550231934, + "step": 2479 + }, + { + "epoch": 34.44735692442114, + "grad_norm": 0.22544030845165253, + "learning_rate": 0.0006, + "loss": 3.7340707778930664, + "step": 2480 + }, + { + "epoch": 34.46133682830931, + "grad_norm": 0.22275063395500183, + "learning_rate": 0.0006, + "loss": 3.7141473293304443, + "step": 2481 + }, + { + "epoch": 34.47531673219746, + "grad_norm": 0.25373485684394836, + "learning_rate": 0.0006, + "loss": 3.7014691829681396, + "step": 2482 + }, + { + "epoch": 34.489296636085626, + "grad_norm": 0.2573327124118805, + "learning_rate": 0.0006, + "loss": 3.682562828063965, + "step": 2483 + }, + { + "epoch": 34.50327653997379, + "grad_norm": 0.2452341616153717, + "learning_rate": 0.0006, + "loss": 3.757261276245117, + "step": 2484 + }, + { + "epoch": 34.517256443861946, + "grad_norm": 0.2477131187915802, + "learning_rate": 0.0006, + "loss": 3.7216877937316895, + "step": 2485 + }, + { + "epoch": 34.53123634775011, + "grad_norm": 0.24740098416805267, + "learning_rate": 0.0006, + "loss": 3.705704927444458, + "step": 2486 + }, + { + "epoch": 34.54521625163827, + "grad_norm": 0.27306219935417175, + "learning_rate": 0.0006, + "loss": 3.7014641761779785, + "step": 2487 + }, + { + "epoch": 34.55919615552643, + "grad_norm": 0.26376286149024963, + "learning_rate": 0.0006, + "loss": 3.686056137084961, + "step": 2488 + }, + { + "epoch": 34.57317605941459, + "grad_norm": 0.2796899378299713, + "learning_rate": 0.0006, + "loss": 3.7171077728271484, + "step": 2489 + }, + { + "epoch": 34.58715596330275, + "grad_norm": 0.24279902875423431, + "learning_rate": 0.0006, + "loss": 3.7448348999023438, + "step": 2490 + }, + { + "epoch": 34.60113586719091, + "grad_norm": 0.22772833704948425, + "learning_rate": 0.0006, + "loss": 3.7028117179870605, + "step": 2491 + }, + { + "epoch": 34.615115771079076, + "grad_norm": 0.22157910466194153, + "learning_rate": 0.0006, + "loss": 3.750023603439331, + "step": 2492 + }, + { + "epoch": 34.62909567496723, + "grad_norm": 0.24342703819274902, + "learning_rate": 0.0006, + "loss": 3.7181010246276855, + "step": 2493 + }, + { + "epoch": 34.643075578855395, + "grad_norm": 0.2554340362548828, + "learning_rate": 0.0006, + "loss": 3.6994080543518066, + "step": 2494 + }, + { + "epoch": 34.65705548274356, + "grad_norm": 0.21296930313110352, + "learning_rate": 0.0006, + "loss": 3.7534523010253906, + "step": 2495 + }, + { + "epoch": 34.671035386631715, + "grad_norm": 0.19117674231529236, + "learning_rate": 0.0006, + "loss": 3.7267889976501465, + "step": 2496 + }, + { + "epoch": 34.68501529051988, + "grad_norm": 0.2306399643421173, + "learning_rate": 0.0006, + "loss": 3.723212242126465, + "step": 2497 + }, + { + "epoch": 34.69899519440804, + "grad_norm": 0.23063263297080994, + "learning_rate": 0.0006, + "loss": 3.730070114135742, + "step": 2498 + }, + { + "epoch": 34.7129750982962, + "grad_norm": 0.19422881305217743, + "learning_rate": 0.0006, + "loss": 3.694833755493164, + "step": 2499 + }, + { + "epoch": 34.72695500218436, + "grad_norm": 0.20246362686157227, + "learning_rate": 0.0006, + "loss": 3.71140718460083, + "step": 2500 + }, + { + "epoch": 34.74093490607252, + "grad_norm": 0.1942741572856903, + "learning_rate": 0.0006, + "loss": 3.7530534267425537, + "step": 2501 + }, + { + "epoch": 34.75491480996068, + "grad_norm": 0.19686029851436615, + "learning_rate": 0.0006, + "loss": 3.7059555053710938, + "step": 2502 + }, + { + "epoch": 34.768894713848844, + "grad_norm": 0.20120355486869812, + "learning_rate": 0.0006, + "loss": 3.7271084785461426, + "step": 2503 + }, + { + "epoch": 34.782874617737, + "grad_norm": 0.20880399644374847, + "learning_rate": 0.0006, + "loss": 3.712137460708618, + "step": 2504 + }, + { + "epoch": 34.796854521625164, + "grad_norm": 0.22139988839626312, + "learning_rate": 0.0006, + "loss": 3.731245517730713, + "step": 2505 + }, + { + "epoch": 34.81083442551333, + "grad_norm": 0.22756224870681763, + "learning_rate": 0.0006, + "loss": 3.708987236022949, + "step": 2506 + }, + { + "epoch": 34.824814329401484, + "grad_norm": 0.22332409024238586, + "learning_rate": 0.0006, + "loss": 3.7365565299987793, + "step": 2507 + }, + { + "epoch": 34.83879423328965, + "grad_norm": 0.19599054753780365, + "learning_rate": 0.0006, + "loss": 3.7266454696655273, + "step": 2508 + }, + { + "epoch": 34.8527741371778, + "grad_norm": 0.19843019545078278, + "learning_rate": 0.0006, + "loss": 3.7225422859191895, + "step": 2509 + }, + { + "epoch": 34.86675404106597, + "grad_norm": 0.20147928595542908, + "learning_rate": 0.0006, + "loss": 3.7282514572143555, + "step": 2510 + }, + { + "epoch": 34.88073394495413, + "grad_norm": 0.19489876925945282, + "learning_rate": 0.0006, + "loss": 3.694852113723755, + "step": 2511 + }, + { + "epoch": 34.89471384884229, + "grad_norm": 0.20680078864097595, + "learning_rate": 0.0006, + "loss": 3.74678635597229, + "step": 2512 + }, + { + "epoch": 34.90869375273045, + "grad_norm": 0.2233233004808426, + "learning_rate": 0.0006, + "loss": 3.726475238800049, + "step": 2513 + }, + { + "epoch": 34.92267365661861, + "grad_norm": 0.20702993869781494, + "learning_rate": 0.0006, + "loss": 3.6946351528167725, + "step": 2514 + }, + { + "epoch": 34.93665356050677, + "grad_norm": 0.2081725299358368, + "learning_rate": 0.0006, + "loss": 3.7101621627807617, + "step": 2515 + }, + { + "epoch": 34.95063346439493, + "grad_norm": 0.20551837980747223, + "learning_rate": 0.0006, + "loss": 3.7060177326202393, + "step": 2516 + }, + { + "epoch": 34.964613368283096, + "grad_norm": 0.2106839418411255, + "learning_rate": 0.0006, + "loss": 3.7460474967956543, + "step": 2517 + }, + { + "epoch": 34.97859327217125, + "grad_norm": 0.18512766063213348, + "learning_rate": 0.0006, + "loss": 3.719280242919922, + "step": 2518 + }, + { + "epoch": 34.992573176059416, + "grad_norm": 0.1802142709493637, + "learning_rate": 0.0006, + "loss": 3.698255777359009, + "step": 2519 + }, + { + "epoch": 35.0, + "grad_norm": 0.2028084248304367, + "learning_rate": 0.0006, + "loss": 3.711136817932129, + "step": 2520 + }, + { + "epoch": 35.0, + "eval_loss": 4.006688117980957, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 2520 + }, + { + "epoch": 35.01397990388816, + "grad_norm": 0.1973012387752533, + "learning_rate": 0.0006, + "loss": 3.7108325958251953, + "step": 2521 + }, + { + "epoch": 35.02795980777632, + "grad_norm": 0.23763646185398102, + "learning_rate": 0.0006, + "loss": 3.675785541534424, + "step": 2522 + }, + { + "epoch": 35.04193971166448, + "grad_norm": 0.24403199553489685, + "learning_rate": 0.0006, + "loss": 3.7034249305725098, + "step": 2523 + }, + { + "epoch": 35.05591961555265, + "grad_norm": 0.19050131738185883, + "learning_rate": 0.0006, + "loss": 3.6984221935272217, + "step": 2524 + }, + { + "epoch": 35.0698995194408, + "grad_norm": 0.21389710903167725, + "learning_rate": 0.0006, + "loss": 3.6641085147857666, + "step": 2525 + }, + { + "epoch": 35.083879423328966, + "grad_norm": 0.23103152215480804, + "learning_rate": 0.0006, + "loss": 3.722912311553955, + "step": 2526 + }, + { + "epoch": 35.09785932721712, + "grad_norm": 0.2197326272726059, + "learning_rate": 0.0006, + "loss": 3.696568727493286, + "step": 2527 + }, + { + "epoch": 35.111839231105286, + "grad_norm": 0.20877327024936676, + "learning_rate": 0.0006, + "loss": 3.666700601577759, + "step": 2528 + }, + { + "epoch": 35.12581913499345, + "grad_norm": 0.20904001593589783, + "learning_rate": 0.0006, + "loss": 3.6896979808807373, + "step": 2529 + }, + { + "epoch": 35.139799038881605, + "grad_norm": 0.1947423666715622, + "learning_rate": 0.0006, + "loss": 3.6647095680236816, + "step": 2530 + }, + { + "epoch": 35.15377894276977, + "grad_norm": 0.2134019434452057, + "learning_rate": 0.0006, + "loss": 3.696993589401245, + "step": 2531 + }, + { + "epoch": 35.16775884665793, + "grad_norm": 0.2299254685640335, + "learning_rate": 0.0006, + "loss": 3.7067925930023193, + "step": 2532 + }, + { + "epoch": 35.18173875054609, + "grad_norm": 0.219585582613945, + "learning_rate": 0.0006, + "loss": 3.6680960655212402, + "step": 2533 + }, + { + "epoch": 35.19571865443425, + "grad_norm": 0.2146025449037552, + "learning_rate": 0.0006, + "loss": 3.7185046672821045, + "step": 2534 + }, + { + "epoch": 35.20969855832241, + "grad_norm": 0.22748060524463654, + "learning_rate": 0.0006, + "loss": 3.659202814102173, + "step": 2535 + }, + { + "epoch": 35.22367846221057, + "grad_norm": 0.22272273898124695, + "learning_rate": 0.0006, + "loss": 3.7002370357513428, + "step": 2536 + }, + { + "epoch": 35.237658366098735, + "grad_norm": 0.23827379941940308, + "learning_rate": 0.0006, + "loss": 3.714664936065674, + "step": 2537 + }, + { + "epoch": 35.25163826998689, + "grad_norm": 0.2328156679868698, + "learning_rate": 0.0006, + "loss": 3.665173292160034, + "step": 2538 + }, + { + "epoch": 35.265618173875055, + "grad_norm": 0.2573475241661072, + "learning_rate": 0.0006, + "loss": 3.7073206901550293, + "step": 2539 + }, + { + "epoch": 35.27959807776322, + "grad_norm": 0.2411472052335739, + "learning_rate": 0.0006, + "loss": 3.697751045227051, + "step": 2540 + }, + { + "epoch": 35.293577981651374, + "grad_norm": 0.22836148738861084, + "learning_rate": 0.0006, + "loss": 3.7219419479370117, + "step": 2541 + }, + { + "epoch": 35.30755788553954, + "grad_norm": 0.2225421667098999, + "learning_rate": 0.0006, + "loss": 3.69516658782959, + "step": 2542 + }, + { + "epoch": 35.3215377894277, + "grad_norm": 0.2180362343788147, + "learning_rate": 0.0006, + "loss": 3.714043378829956, + "step": 2543 + }, + { + "epoch": 35.33551769331586, + "grad_norm": 0.23638299107551575, + "learning_rate": 0.0006, + "loss": 3.7449421882629395, + "step": 2544 + }, + { + "epoch": 35.34949759720402, + "grad_norm": 0.21792089939117432, + "learning_rate": 0.0006, + "loss": 3.7029948234558105, + "step": 2545 + }, + { + "epoch": 35.36347750109218, + "grad_norm": 0.23266112804412842, + "learning_rate": 0.0006, + "loss": 3.683509111404419, + "step": 2546 + }, + { + "epoch": 35.37745740498034, + "grad_norm": 0.24203059077262878, + "learning_rate": 0.0006, + "loss": 3.68572998046875, + "step": 2547 + }, + { + "epoch": 35.391437308868504, + "grad_norm": 0.2543564438819885, + "learning_rate": 0.0006, + "loss": 3.6902432441711426, + "step": 2548 + }, + { + "epoch": 35.40541721275666, + "grad_norm": 0.22990189492702484, + "learning_rate": 0.0006, + "loss": 3.708810329437256, + "step": 2549 + }, + { + "epoch": 35.419397116644824, + "grad_norm": 0.2594352662563324, + "learning_rate": 0.0006, + "loss": 3.7312886714935303, + "step": 2550 + }, + { + "epoch": 35.43337702053299, + "grad_norm": 0.27525269985198975, + "learning_rate": 0.0006, + "loss": 3.6963448524475098, + "step": 2551 + }, + { + "epoch": 35.44735692442114, + "grad_norm": 0.2436525970697403, + "learning_rate": 0.0006, + "loss": 3.6733713150024414, + "step": 2552 + }, + { + "epoch": 35.46133682830931, + "grad_norm": 0.25500908493995667, + "learning_rate": 0.0006, + "loss": 3.7104358673095703, + "step": 2553 + }, + { + "epoch": 35.47531673219746, + "grad_norm": 0.23504602909088135, + "learning_rate": 0.0006, + "loss": 3.7052388191223145, + "step": 2554 + }, + { + "epoch": 35.489296636085626, + "grad_norm": 0.2277563363313675, + "learning_rate": 0.0006, + "loss": 3.708714008331299, + "step": 2555 + }, + { + "epoch": 35.50327653997379, + "grad_norm": 0.25224778056144714, + "learning_rate": 0.0006, + "loss": 3.699676990509033, + "step": 2556 + }, + { + "epoch": 35.517256443861946, + "grad_norm": 0.28308045864105225, + "learning_rate": 0.0006, + "loss": 3.7005362510681152, + "step": 2557 + }, + { + "epoch": 35.53123634775011, + "grad_norm": 0.25858840346336365, + "learning_rate": 0.0006, + "loss": 3.689999580383301, + "step": 2558 + }, + { + "epoch": 35.54521625163827, + "grad_norm": 0.23497405648231506, + "learning_rate": 0.0006, + "loss": 3.695793867111206, + "step": 2559 + }, + { + "epoch": 35.55919615552643, + "grad_norm": 0.22375957667827606, + "learning_rate": 0.0006, + "loss": 3.7011494636535645, + "step": 2560 + }, + { + "epoch": 35.57317605941459, + "grad_norm": 0.21056118607521057, + "learning_rate": 0.0006, + "loss": 3.722623586654663, + "step": 2561 + }, + { + "epoch": 35.58715596330275, + "grad_norm": 0.22504374384880066, + "learning_rate": 0.0006, + "loss": 3.7211966514587402, + "step": 2562 + }, + { + "epoch": 35.60113586719091, + "grad_norm": 0.22349773347377777, + "learning_rate": 0.0006, + "loss": 3.6901848316192627, + "step": 2563 + }, + { + "epoch": 35.615115771079076, + "grad_norm": 0.219499409198761, + "learning_rate": 0.0006, + "loss": 3.709026575088501, + "step": 2564 + }, + { + "epoch": 35.62909567496723, + "grad_norm": 0.20461080968379974, + "learning_rate": 0.0006, + "loss": 3.72456693649292, + "step": 2565 + }, + { + "epoch": 35.643075578855395, + "grad_norm": 0.2083883285522461, + "learning_rate": 0.0006, + "loss": 3.6845502853393555, + "step": 2566 + }, + { + "epoch": 35.65705548274356, + "grad_norm": 0.19694562256336212, + "learning_rate": 0.0006, + "loss": 3.668515682220459, + "step": 2567 + }, + { + "epoch": 35.671035386631715, + "grad_norm": 0.2107984870672226, + "learning_rate": 0.0006, + "loss": 3.700723648071289, + "step": 2568 + }, + { + "epoch": 35.68501529051988, + "grad_norm": 0.18878720700740814, + "learning_rate": 0.0006, + "loss": 3.689150333404541, + "step": 2569 + }, + { + "epoch": 35.69899519440804, + "grad_norm": 0.20058824121952057, + "learning_rate": 0.0006, + "loss": 3.7048301696777344, + "step": 2570 + }, + { + "epoch": 35.7129750982962, + "grad_norm": 0.2200566679239273, + "learning_rate": 0.0006, + "loss": 3.6944580078125, + "step": 2571 + }, + { + "epoch": 35.72695500218436, + "grad_norm": 0.22200417518615723, + "learning_rate": 0.0006, + "loss": 3.715193510055542, + "step": 2572 + }, + { + "epoch": 35.74093490607252, + "grad_norm": 0.21011404693126678, + "learning_rate": 0.0006, + "loss": 3.737387180328369, + "step": 2573 + }, + { + "epoch": 35.75491480996068, + "grad_norm": 0.21139226853847504, + "learning_rate": 0.0006, + "loss": 3.695596694946289, + "step": 2574 + }, + { + "epoch": 35.768894713848844, + "grad_norm": 0.2112506479024887, + "learning_rate": 0.0006, + "loss": 3.7264227867126465, + "step": 2575 + }, + { + "epoch": 35.782874617737, + "grad_norm": 0.21528391540050507, + "learning_rate": 0.0006, + "loss": 3.7089385986328125, + "step": 2576 + }, + { + "epoch": 35.796854521625164, + "grad_norm": 0.2127804309129715, + "learning_rate": 0.0006, + "loss": 3.6995301246643066, + "step": 2577 + }, + { + "epoch": 35.81083442551333, + "grad_norm": 0.19839410483837128, + "learning_rate": 0.0006, + "loss": 3.7233223915100098, + "step": 2578 + }, + { + "epoch": 35.824814329401484, + "grad_norm": 0.19098423421382904, + "learning_rate": 0.0006, + "loss": 3.7108311653137207, + "step": 2579 + }, + { + "epoch": 35.83879423328965, + "grad_norm": 0.18697232007980347, + "learning_rate": 0.0006, + "loss": 3.725001811981201, + "step": 2580 + }, + { + "epoch": 35.8527741371778, + "grad_norm": 0.21051937341690063, + "learning_rate": 0.0006, + "loss": 3.7310993671417236, + "step": 2581 + }, + { + "epoch": 35.86675404106597, + "grad_norm": 0.2239079475402832, + "learning_rate": 0.0006, + "loss": 3.739056348800659, + "step": 2582 + }, + { + "epoch": 35.88073394495413, + "grad_norm": 0.2581230700016022, + "learning_rate": 0.0006, + "loss": 3.697061061859131, + "step": 2583 + }, + { + "epoch": 35.89471384884229, + "grad_norm": 0.25388655066490173, + "learning_rate": 0.0006, + "loss": 3.7173471450805664, + "step": 2584 + }, + { + "epoch": 35.90869375273045, + "grad_norm": 0.2557796537876129, + "learning_rate": 0.0006, + "loss": 3.7121596336364746, + "step": 2585 + }, + { + "epoch": 35.92267365661861, + "grad_norm": 0.21846474707126617, + "learning_rate": 0.0006, + "loss": 3.7342100143432617, + "step": 2586 + }, + { + "epoch": 35.93665356050677, + "grad_norm": 0.19810006022453308, + "learning_rate": 0.0006, + "loss": 3.7266340255737305, + "step": 2587 + }, + { + "epoch": 35.95063346439493, + "grad_norm": 0.28599923849105835, + "learning_rate": 0.0006, + "loss": 3.711876392364502, + "step": 2588 + }, + { + "epoch": 35.964613368283096, + "grad_norm": 0.3380447030067444, + "learning_rate": 0.0006, + "loss": 3.7611794471740723, + "step": 2589 + }, + { + "epoch": 35.97859327217125, + "grad_norm": 0.2946915328502655, + "learning_rate": 0.0006, + "loss": 3.7659358978271484, + "step": 2590 + }, + { + "epoch": 35.992573176059416, + "grad_norm": 0.2310202419757843, + "learning_rate": 0.0006, + "loss": 3.7124969959259033, + "step": 2591 + }, + { + "epoch": 36.0, + "grad_norm": 0.22294320166110992, + "learning_rate": 0.0006, + "loss": 3.725590705871582, + "step": 2592 + }, + { + "epoch": 36.0, + "eval_loss": 4.015472412109375, + "eval_runtime": 44.4903, + "eval_samples_per_second": 54.888, + "eval_steps_per_second": 3.439, + "step": 2592 + }, + { + "epoch": 36.01397990388816, + "grad_norm": 0.2442479431629181, + "learning_rate": 0.0006, + "loss": 3.6670360565185547, + "step": 2593 + }, + { + "epoch": 36.02795980777632, + "grad_norm": 0.27702075242996216, + "learning_rate": 0.0006, + "loss": 3.685915946960449, + "step": 2594 + }, + { + "epoch": 36.04193971166448, + "grad_norm": 0.22300852835178375, + "learning_rate": 0.0006, + "loss": 3.6993556022644043, + "step": 2595 + }, + { + "epoch": 36.05591961555265, + "grad_norm": 0.22456000745296478, + "learning_rate": 0.0006, + "loss": 3.6937754154205322, + "step": 2596 + }, + { + "epoch": 36.0698995194408, + "grad_norm": 0.23157717287540436, + "learning_rate": 0.0006, + "loss": 3.6573898792266846, + "step": 2597 + }, + { + "epoch": 36.083879423328966, + "grad_norm": 0.23002618551254272, + "learning_rate": 0.0006, + "loss": 3.6565046310424805, + "step": 2598 + }, + { + "epoch": 36.09785932721712, + "grad_norm": 0.223054900765419, + "learning_rate": 0.0006, + "loss": 3.6964457035064697, + "step": 2599 + }, + { + "epoch": 36.111839231105286, + "grad_norm": 0.21883328258991241, + "learning_rate": 0.0006, + "loss": 3.674757480621338, + "step": 2600 + }, + { + "epoch": 36.12581913499345, + "grad_norm": 0.21729037165641785, + "learning_rate": 0.0006, + "loss": 3.684323310852051, + "step": 2601 + }, + { + "epoch": 36.139799038881605, + "grad_norm": 0.21299415826797485, + "learning_rate": 0.0006, + "loss": 3.6554017066955566, + "step": 2602 + }, + { + "epoch": 36.15377894276977, + "grad_norm": 0.22723016142845154, + "learning_rate": 0.0006, + "loss": 3.666767120361328, + "step": 2603 + }, + { + "epoch": 36.16775884665793, + "grad_norm": 0.23663052916526794, + "learning_rate": 0.0006, + "loss": 3.692861557006836, + "step": 2604 + }, + { + "epoch": 36.18173875054609, + "grad_norm": 0.23544131219387054, + "learning_rate": 0.0006, + "loss": 3.6648998260498047, + "step": 2605 + }, + { + "epoch": 36.19571865443425, + "grad_norm": 0.24303849041461945, + "learning_rate": 0.0006, + "loss": 3.66096568107605, + "step": 2606 + }, + { + "epoch": 36.20969855832241, + "grad_norm": 0.23385047912597656, + "learning_rate": 0.0006, + "loss": 3.6636829376220703, + "step": 2607 + }, + { + "epoch": 36.22367846221057, + "grad_norm": 0.21988974511623383, + "learning_rate": 0.0006, + "loss": 3.685072660446167, + "step": 2608 + }, + { + "epoch": 36.237658366098735, + "grad_norm": 0.2365395724773407, + "learning_rate": 0.0006, + "loss": 3.7292234897613525, + "step": 2609 + }, + { + "epoch": 36.25163826998689, + "grad_norm": 0.23791152238845825, + "learning_rate": 0.0006, + "loss": 3.6870808601379395, + "step": 2610 + }, + { + "epoch": 36.265618173875055, + "grad_norm": 0.22954145073890686, + "learning_rate": 0.0006, + "loss": 3.705406904220581, + "step": 2611 + }, + { + "epoch": 36.27959807776322, + "grad_norm": 0.22748000919818878, + "learning_rate": 0.0006, + "loss": 3.680781841278076, + "step": 2612 + }, + { + "epoch": 36.293577981651374, + "grad_norm": 0.21827450394630432, + "learning_rate": 0.0006, + "loss": 3.6794490814208984, + "step": 2613 + }, + { + "epoch": 36.30755788553954, + "grad_norm": 0.2406153380870819, + "learning_rate": 0.0006, + "loss": 3.690225124359131, + "step": 2614 + }, + { + "epoch": 36.3215377894277, + "grad_norm": 0.2406231164932251, + "learning_rate": 0.0006, + "loss": 3.665867805480957, + "step": 2615 + }, + { + "epoch": 36.33551769331586, + "grad_norm": 0.20494551956653595, + "learning_rate": 0.0006, + "loss": 3.701937198638916, + "step": 2616 + }, + { + "epoch": 36.34949759720402, + "grad_norm": 0.1995103359222412, + "learning_rate": 0.0006, + "loss": 3.702033758163452, + "step": 2617 + }, + { + "epoch": 36.36347750109218, + "grad_norm": 0.1902446299791336, + "learning_rate": 0.0006, + "loss": 3.6809959411621094, + "step": 2618 + }, + { + "epoch": 36.37745740498034, + "grad_norm": 0.1810801923274994, + "learning_rate": 0.0006, + "loss": 3.689852714538574, + "step": 2619 + }, + { + "epoch": 36.391437308868504, + "grad_norm": 0.1882476955652237, + "learning_rate": 0.0006, + "loss": 3.710911273956299, + "step": 2620 + }, + { + "epoch": 36.40541721275666, + "grad_norm": 0.1912514567375183, + "learning_rate": 0.0006, + "loss": 3.7054009437561035, + "step": 2621 + }, + { + "epoch": 36.419397116644824, + "grad_norm": 0.19080901145935059, + "learning_rate": 0.0006, + "loss": 3.681145191192627, + "step": 2622 + }, + { + "epoch": 36.43337702053299, + "grad_norm": 0.193472221493721, + "learning_rate": 0.0006, + "loss": 3.661360740661621, + "step": 2623 + }, + { + "epoch": 36.44735692442114, + "grad_norm": 0.2034357339143753, + "learning_rate": 0.0006, + "loss": 3.706930160522461, + "step": 2624 + }, + { + "epoch": 36.46133682830931, + "grad_norm": 0.19924600422382355, + "learning_rate": 0.0006, + "loss": 3.6903364658355713, + "step": 2625 + }, + { + "epoch": 36.47531673219746, + "grad_norm": 0.20556052029132843, + "learning_rate": 0.0006, + "loss": 3.6974234580993652, + "step": 2626 + }, + { + "epoch": 36.489296636085626, + "grad_norm": 0.19628804922103882, + "learning_rate": 0.0006, + "loss": 3.6947717666625977, + "step": 2627 + }, + { + "epoch": 36.50327653997379, + "grad_norm": 0.18071836233139038, + "learning_rate": 0.0006, + "loss": 3.717582941055298, + "step": 2628 + }, + { + "epoch": 36.517256443861946, + "grad_norm": 0.20531553030014038, + "learning_rate": 0.0006, + "loss": 3.680610179901123, + "step": 2629 + }, + { + "epoch": 36.53123634775011, + "grad_norm": 0.23789429664611816, + "learning_rate": 0.0006, + "loss": 3.711493968963623, + "step": 2630 + }, + { + "epoch": 36.54521625163827, + "grad_norm": 0.23027348518371582, + "learning_rate": 0.0006, + "loss": 3.6827993392944336, + "step": 2631 + }, + { + "epoch": 36.55919615552643, + "grad_norm": 0.21941570937633514, + "learning_rate": 0.0006, + "loss": 3.682286262512207, + "step": 2632 + }, + { + "epoch": 36.57317605941459, + "grad_norm": 0.21213553845882416, + "learning_rate": 0.0006, + "loss": 3.6828765869140625, + "step": 2633 + }, + { + "epoch": 36.58715596330275, + "grad_norm": 0.21929772198200226, + "learning_rate": 0.0006, + "loss": 3.697030544281006, + "step": 2634 + }, + { + "epoch": 36.60113586719091, + "grad_norm": 0.2101750522851944, + "learning_rate": 0.0006, + "loss": 3.723201274871826, + "step": 2635 + }, + { + "epoch": 36.615115771079076, + "grad_norm": 0.19014132022857666, + "learning_rate": 0.0006, + "loss": 3.6989338397979736, + "step": 2636 + }, + { + "epoch": 36.62909567496723, + "grad_norm": 0.21566815674304962, + "learning_rate": 0.0006, + "loss": 3.6968226432800293, + "step": 2637 + }, + { + "epoch": 36.643075578855395, + "grad_norm": 0.20500224828720093, + "learning_rate": 0.0006, + "loss": 3.689640522003174, + "step": 2638 + }, + { + "epoch": 36.65705548274356, + "grad_norm": 0.210358127951622, + "learning_rate": 0.0006, + "loss": 3.6996328830718994, + "step": 2639 + }, + { + "epoch": 36.671035386631715, + "grad_norm": 0.2061213105916977, + "learning_rate": 0.0006, + "loss": 3.7019221782684326, + "step": 2640 + }, + { + "epoch": 36.68501529051988, + "grad_norm": 0.21494871377944946, + "learning_rate": 0.0006, + "loss": 3.6634578704833984, + "step": 2641 + }, + { + "epoch": 36.69899519440804, + "grad_norm": 0.19586549699306488, + "learning_rate": 0.0006, + "loss": 3.708131790161133, + "step": 2642 + }, + { + "epoch": 36.7129750982962, + "grad_norm": 0.22805732488632202, + "learning_rate": 0.0006, + "loss": 3.6977362632751465, + "step": 2643 + }, + { + "epoch": 36.72695500218436, + "grad_norm": 0.28397148847579956, + "learning_rate": 0.0006, + "loss": 3.6847963333129883, + "step": 2644 + }, + { + "epoch": 36.74093490607252, + "grad_norm": 0.28333187103271484, + "learning_rate": 0.0006, + "loss": 3.734257459640503, + "step": 2645 + }, + { + "epoch": 36.75491480996068, + "grad_norm": 0.22314953804016113, + "learning_rate": 0.0006, + "loss": 3.6871445178985596, + "step": 2646 + }, + { + "epoch": 36.768894713848844, + "grad_norm": 0.20580267906188965, + "learning_rate": 0.0006, + "loss": 3.692736864089966, + "step": 2647 + }, + { + "epoch": 36.782874617737, + "grad_norm": 0.22695036232471466, + "learning_rate": 0.0006, + "loss": 3.697096824645996, + "step": 2648 + }, + { + "epoch": 36.796854521625164, + "grad_norm": 0.25916165113449097, + "learning_rate": 0.0006, + "loss": 3.7099573612213135, + "step": 2649 + }, + { + "epoch": 36.81083442551333, + "grad_norm": 0.26024341583251953, + "learning_rate": 0.0006, + "loss": 3.7161359786987305, + "step": 2650 + }, + { + "epoch": 36.824814329401484, + "grad_norm": 0.2340802699327469, + "learning_rate": 0.0006, + "loss": 3.708864688873291, + "step": 2651 + }, + { + "epoch": 36.83879423328965, + "grad_norm": 0.23312288522720337, + "learning_rate": 0.0006, + "loss": 3.7351365089416504, + "step": 2652 + }, + { + "epoch": 36.8527741371778, + "grad_norm": 0.22953253984451294, + "learning_rate": 0.0006, + "loss": 3.735302209854126, + "step": 2653 + }, + { + "epoch": 36.86675404106597, + "grad_norm": 0.21928828954696655, + "learning_rate": 0.0006, + "loss": 3.72445011138916, + "step": 2654 + }, + { + "epoch": 36.88073394495413, + "grad_norm": 0.22865602374076843, + "learning_rate": 0.0006, + "loss": 3.714867115020752, + "step": 2655 + }, + { + "epoch": 36.89471384884229, + "grad_norm": 0.23255643248558044, + "learning_rate": 0.0006, + "loss": 3.695101261138916, + "step": 2656 + }, + { + "epoch": 36.90869375273045, + "grad_norm": 0.2491452544927597, + "learning_rate": 0.0006, + "loss": 3.70692777633667, + "step": 2657 + }, + { + "epoch": 36.92267365661861, + "grad_norm": 0.27367597818374634, + "learning_rate": 0.0006, + "loss": 3.6906654834747314, + "step": 2658 + }, + { + "epoch": 36.93665356050677, + "grad_norm": 0.26728564500808716, + "learning_rate": 0.0006, + "loss": 3.7092056274414062, + "step": 2659 + }, + { + "epoch": 36.95063346439493, + "grad_norm": 0.207070454955101, + "learning_rate": 0.0006, + "loss": 3.7152137756347656, + "step": 2660 + }, + { + "epoch": 36.964613368283096, + "grad_norm": 0.21671561896800995, + "learning_rate": 0.0006, + "loss": 3.7130112648010254, + "step": 2661 + }, + { + "epoch": 36.97859327217125, + "grad_norm": 0.2140914648771286, + "learning_rate": 0.0006, + "loss": 3.7286999225616455, + "step": 2662 + }, + { + "epoch": 36.992573176059416, + "grad_norm": 0.21324342489242554, + "learning_rate": 0.0006, + "loss": 3.6828715801239014, + "step": 2663 + }, + { + "epoch": 37.0, + "grad_norm": 0.22366146743297577, + "learning_rate": 0.0006, + "loss": 3.69199800491333, + "step": 2664 + }, + { + "epoch": 37.0, + "eval_loss": 4.011842727661133, + "eval_runtime": 44.7825, + "eval_samples_per_second": 54.53, + "eval_steps_per_second": 3.417, + "step": 2664 + }, + { + "epoch": 37.01397990388816, + "grad_norm": 0.22093228995800018, + "learning_rate": 0.0006, + "loss": 3.6940979957580566, + "step": 2665 + }, + { + "epoch": 37.02795980777632, + "grad_norm": 0.20821493864059448, + "learning_rate": 0.0006, + "loss": 3.670813798904419, + "step": 2666 + }, + { + "epoch": 37.04193971166448, + "grad_norm": 0.22330114245414734, + "learning_rate": 0.0006, + "loss": 3.6392664909362793, + "step": 2667 + }, + { + "epoch": 37.05591961555265, + "grad_norm": 0.2224634289741516, + "learning_rate": 0.0006, + "loss": 3.660856246948242, + "step": 2668 + }, + { + "epoch": 37.0698995194408, + "grad_norm": 0.2255052626132965, + "learning_rate": 0.0006, + "loss": 3.6393589973449707, + "step": 2669 + }, + { + "epoch": 37.083879423328966, + "grad_norm": 0.23462942242622375, + "learning_rate": 0.0006, + "loss": 3.684429168701172, + "step": 2670 + }, + { + "epoch": 37.09785932721712, + "grad_norm": 0.23743386566638947, + "learning_rate": 0.0006, + "loss": 3.67622709274292, + "step": 2671 + }, + { + "epoch": 37.111839231105286, + "grad_norm": 0.2276267409324646, + "learning_rate": 0.0006, + "loss": 3.6487984657287598, + "step": 2672 + }, + { + "epoch": 37.12581913499345, + "grad_norm": 0.24448423087596893, + "learning_rate": 0.0006, + "loss": 3.67645525932312, + "step": 2673 + }, + { + "epoch": 37.139799038881605, + "grad_norm": 0.2428973764181137, + "learning_rate": 0.0006, + "loss": 3.681497097015381, + "step": 2674 + }, + { + "epoch": 37.15377894276977, + "grad_norm": 0.21918512880802155, + "learning_rate": 0.0006, + "loss": 3.67134428024292, + "step": 2675 + }, + { + "epoch": 37.16775884665793, + "grad_norm": 0.2103680670261383, + "learning_rate": 0.0006, + "loss": 3.6508708000183105, + "step": 2676 + }, + { + "epoch": 37.18173875054609, + "grad_norm": 0.20674929022789001, + "learning_rate": 0.0006, + "loss": 3.6904029846191406, + "step": 2677 + }, + { + "epoch": 37.19571865443425, + "grad_norm": 0.21867282688617706, + "learning_rate": 0.0006, + "loss": 3.697535514831543, + "step": 2678 + }, + { + "epoch": 37.20969855832241, + "grad_norm": 0.22919587790966034, + "learning_rate": 0.0006, + "loss": 3.675565004348755, + "step": 2679 + }, + { + "epoch": 37.22367846221057, + "grad_norm": 0.22255578637123108, + "learning_rate": 0.0006, + "loss": 3.6830129623413086, + "step": 2680 + }, + { + "epoch": 37.237658366098735, + "grad_norm": 0.22460198402404785, + "learning_rate": 0.0006, + "loss": 3.6872951984405518, + "step": 2681 + }, + { + "epoch": 37.25163826998689, + "grad_norm": 0.23677165806293488, + "learning_rate": 0.0006, + "loss": 3.6779165267944336, + "step": 2682 + }, + { + "epoch": 37.265618173875055, + "grad_norm": 0.23231394588947296, + "learning_rate": 0.0006, + "loss": 3.6831178665161133, + "step": 2683 + }, + { + "epoch": 37.27959807776322, + "grad_norm": 0.22131343185901642, + "learning_rate": 0.0006, + "loss": 3.664295196533203, + "step": 2684 + }, + { + "epoch": 37.293577981651374, + "grad_norm": 0.23424340784549713, + "learning_rate": 0.0006, + "loss": 3.696678638458252, + "step": 2685 + }, + { + "epoch": 37.30755788553954, + "grad_norm": 0.22695423662662506, + "learning_rate": 0.0006, + "loss": 3.6697473526000977, + "step": 2686 + }, + { + "epoch": 37.3215377894277, + "grad_norm": 0.2165997475385666, + "learning_rate": 0.0006, + "loss": 3.6801891326904297, + "step": 2687 + }, + { + "epoch": 37.33551769331586, + "grad_norm": 0.2241077572107315, + "learning_rate": 0.0006, + "loss": 3.6957011222839355, + "step": 2688 + }, + { + "epoch": 37.34949759720402, + "grad_norm": 0.21191732585430145, + "learning_rate": 0.0006, + "loss": 3.6812620162963867, + "step": 2689 + }, + { + "epoch": 37.36347750109218, + "grad_norm": 0.1827201396226883, + "learning_rate": 0.0006, + "loss": 3.6797738075256348, + "step": 2690 + }, + { + "epoch": 37.37745740498034, + "grad_norm": 0.20793627202510834, + "learning_rate": 0.0006, + "loss": 3.672819137573242, + "step": 2691 + }, + { + "epoch": 37.391437308868504, + "grad_norm": 0.19737116992473602, + "learning_rate": 0.0006, + "loss": 3.667839527130127, + "step": 2692 + }, + { + "epoch": 37.40541721275666, + "grad_norm": 0.18670497834682465, + "learning_rate": 0.0006, + "loss": 3.651561737060547, + "step": 2693 + }, + { + "epoch": 37.419397116644824, + "grad_norm": 0.21385592222213745, + "learning_rate": 0.0006, + "loss": 3.717456340789795, + "step": 2694 + }, + { + "epoch": 37.43337702053299, + "grad_norm": 0.20590044558048248, + "learning_rate": 0.0006, + "loss": 3.6950271129608154, + "step": 2695 + }, + { + "epoch": 37.44735692442114, + "grad_norm": 0.1992103010416031, + "learning_rate": 0.0006, + "loss": 3.687854290008545, + "step": 2696 + }, + { + "epoch": 37.46133682830931, + "grad_norm": 0.2004154473543167, + "learning_rate": 0.0006, + "loss": 3.695838451385498, + "step": 2697 + }, + { + "epoch": 37.47531673219746, + "grad_norm": 0.2019810527563095, + "learning_rate": 0.0006, + "loss": 3.690431594848633, + "step": 2698 + }, + { + "epoch": 37.489296636085626, + "grad_norm": 0.2192547768354416, + "learning_rate": 0.0006, + "loss": 3.6743836402893066, + "step": 2699 + }, + { + "epoch": 37.50327653997379, + "grad_norm": 0.2568076550960541, + "learning_rate": 0.0006, + "loss": 3.6857337951660156, + "step": 2700 + }, + { + "epoch": 37.517256443861946, + "grad_norm": 0.20050311088562012, + "learning_rate": 0.0006, + "loss": 3.6811180114746094, + "step": 2701 + }, + { + "epoch": 37.53123634775011, + "grad_norm": 0.21008558571338654, + "learning_rate": 0.0006, + "loss": 3.700563907623291, + "step": 2702 + }, + { + "epoch": 37.54521625163827, + "grad_norm": 0.2393747717142105, + "learning_rate": 0.0006, + "loss": 3.679438591003418, + "step": 2703 + }, + { + "epoch": 37.55919615552643, + "grad_norm": 0.2531895041465759, + "learning_rate": 0.0006, + "loss": 3.682903289794922, + "step": 2704 + }, + { + "epoch": 37.57317605941459, + "grad_norm": 0.2372656762599945, + "learning_rate": 0.0006, + "loss": 3.7128796577453613, + "step": 2705 + }, + { + "epoch": 37.58715596330275, + "grad_norm": 0.20020034909248352, + "learning_rate": 0.0006, + "loss": 3.701916217803955, + "step": 2706 + }, + { + "epoch": 37.60113586719091, + "grad_norm": 0.20250852406024933, + "learning_rate": 0.0006, + "loss": 3.6761491298675537, + "step": 2707 + }, + { + "epoch": 37.615115771079076, + "grad_norm": 0.19259589910507202, + "learning_rate": 0.0006, + "loss": 3.715104579925537, + "step": 2708 + }, + { + "epoch": 37.62909567496723, + "grad_norm": 0.19649392366409302, + "learning_rate": 0.0006, + "loss": 3.687556266784668, + "step": 2709 + }, + { + "epoch": 37.643075578855395, + "grad_norm": 0.1909446269273758, + "learning_rate": 0.0006, + "loss": 3.684046745300293, + "step": 2710 + }, + { + "epoch": 37.65705548274356, + "grad_norm": 0.19589872658252716, + "learning_rate": 0.0006, + "loss": 3.707886219024658, + "step": 2711 + }, + { + "epoch": 37.671035386631715, + "grad_norm": 0.19472210109233856, + "learning_rate": 0.0006, + "loss": 3.6837692260742188, + "step": 2712 + }, + { + "epoch": 37.68501529051988, + "grad_norm": 0.22622711956501007, + "learning_rate": 0.0006, + "loss": 3.703619956970215, + "step": 2713 + }, + { + "epoch": 37.69899519440804, + "grad_norm": 0.24314729869365692, + "learning_rate": 0.0006, + "loss": 3.7345223426818848, + "step": 2714 + }, + { + "epoch": 37.7129750982962, + "grad_norm": 0.23934306204319, + "learning_rate": 0.0006, + "loss": 3.687809705734253, + "step": 2715 + }, + { + "epoch": 37.72695500218436, + "grad_norm": 0.24838587641716003, + "learning_rate": 0.0006, + "loss": 3.708613872528076, + "step": 2716 + }, + { + "epoch": 37.74093490607252, + "grad_norm": 0.23191452026367188, + "learning_rate": 0.0006, + "loss": 3.7090163230895996, + "step": 2717 + }, + { + "epoch": 37.75491480996068, + "grad_norm": 0.24574638903141022, + "learning_rate": 0.0006, + "loss": 3.68489146232605, + "step": 2718 + }, + { + "epoch": 37.768894713848844, + "grad_norm": 0.2706749439239502, + "learning_rate": 0.0006, + "loss": 3.687061309814453, + "step": 2719 + }, + { + "epoch": 37.782874617737, + "grad_norm": 0.25955191254615784, + "learning_rate": 0.0006, + "loss": 3.694173812866211, + "step": 2720 + }, + { + "epoch": 37.796854521625164, + "grad_norm": 0.22040610015392303, + "learning_rate": 0.0006, + "loss": 3.701871871948242, + "step": 2721 + }, + { + "epoch": 37.81083442551333, + "grad_norm": 0.22328512370586395, + "learning_rate": 0.0006, + "loss": 3.7082555294036865, + "step": 2722 + }, + { + "epoch": 37.824814329401484, + "grad_norm": 0.2290581911802292, + "learning_rate": 0.0006, + "loss": 3.7023987770080566, + "step": 2723 + }, + { + "epoch": 37.83879423328965, + "grad_norm": 0.23129472136497498, + "learning_rate": 0.0006, + "loss": 3.7101752758026123, + "step": 2724 + }, + { + "epoch": 37.8527741371778, + "grad_norm": 0.21203753352165222, + "learning_rate": 0.0006, + "loss": 3.712129592895508, + "step": 2725 + }, + { + "epoch": 37.86675404106597, + "grad_norm": 0.21938200294971466, + "learning_rate": 0.0006, + "loss": 3.7086095809936523, + "step": 2726 + }, + { + "epoch": 37.88073394495413, + "grad_norm": 0.2203572541475296, + "learning_rate": 0.0006, + "loss": 3.6789026260375977, + "step": 2727 + }, + { + "epoch": 37.89471384884229, + "grad_norm": 0.18146046996116638, + "learning_rate": 0.0006, + "loss": 3.666893243789673, + "step": 2728 + }, + { + "epoch": 37.90869375273045, + "grad_norm": 0.1879623532295227, + "learning_rate": 0.0006, + "loss": 3.69246768951416, + "step": 2729 + }, + { + "epoch": 37.92267365661861, + "grad_norm": 0.18311670422554016, + "learning_rate": 0.0006, + "loss": 3.682036876678467, + "step": 2730 + }, + { + "epoch": 37.93665356050677, + "grad_norm": 0.1898486614227295, + "learning_rate": 0.0006, + "loss": 3.6683125495910645, + "step": 2731 + }, + { + "epoch": 37.95063346439493, + "grad_norm": 0.1858556717634201, + "learning_rate": 0.0006, + "loss": 3.6879611015319824, + "step": 2732 + }, + { + "epoch": 37.964613368283096, + "grad_norm": 0.19914504885673523, + "learning_rate": 0.0006, + "loss": 3.690250873565674, + "step": 2733 + }, + { + "epoch": 37.97859327217125, + "grad_norm": 0.20406974852085114, + "learning_rate": 0.0006, + "loss": 3.6812171936035156, + "step": 2734 + }, + { + "epoch": 37.992573176059416, + "grad_norm": 0.2003912478685379, + "learning_rate": 0.0006, + "loss": 3.6852147579193115, + "step": 2735 + }, + { + "epoch": 38.0, + "grad_norm": 0.22644472122192383, + "learning_rate": 0.0006, + "loss": 3.645207405090332, + "step": 2736 + }, + { + "epoch": 38.0, + "eval_loss": 3.995000123977661, + "eval_runtime": 45.1644, + "eval_samples_per_second": 54.069, + "eval_steps_per_second": 3.388, + "step": 2736 + }, + { + "epoch": 38.01397990388816, + "grad_norm": 0.1989814043045044, + "learning_rate": 0.0006, + "loss": 3.6511387825012207, + "step": 2737 + }, + { + "epoch": 38.02795980777632, + "grad_norm": 0.203324094414711, + "learning_rate": 0.0006, + "loss": 3.6513094902038574, + "step": 2738 + }, + { + "epoch": 38.04193971166448, + "grad_norm": 0.21504290401935577, + "learning_rate": 0.0006, + "loss": 3.647711992263794, + "step": 2739 + }, + { + "epoch": 38.05591961555265, + "grad_norm": 0.23464815318584442, + "learning_rate": 0.0006, + "loss": 3.6418747901916504, + "step": 2740 + }, + { + "epoch": 38.0698995194408, + "grad_norm": 0.242184117436409, + "learning_rate": 0.0006, + "loss": 3.6741859912872314, + "step": 2741 + }, + { + "epoch": 38.083879423328966, + "grad_norm": 0.23488445580005646, + "learning_rate": 0.0006, + "loss": 3.6710941791534424, + "step": 2742 + }, + { + "epoch": 38.09785932721712, + "grad_norm": 0.20800170302391052, + "learning_rate": 0.0006, + "loss": 3.660001754760742, + "step": 2743 + }, + { + "epoch": 38.111839231105286, + "grad_norm": 0.19505052268505096, + "learning_rate": 0.0006, + "loss": 3.684129238128662, + "step": 2744 + }, + { + "epoch": 38.12581913499345, + "grad_norm": 0.2185833901166916, + "learning_rate": 0.0006, + "loss": 3.656033515930176, + "step": 2745 + }, + { + "epoch": 38.139799038881605, + "grad_norm": 0.21850253641605377, + "learning_rate": 0.0006, + "loss": 3.6818184852600098, + "step": 2746 + }, + { + "epoch": 38.15377894276977, + "grad_norm": 0.2109488695859909, + "learning_rate": 0.0006, + "loss": 3.6485435962677, + "step": 2747 + }, + { + "epoch": 38.16775884665793, + "grad_norm": 0.21059907972812653, + "learning_rate": 0.0006, + "loss": 3.6734395027160645, + "step": 2748 + }, + { + "epoch": 38.18173875054609, + "grad_norm": 0.20741555094718933, + "learning_rate": 0.0006, + "loss": 3.6672463417053223, + "step": 2749 + }, + { + "epoch": 38.19571865443425, + "grad_norm": 0.2130175530910492, + "learning_rate": 0.0006, + "loss": 3.692840576171875, + "step": 2750 + }, + { + "epoch": 38.20969855832241, + "grad_norm": 0.1899138242006302, + "learning_rate": 0.0006, + "loss": 3.675316333770752, + "step": 2751 + }, + { + "epoch": 38.22367846221057, + "grad_norm": 0.218918576836586, + "learning_rate": 0.0006, + "loss": 3.634105920791626, + "step": 2752 + }, + { + "epoch": 38.237658366098735, + "grad_norm": 0.23649370670318604, + "learning_rate": 0.0006, + "loss": 3.6526122093200684, + "step": 2753 + }, + { + "epoch": 38.25163826998689, + "grad_norm": 0.22011931240558624, + "learning_rate": 0.0006, + "loss": 3.6859593391418457, + "step": 2754 + }, + { + "epoch": 38.265618173875055, + "grad_norm": 0.2143620252609253, + "learning_rate": 0.0006, + "loss": 3.656838893890381, + "step": 2755 + }, + { + "epoch": 38.27959807776322, + "grad_norm": 0.24068567156791687, + "learning_rate": 0.0006, + "loss": 3.67006254196167, + "step": 2756 + }, + { + "epoch": 38.293577981651374, + "grad_norm": 0.25773152709007263, + "learning_rate": 0.0006, + "loss": 3.6648950576782227, + "step": 2757 + }, + { + "epoch": 38.30755788553954, + "grad_norm": 0.24213455617427826, + "learning_rate": 0.0006, + "loss": 3.6918864250183105, + "step": 2758 + }, + { + "epoch": 38.3215377894277, + "grad_norm": 0.22463668882846832, + "learning_rate": 0.0006, + "loss": 3.6662540435791016, + "step": 2759 + }, + { + "epoch": 38.33551769331586, + "grad_norm": 0.22541455924510956, + "learning_rate": 0.0006, + "loss": 3.6563215255737305, + "step": 2760 + }, + { + "epoch": 38.34949759720402, + "grad_norm": 0.21833783388137817, + "learning_rate": 0.0006, + "loss": 3.650446891784668, + "step": 2761 + }, + { + "epoch": 38.36347750109218, + "grad_norm": 0.22799745202064514, + "learning_rate": 0.0006, + "loss": 3.7007250785827637, + "step": 2762 + }, + { + "epoch": 38.37745740498034, + "grad_norm": 0.23739562928676605, + "learning_rate": 0.0006, + "loss": 3.667130708694458, + "step": 2763 + }, + { + "epoch": 38.391437308868504, + "grad_norm": 0.23744846880435944, + "learning_rate": 0.0006, + "loss": 3.678760528564453, + "step": 2764 + }, + { + "epoch": 38.40541721275666, + "grad_norm": 0.2677105963230133, + "learning_rate": 0.0006, + "loss": 3.6829030513763428, + "step": 2765 + }, + { + "epoch": 38.419397116644824, + "grad_norm": 0.24490566551685333, + "learning_rate": 0.0006, + "loss": 3.707911491394043, + "step": 2766 + }, + { + "epoch": 38.43337702053299, + "grad_norm": 0.23477254807949066, + "learning_rate": 0.0006, + "loss": 3.680157423019409, + "step": 2767 + }, + { + "epoch": 38.44735692442114, + "grad_norm": 0.26611173152923584, + "learning_rate": 0.0006, + "loss": 3.660834550857544, + "step": 2768 + }, + { + "epoch": 38.46133682830931, + "grad_norm": 0.24505069851875305, + "learning_rate": 0.0006, + "loss": 3.696178436279297, + "step": 2769 + }, + { + "epoch": 38.47531673219746, + "grad_norm": 0.22933335602283478, + "learning_rate": 0.0006, + "loss": 3.6506235599517822, + "step": 2770 + }, + { + "epoch": 38.489296636085626, + "grad_norm": 0.23662401735782623, + "learning_rate": 0.0006, + "loss": 3.680819511413574, + "step": 2771 + }, + { + "epoch": 38.50327653997379, + "grad_norm": 0.27774113416671753, + "learning_rate": 0.0006, + "loss": 3.699146270751953, + "step": 2772 + }, + { + "epoch": 38.517256443861946, + "grad_norm": 0.2881671190261841, + "learning_rate": 0.0006, + "loss": 3.6509652137756348, + "step": 2773 + }, + { + "epoch": 38.53123634775011, + "grad_norm": 0.26570361852645874, + "learning_rate": 0.0006, + "loss": 3.6808385848999023, + "step": 2774 + }, + { + "epoch": 38.54521625163827, + "grad_norm": 0.23043136298656464, + "learning_rate": 0.0006, + "loss": 3.7082371711730957, + "step": 2775 + }, + { + "epoch": 38.55919615552643, + "grad_norm": 0.23730400204658508, + "learning_rate": 0.0006, + "loss": 3.653615951538086, + "step": 2776 + }, + { + "epoch": 38.57317605941459, + "grad_norm": 0.2332635223865509, + "learning_rate": 0.0006, + "loss": 3.6869683265686035, + "step": 2777 + }, + { + "epoch": 38.58715596330275, + "grad_norm": 0.22913676500320435, + "learning_rate": 0.0006, + "loss": 3.6998367309570312, + "step": 2778 + }, + { + "epoch": 38.60113586719091, + "grad_norm": 0.226078599691391, + "learning_rate": 0.0006, + "loss": 3.7051444053649902, + "step": 2779 + }, + { + "epoch": 38.615115771079076, + "grad_norm": 0.2336396723985672, + "learning_rate": 0.0006, + "loss": 3.6964943408966064, + "step": 2780 + }, + { + "epoch": 38.62909567496723, + "grad_norm": 0.23270335793495178, + "learning_rate": 0.0006, + "loss": 3.6741909980773926, + "step": 2781 + }, + { + "epoch": 38.643075578855395, + "grad_norm": 0.19324959814548492, + "learning_rate": 0.0006, + "loss": 3.64506196975708, + "step": 2782 + }, + { + "epoch": 38.65705548274356, + "grad_norm": 0.18551453948020935, + "learning_rate": 0.0006, + "loss": 3.6834206581115723, + "step": 2783 + }, + { + "epoch": 38.671035386631715, + "grad_norm": 0.17392469942569733, + "learning_rate": 0.0006, + "loss": 3.67282772064209, + "step": 2784 + }, + { + "epoch": 38.68501529051988, + "grad_norm": 0.19093742966651917, + "learning_rate": 0.0006, + "loss": 3.6648201942443848, + "step": 2785 + }, + { + "epoch": 38.69899519440804, + "grad_norm": 0.2124558985233307, + "learning_rate": 0.0006, + "loss": 3.712191581726074, + "step": 2786 + }, + { + "epoch": 38.7129750982962, + "grad_norm": 0.2220139354467392, + "learning_rate": 0.0006, + "loss": 3.675504207611084, + "step": 2787 + }, + { + "epoch": 38.72695500218436, + "grad_norm": 0.17677755653858185, + "learning_rate": 0.0006, + "loss": 3.6693475246429443, + "step": 2788 + }, + { + "epoch": 38.74093490607252, + "grad_norm": 0.2002430409193039, + "learning_rate": 0.0006, + "loss": 3.6906018257141113, + "step": 2789 + }, + { + "epoch": 38.75491480996068, + "grad_norm": 0.18844179809093475, + "learning_rate": 0.0006, + "loss": 3.660121440887451, + "step": 2790 + }, + { + "epoch": 38.768894713848844, + "grad_norm": 0.19319336116313934, + "learning_rate": 0.0006, + "loss": 3.6592631340026855, + "step": 2791 + }, + { + "epoch": 38.782874617737, + "grad_norm": 0.18624325096607208, + "learning_rate": 0.0006, + "loss": 3.6935300827026367, + "step": 2792 + }, + { + "epoch": 38.796854521625164, + "grad_norm": 0.2049761712551117, + "learning_rate": 0.0006, + "loss": 3.6702702045440674, + "step": 2793 + }, + { + "epoch": 38.81083442551333, + "grad_norm": 0.2030584216117859, + "learning_rate": 0.0006, + "loss": 3.714639663696289, + "step": 2794 + }, + { + "epoch": 38.824814329401484, + "grad_norm": 0.18989548087120056, + "learning_rate": 0.0006, + "loss": 3.678253412246704, + "step": 2795 + }, + { + "epoch": 38.83879423328965, + "grad_norm": 0.19944126904010773, + "learning_rate": 0.0006, + "loss": 3.648367166519165, + "step": 2796 + }, + { + "epoch": 38.8527741371778, + "grad_norm": 0.2062688171863556, + "learning_rate": 0.0006, + "loss": 3.701514720916748, + "step": 2797 + }, + { + "epoch": 38.86675404106597, + "grad_norm": 0.21475110948085785, + "learning_rate": 0.0006, + "loss": 3.6725993156433105, + "step": 2798 + }, + { + "epoch": 38.88073394495413, + "grad_norm": 0.2240881323814392, + "learning_rate": 0.0006, + "loss": 3.6944539546966553, + "step": 2799 + }, + { + "epoch": 38.89471384884229, + "grad_norm": 0.23074312508106232, + "learning_rate": 0.0006, + "loss": 3.747671365737915, + "step": 2800 + }, + { + "epoch": 38.90869375273045, + "grad_norm": 0.2447938323020935, + "learning_rate": 0.0006, + "loss": 3.6856026649475098, + "step": 2801 + }, + { + "epoch": 38.92267365661861, + "grad_norm": 0.2136487364768982, + "learning_rate": 0.0006, + "loss": 3.710397720336914, + "step": 2802 + }, + { + "epoch": 38.93665356050677, + "grad_norm": 0.21676769852638245, + "learning_rate": 0.0006, + "loss": 3.6911189556121826, + "step": 2803 + }, + { + "epoch": 38.95063346439493, + "grad_norm": 0.2226478010416031, + "learning_rate": 0.0006, + "loss": 3.6902880668640137, + "step": 2804 + }, + { + "epoch": 38.964613368283096, + "grad_norm": 0.2071496546268463, + "learning_rate": 0.0006, + "loss": 3.6831371784210205, + "step": 2805 + }, + { + "epoch": 38.97859327217125, + "grad_norm": 0.19568349421024323, + "learning_rate": 0.0006, + "loss": 3.6897640228271484, + "step": 2806 + }, + { + "epoch": 38.992573176059416, + "grad_norm": 0.19067516922950745, + "learning_rate": 0.0006, + "loss": 3.7096242904663086, + "step": 2807 + }, + { + "epoch": 39.0, + "grad_norm": 0.22872281074523926, + "learning_rate": 0.0006, + "loss": 3.689342975616455, + "step": 2808 + }, + { + "epoch": 39.0, + "eval_loss": 4.001968860626221, + "eval_runtime": 44.8452, + "eval_samples_per_second": 54.454, + "eval_steps_per_second": 3.412, + "step": 2808 + }, + { + "epoch": 39.01397990388816, + "grad_norm": 0.21685896813869476, + "learning_rate": 0.0006, + "loss": 3.638145923614502, + "step": 2809 + }, + { + "epoch": 39.02795980777632, + "grad_norm": 0.20085014402866364, + "learning_rate": 0.0006, + "loss": 3.626654624938965, + "step": 2810 + }, + { + "epoch": 39.04193971166448, + "grad_norm": 0.20615799725055695, + "learning_rate": 0.0006, + "loss": 3.6280088424682617, + "step": 2811 + }, + { + "epoch": 39.05591961555265, + "grad_norm": 0.23471905291080475, + "learning_rate": 0.0006, + "loss": 3.6444239616394043, + "step": 2812 + }, + { + "epoch": 39.0698995194408, + "grad_norm": 0.22207780182361603, + "learning_rate": 0.0006, + "loss": 3.6276912689208984, + "step": 2813 + }, + { + "epoch": 39.083879423328966, + "grad_norm": 0.23354043066501617, + "learning_rate": 0.0006, + "loss": 3.7007269859313965, + "step": 2814 + }, + { + "epoch": 39.09785932721712, + "grad_norm": 0.22520557045936584, + "learning_rate": 0.0006, + "loss": 3.6487162113189697, + "step": 2815 + }, + { + "epoch": 39.111839231105286, + "grad_norm": 0.20489682257175446, + "learning_rate": 0.0006, + "loss": 3.6523492336273193, + "step": 2816 + }, + { + "epoch": 39.12581913499345, + "grad_norm": 0.20979270339012146, + "learning_rate": 0.0006, + "loss": 3.6574230194091797, + "step": 2817 + }, + { + "epoch": 39.139799038881605, + "grad_norm": 0.2256486713886261, + "learning_rate": 0.0006, + "loss": 3.6499013900756836, + "step": 2818 + }, + { + "epoch": 39.15377894276977, + "grad_norm": 0.1960437297821045, + "learning_rate": 0.0006, + "loss": 3.6780271530151367, + "step": 2819 + }, + { + "epoch": 39.16775884665793, + "grad_norm": 0.19279663264751434, + "learning_rate": 0.0006, + "loss": 3.623819589614868, + "step": 2820 + }, + { + "epoch": 39.18173875054609, + "grad_norm": 0.19151495397090912, + "learning_rate": 0.0006, + "loss": 3.612868070602417, + "step": 2821 + }, + { + "epoch": 39.19571865443425, + "grad_norm": 0.19399534165859222, + "learning_rate": 0.0006, + "loss": 3.6518092155456543, + "step": 2822 + }, + { + "epoch": 39.20969855832241, + "grad_norm": 0.21723251044750214, + "learning_rate": 0.0006, + "loss": 3.681509494781494, + "step": 2823 + }, + { + "epoch": 39.22367846221057, + "grad_norm": 0.2487006038427353, + "learning_rate": 0.0006, + "loss": 3.6569719314575195, + "step": 2824 + }, + { + "epoch": 39.237658366098735, + "grad_norm": 0.2640652656555176, + "learning_rate": 0.0006, + "loss": 3.680734634399414, + "step": 2825 + }, + { + "epoch": 39.25163826998689, + "grad_norm": 0.21862825751304626, + "learning_rate": 0.0006, + "loss": 3.6741840839385986, + "step": 2826 + }, + { + "epoch": 39.265618173875055, + "grad_norm": 0.19515705108642578, + "learning_rate": 0.0006, + "loss": 3.657750129699707, + "step": 2827 + }, + { + "epoch": 39.27959807776322, + "grad_norm": 0.1971602737903595, + "learning_rate": 0.0006, + "loss": 3.6524124145507812, + "step": 2828 + }, + { + "epoch": 39.293577981651374, + "grad_norm": 0.20822174847126007, + "learning_rate": 0.0006, + "loss": 3.69527006149292, + "step": 2829 + }, + { + "epoch": 39.30755788553954, + "grad_norm": 0.2566370368003845, + "learning_rate": 0.0006, + "loss": 3.6770880222320557, + "step": 2830 + }, + { + "epoch": 39.3215377894277, + "grad_norm": 0.24984225630760193, + "learning_rate": 0.0006, + "loss": 3.6733901500701904, + "step": 2831 + }, + { + "epoch": 39.33551769331586, + "grad_norm": 0.233322873711586, + "learning_rate": 0.0006, + "loss": 3.645519256591797, + "step": 2832 + }, + { + "epoch": 39.34949759720402, + "grad_norm": 0.21584749221801758, + "learning_rate": 0.0006, + "loss": 3.6211934089660645, + "step": 2833 + }, + { + "epoch": 39.36347750109218, + "grad_norm": 0.2188950479030609, + "learning_rate": 0.0006, + "loss": 3.6434195041656494, + "step": 2834 + }, + { + "epoch": 39.37745740498034, + "grad_norm": 0.21998439729213715, + "learning_rate": 0.0006, + "loss": 3.6720595359802246, + "step": 2835 + }, + { + "epoch": 39.391437308868504, + "grad_norm": 0.2459399700164795, + "learning_rate": 0.0006, + "loss": 3.667083740234375, + "step": 2836 + }, + { + "epoch": 39.40541721275666, + "grad_norm": 0.23579223453998566, + "learning_rate": 0.0006, + "loss": 3.665452480316162, + "step": 2837 + }, + { + "epoch": 39.419397116644824, + "grad_norm": 0.19401362538337708, + "learning_rate": 0.0006, + "loss": 3.684218406677246, + "step": 2838 + }, + { + "epoch": 39.43337702053299, + "grad_norm": 0.1894487738609314, + "learning_rate": 0.0006, + "loss": 3.670626163482666, + "step": 2839 + }, + { + "epoch": 39.44735692442114, + "grad_norm": 0.1936904937028885, + "learning_rate": 0.0006, + "loss": 3.6367318630218506, + "step": 2840 + }, + { + "epoch": 39.46133682830931, + "grad_norm": 0.1867629438638687, + "learning_rate": 0.0006, + "loss": 3.670098304748535, + "step": 2841 + }, + { + "epoch": 39.47531673219746, + "grad_norm": 0.18849903345108032, + "learning_rate": 0.0006, + "loss": 3.6877760887145996, + "step": 2842 + }, + { + "epoch": 39.489296636085626, + "grad_norm": 0.18247179687023163, + "learning_rate": 0.0006, + "loss": 3.7132980823516846, + "step": 2843 + }, + { + "epoch": 39.50327653997379, + "grad_norm": 0.19206349551677704, + "learning_rate": 0.0006, + "loss": 3.630319595336914, + "step": 2844 + }, + { + "epoch": 39.517256443861946, + "grad_norm": 0.21730613708496094, + "learning_rate": 0.0006, + "loss": 3.6818761825561523, + "step": 2845 + }, + { + "epoch": 39.53123634775011, + "grad_norm": 0.22482407093048096, + "learning_rate": 0.0006, + "loss": 3.6385269165039062, + "step": 2846 + }, + { + "epoch": 39.54521625163827, + "grad_norm": 0.24560105800628662, + "learning_rate": 0.0006, + "loss": 3.660067558288574, + "step": 2847 + }, + { + "epoch": 39.55919615552643, + "grad_norm": 0.23720617592334747, + "learning_rate": 0.0006, + "loss": 3.6811556816101074, + "step": 2848 + }, + { + "epoch": 39.57317605941459, + "grad_norm": 0.18990741670131683, + "learning_rate": 0.0006, + "loss": 3.6733779907226562, + "step": 2849 + }, + { + "epoch": 39.58715596330275, + "grad_norm": 0.2135438323020935, + "learning_rate": 0.0006, + "loss": 3.662020683288574, + "step": 2850 + }, + { + "epoch": 39.60113586719091, + "grad_norm": 0.24248908460140228, + "learning_rate": 0.0006, + "loss": 3.6794259548187256, + "step": 2851 + }, + { + "epoch": 39.615115771079076, + "grad_norm": 0.23115725815296173, + "learning_rate": 0.0006, + "loss": 3.6732406616210938, + "step": 2852 + }, + { + "epoch": 39.62909567496723, + "grad_norm": 0.23760166764259338, + "learning_rate": 0.0006, + "loss": 3.7062699794769287, + "step": 2853 + }, + { + "epoch": 39.643075578855395, + "grad_norm": 0.24670571088790894, + "learning_rate": 0.0006, + "loss": 3.692385673522949, + "step": 2854 + }, + { + "epoch": 39.65705548274356, + "grad_norm": 0.20983918011188507, + "learning_rate": 0.0006, + "loss": 3.691361427307129, + "step": 2855 + }, + { + "epoch": 39.671035386631715, + "grad_norm": 0.1915138065814972, + "learning_rate": 0.0006, + "loss": 3.6985888481140137, + "step": 2856 + }, + { + "epoch": 39.68501529051988, + "grad_norm": 0.23440803587436676, + "learning_rate": 0.0006, + "loss": 3.6484973430633545, + "step": 2857 + }, + { + "epoch": 39.69899519440804, + "grad_norm": 0.2483232468366623, + "learning_rate": 0.0006, + "loss": 3.6861510276794434, + "step": 2858 + }, + { + "epoch": 39.7129750982962, + "grad_norm": 0.21373426914215088, + "learning_rate": 0.0006, + "loss": 3.6528866291046143, + "step": 2859 + }, + { + "epoch": 39.72695500218436, + "grad_norm": 0.19849136471748352, + "learning_rate": 0.0006, + "loss": 3.6435961723327637, + "step": 2860 + }, + { + "epoch": 39.74093490607252, + "grad_norm": 0.21748292446136475, + "learning_rate": 0.0006, + "loss": 3.678481101989746, + "step": 2861 + }, + { + "epoch": 39.75491480996068, + "grad_norm": 0.22488188743591309, + "learning_rate": 0.0006, + "loss": 3.711717128753662, + "step": 2862 + }, + { + "epoch": 39.768894713848844, + "grad_norm": 0.22251835465431213, + "learning_rate": 0.0006, + "loss": 3.690516471862793, + "step": 2863 + }, + { + "epoch": 39.782874617737, + "grad_norm": 0.22101449966430664, + "learning_rate": 0.0006, + "loss": 3.6679611206054688, + "step": 2864 + }, + { + "epoch": 39.796854521625164, + "grad_norm": 0.20345936715602875, + "learning_rate": 0.0006, + "loss": 3.6935629844665527, + "step": 2865 + }, + { + "epoch": 39.81083442551333, + "grad_norm": 0.23772259056568146, + "learning_rate": 0.0006, + "loss": 3.697561264038086, + "step": 2866 + }, + { + "epoch": 39.824814329401484, + "grad_norm": 0.24446387588977814, + "learning_rate": 0.0006, + "loss": 3.696723461151123, + "step": 2867 + }, + { + "epoch": 39.83879423328965, + "grad_norm": 0.2365843653678894, + "learning_rate": 0.0006, + "loss": 3.6511402130126953, + "step": 2868 + }, + { + "epoch": 39.8527741371778, + "grad_norm": 0.25421974062919617, + "learning_rate": 0.0006, + "loss": 3.68449068069458, + "step": 2869 + }, + { + "epoch": 39.86675404106597, + "grad_norm": 0.2504308819770813, + "learning_rate": 0.0006, + "loss": 3.685884952545166, + "step": 2870 + }, + { + "epoch": 39.88073394495413, + "grad_norm": 0.24695490300655365, + "learning_rate": 0.0006, + "loss": 3.6667490005493164, + "step": 2871 + }, + { + "epoch": 39.89471384884229, + "grad_norm": 0.2633236348628998, + "learning_rate": 0.0006, + "loss": 3.6828866004943848, + "step": 2872 + }, + { + "epoch": 39.90869375273045, + "grad_norm": 0.2421039491891861, + "learning_rate": 0.0006, + "loss": 3.681187391281128, + "step": 2873 + }, + { + "epoch": 39.92267365661861, + "grad_norm": 0.21202950179576874, + "learning_rate": 0.0006, + "loss": 3.679069995880127, + "step": 2874 + }, + { + "epoch": 39.93665356050677, + "grad_norm": 0.2344917505979538, + "learning_rate": 0.0006, + "loss": 3.6810007095336914, + "step": 2875 + }, + { + "epoch": 39.95063346439493, + "grad_norm": 0.2115124762058258, + "learning_rate": 0.0006, + "loss": 3.653219223022461, + "step": 2876 + }, + { + "epoch": 39.964613368283096, + "grad_norm": 0.21588370203971863, + "learning_rate": 0.0006, + "loss": 3.6972861289978027, + "step": 2877 + }, + { + "epoch": 39.97859327217125, + "grad_norm": 0.26215407252311707, + "learning_rate": 0.0006, + "loss": 3.6796963214874268, + "step": 2878 + }, + { + "epoch": 39.992573176059416, + "grad_norm": 0.23645395040512085, + "learning_rate": 0.0006, + "loss": 3.696091413497925, + "step": 2879 + }, + { + "epoch": 40.0, + "grad_norm": 0.21817512810230255, + "learning_rate": 0.0006, + "loss": 3.668196678161621, + "step": 2880 + }, + { + "epoch": 40.0, + "eval_loss": 3.9873862266540527, + "eval_runtime": 44.1149, + "eval_samples_per_second": 55.355, + "eval_steps_per_second": 3.468, + "step": 2880 + }, + { + "epoch": 40.01397990388816, + "grad_norm": 0.2031477391719818, + "learning_rate": 0.0006, + "loss": 3.6494622230529785, + "step": 2881 + }, + { + "epoch": 40.02795980777632, + "grad_norm": 0.2223939746618271, + "learning_rate": 0.0006, + "loss": 3.6587047576904297, + "step": 2882 + }, + { + "epoch": 40.04193971166448, + "grad_norm": 0.21485820412635803, + "learning_rate": 0.0006, + "loss": 3.62253737449646, + "step": 2883 + }, + { + "epoch": 40.05591961555265, + "grad_norm": 0.23364055156707764, + "learning_rate": 0.0006, + "loss": 3.619035005569458, + "step": 2884 + }, + { + "epoch": 40.0698995194408, + "grad_norm": 0.23141583800315857, + "learning_rate": 0.0006, + "loss": 3.6650376319885254, + "step": 2885 + }, + { + "epoch": 40.083879423328966, + "grad_norm": 0.2131720930337906, + "learning_rate": 0.0006, + "loss": 3.646428108215332, + "step": 2886 + }, + { + "epoch": 40.09785932721712, + "grad_norm": 0.2337951511144638, + "learning_rate": 0.0006, + "loss": 3.6284823417663574, + "step": 2887 + }, + { + "epoch": 40.111839231105286, + "grad_norm": 0.2790892720222473, + "learning_rate": 0.0006, + "loss": 3.6558361053466797, + "step": 2888 + }, + { + "epoch": 40.12581913499345, + "grad_norm": 0.28444936871528625, + "learning_rate": 0.0006, + "loss": 3.644402503967285, + "step": 2889 + }, + { + "epoch": 40.139799038881605, + "grad_norm": 0.2550848126411438, + "learning_rate": 0.0006, + "loss": 3.671562671661377, + "step": 2890 + }, + { + "epoch": 40.15377894276977, + "grad_norm": 0.22960248589515686, + "learning_rate": 0.0006, + "loss": 3.6998534202575684, + "step": 2891 + }, + { + "epoch": 40.16775884665793, + "grad_norm": 0.23920369148254395, + "learning_rate": 0.0006, + "loss": 3.653874635696411, + "step": 2892 + }, + { + "epoch": 40.18173875054609, + "grad_norm": 0.24586012959480286, + "learning_rate": 0.0006, + "loss": 3.620765209197998, + "step": 2893 + }, + { + "epoch": 40.19571865443425, + "grad_norm": 0.26394739747047424, + "learning_rate": 0.0006, + "loss": 3.638437509536743, + "step": 2894 + }, + { + "epoch": 40.20969855832241, + "grad_norm": 0.27566927671432495, + "learning_rate": 0.0006, + "loss": 3.6684799194335938, + "step": 2895 + }, + { + "epoch": 40.22367846221057, + "grad_norm": 0.25469011068344116, + "learning_rate": 0.0006, + "loss": 3.6113009452819824, + "step": 2896 + }, + { + "epoch": 40.237658366098735, + "grad_norm": 0.2403056025505066, + "learning_rate": 0.0006, + "loss": 3.650771141052246, + "step": 2897 + }, + { + "epoch": 40.25163826998689, + "grad_norm": 0.262423038482666, + "learning_rate": 0.0006, + "loss": 3.635892391204834, + "step": 2898 + }, + { + "epoch": 40.265618173875055, + "grad_norm": 0.23696045577526093, + "learning_rate": 0.0006, + "loss": 3.6396005153656006, + "step": 2899 + }, + { + "epoch": 40.27959807776322, + "grad_norm": 0.208719402551651, + "learning_rate": 0.0006, + "loss": 3.6681132316589355, + "step": 2900 + }, + { + "epoch": 40.293577981651374, + "grad_norm": 0.21554480493068695, + "learning_rate": 0.0006, + "loss": 3.6417553424835205, + "step": 2901 + }, + { + "epoch": 40.30755788553954, + "grad_norm": 0.2290734499692917, + "learning_rate": 0.0006, + "loss": 3.6659927368164062, + "step": 2902 + }, + { + "epoch": 40.3215377894277, + "grad_norm": 0.20803220570087433, + "learning_rate": 0.0006, + "loss": 3.6443324089050293, + "step": 2903 + }, + { + "epoch": 40.33551769331586, + "grad_norm": 0.20334568619728088, + "learning_rate": 0.0006, + "loss": 3.6824207305908203, + "step": 2904 + }, + { + "epoch": 40.34949759720402, + "grad_norm": 0.2000233381986618, + "learning_rate": 0.0006, + "loss": 3.644399642944336, + "step": 2905 + }, + { + "epoch": 40.36347750109218, + "grad_norm": 0.21990752220153809, + "learning_rate": 0.0006, + "loss": 3.668160915374756, + "step": 2906 + }, + { + "epoch": 40.37745740498034, + "grad_norm": 0.24385249614715576, + "learning_rate": 0.0006, + "loss": 3.634392261505127, + "step": 2907 + }, + { + "epoch": 40.391437308868504, + "grad_norm": 0.21272684633731842, + "learning_rate": 0.0006, + "loss": 3.6504263877868652, + "step": 2908 + }, + { + "epoch": 40.40541721275666, + "grad_norm": 0.2003277838230133, + "learning_rate": 0.0006, + "loss": 3.6707763671875, + "step": 2909 + }, + { + "epoch": 40.419397116644824, + "grad_norm": 0.2086087465286255, + "learning_rate": 0.0006, + "loss": 3.66988468170166, + "step": 2910 + }, + { + "epoch": 40.43337702053299, + "grad_norm": 0.19706451892852783, + "learning_rate": 0.0006, + "loss": 3.662794828414917, + "step": 2911 + }, + { + "epoch": 40.44735692442114, + "grad_norm": 0.18795762956142426, + "learning_rate": 0.0006, + "loss": 3.628016233444214, + "step": 2912 + }, + { + "epoch": 40.46133682830931, + "grad_norm": 0.19931825995445251, + "learning_rate": 0.0006, + "loss": 3.6791915893554688, + "step": 2913 + }, + { + "epoch": 40.47531673219746, + "grad_norm": 0.21295934915542603, + "learning_rate": 0.0006, + "loss": 3.688632011413574, + "step": 2914 + }, + { + "epoch": 40.489296636085626, + "grad_norm": 0.2104834020137787, + "learning_rate": 0.0006, + "loss": 3.6270499229431152, + "step": 2915 + }, + { + "epoch": 40.50327653997379, + "grad_norm": 0.19942966103553772, + "learning_rate": 0.0006, + "loss": 3.651721477508545, + "step": 2916 + }, + { + "epoch": 40.517256443861946, + "grad_norm": 0.18890425562858582, + "learning_rate": 0.0006, + "loss": 3.6778619289398193, + "step": 2917 + }, + { + "epoch": 40.53123634775011, + "grad_norm": 0.19861607253551483, + "learning_rate": 0.0006, + "loss": 3.658832550048828, + "step": 2918 + }, + { + "epoch": 40.54521625163827, + "grad_norm": 0.21553616225719452, + "learning_rate": 0.0006, + "loss": 3.6566901206970215, + "step": 2919 + }, + { + "epoch": 40.55919615552643, + "grad_norm": 0.21698440611362457, + "learning_rate": 0.0006, + "loss": 3.6795129776000977, + "step": 2920 + }, + { + "epoch": 40.57317605941459, + "grad_norm": 0.20310913026332855, + "learning_rate": 0.0006, + "loss": 3.645244598388672, + "step": 2921 + }, + { + "epoch": 40.58715596330275, + "grad_norm": 0.2075812816619873, + "learning_rate": 0.0006, + "loss": 3.678452491760254, + "step": 2922 + }, + { + "epoch": 40.60113586719091, + "grad_norm": 0.20606619119644165, + "learning_rate": 0.0006, + "loss": 3.6150245666503906, + "step": 2923 + }, + { + "epoch": 40.615115771079076, + "grad_norm": 0.21511296927928925, + "learning_rate": 0.0006, + "loss": 3.6682112216949463, + "step": 2924 + }, + { + "epoch": 40.62909567496723, + "grad_norm": 0.19771839678287506, + "learning_rate": 0.0006, + "loss": 3.6639556884765625, + "step": 2925 + }, + { + "epoch": 40.643075578855395, + "grad_norm": 0.20419852435588837, + "learning_rate": 0.0006, + "loss": 3.664982318878174, + "step": 2926 + }, + { + "epoch": 40.65705548274356, + "grad_norm": 0.20119430124759674, + "learning_rate": 0.0006, + "loss": 3.661625385284424, + "step": 2927 + }, + { + "epoch": 40.671035386631715, + "grad_norm": 0.21590501070022583, + "learning_rate": 0.0006, + "loss": 3.673719644546509, + "step": 2928 + }, + { + "epoch": 40.68501529051988, + "grad_norm": 0.19165395200252533, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 2929 + }, + { + "epoch": 40.69899519440804, + "grad_norm": 0.19620473682880402, + "learning_rate": 0.0006, + "loss": 3.7008142471313477, + "step": 2930 + }, + { + "epoch": 40.7129750982962, + "grad_norm": 0.23002777993679047, + "learning_rate": 0.0006, + "loss": 3.654296875, + "step": 2931 + }, + { + "epoch": 40.72695500218436, + "grad_norm": 0.22007468342781067, + "learning_rate": 0.0006, + "loss": 3.688178539276123, + "step": 2932 + }, + { + "epoch": 40.74093490607252, + "grad_norm": 0.2030077874660492, + "learning_rate": 0.0006, + "loss": 3.6514129638671875, + "step": 2933 + }, + { + "epoch": 40.75491480996068, + "grad_norm": 0.20960700511932373, + "learning_rate": 0.0006, + "loss": 3.651864528656006, + "step": 2934 + }, + { + "epoch": 40.768894713848844, + "grad_norm": 0.2132565975189209, + "learning_rate": 0.0006, + "loss": 3.680915355682373, + "step": 2935 + }, + { + "epoch": 40.782874617737, + "grad_norm": 0.2411353588104248, + "learning_rate": 0.0006, + "loss": 3.647167682647705, + "step": 2936 + }, + { + "epoch": 40.796854521625164, + "grad_norm": 0.24621541798114777, + "learning_rate": 0.0006, + "loss": 3.6784768104553223, + "step": 2937 + }, + { + "epoch": 40.81083442551333, + "grad_norm": 0.23324407637119293, + "learning_rate": 0.0006, + "loss": 3.6855263710021973, + "step": 2938 + }, + { + "epoch": 40.824814329401484, + "grad_norm": 0.21749550104141235, + "learning_rate": 0.0006, + "loss": 3.672682285308838, + "step": 2939 + }, + { + "epoch": 40.83879423328965, + "grad_norm": 0.1957911103963852, + "learning_rate": 0.0006, + "loss": 3.635678291320801, + "step": 2940 + }, + { + "epoch": 40.8527741371778, + "grad_norm": 0.21262411773204803, + "learning_rate": 0.0006, + "loss": 3.6829824447631836, + "step": 2941 + }, + { + "epoch": 40.86675404106597, + "grad_norm": 0.19940680265426636, + "learning_rate": 0.0006, + "loss": 3.720932960510254, + "step": 2942 + }, + { + "epoch": 40.88073394495413, + "grad_norm": 0.1964999884366989, + "learning_rate": 0.0006, + "loss": 3.678405284881592, + "step": 2943 + }, + { + "epoch": 40.89471384884229, + "grad_norm": 0.21459022164344788, + "learning_rate": 0.0006, + "loss": 3.6788480281829834, + "step": 2944 + }, + { + "epoch": 40.90869375273045, + "grad_norm": 0.2251381129026413, + "learning_rate": 0.0006, + "loss": 3.679459571838379, + "step": 2945 + }, + { + "epoch": 40.92267365661861, + "grad_norm": 0.19951461255550385, + "learning_rate": 0.0006, + "loss": 3.6610841751098633, + "step": 2946 + }, + { + "epoch": 40.93665356050677, + "grad_norm": 0.2057943493127823, + "learning_rate": 0.0006, + "loss": 3.649491786956787, + "step": 2947 + }, + { + "epoch": 40.95063346439493, + "grad_norm": 0.19601917266845703, + "learning_rate": 0.0006, + "loss": 3.724552631378174, + "step": 2948 + }, + { + "epoch": 40.964613368283096, + "grad_norm": 0.20982769131660461, + "learning_rate": 0.0006, + "loss": 3.648465394973755, + "step": 2949 + }, + { + "epoch": 40.97859327217125, + "grad_norm": 0.21103954315185547, + "learning_rate": 0.0006, + "loss": 3.692239999771118, + "step": 2950 + }, + { + "epoch": 40.992573176059416, + "grad_norm": 0.2007385492324829, + "learning_rate": 0.0006, + "loss": 3.659999132156372, + "step": 2951 + }, + { + "epoch": 41.0, + "grad_norm": 0.22357431054115295, + "learning_rate": 0.0006, + "loss": 3.6461124420166016, + "step": 2952 + }, + { + "epoch": 41.0, + "eval_loss": 3.9891226291656494, + "eval_runtime": 44.65, + "eval_samples_per_second": 54.692, + "eval_steps_per_second": 3.427, + "step": 2952 + }, + { + "epoch": 41.01397990388816, + "grad_norm": 0.20387817919254303, + "learning_rate": 0.0006, + "loss": 3.643923282623291, + "step": 2953 + }, + { + "epoch": 41.02795980777632, + "grad_norm": 0.1988423764705658, + "learning_rate": 0.0006, + "loss": 3.6152570247650146, + "step": 2954 + }, + { + "epoch": 41.04193971166448, + "grad_norm": 0.19998641312122345, + "learning_rate": 0.0006, + "loss": 3.667520523071289, + "step": 2955 + }, + { + "epoch": 41.05591961555265, + "grad_norm": 0.18347714841365814, + "learning_rate": 0.0006, + "loss": 3.6289002895355225, + "step": 2956 + }, + { + "epoch": 41.0698995194408, + "grad_norm": 0.21235640347003937, + "learning_rate": 0.0006, + "loss": 3.6422951221466064, + "step": 2957 + }, + { + "epoch": 41.083879423328966, + "grad_norm": 0.1990172415971756, + "learning_rate": 0.0006, + "loss": 3.625697135925293, + "step": 2958 + }, + { + "epoch": 41.09785932721712, + "grad_norm": 0.18313643336296082, + "learning_rate": 0.0006, + "loss": 3.672356605529785, + "step": 2959 + }, + { + "epoch": 41.111839231105286, + "grad_norm": 0.17956401407718658, + "learning_rate": 0.0006, + "loss": 3.6093602180480957, + "step": 2960 + }, + { + "epoch": 41.12581913499345, + "grad_norm": 0.19487550854682922, + "learning_rate": 0.0006, + "loss": 3.6004128456115723, + "step": 2961 + }, + { + "epoch": 41.139799038881605, + "grad_norm": 0.2117495834827423, + "learning_rate": 0.0006, + "loss": 3.6468565464019775, + "step": 2962 + }, + { + "epoch": 41.15377894276977, + "grad_norm": 0.20602662861347198, + "learning_rate": 0.0006, + "loss": 3.6299140453338623, + "step": 2963 + }, + { + "epoch": 41.16775884665793, + "grad_norm": 0.21859265863895416, + "learning_rate": 0.0006, + "loss": 3.630052328109741, + "step": 2964 + }, + { + "epoch": 41.18173875054609, + "grad_norm": 0.22684140503406525, + "learning_rate": 0.0006, + "loss": 3.5995004177093506, + "step": 2965 + }, + { + "epoch": 41.19571865443425, + "grad_norm": 0.25682681798934937, + "learning_rate": 0.0006, + "loss": 3.613131523132324, + "step": 2966 + }, + { + "epoch": 41.20969855832241, + "grad_norm": 0.2508181631565094, + "learning_rate": 0.0006, + "loss": 3.644259452819824, + "step": 2967 + }, + { + "epoch": 41.22367846221057, + "grad_norm": 0.24200427532196045, + "learning_rate": 0.0006, + "loss": 3.6651816368103027, + "step": 2968 + }, + { + "epoch": 41.237658366098735, + "grad_norm": 0.21753790974617004, + "learning_rate": 0.0006, + "loss": 3.686199188232422, + "step": 2969 + }, + { + "epoch": 41.25163826998689, + "grad_norm": 0.19811955094337463, + "learning_rate": 0.0006, + "loss": 3.63014817237854, + "step": 2970 + }, + { + "epoch": 41.265618173875055, + "grad_norm": 0.19316327571868896, + "learning_rate": 0.0006, + "loss": 3.6532740592956543, + "step": 2971 + }, + { + "epoch": 41.27959807776322, + "grad_norm": 0.21440976858139038, + "learning_rate": 0.0006, + "loss": 3.6546850204467773, + "step": 2972 + }, + { + "epoch": 41.293577981651374, + "grad_norm": 0.2732681334018707, + "learning_rate": 0.0006, + "loss": 3.6135244369506836, + "step": 2973 + }, + { + "epoch": 41.30755788553954, + "grad_norm": 0.2588619589805603, + "learning_rate": 0.0006, + "loss": 3.657963275909424, + "step": 2974 + }, + { + "epoch": 41.3215377894277, + "grad_norm": 0.20054970681667328, + "learning_rate": 0.0006, + "loss": 3.6391024589538574, + "step": 2975 + }, + { + "epoch": 41.33551769331586, + "grad_norm": 0.23703549802303314, + "learning_rate": 0.0006, + "loss": 3.6609978675842285, + "step": 2976 + }, + { + "epoch": 41.34949759720402, + "grad_norm": 0.24222144484519958, + "learning_rate": 0.0006, + "loss": 3.659271478652954, + "step": 2977 + }, + { + "epoch": 41.36347750109218, + "grad_norm": 0.2228497713804245, + "learning_rate": 0.0006, + "loss": 3.607358455657959, + "step": 2978 + }, + { + "epoch": 41.37745740498034, + "grad_norm": 0.22105038166046143, + "learning_rate": 0.0006, + "loss": 3.64198899269104, + "step": 2979 + }, + { + "epoch": 41.391437308868504, + "grad_norm": 0.23753555119037628, + "learning_rate": 0.0006, + "loss": 3.63116455078125, + "step": 2980 + }, + { + "epoch": 41.40541721275666, + "grad_norm": 0.24492689967155457, + "learning_rate": 0.0006, + "loss": 3.636122465133667, + "step": 2981 + }, + { + "epoch": 41.419397116644824, + "grad_norm": 0.20610782504081726, + "learning_rate": 0.0006, + "loss": 3.656487226486206, + "step": 2982 + }, + { + "epoch": 41.43337702053299, + "grad_norm": 0.20781412720680237, + "learning_rate": 0.0006, + "loss": 3.669196605682373, + "step": 2983 + }, + { + "epoch": 41.44735692442114, + "grad_norm": 0.23892036080360413, + "learning_rate": 0.0006, + "loss": 3.6345765590667725, + "step": 2984 + }, + { + "epoch": 41.46133682830931, + "grad_norm": 0.2477712333202362, + "learning_rate": 0.0006, + "loss": 3.6599812507629395, + "step": 2985 + }, + { + "epoch": 41.47531673219746, + "grad_norm": 0.25314703583717346, + "learning_rate": 0.0006, + "loss": 3.6737258434295654, + "step": 2986 + }, + { + "epoch": 41.489296636085626, + "grad_norm": 0.2386070191860199, + "learning_rate": 0.0006, + "loss": 3.666586399078369, + "step": 2987 + }, + { + "epoch": 41.50327653997379, + "grad_norm": 0.27259722352027893, + "learning_rate": 0.0006, + "loss": 3.658761501312256, + "step": 2988 + }, + { + "epoch": 41.517256443861946, + "grad_norm": 0.3312860429286957, + "learning_rate": 0.0006, + "loss": 3.629699230194092, + "step": 2989 + }, + { + "epoch": 41.53123634775011, + "grad_norm": 0.3321581780910492, + "learning_rate": 0.0006, + "loss": 3.66628360748291, + "step": 2990 + }, + { + "epoch": 41.54521625163827, + "grad_norm": 0.2850016951560974, + "learning_rate": 0.0006, + "loss": 3.690005302429199, + "step": 2991 + }, + { + "epoch": 41.55919615552643, + "grad_norm": 0.2544100880622864, + "learning_rate": 0.0006, + "loss": 3.6554486751556396, + "step": 2992 + }, + { + "epoch": 41.57317605941459, + "grad_norm": 0.28541380167007446, + "learning_rate": 0.0006, + "loss": 3.672952175140381, + "step": 2993 + }, + { + "epoch": 41.58715596330275, + "grad_norm": 0.2909766435623169, + "learning_rate": 0.0006, + "loss": 3.6649627685546875, + "step": 2994 + }, + { + "epoch": 41.60113586719091, + "grad_norm": 0.26089969277381897, + "learning_rate": 0.0006, + "loss": 3.6512341499328613, + "step": 2995 + }, + { + "epoch": 41.615115771079076, + "grad_norm": 0.21815894544124603, + "learning_rate": 0.0006, + "loss": 3.612436056137085, + "step": 2996 + }, + { + "epoch": 41.62909567496723, + "grad_norm": 0.20712246000766754, + "learning_rate": 0.0006, + "loss": 3.6482479572296143, + "step": 2997 + }, + { + "epoch": 41.643075578855395, + "grad_norm": 0.23280103504657745, + "learning_rate": 0.0006, + "loss": 3.6648616790771484, + "step": 2998 + }, + { + "epoch": 41.65705548274356, + "grad_norm": 0.21623823046684265, + "learning_rate": 0.0006, + "loss": 3.6714487075805664, + "step": 2999 + }, + { + "epoch": 41.671035386631715, + "grad_norm": 0.2081632912158966, + "learning_rate": 0.0006, + "loss": 3.693014144897461, + "step": 3000 + }, + { + "epoch": 41.68501529051988, + "grad_norm": 0.23109425604343414, + "learning_rate": 0.0006, + "loss": 3.667262554168701, + "step": 3001 + }, + { + "epoch": 41.69899519440804, + "grad_norm": 0.2304934561252594, + "learning_rate": 0.0006, + "loss": 3.666405439376831, + "step": 3002 + }, + { + "epoch": 41.7129750982962, + "grad_norm": 0.23132432997226715, + "learning_rate": 0.0006, + "loss": 3.690964698791504, + "step": 3003 + }, + { + "epoch": 41.72695500218436, + "grad_norm": 0.2085159569978714, + "learning_rate": 0.0006, + "loss": 3.6620168685913086, + "step": 3004 + }, + { + "epoch": 41.74093490607252, + "grad_norm": 0.1919657438993454, + "learning_rate": 0.0006, + "loss": 3.67447566986084, + "step": 3005 + }, + { + "epoch": 41.75491480996068, + "grad_norm": 0.20189036428928375, + "learning_rate": 0.0006, + "loss": 3.6434998512268066, + "step": 3006 + }, + { + "epoch": 41.768894713848844, + "grad_norm": 0.23530980944633484, + "learning_rate": 0.0006, + "loss": 3.644280433654785, + "step": 3007 + }, + { + "epoch": 41.782874617737, + "grad_norm": 0.2550027370452881, + "learning_rate": 0.0006, + "loss": 3.6686060428619385, + "step": 3008 + }, + { + "epoch": 41.796854521625164, + "grad_norm": 0.2285512536764145, + "learning_rate": 0.0006, + "loss": 3.7013134956359863, + "step": 3009 + }, + { + "epoch": 41.81083442551333, + "grad_norm": 0.20538675785064697, + "learning_rate": 0.0006, + "loss": 3.6568830013275146, + "step": 3010 + }, + { + "epoch": 41.824814329401484, + "grad_norm": 0.2007976472377777, + "learning_rate": 0.0006, + "loss": 3.680250883102417, + "step": 3011 + }, + { + "epoch": 41.83879423328965, + "grad_norm": 0.20060500502586365, + "learning_rate": 0.0006, + "loss": 3.6565070152282715, + "step": 3012 + }, + { + "epoch": 41.8527741371778, + "grad_norm": 0.21055014431476593, + "learning_rate": 0.0006, + "loss": 3.661667823791504, + "step": 3013 + }, + { + "epoch": 41.86675404106597, + "grad_norm": 0.2201126217842102, + "learning_rate": 0.0006, + "loss": 3.650052070617676, + "step": 3014 + }, + { + "epoch": 41.88073394495413, + "grad_norm": 0.20397843420505524, + "learning_rate": 0.0006, + "loss": 3.6535415649414062, + "step": 3015 + }, + { + "epoch": 41.89471384884229, + "grad_norm": 0.1993463635444641, + "learning_rate": 0.0006, + "loss": 3.665696144104004, + "step": 3016 + }, + { + "epoch": 41.90869375273045, + "grad_norm": 0.20448797941207886, + "learning_rate": 0.0006, + "loss": 3.6448118686676025, + "step": 3017 + }, + { + "epoch": 41.92267365661861, + "grad_norm": 0.2064918726682663, + "learning_rate": 0.0006, + "loss": 3.6881537437438965, + "step": 3018 + }, + { + "epoch": 41.93665356050677, + "grad_norm": 0.20554372668266296, + "learning_rate": 0.0006, + "loss": 3.688559055328369, + "step": 3019 + }, + { + "epoch": 41.95063346439493, + "grad_norm": 0.1862783133983612, + "learning_rate": 0.0006, + "loss": 3.6713812351226807, + "step": 3020 + }, + { + "epoch": 41.964613368283096, + "grad_norm": 0.18139860033988953, + "learning_rate": 0.0006, + "loss": 3.6612548828125, + "step": 3021 + }, + { + "epoch": 41.97859327217125, + "grad_norm": 0.1844220608472824, + "learning_rate": 0.0006, + "loss": 3.641725540161133, + "step": 3022 + }, + { + "epoch": 41.992573176059416, + "grad_norm": 0.1885213702917099, + "learning_rate": 0.0006, + "loss": 3.663257122039795, + "step": 3023 + }, + { + "epoch": 42.0, + "grad_norm": 0.2250746339559555, + "learning_rate": 0.0006, + "loss": 3.6479320526123047, + "step": 3024 + }, + { + "epoch": 42.0, + "eval_loss": 3.993955135345459, + "eval_runtime": 44.4709, + "eval_samples_per_second": 54.912, + "eval_steps_per_second": 3.44, + "step": 3024 + }, + { + "epoch": 42.01397990388816, + "grad_norm": 0.21096517145633698, + "learning_rate": 0.0006, + "loss": 3.6729278564453125, + "step": 3025 + }, + { + "epoch": 42.02795980777632, + "grad_norm": 0.2106277495622635, + "learning_rate": 0.0006, + "loss": 3.629892349243164, + "step": 3026 + }, + { + "epoch": 42.04193971166448, + "grad_norm": 0.2673060894012451, + "learning_rate": 0.0006, + "loss": 3.643604040145874, + "step": 3027 + }, + { + "epoch": 42.05591961555265, + "grad_norm": 0.28180691599845886, + "learning_rate": 0.0006, + "loss": 3.596560478210449, + "step": 3028 + }, + { + "epoch": 42.0698995194408, + "grad_norm": 0.25607243180274963, + "learning_rate": 0.0006, + "loss": 3.597935199737549, + "step": 3029 + }, + { + "epoch": 42.083879423328966, + "grad_norm": 0.22120746970176697, + "learning_rate": 0.0006, + "loss": 3.6219305992126465, + "step": 3030 + }, + { + "epoch": 42.09785932721712, + "grad_norm": 0.2164907306432724, + "learning_rate": 0.0006, + "loss": 3.6220779418945312, + "step": 3031 + }, + { + "epoch": 42.111839231105286, + "grad_norm": 0.23800921440124512, + "learning_rate": 0.0006, + "loss": 3.63372540473938, + "step": 3032 + }, + { + "epoch": 42.12581913499345, + "grad_norm": 0.21812695264816284, + "learning_rate": 0.0006, + "loss": 3.636105537414551, + "step": 3033 + }, + { + "epoch": 42.139799038881605, + "grad_norm": 0.2027447372674942, + "learning_rate": 0.0006, + "loss": 3.6167502403259277, + "step": 3034 + }, + { + "epoch": 42.15377894276977, + "grad_norm": 0.20157714188098907, + "learning_rate": 0.0006, + "loss": 3.6141409873962402, + "step": 3035 + }, + { + "epoch": 42.16775884665793, + "grad_norm": 0.20780996978282928, + "learning_rate": 0.0006, + "loss": 3.6323471069335938, + "step": 3036 + }, + { + "epoch": 42.18173875054609, + "grad_norm": 0.20025081932544708, + "learning_rate": 0.0006, + "loss": 3.625446081161499, + "step": 3037 + }, + { + "epoch": 42.19571865443425, + "grad_norm": 0.20019082725048065, + "learning_rate": 0.0006, + "loss": 3.631418228149414, + "step": 3038 + }, + { + "epoch": 42.20969855832241, + "grad_norm": 0.21194526553153992, + "learning_rate": 0.0006, + "loss": 3.6180832386016846, + "step": 3039 + }, + { + "epoch": 42.22367846221057, + "grad_norm": 0.2016245573759079, + "learning_rate": 0.0006, + "loss": 3.6388602256774902, + "step": 3040 + }, + { + "epoch": 42.237658366098735, + "grad_norm": 0.1892252415418625, + "learning_rate": 0.0006, + "loss": 3.6086854934692383, + "step": 3041 + }, + { + "epoch": 42.25163826998689, + "grad_norm": 0.1878061145544052, + "learning_rate": 0.0006, + "loss": 3.599428176879883, + "step": 3042 + }, + { + "epoch": 42.265618173875055, + "grad_norm": 0.20258742570877075, + "learning_rate": 0.0006, + "loss": 3.6177172660827637, + "step": 3043 + }, + { + "epoch": 42.27959807776322, + "grad_norm": 0.2114444226026535, + "learning_rate": 0.0006, + "loss": 3.641916275024414, + "step": 3044 + }, + { + "epoch": 42.293577981651374, + "grad_norm": 0.19873645901679993, + "learning_rate": 0.0006, + "loss": 3.6585676670074463, + "step": 3045 + }, + { + "epoch": 42.30755788553954, + "grad_norm": 0.20361217856407166, + "learning_rate": 0.0006, + "loss": 3.648475170135498, + "step": 3046 + }, + { + "epoch": 42.3215377894277, + "grad_norm": 0.20227114856243134, + "learning_rate": 0.0006, + "loss": 3.63625431060791, + "step": 3047 + }, + { + "epoch": 42.33551769331586, + "grad_norm": 0.18246233463287354, + "learning_rate": 0.0006, + "loss": 3.6380200386047363, + "step": 3048 + }, + { + "epoch": 42.34949759720402, + "grad_norm": 0.17944976687431335, + "learning_rate": 0.0006, + "loss": 3.6325912475585938, + "step": 3049 + }, + { + "epoch": 42.36347750109218, + "grad_norm": 0.188584566116333, + "learning_rate": 0.0006, + "loss": 3.6418886184692383, + "step": 3050 + }, + { + "epoch": 42.37745740498034, + "grad_norm": 0.1917790323495865, + "learning_rate": 0.0006, + "loss": 3.664421558380127, + "step": 3051 + }, + { + "epoch": 42.391437308868504, + "grad_norm": 0.175637349486351, + "learning_rate": 0.0006, + "loss": 3.641819953918457, + "step": 3052 + }, + { + "epoch": 42.40541721275666, + "grad_norm": 0.18751518428325653, + "learning_rate": 0.0006, + "loss": 3.646697998046875, + "step": 3053 + }, + { + "epoch": 42.419397116644824, + "grad_norm": 0.1805887520313263, + "learning_rate": 0.0006, + "loss": 3.637866735458374, + "step": 3054 + }, + { + "epoch": 42.43337702053299, + "grad_norm": 0.19680845737457275, + "learning_rate": 0.0006, + "loss": 3.602511405944824, + "step": 3055 + }, + { + "epoch": 42.44735692442114, + "grad_norm": 0.20605766773223877, + "learning_rate": 0.0006, + "loss": 3.6472771167755127, + "step": 3056 + }, + { + "epoch": 42.46133682830931, + "grad_norm": 0.18083851039409637, + "learning_rate": 0.0006, + "loss": 3.6672325134277344, + "step": 3057 + }, + { + "epoch": 42.47531673219746, + "grad_norm": 0.19665084779262543, + "learning_rate": 0.0006, + "loss": 3.625300884246826, + "step": 3058 + }, + { + "epoch": 42.489296636085626, + "grad_norm": 0.22506165504455566, + "learning_rate": 0.0006, + "loss": 3.592872142791748, + "step": 3059 + }, + { + "epoch": 42.50327653997379, + "grad_norm": 0.2051578164100647, + "learning_rate": 0.0006, + "loss": 3.6302249431610107, + "step": 3060 + }, + { + "epoch": 42.517256443861946, + "grad_norm": 0.18957172334194183, + "learning_rate": 0.0006, + "loss": 3.6277074813842773, + "step": 3061 + }, + { + "epoch": 42.53123634775011, + "grad_norm": 0.21467208862304688, + "learning_rate": 0.0006, + "loss": 3.6121392250061035, + "step": 3062 + }, + { + "epoch": 42.54521625163827, + "grad_norm": 0.21618402004241943, + "learning_rate": 0.0006, + "loss": 3.664738655090332, + "step": 3063 + }, + { + "epoch": 42.55919615552643, + "grad_norm": 0.2259770780801773, + "learning_rate": 0.0006, + "loss": 3.652042865753174, + "step": 3064 + }, + { + "epoch": 42.57317605941459, + "grad_norm": 0.22667232155799866, + "learning_rate": 0.0006, + "loss": 3.6552934646606445, + "step": 3065 + }, + { + "epoch": 42.58715596330275, + "grad_norm": 0.21405228972434998, + "learning_rate": 0.0006, + "loss": 3.644043445587158, + "step": 3066 + }, + { + "epoch": 42.60113586719091, + "grad_norm": 0.20855450630187988, + "learning_rate": 0.0006, + "loss": 3.6534876823425293, + "step": 3067 + }, + { + "epoch": 42.615115771079076, + "grad_norm": 0.22474415600299835, + "learning_rate": 0.0006, + "loss": 3.656677484512329, + "step": 3068 + }, + { + "epoch": 42.62909567496723, + "grad_norm": 0.23401428759098053, + "learning_rate": 0.0006, + "loss": 3.6788997650146484, + "step": 3069 + }, + { + "epoch": 42.643075578855395, + "grad_norm": 0.21567967534065247, + "learning_rate": 0.0006, + "loss": 3.675379753112793, + "step": 3070 + }, + { + "epoch": 42.65705548274356, + "grad_norm": 0.21704941987991333, + "learning_rate": 0.0006, + "loss": 3.630707263946533, + "step": 3071 + }, + { + "epoch": 42.671035386631715, + "grad_norm": 0.2718963921070099, + "learning_rate": 0.0006, + "loss": 3.6653294563293457, + "step": 3072 + }, + { + "epoch": 42.68501529051988, + "grad_norm": 0.30198901891708374, + "learning_rate": 0.0006, + "loss": 3.6761326789855957, + "step": 3073 + }, + { + "epoch": 42.69899519440804, + "grad_norm": 0.27593618631362915, + "learning_rate": 0.0006, + "loss": 3.6610732078552246, + "step": 3074 + }, + { + "epoch": 42.7129750982962, + "grad_norm": 0.22495242953300476, + "learning_rate": 0.0006, + "loss": 3.656907320022583, + "step": 3075 + }, + { + "epoch": 42.72695500218436, + "grad_norm": 0.19872353971004486, + "learning_rate": 0.0006, + "loss": 3.6611597537994385, + "step": 3076 + }, + { + "epoch": 42.74093490607252, + "grad_norm": 0.21527111530303955, + "learning_rate": 0.0006, + "loss": 3.676821708679199, + "step": 3077 + }, + { + "epoch": 42.75491480996068, + "grad_norm": 0.22314463555812836, + "learning_rate": 0.0006, + "loss": 3.629460334777832, + "step": 3078 + }, + { + "epoch": 42.768894713848844, + "grad_norm": 0.23461024463176727, + "learning_rate": 0.0006, + "loss": 3.665390968322754, + "step": 3079 + }, + { + "epoch": 42.782874617737, + "grad_norm": 0.2582414448261261, + "learning_rate": 0.0006, + "loss": 3.6420979499816895, + "step": 3080 + }, + { + "epoch": 42.796854521625164, + "grad_norm": 0.2505052983760834, + "learning_rate": 0.0006, + "loss": 3.67236328125, + "step": 3081 + }, + { + "epoch": 42.81083442551333, + "grad_norm": 0.22617632150650024, + "learning_rate": 0.0006, + "loss": 3.654897689819336, + "step": 3082 + }, + { + "epoch": 42.824814329401484, + "grad_norm": 0.2340085208415985, + "learning_rate": 0.0006, + "loss": 3.6423635482788086, + "step": 3083 + }, + { + "epoch": 42.83879423328965, + "grad_norm": 0.26765671372413635, + "learning_rate": 0.0006, + "loss": 3.622769832611084, + "step": 3084 + }, + { + "epoch": 42.8527741371778, + "grad_norm": 0.29490381479263306, + "learning_rate": 0.0006, + "loss": 3.656053066253662, + "step": 3085 + }, + { + "epoch": 42.86675404106597, + "grad_norm": 0.29776132106781006, + "learning_rate": 0.0006, + "loss": 3.6454644203186035, + "step": 3086 + }, + { + "epoch": 42.88073394495413, + "grad_norm": 0.23994849622249603, + "learning_rate": 0.0006, + "loss": 3.674665927886963, + "step": 3087 + }, + { + "epoch": 42.89471384884229, + "grad_norm": 0.21456265449523926, + "learning_rate": 0.0006, + "loss": 3.670175790786743, + "step": 3088 + }, + { + "epoch": 42.90869375273045, + "grad_norm": 0.25727778673171997, + "learning_rate": 0.0006, + "loss": 3.6425390243530273, + "step": 3089 + }, + { + "epoch": 42.92267365661861, + "grad_norm": 0.30310627818107605, + "learning_rate": 0.0006, + "loss": 3.68511962890625, + "step": 3090 + }, + { + "epoch": 42.93665356050677, + "grad_norm": 0.2792291045188904, + "learning_rate": 0.0006, + "loss": 3.681732654571533, + "step": 3091 + }, + { + "epoch": 42.95063346439493, + "grad_norm": 0.23614276945590973, + "learning_rate": 0.0006, + "loss": 3.6417222023010254, + "step": 3092 + }, + { + "epoch": 42.964613368283096, + "grad_norm": 0.23602448403835297, + "learning_rate": 0.0006, + "loss": 3.6602869033813477, + "step": 3093 + }, + { + "epoch": 42.97859327217125, + "grad_norm": 0.21968287229537964, + "learning_rate": 0.0006, + "loss": 3.6618118286132812, + "step": 3094 + }, + { + "epoch": 42.992573176059416, + "grad_norm": 0.2177523374557495, + "learning_rate": 0.0006, + "loss": 3.666904926300049, + "step": 3095 + }, + { + "epoch": 43.0, + "grad_norm": 0.23960894346237183, + "learning_rate": 0.0006, + "loss": 3.710965633392334, + "step": 3096 + }, + { + "epoch": 43.0, + "eval_loss": 3.977475166320801, + "eval_runtime": 44.5209, + "eval_samples_per_second": 54.851, + "eval_steps_per_second": 3.437, + "step": 3096 + }, + { + "epoch": 43.01397990388816, + "grad_norm": 0.24180234968662262, + "learning_rate": 0.0006, + "loss": 3.5949223041534424, + "step": 3097 + }, + { + "epoch": 43.02795980777632, + "grad_norm": 0.3331127166748047, + "learning_rate": 0.0006, + "loss": 3.625802755355835, + "step": 3098 + }, + { + "epoch": 43.04193971166448, + "grad_norm": 0.38338130712509155, + "learning_rate": 0.0006, + "loss": 3.6390271186828613, + "step": 3099 + }, + { + "epoch": 43.05591961555265, + "grad_norm": 0.32292598485946655, + "learning_rate": 0.0006, + "loss": 3.630621910095215, + "step": 3100 + }, + { + "epoch": 43.0698995194408, + "grad_norm": 0.24179677665233612, + "learning_rate": 0.0006, + "loss": 3.6124491691589355, + "step": 3101 + }, + { + "epoch": 43.083879423328966, + "grad_norm": 0.2622842788696289, + "learning_rate": 0.0006, + "loss": 3.6207399368286133, + "step": 3102 + }, + { + "epoch": 43.09785932721712, + "grad_norm": 0.264297217130661, + "learning_rate": 0.0006, + "loss": 3.637218475341797, + "step": 3103 + }, + { + "epoch": 43.111839231105286, + "grad_norm": 0.25815117359161377, + "learning_rate": 0.0006, + "loss": 3.614841938018799, + "step": 3104 + }, + { + "epoch": 43.12581913499345, + "grad_norm": 0.2209406942129135, + "learning_rate": 0.0006, + "loss": 3.604722738265991, + "step": 3105 + }, + { + "epoch": 43.139799038881605, + "grad_norm": 0.22333410382270813, + "learning_rate": 0.0006, + "loss": 3.6388449668884277, + "step": 3106 + }, + { + "epoch": 43.15377894276977, + "grad_norm": 0.2194417119026184, + "learning_rate": 0.0006, + "loss": 3.611644744873047, + "step": 3107 + }, + { + "epoch": 43.16775884665793, + "grad_norm": 0.21270349621772766, + "learning_rate": 0.0006, + "loss": 3.6180214881896973, + "step": 3108 + }, + { + "epoch": 43.18173875054609, + "grad_norm": 0.21358032524585724, + "learning_rate": 0.0006, + "loss": 3.646512985229492, + "step": 3109 + }, + { + "epoch": 43.19571865443425, + "grad_norm": 0.2180788666009903, + "learning_rate": 0.0006, + "loss": 3.641981363296509, + "step": 3110 + }, + { + "epoch": 43.20969855832241, + "grad_norm": 0.21979685127735138, + "learning_rate": 0.0006, + "loss": 3.6251654624938965, + "step": 3111 + }, + { + "epoch": 43.22367846221057, + "grad_norm": 0.2072533220052719, + "learning_rate": 0.0006, + "loss": 3.665372371673584, + "step": 3112 + }, + { + "epoch": 43.237658366098735, + "grad_norm": 0.2085742950439453, + "learning_rate": 0.0006, + "loss": 3.647730827331543, + "step": 3113 + }, + { + "epoch": 43.25163826998689, + "grad_norm": 0.1934993416070938, + "learning_rate": 0.0006, + "loss": 3.6296567916870117, + "step": 3114 + }, + { + "epoch": 43.265618173875055, + "grad_norm": 0.1954783797264099, + "learning_rate": 0.0006, + "loss": 3.6412858963012695, + "step": 3115 + }, + { + "epoch": 43.27959807776322, + "grad_norm": 0.1932750642299652, + "learning_rate": 0.0006, + "loss": 3.6246860027313232, + "step": 3116 + }, + { + "epoch": 43.293577981651374, + "grad_norm": 0.19765302538871765, + "learning_rate": 0.0006, + "loss": 3.618922710418701, + "step": 3117 + }, + { + "epoch": 43.30755788553954, + "grad_norm": 0.1987425684928894, + "learning_rate": 0.0006, + "loss": 3.633185863494873, + "step": 3118 + }, + { + "epoch": 43.3215377894277, + "grad_norm": 0.1894739419221878, + "learning_rate": 0.0006, + "loss": 3.595709800720215, + "step": 3119 + }, + { + "epoch": 43.33551769331586, + "grad_norm": 0.19455872476100922, + "learning_rate": 0.0006, + "loss": 3.6309051513671875, + "step": 3120 + }, + { + "epoch": 43.34949759720402, + "grad_norm": 0.21448275446891785, + "learning_rate": 0.0006, + "loss": 3.6425981521606445, + "step": 3121 + }, + { + "epoch": 43.36347750109218, + "grad_norm": 0.24527893960475922, + "learning_rate": 0.0006, + "loss": 3.6497793197631836, + "step": 3122 + }, + { + "epoch": 43.37745740498034, + "grad_norm": 0.253231942653656, + "learning_rate": 0.0006, + "loss": 3.644453525543213, + "step": 3123 + }, + { + "epoch": 43.391437308868504, + "grad_norm": 0.2048978954553604, + "learning_rate": 0.0006, + "loss": 3.5963876247406006, + "step": 3124 + }, + { + "epoch": 43.40541721275666, + "grad_norm": 0.19951528310775757, + "learning_rate": 0.0006, + "loss": 3.6274406909942627, + "step": 3125 + }, + { + "epoch": 43.419397116644824, + "grad_norm": 0.2293875813484192, + "learning_rate": 0.0006, + "loss": 3.6482725143432617, + "step": 3126 + }, + { + "epoch": 43.43337702053299, + "grad_norm": 0.22379456460475922, + "learning_rate": 0.0006, + "loss": 3.6466073989868164, + "step": 3127 + }, + { + "epoch": 43.44735692442114, + "grad_norm": 0.2275441288948059, + "learning_rate": 0.0006, + "loss": 3.6529078483581543, + "step": 3128 + }, + { + "epoch": 43.46133682830931, + "grad_norm": 0.23014242947101593, + "learning_rate": 0.0006, + "loss": 3.6084837913513184, + "step": 3129 + }, + { + "epoch": 43.47531673219746, + "grad_norm": 0.22280924022197723, + "learning_rate": 0.0006, + "loss": 3.611320734024048, + "step": 3130 + }, + { + "epoch": 43.489296636085626, + "grad_norm": 0.19498756527900696, + "learning_rate": 0.0006, + "loss": 3.630185604095459, + "step": 3131 + }, + { + "epoch": 43.50327653997379, + "grad_norm": 0.21357767283916473, + "learning_rate": 0.0006, + "loss": 3.6509933471679688, + "step": 3132 + }, + { + "epoch": 43.517256443861946, + "grad_norm": 0.21775896847248077, + "learning_rate": 0.0006, + "loss": 3.635112762451172, + "step": 3133 + }, + { + "epoch": 43.53123634775011, + "grad_norm": 0.2035629004240036, + "learning_rate": 0.0006, + "loss": 3.658327102661133, + "step": 3134 + }, + { + "epoch": 43.54521625163827, + "grad_norm": 0.20083840191364288, + "learning_rate": 0.0006, + "loss": 3.632441997528076, + "step": 3135 + }, + { + "epoch": 43.55919615552643, + "grad_norm": 0.1922001987695694, + "learning_rate": 0.0006, + "loss": 3.6417734622955322, + "step": 3136 + }, + { + "epoch": 43.57317605941459, + "grad_norm": 0.21049264073371887, + "learning_rate": 0.0006, + "loss": 3.671274423599243, + "step": 3137 + }, + { + "epoch": 43.58715596330275, + "grad_norm": 0.21432001888751984, + "learning_rate": 0.0006, + "loss": 3.6216118335723877, + "step": 3138 + }, + { + "epoch": 43.60113586719091, + "grad_norm": 0.25448811054229736, + "learning_rate": 0.0006, + "loss": 3.658283233642578, + "step": 3139 + }, + { + "epoch": 43.615115771079076, + "grad_norm": 0.24313904345035553, + "learning_rate": 0.0006, + "loss": 3.6447594165802, + "step": 3140 + }, + { + "epoch": 43.62909567496723, + "grad_norm": 0.2332659363746643, + "learning_rate": 0.0006, + "loss": 3.625528573989868, + "step": 3141 + }, + { + "epoch": 43.643075578855395, + "grad_norm": 0.23222137987613678, + "learning_rate": 0.0006, + "loss": 3.6524429321289062, + "step": 3142 + }, + { + "epoch": 43.65705548274356, + "grad_norm": 0.2147051990032196, + "learning_rate": 0.0006, + "loss": 3.6517302989959717, + "step": 3143 + }, + { + "epoch": 43.671035386631715, + "grad_norm": 0.2464994341135025, + "learning_rate": 0.0006, + "loss": 3.654947519302368, + "step": 3144 + }, + { + "epoch": 43.68501529051988, + "grad_norm": 0.2365981936454773, + "learning_rate": 0.0006, + "loss": 3.638695240020752, + "step": 3145 + }, + { + "epoch": 43.69899519440804, + "grad_norm": 0.2325262874364853, + "learning_rate": 0.0006, + "loss": 3.6496055126190186, + "step": 3146 + }, + { + "epoch": 43.7129750982962, + "grad_norm": 0.2196085900068283, + "learning_rate": 0.0006, + "loss": 3.6323978900909424, + "step": 3147 + }, + { + "epoch": 43.72695500218436, + "grad_norm": 0.20404237508773804, + "learning_rate": 0.0006, + "loss": 3.6572763919830322, + "step": 3148 + }, + { + "epoch": 43.74093490607252, + "grad_norm": 0.2363257110118866, + "learning_rate": 0.0006, + "loss": 3.6347732543945312, + "step": 3149 + }, + { + "epoch": 43.75491480996068, + "grad_norm": 0.23671524226665497, + "learning_rate": 0.0006, + "loss": 3.650017023086548, + "step": 3150 + }, + { + "epoch": 43.768894713848844, + "grad_norm": 0.20892305672168732, + "learning_rate": 0.0006, + "loss": 3.638185977935791, + "step": 3151 + }, + { + "epoch": 43.782874617737, + "grad_norm": 0.18670055270195007, + "learning_rate": 0.0006, + "loss": 3.6647696495056152, + "step": 3152 + }, + { + "epoch": 43.796854521625164, + "grad_norm": 0.21818184852600098, + "learning_rate": 0.0006, + "loss": 3.663623332977295, + "step": 3153 + }, + { + "epoch": 43.81083442551333, + "grad_norm": 0.23472464084625244, + "learning_rate": 0.0006, + "loss": 3.650595188140869, + "step": 3154 + }, + { + "epoch": 43.824814329401484, + "grad_norm": 0.2266419678926468, + "learning_rate": 0.0006, + "loss": 3.6362059116363525, + "step": 3155 + }, + { + "epoch": 43.83879423328965, + "grad_norm": 0.2250787913799286, + "learning_rate": 0.0006, + "loss": 3.647970199584961, + "step": 3156 + }, + { + "epoch": 43.8527741371778, + "grad_norm": 0.21493776142597198, + "learning_rate": 0.0006, + "loss": 3.6510982513427734, + "step": 3157 + }, + { + "epoch": 43.86675404106597, + "grad_norm": 0.20783160626888275, + "learning_rate": 0.0006, + "loss": 3.654845714569092, + "step": 3158 + }, + { + "epoch": 43.88073394495413, + "grad_norm": 0.2222554087638855, + "learning_rate": 0.0006, + "loss": 3.6565685272216797, + "step": 3159 + }, + { + "epoch": 43.89471384884229, + "grad_norm": 0.2148049771785736, + "learning_rate": 0.0006, + "loss": 3.630779266357422, + "step": 3160 + }, + { + "epoch": 43.90869375273045, + "grad_norm": 0.2222086787223816, + "learning_rate": 0.0006, + "loss": 3.6312813758850098, + "step": 3161 + }, + { + "epoch": 43.92267365661861, + "grad_norm": 0.24049264192581177, + "learning_rate": 0.0006, + "loss": 3.6185736656188965, + "step": 3162 + }, + { + "epoch": 43.93665356050677, + "grad_norm": 0.2228843867778778, + "learning_rate": 0.0006, + "loss": 3.595583438873291, + "step": 3163 + }, + { + "epoch": 43.95063346439493, + "grad_norm": 0.20714408159255981, + "learning_rate": 0.0006, + "loss": 3.6649322509765625, + "step": 3164 + }, + { + "epoch": 43.964613368283096, + "grad_norm": 0.2048991471529007, + "learning_rate": 0.0006, + "loss": 3.6513710021972656, + "step": 3165 + }, + { + "epoch": 43.97859327217125, + "grad_norm": 0.21874114871025085, + "learning_rate": 0.0006, + "loss": 3.6471524238586426, + "step": 3166 + }, + { + "epoch": 43.992573176059416, + "grad_norm": 0.21309879422187805, + "learning_rate": 0.0006, + "loss": 3.647021770477295, + "step": 3167 + }, + { + "epoch": 44.0, + "grad_norm": 0.23717166483402252, + "learning_rate": 0.0006, + "loss": 3.6903820037841797, + "step": 3168 + }, + { + "epoch": 44.0, + "eval_loss": 3.9844837188720703, + "eval_runtime": 44.29, + "eval_samples_per_second": 55.137, + "eval_steps_per_second": 3.455, + "step": 3168 + }, + { + "epoch": 44.01397990388816, + "grad_norm": 0.21503832936286926, + "learning_rate": 0.0006, + "loss": 3.6054744720458984, + "step": 3169 + }, + { + "epoch": 44.02795980777632, + "grad_norm": 0.2289554923772812, + "learning_rate": 0.0006, + "loss": 3.6560556888580322, + "step": 3170 + }, + { + "epoch": 44.04193971166448, + "grad_norm": 0.24250416457653046, + "learning_rate": 0.0006, + "loss": 3.611820697784424, + "step": 3171 + }, + { + "epoch": 44.05591961555265, + "grad_norm": 0.2526668310165405, + "learning_rate": 0.0006, + "loss": 3.6273183822631836, + "step": 3172 + }, + { + "epoch": 44.0698995194408, + "grad_norm": 0.26702383160591125, + "learning_rate": 0.0006, + "loss": 3.5856852531433105, + "step": 3173 + }, + { + "epoch": 44.083879423328966, + "grad_norm": 0.2715195417404175, + "learning_rate": 0.0006, + "loss": 3.631045341491699, + "step": 3174 + }, + { + "epoch": 44.09785932721712, + "grad_norm": 0.3505614995956421, + "learning_rate": 0.0006, + "loss": 3.628720760345459, + "step": 3175 + }, + { + "epoch": 44.111839231105286, + "grad_norm": 0.2760702967643738, + "learning_rate": 0.0006, + "loss": 3.6283509731292725, + "step": 3176 + }, + { + "epoch": 44.12581913499345, + "grad_norm": 0.21105222404003143, + "learning_rate": 0.0006, + "loss": 3.6495566368103027, + "step": 3177 + }, + { + "epoch": 44.139799038881605, + "grad_norm": 0.2852860987186432, + "learning_rate": 0.0006, + "loss": 3.640768527984619, + "step": 3178 + }, + { + "epoch": 44.15377894276977, + "grad_norm": 0.2941005825996399, + "learning_rate": 0.0006, + "loss": 3.6303114891052246, + "step": 3179 + }, + { + "epoch": 44.16775884665793, + "grad_norm": 0.2792299687862396, + "learning_rate": 0.0006, + "loss": 3.6053574085235596, + "step": 3180 + }, + { + "epoch": 44.18173875054609, + "grad_norm": 0.23168638348579407, + "learning_rate": 0.0006, + "loss": 3.62430477142334, + "step": 3181 + }, + { + "epoch": 44.19571865443425, + "grad_norm": 0.23713921010494232, + "learning_rate": 0.0006, + "loss": 3.601106643676758, + "step": 3182 + }, + { + "epoch": 44.20969855832241, + "grad_norm": 0.23341049253940582, + "learning_rate": 0.0006, + "loss": 3.631762742996216, + "step": 3183 + }, + { + "epoch": 44.22367846221057, + "grad_norm": 0.23094508051872253, + "learning_rate": 0.0006, + "loss": 3.586683750152588, + "step": 3184 + }, + { + "epoch": 44.237658366098735, + "grad_norm": 0.24085712432861328, + "learning_rate": 0.0006, + "loss": 3.6251423358917236, + "step": 3185 + }, + { + "epoch": 44.25163826998689, + "grad_norm": 0.24999955296516418, + "learning_rate": 0.0006, + "loss": 3.6554198265075684, + "step": 3186 + }, + { + "epoch": 44.265618173875055, + "grad_norm": 0.21759621798992157, + "learning_rate": 0.0006, + "loss": 3.6249518394470215, + "step": 3187 + }, + { + "epoch": 44.27959807776322, + "grad_norm": 0.2490139901638031, + "learning_rate": 0.0006, + "loss": 3.6163341999053955, + "step": 3188 + }, + { + "epoch": 44.293577981651374, + "grad_norm": 0.23420892655849457, + "learning_rate": 0.0006, + "loss": 3.615469455718994, + "step": 3189 + }, + { + "epoch": 44.30755788553954, + "grad_norm": 0.2292138934135437, + "learning_rate": 0.0006, + "loss": 3.6085104942321777, + "step": 3190 + }, + { + "epoch": 44.3215377894277, + "grad_norm": 0.22595474123954773, + "learning_rate": 0.0006, + "loss": 3.6317405700683594, + "step": 3191 + }, + { + "epoch": 44.33551769331586, + "grad_norm": 0.22418338060379028, + "learning_rate": 0.0006, + "loss": 3.6287777423858643, + "step": 3192 + }, + { + "epoch": 44.34949759720402, + "grad_norm": 0.2453135848045349, + "learning_rate": 0.0006, + "loss": 3.6228437423706055, + "step": 3193 + }, + { + "epoch": 44.36347750109218, + "grad_norm": 0.2627771198749542, + "learning_rate": 0.0006, + "loss": 3.6581034660339355, + "step": 3194 + }, + { + "epoch": 44.37745740498034, + "grad_norm": 0.24114494025707245, + "learning_rate": 0.0006, + "loss": 3.653505563735962, + "step": 3195 + }, + { + "epoch": 44.391437308868504, + "grad_norm": 0.2103721648454666, + "learning_rate": 0.0006, + "loss": 3.5698580741882324, + "step": 3196 + }, + { + "epoch": 44.40541721275666, + "grad_norm": 0.21172291040420532, + "learning_rate": 0.0006, + "loss": 3.573453426361084, + "step": 3197 + }, + { + "epoch": 44.419397116644824, + "grad_norm": 0.20298106968402863, + "learning_rate": 0.0006, + "loss": 3.6350207328796387, + "step": 3198 + }, + { + "epoch": 44.43337702053299, + "grad_norm": 0.2029009759426117, + "learning_rate": 0.0006, + "loss": 3.6025917530059814, + "step": 3199 + }, + { + "epoch": 44.44735692442114, + "grad_norm": 0.18960542976856232, + "learning_rate": 0.0006, + "loss": 3.625028133392334, + "step": 3200 + }, + { + "epoch": 44.46133682830931, + "grad_norm": 0.20758579671382904, + "learning_rate": 0.0006, + "loss": 3.647071123123169, + "step": 3201 + }, + { + "epoch": 44.47531673219746, + "grad_norm": 0.21896769106388092, + "learning_rate": 0.0006, + "loss": 3.6481196880340576, + "step": 3202 + }, + { + "epoch": 44.489296636085626, + "grad_norm": 0.20817387104034424, + "learning_rate": 0.0006, + "loss": 3.629366874694824, + "step": 3203 + }, + { + "epoch": 44.50327653997379, + "grad_norm": 0.2099488228559494, + "learning_rate": 0.0006, + "loss": 3.6757798194885254, + "step": 3204 + }, + { + "epoch": 44.517256443861946, + "grad_norm": 0.21376627683639526, + "learning_rate": 0.0006, + "loss": 3.638324737548828, + "step": 3205 + }, + { + "epoch": 44.53123634775011, + "grad_norm": 0.19089072942733765, + "learning_rate": 0.0006, + "loss": 3.6497435569763184, + "step": 3206 + }, + { + "epoch": 44.54521625163827, + "grad_norm": 0.20489120483398438, + "learning_rate": 0.0006, + "loss": 3.634019374847412, + "step": 3207 + }, + { + "epoch": 44.55919615552643, + "grad_norm": 0.21991780400276184, + "learning_rate": 0.0006, + "loss": 3.6255834102630615, + "step": 3208 + }, + { + "epoch": 44.57317605941459, + "grad_norm": 0.23417581617832184, + "learning_rate": 0.0006, + "loss": 3.631927728652954, + "step": 3209 + }, + { + "epoch": 44.58715596330275, + "grad_norm": 0.22819049656391144, + "learning_rate": 0.0006, + "loss": 3.640167713165283, + "step": 3210 + }, + { + "epoch": 44.60113586719091, + "grad_norm": 0.21443316340446472, + "learning_rate": 0.0006, + "loss": 3.645709991455078, + "step": 3211 + }, + { + "epoch": 44.615115771079076, + "grad_norm": 0.19252653419971466, + "learning_rate": 0.0006, + "loss": 3.591294288635254, + "step": 3212 + }, + { + "epoch": 44.62909567496723, + "grad_norm": 0.18925397098064423, + "learning_rate": 0.0006, + "loss": 3.6163625717163086, + "step": 3213 + }, + { + "epoch": 44.643075578855395, + "grad_norm": 0.21605387330055237, + "learning_rate": 0.0006, + "loss": 3.6826887130737305, + "step": 3214 + }, + { + "epoch": 44.65705548274356, + "grad_norm": 0.21301978826522827, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 3215 + }, + { + "epoch": 44.671035386631715, + "grad_norm": 0.20065832138061523, + "learning_rate": 0.0006, + "loss": 3.648879289627075, + "step": 3216 + }, + { + "epoch": 44.68501529051988, + "grad_norm": 0.21413499116897583, + "learning_rate": 0.0006, + "loss": 3.6327264308929443, + "step": 3217 + }, + { + "epoch": 44.69899519440804, + "grad_norm": 0.22769849002361298, + "learning_rate": 0.0006, + "loss": 3.6486430168151855, + "step": 3218 + }, + { + "epoch": 44.7129750982962, + "grad_norm": 0.227064847946167, + "learning_rate": 0.0006, + "loss": 3.633342981338501, + "step": 3219 + }, + { + "epoch": 44.72695500218436, + "grad_norm": 0.21335656940937042, + "learning_rate": 0.0006, + "loss": 3.648621082305908, + "step": 3220 + }, + { + "epoch": 44.74093490607252, + "grad_norm": 0.2085563838481903, + "learning_rate": 0.0006, + "loss": 3.647826671600342, + "step": 3221 + }, + { + "epoch": 44.75491480996068, + "grad_norm": 0.19203904271125793, + "learning_rate": 0.0006, + "loss": 3.6296122074127197, + "step": 3222 + }, + { + "epoch": 44.768894713848844, + "grad_norm": 0.1969112604856491, + "learning_rate": 0.0006, + "loss": 3.6477179527282715, + "step": 3223 + }, + { + "epoch": 44.782874617737, + "grad_norm": 0.21630392968654633, + "learning_rate": 0.0006, + "loss": 3.628805637359619, + "step": 3224 + }, + { + "epoch": 44.796854521625164, + "grad_norm": 0.20641647279262543, + "learning_rate": 0.0006, + "loss": 3.650993824005127, + "step": 3225 + }, + { + "epoch": 44.81083442551333, + "grad_norm": 0.1954173892736435, + "learning_rate": 0.0006, + "loss": 3.6362831592559814, + "step": 3226 + }, + { + "epoch": 44.824814329401484, + "grad_norm": 0.20479747653007507, + "learning_rate": 0.0006, + "loss": 3.6467390060424805, + "step": 3227 + }, + { + "epoch": 44.83879423328965, + "grad_norm": 0.20502690970897675, + "learning_rate": 0.0006, + "loss": 3.6260130405426025, + "step": 3228 + }, + { + "epoch": 44.8527741371778, + "grad_norm": 0.20348094403743744, + "learning_rate": 0.0006, + "loss": 3.6836767196655273, + "step": 3229 + }, + { + "epoch": 44.86675404106597, + "grad_norm": 0.18748269975185394, + "learning_rate": 0.0006, + "loss": 3.610104560852051, + "step": 3230 + }, + { + "epoch": 44.88073394495413, + "grad_norm": 0.18822219967842102, + "learning_rate": 0.0006, + "loss": 3.61354398727417, + "step": 3231 + }, + { + "epoch": 44.89471384884229, + "grad_norm": 0.20972031354904175, + "learning_rate": 0.0006, + "loss": 3.644336700439453, + "step": 3232 + }, + { + "epoch": 44.90869375273045, + "grad_norm": 0.2013155072927475, + "learning_rate": 0.0006, + "loss": 3.659287929534912, + "step": 3233 + }, + { + "epoch": 44.92267365661861, + "grad_norm": 0.2056475579738617, + "learning_rate": 0.0006, + "loss": 3.6545677185058594, + "step": 3234 + }, + { + "epoch": 44.93665356050677, + "grad_norm": 0.2104482203722, + "learning_rate": 0.0006, + "loss": 3.6094017028808594, + "step": 3235 + }, + { + "epoch": 44.95063346439493, + "grad_norm": 0.1993035078048706, + "learning_rate": 0.0006, + "loss": 3.6209053993225098, + "step": 3236 + }, + { + "epoch": 44.964613368283096, + "grad_norm": 0.1883099526166916, + "learning_rate": 0.0006, + "loss": 3.6011457443237305, + "step": 3237 + }, + { + "epoch": 44.97859327217125, + "grad_norm": 0.1927674412727356, + "learning_rate": 0.0006, + "loss": 3.606609344482422, + "step": 3238 + }, + { + "epoch": 44.992573176059416, + "grad_norm": 0.1878899335861206, + "learning_rate": 0.0006, + "loss": 3.6701109409332275, + "step": 3239 + }, + { + "epoch": 45.0, + "grad_norm": 0.2237395942211151, + "learning_rate": 0.0006, + "loss": 3.6617302894592285, + "step": 3240 + }, + { + "epoch": 45.0, + "eval_loss": 3.9812564849853516, + "eval_runtime": 44.8635, + "eval_samples_per_second": 54.432, + "eval_steps_per_second": 3.41, + "step": 3240 + }, + { + "epoch": 45.01397990388816, + "grad_norm": 0.21368487179279327, + "learning_rate": 0.0006, + "loss": 3.599107265472412, + "step": 3241 + }, + { + "epoch": 45.02795980777632, + "grad_norm": 0.2234211564064026, + "learning_rate": 0.0006, + "loss": 3.5943236351013184, + "step": 3242 + }, + { + "epoch": 45.04193971166448, + "grad_norm": 0.2222544252872467, + "learning_rate": 0.0006, + "loss": 3.6152291297912598, + "step": 3243 + }, + { + "epoch": 45.05591961555265, + "grad_norm": 0.24686792492866516, + "learning_rate": 0.0006, + "loss": 3.6006085872650146, + "step": 3244 + }, + { + "epoch": 45.0698995194408, + "grad_norm": 0.24634984135627747, + "learning_rate": 0.0006, + "loss": 3.6023471355438232, + "step": 3245 + }, + { + "epoch": 45.083879423328966, + "grad_norm": 0.2150750756263733, + "learning_rate": 0.0006, + "loss": 3.5690598487854004, + "step": 3246 + }, + { + "epoch": 45.09785932721712, + "grad_norm": 0.196721151471138, + "learning_rate": 0.0006, + "loss": 3.592653751373291, + "step": 3247 + }, + { + "epoch": 45.111839231105286, + "grad_norm": 0.21874476969242096, + "learning_rate": 0.0006, + "loss": 3.586243152618408, + "step": 3248 + }, + { + "epoch": 45.12581913499345, + "grad_norm": 0.21021611988544464, + "learning_rate": 0.0006, + "loss": 3.599384307861328, + "step": 3249 + }, + { + "epoch": 45.139799038881605, + "grad_norm": 0.19754183292388916, + "learning_rate": 0.0006, + "loss": 3.623816967010498, + "step": 3250 + }, + { + "epoch": 45.15377894276977, + "grad_norm": 0.21218672394752502, + "learning_rate": 0.0006, + "loss": 3.5901236534118652, + "step": 3251 + }, + { + "epoch": 45.16775884665793, + "grad_norm": 0.23569360375404358, + "learning_rate": 0.0006, + "loss": 3.600029945373535, + "step": 3252 + }, + { + "epoch": 45.18173875054609, + "grad_norm": 0.25429826974868774, + "learning_rate": 0.0006, + "loss": 3.607773542404175, + "step": 3253 + }, + { + "epoch": 45.19571865443425, + "grad_norm": 0.23416805267333984, + "learning_rate": 0.0006, + "loss": 3.63248348236084, + "step": 3254 + }, + { + "epoch": 45.20969855832241, + "grad_norm": 0.20821864902973175, + "learning_rate": 0.0006, + "loss": 3.641927719116211, + "step": 3255 + }, + { + "epoch": 45.22367846221057, + "grad_norm": 0.21849380433559418, + "learning_rate": 0.0006, + "loss": 3.665098190307617, + "step": 3256 + }, + { + "epoch": 45.237658366098735, + "grad_norm": 0.22939491271972656, + "learning_rate": 0.0006, + "loss": 3.6106104850769043, + "step": 3257 + }, + { + "epoch": 45.25163826998689, + "grad_norm": 0.24144501984119415, + "learning_rate": 0.0006, + "loss": 3.5872416496276855, + "step": 3258 + }, + { + "epoch": 45.265618173875055, + "grad_norm": 0.21790480613708496, + "learning_rate": 0.0006, + "loss": 3.6268889904022217, + "step": 3259 + }, + { + "epoch": 45.27959807776322, + "grad_norm": 0.22702264785766602, + "learning_rate": 0.0006, + "loss": 3.5972542762756348, + "step": 3260 + }, + { + "epoch": 45.293577981651374, + "grad_norm": 0.22465437650680542, + "learning_rate": 0.0006, + "loss": 3.6339592933654785, + "step": 3261 + }, + { + "epoch": 45.30755788553954, + "grad_norm": 0.21804460883140564, + "learning_rate": 0.0006, + "loss": 3.6062779426574707, + "step": 3262 + }, + { + "epoch": 45.3215377894277, + "grad_norm": 0.1985616534948349, + "learning_rate": 0.0006, + "loss": 3.629815101623535, + "step": 3263 + }, + { + "epoch": 45.33551769331586, + "grad_norm": 0.22264975309371948, + "learning_rate": 0.0006, + "loss": 3.631214141845703, + "step": 3264 + }, + { + "epoch": 45.34949759720402, + "grad_norm": 0.22178539633750916, + "learning_rate": 0.0006, + "loss": 3.620854377746582, + "step": 3265 + }, + { + "epoch": 45.36347750109218, + "grad_norm": 0.22392240166664124, + "learning_rate": 0.0006, + "loss": 3.6611738204956055, + "step": 3266 + }, + { + "epoch": 45.37745740498034, + "grad_norm": 0.2178916484117508, + "learning_rate": 0.0006, + "loss": 3.639893054962158, + "step": 3267 + }, + { + "epoch": 45.391437308868504, + "grad_norm": 0.2173885703086853, + "learning_rate": 0.0006, + "loss": 3.611750364303589, + "step": 3268 + }, + { + "epoch": 45.40541721275666, + "grad_norm": 0.2107069045305252, + "learning_rate": 0.0006, + "loss": 3.595181465148926, + "step": 3269 + }, + { + "epoch": 45.419397116644824, + "grad_norm": 0.19623015820980072, + "learning_rate": 0.0006, + "loss": 3.6096351146698, + "step": 3270 + }, + { + "epoch": 45.43337702053299, + "grad_norm": 0.23091304302215576, + "learning_rate": 0.0006, + "loss": 3.603667974472046, + "step": 3271 + }, + { + "epoch": 45.44735692442114, + "grad_norm": 0.22909007966518402, + "learning_rate": 0.0006, + "loss": 3.62846040725708, + "step": 3272 + }, + { + "epoch": 45.46133682830931, + "grad_norm": 0.2104928195476532, + "learning_rate": 0.0006, + "loss": 3.6543164253234863, + "step": 3273 + }, + { + "epoch": 45.47531673219746, + "grad_norm": 0.22994203865528107, + "learning_rate": 0.0006, + "loss": 3.621878147125244, + "step": 3274 + }, + { + "epoch": 45.489296636085626, + "grad_norm": 0.21652749180793762, + "learning_rate": 0.0006, + "loss": 3.6095705032348633, + "step": 3275 + }, + { + "epoch": 45.50327653997379, + "grad_norm": 0.20125073194503784, + "learning_rate": 0.0006, + "loss": 3.6213903427124023, + "step": 3276 + }, + { + "epoch": 45.517256443861946, + "grad_norm": 0.19995734095573425, + "learning_rate": 0.0006, + "loss": 3.6526503562927246, + "step": 3277 + }, + { + "epoch": 45.53123634775011, + "grad_norm": 0.2071387618780136, + "learning_rate": 0.0006, + "loss": 3.626208782196045, + "step": 3278 + }, + { + "epoch": 45.54521625163827, + "grad_norm": 0.222015842795372, + "learning_rate": 0.0006, + "loss": 3.61144757270813, + "step": 3279 + }, + { + "epoch": 45.55919615552643, + "grad_norm": 0.20780639350414276, + "learning_rate": 0.0006, + "loss": 3.64092755317688, + "step": 3280 + }, + { + "epoch": 45.57317605941459, + "grad_norm": 0.19297364354133606, + "learning_rate": 0.0006, + "loss": 3.6308364868164062, + "step": 3281 + }, + { + "epoch": 45.58715596330275, + "grad_norm": 0.1928786337375641, + "learning_rate": 0.0006, + "loss": 3.6258254051208496, + "step": 3282 + }, + { + "epoch": 45.60113586719091, + "grad_norm": 0.1940007209777832, + "learning_rate": 0.0006, + "loss": 3.622849464416504, + "step": 3283 + }, + { + "epoch": 45.615115771079076, + "grad_norm": 0.19643044471740723, + "learning_rate": 0.0006, + "loss": 3.6461117267608643, + "step": 3284 + }, + { + "epoch": 45.62909567496723, + "grad_norm": 0.19996654987335205, + "learning_rate": 0.0006, + "loss": 3.61572265625, + "step": 3285 + }, + { + "epoch": 45.643075578855395, + "grad_norm": 0.20202603936195374, + "learning_rate": 0.0006, + "loss": 3.610734462738037, + "step": 3286 + }, + { + "epoch": 45.65705548274356, + "grad_norm": 0.19249361753463745, + "learning_rate": 0.0006, + "loss": 3.607048511505127, + "step": 3287 + }, + { + "epoch": 45.671035386631715, + "grad_norm": 0.1894780397415161, + "learning_rate": 0.0006, + "loss": 3.6450905799865723, + "step": 3288 + }, + { + "epoch": 45.68501529051988, + "grad_norm": 0.19901636242866516, + "learning_rate": 0.0006, + "loss": 3.6313018798828125, + "step": 3289 + }, + { + "epoch": 45.69899519440804, + "grad_norm": 0.1875065118074417, + "learning_rate": 0.0006, + "loss": 3.641326427459717, + "step": 3290 + }, + { + "epoch": 45.7129750982962, + "grad_norm": 0.19832095503807068, + "learning_rate": 0.0006, + "loss": 3.6612308025360107, + "step": 3291 + }, + { + "epoch": 45.72695500218436, + "grad_norm": 0.20353806018829346, + "learning_rate": 0.0006, + "loss": 3.623152017593384, + "step": 3292 + }, + { + "epoch": 45.74093490607252, + "grad_norm": 0.1984023153781891, + "learning_rate": 0.0006, + "loss": 3.627358913421631, + "step": 3293 + }, + { + "epoch": 45.75491480996068, + "grad_norm": 0.2002221643924713, + "learning_rate": 0.0006, + "loss": 3.6334757804870605, + "step": 3294 + }, + { + "epoch": 45.768894713848844, + "grad_norm": 0.21099092066287994, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3295 + }, + { + "epoch": 45.782874617737, + "grad_norm": 0.19109416007995605, + "learning_rate": 0.0006, + "loss": 3.62795352935791, + "step": 3296 + }, + { + "epoch": 45.796854521625164, + "grad_norm": 0.18424192070960999, + "learning_rate": 0.0006, + "loss": 3.6151700019836426, + "step": 3297 + }, + { + "epoch": 45.81083442551333, + "grad_norm": 0.20823849737644196, + "learning_rate": 0.0006, + "loss": 3.641907215118408, + "step": 3298 + }, + { + "epoch": 45.824814329401484, + "grad_norm": 0.21407285332679749, + "learning_rate": 0.0006, + "loss": 3.6430726051330566, + "step": 3299 + }, + { + "epoch": 45.83879423328965, + "grad_norm": 0.23493780195713043, + "learning_rate": 0.0006, + "loss": 3.610065460205078, + "step": 3300 + }, + { + "epoch": 45.8527741371778, + "grad_norm": 0.21910642087459564, + "learning_rate": 0.0006, + "loss": 3.630603313446045, + "step": 3301 + }, + { + "epoch": 45.86675404106597, + "grad_norm": 0.1838075965642929, + "learning_rate": 0.0006, + "loss": 3.634315013885498, + "step": 3302 + }, + { + "epoch": 45.88073394495413, + "grad_norm": 0.22131477296352386, + "learning_rate": 0.0006, + "loss": 3.6142020225524902, + "step": 3303 + }, + { + "epoch": 45.89471384884229, + "grad_norm": 0.2497209906578064, + "learning_rate": 0.0006, + "loss": 3.689103126525879, + "step": 3304 + }, + { + "epoch": 45.90869375273045, + "grad_norm": 0.24403175711631775, + "learning_rate": 0.0006, + "loss": 3.6321184635162354, + "step": 3305 + }, + { + "epoch": 45.92267365661861, + "grad_norm": 0.22527103126049042, + "learning_rate": 0.0006, + "loss": 3.6486921310424805, + "step": 3306 + }, + { + "epoch": 45.93665356050677, + "grad_norm": 0.20127955079078674, + "learning_rate": 0.0006, + "loss": 3.6109299659729004, + "step": 3307 + }, + { + "epoch": 45.95063346439493, + "grad_norm": 0.18997317552566528, + "learning_rate": 0.0006, + "loss": 3.6157617568969727, + "step": 3308 + }, + { + "epoch": 45.964613368283096, + "grad_norm": 0.19921870529651642, + "learning_rate": 0.0006, + "loss": 3.691776990890503, + "step": 3309 + }, + { + "epoch": 45.97859327217125, + "grad_norm": 0.2124646008014679, + "learning_rate": 0.0006, + "loss": 3.61795711517334, + "step": 3310 + }, + { + "epoch": 45.992573176059416, + "grad_norm": 0.20002500712871552, + "learning_rate": 0.0006, + "loss": 3.6266353130340576, + "step": 3311 + }, + { + "epoch": 46.0, + "grad_norm": 0.22992220520973206, + "learning_rate": 0.0006, + "loss": 3.647242784500122, + "step": 3312 + }, + { + "epoch": 46.0, + "eval_loss": 3.9855220317840576, + "eval_runtime": 44.9108, + "eval_samples_per_second": 54.374, + "eval_steps_per_second": 3.407, + "step": 3312 + }, + { + "epoch": 46.01397990388816, + "grad_norm": 0.1976146101951599, + "learning_rate": 0.0006, + "loss": 3.5675041675567627, + "step": 3313 + }, + { + "epoch": 46.02795980777632, + "grad_norm": 0.2238360494375229, + "learning_rate": 0.0006, + "loss": 3.6077466011047363, + "step": 3314 + }, + { + "epoch": 46.04193971166448, + "grad_norm": 0.288669228553772, + "learning_rate": 0.0006, + "loss": 3.589958667755127, + "step": 3315 + }, + { + "epoch": 46.05591961555265, + "grad_norm": 0.30626827478408813, + "learning_rate": 0.0006, + "loss": 3.604401111602783, + "step": 3316 + }, + { + "epoch": 46.0698995194408, + "grad_norm": 0.2721095681190491, + "learning_rate": 0.0006, + "loss": 3.620197296142578, + "step": 3317 + }, + { + "epoch": 46.083879423328966, + "grad_norm": 0.2152107059955597, + "learning_rate": 0.0006, + "loss": 3.607327938079834, + "step": 3318 + }, + { + "epoch": 46.09785932721712, + "grad_norm": 0.2205267995595932, + "learning_rate": 0.0006, + "loss": 3.6020898818969727, + "step": 3319 + }, + { + "epoch": 46.111839231105286, + "grad_norm": 0.25419551134109497, + "learning_rate": 0.0006, + "loss": 3.59277606010437, + "step": 3320 + }, + { + "epoch": 46.12581913499345, + "grad_norm": 0.2379811704158783, + "learning_rate": 0.0006, + "loss": 3.560422897338867, + "step": 3321 + }, + { + "epoch": 46.139799038881605, + "grad_norm": 0.20928747951984406, + "learning_rate": 0.0006, + "loss": 3.6373965740203857, + "step": 3322 + }, + { + "epoch": 46.15377894276977, + "grad_norm": 0.21654292941093445, + "learning_rate": 0.0006, + "loss": 3.620784282684326, + "step": 3323 + }, + { + "epoch": 46.16775884665793, + "grad_norm": 0.22994576394557953, + "learning_rate": 0.0006, + "loss": 3.589960813522339, + "step": 3324 + }, + { + "epoch": 46.18173875054609, + "grad_norm": 0.24989335238933563, + "learning_rate": 0.0006, + "loss": 3.599091053009033, + "step": 3325 + }, + { + "epoch": 46.19571865443425, + "grad_norm": 0.27068355679512024, + "learning_rate": 0.0006, + "loss": 3.5933146476745605, + "step": 3326 + }, + { + "epoch": 46.20969855832241, + "grad_norm": 0.2581503391265869, + "learning_rate": 0.0006, + "loss": 3.5935447216033936, + "step": 3327 + }, + { + "epoch": 46.22367846221057, + "grad_norm": 0.23368583619594574, + "learning_rate": 0.0006, + "loss": 3.6120412349700928, + "step": 3328 + }, + { + "epoch": 46.237658366098735, + "grad_norm": 0.21808452904224396, + "learning_rate": 0.0006, + "loss": 3.6155190467834473, + "step": 3329 + }, + { + "epoch": 46.25163826998689, + "grad_norm": 0.2152830809354782, + "learning_rate": 0.0006, + "loss": 3.6039974689483643, + "step": 3330 + }, + { + "epoch": 46.265618173875055, + "grad_norm": 0.20902983844280243, + "learning_rate": 0.0006, + "loss": 3.586416721343994, + "step": 3331 + }, + { + "epoch": 46.27959807776322, + "grad_norm": 0.21693682670593262, + "learning_rate": 0.0006, + "loss": 3.601595401763916, + "step": 3332 + }, + { + "epoch": 46.293577981651374, + "grad_norm": 0.21157346665859222, + "learning_rate": 0.0006, + "loss": 3.619825601577759, + "step": 3333 + }, + { + "epoch": 46.30755788553954, + "grad_norm": 0.19628529250621796, + "learning_rate": 0.0006, + "loss": 3.5845298767089844, + "step": 3334 + }, + { + "epoch": 46.3215377894277, + "grad_norm": 0.19599373638629913, + "learning_rate": 0.0006, + "loss": 3.614483594894409, + "step": 3335 + }, + { + "epoch": 46.33551769331586, + "grad_norm": 0.21777382493019104, + "learning_rate": 0.0006, + "loss": 3.5865678787231445, + "step": 3336 + }, + { + "epoch": 46.34949759720402, + "grad_norm": 0.24697323143482208, + "learning_rate": 0.0006, + "loss": 3.6168298721313477, + "step": 3337 + }, + { + "epoch": 46.36347750109218, + "grad_norm": 0.29521632194519043, + "learning_rate": 0.0006, + "loss": 3.627875804901123, + "step": 3338 + }, + { + "epoch": 46.37745740498034, + "grad_norm": 0.2548002004623413, + "learning_rate": 0.0006, + "loss": 3.6286001205444336, + "step": 3339 + }, + { + "epoch": 46.391437308868504, + "grad_norm": 0.20501002669334412, + "learning_rate": 0.0006, + "loss": 3.625035524368286, + "step": 3340 + }, + { + "epoch": 46.40541721275666, + "grad_norm": 0.21849584579467773, + "learning_rate": 0.0006, + "loss": 3.621872901916504, + "step": 3341 + }, + { + "epoch": 46.419397116644824, + "grad_norm": 0.22302033007144928, + "learning_rate": 0.0006, + "loss": 3.6088266372680664, + "step": 3342 + }, + { + "epoch": 46.43337702053299, + "grad_norm": 0.21138787269592285, + "learning_rate": 0.0006, + "loss": 3.6211094856262207, + "step": 3343 + }, + { + "epoch": 46.44735692442114, + "grad_norm": 0.22372713685035706, + "learning_rate": 0.0006, + "loss": 3.5799427032470703, + "step": 3344 + }, + { + "epoch": 46.46133682830931, + "grad_norm": 0.22019316256046295, + "learning_rate": 0.0006, + "loss": 3.616044044494629, + "step": 3345 + }, + { + "epoch": 46.47531673219746, + "grad_norm": 0.21947625279426575, + "learning_rate": 0.0006, + "loss": 3.613643169403076, + "step": 3346 + }, + { + "epoch": 46.489296636085626, + "grad_norm": 0.21935684978961945, + "learning_rate": 0.0006, + "loss": 3.6255440711975098, + "step": 3347 + }, + { + "epoch": 46.50327653997379, + "grad_norm": 0.20366479456424713, + "learning_rate": 0.0006, + "loss": 3.613892078399658, + "step": 3348 + }, + { + "epoch": 46.517256443861946, + "grad_norm": 0.21755267679691315, + "learning_rate": 0.0006, + "loss": 3.617886543273926, + "step": 3349 + }, + { + "epoch": 46.53123634775011, + "grad_norm": 0.20023910701274872, + "learning_rate": 0.0006, + "loss": 3.6172280311584473, + "step": 3350 + }, + { + "epoch": 46.54521625163827, + "grad_norm": 0.20375007390975952, + "learning_rate": 0.0006, + "loss": 3.595829486846924, + "step": 3351 + }, + { + "epoch": 46.55919615552643, + "grad_norm": 0.21125391125679016, + "learning_rate": 0.0006, + "loss": 3.632533550262451, + "step": 3352 + }, + { + "epoch": 46.57317605941459, + "grad_norm": 0.2359670102596283, + "learning_rate": 0.0006, + "loss": 3.597811222076416, + "step": 3353 + }, + { + "epoch": 46.58715596330275, + "grad_norm": 0.21696777641773224, + "learning_rate": 0.0006, + "loss": 3.627127170562744, + "step": 3354 + }, + { + "epoch": 46.60113586719091, + "grad_norm": 0.21501564979553223, + "learning_rate": 0.0006, + "loss": 3.630887985229492, + "step": 3355 + }, + { + "epoch": 46.615115771079076, + "grad_norm": 0.21446822583675385, + "learning_rate": 0.0006, + "loss": 3.6075234413146973, + "step": 3356 + }, + { + "epoch": 46.62909567496723, + "grad_norm": 0.21508967876434326, + "learning_rate": 0.0006, + "loss": 3.626603603363037, + "step": 3357 + }, + { + "epoch": 46.643075578855395, + "grad_norm": 0.19969215989112854, + "learning_rate": 0.0006, + "loss": 3.6160733699798584, + "step": 3358 + }, + { + "epoch": 46.65705548274356, + "grad_norm": 0.19982007145881653, + "learning_rate": 0.0006, + "loss": 3.632960319519043, + "step": 3359 + }, + { + "epoch": 46.671035386631715, + "grad_norm": 0.1981230527162552, + "learning_rate": 0.0006, + "loss": 3.608591079711914, + "step": 3360 + }, + { + "epoch": 46.68501529051988, + "grad_norm": 0.19948643445968628, + "learning_rate": 0.0006, + "loss": 3.6100947856903076, + "step": 3361 + }, + { + "epoch": 46.69899519440804, + "grad_norm": 0.18967196345329285, + "learning_rate": 0.0006, + "loss": 3.6203439235687256, + "step": 3362 + }, + { + "epoch": 46.7129750982962, + "grad_norm": 0.20035311579704285, + "learning_rate": 0.0006, + "loss": 3.64508056640625, + "step": 3363 + }, + { + "epoch": 46.72695500218436, + "grad_norm": 0.21049824357032776, + "learning_rate": 0.0006, + "loss": 3.620095729827881, + "step": 3364 + }, + { + "epoch": 46.74093490607252, + "grad_norm": 0.21411995589733124, + "learning_rate": 0.0006, + "loss": 3.650815963745117, + "step": 3365 + }, + { + "epoch": 46.75491480996068, + "grad_norm": 0.18666061758995056, + "learning_rate": 0.0006, + "loss": 3.625699758529663, + "step": 3366 + }, + { + "epoch": 46.768894713848844, + "grad_norm": 0.1927071362733841, + "learning_rate": 0.0006, + "loss": 3.6165151596069336, + "step": 3367 + }, + { + "epoch": 46.782874617737, + "grad_norm": 0.2063879817724228, + "learning_rate": 0.0006, + "loss": 3.6182332038879395, + "step": 3368 + }, + { + "epoch": 46.796854521625164, + "grad_norm": 0.19215327501296997, + "learning_rate": 0.0006, + "loss": 3.607239246368408, + "step": 3369 + }, + { + "epoch": 46.81083442551333, + "grad_norm": 0.2074592262506485, + "learning_rate": 0.0006, + "loss": 3.624856948852539, + "step": 3370 + }, + { + "epoch": 46.824814329401484, + "grad_norm": 0.2184106856584549, + "learning_rate": 0.0006, + "loss": 3.628757953643799, + "step": 3371 + }, + { + "epoch": 46.83879423328965, + "grad_norm": 0.2203136682510376, + "learning_rate": 0.0006, + "loss": 3.625958204269409, + "step": 3372 + }, + { + "epoch": 46.8527741371778, + "grad_norm": 0.21920061111450195, + "learning_rate": 0.0006, + "loss": 3.6060733795166016, + "step": 3373 + }, + { + "epoch": 46.86675404106597, + "grad_norm": 0.2122412472963333, + "learning_rate": 0.0006, + "loss": 3.6126952171325684, + "step": 3374 + }, + { + "epoch": 46.88073394495413, + "grad_norm": 0.1971784383058548, + "learning_rate": 0.0006, + "loss": 3.637129783630371, + "step": 3375 + }, + { + "epoch": 46.89471384884229, + "grad_norm": 0.20824873447418213, + "learning_rate": 0.0006, + "loss": 3.62868070602417, + "step": 3376 + }, + { + "epoch": 46.90869375273045, + "grad_norm": 0.20157678425312042, + "learning_rate": 0.0006, + "loss": 3.6321873664855957, + "step": 3377 + }, + { + "epoch": 46.92267365661861, + "grad_norm": 0.1958925426006317, + "learning_rate": 0.0006, + "loss": 3.6513354778289795, + "step": 3378 + }, + { + "epoch": 46.93665356050677, + "grad_norm": 0.1969553828239441, + "learning_rate": 0.0006, + "loss": 3.6346323490142822, + "step": 3379 + }, + { + "epoch": 46.95063346439493, + "grad_norm": 0.19311924278736115, + "learning_rate": 0.0006, + "loss": 3.6673245429992676, + "step": 3380 + }, + { + "epoch": 46.964613368283096, + "grad_norm": 0.20341862738132477, + "learning_rate": 0.0006, + "loss": 3.680025339126587, + "step": 3381 + }, + { + "epoch": 46.97859327217125, + "grad_norm": 0.20667442679405212, + "learning_rate": 0.0006, + "loss": 3.632290840148926, + "step": 3382 + }, + { + "epoch": 46.992573176059416, + "grad_norm": 0.19141609966754913, + "learning_rate": 0.0006, + "loss": 3.659360647201538, + "step": 3383 + }, + { + "epoch": 47.0, + "grad_norm": 0.20981188118457794, + "learning_rate": 0.0006, + "loss": 3.653548240661621, + "step": 3384 + }, + { + "epoch": 47.0, + "eval_loss": 3.9833984375, + "eval_runtime": 44.4693, + "eval_samples_per_second": 54.914, + "eval_steps_per_second": 3.441, + "step": 3384 + }, + { + "epoch": 47.01397990388816, + "grad_norm": 0.1958128660917282, + "learning_rate": 0.0006, + "loss": 3.5778727531433105, + "step": 3385 + }, + { + "epoch": 47.02795980777632, + "grad_norm": 0.19728390872478485, + "learning_rate": 0.0006, + "loss": 3.5827393531799316, + "step": 3386 + }, + { + "epoch": 47.04193971166448, + "grad_norm": 0.18564026057720184, + "learning_rate": 0.0006, + "loss": 3.573071002960205, + "step": 3387 + }, + { + "epoch": 47.05591961555265, + "grad_norm": 0.20563258230686188, + "learning_rate": 0.0006, + "loss": 3.564330577850342, + "step": 3388 + }, + { + "epoch": 47.0698995194408, + "grad_norm": 0.21382158994674683, + "learning_rate": 0.0006, + "loss": 3.5976946353912354, + "step": 3389 + }, + { + "epoch": 47.083879423328966, + "grad_norm": 0.2383693903684616, + "learning_rate": 0.0006, + "loss": 3.5970897674560547, + "step": 3390 + }, + { + "epoch": 47.09785932721712, + "grad_norm": 0.24709449708461761, + "learning_rate": 0.0006, + "loss": 3.613409996032715, + "step": 3391 + }, + { + "epoch": 47.111839231105286, + "grad_norm": 0.2329784333705902, + "learning_rate": 0.0006, + "loss": 3.571023464202881, + "step": 3392 + }, + { + "epoch": 47.12581913499345, + "grad_norm": 0.2096954584121704, + "learning_rate": 0.0006, + "loss": 3.573697090148926, + "step": 3393 + }, + { + "epoch": 47.139799038881605, + "grad_norm": 0.21630050241947174, + "learning_rate": 0.0006, + "loss": 3.6085095405578613, + "step": 3394 + }, + { + "epoch": 47.15377894276977, + "grad_norm": 0.22828878462314606, + "learning_rate": 0.0006, + "loss": 3.605466842651367, + "step": 3395 + }, + { + "epoch": 47.16775884665793, + "grad_norm": 0.24957625567913055, + "learning_rate": 0.0006, + "loss": 3.588324546813965, + "step": 3396 + }, + { + "epoch": 47.18173875054609, + "grad_norm": 0.25446194410324097, + "learning_rate": 0.0006, + "loss": 3.6161458492279053, + "step": 3397 + }, + { + "epoch": 47.19571865443425, + "grad_norm": 0.24938438832759857, + "learning_rate": 0.0006, + "loss": 3.6017847061157227, + "step": 3398 + }, + { + "epoch": 47.20969855832241, + "grad_norm": 0.23318032920360565, + "learning_rate": 0.0006, + "loss": 3.6077046394348145, + "step": 3399 + }, + { + "epoch": 47.22367846221057, + "grad_norm": 0.2179042547941208, + "learning_rate": 0.0006, + "loss": 3.598104953765869, + "step": 3400 + }, + { + "epoch": 47.237658366098735, + "grad_norm": 0.213354229927063, + "learning_rate": 0.0006, + "loss": 3.6328814029693604, + "step": 3401 + }, + { + "epoch": 47.25163826998689, + "grad_norm": 0.23104089498519897, + "learning_rate": 0.0006, + "loss": 3.6161890029907227, + "step": 3402 + }, + { + "epoch": 47.265618173875055, + "grad_norm": 0.22219021618366241, + "learning_rate": 0.0006, + "loss": 3.620314121246338, + "step": 3403 + }, + { + "epoch": 47.27959807776322, + "grad_norm": 0.21618683636188507, + "learning_rate": 0.0006, + "loss": 3.5955371856689453, + "step": 3404 + }, + { + "epoch": 47.293577981651374, + "grad_norm": 0.22280243039131165, + "learning_rate": 0.0006, + "loss": 3.618302345275879, + "step": 3405 + }, + { + "epoch": 47.30755788553954, + "grad_norm": 0.2268427014350891, + "learning_rate": 0.0006, + "loss": 3.6035101413726807, + "step": 3406 + }, + { + "epoch": 47.3215377894277, + "grad_norm": 0.20324429869651794, + "learning_rate": 0.0006, + "loss": 3.612598419189453, + "step": 3407 + }, + { + "epoch": 47.33551769331586, + "grad_norm": 0.19353045523166656, + "learning_rate": 0.0006, + "loss": 3.5951499938964844, + "step": 3408 + }, + { + "epoch": 47.34949759720402, + "grad_norm": 0.19008080661296844, + "learning_rate": 0.0006, + "loss": 3.6177732944488525, + "step": 3409 + }, + { + "epoch": 47.36347750109218, + "grad_norm": 0.19530250132083893, + "learning_rate": 0.0006, + "loss": 3.597903251647949, + "step": 3410 + }, + { + "epoch": 47.37745740498034, + "grad_norm": 0.2083505541086197, + "learning_rate": 0.0006, + "loss": 3.6062350273132324, + "step": 3411 + }, + { + "epoch": 47.391437308868504, + "grad_norm": 0.2241518199443817, + "learning_rate": 0.0006, + "loss": 3.6084704399108887, + "step": 3412 + }, + { + "epoch": 47.40541721275666, + "grad_norm": 0.25763124227523804, + "learning_rate": 0.0006, + "loss": 3.600295066833496, + "step": 3413 + }, + { + "epoch": 47.419397116644824, + "grad_norm": 0.2689114212989807, + "learning_rate": 0.0006, + "loss": 3.648848533630371, + "step": 3414 + }, + { + "epoch": 47.43337702053299, + "grad_norm": 0.30106639862060547, + "learning_rate": 0.0006, + "loss": 3.6248483657836914, + "step": 3415 + }, + { + "epoch": 47.44735692442114, + "grad_norm": 0.31840384006500244, + "learning_rate": 0.0006, + "loss": 3.6256890296936035, + "step": 3416 + }, + { + "epoch": 47.46133682830931, + "grad_norm": 0.2603468894958496, + "learning_rate": 0.0006, + "loss": 3.6225175857543945, + "step": 3417 + }, + { + "epoch": 47.47531673219746, + "grad_norm": 0.33408305048942566, + "learning_rate": 0.0006, + "loss": 3.590303897857666, + "step": 3418 + }, + { + "epoch": 47.489296636085626, + "grad_norm": 0.3677918612957001, + "learning_rate": 0.0006, + "loss": 3.6005120277404785, + "step": 3419 + }, + { + "epoch": 47.50327653997379, + "grad_norm": 0.23077215254306793, + "learning_rate": 0.0006, + "loss": 3.6093883514404297, + "step": 3420 + }, + { + "epoch": 47.517256443861946, + "grad_norm": 0.27272120118141174, + "learning_rate": 0.0006, + "loss": 3.580151081085205, + "step": 3421 + }, + { + "epoch": 47.53123634775011, + "grad_norm": 0.22629371285438538, + "learning_rate": 0.0006, + "loss": 3.6375746726989746, + "step": 3422 + }, + { + "epoch": 47.54521625163827, + "grad_norm": 0.2376468926668167, + "learning_rate": 0.0006, + "loss": 3.6492481231689453, + "step": 3423 + }, + { + "epoch": 47.55919615552643, + "grad_norm": 0.21200433373451233, + "learning_rate": 0.0006, + "loss": 3.6258158683776855, + "step": 3424 + }, + { + "epoch": 47.57317605941459, + "grad_norm": 0.2246236652135849, + "learning_rate": 0.0006, + "loss": 3.6199564933776855, + "step": 3425 + }, + { + "epoch": 47.58715596330275, + "grad_norm": 0.21713437139987946, + "learning_rate": 0.0006, + "loss": 3.638197898864746, + "step": 3426 + }, + { + "epoch": 47.60113586719091, + "grad_norm": 0.1964627057313919, + "learning_rate": 0.0006, + "loss": 3.6334147453308105, + "step": 3427 + }, + { + "epoch": 47.615115771079076, + "grad_norm": 0.21705810725688934, + "learning_rate": 0.0006, + "loss": 3.6298668384552, + "step": 3428 + }, + { + "epoch": 47.62909567496723, + "grad_norm": 0.20376256108283997, + "learning_rate": 0.0006, + "loss": 3.6127166748046875, + "step": 3429 + }, + { + "epoch": 47.643075578855395, + "grad_norm": 0.20046672224998474, + "learning_rate": 0.0006, + "loss": 3.633683681488037, + "step": 3430 + }, + { + "epoch": 47.65705548274356, + "grad_norm": 0.21494409441947937, + "learning_rate": 0.0006, + "loss": 3.635828971862793, + "step": 3431 + }, + { + "epoch": 47.671035386631715, + "grad_norm": 0.24550487101078033, + "learning_rate": 0.0006, + "loss": 3.6056854724884033, + "step": 3432 + }, + { + "epoch": 47.68501529051988, + "grad_norm": 0.24416600167751312, + "learning_rate": 0.0006, + "loss": 3.618785858154297, + "step": 3433 + }, + { + "epoch": 47.69899519440804, + "grad_norm": 0.22872993350028992, + "learning_rate": 0.0006, + "loss": 3.6189026832580566, + "step": 3434 + }, + { + "epoch": 47.7129750982962, + "grad_norm": 0.23609530925750732, + "learning_rate": 0.0006, + "loss": 3.623661518096924, + "step": 3435 + }, + { + "epoch": 47.72695500218436, + "grad_norm": 0.22905564308166504, + "learning_rate": 0.0006, + "loss": 3.6155691146850586, + "step": 3436 + }, + { + "epoch": 47.74093490607252, + "grad_norm": 0.25507304072380066, + "learning_rate": 0.0006, + "loss": 3.5848331451416016, + "step": 3437 + }, + { + "epoch": 47.75491480996068, + "grad_norm": 0.24594344198703766, + "learning_rate": 0.0006, + "loss": 3.588374614715576, + "step": 3438 + }, + { + "epoch": 47.768894713848844, + "grad_norm": 0.23131750524044037, + "learning_rate": 0.0006, + "loss": 3.6164474487304688, + "step": 3439 + }, + { + "epoch": 47.782874617737, + "grad_norm": 0.21967829763889313, + "learning_rate": 0.0006, + "loss": 3.619150161743164, + "step": 3440 + }, + { + "epoch": 47.796854521625164, + "grad_norm": 0.226309135556221, + "learning_rate": 0.0006, + "loss": 3.5946340560913086, + "step": 3441 + }, + { + "epoch": 47.81083442551333, + "grad_norm": 0.23141087591648102, + "learning_rate": 0.0006, + "loss": 3.614711046218872, + "step": 3442 + }, + { + "epoch": 47.824814329401484, + "grad_norm": 0.20917707681655884, + "learning_rate": 0.0006, + "loss": 3.610058307647705, + "step": 3443 + }, + { + "epoch": 47.83879423328965, + "grad_norm": 0.22864583134651184, + "learning_rate": 0.0006, + "loss": 3.6396052837371826, + "step": 3444 + }, + { + "epoch": 47.8527741371778, + "grad_norm": 0.22201144695281982, + "learning_rate": 0.0006, + "loss": 3.6462526321411133, + "step": 3445 + }, + { + "epoch": 47.86675404106597, + "grad_norm": 0.21199125051498413, + "learning_rate": 0.0006, + "loss": 3.6090314388275146, + "step": 3446 + }, + { + "epoch": 47.88073394495413, + "grad_norm": 0.2236194908618927, + "learning_rate": 0.0006, + "loss": 3.6308231353759766, + "step": 3447 + }, + { + "epoch": 47.89471384884229, + "grad_norm": 0.21571075916290283, + "learning_rate": 0.0006, + "loss": 3.5899293422698975, + "step": 3448 + }, + { + "epoch": 47.90869375273045, + "grad_norm": 0.2320997267961502, + "learning_rate": 0.0006, + "loss": 3.6360764503479004, + "step": 3449 + }, + { + "epoch": 47.92267365661861, + "grad_norm": 0.2304147630929947, + "learning_rate": 0.0006, + "loss": 3.61220121383667, + "step": 3450 + }, + { + "epoch": 47.93665356050677, + "grad_norm": 0.2321154624223709, + "learning_rate": 0.0006, + "loss": 3.6104419231414795, + "step": 3451 + }, + { + "epoch": 47.95063346439493, + "grad_norm": 0.20895935595035553, + "learning_rate": 0.0006, + "loss": 3.6372952461242676, + "step": 3452 + }, + { + "epoch": 47.964613368283096, + "grad_norm": 0.19926418364048004, + "learning_rate": 0.0006, + "loss": 3.652947425842285, + "step": 3453 + }, + { + "epoch": 47.97859327217125, + "grad_norm": 0.22443149983882904, + "learning_rate": 0.0006, + "loss": 3.6005635261535645, + "step": 3454 + }, + { + "epoch": 47.992573176059416, + "grad_norm": 0.2361244559288025, + "learning_rate": 0.0006, + "loss": 3.626563549041748, + "step": 3455 + }, + { + "epoch": 48.0, + "grad_norm": 0.2542579174041748, + "learning_rate": 0.0006, + "loss": 3.619098663330078, + "step": 3456 + }, + { + "epoch": 48.0, + "eval_loss": 3.9787564277648926, + "eval_runtime": 44.3429, + "eval_samples_per_second": 55.071, + "eval_steps_per_second": 3.45, + "step": 3456 + }, + { + "epoch": 48.01397990388816, + "grad_norm": 0.21771088242530823, + "learning_rate": 0.0006, + "loss": 3.538780927658081, + "step": 3457 + }, + { + "epoch": 48.02795980777632, + "grad_norm": 0.23467740416526794, + "learning_rate": 0.0006, + "loss": 3.5875978469848633, + "step": 3458 + }, + { + "epoch": 48.04193971166448, + "grad_norm": 0.2527692914009094, + "learning_rate": 0.0006, + "loss": 3.5939159393310547, + "step": 3459 + }, + { + "epoch": 48.05591961555265, + "grad_norm": 0.21477685868740082, + "learning_rate": 0.0006, + "loss": 3.600374698638916, + "step": 3460 + }, + { + "epoch": 48.0698995194408, + "grad_norm": 0.22008976340293884, + "learning_rate": 0.0006, + "loss": 3.6058406829833984, + "step": 3461 + }, + { + "epoch": 48.083879423328966, + "grad_norm": 0.23344817757606506, + "learning_rate": 0.0006, + "loss": 3.5864410400390625, + "step": 3462 + }, + { + "epoch": 48.09785932721712, + "grad_norm": 0.24451610445976257, + "learning_rate": 0.0006, + "loss": 3.5827221870422363, + "step": 3463 + }, + { + "epoch": 48.111839231105286, + "grad_norm": 0.24536925554275513, + "learning_rate": 0.0006, + "loss": 3.566275119781494, + "step": 3464 + }, + { + "epoch": 48.12581913499345, + "grad_norm": 0.24060940742492676, + "learning_rate": 0.0006, + "loss": 3.575841188430786, + "step": 3465 + }, + { + "epoch": 48.139799038881605, + "grad_norm": 0.24829573929309845, + "learning_rate": 0.0006, + "loss": 3.6215152740478516, + "step": 3466 + }, + { + "epoch": 48.15377894276977, + "grad_norm": 0.2651045024394989, + "learning_rate": 0.0006, + "loss": 3.604381561279297, + "step": 3467 + }, + { + "epoch": 48.16775884665793, + "grad_norm": 0.2654518187046051, + "learning_rate": 0.0006, + "loss": 3.5989198684692383, + "step": 3468 + }, + { + "epoch": 48.18173875054609, + "grad_norm": 0.25179797410964966, + "learning_rate": 0.0006, + "loss": 3.596402168273926, + "step": 3469 + }, + { + "epoch": 48.19571865443425, + "grad_norm": 0.24018050730228424, + "learning_rate": 0.0006, + "loss": 3.6376051902770996, + "step": 3470 + }, + { + "epoch": 48.20969855832241, + "grad_norm": 0.22079682350158691, + "learning_rate": 0.0006, + "loss": 3.5990993976593018, + "step": 3471 + }, + { + "epoch": 48.22367846221057, + "grad_norm": 0.23267143964767456, + "learning_rate": 0.0006, + "loss": 3.614759683609009, + "step": 3472 + }, + { + "epoch": 48.237658366098735, + "grad_norm": 0.21822260320186615, + "learning_rate": 0.0006, + "loss": 3.6057262420654297, + "step": 3473 + }, + { + "epoch": 48.25163826998689, + "grad_norm": 0.23391997814178467, + "learning_rate": 0.0006, + "loss": 3.581972599029541, + "step": 3474 + }, + { + "epoch": 48.265618173875055, + "grad_norm": 0.22634121775627136, + "learning_rate": 0.0006, + "loss": 3.592149496078491, + "step": 3475 + }, + { + "epoch": 48.27959807776322, + "grad_norm": 0.2142419070005417, + "learning_rate": 0.0006, + "loss": 3.616722583770752, + "step": 3476 + }, + { + "epoch": 48.293577981651374, + "grad_norm": 0.227144256234169, + "learning_rate": 0.0006, + "loss": 3.6018447875976562, + "step": 3477 + }, + { + "epoch": 48.30755788553954, + "grad_norm": 0.25466978549957275, + "learning_rate": 0.0006, + "loss": 3.5795769691467285, + "step": 3478 + }, + { + "epoch": 48.3215377894277, + "grad_norm": 0.2409234344959259, + "learning_rate": 0.0006, + "loss": 3.5845530033111572, + "step": 3479 + }, + { + "epoch": 48.33551769331586, + "grad_norm": 0.22001305222511292, + "learning_rate": 0.0006, + "loss": 3.5861806869506836, + "step": 3480 + }, + { + "epoch": 48.34949759720402, + "grad_norm": 0.24980100989341736, + "learning_rate": 0.0006, + "loss": 3.6032233238220215, + "step": 3481 + }, + { + "epoch": 48.36347750109218, + "grad_norm": 0.28788816928863525, + "learning_rate": 0.0006, + "loss": 3.5876364707946777, + "step": 3482 + }, + { + "epoch": 48.37745740498034, + "grad_norm": 0.26172295212745667, + "learning_rate": 0.0006, + "loss": 3.5711276531219482, + "step": 3483 + }, + { + "epoch": 48.391437308868504, + "grad_norm": 0.23881542682647705, + "learning_rate": 0.0006, + "loss": 3.57108473777771, + "step": 3484 + }, + { + "epoch": 48.40541721275666, + "grad_norm": 0.22385981678962708, + "learning_rate": 0.0006, + "loss": 3.6197509765625, + "step": 3485 + }, + { + "epoch": 48.419397116644824, + "grad_norm": 0.21007859706878662, + "learning_rate": 0.0006, + "loss": 3.609449625015259, + "step": 3486 + }, + { + "epoch": 48.43337702053299, + "grad_norm": 0.21170279383659363, + "learning_rate": 0.0006, + "loss": 3.5981619358062744, + "step": 3487 + }, + { + "epoch": 48.44735692442114, + "grad_norm": 0.2100721150636673, + "learning_rate": 0.0006, + "loss": 3.606505870819092, + "step": 3488 + }, + { + "epoch": 48.46133682830931, + "grad_norm": 0.20408287644386292, + "learning_rate": 0.0006, + "loss": 3.6033859252929688, + "step": 3489 + }, + { + "epoch": 48.47531673219746, + "grad_norm": 0.20343686640262604, + "learning_rate": 0.0006, + "loss": 3.6249616146087646, + "step": 3490 + }, + { + "epoch": 48.489296636085626, + "grad_norm": 0.20570123195648193, + "learning_rate": 0.0006, + "loss": 3.5700693130493164, + "step": 3491 + }, + { + "epoch": 48.50327653997379, + "grad_norm": 0.2511707544326782, + "learning_rate": 0.0006, + "loss": 3.6432406902313232, + "step": 3492 + }, + { + "epoch": 48.517256443861946, + "grad_norm": 0.265960693359375, + "learning_rate": 0.0006, + "loss": 3.6329426765441895, + "step": 3493 + }, + { + "epoch": 48.53123634775011, + "grad_norm": 0.25830161571502686, + "learning_rate": 0.0006, + "loss": 3.593940258026123, + "step": 3494 + }, + { + "epoch": 48.54521625163827, + "grad_norm": 0.2232893705368042, + "learning_rate": 0.0006, + "loss": 3.623812198638916, + "step": 3495 + }, + { + "epoch": 48.55919615552643, + "grad_norm": 0.20818902552127838, + "learning_rate": 0.0006, + "loss": 3.5982813835144043, + "step": 3496 + }, + { + "epoch": 48.57317605941459, + "grad_norm": 0.2756865918636322, + "learning_rate": 0.0006, + "loss": 3.617436170578003, + "step": 3497 + }, + { + "epoch": 48.58715596330275, + "grad_norm": 0.2361520677804947, + "learning_rate": 0.0006, + "loss": 3.598113536834717, + "step": 3498 + }, + { + "epoch": 48.60113586719091, + "grad_norm": 0.1956835240125656, + "learning_rate": 0.0006, + "loss": 3.581003189086914, + "step": 3499 + }, + { + "epoch": 48.615115771079076, + "grad_norm": 0.2863931953907013, + "learning_rate": 0.0006, + "loss": 3.596768379211426, + "step": 3500 + }, + { + "epoch": 48.62909567496723, + "grad_norm": 0.29865020513534546, + "learning_rate": 0.0006, + "loss": 3.576995372772217, + "step": 3501 + }, + { + "epoch": 48.643075578855395, + "grad_norm": 0.23084872961044312, + "learning_rate": 0.0006, + "loss": 3.6431074142456055, + "step": 3502 + }, + { + "epoch": 48.65705548274356, + "grad_norm": 0.2081640362739563, + "learning_rate": 0.0006, + "loss": 3.6002132892608643, + "step": 3503 + }, + { + "epoch": 48.671035386631715, + "grad_norm": 0.20566335320472717, + "learning_rate": 0.0006, + "loss": 3.62365460395813, + "step": 3504 + }, + { + "epoch": 48.68501529051988, + "grad_norm": 0.2066725790500641, + "learning_rate": 0.0006, + "loss": 3.6063363552093506, + "step": 3505 + }, + { + "epoch": 48.69899519440804, + "grad_norm": 0.19830003380775452, + "learning_rate": 0.0006, + "loss": 3.617750883102417, + "step": 3506 + }, + { + "epoch": 48.7129750982962, + "grad_norm": 0.20409031212329865, + "learning_rate": 0.0006, + "loss": 3.6110005378723145, + "step": 3507 + }, + { + "epoch": 48.72695500218436, + "grad_norm": 0.20836064219474792, + "learning_rate": 0.0006, + "loss": 3.6148147583007812, + "step": 3508 + }, + { + "epoch": 48.74093490607252, + "grad_norm": 0.21660791337490082, + "learning_rate": 0.0006, + "loss": 3.641488790512085, + "step": 3509 + }, + { + "epoch": 48.75491480996068, + "grad_norm": 0.21075023710727692, + "learning_rate": 0.0006, + "loss": 3.6327688694000244, + "step": 3510 + }, + { + "epoch": 48.768894713848844, + "grad_norm": 0.19346074759960175, + "learning_rate": 0.0006, + "loss": 3.6025185585021973, + "step": 3511 + }, + { + "epoch": 48.782874617737, + "grad_norm": 0.20215240120887756, + "learning_rate": 0.0006, + "loss": 3.595707416534424, + "step": 3512 + }, + { + "epoch": 48.796854521625164, + "grad_norm": 0.1913122832775116, + "learning_rate": 0.0006, + "loss": 3.618406295776367, + "step": 3513 + }, + { + "epoch": 48.81083442551333, + "grad_norm": 0.18517033755779266, + "learning_rate": 0.0006, + "loss": 3.6212055683135986, + "step": 3514 + }, + { + "epoch": 48.824814329401484, + "grad_norm": 0.20453064143657684, + "learning_rate": 0.0006, + "loss": 3.5941221714019775, + "step": 3515 + }, + { + "epoch": 48.83879423328965, + "grad_norm": 0.20777031779289246, + "learning_rate": 0.0006, + "loss": 3.630701780319214, + "step": 3516 + }, + { + "epoch": 48.8527741371778, + "grad_norm": 0.23713789880275726, + "learning_rate": 0.0006, + "loss": 3.629256248474121, + "step": 3517 + }, + { + "epoch": 48.86675404106597, + "grad_norm": 0.1945258378982544, + "learning_rate": 0.0006, + "loss": 3.607020854949951, + "step": 3518 + }, + { + "epoch": 48.88073394495413, + "grad_norm": 0.19601863622665405, + "learning_rate": 0.0006, + "loss": 3.6200907230377197, + "step": 3519 + }, + { + "epoch": 48.89471384884229, + "grad_norm": 0.20068836212158203, + "learning_rate": 0.0006, + "loss": 3.58575701713562, + "step": 3520 + }, + { + "epoch": 48.90869375273045, + "grad_norm": 0.21790200471878052, + "learning_rate": 0.0006, + "loss": 3.6451416015625, + "step": 3521 + }, + { + "epoch": 48.92267365661861, + "grad_norm": 0.22265756130218506, + "learning_rate": 0.0006, + "loss": 3.621331214904785, + "step": 3522 + }, + { + "epoch": 48.93665356050677, + "grad_norm": 0.20316730439662933, + "learning_rate": 0.0006, + "loss": 3.614537239074707, + "step": 3523 + }, + { + "epoch": 48.95063346439493, + "grad_norm": 0.20275238156318665, + "learning_rate": 0.0006, + "loss": 3.5913281440734863, + "step": 3524 + }, + { + "epoch": 48.964613368283096, + "grad_norm": 0.20239883661270142, + "learning_rate": 0.0006, + "loss": 3.608638286590576, + "step": 3525 + }, + { + "epoch": 48.97859327217125, + "grad_norm": 0.21154041588306427, + "learning_rate": 0.0006, + "loss": 3.6233115196228027, + "step": 3526 + }, + { + "epoch": 48.992573176059416, + "grad_norm": 0.22368352115154266, + "learning_rate": 0.0006, + "loss": 3.599665880203247, + "step": 3527 + }, + { + "epoch": 49.0, + "grad_norm": 0.2675703763961792, + "learning_rate": 0.0006, + "loss": 3.637458086013794, + "step": 3528 + }, + { + "epoch": 49.0, + "eval_loss": 3.985574245452881, + "eval_runtime": 44.55, + "eval_samples_per_second": 54.815, + "eval_steps_per_second": 3.434, + "step": 3528 + }, + { + "epoch": 49.01397990388816, + "grad_norm": 0.2911863625049591, + "learning_rate": 0.0006, + "loss": 3.606170654296875, + "step": 3529 + }, + { + "epoch": 49.02795980777632, + "grad_norm": 0.26640036702156067, + "learning_rate": 0.0006, + "loss": 3.5662899017333984, + "step": 3530 + }, + { + "epoch": 49.04193971166448, + "grad_norm": 0.23250512778759003, + "learning_rate": 0.0006, + "loss": 3.5928688049316406, + "step": 3531 + }, + { + "epoch": 49.05591961555265, + "grad_norm": 0.2603093385696411, + "learning_rate": 0.0006, + "loss": 3.5702433586120605, + "step": 3532 + }, + { + "epoch": 49.0698995194408, + "grad_norm": 0.2711663246154785, + "learning_rate": 0.0006, + "loss": 3.591977596282959, + "step": 3533 + }, + { + "epoch": 49.083879423328966, + "grad_norm": 0.2536148130893707, + "learning_rate": 0.0006, + "loss": 3.5924272537231445, + "step": 3534 + }, + { + "epoch": 49.09785932721712, + "grad_norm": 0.22995208203792572, + "learning_rate": 0.0006, + "loss": 3.5760092735290527, + "step": 3535 + }, + { + "epoch": 49.111839231105286, + "grad_norm": 0.22327162325382233, + "learning_rate": 0.0006, + "loss": 3.6072137355804443, + "step": 3536 + }, + { + "epoch": 49.12581913499345, + "grad_norm": 0.2256365567445755, + "learning_rate": 0.0006, + "loss": 3.6156117916107178, + "step": 3537 + }, + { + "epoch": 49.139799038881605, + "grad_norm": 0.23647814989089966, + "learning_rate": 0.0006, + "loss": 3.5862512588500977, + "step": 3538 + }, + { + "epoch": 49.15377894276977, + "grad_norm": 0.23442648351192474, + "learning_rate": 0.0006, + "loss": 3.606386184692383, + "step": 3539 + }, + { + "epoch": 49.16775884665793, + "grad_norm": 0.22148385643959045, + "learning_rate": 0.0006, + "loss": 3.5564064979553223, + "step": 3540 + }, + { + "epoch": 49.18173875054609, + "grad_norm": 0.24589644372463226, + "learning_rate": 0.0006, + "loss": 3.5625576972961426, + "step": 3541 + }, + { + "epoch": 49.19571865443425, + "grad_norm": 0.23955261707305908, + "learning_rate": 0.0006, + "loss": 3.617833137512207, + "step": 3542 + }, + { + "epoch": 49.20969855832241, + "grad_norm": 0.2781425416469574, + "learning_rate": 0.0006, + "loss": 3.6153502464294434, + "step": 3543 + }, + { + "epoch": 49.22367846221057, + "grad_norm": 0.2622034549713135, + "learning_rate": 0.0006, + "loss": 3.608530044555664, + "step": 3544 + }, + { + "epoch": 49.237658366098735, + "grad_norm": 0.28407761454582214, + "learning_rate": 0.0006, + "loss": 3.572207450866699, + "step": 3545 + }, + { + "epoch": 49.25163826998689, + "grad_norm": 0.2722281217575073, + "learning_rate": 0.0006, + "loss": 3.591392755508423, + "step": 3546 + }, + { + "epoch": 49.265618173875055, + "grad_norm": 0.20608903467655182, + "learning_rate": 0.0006, + "loss": 3.598421573638916, + "step": 3547 + }, + { + "epoch": 49.27959807776322, + "grad_norm": 0.27233049273490906, + "learning_rate": 0.0006, + "loss": 3.5819201469421387, + "step": 3548 + }, + { + "epoch": 49.293577981651374, + "grad_norm": 0.26182129979133606, + "learning_rate": 0.0006, + "loss": 3.5855109691619873, + "step": 3549 + }, + { + "epoch": 49.30755788553954, + "grad_norm": 0.20255911350250244, + "learning_rate": 0.0006, + "loss": 3.569438934326172, + "step": 3550 + }, + { + "epoch": 49.3215377894277, + "grad_norm": 0.20045310258865356, + "learning_rate": 0.0006, + "loss": 3.5888795852661133, + "step": 3551 + }, + { + "epoch": 49.33551769331586, + "grad_norm": 0.18505392968654633, + "learning_rate": 0.0006, + "loss": 3.565467596054077, + "step": 3552 + }, + { + "epoch": 49.34949759720402, + "grad_norm": 0.2057398110628128, + "learning_rate": 0.0006, + "loss": 3.5850436687469482, + "step": 3553 + }, + { + "epoch": 49.36347750109218, + "grad_norm": 0.20007790625095367, + "learning_rate": 0.0006, + "loss": 3.5963945388793945, + "step": 3554 + }, + { + "epoch": 49.37745740498034, + "grad_norm": 0.179341122508049, + "learning_rate": 0.0006, + "loss": 3.5747077465057373, + "step": 3555 + }, + { + "epoch": 49.391437308868504, + "grad_norm": 0.1978122442960739, + "learning_rate": 0.0006, + "loss": 3.605037212371826, + "step": 3556 + }, + { + "epoch": 49.40541721275666, + "grad_norm": 0.1936761885881424, + "learning_rate": 0.0006, + "loss": 3.6293420791625977, + "step": 3557 + }, + { + "epoch": 49.419397116644824, + "grad_norm": 0.20393748581409454, + "learning_rate": 0.0006, + "loss": 3.5616302490234375, + "step": 3558 + }, + { + "epoch": 49.43337702053299, + "grad_norm": 0.19082997739315033, + "learning_rate": 0.0006, + "loss": 3.605088472366333, + "step": 3559 + }, + { + "epoch": 49.44735692442114, + "grad_norm": 0.19642551243305206, + "learning_rate": 0.0006, + "loss": 3.610870361328125, + "step": 3560 + }, + { + "epoch": 49.46133682830931, + "grad_norm": 0.21815423667430878, + "learning_rate": 0.0006, + "loss": 3.60211181640625, + "step": 3561 + }, + { + "epoch": 49.47531673219746, + "grad_norm": 0.20342762768268585, + "learning_rate": 0.0006, + "loss": 3.597529411315918, + "step": 3562 + }, + { + "epoch": 49.489296636085626, + "grad_norm": 0.19032546877861023, + "learning_rate": 0.0006, + "loss": 3.5728795528411865, + "step": 3563 + }, + { + "epoch": 49.50327653997379, + "grad_norm": 0.18237556517124176, + "learning_rate": 0.0006, + "loss": 3.5983595848083496, + "step": 3564 + }, + { + "epoch": 49.517256443861946, + "grad_norm": 0.20585589110851288, + "learning_rate": 0.0006, + "loss": 3.578320264816284, + "step": 3565 + }, + { + "epoch": 49.53123634775011, + "grad_norm": 0.20158857107162476, + "learning_rate": 0.0006, + "loss": 3.5918798446655273, + "step": 3566 + }, + { + "epoch": 49.54521625163827, + "grad_norm": 0.20195038616657257, + "learning_rate": 0.0006, + "loss": 3.605422258377075, + "step": 3567 + }, + { + "epoch": 49.55919615552643, + "grad_norm": 0.19884084165096283, + "learning_rate": 0.0006, + "loss": 3.5964083671569824, + "step": 3568 + }, + { + "epoch": 49.57317605941459, + "grad_norm": 0.21243083477020264, + "learning_rate": 0.0006, + "loss": 3.5885486602783203, + "step": 3569 + }, + { + "epoch": 49.58715596330275, + "grad_norm": 0.21059481799602509, + "learning_rate": 0.0006, + "loss": 3.572526454925537, + "step": 3570 + }, + { + "epoch": 49.60113586719091, + "grad_norm": 0.20644313097000122, + "learning_rate": 0.0006, + "loss": 3.583679676055908, + "step": 3571 + }, + { + "epoch": 49.615115771079076, + "grad_norm": 0.21343673765659332, + "learning_rate": 0.0006, + "loss": 3.6211650371551514, + "step": 3572 + }, + { + "epoch": 49.62909567496723, + "grad_norm": 0.23395343124866486, + "learning_rate": 0.0006, + "loss": 3.6003336906433105, + "step": 3573 + }, + { + "epoch": 49.643075578855395, + "grad_norm": 0.19978424906730652, + "learning_rate": 0.0006, + "loss": 3.6066763401031494, + "step": 3574 + }, + { + "epoch": 49.65705548274356, + "grad_norm": 0.21529823541641235, + "learning_rate": 0.0006, + "loss": 3.601284980773926, + "step": 3575 + }, + { + "epoch": 49.671035386631715, + "grad_norm": 0.21672746539115906, + "learning_rate": 0.0006, + "loss": 3.6084227561950684, + "step": 3576 + }, + { + "epoch": 49.68501529051988, + "grad_norm": 0.20889638364315033, + "learning_rate": 0.0006, + "loss": 3.591568946838379, + "step": 3577 + }, + { + "epoch": 49.69899519440804, + "grad_norm": 0.1960221230983734, + "learning_rate": 0.0006, + "loss": 3.6180830001831055, + "step": 3578 + }, + { + "epoch": 49.7129750982962, + "grad_norm": 0.19712410867214203, + "learning_rate": 0.0006, + "loss": 3.6197333335876465, + "step": 3579 + }, + { + "epoch": 49.72695500218436, + "grad_norm": 0.20665284991264343, + "learning_rate": 0.0006, + "loss": 3.6251301765441895, + "step": 3580 + }, + { + "epoch": 49.74093490607252, + "grad_norm": 0.21018871665000916, + "learning_rate": 0.0006, + "loss": 3.621973991394043, + "step": 3581 + }, + { + "epoch": 49.75491480996068, + "grad_norm": 0.20777495205402374, + "learning_rate": 0.0006, + "loss": 3.5826358795166016, + "step": 3582 + }, + { + "epoch": 49.768894713848844, + "grad_norm": 0.18880195915699005, + "learning_rate": 0.0006, + "loss": 3.5946998596191406, + "step": 3583 + }, + { + "epoch": 49.782874617737, + "grad_norm": 0.19894644618034363, + "learning_rate": 0.0006, + "loss": 3.5912184715270996, + "step": 3584 + }, + { + "epoch": 49.796854521625164, + "grad_norm": 0.20128944516181946, + "learning_rate": 0.0006, + "loss": 3.6370394229888916, + "step": 3585 + }, + { + "epoch": 49.81083442551333, + "grad_norm": 0.19332024455070496, + "learning_rate": 0.0006, + "loss": 3.619018077850342, + "step": 3586 + }, + { + "epoch": 49.824814329401484, + "grad_norm": 0.19303865730762482, + "learning_rate": 0.0006, + "loss": 3.578667163848877, + "step": 3587 + }, + { + "epoch": 49.83879423328965, + "grad_norm": 0.20154757797718048, + "learning_rate": 0.0006, + "loss": 3.61959171295166, + "step": 3588 + }, + { + "epoch": 49.8527741371778, + "grad_norm": 0.19653639197349548, + "learning_rate": 0.0006, + "loss": 3.6437559127807617, + "step": 3589 + }, + { + "epoch": 49.86675404106597, + "grad_norm": 0.21873407065868378, + "learning_rate": 0.0006, + "loss": 3.6131112575531006, + "step": 3590 + }, + { + "epoch": 49.88073394495413, + "grad_norm": 0.20130383968353271, + "learning_rate": 0.0006, + "loss": 3.624028444290161, + "step": 3591 + }, + { + "epoch": 49.89471384884229, + "grad_norm": 0.20206475257873535, + "learning_rate": 0.0006, + "loss": 3.5997328758239746, + "step": 3592 + }, + { + "epoch": 49.90869375273045, + "grad_norm": 0.20393261313438416, + "learning_rate": 0.0006, + "loss": 3.596066474914551, + "step": 3593 + }, + { + "epoch": 49.92267365661861, + "grad_norm": 0.19703544676303864, + "learning_rate": 0.0006, + "loss": 3.624542713165283, + "step": 3594 + }, + { + "epoch": 49.93665356050677, + "grad_norm": 0.2102314680814743, + "learning_rate": 0.0006, + "loss": 3.6082515716552734, + "step": 3595 + }, + { + "epoch": 49.95063346439493, + "grad_norm": 0.23791316151618958, + "learning_rate": 0.0006, + "loss": 3.6185569763183594, + "step": 3596 + }, + { + "epoch": 49.964613368283096, + "grad_norm": 0.24536125361919403, + "learning_rate": 0.0006, + "loss": 3.599207878112793, + "step": 3597 + }, + { + "epoch": 49.97859327217125, + "grad_norm": 0.23160327970981598, + "learning_rate": 0.0006, + "loss": 3.600921869277954, + "step": 3598 + }, + { + "epoch": 49.992573176059416, + "grad_norm": 0.22740362584590912, + "learning_rate": 0.0006, + "loss": 3.6112914085388184, + "step": 3599 + }, + { + "epoch": 50.0, + "grad_norm": 0.24303272366523743, + "learning_rate": 0.0006, + "loss": 3.6385838985443115, + "step": 3600 + }, + { + "epoch": 50.0, + "eval_loss": 3.9811089038848877, + "eval_runtime": 44.9913, + "eval_samples_per_second": 54.277, + "eval_steps_per_second": 3.401, + "step": 3600 + }, + { + "epoch": 50.01397990388816, + "grad_norm": 0.20118683576583862, + "learning_rate": 0.0006, + "loss": 3.561751127243042, + "step": 3601 + }, + { + "epoch": 50.02795980777632, + "grad_norm": 0.18722538650035858, + "learning_rate": 0.0006, + "loss": 3.5742180347442627, + "step": 3602 + }, + { + "epoch": 50.04193971166448, + "grad_norm": 0.21248385310173035, + "learning_rate": 0.0006, + "loss": 3.5759401321411133, + "step": 3603 + }, + { + "epoch": 50.05591961555265, + "grad_norm": 0.21006572246551514, + "learning_rate": 0.0006, + "loss": 3.5737462043762207, + "step": 3604 + }, + { + "epoch": 50.0698995194408, + "grad_norm": 0.20671233534812927, + "learning_rate": 0.0006, + "loss": 3.548205852508545, + "step": 3605 + }, + { + "epoch": 50.083879423328966, + "grad_norm": 0.20704609155654907, + "learning_rate": 0.0006, + "loss": 3.5862209796905518, + "step": 3606 + }, + { + "epoch": 50.09785932721712, + "grad_norm": 0.20611345767974854, + "learning_rate": 0.0006, + "loss": 3.5696640014648438, + "step": 3607 + }, + { + "epoch": 50.111839231105286, + "grad_norm": 0.20986805856227875, + "learning_rate": 0.0006, + "loss": 3.5755579471588135, + "step": 3608 + }, + { + "epoch": 50.12581913499345, + "grad_norm": 0.21727709472179413, + "learning_rate": 0.0006, + "loss": 3.5967745780944824, + "step": 3609 + }, + { + "epoch": 50.139799038881605, + "grad_norm": 0.21854986250400543, + "learning_rate": 0.0006, + "loss": 3.6115779876708984, + "step": 3610 + }, + { + "epoch": 50.15377894276977, + "grad_norm": 0.22904936969280243, + "learning_rate": 0.0006, + "loss": 3.5639889240264893, + "step": 3611 + }, + { + "epoch": 50.16775884665793, + "grad_norm": 0.23774254322052002, + "learning_rate": 0.0006, + "loss": 3.6023900508880615, + "step": 3612 + }, + { + "epoch": 50.18173875054609, + "grad_norm": 0.21548497676849365, + "learning_rate": 0.0006, + "loss": 3.5722856521606445, + "step": 3613 + }, + { + "epoch": 50.19571865443425, + "grad_norm": 0.20503196120262146, + "learning_rate": 0.0006, + "loss": 3.5899252891540527, + "step": 3614 + }, + { + "epoch": 50.20969855832241, + "grad_norm": 0.22084423899650574, + "learning_rate": 0.0006, + "loss": 3.56020450592041, + "step": 3615 + }, + { + "epoch": 50.22367846221057, + "grad_norm": 0.24276728928089142, + "learning_rate": 0.0006, + "loss": 3.585695743560791, + "step": 3616 + }, + { + "epoch": 50.237658366098735, + "grad_norm": 0.23182106018066406, + "learning_rate": 0.0006, + "loss": 3.580676555633545, + "step": 3617 + }, + { + "epoch": 50.25163826998689, + "grad_norm": 0.2341945767402649, + "learning_rate": 0.0006, + "loss": 3.579713821411133, + "step": 3618 + }, + { + "epoch": 50.265618173875055, + "grad_norm": 0.27971863746643066, + "learning_rate": 0.0006, + "loss": 3.568251371383667, + "step": 3619 + }, + { + "epoch": 50.27959807776322, + "grad_norm": 0.24740517139434814, + "learning_rate": 0.0006, + "loss": 3.5798869132995605, + "step": 3620 + }, + { + "epoch": 50.293577981651374, + "grad_norm": 0.20561005175113678, + "learning_rate": 0.0006, + "loss": 3.5610039234161377, + "step": 3621 + }, + { + "epoch": 50.30755788553954, + "grad_norm": 0.2085379660129547, + "learning_rate": 0.0006, + "loss": 3.5620288848876953, + "step": 3622 + }, + { + "epoch": 50.3215377894277, + "grad_norm": 0.20868757367134094, + "learning_rate": 0.0006, + "loss": 3.6090598106384277, + "step": 3623 + }, + { + "epoch": 50.33551769331586, + "grad_norm": 0.18991491198539734, + "learning_rate": 0.0006, + "loss": 3.55255126953125, + "step": 3624 + }, + { + "epoch": 50.34949759720402, + "grad_norm": 0.24742646515369415, + "learning_rate": 0.0006, + "loss": 3.60585880279541, + "step": 3625 + }, + { + "epoch": 50.36347750109218, + "grad_norm": 0.26971301436424255, + "learning_rate": 0.0006, + "loss": 3.5913054943084717, + "step": 3626 + }, + { + "epoch": 50.37745740498034, + "grad_norm": 0.24294881522655487, + "learning_rate": 0.0006, + "loss": 3.5570878982543945, + "step": 3627 + }, + { + "epoch": 50.391437308868504, + "grad_norm": 0.2194664478302002, + "learning_rate": 0.0006, + "loss": 3.5800397396087646, + "step": 3628 + }, + { + "epoch": 50.40541721275666, + "grad_norm": 0.2148507982492447, + "learning_rate": 0.0006, + "loss": 3.6182782649993896, + "step": 3629 + }, + { + "epoch": 50.419397116644824, + "grad_norm": 0.22235016524791718, + "learning_rate": 0.0006, + "loss": 3.5784103870391846, + "step": 3630 + }, + { + "epoch": 50.43337702053299, + "grad_norm": 0.23176309466362, + "learning_rate": 0.0006, + "loss": 3.559011459350586, + "step": 3631 + }, + { + "epoch": 50.44735692442114, + "grad_norm": 0.2267913520336151, + "learning_rate": 0.0006, + "loss": 3.5854780673980713, + "step": 3632 + }, + { + "epoch": 50.46133682830931, + "grad_norm": 0.22565901279449463, + "learning_rate": 0.0006, + "loss": 3.5891294479370117, + "step": 3633 + }, + { + "epoch": 50.47531673219746, + "grad_norm": 0.23724839091300964, + "learning_rate": 0.0006, + "loss": 3.575702428817749, + "step": 3634 + }, + { + "epoch": 50.489296636085626, + "grad_norm": 0.23679722845554352, + "learning_rate": 0.0006, + "loss": 3.588639259338379, + "step": 3635 + }, + { + "epoch": 50.50327653997379, + "grad_norm": 0.23909232020378113, + "learning_rate": 0.0006, + "loss": 3.5828709602355957, + "step": 3636 + }, + { + "epoch": 50.517256443861946, + "grad_norm": 0.24186119437217712, + "learning_rate": 0.0006, + "loss": 3.596708059310913, + "step": 3637 + }, + { + "epoch": 50.53123634775011, + "grad_norm": 0.2325516790151596, + "learning_rate": 0.0006, + "loss": 3.610769510269165, + "step": 3638 + }, + { + "epoch": 50.54521625163827, + "grad_norm": 0.205137237906456, + "learning_rate": 0.0006, + "loss": 3.612844228744507, + "step": 3639 + }, + { + "epoch": 50.55919615552643, + "grad_norm": 0.20860300958156586, + "learning_rate": 0.0006, + "loss": 3.623669147491455, + "step": 3640 + }, + { + "epoch": 50.57317605941459, + "grad_norm": 0.20029069483280182, + "learning_rate": 0.0006, + "loss": 3.6108334064483643, + "step": 3641 + }, + { + "epoch": 50.58715596330275, + "grad_norm": 0.18841931223869324, + "learning_rate": 0.0006, + "loss": 3.6073007583618164, + "step": 3642 + }, + { + "epoch": 50.60113586719091, + "grad_norm": 0.20113889873027802, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3643 + }, + { + "epoch": 50.615115771079076, + "grad_norm": 0.23595206439495087, + "learning_rate": 0.0006, + "loss": 3.634650707244873, + "step": 3644 + }, + { + "epoch": 50.62909567496723, + "grad_norm": 0.24625661969184875, + "learning_rate": 0.0006, + "loss": 3.593716621398926, + "step": 3645 + }, + { + "epoch": 50.643075578855395, + "grad_norm": 0.2182614505290985, + "learning_rate": 0.0006, + "loss": 3.6006946563720703, + "step": 3646 + }, + { + "epoch": 50.65705548274356, + "grad_norm": 0.20867182314395905, + "learning_rate": 0.0006, + "loss": 3.6249008178710938, + "step": 3647 + }, + { + "epoch": 50.671035386631715, + "grad_norm": 0.20451945066452026, + "learning_rate": 0.0006, + "loss": 3.5870985984802246, + "step": 3648 + }, + { + "epoch": 50.68501529051988, + "grad_norm": 0.19160118699073792, + "learning_rate": 0.0006, + "loss": 3.6104488372802734, + "step": 3649 + }, + { + "epoch": 50.69899519440804, + "grad_norm": 0.18884453177452087, + "learning_rate": 0.0006, + "loss": 3.607893943786621, + "step": 3650 + }, + { + "epoch": 50.7129750982962, + "grad_norm": 0.19570060074329376, + "learning_rate": 0.0006, + "loss": 3.5938732624053955, + "step": 3651 + }, + { + "epoch": 50.72695500218436, + "grad_norm": 0.21978189051151276, + "learning_rate": 0.0006, + "loss": 3.5894908905029297, + "step": 3652 + }, + { + "epoch": 50.74093490607252, + "grad_norm": 0.19930903613567352, + "learning_rate": 0.0006, + "loss": 3.6067557334899902, + "step": 3653 + }, + { + "epoch": 50.75491480996068, + "grad_norm": 0.19450204074382782, + "learning_rate": 0.0006, + "loss": 3.5989646911621094, + "step": 3654 + }, + { + "epoch": 50.768894713848844, + "grad_norm": 0.1925407201051712, + "learning_rate": 0.0006, + "loss": 3.604339599609375, + "step": 3655 + }, + { + "epoch": 50.782874617737, + "grad_norm": 0.19232864677906036, + "learning_rate": 0.0006, + "loss": 3.5789241790771484, + "step": 3656 + }, + { + "epoch": 50.796854521625164, + "grad_norm": 0.1937529742717743, + "learning_rate": 0.0006, + "loss": 3.6060590744018555, + "step": 3657 + }, + { + "epoch": 50.81083442551333, + "grad_norm": 0.19863007962703705, + "learning_rate": 0.0006, + "loss": 3.5944440364837646, + "step": 3658 + }, + { + "epoch": 50.824814329401484, + "grad_norm": 0.18879804015159607, + "learning_rate": 0.0006, + "loss": 3.6017069816589355, + "step": 3659 + }, + { + "epoch": 50.83879423328965, + "grad_norm": 0.20111720263957977, + "learning_rate": 0.0006, + "loss": 3.593327522277832, + "step": 3660 + }, + { + "epoch": 50.8527741371778, + "grad_norm": 0.22593358159065247, + "learning_rate": 0.0006, + "loss": 3.5856096744537354, + "step": 3661 + }, + { + "epoch": 50.86675404106597, + "grad_norm": 0.22624441981315613, + "learning_rate": 0.0006, + "loss": 3.6144661903381348, + "step": 3662 + }, + { + "epoch": 50.88073394495413, + "grad_norm": 0.22052904963493347, + "learning_rate": 0.0006, + "loss": 3.5895116329193115, + "step": 3663 + }, + { + "epoch": 50.89471384884229, + "grad_norm": 0.2248559594154358, + "learning_rate": 0.0006, + "loss": 3.6400208473205566, + "step": 3664 + }, + { + "epoch": 50.90869375273045, + "grad_norm": 0.20209142565727234, + "learning_rate": 0.0006, + "loss": 3.6059279441833496, + "step": 3665 + }, + { + "epoch": 50.92267365661861, + "grad_norm": 0.2075854390859604, + "learning_rate": 0.0006, + "loss": 3.590074062347412, + "step": 3666 + }, + { + "epoch": 50.93665356050677, + "grad_norm": 0.20524698495864868, + "learning_rate": 0.0006, + "loss": 3.600741147994995, + "step": 3667 + }, + { + "epoch": 50.95063346439493, + "grad_norm": 0.1922466903924942, + "learning_rate": 0.0006, + "loss": 3.5984225273132324, + "step": 3668 + }, + { + "epoch": 50.964613368283096, + "grad_norm": 0.18852637708187103, + "learning_rate": 0.0006, + "loss": 3.6204333305358887, + "step": 3669 + }, + { + "epoch": 50.97859327217125, + "grad_norm": 0.22050459682941437, + "learning_rate": 0.0006, + "loss": 3.6371538639068604, + "step": 3670 + }, + { + "epoch": 50.992573176059416, + "grad_norm": 0.21477681398391724, + "learning_rate": 0.0006, + "loss": 3.608738899230957, + "step": 3671 + }, + { + "epoch": 51.0, + "grad_norm": 0.22061094641685486, + "learning_rate": 0.0006, + "loss": 3.6209959983825684, + "step": 3672 + }, + { + "epoch": 51.0, + "eval_loss": 3.9762842655181885, + "eval_runtime": 44.8353, + "eval_samples_per_second": 54.466, + "eval_steps_per_second": 3.412, + "step": 3672 + }, + { + "epoch": 51.01397990388816, + "grad_norm": 0.19009192287921906, + "learning_rate": 0.0006, + "loss": 3.5604426860809326, + "step": 3673 + }, + { + "epoch": 51.02795980777632, + "grad_norm": 0.2217264175415039, + "learning_rate": 0.0006, + "loss": 3.5595664978027344, + "step": 3674 + }, + { + "epoch": 51.04193971166448, + "grad_norm": 0.2747595012187958, + "learning_rate": 0.0006, + "loss": 3.5800085067749023, + "step": 3675 + }, + { + "epoch": 51.05591961555265, + "grad_norm": 0.26963043212890625, + "learning_rate": 0.0006, + "loss": 3.5529065132141113, + "step": 3676 + }, + { + "epoch": 51.0698995194408, + "grad_norm": 0.2304207682609558, + "learning_rate": 0.0006, + "loss": 3.585238456726074, + "step": 3677 + }, + { + "epoch": 51.083879423328966, + "grad_norm": 0.22073867917060852, + "learning_rate": 0.0006, + "loss": 3.542267322540283, + "step": 3678 + }, + { + "epoch": 51.09785932721712, + "grad_norm": 0.22550931572914124, + "learning_rate": 0.0006, + "loss": 3.5693743228912354, + "step": 3679 + }, + { + "epoch": 51.111839231105286, + "grad_norm": 0.2347114384174347, + "learning_rate": 0.0006, + "loss": 3.5830154418945312, + "step": 3680 + }, + { + "epoch": 51.12581913499345, + "grad_norm": 0.24889813363552094, + "learning_rate": 0.0006, + "loss": 3.581010341644287, + "step": 3681 + }, + { + "epoch": 51.139799038881605, + "grad_norm": 0.2401021122932434, + "learning_rate": 0.0006, + "loss": 3.619450092315674, + "step": 3682 + }, + { + "epoch": 51.15377894276977, + "grad_norm": 0.22221142053604126, + "learning_rate": 0.0006, + "loss": 3.573624610900879, + "step": 3683 + }, + { + "epoch": 51.16775884665793, + "grad_norm": 0.2429024577140808, + "learning_rate": 0.0006, + "loss": 3.548610210418701, + "step": 3684 + }, + { + "epoch": 51.18173875054609, + "grad_norm": 0.26470765471458435, + "learning_rate": 0.0006, + "loss": 3.5582218170166016, + "step": 3685 + }, + { + "epoch": 51.19571865443425, + "grad_norm": 0.2632715404033661, + "learning_rate": 0.0006, + "loss": 3.5976979732513428, + "step": 3686 + }, + { + "epoch": 51.20969855832241, + "grad_norm": 0.2567448616027832, + "learning_rate": 0.0006, + "loss": 3.592031478881836, + "step": 3687 + }, + { + "epoch": 51.22367846221057, + "grad_norm": 0.25299885869026184, + "learning_rate": 0.0006, + "loss": 3.579765796661377, + "step": 3688 + }, + { + "epoch": 51.237658366098735, + "grad_norm": 0.22765189409255981, + "learning_rate": 0.0006, + "loss": 3.5677521228790283, + "step": 3689 + }, + { + "epoch": 51.25163826998689, + "grad_norm": 0.23369887471199036, + "learning_rate": 0.0006, + "loss": 3.585879325866699, + "step": 3690 + }, + { + "epoch": 51.265618173875055, + "grad_norm": 0.21358822286128998, + "learning_rate": 0.0006, + "loss": 3.568866729736328, + "step": 3691 + }, + { + "epoch": 51.27959807776322, + "grad_norm": 0.2127659171819687, + "learning_rate": 0.0006, + "loss": 3.614520311355591, + "step": 3692 + }, + { + "epoch": 51.293577981651374, + "grad_norm": 0.22829636931419373, + "learning_rate": 0.0006, + "loss": 3.6004438400268555, + "step": 3693 + }, + { + "epoch": 51.30755788553954, + "grad_norm": 0.223104789853096, + "learning_rate": 0.0006, + "loss": 3.5791001319885254, + "step": 3694 + }, + { + "epoch": 51.3215377894277, + "grad_norm": 0.2084331065416336, + "learning_rate": 0.0006, + "loss": 3.572514295578003, + "step": 3695 + }, + { + "epoch": 51.33551769331586, + "grad_norm": 0.21115142107009888, + "learning_rate": 0.0006, + "loss": 3.5736331939697266, + "step": 3696 + }, + { + "epoch": 51.34949759720402, + "grad_norm": 0.2158546894788742, + "learning_rate": 0.0006, + "loss": 3.587161064147949, + "step": 3697 + }, + { + "epoch": 51.36347750109218, + "grad_norm": 0.2478281408548355, + "learning_rate": 0.0006, + "loss": 3.5879693031311035, + "step": 3698 + }, + { + "epoch": 51.37745740498034, + "grad_norm": 0.25137850642204285, + "learning_rate": 0.0006, + "loss": 3.58297061920166, + "step": 3699 + }, + { + "epoch": 51.391437308868504, + "grad_norm": 0.22961364686489105, + "learning_rate": 0.0006, + "loss": 3.5556459426879883, + "step": 3700 + }, + { + "epoch": 51.40541721275666, + "grad_norm": 0.22561277449131012, + "learning_rate": 0.0006, + "loss": 3.60197114944458, + "step": 3701 + }, + { + "epoch": 51.419397116644824, + "grad_norm": 0.20331767201423645, + "learning_rate": 0.0006, + "loss": 3.5815134048461914, + "step": 3702 + }, + { + "epoch": 51.43337702053299, + "grad_norm": 0.1941518634557724, + "learning_rate": 0.0006, + "loss": 3.6055145263671875, + "step": 3703 + }, + { + "epoch": 51.44735692442114, + "grad_norm": 0.19306789338588715, + "learning_rate": 0.0006, + "loss": 3.6101536750793457, + "step": 3704 + }, + { + "epoch": 51.46133682830931, + "grad_norm": 0.1830628365278244, + "learning_rate": 0.0006, + "loss": 3.5978426933288574, + "step": 3705 + }, + { + "epoch": 51.47531673219746, + "grad_norm": 0.19231490790843964, + "learning_rate": 0.0006, + "loss": 3.54502534866333, + "step": 3706 + }, + { + "epoch": 51.489296636085626, + "grad_norm": 0.19109117984771729, + "learning_rate": 0.0006, + "loss": 3.5957441329956055, + "step": 3707 + }, + { + "epoch": 51.50327653997379, + "grad_norm": 0.2032860815525055, + "learning_rate": 0.0006, + "loss": 3.5626730918884277, + "step": 3708 + }, + { + "epoch": 51.517256443861946, + "grad_norm": 0.19685189425945282, + "learning_rate": 0.0006, + "loss": 3.580399990081787, + "step": 3709 + }, + { + "epoch": 51.53123634775011, + "grad_norm": 0.19273017346858978, + "learning_rate": 0.0006, + "loss": 3.5428152084350586, + "step": 3710 + }, + { + "epoch": 51.54521625163827, + "grad_norm": 0.20198430120944977, + "learning_rate": 0.0006, + "loss": 3.607492446899414, + "step": 3711 + }, + { + "epoch": 51.55919615552643, + "grad_norm": 0.2267402559518814, + "learning_rate": 0.0006, + "loss": 3.580479621887207, + "step": 3712 + }, + { + "epoch": 51.57317605941459, + "grad_norm": 0.2247764617204666, + "learning_rate": 0.0006, + "loss": 3.5921316146850586, + "step": 3713 + }, + { + "epoch": 51.58715596330275, + "grad_norm": 0.23907902836799622, + "learning_rate": 0.0006, + "loss": 3.6014928817749023, + "step": 3714 + }, + { + "epoch": 51.60113586719091, + "grad_norm": 0.25907906889915466, + "learning_rate": 0.0006, + "loss": 3.5900192260742188, + "step": 3715 + }, + { + "epoch": 51.615115771079076, + "grad_norm": 0.26282405853271484, + "learning_rate": 0.0006, + "loss": 3.5727553367614746, + "step": 3716 + }, + { + "epoch": 51.62909567496723, + "grad_norm": 0.2541179060935974, + "learning_rate": 0.0006, + "loss": 3.5835776329040527, + "step": 3717 + }, + { + "epoch": 51.643075578855395, + "grad_norm": 0.23372016847133636, + "learning_rate": 0.0006, + "loss": 3.5902652740478516, + "step": 3718 + }, + { + "epoch": 51.65705548274356, + "grad_norm": 0.22827622294425964, + "learning_rate": 0.0006, + "loss": 3.6048200130462646, + "step": 3719 + }, + { + "epoch": 51.671035386631715, + "grad_norm": 0.21026845276355743, + "learning_rate": 0.0006, + "loss": 3.5587573051452637, + "step": 3720 + }, + { + "epoch": 51.68501529051988, + "grad_norm": 0.23485958576202393, + "learning_rate": 0.0006, + "loss": 3.6212477684020996, + "step": 3721 + }, + { + "epoch": 51.69899519440804, + "grad_norm": 0.2676871120929718, + "learning_rate": 0.0006, + "loss": 3.597837448120117, + "step": 3722 + }, + { + "epoch": 51.7129750982962, + "grad_norm": 0.23661476373672485, + "learning_rate": 0.0006, + "loss": 3.616079330444336, + "step": 3723 + }, + { + "epoch": 51.72695500218436, + "grad_norm": 0.2212267816066742, + "learning_rate": 0.0006, + "loss": 3.6103296279907227, + "step": 3724 + }, + { + "epoch": 51.74093490607252, + "grad_norm": 0.22888682782649994, + "learning_rate": 0.0006, + "loss": 3.6099889278411865, + "step": 3725 + }, + { + "epoch": 51.75491480996068, + "grad_norm": 0.21740387380123138, + "learning_rate": 0.0006, + "loss": 3.5859200954437256, + "step": 3726 + }, + { + "epoch": 51.768894713848844, + "grad_norm": 0.20819106698036194, + "learning_rate": 0.0006, + "loss": 3.5875396728515625, + "step": 3727 + }, + { + "epoch": 51.782874617737, + "grad_norm": 0.21574485301971436, + "learning_rate": 0.0006, + "loss": 3.6203761100769043, + "step": 3728 + }, + { + "epoch": 51.796854521625164, + "grad_norm": 0.21275651454925537, + "learning_rate": 0.0006, + "loss": 3.6066012382507324, + "step": 3729 + }, + { + "epoch": 51.81083442551333, + "grad_norm": 0.2043808251619339, + "learning_rate": 0.0006, + "loss": 3.571417808532715, + "step": 3730 + }, + { + "epoch": 51.824814329401484, + "grad_norm": 0.2082396298646927, + "learning_rate": 0.0006, + "loss": 3.6076579093933105, + "step": 3731 + }, + { + "epoch": 51.83879423328965, + "grad_norm": 0.23331953585147858, + "learning_rate": 0.0006, + "loss": 3.621837615966797, + "step": 3732 + }, + { + "epoch": 51.8527741371778, + "grad_norm": 0.25569960474967957, + "learning_rate": 0.0006, + "loss": 3.602004051208496, + "step": 3733 + }, + { + "epoch": 51.86675404106597, + "grad_norm": 0.230540469288826, + "learning_rate": 0.0006, + "loss": 3.5829110145568848, + "step": 3734 + }, + { + "epoch": 51.88073394495413, + "grad_norm": 0.20307230949401855, + "learning_rate": 0.0006, + "loss": 3.5572190284729004, + "step": 3735 + }, + { + "epoch": 51.89471384884229, + "grad_norm": 0.20902153849601746, + "learning_rate": 0.0006, + "loss": 3.5939853191375732, + "step": 3736 + }, + { + "epoch": 51.90869375273045, + "grad_norm": 0.20433510839939117, + "learning_rate": 0.0006, + "loss": 3.6104702949523926, + "step": 3737 + }, + { + "epoch": 51.92267365661861, + "grad_norm": 0.2285638302564621, + "learning_rate": 0.0006, + "loss": 3.5588834285736084, + "step": 3738 + }, + { + "epoch": 51.93665356050677, + "grad_norm": 0.2388262301683426, + "learning_rate": 0.0006, + "loss": 3.6203103065490723, + "step": 3739 + }, + { + "epoch": 51.95063346439493, + "grad_norm": 0.22572419047355652, + "learning_rate": 0.0006, + "loss": 3.6191892623901367, + "step": 3740 + }, + { + "epoch": 51.964613368283096, + "grad_norm": 0.21060727536678314, + "learning_rate": 0.0006, + "loss": 3.620879650115967, + "step": 3741 + }, + { + "epoch": 51.97859327217125, + "grad_norm": 0.2045326828956604, + "learning_rate": 0.0006, + "loss": 3.5959091186523438, + "step": 3742 + }, + { + "epoch": 51.992573176059416, + "grad_norm": 0.21882471442222595, + "learning_rate": 0.0006, + "loss": 3.6504573822021484, + "step": 3743 + }, + { + "epoch": 52.0, + "grad_norm": 0.24379056692123413, + "learning_rate": 0.0006, + "loss": 3.6293625831604004, + "step": 3744 + }, + { + "epoch": 52.0, + "eval_loss": 3.9772427082061768, + "eval_runtime": 44.248, + "eval_samples_per_second": 55.189, + "eval_steps_per_second": 3.458, + "step": 3744 + }, + { + "epoch": 52.01397990388816, + "grad_norm": 0.19682207703590393, + "learning_rate": 0.0006, + "loss": 3.604281425476074, + "step": 3745 + }, + { + "epoch": 52.02795980777632, + "grad_norm": 0.23003028333187103, + "learning_rate": 0.0006, + "loss": 3.588266372680664, + "step": 3746 + }, + { + "epoch": 52.04193971166448, + "grad_norm": 0.2458166778087616, + "learning_rate": 0.0006, + "loss": 3.59077787399292, + "step": 3747 + }, + { + "epoch": 52.05591961555265, + "grad_norm": 0.23873521387577057, + "learning_rate": 0.0006, + "loss": 3.556537628173828, + "step": 3748 + }, + { + "epoch": 52.0698995194408, + "grad_norm": 0.21737053990364075, + "learning_rate": 0.0006, + "loss": 3.5758891105651855, + "step": 3749 + }, + { + "epoch": 52.083879423328966, + "grad_norm": 0.22239601612091064, + "learning_rate": 0.0006, + "loss": 3.552678346633911, + "step": 3750 + }, + { + "epoch": 52.09785932721712, + "grad_norm": 0.21818044781684875, + "learning_rate": 0.0006, + "loss": 3.577249526977539, + "step": 3751 + }, + { + "epoch": 52.111839231105286, + "grad_norm": 0.24513746798038483, + "learning_rate": 0.0006, + "loss": 3.569178581237793, + "step": 3752 + }, + { + "epoch": 52.12581913499345, + "grad_norm": 0.2801238000392914, + "learning_rate": 0.0006, + "loss": 3.556199073791504, + "step": 3753 + }, + { + "epoch": 52.139799038881605, + "grad_norm": 0.2722291648387909, + "learning_rate": 0.0006, + "loss": 3.5571072101593018, + "step": 3754 + }, + { + "epoch": 52.15377894276977, + "grad_norm": 0.2146541327238083, + "learning_rate": 0.0006, + "loss": 3.5831902027130127, + "step": 3755 + }, + { + "epoch": 52.16775884665793, + "grad_norm": 0.21040776371955872, + "learning_rate": 0.0006, + "loss": 3.6021504402160645, + "step": 3756 + }, + { + "epoch": 52.18173875054609, + "grad_norm": 0.24059702455997467, + "learning_rate": 0.0006, + "loss": 3.57401704788208, + "step": 3757 + }, + { + "epoch": 52.19571865443425, + "grad_norm": 0.25043657422065735, + "learning_rate": 0.0006, + "loss": 3.5776405334472656, + "step": 3758 + }, + { + "epoch": 52.20969855832241, + "grad_norm": 0.24292849004268646, + "learning_rate": 0.0006, + "loss": 3.5602574348449707, + "step": 3759 + }, + { + "epoch": 52.22367846221057, + "grad_norm": 0.2159980833530426, + "learning_rate": 0.0006, + "loss": 3.552079200744629, + "step": 3760 + }, + { + "epoch": 52.237658366098735, + "grad_norm": 0.19305892288684845, + "learning_rate": 0.0006, + "loss": 3.581195831298828, + "step": 3761 + }, + { + "epoch": 52.25163826998689, + "grad_norm": 0.2115706503391266, + "learning_rate": 0.0006, + "loss": 3.5689306259155273, + "step": 3762 + }, + { + "epoch": 52.265618173875055, + "grad_norm": 0.21885409951210022, + "learning_rate": 0.0006, + "loss": 3.5549206733703613, + "step": 3763 + }, + { + "epoch": 52.27959807776322, + "grad_norm": 0.2069413661956787, + "learning_rate": 0.0006, + "loss": 3.5743770599365234, + "step": 3764 + }, + { + "epoch": 52.293577981651374, + "grad_norm": 0.21922551095485687, + "learning_rate": 0.0006, + "loss": 3.5780110359191895, + "step": 3765 + }, + { + "epoch": 52.30755788553954, + "grad_norm": 0.21675541996955872, + "learning_rate": 0.0006, + "loss": 3.575730800628662, + "step": 3766 + }, + { + "epoch": 52.3215377894277, + "grad_norm": 0.21250510215759277, + "learning_rate": 0.0006, + "loss": 3.546060085296631, + "step": 3767 + }, + { + "epoch": 52.33551769331586, + "grad_norm": 0.23665618896484375, + "learning_rate": 0.0006, + "loss": 3.5887606143951416, + "step": 3768 + }, + { + "epoch": 52.34949759720402, + "grad_norm": 0.2525961399078369, + "learning_rate": 0.0006, + "loss": 3.5885281562805176, + "step": 3769 + }, + { + "epoch": 52.36347750109218, + "grad_norm": 0.26285895705223083, + "learning_rate": 0.0006, + "loss": 3.5880684852600098, + "step": 3770 + }, + { + "epoch": 52.37745740498034, + "grad_norm": 0.24714398384094238, + "learning_rate": 0.0006, + "loss": 3.548165798187256, + "step": 3771 + }, + { + "epoch": 52.391437308868504, + "grad_norm": 0.2234657257795334, + "learning_rate": 0.0006, + "loss": 3.56547212600708, + "step": 3772 + }, + { + "epoch": 52.40541721275666, + "grad_norm": 0.20636901259422302, + "learning_rate": 0.0006, + "loss": 3.5702133178710938, + "step": 3773 + }, + { + "epoch": 52.419397116644824, + "grad_norm": 0.20656965672969818, + "learning_rate": 0.0006, + "loss": 3.614602565765381, + "step": 3774 + }, + { + "epoch": 52.43337702053299, + "grad_norm": 0.20018167793750763, + "learning_rate": 0.0006, + "loss": 3.6063036918640137, + "step": 3775 + }, + { + "epoch": 52.44735692442114, + "grad_norm": 0.21859782934188843, + "learning_rate": 0.0006, + "loss": 3.5728869438171387, + "step": 3776 + }, + { + "epoch": 52.46133682830931, + "grad_norm": 0.21622174978256226, + "learning_rate": 0.0006, + "loss": 3.5657505989074707, + "step": 3777 + }, + { + "epoch": 52.47531673219746, + "grad_norm": 0.19779632985591888, + "learning_rate": 0.0006, + "loss": 3.5841145515441895, + "step": 3778 + }, + { + "epoch": 52.489296636085626, + "grad_norm": 0.21635952591896057, + "learning_rate": 0.0006, + "loss": 3.582096576690674, + "step": 3779 + }, + { + "epoch": 52.50327653997379, + "grad_norm": 0.21348397433757782, + "learning_rate": 0.0006, + "loss": 3.5654468536376953, + "step": 3780 + }, + { + "epoch": 52.517256443861946, + "grad_norm": 0.19572246074676514, + "learning_rate": 0.0006, + "loss": 3.5806241035461426, + "step": 3781 + }, + { + "epoch": 52.53123634775011, + "grad_norm": 0.1887553185224533, + "learning_rate": 0.0006, + "loss": 3.5752944946289062, + "step": 3782 + }, + { + "epoch": 52.54521625163827, + "grad_norm": 0.2192932814359665, + "learning_rate": 0.0006, + "loss": 3.5846266746520996, + "step": 3783 + }, + { + "epoch": 52.55919615552643, + "grad_norm": 0.23833444714546204, + "learning_rate": 0.0006, + "loss": 3.563093900680542, + "step": 3784 + }, + { + "epoch": 52.57317605941459, + "grad_norm": 0.26471760869026184, + "learning_rate": 0.0006, + "loss": 3.5582051277160645, + "step": 3785 + }, + { + "epoch": 52.58715596330275, + "grad_norm": 0.2767478823661804, + "learning_rate": 0.0006, + "loss": 3.5650997161865234, + "step": 3786 + }, + { + "epoch": 52.60113586719091, + "grad_norm": 0.26556241512298584, + "learning_rate": 0.0006, + "loss": 3.5944058895111084, + "step": 3787 + }, + { + "epoch": 52.615115771079076, + "grad_norm": 0.2733243405818939, + "learning_rate": 0.0006, + "loss": 3.5781195163726807, + "step": 3788 + }, + { + "epoch": 52.62909567496723, + "grad_norm": 0.24836041033267975, + "learning_rate": 0.0006, + "loss": 3.582634687423706, + "step": 3789 + }, + { + "epoch": 52.643075578855395, + "grad_norm": 0.2119593471288681, + "learning_rate": 0.0006, + "loss": 3.5851502418518066, + "step": 3790 + }, + { + "epoch": 52.65705548274356, + "grad_norm": 0.23237599432468414, + "learning_rate": 0.0006, + "loss": 3.5877747535705566, + "step": 3791 + }, + { + "epoch": 52.671035386631715, + "grad_norm": 0.21037372946739197, + "learning_rate": 0.0006, + "loss": 3.579045295715332, + "step": 3792 + }, + { + "epoch": 52.68501529051988, + "grad_norm": 0.19258099794387817, + "learning_rate": 0.0006, + "loss": 3.599151611328125, + "step": 3793 + }, + { + "epoch": 52.69899519440804, + "grad_norm": 0.18808242678642273, + "learning_rate": 0.0006, + "loss": 3.580679416656494, + "step": 3794 + }, + { + "epoch": 52.7129750982962, + "grad_norm": 0.18208397924900055, + "learning_rate": 0.0006, + "loss": 3.5940206050872803, + "step": 3795 + }, + { + "epoch": 52.72695500218436, + "grad_norm": 0.18173424899578094, + "learning_rate": 0.0006, + "loss": 3.5997331142425537, + "step": 3796 + }, + { + "epoch": 52.74093490607252, + "grad_norm": 0.1868390142917633, + "learning_rate": 0.0006, + "loss": 3.60007905960083, + "step": 3797 + }, + { + "epoch": 52.75491480996068, + "grad_norm": 0.1859273761510849, + "learning_rate": 0.0006, + "loss": 3.602668285369873, + "step": 3798 + }, + { + "epoch": 52.768894713848844, + "grad_norm": 0.18063156306743622, + "learning_rate": 0.0006, + "loss": 3.579869270324707, + "step": 3799 + }, + { + "epoch": 52.782874617737, + "grad_norm": 0.18920548260211945, + "learning_rate": 0.0006, + "loss": 3.6056337356567383, + "step": 3800 + }, + { + "epoch": 52.796854521625164, + "grad_norm": 0.20110033452510834, + "learning_rate": 0.0006, + "loss": 3.5694475173950195, + "step": 3801 + }, + { + "epoch": 52.81083442551333, + "grad_norm": 0.20331093668937683, + "learning_rate": 0.0006, + "loss": 3.5940358638763428, + "step": 3802 + }, + { + "epoch": 52.824814329401484, + "grad_norm": 0.2035607248544693, + "learning_rate": 0.0006, + "loss": 3.621305465698242, + "step": 3803 + }, + { + "epoch": 52.83879423328965, + "grad_norm": 0.1974431872367859, + "learning_rate": 0.0006, + "loss": 3.5959153175354004, + "step": 3804 + }, + { + "epoch": 52.8527741371778, + "grad_norm": 0.1832808405160904, + "learning_rate": 0.0006, + "loss": 3.582113265991211, + "step": 3805 + }, + { + "epoch": 52.86675404106597, + "grad_norm": 0.20269927382469177, + "learning_rate": 0.0006, + "loss": 3.5923209190368652, + "step": 3806 + }, + { + "epoch": 52.88073394495413, + "grad_norm": 0.20628313720226288, + "learning_rate": 0.0006, + "loss": 3.599729537963867, + "step": 3807 + }, + { + "epoch": 52.89471384884229, + "grad_norm": 0.2144002914428711, + "learning_rate": 0.0006, + "loss": 3.601041793823242, + "step": 3808 + }, + { + "epoch": 52.90869375273045, + "grad_norm": 0.215015709400177, + "learning_rate": 0.0006, + "loss": 3.5873360633850098, + "step": 3809 + }, + { + "epoch": 52.92267365661861, + "grad_norm": 0.23122714459896088, + "learning_rate": 0.0006, + "loss": 3.5839362144470215, + "step": 3810 + }, + { + "epoch": 52.93665356050677, + "grad_norm": 0.2381119281053543, + "learning_rate": 0.0006, + "loss": 3.564755439758301, + "step": 3811 + }, + { + "epoch": 52.95063346439493, + "grad_norm": 0.22975024580955505, + "learning_rate": 0.0006, + "loss": 3.594020128250122, + "step": 3812 + }, + { + "epoch": 52.964613368283096, + "grad_norm": 0.2419184148311615, + "learning_rate": 0.0006, + "loss": 3.5917205810546875, + "step": 3813 + }, + { + "epoch": 52.97859327217125, + "grad_norm": 0.21143122017383575, + "learning_rate": 0.0006, + "loss": 3.626842975616455, + "step": 3814 + }, + { + "epoch": 52.992573176059416, + "grad_norm": 0.195548415184021, + "learning_rate": 0.0006, + "loss": 3.5798377990722656, + "step": 3815 + }, + { + "epoch": 53.0, + "grad_norm": 0.22441816329956055, + "learning_rate": 0.0006, + "loss": 3.5652856826782227, + "step": 3816 + }, + { + "epoch": 53.0, + "eval_loss": 3.9635632038116455, + "eval_runtime": 44.772, + "eval_samples_per_second": 54.543, + "eval_steps_per_second": 3.417, + "step": 3816 + }, + { + "epoch": 53.01397990388816, + "grad_norm": 0.2547561228275299, + "learning_rate": 0.0006, + "loss": 3.562561511993408, + "step": 3817 + }, + { + "epoch": 53.02795980777632, + "grad_norm": 0.36890196800231934, + "learning_rate": 0.0006, + "loss": 3.534581184387207, + "step": 3818 + }, + { + "epoch": 53.04193971166448, + "grad_norm": 0.42631810903549194, + "learning_rate": 0.0006, + "loss": 3.5438239574432373, + "step": 3819 + }, + { + "epoch": 53.05591961555265, + "grad_norm": 0.29458126425743103, + "learning_rate": 0.0006, + "loss": 3.5594735145568848, + "step": 3820 + }, + { + "epoch": 53.0698995194408, + "grad_norm": 0.24320989847183228, + "learning_rate": 0.0006, + "loss": 3.5715155601501465, + "step": 3821 + }, + { + "epoch": 53.083879423328966, + "grad_norm": 0.3012531101703644, + "learning_rate": 0.0006, + "loss": 3.5324978828430176, + "step": 3822 + }, + { + "epoch": 53.09785932721712, + "grad_norm": 0.2789555788040161, + "learning_rate": 0.0006, + "loss": 3.5848183631896973, + "step": 3823 + }, + { + "epoch": 53.111839231105286, + "grad_norm": 0.2488897293806076, + "learning_rate": 0.0006, + "loss": 3.5853679180145264, + "step": 3824 + }, + { + "epoch": 53.12581913499345, + "grad_norm": 0.3016898036003113, + "learning_rate": 0.0006, + "loss": 3.585637092590332, + "step": 3825 + }, + { + "epoch": 53.139799038881605, + "grad_norm": 0.30293571949005127, + "learning_rate": 0.0006, + "loss": 3.5745015144348145, + "step": 3826 + }, + { + "epoch": 53.15377894276977, + "grad_norm": 0.24611566960811615, + "learning_rate": 0.0006, + "loss": 3.5761728286743164, + "step": 3827 + }, + { + "epoch": 53.16775884665793, + "grad_norm": 0.23852500319480896, + "learning_rate": 0.0006, + "loss": 3.59317946434021, + "step": 3828 + }, + { + "epoch": 53.18173875054609, + "grad_norm": 0.27882838249206543, + "learning_rate": 0.0006, + "loss": 3.589779853820801, + "step": 3829 + }, + { + "epoch": 53.19571865443425, + "grad_norm": 0.3252250552177429, + "learning_rate": 0.0006, + "loss": 3.564526081085205, + "step": 3830 + }, + { + "epoch": 53.20969855832241, + "grad_norm": 0.29635530710220337, + "learning_rate": 0.0006, + "loss": 3.5309946537017822, + "step": 3831 + }, + { + "epoch": 53.22367846221057, + "grad_norm": 0.25211700797080994, + "learning_rate": 0.0006, + "loss": 3.5795631408691406, + "step": 3832 + }, + { + "epoch": 53.237658366098735, + "grad_norm": 0.20772705972194672, + "learning_rate": 0.0006, + "loss": 3.5649163722991943, + "step": 3833 + }, + { + "epoch": 53.25163826998689, + "grad_norm": 0.2460525780916214, + "learning_rate": 0.0006, + "loss": 3.5484111309051514, + "step": 3834 + }, + { + "epoch": 53.265618173875055, + "grad_norm": 0.24652884900569916, + "learning_rate": 0.0006, + "loss": 3.5631136894226074, + "step": 3835 + }, + { + "epoch": 53.27959807776322, + "grad_norm": 0.23740890622138977, + "learning_rate": 0.0006, + "loss": 3.6234607696533203, + "step": 3836 + }, + { + "epoch": 53.293577981651374, + "grad_norm": 0.2463800311088562, + "learning_rate": 0.0006, + "loss": 3.5578083992004395, + "step": 3837 + }, + { + "epoch": 53.30755788553954, + "grad_norm": 0.23402568697929382, + "learning_rate": 0.0006, + "loss": 3.559845209121704, + "step": 3838 + }, + { + "epoch": 53.3215377894277, + "grad_norm": 0.2539580762386322, + "learning_rate": 0.0006, + "loss": 3.5863685607910156, + "step": 3839 + }, + { + "epoch": 53.33551769331586, + "grad_norm": 0.24994857609272003, + "learning_rate": 0.0006, + "loss": 3.5758700370788574, + "step": 3840 + }, + { + "epoch": 53.34949759720402, + "grad_norm": 0.21340647339820862, + "learning_rate": 0.0006, + "loss": 3.588602066040039, + "step": 3841 + }, + { + "epoch": 53.36347750109218, + "grad_norm": 0.2029065042734146, + "learning_rate": 0.0006, + "loss": 3.58594012260437, + "step": 3842 + }, + { + "epoch": 53.37745740498034, + "grad_norm": 0.20266403257846832, + "learning_rate": 0.0006, + "loss": 3.5906057357788086, + "step": 3843 + }, + { + "epoch": 53.391437308868504, + "grad_norm": 0.19940714538097382, + "learning_rate": 0.0006, + "loss": 3.5458335876464844, + "step": 3844 + }, + { + "epoch": 53.40541721275666, + "grad_norm": 0.21295064687728882, + "learning_rate": 0.0006, + "loss": 3.5589025020599365, + "step": 3845 + }, + { + "epoch": 53.419397116644824, + "grad_norm": 0.2150672823190689, + "learning_rate": 0.0006, + "loss": 3.5907669067382812, + "step": 3846 + }, + { + "epoch": 53.43337702053299, + "grad_norm": 0.21469077467918396, + "learning_rate": 0.0006, + "loss": 3.5403499603271484, + "step": 3847 + }, + { + "epoch": 53.44735692442114, + "grad_norm": 0.20485323667526245, + "learning_rate": 0.0006, + "loss": 3.5634326934814453, + "step": 3848 + }, + { + "epoch": 53.46133682830931, + "grad_norm": 0.1981327086687088, + "learning_rate": 0.0006, + "loss": 3.579385280609131, + "step": 3849 + }, + { + "epoch": 53.47531673219746, + "grad_norm": 0.1898331642150879, + "learning_rate": 0.0006, + "loss": 3.5824122428894043, + "step": 3850 + }, + { + "epoch": 53.489296636085626, + "grad_norm": 0.18228355050086975, + "learning_rate": 0.0006, + "loss": 3.533255100250244, + "step": 3851 + }, + { + "epoch": 53.50327653997379, + "grad_norm": 0.1803922951221466, + "learning_rate": 0.0006, + "loss": 3.589881420135498, + "step": 3852 + }, + { + "epoch": 53.517256443861946, + "grad_norm": 0.19590361416339874, + "learning_rate": 0.0006, + "loss": 3.599487066268921, + "step": 3853 + }, + { + "epoch": 53.53123634775011, + "grad_norm": 0.1935775727033615, + "learning_rate": 0.0006, + "loss": 3.5769765377044678, + "step": 3854 + }, + { + "epoch": 53.54521625163827, + "grad_norm": 0.1790810525417328, + "learning_rate": 0.0006, + "loss": 3.594104290008545, + "step": 3855 + }, + { + "epoch": 53.55919615552643, + "grad_norm": 0.17993320524692535, + "learning_rate": 0.0006, + "loss": 3.555650234222412, + "step": 3856 + }, + { + "epoch": 53.57317605941459, + "grad_norm": 0.19114883244037628, + "learning_rate": 0.0006, + "loss": 3.599574089050293, + "step": 3857 + }, + { + "epoch": 53.58715596330275, + "grad_norm": 0.18493886291980743, + "learning_rate": 0.0006, + "loss": 3.555177927017212, + "step": 3858 + }, + { + "epoch": 53.60113586719091, + "grad_norm": 0.19346027076244354, + "learning_rate": 0.0006, + "loss": 3.601219654083252, + "step": 3859 + }, + { + "epoch": 53.615115771079076, + "grad_norm": 0.2002234011888504, + "learning_rate": 0.0006, + "loss": 3.5614418983459473, + "step": 3860 + }, + { + "epoch": 53.62909567496723, + "grad_norm": 0.17705366015434265, + "learning_rate": 0.0006, + "loss": 3.587432384490967, + "step": 3861 + }, + { + "epoch": 53.643075578855395, + "grad_norm": 0.19825726747512817, + "learning_rate": 0.0006, + "loss": 3.570539951324463, + "step": 3862 + }, + { + "epoch": 53.65705548274356, + "grad_norm": 0.2038952112197876, + "learning_rate": 0.0006, + "loss": 3.575758934020996, + "step": 3863 + }, + { + "epoch": 53.671035386631715, + "grad_norm": 0.21109119057655334, + "learning_rate": 0.0006, + "loss": 3.6013951301574707, + "step": 3864 + }, + { + "epoch": 53.68501529051988, + "grad_norm": 0.21738514304161072, + "learning_rate": 0.0006, + "loss": 3.567424774169922, + "step": 3865 + }, + { + "epoch": 53.69899519440804, + "grad_norm": 0.214813694357872, + "learning_rate": 0.0006, + "loss": 3.599733352661133, + "step": 3866 + }, + { + "epoch": 53.7129750982962, + "grad_norm": 0.20838409662246704, + "learning_rate": 0.0006, + "loss": 3.595839738845825, + "step": 3867 + }, + { + "epoch": 53.72695500218436, + "grad_norm": 0.2088911384344101, + "learning_rate": 0.0006, + "loss": 3.6030569076538086, + "step": 3868 + }, + { + "epoch": 53.74093490607252, + "grad_norm": 0.22705569863319397, + "learning_rate": 0.0006, + "loss": 3.5876665115356445, + "step": 3869 + }, + { + "epoch": 53.75491480996068, + "grad_norm": 0.22327932715415955, + "learning_rate": 0.0006, + "loss": 3.5555529594421387, + "step": 3870 + }, + { + "epoch": 53.768894713848844, + "grad_norm": 0.2092375010251999, + "learning_rate": 0.0006, + "loss": 3.599871873855591, + "step": 3871 + }, + { + "epoch": 53.782874617737, + "grad_norm": 0.20672307908535004, + "learning_rate": 0.0006, + "loss": 3.598846435546875, + "step": 3872 + }, + { + "epoch": 53.796854521625164, + "grad_norm": 0.2090507596731186, + "learning_rate": 0.0006, + "loss": 3.564012050628662, + "step": 3873 + }, + { + "epoch": 53.81083442551333, + "grad_norm": 0.2044386863708496, + "learning_rate": 0.0006, + "loss": 3.585221529006958, + "step": 3874 + }, + { + "epoch": 53.824814329401484, + "grad_norm": 0.2065548598766327, + "learning_rate": 0.0006, + "loss": 3.595351457595825, + "step": 3875 + }, + { + "epoch": 53.83879423328965, + "grad_norm": 0.22895927727222443, + "learning_rate": 0.0006, + "loss": 3.5720505714416504, + "step": 3876 + }, + { + "epoch": 53.8527741371778, + "grad_norm": 0.22099260985851288, + "learning_rate": 0.0006, + "loss": 3.572587251663208, + "step": 3877 + }, + { + "epoch": 53.86675404106597, + "grad_norm": 0.19928759336471558, + "learning_rate": 0.0006, + "loss": 3.5641839504241943, + "step": 3878 + }, + { + "epoch": 53.88073394495413, + "grad_norm": 0.2735077440738678, + "learning_rate": 0.0006, + "loss": 3.575535774230957, + "step": 3879 + }, + { + "epoch": 53.89471384884229, + "grad_norm": 0.2642554044723511, + "learning_rate": 0.0006, + "loss": 3.5993123054504395, + "step": 3880 + }, + { + "epoch": 53.90869375273045, + "grad_norm": 0.22406205534934998, + "learning_rate": 0.0006, + "loss": 3.5968177318573, + "step": 3881 + }, + { + "epoch": 53.92267365661861, + "grad_norm": 0.22148431837558746, + "learning_rate": 0.0006, + "loss": 3.5668797492980957, + "step": 3882 + }, + { + "epoch": 53.93665356050677, + "grad_norm": 0.20805056393146515, + "learning_rate": 0.0006, + "loss": 3.60849666595459, + "step": 3883 + }, + { + "epoch": 53.95063346439493, + "grad_norm": 0.18656247854232788, + "learning_rate": 0.0006, + "loss": 3.5883405208587646, + "step": 3884 + }, + { + "epoch": 53.964613368283096, + "grad_norm": 0.19937767088413239, + "learning_rate": 0.0006, + "loss": 3.5897698402404785, + "step": 3885 + }, + { + "epoch": 53.97859327217125, + "grad_norm": 0.19680732488632202, + "learning_rate": 0.0006, + "loss": 3.568530559539795, + "step": 3886 + }, + { + "epoch": 53.992573176059416, + "grad_norm": 0.218981072306633, + "learning_rate": 0.0006, + "loss": 3.6194474697113037, + "step": 3887 + }, + { + "epoch": 54.0, + "grad_norm": 0.26408281922340393, + "learning_rate": 0.0006, + "loss": 3.5224976539611816, + "step": 3888 + }, + { + "epoch": 54.0, + "eval_loss": 3.983997106552124, + "eval_runtime": 44.9507, + "eval_samples_per_second": 54.326, + "eval_steps_per_second": 3.404, + "step": 3888 + }, + { + "epoch": 54.01397990388816, + "grad_norm": 0.2230917066335678, + "learning_rate": 0.0006, + "loss": 3.578058958053589, + "step": 3889 + }, + { + "epoch": 54.02795980777632, + "grad_norm": 0.23055201768875122, + "learning_rate": 0.0006, + "loss": 3.549612283706665, + "step": 3890 + }, + { + "epoch": 54.04193971166448, + "grad_norm": 0.23317518830299377, + "learning_rate": 0.0006, + "loss": 3.5662591457366943, + "step": 3891 + }, + { + "epoch": 54.05591961555265, + "grad_norm": 0.27022141218185425, + "learning_rate": 0.0006, + "loss": 3.547062873840332, + "step": 3892 + }, + { + "epoch": 54.0698995194408, + "grad_norm": 0.2665329873561859, + "learning_rate": 0.0006, + "loss": 3.540881633758545, + "step": 3893 + }, + { + "epoch": 54.083879423328966, + "grad_norm": 0.23968365788459778, + "learning_rate": 0.0006, + "loss": 3.574781894683838, + "step": 3894 + }, + { + "epoch": 54.09785932721712, + "grad_norm": 0.22174887359142303, + "learning_rate": 0.0006, + "loss": 3.514077663421631, + "step": 3895 + }, + { + "epoch": 54.111839231105286, + "grad_norm": 0.24605485796928406, + "learning_rate": 0.0006, + "loss": 3.534174919128418, + "step": 3896 + }, + { + "epoch": 54.12581913499345, + "grad_norm": 0.22874566912651062, + "learning_rate": 0.0006, + "loss": 3.574282169342041, + "step": 3897 + }, + { + "epoch": 54.139799038881605, + "grad_norm": 0.2113833874464035, + "learning_rate": 0.0006, + "loss": 3.548687696456909, + "step": 3898 + }, + { + "epoch": 54.15377894276977, + "grad_norm": 0.20756855607032776, + "learning_rate": 0.0006, + "loss": 3.556060791015625, + "step": 3899 + }, + { + "epoch": 54.16775884665793, + "grad_norm": 0.2070261538028717, + "learning_rate": 0.0006, + "loss": 3.5585689544677734, + "step": 3900 + }, + { + "epoch": 54.18173875054609, + "grad_norm": 0.20014794170856476, + "learning_rate": 0.0006, + "loss": 3.5898427963256836, + "step": 3901 + }, + { + "epoch": 54.19571865443425, + "grad_norm": 0.19851888716220856, + "learning_rate": 0.0006, + "loss": 3.564826011657715, + "step": 3902 + }, + { + "epoch": 54.20969855832241, + "grad_norm": 0.20333127677440643, + "learning_rate": 0.0006, + "loss": 3.540660858154297, + "step": 3903 + }, + { + "epoch": 54.22367846221057, + "grad_norm": 0.20291075110435486, + "learning_rate": 0.0006, + "loss": 3.544628143310547, + "step": 3904 + }, + { + "epoch": 54.237658366098735, + "grad_norm": 0.2055949866771698, + "learning_rate": 0.0006, + "loss": 3.547478675842285, + "step": 3905 + }, + { + "epoch": 54.25163826998689, + "grad_norm": 0.20305688679218292, + "learning_rate": 0.0006, + "loss": 3.5793099403381348, + "step": 3906 + }, + { + "epoch": 54.265618173875055, + "grad_norm": 0.21053043007850647, + "learning_rate": 0.0006, + "loss": 3.529263973236084, + "step": 3907 + }, + { + "epoch": 54.27959807776322, + "grad_norm": 0.2461051046848297, + "learning_rate": 0.0006, + "loss": 3.598266124725342, + "step": 3908 + }, + { + "epoch": 54.293577981651374, + "grad_norm": 0.25074276328086853, + "learning_rate": 0.0006, + "loss": 3.557170867919922, + "step": 3909 + }, + { + "epoch": 54.30755788553954, + "grad_norm": 0.23321498930454254, + "learning_rate": 0.0006, + "loss": 3.5532279014587402, + "step": 3910 + }, + { + "epoch": 54.3215377894277, + "grad_norm": 0.19062374532222748, + "learning_rate": 0.0006, + "loss": 3.5718722343444824, + "step": 3911 + }, + { + "epoch": 54.33551769331586, + "grad_norm": 0.22571852803230286, + "learning_rate": 0.0006, + "loss": 3.539036750793457, + "step": 3912 + }, + { + "epoch": 54.34949759720402, + "grad_norm": 0.23314784467220306, + "learning_rate": 0.0006, + "loss": 3.5444631576538086, + "step": 3913 + }, + { + "epoch": 54.36347750109218, + "grad_norm": 0.22334037721157074, + "learning_rate": 0.0006, + "loss": 3.5567970275878906, + "step": 3914 + }, + { + "epoch": 54.37745740498034, + "grad_norm": 0.21900276839733124, + "learning_rate": 0.0006, + "loss": 3.600113868713379, + "step": 3915 + }, + { + "epoch": 54.391437308868504, + "grad_norm": 0.20166733860969543, + "learning_rate": 0.0006, + "loss": 3.54038667678833, + "step": 3916 + }, + { + "epoch": 54.40541721275666, + "grad_norm": 0.21886761486530304, + "learning_rate": 0.0006, + "loss": 3.5708651542663574, + "step": 3917 + }, + { + "epoch": 54.419397116644824, + "grad_norm": 0.26383060216903687, + "learning_rate": 0.0006, + "loss": 3.5572509765625, + "step": 3918 + }, + { + "epoch": 54.43337702053299, + "grad_norm": 0.26116663217544556, + "learning_rate": 0.0006, + "loss": 3.528968334197998, + "step": 3919 + }, + { + "epoch": 54.44735692442114, + "grad_norm": 0.20640771090984344, + "learning_rate": 0.0006, + "loss": 3.587789535522461, + "step": 3920 + }, + { + "epoch": 54.46133682830931, + "grad_norm": 0.23454350233078003, + "learning_rate": 0.0006, + "loss": 3.586834192276001, + "step": 3921 + }, + { + "epoch": 54.47531673219746, + "grad_norm": 0.24828442931175232, + "learning_rate": 0.0006, + "loss": 3.5884881019592285, + "step": 3922 + }, + { + "epoch": 54.489296636085626, + "grad_norm": 0.23654282093048096, + "learning_rate": 0.0006, + "loss": 3.5754570960998535, + "step": 3923 + }, + { + "epoch": 54.50327653997379, + "grad_norm": 0.22721099853515625, + "learning_rate": 0.0006, + "loss": 3.5575859546661377, + "step": 3924 + }, + { + "epoch": 54.517256443861946, + "grad_norm": 0.2157498002052307, + "learning_rate": 0.0006, + "loss": 3.5929436683654785, + "step": 3925 + }, + { + "epoch": 54.53123634775011, + "grad_norm": 0.21604257822036743, + "learning_rate": 0.0006, + "loss": 3.5788726806640625, + "step": 3926 + }, + { + "epoch": 54.54521625163827, + "grad_norm": 0.22310106456279755, + "learning_rate": 0.0006, + "loss": 3.5873899459838867, + "step": 3927 + }, + { + "epoch": 54.55919615552643, + "grad_norm": 0.2121969312429428, + "learning_rate": 0.0006, + "loss": 3.575186252593994, + "step": 3928 + }, + { + "epoch": 54.57317605941459, + "grad_norm": 0.19073615968227386, + "learning_rate": 0.0006, + "loss": 3.5963356494903564, + "step": 3929 + }, + { + "epoch": 54.58715596330275, + "grad_norm": 0.18745607137680054, + "learning_rate": 0.0006, + "loss": 3.593679428100586, + "step": 3930 + }, + { + "epoch": 54.60113586719091, + "grad_norm": 0.19518259167671204, + "learning_rate": 0.0006, + "loss": 3.5730791091918945, + "step": 3931 + }, + { + "epoch": 54.615115771079076, + "grad_norm": 0.20948481559753418, + "learning_rate": 0.0006, + "loss": 3.5646820068359375, + "step": 3932 + }, + { + "epoch": 54.62909567496723, + "grad_norm": 0.1929631531238556, + "learning_rate": 0.0006, + "loss": 3.5550060272216797, + "step": 3933 + }, + { + "epoch": 54.643075578855395, + "grad_norm": 0.2104327380657196, + "learning_rate": 0.0006, + "loss": 3.5774357318878174, + "step": 3934 + }, + { + "epoch": 54.65705548274356, + "grad_norm": 0.1952148675918579, + "learning_rate": 0.0006, + "loss": 3.58856201171875, + "step": 3935 + }, + { + "epoch": 54.671035386631715, + "grad_norm": 0.17762340605258942, + "learning_rate": 0.0006, + "loss": 3.5324528217315674, + "step": 3936 + }, + { + "epoch": 54.68501529051988, + "grad_norm": 0.18349695205688477, + "learning_rate": 0.0006, + "loss": 3.5663890838623047, + "step": 3937 + }, + { + "epoch": 54.69899519440804, + "grad_norm": 0.2038232684135437, + "learning_rate": 0.0006, + "loss": 3.5811679363250732, + "step": 3938 + }, + { + "epoch": 54.7129750982962, + "grad_norm": 0.2431754469871521, + "learning_rate": 0.0006, + "loss": 3.56833553314209, + "step": 3939 + }, + { + "epoch": 54.72695500218436, + "grad_norm": 0.27498456835746765, + "learning_rate": 0.0006, + "loss": 3.5977981090545654, + "step": 3940 + }, + { + "epoch": 54.74093490607252, + "grad_norm": 0.20809921622276306, + "learning_rate": 0.0006, + "loss": 3.57193922996521, + "step": 3941 + }, + { + "epoch": 54.75491480996068, + "grad_norm": 0.18073450028896332, + "learning_rate": 0.0006, + "loss": 3.5610151290893555, + "step": 3942 + }, + { + "epoch": 54.768894713848844, + "grad_norm": 0.194604754447937, + "learning_rate": 0.0006, + "loss": 3.5716047286987305, + "step": 3943 + }, + { + "epoch": 54.782874617737, + "grad_norm": 0.20566268265247345, + "learning_rate": 0.0006, + "loss": 3.578401565551758, + "step": 3944 + }, + { + "epoch": 54.796854521625164, + "grad_norm": 0.21028153598308563, + "learning_rate": 0.0006, + "loss": 3.610511064529419, + "step": 3945 + }, + { + "epoch": 54.81083442551333, + "grad_norm": 0.21413563191890717, + "learning_rate": 0.0006, + "loss": 3.601574659347534, + "step": 3946 + }, + { + "epoch": 54.824814329401484, + "grad_norm": 0.2137378603219986, + "learning_rate": 0.0006, + "loss": 3.603997230529785, + "step": 3947 + }, + { + "epoch": 54.83879423328965, + "grad_norm": 0.2162058800458908, + "learning_rate": 0.0006, + "loss": 3.5829391479492188, + "step": 3948 + }, + { + "epoch": 54.8527741371778, + "grad_norm": 0.21700997650623322, + "learning_rate": 0.0006, + "loss": 3.595317840576172, + "step": 3949 + }, + { + "epoch": 54.86675404106597, + "grad_norm": 0.20864669978618622, + "learning_rate": 0.0006, + "loss": 3.601891040802002, + "step": 3950 + }, + { + "epoch": 54.88073394495413, + "grad_norm": 0.19780485332012177, + "learning_rate": 0.0006, + "loss": 3.567460775375366, + "step": 3951 + }, + { + "epoch": 54.89471384884229, + "grad_norm": 0.2017168402671814, + "learning_rate": 0.0006, + "loss": 3.5737192630767822, + "step": 3952 + }, + { + "epoch": 54.90869375273045, + "grad_norm": 0.22847825288772583, + "learning_rate": 0.0006, + "loss": 3.60937762260437, + "step": 3953 + }, + { + "epoch": 54.92267365661861, + "grad_norm": 0.23698270320892334, + "learning_rate": 0.0006, + "loss": 3.6013574600219727, + "step": 3954 + }, + { + "epoch": 54.93665356050677, + "grad_norm": 0.238611102104187, + "learning_rate": 0.0006, + "loss": 3.5689988136291504, + "step": 3955 + }, + { + "epoch": 54.95063346439493, + "grad_norm": 0.2680057883262634, + "learning_rate": 0.0006, + "loss": 3.5650172233581543, + "step": 3956 + }, + { + "epoch": 54.964613368283096, + "grad_norm": 0.25712481141090393, + "learning_rate": 0.0006, + "loss": 3.576777935028076, + "step": 3957 + }, + { + "epoch": 54.97859327217125, + "grad_norm": 0.2232409566640854, + "learning_rate": 0.0006, + "loss": 3.583169937133789, + "step": 3958 + }, + { + "epoch": 54.992573176059416, + "grad_norm": 0.21233153343200684, + "learning_rate": 0.0006, + "loss": 3.602219581604004, + "step": 3959 + }, + { + "epoch": 55.0, + "grad_norm": 0.24345774948596954, + "learning_rate": 0.0006, + "loss": 3.5118026733398438, + "step": 3960 + }, + { + "epoch": 55.0, + "eval_loss": 3.9819064140319824, + "eval_runtime": 44.6627, + "eval_samples_per_second": 54.677, + "eval_steps_per_second": 3.426, + "step": 3960 + }, + { + "epoch": 55.01397990388816, + "grad_norm": 0.229562908411026, + "learning_rate": 0.0006, + "loss": 3.5591073036193848, + "step": 3961 + }, + { + "epoch": 55.02795980777632, + "grad_norm": 0.21731624007225037, + "learning_rate": 0.0006, + "loss": 3.5544848442077637, + "step": 3962 + }, + { + "epoch": 55.04193971166448, + "grad_norm": 0.23528429865837097, + "learning_rate": 0.0006, + "loss": 3.5654311180114746, + "step": 3963 + }, + { + "epoch": 55.05591961555265, + "grad_norm": 0.23147839307785034, + "learning_rate": 0.0006, + "loss": 3.537006378173828, + "step": 3964 + }, + { + "epoch": 55.0698995194408, + "grad_norm": 0.22218112647533417, + "learning_rate": 0.0006, + "loss": 3.5218982696533203, + "step": 3965 + }, + { + "epoch": 55.083879423328966, + "grad_norm": 0.20697443187236786, + "learning_rate": 0.0006, + "loss": 3.5623579025268555, + "step": 3966 + }, + { + "epoch": 55.09785932721712, + "grad_norm": 0.2108476608991623, + "learning_rate": 0.0006, + "loss": 3.528214454650879, + "step": 3967 + }, + { + "epoch": 55.111839231105286, + "grad_norm": 0.21664242446422577, + "learning_rate": 0.0006, + "loss": 3.5429646968841553, + "step": 3968 + }, + { + "epoch": 55.12581913499345, + "grad_norm": 0.21359260380268097, + "learning_rate": 0.0006, + "loss": 3.5873513221740723, + "step": 3969 + }, + { + "epoch": 55.139799038881605, + "grad_norm": 0.23289452493190765, + "learning_rate": 0.0006, + "loss": 3.5551905632019043, + "step": 3970 + }, + { + "epoch": 55.15377894276977, + "grad_norm": 0.25835689902305603, + "learning_rate": 0.0006, + "loss": 3.5380427837371826, + "step": 3971 + }, + { + "epoch": 55.16775884665793, + "grad_norm": 0.25449255108833313, + "learning_rate": 0.0006, + "loss": 3.5276808738708496, + "step": 3972 + }, + { + "epoch": 55.18173875054609, + "grad_norm": 0.2472638338804245, + "learning_rate": 0.0006, + "loss": 3.539194107055664, + "step": 3973 + }, + { + "epoch": 55.19571865443425, + "grad_norm": 0.21743768453598022, + "learning_rate": 0.0006, + "loss": 3.557185173034668, + "step": 3974 + }, + { + "epoch": 55.20969855832241, + "grad_norm": 0.22787386178970337, + "learning_rate": 0.0006, + "loss": 3.581993579864502, + "step": 3975 + }, + { + "epoch": 55.22367846221057, + "grad_norm": 0.2332824170589447, + "learning_rate": 0.0006, + "loss": 3.5439846515655518, + "step": 3976 + }, + { + "epoch": 55.237658366098735, + "grad_norm": 0.2054908573627472, + "learning_rate": 0.0006, + "loss": 3.5528793334960938, + "step": 3977 + }, + { + "epoch": 55.25163826998689, + "grad_norm": 0.2087554633617401, + "learning_rate": 0.0006, + "loss": 3.536464214324951, + "step": 3978 + }, + { + "epoch": 55.265618173875055, + "grad_norm": 0.22214409708976746, + "learning_rate": 0.0006, + "loss": 3.56184458732605, + "step": 3979 + }, + { + "epoch": 55.27959807776322, + "grad_norm": 0.23214097321033478, + "learning_rate": 0.0006, + "loss": 3.5560522079467773, + "step": 3980 + }, + { + "epoch": 55.293577981651374, + "grad_norm": 0.23317331075668335, + "learning_rate": 0.0006, + "loss": 3.5433850288391113, + "step": 3981 + }, + { + "epoch": 55.30755788553954, + "grad_norm": 0.2303774058818817, + "learning_rate": 0.0006, + "loss": 3.5505576133728027, + "step": 3982 + }, + { + "epoch": 55.3215377894277, + "grad_norm": 0.2400730401277542, + "learning_rate": 0.0006, + "loss": 3.557952404022217, + "step": 3983 + }, + { + "epoch": 55.33551769331586, + "grad_norm": 0.23933538794517517, + "learning_rate": 0.0006, + "loss": 3.536656141281128, + "step": 3984 + }, + { + "epoch": 55.34949759720402, + "grad_norm": 0.23796266317367554, + "learning_rate": 0.0006, + "loss": 3.5777554512023926, + "step": 3985 + }, + { + "epoch": 55.36347750109218, + "grad_norm": 0.26078858971595764, + "learning_rate": 0.0006, + "loss": 3.549121379852295, + "step": 3986 + }, + { + "epoch": 55.37745740498034, + "grad_norm": 0.22726459801197052, + "learning_rate": 0.0006, + "loss": 3.605684518814087, + "step": 3987 + }, + { + "epoch": 55.391437308868504, + "grad_norm": 0.19872179627418518, + "learning_rate": 0.0006, + "loss": 3.5501739978790283, + "step": 3988 + }, + { + "epoch": 55.40541721275666, + "grad_norm": 0.2027827352285385, + "learning_rate": 0.0006, + "loss": 3.625922441482544, + "step": 3989 + }, + { + "epoch": 55.419397116644824, + "grad_norm": 0.24207144975662231, + "learning_rate": 0.0006, + "loss": 3.595451831817627, + "step": 3990 + }, + { + "epoch": 55.43337702053299, + "grad_norm": 0.23449009656906128, + "learning_rate": 0.0006, + "loss": 3.577167510986328, + "step": 3991 + }, + { + "epoch": 55.44735692442114, + "grad_norm": 0.22529540956020355, + "learning_rate": 0.0006, + "loss": 3.5585317611694336, + "step": 3992 + }, + { + "epoch": 55.46133682830931, + "grad_norm": 0.2354331612586975, + "learning_rate": 0.0006, + "loss": 3.574819564819336, + "step": 3993 + }, + { + "epoch": 55.47531673219746, + "grad_norm": 0.2251061201095581, + "learning_rate": 0.0006, + "loss": 3.580498695373535, + "step": 3994 + }, + { + "epoch": 55.489296636085626, + "grad_norm": 0.22107349336147308, + "learning_rate": 0.0006, + "loss": 3.578591823577881, + "step": 3995 + }, + { + "epoch": 55.50327653997379, + "grad_norm": 0.24686408042907715, + "learning_rate": 0.0006, + "loss": 3.541625499725342, + "step": 3996 + }, + { + "epoch": 55.517256443861946, + "grad_norm": 0.23731260001659393, + "learning_rate": 0.0006, + "loss": 3.5508079528808594, + "step": 3997 + }, + { + "epoch": 55.53123634775011, + "grad_norm": 0.21246901154518127, + "learning_rate": 0.0006, + "loss": 3.569500207901001, + "step": 3998 + }, + { + "epoch": 55.54521625163827, + "grad_norm": 0.21369415521621704, + "learning_rate": 0.0006, + "loss": 3.546938896179199, + "step": 3999 + }, + { + "epoch": 55.55919615552643, + "grad_norm": 0.2102644443511963, + "learning_rate": 0.0006, + "loss": 3.5842084884643555, + "step": 4000 + }, + { + "epoch": 55.57317605941459, + "grad_norm": 0.2355998456478119, + "learning_rate": 0.0006, + "loss": 3.5493381023406982, + "step": 4001 + }, + { + "epoch": 55.58715596330275, + "grad_norm": 0.2670288681983948, + "learning_rate": 0.0006, + "loss": 3.5909032821655273, + "step": 4002 + }, + { + "epoch": 55.60113586719091, + "grad_norm": 0.2958407998085022, + "learning_rate": 0.0006, + "loss": 3.624906063079834, + "step": 4003 + }, + { + "epoch": 55.615115771079076, + "grad_norm": 0.2948441505432129, + "learning_rate": 0.0006, + "loss": 3.553528070449829, + "step": 4004 + }, + { + "epoch": 55.62909567496723, + "grad_norm": 0.24873173236846924, + "learning_rate": 0.0006, + "loss": 3.5851495265960693, + "step": 4005 + }, + { + "epoch": 55.643075578855395, + "grad_norm": 0.22191756963729858, + "learning_rate": 0.0006, + "loss": 3.556459903717041, + "step": 4006 + }, + { + "epoch": 55.65705548274356, + "grad_norm": 0.22677776217460632, + "learning_rate": 0.0006, + "loss": 3.579428195953369, + "step": 4007 + }, + { + "epoch": 55.671035386631715, + "grad_norm": 0.22263763844966888, + "learning_rate": 0.0006, + "loss": 3.5878806114196777, + "step": 4008 + }, + { + "epoch": 55.68501529051988, + "grad_norm": 0.24498602747917175, + "learning_rate": 0.0006, + "loss": 3.5989317893981934, + "step": 4009 + }, + { + "epoch": 55.69899519440804, + "grad_norm": 0.26294007897377014, + "learning_rate": 0.0006, + "loss": 3.5866756439208984, + "step": 4010 + }, + { + "epoch": 55.7129750982962, + "grad_norm": 0.22105370461940765, + "learning_rate": 0.0006, + "loss": 3.594365119934082, + "step": 4011 + }, + { + "epoch": 55.72695500218436, + "grad_norm": 0.20973286032676697, + "learning_rate": 0.0006, + "loss": 3.551156997680664, + "step": 4012 + }, + { + "epoch": 55.74093490607252, + "grad_norm": 0.2123304158449173, + "learning_rate": 0.0006, + "loss": 3.587405204772949, + "step": 4013 + }, + { + "epoch": 55.75491480996068, + "grad_norm": 0.22134795784950256, + "learning_rate": 0.0006, + "loss": 3.59114146232605, + "step": 4014 + }, + { + "epoch": 55.768894713848844, + "grad_norm": 0.20822957158088684, + "learning_rate": 0.0006, + "loss": 3.5910749435424805, + "step": 4015 + }, + { + "epoch": 55.782874617737, + "grad_norm": 0.22392229735851288, + "learning_rate": 0.0006, + "loss": 3.5800669193267822, + "step": 4016 + }, + { + "epoch": 55.796854521625164, + "grad_norm": 0.2214914709329605, + "learning_rate": 0.0006, + "loss": 3.5553741455078125, + "step": 4017 + }, + { + "epoch": 55.81083442551333, + "grad_norm": 0.1993025690317154, + "learning_rate": 0.0006, + "loss": 3.567298412322998, + "step": 4018 + }, + { + "epoch": 55.824814329401484, + "grad_norm": 0.21043774485588074, + "learning_rate": 0.0006, + "loss": 3.537358045578003, + "step": 4019 + }, + { + "epoch": 55.83879423328965, + "grad_norm": 0.18501818180084229, + "learning_rate": 0.0006, + "loss": 3.5971930027008057, + "step": 4020 + }, + { + "epoch": 55.8527741371778, + "grad_norm": 0.19626867771148682, + "learning_rate": 0.0006, + "loss": 3.563570976257324, + "step": 4021 + }, + { + "epoch": 55.86675404106597, + "grad_norm": 0.19328820705413818, + "learning_rate": 0.0006, + "loss": 3.600377082824707, + "step": 4022 + }, + { + "epoch": 55.88073394495413, + "grad_norm": 0.2013237327337265, + "learning_rate": 0.0006, + "loss": 3.5916812419891357, + "step": 4023 + }, + { + "epoch": 55.89471384884229, + "grad_norm": 0.22775673866271973, + "learning_rate": 0.0006, + "loss": 3.5572638511657715, + "step": 4024 + }, + { + "epoch": 55.90869375273045, + "grad_norm": 0.2452211230993271, + "learning_rate": 0.0006, + "loss": 3.54378080368042, + "step": 4025 + }, + { + "epoch": 55.92267365661861, + "grad_norm": 0.23337189853191376, + "learning_rate": 0.0006, + "loss": 3.5853466987609863, + "step": 4026 + }, + { + "epoch": 55.93665356050677, + "grad_norm": 0.20073719322681427, + "learning_rate": 0.0006, + "loss": 3.5793843269348145, + "step": 4027 + }, + { + "epoch": 55.95063346439493, + "grad_norm": 0.1963811218738556, + "learning_rate": 0.0006, + "loss": 3.5783073902130127, + "step": 4028 + }, + { + "epoch": 55.964613368283096, + "grad_norm": 0.19921033084392548, + "learning_rate": 0.0006, + "loss": 3.5455331802368164, + "step": 4029 + }, + { + "epoch": 55.97859327217125, + "grad_norm": 0.22151921689510345, + "learning_rate": 0.0006, + "loss": 3.551476001739502, + "step": 4030 + }, + { + "epoch": 55.992573176059416, + "grad_norm": 0.2636640965938568, + "learning_rate": 0.0006, + "loss": 3.5859174728393555, + "step": 4031 + }, + { + "epoch": 56.0, + "grad_norm": 0.282680869102478, + "learning_rate": 0.0006, + "loss": 3.5818469524383545, + "step": 4032 + }, + { + "epoch": 56.0, + "eval_loss": 3.982189178466797, + "eval_runtime": 44.2577, + "eval_samples_per_second": 55.177, + "eval_steps_per_second": 3.457, + "step": 4032 + }, + { + "epoch": 56.01397990388816, + "grad_norm": 0.23316597938537598, + "learning_rate": 0.0006, + "loss": 3.5500292778015137, + "step": 4033 + }, + { + "epoch": 56.02795980777632, + "grad_norm": 0.22836777567863464, + "learning_rate": 0.0006, + "loss": 3.5661063194274902, + "step": 4034 + }, + { + "epoch": 56.04193971166448, + "grad_norm": 0.2607800364494324, + "learning_rate": 0.0006, + "loss": 3.5496177673339844, + "step": 4035 + }, + { + "epoch": 56.05591961555265, + "grad_norm": 0.2620518207550049, + "learning_rate": 0.0006, + "loss": 3.562621831893921, + "step": 4036 + }, + { + "epoch": 56.0698995194408, + "grad_norm": 0.2344953864812851, + "learning_rate": 0.0006, + "loss": 3.5371389389038086, + "step": 4037 + }, + { + "epoch": 56.083879423328966, + "grad_norm": 0.2523435950279236, + "learning_rate": 0.0006, + "loss": 3.565216541290283, + "step": 4038 + }, + { + "epoch": 56.09785932721712, + "grad_norm": 0.26315048336982727, + "learning_rate": 0.0006, + "loss": 3.5510857105255127, + "step": 4039 + }, + { + "epoch": 56.111839231105286, + "grad_norm": 0.256817102432251, + "learning_rate": 0.0006, + "loss": 3.576132297515869, + "step": 4040 + }, + { + "epoch": 56.12581913499345, + "grad_norm": 0.25146403908729553, + "learning_rate": 0.0006, + "loss": 3.550875663757324, + "step": 4041 + }, + { + "epoch": 56.139799038881605, + "grad_norm": 0.2471698820590973, + "learning_rate": 0.0006, + "loss": 3.5574288368225098, + "step": 4042 + }, + { + "epoch": 56.15377894276977, + "grad_norm": 0.2324669510126114, + "learning_rate": 0.0006, + "loss": 3.524637222290039, + "step": 4043 + }, + { + "epoch": 56.16775884665793, + "grad_norm": 0.21824438869953156, + "learning_rate": 0.0006, + "loss": 3.563664436340332, + "step": 4044 + }, + { + "epoch": 56.18173875054609, + "grad_norm": 0.2381063550710678, + "learning_rate": 0.0006, + "loss": 3.573061943054199, + "step": 4045 + }, + { + "epoch": 56.19571865443425, + "grad_norm": 0.23728328943252563, + "learning_rate": 0.0006, + "loss": 3.5563716888427734, + "step": 4046 + }, + { + "epoch": 56.20969855832241, + "grad_norm": 0.20998933911323547, + "learning_rate": 0.0006, + "loss": 3.540152072906494, + "step": 4047 + }, + { + "epoch": 56.22367846221057, + "grad_norm": 0.2249690741300583, + "learning_rate": 0.0006, + "loss": 3.5699682235717773, + "step": 4048 + }, + { + "epoch": 56.237658366098735, + "grad_norm": 0.22615988552570343, + "learning_rate": 0.0006, + "loss": 3.5604777336120605, + "step": 4049 + }, + { + "epoch": 56.25163826998689, + "grad_norm": 0.20918409526348114, + "learning_rate": 0.0006, + "loss": 3.5612001419067383, + "step": 4050 + }, + { + "epoch": 56.265618173875055, + "grad_norm": 0.22025109827518463, + "learning_rate": 0.0006, + "loss": 3.520402193069458, + "step": 4051 + }, + { + "epoch": 56.27959807776322, + "grad_norm": 0.22722174227237701, + "learning_rate": 0.0006, + "loss": 3.52360200881958, + "step": 4052 + }, + { + "epoch": 56.293577981651374, + "grad_norm": 0.2115592360496521, + "learning_rate": 0.0006, + "loss": 3.562689781188965, + "step": 4053 + }, + { + "epoch": 56.30755788553954, + "grad_norm": 0.19253599643707275, + "learning_rate": 0.0006, + "loss": 3.545013427734375, + "step": 4054 + }, + { + "epoch": 56.3215377894277, + "grad_norm": 0.2534266710281372, + "learning_rate": 0.0006, + "loss": 3.530149459838867, + "step": 4055 + }, + { + "epoch": 56.33551769331586, + "grad_norm": 0.2871302366256714, + "learning_rate": 0.0006, + "loss": 3.5667316913604736, + "step": 4056 + }, + { + "epoch": 56.34949759720402, + "grad_norm": 0.2686561048030853, + "learning_rate": 0.0006, + "loss": 3.5341169834136963, + "step": 4057 + }, + { + "epoch": 56.36347750109218, + "grad_norm": 0.21016116440296173, + "learning_rate": 0.0006, + "loss": 3.5151243209838867, + "step": 4058 + }, + { + "epoch": 56.37745740498034, + "grad_norm": 0.20810428261756897, + "learning_rate": 0.0006, + "loss": 3.5641677379608154, + "step": 4059 + }, + { + "epoch": 56.391437308868504, + "grad_norm": 0.2732172906398773, + "learning_rate": 0.0006, + "loss": 3.546082019805908, + "step": 4060 + }, + { + "epoch": 56.40541721275666, + "grad_norm": 0.26587602496147156, + "learning_rate": 0.0006, + "loss": 3.5465946197509766, + "step": 4061 + }, + { + "epoch": 56.419397116644824, + "grad_norm": 0.20492126047611237, + "learning_rate": 0.0006, + "loss": 3.5686211585998535, + "step": 4062 + }, + { + "epoch": 56.43337702053299, + "grad_norm": 0.2147696167230606, + "learning_rate": 0.0006, + "loss": 3.5808653831481934, + "step": 4063 + }, + { + "epoch": 56.44735692442114, + "grad_norm": 0.21947690844535828, + "learning_rate": 0.0006, + "loss": 3.530872344970703, + "step": 4064 + }, + { + "epoch": 56.46133682830931, + "grad_norm": 0.21305148303508759, + "learning_rate": 0.0006, + "loss": 3.5480992794036865, + "step": 4065 + }, + { + "epoch": 56.47531673219746, + "grad_norm": 0.2066979706287384, + "learning_rate": 0.0006, + "loss": 3.5198287963867188, + "step": 4066 + }, + { + "epoch": 56.489296636085626, + "grad_norm": 0.19393840432167053, + "learning_rate": 0.0006, + "loss": 3.555344581604004, + "step": 4067 + }, + { + "epoch": 56.50327653997379, + "grad_norm": 0.19889849424362183, + "learning_rate": 0.0006, + "loss": 3.56475830078125, + "step": 4068 + }, + { + "epoch": 56.517256443861946, + "grad_norm": 0.19851456582546234, + "learning_rate": 0.0006, + "loss": 3.5790982246398926, + "step": 4069 + }, + { + "epoch": 56.53123634775011, + "grad_norm": 0.19570177793502808, + "learning_rate": 0.0006, + "loss": 3.558379888534546, + "step": 4070 + }, + { + "epoch": 56.54521625163827, + "grad_norm": 0.21364007890224457, + "learning_rate": 0.0006, + "loss": 3.586343288421631, + "step": 4071 + }, + { + "epoch": 56.55919615552643, + "grad_norm": 0.22896543145179749, + "learning_rate": 0.0006, + "loss": 3.5565874576568604, + "step": 4072 + }, + { + "epoch": 56.57317605941459, + "grad_norm": 0.21665218472480774, + "learning_rate": 0.0006, + "loss": 3.5737056732177734, + "step": 4073 + }, + { + "epoch": 56.58715596330275, + "grad_norm": 0.1964256912469864, + "learning_rate": 0.0006, + "loss": 3.555798053741455, + "step": 4074 + }, + { + "epoch": 56.60113586719091, + "grad_norm": 0.2056122124195099, + "learning_rate": 0.0006, + "loss": 3.548685073852539, + "step": 4075 + }, + { + "epoch": 56.615115771079076, + "grad_norm": 0.21677979826927185, + "learning_rate": 0.0006, + "loss": 3.569136619567871, + "step": 4076 + }, + { + "epoch": 56.62909567496723, + "grad_norm": 0.2029557228088379, + "learning_rate": 0.0006, + "loss": 3.5723280906677246, + "step": 4077 + }, + { + "epoch": 56.643075578855395, + "grad_norm": 0.22111767530441284, + "learning_rate": 0.0006, + "loss": 3.5784404277801514, + "step": 4078 + }, + { + "epoch": 56.65705548274356, + "grad_norm": 0.245675191283226, + "learning_rate": 0.0006, + "loss": 3.559330940246582, + "step": 4079 + }, + { + "epoch": 56.671035386631715, + "grad_norm": 0.19715000689029694, + "learning_rate": 0.0006, + "loss": 3.5694894790649414, + "step": 4080 + }, + { + "epoch": 56.68501529051988, + "grad_norm": 0.2112303525209427, + "learning_rate": 0.0006, + "loss": 3.5932059288024902, + "step": 4081 + }, + { + "epoch": 56.69899519440804, + "grad_norm": 0.23710735142230988, + "learning_rate": 0.0006, + "loss": 3.59895658493042, + "step": 4082 + }, + { + "epoch": 56.7129750982962, + "grad_norm": 0.2507518529891968, + "learning_rate": 0.0006, + "loss": 3.58455228805542, + "step": 4083 + }, + { + "epoch": 56.72695500218436, + "grad_norm": 0.24770016968250275, + "learning_rate": 0.0006, + "loss": 3.566256046295166, + "step": 4084 + }, + { + "epoch": 56.74093490607252, + "grad_norm": 0.2407187819480896, + "learning_rate": 0.0006, + "loss": 3.6002347469329834, + "step": 4085 + }, + { + "epoch": 56.75491480996068, + "grad_norm": 0.21417197585105896, + "learning_rate": 0.0006, + "loss": 3.5579819679260254, + "step": 4086 + }, + { + "epoch": 56.768894713848844, + "grad_norm": 0.21014295518398285, + "learning_rate": 0.0006, + "loss": 3.574289321899414, + "step": 4087 + }, + { + "epoch": 56.782874617737, + "grad_norm": 0.2265855073928833, + "learning_rate": 0.0006, + "loss": 3.589186906814575, + "step": 4088 + }, + { + "epoch": 56.796854521625164, + "grad_norm": 0.22685059905052185, + "learning_rate": 0.0006, + "loss": 3.567077159881592, + "step": 4089 + }, + { + "epoch": 56.81083442551333, + "grad_norm": 0.21579493582248688, + "learning_rate": 0.0006, + "loss": 3.5568556785583496, + "step": 4090 + }, + { + "epoch": 56.824814329401484, + "grad_norm": 0.2049565464258194, + "learning_rate": 0.0006, + "loss": 3.5547285079956055, + "step": 4091 + }, + { + "epoch": 56.83879423328965, + "grad_norm": 0.21019354462623596, + "learning_rate": 0.0006, + "loss": 3.606884479522705, + "step": 4092 + }, + { + "epoch": 56.8527741371778, + "grad_norm": 0.26110008358955383, + "learning_rate": 0.0006, + "loss": 3.5626933574676514, + "step": 4093 + }, + { + "epoch": 56.86675404106597, + "grad_norm": 0.22148117423057556, + "learning_rate": 0.0006, + "loss": 3.5739552974700928, + "step": 4094 + }, + { + "epoch": 56.88073394495413, + "grad_norm": 0.20535576343536377, + "learning_rate": 0.0006, + "loss": 3.566840648651123, + "step": 4095 + }, + { + "epoch": 56.89471384884229, + "grad_norm": 0.1928025484085083, + "learning_rate": 0.0006, + "loss": 3.5637013912200928, + "step": 4096 + }, + { + "epoch": 56.90869375273045, + "grad_norm": 0.1989327371120453, + "learning_rate": 0.0006, + "loss": 3.5881259441375732, + "step": 4097 + }, + { + "epoch": 56.92267365661861, + "grad_norm": 0.21137912571430206, + "learning_rate": 0.0006, + "loss": 3.5513358116149902, + "step": 4098 + }, + { + "epoch": 56.93665356050677, + "grad_norm": 0.22471629083156586, + "learning_rate": 0.0006, + "loss": 3.5630130767822266, + "step": 4099 + }, + { + "epoch": 56.95063346439493, + "grad_norm": 0.2323181927204132, + "learning_rate": 0.0006, + "loss": 3.559762477874756, + "step": 4100 + }, + { + "epoch": 56.964613368283096, + "grad_norm": 0.2020239382982254, + "learning_rate": 0.0006, + "loss": 3.596774101257324, + "step": 4101 + }, + { + "epoch": 56.97859327217125, + "grad_norm": 0.21822074055671692, + "learning_rate": 0.0006, + "loss": 3.598115921020508, + "step": 4102 + }, + { + "epoch": 56.992573176059416, + "grad_norm": 0.20600785315036774, + "learning_rate": 0.0006, + "loss": 3.5579686164855957, + "step": 4103 + }, + { + "epoch": 57.0, + "grad_norm": 0.23575574159622192, + "learning_rate": 0.0006, + "loss": 3.57532000541687, + "step": 4104 + }, + { + "epoch": 57.0, + "eval_loss": 3.9726130962371826, + "eval_runtime": 44.7918, + "eval_samples_per_second": 54.519, + "eval_steps_per_second": 3.416, + "step": 4104 + }, + { + "epoch": 57.01397990388816, + "grad_norm": 0.2366827428340912, + "learning_rate": 0.0006, + "loss": 3.552804946899414, + "step": 4105 + }, + { + "epoch": 57.02795980777632, + "grad_norm": 0.2728131115436554, + "learning_rate": 0.0006, + "loss": 3.5407862663269043, + "step": 4106 + }, + { + "epoch": 57.04193971166448, + "grad_norm": 0.2685103416442871, + "learning_rate": 0.0006, + "loss": 3.525047779083252, + "step": 4107 + }, + { + "epoch": 57.05591961555265, + "grad_norm": 0.26493778824806213, + "learning_rate": 0.0006, + "loss": 3.527106523513794, + "step": 4108 + }, + { + "epoch": 57.0698995194408, + "grad_norm": 0.290961354970932, + "learning_rate": 0.0006, + "loss": 3.5482702255249023, + "step": 4109 + }, + { + "epoch": 57.083879423328966, + "grad_norm": 0.33083876967430115, + "learning_rate": 0.0006, + "loss": 3.5123658180236816, + "step": 4110 + }, + { + "epoch": 57.09785932721712, + "grad_norm": 0.28544098138809204, + "learning_rate": 0.0006, + "loss": 3.5563549995422363, + "step": 4111 + }, + { + "epoch": 57.111839231105286, + "grad_norm": 0.2516465187072754, + "learning_rate": 0.0006, + "loss": 3.547360420227051, + "step": 4112 + }, + { + "epoch": 57.12581913499345, + "grad_norm": 0.2485780417919159, + "learning_rate": 0.0006, + "loss": 3.5234861373901367, + "step": 4113 + }, + { + "epoch": 57.139799038881605, + "grad_norm": 0.246695414185524, + "learning_rate": 0.0006, + "loss": 3.573009490966797, + "step": 4114 + }, + { + "epoch": 57.15377894276977, + "grad_norm": 0.24958990514278412, + "learning_rate": 0.0006, + "loss": 3.5322680473327637, + "step": 4115 + }, + { + "epoch": 57.16775884665793, + "grad_norm": 0.20882244408130646, + "learning_rate": 0.0006, + "loss": 3.5463480949401855, + "step": 4116 + }, + { + "epoch": 57.18173875054609, + "grad_norm": 0.2372189313173294, + "learning_rate": 0.0006, + "loss": 3.543396472930908, + "step": 4117 + }, + { + "epoch": 57.19571865443425, + "grad_norm": 0.24817894399166107, + "learning_rate": 0.0006, + "loss": 3.5594849586486816, + "step": 4118 + }, + { + "epoch": 57.20969855832241, + "grad_norm": 0.2231832891702652, + "learning_rate": 0.0006, + "loss": 3.5276806354522705, + "step": 4119 + }, + { + "epoch": 57.22367846221057, + "grad_norm": 0.2211553156375885, + "learning_rate": 0.0006, + "loss": 3.5423057079315186, + "step": 4120 + }, + { + "epoch": 57.237658366098735, + "grad_norm": 0.2495127022266388, + "learning_rate": 0.0006, + "loss": 3.57668399810791, + "step": 4121 + }, + { + "epoch": 57.25163826998689, + "grad_norm": 0.2548885941505432, + "learning_rate": 0.0006, + "loss": 3.5487570762634277, + "step": 4122 + }, + { + "epoch": 57.265618173875055, + "grad_norm": 0.22884942591190338, + "learning_rate": 0.0006, + "loss": 3.560772180557251, + "step": 4123 + }, + { + "epoch": 57.27959807776322, + "grad_norm": 0.20817993581295013, + "learning_rate": 0.0006, + "loss": 3.5540637969970703, + "step": 4124 + }, + { + "epoch": 57.293577981651374, + "grad_norm": 0.2075389176607132, + "learning_rate": 0.0006, + "loss": 3.5382890701293945, + "step": 4125 + }, + { + "epoch": 57.30755788553954, + "grad_norm": 0.2081303596496582, + "learning_rate": 0.0006, + "loss": 3.554612874984741, + "step": 4126 + }, + { + "epoch": 57.3215377894277, + "grad_norm": 0.2108871191740036, + "learning_rate": 0.0006, + "loss": 3.583320379257202, + "step": 4127 + }, + { + "epoch": 57.33551769331586, + "grad_norm": 0.21608266234397888, + "learning_rate": 0.0006, + "loss": 3.5358712673187256, + "step": 4128 + }, + { + "epoch": 57.34949759720402, + "grad_norm": 0.21208034455776215, + "learning_rate": 0.0006, + "loss": 3.561821937561035, + "step": 4129 + }, + { + "epoch": 57.36347750109218, + "grad_norm": 0.2109878957271576, + "learning_rate": 0.0006, + "loss": 3.5592710971832275, + "step": 4130 + }, + { + "epoch": 57.37745740498034, + "grad_norm": 0.2175656110048294, + "learning_rate": 0.0006, + "loss": 3.5616424083709717, + "step": 4131 + }, + { + "epoch": 57.391437308868504, + "grad_norm": 0.2170158475637436, + "learning_rate": 0.0006, + "loss": 3.5580999851226807, + "step": 4132 + }, + { + "epoch": 57.40541721275666, + "grad_norm": 0.22486525774002075, + "learning_rate": 0.0006, + "loss": 3.562096118927002, + "step": 4133 + }, + { + "epoch": 57.419397116644824, + "grad_norm": 0.22458943724632263, + "learning_rate": 0.0006, + "loss": 3.5784192085266113, + "step": 4134 + }, + { + "epoch": 57.43337702053299, + "grad_norm": 0.20545627176761627, + "learning_rate": 0.0006, + "loss": 3.5740323066711426, + "step": 4135 + }, + { + "epoch": 57.44735692442114, + "grad_norm": 0.22105063498020172, + "learning_rate": 0.0006, + "loss": 3.537400245666504, + "step": 4136 + }, + { + "epoch": 57.46133682830931, + "grad_norm": 0.26679784059524536, + "learning_rate": 0.0006, + "loss": 3.5323081016540527, + "step": 4137 + }, + { + "epoch": 57.47531673219746, + "grad_norm": 0.2646673321723938, + "learning_rate": 0.0006, + "loss": 3.54030442237854, + "step": 4138 + }, + { + "epoch": 57.489296636085626, + "grad_norm": 0.22486890852451324, + "learning_rate": 0.0006, + "loss": 3.558323621749878, + "step": 4139 + }, + { + "epoch": 57.50327653997379, + "grad_norm": 0.20868313312530518, + "learning_rate": 0.0006, + "loss": 3.5296707153320312, + "step": 4140 + }, + { + "epoch": 57.517256443861946, + "grad_norm": 0.22973674535751343, + "learning_rate": 0.0006, + "loss": 3.5401687622070312, + "step": 4141 + }, + { + "epoch": 57.53123634775011, + "grad_norm": 0.22321778535842896, + "learning_rate": 0.0006, + "loss": 3.566683530807495, + "step": 4142 + }, + { + "epoch": 57.54521625163827, + "grad_norm": 0.20808766782283783, + "learning_rate": 0.0006, + "loss": 3.5398507118225098, + "step": 4143 + }, + { + "epoch": 57.55919615552643, + "grad_norm": 0.19632819294929504, + "learning_rate": 0.0006, + "loss": 3.5785460472106934, + "step": 4144 + }, + { + "epoch": 57.57317605941459, + "grad_norm": 0.18699012696743011, + "learning_rate": 0.0006, + "loss": 3.5495004653930664, + "step": 4145 + }, + { + "epoch": 57.58715596330275, + "grad_norm": 0.19161473214626312, + "learning_rate": 0.0006, + "loss": 3.550243854522705, + "step": 4146 + }, + { + "epoch": 57.60113586719091, + "grad_norm": 0.21041646599769592, + "learning_rate": 0.0006, + "loss": 3.5801823139190674, + "step": 4147 + }, + { + "epoch": 57.615115771079076, + "grad_norm": 0.2043760120868683, + "learning_rate": 0.0006, + "loss": 3.580418825149536, + "step": 4148 + }, + { + "epoch": 57.62909567496723, + "grad_norm": 0.21515823900699615, + "learning_rate": 0.0006, + "loss": 3.58026385307312, + "step": 4149 + }, + { + "epoch": 57.643075578855395, + "grad_norm": 0.20913724601268768, + "learning_rate": 0.0006, + "loss": 3.5452992916107178, + "step": 4150 + }, + { + "epoch": 57.65705548274356, + "grad_norm": 0.22621729969978333, + "learning_rate": 0.0006, + "loss": 3.5332765579223633, + "step": 4151 + }, + { + "epoch": 57.671035386631715, + "grad_norm": 0.26475241780281067, + "learning_rate": 0.0006, + "loss": 3.5701823234558105, + "step": 4152 + }, + { + "epoch": 57.68501529051988, + "grad_norm": 0.2567952275276184, + "learning_rate": 0.0006, + "loss": 3.597219228744507, + "step": 4153 + }, + { + "epoch": 57.69899519440804, + "grad_norm": 0.19640378654003143, + "learning_rate": 0.0006, + "loss": 3.5865941047668457, + "step": 4154 + }, + { + "epoch": 57.7129750982962, + "grad_norm": 0.21714240312576294, + "learning_rate": 0.0006, + "loss": 3.555518627166748, + "step": 4155 + }, + { + "epoch": 57.72695500218436, + "grad_norm": 0.2604375183582306, + "learning_rate": 0.0006, + "loss": 3.5756402015686035, + "step": 4156 + }, + { + "epoch": 57.74093490607252, + "grad_norm": 0.24627837538719177, + "learning_rate": 0.0006, + "loss": 3.550668239593506, + "step": 4157 + }, + { + "epoch": 57.75491480996068, + "grad_norm": 0.21893182396888733, + "learning_rate": 0.0006, + "loss": 3.5560038089752197, + "step": 4158 + }, + { + "epoch": 57.768894713848844, + "grad_norm": 0.23481261730194092, + "learning_rate": 0.0006, + "loss": 3.543942451477051, + "step": 4159 + }, + { + "epoch": 57.782874617737, + "grad_norm": 0.21777133643627167, + "learning_rate": 0.0006, + "loss": 3.5652658939361572, + "step": 4160 + }, + { + "epoch": 57.796854521625164, + "grad_norm": 0.2158525437116623, + "learning_rate": 0.0006, + "loss": 3.5803327560424805, + "step": 4161 + }, + { + "epoch": 57.81083442551333, + "grad_norm": 0.19519925117492676, + "learning_rate": 0.0006, + "loss": 3.5814499855041504, + "step": 4162 + }, + { + "epoch": 57.824814329401484, + "grad_norm": 0.2017558217048645, + "learning_rate": 0.0006, + "loss": 3.558722972869873, + "step": 4163 + }, + { + "epoch": 57.83879423328965, + "grad_norm": 0.22046449780464172, + "learning_rate": 0.0006, + "loss": 3.559990882873535, + "step": 4164 + }, + { + "epoch": 57.8527741371778, + "grad_norm": 0.22240568697452545, + "learning_rate": 0.0006, + "loss": 3.5427942276000977, + "step": 4165 + }, + { + "epoch": 57.86675404106597, + "grad_norm": 0.20282965898513794, + "learning_rate": 0.0006, + "loss": 3.5449461936950684, + "step": 4166 + }, + { + "epoch": 57.88073394495413, + "grad_norm": 0.20970730483531952, + "learning_rate": 0.0006, + "loss": 3.592543601989746, + "step": 4167 + }, + { + "epoch": 57.89471384884229, + "grad_norm": 0.21963168680667877, + "learning_rate": 0.0006, + "loss": 3.5564393997192383, + "step": 4168 + }, + { + "epoch": 57.90869375273045, + "grad_norm": 0.20854730904102325, + "learning_rate": 0.0006, + "loss": 3.565591335296631, + "step": 4169 + }, + { + "epoch": 57.92267365661861, + "grad_norm": 0.24149510264396667, + "learning_rate": 0.0006, + "loss": 3.574720859527588, + "step": 4170 + }, + { + "epoch": 57.93665356050677, + "grad_norm": 0.26011863350868225, + "learning_rate": 0.0006, + "loss": 3.593156337738037, + "step": 4171 + }, + { + "epoch": 57.95063346439493, + "grad_norm": 0.24111896753311157, + "learning_rate": 0.0006, + "loss": 3.5871872901916504, + "step": 4172 + }, + { + "epoch": 57.964613368283096, + "grad_norm": 0.22362647950649261, + "learning_rate": 0.0006, + "loss": 3.568572998046875, + "step": 4173 + }, + { + "epoch": 57.97859327217125, + "grad_norm": 0.23621505498886108, + "learning_rate": 0.0006, + "loss": 3.5627479553222656, + "step": 4174 + }, + { + "epoch": 57.992573176059416, + "grad_norm": 0.2252524048089981, + "learning_rate": 0.0006, + "loss": 3.594430446624756, + "step": 4175 + }, + { + "epoch": 58.0, + "grad_norm": 0.24568618834018707, + "learning_rate": 0.0006, + "loss": 3.5520875453948975, + "step": 4176 + }, + { + "epoch": 58.0, + "eval_loss": 3.978929042816162, + "eval_runtime": 44.8688, + "eval_samples_per_second": 54.425, + "eval_steps_per_second": 3.41, + "step": 4176 + }, + { + "epoch": 58.01397990388816, + "grad_norm": 0.23220741748809814, + "learning_rate": 0.0006, + "loss": 3.5401225090026855, + "step": 4177 + }, + { + "epoch": 58.02795980777632, + "grad_norm": 0.214580699801445, + "learning_rate": 0.0006, + "loss": 3.507652759552002, + "step": 4178 + }, + { + "epoch": 58.04193971166448, + "grad_norm": 0.20596857368946075, + "learning_rate": 0.0006, + "loss": 3.5591790676116943, + "step": 4179 + }, + { + "epoch": 58.05591961555265, + "grad_norm": 0.23054419457912445, + "learning_rate": 0.0006, + "loss": 3.518101692199707, + "step": 4180 + }, + { + "epoch": 58.0698995194408, + "grad_norm": 0.2410690039396286, + "learning_rate": 0.0006, + "loss": 3.5270299911499023, + "step": 4181 + }, + { + "epoch": 58.083879423328966, + "grad_norm": 0.24333222210407257, + "learning_rate": 0.0006, + "loss": 3.5732290744781494, + "step": 4182 + }, + { + "epoch": 58.09785932721712, + "grad_norm": 0.2547648549079895, + "learning_rate": 0.0006, + "loss": 3.5470314025878906, + "step": 4183 + }, + { + "epoch": 58.111839231105286, + "grad_norm": 0.2366316169500351, + "learning_rate": 0.0006, + "loss": 3.500774621963501, + "step": 4184 + }, + { + "epoch": 58.12581913499345, + "grad_norm": 0.22653642296791077, + "learning_rate": 0.0006, + "loss": 3.5242254734039307, + "step": 4185 + }, + { + "epoch": 58.139799038881605, + "grad_norm": 0.25555330514907837, + "learning_rate": 0.0006, + "loss": 3.5272228717803955, + "step": 4186 + }, + { + "epoch": 58.15377894276977, + "grad_norm": 0.26559844613075256, + "learning_rate": 0.0006, + "loss": 3.5599403381347656, + "step": 4187 + }, + { + "epoch": 58.16775884665793, + "grad_norm": 0.2473350614309311, + "learning_rate": 0.0006, + "loss": 3.5130624771118164, + "step": 4188 + }, + { + "epoch": 58.18173875054609, + "grad_norm": 0.22858835756778717, + "learning_rate": 0.0006, + "loss": 3.508342742919922, + "step": 4189 + }, + { + "epoch": 58.19571865443425, + "grad_norm": 0.2151159793138504, + "learning_rate": 0.0006, + "loss": 3.533581256866455, + "step": 4190 + }, + { + "epoch": 58.20969855832241, + "grad_norm": 0.2042093276977539, + "learning_rate": 0.0006, + "loss": 3.5269458293914795, + "step": 4191 + }, + { + "epoch": 58.22367846221057, + "grad_norm": 0.20638196170330048, + "learning_rate": 0.0006, + "loss": 3.5137884616851807, + "step": 4192 + }, + { + "epoch": 58.237658366098735, + "grad_norm": 0.2018391191959381, + "learning_rate": 0.0006, + "loss": 3.533733367919922, + "step": 4193 + }, + { + "epoch": 58.25163826998689, + "grad_norm": 0.21045200526714325, + "learning_rate": 0.0006, + "loss": 3.5585010051727295, + "step": 4194 + }, + { + "epoch": 58.265618173875055, + "grad_norm": 0.2040393352508545, + "learning_rate": 0.0006, + "loss": 3.547539234161377, + "step": 4195 + }, + { + "epoch": 58.27959807776322, + "grad_norm": 0.2538772523403168, + "learning_rate": 0.0006, + "loss": 3.5487847328186035, + "step": 4196 + }, + { + "epoch": 58.293577981651374, + "grad_norm": 0.30126553773880005, + "learning_rate": 0.0006, + "loss": 3.5717992782592773, + "step": 4197 + }, + { + "epoch": 58.30755788553954, + "grad_norm": 0.2787485718727112, + "learning_rate": 0.0006, + "loss": 3.543076992034912, + "step": 4198 + }, + { + "epoch": 58.3215377894277, + "grad_norm": 0.23167021572589874, + "learning_rate": 0.0006, + "loss": 3.518887519836426, + "step": 4199 + }, + { + "epoch": 58.33551769331586, + "grad_norm": 0.23871110379695892, + "learning_rate": 0.0006, + "loss": 3.536757469177246, + "step": 4200 + }, + { + "epoch": 58.34949759720402, + "grad_norm": 0.2542787492275238, + "learning_rate": 0.0006, + "loss": 3.573086738586426, + "step": 4201 + }, + { + "epoch": 58.36347750109218, + "grad_norm": 0.2967284023761749, + "learning_rate": 0.0006, + "loss": 3.5866525173187256, + "step": 4202 + }, + { + "epoch": 58.37745740498034, + "grad_norm": 0.28304803371429443, + "learning_rate": 0.0006, + "loss": 3.5601437091827393, + "step": 4203 + }, + { + "epoch": 58.391437308868504, + "grad_norm": 0.20651954412460327, + "learning_rate": 0.0006, + "loss": 3.5591554641723633, + "step": 4204 + }, + { + "epoch": 58.40541721275666, + "grad_norm": 0.23101729154586792, + "learning_rate": 0.0006, + "loss": 3.5714032649993896, + "step": 4205 + }, + { + "epoch": 58.419397116644824, + "grad_norm": 0.24556246399879456, + "learning_rate": 0.0006, + "loss": 3.550046443939209, + "step": 4206 + }, + { + "epoch": 58.43337702053299, + "grad_norm": 0.2307356745004654, + "learning_rate": 0.0006, + "loss": 3.571850299835205, + "step": 4207 + }, + { + "epoch": 58.44735692442114, + "grad_norm": 0.23186670243740082, + "learning_rate": 0.0006, + "loss": 3.555757999420166, + "step": 4208 + }, + { + "epoch": 58.46133682830931, + "grad_norm": 0.20662686228752136, + "learning_rate": 0.0006, + "loss": 3.5590686798095703, + "step": 4209 + }, + { + "epoch": 58.47531673219746, + "grad_norm": 0.20381265878677368, + "learning_rate": 0.0006, + "loss": 3.5228846073150635, + "step": 4210 + }, + { + "epoch": 58.489296636085626, + "grad_norm": 0.20927058160305023, + "learning_rate": 0.0006, + "loss": 3.5376980304718018, + "step": 4211 + }, + { + "epoch": 58.50327653997379, + "grad_norm": 0.22782307863235474, + "learning_rate": 0.0006, + "loss": 3.5477585792541504, + "step": 4212 + }, + { + "epoch": 58.517256443861946, + "grad_norm": 0.20143239200115204, + "learning_rate": 0.0006, + "loss": 3.5429391860961914, + "step": 4213 + }, + { + "epoch": 58.53123634775011, + "grad_norm": 0.2120865285396576, + "learning_rate": 0.0006, + "loss": 3.5543365478515625, + "step": 4214 + }, + { + "epoch": 58.54521625163827, + "grad_norm": 0.2032771110534668, + "learning_rate": 0.0006, + "loss": 3.5307888984680176, + "step": 4215 + }, + { + "epoch": 58.55919615552643, + "grad_norm": 0.20994187891483307, + "learning_rate": 0.0006, + "loss": 3.581739664077759, + "step": 4216 + }, + { + "epoch": 58.57317605941459, + "grad_norm": 0.23686161637306213, + "learning_rate": 0.0006, + "loss": 3.5274312496185303, + "step": 4217 + }, + { + "epoch": 58.58715596330275, + "grad_norm": 0.21081998944282532, + "learning_rate": 0.0006, + "loss": 3.547239303588867, + "step": 4218 + }, + { + "epoch": 58.60113586719091, + "grad_norm": 0.20353151857852936, + "learning_rate": 0.0006, + "loss": 3.5522308349609375, + "step": 4219 + }, + { + "epoch": 58.615115771079076, + "grad_norm": 0.20888762176036835, + "learning_rate": 0.0006, + "loss": 3.5535459518432617, + "step": 4220 + }, + { + "epoch": 58.62909567496723, + "grad_norm": 0.2024519443511963, + "learning_rate": 0.0006, + "loss": 3.5320982933044434, + "step": 4221 + }, + { + "epoch": 58.643075578855395, + "grad_norm": 0.19622337818145752, + "learning_rate": 0.0006, + "loss": 3.5581917762756348, + "step": 4222 + }, + { + "epoch": 58.65705548274356, + "grad_norm": 0.1966600865125656, + "learning_rate": 0.0006, + "loss": 3.5412650108337402, + "step": 4223 + }, + { + "epoch": 58.671035386631715, + "grad_norm": 0.19325542449951172, + "learning_rate": 0.0006, + "loss": 3.570521593093872, + "step": 4224 + }, + { + "epoch": 58.68501529051988, + "grad_norm": 0.20674128830432892, + "learning_rate": 0.0006, + "loss": 3.5727484226226807, + "step": 4225 + }, + { + "epoch": 58.69899519440804, + "grad_norm": 0.1959284245967865, + "learning_rate": 0.0006, + "loss": 3.5655486583709717, + "step": 4226 + }, + { + "epoch": 58.7129750982962, + "grad_norm": 0.2044358104467392, + "learning_rate": 0.0006, + "loss": 3.5477449893951416, + "step": 4227 + }, + { + "epoch": 58.72695500218436, + "grad_norm": 0.21381069719791412, + "learning_rate": 0.0006, + "loss": 3.533381462097168, + "step": 4228 + }, + { + "epoch": 58.74093490607252, + "grad_norm": 0.20168009400367737, + "learning_rate": 0.0006, + "loss": 3.5401244163513184, + "step": 4229 + }, + { + "epoch": 58.75491480996068, + "grad_norm": 0.20853811502456665, + "learning_rate": 0.0006, + "loss": 3.5669009685516357, + "step": 4230 + }, + { + "epoch": 58.768894713848844, + "grad_norm": 0.2135785073041916, + "learning_rate": 0.0006, + "loss": 3.5697989463806152, + "step": 4231 + }, + { + "epoch": 58.782874617737, + "grad_norm": 0.20372799038887024, + "learning_rate": 0.0006, + "loss": 3.592245101928711, + "step": 4232 + }, + { + "epoch": 58.796854521625164, + "grad_norm": 0.20562207698822021, + "learning_rate": 0.0006, + "loss": 3.5732932090759277, + "step": 4233 + }, + { + "epoch": 58.81083442551333, + "grad_norm": 0.1932520568370819, + "learning_rate": 0.0006, + "loss": 3.581766128540039, + "step": 4234 + }, + { + "epoch": 58.824814329401484, + "grad_norm": 0.20229186117649078, + "learning_rate": 0.0006, + "loss": 3.5758426189422607, + "step": 4235 + }, + { + "epoch": 58.83879423328965, + "grad_norm": 0.21348924934864044, + "learning_rate": 0.0006, + "loss": 3.573164939880371, + "step": 4236 + }, + { + "epoch": 58.8527741371778, + "grad_norm": 0.2240375131368637, + "learning_rate": 0.0006, + "loss": 3.578442096710205, + "step": 4237 + }, + { + "epoch": 58.86675404106597, + "grad_norm": 0.22859376668930054, + "learning_rate": 0.0006, + "loss": 3.5597116947174072, + "step": 4238 + }, + { + "epoch": 58.88073394495413, + "grad_norm": 0.22347290813922882, + "learning_rate": 0.0006, + "loss": 3.557039260864258, + "step": 4239 + }, + { + "epoch": 58.89471384884229, + "grad_norm": 0.19835364818572998, + "learning_rate": 0.0006, + "loss": 3.5832467079162598, + "step": 4240 + }, + { + "epoch": 58.90869375273045, + "grad_norm": 0.21189740300178528, + "learning_rate": 0.0006, + "loss": 3.5421836376190186, + "step": 4241 + }, + { + "epoch": 58.92267365661861, + "grad_norm": 0.21234451234340668, + "learning_rate": 0.0006, + "loss": 3.6048710346221924, + "step": 4242 + }, + { + "epoch": 58.93665356050677, + "grad_norm": 0.2107880860567093, + "learning_rate": 0.0006, + "loss": 3.58248233795166, + "step": 4243 + }, + { + "epoch": 58.95063346439493, + "grad_norm": 0.21674086153507233, + "learning_rate": 0.0006, + "loss": 3.582352876663208, + "step": 4244 + }, + { + "epoch": 58.964613368283096, + "grad_norm": 0.21057581901550293, + "learning_rate": 0.0006, + "loss": 3.5387773513793945, + "step": 4245 + }, + { + "epoch": 58.97859327217125, + "grad_norm": 0.20203082263469696, + "learning_rate": 0.0006, + "loss": 3.5805740356445312, + "step": 4246 + }, + { + "epoch": 58.992573176059416, + "grad_norm": 0.21071292459964752, + "learning_rate": 0.0006, + "loss": 3.5644760131835938, + "step": 4247 + }, + { + "epoch": 59.0, + "grad_norm": 0.2473233938217163, + "learning_rate": 0.0006, + "loss": 3.56392765045166, + "step": 4248 + }, + { + "epoch": 59.0, + "eval_loss": 3.9670467376708984, + "eval_runtime": 44.7697, + "eval_samples_per_second": 54.546, + "eval_steps_per_second": 3.417, + "step": 4248 + }, + { + "epoch": 59.01397990388816, + "grad_norm": 0.22915491461753845, + "learning_rate": 0.0006, + "loss": 3.5110130310058594, + "step": 4249 + }, + { + "epoch": 59.02795980777632, + "grad_norm": 0.2629511058330536, + "learning_rate": 0.0006, + "loss": 3.5493721961975098, + "step": 4250 + }, + { + "epoch": 59.04193971166448, + "grad_norm": 0.2954505383968353, + "learning_rate": 0.0006, + "loss": 3.555753707885742, + "step": 4251 + }, + { + "epoch": 59.05591961555265, + "grad_norm": 0.2728694677352905, + "learning_rate": 0.0006, + "loss": 3.5089950561523438, + "step": 4252 + }, + { + "epoch": 59.0698995194408, + "grad_norm": 0.25955384969711304, + "learning_rate": 0.0006, + "loss": 3.509044647216797, + "step": 4253 + }, + { + "epoch": 59.083879423328966, + "grad_norm": 0.32285967469215393, + "learning_rate": 0.0006, + "loss": 3.5324721336364746, + "step": 4254 + }, + { + "epoch": 59.09785932721712, + "grad_norm": 0.2913302779197693, + "learning_rate": 0.0006, + "loss": 3.5004022121429443, + "step": 4255 + }, + { + "epoch": 59.111839231105286, + "grad_norm": 0.23795513808727264, + "learning_rate": 0.0006, + "loss": 3.515099048614502, + "step": 4256 + }, + { + "epoch": 59.12581913499345, + "grad_norm": 0.2788177728652954, + "learning_rate": 0.0006, + "loss": 3.524991035461426, + "step": 4257 + }, + { + "epoch": 59.139799038881605, + "grad_norm": 0.32389938831329346, + "learning_rate": 0.0006, + "loss": 3.5330004692077637, + "step": 4258 + }, + { + "epoch": 59.15377894276977, + "grad_norm": 0.2921825647354126, + "learning_rate": 0.0006, + "loss": 3.530616283416748, + "step": 4259 + }, + { + "epoch": 59.16775884665793, + "grad_norm": 0.28415167331695557, + "learning_rate": 0.0006, + "loss": 3.5276989936828613, + "step": 4260 + }, + { + "epoch": 59.18173875054609, + "grad_norm": 0.283626526594162, + "learning_rate": 0.0006, + "loss": 3.564985752105713, + "step": 4261 + }, + { + "epoch": 59.19571865443425, + "grad_norm": 0.2655615210533142, + "learning_rate": 0.0006, + "loss": 3.536499500274658, + "step": 4262 + }, + { + "epoch": 59.20969855832241, + "grad_norm": 0.2794124484062195, + "learning_rate": 0.0006, + "loss": 3.570883274078369, + "step": 4263 + }, + { + "epoch": 59.22367846221057, + "grad_norm": 0.2803778052330017, + "learning_rate": 0.0006, + "loss": 3.5143651962280273, + "step": 4264 + }, + { + "epoch": 59.237658366098735, + "grad_norm": 0.2584295868873596, + "learning_rate": 0.0006, + "loss": 3.548056125640869, + "step": 4265 + }, + { + "epoch": 59.25163826998689, + "grad_norm": 0.26859962940216064, + "learning_rate": 0.0006, + "loss": 3.511655807495117, + "step": 4266 + }, + { + "epoch": 59.265618173875055, + "grad_norm": 0.26620036363601685, + "learning_rate": 0.0006, + "loss": 3.5554311275482178, + "step": 4267 + }, + { + "epoch": 59.27959807776322, + "grad_norm": 0.2325621247291565, + "learning_rate": 0.0006, + "loss": 3.5126709938049316, + "step": 4268 + }, + { + "epoch": 59.293577981651374, + "grad_norm": 0.24758809804916382, + "learning_rate": 0.0006, + "loss": 3.5747783184051514, + "step": 4269 + }, + { + "epoch": 59.30755788553954, + "grad_norm": 0.26378121972084045, + "learning_rate": 0.0006, + "loss": 3.538012742996216, + "step": 4270 + }, + { + "epoch": 59.3215377894277, + "grad_norm": 0.24299141764640808, + "learning_rate": 0.0006, + "loss": 3.533834457397461, + "step": 4271 + }, + { + "epoch": 59.33551769331586, + "grad_norm": 0.20792774856090546, + "learning_rate": 0.0006, + "loss": 3.5645856857299805, + "step": 4272 + }, + { + "epoch": 59.34949759720402, + "grad_norm": 0.21124716103076935, + "learning_rate": 0.0006, + "loss": 3.5616869926452637, + "step": 4273 + }, + { + "epoch": 59.36347750109218, + "grad_norm": 0.2644400894641876, + "learning_rate": 0.0006, + "loss": 3.531334400177002, + "step": 4274 + }, + { + "epoch": 59.37745740498034, + "grad_norm": 0.27659082412719727, + "learning_rate": 0.0006, + "loss": 3.5557894706726074, + "step": 4275 + }, + { + "epoch": 59.391437308868504, + "grad_norm": 0.21931052207946777, + "learning_rate": 0.0006, + "loss": 3.537261486053467, + "step": 4276 + }, + { + "epoch": 59.40541721275666, + "grad_norm": 0.20661118626594543, + "learning_rate": 0.0006, + "loss": 3.568042755126953, + "step": 4277 + }, + { + "epoch": 59.419397116644824, + "grad_norm": 0.2157975435256958, + "learning_rate": 0.0006, + "loss": 3.550891160964966, + "step": 4278 + }, + { + "epoch": 59.43337702053299, + "grad_norm": 0.20762090384960175, + "learning_rate": 0.0006, + "loss": 3.565798282623291, + "step": 4279 + }, + { + "epoch": 59.44735692442114, + "grad_norm": 0.19575528800487518, + "learning_rate": 0.0006, + "loss": 3.5518856048583984, + "step": 4280 + }, + { + "epoch": 59.46133682830931, + "grad_norm": 0.20730678737163544, + "learning_rate": 0.0006, + "loss": 3.5412862300872803, + "step": 4281 + }, + { + "epoch": 59.47531673219746, + "grad_norm": 0.21095411479473114, + "learning_rate": 0.0006, + "loss": 3.5491604804992676, + "step": 4282 + }, + { + "epoch": 59.489296636085626, + "grad_norm": 0.2229546755552292, + "learning_rate": 0.0006, + "loss": 3.534517765045166, + "step": 4283 + }, + { + "epoch": 59.50327653997379, + "grad_norm": 0.22375687956809998, + "learning_rate": 0.0006, + "loss": 3.5696470737457275, + "step": 4284 + }, + { + "epoch": 59.517256443861946, + "grad_norm": 0.2563750743865967, + "learning_rate": 0.0006, + "loss": 3.6050190925598145, + "step": 4285 + }, + { + "epoch": 59.53123634775011, + "grad_norm": 0.3055726885795593, + "learning_rate": 0.0006, + "loss": 3.572263240814209, + "step": 4286 + }, + { + "epoch": 59.54521625163827, + "grad_norm": 0.3095283508300781, + "learning_rate": 0.0006, + "loss": 3.545631170272827, + "step": 4287 + }, + { + "epoch": 59.55919615552643, + "grad_norm": 0.24958640336990356, + "learning_rate": 0.0006, + "loss": 3.549663543701172, + "step": 4288 + }, + { + "epoch": 59.57317605941459, + "grad_norm": 0.22277019917964935, + "learning_rate": 0.0006, + "loss": 3.5721545219421387, + "step": 4289 + }, + { + "epoch": 59.58715596330275, + "grad_norm": 0.22153833508491516, + "learning_rate": 0.0006, + "loss": 3.5103156566619873, + "step": 4290 + }, + { + "epoch": 59.60113586719091, + "grad_norm": 0.25579726696014404, + "learning_rate": 0.0006, + "loss": 3.550353527069092, + "step": 4291 + }, + { + "epoch": 59.615115771079076, + "grad_norm": 0.2242603898048401, + "learning_rate": 0.0006, + "loss": 3.5284783840179443, + "step": 4292 + }, + { + "epoch": 59.62909567496723, + "grad_norm": 0.21665683388710022, + "learning_rate": 0.0006, + "loss": 3.553835868835449, + "step": 4293 + }, + { + "epoch": 59.643075578855395, + "grad_norm": 0.21703463792800903, + "learning_rate": 0.0006, + "loss": 3.5393173694610596, + "step": 4294 + }, + { + "epoch": 59.65705548274356, + "grad_norm": 0.21264998614788055, + "learning_rate": 0.0006, + "loss": 3.566108465194702, + "step": 4295 + }, + { + "epoch": 59.671035386631715, + "grad_norm": 0.1935717612504959, + "learning_rate": 0.0006, + "loss": 3.5934512615203857, + "step": 4296 + }, + { + "epoch": 59.68501529051988, + "grad_norm": 0.20164808630943298, + "learning_rate": 0.0006, + "loss": 3.545046329498291, + "step": 4297 + }, + { + "epoch": 59.69899519440804, + "grad_norm": 0.19589892029762268, + "learning_rate": 0.0006, + "loss": 3.5302319526672363, + "step": 4298 + }, + { + "epoch": 59.7129750982962, + "grad_norm": 0.1893095225095749, + "learning_rate": 0.0006, + "loss": 3.5947837829589844, + "step": 4299 + }, + { + "epoch": 59.72695500218436, + "grad_norm": 0.20218202471733093, + "learning_rate": 0.0006, + "loss": 3.5889904499053955, + "step": 4300 + }, + { + "epoch": 59.74093490607252, + "grad_norm": 0.19681277871131897, + "learning_rate": 0.0006, + "loss": 3.581536293029785, + "step": 4301 + }, + { + "epoch": 59.75491480996068, + "grad_norm": 0.20112384855747223, + "learning_rate": 0.0006, + "loss": 3.5509750843048096, + "step": 4302 + }, + { + "epoch": 59.768894713848844, + "grad_norm": 0.1969940960407257, + "learning_rate": 0.0006, + "loss": 3.5462636947631836, + "step": 4303 + }, + { + "epoch": 59.782874617737, + "grad_norm": 0.20936219394207, + "learning_rate": 0.0006, + "loss": 3.5284390449523926, + "step": 4304 + }, + { + "epoch": 59.796854521625164, + "grad_norm": 0.21717803180217743, + "learning_rate": 0.0006, + "loss": 3.5669212341308594, + "step": 4305 + }, + { + "epoch": 59.81083442551333, + "grad_norm": 0.20210883021354675, + "learning_rate": 0.0006, + "loss": 3.5366921424865723, + "step": 4306 + }, + { + "epoch": 59.824814329401484, + "grad_norm": 0.224124476313591, + "learning_rate": 0.0006, + "loss": 3.5457663536071777, + "step": 4307 + }, + { + "epoch": 59.83879423328965, + "grad_norm": 0.2186291366815567, + "learning_rate": 0.0006, + "loss": 3.5732779502868652, + "step": 4308 + }, + { + "epoch": 59.8527741371778, + "grad_norm": 0.19785884022712708, + "learning_rate": 0.0006, + "loss": 3.5471811294555664, + "step": 4309 + }, + { + "epoch": 59.86675404106597, + "grad_norm": 0.24774281680583954, + "learning_rate": 0.0006, + "loss": 3.5839807987213135, + "step": 4310 + }, + { + "epoch": 59.88073394495413, + "grad_norm": 0.25087007880210876, + "learning_rate": 0.0006, + "loss": 3.56972336769104, + "step": 4311 + }, + { + "epoch": 59.89471384884229, + "grad_norm": 0.21474683284759521, + "learning_rate": 0.0006, + "loss": 3.5199289321899414, + "step": 4312 + }, + { + "epoch": 59.90869375273045, + "grad_norm": 0.2087765336036682, + "learning_rate": 0.0006, + "loss": 3.5777320861816406, + "step": 4313 + }, + { + "epoch": 59.92267365661861, + "grad_norm": 0.2228539139032364, + "learning_rate": 0.0006, + "loss": 3.531118392944336, + "step": 4314 + }, + { + "epoch": 59.93665356050677, + "grad_norm": 0.2456534057855606, + "learning_rate": 0.0006, + "loss": 3.5448033809661865, + "step": 4315 + }, + { + "epoch": 59.95063346439493, + "grad_norm": 0.2699171006679535, + "learning_rate": 0.0006, + "loss": 3.560724973678589, + "step": 4316 + }, + { + "epoch": 59.964613368283096, + "grad_norm": 0.2664966881275177, + "learning_rate": 0.0006, + "loss": 3.5932974815368652, + "step": 4317 + }, + { + "epoch": 59.97859327217125, + "grad_norm": 0.2137683779001236, + "learning_rate": 0.0006, + "loss": 3.5610086917877197, + "step": 4318 + }, + { + "epoch": 59.992573176059416, + "grad_norm": 0.2067531794309616, + "learning_rate": 0.0006, + "loss": 3.5588603019714355, + "step": 4319 + }, + { + "epoch": 60.0, + "grad_norm": 0.2458500862121582, + "learning_rate": 0.0006, + "loss": 3.5636165142059326, + "step": 4320 + }, + { + "epoch": 60.0, + "eval_loss": 3.967288017272949, + "eval_runtime": 44.2225, + "eval_samples_per_second": 55.221, + "eval_steps_per_second": 3.46, + "step": 4320 + }, + { + "epoch": 60.01397990388816, + "grad_norm": 0.25330978631973267, + "learning_rate": 0.0006, + "loss": 3.524343490600586, + "step": 4321 + }, + { + "epoch": 60.02795980777632, + "grad_norm": 0.3005860447883606, + "learning_rate": 0.0006, + "loss": 3.533761501312256, + "step": 4322 + }, + { + "epoch": 60.04193971166448, + "grad_norm": 0.29054996371269226, + "learning_rate": 0.0006, + "loss": 3.536410331726074, + "step": 4323 + }, + { + "epoch": 60.05591961555265, + "grad_norm": 0.23265458643436432, + "learning_rate": 0.0006, + "loss": 3.4965157508850098, + "step": 4324 + }, + { + "epoch": 60.0698995194408, + "grad_norm": 0.2330862134695053, + "learning_rate": 0.0006, + "loss": 3.4899768829345703, + "step": 4325 + }, + { + "epoch": 60.083879423328966, + "grad_norm": 0.23188516497612, + "learning_rate": 0.0006, + "loss": 3.504887580871582, + "step": 4326 + }, + { + "epoch": 60.09785932721712, + "grad_norm": 0.2152940034866333, + "learning_rate": 0.0006, + "loss": 3.5274603366851807, + "step": 4327 + }, + { + "epoch": 60.111839231105286, + "grad_norm": 0.21918490529060364, + "learning_rate": 0.0006, + "loss": 3.5223636627197266, + "step": 4328 + }, + { + "epoch": 60.12581913499345, + "grad_norm": 0.23193582892417908, + "learning_rate": 0.0006, + "loss": 3.5171899795532227, + "step": 4329 + }, + { + "epoch": 60.139799038881605, + "grad_norm": 0.2336687296628952, + "learning_rate": 0.0006, + "loss": 3.5403029918670654, + "step": 4330 + }, + { + "epoch": 60.15377894276977, + "grad_norm": 0.23833593726158142, + "learning_rate": 0.0006, + "loss": 3.5055623054504395, + "step": 4331 + }, + { + "epoch": 60.16775884665793, + "grad_norm": 0.2389385998249054, + "learning_rate": 0.0006, + "loss": 3.5423574447631836, + "step": 4332 + }, + { + "epoch": 60.18173875054609, + "grad_norm": 0.21729786694049835, + "learning_rate": 0.0006, + "loss": 3.508272647857666, + "step": 4333 + }, + { + "epoch": 60.19571865443425, + "grad_norm": 0.2118137627840042, + "learning_rate": 0.0006, + "loss": 3.556934356689453, + "step": 4334 + }, + { + "epoch": 60.20969855832241, + "grad_norm": 0.23217040300369263, + "learning_rate": 0.0006, + "loss": 3.546459674835205, + "step": 4335 + }, + { + "epoch": 60.22367846221057, + "grad_norm": 0.2446565330028534, + "learning_rate": 0.0006, + "loss": 3.5662269592285156, + "step": 4336 + }, + { + "epoch": 60.237658366098735, + "grad_norm": 0.22065940499305725, + "learning_rate": 0.0006, + "loss": 3.550262451171875, + "step": 4337 + }, + { + "epoch": 60.25163826998689, + "grad_norm": 0.22212697565555573, + "learning_rate": 0.0006, + "loss": 3.5495731830596924, + "step": 4338 + }, + { + "epoch": 60.265618173875055, + "grad_norm": 0.21770696341991425, + "learning_rate": 0.0006, + "loss": 3.5345935821533203, + "step": 4339 + }, + { + "epoch": 60.27959807776322, + "grad_norm": 0.2089550793170929, + "learning_rate": 0.0006, + "loss": 3.5704336166381836, + "step": 4340 + }, + { + "epoch": 60.293577981651374, + "grad_norm": 0.20426379144191742, + "learning_rate": 0.0006, + "loss": 3.546909809112549, + "step": 4341 + }, + { + "epoch": 60.30755788553954, + "grad_norm": 0.2038658708333969, + "learning_rate": 0.0006, + "loss": 3.5444231033325195, + "step": 4342 + }, + { + "epoch": 60.3215377894277, + "grad_norm": 0.20485089719295502, + "learning_rate": 0.0006, + "loss": 3.561206817626953, + "step": 4343 + }, + { + "epoch": 60.33551769331586, + "grad_norm": 0.19151435792446136, + "learning_rate": 0.0006, + "loss": 3.5226097106933594, + "step": 4344 + }, + { + "epoch": 60.34949759720402, + "grad_norm": 0.19078181684017181, + "learning_rate": 0.0006, + "loss": 3.5431442260742188, + "step": 4345 + }, + { + "epoch": 60.36347750109218, + "grad_norm": 0.2032487392425537, + "learning_rate": 0.0006, + "loss": 3.5317721366882324, + "step": 4346 + }, + { + "epoch": 60.37745740498034, + "grad_norm": 0.18330955505371094, + "learning_rate": 0.0006, + "loss": 3.521145820617676, + "step": 4347 + }, + { + "epoch": 60.391437308868504, + "grad_norm": 0.18987730145454407, + "learning_rate": 0.0006, + "loss": 3.4980595111846924, + "step": 4348 + }, + { + "epoch": 60.40541721275666, + "grad_norm": 0.19873160123825073, + "learning_rate": 0.0006, + "loss": 3.5639595985412598, + "step": 4349 + }, + { + "epoch": 60.419397116644824, + "grad_norm": 0.20323137938976288, + "learning_rate": 0.0006, + "loss": 3.5364837646484375, + "step": 4350 + }, + { + "epoch": 60.43337702053299, + "grad_norm": 0.20755112171173096, + "learning_rate": 0.0006, + "loss": 3.565398931503296, + "step": 4351 + }, + { + "epoch": 60.44735692442114, + "grad_norm": 0.19222456216812134, + "learning_rate": 0.0006, + "loss": 3.569659948348999, + "step": 4352 + }, + { + "epoch": 60.46133682830931, + "grad_norm": 0.18698982894420624, + "learning_rate": 0.0006, + "loss": 3.5305557250976562, + "step": 4353 + }, + { + "epoch": 60.47531673219746, + "grad_norm": 0.19300664961338043, + "learning_rate": 0.0006, + "loss": 3.5398356914520264, + "step": 4354 + }, + { + "epoch": 60.489296636085626, + "grad_norm": 0.19573862850666046, + "learning_rate": 0.0006, + "loss": 3.5549232959747314, + "step": 4355 + }, + { + "epoch": 60.50327653997379, + "grad_norm": 0.21893447637557983, + "learning_rate": 0.0006, + "loss": 3.5427680015563965, + "step": 4356 + }, + { + "epoch": 60.517256443861946, + "grad_norm": 0.2375156730413437, + "learning_rate": 0.0006, + "loss": 3.5368900299072266, + "step": 4357 + }, + { + "epoch": 60.53123634775011, + "grad_norm": 0.2430058717727661, + "learning_rate": 0.0006, + "loss": 3.5812578201293945, + "step": 4358 + }, + { + "epoch": 60.54521625163827, + "grad_norm": 0.21769747138023376, + "learning_rate": 0.0006, + "loss": 3.563126564025879, + "step": 4359 + }, + { + "epoch": 60.55919615552643, + "grad_norm": 0.19841895997524261, + "learning_rate": 0.0006, + "loss": 3.5683727264404297, + "step": 4360 + }, + { + "epoch": 60.57317605941459, + "grad_norm": 0.22039084136486053, + "learning_rate": 0.0006, + "loss": 3.5417304039001465, + "step": 4361 + }, + { + "epoch": 60.58715596330275, + "grad_norm": 0.22528418898582458, + "learning_rate": 0.0006, + "loss": 3.5606675148010254, + "step": 4362 + }, + { + "epoch": 60.60113586719091, + "grad_norm": 0.19975383579730988, + "learning_rate": 0.0006, + "loss": 3.5345380306243896, + "step": 4363 + }, + { + "epoch": 60.615115771079076, + "grad_norm": 0.18953508138656616, + "learning_rate": 0.0006, + "loss": 3.523921012878418, + "step": 4364 + }, + { + "epoch": 60.62909567496723, + "grad_norm": 0.19997848570346832, + "learning_rate": 0.0006, + "loss": 3.553741931915283, + "step": 4365 + }, + { + "epoch": 60.643075578855395, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.57025408744812, + "step": 4366 + }, + { + "epoch": 60.65705548274356, + "grad_norm": 0.20452328026294708, + "learning_rate": 0.0006, + "loss": 3.5293073654174805, + "step": 4367 + }, + { + "epoch": 60.671035386631715, + "grad_norm": 0.18740518391132355, + "learning_rate": 0.0006, + "loss": 3.520880699157715, + "step": 4368 + }, + { + "epoch": 60.68501529051988, + "grad_norm": 0.19408279657363892, + "learning_rate": 0.0006, + "loss": 3.553086757659912, + "step": 4369 + }, + { + "epoch": 60.69899519440804, + "grad_norm": 0.19472180306911469, + "learning_rate": 0.0006, + "loss": 3.557744026184082, + "step": 4370 + }, + { + "epoch": 60.7129750982962, + "grad_norm": 0.18123279511928558, + "learning_rate": 0.0006, + "loss": 3.547276258468628, + "step": 4371 + }, + { + "epoch": 60.72695500218436, + "grad_norm": 0.21011893451213837, + "learning_rate": 0.0006, + "loss": 3.544990062713623, + "step": 4372 + }, + { + "epoch": 60.74093490607252, + "grad_norm": 0.25020623207092285, + "learning_rate": 0.0006, + "loss": 3.541600227355957, + "step": 4373 + }, + { + "epoch": 60.75491480996068, + "grad_norm": 0.2579628825187683, + "learning_rate": 0.0006, + "loss": 3.547964096069336, + "step": 4374 + }, + { + "epoch": 60.768894713848844, + "grad_norm": 0.23156116902828217, + "learning_rate": 0.0006, + "loss": 3.550957202911377, + "step": 4375 + }, + { + "epoch": 60.782874617737, + "grad_norm": 0.22070197761058807, + "learning_rate": 0.0006, + "loss": 3.4950358867645264, + "step": 4376 + }, + { + "epoch": 60.796854521625164, + "grad_norm": 0.222877636551857, + "learning_rate": 0.0006, + "loss": 3.5622036457061768, + "step": 4377 + }, + { + "epoch": 60.81083442551333, + "grad_norm": 0.21662060916423798, + "learning_rate": 0.0006, + "loss": 3.551515579223633, + "step": 4378 + }, + { + "epoch": 60.824814329401484, + "grad_norm": 0.22380465269088745, + "learning_rate": 0.0006, + "loss": 3.5552866458892822, + "step": 4379 + }, + { + "epoch": 60.83879423328965, + "grad_norm": 0.24023373425006866, + "learning_rate": 0.0006, + "loss": 3.5741777420043945, + "step": 4380 + }, + { + "epoch": 60.8527741371778, + "grad_norm": 0.1921556293964386, + "learning_rate": 0.0006, + "loss": 3.535435199737549, + "step": 4381 + }, + { + "epoch": 60.86675404106597, + "grad_norm": 0.20002295076847076, + "learning_rate": 0.0006, + "loss": 3.5660810470581055, + "step": 4382 + }, + { + "epoch": 60.88073394495413, + "grad_norm": 0.22797644138336182, + "learning_rate": 0.0006, + "loss": 3.5361297130584717, + "step": 4383 + }, + { + "epoch": 60.89471384884229, + "grad_norm": 0.24129843711853027, + "learning_rate": 0.0006, + "loss": 3.578810214996338, + "step": 4384 + }, + { + "epoch": 60.90869375273045, + "grad_norm": 0.2363646924495697, + "learning_rate": 0.0006, + "loss": 3.5245485305786133, + "step": 4385 + }, + { + "epoch": 60.92267365661861, + "grad_norm": 0.22811074554920197, + "learning_rate": 0.0006, + "loss": 3.551769733428955, + "step": 4386 + }, + { + "epoch": 60.93665356050677, + "grad_norm": 0.2204643338918686, + "learning_rate": 0.0006, + "loss": 3.5833442211151123, + "step": 4387 + }, + { + "epoch": 60.95063346439493, + "grad_norm": 0.21389783918857574, + "learning_rate": 0.0006, + "loss": 3.531735897064209, + "step": 4388 + }, + { + "epoch": 60.964613368283096, + "grad_norm": 0.22142091393470764, + "learning_rate": 0.0006, + "loss": 3.5482523441314697, + "step": 4389 + }, + { + "epoch": 60.97859327217125, + "grad_norm": 0.21186122298240662, + "learning_rate": 0.0006, + "loss": 3.540555477142334, + "step": 4390 + }, + { + "epoch": 60.992573176059416, + "grad_norm": 0.19939634203910828, + "learning_rate": 0.0006, + "loss": 3.576408624649048, + "step": 4391 + }, + { + "epoch": 61.0, + "grad_norm": 0.23696118593215942, + "learning_rate": 0.0006, + "loss": 3.5633749961853027, + "step": 4392 + }, + { + "epoch": 61.0, + "eval_loss": 3.9743118286132812, + "eval_runtime": 44.7392, + "eval_samples_per_second": 54.583, + "eval_steps_per_second": 3.42, + "step": 4392 + }, + { + "epoch": 61.01397990388816, + "grad_norm": 0.24024035036563873, + "learning_rate": 0.0006, + "loss": 3.532285690307617, + "step": 4393 + }, + { + "epoch": 61.02795980777632, + "grad_norm": 0.2475728690624237, + "learning_rate": 0.0006, + "loss": 3.543304920196533, + "step": 4394 + }, + { + "epoch": 61.04193971166448, + "grad_norm": 0.23326511681079865, + "learning_rate": 0.0006, + "loss": 3.5022737979888916, + "step": 4395 + }, + { + "epoch": 61.05591961555265, + "grad_norm": 0.21414779126644135, + "learning_rate": 0.0006, + "loss": 3.5337772369384766, + "step": 4396 + }, + { + "epoch": 61.0698995194408, + "grad_norm": 0.2234504371881485, + "learning_rate": 0.0006, + "loss": 3.539985179901123, + "step": 4397 + }, + { + "epoch": 61.083879423328966, + "grad_norm": 0.2199121117591858, + "learning_rate": 0.0006, + "loss": 3.5312232971191406, + "step": 4398 + }, + { + "epoch": 61.09785932721712, + "grad_norm": 0.2444634735584259, + "learning_rate": 0.0006, + "loss": 3.527348518371582, + "step": 4399 + }, + { + "epoch": 61.111839231105286, + "grad_norm": 0.29022055864334106, + "learning_rate": 0.0006, + "loss": 3.4902563095092773, + "step": 4400 + }, + { + "epoch": 61.12581913499345, + "grad_norm": 0.29494911432266235, + "learning_rate": 0.0006, + "loss": 3.498292922973633, + "step": 4401 + }, + { + "epoch": 61.139799038881605, + "grad_norm": 0.22292214632034302, + "learning_rate": 0.0006, + "loss": 3.533914089202881, + "step": 4402 + }, + { + "epoch": 61.15377894276977, + "grad_norm": 0.22136220335960388, + "learning_rate": 0.0006, + "loss": 3.5109519958496094, + "step": 4403 + }, + { + "epoch": 61.16775884665793, + "grad_norm": 0.2325095534324646, + "learning_rate": 0.0006, + "loss": 3.5289368629455566, + "step": 4404 + }, + { + "epoch": 61.18173875054609, + "grad_norm": 0.2413562536239624, + "learning_rate": 0.0006, + "loss": 3.518467903137207, + "step": 4405 + }, + { + "epoch": 61.19571865443425, + "grad_norm": 0.25906774401664734, + "learning_rate": 0.0006, + "loss": 3.525516986846924, + "step": 4406 + }, + { + "epoch": 61.20969855832241, + "grad_norm": 0.27686211466789246, + "learning_rate": 0.0006, + "loss": 3.5516865253448486, + "step": 4407 + }, + { + "epoch": 61.22367846221057, + "grad_norm": 0.2906339764595032, + "learning_rate": 0.0006, + "loss": 3.541128158569336, + "step": 4408 + }, + { + "epoch": 61.237658366098735, + "grad_norm": 0.27868953347206116, + "learning_rate": 0.0006, + "loss": 3.5193347930908203, + "step": 4409 + }, + { + "epoch": 61.25163826998689, + "grad_norm": 0.27658969163894653, + "learning_rate": 0.0006, + "loss": 3.502227783203125, + "step": 4410 + }, + { + "epoch": 61.265618173875055, + "grad_norm": 0.2933507561683655, + "learning_rate": 0.0006, + "loss": 3.530291795730591, + "step": 4411 + }, + { + "epoch": 61.27959807776322, + "grad_norm": 0.2631373405456543, + "learning_rate": 0.0006, + "loss": 3.551851749420166, + "step": 4412 + }, + { + "epoch": 61.293577981651374, + "grad_norm": 0.2546952962875366, + "learning_rate": 0.0006, + "loss": 3.5503034591674805, + "step": 4413 + }, + { + "epoch": 61.30755788553954, + "grad_norm": 0.23794181644916534, + "learning_rate": 0.0006, + "loss": 3.546926498413086, + "step": 4414 + }, + { + "epoch": 61.3215377894277, + "grad_norm": 0.24853180348873138, + "learning_rate": 0.0006, + "loss": 3.514120101928711, + "step": 4415 + }, + { + "epoch": 61.33551769331586, + "grad_norm": 0.22304897010326385, + "learning_rate": 0.0006, + "loss": 3.5430846214294434, + "step": 4416 + }, + { + "epoch": 61.34949759720402, + "grad_norm": 0.2315143197774887, + "learning_rate": 0.0006, + "loss": 3.520509719848633, + "step": 4417 + }, + { + "epoch": 61.36347750109218, + "grad_norm": 0.22943219542503357, + "learning_rate": 0.0006, + "loss": 3.5467031002044678, + "step": 4418 + }, + { + "epoch": 61.37745740498034, + "grad_norm": 0.20610259473323822, + "learning_rate": 0.0006, + "loss": 3.523524761199951, + "step": 4419 + }, + { + "epoch": 61.391437308868504, + "grad_norm": 0.23042091727256775, + "learning_rate": 0.0006, + "loss": 3.5619053840637207, + "step": 4420 + }, + { + "epoch": 61.40541721275666, + "grad_norm": 0.23525655269622803, + "learning_rate": 0.0006, + "loss": 3.5647311210632324, + "step": 4421 + }, + { + "epoch": 61.419397116644824, + "grad_norm": 0.24424530565738678, + "learning_rate": 0.0006, + "loss": 3.5278732776641846, + "step": 4422 + }, + { + "epoch": 61.43337702053299, + "grad_norm": 0.22195497155189514, + "learning_rate": 0.0006, + "loss": 3.500657558441162, + "step": 4423 + }, + { + "epoch": 61.44735692442114, + "grad_norm": 0.20596756041049957, + "learning_rate": 0.0006, + "loss": 3.5107016563415527, + "step": 4424 + }, + { + "epoch": 61.46133682830931, + "grad_norm": 0.21293926239013672, + "learning_rate": 0.0006, + "loss": 3.5248196125030518, + "step": 4425 + }, + { + "epoch": 61.47531673219746, + "grad_norm": 0.21993403136730194, + "learning_rate": 0.0006, + "loss": 3.5247411727905273, + "step": 4426 + }, + { + "epoch": 61.489296636085626, + "grad_norm": 0.19609302282333374, + "learning_rate": 0.0006, + "loss": 3.543978452682495, + "step": 4427 + }, + { + "epoch": 61.50327653997379, + "grad_norm": 0.2064359486103058, + "learning_rate": 0.0006, + "loss": 3.525879144668579, + "step": 4428 + }, + { + "epoch": 61.517256443861946, + "grad_norm": 0.221832275390625, + "learning_rate": 0.0006, + "loss": 3.542086601257324, + "step": 4429 + }, + { + "epoch": 61.53123634775011, + "grad_norm": 0.20173773169517517, + "learning_rate": 0.0006, + "loss": 3.5395596027374268, + "step": 4430 + }, + { + "epoch": 61.54521625163827, + "grad_norm": 0.21064360439777374, + "learning_rate": 0.0006, + "loss": 3.5651049613952637, + "step": 4431 + }, + { + "epoch": 61.55919615552643, + "grad_norm": 0.2079596370458603, + "learning_rate": 0.0006, + "loss": 3.513719081878662, + "step": 4432 + }, + { + "epoch": 61.57317605941459, + "grad_norm": 0.1862022429704666, + "learning_rate": 0.0006, + "loss": 3.5438897609710693, + "step": 4433 + }, + { + "epoch": 61.58715596330275, + "grad_norm": 0.202021524310112, + "learning_rate": 0.0006, + "loss": 3.5497570037841797, + "step": 4434 + }, + { + "epoch": 61.60113586719091, + "grad_norm": 0.2252725064754486, + "learning_rate": 0.0006, + "loss": 3.5361452102661133, + "step": 4435 + }, + { + "epoch": 61.615115771079076, + "grad_norm": 0.22194477915763855, + "learning_rate": 0.0006, + "loss": 3.5436792373657227, + "step": 4436 + }, + { + "epoch": 61.62909567496723, + "grad_norm": 0.20660430192947388, + "learning_rate": 0.0006, + "loss": 3.5347955226898193, + "step": 4437 + }, + { + "epoch": 61.643075578855395, + "grad_norm": 0.19738668203353882, + "learning_rate": 0.0006, + "loss": 3.5478930473327637, + "step": 4438 + }, + { + "epoch": 61.65705548274356, + "grad_norm": 0.19570894539356232, + "learning_rate": 0.0006, + "loss": 3.581364154815674, + "step": 4439 + }, + { + "epoch": 61.671035386631715, + "grad_norm": 0.2311817854642868, + "learning_rate": 0.0006, + "loss": 3.5336194038391113, + "step": 4440 + }, + { + "epoch": 61.68501529051988, + "grad_norm": 0.23114202916622162, + "learning_rate": 0.0006, + "loss": 3.5473289489746094, + "step": 4441 + }, + { + "epoch": 61.69899519440804, + "grad_norm": 0.2412044256925583, + "learning_rate": 0.0006, + "loss": 3.558802604675293, + "step": 4442 + }, + { + "epoch": 61.7129750982962, + "grad_norm": 0.22932057082653046, + "learning_rate": 0.0006, + "loss": 3.553133726119995, + "step": 4443 + }, + { + "epoch": 61.72695500218436, + "grad_norm": 0.23192140460014343, + "learning_rate": 0.0006, + "loss": 3.5247159004211426, + "step": 4444 + }, + { + "epoch": 61.74093490607252, + "grad_norm": 0.23548972606658936, + "learning_rate": 0.0006, + "loss": 3.5654778480529785, + "step": 4445 + }, + { + "epoch": 61.75491480996068, + "grad_norm": 0.20992626249790192, + "learning_rate": 0.0006, + "loss": 3.5568647384643555, + "step": 4446 + }, + { + "epoch": 61.768894713848844, + "grad_norm": 0.20303797721862793, + "learning_rate": 0.0006, + "loss": 3.564765453338623, + "step": 4447 + }, + { + "epoch": 61.782874617737, + "grad_norm": 0.2019573301076889, + "learning_rate": 0.0006, + "loss": 3.523521900177002, + "step": 4448 + }, + { + "epoch": 61.796854521625164, + "grad_norm": 0.20591112971305847, + "learning_rate": 0.0006, + "loss": 3.5361227989196777, + "step": 4449 + }, + { + "epoch": 61.81083442551333, + "grad_norm": 0.21811535954475403, + "learning_rate": 0.0006, + "loss": 3.56982159614563, + "step": 4450 + }, + { + "epoch": 61.824814329401484, + "grad_norm": 0.24934124946594238, + "learning_rate": 0.0006, + "loss": 3.5518784523010254, + "step": 4451 + }, + { + "epoch": 61.83879423328965, + "grad_norm": 0.28142663836479187, + "learning_rate": 0.0006, + "loss": 3.5480635166168213, + "step": 4452 + }, + { + "epoch": 61.8527741371778, + "grad_norm": 0.27585235238075256, + "learning_rate": 0.0006, + "loss": 3.56685733795166, + "step": 4453 + }, + { + "epoch": 61.86675404106597, + "grad_norm": 0.24309827387332916, + "learning_rate": 0.0006, + "loss": 3.551058769226074, + "step": 4454 + }, + { + "epoch": 61.88073394495413, + "grad_norm": 0.22480300068855286, + "learning_rate": 0.0006, + "loss": 3.5644495487213135, + "step": 4455 + }, + { + "epoch": 61.89471384884229, + "grad_norm": 0.19861266016960144, + "learning_rate": 0.0006, + "loss": 3.5529613494873047, + "step": 4456 + }, + { + "epoch": 61.90869375273045, + "grad_norm": 0.20176313817501068, + "learning_rate": 0.0006, + "loss": 3.5173492431640625, + "step": 4457 + }, + { + "epoch": 61.92267365661861, + "grad_norm": 0.1964731365442276, + "learning_rate": 0.0006, + "loss": 3.5555479526519775, + "step": 4458 + }, + { + "epoch": 61.93665356050677, + "grad_norm": 0.20427751541137695, + "learning_rate": 0.0006, + "loss": 3.5312647819519043, + "step": 4459 + }, + { + "epoch": 61.95063346439493, + "grad_norm": 0.21940940618515015, + "learning_rate": 0.0006, + "loss": 3.536012649536133, + "step": 4460 + }, + { + "epoch": 61.964613368283096, + "grad_norm": 0.2100883573293686, + "learning_rate": 0.0006, + "loss": 3.5627548694610596, + "step": 4461 + }, + { + "epoch": 61.97859327217125, + "grad_norm": 0.21980689465999603, + "learning_rate": 0.0006, + "loss": 3.5933351516723633, + "step": 4462 + }, + { + "epoch": 61.992573176059416, + "grad_norm": 0.23822137713432312, + "learning_rate": 0.0006, + "loss": 3.567392349243164, + "step": 4463 + }, + { + "epoch": 62.0, + "grad_norm": 0.293637752532959, + "learning_rate": 0.0006, + "loss": 3.5707521438598633, + "step": 4464 + }, + { + "epoch": 62.0, + "eval_loss": 3.9813005924224854, + "eval_runtime": 44.8261, + "eval_samples_per_second": 54.477, + "eval_steps_per_second": 3.413, + "step": 4464 + }, + { + "epoch": 62.01397990388816, + "grad_norm": 0.2819560766220093, + "learning_rate": 0.0006, + "loss": 3.5146231651306152, + "step": 4465 + }, + { + "epoch": 62.02795980777632, + "grad_norm": 0.2446105033159256, + "learning_rate": 0.0006, + "loss": 3.48366117477417, + "step": 4466 + }, + { + "epoch": 62.04193971166448, + "grad_norm": 0.26826128363609314, + "learning_rate": 0.0006, + "loss": 3.511063814163208, + "step": 4467 + }, + { + "epoch": 62.05591961555265, + "grad_norm": 0.28266897797584534, + "learning_rate": 0.0006, + "loss": 3.560831069946289, + "step": 4468 + }, + { + "epoch": 62.0698995194408, + "grad_norm": 0.262866348028183, + "learning_rate": 0.0006, + "loss": 3.5248615741729736, + "step": 4469 + }, + { + "epoch": 62.083879423328966, + "grad_norm": 0.22957175970077515, + "learning_rate": 0.0006, + "loss": 3.518132209777832, + "step": 4470 + }, + { + "epoch": 62.09785932721712, + "grad_norm": 0.2311105579137802, + "learning_rate": 0.0006, + "loss": 3.520376443862915, + "step": 4471 + }, + { + "epoch": 62.111839231105286, + "grad_norm": 0.2455885261297226, + "learning_rate": 0.0006, + "loss": 3.532329797744751, + "step": 4472 + }, + { + "epoch": 62.12581913499345, + "grad_norm": 0.22050215303897858, + "learning_rate": 0.0006, + "loss": 3.5367608070373535, + "step": 4473 + }, + { + "epoch": 62.139799038881605, + "grad_norm": 0.2187507450580597, + "learning_rate": 0.0006, + "loss": 3.5165085792541504, + "step": 4474 + }, + { + "epoch": 62.15377894276977, + "grad_norm": 0.23510432243347168, + "learning_rate": 0.0006, + "loss": 3.5357909202575684, + "step": 4475 + }, + { + "epoch": 62.16775884665793, + "grad_norm": 0.22336673736572266, + "learning_rate": 0.0006, + "loss": 3.5183372497558594, + "step": 4476 + }, + { + "epoch": 62.18173875054609, + "grad_norm": 0.22019170224666595, + "learning_rate": 0.0006, + "loss": 3.532637596130371, + "step": 4477 + }, + { + "epoch": 62.19571865443425, + "grad_norm": 0.20902299880981445, + "learning_rate": 0.0006, + "loss": 3.5421581268310547, + "step": 4478 + }, + { + "epoch": 62.20969855832241, + "grad_norm": 0.22846505045890808, + "learning_rate": 0.0006, + "loss": 3.5008513927459717, + "step": 4479 + }, + { + "epoch": 62.22367846221057, + "grad_norm": 0.23657570779323578, + "learning_rate": 0.0006, + "loss": 3.5454330444335938, + "step": 4480 + }, + { + "epoch": 62.237658366098735, + "grad_norm": 0.22021226584911346, + "learning_rate": 0.0006, + "loss": 3.535137891769409, + "step": 4481 + }, + { + "epoch": 62.25163826998689, + "grad_norm": 0.21457694470882416, + "learning_rate": 0.0006, + "loss": 3.5051913261413574, + "step": 4482 + }, + { + "epoch": 62.265618173875055, + "grad_norm": 0.20432431995868683, + "learning_rate": 0.0006, + "loss": 3.5237550735473633, + "step": 4483 + }, + { + "epoch": 62.27959807776322, + "grad_norm": 0.20499777793884277, + "learning_rate": 0.0006, + "loss": 3.537209987640381, + "step": 4484 + }, + { + "epoch": 62.293577981651374, + "grad_norm": 0.21323661506175995, + "learning_rate": 0.0006, + "loss": 3.518765687942505, + "step": 4485 + }, + { + "epoch": 62.30755788553954, + "grad_norm": 0.19734761118888855, + "learning_rate": 0.0006, + "loss": 3.5132994651794434, + "step": 4486 + }, + { + "epoch": 62.3215377894277, + "grad_norm": 0.1844230592250824, + "learning_rate": 0.0006, + "loss": 3.5348291397094727, + "step": 4487 + }, + { + "epoch": 62.33551769331586, + "grad_norm": 0.20451737940311432, + "learning_rate": 0.0006, + "loss": 3.5055956840515137, + "step": 4488 + }, + { + "epoch": 62.34949759720402, + "grad_norm": 0.20004220306873322, + "learning_rate": 0.0006, + "loss": 3.558253526687622, + "step": 4489 + }, + { + "epoch": 62.36347750109218, + "grad_norm": 0.20544862747192383, + "learning_rate": 0.0006, + "loss": 3.5031163692474365, + "step": 4490 + }, + { + "epoch": 62.37745740498034, + "grad_norm": 0.23045147955417633, + "learning_rate": 0.0006, + "loss": 3.526170253753662, + "step": 4491 + }, + { + "epoch": 62.391437308868504, + "grad_norm": 0.2580485939979553, + "learning_rate": 0.0006, + "loss": 3.561131238937378, + "step": 4492 + }, + { + "epoch": 62.40541721275666, + "grad_norm": 0.24825656414031982, + "learning_rate": 0.0006, + "loss": 3.5550408363342285, + "step": 4493 + }, + { + "epoch": 62.419397116644824, + "grad_norm": 0.2317914366722107, + "learning_rate": 0.0006, + "loss": 3.543360948562622, + "step": 4494 + }, + { + "epoch": 62.43337702053299, + "grad_norm": 0.2186558097600937, + "learning_rate": 0.0006, + "loss": 3.5293631553649902, + "step": 4495 + }, + { + "epoch": 62.44735692442114, + "grad_norm": 0.22694920003414154, + "learning_rate": 0.0006, + "loss": 3.5315871238708496, + "step": 4496 + }, + { + "epoch": 62.46133682830931, + "grad_norm": 0.24042636156082153, + "learning_rate": 0.0006, + "loss": 3.507556915283203, + "step": 4497 + }, + { + "epoch": 62.47531673219746, + "grad_norm": 0.23853783309459686, + "learning_rate": 0.0006, + "loss": 3.546670913696289, + "step": 4498 + }, + { + "epoch": 62.489296636085626, + "grad_norm": 0.23252007365226746, + "learning_rate": 0.0006, + "loss": 3.522880792617798, + "step": 4499 + }, + { + "epoch": 62.50327653997379, + "grad_norm": 0.20553545653820038, + "learning_rate": 0.0006, + "loss": 3.5367445945739746, + "step": 4500 + }, + { + "epoch": 62.517256443861946, + "grad_norm": 0.19607895612716675, + "learning_rate": 0.0006, + "loss": 3.5319433212280273, + "step": 4501 + }, + { + "epoch": 62.53123634775011, + "grad_norm": 0.21482273936271667, + "learning_rate": 0.0006, + "loss": 3.525094509124756, + "step": 4502 + }, + { + "epoch": 62.54521625163827, + "grad_norm": 0.18248772621154785, + "learning_rate": 0.0006, + "loss": 3.5324039459228516, + "step": 4503 + }, + { + "epoch": 62.55919615552643, + "grad_norm": 0.19388431310653687, + "learning_rate": 0.0006, + "loss": 3.5579934120178223, + "step": 4504 + }, + { + "epoch": 62.57317605941459, + "grad_norm": 0.1987910121679306, + "learning_rate": 0.0006, + "loss": 3.5049524307250977, + "step": 4505 + }, + { + "epoch": 62.58715596330275, + "grad_norm": 0.2176462560892105, + "learning_rate": 0.0006, + "loss": 3.517348051071167, + "step": 4506 + }, + { + "epoch": 62.60113586719091, + "grad_norm": 0.20312298834323883, + "learning_rate": 0.0006, + "loss": 3.589355230331421, + "step": 4507 + }, + { + "epoch": 62.615115771079076, + "grad_norm": 0.20725034177303314, + "learning_rate": 0.0006, + "loss": 3.5353567600250244, + "step": 4508 + }, + { + "epoch": 62.62909567496723, + "grad_norm": 0.1944240778684616, + "learning_rate": 0.0006, + "loss": 3.5435595512390137, + "step": 4509 + }, + { + "epoch": 62.643075578855395, + "grad_norm": 0.1925448626279831, + "learning_rate": 0.0006, + "loss": 3.5406274795532227, + "step": 4510 + }, + { + "epoch": 62.65705548274356, + "grad_norm": 0.1932716965675354, + "learning_rate": 0.0006, + "loss": 3.582890748977661, + "step": 4511 + }, + { + "epoch": 62.671035386631715, + "grad_norm": 0.1993696093559265, + "learning_rate": 0.0006, + "loss": 3.533501148223877, + "step": 4512 + }, + { + "epoch": 62.68501529051988, + "grad_norm": 0.22586803138256073, + "learning_rate": 0.0006, + "loss": 3.5265021324157715, + "step": 4513 + }, + { + "epoch": 62.69899519440804, + "grad_norm": 0.22882722318172455, + "learning_rate": 0.0006, + "loss": 3.5486440658569336, + "step": 4514 + }, + { + "epoch": 62.7129750982962, + "grad_norm": 0.21674324572086334, + "learning_rate": 0.0006, + "loss": 3.5362353324890137, + "step": 4515 + }, + { + "epoch": 62.72695500218436, + "grad_norm": 0.1941487342119217, + "learning_rate": 0.0006, + "loss": 3.5191574096679688, + "step": 4516 + }, + { + "epoch": 62.74093490607252, + "grad_norm": 0.2034437507390976, + "learning_rate": 0.0006, + "loss": 3.5412280559539795, + "step": 4517 + }, + { + "epoch": 62.75491480996068, + "grad_norm": 0.22009888291358948, + "learning_rate": 0.0006, + "loss": 3.589108467102051, + "step": 4518 + }, + { + "epoch": 62.768894713848844, + "grad_norm": 0.21187400817871094, + "learning_rate": 0.0006, + "loss": 3.527048349380493, + "step": 4519 + }, + { + "epoch": 62.782874617737, + "grad_norm": 0.2089816778898239, + "learning_rate": 0.0006, + "loss": 3.551755905151367, + "step": 4520 + }, + { + "epoch": 62.796854521625164, + "grad_norm": 0.2095830738544464, + "learning_rate": 0.0006, + "loss": 3.5302011966705322, + "step": 4521 + }, + { + "epoch": 62.81083442551333, + "grad_norm": 0.20930075645446777, + "learning_rate": 0.0006, + "loss": 3.5276856422424316, + "step": 4522 + }, + { + "epoch": 62.824814329401484, + "grad_norm": 0.1876252442598343, + "learning_rate": 0.0006, + "loss": 3.5467052459716797, + "step": 4523 + }, + { + "epoch": 62.83879423328965, + "grad_norm": 0.21137461066246033, + "learning_rate": 0.0006, + "loss": 3.5446524620056152, + "step": 4524 + }, + { + "epoch": 62.8527741371778, + "grad_norm": 0.21340630948543549, + "learning_rate": 0.0006, + "loss": 3.580069065093994, + "step": 4525 + }, + { + "epoch": 62.86675404106597, + "grad_norm": 0.22623291611671448, + "learning_rate": 0.0006, + "loss": 3.5203771591186523, + "step": 4526 + }, + { + "epoch": 62.88073394495413, + "grad_norm": 0.20891177654266357, + "learning_rate": 0.0006, + "loss": 3.5408263206481934, + "step": 4527 + }, + { + "epoch": 62.89471384884229, + "grad_norm": 0.19802644848823547, + "learning_rate": 0.0006, + "loss": 3.521557569503784, + "step": 4528 + }, + { + "epoch": 62.90869375273045, + "grad_norm": 0.20889638364315033, + "learning_rate": 0.0006, + "loss": 3.535468578338623, + "step": 4529 + }, + { + "epoch": 62.92267365661861, + "grad_norm": 0.20450912415981293, + "learning_rate": 0.0006, + "loss": 3.5473756790161133, + "step": 4530 + }, + { + "epoch": 62.93665356050677, + "grad_norm": 0.24126461148262024, + "learning_rate": 0.0006, + "loss": 3.5418906211853027, + "step": 4531 + }, + { + "epoch": 62.95063346439493, + "grad_norm": 0.2789648473262787, + "learning_rate": 0.0006, + "loss": 3.5500879287719727, + "step": 4532 + }, + { + "epoch": 62.964613368283096, + "grad_norm": 0.2855475842952728, + "learning_rate": 0.0006, + "loss": 3.5589256286621094, + "step": 4533 + }, + { + "epoch": 62.97859327217125, + "grad_norm": 0.2353338748216629, + "learning_rate": 0.0006, + "loss": 3.576944351196289, + "step": 4534 + }, + { + "epoch": 62.992573176059416, + "grad_norm": 0.2360614389181137, + "learning_rate": 0.0006, + "loss": 3.550532341003418, + "step": 4535 + }, + { + "epoch": 63.0, + "grad_norm": 0.28869640827178955, + "learning_rate": 0.0006, + "loss": 3.4976563453674316, + "step": 4536 + }, + { + "epoch": 63.0, + "eval_loss": 3.967819929122925, + "eval_runtime": 44.8611, + "eval_samples_per_second": 54.435, + "eval_steps_per_second": 3.411, + "step": 4536 + }, + { + "epoch": 63.01397990388816, + "grad_norm": 0.2646687626838684, + "learning_rate": 0.0006, + "loss": 3.498749017715454, + "step": 4537 + }, + { + "epoch": 63.02795980777632, + "grad_norm": 0.26432088017463684, + "learning_rate": 0.0006, + "loss": 3.5114989280700684, + "step": 4538 + }, + { + "epoch": 63.04193971166448, + "grad_norm": 0.2657051980495453, + "learning_rate": 0.0006, + "loss": 3.5383224487304688, + "step": 4539 + }, + { + "epoch": 63.05591961555265, + "grad_norm": 0.24790945649147034, + "learning_rate": 0.0006, + "loss": 3.5148894786834717, + "step": 4540 + }, + { + "epoch": 63.0698995194408, + "grad_norm": 0.2703767716884613, + "learning_rate": 0.0006, + "loss": 3.5212574005126953, + "step": 4541 + }, + { + "epoch": 63.083879423328966, + "grad_norm": 0.28064072132110596, + "learning_rate": 0.0006, + "loss": 3.4917726516723633, + "step": 4542 + }, + { + "epoch": 63.09785932721712, + "grad_norm": 0.30201056599617004, + "learning_rate": 0.0006, + "loss": 3.524174213409424, + "step": 4543 + }, + { + "epoch": 63.111839231105286, + "grad_norm": 0.2668539583683014, + "learning_rate": 0.0006, + "loss": 3.5284507274627686, + "step": 4544 + }, + { + "epoch": 63.12581913499345, + "grad_norm": 0.23223146796226501, + "learning_rate": 0.0006, + "loss": 3.500607967376709, + "step": 4545 + }, + { + "epoch": 63.139799038881605, + "grad_norm": 0.22300627827644348, + "learning_rate": 0.0006, + "loss": 3.509087562561035, + "step": 4546 + }, + { + "epoch": 63.15377894276977, + "grad_norm": 0.217527836561203, + "learning_rate": 0.0006, + "loss": 3.518986225128174, + "step": 4547 + }, + { + "epoch": 63.16775884665793, + "grad_norm": 0.2347487509250641, + "learning_rate": 0.0006, + "loss": 3.5288784503936768, + "step": 4548 + }, + { + "epoch": 63.18173875054609, + "grad_norm": 0.21052609384059906, + "learning_rate": 0.0006, + "loss": 3.534576892852783, + "step": 4549 + }, + { + "epoch": 63.19571865443425, + "grad_norm": 0.20836210250854492, + "learning_rate": 0.0006, + "loss": 3.540663242340088, + "step": 4550 + }, + { + "epoch": 63.20969855832241, + "grad_norm": 0.2257382571697235, + "learning_rate": 0.0006, + "loss": 3.5042576789855957, + "step": 4551 + }, + { + "epoch": 63.22367846221057, + "grad_norm": 0.25684455037117004, + "learning_rate": 0.0006, + "loss": 3.546757221221924, + "step": 4552 + }, + { + "epoch": 63.237658366098735, + "grad_norm": 0.25408735871315, + "learning_rate": 0.0006, + "loss": 3.5245237350463867, + "step": 4553 + }, + { + "epoch": 63.25163826998689, + "grad_norm": 0.2105615735054016, + "learning_rate": 0.0006, + "loss": 3.4935879707336426, + "step": 4554 + }, + { + "epoch": 63.265618173875055, + "grad_norm": 0.23599031567573547, + "learning_rate": 0.0006, + "loss": 3.5445284843444824, + "step": 4555 + }, + { + "epoch": 63.27959807776322, + "grad_norm": 0.2786335349082947, + "learning_rate": 0.0006, + "loss": 3.5432677268981934, + "step": 4556 + }, + { + "epoch": 63.293577981651374, + "grad_norm": 0.26032358407974243, + "learning_rate": 0.0006, + "loss": 3.542494297027588, + "step": 4557 + }, + { + "epoch": 63.30755788553954, + "grad_norm": 0.23259027302265167, + "learning_rate": 0.0006, + "loss": 3.5343332290649414, + "step": 4558 + }, + { + "epoch": 63.3215377894277, + "grad_norm": 0.2183394432067871, + "learning_rate": 0.0006, + "loss": 3.552696466445923, + "step": 4559 + }, + { + "epoch": 63.33551769331586, + "grad_norm": 0.23014239966869354, + "learning_rate": 0.0006, + "loss": 3.507399559020996, + "step": 4560 + }, + { + "epoch": 63.34949759720402, + "grad_norm": 0.22618430852890015, + "learning_rate": 0.0006, + "loss": 3.5329864025115967, + "step": 4561 + }, + { + "epoch": 63.36347750109218, + "grad_norm": 0.22740741074085236, + "learning_rate": 0.0006, + "loss": 3.5098977088928223, + "step": 4562 + }, + { + "epoch": 63.37745740498034, + "grad_norm": 0.21428990364074707, + "learning_rate": 0.0006, + "loss": 3.5244359970092773, + "step": 4563 + }, + { + "epoch": 63.391437308868504, + "grad_norm": 0.224009707570076, + "learning_rate": 0.0006, + "loss": 3.491610288619995, + "step": 4564 + }, + { + "epoch": 63.40541721275666, + "grad_norm": 0.24859225749969482, + "learning_rate": 0.0006, + "loss": 3.534926414489746, + "step": 4565 + }, + { + "epoch": 63.419397116644824, + "grad_norm": 0.27701491117477417, + "learning_rate": 0.0006, + "loss": 3.501753091812134, + "step": 4566 + }, + { + "epoch": 63.43337702053299, + "grad_norm": 0.27911627292633057, + "learning_rate": 0.0006, + "loss": 3.5505383014678955, + "step": 4567 + }, + { + "epoch": 63.44735692442114, + "grad_norm": 0.25913184881210327, + "learning_rate": 0.0006, + "loss": 3.5086495876312256, + "step": 4568 + }, + { + "epoch": 63.46133682830931, + "grad_norm": 0.19867996871471405, + "learning_rate": 0.0006, + "loss": 3.497912645339966, + "step": 4569 + }, + { + "epoch": 63.47531673219746, + "grad_norm": 0.21337668597698212, + "learning_rate": 0.0006, + "loss": 3.511085033416748, + "step": 4570 + }, + { + "epoch": 63.489296636085626, + "grad_norm": 0.2221735268831253, + "learning_rate": 0.0006, + "loss": 3.504108190536499, + "step": 4571 + }, + { + "epoch": 63.50327653997379, + "grad_norm": 0.20739667117595673, + "learning_rate": 0.0006, + "loss": 3.50193452835083, + "step": 4572 + }, + { + "epoch": 63.517256443861946, + "grad_norm": 0.20149169862270355, + "learning_rate": 0.0006, + "loss": 3.5508787631988525, + "step": 4573 + }, + { + "epoch": 63.53123634775011, + "grad_norm": 0.19348420202732086, + "learning_rate": 0.0006, + "loss": 3.521906852722168, + "step": 4574 + }, + { + "epoch": 63.54521625163827, + "grad_norm": 0.19946886599063873, + "learning_rate": 0.0006, + "loss": 3.509187698364258, + "step": 4575 + }, + { + "epoch": 63.55919615552643, + "grad_norm": 0.21359245479106903, + "learning_rate": 0.0006, + "loss": 3.5194101333618164, + "step": 4576 + }, + { + "epoch": 63.57317605941459, + "grad_norm": 0.21726977825164795, + "learning_rate": 0.0006, + "loss": 3.553684711456299, + "step": 4577 + }, + { + "epoch": 63.58715596330275, + "grad_norm": 0.21707940101623535, + "learning_rate": 0.0006, + "loss": 3.5474231243133545, + "step": 4578 + }, + { + "epoch": 63.60113586719091, + "grad_norm": 0.2226727306842804, + "learning_rate": 0.0006, + "loss": 3.556403636932373, + "step": 4579 + }, + { + "epoch": 63.615115771079076, + "grad_norm": 0.22008022665977478, + "learning_rate": 0.0006, + "loss": 3.4910531044006348, + "step": 4580 + }, + { + "epoch": 63.62909567496723, + "grad_norm": 0.20050542056560516, + "learning_rate": 0.0006, + "loss": 3.5085577964782715, + "step": 4581 + }, + { + "epoch": 63.643075578855395, + "grad_norm": 0.21937592327594757, + "learning_rate": 0.0006, + "loss": 3.530182361602783, + "step": 4582 + }, + { + "epoch": 63.65705548274356, + "grad_norm": 0.23152779042720795, + "learning_rate": 0.0006, + "loss": 3.551499843597412, + "step": 4583 + }, + { + "epoch": 63.671035386631715, + "grad_norm": 0.22870875895023346, + "learning_rate": 0.0006, + "loss": 3.5576539039611816, + "step": 4584 + }, + { + "epoch": 63.68501529051988, + "grad_norm": 0.23679395020008087, + "learning_rate": 0.0006, + "loss": 3.5392303466796875, + "step": 4585 + }, + { + "epoch": 63.69899519440804, + "grad_norm": 0.2301628291606903, + "learning_rate": 0.0006, + "loss": 3.53672194480896, + "step": 4586 + }, + { + "epoch": 63.7129750982962, + "grad_norm": 0.20859898626804352, + "learning_rate": 0.0006, + "loss": 3.5405986309051514, + "step": 4587 + }, + { + "epoch": 63.72695500218436, + "grad_norm": 0.2263292521238327, + "learning_rate": 0.0006, + "loss": 3.557982921600342, + "step": 4588 + }, + { + "epoch": 63.74093490607252, + "grad_norm": 0.21420416235923767, + "learning_rate": 0.0006, + "loss": 3.531942129135132, + "step": 4589 + }, + { + "epoch": 63.75491480996068, + "grad_norm": 0.21604575216770172, + "learning_rate": 0.0006, + "loss": 3.54978346824646, + "step": 4590 + }, + { + "epoch": 63.768894713848844, + "grad_norm": 0.2530747354030609, + "learning_rate": 0.0006, + "loss": 3.576831817626953, + "step": 4591 + }, + { + "epoch": 63.782874617737, + "grad_norm": 0.26169830560684204, + "learning_rate": 0.0006, + "loss": 3.5594139099121094, + "step": 4592 + }, + { + "epoch": 63.796854521625164, + "grad_norm": 0.23454166948795319, + "learning_rate": 0.0006, + "loss": 3.527966022491455, + "step": 4593 + }, + { + "epoch": 63.81083442551333, + "grad_norm": 0.25329118967056274, + "learning_rate": 0.0006, + "loss": 3.555817127227783, + "step": 4594 + }, + { + "epoch": 63.824814329401484, + "grad_norm": 0.26875534653663635, + "learning_rate": 0.0006, + "loss": 3.5659937858581543, + "step": 4595 + }, + { + "epoch": 63.83879423328965, + "grad_norm": 0.2446713000535965, + "learning_rate": 0.0006, + "loss": 3.520578384399414, + "step": 4596 + }, + { + "epoch": 63.8527741371778, + "grad_norm": 0.24629594385623932, + "learning_rate": 0.0006, + "loss": 3.562185764312744, + "step": 4597 + }, + { + "epoch": 63.86675404106597, + "grad_norm": 0.25355106592178345, + "learning_rate": 0.0006, + "loss": 3.549164295196533, + "step": 4598 + }, + { + "epoch": 63.88073394495413, + "grad_norm": 0.23251968622207642, + "learning_rate": 0.0006, + "loss": 3.529660224914551, + "step": 4599 + }, + { + "epoch": 63.89471384884229, + "grad_norm": 0.21848365664482117, + "learning_rate": 0.0006, + "loss": 3.582645893096924, + "step": 4600 + }, + { + "epoch": 63.90869375273045, + "grad_norm": 0.2525595426559448, + "learning_rate": 0.0006, + "loss": 3.5324134826660156, + "step": 4601 + }, + { + "epoch": 63.92267365661861, + "grad_norm": 0.2766541838645935, + "learning_rate": 0.0006, + "loss": 3.525892734527588, + "step": 4602 + }, + { + "epoch": 63.93665356050677, + "grad_norm": 0.2581831216812134, + "learning_rate": 0.0006, + "loss": 3.568148374557495, + "step": 4603 + }, + { + "epoch": 63.95063346439493, + "grad_norm": 0.2600967288017273, + "learning_rate": 0.0006, + "loss": 3.5735561847686768, + "step": 4604 + }, + { + "epoch": 63.964613368283096, + "grad_norm": 0.3125685155391693, + "learning_rate": 0.0006, + "loss": 3.513974666595459, + "step": 4605 + }, + { + "epoch": 63.97859327217125, + "grad_norm": 0.2686053514480591, + "learning_rate": 0.0006, + "loss": 3.533506155014038, + "step": 4606 + }, + { + "epoch": 63.992573176059416, + "grad_norm": 0.23033086955547333, + "learning_rate": 0.0006, + "loss": 3.5701582431793213, + "step": 4607 + }, + { + "epoch": 64.0, + "grad_norm": 0.2688716948032379, + "learning_rate": 0.0006, + "loss": 3.5370922088623047, + "step": 4608 + }, + { + "epoch": 64.0, + "eval_loss": 3.9788827896118164, + "eval_runtime": 44.2801, + "eval_samples_per_second": 55.149, + "eval_steps_per_second": 3.455, + "step": 4608 + }, + { + "epoch": 64.01397990388816, + "grad_norm": 0.27457329630851746, + "learning_rate": 0.0006, + "loss": 3.4789271354675293, + "step": 4609 + }, + { + "epoch": 64.02795980777633, + "grad_norm": 0.29753434658050537, + "learning_rate": 0.0006, + "loss": 3.5277628898620605, + "step": 4610 + }, + { + "epoch": 64.04193971166448, + "grad_norm": 0.36113694310188293, + "learning_rate": 0.0006, + "loss": 3.5066421031951904, + "step": 4611 + }, + { + "epoch": 64.05591961555264, + "grad_norm": 0.37955453991889954, + "learning_rate": 0.0006, + "loss": 3.532745361328125, + "step": 4612 + }, + { + "epoch": 64.06989951944081, + "grad_norm": 0.3055022060871124, + "learning_rate": 0.0006, + "loss": 3.526583671569824, + "step": 4613 + }, + { + "epoch": 64.08387942332897, + "grad_norm": 0.25849053263664246, + "learning_rate": 0.0006, + "loss": 3.525885581970215, + "step": 4614 + }, + { + "epoch": 64.09785932721712, + "grad_norm": 0.31513285636901855, + "learning_rate": 0.0006, + "loss": 3.5116710662841797, + "step": 4615 + }, + { + "epoch": 64.1118392311053, + "grad_norm": 0.3306029736995697, + "learning_rate": 0.0006, + "loss": 3.52685284614563, + "step": 4616 + }, + { + "epoch": 64.12581913499345, + "grad_norm": 0.3205282688140869, + "learning_rate": 0.0006, + "loss": 3.5442304611206055, + "step": 4617 + }, + { + "epoch": 64.1397990388816, + "grad_norm": 0.30371955037117004, + "learning_rate": 0.0006, + "loss": 3.523794174194336, + "step": 4618 + }, + { + "epoch": 64.15377894276976, + "grad_norm": 0.23337553441524506, + "learning_rate": 0.0006, + "loss": 3.530444860458374, + "step": 4619 + }, + { + "epoch": 64.16775884665793, + "grad_norm": 0.2223677784204483, + "learning_rate": 0.0006, + "loss": 3.5071358680725098, + "step": 4620 + }, + { + "epoch": 64.18173875054609, + "grad_norm": 0.21216993033885956, + "learning_rate": 0.0006, + "loss": 3.504469156265259, + "step": 4621 + }, + { + "epoch": 64.19571865443424, + "grad_norm": 0.21772179007530212, + "learning_rate": 0.0006, + "loss": 3.543393135070801, + "step": 4622 + }, + { + "epoch": 64.20969855832242, + "grad_norm": 0.2010853886604309, + "learning_rate": 0.0006, + "loss": 3.5219016075134277, + "step": 4623 + }, + { + "epoch": 64.22367846221057, + "grad_norm": 0.20491622388362885, + "learning_rate": 0.0006, + "loss": 3.4971656799316406, + "step": 4624 + }, + { + "epoch": 64.23765836609873, + "grad_norm": 0.19605079293251038, + "learning_rate": 0.0006, + "loss": 3.511746883392334, + "step": 4625 + }, + { + "epoch": 64.2516382699869, + "grad_norm": 0.2011575698852539, + "learning_rate": 0.0006, + "loss": 3.4981908798217773, + "step": 4626 + }, + { + "epoch": 64.26561817387505, + "grad_norm": 0.20687544345855713, + "learning_rate": 0.0006, + "loss": 3.5076913833618164, + "step": 4627 + }, + { + "epoch": 64.27959807776321, + "grad_norm": 0.20696480572223663, + "learning_rate": 0.0006, + "loss": 3.536569595336914, + "step": 4628 + }, + { + "epoch": 64.29357798165138, + "grad_norm": 0.200603649020195, + "learning_rate": 0.0006, + "loss": 3.525024175643921, + "step": 4629 + }, + { + "epoch": 64.30755788553954, + "grad_norm": 0.2087119072675705, + "learning_rate": 0.0006, + "loss": 3.508463144302368, + "step": 4630 + }, + { + "epoch": 64.3215377894277, + "grad_norm": 0.20823124051094055, + "learning_rate": 0.0006, + "loss": 3.5153684616088867, + "step": 4631 + }, + { + "epoch": 64.33551769331586, + "grad_norm": 0.19936303794384003, + "learning_rate": 0.0006, + "loss": 3.4908385276794434, + "step": 4632 + }, + { + "epoch": 64.34949759720402, + "grad_norm": 0.20928572118282318, + "learning_rate": 0.0006, + "loss": 3.5094854831695557, + "step": 4633 + }, + { + "epoch": 64.36347750109218, + "grad_norm": 0.22391293942928314, + "learning_rate": 0.0006, + "loss": 3.514522075653076, + "step": 4634 + }, + { + "epoch": 64.37745740498035, + "grad_norm": 0.19804537296295166, + "learning_rate": 0.0006, + "loss": 3.5072293281555176, + "step": 4635 + }, + { + "epoch": 64.3914373088685, + "grad_norm": 0.18472325801849365, + "learning_rate": 0.0006, + "loss": 3.5149683952331543, + "step": 4636 + }, + { + "epoch": 64.40541721275666, + "grad_norm": 0.20187066495418549, + "learning_rate": 0.0006, + "loss": 3.5198612213134766, + "step": 4637 + }, + { + "epoch": 64.41939711664482, + "grad_norm": 0.19778090715408325, + "learning_rate": 0.0006, + "loss": 3.540841817855835, + "step": 4638 + }, + { + "epoch": 64.43337702053299, + "grad_norm": 0.20325049757957458, + "learning_rate": 0.0006, + "loss": 3.522329330444336, + "step": 4639 + }, + { + "epoch": 64.44735692442114, + "grad_norm": 0.21200744807720184, + "learning_rate": 0.0006, + "loss": 3.5492870807647705, + "step": 4640 + }, + { + "epoch": 64.4613368283093, + "grad_norm": 0.21482640504837036, + "learning_rate": 0.0006, + "loss": 3.5450363159179688, + "step": 4641 + }, + { + "epoch": 64.47531673219747, + "grad_norm": 0.2257383018732071, + "learning_rate": 0.0006, + "loss": 3.518486976623535, + "step": 4642 + }, + { + "epoch": 64.48929663608563, + "grad_norm": 0.20710107684135437, + "learning_rate": 0.0006, + "loss": 3.5212514400482178, + "step": 4643 + }, + { + "epoch": 64.50327653997378, + "grad_norm": 0.20518364012241364, + "learning_rate": 0.0006, + "loss": 3.5239462852478027, + "step": 4644 + }, + { + "epoch": 64.51725644386195, + "grad_norm": 0.20311623811721802, + "learning_rate": 0.0006, + "loss": 3.5299072265625, + "step": 4645 + }, + { + "epoch": 64.53123634775011, + "grad_norm": 0.2045847624540329, + "learning_rate": 0.0006, + "loss": 3.5337295532226562, + "step": 4646 + }, + { + "epoch": 64.54521625163827, + "grad_norm": 0.20734596252441406, + "learning_rate": 0.0006, + "loss": 3.5001375675201416, + "step": 4647 + }, + { + "epoch": 64.55919615552644, + "grad_norm": 0.2103254497051239, + "learning_rate": 0.0006, + "loss": 3.50685977935791, + "step": 4648 + }, + { + "epoch": 64.57317605941459, + "grad_norm": 0.19903342425823212, + "learning_rate": 0.0006, + "loss": 3.5295052528381348, + "step": 4649 + }, + { + "epoch": 64.58715596330275, + "grad_norm": 0.21105562150478363, + "learning_rate": 0.0006, + "loss": 3.5062971115112305, + "step": 4650 + }, + { + "epoch": 64.60113586719092, + "grad_norm": 0.2149161994457245, + "learning_rate": 0.0006, + "loss": 3.5040459632873535, + "step": 4651 + }, + { + "epoch": 64.61511577107908, + "grad_norm": 0.19698478281497955, + "learning_rate": 0.0006, + "loss": 3.541640281677246, + "step": 4652 + }, + { + "epoch": 64.62909567496723, + "grad_norm": 0.22909119725227356, + "learning_rate": 0.0006, + "loss": 3.546515941619873, + "step": 4653 + }, + { + "epoch": 64.6430755788554, + "grad_norm": 0.2322760671377182, + "learning_rate": 0.0006, + "loss": 3.5374197959899902, + "step": 4654 + }, + { + "epoch": 64.65705548274356, + "grad_norm": 0.2173723429441452, + "learning_rate": 0.0006, + "loss": 3.543529510498047, + "step": 4655 + }, + { + "epoch": 64.67103538663171, + "grad_norm": 0.21360787749290466, + "learning_rate": 0.0006, + "loss": 3.560333251953125, + "step": 4656 + }, + { + "epoch": 64.68501529051987, + "grad_norm": 0.23260995745658875, + "learning_rate": 0.0006, + "loss": 3.5468926429748535, + "step": 4657 + }, + { + "epoch": 64.69899519440804, + "grad_norm": 0.23099006712436676, + "learning_rate": 0.0006, + "loss": 3.5222787857055664, + "step": 4658 + }, + { + "epoch": 64.7129750982962, + "grad_norm": 0.20590323209762573, + "learning_rate": 0.0006, + "loss": 3.538832426071167, + "step": 4659 + }, + { + "epoch": 64.72695500218435, + "grad_norm": 0.2339620441198349, + "learning_rate": 0.0006, + "loss": 3.5201845169067383, + "step": 4660 + }, + { + "epoch": 64.74093490607252, + "grad_norm": 0.27160516381263733, + "learning_rate": 0.0006, + "loss": 3.5465309619903564, + "step": 4661 + }, + { + "epoch": 64.75491480996068, + "grad_norm": 0.2624864876270294, + "learning_rate": 0.0006, + "loss": 3.5205435752868652, + "step": 4662 + }, + { + "epoch": 64.76889471384884, + "grad_norm": 0.23907902836799622, + "learning_rate": 0.0006, + "loss": 3.553205728530884, + "step": 4663 + }, + { + "epoch": 64.78287461773701, + "grad_norm": 0.2217475026845932, + "learning_rate": 0.0006, + "loss": 3.514068603515625, + "step": 4664 + }, + { + "epoch": 64.79685452162516, + "grad_norm": 0.20445777475833893, + "learning_rate": 0.0006, + "loss": 3.5382182598114014, + "step": 4665 + }, + { + "epoch": 64.81083442551332, + "grad_norm": 0.2027028501033783, + "learning_rate": 0.0006, + "loss": 3.549323081970215, + "step": 4666 + }, + { + "epoch": 64.82481432940149, + "grad_norm": 0.2211705446243286, + "learning_rate": 0.0006, + "loss": 3.5627710819244385, + "step": 4667 + }, + { + "epoch": 64.83879423328965, + "grad_norm": 0.23401948809623718, + "learning_rate": 0.0006, + "loss": 3.5169739723205566, + "step": 4668 + }, + { + "epoch": 64.8527741371778, + "grad_norm": 0.21921628713607788, + "learning_rate": 0.0006, + "loss": 3.5405478477478027, + "step": 4669 + }, + { + "epoch": 64.86675404106597, + "grad_norm": 0.20840027928352356, + "learning_rate": 0.0006, + "loss": 3.528883218765259, + "step": 4670 + }, + { + "epoch": 64.88073394495413, + "grad_norm": 0.21593457460403442, + "learning_rate": 0.0006, + "loss": 3.570455551147461, + "step": 4671 + }, + { + "epoch": 64.89471384884229, + "grad_norm": 0.22351567447185516, + "learning_rate": 0.0006, + "loss": 3.567831516265869, + "step": 4672 + }, + { + "epoch": 64.90869375273044, + "grad_norm": 0.22733932733535767, + "learning_rate": 0.0006, + "loss": 3.55277156829834, + "step": 4673 + }, + { + "epoch": 64.92267365661861, + "grad_norm": 0.19557999074459076, + "learning_rate": 0.0006, + "loss": 3.523028612136841, + "step": 4674 + }, + { + "epoch": 64.93665356050677, + "grad_norm": 0.22674734890460968, + "learning_rate": 0.0006, + "loss": 3.565629720687866, + "step": 4675 + }, + { + "epoch": 64.95063346439493, + "grad_norm": 0.23879630863666534, + "learning_rate": 0.0006, + "loss": 3.5556788444519043, + "step": 4676 + }, + { + "epoch": 64.9646133682831, + "grad_norm": 0.24172860383987427, + "learning_rate": 0.0006, + "loss": 3.580190658569336, + "step": 4677 + }, + { + "epoch": 64.97859327217125, + "grad_norm": 0.24994441866874695, + "learning_rate": 0.0006, + "loss": 3.506659507751465, + "step": 4678 + }, + { + "epoch": 64.99257317605941, + "grad_norm": 0.20717456936836243, + "learning_rate": 0.0006, + "loss": 3.526215076446533, + "step": 4679 + }, + { + "epoch": 65.0, + "grad_norm": 0.23991262912750244, + "learning_rate": 0.0006, + "loss": 3.5615687370300293, + "step": 4680 + }, + { + "epoch": 65.0, + "eval_loss": 3.974820137023926, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 4680 + }, + { + "epoch": 65.01397990388816, + "grad_norm": 0.22059205174446106, + "learning_rate": 0.0006, + "loss": 3.4952855110168457, + "step": 4681 + }, + { + "epoch": 65.02795980777633, + "grad_norm": 0.23085950314998627, + "learning_rate": 0.0006, + "loss": 3.5180296897888184, + "step": 4682 + }, + { + "epoch": 65.04193971166448, + "grad_norm": 0.20950855314731598, + "learning_rate": 0.0006, + "loss": 3.5476295948028564, + "step": 4683 + }, + { + "epoch": 65.05591961555264, + "grad_norm": 0.1958799958229065, + "learning_rate": 0.0006, + "loss": 3.5180916786193848, + "step": 4684 + }, + { + "epoch": 65.06989951944081, + "grad_norm": 0.20676101744174957, + "learning_rate": 0.0006, + "loss": 3.4882211685180664, + "step": 4685 + }, + { + "epoch": 65.08387942332897, + "grad_norm": 0.24798569083213806, + "learning_rate": 0.0006, + "loss": 3.5030102729797363, + "step": 4686 + }, + { + "epoch": 65.09785932721712, + "grad_norm": 0.2997048795223236, + "learning_rate": 0.0006, + "loss": 3.5148534774780273, + "step": 4687 + }, + { + "epoch": 65.1118392311053, + "grad_norm": 0.27347132563591003, + "learning_rate": 0.0006, + "loss": 3.534639358520508, + "step": 4688 + }, + { + "epoch": 65.12581913499345, + "grad_norm": 0.2220011204481125, + "learning_rate": 0.0006, + "loss": 3.50504994392395, + "step": 4689 + }, + { + "epoch": 65.1397990388816, + "grad_norm": 0.2552279829978943, + "learning_rate": 0.0006, + "loss": 3.4893431663513184, + "step": 4690 + }, + { + "epoch": 65.15377894276976, + "grad_norm": 0.32200172543525696, + "learning_rate": 0.0006, + "loss": 3.515808582305908, + "step": 4691 + }, + { + "epoch": 65.16775884665793, + "grad_norm": 0.31339603662490845, + "learning_rate": 0.0006, + "loss": 3.493312358856201, + "step": 4692 + }, + { + "epoch": 65.18173875054609, + "grad_norm": 0.30790913105010986, + "learning_rate": 0.0006, + "loss": 3.5001792907714844, + "step": 4693 + }, + { + "epoch": 65.19571865443424, + "grad_norm": 0.25261157751083374, + "learning_rate": 0.0006, + "loss": 3.491820812225342, + "step": 4694 + }, + { + "epoch": 65.20969855832242, + "grad_norm": 0.20875515043735504, + "learning_rate": 0.0006, + "loss": 3.5120949745178223, + "step": 4695 + }, + { + "epoch": 65.22367846221057, + "grad_norm": 0.22966094315052032, + "learning_rate": 0.0006, + "loss": 3.4509716033935547, + "step": 4696 + }, + { + "epoch": 65.23765836609873, + "grad_norm": 0.22414445877075195, + "learning_rate": 0.0006, + "loss": 3.5032718181610107, + "step": 4697 + }, + { + "epoch": 65.2516382699869, + "grad_norm": 0.21083641052246094, + "learning_rate": 0.0006, + "loss": 3.4912984371185303, + "step": 4698 + }, + { + "epoch": 65.26561817387505, + "grad_norm": 0.21424371004104614, + "learning_rate": 0.0006, + "loss": 3.493704080581665, + "step": 4699 + }, + { + "epoch": 65.27959807776321, + "grad_norm": 0.21155135333538055, + "learning_rate": 0.0006, + "loss": 3.523045063018799, + "step": 4700 + }, + { + "epoch": 65.29357798165138, + "grad_norm": 0.2245800942182541, + "learning_rate": 0.0006, + "loss": 3.5085060596466064, + "step": 4701 + }, + { + "epoch": 65.30755788553954, + "grad_norm": 0.2271309345960617, + "learning_rate": 0.0006, + "loss": 3.51690673828125, + "step": 4702 + }, + { + "epoch": 65.3215377894277, + "grad_norm": 0.23873905837535858, + "learning_rate": 0.0006, + "loss": 3.533975124359131, + "step": 4703 + }, + { + "epoch": 65.33551769331586, + "grad_norm": 0.22801156342029572, + "learning_rate": 0.0006, + "loss": 3.554079532623291, + "step": 4704 + }, + { + "epoch": 65.34949759720402, + "grad_norm": 0.20530614256858826, + "learning_rate": 0.0006, + "loss": 3.5536623001098633, + "step": 4705 + }, + { + "epoch": 65.36347750109218, + "grad_norm": 0.19286230206489563, + "learning_rate": 0.0006, + "loss": 3.5279109477996826, + "step": 4706 + }, + { + "epoch": 65.37745740498035, + "grad_norm": 0.20883116126060486, + "learning_rate": 0.0006, + "loss": 3.526639223098755, + "step": 4707 + }, + { + "epoch": 65.3914373088685, + "grad_norm": 0.20705194771289825, + "learning_rate": 0.0006, + "loss": 3.5389089584350586, + "step": 4708 + }, + { + "epoch": 65.40541721275666, + "grad_norm": 0.1948518604040146, + "learning_rate": 0.0006, + "loss": 3.504940986633301, + "step": 4709 + }, + { + "epoch": 65.41939711664482, + "grad_norm": 0.20147304236888885, + "learning_rate": 0.0006, + "loss": 3.5085673332214355, + "step": 4710 + }, + { + "epoch": 65.43337702053299, + "grad_norm": 0.2229771912097931, + "learning_rate": 0.0006, + "loss": 3.4806604385375977, + "step": 4711 + }, + { + "epoch": 65.44735692442114, + "grad_norm": 0.252258837223053, + "learning_rate": 0.0006, + "loss": 3.5160961151123047, + "step": 4712 + }, + { + "epoch": 65.4613368283093, + "grad_norm": 0.2482563853263855, + "learning_rate": 0.0006, + "loss": 3.522674560546875, + "step": 4713 + }, + { + "epoch": 65.47531673219747, + "grad_norm": 0.22155597805976868, + "learning_rate": 0.0006, + "loss": 3.5124268531799316, + "step": 4714 + }, + { + "epoch": 65.48929663608563, + "grad_norm": 0.223913311958313, + "learning_rate": 0.0006, + "loss": 3.5122427940368652, + "step": 4715 + }, + { + "epoch": 65.50327653997378, + "grad_norm": 0.20946767926216125, + "learning_rate": 0.0006, + "loss": 3.552161693572998, + "step": 4716 + }, + { + "epoch": 65.51725644386195, + "grad_norm": 0.21044479310512543, + "learning_rate": 0.0006, + "loss": 3.5450949668884277, + "step": 4717 + }, + { + "epoch": 65.53123634775011, + "grad_norm": 0.25752949714660645, + "learning_rate": 0.0006, + "loss": 3.5267398357391357, + "step": 4718 + }, + { + "epoch": 65.54521625163827, + "grad_norm": 0.28068798780441284, + "learning_rate": 0.0006, + "loss": 3.537827491760254, + "step": 4719 + }, + { + "epoch": 65.55919615552644, + "grad_norm": 0.2259511947631836, + "learning_rate": 0.0006, + "loss": 3.540821075439453, + "step": 4720 + }, + { + "epoch": 65.57317605941459, + "grad_norm": 0.2032593935728073, + "learning_rate": 0.0006, + "loss": 3.540170669555664, + "step": 4721 + }, + { + "epoch": 65.58715596330275, + "grad_norm": 0.2432602047920227, + "learning_rate": 0.0006, + "loss": 3.5356297492980957, + "step": 4722 + }, + { + "epoch": 65.60113586719092, + "grad_norm": 0.20527289807796478, + "learning_rate": 0.0006, + "loss": 3.4675498008728027, + "step": 4723 + }, + { + "epoch": 65.61511577107908, + "grad_norm": 0.18697771430015564, + "learning_rate": 0.0006, + "loss": 3.5208992958068848, + "step": 4724 + }, + { + "epoch": 65.62909567496723, + "grad_norm": 0.2044762223958969, + "learning_rate": 0.0006, + "loss": 3.5583274364471436, + "step": 4725 + }, + { + "epoch": 65.6430755788554, + "grad_norm": 0.22855281829833984, + "learning_rate": 0.0006, + "loss": 3.5497756004333496, + "step": 4726 + }, + { + "epoch": 65.65705548274356, + "grad_norm": 0.21672320365905762, + "learning_rate": 0.0006, + "loss": 3.530869960784912, + "step": 4727 + }, + { + "epoch": 65.67103538663171, + "grad_norm": 0.20629048347473145, + "learning_rate": 0.0006, + "loss": 3.5381593704223633, + "step": 4728 + }, + { + "epoch": 65.68501529051987, + "grad_norm": 0.21036849915981293, + "learning_rate": 0.0006, + "loss": 3.531111478805542, + "step": 4729 + }, + { + "epoch": 65.69899519440804, + "grad_norm": 0.19463932514190674, + "learning_rate": 0.0006, + "loss": 3.523106098175049, + "step": 4730 + }, + { + "epoch": 65.7129750982962, + "grad_norm": 0.2210976481437683, + "learning_rate": 0.0006, + "loss": 3.5480356216430664, + "step": 4731 + }, + { + "epoch": 65.72695500218435, + "grad_norm": 0.2288331687450409, + "learning_rate": 0.0006, + "loss": 3.5317163467407227, + "step": 4732 + }, + { + "epoch": 65.74093490607252, + "grad_norm": 0.22445930540561676, + "learning_rate": 0.0006, + "loss": 3.5453107357025146, + "step": 4733 + }, + { + "epoch": 65.75491480996068, + "grad_norm": 0.20268939435482025, + "learning_rate": 0.0006, + "loss": 3.5546514987945557, + "step": 4734 + }, + { + "epoch": 65.76889471384884, + "grad_norm": 0.2070288211107254, + "learning_rate": 0.0006, + "loss": 3.5345590114593506, + "step": 4735 + }, + { + "epoch": 65.78287461773701, + "grad_norm": 0.2052922248840332, + "learning_rate": 0.0006, + "loss": 3.538299083709717, + "step": 4736 + }, + { + "epoch": 65.79685452162516, + "grad_norm": 0.2146841138601303, + "learning_rate": 0.0006, + "loss": 3.541652202606201, + "step": 4737 + }, + { + "epoch": 65.81083442551332, + "grad_norm": 0.21826434135437012, + "learning_rate": 0.0006, + "loss": 3.4880056381225586, + "step": 4738 + }, + { + "epoch": 65.82481432940149, + "grad_norm": 0.18492230772972107, + "learning_rate": 0.0006, + "loss": 3.5282340049743652, + "step": 4739 + }, + { + "epoch": 65.83879423328965, + "grad_norm": 0.2422342747449875, + "learning_rate": 0.0006, + "loss": 3.5482215881347656, + "step": 4740 + }, + { + "epoch": 65.8527741371778, + "grad_norm": 0.300968199968338, + "learning_rate": 0.0006, + "loss": 3.545173168182373, + "step": 4741 + }, + { + "epoch": 65.86675404106597, + "grad_norm": 0.23397785425186157, + "learning_rate": 0.0006, + "loss": 3.5014636516571045, + "step": 4742 + }, + { + "epoch": 65.88073394495413, + "grad_norm": 0.20114080607891083, + "learning_rate": 0.0006, + "loss": 3.517125368118286, + "step": 4743 + }, + { + "epoch": 65.89471384884229, + "grad_norm": 0.23073594272136688, + "learning_rate": 0.0006, + "loss": 3.5259623527526855, + "step": 4744 + }, + { + "epoch": 65.90869375273044, + "grad_norm": 0.25975924730300903, + "learning_rate": 0.0006, + "loss": 3.5394439697265625, + "step": 4745 + }, + { + "epoch": 65.92267365661861, + "grad_norm": 0.2565694749355316, + "learning_rate": 0.0006, + "loss": 3.5301175117492676, + "step": 4746 + }, + { + "epoch": 65.93665356050677, + "grad_norm": 0.24380211532115936, + "learning_rate": 0.0006, + "loss": 3.5519638061523438, + "step": 4747 + }, + { + "epoch": 65.95063346439493, + "grad_norm": 0.2337062805891037, + "learning_rate": 0.0006, + "loss": 3.5365114212036133, + "step": 4748 + }, + { + "epoch": 65.9646133682831, + "grad_norm": 0.2107299268245697, + "learning_rate": 0.0006, + "loss": 3.5433106422424316, + "step": 4749 + }, + { + "epoch": 65.97859327217125, + "grad_norm": 0.2159995585680008, + "learning_rate": 0.0006, + "loss": 3.539796829223633, + "step": 4750 + }, + { + "epoch": 65.99257317605941, + "grad_norm": 0.23707467317581177, + "learning_rate": 0.0006, + "loss": 3.5315332412719727, + "step": 4751 + }, + { + "epoch": 66.0, + "grad_norm": 0.27253037691116333, + "learning_rate": 0.0006, + "loss": 3.5477747917175293, + "step": 4752 + }, + { + "epoch": 66.0, + "eval_loss": 3.973580837249756, + "eval_runtime": 44.8472, + "eval_samples_per_second": 54.452, + "eval_steps_per_second": 3.412, + "step": 4752 + }, + { + "epoch": 66.01397990388816, + "grad_norm": 0.22843532264232635, + "learning_rate": 0.0006, + "loss": 3.463778018951416, + "step": 4753 + }, + { + "epoch": 66.02795980777633, + "grad_norm": 0.24956060945987701, + "learning_rate": 0.0006, + "loss": 3.5249979496002197, + "step": 4754 + }, + { + "epoch": 66.04193971166448, + "grad_norm": 0.3091195821762085, + "learning_rate": 0.0006, + "loss": 3.4742040634155273, + "step": 4755 + }, + { + "epoch": 66.05591961555264, + "grad_norm": 0.346617192029953, + "learning_rate": 0.0006, + "loss": 3.4870445728302, + "step": 4756 + }, + { + "epoch": 66.06989951944081, + "grad_norm": 0.2875824570655823, + "learning_rate": 0.0006, + "loss": 3.5412697792053223, + "step": 4757 + }, + { + "epoch": 66.08387942332897, + "grad_norm": 0.2508425712585449, + "learning_rate": 0.0006, + "loss": 3.488759756088257, + "step": 4758 + }, + { + "epoch": 66.09785932721712, + "grad_norm": 0.2538967728614807, + "learning_rate": 0.0006, + "loss": 3.536404609680176, + "step": 4759 + }, + { + "epoch": 66.1118392311053, + "grad_norm": 0.24713276326656342, + "learning_rate": 0.0006, + "loss": 3.502939462661743, + "step": 4760 + }, + { + "epoch": 66.12581913499345, + "grad_norm": 0.2381032407283783, + "learning_rate": 0.0006, + "loss": 3.5297226905822754, + "step": 4761 + }, + { + "epoch": 66.1397990388816, + "grad_norm": 0.23749777674674988, + "learning_rate": 0.0006, + "loss": 3.510740280151367, + "step": 4762 + }, + { + "epoch": 66.15377894276976, + "grad_norm": 0.24993619322776794, + "learning_rate": 0.0006, + "loss": 3.4966745376586914, + "step": 4763 + }, + { + "epoch": 66.16775884665793, + "grad_norm": 0.25855013728141785, + "learning_rate": 0.0006, + "loss": 3.545177936553955, + "step": 4764 + }, + { + "epoch": 66.18173875054609, + "grad_norm": 0.2206948697566986, + "learning_rate": 0.0006, + "loss": 3.5404415130615234, + "step": 4765 + }, + { + "epoch": 66.19571865443424, + "grad_norm": 0.2627105116844177, + "learning_rate": 0.0006, + "loss": 3.5475361347198486, + "step": 4766 + }, + { + "epoch": 66.20969855832242, + "grad_norm": 0.29578864574432373, + "learning_rate": 0.0006, + "loss": 3.510110855102539, + "step": 4767 + }, + { + "epoch": 66.22367846221057, + "grad_norm": 0.257691353559494, + "learning_rate": 0.0006, + "loss": 3.5143630504608154, + "step": 4768 + }, + { + "epoch": 66.23765836609873, + "grad_norm": 0.24346867203712463, + "learning_rate": 0.0006, + "loss": 3.5007784366607666, + "step": 4769 + }, + { + "epoch": 66.2516382699869, + "grad_norm": 0.230575293302536, + "learning_rate": 0.0006, + "loss": 3.5051684379577637, + "step": 4770 + }, + { + "epoch": 66.26561817387505, + "grad_norm": 0.23823921382427216, + "learning_rate": 0.0006, + "loss": 3.4773342609405518, + "step": 4771 + }, + { + "epoch": 66.27959807776321, + "grad_norm": 0.20743288099765778, + "learning_rate": 0.0006, + "loss": 3.496393918991089, + "step": 4772 + }, + { + "epoch": 66.29357798165138, + "grad_norm": 0.21969960629940033, + "learning_rate": 0.0006, + "loss": 3.494748830795288, + "step": 4773 + }, + { + "epoch": 66.30755788553954, + "grad_norm": 0.20902593433856964, + "learning_rate": 0.0006, + "loss": 3.529416561126709, + "step": 4774 + }, + { + "epoch": 66.3215377894277, + "grad_norm": 0.2380436211824417, + "learning_rate": 0.0006, + "loss": 3.508625030517578, + "step": 4775 + }, + { + "epoch": 66.33551769331586, + "grad_norm": 0.26387956738471985, + "learning_rate": 0.0006, + "loss": 3.4886221885681152, + "step": 4776 + }, + { + "epoch": 66.34949759720402, + "grad_norm": 0.24655069410800934, + "learning_rate": 0.0006, + "loss": 3.5089354515075684, + "step": 4777 + }, + { + "epoch": 66.36347750109218, + "grad_norm": 0.2446470856666565, + "learning_rate": 0.0006, + "loss": 3.5295841693878174, + "step": 4778 + }, + { + "epoch": 66.37745740498035, + "grad_norm": 0.23909035325050354, + "learning_rate": 0.0006, + "loss": 3.500223159790039, + "step": 4779 + }, + { + "epoch": 66.3914373088685, + "grad_norm": 0.21958141028881073, + "learning_rate": 0.0006, + "loss": 3.5225610733032227, + "step": 4780 + }, + { + "epoch": 66.40541721275666, + "grad_norm": 0.20134378969669342, + "learning_rate": 0.0006, + "loss": 3.5055198669433594, + "step": 4781 + }, + { + "epoch": 66.41939711664482, + "grad_norm": 0.22621650993824005, + "learning_rate": 0.0006, + "loss": 3.5356178283691406, + "step": 4782 + }, + { + "epoch": 66.43337702053299, + "grad_norm": 0.214684396982193, + "learning_rate": 0.0006, + "loss": 3.5069541931152344, + "step": 4783 + }, + { + "epoch": 66.44735692442114, + "grad_norm": 0.217989981174469, + "learning_rate": 0.0006, + "loss": 3.499561071395874, + "step": 4784 + }, + { + "epoch": 66.4613368283093, + "grad_norm": 0.21457986533641815, + "learning_rate": 0.0006, + "loss": 3.5139474868774414, + "step": 4785 + }, + { + "epoch": 66.47531673219747, + "grad_norm": 0.24017205834388733, + "learning_rate": 0.0006, + "loss": 3.5267739295959473, + "step": 4786 + }, + { + "epoch": 66.48929663608563, + "grad_norm": 0.22864149510860443, + "learning_rate": 0.0006, + "loss": 3.5324792861938477, + "step": 4787 + }, + { + "epoch": 66.50327653997378, + "grad_norm": 0.219966322183609, + "learning_rate": 0.0006, + "loss": 3.491529703140259, + "step": 4788 + }, + { + "epoch": 66.51725644386195, + "grad_norm": 0.23360539972782135, + "learning_rate": 0.0006, + "loss": 3.4962849617004395, + "step": 4789 + }, + { + "epoch": 66.53123634775011, + "grad_norm": 0.24652886390686035, + "learning_rate": 0.0006, + "loss": 3.510777473449707, + "step": 4790 + }, + { + "epoch": 66.54521625163827, + "grad_norm": 0.23419316112995148, + "learning_rate": 0.0006, + "loss": 3.5549509525299072, + "step": 4791 + }, + { + "epoch": 66.55919615552644, + "grad_norm": 0.2514760494232178, + "learning_rate": 0.0006, + "loss": 3.49761962890625, + "step": 4792 + }, + { + "epoch": 66.57317605941459, + "grad_norm": 0.24227535724639893, + "learning_rate": 0.0006, + "loss": 3.5556445121765137, + "step": 4793 + }, + { + "epoch": 66.58715596330275, + "grad_norm": 0.24751204252243042, + "learning_rate": 0.0006, + "loss": 3.5131940841674805, + "step": 4794 + }, + { + "epoch": 66.60113586719092, + "grad_norm": 0.24366872012615204, + "learning_rate": 0.0006, + "loss": 3.5310516357421875, + "step": 4795 + }, + { + "epoch": 66.61511577107908, + "grad_norm": 0.2177760899066925, + "learning_rate": 0.0006, + "loss": 3.5267493724823, + "step": 4796 + }, + { + "epoch": 66.62909567496723, + "grad_norm": 0.19654381275177002, + "learning_rate": 0.0006, + "loss": 3.5158896446228027, + "step": 4797 + }, + { + "epoch": 66.6430755788554, + "grad_norm": 0.2041735202074051, + "learning_rate": 0.0006, + "loss": 3.5645484924316406, + "step": 4798 + }, + { + "epoch": 66.65705548274356, + "grad_norm": 0.21368929743766785, + "learning_rate": 0.0006, + "loss": 3.5481250286102295, + "step": 4799 + }, + { + "epoch": 66.67103538663171, + "grad_norm": 0.2047458291053772, + "learning_rate": 0.0006, + "loss": 3.498279571533203, + "step": 4800 + }, + { + "epoch": 66.68501529051987, + "grad_norm": 0.21750541031360626, + "learning_rate": 0.0006, + "loss": 3.5349860191345215, + "step": 4801 + }, + { + "epoch": 66.69899519440804, + "grad_norm": 0.2415834218263626, + "learning_rate": 0.0006, + "loss": 3.5091004371643066, + "step": 4802 + }, + { + "epoch": 66.7129750982962, + "grad_norm": 0.19963665306568146, + "learning_rate": 0.0006, + "loss": 3.5369873046875, + "step": 4803 + }, + { + "epoch": 66.72695500218435, + "grad_norm": 0.23620283603668213, + "learning_rate": 0.0006, + "loss": 3.5239949226379395, + "step": 4804 + }, + { + "epoch": 66.74093490607252, + "grad_norm": 0.2616693079471588, + "learning_rate": 0.0006, + "loss": 3.545588493347168, + "step": 4805 + }, + { + "epoch": 66.75491480996068, + "grad_norm": 0.23235733807086945, + "learning_rate": 0.0006, + "loss": 3.5250823497772217, + "step": 4806 + }, + { + "epoch": 66.76889471384884, + "grad_norm": 0.20908917486667633, + "learning_rate": 0.0006, + "loss": 3.547023057937622, + "step": 4807 + }, + { + "epoch": 66.78287461773701, + "grad_norm": 0.23014947772026062, + "learning_rate": 0.0006, + "loss": 3.527070999145508, + "step": 4808 + }, + { + "epoch": 66.79685452162516, + "grad_norm": 0.2468312382698059, + "learning_rate": 0.0006, + "loss": 3.5456371307373047, + "step": 4809 + }, + { + "epoch": 66.81083442551332, + "grad_norm": 0.21409334242343903, + "learning_rate": 0.0006, + "loss": 3.5282058715820312, + "step": 4810 + }, + { + "epoch": 66.82481432940149, + "grad_norm": 0.20337609946727753, + "learning_rate": 0.0006, + "loss": 3.5054173469543457, + "step": 4811 + }, + { + "epoch": 66.83879423328965, + "grad_norm": 0.20335888862609863, + "learning_rate": 0.0006, + "loss": 3.5417919158935547, + "step": 4812 + }, + { + "epoch": 66.8527741371778, + "grad_norm": 0.20672455430030823, + "learning_rate": 0.0006, + "loss": 3.549217700958252, + "step": 4813 + }, + { + "epoch": 66.86675404106597, + "grad_norm": 0.19788624346256256, + "learning_rate": 0.0006, + "loss": 3.5244839191436768, + "step": 4814 + }, + { + "epoch": 66.88073394495413, + "grad_norm": 0.19756834208965302, + "learning_rate": 0.0006, + "loss": 3.5210156440734863, + "step": 4815 + }, + { + "epoch": 66.89471384884229, + "grad_norm": 0.18592269718647003, + "learning_rate": 0.0006, + "loss": 3.522824764251709, + "step": 4816 + }, + { + "epoch": 66.90869375273044, + "grad_norm": 0.2011021077632904, + "learning_rate": 0.0006, + "loss": 3.521613597869873, + "step": 4817 + }, + { + "epoch": 66.92267365661861, + "grad_norm": 0.20816446840763092, + "learning_rate": 0.0006, + "loss": 3.562373161315918, + "step": 4818 + }, + { + "epoch": 66.93665356050677, + "grad_norm": 0.1967775523662567, + "learning_rate": 0.0006, + "loss": 3.5357818603515625, + "step": 4819 + }, + { + "epoch": 66.95063346439493, + "grad_norm": 0.20569968223571777, + "learning_rate": 0.0006, + "loss": 3.5232982635498047, + "step": 4820 + }, + { + "epoch": 66.9646133682831, + "grad_norm": 0.2095642238855362, + "learning_rate": 0.0006, + "loss": 3.5395994186401367, + "step": 4821 + }, + { + "epoch": 66.97859327217125, + "grad_norm": 0.22340409457683563, + "learning_rate": 0.0006, + "loss": 3.5163097381591797, + "step": 4822 + }, + { + "epoch": 66.99257317605941, + "grad_norm": 0.2131485939025879, + "learning_rate": 0.0006, + "loss": 3.555629253387451, + "step": 4823 + }, + { + "epoch": 67.0, + "grad_norm": 0.22373832762241364, + "learning_rate": 0.0006, + "loss": 3.5017800331115723, + "step": 4824 + }, + { + "epoch": 67.0, + "eval_loss": 3.9781124591827393, + "eval_runtime": 44.8111, + "eval_samples_per_second": 54.495, + "eval_steps_per_second": 3.414, + "step": 4824 + }, + { + "epoch": 67.01397990388816, + "grad_norm": 0.21282735466957092, + "learning_rate": 0.0006, + "loss": 3.482837677001953, + "step": 4825 + }, + { + "epoch": 67.02795980777633, + "grad_norm": 0.23839101195335388, + "learning_rate": 0.0006, + "loss": 3.5095958709716797, + "step": 4826 + }, + { + "epoch": 67.04193971166448, + "grad_norm": 0.2598385810852051, + "learning_rate": 0.0006, + "loss": 3.463888645172119, + "step": 4827 + }, + { + "epoch": 67.05591961555264, + "grad_norm": 0.24132144451141357, + "learning_rate": 0.0006, + "loss": 3.478180408477783, + "step": 4828 + }, + { + "epoch": 67.06989951944081, + "grad_norm": 0.23276527225971222, + "learning_rate": 0.0006, + "loss": 3.5064096450805664, + "step": 4829 + }, + { + "epoch": 67.08387942332897, + "grad_norm": 0.21749058365821838, + "learning_rate": 0.0006, + "loss": 3.5057930946350098, + "step": 4830 + }, + { + "epoch": 67.09785932721712, + "grad_norm": 0.22310365736484528, + "learning_rate": 0.0006, + "loss": 3.492342233657837, + "step": 4831 + }, + { + "epoch": 67.1118392311053, + "grad_norm": 0.23109206557273865, + "learning_rate": 0.0006, + "loss": 3.4776313304901123, + "step": 4832 + }, + { + "epoch": 67.12581913499345, + "grad_norm": 0.21820154786109924, + "learning_rate": 0.0006, + "loss": 3.4983036518096924, + "step": 4833 + }, + { + "epoch": 67.1397990388816, + "grad_norm": 0.214705228805542, + "learning_rate": 0.0006, + "loss": 3.4997382164001465, + "step": 4834 + }, + { + "epoch": 67.15377894276976, + "grad_norm": 0.230570450425148, + "learning_rate": 0.0006, + "loss": 3.5172224044799805, + "step": 4835 + }, + { + "epoch": 67.16775884665793, + "grad_norm": 0.21726474165916443, + "learning_rate": 0.0006, + "loss": 3.4625420570373535, + "step": 4836 + }, + { + "epoch": 67.18173875054609, + "grad_norm": 0.21541455388069153, + "learning_rate": 0.0006, + "loss": 3.5274102687835693, + "step": 4837 + }, + { + "epoch": 67.19571865443424, + "grad_norm": 0.21431861817836761, + "learning_rate": 0.0006, + "loss": 3.5112781524658203, + "step": 4838 + }, + { + "epoch": 67.20969855832242, + "grad_norm": 0.22660572826862335, + "learning_rate": 0.0006, + "loss": 3.4687018394470215, + "step": 4839 + }, + { + "epoch": 67.22367846221057, + "grad_norm": 0.21821390092372894, + "learning_rate": 0.0006, + "loss": 3.5137336254119873, + "step": 4840 + }, + { + "epoch": 67.23765836609873, + "grad_norm": 0.20666861534118652, + "learning_rate": 0.0006, + "loss": 3.5264923572540283, + "step": 4841 + }, + { + "epoch": 67.2516382699869, + "grad_norm": 0.2266923040151596, + "learning_rate": 0.0006, + "loss": 3.5288591384887695, + "step": 4842 + }, + { + "epoch": 67.26561817387505, + "grad_norm": 0.20246101915836334, + "learning_rate": 0.0006, + "loss": 3.5267882347106934, + "step": 4843 + }, + { + "epoch": 67.27959807776321, + "grad_norm": 0.20115883648395538, + "learning_rate": 0.0006, + "loss": 3.5004916191101074, + "step": 4844 + }, + { + "epoch": 67.29357798165138, + "grad_norm": 0.21547555923461914, + "learning_rate": 0.0006, + "loss": 3.5347824096679688, + "step": 4845 + }, + { + "epoch": 67.30755788553954, + "grad_norm": 0.22675341367721558, + "learning_rate": 0.0006, + "loss": 3.5119810104370117, + "step": 4846 + }, + { + "epoch": 67.3215377894277, + "grad_norm": 0.2440510094165802, + "learning_rate": 0.0006, + "loss": 3.489138126373291, + "step": 4847 + }, + { + "epoch": 67.33551769331586, + "grad_norm": 0.3055892884731293, + "learning_rate": 0.0006, + "loss": 3.5096774101257324, + "step": 4848 + }, + { + "epoch": 67.34949759720402, + "grad_norm": 0.3053153455257416, + "learning_rate": 0.0006, + "loss": 3.4901437759399414, + "step": 4849 + }, + { + "epoch": 67.36347750109218, + "grad_norm": 0.27368026971817017, + "learning_rate": 0.0006, + "loss": 3.5251317024230957, + "step": 4850 + }, + { + "epoch": 67.37745740498035, + "grad_norm": 0.2427835315465927, + "learning_rate": 0.0006, + "loss": 3.5069375038146973, + "step": 4851 + }, + { + "epoch": 67.3914373088685, + "grad_norm": 0.22328020632266998, + "learning_rate": 0.0006, + "loss": 3.5156240463256836, + "step": 4852 + }, + { + "epoch": 67.40541721275666, + "grad_norm": 0.22034069895744324, + "learning_rate": 0.0006, + "loss": 3.527740001678467, + "step": 4853 + }, + { + "epoch": 67.41939711664482, + "grad_norm": 0.23175004124641418, + "learning_rate": 0.0006, + "loss": 3.5049824714660645, + "step": 4854 + }, + { + "epoch": 67.43337702053299, + "grad_norm": 0.251209020614624, + "learning_rate": 0.0006, + "loss": 3.521754503250122, + "step": 4855 + }, + { + "epoch": 67.44735692442114, + "grad_norm": 0.26046663522720337, + "learning_rate": 0.0006, + "loss": 3.507568359375, + "step": 4856 + }, + { + "epoch": 67.4613368283093, + "grad_norm": 0.2206648588180542, + "learning_rate": 0.0006, + "loss": 3.513352870941162, + "step": 4857 + }, + { + "epoch": 67.47531673219747, + "grad_norm": 0.21608634293079376, + "learning_rate": 0.0006, + "loss": 3.4996538162231445, + "step": 4858 + }, + { + "epoch": 67.48929663608563, + "grad_norm": 0.24478112161159515, + "learning_rate": 0.0006, + "loss": 3.5210018157958984, + "step": 4859 + }, + { + "epoch": 67.50327653997378, + "grad_norm": 0.24971047043800354, + "learning_rate": 0.0006, + "loss": 3.5325865745544434, + "step": 4860 + }, + { + "epoch": 67.51725644386195, + "grad_norm": 0.26053082942962646, + "learning_rate": 0.0006, + "loss": 3.546248435974121, + "step": 4861 + }, + { + "epoch": 67.53123634775011, + "grad_norm": 0.2662231922149658, + "learning_rate": 0.0006, + "loss": 3.5073113441467285, + "step": 4862 + }, + { + "epoch": 67.54521625163827, + "grad_norm": 0.24797172844409943, + "learning_rate": 0.0006, + "loss": 3.536888360977173, + "step": 4863 + }, + { + "epoch": 67.55919615552644, + "grad_norm": 0.2383667528629303, + "learning_rate": 0.0006, + "loss": 3.5343832969665527, + "step": 4864 + }, + { + "epoch": 67.57317605941459, + "grad_norm": 0.2696457803249359, + "learning_rate": 0.0006, + "loss": 3.51254940032959, + "step": 4865 + }, + { + "epoch": 67.58715596330275, + "grad_norm": 0.2644849419593811, + "learning_rate": 0.0006, + "loss": 3.5213255882263184, + "step": 4866 + }, + { + "epoch": 67.60113586719092, + "grad_norm": 0.2375287413597107, + "learning_rate": 0.0006, + "loss": 3.5177063941955566, + "step": 4867 + }, + { + "epoch": 67.61511577107908, + "grad_norm": 0.2249385118484497, + "learning_rate": 0.0006, + "loss": 3.541508674621582, + "step": 4868 + }, + { + "epoch": 67.62909567496723, + "grad_norm": 0.2155243158340454, + "learning_rate": 0.0006, + "loss": 3.5091710090637207, + "step": 4869 + }, + { + "epoch": 67.6430755788554, + "grad_norm": 0.20459716022014618, + "learning_rate": 0.0006, + "loss": 3.5284833908081055, + "step": 4870 + }, + { + "epoch": 67.65705548274356, + "grad_norm": 0.22957809269428253, + "learning_rate": 0.0006, + "loss": 3.4831137657165527, + "step": 4871 + }, + { + "epoch": 67.67103538663171, + "grad_norm": 0.2776307165622711, + "learning_rate": 0.0006, + "loss": 3.5084991455078125, + "step": 4872 + }, + { + "epoch": 67.68501529051987, + "grad_norm": 0.2769255042076111, + "learning_rate": 0.0006, + "loss": 3.5352253913879395, + "step": 4873 + }, + { + "epoch": 67.69899519440804, + "grad_norm": 0.2233399897813797, + "learning_rate": 0.0006, + "loss": 3.5451040267944336, + "step": 4874 + }, + { + "epoch": 67.7129750982962, + "grad_norm": 0.20665188133716583, + "learning_rate": 0.0006, + "loss": 3.528292417526245, + "step": 4875 + }, + { + "epoch": 67.72695500218435, + "grad_norm": 0.22606195509433746, + "learning_rate": 0.0006, + "loss": 3.519838571548462, + "step": 4876 + }, + { + "epoch": 67.74093490607252, + "grad_norm": 0.22447355091571808, + "learning_rate": 0.0006, + "loss": 3.562148094177246, + "step": 4877 + }, + { + "epoch": 67.75491480996068, + "grad_norm": 0.2255096584558487, + "learning_rate": 0.0006, + "loss": 3.53926420211792, + "step": 4878 + }, + { + "epoch": 67.76889471384884, + "grad_norm": 0.2142494022846222, + "learning_rate": 0.0006, + "loss": 3.533456563949585, + "step": 4879 + }, + { + "epoch": 67.78287461773701, + "grad_norm": 0.2157258242368698, + "learning_rate": 0.0006, + "loss": 3.534109592437744, + "step": 4880 + }, + { + "epoch": 67.79685452162516, + "grad_norm": 0.20596624910831451, + "learning_rate": 0.0006, + "loss": 3.5252795219421387, + "step": 4881 + }, + { + "epoch": 67.81083442551332, + "grad_norm": 0.24075612425804138, + "learning_rate": 0.0006, + "loss": 3.549905300140381, + "step": 4882 + }, + { + "epoch": 67.82481432940149, + "grad_norm": 0.27206453680992126, + "learning_rate": 0.0006, + "loss": 3.4850993156433105, + "step": 4883 + }, + { + "epoch": 67.83879423328965, + "grad_norm": 0.2525651454925537, + "learning_rate": 0.0006, + "loss": 3.4936270713806152, + "step": 4884 + }, + { + "epoch": 67.8527741371778, + "grad_norm": 0.20669442415237427, + "learning_rate": 0.0006, + "loss": 3.5201377868652344, + "step": 4885 + }, + { + "epoch": 67.86675404106597, + "grad_norm": 0.19694887101650238, + "learning_rate": 0.0006, + "loss": 3.5146493911743164, + "step": 4886 + }, + { + "epoch": 67.88073394495413, + "grad_norm": 0.20657725632190704, + "learning_rate": 0.0006, + "loss": 3.539475917816162, + "step": 4887 + }, + { + "epoch": 67.89471384884229, + "grad_norm": 0.2321559488773346, + "learning_rate": 0.0006, + "loss": 3.541250705718994, + "step": 4888 + }, + { + "epoch": 67.90869375273044, + "grad_norm": 0.22864052653312683, + "learning_rate": 0.0006, + "loss": 3.5151207447052, + "step": 4889 + }, + { + "epoch": 67.92267365661861, + "grad_norm": 0.2121419608592987, + "learning_rate": 0.0006, + "loss": 3.5219309329986572, + "step": 4890 + }, + { + "epoch": 67.93665356050677, + "grad_norm": 0.2194126695394516, + "learning_rate": 0.0006, + "loss": 3.5411415100097656, + "step": 4891 + }, + { + "epoch": 67.95063346439493, + "grad_norm": 0.23670069873332977, + "learning_rate": 0.0006, + "loss": 3.56632137298584, + "step": 4892 + }, + { + "epoch": 67.9646133682831, + "grad_norm": 0.22159531712532043, + "learning_rate": 0.0006, + "loss": 3.5245089530944824, + "step": 4893 + }, + { + "epoch": 67.97859327217125, + "grad_norm": 0.20856274664402008, + "learning_rate": 0.0006, + "loss": 3.5363054275512695, + "step": 4894 + }, + { + "epoch": 67.99257317605941, + "grad_norm": 0.21568304300308228, + "learning_rate": 0.0006, + "loss": 3.5226120948791504, + "step": 4895 + }, + { + "epoch": 68.0, + "grad_norm": 0.22287404537200928, + "learning_rate": 0.0006, + "loss": 3.5020053386688232, + "step": 4896 + }, + { + "epoch": 68.0, + "eval_loss": 3.976909637451172, + "eval_runtime": 44.2603, + "eval_samples_per_second": 55.174, + "eval_steps_per_second": 3.457, + "step": 4896 + }, + { + "epoch": 68.01397990388816, + "grad_norm": 0.20234280824661255, + "learning_rate": 0.0006, + "loss": 3.484044075012207, + "step": 4897 + }, + { + "epoch": 68.02795980777633, + "grad_norm": 0.2183598279953003, + "learning_rate": 0.0006, + "loss": 3.4933700561523438, + "step": 4898 + }, + { + "epoch": 68.04193971166448, + "grad_norm": 0.24236822128295898, + "learning_rate": 0.0006, + "loss": 3.5028629302978516, + "step": 4899 + }, + { + "epoch": 68.05591961555264, + "grad_norm": 0.26641783118247986, + "learning_rate": 0.0006, + "loss": 3.475382089614868, + "step": 4900 + }, + { + "epoch": 68.06989951944081, + "grad_norm": 0.2867112159729004, + "learning_rate": 0.0006, + "loss": 3.5016913414001465, + "step": 4901 + }, + { + "epoch": 68.08387942332897, + "grad_norm": 0.24962085485458374, + "learning_rate": 0.0006, + "loss": 3.484367609024048, + "step": 4902 + }, + { + "epoch": 68.09785932721712, + "grad_norm": 0.2124275118112564, + "learning_rate": 0.0006, + "loss": 3.5119738578796387, + "step": 4903 + }, + { + "epoch": 68.1118392311053, + "grad_norm": 0.24732011556625366, + "learning_rate": 0.0006, + "loss": 3.486185073852539, + "step": 4904 + }, + { + "epoch": 68.12581913499345, + "grad_norm": 0.28683924674987793, + "learning_rate": 0.0006, + "loss": 3.495997905731201, + "step": 4905 + }, + { + "epoch": 68.1397990388816, + "grad_norm": 0.25751420855522156, + "learning_rate": 0.0006, + "loss": 3.4736456871032715, + "step": 4906 + }, + { + "epoch": 68.15377894276976, + "grad_norm": 0.24258914589881897, + "learning_rate": 0.0006, + "loss": 3.4900879859924316, + "step": 4907 + }, + { + "epoch": 68.16775884665793, + "grad_norm": 0.2878887951374054, + "learning_rate": 0.0006, + "loss": 3.4851484298706055, + "step": 4908 + }, + { + "epoch": 68.18173875054609, + "grad_norm": 0.27111393213272095, + "learning_rate": 0.0006, + "loss": 3.4835691452026367, + "step": 4909 + }, + { + "epoch": 68.19571865443424, + "grad_norm": 0.2475033849477768, + "learning_rate": 0.0006, + "loss": 3.4887213706970215, + "step": 4910 + }, + { + "epoch": 68.20969855832242, + "grad_norm": 0.267839252948761, + "learning_rate": 0.0006, + "loss": 3.515256404876709, + "step": 4911 + }, + { + "epoch": 68.22367846221057, + "grad_norm": 0.2135075181722641, + "learning_rate": 0.0006, + "loss": 3.5156445503234863, + "step": 4912 + }, + { + "epoch": 68.23765836609873, + "grad_norm": 0.22425328195095062, + "learning_rate": 0.0006, + "loss": 3.505338668823242, + "step": 4913 + }, + { + "epoch": 68.2516382699869, + "grad_norm": 0.2322927862405777, + "learning_rate": 0.0006, + "loss": 3.519695281982422, + "step": 4914 + }, + { + "epoch": 68.26561817387505, + "grad_norm": 0.2472568154335022, + "learning_rate": 0.0006, + "loss": 3.4845151901245117, + "step": 4915 + }, + { + "epoch": 68.27959807776321, + "grad_norm": 0.2725318968296051, + "learning_rate": 0.0006, + "loss": 3.4981484413146973, + "step": 4916 + }, + { + "epoch": 68.29357798165138, + "grad_norm": 0.2940191626548767, + "learning_rate": 0.0006, + "loss": 3.5088295936584473, + "step": 4917 + }, + { + "epoch": 68.30755788553954, + "grad_norm": 0.24303823709487915, + "learning_rate": 0.0006, + "loss": 3.492511749267578, + "step": 4918 + }, + { + "epoch": 68.3215377894277, + "grad_norm": 0.21951992809772491, + "learning_rate": 0.0006, + "loss": 3.509099006652832, + "step": 4919 + }, + { + "epoch": 68.33551769331586, + "grad_norm": 0.22776944935321808, + "learning_rate": 0.0006, + "loss": 3.501638650894165, + "step": 4920 + }, + { + "epoch": 68.34949759720402, + "grad_norm": 0.21173885464668274, + "learning_rate": 0.0006, + "loss": 3.4885807037353516, + "step": 4921 + }, + { + "epoch": 68.36347750109218, + "grad_norm": 0.2253648191690445, + "learning_rate": 0.0006, + "loss": 3.5350418090820312, + "step": 4922 + }, + { + "epoch": 68.37745740498035, + "grad_norm": 0.24312502145767212, + "learning_rate": 0.0006, + "loss": 3.490877866744995, + "step": 4923 + }, + { + "epoch": 68.3914373088685, + "grad_norm": 0.2103606015443802, + "learning_rate": 0.0006, + "loss": 3.5088863372802734, + "step": 4924 + }, + { + "epoch": 68.40541721275666, + "grad_norm": 0.19921863079071045, + "learning_rate": 0.0006, + "loss": 3.5282039642333984, + "step": 4925 + }, + { + "epoch": 68.41939711664482, + "grad_norm": 0.2041940689086914, + "learning_rate": 0.0006, + "loss": 3.5212771892547607, + "step": 4926 + }, + { + "epoch": 68.43337702053299, + "grad_norm": 0.22238804399967194, + "learning_rate": 0.0006, + "loss": 3.4951324462890625, + "step": 4927 + }, + { + "epoch": 68.44735692442114, + "grad_norm": 0.23161815106868744, + "learning_rate": 0.0006, + "loss": 3.5463013648986816, + "step": 4928 + }, + { + "epoch": 68.4613368283093, + "grad_norm": 0.21717964112758636, + "learning_rate": 0.0006, + "loss": 3.5081775188446045, + "step": 4929 + }, + { + "epoch": 68.47531673219747, + "grad_norm": 0.21505609154701233, + "learning_rate": 0.0006, + "loss": 3.52695631980896, + "step": 4930 + }, + { + "epoch": 68.48929663608563, + "grad_norm": 0.2720189094543457, + "learning_rate": 0.0006, + "loss": 3.497748374938965, + "step": 4931 + }, + { + "epoch": 68.50327653997378, + "grad_norm": 0.2619168758392334, + "learning_rate": 0.0006, + "loss": 3.5015270709991455, + "step": 4932 + }, + { + "epoch": 68.51725644386195, + "grad_norm": 0.21718725562095642, + "learning_rate": 0.0006, + "loss": 3.533599853515625, + "step": 4933 + }, + { + "epoch": 68.53123634775011, + "grad_norm": 0.22977295517921448, + "learning_rate": 0.0006, + "loss": 3.507884979248047, + "step": 4934 + }, + { + "epoch": 68.54521625163827, + "grad_norm": 0.230342298746109, + "learning_rate": 0.0006, + "loss": 3.497065544128418, + "step": 4935 + }, + { + "epoch": 68.55919615552644, + "grad_norm": 0.2253657728433609, + "learning_rate": 0.0006, + "loss": 3.5066728591918945, + "step": 4936 + }, + { + "epoch": 68.57317605941459, + "grad_norm": 0.23173992335796356, + "learning_rate": 0.0006, + "loss": 3.5072999000549316, + "step": 4937 + }, + { + "epoch": 68.58715596330275, + "grad_norm": 0.22984914481639862, + "learning_rate": 0.0006, + "loss": 3.5296144485473633, + "step": 4938 + }, + { + "epoch": 68.60113586719092, + "grad_norm": 0.2349584549665451, + "learning_rate": 0.0006, + "loss": 3.5185141563415527, + "step": 4939 + }, + { + "epoch": 68.61511577107908, + "grad_norm": 0.2469010204076767, + "learning_rate": 0.0006, + "loss": 3.545579433441162, + "step": 4940 + }, + { + "epoch": 68.62909567496723, + "grad_norm": 0.23078389465808868, + "learning_rate": 0.0006, + "loss": 3.5281553268432617, + "step": 4941 + }, + { + "epoch": 68.6430755788554, + "grad_norm": 0.23545116186141968, + "learning_rate": 0.0006, + "loss": 3.5376791954040527, + "step": 4942 + }, + { + "epoch": 68.65705548274356, + "grad_norm": 0.22288277745246887, + "learning_rate": 0.0006, + "loss": 3.490978240966797, + "step": 4943 + }, + { + "epoch": 68.67103538663171, + "grad_norm": 0.21703778207302094, + "learning_rate": 0.0006, + "loss": 3.505856513977051, + "step": 4944 + }, + { + "epoch": 68.68501529051987, + "grad_norm": 0.24922960996627808, + "learning_rate": 0.0006, + "loss": 3.5120937824249268, + "step": 4945 + }, + { + "epoch": 68.69899519440804, + "grad_norm": 0.24075160920619965, + "learning_rate": 0.0006, + "loss": 3.515216588973999, + "step": 4946 + }, + { + "epoch": 68.7129750982962, + "grad_norm": 0.21714574098587036, + "learning_rate": 0.0006, + "loss": 3.5308592319488525, + "step": 4947 + }, + { + "epoch": 68.72695500218435, + "grad_norm": 0.21521902084350586, + "learning_rate": 0.0006, + "loss": 3.5040221214294434, + "step": 4948 + }, + { + "epoch": 68.74093490607252, + "grad_norm": 0.2078350931406021, + "learning_rate": 0.0006, + "loss": 3.5399329662323, + "step": 4949 + }, + { + "epoch": 68.75491480996068, + "grad_norm": 0.23039595782756805, + "learning_rate": 0.0006, + "loss": 3.5079939365386963, + "step": 4950 + }, + { + "epoch": 68.76889471384884, + "grad_norm": 0.23072801530361176, + "learning_rate": 0.0006, + "loss": 3.5254414081573486, + "step": 4951 + }, + { + "epoch": 68.78287461773701, + "grad_norm": 0.204904243350029, + "learning_rate": 0.0006, + "loss": 3.5212371349334717, + "step": 4952 + }, + { + "epoch": 68.79685452162516, + "grad_norm": 0.21405813097953796, + "learning_rate": 0.0006, + "loss": 3.557215690612793, + "step": 4953 + }, + { + "epoch": 68.81083442551332, + "grad_norm": 0.2332632839679718, + "learning_rate": 0.0006, + "loss": 3.522718906402588, + "step": 4954 + }, + { + "epoch": 68.82481432940149, + "grad_norm": 0.2211279273033142, + "learning_rate": 0.0006, + "loss": 3.534191608428955, + "step": 4955 + }, + { + "epoch": 68.83879423328965, + "grad_norm": 0.2153792679309845, + "learning_rate": 0.0006, + "loss": 3.497591018676758, + "step": 4956 + }, + { + "epoch": 68.8527741371778, + "grad_norm": 0.28634506464004517, + "learning_rate": 0.0006, + "loss": 3.5333778858184814, + "step": 4957 + }, + { + "epoch": 68.86675404106597, + "grad_norm": 0.2748981714248657, + "learning_rate": 0.0006, + "loss": 3.533328056335449, + "step": 4958 + }, + { + "epoch": 68.88073394495413, + "grad_norm": 0.22137348353862762, + "learning_rate": 0.0006, + "loss": 3.516744613647461, + "step": 4959 + }, + { + "epoch": 68.89471384884229, + "grad_norm": 0.21476638317108154, + "learning_rate": 0.0006, + "loss": 3.5090954303741455, + "step": 4960 + }, + { + "epoch": 68.90869375273044, + "grad_norm": 0.2204403430223465, + "learning_rate": 0.0006, + "loss": 3.534665107727051, + "step": 4961 + }, + { + "epoch": 68.92267365661861, + "grad_norm": 0.20083564519882202, + "learning_rate": 0.0006, + "loss": 3.5572776794433594, + "step": 4962 + }, + { + "epoch": 68.93665356050677, + "grad_norm": 0.23286207020282745, + "learning_rate": 0.0006, + "loss": 3.5279769897460938, + "step": 4963 + }, + { + "epoch": 68.95063346439493, + "grad_norm": 0.2934340536594391, + "learning_rate": 0.0006, + "loss": 3.5299172401428223, + "step": 4964 + }, + { + "epoch": 68.9646133682831, + "grad_norm": 0.29742664098739624, + "learning_rate": 0.0006, + "loss": 3.5258350372314453, + "step": 4965 + }, + { + "epoch": 68.97859327217125, + "grad_norm": 0.23674239218235016, + "learning_rate": 0.0006, + "loss": 3.511875629425049, + "step": 4966 + }, + { + "epoch": 68.99257317605941, + "grad_norm": 0.1859714239835739, + "learning_rate": 0.0006, + "loss": 3.5111045837402344, + "step": 4967 + }, + { + "epoch": 69.0, + "grad_norm": 0.21548990905284882, + "learning_rate": 0.0006, + "loss": 3.567469358444214, + "step": 4968 + }, + { + "epoch": 69.0, + "eval_loss": 3.987680673599243, + "eval_runtime": 44.8193, + "eval_samples_per_second": 54.485, + "eval_steps_per_second": 3.414, + "step": 4968 + }, + { + "epoch": 69.01397990388816, + "grad_norm": 0.25460419058799744, + "learning_rate": 0.0006, + "loss": 3.513350009918213, + "step": 4969 + }, + { + "epoch": 69.02795980777633, + "grad_norm": 0.2635819613933563, + "learning_rate": 0.0006, + "loss": 3.516538143157959, + "step": 4970 + }, + { + "epoch": 69.04193971166448, + "grad_norm": 0.25024983286857605, + "learning_rate": 0.0006, + "loss": 3.501711845397949, + "step": 4971 + }, + { + "epoch": 69.05591961555264, + "grad_norm": 0.23533429205417633, + "learning_rate": 0.0006, + "loss": 3.4735984802246094, + "step": 4972 + }, + { + "epoch": 69.06989951944081, + "grad_norm": 0.23477932810783386, + "learning_rate": 0.0006, + "loss": 3.532632827758789, + "step": 4973 + }, + { + "epoch": 69.08387942332897, + "grad_norm": 0.23769758641719818, + "learning_rate": 0.0006, + "loss": 3.4775495529174805, + "step": 4974 + }, + { + "epoch": 69.09785932721712, + "grad_norm": 0.24599312245845795, + "learning_rate": 0.0006, + "loss": 3.481222629547119, + "step": 4975 + }, + { + "epoch": 69.1118392311053, + "grad_norm": 0.24212618172168732, + "learning_rate": 0.0006, + "loss": 3.485240936279297, + "step": 4976 + }, + { + "epoch": 69.12581913499345, + "grad_norm": 0.2271437644958496, + "learning_rate": 0.0006, + "loss": 3.476949691772461, + "step": 4977 + }, + { + "epoch": 69.1397990388816, + "grad_norm": 0.2542489469051361, + "learning_rate": 0.0006, + "loss": 3.4601399898529053, + "step": 4978 + }, + { + "epoch": 69.15377894276976, + "grad_norm": 0.24926388263702393, + "learning_rate": 0.0006, + "loss": 3.4832189083099365, + "step": 4979 + }, + { + "epoch": 69.16775884665793, + "grad_norm": 0.22356736660003662, + "learning_rate": 0.0006, + "loss": 3.5187554359436035, + "step": 4980 + }, + { + "epoch": 69.18173875054609, + "grad_norm": 0.21727295219898224, + "learning_rate": 0.0006, + "loss": 3.5310418605804443, + "step": 4981 + }, + { + "epoch": 69.19571865443424, + "grad_norm": 0.22234170138835907, + "learning_rate": 0.0006, + "loss": 3.506479263305664, + "step": 4982 + }, + { + "epoch": 69.20969855832242, + "grad_norm": 0.21620802581310272, + "learning_rate": 0.0006, + "loss": 3.488720655441284, + "step": 4983 + }, + { + "epoch": 69.22367846221057, + "grad_norm": 0.23558273911476135, + "learning_rate": 0.0006, + "loss": 3.4884839057922363, + "step": 4984 + }, + { + "epoch": 69.23765836609873, + "grad_norm": 0.2330513894557953, + "learning_rate": 0.0006, + "loss": 3.4810781478881836, + "step": 4985 + }, + { + "epoch": 69.2516382699869, + "grad_norm": 0.23570097982883453, + "learning_rate": 0.0006, + "loss": 3.4966390132904053, + "step": 4986 + }, + { + "epoch": 69.26561817387505, + "grad_norm": 0.2415456771850586, + "learning_rate": 0.0006, + "loss": 3.499464511871338, + "step": 4987 + }, + { + "epoch": 69.27959807776321, + "grad_norm": 0.22498410940170288, + "learning_rate": 0.0006, + "loss": 3.494260311126709, + "step": 4988 + }, + { + "epoch": 69.29357798165138, + "grad_norm": 0.23802009224891663, + "learning_rate": 0.0006, + "loss": 3.4801578521728516, + "step": 4989 + }, + { + "epoch": 69.30755788553954, + "grad_norm": 0.24189673364162445, + "learning_rate": 0.0006, + "loss": 3.513599395751953, + "step": 4990 + }, + { + "epoch": 69.3215377894277, + "grad_norm": 0.21577486395835876, + "learning_rate": 0.0006, + "loss": 3.493995428085327, + "step": 4991 + }, + { + "epoch": 69.33551769331586, + "grad_norm": 0.21220745146274567, + "learning_rate": 0.0006, + "loss": 3.495041847229004, + "step": 4992 + }, + { + "epoch": 69.34949759720402, + "grad_norm": 0.248879075050354, + "learning_rate": 0.0006, + "loss": 3.5003933906555176, + "step": 4993 + }, + { + "epoch": 69.36347750109218, + "grad_norm": 0.26753994822502136, + "learning_rate": 0.0006, + "loss": 3.491333484649658, + "step": 4994 + }, + { + "epoch": 69.37745740498035, + "grad_norm": 0.24140691757202148, + "learning_rate": 0.0006, + "loss": 3.495715618133545, + "step": 4995 + }, + { + "epoch": 69.3914373088685, + "grad_norm": 0.20997264981269836, + "learning_rate": 0.0006, + "loss": 3.520455837249756, + "step": 4996 + }, + { + "epoch": 69.40541721275666, + "grad_norm": 0.21708904206752777, + "learning_rate": 0.0006, + "loss": 3.4696202278137207, + "step": 4997 + }, + { + "epoch": 69.41939711664482, + "grad_norm": 0.25731977820396423, + "learning_rate": 0.0006, + "loss": 3.4827113151550293, + "step": 4998 + }, + { + "epoch": 69.43337702053299, + "grad_norm": 0.24132139980793, + "learning_rate": 0.0006, + "loss": 3.5224547386169434, + "step": 4999 + }, + { + "epoch": 69.44735692442114, + "grad_norm": 0.21150226891040802, + "learning_rate": 0.0006, + "loss": 3.4872965812683105, + "step": 5000 + }, + { + "epoch": 69.4613368283093, + "grad_norm": 0.20874962210655212, + "learning_rate": 0.0006, + "loss": 3.477656364440918, + "step": 5001 + }, + { + "epoch": 69.47531673219747, + "grad_norm": 0.20523078739643097, + "learning_rate": 0.0006, + "loss": 3.4912261962890625, + "step": 5002 + }, + { + "epoch": 69.48929663608563, + "grad_norm": 0.20590092241764069, + "learning_rate": 0.0006, + "loss": 3.5227253437042236, + "step": 5003 + }, + { + "epoch": 69.50327653997378, + "grad_norm": 0.21837440133094788, + "learning_rate": 0.0006, + "loss": 3.514094591140747, + "step": 5004 + }, + { + "epoch": 69.51725644386195, + "grad_norm": 0.23487630486488342, + "learning_rate": 0.0006, + "loss": 3.517775535583496, + "step": 5005 + }, + { + "epoch": 69.53123634775011, + "grad_norm": 0.23771126568317413, + "learning_rate": 0.0006, + "loss": 3.5164601802825928, + "step": 5006 + }, + { + "epoch": 69.54521625163827, + "grad_norm": 0.23423148691654205, + "learning_rate": 0.0006, + "loss": 3.5120983123779297, + "step": 5007 + }, + { + "epoch": 69.55919615552644, + "grad_norm": 0.2332620471715927, + "learning_rate": 0.0006, + "loss": 3.5184125900268555, + "step": 5008 + }, + { + "epoch": 69.57317605941459, + "grad_norm": 0.24148650467395782, + "learning_rate": 0.0006, + "loss": 3.509979248046875, + "step": 5009 + }, + { + "epoch": 69.58715596330275, + "grad_norm": 0.20881295204162598, + "learning_rate": 0.0006, + "loss": 3.5542125701904297, + "step": 5010 + }, + { + "epoch": 69.60113586719092, + "grad_norm": 0.21871483325958252, + "learning_rate": 0.0006, + "loss": 3.5178754329681396, + "step": 5011 + }, + { + "epoch": 69.61511577107908, + "grad_norm": 0.21630224585533142, + "learning_rate": 0.0006, + "loss": 3.5215046405792236, + "step": 5012 + }, + { + "epoch": 69.62909567496723, + "grad_norm": 0.2211679369211197, + "learning_rate": 0.0006, + "loss": 3.5213570594787598, + "step": 5013 + }, + { + "epoch": 69.6430755788554, + "grad_norm": 0.2206520140171051, + "learning_rate": 0.0006, + "loss": 3.5378212928771973, + "step": 5014 + }, + { + "epoch": 69.65705548274356, + "grad_norm": 0.21500450372695923, + "learning_rate": 0.0006, + "loss": 3.536560535430908, + "step": 5015 + }, + { + "epoch": 69.67103538663171, + "grad_norm": 0.2839236855506897, + "learning_rate": 0.0006, + "loss": 3.4911935329437256, + "step": 5016 + }, + { + "epoch": 69.68501529051987, + "grad_norm": 0.28307443857192993, + "learning_rate": 0.0006, + "loss": 3.5304269790649414, + "step": 5017 + }, + { + "epoch": 69.69899519440804, + "grad_norm": 0.20590558648109436, + "learning_rate": 0.0006, + "loss": 3.505474328994751, + "step": 5018 + }, + { + "epoch": 69.7129750982962, + "grad_norm": 0.24152527749538422, + "learning_rate": 0.0006, + "loss": 3.501438617706299, + "step": 5019 + }, + { + "epoch": 69.72695500218435, + "grad_norm": 0.21834975481033325, + "learning_rate": 0.0006, + "loss": 3.515756130218506, + "step": 5020 + }, + { + "epoch": 69.74093490607252, + "grad_norm": 0.2066304087638855, + "learning_rate": 0.0006, + "loss": 3.507535457611084, + "step": 5021 + }, + { + "epoch": 69.75491480996068, + "grad_norm": 0.2547939419746399, + "learning_rate": 0.0006, + "loss": 3.512665033340454, + "step": 5022 + }, + { + "epoch": 69.76889471384884, + "grad_norm": 0.25813716650009155, + "learning_rate": 0.0006, + "loss": 3.517632484436035, + "step": 5023 + }, + { + "epoch": 69.78287461773701, + "grad_norm": 0.223160520195961, + "learning_rate": 0.0006, + "loss": 3.5371553897857666, + "step": 5024 + }, + { + "epoch": 69.79685452162516, + "grad_norm": 0.2616842985153198, + "learning_rate": 0.0006, + "loss": 3.519502639770508, + "step": 5025 + }, + { + "epoch": 69.81083442551332, + "grad_norm": 0.2976956367492676, + "learning_rate": 0.0006, + "loss": 3.521639108657837, + "step": 5026 + }, + { + "epoch": 69.82481432940149, + "grad_norm": 0.253215491771698, + "learning_rate": 0.0006, + "loss": 3.5242714881896973, + "step": 5027 + }, + { + "epoch": 69.83879423328965, + "grad_norm": 0.2184867113828659, + "learning_rate": 0.0006, + "loss": 3.5430054664611816, + "step": 5028 + }, + { + "epoch": 69.8527741371778, + "grad_norm": 0.2110685110092163, + "learning_rate": 0.0006, + "loss": 3.518589735031128, + "step": 5029 + }, + { + "epoch": 69.86675404106597, + "grad_norm": 0.20499959588050842, + "learning_rate": 0.0006, + "loss": 3.5182108879089355, + "step": 5030 + }, + { + "epoch": 69.88073394495413, + "grad_norm": 0.21809129416942596, + "learning_rate": 0.0006, + "loss": 3.52005672454834, + "step": 5031 + }, + { + "epoch": 69.89471384884229, + "grad_norm": 0.22639480233192444, + "learning_rate": 0.0006, + "loss": 3.5405101776123047, + "step": 5032 + }, + { + "epoch": 69.90869375273044, + "grad_norm": 0.23321937024593353, + "learning_rate": 0.0006, + "loss": 3.5433502197265625, + "step": 5033 + }, + { + "epoch": 69.92267365661861, + "grad_norm": 0.22899670898914337, + "learning_rate": 0.0006, + "loss": 3.5300326347351074, + "step": 5034 + }, + { + "epoch": 69.93665356050677, + "grad_norm": 0.20367449522018433, + "learning_rate": 0.0006, + "loss": 3.5184967517852783, + "step": 5035 + }, + { + "epoch": 69.95063346439493, + "grad_norm": 0.21195004880428314, + "learning_rate": 0.0006, + "loss": 3.518951416015625, + "step": 5036 + }, + { + "epoch": 69.9646133682831, + "grad_norm": 0.23766686022281647, + "learning_rate": 0.0006, + "loss": 3.5148468017578125, + "step": 5037 + }, + { + "epoch": 69.97859327217125, + "grad_norm": 0.2558269500732422, + "learning_rate": 0.0006, + "loss": 3.5006861686706543, + "step": 5038 + }, + { + "epoch": 69.99257317605941, + "grad_norm": 0.23287998139858246, + "learning_rate": 0.0006, + "loss": 3.533900260925293, + "step": 5039 + }, + { + "epoch": 70.0, + "grad_norm": 0.24295051395893097, + "learning_rate": 0.0006, + "loss": 3.539205551147461, + "step": 5040 + }, + { + "epoch": 70.0, + "eval_loss": 3.9832167625427246, + "eval_runtime": 44.8557, + "eval_samples_per_second": 54.441, + "eval_steps_per_second": 3.411, + "step": 5040 + }, + { + "epoch": 70.01397990388816, + "grad_norm": 0.2342662364244461, + "learning_rate": 0.0006, + "loss": 3.4744529724121094, + "step": 5041 + }, + { + "epoch": 70.02795980777633, + "grad_norm": 0.24356921017169952, + "learning_rate": 0.0006, + "loss": 3.4678807258605957, + "step": 5042 + }, + { + "epoch": 70.04193971166448, + "grad_norm": 0.23141354322433472, + "learning_rate": 0.0006, + "loss": 3.4766411781311035, + "step": 5043 + }, + { + "epoch": 70.05591961555264, + "grad_norm": 0.2291923612356186, + "learning_rate": 0.0006, + "loss": 3.520775318145752, + "step": 5044 + }, + { + "epoch": 70.06989951944081, + "grad_norm": 0.24368838965892792, + "learning_rate": 0.0006, + "loss": 3.498244285583496, + "step": 5045 + }, + { + "epoch": 70.08387942332897, + "grad_norm": 0.24241037666797638, + "learning_rate": 0.0006, + "loss": 3.5297322273254395, + "step": 5046 + }, + { + "epoch": 70.09785932721712, + "grad_norm": 0.23169396817684174, + "learning_rate": 0.0006, + "loss": 3.4835686683654785, + "step": 5047 + }, + { + "epoch": 70.1118392311053, + "grad_norm": 0.21968135237693787, + "learning_rate": 0.0006, + "loss": 3.4419684410095215, + "step": 5048 + }, + { + "epoch": 70.12581913499345, + "grad_norm": 0.22738288342952728, + "learning_rate": 0.0006, + "loss": 3.4862613677978516, + "step": 5049 + }, + { + "epoch": 70.1397990388816, + "grad_norm": 0.2366214394569397, + "learning_rate": 0.0006, + "loss": 3.4799740314483643, + "step": 5050 + }, + { + "epoch": 70.15377894276976, + "grad_norm": 0.2310013324022293, + "learning_rate": 0.0006, + "loss": 3.491863250732422, + "step": 5051 + }, + { + "epoch": 70.16775884665793, + "grad_norm": 0.22765891253948212, + "learning_rate": 0.0006, + "loss": 3.4830703735351562, + "step": 5052 + }, + { + "epoch": 70.18173875054609, + "grad_norm": 0.23263567686080933, + "learning_rate": 0.0006, + "loss": 3.4692440032958984, + "step": 5053 + }, + { + "epoch": 70.19571865443424, + "grad_norm": 0.22552041709423065, + "learning_rate": 0.0006, + "loss": 3.4950807094573975, + "step": 5054 + }, + { + "epoch": 70.20969855832242, + "grad_norm": 0.2157282680273056, + "learning_rate": 0.0006, + "loss": 3.501680374145508, + "step": 5055 + }, + { + "epoch": 70.22367846221057, + "grad_norm": 0.2158394753932953, + "learning_rate": 0.0006, + "loss": 3.4894015789031982, + "step": 5056 + }, + { + "epoch": 70.23765836609873, + "grad_norm": 0.22618336975574493, + "learning_rate": 0.0006, + "loss": 3.479133129119873, + "step": 5057 + }, + { + "epoch": 70.2516382699869, + "grad_norm": 0.23803631961345673, + "learning_rate": 0.0006, + "loss": 3.4984683990478516, + "step": 5058 + }, + { + "epoch": 70.26561817387505, + "grad_norm": 0.23439951241016388, + "learning_rate": 0.0006, + "loss": 3.503323554992676, + "step": 5059 + }, + { + "epoch": 70.27959807776321, + "grad_norm": 0.23607788980007172, + "learning_rate": 0.0006, + "loss": 3.5056004524230957, + "step": 5060 + }, + { + "epoch": 70.29357798165138, + "grad_norm": 0.22633908689022064, + "learning_rate": 0.0006, + "loss": 3.5278968811035156, + "step": 5061 + }, + { + "epoch": 70.30755788553954, + "grad_norm": 0.21656733751296997, + "learning_rate": 0.0006, + "loss": 3.5163440704345703, + "step": 5062 + }, + { + "epoch": 70.3215377894277, + "grad_norm": 0.19461899995803833, + "learning_rate": 0.0006, + "loss": 3.506269931793213, + "step": 5063 + }, + { + "epoch": 70.33551769331586, + "grad_norm": 0.22591930627822876, + "learning_rate": 0.0006, + "loss": 3.51469087600708, + "step": 5064 + }, + { + "epoch": 70.34949759720402, + "grad_norm": 0.23841705918312073, + "learning_rate": 0.0006, + "loss": 3.4775524139404297, + "step": 5065 + }, + { + "epoch": 70.36347750109218, + "grad_norm": 0.24957220256328583, + "learning_rate": 0.0006, + "loss": 3.5303030014038086, + "step": 5066 + }, + { + "epoch": 70.37745740498035, + "grad_norm": 0.2574119567871094, + "learning_rate": 0.0006, + "loss": 3.524887800216675, + "step": 5067 + }, + { + "epoch": 70.3914373088685, + "grad_norm": 0.23704029619693756, + "learning_rate": 0.0006, + "loss": 3.5258219242095947, + "step": 5068 + }, + { + "epoch": 70.40541721275666, + "grad_norm": 0.221607968211174, + "learning_rate": 0.0006, + "loss": 3.5022010803222656, + "step": 5069 + }, + { + "epoch": 70.41939711664482, + "grad_norm": 0.2071426510810852, + "learning_rate": 0.0006, + "loss": 3.499718189239502, + "step": 5070 + }, + { + "epoch": 70.43337702053299, + "grad_norm": 0.2146281599998474, + "learning_rate": 0.0006, + "loss": 3.495534896850586, + "step": 5071 + }, + { + "epoch": 70.44735692442114, + "grad_norm": 0.21276946365833282, + "learning_rate": 0.0006, + "loss": 3.5138864517211914, + "step": 5072 + }, + { + "epoch": 70.4613368283093, + "grad_norm": 0.21113698184490204, + "learning_rate": 0.0006, + "loss": 3.531108856201172, + "step": 5073 + }, + { + "epoch": 70.47531673219747, + "grad_norm": 0.233713299036026, + "learning_rate": 0.0006, + "loss": 3.499675750732422, + "step": 5074 + }, + { + "epoch": 70.48929663608563, + "grad_norm": 0.2445792704820633, + "learning_rate": 0.0006, + "loss": 3.489576816558838, + "step": 5075 + }, + { + "epoch": 70.50327653997378, + "grad_norm": 0.22929179668426514, + "learning_rate": 0.0006, + "loss": 3.511636257171631, + "step": 5076 + }, + { + "epoch": 70.51725644386195, + "grad_norm": 0.21347999572753906, + "learning_rate": 0.0006, + "loss": 3.482804536819458, + "step": 5077 + }, + { + "epoch": 70.53123634775011, + "grad_norm": 0.21338650584220886, + "learning_rate": 0.0006, + "loss": 3.4532628059387207, + "step": 5078 + }, + { + "epoch": 70.54521625163827, + "grad_norm": 0.24062009155750275, + "learning_rate": 0.0006, + "loss": 3.5084481239318848, + "step": 5079 + }, + { + "epoch": 70.55919615552644, + "grad_norm": 0.2101839929819107, + "learning_rate": 0.0006, + "loss": 3.5022215843200684, + "step": 5080 + }, + { + "epoch": 70.57317605941459, + "grad_norm": 0.21427087485790253, + "learning_rate": 0.0006, + "loss": 3.468010902404785, + "step": 5081 + }, + { + "epoch": 70.58715596330275, + "grad_norm": 0.21073004603385925, + "learning_rate": 0.0006, + "loss": 3.53702974319458, + "step": 5082 + }, + { + "epoch": 70.60113586719092, + "grad_norm": 0.2176336646080017, + "learning_rate": 0.0006, + "loss": 3.4857382774353027, + "step": 5083 + }, + { + "epoch": 70.61511577107908, + "grad_norm": 0.24387815594673157, + "learning_rate": 0.0006, + "loss": 3.5301153659820557, + "step": 5084 + }, + { + "epoch": 70.62909567496723, + "grad_norm": 0.2560335397720337, + "learning_rate": 0.0006, + "loss": 3.4792633056640625, + "step": 5085 + }, + { + "epoch": 70.6430755788554, + "grad_norm": 0.24951279163360596, + "learning_rate": 0.0006, + "loss": 3.5134525299072266, + "step": 5086 + }, + { + "epoch": 70.65705548274356, + "grad_norm": 0.23483215272426605, + "learning_rate": 0.0006, + "loss": 3.5170576572418213, + "step": 5087 + }, + { + "epoch": 70.67103538663171, + "grad_norm": 0.21526923775672913, + "learning_rate": 0.0006, + "loss": 3.4973630905151367, + "step": 5088 + }, + { + "epoch": 70.68501529051987, + "grad_norm": 0.2129240781068802, + "learning_rate": 0.0006, + "loss": 3.5371346473693848, + "step": 5089 + }, + { + "epoch": 70.69899519440804, + "grad_norm": 0.22548805177211761, + "learning_rate": 0.0006, + "loss": 3.509589195251465, + "step": 5090 + }, + { + "epoch": 70.7129750982962, + "grad_norm": 0.21366626024246216, + "learning_rate": 0.0006, + "loss": 3.5004022121429443, + "step": 5091 + }, + { + "epoch": 70.72695500218435, + "grad_norm": 0.2066943347454071, + "learning_rate": 0.0006, + "loss": 3.5086469650268555, + "step": 5092 + }, + { + "epoch": 70.74093490607252, + "grad_norm": 0.20916718244552612, + "learning_rate": 0.0006, + "loss": 3.508835554122925, + "step": 5093 + }, + { + "epoch": 70.75491480996068, + "grad_norm": 0.21769332885742188, + "learning_rate": 0.0006, + "loss": 3.470569372177124, + "step": 5094 + }, + { + "epoch": 70.76889471384884, + "grad_norm": 0.2393418401479721, + "learning_rate": 0.0006, + "loss": 3.5554609298706055, + "step": 5095 + }, + { + "epoch": 70.78287461773701, + "grad_norm": 0.22856567800045013, + "learning_rate": 0.0006, + "loss": 3.5240354537963867, + "step": 5096 + }, + { + "epoch": 70.79685452162516, + "grad_norm": 0.2168598771095276, + "learning_rate": 0.0006, + "loss": 3.5223824977874756, + "step": 5097 + }, + { + "epoch": 70.81083442551332, + "grad_norm": 0.23636406660079956, + "learning_rate": 0.0006, + "loss": 3.515028953552246, + "step": 5098 + }, + { + "epoch": 70.82481432940149, + "grad_norm": 0.25196272134780884, + "learning_rate": 0.0006, + "loss": 3.5251357555389404, + "step": 5099 + }, + { + "epoch": 70.83879423328965, + "grad_norm": 0.2760903239250183, + "learning_rate": 0.0006, + "loss": 3.5171520709991455, + "step": 5100 + }, + { + "epoch": 70.8527741371778, + "grad_norm": 0.24275866150856018, + "learning_rate": 0.0006, + "loss": 3.515378713607788, + "step": 5101 + }, + { + "epoch": 70.86675404106597, + "grad_norm": 0.20806105434894562, + "learning_rate": 0.0006, + "loss": 3.5539910793304443, + "step": 5102 + }, + { + "epoch": 70.88073394495413, + "grad_norm": 0.22015595436096191, + "learning_rate": 0.0006, + "loss": 3.5204410552978516, + "step": 5103 + }, + { + "epoch": 70.89471384884229, + "grad_norm": 0.2634579837322235, + "learning_rate": 0.0006, + "loss": 3.531816005706787, + "step": 5104 + }, + { + "epoch": 70.90869375273044, + "grad_norm": 0.2532503008842468, + "learning_rate": 0.0006, + "loss": 3.494335174560547, + "step": 5105 + }, + { + "epoch": 70.92267365661861, + "grad_norm": 0.21336589753627777, + "learning_rate": 0.0006, + "loss": 3.527202606201172, + "step": 5106 + }, + { + "epoch": 70.93665356050677, + "grad_norm": 0.20789426565170288, + "learning_rate": 0.0006, + "loss": 3.516286849975586, + "step": 5107 + }, + { + "epoch": 70.95063346439493, + "grad_norm": 0.21855080127716064, + "learning_rate": 0.0006, + "loss": 3.510622978210449, + "step": 5108 + }, + { + "epoch": 70.9646133682831, + "grad_norm": 0.21742936968803406, + "learning_rate": 0.0006, + "loss": 3.5159173011779785, + "step": 5109 + }, + { + "epoch": 70.97859327217125, + "grad_norm": 0.21697010099887848, + "learning_rate": 0.0006, + "loss": 3.5253071784973145, + "step": 5110 + }, + { + "epoch": 70.99257317605941, + "grad_norm": 0.1939983069896698, + "learning_rate": 0.0006, + "loss": 3.5092079639434814, + "step": 5111 + }, + { + "epoch": 71.0, + "grad_norm": 0.21768872439861298, + "learning_rate": 0.0006, + "loss": 3.549747943878174, + "step": 5112 + }, + { + "epoch": 71.0, + "eval_loss": 3.981994867324829, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 5112 + }, + { + "epoch": 71.01397990388816, + "grad_norm": 0.20411916077136993, + "learning_rate": 0.0006, + "loss": 3.4846625328063965, + "step": 5113 + }, + { + "epoch": 71.02795980777633, + "grad_norm": 0.23582075536251068, + "learning_rate": 0.0006, + "loss": 3.5063037872314453, + "step": 5114 + }, + { + "epoch": 71.04193971166448, + "grad_norm": 0.25915080308914185, + "learning_rate": 0.0006, + "loss": 3.487607955932617, + "step": 5115 + }, + { + "epoch": 71.05591961555264, + "grad_norm": 0.279734343290329, + "learning_rate": 0.0006, + "loss": 3.4697108268737793, + "step": 5116 + }, + { + "epoch": 71.06989951944081, + "grad_norm": 0.2628752589225769, + "learning_rate": 0.0006, + "loss": 3.493368625640869, + "step": 5117 + }, + { + "epoch": 71.08387942332897, + "grad_norm": 0.22309084236621857, + "learning_rate": 0.0006, + "loss": 3.484891891479492, + "step": 5118 + }, + { + "epoch": 71.09785932721712, + "grad_norm": 0.302577406167984, + "learning_rate": 0.0006, + "loss": 3.485151767730713, + "step": 5119 + }, + { + "epoch": 71.1118392311053, + "grad_norm": 0.37276333570480347, + "learning_rate": 0.0006, + "loss": 3.4952797889709473, + "step": 5120 + }, + { + "epoch": 71.12581913499345, + "grad_norm": 0.3283502757549286, + "learning_rate": 0.0006, + "loss": 3.4817187786102295, + "step": 5121 + }, + { + "epoch": 71.1397990388816, + "grad_norm": 0.2639681398868561, + "learning_rate": 0.0006, + "loss": 3.488034248352051, + "step": 5122 + }, + { + "epoch": 71.15377894276976, + "grad_norm": 0.23883986473083496, + "learning_rate": 0.0006, + "loss": 3.4839282035827637, + "step": 5123 + }, + { + "epoch": 71.16775884665793, + "grad_norm": 0.25839197635650635, + "learning_rate": 0.0006, + "loss": 3.4969372749328613, + "step": 5124 + }, + { + "epoch": 71.18173875054609, + "grad_norm": 0.2511022090911865, + "learning_rate": 0.0006, + "loss": 3.4977002143859863, + "step": 5125 + }, + { + "epoch": 71.19571865443424, + "grad_norm": 0.23030386865139008, + "learning_rate": 0.0006, + "loss": 3.499420404434204, + "step": 5126 + }, + { + "epoch": 71.20969855832242, + "grad_norm": 0.26834407448768616, + "learning_rate": 0.0006, + "loss": 3.492626190185547, + "step": 5127 + }, + { + "epoch": 71.22367846221057, + "grad_norm": 0.25042101740837097, + "learning_rate": 0.0006, + "loss": 3.50586199760437, + "step": 5128 + }, + { + "epoch": 71.23765836609873, + "grad_norm": 0.23350484669208527, + "learning_rate": 0.0006, + "loss": 3.4870376586914062, + "step": 5129 + }, + { + "epoch": 71.2516382699869, + "grad_norm": 0.26074114441871643, + "learning_rate": 0.0006, + "loss": 3.4873902797698975, + "step": 5130 + }, + { + "epoch": 71.26561817387505, + "grad_norm": 0.23405839502811432, + "learning_rate": 0.0006, + "loss": 3.477447032928467, + "step": 5131 + }, + { + "epoch": 71.27959807776321, + "grad_norm": 0.22196513414382935, + "learning_rate": 0.0006, + "loss": 3.513475179672241, + "step": 5132 + }, + { + "epoch": 71.29357798165138, + "grad_norm": 0.21518723666667938, + "learning_rate": 0.0006, + "loss": 3.4947776794433594, + "step": 5133 + }, + { + "epoch": 71.30755788553954, + "grad_norm": 0.2067832201719284, + "learning_rate": 0.0006, + "loss": 3.4992613792419434, + "step": 5134 + }, + { + "epoch": 71.3215377894277, + "grad_norm": 0.2346884161233902, + "learning_rate": 0.0006, + "loss": 3.510505437850952, + "step": 5135 + }, + { + "epoch": 71.33551769331586, + "grad_norm": 0.21138189733028412, + "learning_rate": 0.0006, + "loss": 3.4731202125549316, + "step": 5136 + }, + { + "epoch": 71.34949759720402, + "grad_norm": 0.21185064315795898, + "learning_rate": 0.0006, + "loss": 3.5232839584350586, + "step": 5137 + }, + { + "epoch": 71.36347750109218, + "grad_norm": 0.25712820887565613, + "learning_rate": 0.0006, + "loss": 3.46025013923645, + "step": 5138 + }, + { + "epoch": 71.37745740498035, + "grad_norm": 0.21276356279850006, + "learning_rate": 0.0006, + "loss": 3.489804983139038, + "step": 5139 + }, + { + "epoch": 71.3914373088685, + "grad_norm": 0.2022353708744049, + "learning_rate": 0.0006, + "loss": 3.504286289215088, + "step": 5140 + }, + { + "epoch": 71.40541721275666, + "grad_norm": 0.21934957802295685, + "learning_rate": 0.0006, + "loss": 3.517760753631592, + "step": 5141 + }, + { + "epoch": 71.41939711664482, + "grad_norm": 0.2196030169725418, + "learning_rate": 0.0006, + "loss": 3.5004754066467285, + "step": 5142 + }, + { + "epoch": 71.43337702053299, + "grad_norm": 0.2015426605939865, + "learning_rate": 0.0006, + "loss": 3.465399980545044, + "step": 5143 + }, + { + "epoch": 71.44735692442114, + "grad_norm": 0.20420803129673004, + "learning_rate": 0.0006, + "loss": 3.4855151176452637, + "step": 5144 + }, + { + "epoch": 71.4613368283093, + "grad_norm": 0.20710550248622894, + "learning_rate": 0.0006, + "loss": 3.479557514190674, + "step": 5145 + }, + { + "epoch": 71.47531673219747, + "grad_norm": 0.21790869534015656, + "learning_rate": 0.0006, + "loss": 3.478614330291748, + "step": 5146 + }, + { + "epoch": 71.48929663608563, + "grad_norm": 0.2018311470746994, + "learning_rate": 0.0006, + "loss": 3.488673448562622, + "step": 5147 + }, + { + "epoch": 71.50327653997378, + "grad_norm": 0.21153512597084045, + "learning_rate": 0.0006, + "loss": 3.5044631958007812, + "step": 5148 + }, + { + "epoch": 71.51725644386195, + "grad_norm": 0.21591797471046448, + "learning_rate": 0.0006, + "loss": 3.522662401199341, + "step": 5149 + }, + { + "epoch": 71.53123634775011, + "grad_norm": 0.20586389303207397, + "learning_rate": 0.0006, + "loss": 3.4791407585144043, + "step": 5150 + }, + { + "epoch": 71.54521625163827, + "grad_norm": 0.2201298475265503, + "learning_rate": 0.0006, + "loss": 3.4494271278381348, + "step": 5151 + }, + { + "epoch": 71.55919615552644, + "grad_norm": 0.22793325781822205, + "learning_rate": 0.0006, + "loss": 3.495795726776123, + "step": 5152 + }, + { + "epoch": 71.57317605941459, + "grad_norm": 0.2414522022008896, + "learning_rate": 0.0006, + "loss": 3.5030856132507324, + "step": 5153 + }, + { + "epoch": 71.58715596330275, + "grad_norm": 0.23775361478328705, + "learning_rate": 0.0006, + "loss": 3.519958972930908, + "step": 5154 + }, + { + "epoch": 71.60113586719092, + "grad_norm": 0.21599332988262177, + "learning_rate": 0.0006, + "loss": 3.518765449523926, + "step": 5155 + }, + { + "epoch": 71.61511577107908, + "grad_norm": 0.19520622491836548, + "learning_rate": 0.0006, + "loss": 3.514953136444092, + "step": 5156 + }, + { + "epoch": 71.62909567496723, + "grad_norm": 0.21063624322414398, + "learning_rate": 0.0006, + "loss": 3.507232189178467, + "step": 5157 + }, + { + "epoch": 71.6430755788554, + "grad_norm": 0.20278486609458923, + "learning_rate": 0.0006, + "loss": 3.5083611011505127, + "step": 5158 + }, + { + "epoch": 71.65705548274356, + "grad_norm": 0.20769764482975006, + "learning_rate": 0.0006, + "loss": 3.5421876907348633, + "step": 5159 + }, + { + "epoch": 71.67103538663171, + "grad_norm": 0.21942169964313507, + "learning_rate": 0.0006, + "loss": 3.511857509613037, + "step": 5160 + }, + { + "epoch": 71.68501529051987, + "grad_norm": 0.21532300114631653, + "learning_rate": 0.0006, + "loss": 3.4975109100341797, + "step": 5161 + }, + { + "epoch": 71.69899519440804, + "grad_norm": 0.20382282137870789, + "learning_rate": 0.0006, + "loss": 3.500424861907959, + "step": 5162 + }, + { + "epoch": 71.7129750982962, + "grad_norm": 0.22072380781173706, + "learning_rate": 0.0006, + "loss": 3.50101900100708, + "step": 5163 + }, + { + "epoch": 71.72695500218435, + "grad_norm": 0.21554681658744812, + "learning_rate": 0.0006, + "loss": 3.528384208679199, + "step": 5164 + }, + { + "epoch": 71.74093490607252, + "grad_norm": 0.22927747666835785, + "learning_rate": 0.0006, + "loss": 3.488309621810913, + "step": 5165 + }, + { + "epoch": 71.75491480996068, + "grad_norm": 0.23190589249134064, + "learning_rate": 0.0006, + "loss": 3.547053337097168, + "step": 5166 + }, + { + "epoch": 71.76889471384884, + "grad_norm": 0.262680321931839, + "learning_rate": 0.0006, + "loss": 3.5154809951782227, + "step": 5167 + }, + { + "epoch": 71.78287461773701, + "grad_norm": 0.29555177688598633, + "learning_rate": 0.0006, + "loss": 3.4969329833984375, + "step": 5168 + }, + { + "epoch": 71.79685452162516, + "grad_norm": 0.26300716400146484, + "learning_rate": 0.0006, + "loss": 3.4716663360595703, + "step": 5169 + }, + { + "epoch": 71.81083442551332, + "grad_norm": 0.21645912528038025, + "learning_rate": 0.0006, + "loss": 3.4847588539123535, + "step": 5170 + }, + { + "epoch": 71.82481432940149, + "grad_norm": 0.21476063132286072, + "learning_rate": 0.0006, + "loss": 3.4949374198913574, + "step": 5171 + }, + { + "epoch": 71.83879423328965, + "grad_norm": 0.26659518480300903, + "learning_rate": 0.0006, + "loss": 3.519371271133423, + "step": 5172 + }, + { + "epoch": 71.8527741371778, + "grad_norm": 0.2567320764064789, + "learning_rate": 0.0006, + "loss": 3.522982120513916, + "step": 5173 + }, + { + "epoch": 71.86675404106597, + "grad_norm": 0.21162307262420654, + "learning_rate": 0.0006, + "loss": 3.489562749862671, + "step": 5174 + }, + { + "epoch": 71.88073394495413, + "grad_norm": 0.22359566390514374, + "learning_rate": 0.0006, + "loss": 3.51139760017395, + "step": 5175 + }, + { + "epoch": 71.89471384884229, + "grad_norm": 0.19192424416542053, + "learning_rate": 0.0006, + "loss": 3.568310260772705, + "step": 5176 + }, + { + "epoch": 71.90869375273044, + "grad_norm": 0.21490535140037537, + "learning_rate": 0.0006, + "loss": 3.52728271484375, + "step": 5177 + }, + { + "epoch": 71.92267365661861, + "grad_norm": 0.21532146632671356, + "learning_rate": 0.0006, + "loss": 3.533647060394287, + "step": 5178 + }, + { + "epoch": 71.93665356050677, + "grad_norm": 0.2047201246023178, + "learning_rate": 0.0006, + "loss": 3.528214931488037, + "step": 5179 + }, + { + "epoch": 71.95063346439493, + "grad_norm": 0.20230898261070251, + "learning_rate": 0.0006, + "loss": 3.530636787414551, + "step": 5180 + }, + { + "epoch": 71.9646133682831, + "grad_norm": 0.1971510648727417, + "learning_rate": 0.0006, + "loss": 3.5658822059631348, + "step": 5181 + }, + { + "epoch": 71.97859327217125, + "grad_norm": 0.21853342652320862, + "learning_rate": 0.0006, + "loss": 3.4901480674743652, + "step": 5182 + }, + { + "epoch": 71.99257317605941, + "grad_norm": 0.2481825053691864, + "learning_rate": 0.0006, + "loss": 3.5149893760681152, + "step": 5183 + }, + { + "epoch": 72.0, + "grad_norm": 0.28394815325737, + "learning_rate": 0.0006, + "loss": 3.5142500400543213, + "step": 5184 + }, + { + "epoch": 72.0, + "eval_loss": 3.9889707565307617, + "eval_runtime": 44.317, + "eval_samples_per_second": 55.103, + "eval_steps_per_second": 3.452, + "step": 5184 + }, + { + "epoch": 72.01397990388816, + "grad_norm": 0.26481005549430847, + "learning_rate": 0.0006, + "loss": 3.46201753616333, + "step": 5185 + }, + { + "epoch": 72.02795980777633, + "grad_norm": 0.25808629393577576, + "learning_rate": 0.0006, + "loss": 3.4581098556518555, + "step": 5186 + }, + { + "epoch": 72.04193971166448, + "grad_norm": 0.25713175535202026, + "learning_rate": 0.0006, + "loss": 3.48715877532959, + "step": 5187 + }, + { + "epoch": 72.05591961555264, + "grad_norm": 0.23583672940731049, + "learning_rate": 0.0006, + "loss": 3.498791217803955, + "step": 5188 + }, + { + "epoch": 72.06989951944081, + "grad_norm": 0.23554176092147827, + "learning_rate": 0.0006, + "loss": 3.4428248405456543, + "step": 5189 + }, + { + "epoch": 72.08387942332897, + "grad_norm": 0.26283830404281616, + "learning_rate": 0.0006, + "loss": 3.4555912017822266, + "step": 5190 + }, + { + "epoch": 72.09785932721712, + "grad_norm": 0.23904164135456085, + "learning_rate": 0.0006, + "loss": 3.447741985321045, + "step": 5191 + }, + { + "epoch": 72.1118392311053, + "grad_norm": 0.2249821275472641, + "learning_rate": 0.0006, + "loss": 3.4523983001708984, + "step": 5192 + }, + { + "epoch": 72.12581913499345, + "grad_norm": 0.22013622522354126, + "learning_rate": 0.0006, + "loss": 3.480325698852539, + "step": 5193 + }, + { + "epoch": 72.1397990388816, + "grad_norm": 0.21792154014110565, + "learning_rate": 0.0006, + "loss": 3.460036277770996, + "step": 5194 + }, + { + "epoch": 72.15377894276976, + "grad_norm": 0.2302364856004715, + "learning_rate": 0.0006, + "loss": 3.4833297729492188, + "step": 5195 + }, + { + "epoch": 72.16775884665793, + "grad_norm": 0.21317389607429504, + "learning_rate": 0.0006, + "loss": 3.5042786598205566, + "step": 5196 + }, + { + "epoch": 72.18173875054609, + "grad_norm": 0.19275978207588196, + "learning_rate": 0.0006, + "loss": 3.5171995162963867, + "step": 5197 + }, + { + "epoch": 72.19571865443424, + "grad_norm": 0.21028508245944977, + "learning_rate": 0.0006, + "loss": 3.457441806793213, + "step": 5198 + }, + { + "epoch": 72.20969855832242, + "grad_norm": 0.1986231505870819, + "learning_rate": 0.0006, + "loss": 3.489072322845459, + "step": 5199 + }, + { + "epoch": 72.22367846221057, + "grad_norm": 0.19699154794216156, + "learning_rate": 0.0006, + "loss": 3.468651533126831, + "step": 5200 + }, + { + "epoch": 72.23765836609873, + "grad_norm": 0.20329497754573822, + "learning_rate": 0.0006, + "loss": 3.4969425201416016, + "step": 5201 + }, + { + "epoch": 72.2516382699869, + "grad_norm": 0.20615696907043457, + "learning_rate": 0.0006, + "loss": 3.4797892570495605, + "step": 5202 + }, + { + "epoch": 72.26561817387505, + "grad_norm": 0.20542259514331818, + "learning_rate": 0.0006, + "loss": 3.530893325805664, + "step": 5203 + }, + { + "epoch": 72.27959807776321, + "grad_norm": 0.21758593618869781, + "learning_rate": 0.0006, + "loss": 3.494999647140503, + "step": 5204 + }, + { + "epoch": 72.29357798165138, + "grad_norm": 0.21938979625701904, + "learning_rate": 0.0006, + "loss": 3.4716687202453613, + "step": 5205 + }, + { + "epoch": 72.30755788553954, + "grad_norm": 0.21116693317890167, + "learning_rate": 0.0006, + "loss": 3.510025978088379, + "step": 5206 + }, + { + "epoch": 72.3215377894277, + "grad_norm": 0.22996407747268677, + "learning_rate": 0.0006, + "loss": 3.515085220336914, + "step": 5207 + }, + { + "epoch": 72.33551769331586, + "grad_norm": 0.23071469366550446, + "learning_rate": 0.0006, + "loss": 3.4844086170196533, + "step": 5208 + }, + { + "epoch": 72.34949759720402, + "grad_norm": 0.25695133209228516, + "learning_rate": 0.0006, + "loss": 3.5199429988861084, + "step": 5209 + }, + { + "epoch": 72.36347750109218, + "grad_norm": 0.2724803388118744, + "learning_rate": 0.0006, + "loss": 3.516205072402954, + "step": 5210 + }, + { + "epoch": 72.37745740498035, + "grad_norm": 0.2681419551372528, + "learning_rate": 0.0006, + "loss": 3.499340295791626, + "step": 5211 + }, + { + "epoch": 72.3914373088685, + "grad_norm": 0.2519148886203766, + "learning_rate": 0.0006, + "loss": 3.508042812347412, + "step": 5212 + }, + { + "epoch": 72.40541721275666, + "grad_norm": 0.2280866652727127, + "learning_rate": 0.0006, + "loss": 3.501939058303833, + "step": 5213 + }, + { + "epoch": 72.41939711664482, + "grad_norm": 0.2323485016822815, + "learning_rate": 0.0006, + "loss": 3.4846863746643066, + "step": 5214 + }, + { + "epoch": 72.43337702053299, + "grad_norm": 0.2441403865814209, + "learning_rate": 0.0006, + "loss": 3.4963583946228027, + "step": 5215 + }, + { + "epoch": 72.44735692442114, + "grad_norm": 0.2406138777732849, + "learning_rate": 0.0006, + "loss": 3.4914402961730957, + "step": 5216 + }, + { + "epoch": 72.4613368283093, + "grad_norm": 0.23548054695129395, + "learning_rate": 0.0006, + "loss": 3.5411581993103027, + "step": 5217 + }, + { + "epoch": 72.47531673219747, + "grad_norm": 0.21609817445278168, + "learning_rate": 0.0006, + "loss": 3.5331366062164307, + "step": 5218 + }, + { + "epoch": 72.48929663608563, + "grad_norm": 0.20667463541030884, + "learning_rate": 0.0006, + "loss": 3.4875259399414062, + "step": 5219 + }, + { + "epoch": 72.50327653997378, + "grad_norm": 0.21997129917144775, + "learning_rate": 0.0006, + "loss": 3.45741868019104, + "step": 5220 + }, + { + "epoch": 72.51725644386195, + "grad_norm": 0.23778799176216125, + "learning_rate": 0.0006, + "loss": 3.5240767002105713, + "step": 5221 + }, + { + "epoch": 72.53123634775011, + "grad_norm": 0.2373982071876526, + "learning_rate": 0.0006, + "loss": 3.4988675117492676, + "step": 5222 + }, + { + "epoch": 72.54521625163827, + "grad_norm": 0.24703051149845123, + "learning_rate": 0.0006, + "loss": 3.512615203857422, + "step": 5223 + }, + { + "epoch": 72.55919615552644, + "grad_norm": 0.2259516716003418, + "learning_rate": 0.0006, + "loss": 3.5054564476013184, + "step": 5224 + }, + { + "epoch": 72.57317605941459, + "grad_norm": 0.20849403738975525, + "learning_rate": 0.0006, + "loss": 3.513225555419922, + "step": 5225 + }, + { + "epoch": 72.58715596330275, + "grad_norm": 0.20204737782478333, + "learning_rate": 0.0006, + "loss": 3.499671220779419, + "step": 5226 + }, + { + "epoch": 72.60113586719092, + "grad_norm": 0.2146504670381546, + "learning_rate": 0.0006, + "loss": 3.479963779449463, + "step": 5227 + }, + { + "epoch": 72.61511577107908, + "grad_norm": 0.2070881426334381, + "learning_rate": 0.0006, + "loss": 3.4819841384887695, + "step": 5228 + }, + { + "epoch": 72.62909567496723, + "grad_norm": 0.21011002361774445, + "learning_rate": 0.0006, + "loss": 3.480698347091675, + "step": 5229 + }, + { + "epoch": 72.6430755788554, + "grad_norm": 0.22228984534740448, + "learning_rate": 0.0006, + "loss": 3.504167318344116, + "step": 5230 + }, + { + "epoch": 72.65705548274356, + "grad_norm": 0.21016335487365723, + "learning_rate": 0.0006, + "loss": 3.4877564907073975, + "step": 5231 + }, + { + "epoch": 72.67103538663171, + "grad_norm": 0.20774874091148376, + "learning_rate": 0.0006, + "loss": 3.5095250606536865, + "step": 5232 + }, + { + "epoch": 72.68501529051987, + "grad_norm": 0.21587499976158142, + "learning_rate": 0.0006, + "loss": 3.481410503387451, + "step": 5233 + }, + { + "epoch": 72.69899519440804, + "grad_norm": 0.21865521371364594, + "learning_rate": 0.0006, + "loss": 3.4801032543182373, + "step": 5234 + }, + { + "epoch": 72.7129750982962, + "grad_norm": 0.20692583918571472, + "learning_rate": 0.0006, + "loss": 3.5247631072998047, + "step": 5235 + }, + { + "epoch": 72.72695500218435, + "grad_norm": 0.21028351783752441, + "learning_rate": 0.0006, + "loss": 3.4889426231384277, + "step": 5236 + }, + { + "epoch": 72.74093490607252, + "grad_norm": 0.20704887807369232, + "learning_rate": 0.0006, + "loss": 3.514674663543701, + "step": 5237 + }, + { + "epoch": 72.75491480996068, + "grad_norm": 0.22431230545043945, + "learning_rate": 0.0006, + "loss": 3.520341396331787, + "step": 5238 + }, + { + "epoch": 72.76889471384884, + "grad_norm": 0.26835498213768005, + "learning_rate": 0.0006, + "loss": 3.515369176864624, + "step": 5239 + }, + { + "epoch": 72.78287461773701, + "grad_norm": 0.2570379376411438, + "learning_rate": 0.0006, + "loss": 3.5058908462524414, + "step": 5240 + }, + { + "epoch": 72.79685452162516, + "grad_norm": 0.22710268199443817, + "learning_rate": 0.0006, + "loss": 3.5321788787841797, + "step": 5241 + }, + { + "epoch": 72.81083442551332, + "grad_norm": 0.21135354042053223, + "learning_rate": 0.0006, + "loss": 3.5038869380950928, + "step": 5242 + }, + { + "epoch": 72.82481432940149, + "grad_norm": 0.20677657425403595, + "learning_rate": 0.0006, + "loss": 3.509671211242676, + "step": 5243 + }, + { + "epoch": 72.83879423328965, + "grad_norm": 0.21803733706474304, + "learning_rate": 0.0006, + "loss": 3.540374755859375, + "step": 5244 + }, + { + "epoch": 72.8527741371778, + "grad_norm": 0.24457798898220062, + "learning_rate": 0.0006, + "loss": 3.5087430477142334, + "step": 5245 + }, + { + "epoch": 72.86675404106597, + "grad_norm": 0.2483559548854828, + "learning_rate": 0.0006, + "loss": 3.5065975189208984, + "step": 5246 + }, + { + "epoch": 72.88073394495413, + "grad_norm": 0.22601056098937988, + "learning_rate": 0.0006, + "loss": 3.533181667327881, + "step": 5247 + }, + { + "epoch": 72.89471384884229, + "grad_norm": 0.1951705366373062, + "learning_rate": 0.0006, + "loss": 3.5082955360412598, + "step": 5248 + }, + { + "epoch": 72.90869375273044, + "grad_norm": 0.2373722940683365, + "learning_rate": 0.0006, + "loss": 3.5175671577453613, + "step": 5249 + }, + { + "epoch": 72.92267365661861, + "grad_norm": 0.2238793820142746, + "learning_rate": 0.0006, + "loss": 3.4822793006896973, + "step": 5250 + }, + { + "epoch": 72.93665356050677, + "grad_norm": 0.19394482672214508, + "learning_rate": 0.0006, + "loss": 3.5329837799072266, + "step": 5251 + }, + { + "epoch": 72.95063346439493, + "grad_norm": 0.19733992218971252, + "learning_rate": 0.0006, + "loss": 3.516442060470581, + "step": 5252 + }, + { + "epoch": 72.9646133682831, + "grad_norm": 0.1991652250289917, + "learning_rate": 0.0006, + "loss": 3.4855995178222656, + "step": 5253 + }, + { + "epoch": 72.97859327217125, + "grad_norm": 0.20192593336105347, + "learning_rate": 0.0006, + "loss": 3.500981330871582, + "step": 5254 + }, + { + "epoch": 72.99257317605941, + "grad_norm": 0.1900099813938141, + "learning_rate": 0.0006, + "loss": 3.516650676727295, + "step": 5255 + }, + { + "epoch": 73.0, + "grad_norm": 0.2279117852449417, + "learning_rate": 0.0006, + "loss": 3.5318033695220947, + "step": 5256 + }, + { + "epoch": 73.0, + "eval_loss": 3.990769147872925, + "eval_runtime": 44.8752, + "eval_samples_per_second": 54.418, + "eval_steps_per_second": 3.409, + "step": 5256 + }, + { + "epoch": 73.01397990388816, + "grad_norm": 0.21681782603263855, + "learning_rate": 0.0006, + "loss": 3.481177806854248, + "step": 5257 + }, + { + "epoch": 73.02795980777633, + "grad_norm": 0.23727980256080627, + "learning_rate": 0.0006, + "loss": 3.4718916416168213, + "step": 5258 + }, + { + "epoch": 73.04193971166448, + "grad_norm": 0.3004179000854492, + "learning_rate": 0.0006, + "loss": 3.4856271743774414, + "step": 5259 + }, + { + "epoch": 73.05591961555264, + "grad_norm": 0.3563845157623291, + "learning_rate": 0.0006, + "loss": 3.5074610710144043, + "step": 5260 + }, + { + "epoch": 73.06989951944081, + "grad_norm": 0.28933605551719666, + "learning_rate": 0.0006, + "loss": 3.4824771881103516, + "step": 5261 + }, + { + "epoch": 73.08387942332897, + "grad_norm": 0.20685118436813354, + "learning_rate": 0.0006, + "loss": 3.4652299880981445, + "step": 5262 + }, + { + "epoch": 73.09785932721712, + "grad_norm": 0.27588045597076416, + "learning_rate": 0.0006, + "loss": 3.5053865909576416, + "step": 5263 + }, + { + "epoch": 73.1118392311053, + "grad_norm": 0.28780898451805115, + "learning_rate": 0.0006, + "loss": 3.4900169372558594, + "step": 5264 + }, + { + "epoch": 73.12581913499345, + "grad_norm": 0.25440889596939087, + "learning_rate": 0.0006, + "loss": 3.473628520965576, + "step": 5265 + }, + { + "epoch": 73.1397990388816, + "grad_norm": 0.23374824225902557, + "learning_rate": 0.0006, + "loss": 3.473111629486084, + "step": 5266 + }, + { + "epoch": 73.15377894276976, + "grad_norm": 0.22421608865261078, + "learning_rate": 0.0006, + "loss": 3.4926185607910156, + "step": 5267 + }, + { + "epoch": 73.16775884665793, + "grad_norm": 0.24340282380580902, + "learning_rate": 0.0006, + "loss": 3.4895753860473633, + "step": 5268 + }, + { + "epoch": 73.18173875054609, + "grad_norm": 0.2423272281885147, + "learning_rate": 0.0006, + "loss": 3.498384952545166, + "step": 5269 + }, + { + "epoch": 73.19571865443424, + "grad_norm": 0.20698750019073486, + "learning_rate": 0.0006, + "loss": 3.4790406227111816, + "step": 5270 + }, + { + "epoch": 73.20969855832242, + "grad_norm": 0.21184271574020386, + "learning_rate": 0.0006, + "loss": 3.4132208824157715, + "step": 5271 + }, + { + "epoch": 73.22367846221057, + "grad_norm": 0.20834460854530334, + "learning_rate": 0.0006, + "loss": 3.4493658542633057, + "step": 5272 + }, + { + "epoch": 73.23765836609873, + "grad_norm": 0.20421066880226135, + "learning_rate": 0.0006, + "loss": 3.486607551574707, + "step": 5273 + }, + { + "epoch": 73.2516382699869, + "grad_norm": 0.2166317254304886, + "learning_rate": 0.0006, + "loss": 3.4880776405334473, + "step": 5274 + }, + { + "epoch": 73.26561817387505, + "grad_norm": 0.2271069586277008, + "learning_rate": 0.0006, + "loss": 3.5396530628204346, + "step": 5275 + }, + { + "epoch": 73.27959807776321, + "grad_norm": 0.2804903984069824, + "learning_rate": 0.0006, + "loss": 3.5006351470947266, + "step": 5276 + }, + { + "epoch": 73.29357798165138, + "grad_norm": 0.2573811113834381, + "learning_rate": 0.0006, + "loss": 3.4821765422821045, + "step": 5277 + }, + { + "epoch": 73.30755788553954, + "grad_norm": 0.23412485420703888, + "learning_rate": 0.0006, + "loss": 3.4935741424560547, + "step": 5278 + }, + { + "epoch": 73.3215377894277, + "grad_norm": 0.28513026237487793, + "learning_rate": 0.0006, + "loss": 3.4645705223083496, + "step": 5279 + }, + { + "epoch": 73.33551769331586, + "grad_norm": 0.29753562808036804, + "learning_rate": 0.0006, + "loss": 3.5176053047180176, + "step": 5280 + }, + { + "epoch": 73.34949759720402, + "grad_norm": 0.27373817563056946, + "learning_rate": 0.0006, + "loss": 3.4775936603546143, + "step": 5281 + }, + { + "epoch": 73.36347750109218, + "grad_norm": 0.2177509367465973, + "learning_rate": 0.0006, + "loss": 3.480635643005371, + "step": 5282 + }, + { + "epoch": 73.37745740498035, + "grad_norm": 0.25387322902679443, + "learning_rate": 0.0006, + "loss": 3.469754695892334, + "step": 5283 + }, + { + "epoch": 73.3914373088685, + "grad_norm": 0.2564674913883209, + "learning_rate": 0.0006, + "loss": 3.5017647743225098, + "step": 5284 + }, + { + "epoch": 73.40541721275666, + "grad_norm": 0.22612597048282623, + "learning_rate": 0.0006, + "loss": 3.4689712524414062, + "step": 5285 + }, + { + "epoch": 73.41939711664482, + "grad_norm": 0.2263033241033554, + "learning_rate": 0.0006, + "loss": 3.4711971282958984, + "step": 5286 + }, + { + "epoch": 73.43337702053299, + "grad_norm": 0.2290525883436203, + "learning_rate": 0.0006, + "loss": 3.4785008430480957, + "step": 5287 + }, + { + "epoch": 73.44735692442114, + "grad_norm": 0.2285647839307785, + "learning_rate": 0.0006, + "loss": 3.47416353225708, + "step": 5288 + }, + { + "epoch": 73.4613368283093, + "grad_norm": 0.2135833501815796, + "learning_rate": 0.0006, + "loss": 3.497528076171875, + "step": 5289 + }, + { + "epoch": 73.47531673219747, + "grad_norm": 0.24894089996814728, + "learning_rate": 0.0006, + "loss": 3.4764437675476074, + "step": 5290 + }, + { + "epoch": 73.48929663608563, + "grad_norm": 0.27769771218299866, + "learning_rate": 0.0006, + "loss": 3.530491828918457, + "step": 5291 + }, + { + "epoch": 73.50327653997378, + "grad_norm": 0.2881193161010742, + "learning_rate": 0.0006, + "loss": 3.480968475341797, + "step": 5292 + }, + { + "epoch": 73.51725644386195, + "grad_norm": 0.26066645979881287, + "learning_rate": 0.0006, + "loss": 3.488679885864258, + "step": 5293 + }, + { + "epoch": 73.53123634775011, + "grad_norm": 0.2325759381055832, + "learning_rate": 0.0006, + "loss": 3.50810170173645, + "step": 5294 + }, + { + "epoch": 73.54521625163827, + "grad_norm": 0.2113630324602127, + "learning_rate": 0.0006, + "loss": 3.516207218170166, + "step": 5295 + }, + { + "epoch": 73.55919615552644, + "grad_norm": 0.22719664871692657, + "learning_rate": 0.0006, + "loss": 3.5046021938323975, + "step": 5296 + }, + { + "epoch": 73.57317605941459, + "grad_norm": 0.20094481110572815, + "learning_rate": 0.0006, + "loss": 3.5129313468933105, + "step": 5297 + }, + { + "epoch": 73.58715596330275, + "grad_norm": 0.18975555896759033, + "learning_rate": 0.0006, + "loss": 3.4832587242126465, + "step": 5298 + }, + { + "epoch": 73.60113586719092, + "grad_norm": 0.2168205976486206, + "learning_rate": 0.0006, + "loss": 3.485678195953369, + "step": 5299 + }, + { + "epoch": 73.61511577107908, + "grad_norm": 0.20437777042388916, + "learning_rate": 0.0006, + "loss": 3.5342376232147217, + "step": 5300 + }, + { + "epoch": 73.62909567496723, + "grad_norm": 0.1951008290052414, + "learning_rate": 0.0006, + "loss": 3.496528148651123, + "step": 5301 + }, + { + "epoch": 73.6430755788554, + "grad_norm": 0.194418802857399, + "learning_rate": 0.0006, + "loss": 3.496985912322998, + "step": 5302 + }, + { + "epoch": 73.65705548274356, + "grad_norm": 0.21475602686405182, + "learning_rate": 0.0006, + "loss": 3.4993209838867188, + "step": 5303 + }, + { + "epoch": 73.67103538663171, + "grad_norm": 0.21515145897865295, + "learning_rate": 0.0006, + "loss": 3.5003676414489746, + "step": 5304 + }, + { + "epoch": 73.68501529051987, + "grad_norm": 0.19101263582706451, + "learning_rate": 0.0006, + "loss": 3.4970169067382812, + "step": 5305 + }, + { + "epoch": 73.69899519440804, + "grad_norm": 0.21630576252937317, + "learning_rate": 0.0006, + "loss": 3.4644386768341064, + "step": 5306 + }, + { + "epoch": 73.7129750982962, + "grad_norm": 0.2233273833990097, + "learning_rate": 0.0006, + "loss": 3.5082266330718994, + "step": 5307 + }, + { + "epoch": 73.72695500218435, + "grad_norm": 0.2207949310541153, + "learning_rate": 0.0006, + "loss": 3.5124080181121826, + "step": 5308 + }, + { + "epoch": 73.74093490607252, + "grad_norm": 0.2216075360774994, + "learning_rate": 0.0006, + "loss": 3.5385897159576416, + "step": 5309 + }, + { + "epoch": 73.75491480996068, + "grad_norm": 0.242542564868927, + "learning_rate": 0.0006, + "loss": 3.4922280311584473, + "step": 5310 + }, + { + "epoch": 73.76889471384884, + "grad_norm": 0.25550341606140137, + "learning_rate": 0.0006, + "loss": 3.5120809078216553, + "step": 5311 + }, + { + "epoch": 73.78287461773701, + "grad_norm": 0.2312568724155426, + "learning_rate": 0.0006, + "loss": 3.5122501850128174, + "step": 5312 + }, + { + "epoch": 73.79685452162516, + "grad_norm": 0.22861020267009735, + "learning_rate": 0.0006, + "loss": 3.5362534523010254, + "step": 5313 + }, + { + "epoch": 73.81083442551332, + "grad_norm": 0.2227325290441513, + "learning_rate": 0.0006, + "loss": 3.509556770324707, + "step": 5314 + }, + { + "epoch": 73.82481432940149, + "grad_norm": 0.20523901283740997, + "learning_rate": 0.0006, + "loss": 3.478180170059204, + "step": 5315 + }, + { + "epoch": 73.83879423328965, + "grad_norm": 0.21429577469825745, + "learning_rate": 0.0006, + "loss": 3.5295538902282715, + "step": 5316 + }, + { + "epoch": 73.8527741371778, + "grad_norm": 0.2419414520263672, + "learning_rate": 0.0006, + "loss": 3.518057346343994, + "step": 5317 + }, + { + "epoch": 73.86675404106597, + "grad_norm": 0.27580955624580383, + "learning_rate": 0.0006, + "loss": 3.5108370780944824, + "step": 5318 + }, + { + "epoch": 73.88073394495413, + "grad_norm": 0.24745431542396545, + "learning_rate": 0.0006, + "loss": 3.5286366939544678, + "step": 5319 + }, + { + "epoch": 73.89471384884229, + "grad_norm": 0.2149314135313034, + "learning_rate": 0.0006, + "loss": 3.485231399536133, + "step": 5320 + }, + { + "epoch": 73.90869375273044, + "grad_norm": 0.2078951895236969, + "learning_rate": 0.0006, + "loss": 3.5262768268585205, + "step": 5321 + }, + { + "epoch": 73.92267365661861, + "grad_norm": 0.2416444718837738, + "learning_rate": 0.0006, + "loss": 3.5233588218688965, + "step": 5322 + }, + { + "epoch": 73.93665356050677, + "grad_norm": 0.22926902770996094, + "learning_rate": 0.0006, + "loss": 3.5189247131347656, + "step": 5323 + }, + { + "epoch": 73.95063346439493, + "grad_norm": 0.21510642766952515, + "learning_rate": 0.0006, + "loss": 3.473496198654175, + "step": 5324 + }, + { + "epoch": 73.9646133682831, + "grad_norm": 0.2103978842496872, + "learning_rate": 0.0006, + "loss": 3.482978343963623, + "step": 5325 + }, + { + "epoch": 73.97859327217125, + "grad_norm": 0.1958087682723999, + "learning_rate": 0.0006, + "loss": 3.5095043182373047, + "step": 5326 + }, + { + "epoch": 73.99257317605941, + "grad_norm": 0.1914149820804596, + "learning_rate": 0.0006, + "loss": 3.5150370597839355, + "step": 5327 + }, + { + "epoch": 74.0, + "grad_norm": 0.23419693112373352, + "learning_rate": 0.0006, + "loss": 3.5106215476989746, + "step": 5328 + }, + { + "epoch": 74.0, + "eval_loss": 3.9748404026031494, + "eval_runtime": 44.8747, + "eval_samples_per_second": 54.418, + "eval_steps_per_second": 3.409, + "step": 5328 + }, + { + "epoch": 74.01397990388816, + "grad_norm": 0.2479415088891983, + "learning_rate": 0.0006, + "loss": 3.4701595306396484, + "step": 5329 + }, + { + "epoch": 74.02795980777633, + "grad_norm": 0.24987533688545227, + "learning_rate": 0.0006, + "loss": 3.4586291313171387, + "step": 5330 + }, + { + "epoch": 74.04193971166448, + "grad_norm": 0.23266810178756714, + "learning_rate": 0.0006, + "loss": 3.4172134399414062, + "step": 5331 + }, + { + "epoch": 74.05591961555264, + "grad_norm": 0.2236100137233734, + "learning_rate": 0.0006, + "loss": 3.4862887859344482, + "step": 5332 + }, + { + "epoch": 74.06989951944081, + "grad_norm": 0.20534487068653107, + "learning_rate": 0.0006, + "loss": 3.45927357673645, + "step": 5333 + }, + { + "epoch": 74.08387942332897, + "grad_norm": 0.2238253802061081, + "learning_rate": 0.0006, + "loss": 3.467851400375366, + "step": 5334 + }, + { + "epoch": 74.09785932721712, + "grad_norm": 0.26896408200263977, + "learning_rate": 0.0006, + "loss": 3.4854512214660645, + "step": 5335 + }, + { + "epoch": 74.1118392311053, + "grad_norm": 0.2958875000476837, + "learning_rate": 0.0006, + "loss": 3.4699835777282715, + "step": 5336 + }, + { + "epoch": 74.12581913499345, + "grad_norm": 0.2670096755027771, + "learning_rate": 0.0006, + "loss": 3.469750165939331, + "step": 5337 + }, + { + "epoch": 74.1397990388816, + "grad_norm": 0.24695175886154175, + "learning_rate": 0.0006, + "loss": 3.4648962020874023, + "step": 5338 + }, + { + "epoch": 74.15377894276976, + "grad_norm": 0.22581245005130768, + "learning_rate": 0.0006, + "loss": 3.4659342765808105, + "step": 5339 + }, + { + "epoch": 74.16775884665793, + "grad_norm": 0.214495450258255, + "learning_rate": 0.0006, + "loss": 3.484555721282959, + "step": 5340 + }, + { + "epoch": 74.18173875054609, + "grad_norm": 0.2219872921705246, + "learning_rate": 0.0006, + "loss": 3.4930648803710938, + "step": 5341 + }, + { + "epoch": 74.19571865443424, + "grad_norm": 0.23231728374958038, + "learning_rate": 0.0006, + "loss": 3.4828286170959473, + "step": 5342 + }, + { + "epoch": 74.20969855832242, + "grad_norm": 0.2273619920015335, + "learning_rate": 0.0006, + "loss": 3.4727272987365723, + "step": 5343 + }, + { + "epoch": 74.22367846221057, + "grad_norm": 0.22086025774478912, + "learning_rate": 0.0006, + "loss": 3.5108399391174316, + "step": 5344 + }, + { + "epoch": 74.23765836609873, + "grad_norm": 0.2132318615913391, + "learning_rate": 0.0006, + "loss": 3.4821221828460693, + "step": 5345 + }, + { + "epoch": 74.2516382699869, + "grad_norm": 0.2375437170267105, + "learning_rate": 0.0006, + "loss": 3.5120530128479004, + "step": 5346 + }, + { + "epoch": 74.26561817387505, + "grad_norm": 0.24744948744773865, + "learning_rate": 0.0006, + "loss": 3.4861230850219727, + "step": 5347 + }, + { + "epoch": 74.27959807776321, + "grad_norm": 0.2221650779247284, + "learning_rate": 0.0006, + "loss": 3.494476556777954, + "step": 5348 + }, + { + "epoch": 74.29357798165138, + "grad_norm": 0.1984807401895523, + "learning_rate": 0.0006, + "loss": 3.492462635040283, + "step": 5349 + }, + { + "epoch": 74.30755788553954, + "grad_norm": 0.2298664003610611, + "learning_rate": 0.0006, + "loss": 3.478318214416504, + "step": 5350 + }, + { + "epoch": 74.3215377894277, + "grad_norm": 0.25947070121765137, + "learning_rate": 0.0006, + "loss": 3.487811326980591, + "step": 5351 + }, + { + "epoch": 74.33551769331586, + "grad_norm": 0.23611490428447723, + "learning_rate": 0.0006, + "loss": 3.500941276550293, + "step": 5352 + }, + { + "epoch": 74.34949759720402, + "grad_norm": 0.2209966480731964, + "learning_rate": 0.0006, + "loss": 3.4910011291503906, + "step": 5353 + }, + { + "epoch": 74.36347750109218, + "grad_norm": 0.2637932300567627, + "learning_rate": 0.0006, + "loss": 3.5082242488861084, + "step": 5354 + }, + { + "epoch": 74.37745740498035, + "grad_norm": 0.27074548602104187, + "learning_rate": 0.0006, + "loss": 3.4829864501953125, + "step": 5355 + }, + { + "epoch": 74.3914373088685, + "grad_norm": 0.24120314419269562, + "learning_rate": 0.0006, + "loss": 3.5099215507507324, + "step": 5356 + }, + { + "epoch": 74.40541721275666, + "grad_norm": 0.22281570732593536, + "learning_rate": 0.0006, + "loss": 3.4863901138305664, + "step": 5357 + }, + { + "epoch": 74.41939711664482, + "grad_norm": 0.24500703811645508, + "learning_rate": 0.0006, + "loss": 3.492774248123169, + "step": 5358 + }, + { + "epoch": 74.43337702053299, + "grad_norm": 0.2938194274902344, + "learning_rate": 0.0006, + "loss": 3.5095953941345215, + "step": 5359 + }, + { + "epoch": 74.44735692442114, + "grad_norm": 0.23553980886936188, + "learning_rate": 0.0006, + "loss": 3.4738357067108154, + "step": 5360 + }, + { + "epoch": 74.4613368283093, + "grad_norm": 0.23400643467903137, + "learning_rate": 0.0006, + "loss": 3.503324508666992, + "step": 5361 + }, + { + "epoch": 74.47531673219747, + "grad_norm": 0.26702186465263367, + "learning_rate": 0.0006, + "loss": 3.5077764987945557, + "step": 5362 + }, + { + "epoch": 74.48929663608563, + "grad_norm": 0.26146429777145386, + "learning_rate": 0.0006, + "loss": 3.4926650524139404, + "step": 5363 + }, + { + "epoch": 74.50327653997378, + "grad_norm": 0.24903273582458496, + "learning_rate": 0.0006, + "loss": 3.4951210021972656, + "step": 5364 + }, + { + "epoch": 74.51725644386195, + "grad_norm": 0.2189243733882904, + "learning_rate": 0.0006, + "loss": 3.50642728805542, + "step": 5365 + }, + { + "epoch": 74.53123634775011, + "grad_norm": 0.2049291431903839, + "learning_rate": 0.0006, + "loss": 3.5034496784210205, + "step": 5366 + }, + { + "epoch": 74.54521625163827, + "grad_norm": 0.20688633620738983, + "learning_rate": 0.0006, + "loss": 3.4878382682800293, + "step": 5367 + }, + { + "epoch": 74.55919615552644, + "grad_norm": 0.201416477560997, + "learning_rate": 0.0006, + "loss": 3.503418445587158, + "step": 5368 + }, + { + "epoch": 74.57317605941459, + "grad_norm": 0.2094922661781311, + "learning_rate": 0.0006, + "loss": 3.4678902626037598, + "step": 5369 + }, + { + "epoch": 74.58715596330275, + "grad_norm": 0.23010285198688507, + "learning_rate": 0.0006, + "loss": 3.4749817848205566, + "step": 5370 + }, + { + "epoch": 74.60113586719092, + "grad_norm": 0.22642597556114197, + "learning_rate": 0.0006, + "loss": 3.4843454360961914, + "step": 5371 + }, + { + "epoch": 74.61511577107908, + "grad_norm": 0.2123269885778427, + "learning_rate": 0.0006, + "loss": 3.4823896884918213, + "step": 5372 + }, + { + "epoch": 74.62909567496723, + "grad_norm": 0.21990132331848145, + "learning_rate": 0.0006, + "loss": 3.4970970153808594, + "step": 5373 + }, + { + "epoch": 74.6430755788554, + "grad_norm": 0.23335176706314087, + "learning_rate": 0.0006, + "loss": 3.481468677520752, + "step": 5374 + }, + { + "epoch": 74.65705548274356, + "grad_norm": 0.22706177830696106, + "learning_rate": 0.0006, + "loss": 3.504356861114502, + "step": 5375 + }, + { + "epoch": 74.67103538663171, + "grad_norm": 0.22790828347206116, + "learning_rate": 0.0006, + "loss": 3.472900867462158, + "step": 5376 + }, + { + "epoch": 74.68501529051987, + "grad_norm": 0.26810064911842346, + "learning_rate": 0.0006, + "loss": 3.4734930992126465, + "step": 5377 + }, + { + "epoch": 74.69899519440804, + "grad_norm": 0.28308895230293274, + "learning_rate": 0.0006, + "loss": 3.5265793800354004, + "step": 5378 + }, + { + "epoch": 74.7129750982962, + "grad_norm": 0.23838670551776886, + "learning_rate": 0.0006, + "loss": 3.4594779014587402, + "step": 5379 + }, + { + "epoch": 74.72695500218435, + "grad_norm": 0.22041939198970795, + "learning_rate": 0.0006, + "loss": 3.5098114013671875, + "step": 5380 + }, + { + "epoch": 74.74093490607252, + "grad_norm": 0.24805180728435516, + "learning_rate": 0.0006, + "loss": 3.5069029331207275, + "step": 5381 + }, + { + "epoch": 74.75491480996068, + "grad_norm": 0.3026084005832672, + "learning_rate": 0.0006, + "loss": 3.4828643798828125, + "step": 5382 + }, + { + "epoch": 74.76889471384884, + "grad_norm": 0.2749265432357788, + "learning_rate": 0.0006, + "loss": 3.536533832550049, + "step": 5383 + }, + { + "epoch": 74.78287461773701, + "grad_norm": 0.23131245374679565, + "learning_rate": 0.0006, + "loss": 3.4843153953552246, + "step": 5384 + }, + { + "epoch": 74.79685452162516, + "grad_norm": 0.28015977144241333, + "learning_rate": 0.0006, + "loss": 3.5087320804595947, + "step": 5385 + }, + { + "epoch": 74.81083442551332, + "grad_norm": 0.28901320695877075, + "learning_rate": 0.0006, + "loss": 3.509774684906006, + "step": 5386 + }, + { + "epoch": 74.82481432940149, + "grad_norm": 0.2902369499206543, + "learning_rate": 0.0006, + "loss": 3.5354912281036377, + "step": 5387 + }, + { + "epoch": 74.83879423328965, + "grad_norm": 0.28103142976760864, + "learning_rate": 0.0006, + "loss": 3.5079479217529297, + "step": 5388 + }, + { + "epoch": 74.8527741371778, + "grad_norm": 0.21874217689037323, + "learning_rate": 0.0006, + "loss": 3.527747631072998, + "step": 5389 + }, + { + "epoch": 74.86675404106597, + "grad_norm": 0.2200363576412201, + "learning_rate": 0.0006, + "loss": 3.4977521896362305, + "step": 5390 + }, + { + "epoch": 74.88073394495413, + "grad_norm": 0.24229851365089417, + "learning_rate": 0.0006, + "loss": 3.535094738006592, + "step": 5391 + }, + { + "epoch": 74.89471384884229, + "grad_norm": 0.25623074173927307, + "learning_rate": 0.0006, + "loss": 3.5501794815063477, + "step": 5392 + }, + { + "epoch": 74.90869375273044, + "grad_norm": 0.25281623005867004, + "learning_rate": 0.0006, + "loss": 3.4836385250091553, + "step": 5393 + }, + { + "epoch": 74.92267365661861, + "grad_norm": 0.2236766219139099, + "learning_rate": 0.0006, + "loss": 3.4966232776641846, + "step": 5394 + }, + { + "epoch": 74.93665356050677, + "grad_norm": 0.20852778851985931, + "learning_rate": 0.0006, + "loss": 3.516902446746826, + "step": 5395 + }, + { + "epoch": 74.95063346439493, + "grad_norm": 0.22248536348342896, + "learning_rate": 0.0006, + "loss": 3.5233588218688965, + "step": 5396 + }, + { + "epoch": 74.9646133682831, + "grad_norm": 0.23792508244514465, + "learning_rate": 0.0006, + "loss": 3.4896931648254395, + "step": 5397 + }, + { + "epoch": 74.97859327217125, + "grad_norm": 0.20838406682014465, + "learning_rate": 0.0006, + "loss": 3.4921011924743652, + "step": 5398 + }, + { + "epoch": 74.99257317605941, + "grad_norm": 0.22375819087028503, + "learning_rate": 0.0006, + "loss": 3.5101675987243652, + "step": 5399 + }, + { + "epoch": 75.0, + "grad_norm": 0.3014359772205353, + "learning_rate": 0.0006, + "loss": 3.5245840549468994, + "step": 5400 + }, + { + "epoch": 75.0, + "eval_loss": 3.9896810054779053, + "eval_runtime": 45.1449, + "eval_samples_per_second": 54.092, + "eval_steps_per_second": 3.389, + "step": 5400 + }, + { + "epoch": 75.01397990388816, + "grad_norm": 0.2802879214286804, + "learning_rate": 0.0006, + "loss": 3.4459807872772217, + "step": 5401 + }, + { + "epoch": 75.02795980777633, + "grad_norm": 0.2268809676170349, + "learning_rate": 0.0006, + "loss": 3.492509365081787, + "step": 5402 + }, + { + "epoch": 75.04193971166448, + "grad_norm": 0.32269951701164246, + "learning_rate": 0.0006, + "loss": 3.4565114974975586, + "step": 5403 + }, + { + "epoch": 75.05591961555264, + "grad_norm": 0.37944868206977844, + "learning_rate": 0.0006, + "loss": 3.4896206855773926, + "step": 5404 + }, + { + "epoch": 75.06989951944081, + "grad_norm": 0.2834550440311432, + "learning_rate": 0.0006, + "loss": 3.4488000869750977, + "step": 5405 + }, + { + "epoch": 75.08387942332897, + "grad_norm": 0.24261713027954102, + "learning_rate": 0.0006, + "loss": 3.4881110191345215, + "step": 5406 + }, + { + "epoch": 75.09785932721712, + "grad_norm": 0.25649914145469666, + "learning_rate": 0.0006, + "loss": 3.4687750339508057, + "step": 5407 + }, + { + "epoch": 75.1118392311053, + "grad_norm": 0.28500616550445557, + "learning_rate": 0.0006, + "loss": 3.5017337799072266, + "step": 5408 + }, + { + "epoch": 75.12581913499345, + "grad_norm": 0.288143128156662, + "learning_rate": 0.0006, + "loss": 3.46737003326416, + "step": 5409 + }, + { + "epoch": 75.1397990388816, + "grad_norm": 0.23640452325344086, + "learning_rate": 0.0006, + "loss": 3.485724925994873, + "step": 5410 + }, + { + "epoch": 75.15377894276976, + "grad_norm": 0.231221541762352, + "learning_rate": 0.0006, + "loss": 3.4711289405822754, + "step": 5411 + }, + { + "epoch": 75.16775884665793, + "grad_norm": 0.22871847450733185, + "learning_rate": 0.0006, + "loss": 3.457324504852295, + "step": 5412 + }, + { + "epoch": 75.18173875054609, + "grad_norm": 0.24795132875442505, + "learning_rate": 0.0006, + "loss": 3.4799628257751465, + "step": 5413 + }, + { + "epoch": 75.19571865443424, + "grad_norm": 0.2337426245212555, + "learning_rate": 0.0006, + "loss": 3.4352688789367676, + "step": 5414 + }, + { + "epoch": 75.20969855832242, + "grad_norm": 0.251052588224411, + "learning_rate": 0.0006, + "loss": 3.4770374298095703, + "step": 5415 + }, + { + "epoch": 75.22367846221057, + "grad_norm": 0.2879040241241455, + "learning_rate": 0.0006, + "loss": 3.495934009552002, + "step": 5416 + }, + { + "epoch": 75.23765836609873, + "grad_norm": 0.273510605096817, + "learning_rate": 0.0006, + "loss": 3.497647762298584, + "step": 5417 + }, + { + "epoch": 75.2516382699869, + "grad_norm": 0.24495841562747955, + "learning_rate": 0.0006, + "loss": 3.455962896347046, + "step": 5418 + }, + { + "epoch": 75.26561817387505, + "grad_norm": 0.2345196157693863, + "learning_rate": 0.0006, + "loss": 3.5110573768615723, + "step": 5419 + }, + { + "epoch": 75.27959807776321, + "grad_norm": 0.22574985027313232, + "learning_rate": 0.0006, + "loss": 3.499999523162842, + "step": 5420 + }, + { + "epoch": 75.29357798165138, + "grad_norm": 0.21367499232292175, + "learning_rate": 0.0006, + "loss": 3.4823455810546875, + "step": 5421 + }, + { + "epoch": 75.30755788553954, + "grad_norm": 0.2120848447084427, + "learning_rate": 0.0006, + "loss": 3.4786484241485596, + "step": 5422 + }, + { + "epoch": 75.3215377894277, + "grad_norm": 0.21794751286506653, + "learning_rate": 0.0006, + "loss": 3.4970765113830566, + "step": 5423 + }, + { + "epoch": 75.33551769331586, + "grad_norm": 0.21963100135326385, + "learning_rate": 0.0006, + "loss": 3.5118799209594727, + "step": 5424 + }, + { + "epoch": 75.34949759720402, + "grad_norm": 0.21615713834762573, + "learning_rate": 0.0006, + "loss": 3.4728214740753174, + "step": 5425 + }, + { + "epoch": 75.36347750109218, + "grad_norm": 0.23004800081253052, + "learning_rate": 0.0006, + "loss": 3.496875762939453, + "step": 5426 + }, + { + "epoch": 75.37745740498035, + "grad_norm": 0.24208541214466095, + "learning_rate": 0.0006, + "loss": 3.4958276748657227, + "step": 5427 + }, + { + "epoch": 75.3914373088685, + "grad_norm": 0.20642924308776855, + "learning_rate": 0.0006, + "loss": 3.500385284423828, + "step": 5428 + }, + { + "epoch": 75.40541721275666, + "grad_norm": 0.2259436547756195, + "learning_rate": 0.0006, + "loss": 3.4697232246398926, + "step": 5429 + }, + { + "epoch": 75.41939711664482, + "grad_norm": 0.25861549377441406, + "learning_rate": 0.0006, + "loss": 3.5008928775787354, + "step": 5430 + }, + { + "epoch": 75.43337702053299, + "grad_norm": 0.24532392621040344, + "learning_rate": 0.0006, + "loss": 3.4718515872955322, + "step": 5431 + }, + { + "epoch": 75.44735692442114, + "grad_norm": 0.23508992791175842, + "learning_rate": 0.0006, + "loss": 3.4947562217712402, + "step": 5432 + }, + { + "epoch": 75.4613368283093, + "grad_norm": 0.25019076466560364, + "learning_rate": 0.0006, + "loss": 3.5137546062469482, + "step": 5433 + }, + { + "epoch": 75.47531673219747, + "grad_norm": 0.23382526636123657, + "learning_rate": 0.0006, + "loss": 3.503502368927002, + "step": 5434 + }, + { + "epoch": 75.48929663608563, + "grad_norm": 0.23226714134216309, + "learning_rate": 0.0006, + "loss": 3.4856209754943848, + "step": 5435 + }, + { + "epoch": 75.50327653997378, + "grad_norm": 0.2705337107181549, + "learning_rate": 0.0006, + "loss": 3.4829044342041016, + "step": 5436 + }, + { + "epoch": 75.51725644386195, + "grad_norm": 0.23903003334999084, + "learning_rate": 0.0006, + "loss": 3.473284959793091, + "step": 5437 + }, + { + "epoch": 75.53123634775011, + "grad_norm": 0.2298477441072464, + "learning_rate": 0.0006, + "loss": 3.4981393814086914, + "step": 5438 + }, + { + "epoch": 75.54521625163827, + "grad_norm": 0.2785218060016632, + "learning_rate": 0.0006, + "loss": 3.491668701171875, + "step": 5439 + }, + { + "epoch": 75.55919615552644, + "grad_norm": 0.30322644114494324, + "learning_rate": 0.0006, + "loss": 3.5061874389648438, + "step": 5440 + }, + { + "epoch": 75.57317605941459, + "grad_norm": 0.26536163687705994, + "learning_rate": 0.0006, + "loss": 3.491297721862793, + "step": 5441 + }, + { + "epoch": 75.58715596330275, + "grad_norm": 0.25591710209846497, + "learning_rate": 0.0006, + "loss": 3.4608688354492188, + "step": 5442 + }, + { + "epoch": 75.60113586719092, + "grad_norm": 0.29031914472579956, + "learning_rate": 0.0006, + "loss": 3.5015907287597656, + "step": 5443 + }, + { + "epoch": 75.61511577107908, + "grad_norm": 0.3028157353401184, + "learning_rate": 0.0006, + "loss": 3.488694190979004, + "step": 5444 + }, + { + "epoch": 75.62909567496723, + "grad_norm": 0.2612902522087097, + "learning_rate": 0.0006, + "loss": 3.5170979499816895, + "step": 5445 + }, + { + "epoch": 75.6430755788554, + "grad_norm": 0.2346487045288086, + "learning_rate": 0.0006, + "loss": 3.501101493835449, + "step": 5446 + }, + { + "epoch": 75.65705548274356, + "grad_norm": 0.24434567987918854, + "learning_rate": 0.0006, + "loss": 3.48040771484375, + "step": 5447 + }, + { + "epoch": 75.67103538663171, + "grad_norm": 0.2538795471191406, + "learning_rate": 0.0006, + "loss": 3.480721950531006, + "step": 5448 + }, + { + "epoch": 75.68501529051987, + "grad_norm": 0.23026305437088013, + "learning_rate": 0.0006, + "loss": 3.501366138458252, + "step": 5449 + }, + { + "epoch": 75.69899519440804, + "grad_norm": 0.21872632205486298, + "learning_rate": 0.0006, + "loss": 3.4855334758758545, + "step": 5450 + }, + { + "epoch": 75.7129750982962, + "grad_norm": 0.23016631603240967, + "learning_rate": 0.0006, + "loss": 3.487691879272461, + "step": 5451 + }, + { + "epoch": 75.72695500218435, + "grad_norm": 0.25731417536735535, + "learning_rate": 0.0006, + "loss": 3.509885787963867, + "step": 5452 + }, + { + "epoch": 75.74093490607252, + "grad_norm": 0.23140797019004822, + "learning_rate": 0.0006, + "loss": 3.4974255561828613, + "step": 5453 + }, + { + "epoch": 75.75491480996068, + "grad_norm": 0.2290206402540207, + "learning_rate": 0.0006, + "loss": 3.497750997543335, + "step": 5454 + }, + { + "epoch": 75.76889471384884, + "grad_norm": 0.22882549464702606, + "learning_rate": 0.0006, + "loss": 3.513742446899414, + "step": 5455 + }, + { + "epoch": 75.78287461773701, + "grad_norm": 0.22749373316764832, + "learning_rate": 0.0006, + "loss": 3.5267224311828613, + "step": 5456 + }, + { + "epoch": 75.79685452162516, + "grad_norm": 0.23185116052627563, + "learning_rate": 0.0006, + "loss": 3.4946181774139404, + "step": 5457 + }, + { + "epoch": 75.81083442551332, + "grad_norm": 0.21161580085754395, + "learning_rate": 0.0006, + "loss": 3.51632022857666, + "step": 5458 + }, + { + "epoch": 75.82481432940149, + "grad_norm": 0.2244153618812561, + "learning_rate": 0.0006, + "loss": 3.5021536350250244, + "step": 5459 + }, + { + "epoch": 75.83879423328965, + "grad_norm": 0.2286757528781891, + "learning_rate": 0.0006, + "loss": 3.5064220428466797, + "step": 5460 + }, + { + "epoch": 75.8527741371778, + "grad_norm": 0.24235443770885468, + "learning_rate": 0.0006, + "loss": 3.47468638420105, + "step": 5461 + }, + { + "epoch": 75.86675404106597, + "grad_norm": 0.21012619137763977, + "learning_rate": 0.0006, + "loss": 3.469088077545166, + "step": 5462 + }, + { + "epoch": 75.88073394495413, + "grad_norm": 0.20562565326690674, + "learning_rate": 0.0006, + "loss": 3.4918551445007324, + "step": 5463 + }, + { + "epoch": 75.89471384884229, + "grad_norm": 0.2122880220413208, + "learning_rate": 0.0006, + "loss": 3.5048160552978516, + "step": 5464 + }, + { + "epoch": 75.90869375273044, + "grad_norm": 0.20818278193473816, + "learning_rate": 0.0006, + "loss": 3.4814553260803223, + "step": 5465 + }, + { + "epoch": 75.92267365661861, + "grad_norm": 0.20316754281520844, + "learning_rate": 0.0006, + "loss": 3.500009775161743, + "step": 5466 + }, + { + "epoch": 75.93665356050677, + "grad_norm": 0.2093973606824875, + "learning_rate": 0.0006, + "loss": 3.4891273975372314, + "step": 5467 + }, + { + "epoch": 75.95063346439493, + "grad_norm": 0.20942363142967224, + "learning_rate": 0.0006, + "loss": 3.5271172523498535, + "step": 5468 + }, + { + "epoch": 75.9646133682831, + "grad_norm": 0.22052891552448273, + "learning_rate": 0.0006, + "loss": 3.508040189743042, + "step": 5469 + }, + { + "epoch": 75.97859327217125, + "grad_norm": 0.2208913266658783, + "learning_rate": 0.0006, + "loss": 3.5075063705444336, + "step": 5470 + }, + { + "epoch": 75.99257317605941, + "grad_norm": 0.20618212223052979, + "learning_rate": 0.0006, + "loss": 3.5018906593322754, + "step": 5471 + }, + { + "epoch": 76.0, + "grad_norm": 0.23915603756904602, + "learning_rate": 0.0006, + "loss": 3.490349054336548, + "step": 5472 + }, + { + "epoch": 76.0, + "eval_loss": 3.9777374267578125, + "eval_runtime": 44.3634, + "eval_samples_per_second": 55.045, + "eval_steps_per_second": 3.449, + "step": 5472 + }, + { + "epoch": 76.01397990388816, + "grad_norm": 0.2418874055147171, + "learning_rate": 0.0006, + "loss": 3.443974018096924, + "step": 5473 + }, + { + "epoch": 76.02795980777633, + "grad_norm": 0.24863727390766144, + "learning_rate": 0.0006, + "loss": 3.4233765602111816, + "step": 5474 + }, + { + "epoch": 76.04193971166448, + "grad_norm": 0.2790309488773346, + "learning_rate": 0.0006, + "loss": 3.441854953765869, + "step": 5475 + }, + { + "epoch": 76.05591961555264, + "grad_norm": 0.26523181796073914, + "learning_rate": 0.0006, + "loss": 3.5107715129852295, + "step": 5476 + }, + { + "epoch": 76.06989951944081, + "grad_norm": 0.22338931262493134, + "learning_rate": 0.0006, + "loss": 3.4805355072021484, + "step": 5477 + }, + { + "epoch": 76.08387942332897, + "grad_norm": 0.2959517240524292, + "learning_rate": 0.0006, + "loss": 3.4402217864990234, + "step": 5478 + }, + { + "epoch": 76.09785932721712, + "grad_norm": 0.29325243830680847, + "learning_rate": 0.0006, + "loss": 3.448124885559082, + "step": 5479 + }, + { + "epoch": 76.1118392311053, + "grad_norm": 0.24323450028896332, + "learning_rate": 0.0006, + "loss": 3.4593453407287598, + "step": 5480 + }, + { + "epoch": 76.12581913499345, + "grad_norm": 0.22358393669128418, + "learning_rate": 0.0006, + "loss": 3.463690757751465, + "step": 5481 + }, + { + "epoch": 76.1397990388816, + "grad_norm": 0.23993486166000366, + "learning_rate": 0.0006, + "loss": 3.468006134033203, + "step": 5482 + }, + { + "epoch": 76.15377894276976, + "grad_norm": 0.2388140857219696, + "learning_rate": 0.0006, + "loss": 3.4615962505340576, + "step": 5483 + }, + { + "epoch": 76.16775884665793, + "grad_norm": 0.21697917580604553, + "learning_rate": 0.0006, + "loss": 3.498293161392212, + "step": 5484 + }, + { + "epoch": 76.18173875054609, + "grad_norm": 0.21932202577590942, + "learning_rate": 0.0006, + "loss": 3.4642910957336426, + "step": 5485 + }, + { + "epoch": 76.19571865443424, + "grad_norm": 0.23881328105926514, + "learning_rate": 0.0006, + "loss": 3.4731202125549316, + "step": 5486 + }, + { + "epoch": 76.20969855832242, + "grad_norm": 0.24131019413471222, + "learning_rate": 0.0006, + "loss": 3.514042854309082, + "step": 5487 + }, + { + "epoch": 76.22367846221057, + "grad_norm": 0.2567158639431, + "learning_rate": 0.0006, + "loss": 3.496260643005371, + "step": 5488 + }, + { + "epoch": 76.23765836609873, + "grad_norm": 0.24889737367630005, + "learning_rate": 0.0006, + "loss": 3.4490113258361816, + "step": 5489 + }, + { + "epoch": 76.2516382699869, + "grad_norm": 0.2594841718673706, + "learning_rate": 0.0006, + "loss": 3.4855408668518066, + "step": 5490 + }, + { + "epoch": 76.26561817387505, + "grad_norm": 0.25379180908203125, + "learning_rate": 0.0006, + "loss": 3.484755277633667, + "step": 5491 + }, + { + "epoch": 76.27959807776321, + "grad_norm": 0.2550116181373596, + "learning_rate": 0.0006, + "loss": 3.472916603088379, + "step": 5492 + }, + { + "epoch": 76.29357798165138, + "grad_norm": 0.22609412670135498, + "learning_rate": 0.0006, + "loss": 3.4655003547668457, + "step": 5493 + }, + { + "epoch": 76.30755788553954, + "grad_norm": 0.2155119925737381, + "learning_rate": 0.0006, + "loss": 3.4827067852020264, + "step": 5494 + }, + { + "epoch": 76.3215377894277, + "grad_norm": 0.23875075578689575, + "learning_rate": 0.0006, + "loss": 3.5023036003112793, + "step": 5495 + }, + { + "epoch": 76.33551769331586, + "grad_norm": 0.20443911850452423, + "learning_rate": 0.0006, + "loss": 3.483880043029785, + "step": 5496 + }, + { + "epoch": 76.34949759720402, + "grad_norm": 0.2072031944990158, + "learning_rate": 0.0006, + "loss": 3.4842820167541504, + "step": 5497 + }, + { + "epoch": 76.36347750109218, + "grad_norm": 0.20795385539531708, + "learning_rate": 0.0006, + "loss": 3.503988265991211, + "step": 5498 + }, + { + "epoch": 76.37745740498035, + "grad_norm": 0.21297147870063782, + "learning_rate": 0.0006, + "loss": 3.4640579223632812, + "step": 5499 + }, + { + "epoch": 76.3914373088685, + "grad_norm": 0.20675528049468994, + "learning_rate": 0.0006, + "loss": 3.462296485900879, + "step": 5500 + }, + { + "epoch": 76.40541721275666, + "grad_norm": 0.20660211145877838, + "learning_rate": 0.0006, + "loss": 3.484466552734375, + "step": 5501 + }, + { + "epoch": 76.41939711664482, + "grad_norm": 0.23562943935394287, + "learning_rate": 0.0006, + "loss": 3.5207087993621826, + "step": 5502 + }, + { + "epoch": 76.43337702053299, + "grad_norm": 0.23841898143291473, + "learning_rate": 0.0006, + "loss": 3.4793286323547363, + "step": 5503 + }, + { + "epoch": 76.44735692442114, + "grad_norm": 0.22068238258361816, + "learning_rate": 0.0006, + "loss": 3.4763593673706055, + "step": 5504 + }, + { + "epoch": 76.4613368283093, + "grad_norm": 0.2076147049665451, + "learning_rate": 0.0006, + "loss": 3.4937491416931152, + "step": 5505 + }, + { + "epoch": 76.47531673219747, + "grad_norm": 0.2138012796640396, + "learning_rate": 0.0006, + "loss": 3.452348232269287, + "step": 5506 + }, + { + "epoch": 76.48929663608563, + "grad_norm": 0.22696714103221893, + "learning_rate": 0.0006, + "loss": 3.4932503700256348, + "step": 5507 + }, + { + "epoch": 76.50327653997378, + "grad_norm": 0.2209995836019516, + "learning_rate": 0.0006, + "loss": 3.4709179401397705, + "step": 5508 + }, + { + "epoch": 76.51725644386195, + "grad_norm": 0.2194036841392517, + "learning_rate": 0.0006, + "loss": 3.5052647590637207, + "step": 5509 + }, + { + "epoch": 76.53123634775011, + "grad_norm": 0.2052760273218155, + "learning_rate": 0.0006, + "loss": 3.4574718475341797, + "step": 5510 + }, + { + "epoch": 76.54521625163827, + "grad_norm": 0.20317119359970093, + "learning_rate": 0.0006, + "loss": 3.502560615539551, + "step": 5511 + }, + { + "epoch": 76.55919615552644, + "grad_norm": 0.19807544350624084, + "learning_rate": 0.0006, + "loss": 3.4829111099243164, + "step": 5512 + }, + { + "epoch": 76.57317605941459, + "grad_norm": 0.23340080678462982, + "learning_rate": 0.0006, + "loss": 3.486851692199707, + "step": 5513 + }, + { + "epoch": 76.58715596330275, + "grad_norm": 0.22508011758327484, + "learning_rate": 0.0006, + "loss": 3.4909684658050537, + "step": 5514 + }, + { + "epoch": 76.60113586719092, + "grad_norm": 0.20285551249980927, + "learning_rate": 0.0006, + "loss": 3.5109267234802246, + "step": 5515 + }, + { + "epoch": 76.61511577107908, + "grad_norm": 0.21424166858196259, + "learning_rate": 0.0006, + "loss": 3.535339832305908, + "step": 5516 + }, + { + "epoch": 76.62909567496723, + "grad_norm": 0.22599352896213531, + "learning_rate": 0.0006, + "loss": 3.513669729232788, + "step": 5517 + }, + { + "epoch": 76.6430755788554, + "grad_norm": 0.23167334496974945, + "learning_rate": 0.0006, + "loss": 3.464939594268799, + "step": 5518 + }, + { + "epoch": 76.65705548274356, + "grad_norm": 0.23066985607147217, + "learning_rate": 0.0006, + "loss": 3.5059399604797363, + "step": 5519 + }, + { + "epoch": 76.67103538663171, + "grad_norm": 0.23994891345500946, + "learning_rate": 0.0006, + "loss": 3.500594139099121, + "step": 5520 + }, + { + "epoch": 76.68501529051987, + "grad_norm": 0.211285799741745, + "learning_rate": 0.0006, + "loss": 3.478522300720215, + "step": 5521 + }, + { + "epoch": 76.69899519440804, + "grad_norm": 0.20075270533561707, + "learning_rate": 0.0006, + "loss": 3.5288326740264893, + "step": 5522 + }, + { + "epoch": 76.7129750982962, + "grad_norm": 0.23529106378555298, + "learning_rate": 0.0006, + "loss": 3.4779129028320312, + "step": 5523 + }, + { + "epoch": 76.72695500218435, + "grad_norm": 0.2311454862356186, + "learning_rate": 0.0006, + "loss": 3.496515989303589, + "step": 5524 + }, + { + "epoch": 76.74093490607252, + "grad_norm": 0.2181762307882309, + "learning_rate": 0.0006, + "loss": 3.5054616928100586, + "step": 5525 + }, + { + "epoch": 76.75491480996068, + "grad_norm": 0.21688713133335114, + "learning_rate": 0.0006, + "loss": 3.486077070236206, + "step": 5526 + }, + { + "epoch": 76.76889471384884, + "grad_norm": 0.208486407995224, + "learning_rate": 0.0006, + "loss": 3.519576072692871, + "step": 5527 + }, + { + "epoch": 76.78287461773701, + "grad_norm": 0.20486991107463837, + "learning_rate": 0.0006, + "loss": 3.521792411804199, + "step": 5528 + }, + { + "epoch": 76.79685452162516, + "grad_norm": 0.19922950863838196, + "learning_rate": 0.0006, + "loss": 3.491504669189453, + "step": 5529 + }, + { + "epoch": 76.81083442551332, + "grad_norm": 0.1996903419494629, + "learning_rate": 0.0006, + "loss": 3.468512535095215, + "step": 5530 + }, + { + "epoch": 76.82481432940149, + "grad_norm": 0.222084179520607, + "learning_rate": 0.0006, + "loss": 3.5042052268981934, + "step": 5531 + }, + { + "epoch": 76.83879423328965, + "grad_norm": 0.20673534274101257, + "learning_rate": 0.0006, + "loss": 3.497204303741455, + "step": 5532 + }, + { + "epoch": 76.8527741371778, + "grad_norm": 0.21386823058128357, + "learning_rate": 0.0006, + "loss": 3.488496780395508, + "step": 5533 + }, + { + "epoch": 76.86675404106597, + "grad_norm": 0.21389922499656677, + "learning_rate": 0.0006, + "loss": 3.4649922847747803, + "step": 5534 + }, + { + "epoch": 76.88073394495413, + "grad_norm": 0.20491436123847961, + "learning_rate": 0.0006, + "loss": 3.5298590660095215, + "step": 5535 + }, + { + "epoch": 76.89471384884229, + "grad_norm": 0.21831119060516357, + "learning_rate": 0.0006, + "loss": 3.4953153133392334, + "step": 5536 + }, + { + "epoch": 76.90869375273044, + "grad_norm": 0.20591680705547333, + "learning_rate": 0.0006, + "loss": 3.4926888942718506, + "step": 5537 + }, + { + "epoch": 76.92267365661861, + "grad_norm": 0.2123914211988449, + "learning_rate": 0.0006, + "loss": 3.4734320640563965, + "step": 5538 + }, + { + "epoch": 76.93665356050677, + "grad_norm": 0.22081080079078674, + "learning_rate": 0.0006, + "loss": 3.500866413116455, + "step": 5539 + }, + { + "epoch": 76.95063346439493, + "grad_norm": 0.20731335878372192, + "learning_rate": 0.0006, + "loss": 3.5050065517425537, + "step": 5540 + }, + { + "epoch": 76.9646133682831, + "grad_norm": 0.21011851727962494, + "learning_rate": 0.0006, + "loss": 3.490650177001953, + "step": 5541 + }, + { + "epoch": 76.97859327217125, + "grad_norm": 0.2390926033258438, + "learning_rate": 0.0006, + "loss": 3.4951090812683105, + "step": 5542 + }, + { + "epoch": 76.99257317605941, + "grad_norm": 0.2596230208873749, + "learning_rate": 0.0006, + "loss": 3.5060253143310547, + "step": 5543 + }, + { + "epoch": 77.0, + "grad_norm": 0.25238990783691406, + "learning_rate": 0.0006, + "loss": 3.4590630531311035, + "step": 5544 + }, + { + "epoch": 77.0, + "eval_loss": 3.9981307983398438, + "eval_runtime": 44.7924, + "eval_samples_per_second": 54.518, + "eval_steps_per_second": 3.416, + "step": 5544 + }, + { + "epoch": 77.01397990388816, + "grad_norm": 0.22038361430168152, + "learning_rate": 0.0006, + "loss": 3.4686741828918457, + "step": 5545 + }, + { + "epoch": 77.02795980777633, + "grad_norm": 0.24023033678531647, + "learning_rate": 0.0006, + "loss": 3.4764277935028076, + "step": 5546 + }, + { + "epoch": 77.04193971166448, + "grad_norm": 0.2292146384716034, + "learning_rate": 0.0006, + "loss": 3.4723358154296875, + "step": 5547 + }, + { + "epoch": 77.05591961555264, + "grad_norm": 0.2493198812007904, + "learning_rate": 0.0006, + "loss": 3.4568331241607666, + "step": 5548 + }, + { + "epoch": 77.06989951944081, + "grad_norm": 0.24256594479084015, + "learning_rate": 0.0006, + "loss": 3.4423820972442627, + "step": 5549 + }, + { + "epoch": 77.08387942332897, + "grad_norm": 0.23987102508544922, + "learning_rate": 0.0006, + "loss": 3.465493679046631, + "step": 5550 + }, + { + "epoch": 77.09785932721712, + "grad_norm": 0.22210195660591125, + "learning_rate": 0.0006, + "loss": 3.4376380443573, + "step": 5551 + }, + { + "epoch": 77.1118392311053, + "grad_norm": 0.24909666180610657, + "learning_rate": 0.0006, + "loss": 3.490691900253296, + "step": 5552 + }, + { + "epoch": 77.12581913499345, + "grad_norm": 0.25187668204307556, + "learning_rate": 0.0006, + "loss": 3.487443447113037, + "step": 5553 + }, + { + "epoch": 77.1397990388816, + "grad_norm": 0.24957744777202606, + "learning_rate": 0.0006, + "loss": 3.4741783142089844, + "step": 5554 + }, + { + "epoch": 77.15377894276976, + "grad_norm": 0.24963968992233276, + "learning_rate": 0.0006, + "loss": 3.442970037460327, + "step": 5555 + }, + { + "epoch": 77.16775884665793, + "grad_norm": 0.2636677026748657, + "learning_rate": 0.0006, + "loss": 3.442943572998047, + "step": 5556 + }, + { + "epoch": 77.18173875054609, + "grad_norm": 0.2390320599079132, + "learning_rate": 0.0006, + "loss": 3.446042537689209, + "step": 5557 + }, + { + "epoch": 77.19571865443424, + "grad_norm": 0.24128425121307373, + "learning_rate": 0.0006, + "loss": 3.4540657997131348, + "step": 5558 + }, + { + "epoch": 77.20969855832242, + "grad_norm": 0.2793026566505432, + "learning_rate": 0.0006, + "loss": 3.475677013397217, + "step": 5559 + }, + { + "epoch": 77.22367846221057, + "grad_norm": 0.2781931459903717, + "learning_rate": 0.0006, + "loss": 3.432591438293457, + "step": 5560 + }, + { + "epoch": 77.23765836609873, + "grad_norm": 0.27104610204696655, + "learning_rate": 0.0006, + "loss": 3.434600353240967, + "step": 5561 + }, + { + "epoch": 77.2516382699869, + "grad_norm": 0.24446748197078705, + "learning_rate": 0.0006, + "loss": 3.4536900520324707, + "step": 5562 + }, + { + "epoch": 77.26561817387505, + "grad_norm": 0.2234327495098114, + "learning_rate": 0.0006, + "loss": 3.472113609313965, + "step": 5563 + }, + { + "epoch": 77.27959807776321, + "grad_norm": 0.22455455362796783, + "learning_rate": 0.0006, + "loss": 3.478461742401123, + "step": 5564 + }, + { + "epoch": 77.29357798165138, + "grad_norm": 0.24232162535190582, + "learning_rate": 0.0006, + "loss": 3.476224899291992, + "step": 5565 + }, + { + "epoch": 77.30755788553954, + "grad_norm": 0.22650426626205444, + "learning_rate": 0.0006, + "loss": 3.4830868244171143, + "step": 5566 + }, + { + "epoch": 77.3215377894277, + "grad_norm": 0.20385561883449554, + "learning_rate": 0.0006, + "loss": 3.4758248329162598, + "step": 5567 + }, + { + "epoch": 77.33551769331586, + "grad_norm": 0.21887609362602234, + "learning_rate": 0.0006, + "loss": 3.444990873336792, + "step": 5568 + }, + { + "epoch": 77.34949759720402, + "grad_norm": 0.2225635051727295, + "learning_rate": 0.0006, + "loss": 3.469752311706543, + "step": 5569 + }, + { + "epoch": 77.36347750109218, + "grad_norm": 0.24805355072021484, + "learning_rate": 0.0006, + "loss": 3.492915153503418, + "step": 5570 + }, + { + "epoch": 77.37745740498035, + "grad_norm": 0.2526283860206604, + "learning_rate": 0.0006, + "loss": 3.465193271636963, + "step": 5571 + }, + { + "epoch": 77.3914373088685, + "grad_norm": 0.24211226403713226, + "learning_rate": 0.0006, + "loss": 3.4413485527038574, + "step": 5572 + }, + { + "epoch": 77.40541721275666, + "grad_norm": 0.2326599657535553, + "learning_rate": 0.0006, + "loss": 3.4961862564086914, + "step": 5573 + }, + { + "epoch": 77.41939711664482, + "grad_norm": 0.20717164874076843, + "learning_rate": 0.0006, + "loss": 3.525745391845703, + "step": 5574 + }, + { + "epoch": 77.43337702053299, + "grad_norm": 0.25477585196495056, + "learning_rate": 0.0006, + "loss": 3.5035266876220703, + "step": 5575 + }, + { + "epoch": 77.44735692442114, + "grad_norm": 0.25919151306152344, + "learning_rate": 0.0006, + "loss": 3.490316867828369, + "step": 5576 + }, + { + "epoch": 77.4613368283093, + "grad_norm": 0.23436813056468964, + "learning_rate": 0.0006, + "loss": 3.4723501205444336, + "step": 5577 + }, + { + "epoch": 77.47531673219747, + "grad_norm": 0.22665677964687347, + "learning_rate": 0.0006, + "loss": 3.478048801422119, + "step": 5578 + }, + { + "epoch": 77.48929663608563, + "grad_norm": 0.2232775241136551, + "learning_rate": 0.0006, + "loss": 3.5051913261413574, + "step": 5579 + }, + { + "epoch": 77.50327653997378, + "grad_norm": 0.22552873194217682, + "learning_rate": 0.0006, + "loss": 3.45631742477417, + "step": 5580 + }, + { + "epoch": 77.51725644386195, + "grad_norm": 0.21110759675502777, + "learning_rate": 0.0006, + "loss": 3.5175533294677734, + "step": 5581 + }, + { + "epoch": 77.53123634775011, + "grad_norm": 0.20691822469234467, + "learning_rate": 0.0006, + "loss": 3.4880058765411377, + "step": 5582 + }, + { + "epoch": 77.54521625163827, + "grad_norm": 0.2127186805009842, + "learning_rate": 0.0006, + "loss": 3.4998388290405273, + "step": 5583 + }, + { + "epoch": 77.55919615552644, + "grad_norm": 0.20933803915977478, + "learning_rate": 0.0006, + "loss": 3.466125249862671, + "step": 5584 + }, + { + "epoch": 77.57317605941459, + "grad_norm": 0.2276456654071808, + "learning_rate": 0.0006, + "loss": 3.459625482559204, + "step": 5585 + }, + { + "epoch": 77.58715596330275, + "grad_norm": 0.22685237228870392, + "learning_rate": 0.0006, + "loss": 3.492049217224121, + "step": 5586 + }, + { + "epoch": 77.60113586719092, + "grad_norm": 0.21664106845855713, + "learning_rate": 0.0006, + "loss": 3.5223960876464844, + "step": 5587 + }, + { + "epoch": 77.61511577107908, + "grad_norm": 0.23587282001972198, + "learning_rate": 0.0006, + "loss": 3.518566370010376, + "step": 5588 + }, + { + "epoch": 77.62909567496723, + "grad_norm": 0.23437966406345367, + "learning_rate": 0.0006, + "loss": 3.491976022720337, + "step": 5589 + }, + { + "epoch": 77.6430755788554, + "grad_norm": 0.23540490865707397, + "learning_rate": 0.0006, + "loss": 3.4611740112304688, + "step": 5590 + }, + { + "epoch": 77.65705548274356, + "grad_norm": 0.25225862860679626, + "learning_rate": 0.0006, + "loss": 3.5131006240844727, + "step": 5591 + }, + { + "epoch": 77.67103538663171, + "grad_norm": 0.24235303699970245, + "learning_rate": 0.0006, + "loss": 3.5291337966918945, + "step": 5592 + }, + { + "epoch": 77.68501529051987, + "grad_norm": 0.20641890168190002, + "learning_rate": 0.0006, + "loss": 3.484412431716919, + "step": 5593 + }, + { + "epoch": 77.69899519440804, + "grad_norm": 0.22332488000392914, + "learning_rate": 0.0006, + "loss": 3.521279811859131, + "step": 5594 + }, + { + "epoch": 77.7129750982962, + "grad_norm": 0.22490297257900238, + "learning_rate": 0.0006, + "loss": 3.493229866027832, + "step": 5595 + }, + { + "epoch": 77.72695500218435, + "grad_norm": 0.19960972666740417, + "learning_rate": 0.0006, + "loss": 3.454841136932373, + "step": 5596 + }, + { + "epoch": 77.74093490607252, + "grad_norm": 0.22220884263515472, + "learning_rate": 0.0006, + "loss": 3.490431547164917, + "step": 5597 + }, + { + "epoch": 77.75491480996068, + "grad_norm": 0.22000782191753387, + "learning_rate": 0.0006, + "loss": 3.52382230758667, + "step": 5598 + }, + { + "epoch": 77.76889471384884, + "grad_norm": 0.2174588292837143, + "learning_rate": 0.0006, + "loss": 3.514397621154785, + "step": 5599 + }, + { + "epoch": 77.78287461773701, + "grad_norm": 0.2279520481824875, + "learning_rate": 0.0006, + "loss": 3.4750583171844482, + "step": 5600 + }, + { + "epoch": 77.79685452162516, + "grad_norm": 0.21765829622745514, + "learning_rate": 0.0006, + "loss": 3.512150526046753, + "step": 5601 + }, + { + "epoch": 77.81083442551332, + "grad_norm": 0.20984821021556854, + "learning_rate": 0.0006, + "loss": 3.4623773097991943, + "step": 5602 + }, + { + "epoch": 77.82481432940149, + "grad_norm": 0.22201800346374512, + "learning_rate": 0.0006, + "loss": 3.4842002391815186, + "step": 5603 + }, + { + "epoch": 77.83879423328965, + "grad_norm": 0.194268599152565, + "learning_rate": 0.0006, + "loss": 3.4671778678894043, + "step": 5604 + }, + { + "epoch": 77.8527741371778, + "grad_norm": 0.26137876510620117, + "learning_rate": 0.0006, + "loss": 3.5220279693603516, + "step": 5605 + }, + { + "epoch": 77.86675404106597, + "grad_norm": 0.34975603222846985, + "learning_rate": 0.0006, + "loss": 3.500293254852295, + "step": 5606 + }, + { + "epoch": 77.88073394495413, + "grad_norm": 0.35652515292167664, + "learning_rate": 0.0006, + "loss": 3.514991521835327, + "step": 5607 + }, + { + "epoch": 77.89471384884229, + "grad_norm": 0.29652512073516846, + "learning_rate": 0.0006, + "loss": 3.4788379669189453, + "step": 5608 + }, + { + "epoch": 77.90869375273044, + "grad_norm": 0.24133038520812988, + "learning_rate": 0.0006, + "loss": 3.5168981552124023, + "step": 5609 + }, + { + "epoch": 77.92267365661861, + "grad_norm": 0.26977378129959106, + "learning_rate": 0.0006, + "loss": 3.479185104370117, + "step": 5610 + }, + { + "epoch": 77.93665356050677, + "grad_norm": 0.3470935523509979, + "learning_rate": 0.0006, + "loss": 3.477111577987671, + "step": 5611 + }, + { + "epoch": 77.95063346439493, + "grad_norm": 0.29587116837501526, + "learning_rate": 0.0006, + "loss": 3.497286319732666, + "step": 5612 + }, + { + "epoch": 77.9646133682831, + "grad_norm": 0.23551815748214722, + "learning_rate": 0.0006, + "loss": 3.521495819091797, + "step": 5613 + }, + { + "epoch": 77.97859327217125, + "grad_norm": 0.23533079028129578, + "learning_rate": 0.0006, + "loss": 3.525179147720337, + "step": 5614 + }, + { + "epoch": 77.99257317605941, + "grad_norm": 0.24980391561985016, + "learning_rate": 0.0006, + "loss": 3.5037364959716797, + "step": 5615 + }, + { + "epoch": 78.0, + "grad_norm": 0.26153600215911865, + "learning_rate": 0.0006, + "loss": 3.515974521636963, + "step": 5616 + }, + { + "epoch": 78.0, + "eval_loss": 3.989530563354492, + "eval_runtime": 44.8691, + "eval_samples_per_second": 54.425, + "eval_steps_per_second": 3.41, + "step": 5616 + }, + { + "epoch": 78.01397990388816, + "grad_norm": 0.2100374549627304, + "learning_rate": 0.0006, + "loss": 3.4879980087280273, + "step": 5617 + }, + { + "epoch": 78.02795980777633, + "grad_norm": 0.23255975544452667, + "learning_rate": 0.0006, + "loss": 3.43629789352417, + "step": 5618 + }, + { + "epoch": 78.04193971166448, + "grad_norm": 0.2895263731479645, + "learning_rate": 0.0006, + "loss": 3.4705724716186523, + "step": 5619 + }, + { + "epoch": 78.05591961555264, + "grad_norm": 0.31454774737358093, + "learning_rate": 0.0006, + "loss": 3.451716661453247, + "step": 5620 + }, + { + "epoch": 78.06989951944081, + "grad_norm": 0.2520895004272461, + "learning_rate": 0.0006, + "loss": 3.4636831283569336, + "step": 5621 + }, + { + "epoch": 78.08387942332897, + "grad_norm": 0.24788936972618103, + "learning_rate": 0.0006, + "loss": 3.4423277378082275, + "step": 5622 + }, + { + "epoch": 78.09785932721712, + "grad_norm": 0.27085408568382263, + "learning_rate": 0.0006, + "loss": 3.4572410583496094, + "step": 5623 + }, + { + "epoch": 78.1118392311053, + "grad_norm": 0.25386592745780945, + "learning_rate": 0.0006, + "loss": 3.4571075439453125, + "step": 5624 + }, + { + "epoch": 78.12581913499345, + "grad_norm": 0.24330876767635345, + "learning_rate": 0.0006, + "loss": 3.4500632286071777, + "step": 5625 + }, + { + "epoch": 78.1397990388816, + "grad_norm": 0.24485483765602112, + "learning_rate": 0.0006, + "loss": 3.475353240966797, + "step": 5626 + }, + { + "epoch": 78.15377894276976, + "grad_norm": 0.25498270988464355, + "learning_rate": 0.0006, + "loss": 3.485459089279175, + "step": 5627 + }, + { + "epoch": 78.16775884665793, + "grad_norm": 0.24147716164588928, + "learning_rate": 0.0006, + "loss": 3.5107951164245605, + "step": 5628 + }, + { + "epoch": 78.18173875054609, + "grad_norm": 0.22279144823551178, + "learning_rate": 0.0006, + "loss": 3.510791778564453, + "step": 5629 + }, + { + "epoch": 78.19571865443424, + "grad_norm": 0.2423589825630188, + "learning_rate": 0.0006, + "loss": 3.4248547554016113, + "step": 5630 + }, + { + "epoch": 78.20969855832242, + "grad_norm": 0.25929296016693115, + "learning_rate": 0.0006, + "loss": 3.4600253105163574, + "step": 5631 + }, + { + "epoch": 78.22367846221057, + "grad_norm": 0.23566672205924988, + "learning_rate": 0.0006, + "loss": 3.4578680992126465, + "step": 5632 + }, + { + "epoch": 78.23765836609873, + "grad_norm": 0.23223716020584106, + "learning_rate": 0.0006, + "loss": 3.4563381671905518, + "step": 5633 + }, + { + "epoch": 78.2516382699869, + "grad_norm": 0.2368844598531723, + "learning_rate": 0.0006, + "loss": 3.4480276107788086, + "step": 5634 + }, + { + "epoch": 78.26561817387505, + "grad_norm": 0.24832561612129211, + "learning_rate": 0.0006, + "loss": 3.496946334838867, + "step": 5635 + }, + { + "epoch": 78.27959807776321, + "grad_norm": 0.24947865307331085, + "learning_rate": 0.0006, + "loss": 3.4892706871032715, + "step": 5636 + }, + { + "epoch": 78.29357798165138, + "grad_norm": 0.23110949993133545, + "learning_rate": 0.0006, + "loss": 3.454031467437744, + "step": 5637 + }, + { + "epoch": 78.30755788553954, + "grad_norm": 0.2529185116291046, + "learning_rate": 0.0006, + "loss": 3.4528121948242188, + "step": 5638 + }, + { + "epoch": 78.3215377894277, + "grad_norm": 0.28784650564193726, + "learning_rate": 0.0006, + "loss": 3.4587960243225098, + "step": 5639 + }, + { + "epoch": 78.33551769331586, + "grad_norm": 0.3063037097454071, + "learning_rate": 0.0006, + "loss": 3.4946982860565186, + "step": 5640 + }, + { + "epoch": 78.34949759720402, + "grad_norm": 0.25911253690719604, + "learning_rate": 0.0006, + "loss": 3.4736804962158203, + "step": 5641 + }, + { + "epoch": 78.36347750109218, + "grad_norm": 0.24036385118961334, + "learning_rate": 0.0006, + "loss": 3.502281665802002, + "step": 5642 + }, + { + "epoch": 78.37745740498035, + "grad_norm": 0.3214871883392334, + "learning_rate": 0.0006, + "loss": 3.462540626525879, + "step": 5643 + }, + { + "epoch": 78.3914373088685, + "grad_norm": 0.2729061245918274, + "learning_rate": 0.0006, + "loss": 3.4772369861602783, + "step": 5644 + }, + { + "epoch": 78.40541721275666, + "grad_norm": 0.19852563738822937, + "learning_rate": 0.0006, + "loss": 3.483013391494751, + "step": 5645 + }, + { + "epoch": 78.41939711664482, + "grad_norm": 0.23686745762825012, + "learning_rate": 0.0006, + "loss": 3.471310615539551, + "step": 5646 + }, + { + "epoch": 78.43337702053299, + "grad_norm": 0.2407468557357788, + "learning_rate": 0.0006, + "loss": 3.468752384185791, + "step": 5647 + }, + { + "epoch": 78.44735692442114, + "grad_norm": 0.21730437874794006, + "learning_rate": 0.0006, + "loss": 3.4616923332214355, + "step": 5648 + }, + { + "epoch": 78.4613368283093, + "grad_norm": 0.22194430232048035, + "learning_rate": 0.0006, + "loss": 3.5024828910827637, + "step": 5649 + }, + { + "epoch": 78.47531673219747, + "grad_norm": 0.20579543709754944, + "learning_rate": 0.0006, + "loss": 3.4653728008270264, + "step": 5650 + }, + { + "epoch": 78.48929663608563, + "grad_norm": 0.21063153445720673, + "learning_rate": 0.0006, + "loss": 3.460247039794922, + "step": 5651 + }, + { + "epoch": 78.50327653997378, + "grad_norm": 0.2112281769514084, + "learning_rate": 0.0006, + "loss": 3.5004734992980957, + "step": 5652 + }, + { + "epoch": 78.51725644386195, + "grad_norm": 0.21281960606575012, + "learning_rate": 0.0006, + "loss": 3.49147367477417, + "step": 5653 + }, + { + "epoch": 78.53123634775011, + "grad_norm": 0.21079784631729126, + "learning_rate": 0.0006, + "loss": 3.4941132068634033, + "step": 5654 + }, + { + "epoch": 78.54521625163827, + "grad_norm": 0.2113049030303955, + "learning_rate": 0.0006, + "loss": 3.4483916759490967, + "step": 5655 + }, + { + "epoch": 78.55919615552644, + "grad_norm": 0.19891786575317383, + "learning_rate": 0.0006, + "loss": 3.477287769317627, + "step": 5656 + }, + { + "epoch": 78.57317605941459, + "grad_norm": 0.24941609799861908, + "learning_rate": 0.0006, + "loss": 3.527385711669922, + "step": 5657 + }, + { + "epoch": 78.58715596330275, + "grad_norm": 0.23287516832351685, + "learning_rate": 0.0006, + "loss": 3.4806594848632812, + "step": 5658 + }, + { + "epoch": 78.60113586719092, + "grad_norm": 0.211700439453125, + "learning_rate": 0.0006, + "loss": 3.455684185028076, + "step": 5659 + }, + { + "epoch": 78.61511577107908, + "grad_norm": 0.20621828734874725, + "learning_rate": 0.0006, + "loss": 3.4775843620300293, + "step": 5660 + }, + { + "epoch": 78.62909567496723, + "grad_norm": 0.2308485507965088, + "learning_rate": 0.0006, + "loss": 3.4990549087524414, + "step": 5661 + }, + { + "epoch": 78.6430755788554, + "grad_norm": 0.22869032621383667, + "learning_rate": 0.0006, + "loss": 3.476654529571533, + "step": 5662 + }, + { + "epoch": 78.65705548274356, + "grad_norm": 0.2244352102279663, + "learning_rate": 0.0006, + "loss": 3.4927053451538086, + "step": 5663 + }, + { + "epoch": 78.67103538663171, + "grad_norm": 0.21660304069519043, + "learning_rate": 0.0006, + "loss": 3.509037494659424, + "step": 5664 + }, + { + "epoch": 78.68501529051987, + "grad_norm": 0.21199069917201996, + "learning_rate": 0.0006, + "loss": 3.5118260383605957, + "step": 5665 + }, + { + "epoch": 78.69899519440804, + "grad_norm": 0.23588138818740845, + "learning_rate": 0.0006, + "loss": 3.497911214828491, + "step": 5666 + }, + { + "epoch": 78.7129750982962, + "grad_norm": 0.24299076199531555, + "learning_rate": 0.0006, + "loss": 3.4978718757629395, + "step": 5667 + }, + { + "epoch": 78.72695500218435, + "grad_norm": 0.22472943365573883, + "learning_rate": 0.0006, + "loss": 3.4873275756835938, + "step": 5668 + }, + { + "epoch": 78.74093490607252, + "grad_norm": 0.24047710001468658, + "learning_rate": 0.0006, + "loss": 3.51192307472229, + "step": 5669 + }, + { + "epoch": 78.75491480996068, + "grad_norm": 0.23834499716758728, + "learning_rate": 0.0006, + "loss": 3.5092411041259766, + "step": 5670 + }, + { + "epoch": 78.76889471384884, + "grad_norm": 0.22663438320159912, + "learning_rate": 0.0006, + "loss": 3.4869158267974854, + "step": 5671 + }, + { + "epoch": 78.78287461773701, + "grad_norm": 0.23967741429805756, + "learning_rate": 0.0006, + "loss": 3.4928178787231445, + "step": 5672 + }, + { + "epoch": 78.79685452162516, + "grad_norm": 0.2554507851600647, + "learning_rate": 0.0006, + "loss": 3.506929636001587, + "step": 5673 + }, + { + "epoch": 78.81083442551332, + "grad_norm": 0.2269635796546936, + "learning_rate": 0.0006, + "loss": 3.491553544998169, + "step": 5674 + }, + { + "epoch": 78.82481432940149, + "grad_norm": 0.22387325763702393, + "learning_rate": 0.0006, + "loss": 3.510486602783203, + "step": 5675 + }, + { + "epoch": 78.83879423328965, + "grad_norm": 0.22415105998516083, + "learning_rate": 0.0006, + "loss": 3.508218765258789, + "step": 5676 + }, + { + "epoch": 78.8527741371778, + "grad_norm": 0.21340659260749817, + "learning_rate": 0.0006, + "loss": 3.4840855598449707, + "step": 5677 + }, + { + "epoch": 78.86675404106597, + "grad_norm": 0.20351317524909973, + "learning_rate": 0.0006, + "loss": 3.485891342163086, + "step": 5678 + }, + { + "epoch": 78.88073394495413, + "grad_norm": 0.21389521658420563, + "learning_rate": 0.0006, + "loss": 3.447760581970215, + "step": 5679 + }, + { + "epoch": 78.89471384884229, + "grad_norm": 0.20613767206668854, + "learning_rate": 0.0006, + "loss": 3.484274387359619, + "step": 5680 + }, + { + "epoch": 78.90869375273044, + "grad_norm": 0.22112590074539185, + "learning_rate": 0.0006, + "loss": 3.4902679920196533, + "step": 5681 + }, + { + "epoch": 78.92267365661861, + "grad_norm": 0.24395327270030975, + "learning_rate": 0.0006, + "loss": 3.5017199516296387, + "step": 5682 + }, + { + "epoch": 78.93665356050677, + "grad_norm": 0.21891266107559204, + "learning_rate": 0.0006, + "loss": 3.4892828464508057, + "step": 5683 + }, + { + "epoch": 78.95063346439493, + "grad_norm": 0.1842963546514511, + "learning_rate": 0.0006, + "loss": 3.4611716270446777, + "step": 5684 + }, + { + "epoch": 78.9646133682831, + "grad_norm": 0.21199378371238708, + "learning_rate": 0.0006, + "loss": 3.487452507019043, + "step": 5685 + }, + { + "epoch": 78.97859327217125, + "grad_norm": 0.2304743379354477, + "learning_rate": 0.0006, + "loss": 3.502875804901123, + "step": 5686 + }, + { + "epoch": 78.99257317605941, + "grad_norm": 0.22459475696086884, + "learning_rate": 0.0006, + "loss": 3.47969388961792, + "step": 5687 + }, + { + "epoch": 79.0, + "grad_norm": 0.22847296297550201, + "learning_rate": 0.0006, + "loss": 3.497244358062744, + "step": 5688 + }, + { + "epoch": 79.0, + "eval_loss": 3.9824025630950928, + "eval_runtime": 45.0842, + "eval_samples_per_second": 54.165, + "eval_steps_per_second": 3.394, + "step": 5688 + }, + { + "epoch": 79.01397990388816, + "grad_norm": 0.2116587609052658, + "learning_rate": 0.0006, + "loss": 3.467320442199707, + "step": 5689 + }, + { + "epoch": 79.02795980777633, + "grad_norm": 0.2433212846517563, + "learning_rate": 0.0006, + "loss": 3.454660415649414, + "step": 5690 + }, + { + "epoch": 79.04193971166448, + "grad_norm": 0.27106034755706787, + "learning_rate": 0.0006, + "loss": 3.4242570400238037, + "step": 5691 + }, + { + "epoch": 79.05591961555264, + "grad_norm": 0.2392120659351349, + "learning_rate": 0.0006, + "loss": 3.461986541748047, + "step": 5692 + }, + { + "epoch": 79.06989951944081, + "grad_norm": 0.2061600536108017, + "learning_rate": 0.0006, + "loss": 3.462704658508301, + "step": 5693 + }, + { + "epoch": 79.08387942332897, + "grad_norm": 0.23523560166358948, + "learning_rate": 0.0006, + "loss": 3.435553789138794, + "step": 5694 + }, + { + "epoch": 79.09785932721712, + "grad_norm": 0.23340672254562378, + "learning_rate": 0.0006, + "loss": 3.4382264614105225, + "step": 5695 + }, + { + "epoch": 79.1118392311053, + "grad_norm": 0.23986691236495972, + "learning_rate": 0.0006, + "loss": 3.465056896209717, + "step": 5696 + }, + { + "epoch": 79.12581913499345, + "grad_norm": 0.3069128394126892, + "learning_rate": 0.0006, + "loss": 3.4774551391601562, + "step": 5697 + }, + { + "epoch": 79.1397990388816, + "grad_norm": 0.3146822154521942, + "learning_rate": 0.0006, + "loss": 3.463569402694702, + "step": 5698 + }, + { + "epoch": 79.15377894276976, + "grad_norm": 0.2516225576400757, + "learning_rate": 0.0006, + "loss": 3.455902576446533, + "step": 5699 + }, + { + "epoch": 79.16775884665793, + "grad_norm": 0.23645997047424316, + "learning_rate": 0.0006, + "loss": 3.4733195304870605, + "step": 5700 + }, + { + "epoch": 79.18173875054609, + "grad_norm": 0.23653559386730194, + "learning_rate": 0.0006, + "loss": 3.4751782417297363, + "step": 5701 + }, + { + "epoch": 79.19571865443424, + "grad_norm": 0.2404588907957077, + "learning_rate": 0.0006, + "loss": 3.43743896484375, + "step": 5702 + }, + { + "epoch": 79.20969855832242, + "grad_norm": 0.2621341049671173, + "learning_rate": 0.0006, + "loss": 3.4895966053009033, + "step": 5703 + }, + { + "epoch": 79.22367846221057, + "grad_norm": 0.28223180770874023, + "learning_rate": 0.0006, + "loss": 3.4525022506713867, + "step": 5704 + }, + { + "epoch": 79.23765836609873, + "grad_norm": 0.25029054284095764, + "learning_rate": 0.0006, + "loss": 3.491457939147949, + "step": 5705 + }, + { + "epoch": 79.2516382699869, + "grad_norm": 0.20627525448799133, + "learning_rate": 0.0006, + "loss": 3.4669456481933594, + "step": 5706 + }, + { + "epoch": 79.26561817387505, + "grad_norm": 0.2029162049293518, + "learning_rate": 0.0006, + "loss": 3.467924118041992, + "step": 5707 + }, + { + "epoch": 79.27959807776321, + "grad_norm": 0.21813155710697174, + "learning_rate": 0.0006, + "loss": 3.4625706672668457, + "step": 5708 + }, + { + "epoch": 79.29357798165138, + "grad_norm": 0.22105057537555695, + "learning_rate": 0.0006, + "loss": 3.475510597229004, + "step": 5709 + }, + { + "epoch": 79.30755788553954, + "grad_norm": 0.22906996309757233, + "learning_rate": 0.0006, + "loss": 3.468635320663452, + "step": 5710 + }, + { + "epoch": 79.3215377894277, + "grad_norm": 0.24189208447933197, + "learning_rate": 0.0006, + "loss": 3.5031652450561523, + "step": 5711 + }, + { + "epoch": 79.33551769331586, + "grad_norm": 0.24393346905708313, + "learning_rate": 0.0006, + "loss": 3.454542636871338, + "step": 5712 + }, + { + "epoch": 79.34949759720402, + "grad_norm": 0.2266826182603836, + "learning_rate": 0.0006, + "loss": 3.4841208457946777, + "step": 5713 + }, + { + "epoch": 79.36347750109218, + "grad_norm": 0.2427995502948761, + "learning_rate": 0.0006, + "loss": 3.4595608711242676, + "step": 5714 + }, + { + "epoch": 79.37745740498035, + "grad_norm": 0.22999171912670135, + "learning_rate": 0.0006, + "loss": 3.485996723175049, + "step": 5715 + }, + { + "epoch": 79.3914373088685, + "grad_norm": 0.20932789146900177, + "learning_rate": 0.0006, + "loss": 3.488872528076172, + "step": 5716 + }, + { + "epoch": 79.40541721275666, + "grad_norm": 0.21802127361297607, + "learning_rate": 0.0006, + "loss": 3.4697980880737305, + "step": 5717 + }, + { + "epoch": 79.41939711664482, + "grad_norm": 0.197403684258461, + "learning_rate": 0.0006, + "loss": 3.486513614654541, + "step": 5718 + }, + { + "epoch": 79.43337702053299, + "grad_norm": 0.23447830975055695, + "learning_rate": 0.0006, + "loss": 3.475939989089966, + "step": 5719 + }, + { + "epoch": 79.44735692442114, + "grad_norm": 0.22854745388031006, + "learning_rate": 0.0006, + "loss": 3.465761661529541, + "step": 5720 + }, + { + "epoch": 79.4613368283093, + "grad_norm": 0.23276479542255402, + "learning_rate": 0.0006, + "loss": 3.4629950523376465, + "step": 5721 + }, + { + "epoch": 79.47531673219747, + "grad_norm": 0.2330375462770462, + "learning_rate": 0.0006, + "loss": 3.4637608528137207, + "step": 5722 + }, + { + "epoch": 79.48929663608563, + "grad_norm": 0.20138737559318542, + "learning_rate": 0.0006, + "loss": 3.481213092803955, + "step": 5723 + }, + { + "epoch": 79.50327653997378, + "grad_norm": 0.21511636674404144, + "learning_rate": 0.0006, + "loss": 3.476829767227173, + "step": 5724 + }, + { + "epoch": 79.51725644386195, + "grad_norm": 0.23398199677467346, + "learning_rate": 0.0006, + "loss": 3.489365577697754, + "step": 5725 + }, + { + "epoch": 79.53123634775011, + "grad_norm": 0.2232203334569931, + "learning_rate": 0.0006, + "loss": 3.4860544204711914, + "step": 5726 + }, + { + "epoch": 79.54521625163827, + "grad_norm": 0.22046223282814026, + "learning_rate": 0.0006, + "loss": 3.474432945251465, + "step": 5727 + }, + { + "epoch": 79.55919615552644, + "grad_norm": 0.21202176809310913, + "learning_rate": 0.0006, + "loss": 3.4932260513305664, + "step": 5728 + }, + { + "epoch": 79.57317605941459, + "grad_norm": 0.20418033003807068, + "learning_rate": 0.0006, + "loss": 3.4956419467926025, + "step": 5729 + }, + { + "epoch": 79.58715596330275, + "grad_norm": 0.2247099131345749, + "learning_rate": 0.0006, + "loss": 3.4714908599853516, + "step": 5730 + }, + { + "epoch": 79.60113586719092, + "grad_norm": 0.22176751494407654, + "learning_rate": 0.0006, + "loss": 3.4729676246643066, + "step": 5731 + }, + { + "epoch": 79.61511577107908, + "grad_norm": 0.3019230365753174, + "learning_rate": 0.0006, + "loss": 3.510695695877075, + "step": 5732 + }, + { + "epoch": 79.62909567496723, + "grad_norm": 0.2699214220046997, + "learning_rate": 0.0006, + "loss": 3.4848737716674805, + "step": 5733 + }, + { + "epoch": 79.6430755788554, + "grad_norm": 0.21180644631385803, + "learning_rate": 0.0006, + "loss": 3.4982075691223145, + "step": 5734 + }, + { + "epoch": 79.65705548274356, + "grad_norm": 0.22198693454265594, + "learning_rate": 0.0006, + "loss": 3.4891958236694336, + "step": 5735 + }, + { + "epoch": 79.67103538663171, + "grad_norm": 0.23550960421562195, + "learning_rate": 0.0006, + "loss": 3.4809060096740723, + "step": 5736 + }, + { + "epoch": 79.68501529051987, + "grad_norm": 0.22033970057964325, + "learning_rate": 0.0006, + "loss": 3.4804179668426514, + "step": 5737 + }, + { + "epoch": 79.69899519440804, + "grad_norm": 0.22671130299568176, + "learning_rate": 0.0006, + "loss": 3.5053179264068604, + "step": 5738 + }, + { + "epoch": 79.7129750982962, + "grad_norm": 0.22178004682064056, + "learning_rate": 0.0006, + "loss": 3.481842279434204, + "step": 5739 + }, + { + "epoch": 79.72695500218435, + "grad_norm": 0.21100834012031555, + "learning_rate": 0.0006, + "loss": 3.4759697914123535, + "step": 5740 + }, + { + "epoch": 79.74093490607252, + "grad_norm": 0.22176271677017212, + "learning_rate": 0.0006, + "loss": 3.475595712661743, + "step": 5741 + }, + { + "epoch": 79.75491480996068, + "grad_norm": 0.24720509350299835, + "learning_rate": 0.0006, + "loss": 3.489837646484375, + "step": 5742 + }, + { + "epoch": 79.76889471384884, + "grad_norm": 0.26469993591308594, + "learning_rate": 0.0006, + "loss": 3.506197452545166, + "step": 5743 + }, + { + "epoch": 79.78287461773701, + "grad_norm": 0.24642309546470642, + "learning_rate": 0.0006, + "loss": 3.470227003097534, + "step": 5744 + }, + { + "epoch": 79.79685452162516, + "grad_norm": 0.2302687019109726, + "learning_rate": 0.0006, + "loss": 3.4808273315429688, + "step": 5745 + }, + { + "epoch": 79.81083442551332, + "grad_norm": 0.21863581240177155, + "learning_rate": 0.0006, + "loss": 3.4925639629364014, + "step": 5746 + }, + { + "epoch": 79.82481432940149, + "grad_norm": 0.22680892050266266, + "learning_rate": 0.0006, + "loss": 3.5036230087280273, + "step": 5747 + }, + { + "epoch": 79.83879423328965, + "grad_norm": 0.2469770610332489, + "learning_rate": 0.0006, + "loss": 3.483344078063965, + "step": 5748 + }, + { + "epoch": 79.8527741371778, + "grad_norm": 0.24359549582004547, + "learning_rate": 0.0006, + "loss": 3.4770007133483887, + "step": 5749 + }, + { + "epoch": 79.86675404106597, + "grad_norm": 0.22829081118106842, + "learning_rate": 0.0006, + "loss": 3.4755868911743164, + "step": 5750 + }, + { + "epoch": 79.88073394495413, + "grad_norm": 0.19276872277259827, + "learning_rate": 0.0006, + "loss": 3.4675350189208984, + "step": 5751 + }, + { + "epoch": 79.89471384884229, + "grad_norm": 0.19389234483242035, + "learning_rate": 0.0006, + "loss": 3.4747910499572754, + "step": 5752 + }, + { + "epoch": 79.90869375273044, + "grad_norm": 0.19570349156856537, + "learning_rate": 0.0006, + "loss": 3.5035524368286133, + "step": 5753 + }, + { + "epoch": 79.92267365661861, + "grad_norm": 0.21111367642879486, + "learning_rate": 0.0006, + "loss": 3.488398551940918, + "step": 5754 + }, + { + "epoch": 79.93665356050677, + "grad_norm": 0.219063401222229, + "learning_rate": 0.0006, + "loss": 3.483445882797241, + "step": 5755 + }, + { + "epoch": 79.95063346439493, + "grad_norm": 0.22253118455410004, + "learning_rate": 0.0006, + "loss": 3.45628023147583, + "step": 5756 + }, + { + "epoch": 79.9646133682831, + "grad_norm": 0.25083762407302856, + "learning_rate": 0.0006, + "loss": 3.5318427085876465, + "step": 5757 + }, + { + "epoch": 79.97859327217125, + "grad_norm": 0.22656984627246857, + "learning_rate": 0.0006, + "loss": 3.48038649559021, + "step": 5758 + }, + { + "epoch": 79.99257317605941, + "grad_norm": 0.20029467344284058, + "learning_rate": 0.0006, + "loss": 3.482250213623047, + "step": 5759 + }, + { + "epoch": 80.0, + "grad_norm": 0.24279549717903137, + "learning_rate": 0.0006, + "loss": 3.5121026039123535, + "step": 5760 + }, + { + "epoch": 80.0, + "eval_loss": 3.978234052658081, + "eval_runtime": 44.1332, + "eval_samples_per_second": 55.333, + "eval_steps_per_second": 3.467, + "step": 5760 + }, + { + "epoch": 80.01397990388816, + "grad_norm": 0.25131338834762573, + "learning_rate": 0.0006, + "loss": 3.4301276206970215, + "step": 5761 + }, + { + "epoch": 80.02795980777633, + "grad_norm": 0.2534768283367157, + "learning_rate": 0.0006, + "loss": 3.451167583465576, + "step": 5762 + }, + { + "epoch": 80.04193971166448, + "grad_norm": 0.25048282742500305, + "learning_rate": 0.0006, + "loss": 3.481504440307617, + "step": 5763 + }, + { + "epoch": 80.05591961555264, + "grad_norm": 0.24254269897937775, + "learning_rate": 0.0006, + "loss": 3.4106149673461914, + "step": 5764 + }, + { + "epoch": 80.06989951944081, + "grad_norm": 0.22116127610206604, + "learning_rate": 0.0006, + "loss": 3.4241909980773926, + "step": 5765 + }, + { + "epoch": 80.08387942332897, + "grad_norm": 0.23056873679161072, + "learning_rate": 0.0006, + "loss": 3.441988468170166, + "step": 5766 + }, + { + "epoch": 80.09785932721712, + "grad_norm": 0.270584374666214, + "learning_rate": 0.0006, + "loss": 3.443169116973877, + "step": 5767 + }, + { + "epoch": 80.1118392311053, + "grad_norm": 0.2976143956184387, + "learning_rate": 0.0006, + "loss": 3.448213815689087, + "step": 5768 + }, + { + "epoch": 80.12581913499345, + "grad_norm": 0.26311707496643066, + "learning_rate": 0.0006, + "loss": 3.4544711112976074, + "step": 5769 + }, + { + "epoch": 80.1397990388816, + "grad_norm": 0.23963525891304016, + "learning_rate": 0.0006, + "loss": 3.470118522644043, + "step": 5770 + }, + { + "epoch": 80.15377894276976, + "grad_norm": 0.22066232562065125, + "learning_rate": 0.0006, + "loss": 3.454728126525879, + "step": 5771 + }, + { + "epoch": 80.16775884665793, + "grad_norm": 0.2365395873785019, + "learning_rate": 0.0006, + "loss": 3.4711155891418457, + "step": 5772 + }, + { + "epoch": 80.18173875054609, + "grad_norm": 0.2447291910648346, + "learning_rate": 0.0006, + "loss": 3.4850234985351562, + "step": 5773 + }, + { + "epoch": 80.19571865443424, + "grad_norm": 0.21378695964813232, + "learning_rate": 0.0006, + "loss": 3.4519004821777344, + "step": 5774 + }, + { + "epoch": 80.20969855832242, + "grad_norm": 0.22056379914283752, + "learning_rate": 0.0006, + "loss": 3.440544366836548, + "step": 5775 + }, + { + "epoch": 80.22367846221057, + "grad_norm": 0.2642355263233185, + "learning_rate": 0.0006, + "loss": 3.474979877471924, + "step": 5776 + }, + { + "epoch": 80.23765836609873, + "grad_norm": 0.2748482823371887, + "learning_rate": 0.0006, + "loss": 3.475363254547119, + "step": 5777 + }, + { + "epoch": 80.2516382699869, + "grad_norm": 0.24379116296768188, + "learning_rate": 0.0006, + "loss": 3.496967315673828, + "step": 5778 + }, + { + "epoch": 80.26561817387505, + "grad_norm": 0.2028840184211731, + "learning_rate": 0.0006, + "loss": 3.431668758392334, + "step": 5779 + }, + { + "epoch": 80.27959807776321, + "grad_norm": 0.21429325640201569, + "learning_rate": 0.0006, + "loss": 3.440277099609375, + "step": 5780 + }, + { + "epoch": 80.29357798165138, + "grad_norm": 0.24563860893249512, + "learning_rate": 0.0006, + "loss": 3.4491970539093018, + "step": 5781 + }, + { + "epoch": 80.30755788553954, + "grad_norm": 0.26240795850753784, + "learning_rate": 0.0006, + "loss": 3.4703845977783203, + "step": 5782 + }, + { + "epoch": 80.3215377894277, + "grad_norm": 0.22902022302150726, + "learning_rate": 0.0006, + "loss": 3.472461700439453, + "step": 5783 + }, + { + "epoch": 80.33551769331586, + "grad_norm": 0.21905358135700226, + "learning_rate": 0.0006, + "loss": 3.4711859226226807, + "step": 5784 + }, + { + "epoch": 80.34949759720402, + "grad_norm": 0.2465618997812271, + "learning_rate": 0.0006, + "loss": 3.4803764820098877, + "step": 5785 + }, + { + "epoch": 80.36347750109218, + "grad_norm": 0.22397007048130035, + "learning_rate": 0.0006, + "loss": 3.5154547691345215, + "step": 5786 + }, + { + "epoch": 80.37745740498035, + "grad_norm": 0.2198820561170578, + "learning_rate": 0.0006, + "loss": 3.47590970993042, + "step": 5787 + }, + { + "epoch": 80.3914373088685, + "grad_norm": 0.20409493148326874, + "learning_rate": 0.0006, + "loss": 3.477367401123047, + "step": 5788 + }, + { + "epoch": 80.40541721275666, + "grad_norm": 0.217926487326622, + "learning_rate": 0.0006, + "loss": 3.490652084350586, + "step": 5789 + }, + { + "epoch": 80.41939711664482, + "grad_norm": 0.21637201309204102, + "learning_rate": 0.0006, + "loss": 3.458226442337036, + "step": 5790 + }, + { + "epoch": 80.43337702053299, + "grad_norm": 0.20321200788021088, + "learning_rate": 0.0006, + "loss": 3.452885866165161, + "step": 5791 + }, + { + "epoch": 80.44735692442114, + "grad_norm": 0.21885623037815094, + "learning_rate": 0.0006, + "loss": 3.4941980838775635, + "step": 5792 + }, + { + "epoch": 80.4613368283093, + "grad_norm": 0.22409287095069885, + "learning_rate": 0.0006, + "loss": 3.4670767784118652, + "step": 5793 + }, + { + "epoch": 80.47531673219747, + "grad_norm": 0.21799036860466003, + "learning_rate": 0.0006, + "loss": 3.4714083671569824, + "step": 5794 + }, + { + "epoch": 80.48929663608563, + "grad_norm": 0.21685674786567688, + "learning_rate": 0.0006, + "loss": 3.4904956817626953, + "step": 5795 + }, + { + "epoch": 80.50327653997378, + "grad_norm": 0.20650283992290497, + "learning_rate": 0.0006, + "loss": 3.4683380126953125, + "step": 5796 + }, + { + "epoch": 80.51725644386195, + "grad_norm": 0.21926143765449524, + "learning_rate": 0.0006, + "loss": 3.4641075134277344, + "step": 5797 + }, + { + "epoch": 80.53123634775011, + "grad_norm": 0.2350672036409378, + "learning_rate": 0.0006, + "loss": 3.44460391998291, + "step": 5798 + }, + { + "epoch": 80.54521625163827, + "grad_norm": 0.2503013610839844, + "learning_rate": 0.0006, + "loss": 3.4592742919921875, + "step": 5799 + }, + { + "epoch": 80.55919615552644, + "grad_norm": 0.24494926631450653, + "learning_rate": 0.0006, + "loss": 3.5099523067474365, + "step": 5800 + }, + { + "epoch": 80.57317605941459, + "grad_norm": 0.23444698750972748, + "learning_rate": 0.0006, + "loss": 3.451995849609375, + "step": 5801 + }, + { + "epoch": 80.58715596330275, + "grad_norm": 0.22345036268234253, + "learning_rate": 0.0006, + "loss": 3.4782915115356445, + "step": 5802 + }, + { + "epoch": 80.60113586719092, + "grad_norm": 0.22532342374324799, + "learning_rate": 0.0006, + "loss": 3.5129644870758057, + "step": 5803 + }, + { + "epoch": 80.61511577107908, + "grad_norm": 0.26806071400642395, + "learning_rate": 0.0006, + "loss": 3.4816815853118896, + "step": 5804 + }, + { + "epoch": 80.62909567496723, + "grad_norm": 0.2529740035533905, + "learning_rate": 0.0006, + "loss": 3.4738473892211914, + "step": 5805 + }, + { + "epoch": 80.6430755788554, + "grad_norm": 0.21056286990642548, + "learning_rate": 0.0006, + "loss": 3.464974880218506, + "step": 5806 + }, + { + "epoch": 80.65705548274356, + "grad_norm": 0.21475818753242493, + "learning_rate": 0.0006, + "loss": 3.4820570945739746, + "step": 5807 + }, + { + "epoch": 80.67103538663171, + "grad_norm": 0.2191086858510971, + "learning_rate": 0.0006, + "loss": 3.502323627471924, + "step": 5808 + }, + { + "epoch": 80.68501529051987, + "grad_norm": 0.2302156239748001, + "learning_rate": 0.0006, + "loss": 3.4993669986724854, + "step": 5809 + }, + { + "epoch": 80.69899519440804, + "grad_norm": 0.22701990604400635, + "learning_rate": 0.0006, + "loss": 3.462667465209961, + "step": 5810 + }, + { + "epoch": 80.7129750982962, + "grad_norm": 0.20839478075504303, + "learning_rate": 0.0006, + "loss": 3.4990062713623047, + "step": 5811 + }, + { + "epoch": 80.72695500218435, + "grad_norm": 0.24495407938957214, + "learning_rate": 0.0006, + "loss": 3.514021396636963, + "step": 5812 + }, + { + "epoch": 80.74093490607252, + "grad_norm": 0.27316489815711975, + "learning_rate": 0.0006, + "loss": 3.463404655456543, + "step": 5813 + }, + { + "epoch": 80.75491480996068, + "grad_norm": 0.22948578000068665, + "learning_rate": 0.0006, + "loss": 3.505904197692871, + "step": 5814 + }, + { + "epoch": 80.76889471384884, + "grad_norm": 0.21909916400909424, + "learning_rate": 0.0006, + "loss": 3.5149335861206055, + "step": 5815 + }, + { + "epoch": 80.78287461773701, + "grad_norm": 0.23310492932796478, + "learning_rate": 0.0006, + "loss": 3.464721202850342, + "step": 5816 + }, + { + "epoch": 80.79685452162516, + "grad_norm": 0.2319480925798416, + "learning_rate": 0.0006, + "loss": 3.4716296195983887, + "step": 5817 + }, + { + "epoch": 80.81083442551332, + "grad_norm": 0.22677654027938843, + "learning_rate": 0.0006, + "loss": 3.4898571968078613, + "step": 5818 + }, + { + "epoch": 80.82481432940149, + "grad_norm": 0.2309885025024414, + "learning_rate": 0.0006, + "loss": 3.5047802925109863, + "step": 5819 + }, + { + "epoch": 80.83879423328965, + "grad_norm": 0.23699891567230225, + "learning_rate": 0.0006, + "loss": 3.4849839210510254, + "step": 5820 + }, + { + "epoch": 80.8527741371778, + "grad_norm": 0.2177085429430008, + "learning_rate": 0.0006, + "loss": 3.5039596557617188, + "step": 5821 + }, + { + "epoch": 80.86675404106597, + "grad_norm": 0.2501188814640045, + "learning_rate": 0.0006, + "loss": 3.476724863052368, + "step": 5822 + }, + { + "epoch": 80.88073394495413, + "grad_norm": 0.24670550227165222, + "learning_rate": 0.0006, + "loss": 3.4802114963531494, + "step": 5823 + }, + { + "epoch": 80.89471384884229, + "grad_norm": 0.2456343024969101, + "learning_rate": 0.0006, + "loss": 3.4718332290649414, + "step": 5824 + }, + { + "epoch": 80.90869375273044, + "grad_norm": 0.23390130698680878, + "learning_rate": 0.0006, + "loss": 3.486870765686035, + "step": 5825 + }, + { + "epoch": 80.92267365661861, + "grad_norm": 0.22055526077747345, + "learning_rate": 0.0006, + "loss": 3.514493227005005, + "step": 5826 + }, + { + "epoch": 80.93665356050677, + "grad_norm": 0.2336755096912384, + "learning_rate": 0.0006, + "loss": 3.470463275909424, + "step": 5827 + }, + { + "epoch": 80.95063346439493, + "grad_norm": 0.23320306837558746, + "learning_rate": 0.0006, + "loss": 3.4858689308166504, + "step": 5828 + }, + { + "epoch": 80.9646133682831, + "grad_norm": 0.23942042887210846, + "learning_rate": 0.0006, + "loss": 3.5128583908081055, + "step": 5829 + }, + { + "epoch": 80.97859327217125, + "grad_norm": 0.26255691051483154, + "learning_rate": 0.0006, + "loss": 3.4763708114624023, + "step": 5830 + }, + { + "epoch": 80.99257317605941, + "grad_norm": 0.2564900517463684, + "learning_rate": 0.0006, + "loss": 3.5013113021850586, + "step": 5831 + }, + { + "epoch": 81.0, + "grad_norm": 0.27842438220977783, + "learning_rate": 0.0006, + "loss": 3.530803680419922, + "step": 5832 + }, + { + "epoch": 81.0, + "eval_loss": 3.994793653488159, + "eval_runtime": 44.7478, + "eval_samples_per_second": 54.573, + "eval_steps_per_second": 3.419, + "step": 5832 + }, + { + "epoch": 81.01397990388816, + "grad_norm": 0.2241310030221939, + "learning_rate": 0.0006, + "loss": 3.4611167907714844, + "step": 5833 + }, + { + "epoch": 81.02795980777633, + "grad_norm": 0.2282719761133194, + "learning_rate": 0.0006, + "loss": 3.4444174766540527, + "step": 5834 + }, + { + "epoch": 81.04193971166448, + "grad_norm": 0.22664876282215118, + "learning_rate": 0.0006, + "loss": 3.4553420543670654, + "step": 5835 + }, + { + "epoch": 81.05591961555264, + "grad_norm": 0.23604267835617065, + "learning_rate": 0.0006, + "loss": 3.446911573410034, + "step": 5836 + }, + { + "epoch": 81.06989951944081, + "grad_norm": 0.24082261323928833, + "learning_rate": 0.0006, + "loss": 3.4441776275634766, + "step": 5837 + }, + { + "epoch": 81.08387942332897, + "grad_norm": 0.22746489942073822, + "learning_rate": 0.0006, + "loss": 3.452177047729492, + "step": 5838 + }, + { + "epoch": 81.09785932721712, + "grad_norm": 0.21123987436294556, + "learning_rate": 0.0006, + "loss": 3.4311065673828125, + "step": 5839 + }, + { + "epoch": 81.1118392311053, + "grad_norm": 0.22218266129493713, + "learning_rate": 0.0006, + "loss": 3.467769145965576, + "step": 5840 + }, + { + "epoch": 81.12581913499345, + "grad_norm": 0.2289019376039505, + "learning_rate": 0.0006, + "loss": 3.4591445922851562, + "step": 5841 + }, + { + "epoch": 81.1397990388816, + "grad_norm": 0.21944275498390198, + "learning_rate": 0.0006, + "loss": 3.471113681793213, + "step": 5842 + }, + { + "epoch": 81.15377894276976, + "grad_norm": 0.22327102720737457, + "learning_rate": 0.0006, + "loss": 3.466477394104004, + "step": 5843 + }, + { + "epoch": 81.16775884665793, + "grad_norm": 0.24516990780830383, + "learning_rate": 0.0006, + "loss": 3.4205875396728516, + "step": 5844 + }, + { + "epoch": 81.18173875054609, + "grad_norm": 0.22093479335308075, + "learning_rate": 0.0006, + "loss": 3.4454703330993652, + "step": 5845 + }, + { + "epoch": 81.19571865443424, + "grad_norm": 0.2028535008430481, + "learning_rate": 0.0006, + "loss": 3.4515299797058105, + "step": 5846 + }, + { + "epoch": 81.20969855832242, + "grad_norm": 0.2238505333662033, + "learning_rate": 0.0006, + "loss": 3.459362506866455, + "step": 5847 + }, + { + "epoch": 81.22367846221057, + "grad_norm": 0.2231738269329071, + "learning_rate": 0.0006, + "loss": 3.4835047721862793, + "step": 5848 + }, + { + "epoch": 81.23765836609873, + "grad_norm": 0.23899082839488983, + "learning_rate": 0.0006, + "loss": 3.471942901611328, + "step": 5849 + }, + { + "epoch": 81.2516382699869, + "grad_norm": 0.2504292130470276, + "learning_rate": 0.0006, + "loss": 3.447814702987671, + "step": 5850 + }, + { + "epoch": 81.26561817387505, + "grad_norm": 0.24690432846546173, + "learning_rate": 0.0006, + "loss": 3.4676897525787354, + "step": 5851 + }, + { + "epoch": 81.27959807776321, + "grad_norm": 0.2241731733083725, + "learning_rate": 0.0006, + "loss": 3.4704437255859375, + "step": 5852 + }, + { + "epoch": 81.29357798165138, + "grad_norm": 0.21579913794994354, + "learning_rate": 0.0006, + "loss": 3.4581332206726074, + "step": 5853 + }, + { + "epoch": 81.30755788553954, + "grad_norm": 0.19946254789829254, + "learning_rate": 0.0006, + "loss": 3.49086856842041, + "step": 5854 + }, + { + "epoch": 81.3215377894277, + "grad_norm": 0.21698544919490814, + "learning_rate": 0.0006, + "loss": 3.47237491607666, + "step": 5855 + }, + { + "epoch": 81.33551769331586, + "grad_norm": 0.23065327107906342, + "learning_rate": 0.0006, + "loss": 3.471611261367798, + "step": 5856 + }, + { + "epoch": 81.34949759720402, + "grad_norm": 0.25529375672340393, + "learning_rate": 0.0006, + "loss": 3.474853038787842, + "step": 5857 + }, + { + "epoch": 81.36347750109218, + "grad_norm": 0.2427460253238678, + "learning_rate": 0.0006, + "loss": 3.47169828414917, + "step": 5858 + }, + { + "epoch": 81.37745740498035, + "grad_norm": 0.21831433475017548, + "learning_rate": 0.0006, + "loss": 3.469316005706787, + "step": 5859 + }, + { + "epoch": 81.3914373088685, + "grad_norm": 0.22414742410182953, + "learning_rate": 0.0006, + "loss": 3.4708399772644043, + "step": 5860 + }, + { + "epoch": 81.40541721275666, + "grad_norm": 0.24430912733078003, + "learning_rate": 0.0006, + "loss": 3.4687514305114746, + "step": 5861 + }, + { + "epoch": 81.41939711664482, + "grad_norm": 0.2250177413225174, + "learning_rate": 0.0006, + "loss": 3.471647024154663, + "step": 5862 + }, + { + "epoch": 81.43337702053299, + "grad_norm": 0.21442367136478424, + "learning_rate": 0.0006, + "loss": 3.5020229816436768, + "step": 5863 + }, + { + "epoch": 81.44735692442114, + "grad_norm": 0.2115623503923416, + "learning_rate": 0.0006, + "loss": 3.4541711807250977, + "step": 5864 + }, + { + "epoch": 81.4613368283093, + "grad_norm": 0.21600203216075897, + "learning_rate": 0.0006, + "loss": 3.444777011871338, + "step": 5865 + }, + { + "epoch": 81.47531673219747, + "grad_norm": 0.2073121964931488, + "learning_rate": 0.0006, + "loss": 3.4678783416748047, + "step": 5866 + }, + { + "epoch": 81.48929663608563, + "grad_norm": 0.21327655017375946, + "learning_rate": 0.0006, + "loss": 3.492672920227051, + "step": 5867 + }, + { + "epoch": 81.50327653997378, + "grad_norm": 0.19428470730781555, + "learning_rate": 0.0006, + "loss": 3.4926891326904297, + "step": 5868 + }, + { + "epoch": 81.51725644386195, + "grad_norm": 0.2175777107477188, + "learning_rate": 0.0006, + "loss": 3.4540810585021973, + "step": 5869 + }, + { + "epoch": 81.53123634775011, + "grad_norm": 0.2322985827922821, + "learning_rate": 0.0006, + "loss": 3.4896368980407715, + "step": 5870 + }, + { + "epoch": 81.54521625163827, + "grad_norm": 0.24916131794452667, + "learning_rate": 0.0006, + "loss": 3.4834001064300537, + "step": 5871 + }, + { + "epoch": 81.55919615552644, + "grad_norm": 0.24375544488430023, + "learning_rate": 0.0006, + "loss": 3.4601101875305176, + "step": 5872 + }, + { + "epoch": 81.57317605941459, + "grad_norm": 0.22558897733688354, + "learning_rate": 0.0006, + "loss": 3.479156970977783, + "step": 5873 + }, + { + "epoch": 81.58715596330275, + "grad_norm": 0.2258717566728592, + "learning_rate": 0.0006, + "loss": 3.4763894081115723, + "step": 5874 + }, + { + "epoch": 81.60113586719092, + "grad_norm": 0.2349073439836502, + "learning_rate": 0.0006, + "loss": 3.4897050857543945, + "step": 5875 + }, + { + "epoch": 81.61511577107908, + "grad_norm": 0.2525520920753479, + "learning_rate": 0.0006, + "loss": 3.462857246398926, + "step": 5876 + }, + { + "epoch": 81.62909567496723, + "grad_norm": 0.21800200641155243, + "learning_rate": 0.0006, + "loss": 3.466336488723755, + "step": 5877 + }, + { + "epoch": 81.6430755788554, + "grad_norm": 0.19487148523330688, + "learning_rate": 0.0006, + "loss": 3.494813919067383, + "step": 5878 + }, + { + "epoch": 81.65705548274356, + "grad_norm": 0.2188173234462738, + "learning_rate": 0.0006, + "loss": 3.498023271560669, + "step": 5879 + }, + { + "epoch": 81.67103538663171, + "grad_norm": 0.22095468640327454, + "learning_rate": 0.0006, + "loss": 3.4900009632110596, + "step": 5880 + }, + { + "epoch": 81.68501529051987, + "grad_norm": 0.22997792065143585, + "learning_rate": 0.0006, + "loss": 3.476071357727051, + "step": 5881 + }, + { + "epoch": 81.69899519440804, + "grad_norm": 0.2245410829782486, + "learning_rate": 0.0006, + "loss": 3.456820249557495, + "step": 5882 + }, + { + "epoch": 81.7129750982962, + "grad_norm": 0.22648558020591736, + "learning_rate": 0.0006, + "loss": 3.487612247467041, + "step": 5883 + }, + { + "epoch": 81.72695500218435, + "grad_norm": 0.2600322961807251, + "learning_rate": 0.0006, + "loss": 3.47613525390625, + "step": 5884 + }, + { + "epoch": 81.74093490607252, + "grad_norm": 0.29320329427719116, + "learning_rate": 0.0006, + "loss": 3.4669876098632812, + "step": 5885 + }, + { + "epoch": 81.75491480996068, + "grad_norm": 0.27352645993232727, + "learning_rate": 0.0006, + "loss": 3.4944510459899902, + "step": 5886 + }, + { + "epoch": 81.76889471384884, + "grad_norm": 0.22296367585659027, + "learning_rate": 0.0006, + "loss": 3.4747262001037598, + "step": 5887 + }, + { + "epoch": 81.78287461773701, + "grad_norm": 0.23558233678340912, + "learning_rate": 0.0006, + "loss": 3.4883317947387695, + "step": 5888 + }, + { + "epoch": 81.79685452162516, + "grad_norm": 0.25436776876449585, + "learning_rate": 0.0006, + "loss": 3.486569881439209, + "step": 5889 + }, + { + "epoch": 81.81083442551332, + "grad_norm": 0.24357469379901886, + "learning_rate": 0.0006, + "loss": 3.5173630714416504, + "step": 5890 + }, + { + "epoch": 81.82481432940149, + "grad_norm": 0.208529993891716, + "learning_rate": 0.0006, + "loss": 3.4895973205566406, + "step": 5891 + }, + { + "epoch": 81.83879423328965, + "grad_norm": 0.2506846785545349, + "learning_rate": 0.0006, + "loss": 3.471381425857544, + "step": 5892 + }, + { + "epoch": 81.8527741371778, + "grad_norm": 0.23839038610458374, + "learning_rate": 0.0006, + "loss": 3.5134239196777344, + "step": 5893 + }, + { + "epoch": 81.86675404106597, + "grad_norm": 0.25112682580947876, + "learning_rate": 0.0006, + "loss": 3.4818389415740967, + "step": 5894 + }, + { + "epoch": 81.88073394495413, + "grad_norm": 0.26375311613082886, + "learning_rate": 0.0006, + "loss": 3.451540946960449, + "step": 5895 + }, + { + "epoch": 81.89471384884229, + "grad_norm": 0.24909956753253937, + "learning_rate": 0.0006, + "loss": 3.4711599349975586, + "step": 5896 + }, + { + "epoch": 81.90869375273044, + "grad_norm": 0.25776103138923645, + "learning_rate": 0.0006, + "loss": 3.4937872886657715, + "step": 5897 + }, + { + "epoch": 81.92267365661861, + "grad_norm": 0.24449801445007324, + "learning_rate": 0.0006, + "loss": 3.4718785285949707, + "step": 5898 + }, + { + "epoch": 81.93665356050677, + "grad_norm": 0.25146451592445374, + "learning_rate": 0.0006, + "loss": 3.468308210372925, + "step": 5899 + }, + { + "epoch": 81.95063346439493, + "grad_norm": 0.2371637523174286, + "learning_rate": 0.0006, + "loss": 3.5168726444244385, + "step": 5900 + }, + { + "epoch": 81.9646133682831, + "grad_norm": 0.2174614518880844, + "learning_rate": 0.0006, + "loss": 3.4614851474761963, + "step": 5901 + }, + { + "epoch": 81.97859327217125, + "grad_norm": 0.2184949368238449, + "learning_rate": 0.0006, + "loss": 3.501692771911621, + "step": 5902 + }, + { + "epoch": 81.99257317605941, + "grad_norm": 0.24104104936122894, + "learning_rate": 0.0006, + "loss": 3.470581293106079, + "step": 5903 + }, + { + "epoch": 82.0, + "grad_norm": 0.255840003490448, + "learning_rate": 0.0006, + "loss": 3.419551372528076, + "step": 5904 + }, + { + "epoch": 82.0, + "eval_loss": 3.9897069931030273, + "eval_runtime": 45.1448, + "eval_samples_per_second": 54.093, + "eval_steps_per_second": 3.389, + "step": 5904 + }, + { + "epoch": 82.01397990388816, + "grad_norm": 0.23519675433635712, + "learning_rate": 0.0006, + "loss": 3.4497785568237305, + "step": 5905 + }, + { + "epoch": 82.02795980777633, + "grad_norm": 0.24893461167812347, + "learning_rate": 0.0006, + "loss": 3.4210000038146973, + "step": 5906 + }, + { + "epoch": 82.04193971166448, + "grad_norm": 0.2475820779800415, + "learning_rate": 0.0006, + "loss": 3.465670585632324, + "step": 5907 + }, + { + "epoch": 82.05591961555264, + "grad_norm": 0.24113906919956207, + "learning_rate": 0.0006, + "loss": 3.454935073852539, + "step": 5908 + }, + { + "epoch": 82.06989951944081, + "grad_norm": 0.22427043318748474, + "learning_rate": 0.0006, + "loss": 3.47190523147583, + "step": 5909 + }, + { + "epoch": 82.08387942332897, + "grad_norm": 0.22878019511699677, + "learning_rate": 0.0006, + "loss": 3.4521985054016113, + "step": 5910 + }, + { + "epoch": 82.09785932721712, + "grad_norm": 0.25299179553985596, + "learning_rate": 0.0006, + "loss": 3.439011335372925, + "step": 5911 + }, + { + "epoch": 82.1118392311053, + "grad_norm": 0.29394835233688354, + "learning_rate": 0.0006, + "loss": 3.4350290298461914, + "step": 5912 + }, + { + "epoch": 82.12581913499345, + "grad_norm": 0.29244497418403625, + "learning_rate": 0.0006, + "loss": 3.452918291091919, + "step": 5913 + }, + { + "epoch": 82.1397990388816, + "grad_norm": 0.2498885989189148, + "learning_rate": 0.0006, + "loss": 3.445600986480713, + "step": 5914 + }, + { + "epoch": 82.15377894276976, + "grad_norm": 0.2340220957994461, + "learning_rate": 0.0006, + "loss": 3.446509838104248, + "step": 5915 + }, + { + "epoch": 82.16775884665793, + "grad_norm": 0.2612140476703644, + "learning_rate": 0.0006, + "loss": 3.4699525833129883, + "step": 5916 + }, + { + "epoch": 82.18173875054609, + "grad_norm": 0.29881903529167175, + "learning_rate": 0.0006, + "loss": 3.4616494178771973, + "step": 5917 + }, + { + "epoch": 82.19571865443424, + "grad_norm": 0.3289170265197754, + "learning_rate": 0.0006, + "loss": 3.459996461868286, + "step": 5918 + }, + { + "epoch": 82.20969855832242, + "grad_norm": 0.33752408623695374, + "learning_rate": 0.0006, + "loss": 3.485208511352539, + "step": 5919 + }, + { + "epoch": 82.22367846221057, + "grad_norm": 0.28907373547554016, + "learning_rate": 0.0006, + "loss": 3.4453067779541016, + "step": 5920 + }, + { + "epoch": 82.23765836609873, + "grad_norm": 0.22920988500118256, + "learning_rate": 0.0006, + "loss": 3.4516754150390625, + "step": 5921 + }, + { + "epoch": 82.2516382699869, + "grad_norm": 0.2918834090232849, + "learning_rate": 0.0006, + "loss": 3.4532060623168945, + "step": 5922 + }, + { + "epoch": 82.26561817387505, + "grad_norm": 0.35092175006866455, + "learning_rate": 0.0006, + "loss": 3.481351852416992, + "step": 5923 + }, + { + "epoch": 82.27959807776321, + "grad_norm": 0.35510894656181335, + "learning_rate": 0.0006, + "loss": 3.4563896656036377, + "step": 5924 + }, + { + "epoch": 82.29357798165138, + "grad_norm": 0.284163236618042, + "learning_rate": 0.0006, + "loss": 3.4800498485565186, + "step": 5925 + }, + { + "epoch": 82.30755788553954, + "grad_norm": 0.22560057044029236, + "learning_rate": 0.0006, + "loss": 3.461622714996338, + "step": 5926 + }, + { + "epoch": 82.3215377894277, + "grad_norm": 0.2595600485801697, + "learning_rate": 0.0006, + "loss": 3.4619455337524414, + "step": 5927 + }, + { + "epoch": 82.33551769331586, + "grad_norm": 0.26929134130477905, + "learning_rate": 0.0006, + "loss": 3.4466819763183594, + "step": 5928 + }, + { + "epoch": 82.34949759720402, + "grad_norm": 0.2876140773296356, + "learning_rate": 0.0006, + "loss": 3.4429526329040527, + "step": 5929 + }, + { + "epoch": 82.36347750109218, + "grad_norm": 0.24692676961421967, + "learning_rate": 0.0006, + "loss": 3.465346336364746, + "step": 5930 + }, + { + "epoch": 82.37745740498035, + "grad_norm": 0.2190248966217041, + "learning_rate": 0.0006, + "loss": 3.4734861850738525, + "step": 5931 + }, + { + "epoch": 82.3914373088685, + "grad_norm": 0.23190239071846008, + "learning_rate": 0.0006, + "loss": 3.4560375213623047, + "step": 5932 + }, + { + "epoch": 82.40541721275666, + "grad_norm": 0.26482656598091125, + "learning_rate": 0.0006, + "loss": 3.4604647159576416, + "step": 5933 + }, + { + "epoch": 82.41939711664482, + "grad_norm": 0.24802184104919434, + "learning_rate": 0.0006, + "loss": 3.414149284362793, + "step": 5934 + }, + { + "epoch": 82.43337702053299, + "grad_norm": 0.22652000188827515, + "learning_rate": 0.0006, + "loss": 3.473421096801758, + "step": 5935 + }, + { + "epoch": 82.44735692442114, + "grad_norm": 0.22467140853405, + "learning_rate": 0.0006, + "loss": 3.451671600341797, + "step": 5936 + }, + { + "epoch": 82.4613368283093, + "grad_norm": 0.244468092918396, + "learning_rate": 0.0006, + "loss": 3.4695382118225098, + "step": 5937 + }, + { + "epoch": 82.47531673219747, + "grad_norm": 0.2423151284456253, + "learning_rate": 0.0006, + "loss": 3.45648193359375, + "step": 5938 + }, + { + "epoch": 82.48929663608563, + "grad_norm": 0.24979142844676971, + "learning_rate": 0.0006, + "loss": 3.4783148765563965, + "step": 5939 + }, + { + "epoch": 82.50327653997378, + "grad_norm": 0.2788648009300232, + "learning_rate": 0.0006, + "loss": 3.457810401916504, + "step": 5940 + }, + { + "epoch": 82.51725644386195, + "grad_norm": 0.2886991500854492, + "learning_rate": 0.0006, + "loss": 3.479522228240967, + "step": 5941 + }, + { + "epoch": 82.53123634775011, + "grad_norm": 0.26907554268836975, + "learning_rate": 0.0006, + "loss": 3.449568510055542, + "step": 5942 + }, + { + "epoch": 82.54521625163827, + "grad_norm": 0.2253459244966507, + "learning_rate": 0.0006, + "loss": 3.4410414695739746, + "step": 5943 + }, + { + "epoch": 82.55919615552644, + "grad_norm": 0.23267745971679688, + "learning_rate": 0.0006, + "loss": 3.4297232627868652, + "step": 5944 + }, + { + "epoch": 82.57317605941459, + "grad_norm": 0.2892511785030365, + "learning_rate": 0.0006, + "loss": 3.4358129501342773, + "step": 5945 + }, + { + "epoch": 82.58715596330275, + "grad_norm": 0.2826172113418579, + "learning_rate": 0.0006, + "loss": 3.46335506439209, + "step": 5946 + }, + { + "epoch": 82.60113586719092, + "grad_norm": 0.2273692488670349, + "learning_rate": 0.0006, + "loss": 3.5010366439819336, + "step": 5947 + }, + { + "epoch": 82.61511577107908, + "grad_norm": 0.21712201833724976, + "learning_rate": 0.0006, + "loss": 3.4793381690979004, + "step": 5948 + }, + { + "epoch": 82.62909567496723, + "grad_norm": 0.22338661551475525, + "learning_rate": 0.0006, + "loss": 3.4844970703125, + "step": 5949 + }, + { + "epoch": 82.6430755788554, + "grad_norm": 0.21227683126926422, + "learning_rate": 0.0006, + "loss": 3.4780616760253906, + "step": 5950 + }, + { + "epoch": 82.65705548274356, + "grad_norm": 0.22288236021995544, + "learning_rate": 0.0006, + "loss": 3.4671804904937744, + "step": 5951 + }, + { + "epoch": 82.67103538663171, + "grad_norm": 0.23190240561962128, + "learning_rate": 0.0006, + "loss": 3.5143930912017822, + "step": 5952 + }, + { + "epoch": 82.68501529051987, + "grad_norm": 0.21063187718391418, + "learning_rate": 0.0006, + "loss": 3.497652530670166, + "step": 5953 + }, + { + "epoch": 82.69899519440804, + "grad_norm": 0.2175041288137436, + "learning_rate": 0.0006, + "loss": 3.4725892543792725, + "step": 5954 + }, + { + "epoch": 82.7129750982962, + "grad_norm": 0.23813064396381378, + "learning_rate": 0.0006, + "loss": 3.480269193649292, + "step": 5955 + }, + { + "epoch": 82.72695500218435, + "grad_norm": 0.1962498128414154, + "learning_rate": 0.0006, + "loss": 3.4666576385498047, + "step": 5956 + }, + { + "epoch": 82.74093490607252, + "grad_norm": 0.20937910676002502, + "learning_rate": 0.0006, + "loss": 3.485138416290283, + "step": 5957 + }, + { + "epoch": 82.75491480996068, + "grad_norm": 0.23929032683372498, + "learning_rate": 0.0006, + "loss": 3.4557695388793945, + "step": 5958 + }, + { + "epoch": 82.76889471384884, + "grad_norm": 0.21904121339321136, + "learning_rate": 0.0006, + "loss": 3.477562427520752, + "step": 5959 + }, + { + "epoch": 82.78287461773701, + "grad_norm": 0.20288591086864471, + "learning_rate": 0.0006, + "loss": 3.4972333908081055, + "step": 5960 + }, + { + "epoch": 82.79685452162516, + "grad_norm": 0.2116696536540985, + "learning_rate": 0.0006, + "loss": 3.48240327835083, + "step": 5961 + }, + { + "epoch": 82.81083442551332, + "grad_norm": 0.22824831306934357, + "learning_rate": 0.0006, + "loss": 3.4596962928771973, + "step": 5962 + }, + { + "epoch": 82.82481432940149, + "grad_norm": 0.2335250973701477, + "learning_rate": 0.0006, + "loss": 3.477674961090088, + "step": 5963 + }, + { + "epoch": 82.83879423328965, + "grad_norm": 0.24267305433750153, + "learning_rate": 0.0006, + "loss": 3.5068936347961426, + "step": 5964 + }, + { + "epoch": 82.8527741371778, + "grad_norm": 0.22586151957511902, + "learning_rate": 0.0006, + "loss": 3.5154266357421875, + "step": 5965 + }, + { + "epoch": 82.86675404106597, + "grad_norm": 0.219172403216362, + "learning_rate": 0.0006, + "loss": 3.4788248538970947, + "step": 5966 + }, + { + "epoch": 82.88073394495413, + "grad_norm": 0.230057954788208, + "learning_rate": 0.0006, + "loss": 3.463099479675293, + "step": 5967 + }, + { + "epoch": 82.89471384884229, + "grad_norm": 0.24492645263671875, + "learning_rate": 0.0006, + "loss": 3.495624542236328, + "step": 5968 + }, + { + "epoch": 82.90869375273044, + "grad_norm": 0.2710586488246918, + "learning_rate": 0.0006, + "loss": 3.4884939193725586, + "step": 5969 + }, + { + "epoch": 82.92267365661861, + "grad_norm": 0.26602303981781006, + "learning_rate": 0.0006, + "loss": 3.5522756576538086, + "step": 5970 + }, + { + "epoch": 82.93665356050677, + "grad_norm": 0.21950770914554596, + "learning_rate": 0.0006, + "loss": 3.506800651550293, + "step": 5971 + }, + { + "epoch": 82.95063346439493, + "grad_norm": 0.2120460718870163, + "learning_rate": 0.0006, + "loss": 3.4889087677001953, + "step": 5972 + }, + { + "epoch": 82.9646133682831, + "grad_norm": 0.23518255352973938, + "learning_rate": 0.0006, + "loss": 3.4935286045074463, + "step": 5973 + }, + { + "epoch": 82.97859327217125, + "grad_norm": 0.2183351367712021, + "learning_rate": 0.0006, + "loss": 3.4557912349700928, + "step": 5974 + }, + { + "epoch": 82.99257317605941, + "grad_norm": 0.21057291328907013, + "learning_rate": 0.0006, + "loss": 3.494884967803955, + "step": 5975 + }, + { + "epoch": 83.0, + "grad_norm": 0.23379701375961304, + "learning_rate": 0.0006, + "loss": 3.537684202194214, + "step": 5976 + }, + { + "epoch": 83.0, + "eval_loss": 3.996980667114258, + "eval_runtime": 44.805, + "eval_samples_per_second": 54.503, + "eval_steps_per_second": 3.415, + "step": 5976 + }, + { + "epoch": 83.01397990388816, + "grad_norm": 0.21832400560379028, + "learning_rate": 0.0006, + "loss": 3.4219069480895996, + "step": 5977 + }, + { + "epoch": 83.02795980777633, + "grad_norm": 0.22840751707553864, + "learning_rate": 0.0006, + "loss": 3.444056987762451, + "step": 5978 + }, + { + "epoch": 83.04193971166448, + "grad_norm": 0.24846753478050232, + "learning_rate": 0.0006, + "loss": 3.433744430541992, + "step": 5979 + }, + { + "epoch": 83.05591961555264, + "grad_norm": 0.2614847421646118, + "learning_rate": 0.0006, + "loss": 3.4292588233947754, + "step": 5980 + }, + { + "epoch": 83.06989951944081, + "grad_norm": 0.2762290835380554, + "learning_rate": 0.0006, + "loss": 3.4379489421844482, + "step": 5981 + }, + { + "epoch": 83.08387942332897, + "grad_norm": 0.2695395052433014, + "learning_rate": 0.0006, + "loss": 3.435392141342163, + "step": 5982 + }, + { + "epoch": 83.09785932721712, + "grad_norm": 0.285564661026001, + "learning_rate": 0.0006, + "loss": 3.4732954502105713, + "step": 5983 + }, + { + "epoch": 83.1118392311053, + "grad_norm": 0.28408879041671753, + "learning_rate": 0.0006, + "loss": 3.460115432739258, + "step": 5984 + }, + { + "epoch": 83.12581913499345, + "grad_norm": 0.2638843357563019, + "learning_rate": 0.0006, + "loss": 3.4600658416748047, + "step": 5985 + }, + { + "epoch": 83.1397990388816, + "grad_norm": 0.276947557926178, + "learning_rate": 0.0006, + "loss": 3.427304744720459, + "step": 5986 + }, + { + "epoch": 83.15377894276976, + "grad_norm": 0.29645398259162903, + "learning_rate": 0.0006, + "loss": 3.49354887008667, + "step": 5987 + }, + { + "epoch": 83.16775884665793, + "grad_norm": 0.24671341478824615, + "learning_rate": 0.0006, + "loss": 3.418001890182495, + "step": 5988 + }, + { + "epoch": 83.18173875054609, + "grad_norm": 0.23004917800426483, + "learning_rate": 0.0006, + "loss": 3.4566028118133545, + "step": 5989 + }, + { + "epoch": 83.19571865443424, + "grad_norm": 0.2323729544878006, + "learning_rate": 0.0006, + "loss": 3.476187229156494, + "step": 5990 + }, + { + "epoch": 83.20969855832242, + "grad_norm": 0.2461102306842804, + "learning_rate": 0.0006, + "loss": 3.4485220909118652, + "step": 5991 + }, + { + "epoch": 83.22367846221057, + "grad_norm": 0.2316771298646927, + "learning_rate": 0.0006, + "loss": 3.4753873348236084, + "step": 5992 + }, + { + "epoch": 83.23765836609873, + "grad_norm": 0.21398794651031494, + "learning_rate": 0.0006, + "loss": 3.4336280822753906, + "step": 5993 + }, + { + "epoch": 83.2516382699869, + "grad_norm": 0.2328646034002304, + "learning_rate": 0.0006, + "loss": 3.4349019527435303, + "step": 5994 + }, + { + "epoch": 83.26561817387505, + "grad_norm": 0.2613484859466553, + "learning_rate": 0.0006, + "loss": 3.4748740196228027, + "step": 5995 + }, + { + "epoch": 83.27959807776321, + "grad_norm": 0.24692191183567047, + "learning_rate": 0.0006, + "loss": 3.469376802444458, + "step": 5996 + }, + { + "epoch": 83.29357798165138, + "grad_norm": 0.21643374860286713, + "learning_rate": 0.0006, + "loss": 3.4703941345214844, + "step": 5997 + }, + { + "epoch": 83.30755788553954, + "grad_norm": 0.2107238620519638, + "learning_rate": 0.0006, + "loss": 3.4441919326782227, + "step": 5998 + }, + { + "epoch": 83.3215377894277, + "grad_norm": 0.2236919403076172, + "learning_rate": 0.0006, + "loss": 3.475111484527588, + "step": 5999 + }, + { + "epoch": 83.33551769331586, + "grad_norm": 0.23031125962734222, + "learning_rate": 0.0006, + "loss": 3.463629961013794, + "step": 6000 + }, + { + "epoch": 83.34949759720402, + "grad_norm": 0.23520728945732117, + "learning_rate": 0.0006, + "loss": 3.4377198219299316, + "step": 6001 + }, + { + "epoch": 83.36347750109218, + "grad_norm": 0.24083353579044342, + "learning_rate": 0.0006, + "loss": 3.4637320041656494, + "step": 6002 + }, + { + "epoch": 83.37745740498035, + "grad_norm": 0.2591738700866699, + "learning_rate": 0.0006, + "loss": 3.4864988327026367, + "step": 6003 + }, + { + "epoch": 83.3914373088685, + "grad_norm": 0.22105777263641357, + "learning_rate": 0.0006, + "loss": 3.425142288208008, + "step": 6004 + }, + { + "epoch": 83.40541721275666, + "grad_norm": 0.22660304605960846, + "learning_rate": 0.0006, + "loss": 3.468355894088745, + "step": 6005 + }, + { + "epoch": 83.41939711664482, + "grad_norm": 0.320535808801651, + "learning_rate": 0.0006, + "loss": 3.448850631713867, + "step": 6006 + }, + { + "epoch": 83.43337702053299, + "grad_norm": 0.3168669044971466, + "learning_rate": 0.0006, + "loss": 3.4643197059631348, + "step": 6007 + }, + { + "epoch": 83.44735692442114, + "grad_norm": 0.2560042440891266, + "learning_rate": 0.0006, + "loss": 3.475637912750244, + "step": 6008 + }, + { + "epoch": 83.4613368283093, + "grad_norm": 0.21204592287540436, + "learning_rate": 0.0006, + "loss": 3.4471921920776367, + "step": 6009 + }, + { + "epoch": 83.47531673219747, + "grad_norm": 0.21767926216125488, + "learning_rate": 0.0006, + "loss": 3.4536280632019043, + "step": 6010 + }, + { + "epoch": 83.48929663608563, + "grad_norm": 0.24681858718395233, + "learning_rate": 0.0006, + "loss": 3.4713847637176514, + "step": 6011 + }, + { + "epoch": 83.50327653997378, + "grad_norm": 0.26184895634651184, + "learning_rate": 0.0006, + "loss": 3.4650652408599854, + "step": 6012 + }, + { + "epoch": 83.51725644386195, + "grad_norm": 0.24959588050842285, + "learning_rate": 0.0006, + "loss": 3.4610469341278076, + "step": 6013 + }, + { + "epoch": 83.53123634775011, + "grad_norm": 0.2062264084815979, + "learning_rate": 0.0006, + "loss": 3.477700710296631, + "step": 6014 + }, + { + "epoch": 83.54521625163827, + "grad_norm": 0.212580144405365, + "learning_rate": 0.0006, + "loss": 3.450294017791748, + "step": 6015 + }, + { + "epoch": 83.55919615552644, + "grad_norm": 0.24017730355262756, + "learning_rate": 0.0006, + "loss": 3.4375219345092773, + "step": 6016 + }, + { + "epoch": 83.57317605941459, + "grad_norm": 0.29706305265426636, + "learning_rate": 0.0006, + "loss": 3.4510207176208496, + "step": 6017 + }, + { + "epoch": 83.58715596330275, + "grad_norm": 0.29583004117012024, + "learning_rate": 0.0006, + "loss": 3.463989734649658, + "step": 6018 + }, + { + "epoch": 83.60113586719092, + "grad_norm": 0.22219108045101166, + "learning_rate": 0.0006, + "loss": 3.4602017402648926, + "step": 6019 + }, + { + "epoch": 83.61511577107908, + "grad_norm": 0.2245914787054062, + "learning_rate": 0.0006, + "loss": 3.4729413986206055, + "step": 6020 + }, + { + "epoch": 83.62909567496723, + "grad_norm": 0.2378871887922287, + "learning_rate": 0.0006, + "loss": 3.493058443069458, + "step": 6021 + }, + { + "epoch": 83.6430755788554, + "grad_norm": 0.2393491417169571, + "learning_rate": 0.0006, + "loss": 3.481888771057129, + "step": 6022 + }, + { + "epoch": 83.65705548274356, + "grad_norm": 0.22587546706199646, + "learning_rate": 0.0006, + "loss": 3.4741945266723633, + "step": 6023 + }, + { + "epoch": 83.67103538663171, + "grad_norm": 0.21970580518245697, + "learning_rate": 0.0006, + "loss": 3.453437089920044, + "step": 6024 + }, + { + "epoch": 83.68501529051987, + "grad_norm": 0.28560149669647217, + "learning_rate": 0.0006, + "loss": 3.4655563831329346, + "step": 6025 + }, + { + "epoch": 83.69899519440804, + "grad_norm": 0.3692651689052582, + "learning_rate": 0.0006, + "loss": 3.466190814971924, + "step": 6026 + }, + { + "epoch": 83.7129750982962, + "grad_norm": 0.2955428659915924, + "learning_rate": 0.0006, + "loss": 3.471492052078247, + "step": 6027 + }, + { + "epoch": 83.72695500218435, + "grad_norm": 0.21010912954807281, + "learning_rate": 0.0006, + "loss": 3.4699859619140625, + "step": 6028 + }, + { + "epoch": 83.74093490607252, + "grad_norm": 0.26358452439308167, + "learning_rate": 0.0006, + "loss": 3.4771690368652344, + "step": 6029 + }, + { + "epoch": 83.75491480996068, + "grad_norm": 0.2645658850669861, + "learning_rate": 0.0006, + "loss": 3.4879064559936523, + "step": 6030 + }, + { + "epoch": 83.76889471384884, + "grad_norm": 0.21529845893383026, + "learning_rate": 0.0006, + "loss": 3.483954429626465, + "step": 6031 + }, + { + "epoch": 83.78287461773701, + "grad_norm": 0.2099343240261078, + "learning_rate": 0.0006, + "loss": 3.4544146060943604, + "step": 6032 + }, + { + "epoch": 83.79685452162516, + "grad_norm": 0.2181747704744339, + "learning_rate": 0.0006, + "loss": 3.491983413696289, + "step": 6033 + }, + { + "epoch": 83.81083442551332, + "grad_norm": 0.23016685247421265, + "learning_rate": 0.0006, + "loss": 3.4659135341644287, + "step": 6034 + }, + { + "epoch": 83.82481432940149, + "grad_norm": 0.2403937429189682, + "learning_rate": 0.0006, + "loss": 3.506269931793213, + "step": 6035 + }, + { + "epoch": 83.83879423328965, + "grad_norm": 0.22122806310653687, + "learning_rate": 0.0006, + "loss": 3.4617505073547363, + "step": 6036 + }, + { + "epoch": 83.8527741371778, + "grad_norm": 0.22495940327644348, + "learning_rate": 0.0006, + "loss": 3.4756948947906494, + "step": 6037 + }, + { + "epoch": 83.86675404106597, + "grad_norm": 0.22538618743419647, + "learning_rate": 0.0006, + "loss": 3.488034725189209, + "step": 6038 + }, + { + "epoch": 83.88073394495413, + "grad_norm": 0.2117580771446228, + "learning_rate": 0.0006, + "loss": 3.4975039958953857, + "step": 6039 + }, + { + "epoch": 83.89471384884229, + "grad_norm": 0.2120361030101776, + "learning_rate": 0.0006, + "loss": 3.4867331981658936, + "step": 6040 + }, + { + "epoch": 83.90869375273044, + "grad_norm": 0.19643139839172363, + "learning_rate": 0.0006, + "loss": 3.488924980163574, + "step": 6041 + }, + { + "epoch": 83.92267365661861, + "grad_norm": 0.19628021121025085, + "learning_rate": 0.0006, + "loss": 3.461667060852051, + "step": 6042 + }, + { + "epoch": 83.93665356050677, + "grad_norm": 0.20119936764240265, + "learning_rate": 0.0006, + "loss": 3.4937024116516113, + "step": 6043 + }, + { + "epoch": 83.95063346439493, + "grad_norm": 0.2125128209590912, + "learning_rate": 0.0006, + "loss": 3.4840517044067383, + "step": 6044 + }, + { + "epoch": 83.9646133682831, + "grad_norm": 0.20223572850227356, + "learning_rate": 0.0006, + "loss": 3.5131449699401855, + "step": 6045 + }, + { + "epoch": 83.97859327217125, + "grad_norm": 0.20483054220676422, + "learning_rate": 0.0006, + "loss": 3.471453905105591, + "step": 6046 + }, + { + "epoch": 83.99257317605941, + "grad_norm": 0.2104625701904297, + "learning_rate": 0.0006, + "loss": 3.4952552318573, + "step": 6047 + }, + { + "epoch": 84.0, + "grad_norm": 0.2537861764431, + "learning_rate": 0.0006, + "loss": 3.536937713623047, + "step": 6048 + }, + { + "epoch": 84.0, + "eval_loss": 3.989513635635376, + "eval_runtime": 44.16, + "eval_samples_per_second": 55.299, + "eval_steps_per_second": 3.465, + "step": 6048 + }, + { + "epoch": 84.01397990388816, + "grad_norm": 0.2248591184616089, + "learning_rate": 0.0006, + "loss": 3.4172749519348145, + "step": 6049 + }, + { + "epoch": 84.02795980777633, + "grad_norm": 0.27182599902153015, + "learning_rate": 0.0006, + "loss": 3.4543704986572266, + "step": 6050 + }, + { + "epoch": 84.04193971166448, + "grad_norm": 0.26215022802352905, + "learning_rate": 0.0006, + "loss": 3.4160256385803223, + "step": 6051 + }, + { + "epoch": 84.05591961555264, + "grad_norm": 0.24477700889110565, + "learning_rate": 0.0006, + "loss": 3.449690580368042, + "step": 6052 + }, + { + "epoch": 84.06989951944081, + "grad_norm": 0.23101462423801422, + "learning_rate": 0.0006, + "loss": 3.4241368770599365, + "step": 6053 + }, + { + "epoch": 84.08387942332897, + "grad_norm": 0.23638324439525604, + "learning_rate": 0.0006, + "loss": 3.444488763809204, + "step": 6054 + }, + { + "epoch": 84.09785932721712, + "grad_norm": 0.24425800144672394, + "learning_rate": 0.0006, + "loss": 3.4568278789520264, + "step": 6055 + }, + { + "epoch": 84.1118392311053, + "grad_norm": 0.23753057420253754, + "learning_rate": 0.0006, + "loss": 3.452538013458252, + "step": 6056 + }, + { + "epoch": 84.12581913499345, + "grad_norm": 0.2202109545469284, + "learning_rate": 0.0006, + "loss": 3.4488167762756348, + "step": 6057 + }, + { + "epoch": 84.1397990388816, + "grad_norm": 0.2211986482143402, + "learning_rate": 0.0006, + "loss": 3.452159881591797, + "step": 6058 + }, + { + "epoch": 84.15377894276976, + "grad_norm": 0.21936428546905518, + "learning_rate": 0.0006, + "loss": 3.4460606575012207, + "step": 6059 + }, + { + "epoch": 84.16775884665793, + "grad_norm": 0.21079182624816895, + "learning_rate": 0.0006, + "loss": 3.4201436042785645, + "step": 6060 + }, + { + "epoch": 84.18173875054609, + "grad_norm": 0.22017350792884827, + "learning_rate": 0.0006, + "loss": 3.4632251262664795, + "step": 6061 + }, + { + "epoch": 84.19571865443424, + "grad_norm": 0.23758259415626526, + "learning_rate": 0.0006, + "loss": 3.453155994415283, + "step": 6062 + }, + { + "epoch": 84.20969855832242, + "grad_norm": 0.21984682977199554, + "learning_rate": 0.0006, + "loss": 3.4506678581237793, + "step": 6063 + }, + { + "epoch": 84.22367846221057, + "grad_norm": 0.22029472887516022, + "learning_rate": 0.0006, + "loss": 3.505845069885254, + "step": 6064 + }, + { + "epoch": 84.23765836609873, + "grad_norm": 0.21249033510684967, + "learning_rate": 0.0006, + "loss": 3.438363552093506, + "step": 6065 + }, + { + "epoch": 84.2516382699869, + "grad_norm": 0.22138963639736176, + "learning_rate": 0.0006, + "loss": 3.452883243560791, + "step": 6066 + }, + { + "epoch": 84.26561817387505, + "grad_norm": 0.23665833473205566, + "learning_rate": 0.0006, + "loss": 3.4265031814575195, + "step": 6067 + }, + { + "epoch": 84.27959807776321, + "grad_norm": 0.20779378712177277, + "learning_rate": 0.0006, + "loss": 3.4495396614074707, + "step": 6068 + }, + { + "epoch": 84.29357798165138, + "grad_norm": 0.2145044356584549, + "learning_rate": 0.0006, + "loss": 3.479349136352539, + "step": 6069 + }, + { + "epoch": 84.30755788553954, + "grad_norm": 0.24075593054294586, + "learning_rate": 0.0006, + "loss": 3.460493564605713, + "step": 6070 + }, + { + "epoch": 84.3215377894277, + "grad_norm": 0.2375558763742447, + "learning_rate": 0.0006, + "loss": 3.507908344268799, + "step": 6071 + }, + { + "epoch": 84.33551769331586, + "grad_norm": 0.2408781200647354, + "learning_rate": 0.0006, + "loss": 3.44984769821167, + "step": 6072 + }, + { + "epoch": 84.34949759720402, + "grad_norm": 0.228886216878891, + "learning_rate": 0.0006, + "loss": 3.4552290439605713, + "step": 6073 + }, + { + "epoch": 84.36347750109218, + "grad_norm": 0.2186277210712433, + "learning_rate": 0.0006, + "loss": 3.455961227416992, + "step": 6074 + }, + { + "epoch": 84.37745740498035, + "grad_norm": 0.24890686571598053, + "learning_rate": 0.0006, + "loss": 3.4671201705932617, + "step": 6075 + }, + { + "epoch": 84.3914373088685, + "grad_norm": 0.302213191986084, + "learning_rate": 0.0006, + "loss": 3.4628589153289795, + "step": 6076 + }, + { + "epoch": 84.40541721275666, + "grad_norm": 0.2934368848800659, + "learning_rate": 0.0006, + "loss": 3.455357313156128, + "step": 6077 + }, + { + "epoch": 84.41939711664482, + "grad_norm": 0.2314663529396057, + "learning_rate": 0.0006, + "loss": 3.4733433723449707, + "step": 6078 + }, + { + "epoch": 84.43337702053299, + "grad_norm": 0.24621376395225525, + "learning_rate": 0.0006, + "loss": 3.413661003112793, + "step": 6079 + }, + { + "epoch": 84.44735692442114, + "grad_norm": 0.2592419683933258, + "learning_rate": 0.0006, + "loss": 3.441049098968506, + "step": 6080 + }, + { + "epoch": 84.4613368283093, + "grad_norm": 0.25599732995033264, + "learning_rate": 0.0006, + "loss": 3.433962106704712, + "step": 6081 + }, + { + "epoch": 84.47531673219747, + "grad_norm": 0.22425663471221924, + "learning_rate": 0.0006, + "loss": 3.456338882446289, + "step": 6082 + }, + { + "epoch": 84.48929663608563, + "grad_norm": 0.20109711587429047, + "learning_rate": 0.0006, + "loss": 3.4308509826660156, + "step": 6083 + }, + { + "epoch": 84.50327653997378, + "grad_norm": 0.23206867277622223, + "learning_rate": 0.0006, + "loss": 3.4620723724365234, + "step": 6084 + }, + { + "epoch": 84.51725644386195, + "grad_norm": 0.2772260010242462, + "learning_rate": 0.0006, + "loss": 3.4994330406188965, + "step": 6085 + }, + { + "epoch": 84.53123634775011, + "grad_norm": 0.22506068646907806, + "learning_rate": 0.0006, + "loss": 3.4822869300842285, + "step": 6086 + }, + { + "epoch": 84.54521625163827, + "grad_norm": 0.2665281295776367, + "learning_rate": 0.0006, + "loss": 3.446537494659424, + "step": 6087 + }, + { + "epoch": 84.55919615552644, + "grad_norm": 0.3100028336048126, + "learning_rate": 0.0006, + "loss": 3.4393982887268066, + "step": 6088 + }, + { + "epoch": 84.57317605941459, + "grad_norm": 0.2912586033344269, + "learning_rate": 0.0006, + "loss": 3.4340028762817383, + "step": 6089 + }, + { + "epoch": 84.58715596330275, + "grad_norm": 0.24330151081085205, + "learning_rate": 0.0006, + "loss": 3.501587152481079, + "step": 6090 + }, + { + "epoch": 84.60113586719092, + "grad_norm": 0.23389802873134613, + "learning_rate": 0.0006, + "loss": 3.4583606719970703, + "step": 6091 + }, + { + "epoch": 84.61511577107908, + "grad_norm": 0.24052485823631287, + "learning_rate": 0.0006, + "loss": 3.4798378944396973, + "step": 6092 + }, + { + "epoch": 84.62909567496723, + "grad_norm": 0.25821569561958313, + "learning_rate": 0.0006, + "loss": 3.4377129077911377, + "step": 6093 + }, + { + "epoch": 84.6430755788554, + "grad_norm": 0.22608289122581482, + "learning_rate": 0.0006, + "loss": 3.468690872192383, + "step": 6094 + }, + { + "epoch": 84.65705548274356, + "grad_norm": 0.22002574801445007, + "learning_rate": 0.0006, + "loss": 3.5027618408203125, + "step": 6095 + }, + { + "epoch": 84.67103538663171, + "grad_norm": 0.2419431507587433, + "learning_rate": 0.0006, + "loss": 3.4669971466064453, + "step": 6096 + }, + { + "epoch": 84.68501529051987, + "grad_norm": 0.2721652090549469, + "learning_rate": 0.0006, + "loss": 3.4732742309570312, + "step": 6097 + }, + { + "epoch": 84.69899519440804, + "grad_norm": 0.27164995670318604, + "learning_rate": 0.0006, + "loss": 3.4675357341766357, + "step": 6098 + }, + { + "epoch": 84.7129750982962, + "grad_norm": 0.19506578147411346, + "learning_rate": 0.0006, + "loss": 3.492837905883789, + "step": 6099 + }, + { + "epoch": 84.72695500218435, + "grad_norm": 0.22092986106872559, + "learning_rate": 0.0006, + "loss": 3.4465227127075195, + "step": 6100 + }, + { + "epoch": 84.74093490607252, + "grad_norm": 0.2180197536945343, + "learning_rate": 0.0006, + "loss": 3.4740982055664062, + "step": 6101 + }, + { + "epoch": 84.75491480996068, + "grad_norm": 0.19666659832000732, + "learning_rate": 0.0006, + "loss": 3.445955276489258, + "step": 6102 + }, + { + "epoch": 84.76889471384884, + "grad_norm": 0.22210383415222168, + "learning_rate": 0.0006, + "loss": 3.4983019828796387, + "step": 6103 + }, + { + "epoch": 84.78287461773701, + "grad_norm": 0.25071144104003906, + "learning_rate": 0.0006, + "loss": 3.4750094413757324, + "step": 6104 + }, + { + "epoch": 84.79685452162516, + "grad_norm": 0.21576249599456787, + "learning_rate": 0.0006, + "loss": 3.4875924587249756, + "step": 6105 + }, + { + "epoch": 84.81083442551332, + "grad_norm": 0.19657064974308014, + "learning_rate": 0.0006, + "loss": 3.491100788116455, + "step": 6106 + }, + { + "epoch": 84.82481432940149, + "grad_norm": 0.21463964879512787, + "learning_rate": 0.0006, + "loss": 3.4915409088134766, + "step": 6107 + }, + { + "epoch": 84.83879423328965, + "grad_norm": 0.22589972615242004, + "learning_rate": 0.0006, + "loss": 3.488877773284912, + "step": 6108 + }, + { + "epoch": 84.8527741371778, + "grad_norm": 0.22119449079036713, + "learning_rate": 0.0006, + "loss": 3.4533658027648926, + "step": 6109 + }, + { + "epoch": 84.86675404106597, + "grad_norm": 0.2318703979253769, + "learning_rate": 0.0006, + "loss": 3.5024518966674805, + "step": 6110 + }, + { + "epoch": 84.88073394495413, + "grad_norm": 0.24036799371242523, + "learning_rate": 0.0006, + "loss": 3.4885616302490234, + "step": 6111 + }, + { + "epoch": 84.89471384884229, + "grad_norm": 0.22559893131256104, + "learning_rate": 0.0006, + "loss": 3.5178074836730957, + "step": 6112 + }, + { + "epoch": 84.90869375273044, + "grad_norm": 0.22396491467952728, + "learning_rate": 0.0006, + "loss": 3.4722352027893066, + "step": 6113 + }, + { + "epoch": 84.92267365661861, + "grad_norm": 0.22184233367443085, + "learning_rate": 0.0006, + "loss": 3.4839789867401123, + "step": 6114 + }, + { + "epoch": 84.93665356050677, + "grad_norm": 0.26118555665016174, + "learning_rate": 0.0006, + "loss": 3.4721474647521973, + "step": 6115 + }, + { + "epoch": 84.95063346439493, + "grad_norm": 0.28956303000450134, + "learning_rate": 0.0006, + "loss": 3.4905753135681152, + "step": 6116 + }, + { + "epoch": 84.9646133682831, + "grad_norm": 0.258308082818985, + "learning_rate": 0.0006, + "loss": 3.473489761352539, + "step": 6117 + }, + { + "epoch": 84.97859327217125, + "grad_norm": 0.21734404563903809, + "learning_rate": 0.0006, + "loss": 3.5029823780059814, + "step": 6118 + }, + { + "epoch": 84.99257317605941, + "grad_norm": 0.21607917547225952, + "learning_rate": 0.0006, + "loss": 3.4702606201171875, + "step": 6119 + }, + { + "epoch": 85.0, + "grad_norm": 0.24650561809539795, + "learning_rate": 0.0006, + "loss": 3.4621410369873047, + "step": 6120 + }, + { + "epoch": 85.0, + "eval_loss": 3.9854979515075684, + "eval_runtime": 44.9547, + "eval_samples_per_second": 54.321, + "eval_steps_per_second": 3.403, + "step": 6120 + }, + { + "epoch": 85.01397990388816, + "grad_norm": 0.25260618329048157, + "learning_rate": 0.0006, + "loss": 3.4214212894439697, + "step": 6121 + }, + { + "epoch": 85.02795980777633, + "grad_norm": 0.2447933405637741, + "learning_rate": 0.0006, + "loss": 3.4772560596466064, + "step": 6122 + }, + { + "epoch": 85.04193971166448, + "grad_norm": 0.26787659525871277, + "learning_rate": 0.0006, + "loss": 3.4550516605377197, + "step": 6123 + }, + { + "epoch": 85.05591961555264, + "grad_norm": 0.31014591455459595, + "learning_rate": 0.0006, + "loss": 3.4330554008483887, + "step": 6124 + }, + { + "epoch": 85.06989951944081, + "grad_norm": 0.2865329682826996, + "learning_rate": 0.0006, + "loss": 3.465020179748535, + "step": 6125 + }, + { + "epoch": 85.08387942332897, + "grad_norm": 0.2665972411632538, + "learning_rate": 0.0006, + "loss": 3.465394973754883, + "step": 6126 + }, + { + "epoch": 85.09785932721712, + "grad_norm": 0.2712230980396271, + "learning_rate": 0.0006, + "loss": 3.4400854110717773, + "step": 6127 + }, + { + "epoch": 85.1118392311053, + "grad_norm": 0.2657718360424042, + "learning_rate": 0.0006, + "loss": 3.4523370265960693, + "step": 6128 + }, + { + "epoch": 85.12581913499345, + "grad_norm": 0.242838516831398, + "learning_rate": 0.0006, + "loss": 3.465041160583496, + "step": 6129 + }, + { + "epoch": 85.1397990388816, + "grad_norm": 0.23150339722633362, + "learning_rate": 0.0006, + "loss": 3.4810791015625, + "step": 6130 + }, + { + "epoch": 85.15377894276976, + "grad_norm": 0.24861405789852142, + "learning_rate": 0.0006, + "loss": 3.4644157886505127, + "step": 6131 + }, + { + "epoch": 85.16775884665793, + "grad_norm": 0.25343751907348633, + "learning_rate": 0.0006, + "loss": 3.4637880325317383, + "step": 6132 + }, + { + "epoch": 85.18173875054609, + "grad_norm": 0.2547624409198761, + "learning_rate": 0.0006, + "loss": 3.464709758758545, + "step": 6133 + }, + { + "epoch": 85.19571865443424, + "grad_norm": 0.2594977021217346, + "learning_rate": 0.0006, + "loss": 3.4151370525360107, + "step": 6134 + }, + { + "epoch": 85.20969855832242, + "grad_norm": 0.27304983139038086, + "learning_rate": 0.0006, + "loss": 3.4454474449157715, + "step": 6135 + }, + { + "epoch": 85.22367846221057, + "grad_norm": 0.23261943459510803, + "learning_rate": 0.0006, + "loss": 3.46285080909729, + "step": 6136 + }, + { + "epoch": 85.23765836609873, + "grad_norm": 0.27577438950538635, + "learning_rate": 0.0006, + "loss": 3.475266218185425, + "step": 6137 + }, + { + "epoch": 85.2516382699869, + "grad_norm": 0.29520928859710693, + "learning_rate": 0.0006, + "loss": 3.426034450531006, + "step": 6138 + }, + { + "epoch": 85.26561817387505, + "grad_norm": 0.25007882714271545, + "learning_rate": 0.0006, + "loss": 3.4391825199127197, + "step": 6139 + }, + { + "epoch": 85.27959807776321, + "grad_norm": 0.24239672720432281, + "learning_rate": 0.0006, + "loss": 3.456017017364502, + "step": 6140 + }, + { + "epoch": 85.29357798165138, + "grad_norm": 0.2818496525287628, + "learning_rate": 0.0006, + "loss": 3.437286853790283, + "step": 6141 + }, + { + "epoch": 85.30755788553954, + "grad_norm": 0.25089263916015625, + "learning_rate": 0.0006, + "loss": 3.4476265907287598, + "step": 6142 + }, + { + "epoch": 85.3215377894277, + "grad_norm": 0.2364535629749298, + "learning_rate": 0.0006, + "loss": 3.4434220790863037, + "step": 6143 + }, + { + "epoch": 85.33551769331586, + "grad_norm": 0.21722905337810516, + "learning_rate": 0.0006, + "loss": 3.4470319747924805, + "step": 6144 + }, + { + "epoch": 85.34949759720402, + "grad_norm": 0.24389301240444183, + "learning_rate": 0.0006, + "loss": 3.458575963973999, + "step": 6145 + }, + { + "epoch": 85.36347750109218, + "grad_norm": 0.2579081356525421, + "learning_rate": 0.0006, + "loss": 3.4424850940704346, + "step": 6146 + }, + { + "epoch": 85.37745740498035, + "grad_norm": 0.25001347064971924, + "learning_rate": 0.0006, + "loss": 3.43218731880188, + "step": 6147 + }, + { + "epoch": 85.3914373088685, + "grad_norm": 0.24379317462444305, + "learning_rate": 0.0006, + "loss": 3.464128017425537, + "step": 6148 + }, + { + "epoch": 85.40541721275666, + "grad_norm": 0.22531644999980927, + "learning_rate": 0.0006, + "loss": 3.451855182647705, + "step": 6149 + }, + { + "epoch": 85.41939711664482, + "grad_norm": 0.266511470079422, + "learning_rate": 0.0006, + "loss": 3.4571762084960938, + "step": 6150 + }, + { + "epoch": 85.43337702053299, + "grad_norm": 0.2715734541416168, + "learning_rate": 0.0006, + "loss": 3.446192979812622, + "step": 6151 + }, + { + "epoch": 85.44735692442114, + "grad_norm": 0.2520029842853546, + "learning_rate": 0.0006, + "loss": 3.4267630577087402, + "step": 6152 + }, + { + "epoch": 85.4613368283093, + "grad_norm": 0.23507703840732574, + "learning_rate": 0.0006, + "loss": 3.455836296081543, + "step": 6153 + }, + { + "epoch": 85.47531673219747, + "grad_norm": 0.22633685171604156, + "learning_rate": 0.0006, + "loss": 3.4890408515930176, + "step": 6154 + }, + { + "epoch": 85.48929663608563, + "grad_norm": 0.23517028987407684, + "learning_rate": 0.0006, + "loss": 3.4446210861206055, + "step": 6155 + }, + { + "epoch": 85.50327653997378, + "grad_norm": 0.22825509309768677, + "learning_rate": 0.0006, + "loss": 3.480895519256592, + "step": 6156 + }, + { + "epoch": 85.51725644386195, + "grad_norm": 0.22553354501724243, + "learning_rate": 0.0006, + "loss": 3.465485095977783, + "step": 6157 + }, + { + "epoch": 85.53123634775011, + "grad_norm": 0.2150234878063202, + "learning_rate": 0.0006, + "loss": 3.4419214725494385, + "step": 6158 + }, + { + "epoch": 85.54521625163827, + "grad_norm": 0.19683769345283508, + "learning_rate": 0.0006, + "loss": 3.4606499671936035, + "step": 6159 + }, + { + "epoch": 85.55919615552644, + "grad_norm": 0.20103512704372406, + "learning_rate": 0.0006, + "loss": 3.4611430168151855, + "step": 6160 + }, + { + "epoch": 85.57317605941459, + "grad_norm": 0.21668195724487305, + "learning_rate": 0.0006, + "loss": 3.464637279510498, + "step": 6161 + }, + { + "epoch": 85.58715596330275, + "grad_norm": 0.2588590681552887, + "learning_rate": 0.0006, + "loss": 3.4581046104431152, + "step": 6162 + }, + { + "epoch": 85.60113586719092, + "grad_norm": 0.2931160032749176, + "learning_rate": 0.0006, + "loss": 3.4767394065856934, + "step": 6163 + }, + { + "epoch": 85.61511577107908, + "grad_norm": 0.2369699478149414, + "learning_rate": 0.0006, + "loss": 3.4526143074035645, + "step": 6164 + }, + { + "epoch": 85.62909567496723, + "grad_norm": 0.21278990805149078, + "learning_rate": 0.0006, + "loss": 3.4439449310302734, + "step": 6165 + }, + { + "epoch": 85.6430755788554, + "grad_norm": 0.22650624811649323, + "learning_rate": 0.0006, + "loss": 3.483211040496826, + "step": 6166 + }, + { + "epoch": 85.65705548274356, + "grad_norm": 0.23739252984523773, + "learning_rate": 0.0006, + "loss": 3.4801344871520996, + "step": 6167 + }, + { + "epoch": 85.67103538663171, + "grad_norm": 0.24526645243167877, + "learning_rate": 0.0006, + "loss": 3.492373466491699, + "step": 6168 + }, + { + "epoch": 85.68501529051987, + "grad_norm": 0.22212277352809906, + "learning_rate": 0.0006, + "loss": 3.4928934574127197, + "step": 6169 + }, + { + "epoch": 85.69899519440804, + "grad_norm": 0.21256189048290253, + "learning_rate": 0.0006, + "loss": 3.4808285236358643, + "step": 6170 + }, + { + "epoch": 85.7129750982962, + "grad_norm": 0.22779646515846252, + "learning_rate": 0.0006, + "loss": 3.497670888900757, + "step": 6171 + }, + { + "epoch": 85.72695500218435, + "grad_norm": 0.24342690408229828, + "learning_rate": 0.0006, + "loss": 3.470566749572754, + "step": 6172 + }, + { + "epoch": 85.74093490607252, + "grad_norm": 0.21688103675842285, + "learning_rate": 0.0006, + "loss": 3.470480442047119, + "step": 6173 + }, + { + "epoch": 85.75491480996068, + "grad_norm": 0.20727773010730743, + "learning_rate": 0.0006, + "loss": 3.465573310852051, + "step": 6174 + }, + { + "epoch": 85.76889471384884, + "grad_norm": 0.2293693721294403, + "learning_rate": 0.0006, + "loss": 3.4770543575286865, + "step": 6175 + }, + { + "epoch": 85.78287461773701, + "grad_norm": 0.22635893523693085, + "learning_rate": 0.0006, + "loss": 3.479179859161377, + "step": 6176 + }, + { + "epoch": 85.79685452162516, + "grad_norm": 0.2183343470096588, + "learning_rate": 0.0006, + "loss": 3.435756206512451, + "step": 6177 + }, + { + "epoch": 85.81083442551332, + "grad_norm": 0.23458422720432281, + "learning_rate": 0.0006, + "loss": 3.449631690979004, + "step": 6178 + }, + { + "epoch": 85.82481432940149, + "grad_norm": 0.22640752792358398, + "learning_rate": 0.0006, + "loss": 3.4607796669006348, + "step": 6179 + }, + { + "epoch": 85.83879423328965, + "grad_norm": 0.1991293728351593, + "learning_rate": 0.0006, + "loss": 3.4433794021606445, + "step": 6180 + }, + { + "epoch": 85.8527741371778, + "grad_norm": 0.19793502986431122, + "learning_rate": 0.0006, + "loss": 3.433073043823242, + "step": 6181 + }, + { + "epoch": 85.86675404106597, + "grad_norm": 0.23256038129329681, + "learning_rate": 0.0006, + "loss": 3.49361515045166, + "step": 6182 + }, + { + "epoch": 85.88073394495413, + "grad_norm": 0.24248147010803223, + "learning_rate": 0.0006, + "loss": 3.4868030548095703, + "step": 6183 + }, + { + "epoch": 85.89471384884229, + "grad_norm": 0.2330281287431717, + "learning_rate": 0.0006, + "loss": 3.4656119346618652, + "step": 6184 + }, + { + "epoch": 85.90869375273044, + "grad_norm": 0.24372607469558716, + "learning_rate": 0.0006, + "loss": 3.4641270637512207, + "step": 6185 + }, + { + "epoch": 85.92267365661861, + "grad_norm": 0.21659110486507416, + "learning_rate": 0.0006, + "loss": 3.477977752685547, + "step": 6186 + }, + { + "epoch": 85.93665356050677, + "grad_norm": 0.21402457356452942, + "learning_rate": 0.0006, + "loss": 3.4676051139831543, + "step": 6187 + }, + { + "epoch": 85.95063346439493, + "grad_norm": 0.2598675787448883, + "learning_rate": 0.0006, + "loss": 3.457876205444336, + "step": 6188 + }, + { + "epoch": 85.9646133682831, + "grad_norm": 0.24304015934467316, + "learning_rate": 0.0006, + "loss": 3.4939284324645996, + "step": 6189 + }, + { + "epoch": 85.97859327217125, + "grad_norm": 0.2519899904727936, + "learning_rate": 0.0006, + "loss": 3.4782049655914307, + "step": 6190 + }, + { + "epoch": 85.99257317605941, + "grad_norm": 0.2699314057826996, + "learning_rate": 0.0006, + "loss": 3.4965529441833496, + "step": 6191 + }, + { + "epoch": 86.0, + "grad_norm": 0.25171566009521484, + "learning_rate": 0.0006, + "loss": 3.5014753341674805, + "step": 6192 + }, + { + "epoch": 86.0, + "eval_loss": 3.994410991668701, + "eval_runtime": 44.7874, + "eval_samples_per_second": 54.524, + "eval_steps_per_second": 3.416, + "step": 6192 + }, + { + "epoch": 86.01397990388816, + "grad_norm": 0.22152172029018402, + "learning_rate": 0.0006, + "loss": 3.4881882667541504, + "step": 6193 + }, + { + "epoch": 86.02795980777633, + "grad_norm": 0.30766162276268005, + "learning_rate": 0.0006, + "loss": 3.4354074001312256, + "step": 6194 + }, + { + "epoch": 86.04193971166448, + "grad_norm": 0.35085615515708923, + "learning_rate": 0.0006, + "loss": 3.492264986038208, + "step": 6195 + }, + { + "epoch": 86.05591961555264, + "grad_norm": 0.3569839298725128, + "learning_rate": 0.0006, + "loss": 3.416243553161621, + "step": 6196 + }, + { + "epoch": 86.06989951944081, + "grad_norm": 0.3160453736782074, + "learning_rate": 0.0006, + "loss": 3.4427218437194824, + "step": 6197 + }, + { + "epoch": 86.08387942332897, + "grad_norm": 0.2886679470539093, + "learning_rate": 0.0006, + "loss": 3.4667863845825195, + "step": 6198 + }, + { + "epoch": 86.09785932721712, + "grad_norm": 0.3893418312072754, + "learning_rate": 0.0006, + "loss": 3.4031922817230225, + "step": 6199 + }, + { + "epoch": 86.1118392311053, + "grad_norm": 0.3220056891441345, + "learning_rate": 0.0006, + "loss": 3.4283533096313477, + "step": 6200 + }, + { + "epoch": 86.12581913499345, + "grad_norm": 0.26434239745140076, + "learning_rate": 0.0006, + "loss": 3.4746451377868652, + "step": 6201 + }, + { + "epoch": 86.1397990388816, + "grad_norm": 0.302300363779068, + "learning_rate": 0.0006, + "loss": 3.4561362266540527, + "step": 6202 + }, + { + "epoch": 86.15377894276976, + "grad_norm": 0.3000868558883667, + "learning_rate": 0.0006, + "loss": 3.450949192047119, + "step": 6203 + }, + { + "epoch": 86.16775884665793, + "grad_norm": 0.2398998737335205, + "learning_rate": 0.0006, + "loss": 3.4239816665649414, + "step": 6204 + }, + { + "epoch": 86.18173875054609, + "grad_norm": 0.2702728807926178, + "learning_rate": 0.0006, + "loss": 3.442440986633301, + "step": 6205 + }, + { + "epoch": 86.19571865443424, + "grad_norm": 0.31766554713249207, + "learning_rate": 0.0006, + "loss": 3.4427683353424072, + "step": 6206 + }, + { + "epoch": 86.20969855832242, + "grad_norm": 0.2819700241088867, + "learning_rate": 0.0006, + "loss": 3.4524660110473633, + "step": 6207 + }, + { + "epoch": 86.22367846221057, + "grad_norm": 0.2258707731962204, + "learning_rate": 0.0006, + "loss": 3.396800994873047, + "step": 6208 + }, + { + "epoch": 86.23765836609873, + "grad_norm": 0.24448935687541962, + "learning_rate": 0.0006, + "loss": 3.4406819343566895, + "step": 6209 + }, + { + "epoch": 86.2516382699869, + "grad_norm": 0.24847345054149628, + "learning_rate": 0.0006, + "loss": 3.461153030395508, + "step": 6210 + }, + { + "epoch": 86.26561817387505, + "grad_norm": 0.2334488183259964, + "learning_rate": 0.0006, + "loss": 3.442270040512085, + "step": 6211 + }, + { + "epoch": 86.27959807776321, + "grad_norm": 0.22500263154506683, + "learning_rate": 0.0006, + "loss": 3.440741539001465, + "step": 6212 + }, + { + "epoch": 86.29357798165138, + "grad_norm": 0.21619853377342224, + "learning_rate": 0.0006, + "loss": 3.4715089797973633, + "step": 6213 + }, + { + "epoch": 86.30755788553954, + "grad_norm": 0.2189490795135498, + "learning_rate": 0.0006, + "loss": 3.4791250228881836, + "step": 6214 + }, + { + "epoch": 86.3215377894277, + "grad_norm": 0.21822725236415863, + "learning_rate": 0.0006, + "loss": 3.461611747741699, + "step": 6215 + }, + { + "epoch": 86.33551769331586, + "grad_norm": 0.21582530438899994, + "learning_rate": 0.0006, + "loss": 3.4455478191375732, + "step": 6216 + }, + { + "epoch": 86.34949759720402, + "grad_norm": 0.22400085628032684, + "learning_rate": 0.0006, + "loss": 3.4567182064056396, + "step": 6217 + }, + { + "epoch": 86.36347750109218, + "grad_norm": 0.21704235672950745, + "learning_rate": 0.0006, + "loss": 3.4674482345581055, + "step": 6218 + }, + { + "epoch": 86.37745740498035, + "grad_norm": 0.20976465940475464, + "learning_rate": 0.0006, + "loss": 3.469402313232422, + "step": 6219 + }, + { + "epoch": 86.3914373088685, + "grad_norm": 0.21312788128852844, + "learning_rate": 0.0006, + "loss": 3.455789566040039, + "step": 6220 + }, + { + "epoch": 86.40541721275666, + "grad_norm": 0.25308772921562195, + "learning_rate": 0.0006, + "loss": 3.4452877044677734, + "step": 6221 + }, + { + "epoch": 86.41939711664482, + "grad_norm": 0.27195847034454346, + "learning_rate": 0.0006, + "loss": 3.463346004486084, + "step": 6222 + }, + { + "epoch": 86.43337702053299, + "grad_norm": 0.21615318953990936, + "learning_rate": 0.0006, + "loss": 3.463381290435791, + "step": 6223 + }, + { + "epoch": 86.44735692442114, + "grad_norm": 0.23535512387752533, + "learning_rate": 0.0006, + "loss": 3.4360179901123047, + "step": 6224 + }, + { + "epoch": 86.4613368283093, + "grad_norm": 0.24485142529010773, + "learning_rate": 0.0006, + "loss": 3.464930534362793, + "step": 6225 + }, + { + "epoch": 86.47531673219747, + "grad_norm": 0.22350724041461945, + "learning_rate": 0.0006, + "loss": 3.437709331512451, + "step": 6226 + }, + { + "epoch": 86.48929663608563, + "grad_norm": 0.21404410898685455, + "learning_rate": 0.0006, + "loss": 3.4748077392578125, + "step": 6227 + }, + { + "epoch": 86.50327653997378, + "grad_norm": 0.22141483426094055, + "learning_rate": 0.0006, + "loss": 3.4643821716308594, + "step": 6228 + }, + { + "epoch": 86.51725644386195, + "grad_norm": 0.21807129681110382, + "learning_rate": 0.0006, + "loss": 3.4499032497406006, + "step": 6229 + }, + { + "epoch": 86.53123634775011, + "grad_norm": 0.24544014036655426, + "learning_rate": 0.0006, + "loss": 3.485358476638794, + "step": 6230 + }, + { + "epoch": 86.54521625163827, + "grad_norm": 0.23897387087345123, + "learning_rate": 0.0006, + "loss": 3.4186513423919678, + "step": 6231 + }, + { + "epoch": 86.55919615552644, + "grad_norm": 0.2169899344444275, + "learning_rate": 0.0006, + "loss": 3.483903408050537, + "step": 6232 + }, + { + "epoch": 86.57317605941459, + "grad_norm": 0.22795552015304565, + "learning_rate": 0.0006, + "loss": 3.4364242553710938, + "step": 6233 + }, + { + "epoch": 86.58715596330275, + "grad_norm": 0.217415452003479, + "learning_rate": 0.0006, + "loss": 3.456679105758667, + "step": 6234 + }, + { + "epoch": 86.60113586719092, + "grad_norm": 0.22456496953964233, + "learning_rate": 0.0006, + "loss": 3.5148768424987793, + "step": 6235 + }, + { + "epoch": 86.61511577107908, + "grad_norm": 0.2365759313106537, + "learning_rate": 0.0006, + "loss": 3.4696755409240723, + "step": 6236 + }, + { + "epoch": 86.62909567496723, + "grad_norm": 0.2177712321281433, + "learning_rate": 0.0006, + "loss": 3.462272882461548, + "step": 6237 + }, + { + "epoch": 86.6430755788554, + "grad_norm": 0.20588000118732452, + "learning_rate": 0.0006, + "loss": 3.4393906593322754, + "step": 6238 + }, + { + "epoch": 86.65705548274356, + "grad_norm": 0.21182921528816223, + "learning_rate": 0.0006, + "loss": 3.443514108657837, + "step": 6239 + }, + { + "epoch": 86.67103538663171, + "grad_norm": 0.18916936218738556, + "learning_rate": 0.0006, + "loss": 3.4392967224121094, + "step": 6240 + }, + { + "epoch": 86.68501529051987, + "grad_norm": 0.22624684870243073, + "learning_rate": 0.0006, + "loss": 3.470064640045166, + "step": 6241 + }, + { + "epoch": 86.69899519440804, + "grad_norm": 0.2332974225282669, + "learning_rate": 0.0006, + "loss": 3.4521493911743164, + "step": 6242 + }, + { + "epoch": 86.7129750982962, + "grad_norm": 0.20085841417312622, + "learning_rate": 0.0006, + "loss": 3.5025033950805664, + "step": 6243 + }, + { + "epoch": 86.72695500218435, + "grad_norm": 0.20764502882957458, + "learning_rate": 0.0006, + "loss": 3.470583915710449, + "step": 6244 + }, + { + "epoch": 86.74093490607252, + "grad_norm": 0.20031316578388214, + "learning_rate": 0.0006, + "loss": 3.478801727294922, + "step": 6245 + }, + { + "epoch": 86.75491480996068, + "grad_norm": 0.20406009256839752, + "learning_rate": 0.0006, + "loss": 3.4478464126586914, + "step": 6246 + }, + { + "epoch": 86.76889471384884, + "grad_norm": 0.2247963547706604, + "learning_rate": 0.0006, + "loss": 3.482908248901367, + "step": 6247 + }, + { + "epoch": 86.78287461773701, + "grad_norm": 0.21603277325630188, + "learning_rate": 0.0006, + "loss": 3.495795726776123, + "step": 6248 + }, + { + "epoch": 86.79685452162516, + "grad_norm": 0.23493970930576324, + "learning_rate": 0.0006, + "loss": 3.494202136993408, + "step": 6249 + }, + { + "epoch": 86.81083442551332, + "grad_norm": 0.23578870296478271, + "learning_rate": 0.0006, + "loss": 3.4449198246002197, + "step": 6250 + }, + { + "epoch": 86.82481432940149, + "grad_norm": 0.2195269763469696, + "learning_rate": 0.0006, + "loss": 3.4688639640808105, + "step": 6251 + }, + { + "epoch": 86.83879423328965, + "grad_norm": 0.2096060961484909, + "learning_rate": 0.0006, + "loss": 3.457277774810791, + "step": 6252 + }, + { + "epoch": 86.8527741371778, + "grad_norm": 0.2281302958726883, + "learning_rate": 0.0006, + "loss": 3.4680356979370117, + "step": 6253 + }, + { + "epoch": 86.86675404106597, + "grad_norm": 0.227342426776886, + "learning_rate": 0.0006, + "loss": 3.4743518829345703, + "step": 6254 + }, + { + "epoch": 86.88073394495413, + "grad_norm": 0.2153044492006302, + "learning_rate": 0.0006, + "loss": 3.46713924407959, + "step": 6255 + }, + { + "epoch": 86.89471384884229, + "grad_norm": 0.2115248739719391, + "learning_rate": 0.0006, + "loss": 3.4528920650482178, + "step": 6256 + }, + { + "epoch": 86.90869375273044, + "grad_norm": 0.20684799551963806, + "learning_rate": 0.0006, + "loss": 3.4480972290039062, + "step": 6257 + }, + { + "epoch": 86.92267365661861, + "grad_norm": 0.20551343262195587, + "learning_rate": 0.0006, + "loss": 3.4358556270599365, + "step": 6258 + }, + { + "epoch": 86.93665356050677, + "grad_norm": 0.20622433722019196, + "learning_rate": 0.0006, + "loss": 3.465932846069336, + "step": 6259 + }, + { + "epoch": 86.95063346439493, + "grad_norm": 0.2272886484861374, + "learning_rate": 0.0006, + "loss": 3.4763259887695312, + "step": 6260 + }, + { + "epoch": 86.9646133682831, + "grad_norm": 0.21281592547893524, + "learning_rate": 0.0006, + "loss": 3.475867509841919, + "step": 6261 + }, + { + "epoch": 86.97859327217125, + "grad_norm": 0.22719821333885193, + "learning_rate": 0.0006, + "loss": 3.486049175262451, + "step": 6262 + }, + { + "epoch": 86.99257317605941, + "grad_norm": 0.22851793467998505, + "learning_rate": 0.0006, + "loss": 3.4797396659851074, + "step": 6263 + }, + { + "epoch": 87.0, + "grad_norm": 0.2525143027305603, + "learning_rate": 0.0006, + "loss": 3.4766845703125, + "step": 6264 + }, + { + "epoch": 87.0, + "eval_loss": 3.987467050552368, + "eval_runtime": 44.9313, + "eval_samples_per_second": 54.35, + "eval_steps_per_second": 3.405, + "step": 6264 + }, + { + "epoch": 87.01397990388816, + "grad_norm": 0.24122004210948944, + "learning_rate": 0.0006, + "loss": 3.4199447631835938, + "step": 6265 + }, + { + "epoch": 87.02795980777633, + "grad_norm": 0.2478175163269043, + "learning_rate": 0.0006, + "loss": 3.4244534969329834, + "step": 6266 + }, + { + "epoch": 87.04193971166448, + "grad_norm": 0.26908397674560547, + "learning_rate": 0.0006, + "loss": 3.4402923583984375, + "step": 6267 + }, + { + "epoch": 87.05591961555264, + "grad_norm": 0.2507370412349701, + "learning_rate": 0.0006, + "loss": 3.462135076522827, + "step": 6268 + }, + { + "epoch": 87.06989951944081, + "grad_norm": 0.24157772958278656, + "learning_rate": 0.0006, + "loss": 3.431356430053711, + "step": 6269 + }, + { + "epoch": 87.08387942332897, + "grad_norm": 0.23670171201229095, + "learning_rate": 0.0006, + "loss": 3.456552028656006, + "step": 6270 + }, + { + "epoch": 87.09785932721712, + "grad_norm": 0.23151060938835144, + "learning_rate": 0.0006, + "loss": 3.4459235668182373, + "step": 6271 + }, + { + "epoch": 87.1118392311053, + "grad_norm": 0.23343981802463531, + "learning_rate": 0.0006, + "loss": 3.4336788654327393, + "step": 6272 + }, + { + "epoch": 87.12581913499345, + "grad_norm": 0.23033443093299866, + "learning_rate": 0.0006, + "loss": 3.430036783218384, + "step": 6273 + }, + { + "epoch": 87.1397990388816, + "grad_norm": 0.2381853312253952, + "learning_rate": 0.0006, + "loss": 3.420903444290161, + "step": 6274 + }, + { + "epoch": 87.15377894276976, + "grad_norm": 0.2190200835466385, + "learning_rate": 0.0006, + "loss": 3.4207403659820557, + "step": 6275 + }, + { + "epoch": 87.16775884665793, + "grad_norm": 0.21260236203670502, + "learning_rate": 0.0006, + "loss": 3.4397506713867188, + "step": 6276 + }, + { + "epoch": 87.18173875054609, + "grad_norm": 0.22214606404304504, + "learning_rate": 0.0006, + "loss": 3.4293227195739746, + "step": 6277 + }, + { + "epoch": 87.19571865443424, + "grad_norm": 0.2242288589477539, + "learning_rate": 0.0006, + "loss": 3.4207372665405273, + "step": 6278 + }, + { + "epoch": 87.20969855832242, + "grad_norm": 0.25283282995224, + "learning_rate": 0.0006, + "loss": 3.419442892074585, + "step": 6279 + }, + { + "epoch": 87.22367846221057, + "grad_norm": 0.24865588545799255, + "learning_rate": 0.0006, + "loss": 3.4260497093200684, + "step": 6280 + }, + { + "epoch": 87.23765836609873, + "grad_norm": 0.2589408755302429, + "learning_rate": 0.0006, + "loss": 3.4209916591644287, + "step": 6281 + }, + { + "epoch": 87.2516382699869, + "grad_norm": 0.318220853805542, + "learning_rate": 0.0006, + "loss": 3.432110548019409, + "step": 6282 + }, + { + "epoch": 87.26561817387505, + "grad_norm": 0.31002911925315857, + "learning_rate": 0.0006, + "loss": 3.4443397521972656, + "step": 6283 + }, + { + "epoch": 87.27959807776321, + "grad_norm": 0.2359798550605774, + "learning_rate": 0.0006, + "loss": 3.4457709789276123, + "step": 6284 + }, + { + "epoch": 87.29357798165138, + "grad_norm": 0.24127471446990967, + "learning_rate": 0.0006, + "loss": 3.430861473083496, + "step": 6285 + }, + { + "epoch": 87.30755788553954, + "grad_norm": 0.2523666322231293, + "learning_rate": 0.0006, + "loss": 3.4266719818115234, + "step": 6286 + }, + { + "epoch": 87.3215377894277, + "grad_norm": 0.25202396512031555, + "learning_rate": 0.0006, + "loss": 3.458160400390625, + "step": 6287 + }, + { + "epoch": 87.33551769331586, + "grad_norm": 0.23457808792591095, + "learning_rate": 0.0006, + "loss": 3.4448394775390625, + "step": 6288 + }, + { + "epoch": 87.34949759720402, + "grad_norm": 0.21893201768398285, + "learning_rate": 0.0006, + "loss": 3.4377269744873047, + "step": 6289 + }, + { + "epoch": 87.36347750109218, + "grad_norm": 0.23681706190109253, + "learning_rate": 0.0006, + "loss": 3.471095561981201, + "step": 6290 + }, + { + "epoch": 87.37745740498035, + "grad_norm": 0.26878809928894043, + "learning_rate": 0.0006, + "loss": 3.4401535987854004, + "step": 6291 + }, + { + "epoch": 87.3914373088685, + "grad_norm": 0.27215614914894104, + "learning_rate": 0.0006, + "loss": 3.4613232612609863, + "step": 6292 + }, + { + "epoch": 87.40541721275666, + "grad_norm": 0.2195551097393036, + "learning_rate": 0.0006, + "loss": 3.4215073585510254, + "step": 6293 + }, + { + "epoch": 87.41939711664482, + "grad_norm": 0.22291679680347443, + "learning_rate": 0.0006, + "loss": 3.4974613189697266, + "step": 6294 + }, + { + "epoch": 87.43337702053299, + "grad_norm": 0.22577513754367828, + "learning_rate": 0.0006, + "loss": 3.4792842864990234, + "step": 6295 + }, + { + "epoch": 87.44735692442114, + "grad_norm": 0.22146420180797577, + "learning_rate": 0.0006, + "loss": 3.457834243774414, + "step": 6296 + }, + { + "epoch": 87.4613368283093, + "grad_norm": 0.2282160073518753, + "learning_rate": 0.0006, + "loss": 3.462193489074707, + "step": 6297 + }, + { + "epoch": 87.47531673219747, + "grad_norm": 0.21486175060272217, + "learning_rate": 0.0006, + "loss": 3.416970729827881, + "step": 6298 + }, + { + "epoch": 87.48929663608563, + "grad_norm": 0.24122320115566254, + "learning_rate": 0.0006, + "loss": 3.4543159008026123, + "step": 6299 + }, + { + "epoch": 87.50327653997378, + "grad_norm": 0.25667425990104675, + "learning_rate": 0.0006, + "loss": 3.457819938659668, + "step": 6300 + }, + { + "epoch": 87.51725644386195, + "grad_norm": 0.22020193934440613, + "learning_rate": 0.0006, + "loss": 3.4597818851470947, + "step": 6301 + }, + { + "epoch": 87.53123634775011, + "grad_norm": 0.21770980954170227, + "learning_rate": 0.0006, + "loss": 3.4787464141845703, + "step": 6302 + }, + { + "epoch": 87.54521625163827, + "grad_norm": 0.20606353878974915, + "learning_rate": 0.0006, + "loss": 3.4781737327575684, + "step": 6303 + }, + { + "epoch": 87.55919615552644, + "grad_norm": 0.20081280171871185, + "learning_rate": 0.0006, + "loss": 3.4789981842041016, + "step": 6304 + }, + { + "epoch": 87.57317605941459, + "grad_norm": 0.2083672136068344, + "learning_rate": 0.0006, + "loss": 3.45949649810791, + "step": 6305 + }, + { + "epoch": 87.58715596330275, + "grad_norm": 0.2144811749458313, + "learning_rate": 0.0006, + "loss": 3.476649761199951, + "step": 6306 + }, + { + "epoch": 87.60113586719092, + "grad_norm": 0.20354680716991425, + "learning_rate": 0.0006, + "loss": 3.4517979621887207, + "step": 6307 + }, + { + "epoch": 87.61511577107908, + "grad_norm": 0.21038398146629333, + "learning_rate": 0.0006, + "loss": 3.4579286575317383, + "step": 6308 + }, + { + "epoch": 87.62909567496723, + "grad_norm": 0.2507987916469574, + "learning_rate": 0.0006, + "loss": 3.444129705429077, + "step": 6309 + }, + { + "epoch": 87.6430755788554, + "grad_norm": 0.2602663040161133, + "learning_rate": 0.0006, + "loss": 3.4628701210021973, + "step": 6310 + }, + { + "epoch": 87.65705548274356, + "grad_norm": 0.22973693907260895, + "learning_rate": 0.0006, + "loss": 3.4374523162841797, + "step": 6311 + }, + { + "epoch": 87.67103538663171, + "grad_norm": 0.20517243444919586, + "learning_rate": 0.0006, + "loss": 3.467461585998535, + "step": 6312 + }, + { + "epoch": 87.68501529051987, + "grad_norm": 0.22034190595149994, + "learning_rate": 0.0006, + "loss": 3.4591064453125, + "step": 6313 + }, + { + "epoch": 87.69899519440804, + "grad_norm": 0.27952659130096436, + "learning_rate": 0.0006, + "loss": 3.4621737003326416, + "step": 6314 + }, + { + "epoch": 87.7129750982962, + "grad_norm": 0.3361925780773163, + "learning_rate": 0.0006, + "loss": 3.4823145866394043, + "step": 6315 + }, + { + "epoch": 87.72695500218435, + "grad_norm": 0.245027557015419, + "learning_rate": 0.0006, + "loss": 3.4999091625213623, + "step": 6316 + }, + { + "epoch": 87.74093490607252, + "grad_norm": 0.24421612918376923, + "learning_rate": 0.0006, + "loss": 3.4381346702575684, + "step": 6317 + }, + { + "epoch": 87.75491480996068, + "grad_norm": 0.2876628041267395, + "learning_rate": 0.0006, + "loss": 3.44991397857666, + "step": 6318 + }, + { + "epoch": 87.76889471384884, + "grad_norm": 0.2695000171661377, + "learning_rate": 0.0006, + "loss": 3.4892220497131348, + "step": 6319 + }, + { + "epoch": 87.78287461773701, + "grad_norm": 0.2427721470594406, + "learning_rate": 0.0006, + "loss": 3.488051176071167, + "step": 6320 + }, + { + "epoch": 87.79685452162516, + "grad_norm": 0.22474367916584015, + "learning_rate": 0.0006, + "loss": 3.4849441051483154, + "step": 6321 + }, + { + "epoch": 87.81083442551332, + "grad_norm": 0.2337673008441925, + "learning_rate": 0.0006, + "loss": 3.478757619857788, + "step": 6322 + }, + { + "epoch": 87.82481432940149, + "grad_norm": 0.22685843706130981, + "learning_rate": 0.0006, + "loss": 3.499335289001465, + "step": 6323 + }, + { + "epoch": 87.83879423328965, + "grad_norm": 0.22728733718395233, + "learning_rate": 0.0006, + "loss": 3.4719929695129395, + "step": 6324 + }, + { + "epoch": 87.8527741371778, + "grad_norm": 0.23600755631923676, + "learning_rate": 0.0006, + "loss": 3.4627575874328613, + "step": 6325 + }, + { + "epoch": 87.86675404106597, + "grad_norm": 0.22861236333847046, + "learning_rate": 0.0006, + "loss": 3.4832100868225098, + "step": 6326 + }, + { + "epoch": 87.88073394495413, + "grad_norm": 0.21025750041007996, + "learning_rate": 0.0006, + "loss": 3.475428819656372, + "step": 6327 + }, + { + "epoch": 87.89471384884229, + "grad_norm": 0.24230243265628815, + "learning_rate": 0.0006, + "loss": 3.4739198684692383, + "step": 6328 + }, + { + "epoch": 87.90869375273044, + "grad_norm": 0.2554577589035034, + "learning_rate": 0.0006, + "loss": 3.4509432315826416, + "step": 6329 + }, + { + "epoch": 87.92267365661861, + "grad_norm": 0.22515688836574554, + "learning_rate": 0.0006, + "loss": 3.4668149948120117, + "step": 6330 + }, + { + "epoch": 87.93665356050677, + "grad_norm": 0.19475685060024261, + "learning_rate": 0.0006, + "loss": 3.4462881088256836, + "step": 6331 + }, + { + "epoch": 87.95063346439493, + "grad_norm": 0.23246119916439056, + "learning_rate": 0.0006, + "loss": 3.4629220962524414, + "step": 6332 + }, + { + "epoch": 87.9646133682831, + "grad_norm": 0.2511215806007385, + "learning_rate": 0.0006, + "loss": 3.464906930923462, + "step": 6333 + }, + { + "epoch": 87.97859327217125, + "grad_norm": 0.20661140978336334, + "learning_rate": 0.0006, + "loss": 3.4904966354370117, + "step": 6334 + }, + { + "epoch": 87.99257317605941, + "grad_norm": 0.2149374783039093, + "learning_rate": 0.0006, + "loss": 3.509500026702881, + "step": 6335 + }, + { + "epoch": 88.0, + "grad_norm": 0.26648908853530884, + "learning_rate": 0.0006, + "loss": 3.495286464691162, + "step": 6336 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 2.7000801685583954e+18, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6336/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6624/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6624/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6624/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6624/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..eb5fc91b73c3a224011a82e7869ffb9a85e42e92 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30d2534bcdefffe0845b67686c548b0d7b8410e100a9bfe16564362b0682e50e +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6624/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..eeca7f01482aee5b2f89e75d9f48a981fba4ad8b --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f7f2e5b94dca61bb099829659b6888c69b350512b065c790d0e81da837274d +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6624/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..ed0179d90a1cfc820b31a619fcc1ecd1a0c25083 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:913e3599fed31a45c898ff58320e80b172599c7ede56099cf7e6b5768142724d +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6624/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..5b963bcb3bbeaf16f60335b56bd02c8d777e0c6a --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74093f3a15b74e39f84b389717aa483204a07ffa6d2846e5892e2ff5fa8d57ac +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6624/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..1fb4fbb9cb8eafb61c9d89947d329fb67f4dd4e6 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeab2b26cd983e17d83b05e83f37ef1706928049bbb8ff0e989945b479e25df2 +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6624/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6624/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6624/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..6aca8b1eafeaf73b6207b1b44caf8e46d1f3bbd9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/trainer_state.json @@ -0,0 +1,47130 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 92.0, + "eval_steps": 500, + "global_step": 6624, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + }, + { + "epoch": 8.0, + "eval_loss": 5.100707530975342, + "eval_runtime": 44.2493, + "eval_samples_per_second": 55.187, + "eval_steps_per_second": 3.458, + "step": 576 + }, + { + "epoch": 8.013979903888162, + "grad_norm": 0.3658510148525238, + "learning_rate": 0.0006, + "loss": 4.759055137634277, + "step": 577 + }, + { + "epoch": 8.027959807776321, + "grad_norm": 0.41794446110725403, + "learning_rate": 0.0006, + "loss": 4.737661838531494, + "step": 578 + }, + { + "epoch": 8.041939711664483, + "grad_norm": 0.43284085392951965, + "learning_rate": 0.0006, + "loss": 4.775538444519043, + "step": 579 + }, + { + "epoch": 8.055919615552643, + "grad_norm": 0.4716675281524658, + "learning_rate": 0.0006, + "loss": 4.762231826782227, + "step": 580 + }, + { + "epoch": 8.069899519440805, + "grad_norm": 0.3849579393863678, + "learning_rate": 0.0006, + "loss": 4.753598690032959, + "step": 581 + }, + { + "epoch": 8.083879423328964, + "grad_norm": 0.3721151053905487, + "learning_rate": 0.0006, + "loss": 4.728978157043457, + "step": 582 + }, + { + "epoch": 8.097859327217126, + "grad_norm": 0.37009572982788086, + "learning_rate": 0.0006, + "loss": 4.759153366088867, + "step": 583 + }, + { + "epoch": 8.111839231105286, + "grad_norm": 0.37051302194595337, + "learning_rate": 0.0006, + "loss": 4.744197368621826, + "step": 584 + }, + { + "epoch": 8.125819134993447, + "grad_norm": 0.331238329410553, + "learning_rate": 0.0006, + "loss": 4.7338385581970215, + "step": 585 + }, + { + "epoch": 8.139799038881607, + "grad_norm": 0.3737713694572449, + "learning_rate": 0.0006, + "loss": 4.719110488891602, + "step": 586 + }, + { + "epoch": 8.153778942769769, + "grad_norm": 0.3713214695453644, + "learning_rate": 0.0006, + "loss": 4.734012126922607, + "step": 587 + }, + { + "epoch": 8.167758846657929, + "grad_norm": 0.4060780107975006, + "learning_rate": 0.0006, + "loss": 4.746830940246582, + "step": 588 + }, + { + "epoch": 8.18173875054609, + "grad_norm": 0.39814314246177673, + "learning_rate": 0.0006, + "loss": 4.722851753234863, + "step": 589 + }, + { + "epoch": 8.19571865443425, + "grad_norm": 0.3175652325153351, + "learning_rate": 0.0006, + "loss": 4.745110034942627, + "step": 590 + }, + { + "epoch": 8.209698558322412, + "grad_norm": 0.37214916944503784, + "learning_rate": 0.0006, + "loss": 4.7362775802612305, + "step": 591 + }, + { + "epoch": 8.223678462210572, + "grad_norm": 0.3873472809791565, + "learning_rate": 0.0006, + "loss": 4.738964557647705, + "step": 592 + }, + { + "epoch": 8.237658366098733, + "grad_norm": 0.3299207091331482, + "learning_rate": 0.0006, + "loss": 4.713451385498047, + "step": 593 + }, + { + "epoch": 8.251638269986893, + "grad_norm": 0.32445064187049866, + "learning_rate": 0.0006, + "loss": 4.725602149963379, + "step": 594 + }, + { + "epoch": 8.265618173875055, + "grad_norm": 0.32903164625167847, + "learning_rate": 0.0006, + "loss": 4.732064247131348, + "step": 595 + }, + { + "epoch": 8.279598077763215, + "grad_norm": 0.3166804313659668, + "learning_rate": 0.0006, + "loss": 4.678950786590576, + "step": 596 + }, + { + "epoch": 8.293577981651376, + "grad_norm": 0.2750290334224701, + "learning_rate": 0.0006, + "loss": 4.719513416290283, + "step": 597 + }, + { + "epoch": 8.307557885539538, + "grad_norm": 0.291029691696167, + "learning_rate": 0.0006, + "loss": 4.715405464172363, + "step": 598 + }, + { + "epoch": 8.321537789427698, + "grad_norm": 0.34105145931243896, + "learning_rate": 0.0006, + "loss": 4.722611427307129, + "step": 599 + }, + { + "epoch": 8.33551769331586, + "grad_norm": 0.3078882694244385, + "learning_rate": 0.0006, + "loss": 4.668856620788574, + "step": 600 + }, + { + "epoch": 8.349497597204019, + "grad_norm": 0.3218833804130554, + "learning_rate": 0.0006, + "loss": 4.719579696655273, + "step": 601 + }, + { + "epoch": 8.36347750109218, + "grad_norm": 0.35716721415519714, + "learning_rate": 0.0006, + "loss": 4.690774440765381, + "step": 602 + }, + { + "epoch": 8.37745740498034, + "grad_norm": 0.3045452833175659, + "learning_rate": 0.0006, + "loss": 4.696503639221191, + "step": 603 + }, + { + "epoch": 8.391437308868502, + "grad_norm": 0.3127244710922241, + "learning_rate": 0.0006, + "loss": 4.701899528503418, + "step": 604 + }, + { + "epoch": 8.405417212756662, + "grad_norm": 0.34988710284233093, + "learning_rate": 0.0006, + "loss": 4.677641868591309, + "step": 605 + }, + { + "epoch": 8.419397116644824, + "grad_norm": 0.34035569429397583, + "learning_rate": 0.0006, + "loss": 4.707778453826904, + "step": 606 + }, + { + "epoch": 8.433377020532983, + "grad_norm": 0.3341112732887268, + "learning_rate": 0.0006, + "loss": 4.724853038787842, + "step": 607 + }, + { + "epoch": 8.447356924421145, + "grad_norm": 0.41744324564933777, + "learning_rate": 0.0006, + "loss": 4.680908203125, + "step": 608 + }, + { + "epoch": 8.461336828309305, + "grad_norm": 0.40402331948280334, + "learning_rate": 0.0006, + "loss": 4.726455211639404, + "step": 609 + }, + { + "epoch": 8.475316732197467, + "grad_norm": 0.4727570414543152, + "learning_rate": 0.0006, + "loss": 4.6793084144592285, + "step": 610 + }, + { + "epoch": 8.489296636085626, + "grad_norm": 0.43002694845199585, + "learning_rate": 0.0006, + "loss": 4.663918972015381, + "step": 611 + }, + { + "epoch": 8.503276539973788, + "grad_norm": 0.36124858260154724, + "learning_rate": 0.0006, + "loss": 4.657375335693359, + "step": 612 + }, + { + "epoch": 8.517256443861948, + "grad_norm": 0.37644803524017334, + "learning_rate": 0.0006, + "loss": 4.676977157592773, + "step": 613 + }, + { + "epoch": 8.53123634775011, + "grad_norm": 0.32347747683525085, + "learning_rate": 0.0006, + "loss": 4.708547115325928, + "step": 614 + }, + { + "epoch": 8.54521625163827, + "grad_norm": 0.3071717619895935, + "learning_rate": 0.0006, + "loss": 4.650189399719238, + "step": 615 + }, + { + "epoch": 8.55919615552643, + "grad_norm": 0.30222490429878235, + "learning_rate": 0.0006, + "loss": 4.647942543029785, + "step": 616 + }, + { + "epoch": 8.57317605941459, + "grad_norm": 0.31545212864875793, + "learning_rate": 0.0006, + "loss": 4.660242080688477, + "step": 617 + }, + { + "epoch": 8.587155963302752, + "grad_norm": 0.31644752621650696, + "learning_rate": 0.0006, + "loss": 4.666710376739502, + "step": 618 + }, + { + "epoch": 8.601135867190912, + "grad_norm": 0.26057198643684387, + "learning_rate": 0.0006, + "loss": 4.668096542358398, + "step": 619 + }, + { + "epoch": 8.615115771079074, + "grad_norm": 0.25473910570144653, + "learning_rate": 0.0006, + "loss": 4.641562461853027, + "step": 620 + }, + { + "epoch": 8.629095674967235, + "grad_norm": 0.2456732839345932, + "learning_rate": 0.0006, + "loss": 4.6545281410217285, + "step": 621 + }, + { + "epoch": 8.643075578855395, + "grad_norm": 0.25180476903915405, + "learning_rate": 0.0006, + "loss": 4.6506524085998535, + "step": 622 + }, + { + "epoch": 8.657055482743557, + "grad_norm": 0.21761579811573029, + "learning_rate": 0.0006, + "loss": 4.638909339904785, + "step": 623 + }, + { + "epoch": 8.671035386631717, + "grad_norm": 0.23590542376041412, + "learning_rate": 0.0006, + "loss": 4.6572747230529785, + "step": 624 + }, + { + "epoch": 8.685015290519878, + "grad_norm": 0.23870624601840973, + "learning_rate": 0.0006, + "loss": 4.643742084503174, + "step": 625 + }, + { + "epoch": 8.698995194408038, + "grad_norm": 0.2191203385591507, + "learning_rate": 0.0006, + "loss": 4.632617950439453, + "step": 626 + }, + { + "epoch": 8.7129750982962, + "grad_norm": 0.22107063233852386, + "learning_rate": 0.0006, + "loss": 4.625616073608398, + "step": 627 + }, + { + "epoch": 8.72695500218436, + "grad_norm": 0.20833902060985565, + "learning_rate": 0.0006, + "loss": 4.609896659851074, + "step": 628 + }, + { + "epoch": 8.740934906072521, + "grad_norm": 0.254967600107193, + "learning_rate": 0.0006, + "loss": 4.651735782623291, + "step": 629 + }, + { + "epoch": 8.754914809960681, + "grad_norm": 0.31587523221969604, + "learning_rate": 0.0006, + "loss": 4.6404032707214355, + "step": 630 + }, + { + "epoch": 8.768894713848843, + "grad_norm": 0.28598251938819885, + "learning_rate": 0.0006, + "loss": 4.602679252624512, + "step": 631 + }, + { + "epoch": 8.782874617737003, + "grad_norm": 0.23216590285301208, + "learning_rate": 0.0006, + "loss": 4.610319137573242, + "step": 632 + }, + { + "epoch": 8.796854521625164, + "grad_norm": 0.29212239384651184, + "learning_rate": 0.0006, + "loss": 4.600744247436523, + "step": 633 + }, + { + "epoch": 8.810834425513324, + "grad_norm": 0.3375801146030426, + "learning_rate": 0.0006, + "loss": 4.627819061279297, + "step": 634 + }, + { + "epoch": 8.824814329401486, + "grad_norm": 0.4207753837108612, + "learning_rate": 0.0006, + "loss": 4.634505271911621, + "step": 635 + }, + { + "epoch": 8.838794233289645, + "grad_norm": 0.4640173614025116, + "learning_rate": 0.0006, + "loss": 4.636714935302734, + "step": 636 + }, + { + "epoch": 8.852774137177807, + "grad_norm": 0.5255663990974426, + "learning_rate": 0.0006, + "loss": 4.659462928771973, + "step": 637 + }, + { + "epoch": 8.866754041065967, + "grad_norm": 0.5108268857002258, + "learning_rate": 0.0006, + "loss": 4.633192539215088, + "step": 638 + }, + { + "epoch": 8.880733944954128, + "grad_norm": 0.3821936845779419, + "learning_rate": 0.0006, + "loss": 4.621200084686279, + "step": 639 + }, + { + "epoch": 8.89471384884229, + "grad_norm": 0.3918485939502716, + "learning_rate": 0.0006, + "loss": 4.632599830627441, + "step": 640 + }, + { + "epoch": 8.90869375273045, + "grad_norm": 0.3416556119918823, + "learning_rate": 0.0006, + "loss": 4.620438098907471, + "step": 641 + }, + { + "epoch": 8.922673656618612, + "grad_norm": 0.3191553056240082, + "learning_rate": 0.0006, + "loss": 4.617823600769043, + "step": 642 + }, + { + "epoch": 8.936653560506771, + "grad_norm": 0.3368529677391052, + "learning_rate": 0.0006, + "loss": 4.617222785949707, + "step": 643 + }, + { + "epoch": 8.950633464394933, + "grad_norm": 0.3255428969860077, + "learning_rate": 0.0006, + "loss": 4.633878707885742, + "step": 644 + }, + { + "epoch": 8.964613368283093, + "grad_norm": 0.31394779682159424, + "learning_rate": 0.0006, + "loss": 4.642603874206543, + "step": 645 + }, + { + "epoch": 8.978593272171254, + "grad_norm": 0.29999351501464844, + "learning_rate": 0.0006, + "loss": 4.5925211906433105, + "step": 646 + }, + { + "epoch": 8.992573176059414, + "grad_norm": 0.309154748916626, + "learning_rate": 0.0006, + "loss": 4.61745023727417, + "step": 647 + }, + { + "epoch": 9.0, + "grad_norm": 0.2660452425479889, + "learning_rate": 0.0006, + "loss": 4.575107097625732, + "step": 648 + }, + { + "epoch": 9.0, + "eval_loss": 4.8804192543029785, + "eval_runtime": 45.0015, + "eval_samples_per_second": 54.265, + "eval_steps_per_second": 3.4, + "step": 648 + }, + { + "epoch": 9.013979903888162, + "grad_norm": 0.24159297347068787, + "learning_rate": 0.0006, + "loss": 4.571323871612549, + "step": 649 + }, + { + "epoch": 9.027959807776321, + "grad_norm": 0.2835831046104431, + "learning_rate": 0.0006, + "loss": 4.614255905151367, + "step": 650 + }, + { + "epoch": 9.041939711664483, + "grad_norm": 0.2646859288215637, + "learning_rate": 0.0006, + "loss": 4.578947067260742, + "step": 651 + }, + { + "epoch": 9.055919615552643, + "grad_norm": 0.28868553042411804, + "learning_rate": 0.0006, + "loss": 4.575977325439453, + "step": 652 + }, + { + "epoch": 9.069899519440805, + "grad_norm": 0.2899586856365204, + "learning_rate": 0.0006, + "loss": 4.541798114776611, + "step": 653 + }, + { + "epoch": 9.083879423328964, + "grad_norm": 0.32786068320274353, + "learning_rate": 0.0006, + "loss": 4.575140953063965, + "step": 654 + }, + { + "epoch": 9.097859327217126, + "grad_norm": 0.35675594210624695, + "learning_rate": 0.0006, + "loss": 4.58184814453125, + "step": 655 + }, + { + "epoch": 9.111839231105286, + "grad_norm": 0.3380381166934967, + "learning_rate": 0.0006, + "loss": 4.546271324157715, + "step": 656 + }, + { + "epoch": 9.125819134993447, + "grad_norm": 0.3035511374473572, + "learning_rate": 0.0006, + "loss": 4.591629981994629, + "step": 657 + }, + { + "epoch": 9.139799038881607, + "grad_norm": 0.2733091711997986, + "learning_rate": 0.0006, + "loss": 4.559020042419434, + "step": 658 + }, + { + "epoch": 9.153778942769769, + "grad_norm": 0.2870676815509796, + "learning_rate": 0.0006, + "loss": 4.552787780761719, + "step": 659 + }, + { + "epoch": 9.167758846657929, + "grad_norm": 0.37471064925193787, + "learning_rate": 0.0006, + "loss": 4.572757244110107, + "step": 660 + }, + { + "epoch": 9.18173875054609, + "grad_norm": 0.37889063358306885, + "learning_rate": 0.0006, + "loss": 4.573302268981934, + "step": 661 + }, + { + "epoch": 9.19571865443425, + "grad_norm": 0.29983851313591003, + "learning_rate": 0.0006, + "loss": 4.571202754974365, + "step": 662 + }, + { + "epoch": 9.209698558322412, + "grad_norm": 0.27595147490501404, + "learning_rate": 0.0006, + "loss": 4.529508590698242, + "step": 663 + }, + { + "epoch": 9.223678462210572, + "grad_norm": 0.22693437337875366, + "learning_rate": 0.0006, + "loss": 4.572267532348633, + "step": 664 + }, + { + "epoch": 9.237658366098733, + "grad_norm": 0.27147138118743896, + "learning_rate": 0.0006, + "loss": 4.529747009277344, + "step": 665 + }, + { + "epoch": 9.251638269986893, + "grad_norm": 0.24952703714370728, + "learning_rate": 0.0006, + "loss": 4.553647994995117, + "step": 666 + }, + { + "epoch": 9.265618173875055, + "grad_norm": 0.3086707592010498, + "learning_rate": 0.0006, + "loss": 4.494636058807373, + "step": 667 + }, + { + "epoch": 9.279598077763215, + "grad_norm": 0.3265218138694763, + "learning_rate": 0.0006, + "loss": 4.522481918334961, + "step": 668 + }, + { + "epoch": 9.293577981651376, + "grad_norm": 0.2744608223438263, + "learning_rate": 0.0006, + "loss": 4.544595241546631, + "step": 669 + }, + { + "epoch": 9.307557885539538, + "grad_norm": 0.26698485016822815, + "learning_rate": 0.0006, + "loss": 4.506407260894775, + "step": 670 + }, + { + "epoch": 9.321537789427698, + "grad_norm": 0.2775942087173462, + "learning_rate": 0.0006, + "loss": 4.534619331359863, + "step": 671 + }, + { + "epoch": 9.33551769331586, + "grad_norm": 0.2421862781047821, + "learning_rate": 0.0006, + "loss": 4.523318290710449, + "step": 672 + }, + { + "epoch": 9.349497597204019, + "grad_norm": 0.2756497263908386, + "learning_rate": 0.0006, + "loss": 4.517561912536621, + "step": 673 + }, + { + "epoch": 9.36347750109218, + "grad_norm": 0.28845369815826416, + "learning_rate": 0.0006, + "loss": 4.530844688415527, + "step": 674 + }, + { + "epoch": 9.37745740498034, + "grad_norm": 0.32285866141319275, + "learning_rate": 0.0006, + "loss": 4.55369758605957, + "step": 675 + }, + { + "epoch": 9.391437308868502, + "grad_norm": 0.3726065754890442, + "learning_rate": 0.0006, + "loss": 4.524348258972168, + "step": 676 + }, + { + "epoch": 9.405417212756662, + "grad_norm": 0.39524078369140625, + "learning_rate": 0.0006, + "loss": 4.535778045654297, + "step": 677 + }, + { + "epoch": 9.419397116644824, + "grad_norm": 0.3859797716140747, + "learning_rate": 0.0006, + "loss": 4.538474082946777, + "step": 678 + }, + { + "epoch": 9.433377020532983, + "grad_norm": 0.36151406168937683, + "learning_rate": 0.0006, + "loss": 4.54434061050415, + "step": 679 + }, + { + "epoch": 9.447356924421145, + "grad_norm": 0.40345999598503113, + "learning_rate": 0.0006, + "loss": 4.532961845397949, + "step": 680 + }, + { + "epoch": 9.461336828309305, + "grad_norm": 0.38864144682884216, + "learning_rate": 0.0006, + "loss": 4.567630767822266, + "step": 681 + }, + { + "epoch": 9.475316732197467, + "grad_norm": 0.3816355764865875, + "learning_rate": 0.0006, + "loss": 4.535771369934082, + "step": 682 + }, + { + "epoch": 9.489296636085626, + "grad_norm": 0.38756558299064636, + "learning_rate": 0.0006, + "loss": 4.4971089363098145, + "step": 683 + }, + { + "epoch": 9.503276539973788, + "grad_norm": 0.4572933614253998, + "learning_rate": 0.0006, + "loss": 4.534860134124756, + "step": 684 + }, + { + "epoch": 9.517256443861948, + "grad_norm": 0.42368650436401367, + "learning_rate": 0.0006, + "loss": 4.542638301849365, + "step": 685 + }, + { + "epoch": 9.53123634775011, + "grad_norm": 0.36939486861228943, + "learning_rate": 0.0006, + "loss": 4.571430206298828, + "step": 686 + }, + { + "epoch": 9.54521625163827, + "grad_norm": 0.3900398313999176, + "learning_rate": 0.0006, + "loss": 4.544435501098633, + "step": 687 + }, + { + "epoch": 9.55919615552643, + "grad_norm": 0.37829288840293884, + "learning_rate": 0.0006, + "loss": 4.564268112182617, + "step": 688 + }, + { + "epoch": 9.57317605941459, + "grad_norm": 0.3553886115550995, + "learning_rate": 0.0006, + "loss": 4.5373430252075195, + "step": 689 + }, + { + "epoch": 9.587155963302752, + "grad_norm": 0.3613419532775879, + "learning_rate": 0.0006, + "loss": 4.559074401855469, + "step": 690 + }, + { + "epoch": 9.601135867190912, + "grad_norm": 0.32644546031951904, + "learning_rate": 0.0006, + "loss": 4.533667087554932, + "step": 691 + }, + { + "epoch": 9.615115771079074, + "grad_norm": 0.3264399468898773, + "learning_rate": 0.0006, + "loss": 4.508299350738525, + "step": 692 + }, + { + "epoch": 9.629095674967235, + "grad_norm": 0.3534526526927948, + "learning_rate": 0.0006, + "loss": 4.542442798614502, + "step": 693 + }, + { + "epoch": 9.643075578855395, + "grad_norm": 0.3333452343940735, + "learning_rate": 0.0006, + "loss": 4.497692584991455, + "step": 694 + }, + { + "epoch": 9.657055482743557, + "grad_norm": 0.3214292526245117, + "learning_rate": 0.0006, + "loss": 4.512363433837891, + "step": 695 + }, + { + "epoch": 9.671035386631717, + "grad_norm": 0.2805672585964203, + "learning_rate": 0.0006, + "loss": 4.496874809265137, + "step": 696 + }, + { + "epoch": 9.685015290519878, + "grad_norm": 0.2618725895881653, + "learning_rate": 0.0006, + "loss": 4.51375675201416, + "step": 697 + }, + { + "epoch": 9.698995194408038, + "grad_norm": 0.2556597888469696, + "learning_rate": 0.0006, + "loss": 4.512338638305664, + "step": 698 + }, + { + "epoch": 9.7129750982962, + "grad_norm": 0.23784305155277252, + "learning_rate": 0.0006, + "loss": 4.486503601074219, + "step": 699 + }, + { + "epoch": 9.72695500218436, + "grad_norm": 0.2240338921546936, + "learning_rate": 0.0006, + "loss": 4.486850261688232, + "step": 700 + }, + { + "epoch": 9.740934906072521, + "grad_norm": 0.24686725437641144, + "learning_rate": 0.0006, + "loss": 4.501359462738037, + "step": 701 + }, + { + "epoch": 9.754914809960681, + "grad_norm": 0.20819595456123352, + "learning_rate": 0.0006, + "loss": 4.495186805725098, + "step": 702 + }, + { + "epoch": 9.768894713848843, + "grad_norm": 0.21858957409858704, + "learning_rate": 0.0006, + "loss": 4.475093364715576, + "step": 703 + }, + { + "epoch": 9.782874617737003, + "grad_norm": 0.22676466405391693, + "learning_rate": 0.0006, + "loss": 4.4702534675598145, + "step": 704 + }, + { + "epoch": 9.796854521625164, + "grad_norm": 0.18317611515522003, + "learning_rate": 0.0006, + "loss": 4.471231937408447, + "step": 705 + }, + { + "epoch": 9.810834425513324, + "grad_norm": 0.20979148149490356, + "learning_rate": 0.0006, + "loss": 4.454103946685791, + "step": 706 + }, + { + "epoch": 9.824814329401486, + "grad_norm": 0.2146051526069641, + "learning_rate": 0.0006, + "loss": 4.505178928375244, + "step": 707 + }, + { + "epoch": 9.838794233289645, + "grad_norm": 0.2344852089881897, + "learning_rate": 0.0006, + "loss": 4.437984943389893, + "step": 708 + }, + { + "epoch": 9.852774137177807, + "grad_norm": 0.26532089710235596, + "learning_rate": 0.0006, + "loss": 4.477126121520996, + "step": 709 + }, + { + "epoch": 9.866754041065967, + "grad_norm": 0.2737913131713867, + "learning_rate": 0.0006, + "loss": 4.498421669006348, + "step": 710 + }, + { + "epoch": 9.880733944954128, + "grad_norm": 0.26651278138160706, + "learning_rate": 0.0006, + "loss": 4.480839729309082, + "step": 711 + }, + { + "epoch": 9.89471384884229, + "grad_norm": 0.26576584577560425, + "learning_rate": 0.0006, + "loss": 4.490936279296875, + "step": 712 + }, + { + "epoch": 9.90869375273045, + "grad_norm": 0.22483965754508972, + "learning_rate": 0.0006, + "loss": 4.477953910827637, + "step": 713 + }, + { + "epoch": 9.922673656618612, + "grad_norm": 0.23576045036315918, + "learning_rate": 0.0006, + "loss": 4.4731292724609375, + "step": 714 + }, + { + "epoch": 9.936653560506771, + "grad_norm": 0.2731139361858368, + "learning_rate": 0.0006, + "loss": 4.441622734069824, + "step": 715 + }, + { + "epoch": 9.950633464394933, + "grad_norm": 0.2677643597126007, + "learning_rate": 0.0006, + "loss": 4.49604606628418, + "step": 716 + }, + { + "epoch": 9.964613368283093, + "grad_norm": 0.21940895915031433, + "learning_rate": 0.0006, + "loss": 4.485573768615723, + "step": 717 + }, + { + "epoch": 9.978593272171254, + "grad_norm": 0.2060987651348114, + "learning_rate": 0.0006, + "loss": 4.482657432556152, + "step": 718 + }, + { + "epoch": 9.992573176059414, + "grad_norm": 0.22163978219032288, + "learning_rate": 0.0006, + "loss": 4.478459358215332, + "step": 719 + }, + { + "epoch": 10.0, + "grad_norm": 0.2505086064338684, + "learning_rate": 0.0006, + "loss": 4.4393510818481445, + "step": 720 + }, + { + "epoch": 10.0, + "eval_loss": 4.695676803588867, + "eval_runtime": 49.0751, + "eval_samples_per_second": 49.76, + "eval_steps_per_second": 3.118, + "step": 720 + }, + { + "epoch": 10.013979903888162, + "grad_norm": 0.23820190131664276, + "learning_rate": 0.0006, + "loss": 4.437685489654541, + "step": 721 + }, + { + "epoch": 10.027959807776321, + "grad_norm": 0.2220371812582016, + "learning_rate": 0.0006, + "loss": 4.449873924255371, + "step": 722 + }, + { + "epoch": 10.041939711664483, + "grad_norm": 0.20369848608970642, + "learning_rate": 0.0006, + "loss": 4.448882579803467, + "step": 723 + }, + { + "epoch": 10.055919615552643, + "grad_norm": 0.2360001504421234, + "learning_rate": 0.0006, + "loss": 4.399251937866211, + "step": 724 + }, + { + "epoch": 10.069899519440805, + "grad_norm": 0.23537491261959076, + "learning_rate": 0.0006, + "loss": 4.442960739135742, + "step": 725 + }, + { + "epoch": 10.083879423328964, + "grad_norm": 0.24433870613574982, + "learning_rate": 0.0006, + "loss": 4.44808292388916, + "step": 726 + }, + { + "epoch": 10.097859327217126, + "grad_norm": 0.3406696021556854, + "learning_rate": 0.0006, + "loss": 4.443426132202148, + "step": 727 + }, + { + "epoch": 10.111839231105286, + "grad_norm": 0.4102286100387573, + "learning_rate": 0.0006, + "loss": 4.424919605255127, + "step": 728 + }, + { + "epoch": 10.125819134993447, + "grad_norm": 0.36462604999542236, + "learning_rate": 0.0006, + "loss": 4.45366907119751, + "step": 729 + }, + { + "epoch": 10.139799038881607, + "grad_norm": 0.4374827444553375, + "learning_rate": 0.0006, + "loss": 4.415630340576172, + "step": 730 + }, + { + "epoch": 10.153778942769769, + "grad_norm": 0.45248138904571533, + "learning_rate": 0.0006, + "loss": 4.448849678039551, + "step": 731 + }, + { + "epoch": 10.167758846657929, + "grad_norm": 0.3806457221508026, + "learning_rate": 0.0006, + "loss": 4.443390846252441, + "step": 732 + }, + { + "epoch": 10.18173875054609, + "grad_norm": 0.3491523861885071, + "learning_rate": 0.0006, + "loss": 4.4648637771606445, + "step": 733 + }, + { + "epoch": 10.19571865443425, + "grad_norm": 0.3327210247516632, + "learning_rate": 0.0006, + "loss": 4.460919380187988, + "step": 734 + }, + { + "epoch": 10.209698558322412, + "grad_norm": 0.29772236943244934, + "learning_rate": 0.0006, + "loss": 4.45159912109375, + "step": 735 + }, + { + "epoch": 10.223678462210572, + "grad_norm": 0.33083397150039673, + "learning_rate": 0.0006, + "loss": 4.463382720947266, + "step": 736 + }, + { + "epoch": 10.237658366098733, + "grad_norm": 0.3930598795413971, + "learning_rate": 0.0006, + "loss": 4.434510231018066, + "step": 737 + }, + { + "epoch": 10.251638269986893, + "grad_norm": 0.4342896044254303, + "learning_rate": 0.0006, + "loss": 4.451700210571289, + "step": 738 + }, + { + "epoch": 10.265618173875055, + "grad_norm": 0.4544043242931366, + "learning_rate": 0.0006, + "loss": 4.437224388122559, + "step": 739 + }, + { + "epoch": 10.279598077763215, + "grad_norm": 0.4487038254737854, + "learning_rate": 0.0006, + "loss": 4.46157693862915, + "step": 740 + }, + { + "epoch": 10.293577981651376, + "grad_norm": 0.4420500695705414, + "learning_rate": 0.0006, + "loss": 4.399561405181885, + "step": 741 + }, + { + "epoch": 10.307557885539538, + "grad_norm": 0.4167289435863495, + "learning_rate": 0.0006, + "loss": 4.41792106628418, + "step": 742 + }, + { + "epoch": 10.321537789427698, + "grad_norm": 0.3186971843242645, + "learning_rate": 0.0006, + "loss": 4.435683250427246, + "step": 743 + }, + { + "epoch": 10.33551769331586, + "grad_norm": 0.3077184855937958, + "learning_rate": 0.0006, + "loss": 4.481947898864746, + "step": 744 + }, + { + "epoch": 10.349497597204019, + "grad_norm": 0.26811280846595764, + "learning_rate": 0.0006, + "loss": 4.4339447021484375, + "step": 745 + }, + { + "epoch": 10.36347750109218, + "grad_norm": 0.28448057174682617, + "learning_rate": 0.0006, + "loss": 4.441644668579102, + "step": 746 + }, + { + "epoch": 10.37745740498034, + "grad_norm": 0.30731502175331116, + "learning_rate": 0.0006, + "loss": 4.428773880004883, + "step": 747 + }, + { + "epoch": 10.391437308868502, + "grad_norm": 0.28036001324653625, + "learning_rate": 0.0006, + "loss": 4.4433135986328125, + "step": 748 + }, + { + "epoch": 10.405417212756662, + "grad_norm": 0.2882847189903259, + "learning_rate": 0.0006, + "loss": 4.433401107788086, + "step": 749 + }, + { + "epoch": 10.419397116644824, + "grad_norm": 0.23622776567935944, + "learning_rate": 0.0006, + "loss": 4.444611549377441, + "step": 750 + }, + { + "epoch": 10.433377020532983, + "grad_norm": 0.2306167632341385, + "learning_rate": 0.0006, + "loss": 4.397875785827637, + "step": 751 + }, + { + "epoch": 10.447356924421145, + "grad_norm": 0.22725090384483337, + "learning_rate": 0.0006, + "loss": 4.429759502410889, + "step": 752 + }, + { + "epoch": 10.461336828309305, + "grad_norm": 0.250709593296051, + "learning_rate": 0.0006, + "loss": 4.415618896484375, + "step": 753 + }, + { + "epoch": 10.475316732197467, + "grad_norm": 0.22341276705265045, + "learning_rate": 0.0006, + "loss": 4.389362335205078, + "step": 754 + }, + { + "epoch": 10.489296636085626, + "grad_norm": 0.22595296800136566, + "learning_rate": 0.0006, + "loss": 4.383584022521973, + "step": 755 + }, + { + "epoch": 10.503276539973788, + "grad_norm": 0.24277575314044952, + "learning_rate": 0.0006, + "loss": 4.403777599334717, + "step": 756 + }, + { + "epoch": 10.517256443861948, + "grad_norm": 0.2670708894729614, + "learning_rate": 0.0006, + "loss": 4.398499011993408, + "step": 757 + }, + { + "epoch": 10.53123634775011, + "grad_norm": 0.2640696167945862, + "learning_rate": 0.0006, + "loss": 4.426726818084717, + "step": 758 + }, + { + "epoch": 10.54521625163827, + "grad_norm": 0.2248653769493103, + "learning_rate": 0.0006, + "loss": 4.400103569030762, + "step": 759 + }, + { + "epoch": 10.55919615552643, + "grad_norm": 0.21466240286827087, + "learning_rate": 0.0006, + "loss": 4.404158592224121, + "step": 760 + }, + { + "epoch": 10.57317605941459, + "grad_norm": 0.236923947930336, + "learning_rate": 0.0006, + "loss": 4.37059211730957, + "step": 761 + }, + { + "epoch": 10.587155963302752, + "grad_norm": 0.2515387535095215, + "learning_rate": 0.0006, + "loss": 4.415055274963379, + "step": 762 + }, + { + "epoch": 10.601135867190912, + "grad_norm": 0.23461885750293732, + "learning_rate": 0.0006, + "loss": 4.375036239624023, + "step": 763 + }, + { + "epoch": 10.615115771079074, + "grad_norm": 0.20975761115550995, + "learning_rate": 0.0006, + "loss": 4.3903398513793945, + "step": 764 + }, + { + "epoch": 10.629095674967235, + "grad_norm": 0.19859997928142548, + "learning_rate": 0.0006, + "loss": 4.379380226135254, + "step": 765 + }, + { + "epoch": 10.643075578855395, + "grad_norm": 0.22310325503349304, + "learning_rate": 0.0006, + "loss": 4.382110595703125, + "step": 766 + }, + { + "epoch": 10.657055482743557, + "grad_norm": 0.23940646648406982, + "learning_rate": 0.0006, + "loss": 4.393403053283691, + "step": 767 + }, + { + "epoch": 10.671035386631717, + "grad_norm": 0.2230468988418579, + "learning_rate": 0.0006, + "loss": 4.391970634460449, + "step": 768 + }, + { + "epoch": 10.685015290519878, + "grad_norm": 0.18139775097370148, + "learning_rate": 0.0006, + "loss": 4.399993896484375, + "step": 769 + }, + { + "epoch": 10.698995194408038, + "grad_norm": 0.19936902821063995, + "learning_rate": 0.0006, + "loss": 4.373854160308838, + "step": 770 + }, + { + "epoch": 10.7129750982962, + "grad_norm": 0.22132465243339539, + "learning_rate": 0.0006, + "loss": 4.377530097961426, + "step": 771 + }, + { + "epoch": 10.72695500218436, + "grad_norm": 0.24254944920539856, + "learning_rate": 0.0006, + "loss": 4.398683547973633, + "step": 772 + }, + { + "epoch": 10.740934906072521, + "grad_norm": 0.2666397988796234, + "learning_rate": 0.0006, + "loss": 4.3879899978637695, + "step": 773 + }, + { + "epoch": 10.754914809960681, + "grad_norm": 0.24728631973266602, + "learning_rate": 0.0006, + "loss": 4.356976509094238, + "step": 774 + }, + { + "epoch": 10.768894713848843, + "grad_norm": 0.2612453103065491, + "learning_rate": 0.0006, + "loss": 4.391525745391846, + "step": 775 + }, + { + "epoch": 10.782874617737003, + "grad_norm": 0.24060510098934174, + "learning_rate": 0.0006, + "loss": 4.376985549926758, + "step": 776 + }, + { + "epoch": 10.796854521625164, + "grad_norm": 0.22708238661289215, + "learning_rate": 0.0006, + "loss": 4.368545055389404, + "step": 777 + }, + { + "epoch": 10.810834425513324, + "grad_norm": 0.26931291818618774, + "learning_rate": 0.0006, + "loss": 4.369227409362793, + "step": 778 + }, + { + "epoch": 10.824814329401486, + "grad_norm": 0.265288770198822, + "learning_rate": 0.0006, + "loss": 4.378131866455078, + "step": 779 + }, + { + "epoch": 10.838794233289645, + "grad_norm": 0.3015305697917938, + "learning_rate": 0.0006, + "loss": 4.376267910003662, + "step": 780 + }, + { + "epoch": 10.852774137177807, + "grad_norm": 0.3345746099948883, + "learning_rate": 0.0006, + "loss": 4.3751420974731445, + "step": 781 + }, + { + "epoch": 10.866754041065967, + "grad_norm": 0.32446005940437317, + "learning_rate": 0.0006, + "loss": 4.370899200439453, + "step": 782 + }, + { + "epoch": 10.880733944954128, + "grad_norm": 0.27070069313049316, + "learning_rate": 0.0006, + "loss": 4.391958236694336, + "step": 783 + }, + { + "epoch": 10.89471384884229, + "grad_norm": 0.25584667921066284, + "learning_rate": 0.0006, + "loss": 4.407493591308594, + "step": 784 + }, + { + "epoch": 10.90869375273045, + "grad_norm": 0.2710244655609131, + "learning_rate": 0.0006, + "loss": 4.374400615692139, + "step": 785 + }, + { + "epoch": 10.922673656618612, + "grad_norm": 0.32413622736930847, + "learning_rate": 0.0006, + "loss": 4.379607200622559, + "step": 786 + }, + { + "epoch": 10.936653560506771, + "grad_norm": 0.3253782391548157, + "learning_rate": 0.0006, + "loss": 4.376441955566406, + "step": 787 + }, + { + "epoch": 10.950633464394933, + "grad_norm": 0.30534613132476807, + "learning_rate": 0.0006, + "loss": 4.382739067077637, + "step": 788 + }, + { + "epoch": 10.964613368283093, + "grad_norm": 0.35726621747016907, + "learning_rate": 0.0006, + "loss": 4.3765869140625, + "step": 789 + }, + { + "epoch": 10.978593272171254, + "grad_norm": 0.32763028144836426, + "learning_rate": 0.0006, + "loss": 4.391537189483643, + "step": 790 + }, + { + "epoch": 10.992573176059414, + "grad_norm": 0.31811195611953735, + "learning_rate": 0.0006, + "loss": 4.371829032897949, + "step": 791 + }, + { + "epoch": 11.0, + "grad_norm": 0.37317267060279846, + "learning_rate": 0.0006, + "loss": 4.381916522979736, + "step": 792 + }, + { + "epoch": 11.0, + "eval_loss": 4.588687896728516, + "eval_runtime": 44.8041, + "eval_samples_per_second": 54.504, + "eval_steps_per_second": 3.415, + "step": 792 + }, + { + "epoch": 11.013979903888162, + "grad_norm": 0.37882938981056213, + "learning_rate": 0.0006, + "loss": 4.3463640213012695, + "step": 793 + }, + { + "epoch": 11.027959807776321, + "grad_norm": 0.34719496965408325, + "learning_rate": 0.0006, + "loss": 4.329861640930176, + "step": 794 + }, + { + "epoch": 11.041939711664483, + "grad_norm": 0.36161214113235474, + "learning_rate": 0.0006, + "loss": 4.3287835121154785, + "step": 795 + }, + { + "epoch": 11.055919615552643, + "grad_norm": 0.3743649125099182, + "learning_rate": 0.0006, + "loss": 4.334251403808594, + "step": 796 + }, + { + "epoch": 11.069899519440805, + "grad_norm": 0.32266443967819214, + "learning_rate": 0.0006, + "loss": 4.364782810211182, + "step": 797 + }, + { + "epoch": 11.083879423328964, + "grad_norm": 0.27460047602653503, + "learning_rate": 0.0006, + "loss": 4.348380088806152, + "step": 798 + }, + { + "epoch": 11.097859327217126, + "grad_norm": 0.30498892068862915, + "learning_rate": 0.0006, + "loss": 4.347856521606445, + "step": 799 + }, + { + "epoch": 11.111839231105286, + "grad_norm": 0.29740771651268005, + "learning_rate": 0.0006, + "loss": 4.343471050262451, + "step": 800 + }, + { + "epoch": 11.125819134993447, + "grad_norm": 0.3004681169986725, + "learning_rate": 0.0006, + "loss": 4.337590217590332, + "step": 801 + }, + { + "epoch": 11.139799038881607, + "grad_norm": 0.3000192642211914, + "learning_rate": 0.0006, + "loss": 4.349949836730957, + "step": 802 + }, + { + "epoch": 11.153778942769769, + "grad_norm": 0.27461889386177063, + "learning_rate": 0.0006, + "loss": 4.338934898376465, + "step": 803 + }, + { + "epoch": 11.167758846657929, + "grad_norm": 0.2856169641017914, + "learning_rate": 0.0006, + "loss": 4.320754051208496, + "step": 804 + }, + { + "epoch": 11.18173875054609, + "grad_norm": 0.29822713136672974, + "learning_rate": 0.0006, + "loss": 4.357949733734131, + "step": 805 + }, + { + "epoch": 11.19571865443425, + "grad_norm": 0.34061339497566223, + "learning_rate": 0.0006, + "loss": 4.327282905578613, + "step": 806 + }, + { + "epoch": 11.209698558322412, + "grad_norm": 0.3379063010215759, + "learning_rate": 0.0006, + "loss": 4.355471611022949, + "step": 807 + }, + { + "epoch": 11.223678462210572, + "grad_norm": 0.2859216630458832, + "learning_rate": 0.0006, + "loss": 4.352344989776611, + "step": 808 + }, + { + "epoch": 11.237658366098733, + "grad_norm": 0.29522669315338135, + "learning_rate": 0.0006, + "loss": 4.349186897277832, + "step": 809 + }, + { + "epoch": 11.251638269986893, + "grad_norm": 0.273798406124115, + "learning_rate": 0.0006, + "loss": 4.342379570007324, + "step": 810 + }, + { + "epoch": 11.265618173875055, + "grad_norm": 0.25298982858657837, + "learning_rate": 0.0006, + "loss": 4.358835220336914, + "step": 811 + }, + { + "epoch": 11.279598077763215, + "grad_norm": 0.2170463651418686, + "learning_rate": 0.0006, + "loss": 4.3422017097473145, + "step": 812 + }, + { + "epoch": 11.293577981651376, + "grad_norm": 0.24855731427669525, + "learning_rate": 0.0006, + "loss": 4.322849750518799, + "step": 813 + }, + { + "epoch": 11.307557885539538, + "grad_norm": 0.22564345598220825, + "learning_rate": 0.0006, + "loss": 4.316864967346191, + "step": 814 + }, + { + "epoch": 11.321537789427698, + "grad_norm": 0.21532197296619415, + "learning_rate": 0.0006, + "loss": 4.326743125915527, + "step": 815 + }, + { + "epoch": 11.33551769331586, + "grad_norm": 0.20514146983623505, + "learning_rate": 0.0006, + "loss": 4.326531887054443, + "step": 816 + }, + { + "epoch": 11.349497597204019, + "grad_norm": 0.19035090506076813, + "learning_rate": 0.0006, + "loss": 4.318154335021973, + "step": 817 + }, + { + "epoch": 11.36347750109218, + "grad_norm": 0.17889662086963654, + "learning_rate": 0.0006, + "loss": 4.35410213470459, + "step": 818 + }, + { + "epoch": 11.37745740498034, + "grad_norm": 0.20564863085746765, + "learning_rate": 0.0006, + "loss": 4.350226879119873, + "step": 819 + }, + { + "epoch": 11.391437308868502, + "grad_norm": 0.2412603348493576, + "learning_rate": 0.0006, + "loss": 4.325137138366699, + "step": 820 + }, + { + "epoch": 11.405417212756662, + "grad_norm": 0.2603496015071869, + "learning_rate": 0.0006, + "loss": 4.335752487182617, + "step": 821 + }, + { + "epoch": 11.419397116644824, + "grad_norm": 0.2968119978904724, + "learning_rate": 0.0006, + "loss": 4.3317670822143555, + "step": 822 + }, + { + "epoch": 11.433377020532983, + "grad_norm": 0.3280937969684601, + "learning_rate": 0.0006, + "loss": 4.322279453277588, + "step": 823 + }, + { + "epoch": 11.447356924421145, + "grad_norm": 0.3598847985267639, + "learning_rate": 0.0006, + "loss": 4.312255859375, + "step": 824 + }, + { + "epoch": 11.461336828309305, + "grad_norm": 0.3996485471725464, + "learning_rate": 0.0006, + "loss": 4.327103614807129, + "step": 825 + }, + { + "epoch": 11.475316732197467, + "grad_norm": 0.4352041780948639, + "learning_rate": 0.0006, + "loss": 4.368639945983887, + "step": 826 + }, + { + "epoch": 11.489296636085626, + "grad_norm": 0.4451918601989746, + "learning_rate": 0.0006, + "loss": 4.335113048553467, + "step": 827 + }, + { + "epoch": 11.503276539973788, + "grad_norm": 0.4403933584690094, + "learning_rate": 0.0006, + "loss": 4.369889259338379, + "step": 828 + }, + { + "epoch": 11.517256443861948, + "grad_norm": 0.34862443804740906, + "learning_rate": 0.0006, + "loss": 4.316292762756348, + "step": 829 + }, + { + "epoch": 11.53123634775011, + "grad_norm": 0.3240634500980377, + "learning_rate": 0.0006, + "loss": 4.328078746795654, + "step": 830 + }, + { + "epoch": 11.54521625163827, + "grad_norm": 0.2445751428604126, + "learning_rate": 0.0006, + "loss": 4.291940689086914, + "step": 831 + }, + { + "epoch": 11.55919615552643, + "grad_norm": 0.24376554787158966, + "learning_rate": 0.0006, + "loss": 4.339217662811279, + "step": 832 + }, + { + "epoch": 11.57317605941459, + "grad_norm": 0.22419725358486176, + "learning_rate": 0.0006, + "loss": 4.2887468338012695, + "step": 833 + }, + { + "epoch": 11.587155963302752, + "grad_norm": 0.22318261861801147, + "learning_rate": 0.0006, + "loss": 4.298492908477783, + "step": 834 + }, + { + "epoch": 11.601135867190912, + "grad_norm": 0.2357342392206192, + "learning_rate": 0.0006, + "loss": 4.328692436218262, + "step": 835 + }, + { + "epoch": 11.615115771079074, + "grad_norm": 0.25450602173805237, + "learning_rate": 0.0006, + "loss": 4.360058784484863, + "step": 836 + }, + { + "epoch": 11.629095674967235, + "grad_norm": 0.24540965259075165, + "learning_rate": 0.0006, + "loss": 4.311890602111816, + "step": 837 + }, + { + "epoch": 11.643075578855395, + "grad_norm": 0.2535638213157654, + "learning_rate": 0.0006, + "loss": 4.327730178833008, + "step": 838 + }, + { + "epoch": 11.657055482743557, + "grad_norm": 0.23063556849956512, + "learning_rate": 0.0006, + "loss": 4.303299903869629, + "step": 839 + }, + { + "epoch": 11.671035386631717, + "grad_norm": 0.21813632547855377, + "learning_rate": 0.0006, + "loss": 4.315352439880371, + "step": 840 + }, + { + "epoch": 11.685015290519878, + "grad_norm": 0.2170359194278717, + "learning_rate": 0.0006, + "loss": 4.278632164001465, + "step": 841 + }, + { + "epoch": 11.698995194408038, + "grad_norm": 0.21059377491474152, + "learning_rate": 0.0006, + "loss": 4.306049346923828, + "step": 842 + }, + { + "epoch": 11.7129750982962, + "grad_norm": 0.19872888922691345, + "learning_rate": 0.0006, + "loss": 4.3091535568237305, + "step": 843 + }, + { + "epoch": 11.72695500218436, + "grad_norm": 0.20059862732887268, + "learning_rate": 0.0006, + "loss": 4.2884063720703125, + "step": 844 + }, + { + "epoch": 11.740934906072521, + "grad_norm": 0.19952483475208282, + "learning_rate": 0.0006, + "loss": 4.293610572814941, + "step": 845 + }, + { + "epoch": 11.754914809960681, + "grad_norm": 0.19794537127017975, + "learning_rate": 0.0006, + "loss": 4.288822174072266, + "step": 846 + }, + { + "epoch": 11.768894713848843, + "grad_norm": 0.213914692401886, + "learning_rate": 0.0006, + "loss": 4.320849418640137, + "step": 847 + }, + { + "epoch": 11.782874617737003, + "grad_norm": 0.18500955402851105, + "learning_rate": 0.0006, + "loss": 4.29300594329834, + "step": 848 + }, + { + "epoch": 11.796854521625164, + "grad_norm": 0.19446656107902527, + "learning_rate": 0.0006, + "loss": 4.3079352378845215, + "step": 849 + }, + { + "epoch": 11.810834425513324, + "grad_norm": 0.22191768884658813, + "learning_rate": 0.0006, + "loss": 4.295967102050781, + "step": 850 + }, + { + "epoch": 11.824814329401486, + "grad_norm": 0.20748084783554077, + "learning_rate": 0.0006, + "loss": 4.332365989685059, + "step": 851 + }, + { + "epoch": 11.838794233289645, + "grad_norm": 0.20993955433368683, + "learning_rate": 0.0006, + "loss": 4.294618129730225, + "step": 852 + }, + { + "epoch": 11.852774137177807, + "grad_norm": 0.23506952822208405, + "learning_rate": 0.0006, + "loss": 4.313426971435547, + "step": 853 + }, + { + "epoch": 11.866754041065967, + "grad_norm": 0.2379443347454071, + "learning_rate": 0.0006, + "loss": 4.297664642333984, + "step": 854 + }, + { + "epoch": 11.880733944954128, + "grad_norm": 0.2127852737903595, + "learning_rate": 0.0006, + "loss": 4.2807698249816895, + "step": 855 + }, + { + "epoch": 11.89471384884229, + "grad_norm": 0.2125532180070877, + "learning_rate": 0.0006, + "loss": 4.310990333557129, + "step": 856 + }, + { + "epoch": 11.90869375273045, + "grad_norm": 0.1996062994003296, + "learning_rate": 0.0006, + "loss": 4.253237724304199, + "step": 857 + }, + { + "epoch": 11.922673656618612, + "grad_norm": 0.20747603476047516, + "learning_rate": 0.0006, + "loss": 4.294193267822266, + "step": 858 + }, + { + "epoch": 11.936653560506771, + "grad_norm": 0.24082425236701965, + "learning_rate": 0.0006, + "loss": 4.269967079162598, + "step": 859 + }, + { + "epoch": 11.950633464394933, + "grad_norm": 0.28993573784828186, + "learning_rate": 0.0006, + "loss": 4.294550895690918, + "step": 860 + }, + { + "epoch": 11.964613368283093, + "grad_norm": 0.29576948285102844, + "learning_rate": 0.0006, + "loss": 4.3188252449035645, + "step": 861 + }, + { + "epoch": 11.978593272171254, + "grad_norm": 0.2754935026168823, + "learning_rate": 0.0006, + "loss": 4.312817573547363, + "step": 862 + }, + { + "epoch": 11.992573176059414, + "grad_norm": 0.3062523305416107, + "learning_rate": 0.0006, + "loss": 4.288214683532715, + "step": 863 + }, + { + "epoch": 12.0, + "grad_norm": 0.3367644250392914, + "learning_rate": 0.0006, + "loss": 4.314888954162598, + "step": 864 + }, + { + "epoch": 12.0, + "eval_loss": 4.516861438751221, + "eval_runtime": 44.2584, + "eval_samples_per_second": 55.176, + "eval_steps_per_second": 3.457, + "step": 864 + }, + { + "epoch": 12.013979903888162, + "grad_norm": 0.2976512014865875, + "learning_rate": 0.0006, + "loss": 4.278797149658203, + "step": 865 + }, + { + "epoch": 12.027959807776321, + "grad_norm": 0.32217127084732056, + "learning_rate": 0.0006, + "loss": 4.2823615074157715, + "step": 866 + }, + { + "epoch": 12.041939711664483, + "grad_norm": 0.31538400053977966, + "learning_rate": 0.0006, + "loss": 4.252805709838867, + "step": 867 + }, + { + "epoch": 12.055919615552643, + "grad_norm": 0.3501375913619995, + "learning_rate": 0.0006, + "loss": 4.276501655578613, + "step": 868 + }, + { + "epoch": 12.069899519440805, + "grad_norm": 0.3452056646347046, + "learning_rate": 0.0006, + "loss": 4.275739669799805, + "step": 869 + }, + { + "epoch": 12.083879423328964, + "grad_norm": 0.36963316798210144, + "learning_rate": 0.0006, + "loss": 4.3215227127075195, + "step": 870 + }, + { + "epoch": 12.097859327217126, + "grad_norm": 0.41605016589164734, + "learning_rate": 0.0006, + "loss": 4.28739595413208, + "step": 871 + }, + { + "epoch": 12.111839231105286, + "grad_norm": 0.37700653076171875, + "learning_rate": 0.0006, + "loss": 4.291154861450195, + "step": 872 + }, + { + "epoch": 12.125819134993447, + "grad_norm": 0.3194253444671631, + "learning_rate": 0.0006, + "loss": 4.259326934814453, + "step": 873 + }, + { + "epoch": 12.139799038881607, + "grad_norm": 0.31770631670951843, + "learning_rate": 0.0006, + "loss": 4.270082473754883, + "step": 874 + }, + { + "epoch": 12.153778942769769, + "grad_norm": 0.3748120069503784, + "learning_rate": 0.0006, + "loss": 4.2727274894714355, + "step": 875 + }, + { + "epoch": 12.167758846657929, + "grad_norm": 0.3821348547935486, + "learning_rate": 0.0006, + "loss": 4.2848286628723145, + "step": 876 + }, + { + "epoch": 12.18173875054609, + "grad_norm": 0.31894201040267944, + "learning_rate": 0.0006, + "loss": 4.289551258087158, + "step": 877 + }, + { + "epoch": 12.19571865443425, + "grad_norm": 0.2695826292037964, + "learning_rate": 0.0006, + "loss": 4.2797346115112305, + "step": 878 + }, + { + "epoch": 12.209698558322412, + "grad_norm": 0.23966269195079803, + "learning_rate": 0.0006, + "loss": 4.24021577835083, + "step": 879 + }, + { + "epoch": 12.223678462210572, + "grad_norm": 0.24342599511146545, + "learning_rate": 0.0006, + "loss": 4.277721881866455, + "step": 880 + }, + { + "epoch": 12.237658366098733, + "grad_norm": 0.2522958815097809, + "learning_rate": 0.0006, + "loss": 4.263946533203125, + "step": 881 + }, + { + "epoch": 12.251638269986893, + "grad_norm": 0.2708299458026886, + "learning_rate": 0.0006, + "loss": 4.274540901184082, + "step": 882 + }, + { + "epoch": 12.265618173875055, + "grad_norm": 0.2978788912296295, + "learning_rate": 0.0006, + "loss": 4.2674970626831055, + "step": 883 + }, + { + "epoch": 12.279598077763215, + "grad_norm": 0.2898774743080139, + "learning_rate": 0.0006, + "loss": 4.235060691833496, + "step": 884 + }, + { + "epoch": 12.293577981651376, + "grad_norm": 0.27941837906837463, + "learning_rate": 0.0006, + "loss": 4.284140586853027, + "step": 885 + }, + { + "epoch": 12.307557885539538, + "grad_norm": 0.25050559639930725, + "learning_rate": 0.0006, + "loss": 4.270134925842285, + "step": 886 + }, + { + "epoch": 12.321537789427698, + "grad_norm": 0.21867156028747559, + "learning_rate": 0.0006, + "loss": 4.241571426391602, + "step": 887 + }, + { + "epoch": 12.33551769331586, + "grad_norm": 0.24735847115516663, + "learning_rate": 0.0006, + "loss": 4.253087997436523, + "step": 888 + }, + { + "epoch": 12.349497597204019, + "grad_norm": 0.23069104552268982, + "learning_rate": 0.0006, + "loss": 4.258606910705566, + "step": 889 + }, + { + "epoch": 12.36347750109218, + "grad_norm": 0.2594369947910309, + "learning_rate": 0.0006, + "loss": 4.307351112365723, + "step": 890 + }, + { + "epoch": 12.37745740498034, + "grad_norm": 0.25349098443984985, + "learning_rate": 0.0006, + "loss": 4.264268398284912, + "step": 891 + }, + { + "epoch": 12.391437308868502, + "grad_norm": 0.2550840675830841, + "learning_rate": 0.0006, + "loss": 4.247092247009277, + "step": 892 + }, + { + "epoch": 12.405417212756662, + "grad_norm": 0.2107602059841156, + "learning_rate": 0.0006, + "loss": 4.240527153015137, + "step": 893 + }, + { + "epoch": 12.419397116644824, + "grad_norm": 0.2025548368692398, + "learning_rate": 0.0006, + "loss": 4.244686126708984, + "step": 894 + }, + { + "epoch": 12.433377020532983, + "grad_norm": 0.22061701118946075, + "learning_rate": 0.0006, + "loss": 4.233231544494629, + "step": 895 + }, + { + "epoch": 12.447356924421145, + "grad_norm": 0.19503085315227509, + "learning_rate": 0.0006, + "loss": 4.23851203918457, + "step": 896 + }, + { + "epoch": 12.461336828309305, + "grad_norm": 0.19313643872737885, + "learning_rate": 0.0006, + "loss": 4.190886497497559, + "step": 897 + }, + { + "epoch": 12.475316732197467, + "grad_norm": 0.21094176173210144, + "learning_rate": 0.0006, + "loss": 4.277888298034668, + "step": 898 + }, + { + "epoch": 12.489296636085626, + "grad_norm": 0.1980651170015335, + "learning_rate": 0.0006, + "loss": 4.251066207885742, + "step": 899 + }, + { + "epoch": 12.503276539973788, + "grad_norm": 0.179737389087677, + "learning_rate": 0.0006, + "loss": 4.194703102111816, + "step": 900 + }, + { + "epoch": 12.517256443861948, + "grad_norm": 0.19069281220436096, + "learning_rate": 0.0006, + "loss": 4.242412567138672, + "step": 901 + }, + { + "epoch": 12.53123634775011, + "grad_norm": 0.191154345870018, + "learning_rate": 0.0006, + "loss": 4.2432780265808105, + "step": 902 + }, + { + "epoch": 12.54521625163827, + "grad_norm": 0.19760103523731232, + "learning_rate": 0.0006, + "loss": 4.23294734954834, + "step": 903 + }, + { + "epoch": 12.55919615552643, + "grad_norm": 0.19982324540615082, + "learning_rate": 0.0006, + "loss": 4.249764442443848, + "step": 904 + }, + { + "epoch": 12.57317605941459, + "grad_norm": 0.1986108422279358, + "learning_rate": 0.0006, + "loss": 4.213435649871826, + "step": 905 + }, + { + "epoch": 12.587155963302752, + "grad_norm": 0.19727319478988647, + "learning_rate": 0.0006, + "loss": 4.247962951660156, + "step": 906 + }, + { + "epoch": 12.601135867190912, + "grad_norm": 0.23404482007026672, + "learning_rate": 0.0006, + "loss": 4.237396240234375, + "step": 907 + }, + { + "epoch": 12.615115771079074, + "grad_norm": 0.21136441826820374, + "learning_rate": 0.0006, + "loss": 4.236040115356445, + "step": 908 + }, + { + "epoch": 12.629095674967235, + "grad_norm": 0.2209048718214035, + "learning_rate": 0.0006, + "loss": 4.234212875366211, + "step": 909 + }, + { + "epoch": 12.643075578855395, + "grad_norm": 0.22120307385921478, + "learning_rate": 0.0006, + "loss": 4.2711076736450195, + "step": 910 + }, + { + "epoch": 12.657055482743557, + "grad_norm": 0.22733066976070404, + "learning_rate": 0.0006, + "loss": 4.231651306152344, + "step": 911 + }, + { + "epoch": 12.671035386631717, + "grad_norm": 0.2435602843761444, + "learning_rate": 0.0006, + "loss": 4.249372482299805, + "step": 912 + }, + { + "epoch": 12.685015290519878, + "grad_norm": 0.28881654143333435, + "learning_rate": 0.0006, + "loss": 4.2626051902771, + "step": 913 + }, + { + "epoch": 12.698995194408038, + "grad_norm": 0.3211199641227722, + "learning_rate": 0.0006, + "loss": 4.254220485687256, + "step": 914 + }, + { + "epoch": 12.7129750982962, + "grad_norm": 0.3118100166320801, + "learning_rate": 0.0006, + "loss": 4.233747959136963, + "step": 915 + }, + { + "epoch": 12.72695500218436, + "grad_norm": 0.33411866426467896, + "learning_rate": 0.0006, + "loss": 4.270386219024658, + "step": 916 + }, + { + "epoch": 12.740934906072521, + "grad_norm": 0.2968253195285797, + "learning_rate": 0.0006, + "loss": 4.242254257202148, + "step": 917 + }, + { + "epoch": 12.754914809960681, + "grad_norm": 0.2959132194519043, + "learning_rate": 0.0006, + "loss": 4.232100486755371, + "step": 918 + }, + { + "epoch": 12.768894713848843, + "grad_norm": 0.2729283273220062, + "learning_rate": 0.0006, + "loss": 4.233869552612305, + "step": 919 + }, + { + "epoch": 12.782874617737003, + "grad_norm": 0.2669033408164978, + "learning_rate": 0.0006, + "loss": 4.261008262634277, + "step": 920 + }, + { + "epoch": 12.796854521625164, + "grad_norm": 0.2738507091999054, + "learning_rate": 0.0006, + "loss": 4.2286763191223145, + "step": 921 + }, + { + "epoch": 12.810834425513324, + "grad_norm": 0.29105183482170105, + "learning_rate": 0.0006, + "loss": 4.281410217285156, + "step": 922 + }, + { + "epoch": 12.824814329401486, + "grad_norm": 0.31330201029777527, + "learning_rate": 0.0006, + "loss": 4.264181613922119, + "step": 923 + }, + { + "epoch": 12.838794233289645, + "grad_norm": 0.31324025988578796, + "learning_rate": 0.0006, + "loss": 4.250385284423828, + "step": 924 + }, + { + "epoch": 12.852774137177807, + "grad_norm": 0.2727925181388855, + "learning_rate": 0.0006, + "loss": 4.24821138381958, + "step": 925 + }, + { + "epoch": 12.866754041065967, + "grad_norm": 0.27350082993507385, + "learning_rate": 0.0006, + "loss": 4.230215072631836, + "step": 926 + }, + { + "epoch": 12.880733944954128, + "grad_norm": 0.2269950658082962, + "learning_rate": 0.0006, + "loss": 4.210305213928223, + "step": 927 + }, + { + "epoch": 12.89471384884229, + "grad_norm": 0.24667619168758392, + "learning_rate": 0.0006, + "loss": 4.239969253540039, + "step": 928 + }, + { + "epoch": 12.90869375273045, + "grad_norm": 0.22510501742362976, + "learning_rate": 0.0006, + "loss": 4.192750930786133, + "step": 929 + }, + { + "epoch": 12.922673656618612, + "grad_norm": 0.22887611389160156, + "learning_rate": 0.0006, + "loss": 4.264463424682617, + "step": 930 + }, + { + "epoch": 12.936653560506771, + "grad_norm": 0.22195978462696075, + "learning_rate": 0.0006, + "loss": 4.205256938934326, + "step": 931 + }, + { + "epoch": 12.950633464394933, + "grad_norm": 0.23184578120708466, + "learning_rate": 0.0006, + "loss": 4.214578628540039, + "step": 932 + }, + { + "epoch": 12.964613368283093, + "grad_norm": 0.2186676561832428, + "learning_rate": 0.0006, + "loss": 4.227711200714111, + "step": 933 + }, + { + "epoch": 12.978593272171254, + "grad_norm": 0.2160426527261734, + "learning_rate": 0.0006, + "loss": 4.221796989440918, + "step": 934 + }, + { + "epoch": 12.992573176059414, + "grad_norm": 0.21562792360782623, + "learning_rate": 0.0006, + "loss": 4.21957540512085, + "step": 935 + }, + { + "epoch": 13.0, + "grad_norm": 0.22538058459758759, + "learning_rate": 0.0006, + "loss": 4.2353973388671875, + "step": 936 + }, + { + "epoch": 13.0, + "eval_loss": 4.426600933074951, + "eval_runtime": 44.8138, + "eval_samples_per_second": 54.492, + "eval_steps_per_second": 3.414, + "step": 936 + }, + { + "epoch": 13.013979903888162, + "grad_norm": 0.24888049066066742, + "learning_rate": 0.0006, + "loss": 4.18648624420166, + "step": 937 + }, + { + "epoch": 13.027959807776321, + "grad_norm": 0.28330180048942566, + "learning_rate": 0.0006, + "loss": 4.188892364501953, + "step": 938 + }, + { + "epoch": 13.041939711664483, + "grad_norm": 0.31152188777923584, + "learning_rate": 0.0006, + "loss": 4.2053399085998535, + "step": 939 + }, + { + "epoch": 13.055919615552643, + "grad_norm": 0.2842433452606201, + "learning_rate": 0.0006, + "loss": 4.191902160644531, + "step": 940 + }, + { + "epoch": 13.069899519440805, + "grad_norm": 0.23664532601833344, + "learning_rate": 0.0006, + "loss": 4.1831865310668945, + "step": 941 + }, + { + "epoch": 13.083879423328964, + "grad_norm": 0.24204140901565552, + "learning_rate": 0.0006, + "loss": 4.202641487121582, + "step": 942 + }, + { + "epoch": 13.097859327217126, + "grad_norm": 0.235311359167099, + "learning_rate": 0.0006, + "loss": 4.174511909484863, + "step": 943 + }, + { + "epoch": 13.111839231105286, + "grad_norm": 0.27127715945243835, + "learning_rate": 0.0006, + "loss": 4.201844215393066, + "step": 944 + }, + { + "epoch": 13.125819134993447, + "grad_norm": 0.2722373604774475, + "learning_rate": 0.0006, + "loss": 4.157383918762207, + "step": 945 + }, + { + "epoch": 13.139799038881607, + "grad_norm": 0.25446659326553345, + "learning_rate": 0.0006, + "loss": 4.221236228942871, + "step": 946 + }, + { + "epoch": 13.153778942769769, + "grad_norm": 0.273017019033432, + "learning_rate": 0.0006, + "loss": 4.195512771606445, + "step": 947 + }, + { + "epoch": 13.167758846657929, + "grad_norm": 0.24766312539577484, + "learning_rate": 0.0006, + "loss": 4.220959663391113, + "step": 948 + }, + { + "epoch": 13.18173875054609, + "grad_norm": 0.24636317789554596, + "learning_rate": 0.0006, + "loss": 4.214302062988281, + "step": 949 + }, + { + "epoch": 13.19571865443425, + "grad_norm": 0.3177756667137146, + "learning_rate": 0.0006, + "loss": 4.213500022888184, + "step": 950 + }, + { + "epoch": 13.209698558322412, + "grad_norm": 0.44579195976257324, + "learning_rate": 0.0006, + "loss": 4.227644920349121, + "step": 951 + }, + { + "epoch": 13.223678462210572, + "grad_norm": 0.4217414855957031, + "learning_rate": 0.0006, + "loss": 4.180937767028809, + "step": 952 + }, + { + "epoch": 13.237658366098733, + "grad_norm": 0.30148059129714966, + "learning_rate": 0.0006, + "loss": 4.207760810852051, + "step": 953 + }, + { + "epoch": 13.251638269986893, + "grad_norm": 0.3192492127418518, + "learning_rate": 0.0006, + "loss": 4.197999000549316, + "step": 954 + }, + { + "epoch": 13.265618173875055, + "grad_norm": 0.37334588170051575, + "learning_rate": 0.0006, + "loss": 4.208001136779785, + "step": 955 + }, + { + "epoch": 13.279598077763215, + "grad_norm": 0.4059637784957886, + "learning_rate": 0.0006, + "loss": 4.211322784423828, + "step": 956 + }, + { + "epoch": 13.293577981651376, + "grad_norm": 0.3389599323272705, + "learning_rate": 0.0006, + "loss": 4.204404354095459, + "step": 957 + }, + { + "epoch": 13.307557885539538, + "grad_norm": 0.2675766050815582, + "learning_rate": 0.0006, + "loss": 4.245941162109375, + "step": 958 + }, + { + "epoch": 13.321537789427698, + "grad_norm": 0.2730264365673065, + "learning_rate": 0.0006, + "loss": 4.2221221923828125, + "step": 959 + }, + { + "epoch": 13.33551769331586, + "grad_norm": 0.26458224654197693, + "learning_rate": 0.0006, + "loss": 4.205596923828125, + "step": 960 + }, + { + "epoch": 13.349497597204019, + "grad_norm": 0.2872551381587982, + "learning_rate": 0.0006, + "loss": 4.196977615356445, + "step": 961 + }, + { + "epoch": 13.36347750109218, + "grad_norm": 0.2954796850681305, + "learning_rate": 0.0006, + "loss": 4.202796936035156, + "step": 962 + }, + { + "epoch": 13.37745740498034, + "grad_norm": 0.2619425654411316, + "learning_rate": 0.0006, + "loss": 4.196845054626465, + "step": 963 + }, + { + "epoch": 13.391437308868502, + "grad_norm": 0.30088478326797485, + "learning_rate": 0.0006, + "loss": 4.219697952270508, + "step": 964 + }, + { + "epoch": 13.405417212756662, + "grad_norm": 0.30388689041137695, + "learning_rate": 0.0006, + "loss": 4.187566757202148, + "step": 965 + }, + { + "epoch": 13.419397116644824, + "grad_norm": 0.27918127179145813, + "learning_rate": 0.0006, + "loss": 4.223600387573242, + "step": 966 + }, + { + "epoch": 13.433377020532983, + "grad_norm": 0.27634528279304504, + "learning_rate": 0.0006, + "loss": 4.165332317352295, + "step": 967 + }, + { + "epoch": 13.447356924421145, + "grad_norm": 0.28830021619796753, + "learning_rate": 0.0006, + "loss": 4.204029560089111, + "step": 968 + }, + { + "epoch": 13.461336828309305, + "grad_norm": 0.29220864176750183, + "learning_rate": 0.0006, + "loss": 4.218057155609131, + "step": 969 + }, + { + "epoch": 13.475316732197467, + "grad_norm": 0.3089624345302582, + "learning_rate": 0.0006, + "loss": 4.200654983520508, + "step": 970 + }, + { + "epoch": 13.489296636085626, + "grad_norm": 0.36479851603507996, + "learning_rate": 0.0006, + "loss": 4.182811737060547, + "step": 971 + }, + { + "epoch": 13.503276539973788, + "grad_norm": 0.37561097741127014, + "learning_rate": 0.0006, + "loss": 4.190266132354736, + "step": 972 + }, + { + "epoch": 13.517256443861948, + "grad_norm": 0.3263583183288574, + "learning_rate": 0.0006, + "loss": 4.214815616607666, + "step": 973 + }, + { + "epoch": 13.53123634775011, + "grad_norm": 0.21552999317646027, + "learning_rate": 0.0006, + "loss": 4.171380043029785, + "step": 974 + }, + { + "epoch": 13.54521625163827, + "grad_norm": 0.247328519821167, + "learning_rate": 0.0006, + "loss": 4.175377368927002, + "step": 975 + }, + { + "epoch": 13.55919615552643, + "grad_norm": 0.23740540444850922, + "learning_rate": 0.0006, + "loss": 4.212357997894287, + "step": 976 + }, + { + "epoch": 13.57317605941459, + "grad_norm": 0.21533876657485962, + "learning_rate": 0.0006, + "loss": 4.203285217285156, + "step": 977 + }, + { + "epoch": 13.587155963302752, + "grad_norm": 0.21462024748325348, + "learning_rate": 0.0006, + "loss": 4.178012371063232, + "step": 978 + }, + { + "epoch": 13.601135867190912, + "grad_norm": 0.2279169261455536, + "learning_rate": 0.0006, + "loss": 4.193912982940674, + "step": 979 + }, + { + "epoch": 13.615115771079074, + "grad_norm": 0.2202417552471161, + "learning_rate": 0.0006, + "loss": 4.167629718780518, + "step": 980 + }, + { + "epoch": 13.629095674967235, + "grad_norm": 0.20586472749710083, + "learning_rate": 0.0006, + "loss": 4.159290313720703, + "step": 981 + }, + { + "epoch": 13.643075578855395, + "grad_norm": 0.20200690627098083, + "learning_rate": 0.0006, + "loss": 4.210315227508545, + "step": 982 + }, + { + "epoch": 13.657055482743557, + "grad_norm": 0.21710257232189178, + "learning_rate": 0.0006, + "loss": 4.21730375289917, + "step": 983 + }, + { + "epoch": 13.671035386631717, + "grad_norm": 0.22058045864105225, + "learning_rate": 0.0006, + "loss": 4.1996073722839355, + "step": 984 + }, + { + "epoch": 13.685015290519878, + "grad_norm": 0.21549592912197113, + "learning_rate": 0.0006, + "loss": 4.209203720092773, + "step": 985 + }, + { + "epoch": 13.698995194408038, + "grad_norm": 0.22274717688560486, + "learning_rate": 0.0006, + "loss": 4.220660209655762, + "step": 986 + }, + { + "epoch": 13.7129750982962, + "grad_norm": 0.22791637480258942, + "learning_rate": 0.0006, + "loss": 4.158679962158203, + "step": 987 + }, + { + "epoch": 13.72695500218436, + "grad_norm": 0.216218963265419, + "learning_rate": 0.0006, + "loss": 4.188124656677246, + "step": 988 + }, + { + "epoch": 13.740934906072521, + "grad_norm": 0.19149383902549744, + "learning_rate": 0.0006, + "loss": 4.181729316711426, + "step": 989 + }, + { + "epoch": 13.754914809960681, + "grad_norm": 0.18964019417762756, + "learning_rate": 0.0006, + "loss": 4.184767246246338, + "step": 990 + }, + { + "epoch": 13.768894713848843, + "grad_norm": 0.1778000295162201, + "learning_rate": 0.0006, + "loss": 4.1802263259887695, + "step": 991 + }, + { + "epoch": 13.782874617737003, + "grad_norm": 0.18277616798877716, + "learning_rate": 0.0006, + "loss": 4.1657867431640625, + "step": 992 + }, + { + "epoch": 13.796854521625164, + "grad_norm": 0.18610034883022308, + "learning_rate": 0.0006, + "loss": 4.156744956970215, + "step": 993 + }, + { + "epoch": 13.810834425513324, + "grad_norm": 0.19332963228225708, + "learning_rate": 0.0006, + "loss": 4.143558502197266, + "step": 994 + }, + { + "epoch": 13.824814329401486, + "grad_norm": 0.19758112728595734, + "learning_rate": 0.0006, + "loss": 4.195793151855469, + "step": 995 + }, + { + "epoch": 13.838794233289645, + "grad_norm": 0.1933647245168686, + "learning_rate": 0.0006, + "loss": 4.169734954833984, + "step": 996 + }, + { + "epoch": 13.852774137177807, + "grad_norm": 0.2362028956413269, + "learning_rate": 0.0006, + "loss": 4.175025939941406, + "step": 997 + }, + { + "epoch": 13.866754041065967, + "grad_norm": 0.2465490996837616, + "learning_rate": 0.0006, + "loss": 4.173909664154053, + "step": 998 + }, + { + "epoch": 13.880733944954128, + "grad_norm": 0.23449952900409698, + "learning_rate": 0.0006, + "loss": 4.173429489135742, + "step": 999 + }, + { + "epoch": 13.89471384884229, + "grad_norm": 0.2282160222530365, + "learning_rate": 0.0006, + "loss": 4.158538341522217, + "step": 1000 + }, + { + "epoch": 13.90869375273045, + "grad_norm": 0.21066738665103912, + "learning_rate": 0.0006, + "loss": 4.171584129333496, + "step": 1001 + }, + { + "epoch": 13.922673656618612, + "grad_norm": 0.18787573277950287, + "learning_rate": 0.0006, + "loss": 4.1837544441223145, + "step": 1002 + }, + { + "epoch": 13.936653560506771, + "grad_norm": 0.2001059353351593, + "learning_rate": 0.0006, + "loss": 4.160369873046875, + "step": 1003 + }, + { + "epoch": 13.950633464394933, + "grad_norm": 0.21644988656044006, + "learning_rate": 0.0006, + "loss": 4.221372604370117, + "step": 1004 + }, + { + "epoch": 13.964613368283093, + "grad_norm": 0.22083887457847595, + "learning_rate": 0.0006, + "loss": 4.149261474609375, + "step": 1005 + }, + { + "epoch": 13.978593272171254, + "grad_norm": 0.2201409637928009, + "learning_rate": 0.0006, + "loss": 4.192010879516602, + "step": 1006 + }, + { + "epoch": 13.992573176059414, + "grad_norm": 0.18888601660728455, + "learning_rate": 0.0006, + "loss": 4.17539119720459, + "step": 1007 + }, + { + "epoch": 14.0, + "grad_norm": 0.2073872834444046, + "learning_rate": 0.0006, + "loss": 4.145265579223633, + "step": 1008 + }, + { + "epoch": 14.0, + "eval_loss": 4.36876106262207, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 1008 + }, + { + "epoch": 14.013979903888162, + "grad_norm": 0.20773135125637054, + "learning_rate": 0.0006, + "loss": 4.132615089416504, + "step": 1009 + }, + { + "epoch": 14.027959807776321, + "grad_norm": 0.22409620881080627, + "learning_rate": 0.0006, + "loss": 4.172839164733887, + "step": 1010 + }, + { + "epoch": 14.041939711664483, + "grad_norm": 0.24046066403388977, + "learning_rate": 0.0006, + "loss": 4.126678943634033, + "step": 1011 + }, + { + "epoch": 14.055919615552643, + "grad_norm": 0.29185160994529724, + "learning_rate": 0.0006, + "loss": 4.177952766418457, + "step": 1012 + }, + { + "epoch": 14.069899519440805, + "grad_norm": 0.2984033226966858, + "learning_rate": 0.0006, + "loss": 4.155030250549316, + "step": 1013 + }, + { + "epoch": 14.083879423328964, + "grad_norm": 0.30262473225593567, + "learning_rate": 0.0006, + "loss": 4.145394325256348, + "step": 1014 + }, + { + "epoch": 14.097859327217126, + "grad_norm": 0.3278133273124695, + "learning_rate": 0.0006, + "loss": 4.172739028930664, + "step": 1015 + }, + { + "epoch": 14.111839231105286, + "grad_norm": 0.3285452425479889, + "learning_rate": 0.0006, + "loss": 4.153196334838867, + "step": 1016 + }, + { + "epoch": 14.125819134993447, + "grad_norm": 0.33912697434425354, + "learning_rate": 0.0006, + "loss": 4.098162651062012, + "step": 1017 + }, + { + "epoch": 14.139799038881607, + "grad_norm": 0.32080814242362976, + "learning_rate": 0.0006, + "loss": 4.157135009765625, + "step": 1018 + }, + { + "epoch": 14.153778942769769, + "grad_norm": 0.31288477778434753, + "learning_rate": 0.0006, + "loss": 4.142683029174805, + "step": 1019 + }, + { + "epoch": 14.167758846657929, + "grad_norm": 0.350289523601532, + "learning_rate": 0.0006, + "loss": 4.134700775146484, + "step": 1020 + }, + { + "epoch": 14.18173875054609, + "grad_norm": 0.34274575114250183, + "learning_rate": 0.0006, + "loss": 4.1578569412231445, + "step": 1021 + }, + { + "epoch": 14.19571865443425, + "grad_norm": 0.2843035161495209, + "learning_rate": 0.0006, + "loss": 4.13760232925415, + "step": 1022 + }, + { + "epoch": 14.209698558322412, + "grad_norm": 0.28235161304473877, + "learning_rate": 0.0006, + "loss": 4.1492462158203125, + "step": 1023 + }, + { + "epoch": 14.223678462210572, + "grad_norm": 0.24407248198986053, + "learning_rate": 0.0006, + "loss": 4.144372463226318, + "step": 1024 + }, + { + "epoch": 14.237658366098733, + "grad_norm": 0.2489742934703827, + "learning_rate": 0.0006, + "loss": 4.137950897216797, + "step": 1025 + }, + { + "epoch": 14.251638269986893, + "grad_norm": 0.26035651564598083, + "learning_rate": 0.0006, + "loss": 4.144070625305176, + "step": 1026 + }, + { + "epoch": 14.265618173875055, + "grad_norm": 0.2726516127586365, + "learning_rate": 0.0006, + "loss": 4.145204067230225, + "step": 1027 + }, + { + "epoch": 14.279598077763215, + "grad_norm": 0.2723483443260193, + "learning_rate": 0.0006, + "loss": 4.118407249450684, + "step": 1028 + }, + { + "epoch": 14.293577981651376, + "grad_norm": 0.27476269006729126, + "learning_rate": 0.0006, + "loss": 4.111325263977051, + "step": 1029 + }, + { + "epoch": 14.307557885539538, + "grad_norm": 0.26202502846717834, + "learning_rate": 0.0006, + "loss": 4.122248649597168, + "step": 1030 + }, + { + "epoch": 14.321537789427698, + "grad_norm": 0.2472032904624939, + "learning_rate": 0.0006, + "loss": 4.157790184020996, + "step": 1031 + }, + { + "epoch": 14.33551769331586, + "grad_norm": 0.2518343925476074, + "learning_rate": 0.0006, + "loss": 4.109132766723633, + "step": 1032 + }, + { + "epoch": 14.349497597204019, + "grad_norm": 0.2652401924133301, + "learning_rate": 0.0006, + "loss": 4.144079685211182, + "step": 1033 + }, + { + "epoch": 14.36347750109218, + "grad_norm": 0.2356770783662796, + "learning_rate": 0.0006, + "loss": 4.128426551818848, + "step": 1034 + }, + { + "epoch": 14.37745740498034, + "grad_norm": 0.2164214551448822, + "learning_rate": 0.0006, + "loss": 4.1644392013549805, + "step": 1035 + }, + { + "epoch": 14.391437308868502, + "grad_norm": 0.22383111715316772, + "learning_rate": 0.0006, + "loss": 4.165862083435059, + "step": 1036 + }, + { + "epoch": 14.405417212756662, + "grad_norm": 0.23152419924736023, + "learning_rate": 0.0006, + "loss": 4.140036582946777, + "step": 1037 + }, + { + "epoch": 14.419397116644824, + "grad_norm": 0.2387741357088089, + "learning_rate": 0.0006, + "loss": 4.130461692810059, + "step": 1038 + }, + { + "epoch": 14.433377020532983, + "grad_norm": 0.24018129706382751, + "learning_rate": 0.0006, + "loss": 4.148482322692871, + "step": 1039 + }, + { + "epoch": 14.447356924421145, + "grad_norm": 0.25487351417541504, + "learning_rate": 0.0006, + "loss": 4.158121109008789, + "step": 1040 + }, + { + "epoch": 14.461336828309305, + "grad_norm": 0.28220096230506897, + "learning_rate": 0.0006, + "loss": 4.160198211669922, + "step": 1041 + }, + { + "epoch": 14.475316732197467, + "grad_norm": 0.2574434280395508, + "learning_rate": 0.0006, + "loss": 4.168512344360352, + "step": 1042 + }, + { + "epoch": 14.489296636085626, + "grad_norm": 0.22569820284843445, + "learning_rate": 0.0006, + "loss": 4.1595001220703125, + "step": 1043 + }, + { + "epoch": 14.503276539973788, + "grad_norm": 0.2473423182964325, + "learning_rate": 0.0006, + "loss": 4.084580898284912, + "step": 1044 + }, + { + "epoch": 14.517256443861948, + "grad_norm": 0.24281060695648193, + "learning_rate": 0.0006, + "loss": 4.139714241027832, + "step": 1045 + }, + { + "epoch": 14.53123634775011, + "grad_norm": 0.24691344797611237, + "learning_rate": 0.0006, + "loss": 4.115398406982422, + "step": 1046 + }, + { + "epoch": 14.54521625163827, + "grad_norm": 0.2583645284175873, + "learning_rate": 0.0006, + "loss": 4.142148494720459, + "step": 1047 + }, + { + "epoch": 14.55919615552643, + "grad_norm": 0.23258574306964874, + "learning_rate": 0.0006, + "loss": 4.16251277923584, + "step": 1048 + }, + { + "epoch": 14.57317605941459, + "grad_norm": 0.22103039920330048, + "learning_rate": 0.0006, + "loss": 4.1308441162109375, + "step": 1049 + }, + { + "epoch": 14.587155963302752, + "grad_norm": 0.23713579773902893, + "learning_rate": 0.0006, + "loss": 4.1565985679626465, + "step": 1050 + }, + { + "epoch": 14.601135867190912, + "grad_norm": 0.24406634271144867, + "learning_rate": 0.0006, + "loss": 4.14628267288208, + "step": 1051 + }, + { + "epoch": 14.615115771079074, + "grad_norm": 0.26821228861808777, + "learning_rate": 0.0006, + "loss": 4.138063430786133, + "step": 1052 + }, + { + "epoch": 14.629095674967235, + "grad_norm": 0.25483864545822144, + "learning_rate": 0.0006, + "loss": 4.1311163902282715, + "step": 1053 + }, + { + "epoch": 14.643075578855395, + "grad_norm": 0.23937982320785522, + "learning_rate": 0.0006, + "loss": 4.150882244110107, + "step": 1054 + }, + { + "epoch": 14.657055482743557, + "grad_norm": 0.21896475553512573, + "learning_rate": 0.0006, + "loss": 4.114015102386475, + "step": 1055 + }, + { + "epoch": 14.671035386631717, + "grad_norm": 0.20821231603622437, + "learning_rate": 0.0006, + "loss": 4.139034271240234, + "step": 1056 + }, + { + "epoch": 14.685015290519878, + "grad_norm": 0.1978551596403122, + "learning_rate": 0.0006, + "loss": 4.1810503005981445, + "step": 1057 + }, + { + "epoch": 14.698995194408038, + "grad_norm": 0.1945771872997284, + "learning_rate": 0.0006, + "loss": 4.120734214782715, + "step": 1058 + }, + { + "epoch": 14.7129750982962, + "grad_norm": 0.19518673419952393, + "learning_rate": 0.0006, + "loss": 4.14264440536499, + "step": 1059 + }, + { + "epoch": 14.72695500218436, + "grad_norm": 0.202596515417099, + "learning_rate": 0.0006, + "loss": 4.151649475097656, + "step": 1060 + }, + { + "epoch": 14.740934906072521, + "grad_norm": 0.1904762089252472, + "learning_rate": 0.0006, + "loss": 4.127899169921875, + "step": 1061 + }, + { + "epoch": 14.754914809960681, + "grad_norm": 0.20685508847236633, + "learning_rate": 0.0006, + "loss": 4.093445777893066, + "step": 1062 + }, + { + "epoch": 14.768894713848843, + "grad_norm": 0.22678329050540924, + "learning_rate": 0.0006, + "loss": 4.132084369659424, + "step": 1063 + }, + { + "epoch": 14.782874617737003, + "grad_norm": 0.24631841480731964, + "learning_rate": 0.0006, + "loss": 4.154788970947266, + "step": 1064 + }, + { + "epoch": 14.796854521625164, + "grad_norm": 0.24445782601833344, + "learning_rate": 0.0006, + "loss": 4.144735336303711, + "step": 1065 + }, + { + "epoch": 14.810834425513324, + "grad_norm": 0.22330640256404877, + "learning_rate": 0.0006, + "loss": 4.159893989562988, + "step": 1066 + }, + { + "epoch": 14.824814329401486, + "grad_norm": 0.22422967851161957, + "learning_rate": 0.0006, + "loss": 4.104874610900879, + "step": 1067 + }, + { + "epoch": 14.838794233289645, + "grad_norm": 0.24583931267261505, + "learning_rate": 0.0006, + "loss": 4.139403820037842, + "step": 1068 + }, + { + "epoch": 14.852774137177807, + "grad_norm": 0.2917379140853882, + "learning_rate": 0.0006, + "loss": 4.168988227844238, + "step": 1069 + }, + { + "epoch": 14.866754041065967, + "grad_norm": 0.3171777129173279, + "learning_rate": 0.0006, + "loss": 4.131263732910156, + "step": 1070 + }, + { + "epoch": 14.880733944954128, + "grad_norm": 0.3039591312408447, + "learning_rate": 0.0006, + "loss": 4.149853706359863, + "step": 1071 + }, + { + "epoch": 14.89471384884229, + "grad_norm": 0.2690650522708893, + "learning_rate": 0.0006, + "loss": 4.154787540435791, + "step": 1072 + }, + { + "epoch": 14.90869375273045, + "grad_norm": 0.28683212399482727, + "learning_rate": 0.0006, + "loss": 4.12751579284668, + "step": 1073 + }, + { + "epoch": 14.922673656618612, + "grad_norm": 0.30022913217544556, + "learning_rate": 0.0006, + "loss": 4.141940116882324, + "step": 1074 + }, + { + "epoch": 14.936653560506771, + "grad_norm": 0.3312259316444397, + "learning_rate": 0.0006, + "loss": 4.141905784606934, + "step": 1075 + }, + { + "epoch": 14.950633464394933, + "grad_norm": 0.31159237027168274, + "learning_rate": 0.0006, + "loss": 4.160192966461182, + "step": 1076 + }, + { + "epoch": 14.964613368283093, + "grad_norm": 0.30093592405319214, + "learning_rate": 0.0006, + "loss": 4.1085076332092285, + "step": 1077 + }, + { + "epoch": 14.978593272171254, + "grad_norm": 0.2728535830974579, + "learning_rate": 0.0006, + "loss": 4.156959056854248, + "step": 1078 + }, + { + "epoch": 14.992573176059414, + "grad_norm": 0.24766813218593597, + "learning_rate": 0.0006, + "loss": 4.113999843597412, + "step": 1079 + }, + { + "epoch": 15.0, + "grad_norm": 0.2538154721260071, + "learning_rate": 0.0006, + "loss": 4.147134780883789, + "step": 1080 + }, + { + "epoch": 15.0, + "eval_loss": 4.323154926300049, + "eval_runtime": 44.8813, + "eval_samples_per_second": 54.41, + "eval_steps_per_second": 3.409, + "step": 1080 + }, + { + "epoch": 15.013979903888162, + "grad_norm": 0.22535280883312225, + "learning_rate": 0.0006, + "loss": 4.112179756164551, + "step": 1081 + }, + { + "epoch": 15.027959807776321, + "grad_norm": 0.24340929090976715, + "learning_rate": 0.0006, + "loss": 4.080923080444336, + "step": 1082 + }, + { + "epoch": 15.041939711664483, + "grad_norm": 0.23159465193748474, + "learning_rate": 0.0006, + "loss": 4.097067356109619, + "step": 1083 + }, + { + "epoch": 15.055919615552643, + "grad_norm": 0.22674769163131714, + "learning_rate": 0.0006, + "loss": 4.118601322174072, + "step": 1084 + }, + { + "epoch": 15.069899519440805, + "grad_norm": 0.2524292469024658, + "learning_rate": 0.0006, + "loss": 4.101109504699707, + "step": 1085 + }, + { + "epoch": 15.083879423328964, + "grad_norm": 0.2505405843257904, + "learning_rate": 0.0006, + "loss": 4.121405601501465, + "step": 1086 + }, + { + "epoch": 15.097859327217126, + "grad_norm": 0.2557983696460724, + "learning_rate": 0.0006, + "loss": 4.1063947677612305, + "step": 1087 + }, + { + "epoch": 15.111839231105286, + "grad_norm": 0.24452129006385803, + "learning_rate": 0.0006, + "loss": 4.086133003234863, + "step": 1088 + }, + { + "epoch": 15.125819134993447, + "grad_norm": 0.25821781158447266, + "learning_rate": 0.0006, + "loss": 4.076262950897217, + "step": 1089 + }, + { + "epoch": 15.139799038881607, + "grad_norm": 0.23650537431240082, + "learning_rate": 0.0006, + "loss": 4.101842880249023, + "step": 1090 + }, + { + "epoch": 15.153778942769769, + "grad_norm": 0.2206192910671234, + "learning_rate": 0.0006, + "loss": 4.11027193069458, + "step": 1091 + }, + { + "epoch": 15.167758846657929, + "grad_norm": 0.21843163669109344, + "learning_rate": 0.0006, + "loss": 4.098437309265137, + "step": 1092 + }, + { + "epoch": 15.18173875054609, + "grad_norm": 0.2528176009654999, + "learning_rate": 0.0006, + "loss": 4.108713150024414, + "step": 1093 + }, + { + "epoch": 15.19571865443425, + "grad_norm": 0.26697206497192383, + "learning_rate": 0.0006, + "loss": 4.113210201263428, + "step": 1094 + }, + { + "epoch": 15.209698558322412, + "grad_norm": 0.26480963826179504, + "learning_rate": 0.0006, + "loss": 4.1103620529174805, + "step": 1095 + }, + { + "epoch": 15.223678462210572, + "grad_norm": 0.24887347221374512, + "learning_rate": 0.0006, + "loss": 4.103529930114746, + "step": 1096 + }, + { + "epoch": 15.237658366098733, + "grad_norm": 0.2344668060541153, + "learning_rate": 0.0006, + "loss": 4.129784107208252, + "step": 1097 + }, + { + "epoch": 15.251638269986893, + "grad_norm": 0.22639742493629456, + "learning_rate": 0.0006, + "loss": 4.113495349884033, + "step": 1098 + }, + { + "epoch": 15.265618173875055, + "grad_norm": 0.22466333210468292, + "learning_rate": 0.0006, + "loss": 4.102309703826904, + "step": 1099 + }, + { + "epoch": 15.279598077763215, + "grad_norm": 0.25135037302970886, + "learning_rate": 0.0006, + "loss": 4.117668628692627, + "step": 1100 + }, + { + "epoch": 15.293577981651376, + "grad_norm": 0.2347089946269989, + "learning_rate": 0.0006, + "loss": 4.086637496948242, + "step": 1101 + }, + { + "epoch": 15.307557885539538, + "grad_norm": 0.2347242832183838, + "learning_rate": 0.0006, + "loss": 4.098714828491211, + "step": 1102 + }, + { + "epoch": 15.321537789427698, + "grad_norm": 0.23990283906459808, + "learning_rate": 0.0006, + "loss": 4.079837799072266, + "step": 1103 + }, + { + "epoch": 15.33551769331586, + "grad_norm": 0.22366675734519958, + "learning_rate": 0.0006, + "loss": 4.108136177062988, + "step": 1104 + }, + { + "epoch": 15.349497597204019, + "grad_norm": 0.21823780238628387, + "learning_rate": 0.0006, + "loss": 4.10054349899292, + "step": 1105 + }, + { + "epoch": 15.36347750109218, + "grad_norm": 0.23059198260307312, + "learning_rate": 0.0006, + "loss": 4.108620643615723, + "step": 1106 + }, + { + "epoch": 15.37745740498034, + "grad_norm": 0.2313755601644516, + "learning_rate": 0.0006, + "loss": 4.088565826416016, + "step": 1107 + }, + { + "epoch": 15.391437308868502, + "grad_norm": 0.2546829283237457, + "learning_rate": 0.0006, + "loss": 4.104948043823242, + "step": 1108 + }, + { + "epoch": 15.405417212756662, + "grad_norm": 0.23666726052761078, + "learning_rate": 0.0006, + "loss": 4.111965179443359, + "step": 1109 + }, + { + "epoch": 15.419397116644824, + "grad_norm": 0.21971021592617035, + "learning_rate": 0.0006, + "loss": 4.097846984863281, + "step": 1110 + }, + { + "epoch": 15.433377020532983, + "grad_norm": 0.20951911807060242, + "learning_rate": 0.0006, + "loss": 4.110099792480469, + "step": 1111 + }, + { + "epoch": 15.447356924421145, + "grad_norm": 0.19590918719768524, + "learning_rate": 0.0006, + "loss": 4.101154327392578, + "step": 1112 + }, + { + "epoch": 15.461336828309305, + "grad_norm": 0.21048946678638458, + "learning_rate": 0.0006, + "loss": 4.0986127853393555, + "step": 1113 + }, + { + "epoch": 15.475316732197467, + "grad_norm": 0.21423374116420746, + "learning_rate": 0.0006, + "loss": 4.082328796386719, + "step": 1114 + }, + { + "epoch": 15.489296636085626, + "grad_norm": 0.227146714925766, + "learning_rate": 0.0006, + "loss": 4.105281829833984, + "step": 1115 + }, + { + "epoch": 15.503276539973788, + "grad_norm": 0.2079153060913086, + "learning_rate": 0.0006, + "loss": 4.100836753845215, + "step": 1116 + }, + { + "epoch": 15.517256443861948, + "grad_norm": 0.21084675192832947, + "learning_rate": 0.0006, + "loss": 4.0934343338012695, + "step": 1117 + }, + { + "epoch": 15.53123634775011, + "grad_norm": 0.23863616585731506, + "learning_rate": 0.0006, + "loss": 4.101540565490723, + "step": 1118 + }, + { + "epoch": 15.54521625163827, + "grad_norm": 0.2518490254878998, + "learning_rate": 0.0006, + "loss": 4.12303352355957, + "step": 1119 + }, + { + "epoch": 15.55919615552643, + "grad_norm": 0.24282905459403992, + "learning_rate": 0.0006, + "loss": 4.080670356750488, + "step": 1120 + }, + { + "epoch": 15.57317605941459, + "grad_norm": 0.24171605706214905, + "learning_rate": 0.0006, + "loss": 4.117938041687012, + "step": 1121 + }, + { + "epoch": 15.587155963302752, + "grad_norm": 0.28453412652015686, + "learning_rate": 0.0006, + "loss": 4.080114364624023, + "step": 1122 + }, + { + "epoch": 15.601135867190912, + "grad_norm": 0.30322617292404175, + "learning_rate": 0.0006, + "loss": 4.079695701599121, + "step": 1123 + }, + { + "epoch": 15.615115771079074, + "grad_norm": 0.2657633125782013, + "learning_rate": 0.0006, + "loss": 4.0916290283203125, + "step": 1124 + }, + { + "epoch": 15.629095674967235, + "grad_norm": 0.2467080056667328, + "learning_rate": 0.0006, + "loss": 4.095594882965088, + "step": 1125 + }, + { + "epoch": 15.643075578855395, + "grad_norm": 0.21767394244670868, + "learning_rate": 0.0006, + "loss": 4.079174041748047, + "step": 1126 + }, + { + "epoch": 15.657055482743557, + "grad_norm": 0.2088327705860138, + "learning_rate": 0.0006, + "loss": 4.060707092285156, + "step": 1127 + }, + { + "epoch": 15.671035386631717, + "grad_norm": 0.1921205073595047, + "learning_rate": 0.0006, + "loss": 4.073911666870117, + "step": 1128 + }, + { + "epoch": 15.685015290519878, + "grad_norm": 0.209339901804924, + "learning_rate": 0.0006, + "loss": 4.089954376220703, + "step": 1129 + }, + { + "epoch": 15.698995194408038, + "grad_norm": 0.23513881862163544, + "learning_rate": 0.0006, + "loss": 4.084906578063965, + "step": 1130 + }, + { + "epoch": 15.7129750982962, + "grad_norm": 0.26140275597572327, + "learning_rate": 0.0006, + "loss": 4.086570739746094, + "step": 1131 + }, + { + "epoch": 15.72695500218436, + "grad_norm": 0.290431946516037, + "learning_rate": 0.0006, + "loss": 4.071229457855225, + "step": 1132 + }, + { + "epoch": 15.740934906072521, + "grad_norm": 0.3061376214027405, + "learning_rate": 0.0006, + "loss": 4.103148460388184, + "step": 1133 + }, + { + "epoch": 15.754914809960681, + "grad_norm": 0.26312482357025146, + "learning_rate": 0.0006, + "loss": 4.088448524475098, + "step": 1134 + }, + { + "epoch": 15.768894713848843, + "grad_norm": 0.22474883496761322, + "learning_rate": 0.0006, + "loss": 4.091766834259033, + "step": 1135 + }, + { + "epoch": 15.782874617737003, + "grad_norm": 0.2341146171092987, + "learning_rate": 0.0006, + "loss": 4.1222758293151855, + "step": 1136 + }, + { + "epoch": 15.796854521625164, + "grad_norm": 0.23556149005889893, + "learning_rate": 0.0006, + "loss": 4.094954013824463, + "step": 1137 + }, + { + "epoch": 15.810834425513324, + "grad_norm": 0.263315349817276, + "learning_rate": 0.0006, + "loss": 4.1065473556518555, + "step": 1138 + }, + { + "epoch": 15.824814329401486, + "grad_norm": 0.2700869143009186, + "learning_rate": 0.0006, + "loss": 4.0890045166015625, + "step": 1139 + }, + { + "epoch": 15.838794233289645, + "grad_norm": 0.28697484731674194, + "learning_rate": 0.0006, + "loss": 4.092496395111084, + "step": 1140 + }, + { + "epoch": 15.852774137177807, + "grad_norm": 0.2824092507362366, + "learning_rate": 0.0006, + "loss": 4.079615592956543, + "step": 1141 + }, + { + "epoch": 15.866754041065967, + "grad_norm": 0.24547280371189117, + "learning_rate": 0.0006, + "loss": 4.089683532714844, + "step": 1142 + }, + { + "epoch": 15.880733944954128, + "grad_norm": 0.23653888702392578, + "learning_rate": 0.0006, + "loss": 4.067309379577637, + "step": 1143 + }, + { + "epoch": 15.89471384884229, + "grad_norm": 0.23784421384334564, + "learning_rate": 0.0006, + "loss": 4.09156608581543, + "step": 1144 + }, + { + "epoch": 15.90869375273045, + "grad_norm": 0.22753281891345978, + "learning_rate": 0.0006, + "loss": 4.095428466796875, + "step": 1145 + }, + { + "epoch": 15.922673656618612, + "grad_norm": 0.2464212030172348, + "learning_rate": 0.0006, + "loss": 4.1036376953125, + "step": 1146 + }, + { + "epoch": 15.936653560506771, + "grad_norm": 0.25531601905822754, + "learning_rate": 0.0006, + "loss": 4.073996543884277, + "step": 1147 + }, + { + "epoch": 15.950633464394933, + "grad_norm": 0.24145905673503876, + "learning_rate": 0.0006, + "loss": 4.094479560852051, + "step": 1148 + }, + { + "epoch": 15.964613368283093, + "grad_norm": 0.24274317920207977, + "learning_rate": 0.0006, + "loss": 4.101981163024902, + "step": 1149 + }, + { + "epoch": 15.978593272171254, + "grad_norm": 0.2350679188966751, + "learning_rate": 0.0006, + "loss": 4.057965278625488, + "step": 1150 + }, + { + "epoch": 15.992573176059414, + "grad_norm": 0.24072253704071045, + "learning_rate": 0.0006, + "loss": 4.020050048828125, + "step": 1151 + }, + { + "epoch": 16.0, + "grad_norm": 0.253978967666626, + "learning_rate": 0.0006, + "loss": 4.061928749084473, + "step": 1152 + }, + { + "epoch": 16.0, + "eval_loss": 4.270665645599365, + "eval_runtime": 44.5063, + "eval_samples_per_second": 54.869, + "eval_steps_per_second": 3.438, + "step": 1152 + }, + { + "epoch": 16.01397990388816, + "grad_norm": 0.3265204131603241, + "learning_rate": 0.0006, + "loss": 4.059116363525391, + "step": 1153 + }, + { + "epoch": 16.027959807776323, + "grad_norm": 0.34139737486839294, + "learning_rate": 0.0006, + "loss": 4.062219619750977, + "step": 1154 + }, + { + "epoch": 16.041939711664483, + "grad_norm": 0.2849949598312378, + "learning_rate": 0.0006, + "loss": 4.032323837280273, + "step": 1155 + }, + { + "epoch": 16.055919615552643, + "grad_norm": 0.25031402707099915, + "learning_rate": 0.0006, + "loss": 4.075527191162109, + "step": 1156 + }, + { + "epoch": 16.069899519440803, + "grad_norm": 0.25207436084747314, + "learning_rate": 0.0006, + "loss": 4.0883097648620605, + "step": 1157 + }, + { + "epoch": 16.083879423328966, + "grad_norm": 0.28677356243133545, + "learning_rate": 0.0006, + "loss": 4.040797233581543, + "step": 1158 + }, + { + "epoch": 16.097859327217126, + "grad_norm": 0.30778825283050537, + "learning_rate": 0.0006, + "loss": 4.051504135131836, + "step": 1159 + }, + { + "epoch": 16.111839231105286, + "grad_norm": 0.3136911988258362, + "learning_rate": 0.0006, + "loss": 4.045449256896973, + "step": 1160 + }, + { + "epoch": 16.125819134993446, + "grad_norm": 0.34384530782699585, + "learning_rate": 0.0006, + "loss": 4.069897651672363, + "step": 1161 + }, + { + "epoch": 16.13979903888161, + "grad_norm": 0.3074268400669098, + "learning_rate": 0.0006, + "loss": 4.0621137619018555, + "step": 1162 + }, + { + "epoch": 16.15377894276977, + "grad_norm": 0.33090949058532715, + "learning_rate": 0.0006, + "loss": 4.084089279174805, + "step": 1163 + }, + { + "epoch": 16.16775884665793, + "grad_norm": 0.26358580589294434, + "learning_rate": 0.0006, + "loss": 4.066563606262207, + "step": 1164 + }, + { + "epoch": 16.18173875054609, + "grad_norm": 0.25586041808128357, + "learning_rate": 0.0006, + "loss": 4.08109188079834, + "step": 1165 + }, + { + "epoch": 16.195718654434252, + "grad_norm": 0.2966184616088867, + "learning_rate": 0.0006, + "loss": 4.039186477661133, + "step": 1166 + }, + { + "epoch": 16.209698558322412, + "grad_norm": 0.3064924478530884, + "learning_rate": 0.0006, + "loss": 4.08139705657959, + "step": 1167 + }, + { + "epoch": 16.22367846221057, + "grad_norm": 0.28671345114707947, + "learning_rate": 0.0006, + "loss": 4.04637336730957, + "step": 1168 + }, + { + "epoch": 16.23765836609873, + "grad_norm": 0.26209691166877747, + "learning_rate": 0.0006, + "loss": 4.052768707275391, + "step": 1169 + }, + { + "epoch": 16.251638269986895, + "grad_norm": 0.2758907079696655, + "learning_rate": 0.0006, + "loss": 4.064321517944336, + "step": 1170 + }, + { + "epoch": 16.265618173875055, + "grad_norm": 0.25961801409721375, + "learning_rate": 0.0006, + "loss": 4.057299613952637, + "step": 1171 + }, + { + "epoch": 16.279598077763215, + "grad_norm": 0.2513751685619354, + "learning_rate": 0.0006, + "loss": 4.064148902893066, + "step": 1172 + }, + { + "epoch": 16.293577981651374, + "grad_norm": 0.23920276761054993, + "learning_rate": 0.0006, + "loss": 4.101890563964844, + "step": 1173 + }, + { + "epoch": 16.307557885539538, + "grad_norm": 0.22746537625789642, + "learning_rate": 0.0006, + "loss": 4.086627006530762, + "step": 1174 + }, + { + "epoch": 16.321537789427698, + "grad_norm": 0.22633525729179382, + "learning_rate": 0.0006, + "loss": 4.04669189453125, + "step": 1175 + }, + { + "epoch": 16.335517693315857, + "grad_norm": 0.2654891610145569, + "learning_rate": 0.0006, + "loss": 4.086793422698975, + "step": 1176 + }, + { + "epoch": 16.34949759720402, + "grad_norm": 0.2872653007507324, + "learning_rate": 0.0006, + "loss": 4.077983856201172, + "step": 1177 + }, + { + "epoch": 16.36347750109218, + "grad_norm": 0.25726038217544556, + "learning_rate": 0.0006, + "loss": 4.066011428833008, + "step": 1178 + }, + { + "epoch": 16.37745740498034, + "grad_norm": 0.2592027485370636, + "learning_rate": 0.0006, + "loss": 4.0482988357543945, + "step": 1179 + }, + { + "epoch": 16.3914373088685, + "grad_norm": 0.2768886685371399, + "learning_rate": 0.0006, + "loss": 4.065151214599609, + "step": 1180 + }, + { + "epoch": 16.405417212756664, + "grad_norm": 0.2956002652645111, + "learning_rate": 0.0006, + "loss": 4.037791728973389, + "step": 1181 + }, + { + "epoch": 16.419397116644824, + "grad_norm": 0.3092120885848999, + "learning_rate": 0.0006, + "loss": 4.062164306640625, + "step": 1182 + }, + { + "epoch": 16.433377020532983, + "grad_norm": 0.29516810178756714, + "learning_rate": 0.0006, + "loss": 4.025505065917969, + "step": 1183 + }, + { + "epoch": 16.447356924421143, + "grad_norm": 0.2640177607536316, + "learning_rate": 0.0006, + "loss": 4.060182571411133, + "step": 1184 + }, + { + "epoch": 16.461336828309307, + "grad_norm": 0.2444908320903778, + "learning_rate": 0.0006, + "loss": 4.046144962310791, + "step": 1185 + }, + { + "epoch": 16.475316732197467, + "grad_norm": 0.23190705478191376, + "learning_rate": 0.0006, + "loss": 4.075569152832031, + "step": 1186 + }, + { + "epoch": 16.489296636085626, + "grad_norm": 0.2383626103401184, + "learning_rate": 0.0006, + "loss": 4.088897705078125, + "step": 1187 + }, + { + "epoch": 16.503276539973786, + "grad_norm": 0.20688803493976593, + "learning_rate": 0.0006, + "loss": 4.064517974853516, + "step": 1188 + }, + { + "epoch": 16.51725644386195, + "grad_norm": 0.22610054910182953, + "learning_rate": 0.0006, + "loss": 4.04502010345459, + "step": 1189 + }, + { + "epoch": 16.53123634775011, + "grad_norm": 0.2014893889427185, + "learning_rate": 0.0006, + "loss": 4.058279514312744, + "step": 1190 + }, + { + "epoch": 16.54521625163827, + "grad_norm": 0.21459777653217316, + "learning_rate": 0.0006, + "loss": 4.066389083862305, + "step": 1191 + }, + { + "epoch": 16.55919615552643, + "grad_norm": 0.22909940779209137, + "learning_rate": 0.0006, + "loss": 4.0557966232299805, + "step": 1192 + }, + { + "epoch": 16.573176059414592, + "grad_norm": 0.20039083063602448, + "learning_rate": 0.0006, + "loss": 4.092845916748047, + "step": 1193 + }, + { + "epoch": 16.587155963302752, + "grad_norm": 0.22651726007461548, + "learning_rate": 0.0006, + "loss": 4.034615516662598, + "step": 1194 + }, + { + "epoch": 16.601135867190912, + "grad_norm": 0.21901755034923553, + "learning_rate": 0.0006, + "loss": 4.035619735717773, + "step": 1195 + }, + { + "epoch": 16.615115771079076, + "grad_norm": 0.22930841147899628, + "learning_rate": 0.0006, + "loss": 4.080800533294678, + "step": 1196 + }, + { + "epoch": 16.629095674967235, + "grad_norm": 0.212818443775177, + "learning_rate": 0.0006, + "loss": 4.030189514160156, + "step": 1197 + }, + { + "epoch": 16.643075578855395, + "grad_norm": 0.2370826154947281, + "learning_rate": 0.0006, + "loss": 4.062643527984619, + "step": 1198 + }, + { + "epoch": 16.657055482743555, + "grad_norm": 0.24786995351314545, + "learning_rate": 0.0006, + "loss": 4.031761169433594, + "step": 1199 + }, + { + "epoch": 16.67103538663172, + "grad_norm": 0.2305847704410553, + "learning_rate": 0.0006, + "loss": 4.083752155303955, + "step": 1200 + }, + { + "epoch": 16.68501529051988, + "grad_norm": 0.23336584866046906, + "learning_rate": 0.0006, + "loss": 4.079145431518555, + "step": 1201 + }, + { + "epoch": 16.698995194408038, + "grad_norm": 0.23976293206214905, + "learning_rate": 0.0006, + "loss": 4.020473957061768, + "step": 1202 + }, + { + "epoch": 16.712975098296198, + "grad_norm": 0.222761869430542, + "learning_rate": 0.0006, + "loss": 4.065582752227783, + "step": 1203 + }, + { + "epoch": 16.72695500218436, + "grad_norm": 0.23725618422031403, + "learning_rate": 0.0006, + "loss": 4.0263776779174805, + "step": 1204 + }, + { + "epoch": 16.74093490607252, + "grad_norm": 0.23873984813690186, + "learning_rate": 0.0006, + "loss": 4.053092956542969, + "step": 1205 + }, + { + "epoch": 16.75491480996068, + "grad_norm": 0.21043002605438232, + "learning_rate": 0.0006, + "loss": 4.063965797424316, + "step": 1206 + }, + { + "epoch": 16.76889471384884, + "grad_norm": 0.19863522052764893, + "learning_rate": 0.0006, + "loss": 4.061187267303467, + "step": 1207 + }, + { + "epoch": 16.782874617737004, + "grad_norm": 0.1953752487897873, + "learning_rate": 0.0006, + "loss": 4.046016693115234, + "step": 1208 + }, + { + "epoch": 16.796854521625164, + "grad_norm": 0.2130361795425415, + "learning_rate": 0.0006, + "loss": 4.066933631896973, + "step": 1209 + }, + { + "epoch": 16.810834425513324, + "grad_norm": 0.19598130881786346, + "learning_rate": 0.0006, + "loss": 4.071558952331543, + "step": 1210 + }, + { + "epoch": 16.824814329401484, + "grad_norm": 0.20331116020679474, + "learning_rate": 0.0006, + "loss": 4.088632106781006, + "step": 1211 + }, + { + "epoch": 16.838794233289647, + "grad_norm": 0.20423150062561035, + "learning_rate": 0.0006, + "loss": 4.032224655151367, + "step": 1212 + }, + { + "epoch": 16.852774137177807, + "grad_norm": 0.2401197850704193, + "learning_rate": 0.0006, + "loss": 4.037393569946289, + "step": 1213 + }, + { + "epoch": 16.866754041065967, + "grad_norm": 0.26102620363235474, + "learning_rate": 0.0006, + "loss": 4.04738712310791, + "step": 1214 + }, + { + "epoch": 16.88073394495413, + "grad_norm": 0.2438521534204483, + "learning_rate": 0.0006, + "loss": 4.015673637390137, + "step": 1215 + }, + { + "epoch": 16.89471384884229, + "grad_norm": 0.20742061734199524, + "learning_rate": 0.0006, + "loss": 4.049060821533203, + "step": 1216 + }, + { + "epoch": 16.90869375273045, + "grad_norm": 0.22028608620166779, + "learning_rate": 0.0006, + "loss": 4.088971138000488, + "step": 1217 + }, + { + "epoch": 16.92267365661861, + "grad_norm": 0.21746744215488434, + "learning_rate": 0.0006, + "loss": 4.021710395812988, + "step": 1218 + }, + { + "epoch": 16.936653560506773, + "grad_norm": 0.2226102203130722, + "learning_rate": 0.0006, + "loss": 4.050119400024414, + "step": 1219 + }, + { + "epoch": 16.950633464394933, + "grad_norm": 0.23903657495975494, + "learning_rate": 0.0006, + "loss": 4.0570526123046875, + "step": 1220 + }, + { + "epoch": 16.964613368283093, + "grad_norm": 0.2556349039077759, + "learning_rate": 0.0006, + "loss": 4.0448808670043945, + "step": 1221 + }, + { + "epoch": 16.978593272171253, + "grad_norm": 0.28445592522621155, + "learning_rate": 0.0006, + "loss": 4.052034378051758, + "step": 1222 + }, + { + "epoch": 16.992573176059416, + "grad_norm": 0.273973673582077, + "learning_rate": 0.0006, + "loss": 4.02907657623291, + "step": 1223 + }, + { + "epoch": 17.0, + "grad_norm": 0.26125091314315796, + "learning_rate": 0.0006, + "loss": 4.10643196105957, + "step": 1224 + }, + { + "epoch": 17.0, + "eval_loss": 4.2585954666137695, + "eval_runtime": 44.8583, + "eval_samples_per_second": 54.438, + "eval_steps_per_second": 3.411, + "step": 1224 + }, + { + "epoch": 17.01397990388816, + "grad_norm": 0.2786196768283844, + "learning_rate": 0.0006, + "loss": 4.044719219207764, + "step": 1225 + }, + { + "epoch": 17.027959807776323, + "grad_norm": 0.2969571650028229, + "learning_rate": 0.0006, + "loss": 4.022037506103516, + "step": 1226 + }, + { + "epoch": 17.041939711664483, + "grad_norm": 0.32196253538131714, + "learning_rate": 0.0006, + "loss": 4.03636360168457, + "step": 1227 + }, + { + "epoch": 17.055919615552643, + "grad_norm": 0.28617000579833984, + "learning_rate": 0.0006, + "loss": 4.012125492095947, + "step": 1228 + }, + { + "epoch": 17.069899519440803, + "grad_norm": 0.26539644598960876, + "learning_rate": 0.0006, + "loss": 4.020190715789795, + "step": 1229 + }, + { + "epoch": 17.083879423328966, + "grad_norm": 0.24315394461154938, + "learning_rate": 0.0006, + "loss": 4.0553812980651855, + "step": 1230 + }, + { + "epoch": 17.097859327217126, + "grad_norm": 0.23798158764839172, + "learning_rate": 0.0006, + "loss": 4.004805088043213, + "step": 1231 + }, + { + "epoch": 17.111839231105286, + "grad_norm": 0.25723618268966675, + "learning_rate": 0.0006, + "loss": 4.00108003616333, + "step": 1232 + }, + { + "epoch": 17.125819134993446, + "grad_norm": 0.2669757604598999, + "learning_rate": 0.0006, + "loss": 4.00828742980957, + "step": 1233 + }, + { + "epoch": 17.13979903888161, + "grad_norm": 0.26421651244163513, + "learning_rate": 0.0006, + "loss": 3.995478391647339, + "step": 1234 + }, + { + "epoch": 17.15377894276977, + "grad_norm": 0.24745801091194153, + "learning_rate": 0.0006, + "loss": 4.0171027183532715, + "step": 1235 + }, + { + "epoch": 17.16775884665793, + "grad_norm": 0.27028775215148926, + "learning_rate": 0.0006, + "loss": 4.017108917236328, + "step": 1236 + }, + { + "epoch": 17.18173875054609, + "grad_norm": 0.27247968316078186, + "learning_rate": 0.0006, + "loss": 4.032601356506348, + "step": 1237 + }, + { + "epoch": 17.195718654434252, + "grad_norm": 0.24620869755744934, + "learning_rate": 0.0006, + "loss": 4.022171974182129, + "step": 1238 + }, + { + "epoch": 17.209698558322412, + "grad_norm": 0.23407386243343353, + "learning_rate": 0.0006, + "loss": 3.9946959018707275, + "step": 1239 + }, + { + "epoch": 17.22367846221057, + "grad_norm": 0.22559069097042084, + "learning_rate": 0.0006, + "loss": 4.013072490692139, + "step": 1240 + }, + { + "epoch": 17.23765836609873, + "grad_norm": 0.226687952876091, + "learning_rate": 0.0006, + "loss": 4.023543834686279, + "step": 1241 + }, + { + "epoch": 17.251638269986895, + "grad_norm": 0.24436360597610474, + "learning_rate": 0.0006, + "loss": 4.044206619262695, + "step": 1242 + }, + { + "epoch": 17.265618173875055, + "grad_norm": 0.25527626276016235, + "learning_rate": 0.0006, + "loss": 4.016424179077148, + "step": 1243 + }, + { + "epoch": 17.279598077763215, + "grad_norm": 0.26126864552497864, + "learning_rate": 0.0006, + "loss": 4.024394512176514, + "step": 1244 + }, + { + "epoch": 17.293577981651374, + "grad_norm": 0.25746744871139526, + "learning_rate": 0.0006, + "loss": 4.046844482421875, + "step": 1245 + }, + { + "epoch": 17.307557885539538, + "grad_norm": 0.26579564809799194, + "learning_rate": 0.0006, + "loss": 4.021010398864746, + "step": 1246 + }, + { + "epoch": 17.321537789427698, + "grad_norm": 0.2713971734046936, + "learning_rate": 0.0006, + "loss": 4.022331237792969, + "step": 1247 + }, + { + "epoch": 17.335517693315857, + "grad_norm": 0.24217180907726288, + "learning_rate": 0.0006, + "loss": 4.006353855133057, + "step": 1248 + }, + { + "epoch": 17.34949759720402, + "grad_norm": 0.26899752020835876, + "learning_rate": 0.0006, + "loss": 4.068023681640625, + "step": 1249 + }, + { + "epoch": 17.36347750109218, + "grad_norm": 0.26745253801345825, + "learning_rate": 0.0006, + "loss": 4.031207084655762, + "step": 1250 + }, + { + "epoch": 17.37745740498034, + "grad_norm": 0.21533764898777008, + "learning_rate": 0.0006, + "loss": 4.042410850524902, + "step": 1251 + }, + { + "epoch": 17.3914373088685, + "grad_norm": 0.21958027780056, + "learning_rate": 0.0006, + "loss": 4.02597713470459, + "step": 1252 + }, + { + "epoch": 17.405417212756664, + "grad_norm": 0.263068825006485, + "learning_rate": 0.0006, + "loss": 4.0035905838012695, + "step": 1253 + }, + { + "epoch": 17.419397116644824, + "grad_norm": 0.24044716358184814, + "learning_rate": 0.0006, + "loss": 4.005317687988281, + "step": 1254 + }, + { + "epoch": 17.433377020532983, + "grad_norm": 0.19142559170722961, + "learning_rate": 0.0006, + "loss": 3.9976844787597656, + "step": 1255 + }, + { + "epoch": 17.447356924421143, + "grad_norm": 0.18650250136852264, + "learning_rate": 0.0006, + "loss": 4.031353950500488, + "step": 1256 + }, + { + "epoch": 17.461336828309307, + "grad_norm": 0.1984022557735443, + "learning_rate": 0.0006, + "loss": 4.002097129821777, + "step": 1257 + }, + { + "epoch": 17.475316732197467, + "grad_norm": 0.20087844133377075, + "learning_rate": 0.0006, + "loss": 4.031151294708252, + "step": 1258 + }, + { + "epoch": 17.489296636085626, + "grad_norm": 0.20881228148937225, + "learning_rate": 0.0006, + "loss": 4.034793853759766, + "step": 1259 + }, + { + "epoch": 17.503276539973786, + "grad_norm": 0.23958556354045868, + "learning_rate": 0.0006, + "loss": 4.025238990783691, + "step": 1260 + }, + { + "epoch": 17.51725644386195, + "grad_norm": 0.23927845060825348, + "learning_rate": 0.0006, + "loss": 3.999828338623047, + "step": 1261 + }, + { + "epoch": 17.53123634775011, + "grad_norm": 0.20342715084552765, + "learning_rate": 0.0006, + "loss": 4.054262161254883, + "step": 1262 + }, + { + "epoch": 17.54521625163827, + "grad_norm": 0.21370555460453033, + "learning_rate": 0.0006, + "loss": 4.011582374572754, + "step": 1263 + }, + { + "epoch": 17.55919615552643, + "grad_norm": 0.23681946098804474, + "learning_rate": 0.0006, + "loss": 4.029694080352783, + "step": 1264 + }, + { + "epoch": 17.573176059414592, + "grad_norm": 0.24190311133861542, + "learning_rate": 0.0006, + "loss": 4.018783092498779, + "step": 1265 + }, + { + "epoch": 17.587155963302752, + "grad_norm": 0.23215509951114655, + "learning_rate": 0.0006, + "loss": 4.009703159332275, + "step": 1266 + }, + { + "epoch": 17.601135867190912, + "grad_norm": 0.21122977137565613, + "learning_rate": 0.0006, + "loss": 4.0345659255981445, + "step": 1267 + }, + { + "epoch": 17.615115771079076, + "grad_norm": 0.2075948715209961, + "learning_rate": 0.0006, + "loss": 4.070703506469727, + "step": 1268 + }, + { + "epoch": 17.629095674967235, + "grad_norm": 0.21667909622192383, + "learning_rate": 0.0006, + "loss": 4.020771503448486, + "step": 1269 + }, + { + "epoch": 17.643075578855395, + "grad_norm": 0.20960724353790283, + "learning_rate": 0.0006, + "loss": 4.026404857635498, + "step": 1270 + }, + { + "epoch": 17.657055482743555, + "grad_norm": 0.22575686872005463, + "learning_rate": 0.0006, + "loss": 4.01981258392334, + "step": 1271 + }, + { + "epoch": 17.67103538663172, + "grad_norm": 0.2565988302230835, + "learning_rate": 0.0006, + "loss": 4.015827178955078, + "step": 1272 + }, + { + "epoch": 17.68501529051988, + "grad_norm": 0.24831551313400269, + "learning_rate": 0.0006, + "loss": 4.012457847595215, + "step": 1273 + }, + { + "epoch": 17.698995194408038, + "grad_norm": 0.22595494985580444, + "learning_rate": 0.0006, + "loss": 4.031386375427246, + "step": 1274 + }, + { + "epoch": 17.712975098296198, + "grad_norm": 0.20687322318553925, + "learning_rate": 0.0006, + "loss": 4.014216423034668, + "step": 1275 + }, + { + "epoch": 17.72695500218436, + "grad_norm": 0.21916012465953827, + "learning_rate": 0.0006, + "loss": 4.037643909454346, + "step": 1276 + }, + { + "epoch": 17.74093490607252, + "grad_norm": 0.2243107706308365, + "learning_rate": 0.0006, + "loss": 4.033044815063477, + "step": 1277 + }, + { + "epoch": 17.75491480996068, + "grad_norm": 0.2402164787054062, + "learning_rate": 0.0006, + "loss": 4.026636123657227, + "step": 1278 + }, + { + "epoch": 17.76889471384884, + "grad_norm": 0.27957046031951904, + "learning_rate": 0.0006, + "loss": 4.0270867347717285, + "step": 1279 + }, + { + "epoch": 17.782874617737004, + "grad_norm": 0.27447596192359924, + "learning_rate": 0.0006, + "loss": 4.0120134353637695, + "step": 1280 + }, + { + "epoch": 17.796854521625164, + "grad_norm": 0.26926323771476746, + "learning_rate": 0.0006, + "loss": 4.027970314025879, + "step": 1281 + }, + { + "epoch": 17.810834425513324, + "grad_norm": 0.2535291314125061, + "learning_rate": 0.0006, + "loss": 4.002565383911133, + "step": 1282 + }, + { + "epoch": 17.824814329401484, + "grad_norm": 0.22639447450637817, + "learning_rate": 0.0006, + "loss": 4.032750606536865, + "step": 1283 + }, + { + "epoch": 17.838794233289647, + "grad_norm": 0.23384462296962738, + "learning_rate": 0.0006, + "loss": 4.03568172454834, + "step": 1284 + }, + { + "epoch": 17.852774137177807, + "grad_norm": 0.22971470654010773, + "learning_rate": 0.0006, + "loss": 4.031299591064453, + "step": 1285 + }, + { + "epoch": 17.866754041065967, + "grad_norm": 0.24540141224861145, + "learning_rate": 0.0006, + "loss": 4.0142669677734375, + "step": 1286 + }, + { + "epoch": 17.88073394495413, + "grad_norm": 0.2304888367652893, + "learning_rate": 0.0006, + "loss": 3.9964895248413086, + "step": 1287 + }, + { + "epoch": 17.89471384884229, + "grad_norm": 0.22082284092903137, + "learning_rate": 0.0006, + "loss": 4.024693489074707, + "step": 1288 + }, + { + "epoch": 17.90869375273045, + "grad_norm": 0.23677092790603638, + "learning_rate": 0.0006, + "loss": 4.002082347869873, + "step": 1289 + }, + { + "epoch": 17.92267365661861, + "grad_norm": 0.23122332990169525, + "learning_rate": 0.0006, + "loss": 4.025351524353027, + "step": 1290 + }, + { + "epoch": 17.936653560506773, + "grad_norm": 0.2548119127750397, + "learning_rate": 0.0006, + "loss": 3.9955825805664062, + "step": 1291 + }, + { + "epoch": 17.950633464394933, + "grad_norm": 0.26950931549072266, + "learning_rate": 0.0006, + "loss": 4.026151180267334, + "step": 1292 + }, + { + "epoch": 17.964613368283093, + "grad_norm": 0.3023233711719513, + "learning_rate": 0.0006, + "loss": 4.006035804748535, + "step": 1293 + }, + { + "epoch": 17.978593272171253, + "grad_norm": 0.3190958499908447, + "learning_rate": 0.0006, + "loss": 4.023565292358398, + "step": 1294 + }, + { + "epoch": 17.992573176059416, + "grad_norm": 0.28878068923950195, + "learning_rate": 0.0006, + "loss": 4.020973205566406, + "step": 1295 + }, + { + "epoch": 18.0, + "grad_norm": 0.27312418818473816, + "learning_rate": 0.0006, + "loss": 3.99906587600708, + "step": 1296 + }, + { + "epoch": 18.0, + "eval_loss": 4.224447250366211, + "eval_runtime": 52.5728, + "eval_samples_per_second": 46.45, + "eval_steps_per_second": 2.91, + "step": 1296 + }, + { + "epoch": 18.01397990388816, + "grad_norm": 0.2567712664604187, + "learning_rate": 0.0006, + "loss": 3.9755055904388428, + "step": 1297 + }, + { + "epoch": 18.027959807776323, + "grad_norm": 0.25048133730888367, + "learning_rate": 0.0006, + "loss": 4.009254455566406, + "step": 1298 + }, + { + "epoch": 18.041939711664483, + "grad_norm": 0.2556909918785095, + "learning_rate": 0.0006, + "loss": 4.001235008239746, + "step": 1299 + }, + { + "epoch": 18.055919615552643, + "grad_norm": 0.2501400113105774, + "learning_rate": 0.0006, + "loss": 3.980726480484009, + "step": 1300 + }, + { + "epoch": 18.069899519440803, + "grad_norm": 0.23977792263031006, + "learning_rate": 0.0006, + "loss": 3.964195728302002, + "step": 1301 + }, + { + "epoch": 18.083879423328966, + "grad_norm": 0.25650718808174133, + "learning_rate": 0.0006, + "loss": 4.015914440155029, + "step": 1302 + }, + { + "epoch": 18.097859327217126, + "grad_norm": 0.234053835272789, + "learning_rate": 0.0006, + "loss": 4.0159149169921875, + "step": 1303 + }, + { + "epoch": 18.111839231105286, + "grad_norm": 0.21967713534832, + "learning_rate": 0.0006, + "loss": 4.0055694580078125, + "step": 1304 + }, + { + "epoch": 18.125819134993446, + "grad_norm": 0.21790878474712372, + "learning_rate": 0.0006, + "loss": 3.986253261566162, + "step": 1305 + }, + { + "epoch": 18.13979903888161, + "grad_norm": 0.22955302894115448, + "learning_rate": 0.0006, + "loss": 3.959421157836914, + "step": 1306 + }, + { + "epoch": 18.15377894276977, + "grad_norm": 0.2559174597263336, + "learning_rate": 0.0006, + "loss": 4.0069756507873535, + "step": 1307 + }, + { + "epoch": 18.16775884665793, + "grad_norm": 0.26132866740226746, + "learning_rate": 0.0006, + "loss": 3.9874095916748047, + "step": 1308 + }, + { + "epoch": 18.18173875054609, + "grad_norm": 0.23258940875530243, + "learning_rate": 0.0006, + "loss": 3.9762492179870605, + "step": 1309 + }, + { + "epoch": 18.195718654434252, + "grad_norm": 0.22347190976142883, + "learning_rate": 0.0006, + "loss": 3.9923410415649414, + "step": 1310 + }, + { + "epoch": 18.209698558322412, + "grad_norm": 0.23095804452896118, + "learning_rate": 0.0006, + "loss": 4.019245624542236, + "step": 1311 + }, + { + "epoch": 18.22367846221057, + "grad_norm": 0.24817052483558655, + "learning_rate": 0.0006, + "loss": 3.9697511196136475, + "step": 1312 + }, + { + "epoch": 18.23765836609873, + "grad_norm": 0.2566024959087372, + "learning_rate": 0.0006, + "loss": 3.978804111480713, + "step": 1313 + }, + { + "epoch": 18.251638269986895, + "grad_norm": 0.2527952790260315, + "learning_rate": 0.0006, + "loss": 3.972018241882324, + "step": 1314 + }, + { + "epoch": 18.265618173875055, + "grad_norm": 0.2508150637149811, + "learning_rate": 0.0006, + "loss": 3.9971275329589844, + "step": 1315 + }, + { + "epoch": 18.279598077763215, + "grad_norm": 0.23242022097110748, + "learning_rate": 0.0006, + "loss": 3.9712045192718506, + "step": 1316 + }, + { + "epoch": 18.293577981651374, + "grad_norm": 0.23474404215812683, + "learning_rate": 0.0006, + "loss": 3.9926767349243164, + "step": 1317 + }, + { + "epoch": 18.307557885539538, + "grad_norm": 0.2417769432067871, + "learning_rate": 0.0006, + "loss": 3.9920949935913086, + "step": 1318 + }, + { + "epoch": 18.321537789427698, + "grad_norm": 0.23839452862739563, + "learning_rate": 0.0006, + "loss": 4.016645431518555, + "step": 1319 + }, + { + "epoch": 18.335517693315857, + "grad_norm": 0.2512452304363251, + "learning_rate": 0.0006, + "loss": 3.97586727142334, + "step": 1320 + }, + { + "epoch": 18.34949759720402, + "grad_norm": 0.27503693103790283, + "learning_rate": 0.0006, + "loss": 4.000148773193359, + "step": 1321 + }, + { + "epoch": 18.36347750109218, + "grad_norm": 0.27830836176872253, + "learning_rate": 0.0006, + "loss": 3.9972195625305176, + "step": 1322 + }, + { + "epoch": 18.37745740498034, + "grad_norm": 0.2571812570095062, + "learning_rate": 0.0006, + "loss": 3.9900810718536377, + "step": 1323 + }, + { + "epoch": 18.3914373088685, + "grad_norm": 0.2310052365064621, + "learning_rate": 0.0006, + "loss": 4.003000259399414, + "step": 1324 + }, + { + "epoch": 18.405417212756664, + "grad_norm": 0.19615735113620758, + "learning_rate": 0.0006, + "loss": 3.9536571502685547, + "step": 1325 + }, + { + "epoch": 18.419397116644824, + "grad_norm": 0.21323896944522858, + "learning_rate": 0.0006, + "loss": 3.977508068084717, + "step": 1326 + }, + { + "epoch": 18.433377020532983, + "grad_norm": 0.21404202282428741, + "learning_rate": 0.0006, + "loss": 4.015361785888672, + "step": 1327 + }, + { + "epoch": 18.447356924421143, + "grad_norm": 0.1991959661245346, + "learning_rate": 0.0006, + "loss": 4.000286102294922, + "step": 1328 + }, + { + "epoch": 18.461336828309307, + "grad_norm": 0.2073599398136139, + "learning_rate": 0.0006, + "loss": 3.973065137863159, + "step": 1329 + }, + { + "epoch": 18.475316732197467, + "grad_norm": 0.2096073031425476, + "learning_rate": 0.0006, + "loss": 3.987032890319824, + "step": 1330 + }, + { + "epoch": 18.489296636085626, + "grad_norm": 0.2380610853433609, + "learning_rate": 0.0006, + "loss": 4.035274505615234, + "step": 1331 + }, + { + "epoch": 18.503276539973786, + "grad_norm": 0.23570716381072998, + "learning_rate": 0.0006, + "loss": 4.010516166687012, + "step": 1332 + }, + { + "epoch": 18.51725644386195, + "grad_norm": 0.24805466830730438, + "learning_rate": 0.0006, + "loss": 3.9750983715057373, + "step": 1333 + }, + { + "epoch": 18.53123634775011, + "grad_norm": 0.25173231959342957, + "learning_rate": 0.0006, + "loss": 3.9742345809936523, + "step": 1334 + }, + { + "epoch": 18.54521625163827, + "grad_norm": 0.24590367078781128, + "learning_rate": 0.0006, + "loss": 4.0037312507629395, + "step": 1335 + }, + { + "epoch": 18.55919615552643, + "grad_norm": 0.24379394948482513, + "learning_rate": 0.0006, + "loss": 3.993858814239502, + "step": 1336 + }, + { + "epoch": 18.573176059414592, + "grad_norm": 0.21708883345127106, + "learning_rate": 0.0006, + "loss": 3.965670585632324, + "step": 1337 + }, + { + "epoch": 18.587155963302752, + "grad_norm": 0.21024051308631897, + "learning_rate": 0.0006, + "loss": 3.987551689147949, + "step": 1338 + }, + { + "epoch": 18.601135867190912, + "grad_norm": 0.23376783728599548, + "learning_rate": 0.0006, + "loss": 4.002841472625732, + "step": 1339 + }, + { + "epoch": 18.615115771079076, + "grad_norm": 0.25350701808929443, + "learning_rate": 0.0006, + "loss": 3.9881370067596436, + "step": 1340 + }, + { + "epoch": 18.629095674967235, + "grad_norm": 0.2542140483856201, + "learning_rate": 0.0006, + "loss": 4.003695964813232, + "step": 1341 + }, + { + "epoch": 18.643075578855395, + "grad_norm": 0.22932685911655426, + "learning_rate": 0.0006, + "loss": 4.0146002769470215, + "step": 1342 + }, + { + "epoch": 18.657055482743555, + "grad_norm": 0.21099458634853363, + "learning_rate": 0.0006, + "loss": 3.970472812652588, + "step": 1343 + }, + { + "epoch": 18.67103538663172, + "grad_norm": 0.2234615832567215, + "learning_rate": 0.0006, + "loss": 3.9821488857269287, + "step": 1344 + }, + { + "epoch": 18.68501529051988, + "grad_norm": 0.230327770113945, + "learning_rate": 0.0006, + "loss": 3.996274948120117, + "step": 1345 + }, + { + "epoch": 18.698995194408038, + "grad_norm": 0.23596233129501343, + "learning_rate": 0.0006, + "loss": 3.9747462272644043, + "step": 1346 + }, + { + "epoch": 18.712975098296198, + "grad_norm": 0.24173159897327423, + "learning_rate": 0.0006, + "loss": 4.011804103851318, + "step": 1347 + }, + { + "epoch": 18.72695500218436, + "grad_norm": 0.24087604880332947, + "learning_rate": 0.0006, + "loss": 4.008726119995117, + "step": 1348 + }, + { + "epoch": 18.74093490607252, + "grad_norm": 0.2457292526960373, + "learning_rate": 0.0006, + "loss": 3.990793228149414, + "step": 1349 + }, + { + "epoch": 18.75491480996068, + "grad_norm": 0.22946089506149292, + "learning_rate": 0.0006, + "loss": 3.980494260787964, + "step": 1350 + }, + { + "epoch": 18.76889471384884, + "grad_norm": 0.22986692190170288, + "learning_rate": 0.0006, + "loss": 3.97006893157959, + "step": 1351 + }, + { + "epoch": 18.782874617737004, + "grad_norm": 0.23358555138111115, + "learning_rate": 0.0006, + "loss": 4.008172035217285, + "step": 1352 + }, + { + "epoch": 18.796854521625164, + "grad_norm": 0.20183615386486053, + "learning_rate": 0.0006, + "loss": 3.9720888137817383, + "step": 1353 + }, + { + "epoch": 18.810834425513324, + "grad_norm": 0.19975653290748596, + "learning_rate": 0.0006, + "loss": 3.9783310890197754, + "step": 1354 + }, + { + "epoch": 18.824814329401484, + "grad_norm": 0.18911021947860718, + "learning_rate": 0.0006, + "loss": 3.985982894897461, + "step": 1355 + }, + { + "epoch": 18.838794233289647, + "grad_norm": 0.15984168648719788, + "learning_rate": 0.0006, + "loss": 3.9740548133850098, + "step": 1356 + }, + { + "epoch": 18.852774137177807, + "grad_norm": 0.1755436211824417, + "learning_rate": 0.0006, + "loss": 4.013090133666992, + "step": 1357 + }, + { + "epoch": 18.866754041065967, + "grad_norm": 0.1798417866230011, + "learning_rate": 0.0006, + "loss": 3.997880697250366, + "step": 1358 + }, + { + "epoch": 18.88073394495413, + "grad_norm": 0.20206265151500702, + "learning_rate": 0.0006, + "loss": 3.9892373085021973, + "step": 1359 + }, + { + "epoch": 18.89471384884229, + "grad_norm": 0.23685456812381744, + "learning_rate": 0.0006, + "loss": 3.9909186363220215, + "step": 1360 + }, + { + "epoch": 18.90869375273045, + "grad_norm": 0.26053836941719055, + "learning_rate": 0.0006, + "loss": 4.00327205657959, + "step": 1361 + }, + { + "epoch": 18.92267365661861, + "grad_norm": 0.26215845346450806, + "learning_rate": 0.0006, + "loss": 3.9714717864990234, + "step": 1362 + }, + { + "epoch": 18.936653560506773, + "grad_norm": 0.2433871030807495, + "learning_rate": 0.0006, + "loss": 3.949416160583496, + "step": 1363 + }, + { + "epoch": 18.950633464394933, + "grad_norm": 0.23331883549690247, + "learning_rate": 0.0006, + "loss": 3.980501413345337, + "step": 1364 + }, + { + "epoch": 18.964613368283093, + "grad_norm": 0.2346954047679901, + "learning_rate": 0.0006, + "loss": 3.9974493980407715, + "step": 1365 + }, + { + "epoch": 18.978593272171253, + "grad_norm": 0.25101345777511597, + "learning_rate": 0.0006, + "loss": 3.9800148010253906, + "step": 1366 + }, + { + "epoch": 18.992573176059416, + "grad_norm": 0.26811933517456055, + "learning_rate": 0.0006, + "loss": 4.0065741539001465, + "step": 1367 + }, + { + "epoch": 19.0, + "grad_norm": 0.2731736898422241, + "learning_rate": 0.0006, + "loss": 4.014575481414795, + "step": 1368 + }, + { + "epoch": 19.0, + "eval_loss": 4.200716972351074, + "eval_runtime": 44.6962, + "eval_samples_per_second": 54.636, + "eval_steps_per_second": 3.423, + "step": 1368 + }, + { + "epoch": 19.01397990388816, + "grad_norm": 0.2517746686935425, + "learning_rate": 0.0006, + "loss": 3.9486539363861084, + "step": 1369 + }, + { + "epoch": 19.027959807776323, + "grad_norm": 0.2482699453830719, + "learning_rate": 0.0006, + "loss": 3.95015287399292, + "step": 1370 + }, + { + "epoch": 19.041939711664483, + "grad_norm": 0.21693618595600128, + "learning_rate": 0.0006, + "loss": 3.970022201538086, + "step": 1371 + }, + { + "epoch": 19.055919615552643, + "grad_norm": 0.2035159319639206, + "learning_rate": 0.0006, + "loss": 3.941457748413086, + "step": 1372 + }, + { + "epoch": 19.069899519440803, + "grad_norm": 0.2201429009437561, + "learning_rate": 0.0006, + "loss": 3.946794033050537, + "step": 1373 + }, + { + "epoch": 19.083879423328966, + "grad_norm": 0.22910255193710327, + "learning_rate": 0.0006, + "loss": 3.94606876373291, + "step": 1374 + }, + { + "epoch": 19.097859327217126, + "grad_norm": 0.22378197312355042, + "learning_rate": 0.0006, + "loss": 3.957899570465088, + "step": 1375 + }, + { + "epoch": 19.111839231105286, + "grad_norm": 0.21728114783763885, + "learning_rate": 0.0006, + "loss": 3.9565982818603516, + "step": 1376 + }, + { + "epoch": 19.125819134993446, + "grad_norm": 0.21887634694576263, + "learning_rate": 0.0006, + "loss": 3.9649534225463867, + "step": 1377 + }, + { + "epoch": 19.13979903888161, + "grad_norm": 0.21892991662025452, + "learning_rate": 0.0006, + "loss": 3.971388101577759, + "step": 1378 + }, + { + "epoch": 19.15377894276977, + "grad_norm": 0.24582402408123016, + "learning_rate": 0.0006, + "loss": 3.9370944499969482, + "step": 1379 + }, + { + "epoch": 19.16775884665793, + "grad_norm": 0.27547118067741394, + "learning_rate": 0.0006, + "loss": 3.939406156539917, + "step": 1380 + }, + { + "epoch": 19.18173875054609, + "grad_norm": 0.3131563365459442, + "learning_rate": 0.0006, + "loss": 3.942620277404785, + "step": 1381 + }, + { + "epoch": 19.195718654434252, + "grad_norm": 0.3211703598499298, + "learning_rate": 0.0006, + "loss": 3.9388349056243896, + "step": 1382 + }, + { + "epoch": 19.209698558322412, + "grad_norm": 0.2791919410228729, + "learning_rate": 0.0006, + "loss": 3.9827399253845215, + "step": 1383 + }, + { + "epoch": 19.22367846221057, + "grad_norm": 0.2872016727924347, + "learning_rate": 0.0006, + "loss": 3.976715087890625, + "step": 1384 + }, + { + "epoch": 19.23765836609873, + "grad_norm": 0.2790389060974121, + "learning_rate": 0.0006, + "loss": 3.952850818634033, + "step": 1385 + }, + { + "epoch": 19.251638269986895, + "grad_norm": 0.31903740763664246, + "learning_rate": 0.0006, + "loss": 3.964506149291992, + "step": 1386 + }, + { + "epoch": 19.265618173875055, + "grad_norm": 0.31013646721839905, + "learning_rate": 0.0006, + "loss": 3.967219352722168, + "step": 1387 + }, + { + "epoch": 19.279598077763215, + "grad_norm": 0.2574339509010315, + "learning_rate": 0.0006, + "loss": 3.979168176651001, + "step": 1388 + }, + { + "epoch": 19.293577981651374, + "grad_norm": 0.24621108174324036, + "learning_rate": 0.0006, + "loss": 3.981734275817871, + "step": 1389 + }, + { + "epoch": 19.307557885539538, + "grad_norm": 0.25113818049430847, + "learning_rate": 0.0006, + "loss": 3.9787755012512207, + "step": 1390 + }, + { + "epoch": 19.321537789427698, + "grad_norm": 0.259971022605896, + "learning_rate": 0.0006, + "loss": 3.9648823738098145, + "step": 1391 + }, + { + "epoch": 19.335517693315857, + "grad_norm": 0.22580404579639435, + "learning_rate": 0.0006, + "loss": 3.9658002853393555, + "step": 1392 + }, + { + "epoch": 19.34949759720402, + "grad_norm": 0.2133680284023285, + "learning_rate": 0.0006, + "loss": 3.9615914821624756, + "step": 1393 + }, + { + "epoch": 19.36347750109218, + "grad_norm": 0.2387680858373642, + "learning_rate": 0.0006, + "loss": 3.993811845779419, + "step": 1394 + }, + { + "epoch": 19.37745740498034, + "grad_norm": 0.26086220145225525, + "learning_rate": 0.0006, + "loss": 3.932701826095581, + "step": 1395 + }, + { + "epoch": 19.3914373088685, + "grad_norm": 0.23255233466625214, + "learning_rate": 0.0006, + "loss": 3.8969321250915527, + "step": 1396 + }, + { + "epoch": 19.405417212756664, + "grad_norm": 0.22894541919231415, + "learning_rate": 0.0006, + "loss": 3.9569311141967773, + "step": 1397 + }, + { + "epoch": 19.419397116644824, + "grad_norm": 0.2254200130701065, + "learning_rate": 0.0006, + "loss": 3.953199863433838, + "step": 1398 + }, + { + "epoch": 19.433377020532983, + "grad_norm": 0.25802481174468994, + "learning_rate": 0.0006, + "loss": 3.9714815616607666, + "step": 1399 + }, + { + "epoch": 19.447356924421143, + "grad_norm": 0.24725162982940674, + "learning_rate": 0.0006, + "loss": 3.957339286804199, + "step": 1400 + }, + { + "epoch": 19.461336828309307, + "grad_norm": 0.2162018120288849, + "learning_rate": 0.0006, + "loss": 3.986801862716675, + "step": 1401 + }, + { + "epoch": 19.475316732197467, + "grad_norm": 0.21530906856060028, + "learning_rate": 0.0006, + "loss": 3.9766759872436523, + "step": 1402 + }, + { + "epoch": 19.489296636085626, + "grad_norm": 0.20260323584079742, + "learning_rate": 0.0006, + "loss": 3.9576425552368164, + "step": 1403 + }, + { + "epoch": 19.503276539973786, + "grad_norm": 0.188974529504776, + "learning_rate": 0.0006, + "loss": 3.9852395057678223, + "step": 1404 + }, + { + "epoch": 19.51725644386195, + "grad_norm": 0.19727374613285065, + "learning_rate": 0.0006, + "loss": 3.972484588623047, + "step": 1405 + }, + { + "epoch": 19.53123634775011, + "grad_norm": 0.23708008229732513, + "learning_rate": 0.0006, + "loss": 3.992471694946289, + "step": 1406 + }, + { + "epoch": 19.54521625163827, + "grad_norm": 0.23783449828624725, + "learning_rate": 0.0006, + "loss": 3.9788265228271484, + "step": 1407 + }, + { + "epoch": 19.55919615552643, + "grad_norm": 0.24744364619255066, + "learning_rate": 0.0006, + "loss": 3.9559011459350586, + "step": 1408 + }, + { + "epoch": 19.573176059414592, + "grad_norm": 0.24828094244003296, + "learning_rate": 0.0006, + "loss": 3.9663949012756348, + "step": 1409 + }, + { + "epoch": 19.587155963302752, + "grad_norm": 0.2681315541267395, + "learning_rate": 0.0006, + "loss": 3.9581191539764404, + "step": 1410 + }, + { + "epoch": 19.601135867190912, + "grad_norm": 0.2691532373428345, + "learning_rate": 0.0006, + "loss": 3.9832754135131836, + "step": 1411 + }, + { + "epoch": 19.615115771079076, + "grad_norm": 0.2900252640247345, + "learning_rate": 0.0006, + "loss": 3.984365940093994, + "step": 1412 + }, + { + "epoch": 19.629095674967235, + "grad_norm": 0.3194943070411682, + "learning_rate": 0.0006, + "loss": 3.9856505393981934, + "step": 1413 + }, + { + "epoch": 19.643075578855395, + "grad_norm": 0.3029029071331024, + "learning_rate": 0.0006, + "loss": 3.968992233276367, + "step": 1414 + }, + { + "epoch": 19.657055482743555, + "grad_norm": 0.2658176124095917, + "learning_rate": 0.0006, + "loss": 3.995187282562256, + "step": 1415 + }, + { + "epoch": 19.67103538663172, + "grad_norm": 0.26807504892349243, + "learning_rate": 0.0006, + "loss": 3.9756274223327637, + "step": 1416 + }, + { + "epoch": 19.68501529051988, + "grad_norm": 0.27718642354011536, + "learning_rate": 0.0006, + "loss": 3.9510018825531006, + "step": 1417 + }, + { + "epoch": 19.698995194408038, + "grad_norm": 0.26322051882743835, + "learning_rate": 0.0006, + "loss": 3.965155601501465, + "step": 1418 + }, + { + "epoch": 19.712975098296198, + "grad_norm": 0.2566570043563843, + "learning_rate": 0.0006, + "loss": 3.984218120574951, + "step": 1419 + }, + { + "epoch": 19.72695500218436, + "grad_norm": 0.2218743860721588, + "learning_rate": 0.0006, + "loss": 3.9338784217834473, + "step": 1420 + }, + { + "epoch": 19.74093490607252, + "grad_norm": 0.22894173860549927, + "learning_rate": 0.0006, + "loss": 3.9869046211242676, + "step": 1421 + }, + { + "epoch": 19.75491480996068, + "grad_norm": 0.26837027072906494, + "learning_rate": 0.0006, + "loss": 3.96799898147583, + "step": 1422 + }, + { + "epoch": 19.76889471384884, + "grad_norm": 0.2767876982688904, + "learning_rate": 0.0006, + "loss": 3.9431071281433105, + "step": 1423 + }, + { + "epoch": 19.782874617737004, + "grad_norm": 0.24402284622192383, + "learning_rate": 0.0006, + "loss": 3.9631881713867188, + "step": 1424 + }, + { + "epoch": 19.796854521625164, + "grad_norm": 0.23500724136829376, + "learning_rate": 0.0006, + "loss": 3.9943337440490723, + "step": 1425 + }, + { + "epoch": 19.810834425513324, + "grad_norm": 0.22509142756462097, + "learning_rate": 0.0006, + "loss": 3.961226224899292, + "step": 1426 + }, + { + "epoch": 19.824814329401484, + "grad_norm": 0.23524795472621918, + "learning_rate": 0.0006, + "loss": 3.9552102088928223, + "step": 1427 + }, + { + "epoch": 19.838794233289647, + "grad_norm": 0.22307050228118896, + "learning_rate": 0.0006, + "loss": 3.9623494148254395, + "step": 1428 + }, + { + "epoch": 19.852774137177807, + "grad_norm": 0.21144486963748932, + "learning_rate": 0.0006, + "loss": 3.9620237350463867, + "step": 1429 + }, + { + "epoch": 19.866754041065967, + "grad_norm": 0.20249812304973602, + "learning_rate": 0.0006, + "loss": 3.953911066055298, + "step": 1430 + }, + { + "epoch": 19.88073394495413, + "grad_norm": 0.2350354939699173, + "learning_rate": 0.0006, + "loss": 3.9616730213165283, + "step": 1431 + }, + { + "epoch": 19.89471384884229, + "grad_norm": 0.2566683292388916, + "learning_rate": 0.0006, + "loss": 3.9372501373291016, + "step": 1432 + }, + { + "epoch": 19.90869375273045, + "grad_norm": 0.2520846128463745, + "learning_rate": 0.0006, + "loss": 3.9814648628234863, + "step": 1433 + }, + { + "epoch": 19.92267365661861, + "grad_norm": 0.23989640176296234, + "learning_rate": 0.0006, + "loss": 3.9692864418029785, + "step": 1434 + }, + { + "epoch": 19.936653560506773, + "grad_norm": 0.20650425553321838, + "learning_rate": 0.0006, + "loss": 3.960256814956665, + "step": 1435 + }, + { + "epoch": 19.950633464394933, + "grad_norm": 0.20478376746177673, + "learning_rate": 0.0006, + "loss": 3.9585227966308594, + "step": 1436 + }, + { + "epoch": 19.964613368283093, + "grad_norm": 0.234436497092247, + "learning_rate": 0.0006, + "loss": 3.945631742477417, + "step": 1437 + }, + { + "epoch": 19.978593272171253, + "grad_norm": 0.19969749450683594, + "learning_rate": 0.0006, + "loss": 3.9646050930023193, + "step": 1438 + }, + { + "epoch": 19.992573176059416, + "grad_norm": 0.20638690888881683, + "learning_rate": 0.0006, + "loss": 3.9461846351623535, + "step": 1439 + }, + { + "epoch": 20.0, + "grad_norm": 0.2120274156332016, + "learning_rate": 0.0006, + "loss": 3.965153217315674, + "step": 1440 + }, + { + "epoch": 20.0, + "eval_loss": 4.168524742126465, + "eval_runtime": 44.2796, + "eval_samples_per_second": 55.15, + "eval_steps_per_second": 3.455, + "step": 1440 + }, + { + "epoch": 20.01397990388816, + "grad_norm": 0.19704894721508026, + "learning_rate": 0.0006, + "loss": 3.937016248703003, + "step": 1441 + }, + { + "epoch": 20.027959807776323, + "grad_norm": 0.18682368099689484, + "learning_rate": 0.0006, + "loss": 3.895922899246216, + "step": 1442 + }, + { + "epoch": 20.041939711664483, + "grad_norm": 0.18982571363449097, + "learning_rate": 0.0006, + "loss": 3.929841995239258, + "step": 1443 + }, + { + "epoch": 20.055919615552643, + "grad_norm": 0.20811910927295685, + "learning_rate": 0.0006, + "loss": 3.9498324394226074, + "step": 1444 + }, + { + "epoch": 20.069899519440803, + "grad_norm": 0.2149062603712082, + "learning_rate": 0.0006, + "loss": 3.929853916168213, + "step": 1445 + }, + { + "epoch": 20.083879423328966, + "grad_norm": 0.20016685128211975, + "learning_rate": 0.0006, + "loss": 3.9374136924743652, + "step": 1446 + }, + { + "epoch": 20.097859327217126, + "grad_norm": 0.19969616830348969, + "learning_rate": 0.0006, + "loss": 3.932447910308838, + "step": 1447 + }, + { + "epoch": 20.111839231105286, + "grad_norm": 0.2163356989622116, + "learning_rate": 0.0006, + "loss": 3.9325437545776367, + "step": 1448 + }, + { + "epoch": 20.125819134993446, + "grad_norm": 0.22026969492435455, + "learning_rate": 0.0006, + "loss": 3.9118852615356445, + "step": 1449 + }, + { + "epoch": 20.13979903888161, + "grad_norm": 0.23337116837501526, + "learning_rate": 0.0006, + "loss": 3.9416019916534424, + "step": 1450 + }, + { + "epoch": 20.15377894276977, + "grad_norm": 0.23971447348594666, + "learning_rate": 0.0006, + "loss": 3.9416871070861816, + "step": 1451 + }, + { + "epoch": 20.16775884665793, + "grad_norm": 0.25973960757255554, + "learning_rate": 0.0006, + "loss": 3.93826961517334, + "step": 1452 + }, + { + "epoch": 20.18173875054609, + "grad_norm": 0.2303445190191269, + "learning_rate": 0.0006, + "loss": 3.909383535385132, + "step": 1453 + }, + { + "epoch": 20.195718654434252, + "grad_norm": 0.21090206503868103, + "learning_rate": 0.0006, + "loss": 3.935939311981201, + "step": 1454 + }, + { + "epoch": 20.209698558322412, + "grad_norm": 0.2278691977262497, + "learning_rate": 0.0006, + "loss": 3.9623684883117676, + "step": 1455 + }, + { + "epoch": 20.22367846221057, + "grad_norm": 0.22291512787342072, + "learning_rate": 0.0006, + "loss": 3.9386210441589355, + "step": 1456 + }, + { + "epoch": 20.23765836609873, + "grad_norm": 0.2385793924331665, + "learning_rate": 0.0006, + "loss": 3.927365303039551, + "step": 1457 + }, + { + "epoch": 20.251638269986895, + "grad_norm": 0.23949867486953735, + "learning_rate": 0.0006, + "loss": 3.956698179244995, + "step": 1458 + }, + { + "epoch": 20.265618173875055, + "grad_norm": 0.2232269048690796, + "learning_rate": 0.0006, + "loss": 3.9465065002441406, + "step": 1459 + }, + { + "epoch": 20.279598077763215, + "grad_norm": 0.22286680340766907, + "learning_rate": 0.0006, + "loss": 3.9102284908294678, + "step": 1460 + }, + { + "epoch": 20.293577981651374, + "grad_norm": 0.24039050936698914, + "learning_rate": 0.0006, + "loss": 3.928055763244629, + "step": 1461 + }, + { + "epoch": 20.307557885539538, + "grad_norm": 0.2532738447189331, + "learning_rate": 0.0006, + "loss": 3.931753635406494, + "step": 1462 + }, + { + "epoch": 20.321537789427698, + "grad_norm": 0.2206273376941681, + "learning_rate": 0.0006, + "loss": 3.936119556427002, + "step": 1463 + }, + { + "epoch": 20.335517693315857, + "grad_norm": 0.20918945968151093, + "learning_rate": 0.0006, + "loss": 3.9228529930114746, + "step": 1464 + }, + { + "epoch": 20.34949759720402, + "grad_norm": 0.2324502319097519, + "learning_rate": 0.0006, + "loss": 3.9370768070220947, + "step": 1465 + }, + { + "epoch": 20.36347750109218, + "grad_norm": 0.26811033487319946, + "learning_rate": 0.0006, + "loss": 3.968515396118164, + "step": 1466 + }, + { + "epoch": 20.37745740498034, + "grad_norm": 0.2896045744419098, + "learning_rate": 0.0006, + "loss": 3.945124626159668, + "step": 1467 + }, + { + "epoch": 20.3914373088685, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 3.9399516582489014, + "step": 1468 + }, + { + "epoch": 20.405417212756664, + "grad_norm": 0.3076821565628052, + "learning_rate": 0.0006, + "loss": 3.9545583724975586, + "step": 1469 + }, + { + "epoch": 20.419397116644824, + "grad_norm": 0.3019449710845947, + "learning_rate": 0.0006, + "loss": 3.9502270221710205, + "step": 1470 + }, + { + "epoch": 20.433377020532983, + "grad_norm": 0.31832560896873474, + "learning_rate": 0.0006, + "loss": 3.940439224243164, + "step": 1471 + }, + { + "epoch": 20.447356924421143, + "grad_norm": 0.30303657054901123, + "learning_rate": 0.0006, + "loss": 3.9451770782470703, + "step": 1472 + }, + { + "epoch": 20.461336828309307, + "grad_norm": 0.28122979402542114, + "learning_rate": 0.0006, + "loss": 3.934508800506592, + "step": 1473 + }, + { + "epoch": 20.475316732197467, + "grad_norm": 0.27013441920280457, + "learning_rate": 0.0006, + "loss": 3.924323081970215, + "step": 1474 + }, + { + "epoch": 20.489296636085626, + "grad_norm": 0.29052063822746277, + "learning_rate": 0.0006, + "loss": 3.970916748046875, + "step": 1475 + }, + { + "epoch": 20.503276539973786, + "grad_norm": 0.2871626913547516, + "learning_rate": 0.0006, + "loss": 3.945425033569336, + "step": 1476 + }, + { + "epoch": 20.51725644386195, + "grad_norm": 0.2396184206008911, + "learning_rate": 0.0006, + "loss": 3.964290142059326, + "step": 1477 + }, + { + "epoch": 20.53123634775011, + "grad_norm": 0.21942107379436493, + "learning_rate": 0.0006, + "loss": 3.910101890563965, + "step": 1478 + }, + { + "epoch": 20.54521625163827, + "grad_norm": 0.22193685173988342, + "learning_rate": 0.0006, + "loss": 3.914005756378174, + "step": 1479 + }, + { + "epoch": 20.55919615552643, + "grad_norm": 0.20207515358924866, + "learning_rate": 0.0006, + "loss": 3.9575581550598145, + "step": 1480 + }, + { + "epoch": 20.573176059414592, + "grad_norm": 0.17855247855186462, + "learning_rate": 0.0006, + "loss": 3.941490411758423, + "step": 1481 + }, + { + "epoch": 20.587155963302752, + "grad_norm": 0.21268485486507416, + "learning_rate": 0.0006, + "loss": 3.94045352935791, + "step": 1482 + }, + { + "epoch": 20.601135867190912, + "grad_norm": 0.24890053272247314, + "learning_rate": 0.0006, + "loss": 3.932961940765381, + "step": 1483 + }, + { + "epoch": 20.615115771079076, + "grad_norm": 0.23771314322948456, + "learning_rate": 0.0006, + "loss": 3.9067630767822266, + "step": 1484 + }, + { + "epoch": 20.629095674967235, + "grad_norm": 0.20990237593650818, + "learning_rate": 0.0006, + "loss": 3.9476752281188965, + "step": 1485 + }, + { + "epoch": 20.643075578855395, + "grad_norm": 0.20058798789978027, + "learning_rate": 0.0006, + "loss": 3.9350547790527344, + "step": 1486 + }, + { + "epoch": 20.657055482743555, + "grad_norm": 0.1953001767396927, + "learning_rate": 0.0006, + "loss": 3.9437222480773926, + "step": 1487 + }, + { + "epoch": 20.67103538663172, + "grad_norm": 0.18748535215854645, + "learning_rate": 0.0006, + "loss": 3.9336047172546387, + "step": 1488 + }, + { + "epoch": 20.68501529051988, + "grad_norm": 0.18874801695346832, + "learning_rate": 0.0006, + "loss": 3.9042580127716064, + "step": 1489 + }, + { + "epoch": 20.698995194408038, + "grad_norm": 0.1844169795513153, + "learning_rate": 0.0006, + "loss": 3.9302420616149902, + "step": 1490 + }, + { + "epoch": 20.712975098296198, + "grad_norm": 0.18519413471221924, + "learning_rate": 0.0006, + "loss": 3.9527437686920166, + "step": 1491 + }, + { + "epoch": 20.72695500218436, + "grad_norm": 0.20084598660469055, + "learning_rate": 0.0006, + "loss": 3.9161760807037354, + "step": 1492 + }, + { + "epoch": 20.74093490607252, + "grad_norm": 0.2015734612941742, + "learning_rate": 0.0006, + "loss": 3.9466545581817627, + "step": 1493 + }, + { + "epoch": 20.75491480996068, + "grad_norm": 0.2210122048854828, + "learning_rate": 0.0006, + "loss": 3.8994693756103516, + "step": 1494 + }, + { + "epoch": 20.76889471384884, + "grad_norm": 0.23019762337207794, + "learning_rate": 0.0006, + "loss": 3.93685245513916, + "step": 1495 + }, + { + "epoch": 20.782874617737004, + "grad_norm": 0.21246281266212463, + "learning_rate": 0.0006, + "loss": 3.9499399662017822, + "step": 1496 + }, + { + "epoch": 20.796854521625164, + "grad_norm": 0.21142810583114624, + "learning_rate": 0.0006, + "loss": 3.9317150115966797, + "step": 1497 + }, + { + "epoch": 20.810834425513324, + "grad_norm": 0.20230524241924286, + "learning_rate": 0.0006, + "loss": 3.9389750957489014, + "step": 1498 + }, + { + "epoch": 20.824814329401484, + "grad_norm": 0.21096977591514587, + "learning_rate": 0.0006, + "loss": 3.9325194358825684, + "step": 1499 + }, + { + "epoch": 20.838794233289647, + "grad_norm": 0.2309989333152771, + "learning_rate": 0.0006, + "loss": 3.943641185760498, + "step": 1500 + }, + { + "epoch": 20.852774137177807, + "grad_norm": 0.2016306221485138, + "learning_rate": 0.0006, + "loss": 3.986043930053711, + "step": 1501 + }, + { + "epoch": 20.866754041065967, + "grad_norm": 0.2107970118522644, + "learning_rate": 0.0006, + "loss": 3.9219160079956055, + "step": 1502 + }, + { + "epoch": 20.88073394495413, + "grad_norm": 0.21580125391483307, + "learning_rate": 0.0006, + "loss": 3.942014694213867, + "step": 1503 + }, + { + "epoch": 20.89471384884229, + "grad_norm": 0.21348726749420166, + "learning_rate": 0.0006, + "loss": 3.9389920234680176, + "step": 1504 + }, + { + "epoch": 20.90869375273045, + "grad_norm": 0.23094943165779114, + "learning_rate": 0.0006, + "loss": 3.952993392944336, + "step": 1505 + }, + { + "epoch": 20.92267365661861, + "grad_norm": 0.22431740164756775, + "learning_rate": 0.0006, + "loss": 3.897671937942505, + "step": 1506 + }, + { + "epoch": 20.936653560506773, + "grad_norm": 0.20056353509426117, + "learning_rate": 0.0006, + "loss": 3.9100005626678467, + "step": 1507 + }, + { + "epoch": 20.950633464394933, + "grad_norm": 0.20604434609413147, + "learning_rate": 0.0006, + "loss": 3.9486045837402344, + "step": 1508 + }, + { + "epoch": 20.964613368283093, + "grad_norm": 0.22979380190372467, + "learning_rate": 0.0006, + "loss": 3.977163553237915, + "step": 1509 + }, + { + "epoch": 20.978593272171253, + "grad_norm": 0.2421523779630661, + "learning_rate": 0.0006, + "loss": 3.9216256141662598, + "step": 1510 + }, + { + "epoch": 20.992573176059416, + "grad_norm": 0.25776705145835876, + "learning_rate": 0.0006, + "loss": 3.9221739768981934, + "step": 1511 + }, + { + "epoch": 21.0, + "grad_norm": 0.2750694751739502, + "learning_rate": 0.0006, + "loss": 3.938098907470703, + "step": 1512 + }, + { + "epoch": 21.0, + "eval_loss": 4.159763336181641, + "eval_runtime": 44.8663, + "eval_samples_per_second": 54.428, + "eval_steps_per_second": 3.41, + "step": 1512 + }, + { + "epoch": 21.01397990388816, + "grad_norm": 0.24513043463230133, + "learning_rate": 0.0006, + "loss": 3.8939385414123535, + "step": 1513 + }, + { + "epoch": 21.027959807776323, + "grad_norm": 0.22209352254867554, + "learning_rate": 0.0006, + "loss": 3.9044857025146484, + "step": 1514 + }, + { + "epoch": 21.041939711664483, + "grad_norm": 0.22437648475170135, + "learning_rate": 0.0006, + "loss": 3.9325196743011475, + "step": 1515 + }, + { + "epoch": 21.055919615552643, + "grad_norm": 0.21168062090873718, + "learning_rate": 0.0006, + "loss": 3.882176637649536, + "step": 1516 + }, + { + "epoch": 21.069899519440803, + "grad_norm": 0.22334499657154083, + "learning_rate": 0.0006, + "loss": 3.8978934288024902, + "step": 1517 + }, + { + "epoch": 21.083879423328966, + "grad_norm": 0.21038010716438293, + "learning_rate": 0.0006, + "loss": 3.8807029724121094, + "step": 1518 + }, + { + "epoch": 21.097859327217126, + "grad_norm": 0.2243613600730896, + "learning_rate": 0.0006, + "loss": 3.924865961074829, + "step": 1519 + }, + { + "epoch": 21.111839231105286, + "grad_norm": 0.2535616159439087, + "learning_rate": 0.0006, + "loss": 3.9288227558135986, + "step": 1520 + }, + { + "epoch": 21.125819134993446, + "grad_norm": 0.2782756984233856, + "learning_rate": 0.0006, + "loss": 3.908233642578125, + "step": 1521 + }, + { + "epoch": 21.13979903888161, + "grad_norm": 0.2586214542388916, + "learning_rate": 0.0006, + "loss": 3.9151182174682617, + "step": 1522 + }, + { + "epoch": 21.15377894276977, + "grad_norm": 0.22465091943740845, + "learning_rate": 0.0006, + "loss": 3.9209084510803223, + "step": 1523 + }, + { + "epoch": 21.16775884665793, + "grad_norm": 0.2588018774986267, + "learning_rate": 0.0006, + "loss": 3.9295971393585205, + "step": 1524 + }, + { + "epoch": 21.18173875054609, + "grad_norm": 0.2637675702571869, + "learning_rate": 0.0006, + "loss": 3.9353199005126953, + "step": 1525 + }, + { + "epoch": 21.195718654434252, + "grad_norm": 0.2806383967399597, + "learning_rate": 0.0006, + "loss": 3.922337770462036, + "step": 1526 + }, + { + "epoch": 21.209698558322412, + "grad_norm": 0.27103501558303833, + "learning_rate": 0.0006, + "loss": 3.8811073303222656, + "step": 1527 + }, + { + "epoch": 21.22367846221057, + "grad_norm": 0.27203720808029175, + "learning_rate": 0.0006, + "loss": 3.9036178588867188, + "step": 1528 + }, + { + "epoch": 21.23765836609873, + "grad_norm": 0.2783355712890625, + "learning_rate": 0.0006, + "loss": 3.885456085205078, + "step": 1529 + }, + { + "epoch": 21.251638269986895, + "grad_norm": 0.2884930968284607, + "learning_rate": 0.0006, + "loss": 3.8936941623687744, + "step": 1530 + }, + { + "epoch": 21.265618173875055, + "grad_norm": 0.2829558849334717, + "learning_rate": 0.0006, + "loss": 3.927624225616455, + "step": 1531 + }, + { + "epoch": 21.279598077763215, + "grad_norm": 0.2809497117996216, + "learning_rate": 0.0006, + "loss": 3.8896753787994385, + "step": 1532 + }, + { + "epoch": 21.293577981651374, + "grad_norm": 0.27037671208381653, + "learning_rate": 0.0006, + "loss": 3.91316294670105, + "step": 1533 + }, + { + "epoch": 21.307557885539538, + "grad_norm": 0.310051292181015, + "learning_rate": 0.0006, + "loss": 3.9137332439422607, + "step": 1534 + }, + { + "epoch": 21.321537789427698, + "grad_norm": 0.30489876866340637, + "learning_rate": 0.0006, + "loss": 3.9088284969329834, + "step": 1535 + }, + { + "epoch": 21.335517693315857, + "grad_norm": 0.2607756555080414, + "learning_rate": 0.0006, + "loss": 3.9097847938537598, + "step": 1536 + }, + { + "epoch": 21.34949759720402, + "grad_norm": 0.2460775375366211, + "learning_rate": 0.0006, + "loss": 3.941211700439453, + "step": 1537 + }, + { + "epoch": 21.36347750109218, + "grad_norm": 0.24271734058856964, + "learning_rate": 0.0006, + "loss": 3.9140594005584717, + "step": 1538 + }, + { + "epoch": 21.37745740498034, + "grad_norm": 0.20012645423412323, + "learning_rate": 0.0006, + "loss": 3.888446807861328, + "step": 1539 + }, + { + "epoch": 21.3914373088685, + "grad_norm": 0.2196308672428131, + "learning_rate": 0.0006, + "loss": 3.9153785705566406, + "step": 1540 + }, + { + "epoch": 21.405417212756664, + "grad_norm": 0.22184589505195618, + "learning_rate": 0.0006, + "loss": 3.91996431350708, + "step": 1541 + }, + { + "epoch": 21.419397116644824, + "grad_norm": 0.22947315871715546, + "learning_rate": 0.0006, + "loss": 3.9268412590026855, + "step": 1542 + }, + { + "epoch": 21.433377020532983, + "grad_norm": 0.22275054454803467, + "learning_rate": 0.0006, + "loss": 3.909275531768799, + "step": 1543 + }, + { + "epoch": 21.447356924421143, + "grad_norm": 0.23103971779346466, + "learning_rate": 0.0006, + "loss": 3.925635814666748, + "step": 1544 + }, + { + "epoch": 21.461336828309307, + "grad_norm": 0.23379720747470856, + "learning_rate": 0.0006, + "loss": 3.926647186279297, + "step": 1545 + }, + { + "epoch": 21.475316732197467, + "grad_norm": 0.2244282215833664, + "learning_rate": 0.0006, + "loss": 3.9428000450134277, + "step": 1546 + }, + { + "epoch": 21.489296636085626, + "grad_norm": 0.22773298621177673, + "learning_rate": 0.0006, + "loss": 3.9378256797790527, + "step": 1547 + }, + { + "epoch": 21.503276539973786, + "grad_norm": 0.1918657273054123, + "learning_rate": 0.0006, + "loss": 3.904022216796875, + "step": 1548 + }, + { + "epoch": 21.51725644386195, + "grad_norm": 0.18415570259094238, + "learning_rate": 0.0006, + "loss": 3.9105122089385986, + "step": 1549 + }, + { + "epoch": 21.53123634775011, + "grad_norm": 0.22141380608081818, + "learning_rate": 0.0006, + "loss": 3.9153857231140137, + "step": 1550 + }, + { + "epoch": 21.54521625163827, + "grad_norm": 0.22533352673053741, + "learning_rate": 0.0006, + "loss": 3.9148974418640137, + "step": 1551 + }, + { + "epoch": 21.55919615552643, + "grad_norm": 0.2124762088060379, + "learning_rate": 0.0006, + "loss": 3.926311731338501, + "step": 1552 + }, + { + "epoch": 21.573176059414592, + "grad_norm": 0.239680215716362, + "learning_rate": 0.0006, + "loss": 3.9260334968566895, + "step": 1553 + }, + { + "epoch": 21.587155963302752, + "grad_norm": 0.24158740043640137, + "learning_rate": 0.0006, + "loss": 3.933223247528076, + "step": 1554 + }, + { + "epoch": 21.601135867190912, + "grad_norm": 0.2216576784849167, + "learning_rate": 0.0006, + "loss": 3.9065442085266113, + "step": 1555 + }, + { + "epoch": 21.615115771079076, + "grad_norm": 0.20099912583827972, + "learning_rate": 0.0006, + "loss": 3.923278570175171, + "step": 1556 + }, + { + "epoch": 21.629095674967235, + "grad_norm": 0.2337288111448288, + "learning_rate": 0.0006, + "loss": 3.92032527923584, + "step": 1557 + }, + { + "epoch": 21.643075578855395, + "grad_norm": 0.23574814200401306, + "learning_rate": 0.0006, + "loss": 3.896244525909424, + "step": 1558 + }, + { + "epoch": 21.657055482743555, + "grad_norm": 0.21338573098182678, + "learning_rate": 0.0006, + "loss": 3.930345058441162, + "step": 1559 + }, + { + "epoch": 21.67103538663172, + "grad_norm": 0.2375067174434662, + "learning_rate": 0.0006, + "loss": 3.864104986190796, + "step": 1560 + }, + { + "epoch": 21.68501529051988, + "grad_norm": 0.22490349411964417, + "learning_rate": 0.0006, + "loss": 3.883296012878418, + "step": 1561 + }, + { + "epoch": 21.698995194408038, + "grad_norm": 0.23021313548088074, + "learning_rate": 0.0006, + "loss": 3.915200710296631, + "step": 1562 + }, + { + "epoch": 21.712975098296198, + "grad_norm": 0.22590875625610352, + "learning_rate": 0.0006, + "loss": 3.903597354888916, + "step": 1563 + }, + { + "epoch": 21.72695500218436, + "grad_norm": 0.19066260755062103, + "learning_rate": 0.0006, + "loss": 3.9162631034851074, + "step": 1564 + }, + { + "epoch": 21.74093490607252, + "grad_norm": 0.18134327232837677, + "learning_rate": 0.0006, + "loss": 3.9167914390563965, + "step": 1565 + }, + { + "epoch": 21.75491480996068, + "grad_norm": 0.1782190054655075, + "learning_rate": 0.0006, + "loss": 3.900925636291504, + "step": 1566 + }, + { + "epoch": 21.76889471384884, + "grad_norm": 0.19034099578857422, + "learning_rate": 0.0006, + "loss": 3.896559238433838, + "step": 1567 + }, + { + "epoch": 21.782874617737004, + "grad_norm": 0.21509577333927155, + "learning_rate": 0.0006, + "loss": 3.891681671142578, + "step": 1568 + }, + { + "epoch": 21.796854521625164, + "grad_norm": 0.2370351105928421, + "learning_rate": 0.0006, + "loss": 3.886570453643799, + "step": 1569 + }, + { + "epoch": 21.810834425513324, + "grad_norm": 0.25546324253082275, + "learning_rate": 0.0006, + "loss": 3.9247193336486816, + "step": 1570 + }, + { + "epoch": 21.824814329401484, + "grad_norm": 0.2513384222984314, + "learning_rate": 0.0006, + "loss": 3.9120583534240723, + "step": 1571 + }, + { + "epoch": 21.838794233289647, + "grad_norm": 0.24691323935985565, + "learning_rate": 0.0006, + "loss": 3.9144935607910156, + "step": 1572 + }, + { + "epoch": 21.852774137177807, + "grad_norm": 0.2573968172073364, + "learning_rate": 0.0006, + "loss": 3.9517531394958496, + "step": 1573 + }, + { + "epoch": 21.866754041065967, + "grad_norm": 0.25461453199386597, + "learning_rate": 0.0006, + "loss": 3.93508243560791, + "step": 1574 + }, + { + "epoch": 21.88073394495413, + "grad_norm": 0.23756568133831024, + "learning_rate": 0.0006, + "loss": 3.8885269165039062, + "step": 1575 + }, + { + "epoch": 21.89471384884229, + "grad_norm": 0.2193172425031662, + "learning_rate": 0.0006, + "loss": 3.9103426933288574, + "step": 1576 + }, + { + "epoch": 21.90869375273045, + "grad_norm": 0.2350149303674698, + "learning_rate": 0.0006, + "loss": 3.9399590492248535, + "step": 1577 + }, + { + "epoch": 21.92267365661861, + "grad_norm": 0.23759333789348602, + "learning_rate": 0.0006, + "loss": 3.9433584213256836, + "step": 1578 + }, + { + "epoch": 21.936653560506773, + "grad_norm": 0.21108432114124298, + "learning_rate": 0.0006, + "loss": 3.9241819381713867, + "step": 1579 + }, + { + "epoch": 21.950633464394933, + "grad_norm": 0.22088949382305145, + "learning_rate": 0.0006, + "loss": 3.9231910705566406, + "step": 1580 + }, + { + "epoch": 21.964613368283093, + "grad_norm": 0.22125045955181122, + "learning_rate": 0.0006, + "loss": 3.896329164505005, + "step": 1581 + }, + { + "epoch": 21.978593272171253, + "grad_norm": 0.20745202898979187, + "learning_rate": 0.0006, + "loss": 3.8920536041259766, + "step": 1582 + }, + { + "epoch": 21.992573176059416, + "grad_norm": 0.2409721463918686, + "learning_rate": 0.0006, + "loss": 3.9061317443847656, + "step": 1583 + }, + { + "epoch": 22.0, + "grad_norm": 0.2669669985771179, + "learning_rate": 0.0006, + "loss": 3.922062397003174, + "step": 1584 + }, + { + "epoch": 22.0, + "eval_loss": 4.140966415405273, + "eval_runtime": 46.7132, + "eval_samples_per_second": 52.276, + "eval_steps_per_second": 3.275, + "step": 1584 + }, + { + "epoch": 22.01397990388816, + "grad_norm": 0.26155969500541687, + "learning_rate": 0.0006, + "loss": 3.888944625854492, + "step": 1585 + }, + { + "epoch": 22.027959807776323, + "grad_norm": 0.2579149007797241, + "learning_rate": 0.0006, + "loss": 3.8924355506896973, + "step": 1586 + }, + { + "epoch": 22.041939711664483, + "grad_norm": 0.2429896742105484, + "learning_rate": 0.0006, + "loss": 3.8714070320129395, + "step": 1587 + }, + { + "epoch": 22.055919615552643, + "grad_norm": 0.23497673869132996, + "learning_rate": 0.0006, + "loss": 3.905089855194092, + "step": 1588 + }, + { + "epoch": 22.069899519440803, + "grad_norm": 0.24074940383434296, + "learning_rate": 0.0006, + "loss": 3.886845111846924, + "step": 1589 + }, + { + "epoch": 22.083879423328966, + "grad_norm": 0.2226274162530899, + "learning_rate": 0.0006, + "loss": 3.8554329872131348, + "step": 1590 + }, + { + "epoch": 22.097859327217126, + "grad_norm": 0.22924423217773438, + "learning_rate": 0.0006, + "loss": 3.8914356231689453, + "step": 1591 + }, + { + "epoch": 22.111839231105286, + "grad_norm": 0.2459387183189392, + "learning_rate": 0.0006, + "loss": 3.902522087097168, + "step": 1592 + }, + { + "epoch": 22.125819134993446, + "grad_norm": 0.2704590857028961, + "learning_rate": 0.0006, + "loss": 3.896497964859009, + "step": 1593 + }, + { + "epoch": 22.13979903888161, + "grad_norm": 0.2848219871520996, + "learning_rate": 0.0006, + "loss": 3.88423228263855, + "step": 1594 + }, + { + "epoch": 22.15377894276977, + "grad_norm": 0.22996552288532257, + "learning_rate": 0.0006, + "loss": 3.9034953117370605, + "step": 1595 + }, + { + "epoch": 22.16775884665793, + "grad_norm": 0.2117270529270172, + "learning_rate": 0.0006, + "loss": 3.888279914855957, + "step": 1596 + }, + { + "epoch": 22.18173875054609, + "grad_norm": 0.19724160432815552, + "learning_rate": 0.0006, + "loss": 3.860525131225586, + "step": 1597 + }, + { + "epoch": 22.195718654434252, + "grad_norm": 0.2012624740600586, + "learning_rate": 0.0006, + "loss": 3.8930106163024902, + "step": 1598 + }, + { + "epoch": 22.209698558322412, + "grad_norm": 0.20243871212005615, + "learning_rate": 0.0006, + "loss": 3.8727619647979736, + "step": 1599 + }, + { + "epoch": 22.22367846221057, + "grad_norm": 0.21737465262413025, + "learning_rate": 0.0006, + "loss": 3.887969493865967, + "step": 1600 + }, + { + "epoch": 22.23765836609873, + "grad_norm": 0.23969845473766327, + "learning_rate": 0.0006, + "loss": 3.8629722595214844, + "step": 1601 + }, + { + "epoch": 22.251638269986895, + "grad_norm": 0.22874902188777924, + "learning_rate": 0.0006, + "loss": 3.9135584831237793, + "step": 1602 + }, + { + "epoch": 22.265618173875055, + "grad_norm": 0.209506556391716, + "learning_rate": 0.0006, + "loss": 3.8734190464019775, + "step": 1603 + }, + { + "epoch": 22.279598077763215, + "grad_norm": 0.22235789895057678, + "learning_rate": 0.0006, + "loss": 3.884854793548584, + "step": 1604 + }, + { + "epoch": 22.293577981651374, + "grad_norm": 0.21975041925907135, + "learning_rate": 0.0006, + "loss": 3.8860888481140137, + "step": 1605 + }, + { + "epoch": 22.307557885539538, + "grad_norm": 0.21474459767341614, + "learning_rate": 0.0006, + "loss": 3.9052200317382812, + "step": 1606 + }, + { + "epoch": 22.321537789427698, + "grad_norm": 0.2103329747915268, + "learning_rate": 0.0006, + "loss": 3.8516340255737305, + "step": 1607 + }, + { + "epoch": 22.335517693315857, + "grad_norm": 0.1981191635131836, + "learning_rate": 0.0006, + "loss": 3.9017434120178223, + "step": 1608 + }, + { + "epoch": 22.34949759720402, + "grad_norm": 0.20679591596126556, + "learning_rate": 0.0006, + "loss": 3.889885425567627, + "step": 1609 + }, + { + "epoch": 22.36347750109218, + "grad_norm": 0.20809867978096008, + "learning_rate": 0.0006, + "loss": 3.881868362426758, + "step": 1610 + }, + { + "epoch": 22.37745740498034, + "grad_norm": 0.21394680440425873, + "learning_rate": 0.0006, + "loss": 3.89980411529541, + "step": 1611 + }, + { + "epoch": 22.3914373088685, + "grad_norm": 0.2334284782409668, + "learning_rate": 0.0006, + "loss": 3.8672266006469727, + "step": 1612 + }, + { + "epoch": 22.405417212756664, + "grad_norm": 0.26521918177604675, + "learning_rate": 0.0006, + "loss": 3.8918118476867676, + "step": 1613 + }, + { + "epoch": 22.419397116644824, + "grad_norm": 0.2652994394302368, + "learning_rate": 0.0006, + "loss": 3.8683271408081055, + "step": 1614 + }, + { + "epoch": 22.433377020532983, + "grad_norm": 0.2568066716194153, + "learning_rate": 0.0006, + "loss": 3.892523765563965, + "step": 1615 + }, + { + "epoch": 22.447356924421143, + "grad_norm": 0.260052353143692, + "learning_rate": 0.0006, + "loss": 3.897305488586426, + "step": 1616 + }, + { + "epoch": 22.461336828309307, + "grad_norm": 0.2744271457195282, + "learning_rate": 0.0006, + "loss": 3.8962221145629883, + "step": 1617 + }, + { + "epoch": 22.475316732197467, + "grad_norm": 0.23755787312984467, + "learning_rate": 0.0006, + "loss": 3.888184070587158, + "step": 1618 + }, + { + "epoch": 22.489296636085626, + "grad_norm": 0.2515312135219574, + "learning_rate": 0.0006, + "loss": 3.8946003913879395, + "step": 1619 + }, + { + "epoch": 22.503276539973786, + "grad_norm": 0.24835044145584106, + "learning_rate": 0.0006, + "loss": 3.8711423873901367, + "step": 1620 + }, + { + "epoch": 22.51725644386195, + "grad_norm": 0.22615326941013336, + "learning_rate": 0.0006, + "loss": 3.8878846168518066, + "step": 1621 + }, + { + "epoch": 22.53123634775011, + "grad_norm": 0.20482423901557922, + "learning_rate": 0.0006, + "loss": 3.8782598972320557, + "step": 1622 + }, + { + "epoch": 22.54521625163827, + "grad_norm": 0.20436473190784454, + "learning_rate": 0.0006, + "loss": 3.9075279235839844, + "step": 1623 + }, + { + "epoch": 22.55919615552643, + "grad_norm": 0.2066277265548706, + "learning_rate": 0.0006, + "loss": 3.89908766746521, + "step": 1624 + }, + { + "epoch": 22.573176059414592, + "grad_norm": 0.20735307037830353, + "learning_rate": 0.0006, + "loss": 3.865204334259033, + "step": 1625 + }, + { + "epoch": 22.587155963302752, + "grad_norm": 0.20955748856067657, + "learning_rate": 0.0006, + "loss": 3.8835532665252686, + "step": 1626 + }, + { + "epoch": 22.601135867190912, + "grad_norm": 0.21354222297668457, + "learning_rate": 0.0006, + "loss": 3.9012551307678223, + "step": 1627 + }, + { + "epoch": 22.615115771079076, + "grad_norm": 0.2075091004371643, + "learning_rate": 0.0006, + "loss": 3.8733482360839844, + "step": 1628 + }, + { + "epoch": 22.629095674967235, + "grad_norm": 0.20207874476909637, + "learning_rate": 0.0006, + "loss": 3.9193859100341797, + "step": 1629 + }, + { + "epoch": 22.643075578855395, + "grad_norm": 0.21863923966884613, + "learning_rate": 0.0006, + "loss": 3.883518695831299, + "step": 1630 + }, + { + "epoch": 22.657055482743555, + "grad_norm": 0.22117522358894348, + "learning_rate": 0.0006, + "loss": 3.9163284301757812, + "step": 1631 + }, + { + "epoch": 22.67103538663172, + "grad_norm": 0.2078622728586197, + "learning_rate": 0.0006, + "loss": 3.868274688720703, + "step": 1632 + }, + { + "epoch": 22.68501529051988, + "grad_norm": 0.22745893895626068, + "learning_rate": 0.0006, + "loss": 3.9171340465545654, + "step": 1633 + }, + { + "epoch": 22.698995194408038, + "grad_norm": 0.2312736064195633, + "learning_rate": 0.0006, + "loss": 3.9487013816833496, + "step": 1634 + }, + { + "epoch": 22.712975098296198, + "grad_norm": 0.20491497218608856, + "learning_rate": 0.0006, + "loss": 3.91833758354187, + "step": 1635 + }, + { + "epoch": 22.72695500218436, + "grad_norm": 0.1899084597826004, + "learning_rate": 0.0006, + "loss": 3.876225709915161, + "step": 1636 + }, + { + "epoch": 22.74093490607252, + "grad_norm": 0.18581682443618774, + "learning_rate": 0.0006, + "loss": 3.8667988777160645, + "step": 1637 + }, + { + "epoch": 22.75491480996068, + "grad_norm": 0.19855599105358124, + "learning_rate": 0.0006, + "loss": 3.900789260864258, + "step": 1638 + }, + { + "epoch": 22.76889471384884, + "grad_norm": 0.19951458275318146, + "learning_rate": 0.0006, + "loss": 3.8850367069244385, + "step": 1639 + }, + { + "epoch": 22.782874617737004, + "grad_norm": 0.22802744805812836, + "learning_rate": 0.0006, + "loss": 3.9181363582611084, + "step": 1640 + }, + { + "epoch": 22.796854521625164, + "grad_norm": 0.24279919266700745, + "learning_rate": 0.0006, + "loss": 3.8843770027160645, + "step": 1641 + }, + { + "epoch": 22.810834425513324, + "grad_norm": 0.23554913699626923, + "learning_rate": 0.0006, + "loss": 3.8802413940429688, + "step": 1642 + }, + { + "epoch": 22.824814329401484, + "grad_norm": 0.22343270480632782, + "learning_rate": 0.0006, + "loss": 3.8524107933044434, + "step": 1643 + }, + { + "epoch": 22.838794233289647, + "grad_norm": 0.2185724526643753, + "learning_rate": 0.0006, + "loss": 3.9117047786712646, + "step": 1644 + }, + { + "epoch": 22.852774137177807, + "grad_norm": 0.2114841341972351, + "learning_rate": 0.0006, + "loss": 3.90325927734375, + "step": 1645 + }, + { + "epoch": 22.866754041065967, + "grad_norm": 0.21072550117969513, + "learning_rate": 0.0006, + "loss": 3.8988137245178223, + "step": 1646 + }, + { + "epoch": 22.88073394495413, + "grad_norm": 0.2250078171491623, + "learning_rate": 0.0006, + "loss": 3.9201531410217285, + "step": 1647 + }, + { + "epoch": 22.89471384884229, + "grad_norm": 0.20928071439266205, + "learning_rate": 0.0006, + "loss": 3.91666316986084, + "step": 1648 + }, + { + "epoch": 22.90869375273045, + "grad_norm": 0.24096311628818512, + "learning_rate": 0.0006, + "loss": 3.8797364234924316, + "step": 1649 + }, + { + "epoch": 22.92267365661861, + "grad_norm": 0.2591194212436676, + "learning_rate": 0.0006, + "loss": 3.883273124694824, + "step": 1650 + }, + { + "epoch": 22.936653560506773, + "grad_norm": 0.27342668175697327, + "learning_rate": 0.0006, + "loss": 3.8645026683807373, + "step": 1651 + }, + { + "epoch": 22.950633464394933, + "grad_norm": 0.2448573112487793, + "learning_rate": 0.0006, + "loss": 3.9093551635742188, + "step": 1652 + }, + { + "epoch": 22.964613368283093, + "grad_norm": 0.19899503886699677, + "learning_rate": 0.0006, + "loss": 3.9001057147979736, + "step": 1653 + }, + { + "epoch": 22.978593272171253, + "grad_norm": 0.2023746520280838, + "learning_rate": 0.0006, + "loss": 3.886474370956421, + "step": 1654 + }, + { + "epoch": 22.992573176059416, + "grad_norm": 0.19894269108772278, + "learning_rate": 0.0006, + "loss": 3.9004204273223877, + "step": 1655 + }, + { + "epoch": 23.0, + "grad_norm": 0.2401709407567978, + "learning_rate": 0.0006, + "loss": 3.8665566444396973, + "step": 1656 + }, + { + "epoch": 23.0, + "eval_loss": 4.112459659576416, + "eval_runtime": 44.8325, + "eval_samples_per_second": 54.469, + "eval_steps_per_second": 3.413, + "step": 1656 + }, + { + "epoch": 23.01397990388816, + "grad_norm": 0.22662921249866486, + "learning_rate": 0.0006, + "loss": 3.853271961212158, + "step": 1657 + }, + { + "epoch": 23.027959807776323, + "grad_norm": 0.24406856298446655, + "learning_rate": 0.0006, + "loss": 3.8691890239715576, + "step": 1658 + }, + { + "epoch": 23.041939711664483, + "grad_norm": 0.2266651839017868, + "learning_rate": 0.0006, + "loss": 3.838599681854248, + "step": 1659 + }, + { + "epoch": 23.055919615552643, + "grad_norm": 0.22303511202335358, + "learning_rate": 0.0006, + "loss": 3.8678267002105713, + "step": 1660 + }, + { + "epoch": 23.069899519440803, + "grad_norm": 0.2272164225578308, + "learning_rate": 0.0006, + "loss": 3.9045681953430176, + "step": 1661 + }, + { + "epoch": 23.083879423328966, + "grad_norm": 0.25004875659942627, + "learning_rate": 0.0006, + "loss": 3.856503963470459, + "step": 1662 + }, + { + "epoch": 23.097859327217126, + "grad_norm": 0.26016247272491455, + "learning_rate": 0.0006, + "loss": 3.878587007522583, + "step": 1663 + }, + { + "epoch": 23.111839231105286, + "grad_norm": 0.28539901971817017, + "learning_rate": 0.0006, + "loss": 3.864248514175415, + "step": 1664 + }, + { + "epoch": 23.125819134993446, + "grad_norm": 0.27504822611808777, + "learning_rate": 0.0006, + "loss": 3.821448802947998, + "step": 1665 + }, + { + "epoch": 23.13979903888161, + "grad_norm": 0.238910973072052, + "learning_rate": 0.0006, + "loss": 3.8635847568511963, + "step": 1666 + }, + { + "epoch": 23.15377894276977, + "grad_norm": 0.24179652333259583, + "learning_rate": 0.0006, + "loss": 3.8339638710021973, + "step": 1667 + }, + { + "epoch": 23.16775884665793, + "grad_norm": 0.2199544757604599, + "learning_rate": 0.0006, + "loss": 3.868396759033203, + "step": 1668 + }, + { + "epoch": 23.18173875054609, + "grad_norm": 0.1965002566576004, + "learning_rate": 0.0006, + "loss": 3.8761439323425293, + "step": 1669 + }, + { + "epoch": 23.195718654434252, + "grad_norm": 0.20426614582538605, + "learning_rate": 0.0006, + "loss": 3.822899580001831, + "step": 1670 + }, + { + "epoch": 23.209698558322412, + "grad_norm": 0.2197263389825821, + "learning_rate": 0.0006, + "loss": 3.887728452682495, + "step": 1671 + }, + { + "epoch": 23.22367846221057, + "grad_norm": 0.22844573855400085, + "learning_rate": 0.0006, + "loss": 3.8550517559051514, + "step": 1672 + }, + { + "epoch": 23.23765836609873, + "grad_norm": 0.2347746044397354, + "learning_rate": 0.0006, + "loss": 3.903310537338257, + "step": 1673 + }, + { + "epoch": 23.251638269986895, + "grad_norm": 0.24167625606060028, + "learning_rate": 0.0006, + "loss": 3.8397774696350098, + "step": 1674 + }, + { + "epoch": 23.265618173875055, + "grad_norm": 0.2691650688648224, + "learning_rate": 0.0006, + "loss": 3.853254795074463, + "step": 1675 + }, + { + "epoch": 23.279598077763215, + "grad_norm": 0.29421621561050415, + "learning_rate": 0.0006, + "loss": 3.86065411567688, + "step": 1676 + }, + { + "epoch": 23.293577981651374, + "grad_norm": 0.31074345111846924, + "learning_rate": 0.0006, + "loss": 3.8716742992401123, + "step": 1677 + }, + { + "epoch": 23.307557885539538, + "grad_norm": 0.3044569194316864, + "learning_rate": 0.0006, + "loss": 3.8738951683044434, + "step": 1678 + }, + { + "epoch": 23.321537789427698, + "grad_norm": 0.30496764183044434, + "learning_rate": 0.0006, + "loss": 3.884446620941162, + "step": 1679 + }, + { + "epoch": 23.335517693315857, + "grad_norm": 0.31122756004333496, + "learning_rate": 0.0006, + "loss": 3.878495693206787, + "step": 1680 + }, + { + "epoch": 23.34949759720402, + "grad_norm": 0.32268181443214417, + "learning_rate": 0.0006, + "loss": 3.8793649673461914, + "step": 1681 + }, + { + "epoch": 23.36347750109218, + "grad_norm": 0.3297140598297119, + "learning_rate": 0.0006, + "loss": 3.87484073638916, + "step": 1682 + }, + { + "epoch": 23.37745740498034, + "grad_norm": 0.26007479429244995, + "learning_rate": 0.0006, + "loss": 3.8510947227478027, + "step": 1683 + }, + { + "epoch": 23.3914373088685, + "grad_norm": 0.2627335786819458, + "learning_rate": 0.0006, + "loss": 3.8783209323883057, + "step": 1684 + }, + { + "epoch": 23.405417212756664, + "grad_norm": 0.256452739238739, + "learning_rate": 0.0006, + "loss": 3.8594281673431396, + "step": 1685 + }, + { + "epoch": 23.419397116644824, + "grad_norm": 0.23892226815223694, + "learning_rate": 0.0006, + "loss": 3.898951292037964, + "step": 1686 + }, + { + "epoch": 23.433377020532983, + "grad_norm": 0.21625587344169617, + "learning_rate": 0.0006, + "loss": 3.8679966926574707, + "step": 1687 + }, + { + "epoch": 23.447356924421143, + "grad_norm": 0.21924619376659393, + "learning_rate": 0.0006, + "loss": 3.8774075508117676, + "step": 1688 + }, + { + "epoch": 23.461336828309307, + "grad_norm": 0.21500127017498016, + "learning_rate": 0.0006, + "loss": 3.870619297027588, + "step": 1689 + }, + { + "epoch": 23.475316732197467, + "grad_norm": 0.22580556571483612, + "learning_rate": 0.0006, + "loss": 3.887722969055176, + "step": 1690 + }, + { + "epoch": 23.489296636085626, + "grad_norm": 0.2500104308128357, + "learning_rate": 0.0006, + "loss": 3.88789963722229, + "step": 1691 + }, + { + "epoch": 23.503276539973786, + "grad_norm": 0.22462762892246246, + "learning_rate": 0.0006, + "loss": 3.863997459411621, + "step": 1692 + }, + { + "epoch": 23.51725644386195, + "grad_norm": 0.21427781879901886, + "learning_rate": 0.0006, + "loss": 3.8827033042907715, + "step": 1693 + }, + { + "epoch": 23.53123634775011, + "grad_norm": 0.22278577089309692, + "learning_rate": 0.0006, + "loss": 3.8659563064575195, + "step": 1694 + }, + { + "epoch": 23.54521625163827, + "grad_norm": 0.22801144421100616, + "learning_rate": 0.0006, + "loss": 3.9031362533569336, + "step": 1695 + }, + { + "epoch": 23.55919615552643, + "grad_norm": 0.25071898102760315, + "learning_rate": 0.0006, + "loss": 3.887746810913086, + "step": 1696 + }, + { + "epoch": 23.573176059414592, + "grad_norm": 0.2564085125923157, + "learning_rate": 0.0006, + "loss": 3.8918356895446777, + "step": 1697 + }, + { + "epoch": 23.587155963302752, + "grad_norm": 0.24603120982646942, + "learning_rate": 0.0006, + "loss": 3.850416421890259, + "step": 1698 + }, + { + "epoch": 23.601135867190912, + "grad_norm": 0.20539002120494843, + "learning_rate": 0.0006, + "loss": 3.862060070037842, + "step": 1699 + }, + { + "epoch": 23.615115771079076, + "grad_norm": 0.2022249400615692, + "learning_rate": 0.0006, + "loss": 3.899008274078369, + "step": 1700 + }, + { + "epoch": 23.629095674967235, + "grad_norm": 0.2435392290353775, + "learning_rate": 0.0006, + "loss": 3.844388961791992, + "step": 1701 + }, + { + "epoch": 23.643075578855395, + "grad_norm": 0.21146756410598755, + "learning_rate": 0.0006, + "loss": 3.8972439765930176, + "step": 1702 + }, + { + "epoch": 23.657055482743555, + "grad_norm": 0.2025400996208191, + "learning_rate": 0.0006, + "loss": 3.865253448486328, + "step": 1703 + }, + { + "epoch": 23.67103538663172, + "grad_norm": 0.21129970252513885, + "learning_rate": 0.0006, + "loss": 3.8768205642700195, + "step": 1704 + }, + { + "epoch": 23.68501529051988, + "grad_norm": 0.22982284426689148, + "learning_rate": 0.0006, + "loss": 3.8792667388916016, + "step": 1705 + }, + { + "epoch": 23.698995194408038, + "grad_norm": 0.23013733327388763, + "learning_rate": 0.0006, + "loss": 3.880897045135498, + "step": 1706 + }, + { + "epoch": 23.712975098296198, + "grad_norm": 0.2277672290802002, + "learning_rate": 0.0006, + "loss": 3.8738410472869873, + "step": 1707 + }, + { + "epoch": 23.72695500218436, + "grad_norm": 0.2343369573354721, + "learning_rate": 0.0006, + "loss": 3.8587026596069336, + "step": 1708 + }, + { + "epoch": 23.74093490607252, + "grad_norm": 0.23159530758857727, + "learning_rate": 0.0006, + "loss": 3.856306552886963, + "step": 1709 + }, + { + "epoch": 23.75491480996068, + "grad_norm": 0.19541035592556, + "learning_rate": 0.0006, + "loss": 3.8294754028320312, + "step": 1710 + }, + { + "epoch": 23.76889471384884, + "grad_norm": 0.22999322414398193, + "learning_rate": 0.0006, + "loss": 3.882676124572754, + "step": 1711 + }, + { + "epoch": 23.782874617737004, + "grad_norm": 0.23442843556404114, + "learning_rate": 0.0006, + "loss": 3.8887529373168945, + "step": 1712 + }, + { + "epoch": 23.796854521625164, + "grad_norm": 0.22914239764213562, + "learning_rate": 0.0006, + "loss": 3.867673635482788, + "step": 1713 + }, + { + "epoch": 23.810834425513324, + "grad_norm": 0.20683827996253967, + "learning_rate": 0.0006, + "loss": 3.8999581336975098, + "step": 1714 + }, + { + "epoch": 23.824814329401484, + "grad_norm": 0.19281277060508728, + "learning_rate": 0.0006, + "loss": 3.8997726440429688, + "step": 1715 + }, + { + "epoch": 23.838794233289647, + "grad_norm": 0.20058563351631165, + "learning_rate": 0.0006, + "loss": 3.8583860397338867, + "step": 1716 + }, + { + "epoch": 23.852774137177807, + "grad_norm": 0.19856606423854828, + "learning_rate": 0.0006, + "loss": 3.88948392868042, + "step": 1717 + }, + { + "epoch": 23.866754041065967, + "grad_norm": 0.2099323868751526, + "learning_rate": 0.0006, + "loss": 3.878458261489868, + "step": 1718 + }, + { + "epoch": 23.88073394495413, + "grad_norm": 0.22945016622543335, + "learning_rate": 0.0006, + "loss": 3.84116268157959, + "step": 1719 + }, + { + "epoch": 23.89471384884229, + "grad_norm": 0.22646087408065796, + "learning_rate": 0.0006, + "loss": 3.9006617069244385, + "step": 1720 + }, + { + "epoch": 23.90869375273045, + "grad_norm": 0.20282860100269318, + "learning_rate": 0.0006, + "loss": 3.8781144618988037, + "step": 1721 + }, + { + "epoch": 23.92267365661861, + "grad_norm": 0.1918555349111557, + "learning_rate": 0.0006, + "loss": 3.8560891151428223, + "step": 1722 + }, + { + "epoch": 23.936653560506773, + "grad_norm": 0.19286513328552246, + "learning_rate": 0.0006, + "loss": 3.873220920562744, + "step": 1723 + }, + { + "epoch": 23.950633464394933, + "grad_norm": 0.21071338653564453, + "learning_rate": 0.0006, + "loss": 3.9147067070007324, + "step": 1724 + }, + { + "epoch": 23.964613368283093, + "grad_norm": 0.20956715941429138, + "learning_rate": 0.0006, + "loss": 3.8762729167938232, + "step": 1725 + }, + { + "epoch": 23.978593272171253, + "grad_norm": 0.23053105175495148, + "learning_rate": 0.0006, + "loss": 3.873781681060791, + "step": 1726 + }, + { + "epoch": 23.992573176059416, + "grad_norm": 0.2719029486179352, + "learning_rate": 0.0006, + "loss": 3.862342357635498, + "step": 1727 + }, + { + "epoch": 24.0, + "grad_norm": 0.2933610677719116, + "learning_rate": 0.0006, + "loss": 3.8657689094543457, + "step": 1728 + }, + { + "epoch": 24.0, + "eval_loss": 4.0959153175354, + "eval_runtime": 44.3631, + "eval_samples_per_second": 55.046, + "eval_steps_per_second": 3.449, + "step": 1728 + }, + { + "epoch": 24.01397990388816, + "grad_norm": 0.24905365705490112, + "learning_rate": 0.0006, + "loss": 3.838136911392212, + "step": 1729 + }, + { + "epoch": 24.027959807776323, + "grad_norm": 0.25948020815849304, + "learning_rate": 0.0006, + "loss": 3.8581268787384033, + "step": 1730 + }, + { + "epoch": 24.041939711664483, + "grad_norm": 0.24965140223503113, + "learning_rate": 0.0006, + "loss": 3.8628978729248047, + "step": 1731 + }, + { + "epoch": 24.055919615552643, + "grad_norm": 0.23428823053836823, + "learning_rate": 0.0006, + "loss": 3.8188819885253906, + "step": 1732 + }, + { + "epoch": 24.069899519440803, + "grad_norm": 0.22191211581230164, + "learning_rate": 0.0006, + "loss": 3.8616039752960205, + "step": 1733 + }, + { + "epoch": 24.083879423328966, + "grad_norm": 0.20257535576820374, + "learning_rate": 0.0006, + "loss": 3.8632802963256836, + "step": 1734 + }, + { + "epoch": 24.097859327217126, + "grad_norm": 0.20385196805000305, + "learning_rate": 0.0006, + "loss": 3.885817050933838, + "step": 1735 + }, + { + "epoch": 24.111839231105286, + "grad_norm": 0.19921693205833435, + "learning_rate": 0.0006, + "loss": 3.838515043258667, + "step": 1736 + }, + { + "epoch": 24.125819134993446, + "grad_norm": 0.20221556723117828, + "learning_rate": 0.0006, + "loss": 3.8585309982299805, + "step": 1737 + }, + { + "epoch": 24.13979903888161, + "grad_norm": 0.20124691724777222, + "learning_rate": 0.0006, + "loss": 3.81656551361084, + "step": 1738 + }, + { + "epoch": 24.15377894276977, + "grad_norm": 0.1810830533504486, + "learning_rate": 0.0006, + "loss": 3.841783046722412, + "step": 1739 + }, + { + "epoch": 24.16775884665793, + "grad_norm": 0.18414196372032166, + "learning_rate": 0.0006, + "loss": 3.8614797592163086, + "step": 1740 + }, + { + "epoch": 24.18173875054609, + "grad_norm": 0.18930725753307343, + "learning_rate": 0.0006, + "loss": 3.8382534980773926, + "step": 1741 + }, + { + "epoch": 24.195718654434252, + "grad_norm": 0.19658128917217255, + "learning_rate": 0.0006, + "loss": 3.881742477416992, + "step": 1742 + }, + { + "epoch": 24.209698558322412, + "grad_norm": 0.20175589621067047, + "learning_rate": 0.0006, + "loss": 3.8760581016540527, + "step": 1743 + }, + { + "epoch": 24.22367846221057, + "grad_norm": 0.19416265189647675, + "learning_rate": 0.0006, + "loss": 3.8373687267303467, + "step": 1744 + }, + { + "epoch": 24.23765836609873, + "grad_norm": 0.20206521451473236, + "learning_rate": 0.0006, + "loss": 3.8322830200195312, + "step": 1745 + }, + { + "epoch": 24.251638269986895, + "grad_norm": 0.21797429025173187, + "learning_rate": 0.0006, + "loss": 3.849905490875244, + "step": 1746 + }, + { + "epoch": 24.265618173875055, + "grad_norm": 0.21295784413814545, + "learning_rate": 0.0006, + "loss": 3.847714900970459, + "step": 1747 + }, + { + "epoch": 24.279598077763215, + "grad_norm": 0.22023876011371613, + "learning_rate": 0.0006, + "loss": 3.8221592903137207, + "step": 1748 + }, + { + "epoch": 24.293577981651374, + "grad_norm": 0.2125576138496399, + "learning_rate": 0.0006, + "loss": 3.8070976734161377, + "step": 1749 + }, + { + "epoch": 24.307557885539538, + "grad_norm": 0.18673811852931976, + "learning_rate": 0.0006, + "loss": 3.866878032684326, + "step": 1750 + }, + { + "epoch": 24.321537789427698, + "grad_norm": 0.1972627341747284, + "learning_rate": 0.0006, + "loss": 3.846404552459717, + "step": 1751 + }, + { + "epoch": 24.335517693315857, + "grad_norm": 0.21846632659435272, + "learning_rate": 0.0006, + "loss": 3.8528640270233154, + "step": 1752 + }, + { + "epoch": 24.34949759720402, + "grad_norm": 0.22234080731868744, + "learning_rate": 0.0006, + "loss": 3.8268141746520996, + "step": 1753 + }, + { + "epoch": 24.36347750109218, + "grad_norm": 0.23002761602401733, + "learning_rate": 0.0006, + "loss": 3.832444667816162, + "step": 1754 + }, + { + "epoch": 24.37745740498034, + "grad_norm": 0.22526559233665466, + "learning_rate": 0.0006, + "loss": 3.864406108856201, + "step": 1755 + }, + { + "epoch": 24.3914373088685, + "grad_norm": 0.2290039211511612, + "learning_rate": 0.0006, + "loss": 3.8449103832244873, + "step": 1756 + }, + { + "epoch": 24.405417212756664, + "grad_norm": 0.23145617544651031, + "learning_rate": 0.0006, + "loss": 3.8183751106262207, + "step": 1757 + }, + { + "epoch": 24.419397116644824, + "grad_norm": 0.24287554621696472, + "learning_rate": 0.0006, + "loss": 3.809481382369995, + "step": 1758 + }, + { + "epoch": 24.433377020532983, + "grad_norm": 0.2672404646873474, + "learning_rate": 0.0006, + "loss": 3.877800464630127, + "step": 1759 + }, + { + "epoch": 24.447356924421143, + "grad_norm": 0.26292186975479126, + "learning_rate": 0.0006, + "loss": 3.8329367637634277, + "step": 1760 + }, + { + "epoch": 24.461336828309307, + "grad_norm": 0.26235947012901306, + "learning_rate": 0.0006, + "loss": 3.8414158821105957, + "step": 1761 + }, + { + "epoch": 24.475316732197467, + "grad_norm": 0.2638382613658905, + "learning_rate": 0.0006, + "loss": 3.849188804626465, + "step": 1762 + }, + { + "epoch": 24.489296636085626, + "grad_norm": 0.2564602196216583, + "learning_rate": 0.0006, + "loss": 3.865501880645752, + "step": 1763 + }, + { + "epoch": 24.503276539973786, + "grad_norm": 0.21352271735668182, + "learning_rate": 0.0006, + "loss": 3.87910795211792, + "step": 1764 + }, + { + "epoch": 24.51725644386195, + "grad_norm": 0.2470584511756897, + "learning_rate": 0.0006, + "loss": 3.858750343322754, + "step": 1765 + }, + { + "epoch": 24.53123634775011, + "grad_norm": 0.24907536804676056, + "learning_rate": 0.0006, + "loss": 3.8532559871673584, + "step": 1766 + }, + { + "epoch": 24.54521625163827, + "grad_norm": 0.2426205575466156, + "learning_rate": 0.0006, + "loss": 3.8659827709198, + "step": 1767 + }, + { + "epoch": 24.55919615552643, + "grad_norm": 0.23481151461601257, + "learning_rate": 0.0006, + "loss": 3.863948345184326, + "step": 1768 + }, + { + "epoch": 24.573176059414592, + "grad_norm": 0.22717779874801636, + "learning_rate": 0.0006, + "loss": 3.848527193069458, + "step": 1769 + }, + { + "epoch": 24.587155963302752, + "grad_norm": 0.2267129123210907, + "learning_rate": 0.0006, + "loss": 3.8600735664367676, + "step": 1770 + }, + { + "epoch": 24.601135867190912, + "grad_norm": 0.24967710673809052, + "learning_rate": 0.0006, + "loss": 3.84291934967041, + "step": 1771 + }, + { + "epoch": 24.615115771079076, + "grad_norm": 0.25308957695961, + "learning_rate": 0.0006, + "loss": 3.846181631088257, + "step": 1772 + }, + { + "epoch": 24.629095674967235, + "grad_norm": 0.2689298391342163, + "learning_rate": 0.0006, + "loss": 3.8572893142700195, + "step": 1773 + }, + { + "epoch": 24.643075578855395, + "grad_norm": 0.26458555459976196, + "learning_rate": 0.0006, + "loss": 3.8583621978759766, + "step": 1774 + }, + { + "epoch": 24.657055482743555, + "grad_norm": 0.24416811764240265, + "learning_rate": 0.0006, + "loss": 3.8648223876953125, + "step": 1775 + }, + { + "epoch": 24.67103538663172, + "grad_norm": 0.22218526899814606, + "learning_rate": 0.0006, + "loss": 3.839395523071289, + "step": 1776 + }, + { + "epoch": 24.68501529051988, + "grad_norm": 0.2147492915391922, + "learning_rate": 0.0006, + "loss": 3.875734567642212, + "step": 1777 + }, + { + "epoch": 24.698995194408038, + "grad_norm": 0.2346794754266739, + "learning_rate": 0.0006, + "loss": 3.854768991470337, + "step": 1778 + }, + { + "epoch": 24.712975098296198, + "grad_norm": 0.21406520903110504, + "learning_rate": 0.0006, + "loss": 3.8269104957580566, + "step": 1779 + }, + { + "epoch": 24.72695500218436, + "grad_norm": 0.20716224610805511, + "learning_rate": 0.0006, + "loss": 3.8245768547058105, + "step": 1780 + }, + { + "epoch": 24.74093490607252, + "grad_norm": 0.21445901691913605, + "learning_rate": 0.0006, + "loss": 3.8877978324890137, + "step": 1781 + }, + { + "epoch": 24.75491480996068, + "grad_norm": 0.21964985132217407, + "learning_rate": 0.0006, + "loss": 3.8602452278137207, + "step": 1782 + }, + { + "epoch": 24.76889471384884, + "grad_norm": 0.209807351231575, + "learning_rate": 0.0006, + "loss": 3.853428602218628, + "step": 1783 + }, + { + "epoch": 24.782874617737004, + "grad_norm": 0.19564911723136902, + "learning_rate": 0.0006, + "loss": 3.832275867462158, + "step": 1784 + }, + { + "epoch": 24.796854521625164, + "grad_norm": 0.21394333243370056, + "learning_rate": 0.0006, + "loss": 3.8543171882629395, + "step": 1785 + }, + { + "epoch": 24.810834425513324, + "grad_norm": 0.23156948387622833, + "learning_rate": 0.0006, + "loss": 3.8539412021636963, + "step": 1786 + }, + { + "epoch": 24.824814329401484, + "grad_norm": 0.2378678321838379, + "learning_rate": 0.0006, + "loss": 3.8409833908081055, + "step": 1787 + }, + { + "epoch": 24.838794233289647, + "grad_norm": 0.23816189169883728, + "learning_rate": 0.0006, + "loss": 3.855379581451416, + "step": 1788 + }, + { + "epoch": 24.852774137177807, + "grad_norm": 0.23109886050224304, + "learning_rate": 0.0006, + "loss": 3.8689517974853516, + "step": 1789 + }, + { + "epoch": 24.866754041065967, + "grad_norm": 0.2042883038520813, + "learning_rate": 0.0006, + "loss": 3.8730404376983643, + "step": 1790 + }, + { + "epoch": 24.88073394495413, + "grad_norm": 0.2039479911327362, + "learning_rate": 0.0006, + "loss": 3.8474984169006348, + "step": 1791 + }, + { + "epoch": 24.89471384884229, + "grad_norm": 0.213027223944664, + "learning_rate": 0.0006, + "loss": 3.8539695739746094, + "step": 1792 + }, + { + "epoch": 24.90869375273045, + "grad_norm": 0.2280654013156891, + "learning_rate": 0.0006, + "loss": 3.8633079528808594, + "step": 1793 + }, + { + "epoch": 24.92267365661861, + "grad_norm": 0.20864921808242798, + "learning_rate": 0.0006, + "loss": 3.8110368251800537, + "step": 1794 + }, + { + "epoch": 24.936653560506773, + "grad_norm": 0.23002111911773682, + "learning_rate": 0.0006, + "loss": 3.8334741592407227, + "step": 1795 + }, + { + "epoch": 24.950633464394933, + "grad_norm": 0.232331782579422, + "learning_rate": 0.0006, + "loss": 3.871887683868408, + "step": 1796 + }, + { + "epoch": 24.964613368283093, + "grad_norm": 0.24141235649585724, + "learning_rate": 0.0006, + "loss": 3.8614959716796875, + "step": 1797 + }, + { + "epoch": 24.978593272171253, + "grad_norm": 0.2545177638530731, + "learning_rate": 0.0006, + "loss": 3.8563568592071533, + "step": 1798 + }, + { + "epoch": 24.992573176059416, + "grad_norm": 0.25186386704444885, + "learning_rate": 0.0006, + "loss": 3.882166862487793, + "step": 1799 + }, + { + "epoch": 25.0, + "grad_norm": 0.260195791721344, + "learning_rate": 0.0006, + "loss": 3.884554862976074, + "step": 1800 + }, + { + "epoch": 25.0, + "eval_loss": 4.08809757232666, + "eval_runtime": 44.7947, + "eval_samples_per_second": 54.515, + "eval_steps_per_second": 3.416, + "step": 1800 + }, + { + "epoch": 25.01397990388816, + "grad_norm": 0.25396403670310974, + "learning_rate": 0.0006, + "loss": 3.8217287063598633, + "step": 1801 + }, + { + "epoch": 25.027959807776323, + "grad_norm": 0.2773195207118988, + "learning_rate": 0.0006, + "loss": 3.809542417526245, + "step": 1802 + }, + { + "epoch": 25.041939711664483, + "grad_norm": 0.3073263168334961, + "learning_rate": 0.0006, + "loss": 3.825706958770752, + "step": 1803 + }, + { + "epoch": 25.055919615552643, + "grad_norm": 0.30885398387908936, + "learning_rate": 0.0006, + "loss": 3.8081188201904297, + "step": 1804 + }, + { + "epoch": 25.069899519440803, + "grad_norm": 0.27356019616127014, + "learning_rate": 0.0006, + "loss": 3.8538241386413574, + "step": 1805 + }, + { + "epoch": 25.083879423328966, + "grad_norm": 0.22830164432525635, + "learning_rate": 0.0006, + "loss": 3.8246965408325195, + "step": 1806 + }, + { + "epoch": 25.097859327217126, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.8552842140197754, + "step": 1807 + }, + { + "epoch": 25.111839231105286, + "grad_norm": 0.21718722581863403, + "learning_rate": 0.0006, + "loss": 3.8489418029785156, + "step": 1808 + }, + { + "epoch": 25.125819134993446, + "grad_norm": 0.2480861395597458, + "learning_rate": 0.0006, + "loss": 3.821455955505371, + "step": 1809 + }, + { + "epoch": 25.13979903888161, + "grad_norm": 0.2796635627746582, + "learning_rate": 0.0006, + "loss": 3.8202435970306396, + "step": 1810 + }, + { + "epoch": 25.15377894276977, + "grad_norm": 0.2829958200454712, + "learning_rate": 0.0006, + "loss": 3.8293306827545166, + "step": 1811 + }, + { + "epoch": 25.16775884665793, + "grad_norm": 0.2510125935077667, + "learning_rate": 0.0006, + "loss": 3.8342957496643066, + "step": 1812 + }, + { + "epoch": 25.18173875054609, + "grad_norm": 0.22923722863197327, + "learning_rate": 0.0006, + "loss": 3.8448352813720703, + "step": 1813 + }, + { + "epoch": 25.195718654434252, + "grad_norm": 0.21439228951931, + "learning_rate": 0.0006, + "loss": 3.8343517780303955, + "step": 1814 + }, + { + "epoch": 25.209698558322412, + "grad_norm": 0.1965373307466507, + "learning_rate": 0.0006, + "loss": 3.8163528442382812, + "step": 1815 + }, + { + "epoch": 25.22367846221057, + "grad_norm": 0.20121058821678162, + "learning_rate": 0.0006, + "loss": 3.8007280826568604, + "step": 1816 + }, + { + "epoch": 25.23765836609873, + "grad_norm": 0.21383272111415863, + "learning_rate": 0.0006, + "loss": 3.8200385570526123, + "step": 1817 + }, + { + "epoch": 25.251638269986895, + "grad_norm": 0.2066601663827896, + "learning_rate": 0.0006, + "loss": 3.8333921432495117, + "step": 1818 + }, + { + "epoch": 25.265618173875055, + "grad_norm": 0.2104874551296234, + "learning_rate": 0.0006, + "loss": 3.838012218475342, + "step": 1819 + }, + { + "epoch": 25.279598077763215, + "grad_norm": 0.19733119010925293, + "learning_rate": 0.0006, + "loss": 3.835139274597168, + "step": 1820 + }, + { + "epoch": 25.293577981651374, + "grad_norm": 0.2119498997926712, + "learning_rate": 0.0006, + "loss": 3.8099722862243652, + "step": 1821 + }, + { + "epoch": 25.307557885539538, + "grad_norm": 0.21863529086112976, + "learning_rate": 0.0006, + "loss": 3.7801573276519775, + "step": 1822 + }, + { + "epoch": 25.321537789427698, + "grad_norm": 0.2113322764635086, + "learning_rate": 0.0006, + "loss": 3.809903621673584, + "step": 1823 + }, + { + "epoch": 25.335517693315857, + "grad_norm": 0.21594023704528809, + "learning_rate": 0.0006, + "loss": 3.8485071659088135, + "step": 1824 + }, + { + "epoch": 25.34949759720402, + "grad_norm": 0.21475964784622192, + "learning_rate": 0.0006, + "loss": 3.7894768714904785, + "step": 1825 + }, + { + "epoch": 25.36347750109218, + "grad_norm": 0.21174900233745575, + "learning_rate": 0.0006, + "loss": 3.821711540222168, + "step": 1826 + }, + { + "epoch": 25.37745740498034, + "grad_norm": 0.2065584659576416, + "learning_rate": 0.0006, + "loss": 3.8439841270446777, + "step": 1827 + }, + { + "epoch": 25.3914373088685, + "grad_norm": 0.19157007336616516, + "learning_rate": 0.0006, + "loss": 3.864245891571045, + "step": 1828 + }, + { + "epoch": 25.405417212756664, + "grad_norm": 0.19983816146850586, + "learning_rate": 0.0006, + "loss": 3.8317415714263916, + "step": 1829 + }, + { + "epoch": 25.419397116644824, + "grad_norm": 0.20506152510643005, + "learning_rate": 0.0006, + "loss": 3.8009896278381348, + "step": 1830 + }, + { + "epoch": 25.433377020532983, + "grad_norm": 0.19056960940361023, + "learning_rate": 0.0006, + "loss": 3.8383498191833496, + "step": 1831 + }, + { + "epoch": 25.447356924421143, + "grad_norm": 0.19262190163135529, + "learning_rate": 0.0006, + "loss": 3.838902235031128, + "step": 1832 + }, + { + "epoch": 25.461336828309307, + "grad_norm": 0.19859355688095093, + "learning_rate": 0.0006, + "loss": 3.82452392578125, + "step": 1833 + }, + { + "epoch": 25.475316732197467, + "grad_norm": 0.2144225388765335, + "learning_rate": 0.0006, + "loss": 3.8110032081604004, + "step": 1834 + }, + { + "epoch": 25.489296636085626, + "grad_norm": 0.20566298067569733, + "learning_rate": 0.0006, + "loss": 3.8662471771240234, + "step": 1835 + }, + { + "epoch": 25.503276539973786, + "grad_norm": 0.2071852684020996, + "learning_rate": 0.0006, + "loss": 3.821134090423584, + "step": 1836 + }, + { + "epoch": 25.51725644386195, + "grad_norm": 0.2095036506652832, + "learning_rate": 0.0006, + "loss": 3.824092388153076, + "step": 1837 + }, + { + "epoch": 25.53123634775011, + "grad_norm": 0.20136208832263947, + "learning_rate": 0.0006, + "loss": 3.8669862747192383, + "step": 1838 + }, + { + "epoch": 25.54521625163827, + "grad_norm": 0.1983811855316162, + "learning_rate": 0.0006, + "loss": 3.8120107650756836, + "step": 1839 + }, + { + "epoch": 25.55919615552643, + "grad_norm": 0.22859714925289154, + "learning_rate": 0.0006, + "loss": 3.8519299030303955, + "step": 1840 + }, + { + "epoch": 25.573176059414592, + "grad_norm": 0.23672667145729065, + "learning_rate": 0.0006, + "loss": 3.8245458602905273, + "step": 1841 + }, + { + "epoch": 25.587155963302752, + "grad_norm": 0.22698380053043365, + "learning_rate": 0.0006, + "loss": 3.8406805992126465, + "step": 1842 + }, + { + "epoch": 25.601135867190912, + "grad_norm": 0.25684037804603577, + "learning_rate": 0.0006, + "loss": 3.8584351539611816, + "step": 1843 + }, + { + "epoch": 25.615115771079076, + "grad_norm": 0.28180673718452454, + "learning_rate": 0.0006, + "loss": 3.8085098266601562, + "step": 1844 + }, + { + "epoch": 25.629095674967235, + "grad_norm": 0.2814631462097168, + "learning_rate": 0.0006, + "loss": 3.845083236694336, + "step": 1845 + }, + { + "epoch": 25.643075578855395, + "grad_norm": 0.23630981147289276, + "learning_rate": 0.0006, + "loss": 3.847749710083008, + "step": 1846 + }, + { + "epoch": 25.657055482743555, + "grad_norm": 0.22463662922382355, + "learning_rate": 0.0006, + "loss": 3.8172082901000977, + "step": 1847 + }, + { + "epoch": 25.67103538663172, + "grad_norm": 0.26551681756973267, + "learning_rate": 0.0006, + "loss": 3.8205654621124268, + "step": 1848 + }, + { + "epoch": 25.68501529051988, + "grad_norm": 0.27824243903160095, + "learning_rate": 0.0006, + "loss": 3.846076011657715, + "step": 1849 + }, + { + "epoch": 25.698995194408038, + "grad_norm": 0.266998291015625, + "learning_rate": 0.0006, + "loss": 3.8543574810028076, + "step": 1850 + }, + { + "epoch": 25.712975098296198, + "grad_norm": 0.22980351746082306, + "learning_rate": 0.0006, + "loss": 3.855511426925659, + "step": 1851 + }, + { + "epoch": 25.72695500218436, + "grad_norm": 0.23482872545719147, + "learning_rate": 0.0006, + "loss": 3.8687663078308105, + "step": 1852 + }, + { + "epoch": 25.74093490607252, + "grad_norm": 0.21119585633277893, + "learning_rate": 0.0006, + "loss": 3.8147101402282715, + "step": 1853 + }, + { + "epoch": 25.75491480996068, + "grad_norm": 0.21200446784496307, + "learning_rate": 0.0006, + "loss": 3.858473777770996, + "step": 1854 + }, + { + "epoch": 25.76889471384884, + "grad_norm": 0.20497842133045197, + "learning_rate": 0.0006, + "loss": 3.8545501232147217, + "step": 1855 + }, + { + "epoch": 25.782874617737004, + "grad_norm": 0.19328081607818604, + "learning_rate": 0.0006, + "loss": 3.7941341400146484, + "step": 1856 + }, + { + "epoch": 25.796854521625164, + "grad_norm": 0.2191578894853592, + "learning_rate": 0.0006, + "loss": 3.8408665657043457, + "step": 1857 + }, + { + "epoch": 25.810834425513324, + "grad_norm": 0.2548826038837433, + "learning_rate": 0.0006, + "loss": 3.854130744934082, + "step": 1858 + }, + { + "epoch": 25.824814329401484, + "grad_norm": 0.2290351390838623, + "learning_rate": 0.0006, + "loss": 3.8680176734924316, + "step": 1859 + }, + { + "epoch": 25.838794233289647, + "grad_norm": 0.20760944485664368, + "learning_rate": 0.0006, + "loss": 3.83731746673584, + "step": 1860 + }, + { + "epoch": 25.852774137177807, + "grad_norm": 0.19587582349777222, + "learning_rate": 0.0006, + "loss": 3.8173444271087646, + "step": 1861 + }, + { + "epoch": 25.866754041065967, + "grad_norm": 0.20762693881988525, + "learning_rate": 0.0006, + "loss": 3.8479790687561035, + "step": 1862 + }, + { + "epoch": 25.88073394495413, + "grad_norm": 0.20633186399936676, + "learning_rate": 0.0006, + "loss": 3.852285385131836, + "step": 1863 + }, + { + "epoch": 25.89471384884229, + "grad_norm": 0.21484960615634918, + "learning_rate": 0.0006, + "loss": 3.832592725753784, + "step": 1864 + }, + { + "epoch": 25.90869375273045, + "grad_norm": 0.19569595158100128, + "learning_rate": 0.0006, + "loss": 3.838071584701538, + "step": 1865 + }, + { + "epoch": 25.92267365661861, + "grad_norm": 0.19532904028892517, + "learning_rate": 0.0006, + "loss": 3.854252815246582, + "step": 1866 + }, + { + "epoch": 25.936653560506773, + "grad_norm": 0.1909649819135666, + "learning_rate": 0.0006, + "loss": 3.8444578647613525, + "step": 1867 + }, + { + "epoch": 25.950633464394933, + "grad_norm": 0.17476283013820648, + "learning_rate": 0.0006, + "loss": 3.836519241333008, + "step": 1868 + }, + { + "epoch": 25.964613368283093, + "grad_norm": 0.1895206719636917, + "learning_rate": 0.0006, + "loss": 3.8282582759857178, + "step": 1869 + }, + { + "epoch": 25.978593272171253, + "grad_norm": 0.20038437843322754, + "learning_rate": 0.0006, + "loss": 3.80542254447937, + "step": 1870 + }, + { + "epoch": 25.992573176059416, + "grad_norm": 0.20728608965873718, + "learning_rate": 0.0006, + "loss": 3.8584811687469482, + "step": 1871 + }, + { + "epoch": 26.0, + "grad_norm": 0.22110891342163086, + "learning_rate": 0.0006, + "loss": 3.8020238876342773, + "step": 1872 + }, + { + "epoch": 26.0, + "eval_loss": 4.072164058685303, + "eval_runtime": 44.9089, + "eval_samples_per_second": 54.377, + "eval_steps_per_second": 3.407, + "step": 1872 + }, + { + "epoch": 26.01397990388816, + "grad_norm": 0.2222519814968109, + "learning_rate": 0.0006, + "loss": 3.8309168815612793, + "step": 1873 + }, + { + "epoch": 26.027959807776323, + "grad_norm": 0.2637656033039093, + "learning_rate": 0.0006, + "loss": 3.8025143146514893, + "step": 1874 + }, + { + "epoch": 26.041939711664483, + "grad_norm": 0.2665974795818329, + "learning_rate": 0.0006, + "loss": 3.8244004249572754, + "step": 1875 + }, + { + "epoch": 26.055919615552643, + "grad_norm": 0.22475720942020416, + "learning_rate": 0.0006, + "loss": 3.80039119720459, + "step": 1876 + }, + { + "epoch": 26.069899519440803, + "grad_norm": 0.22994336485862732, + "learning_rate": 0.0006, + "loss": 3.7700726985931396, + "step": 1877 + }, + { + "epoch": 26.083879423328966, + "grad_norm": 0.24214622378349304, + "learning_rate": 0.0006, + "loss": 3.818725109100342, + "step": 1878 + }, + { + "epoch": 26.097859327217126, + "grad_norm": 0.22701293230056763, + "learning_rate": 0.0006, + "loss": 3.833803176879883, + "step": 1879 + }, + { + "epoch": 26.111839231105286, + "grad_norm": 0.21452295780181885, + "learning_rate": 0.0006, + "loss": 3.8391427993774414, + "step": 1880 + }, + { + "epoch": 26.125819134993446, + "grad_norm": 0.20179636776447296, + "learning_rate": 0.0006, + "loss": 3.802957057952881, + "step": 1881 + }, + { + "epoch": 26.13979903888161, + "grad_norm": 0.2087477445602417, + "learning_rate": 0.0006, + "loss": 3.8339905738830566, + "step": 1882 + }, + { + "epoch": 26.15377894276977, + "grad_norm": 0.23583556711673737, + "learning_rate": 0.0006, + "loss": 3.802438259124756, + "step": 1883 + }, + { + "epoch": 26.16775884665793, + "grad_norm": 0.2504311501979828, + "learning_rate": 0.0006, + "loss": 3.80244517326355, + "step": 1884 + }, + { + "epoch": 26.18173875054609, + "grad_norm": 0.24903984367847443, + "learning_rate": 0.0006, + "loss": 3.788865566253662, + "step": 1885 + }, + { + "epoch": 26.195718654434252, + "grad_norm": 0.2707931101322174, + "learning_rate": 0.0006, + "loss": 3.800051212310791, + "step": 1886 + }, + { + "epoch": 26.209698558322412, + "grad_norm": 0.24902892112731934, + "learning_rate": 0.0006, + "loss": 3.8068337440490723, + "step": 1887 + }, + { + "epoch": 26.22367846221057, + "grad_norm": 0.22655536234378815, + "learning_rate": 0.0006, + "loss": 3.779439926147461, + "step": 1888 + }, + { + "epoch": 26.23765836609873, + "grad_norm": 0.24797996878623962, + "learning_rate": 0.0006, + "loss": 3.822831153869629, + "step": 1889 + }, + { + "epoch": 26.251638269986895, + "grad_norm": 0.2821420431137085, + "learning_rate": 0.0006, + "loss": 3.807954788208008, + "step": 1890 + }, + { + "epoch": 26.265618173875055, + "grad_norm": 0.30392691493034363, + "learning_rate": 0.0006, + "loss": 3.776951789855957, + "step": 1891 + }, + { + "epoch": 26.279598077763215, + "grad_norm": 0.32641273736953735, + "learning_rate": 0.0006, + "loss": 3.8216311931610107, + "step": 1892 + }, + { + "epoch": 26.293577981651374, + "grad_norm": 0.32674387097358704, + "learning_rate": 0.0006, + "loss": 3.815596580505371, + "step": 1893 + }, + { + "epoch": 26.307557885539538, + "grad_norm": 0.29137250781059265, + "learning_rate": 0.0006, + "loss": 3.8170812129974365, + "step": 1894 + }, + { + "epoch": 26.321537789427698, + "grad_norm": 0.24291734397411346, + "learning_rate": 0.0006, + "loss": 3.810352087020874, + "step": 1895 + }, + { + "epoch": 26.335517693315857, + "grad_norm": 0.24023209512233734, + "learning_rate": 0.0006, + "loss": 3.8075947761535645, + "step": 1896 + }, + { + "epoch": 26.34949759720402, + "grad_norm": 0.24334804713726044, + "learning_rate": 0.0006, + "loss": 3.831556797027588, + "step": 1897 + }, + { + "epoch": 26.36347750109218, + "grad_norm": 0.2109663337469101, + "learning_rate": 0.0006, + "loss": 3.838347911834717, + "step": 1898 + }, + { + "epoch": 26.37745740498034, + "grad_norm": 0.19668002426624298, + "learning_rate": 0.0006, + "loss": 3.774737596511841, + "step": 1899 + }, + { + "epoch": 26.3914373088685, + "grad_norm": 0.21329134702682495, + "learning_rate": 0.0006, + "loss": 3.8237252235412598, + "step": 1900 + }, + { + "epoch": 26.405417212756664, + "grad_norm": 0.20381781458854675, + "learning_rate": 0.0006, + "loss": 3.802569627761841, + "step": 1901 + }, + { + "epoch": 26.419397116644824, + "grad_norm": 0.19083160161972046, + "learning_rate": 0.0006, + "loss": 3.8301358222961426, + "step": 1902 + }, + { + "epoch": 26.433377020532983, + "grad_norm": 0.20012904703617096, + "learning_rate": 0.0006, + "loss": 3.7966408729553223, + "step": 1903 + }, + { + "epoch": 26.447356924421143, + "grad_norm": 0.19483457505702972, + "learning_rate": 0.0006, + "loss": 3.8431968688964844, + "step": 1904 + }, + { + "epoch": 26.461336828309307, + "grad_norm": 0.19946353137493134, + "learning_rate": 0.0006, + "loss": 3.8023815155029297, + "step": 1905 + }, + { + "epoch": 26.475316732197467, + "grad_norm": 0.1984100341796875, + "learning_rate": 0.0006, + "loss": 3.8283071517944336, + "step": 1906 + }, + { + "epoch": 26.489296636085626, + "grad_norm": 0.2148299664258957, + "learning_rate": 0.0006, + "loss": 3.8377504348754883, + "step": 1907 + }, + { + "epoch": 26.503276539973786, + "grad_norm": 0.22139184176921844, + "learning_rate": 0.0006, + "loss": 3.823051691055298, + "step": 1908 + }, + { + "epoch": 26.51725644386195, + "grad_norm": 0.18289034068584442, + "learning_rate": 0.0006, + "loss": 3.8027071952819824, + "step": 1909 + }, + { + "epoch": 26.53123634775011, + "grad_norm": 0.1816026121377945, + "learning_rate": 0.0006, + "loss": 3.823786735534668, + "step": 1910 + }, + { + "epoch": 26.54521625163827, + "grad_norm": 0.19074322283267975, + "learning_rate": 0.0006, + "loss": 3.813331127166748, + "step": 1911 + }, + { + "epoch": 26.55919615552643, + "grad_norm": 0.20301467180252075, + "learning_rate": 0.0006, + "loss": 3.8218350410461426, + "step": 1912 + }, + { + "epoch": 26.573176059414592, + "grad_norm": 0.25266432762145996, + "learning_rate": 0.0006, + "loss": 3.8455142974853516, + "step": 1913 + }, + { + "epoch": 26.587155963302752, + "grad_norm": 0.25804755091667175, + "learning_rate": 0.0006, + "loss": 3.799227476119995, + "step": 1914 + }, + { + "epoch": 26.601135867190912, + "grad_norm": 0.2555372416973114, + "learning_rate": 0.0006, + "loss": 3.8125686645507812, + "step": 1915 + }, + { + "epoch": 26.615115771079076, + "grad_norm": 0.2266194075345993, + "learning_rate": 0.0006, + "loss": 3.858363628387451, + "step": 1916 + }, + { + "epoch": 26.629095674967235, + "grad_norm": 0.1933048665523529, + "learning_rate": 0.0006, + "loss": 3.8078083992004395, + "step": 1917 + }, + { + "epoch": 26.643075578855395, + "grad_norm": 0.19936731457710266, + "learning_rate": 0.0006, + "loss": 3.81748628616333, + "step": 1918 + }, + { + "epoch": 26.657055482743555, + "grad_norm": 0.22041693329811096, + "learning_rate": 0.0006, + "loss": 3.833272933959961, + "step": 1919 + }, + { + "epoch": 26.67103538663172, + "grad_norm": 0.20679150521755219, + "learning_rate": 0.0006, + "loss": 3.8127288818359375, + "step": 1920 + }, + { + "epoch": 26.68501529051988, + "grad_norm": 0.21545100212097168, + "learning_rate": 0.0006, + "loss": 3.816051483154297, + "step": 1921 + }, + { + "epoch": 26.698995194408038, + "grad_norm": 0.23554518818855286, + "learning_rate": 0.0006, + "loss": 3.8180980682373047, + "step": 1922 + }, + { + "epoch": 26.712975098296198, + "grad_norm": 0.21942466497421265, + "learning_rate": 0.0006, + "loss": 3.803107976913452, + "step": 1923 + }, + { + "epoch": 26.72695500218436, + "grad_norm": 0.22335010766983032, + "learning_rate": 0.0006, + "loss": 3.847890853881836, + "step": 1924 + }, + { + "epoch": 26.74093490607252, + "grad_norm": 0.24731314182281494, + "learning_rate": 0.0006, + "loss": 3.7945008277893066, + "step": 1925 + }, + { + "epoch": 26.75491480996068, + "grad_norm": 0.2804568111896515, + "learning_rate": 0.0006, + "loss": 3.8400068283081055, + "step": 1926 + }, + { + "epoch": 26.76889471384884, + "grad_norm": 0.28787222504615784, + "learning_rate": 0.0006, + "loss": 3.839771270751953, + "step": 1927 + }, + { + "epoch": 26.782874617737004, + "grad_norm": 0.2949632406234741, + "learning_rate": 0.0006, + "loss": 3.8225326538085938, + "step": 1928 + }, + { + "epoch": 26.796854521625164, + "grad_norm": 0.31546032428741455, + "learning_rate": 0.0006, + "loss": 3.8182597160339355, + "step": 1929 + }, + { + "epoch": 26.810834425513324, + "grad_norm": 0.2956962585449219, + "learning_rate": 0.0006, + "loss": 3.8315680027008057, + "step": 1930 + }, + { + "epoch": 26.824814329401484, + "grad_norm": 0.26943835616111755, + "learning_rate": 0.0006, + "loss": 3.787720203399658, + "step": 1931 + }, + { + "epoch": 26.838794233289647, + "grad_norm": 0.24272359907627106, + "learning_rate": 0.0006, + "loss": 3.7973692417144775, + "step": 1932 + }, + { + "epoch": 26.852774137177807, + "grad_norm": 0.20553994178771973, + "learning_rate": 0.0006, + "loss": 3.8241593837738037, + "step": 1933 + }, + { + "epoch": 26.866754041065967, + "grad_norm": 0.21927912533283234, + "learning_rate": 0.0006, + "loss": 3.8608899116516113, + "step": 1934 + }, + { + "epoch": 26.88073394495413, + "grad_norm": 0.22878016531467438, + "learning_rate": 0.0006, + "loss": 3.8341972827911377, + "step": 1935 + }, + { + "epoch": 26.89471384884229, + "grad_norm": 0.2085554301738739, + "learning_rate": 0.0006, + "loss": 3.8261351585388184, + "step": 1936 + }, + { + "epoch": 26.90869375273045, + "grad_norm": 0.21259072422981262, + "learning_rate": 0.0006, + "loss": 3.862056255340576, + "step": 1937 + }, + { + "epoch": 26.92267365661861, + "grad_norm": 0.21354122459888458, + "learning_rate": 0.0006, + "loss": 3.80879545211792, + "step": 1938 + }, + { + "epoch": 26.936653560506773, + "grad_norm": 0.2350253462791443, + "learning_rate": 0.0006, + "loss": 3.817826271057129, + "step": 1939 + }, + { + "epoch": 26.950633464394933, + "grad_norm": 0.23833836615085602, + "learning_rate": 0.0006, + "loss": 3.8220884799957275, + "step": 1940 + }, + { + "epoch": 26.964613368283093, + "grad_norm": 0.2368069440126419, + "learning_rate": 0.0006, + "loss": 3.843264579772949, + "step": 1941 + }, + { + "epoch": 26.978593272171253, + "grad_norm": 0.22663559019565582, + "learning_rate": 0.0006, + "loss": 3.81339430809021, + "step": 1942 + }, + { + "epoch": 26.992573176059416, + "grad_norm": 0.2151402235031128, + "learning_rate": 0.0006, + "loss": 3.8262834548950195, + "step": 1943 + }, + { + "epoch": 27.0, + "grad_norm": 0.24320295453071594, + "learning_rate": 0.0006, + "loss": 3.858567237854004, + "step": 1944 + }, + { + "epoch": 27.0, + "eval_loss": 4.0613322257995605, + "eval_runtime": 44.766, + "eval_samples_per_second": 54.55, + "eval_steps_per_second": 3.418, + "step": 1944 + }, + { + "epoch": 27.01397990388816, + "grad_norm": 0.21188032627105713, + "learning_rate": 0.0006, + "loss": 3.7631278038024902, + "step": 1945 + }, + { + "epoch": 27.027959807776323, + "grad_norm": 0.22298137843608856, + "learning_rate": 0.0006, + "loss": 3.784029245376587, + "step": 1946 + }, + { + "epoch": 27.041939711664483, + "grad_norm": 0.26530158519744873, + "learning_rate": 0.0006, + "loss": 3.795860767364502, + "step": 1947 + }, + { + "epoch": 27.055919615552643, + "grad_norm": 0.24476729333400726, + "learning_rate": 0.0006, + "loss": 3.77512264251709, + "step": 1948 + }, + { + "epoch": 27.069899519440803, + "grad_norm": 0.1934421956539154, + "learning_rate": 0.0006, + "loss": 3.7797446250915527, + "step": 1949 + }, + { + "epoch": 27.083879423328966, + "grad_norm": 0.19777092337608337, + "learning_rate": 0.0006, + "loss": 3.798935890197754, + "step": 1950 + }, + { + "epoch": 27.097859327217126, + "grad_norm": 0.2071693390607834, + "learning_rate": 0.0006, + "loss": 3.763094425201416, + "step": 1951 + }, + { + "epoch": 27.111839231105286, + "grad_norm": 0.18394742906093597, + "learning_rate": 0.0006, + "loss": 3.7892322540283203, + "step": 1952 + }, + { + "epoch": 27.125819134993446, + "grad_norm": 0.17878273129463196, + "learning_rate": 0.0006, + "loss": 3.787968158721924, + "step": 1953 + }, + { + "epoch": 27.13979903888161, + "grad_norm": 0.18792171776294708, + "learning_rate": 0.0006, + "loss": 3.7719640731811523, + "step": 1954 + }, + { + "epoch": 27.15377894276977, + "grad_norm": 0.18718759715557098, + "learning_rate": 0.0006, + "loss": 3.791835308074951, + "step": 1955 + }, + { + "epoch": 27.16775884665793, + "grad_norm": 0.18716055154800415, + "learning_rate": 0.0006, + "loss": 3.7490220069885254, + "step": 1956 + }, + { + "epoch": 27.18173875054609, + "grad_norm": 0.18429182469844818, + "learning_rate": 0.0006, + "loss": 3.8020081520080566, + "step": 1957 + }, + { + "epoch": 27.195718654434252, + "grad_norm": 0.18571704626083374, + "learning_rate": 0.0006, + "loss": 3.8152215480804443, + "step": 1958 + }, + { + "epoch": 27.209698558322412, + "grad_norm": 0.1788843423128128, + "learning_rate": 0.0006, + "loss": 3.8173317909240723, + "step": 1959 + }, + { + "epoch": 27.22367846221057, + "grad_norm": 0.20459426939487457, + "learning_rate": 0.0006, + "loss": 3.7760040760040283, + "step": 1960 + }, + { + "epoch": 27.23765836609873, + "grad_norm": 0.22360935807228088, + "learning_rate": 0.0006, + "loss": 3.8140203952789307, + "step": 1961 + }, + { + "epoch": 27.251638269986895, + "grad_norm": 0.2062767595052719, + "learning_rate": 0.0006, + "loss": 3.792001247406006, + "step": 1962 + }, + { + "epoch": 27.265618173875055, + "grad_norm": 0.20628073811531067, + "learning_rate": 0.0006, + "loss": 3.7873167991638184, + "step": 1963 + }, + { + "epoch": 27.279598077763215, + "grad_norm": 0.19888348877429962, + "learning_rate": 0.0006, + "loss": 3.7903614044189453, + "step": 1964 + }, + { + "epoch": 27.293577981651374, + "grad_norm": 0.22033332288265228, + "learning_rate": 0.0006, + "loss": 3.802497148513794, + "step": 1965 + }, + { + "epoch": 27.307557885539538, + "grad_norm": 0.23476941883563995, + "learning_rate": 0.0006, + "loss": 3.794090986251831, + "step": 1966 + }, + { + "epoch": 27.321537789427698, + "grad_norm": 0.19639968872070312, + "learning_rate": 0.0006, + "loss": 3.831794023513794, + "step": 1967 + }, + { + "epoch": 27.335517693315857, + "grad_norm": 0.18169641494750977, + "learning_rate": 0.0006, + "loss": 3.7687768936157227, + "step": 1968 + }, + { + "epoch": 27.34949759720402, + "grad_norm": 0.17781762778759003, + "learning_rate": 0.0006, + "loss": 3.7868471145629883, + "step": 1969 + }, + { + "epoch": 27.36347750109218, + "grad_norm": 0.18990416824817657, + "learning_rate": 0.0006, + "loss": 3.8340392112731934, + "step": 1970 + }, + { + "epoch": 27.37745740498034, + "grad_norm": 0.2031438797712326, + "learning_rate": 0.0006, + "loss": 3.804513454437256, + "step": 1971 + }, + { + "epoch": 27.3914373088685, + "grad_norm": 0.21233421564102173, + "learning_rate": 0.0006, + "loss": 3.7908449172973633, + "step": 1972 + }, + { + "epoch": 27.405417212756664, + "grad_norm": 0.22480927407741547, + "learning_rate": 0.0006, + "loss": 3.7894086837768555, + "step": 1973 + }, + { + "epoch": 27.419397116644824, + "grad_norm": 0.22713422775268555, + "learning_rate": 0.0006, + "loss": 3.826005458831787, + "step": 1974 + }, + { + "epoch": 27.433377020532983, + "grad_norm": 0.21637366712093353, + "learning_rate": 0.0006, + "loss": 3.8232319355010986, + "step": 1975 + }, + { + "epoch": 27.447356924421143, + "grad_norm": 0.24092449247837067, + "learning_rate": 0.0006, + "loss": 3.813279628753662, + "step": 1976 + }, + { + "epoch": 27.461336828309307, + "grad_norm": 0.21143047511577606, + "learning_rate": 0.0006, + "loss": 3.811586856842041, + "step": 1977 + }, + { + "epoch": 27.475316732197467, + "grad_norm": 0.21049432456493378, + "learning_rate": 0.0006, + "loss": 3.8227009773254395, + "step": 1978 + }, + { + "epoch": 27.489296636085626, + "grad_norm": 0.21853850781917572, + "learning_rate": 0.0006, + "loss": 3.7992515563964844, + "step": 1979 + }, + { + "epoch": 27.503276539973786, + "grad_norm": 0.22405001521110535, + "learning_rate": 0.0006, + "loss": 3.8311715126037598, + "step": 1980 + }, + { + "epoch": 27.51725644386195, + "grad_norm": 0.24085809290409088, + "learning_rate": 0.0006, + "loss": 3.801962375640869, + "step": 1981 + }, + { + "epoch": 27.53123634775011, + "grad_norm": 0.2612341642379761, + "learning_rate": 0.0006, + "loss": 3.7867887020111084, + "step": 1982 + }, + { + "epoch": 27.54521625163827, + "grad_norm": 0.25136062502861023, + "learning_rate": 0.0006, + "loss": 3.8302273750305176, + "step": 1983 + }, + { + "epoch": 27.55919615552643, + "grad_norm": 0.2485426515340805, + "learning_rate": 0.0006, + "loss": 3.770616054534912, + "step": 1984 + }, + { + "epoch": 27.573176059414592, + "grad_norm": 0.28883907198905945, + "learning_rate": 0.0006, + "loss": 3.8152146339416504, + "step": 1985 + }, + { + "epoch": 27.587155963302752, + "grad_norm": 0.28177911043167114, + "learning_rate": 0.0006, + "loss": 3.7966861724853516, + "step": 1986 + }, + { + "epoch": 27.601135867190912, + "grad_norm": 0.2573191523551941, + "learning_rate": 0.0006, + "loss": 3.820788621902466, + "step": 1987 + }, + { + "epoch": 27.615115771079076, + "grad_norm": 0.22225657105445862, + "learning_rate": 0.0006, + "loss": 3.778477191925049, + "step": 1988 + }, + { + "epoch": 27.629095674967235, + "grad_norm": 0.20118530094623566, + "learning_rate": 0.0006, + "loss": 3.8416988849639893, + "step": 1989 + }, + { + "epoch": 27.643075578855395, + "grad_norm": 0.21168658137321472, + "learning_rate": 0.0006, + "loss": 3.798020839691162, + "step": 1990 + }, + { + "epoch": 27.657055482743555, + "grad_norm": 0.2460680454969406, + "learning_rate": 0.0006, + "loss": 3.805917263031006, + "step": 1991 + }, + { + "epoch": 27.67103538663172, + "grad_norm": 0.2700909674167633, + "learning_rate": 0.0006, + "loss": 3.8042726516723633, + "step": 1992 + }, + { + "epoch": 27.68501529051988, + "grad_norm": 0.25814294815063477, + "learning_rate": 0.0006, + "loss": 3.799159049987793, + "step": 1993 + }, + { + "epoch": 27.698995194408038, + "grad_norm": 0.2231985628604889, + "learning_rate": 0.0006, + "loss": 3.778750419616699, + "step": 1994 + }, + { + "epoch": 27.712975098296198, + "grad_norm": 0.20807890594005585, + "learning_rate": 0.0006, + "loss": 3.787919044494629, + "step": 1995 + }, + { + "epoch": 27.72695500218436, + "grad_norm": 0.19537150859832764, + "learning_rate": 0.0006, + "loss": 3.7917299270629883, + "step": 1996 + }, + { + "epoch": 27.74093490607252, + "grad_norm": 0.21057647466659546, + "learning_rate": 0.0006, + "loss": 3.8096866607666016, + "step": 1997 + }, + { + "epoch": 27.75491480996068, + "grad_norm": 0.18983247876167297, + "learning_rate": 0.0006, + "loss": 3.7881717681884766, + "step": 1998 + }, + { + "epoch": 27.76889471384884, + "grad_norm": 0.18701069056987762, + "learning_rate": 0.0006, + "loss": 3.810790538787842, + "step": 1999 + }, + { + "epoch": 27.782874617737004, + "grad_norm": 0.1920134723186493, + "learning_rate": 0.0006, + "loss": 3.8161087036132812, + "step": 2000 + }, + { + "epoch": 27.796854521625164, + "grad_norm": 0.20413947105407715, + "learning_rate": 0.0006, + "loss": 3.790499687194824, + "step": 2001 + }, + { + "epoch": 27.810834425513324, + "grad_norm": 0.1920027732849121, + "learning_rate": 0.0006, + "loss": 3.8194262981414795, + "step": 2002 + }, + { + "epoch": 27.824814329401484, + "grad_norm": 0.18630221486091614, + "learning_rate": 0.0006, + "loss": 3.8267152309417725, + "step": 2003 + }, + { + "epoch": 27.838794233289647, + "grad_norm": 0.1787925660610199, + "learning_rate": 0.0006, + "loss": 3.8147521018981934, + "step": 2004 + }, + { + "epoch": 27.852774137177807, + "grad_norm": 0.19187216460704803, + "learning_rate": 0.0006, + "loss": 3.7751095294952393, + "step": 2005 + }, + { + "epoch": 27.866754041065967, + "grad_norm": 0.18825744092464447, + "learning_rate": 0.0006, + "loss": 3.807401657104492, + "step": 2006 + }, + { + "epoch": 27.88073394495413, + "grad_norm": 0.1879836469888687, + "learning_rate": 0.0006, + "loss": 3.8302509784698486, + "step": 2007 + }, + { + "epoch": 27.89471384884229, + "grad_norm": 0.19136391580104828, + "learning_rate": 0.0006, + "loss": 3.7886242866516113, + "step": 2008 + }, + { + "epoch": 27.90869375273045, + "grad_norm": 0.18774119019508362, + "learning_rate": 0.0006, + "loss": 3.8202977180480957, + "step": 2009 + }, + { + "epoch": 27.92267365661861, + "grad_norm": 0.17794452607631683, + "learning_rate": 0.0006, + "loss": 3.813382387161255, + "step": 2010 + }, + { + "epoch": 27.936653560506773, + "grad_norm": 0.1876268833875656, + "learning_rate": 0.0006, + "loss": 3.810610294342041, + "step": 2011 + }, + { + "epoch": 27.950633464394933, + "grad_norm": 0.19262051582336426, + "learning_rate": 0.0006, + "loss": 3.8113245964050293, + "step": 2012 + }, + { + "epoch": 27.964613368283093, + "grad_norm": 0.19371771812438965, + "learning_rate": 0.0006, + "loss": 3.804790496826172, + "step": 2013 + }, + { + "epoch": 27.978593272171253, + "grad_norm": 0.1922861784696579, + "learning_rate": 0.0006, + "loss": 3.8278889656066895, + "step": 2014 + }, + { + "epoch": 27.992573176059416, + "grad_norm": 0.19748565554618835, + "learning_rate": 0.0006, + "loss": 3.8127200603485107, + "step": 2015 + }, + { + "epoch": 28.0, + "grad_norm": 0.25027501583099365, + "learning_rate": 0.0006, + "loss": 3.7899413108825684, + "step": 2016 + }, + { + "epoch": 28.0, + "eval_loss": 4.047704219818115, + "eval_runtime": 44.293, + "eval_samples_per_second": 55.133, + "eval_steps_per_second": 3.454, + "step": 2016 + }, + { + "epoch": 28.01397990388816, + "grad_norm": 0.25172367691993713, + "learning_rate": 0.0006, + "loss": 3.75449538230896, + "step": 2017 + }, + { + "epoch": 28.027959807776323, + "grad_norm": 0.23494598269462585, + "learning_rate": 0.0006, + "loss": 3.7609024047851562, + "step": 2018 + }, + { + "epoch": 28.041939711664483, + "grad_norm": 0.22459708154201508, + "learning_rate": 0.0006, + "loss": 3.7843551635742188, + "step": 2019 + }, + { + "epoch": 28.055919615552643, + "grad_norm": 0.2038632035255432, + "learning_rate": 0.0006, + "loss": 3.7818198204040527, + "step": 2020 + }, + { + "epoch": 28.069899519440803, + "grad_norm": 0.22050008177757263, + "learning_rate": 0.0006, + "loss": 3.787442684173584, + "step": 2021 + }, + { + "epoch": 28.083879423328966, + "grad_norm": 0.24645832180976868, + "learning_rate": 0.0006, + "loss": 3.768704414367676, + "step": 2022 + }, + { + "epoch": 28.097859327217126, + "grad_norm": 0.2440163493156433, + "learning_rate": 0.0006, + "loss": 3.7783756256103516, + "step": 2023 + }, + { + "epoch": 28.111839231105286, + "grad_norm": 0.2482181042432785, + "learning_rate": 0.0006, + "loss": 3.786881923675537, + "step": 2024 + }, + { + "epoch": 28.125819134993446, + "grad_norm": 0.23494760692119598, + "learning_rate": 0.0006, + "loss": 3.790039300918579, + "step": 2025 + }, + { + "epoch": 28.13979903888161, + "grad_norm": 0.2172182947397232, + "learning_rate": 0.0006, + "loss": 3.818756580352783, + "step": 2026 + }, + { + "epoch": 28.15377894276977, + "grad_norm": 0.2103179395198822, + "learning_rate": 0.0006, + "loss": 3.7768917083740234, + "step": 2027 + }, + { + "epoch": 28.16775884665793, + "grad_norm": 0.22322365641593933, + "learning_rate": 0.0006, + "loss": 3.8223648071289062, + "step": 2028 + }, + { + "epoch": 28.18173875054609, + "grad_norm": 0.24199382960796356, + "learning_rate": 0.0006, + "loss": 3.781357765197754, + "step": 2029 + }, + { + "epoch": 28.195718654434252, + "grad_norm": 0.2500663101673126, + "learning_rate": 0.0006, + "loss": 3.8061184883117676, + "step": 2030 + }, + { + "epoch": 28.209698558322412, + "grad_norm": 0.2439824491739273, + "learning_rate": 0.0006, + "loss": 3.7886464595794678, + "step": 2031 + }, + { + "epoch": 28.22367846221057, + "grad_norm": 0.24563106894493103, + "learning_rate": 0.0006, + "loss": 3.7901692390441895, + "step": 2032 + }, + { + "epoch": 28.23765836609873, + "grad_norm": 0.2287624627351761, + "learning_rate": 0.0006, + "loss": 3.789931058883667, + "step": 2033 + }, + { + "epoch": 28.251638269986895, + "grad_norm": 0.2231188714504242, + "learning_rate": 0.0006, + "loss": 3.7879133224487305, + "step": 2034 + }, + { + "epoch": 28.265618173875055, + "grad_norm": 0.23090387880802155, + "learning_rate": 0.0006, + "loss": 3.7826130390167236, + "step": 2035 + }, + { + "epoch": 28.279598077763215, + "grad_norm": 0.216018944978714, + "learning_rate": 0.0006, + "loss": 3.7764949798583984, + "step": 2036 + }, + { + "epoch": 28.293577981651374, + "grad_norm": 0.22649185359477997, + "learning_rate": 0.0006, + "loss": 3.7911291122436523, + "step": 2037 + }, + { + "epoch": 28.307557885539538, + "grad_norm": 0.2350836843252182, + "learning_rate": 0.0006, + "loss": 3.7668724060058594, + "step": 2038 + }, + { + "epoch": 28.321537789427698, + "grad_norm": 0.23206329345703125, + "learning_rate": 0.0006, + "loss": 3.782243251800537, + "step": 2039 + }, + { + "epoch": 28.335517693315857, + "grad_norm": 0.21896308660507202, + "learning_rate": 0.0006, + "loss": 3.7605721950531006, + "step": 2040 + }, + { + "epoch": 28.34949759720402, + "grad_norm": 0.20381200313568115, + "learning_rate": 0.0006, + "loss": 3.743945598602295, + "step": 2041 + }, + { + "epoch": 28.36347750109218, + "grad_norm": 0.19196000695228577, + "learning_rate": 0.0006, + "loss": 3.808107852935791, + "step": 2042 + }, + { + "epoch": 28.37745740498034, + "grad_norm": 0.19517889618873596, + "learning_rate": 0.0006, + "loss": 3.7906723022460938, + "step": 2043 + }, + { + "epoch": 28.3914373088685, + "grad_norm": 0.20455795526504517, + "learning_rate": 0.0006, + "loss": 3.7421011924743652, + "step": 2044 + }, + { + "epoch": 28.405417212756664, + "grad_norm": 0.1867467314004898, + "learning_rate": 0.0006, + "loss": 3.775509834289551, + "step": 2045 + }, + { + "epoch": 28.419397116644824, + "grad_norm": 0.2029324471950531, + "learning_rate": 0.0006, + "loss": 3.771353244781494, + "step": 2046 + }, + { + "epoch": 28.433377020532983, + "grad_norm": 0.19967497885227203, + "learning_rate": 0.0006, + "loss": 3.7821149826049805, + "step": 2047 + }, + { + "epoch": 28.447356924421143, + "grad_norm": 0.19440607726573944, + "learning_rate": 0.0006, + "loss": 3.8114213943481445, + "step": 2048 + }, + { + "epoch": 28.461336828309307, + "grad_norm": 0.19679802656173706, + "learning_rate": 0.0006, + "loss": 3.7699532508850098, + "step": 2049 + }, + { + "epoch": 28.475316732197467, + "grad_norm": 0.1939811110496521, + "learning_rate": 0.0006, + "loss": 3.7673027515411377, + "step": 2050 + }, + { + "epoch": 28.489296636085626, + "grad_norm": 0.18712401390075684, + "learning_rate": 0.0006, + "loss": 3.816699266433716, + "step": 2051 + }, + { + "epoch": 28.503276539973786, + "grad_norm": 0.202956885099411, + "learning_rate": 0.0006, + "loss": 3.7746071815490723, + "step": 2052 + }, + { + "epoch": 28.51725644386195, + "grad_norm": 0.19098156690597534, + "learning_rate": 0.0006, + "loss": 3.8065481185913086, + "step": 2053 + }, + { + "epoch": 28.53123634775011, + "grad_norm": 0.21144428849220276, + "learning_rate": 0.0006, + "loss": 3.7890982627868652, + "step": 2054 + }, + { + "epoch": 28.54521625163827, + "grad_norm": 0.21882614493370056, + "learning_rate": 0.0006, + "loss": 3.8168821334838867, + "step": 2055 + }, + { + "epoch": 28.55919615552643, + "grad_norm": 0.22200101613998413, + "learning_rate": 0.0006, + "loss": 3.804454803466797, + "step": 2056 + }, + { + "epoch": 28.573176059414592, + "grad_norm": 0.22404780983924866, + "learning_rate": 0.0006, + "loss": 3.808764934539795, + "step": 2057 + }, + { + "epoch": 28.587155963302752, + "grad_norm": 0.22770099341869354, + "learning_rate": 0.0006, + "loss": 3.74835467338562, + "step": 2058 + }, + { + "epoch": 28.601135867190912, + "grad_norm": 0.23214420676231384, + "learning_rate": 0.0006, + "loss": 3.7480111122131348, + "step": 2059 + }, + { + "epoch": 28.615115771079076, + "grad_norm": 0.21786348521709442, + "learning_rate": 0.0006, + "loss": 3.8095176219940186, + "step": 2060 + }, + { + "epoch": 28.629095674967235, + "grad_norm": 0.21004106104373932, + "learning_rate": 0.0006, + "loss": 3.792745590209961, + "step": 2061 + }, + { + "epoch": 28.643075578855395, + "grad_norm": 0.21076138317584991, + "learning_rate": 0.0006, + "loss": 3.7878952026367188, + "step": 2062 + }, + { + "epoch": 28.657055482743555, + "grad_norm": 0.2184346616268158, + "learning_rate": 0.0006, + "loss": 3.757188320159912, + "step": 2063 + }, + { + "epoch": 28.67103538663172, + "grad_norm": 0.22100569307804108, + "learning_rate": 0.0006, + "loss": 3.8131773471832275, + "step": 2064 + }, + { + "epoch": 28.68501529051988, + "grad_norm": 0.23257511854171753, + "learning_rate": 0.0006, + "loss": 3.793826103210449, + "step": 2065 + }, + { + "epoch": 28.698995194408038, + "grad_norm": 0.22312869131565094, + "learning_rate": 0.0006, + "loss": 3.782083749771118, + "step": 2066 + }, + { + "epoch": 28.712975098296198, + "grad_norm": 0.2318405956029892, + "learning_rate": 0.0006, + "loss": 3.7814879417419434, + "step": 2067 + }, + { + "epoch": 28.72695500218436, + "grad_norm": 0.23719379305839539, + "learning_rate": 0.0006, + "loss": 3.8320484161376953, + "step": 2068 + }, + { + "epoch": 28.74093490607252, + "grad_norm": 0.23100806772708893, + "learning_rate": 0.0006, + "loss": 3.7921783924102783, + "step": 2069 + }, + { + "epoch": 28.75491480996068, + "grad_norm": 0.21540866792201996, + "learning_rate": 0.0006, + "loss": 3.8325204849243164, + "step": 2070 + }, + { + "epoch": 28.76889471384884, + "grad_norm": 0.2698654532432556, + "learning_rate": 0.0006, + "loss": 3.7965879440307617, + "step": 2071 + }, + { + "epoch": 28.782874617737004, + "grad_norm": 0.3101225793361664, + "learning_rate": 0.0006, + "loss": 3.78842830657959, + "step": 2072 + }, + { + "epoch": 28.796854521625164, + "grad_norm": 0.2607600688934326, + "learning_rate": 0.0006, + "loss": 3.770064115524292, + "step": 2073 + }, + { + "epoch": 28.810834425513324, + "grad_norm": 0.20558302104473114, + "learning_rate": 0.0006, + "loss": 3.7448501586914062, + "step": 2074 + }, + { + "epoch": 28.824814329401484, + "grad_norm": 0.20030120015144348, + "learning_rate": 0.0006, + "loss": 3.7689406871795654, + "step": 2075 + }, + { + "epoch": 28.838794233289647, + "grad_norm": 0.21781118214130402, + "learning_rate": 0.0006, + "loss": 3.7682244777679443, + "step": 2076 + }, + { + "epoch": 28.852774137177807, + "grad_norm": 0.23543044924736023, + "learning_rate": 0.0006, + "loss": 3.8094193935394287, + "step": 2077 + }, + { + "epoch": 28.866754041065967, + "grad_norm": 0.21634669601917267, + "learning_rate": 0.0006, + "loss": 3.792099952697754, + "step": 2078 + }, + { + "epoch": 28.88073394495413, + "grad_norm": 0.2251661866903305, + "learning_rate": 0.0006, + "loss": 3.7849509716033936, + "step": 2079 + }, + { + "epoch": 28.89471384884229, + "grad_norm": 0.23872914910316467, + "learning_rate": 0.0006, + "loss": 3.8391621112823486, + "step": 2080 + }, + { + "epoch": 28.90869375273045, + "grad_norm": 0.22259248793125153, + "learning_rate": 0.0006, + "loss": 3.8272876739501953, + "step": 2081 + }, + { + "epoch": 28.92267365661861, + "grad_norm": 0.22052262723445892, + "learning_rate": 0.0006, + "loss": 3.7986836433410645, + "step": 2082 + }, + { + "epoch": 28.936653560506773, + "grad_norm": 0.24487647414207458, + "learning_rate": 0.0006, + "loss": 3.798004150390625, + "step": 2083 + }, + { + "epoch": 28.950633464394933, + "grad_norm": 0.22992238402366638, + "learning_rate": 0.0006, + "loss": 3.788522720336914, + "step": 2084 + }, + { + "epoch": 28.964613368283093, + "grad_norm": 0.22521597146987915, + "learning_rate": 0.0006, + "loss": 3.767259120941162, + "step": 2085 + }, + { + "epoch": 28.978593272171253, + "grad_norm": 0.2201499044895172, + "learning_rate": 0.0006, + "loss": 3.7850542068481445, + "step": 2086 + }, + { + "epoch": 28.992573176059416, + "grad_norm": 0.22226814925670624, + "learning_rate": 0.0006, + "loss": 3.8013534545898438, + "step": 2087 + }, + { + "epoch": 29.0, + "grad_norm": 0.27624809741973877, + "learning_rate": 0.0006, + "loss": 3.762004852294922, + "step": 2088 + }, + { + "epoch": 29.0, + "eval_loss": 4.034304618835449, + "eval_runtime": 44.6573, + "eval_samples_per_second": 54.683, + "eval_steps_per_second": 3.426, + "step": 2088 + }, + { + "epoch": 29.01397990388816, + "grad_norm": 0.2550967037677765, + "learning_rate": 0.0006, + "loss": 3.7724227905273438, + "step": 2089 + }, + { + "epoch": 29.027959807776323, + "grad_norm": 0.26730602979660034, + "learning_rate": 0.0006, + "loss": 3.7728946208953857, + "step": 2090 + }, + { + "epoch": 29.041939711664483, + "grad_norm": 0.2394205927848816, + "learning_rate": 0.0006, + "loss": 3.7737584114074707, + "step": 2091 + }, + { + "epoch": 29.055919615552643, + "grad_norm": 0.22488200664520264, + "learning_rate": 0.0006, + "loss": 3.761014938354492, + "step": 2092 + }, + { + "epoch": 29.069899519440803, + "grad_norm": 0.2389903962612152, + "learning_rate": 0.0006, + "loss": 3.766557216644287, + "step": 2093 + }, + { + "epoch": 29.083879423328966, + "grad_norm": 0.234152153134346, + "learning_rate": 0.0006, + "loss": 3.7447147369384766, + "step": 2094 + }, + { + "epoch": 29.097859327217126, + "grad_norm": 0.23123252391815186, + "learning_rate": 0.0006, + "loss": 3.77197527885437, + "step": 2095 + }, + { + "epoch": 29.111839231105286, + "grad_norm": 0.23263143002986908, + "learning_rate": 0.0006, + "loss": 3.7390198707580566, + "step": 2096 + }, + { + "epoch": 29.125819134993446, + "grad_norm": 0.23235775530338287, + "learning_rate": 0.0006, + "loss": 3.7675256729125977, + "step": 2097 + }, + { + "epoch": 29.13979903888161, + "grad_norm": 0.2208816260099411, + "learning_rate": 0.0006, + "loss": 3.7588067054748535, + "step": 2098 + }, + { + "epoch": 29.15377894276977, + "grad_norm": 0.21216371655464172, + "learning_rate": 0.0006, + "loss": 3.7370502948760986, + "step": 2099 + }, + { + "epoch": 29.16775884665793, + "grad_norm": 0.2210543155670166, + "learning_rate": 0.0006, + "loss": 3.767308473587036, + "step": 2100 + }, + { + "epoch": 29.18173875054609, + "grad_norm": 0.21628431975841522, + "learning_rate": 0.0006, + "loss": 3.7298972606658936, + "step": 2101 + }, + { + "epoch": 29.195718654434252, + "grad_norm": 0.21493588387966156, + "learning_rate": 0.0006, + "loss": 3.7806448936462402, + "step": 2102 + }, + { + "epoch": 29.209698558322412, + "grad_norm": 0.25978055596351624, + "learning_rate": 0.0006, + "loss": 3.7716293334960938, + "step": 2103 + }, + { + "epoch": 29.22367846221057, + "grad_norm": 0.2744791507720947, + "learning_rate": 0.0006, + "loss": 3.76897931098938, + "step": 2104 + }, + { + "epoch": 29.23765836609873, + "grad_norm": 0.22959400713443756, + "learning_rate": 0.0006, + "loss": 3.7545714378356934, + "step": 2105 + }, + { + "epoch": 29.251638269986895, + "grad_norm": 0.20369231700897217, + "learning_rate": 0.0006, + "loss": 3.7944722175598145, + "step": 2106 + }, + { + "epoch": 29.265618173875055, + "grad_norm": 0.21663758158683777, + "learning_rate": 0.0006, + "loss": 3.7564756870269775, + "step": 2107 + }, + { + "epoch": 29.279598077763215, + "grad_norm": 0.21862861514091492, + "learning_rate": 0.0006, + "loss": 3.7722725868225098, + "step": 2108 + }, + { + "epoch": 29.293577981651374, + "grad_norm": 0.2044878453016281, + "learning_rate": 0.0006, + "loss": 3.7471303939819336, + "step": 2109 + }, + { + "epoch": 29.307557885539538, + "grad_norm": 0.23015929758548737, + "learning_rate": 0.0006, + "loss": 3.7584962844848633, + "step": 2110 + }, + { + "epoch": 29.321537789427698, + "grad_norm": 0.22548329830169678, + "learning_rate": 0.0006, + "loss": 3.795933723449707, + "step": 2111 + }, + { + "epoch": 29.335517693315857, + "grad_norm": 0.2000468522310257, + "learning_rate": 0.0006, + "loss": 3.766310691833496, + "step": 2112 + }, + { + "epoch": 29.34949759720402, + "grad_norm": 0.19711551070213318, + "learning_rate": 0.0006, + "loss": 3.7296276092529297, + "step": 2113 + }, + { + "epoch": 29.36347750109218, + "grad_norm": 0.18838997185230255, + "learning_rate": 0.0006, + "loss": 3.7685282230377197, + "step": 2114 + }, + { + "epoch": 29.37745740498034, + "grad_norm": 0.1897876113653183, + "learning_rate": 0.0006, + "loss": 3.7280936241149902, + "step": 2115 + }, + { + "epoch": 29.3914373088685, + "grad_norm": 0.21697933971881866, + "learning_rate": 0.0006, + "loss": 3.7991929054260254, + "step": 2116 + }, + { + "epoch": 29.405417212756664, + "grad_norm": 0.23445849120616913, + "learning_rate": 0.0006, + "loss": 3.7857418060302734, + "step": 2117 + }, + { + "epoch": 29.419397116644824, + "grad_norm": 0.24155527353286743, + "learning_rate": 0.0006, + "loss": 3.7897872924804688, + "step": 2118 + }, + { + "epoch": 29.433377020532983, + "grad_norm": 0.2610265016555786, + "learning_rate": 0.0006, + "loss": 3.7867324352264404, + "step": 2119 + }, + { + "epoch": 29.447356924421143, + "grad_norm": 0.2809581160545349, + "learning_rate": 0.0006, + "loss": 3.783799648284912, + "step": 2120 + }, + { + "epoch": 29.461336828309307, + "grad_norm": 0.2621572017669678, + "learning_rate": 0.0006, + "loss": 3.7778549194335938, + "step": 2121 + }, + { + "epoch": 29.475316732197467, + "grad_norm": 0.26002970337867737, + "learning_rate": 0.0006, + "loss": 3.787945508956909, + "step": 2122 + }, + { + "epoch": 29.489296636085626, + "grad_norm": 0.24866686761379242, + "learning_rate": 0.0006, + "loss": 3.7406349182128906, + "step": 2123 + }, + { + "epoch": 29.503276539973786, + "grad_norm": 0.25588324666023254, + "learning_rate": 0.0006, + "loss": 3.785625457763672, + "step": 2124 + }, + { + "epoch": 29.51725644386195, + "grad_norm": 0.24724243581295013, + "learning_rate": 0.0006, + "loss": 3.7581701278686523, + "step": 2125 + }, + { + "epoch": 29.53123634775011, + "grad_norm": 0.23544734716415405, + "learning_rate": 0.0006, + "loss": 3.8163957595825195, + "step": 2126 + }, + { + "epoch": 29.54521625163827, + "grad_norm": 0.2108801156282425, + "learning_rate": 0.0006, + "loss": 3.7881739139556885, + "step": 2127 + }, + { + "epoch": 29.55919615552643, + "grad_norm": 0.20459668338298798, + "learning_rate": 0.0006, + "loss": 3.7641284465789795, + "step": 2128 + }, + { + "epoch": 29.573176059414592, + "grad_norm": 0.24020728468894958, + "learning_rate": 0.0006, + "loss": 3.7748730182647705, + "step": 2129 + }, + { + "epoch": 29.587155963302752, + "grad_norm": 0.256273478269577, + "learning_rate": 0.0006, + "loss": 3.8076486587524414, + "step": 2130 + }, + { + "epoch": 29.601135867190912, + "grad_norm": 0.23295973241329193, + "learning_rate": 0.0006, + "loss": 3.7687063217163086, + "step": 2131 + }, + { + "epoch": 29.615115771079076, + "grad_norm": 0.21554847061634064, + "learning_rate": 0.0006, + "loss": 3.781867027282715, + "step": 2132 + }, + { + "epoch": 29.629095674967235, + "grad_norm": 0.20645774900913239, + "learning_rate": 0.0006, + "loss": 3.7813425064086914, + "step": 2133 + }, + { + "epoch": 29.643075578855395, + "grad_norm": 0.2018265724182129, + "learning_rate": 0.0006, + "loss": 3.772895574569702, + "step": 2134 + }, + { + "epoch": 29.657055482743555, + "grad_norm": 0.20170100033283234, + "learning_rate": 0.0006, + "loss": 3.7819175720214844, + "step": 2135 + }, + { + "epoch": 29.67103538663172, + "grad_norm": 0.22640688717365265, + "learning_rate": 0.0006, + "loss": 3.7999017238616943, + "step": 2136 + }, + { + "epoch": 29.68501529051988, + "grad_norm": 0.23747675120830536, + "learning_rate": 0.0006, + "loss": 3.804999828338623, + "step": 2137 + }, + { + "epoch": 29.698995194408038, + "grad_norm": 0.20005857944488525, + "learning_rate": 0.0006, + "loss": 3.7815160751342773, + "step": 2138 + }, + { + "epoch": 29.712975098296198, + "grad_norm": 0.17901667952537537, + "learning_rate": 0.0006, + "loss": 3.7898688316345215, + "step": 2139 + }, + { + "epoch": 29.72695500218436, + "grad_norm": 0.1890905797481537, + "learning_rate": 0.0006, + "loss": 3.8001184463500977, + "step": 2140 + }, + { + "epoch": 29.74093490607252, + "grad_norm": 0.19565847516059875, + "learning_rate": 0.0006, + "loss": 3.7522482872009277, + "step": 2141 + }, + { + "epoch": 29.75491480996068, + "grad_norm": 0.19429196417331696, + "learning_rate": 0.0006, + "loss": 3.768972158432007, + "step": 2142 + }, + { + "epoch": 29.76889471384884, + "grad_norm": 0.23846636712551117, + "learning_rate": 0.0006, + "loss": 3.765216112136841, + "step": 2143 + }, + { + "epoch": 29.782874617737004, + "grad_norm": 0.23820780217647552, + "learning_rate": 0.0006, + "loss": 3.8027703762054443, + "step": 2144 + }, + { + "epoch": 29.796854521625164, + "grad_norm": 0.21104726195335388, + "learning_rate": 0.0006, + "loss": 3.7682833671569824, + "step": 2145 + }, + { + "epoch": 29.810834425513324, + "grad_norm": 0.1911051720380783, + "learning_rate": 0.0006, + "loss": 3.781782627105713, + "step": 2146 + }, + { + "epoch": 29.824814329401484, + "grad_norm": 0.18881288170814514, + "learning_rate": 0.0006, + "loss": 3.7703428268432617, + "step": 2147 + }, + { + "epoch": 29.838794233289647, + "grad_norm": 0.18292994797229767, + "learning_rate": 0.0006, + "loss": 3.769176721572876, + "step": 2148 + }, + { + "epoch": 29.852774137177807, + "grad_norm": 0.1777714639902115, + "learning_rate": 0.0006, + "loss": 3.7488298416137695, + "step": 2149 + }, + { + "epoch": 29.866754041065967, + "grad_norm": 0.2037898749113083, + "learning_rate": 0.0006, + "loss": 3.804396390914917, + "step": 2150 + }, + { + "epoch": 29.88073394495413, + "grad_norm": 0.2121828943490982, + "learning_rate": 0.0006, + "loss": 3.75870943069458, + "step": 2151 + }, + { + "epoch": 29.89471384884229, + "grad_norm": 0.23231184482574463, + "learning_rate": 0.0006, + "loss": 3.80178165435791, + "step": 2152 + }, + { + "epoch": 29.90869375273045, + "grad_norm": 0.24045611917972565, + "learning_rate": 0.0006, + "loss": 3.7690834999084473, + "step": 2153 + }, + { + "epoch": 29.92267365661861, + "grad_norm": 0.19830496609210968, + "learning_rate": 0.0006, + "loss": 3.764401912689209, + "step": 2154 + }, + { + "epoch": 29.936653560506773, + "grad_norm": 0.17704227566719055, + "learning_rate": 0.0006, + "loss": 3.7634594440460205, + "step": 2155 + }, + { + "epoch": 29.950633464394933, + "grad_norm": 0.17783164978027344, + "learning_rate": 0.0006, + "loss": 3.7856998443603516, + "step": 2156 + }, + { + "epoch": 29.964613368283093, + "grad_norm": 0.19684971868991852, + "learning_rate": 0.0006, + "loss": 3.805774211883545, + "step": 2157 + }, + { + "epoch": 29.978593272171253, + "grad_norm": 0.21662312746047974, + "learning_rate": 0.0006, + "loss": 3.757896661758423, + "step": 2158 + }, + { + "epoch": 29.992573176059416, + "grad_norm": 0.22000661492347717, + "learning_rate": 0.0006, + "loss": 3.7747678756713867, + "step": 2159 + }, + { + "epoch": 30.0, + "grad_norm": 0.21501901745796204, + "learning_rate": 0.0006, + "loss": 3.785585880279541, + "step": 2160 + }, + { + "epoch": 30.0, + "eval_loss": 4.034003734588623, + "eval_runtime": 44.9097, + "eval_samples_per_second": 54.376, + "eval_steps_per_second": 3.407, + "step": 2160 + }, + { + "epoch": 30.01397990388816, + "grad_norm": 0.19710904359817505, + "learning_rate": 0.0006, + "loss": 3.756235122680664, + "step": 2161 + }, + { + "epoch": 30.027959807776323, + "grad_norm": 0.19829736649990082, + "learning_rate": 0.0006, + "loss": 3.734067916870117, + "step": 2162 + }, + { + "epoch": 30.041939711664483, + "grad_norm": 0.21622520685195923, + "learning_rate": 0.0006, + "loss": 3.7329437732696533, + "step": 2163 + }, + { + "epoch": 30.055919615552643, + "grad_norm": 0.22544652223587036, + "learning_rate": 0.0006, + "loss": 3.748716354370117, + "step": 2164 + }, + { + "epoch": 30.069899519440803, + "grad_norm": 0.21098364889621735, + "learning_rate": 0.0006, + "loss": 3.779047727584839, + "step": 2165 + }, + { + "epoch": 30.083879423328966, + "grad_norm": 0.21309930086135864, + "learning_rate": 0.0006, + "loss": 3.7690274715423584, + "step": 2166 + }, + { + "epoch": 30.097859327217126, + "grad_norm": 0.23025690019130707, + "learning_rate": 0.0006, + "loss": 3.7500953674316406, + "step": 2167 + }, + { + "epoch": 30.111839231105286, + "grad_norm": 0.25107935070991516, + "learning_rate": 0.0006, + "loss": 3.745492458343506, + "step": 2168 + }, + { + "epoch": 30.125819134993446, + "grad_norm": 0.29873573780059814, + "learning_rate": 0.0006, + "loss": 3.759793758392334, + "step": 2169 + }, + { + "epoch": 30.13979903888161, + "grad_norm": 0.2810286283493042, + "learning_rate": 0.0006, + "loss": 3.772998809814453, + "step": 2170 + }, + { + "epoch": 30.15377894276977, + "grad_norm": 0.2102176398038864, + "learning_rate": 0.0006, + "loss": 3.740170955657959, + "step": 2171 + }, + { + "epoch": 30.16775884665793, + "grad_norm": 0.24143251776695251, + "learning_rate": 0.0006, + "loss": 3.7317001819610596, + "step": 2172 + }, + { + "epoch": 30.18173875054609, + "grad_norm": 0.2643064558506012, + "learning_rate": 0.0006, + "loss": 3.773263692855835, + "step": 2173 + }, + { + "epoch": 30.195718654434252, + "grad_norm": 0.27571243047714233, + "learning_rate": 0.0006, + "loss": 3.7619900703430176, + "step": 2174 + }, + { + "epoch": 30.209698558322412, + "grad_norm": 0.25359588861465454, + "learning_rate": 0.0006, + "loss": 3.7608513832092285, + "step": 2175 + }, + { + "epoch": 30.22367846221057, + "grad_norm": 0.2500684857368469, + "learning_rate": 0.0006, + "loss": 3.75856614112854, + "step": 2176 + }, + { + "epoch": 30.23765836609873, + "grad_norm": 0.23100309073925018, + "learning_rate": 0.0006, + "loss": 3.749786853790283, + "step": 2177 + }, + { + "epoch": 30.251638269986895, + "grad_norm": 0.24384984374046326, + "learning_rate": 0.0006, + "loss": 3.762244701385498, + "step": 2178 + }, + { + "epoch": 30.265618173875055, + "grad_norm": 0.24593998491764069, + "learning_rate": 0.0006, + "loss": 3.754594326019287, + "step": 2179 + }, + { + "epoch": 30.279598077763215, + "grad_norm": 0.2529342770576477, + "learning_rate": 0.0006, + "loss": 3.7641053199768066, + "step": 2180 + }, + { + "epoch": 30.293577981651374, + "grad_norm": 0.25954094529151917, + "learning_rate": 0.0006, + "loss": 3.810336112976074, + "step": 2181 + }, + { + "epoch": 30.307557885539538, + "grad_norm": 0.2249951958656311, + "learning_rate": 0.0006, + "loss": 3.7542617321014404, + "step": 2182 + }, + { + "epoch": 30.321537789427698, + "grad_norm": 0.19795064628124237, + "learning_rate": 0.0006, + "loss": 3.7734434604644775, + "step": 2183 + }, + { + "epoch": 30.335517693315857, + "grad_norm": 0.20744608342647552, + "learning_rate": 0.0006, + "loss": 3.7816128730773926, + "step": 2184 + }, + { + "epoch": 30.34949759720402, + "grad_norm": 0.19988055527210236, + "learning_rate": 0.0006, + "loss": 3.7631936073303223, + "step": 2185 + }, + { + "epoch": 30.36347750109218, + "grad_norm": 0.22226445376873016, + "learning_rate": 0.0006, + "loss": 3.762910842895508, + "step": 2186 + }, + { + "epoch": 30.37745740498034, + "grad_norm": 0.21986067295074463, + "learning_rate": 0.0006, + "loss": 3.733893394470215, + "step": 2187 + }, + { + "epoch": 30.3914373088685, + "grad_norm": 0.2170228660106659, + "learning_rate": 0.0006, + "loss": 3.726433515548706, + "step": 2188 + }, + { + "epoch": 30.405417212756664, + "grad_norm": 0.2179550975561142, + "learning_rate": 0.0006, + "loss": 3.792311668395996, + "step": 2189 + }, + { + "epoch": 30.419397116644824, + "grad_norm": 0.208037331700325, + "learning_rate": 0.0006, + "loss": 3.774639129638672, + "step": 2190 + }, + { + "epoch": 30.433377020532983, + "grad_norm": 0.20745441317558289, + "learning_rate": 0.0006, + "loss": 3.776130199432373, + "step": 2191 + }, + { + "epoch": 30.447356924421143, + "grad_norm": 0.1988024264574051, + "learning_rate": 0.0006, + "loss": 3.7453784942626953, + "step": 2192 + }, + { + "epoch": 30.461336828309307, + "grad_norm": 0.194968581199646, + "learning_rate": 0.0006, + "loss": 3.764653205871582, + "step": 2193 + }, + { + "epoch": 30.475316732197467, + "grad_norm": 0.20658300817012787, + "learning_rate": 0.0006, + "loss": 3.796513080596924, + "step": 2194 + }, + { + "epoch": 30.489296636085626, + "grad_norm": 0.2123410701751709, + "learning_rate": 0.0006, + "loss": 3.7630836963653564, + "step": 2195 + }, + { + "epoch": 30.503276539973786, + "grad_norm": 0.20894059538841248, + "learning_rate": 0.0006, + "loss": 3.7265470027923584, + "step": 2196 + }, + { + "epoch": 30.51725644386195, + "grad_norm": 0.2016828954219818, + "learning_rate": 0.0006, + "loss": 3.8083386421203613, + "step": 2197 + }, + { + "epoch": 30.53123634775011, + "grad_norm": 0.19584205746650696, + "learning_rate": 0.0006, + "loss": 3.7492105960845947, + "step": 2198 + }, + { + "epoch": 30.54521625163827, + "grad_norm": 0.18635272979736328, + "learning_rate": 0.0006, + "loss": 3.711009979248047, + "step": 2199 + }, + { + "epoch": 30.55919615552643, + "grad_norm": 0.1920594871044159, + "learning_rate": 0.0006, + "loss": 3.760801315307617, + "step": 2200 + }, + { + "epoch": 30.573176059414592, + "grad_norm": 0.1978331208229065, + "learning_rate": 0.0006, + "loss": 3.780529022216797, + "step": 2201 + }, + { + "epoch": 30.587155963302752, + "grad_norm": 0.20076943933963776, + "learning_rate": 0.0006, + "loss": 3.7767038345336914, + "step": 2202 + }, + { + "epoch": 30.601135867190912, + "grad_norm": 0.2067444622516632, + "learning_rate": 0.0006, + "loss": 3.7607920169830322, + "step": 2203 + }, + { + "epoch": 30.615115771079076, + "grad_norm": 0.2081940472126007, + "learning_rate": 0.0006, + "loss": 3.741936206817627, + "step": 2204 + }, + { + "epoch": 30.629095674967235, + "grad_norm": 0.21212869882583618, + "learning_rate": 0.0006, + "loss": 3.7597827911376953, + "step": 2205 + }, + { + "epoch": 30.643075578855395, + "grad_norm": 0.21539026498794556, + "learning_rate": 0.0006, + "loss": 3.764646053314209, + "step": 2206 + }, + { + "epoch": 30.657055482743555, + "grad_norm": 0.19788387417793274, + "learning_rate": 0.0006, + "loss": 3.7535128593444824, + "step": 2207 + }, + { + "epoch": 30.67103538663172, + "grad_norm": 0.20757688581943512, + "learning_rate": 0.0006, + "loss": 3.7414169311523438, + "step": 2208 + }, + { + "epoch": 30.68501529051988, + "grad_norm": 0.199361652135849, + "learning_rate": 0.0006, + "loss": 3.7578506469726562, + "step": 2209 + }, + { + "epoch": 30.698995194408038, + "grad_norm": 0.1909894198179245, + "learning_rate": 0.0006, + "loss": 3.736250400543213, + "step": 2210 + }, + { + "epoch": 30.712975098296198, + "grad_norm": 0.19766664505004883, + "learning_rate": 0.0006, + "loss": 3.7435379028320312, + "step": 2211 + }, + { + "epoch": 30.72695500218436, + "grad_norm": 0.21857766807079315, + "learning_rate": 0.0006, + "loss": 3.7478690147399902, + "step": 2212 + }, + { + "epoch": 30.74093490607252, + "grad_norm": 0.22385898232460022, + "learning_rate": 0.0006, + "loss": 3.7522530555725098, + "step": 2213 + }, + { + "epoch": 30.75491480996068, + "grad_norm": 0.2329241931438446, + "learning_rate": 0.0006, + "loss": 3.7568247318267822, + "step": 2214 + }, + { + "epoch": 30.76889471384884, + "grad_norm": 0.2218400090932846, + "learning_rate": 0.0006, + "loss": 3.7662744522094727, + "step": 2215 + }, + { + "epoch": 30.782874617737004, + "grad_norm": 0.21350212395191193, + "learning_rate": 0.0006, + "loss": 3.7683777809143066, + "step": 2216 + }, + { + "epoch": 30.796854521625164, + "grad_norm": 0.22357074916362762, + "learning_rate": 0.0006, + "loss": 3.763437032699585, + "step": 2217 + }, + { + "epoch": 30.810834425513324, + "grad_norm": 0.22268560528755188, + "learning_rate": 0.0006, + "loss": 3.772836685180664, + "step": 2218 + }, + { + "epoch": 30.824814329401484, + "grad_norm": 0.2434026449918747, + "learning_rate": 0.0006, + "loss": 3.752986431121826, + "step": 2219 + }, + { + "epoch": 30.838794233289647, + "grad_norm": 0.2298414409160614, + "learning_rate": 0.0006, + "loss": 3.7837061882019043, + "step": 2220 + }, + { + "epoch": 30.852774137177807, + "grad_norm": 0.227672278881073, + "learning_rate": 0.0006, + "loss": 3.746065378189087, + "step": 2221 + }, + { + "epoch": 30.866754041065967, + "grad_norm": 0.2562827169895172, + "learning_rate": 0.0006, + "loss": 3.7741947174072266, + "step": 2222 + }, + { + "epoch": 30.88073394495413, + "grad_norm": 0.23657815158367157, + "learning_rate": 0.0006, + "loss": 3.746457099914551, + "step": 2223 + }, + { + "epoch": 30.89471384884229, + "grad_norm": 0.2158907800912857, + "learning_rate": 0.0006, + "loss": 3.7821710109710693, + "step": 2224 + }, + { + "epoch": 30.90869375273045, + "grad_norm": 0.22501254081726074, + "learning_rate": 0.0006, + "loss": 3.7528274059295654, + "step": 2225 + }, + { + "epoch": 30.92267365661861, + "grad_norm": 0.20252224802970886, + "learning_rate": 0.0006, + "loss": 3.749418258666992, + "step": 2226 + }, + { + "epoch": 30.936653560506773, + "grad_norm": 0.2067883312702179, + "learning_rate": 0.0006, + "loss": 3.7560606002807617, + "step": 2227 + }, + { + "epoch": 30.950633464394933, + "grad_norm": 0.23104053735733032, + "learning_rate": 0.0006, + "loss": 3.7883846759796143, + "step": 2228 + }, + { + "epoch": 30.964613368283093, + "grad_norm": 0.21476604044437408, + "learning_rate": 0.0006, + "loss": 3.7976977825164795, + "step": 2229 + }, + { + "epoch": 30.978593272171253, + "grad_norm": 0.2130427062511444, + "learning_rate": 0.0006, + "loss": 3.7429304122924805, + "step": 2230 + }, + { + "epoch": 30.992573176059416, + "grad_norm": 0.2047216147184372, + "learning_rate": 0.0006, + "loss": 3.7669787406921387, + "step": 2231 + }, + { + "epoch": 31.0, + "grad_norm": 0.22254081070423126, + "learning_rate": 0.0006, + "loss": 3.7794251441955566, + "step": 2232 + }, + { + "epoch": 31.0, + "eval_loss": 4.039162635803223, + "eval_runtime": 44.9069, + "eval_samples_per_second": 54.379, + "eval_steps_per_second": 3.407, + "step": 2232 + }, + { + "epoch": 31.01397990388816, + "grad_norm": 0.2278132289648056, + "learning_rate": 0.0006, + "loss": 3.7363929748535156, + "step": 2233 + }, + { + "epoch": 31.027959807776323, + "grad_norm": 0.2377072274684906, + "learning_rate": 0.0006, + "loss": 3.72847318649292, + "step": 2234 + }, + { + "epoch": 31.041939711664483, + "grad_norm": 0.23790542781352997, + "learning_rate": 0.0006, + "loss": 3.767193078994751, + "step": 2235 + }, + { + "epoch": 31.055919615552643, + "grad_norm": 0.2587272524833679, + "learning_rate": 0.0006, + "loss": 3.7564640045166016, + "step": 2236 + }, + { + "epoch": 31.069899519440803, + "grad_norm": 0.27550312876701355, + "learning_rate": 0.0006, + "loss": 3.727578639984131, + "step": 2237 + }, + { + "epoch": 31.083879423328966, + "grad_norm": 0.2488662451505661, + "learning_rate": 0.0006, + "loss": 3.7420730590820312, + "step": 2238 + }, + { + "epoch": 31.097859327217126, + "grad_norm": 0.22699029743671417, + "learning_rate": 0.0006, + "loss": 3.7323155403137207, + "step": 2239 + }, + { + "epoch": 31.111839231105286, + "grad_norm": 0.23360148072242737, + "learning_rate": 0.0006, + "loss": 3.719024181365967, + "step": 2240 + }, + { + "epoch": 31.125819134993446, + "grad_norm": 0.24322988092899323, + "learning_rate": 0.0006, + "loss": 3.74485445022583, + "step": 2241 + }, + { + "epoch": 31.13979903888161, + "grad_norm": 0.2474174052476883, + "learning_rate": 0.0006, + "loss": 3.746826171875, + "step": 2242 + }, + { + "epoch": 31.15377894276977, + "grad_norm": 0.2417406439781189, + "learning_rate": 0.0006, + "loss": 3.7285032272338867, + "step": 2243 + }, + { + "epoch": 31.16775884665793, + "grad_norm": 0.2390318512916565, + "learning_rate": 0.0006, + "loss": 3.7464442253112793, + "step": 2244 + }, + { + "epoch": 31.18173875054609, + "grad_norm": 0.21819323301315308, + "learning_rate": 0.0006, + "loss": 3.735110282897949, + "step": 2245 + }, + { + "epoch": 31.195718654434252, + "grad_norm": 0.21953554451465607, + "learning_rate": 0.0006, + "loss": 3.7270030975341797, + "step": 2246 + }, + { + "epoch": 31.209698558322412, + "grad_norm": 0.1930384635925293, + "learning_rate": 0.0006, + "loss": 3.7519941329956055, + "step": 2247 + }, + { + "epoch": 31.22367846221057, + "grad_norm": 0.19799190759658813, + "learning_rate": 0.0006, + "loss": 3.7428221702575684, + "step": 2248 + }, + { + "epoch": 31.23765836609873, + "grad_norm": 0.20948201417922974, + "learning_rate": 0.0006, + "loss": 3.733120918273926, + "step": 2249 + }, + { + "epoch": 31.251638269986895, + "grad_norm": 0.23768769204616547, + "learning_rate": 0.0006, + "loss": 3.7059035301208496, + "step": 2250 + }, + { + "epoch": 31.265618173875055, + "grad_norm": 0.2808842957019806, + "learning_rate": 0.0006, + "loss": 3.7245287895202637, + "step": 2251 + }, + { + "epoch": 31.279598077763215, + "grad_norm": 0.27633124589920044, + "learning_rate": 0.0006, + "loss": 3.7436366081237793, + "step": 2252 + }, + { + "epoch": 31.293577981651374, + "grad_norm": 0.24137185513973236, + "learning_rate": 0.0006, + "loss": 3.7651219367980957, + "step": 2253 + }, + { + "epoch": 31.307557885539538, + "grad_norm": 0.22056810557842255, + "learning_rate": 0.0006, + "loss": 3.7417521476745605, + "step": 2254 + }, + { + "epoch": 31.321537789427698, + "grad_norm": 0.20137323439121246, + "learning_rate": 0.0006, + "loss": 3.750187397003174, + "step": 2255 + }, + { + "epoch": 31.335517693315857, + "grad_norm": 0.2142433375120163, + "learning_rate": 0.0006, + "loss": 3.7292675971984863, + "step": 2256 + }, + { + "epoch": 31.34949759720402, + "grad_norm": 0.21193967759609222, + "learning_rate": 0.0006, + "loss": 3.7459473609924316, + "step": 2257 + }, + { + "epoch": 31.36347750109218, + "grad_norm": 0.21418534219264984, + "learning_rate": 0.0006, + "loss": 3.754359722137451, + "step": 2258 + }, + { + "epoch": 31.37745740498034, + "grad_norm": 0.23507359623908997, + "learning_rate": 0.0006, + "loss": 3.763413906097412, + "step": 2259 + }, + { + "epoch": 31.3914373088685, + "grad_norm": 0.20393887162208557, + "learning_rate": 0.0006, + "loss": 3.73878812789917, + "step": 2260 + }, + { + "epoch": 31.405417212756664, + "grad_norm": 0.21752159297466278, + "learning_rate": 0.0006, + "loss": 3.750549793243408, + "step": 2261 + }, + { + "epoch": 31.419397116644824, + "grad_norm": 0.22629529237747192, + "learning_rate": 0.0006, + "loss": 3.7791430950164795, + "step": 2262 + }, + { + "epoch": 31.433377020532983, + "grad_norm": 0.2114613950252533, + "learning_rate": 0.0006, + "loss": 3.7709264755249023, + "step": 2263 + }, + { + "epoch": 31.447356924421143, + "grad_norm": 0.23241667449474335, + "learning_rate": 0.0006, + "loss": 3.745750665664673, + "step": 2264 + }, + { + "epoch": 31.461336828309307, + "grad_norm": 0.2434246987104416, + "learning_rate": 0.0006, + "loss": 3.769727945327759, + "step": 2265 + }, + { + "epoch": 31.475316732197467, + "grad_norm": 0.247820645570755, + "learning_rate": 0.0006, + "loss": 3.7528204917907715, + "step": 2266 + }, + { + "epoch": 31.489296636085626, + "grad_norm": 0.21287164092063904, + "learning_rate": 0.0006, + "loss": 3.728661060333252, + "step": 2267 + }, + { + "epoch": 31.503276539973786, + "grad_norm": 0.20983846485614777, + "learning_rate": 0.0006, + "loss": 3.7524428367614746, + "step": 2268 + }, + { + "epoch": 31.51725644386195, + "grad_norm": 0.23799288272857666, + "learning_rate": 0.0006, + "loss": 3.7276647090911865, + "step": 2269 + }, + { + "epoch": 31.53123634775011, + "grad_norm": 0.247065007686615, + "learning_rate": 0.0006, + "loss": 3.7506704330444336, + "step": 2270 + }, + { + "epoch": 31.54521625163827, + "grad_norm": 0.20670939981937408, + "learning_rate": 0.0006, + "loss": 3.71852445602417, + "step": 2271 + }, + { + "epoch": 31.55919615552643, + "grad_norm": 0.19463716447353363, + "learning_rate": 0.0006, + "loss": 3.732757568359375, + "step": 2272 + }, + { + "epoch": 31.573176059414592, + "grad_norm": 0.20368841290473938, + "learning_rate": 0.0006, + "loss": 3.746676445007324, + "step": 2273 + }, + { + "epoch": 31.587155963302752, + "grad_norm": 0.19691342115402222, + "learning_rate": 0.0006, + "loss": 3.7535760402679443, + "step": 2274 + }, + { + "epoch": 31.601135867190912, + "grad_norm": 0.2026553899049759, + "learning_rate": 0.0006, + "loss": 3.7406957149505615, + "step": 2275 + }, + { + "epoch": 31.615115771079076, + "grad_norm": 0.21494299173355103, + "learning_rate": 0.0006, + "loss": 3.735888957977295, + "step": 2276 + }, + { + "epoch": 31.629095674967235, + "grad_norm": 0.21644766628742218, + "learning_rate": 0.0006, + "loss": 3.723767042160034, + "step": 2277 + }, + { + "epoch": 31.643075578855395, + "grad_norm": 0.20087581872940063, + "learning_rate": 0.0006, + "loss": 3.7622008323669434, + "step": 2278 + }, + { + "epoch": 31.657055482743555, + "grad_norm": 0.1949695646762848, + "learning_rate": 0.0006, + "loss": 3.7726354598999023, + "step": 2279 + }, + { + "epoch": 31.67103538663172, + "grad_norm": 0.19120797514915466, + "learning_rate": 0.0006, + "loss": 3.7454679012298584, + "step": 2280 + }, + { + "epoch": 31.68501529051988, + "grad_norm": 0.19480115175247192, + "learning_rate": 0.0006, + "loss": 3.743934392929077, + "step": 2281 + }, + { + "epoch": 31.698995194408038, + "grad_norm": 0.1891610324382782, + "learning_rate": 0.0006, + "loss": 3.7724897861480713, + "step": 2282 + }, + { + "epoch": 31.712975098296198, + "grad_norm": 0.18533185124397278, + "learning_rate": 0.0006, + "loss": 3.7556838989257812, + "step": 2283 + }, + { + "epoch": 31.72695500218436, + "grad_norm": 0.20079447329044342, + "learning_rate": 0.0006, + "loss": 3.76758074760437, + "step": 2284 + }, + { + "epoch": 31.74093490607252, + "grad_norm": 0.2103433609008789, + "learning_rate": 0.0006, + "loss": 3.769477367401123, + "step": 2285 + }, + { + "epoch": 31.75491480996068, + "grad_norm": 0.21428923308849335, + "learning_rate": 0.0006, + "loss": 3.7317447662353516, + "step": 2286 + }, + { + "epoch": 31.76889471384884, + "grad_norm": 0.20154133439064026, + "learning_rate": 0.0006, + "loss": 3.749814987182617, + "step": 2287 + }, + { + "epoch": 31.782874617737004, + "grad_norm": 0.18998542428016663, + "learning_rate": 0.0006, + "loss": 3.7655510902404785, + "step": 2288 + }, + { + "epoch": 31.796854521625164, + "grad_norm": 0.2068665474653244, + "learning_rate": 0.0006, + "loss": 3.7375988960266113, + "step": 2289 + }, + { + "epoch": 31.810834425513324, + "grad_norm": 0.22979815304279327, + "learning_rate": 0.0006, + "loss": 3.728095531463623, + "step": 2290 + }, + { + "epoch": 31.824814329401484, + "grad_norm": 0.2378212958574295, + "learning_rate": 0.0006, + "loss": 3.73091459274292, + "step": 2291 + }, + { + "epoch": 31.838794233289647, + "grad_norm": 0.2353672832250595, + "learning_rate": 0.0006, + "loss": 3.7491769790649414, + "step": 2292 + }, + { + "epoch": 31.852774137177807, + "grad_norm": 0.22341586649417877, + "learning_rate": 0.0006, + "loss": 3.777111530303955, + "step": 2293 + }, + { + "epoch": 31.866754041065967, + "grad_norm": 0.20436930656433105, + "learning_rate": 0.0006, + "loss": 3.740997552871704, + "step": 2294 + }, + { + "epoch": 31.88073394495413, + "grad_norm": 0.20836040377616882, + "learning_rate": 0.0006, + "loss": 3.755582571029663, + "step": 2295 + }, + { + "epoch": 31.89471384884229, + "grad_norm": 0.2045193612575531, + "learning_rate": 0.0006, + "loss": 3.7583560943603516, + "step": 2296 + }, + { + "epoch": 31.90869375273045, + "grad_norm": 0.2025591880083084, + "learning_rate": 0.0006, + "loss": 3.773345470428467, + "step": 2297 + }, + { + "epoch": 31.92267365661861, + "grad_norm": 0.20309099555015564, + "learning_rate": 0.0006, + "loss": 3.7392163276672363, + "step": 2298 + }, + { + "epoch": 31.936653560506773, + "grad_norm": 0.2129351645708084, + "learning_rate": 0.0006, + "loss": 3.7801311016082764, + "step": 2299 + }, + { + "epoch": 31.950633464394933, + "grad_norm": 0.19950738549232483, + "learning_rate": 0.0006, + "loss": 3.779261589050293, + "step": 2300 + }, + { + "epoch": 31.964613368283093, + "grad_norm": 0.22837352752685547, + "learning_rate": 0.0006, + "loss": 3.782731294631958, + "step": 2301 + }, + { + "epoch": 31.978593272171253, + "grad_norm": 0.2576889097690582, + "learning_rate": 0.0006, + "loss": 3.7778096199035645, + "step": 2302 + }, + { + "epoch": 31.992573176059416, + "grad_norm": 0.2770138382911682, + "learning_rate": 0.0006, + "loss": 3.735755443572998, + "step": 2303 + }, + { + "epoch": 32.0, + "grad_norm": 0.2632865309715271, + "learning_rate": 0.0006, + "loss": 3.7562808990478516, + "step": 2304 + }, + { + "epoch": 32.0, + "eval_loss": 4.031628608703613, + "eval_runtime": 44.2115, + "eval_samples_per_second": 55.234, + "eval_steps_per_second": 3.461, + "step": 2304 + }, + { + "epoch": 32.01397990388816, + "grad_norm": 0.20234128832817078, + "learning_rate": 0.0006, + "loss": 3.734489917755127, + "step": 2305 + }, + { + "epoch": 32.02795980777632, + "grad_norm": 0.24983637034893036, + "learning_rate": 0.0006, + "loss": 3.7351019382476807, + "step": 2306 + }, + { + "epoch": 32.04193971166448, + "grad_norm": 0.27358478307724, + "learning_rate": 0.0006, + "loss": 3.708712100982666, + "step": 2307 + }, + { + "epoch": 32.05591961555265, + "grad_norm": 0.24693739414215088, + "learning_rate": 0.0006, + "loss": 3.731858491897583, + "step": 2308 + }, + { + "epoch": 32.0698995194408, + "grad_norm": 0.22751131653785706, + "learning_rate": 0.0006, + "loss": 3.7074670791625977, + "step": 2309 + }, + { + "epoch": 32.083879423328966, + "grad_norm": 0.23400720953941345, + "learning_rate": 0.0006, + "loss": 3.714092493057251, + "step": 2310 + }, + { + "epoch": 32.09785932721712, + "grad_norm": 0.20711684226989746, + "learning_rate": 0.0006, + "loss": 3.754727840423584, + "step": 2311 + }, + { + "epoch": 32.111839231105286, + "grad_norm": 0.21589399874210358, + "learning_rate": 0.0006, + "loss": 3.6953847408294678, + "step": 2312 + }, + { + "epoch": 32.12581913499345, + "grad_norm": 0.24575738608837128, + "learning_rate": 0.0006, + "loss": 3.7078802585601807, + "step": 2313 + }, + { + "epoch": 32.139799038881605, + "grad_norm": 0.23152033984661102, + "learning_rate": 0.0006, + "loss": 3.7402305603027344, + "step": 2314 + }, + { + "epoch": 32.15377894276977, + "grad_norm": 0.22639606893062592, + "learning_rate": 0.0006, + "loss": 3.7264223098754883, + "step": 2315 + }, + { + "epoch": 32.16775884665793, + "grad_norm": 0.24701760709285736, + "learning_rate": 0.0006, + "loss": 3.7497639656066895, + "step": 2316 + }, + { + "epoch": 32.18173875054609, + "grad_norm": 0.274832159280777, + "learning_rate": 0.0006, + "loss": 3.7557122707366943, + "step": 2317 + }, + { + "epoch": 32.19571865443425, + "grad_norm": 0.27472418546676636, + "learning_rate": 0.0006, + "loss": 3.6863393783569336, + "step": 2318 + }, + { + "epoch": 32.20969855832241, + "grad_norm": 0.2625530958175659, + "learning_rate": 0.0006, + "loss": 3.7203545570373535, + "step": 2319 + }, + { + "epoch": 32.22367846221057, + "grad_norm": 0.2576068341732025, + "learning_rate": 0.0006, + "loss": 3.734747886657715, + "step": 2320 + }, + { + "epoch": 32.237658366098735, + "grad_norm": 0.25946059823036194, + "learning_rate": 0.0006, + "loss": 3.7501730918884277, + "step": 2321 + }, + { + "epoch": 32.25163826998689, + "grad_norm": 0.2524135410785675, + "learning_rate": 0.0006, + "loss": 3.75177001953125, + "step": 2322 + }, + { + "epoch": 32.265618173875055, + "grad_norm": 0.2568551003932953, + "learning_rate": 0.0006, + "loss": 3.752450704574585, + "step": 2323 + }, + { + "epoch": 32.27959807776322, + "grad_norm": 0.2489749640226364, + "learning_rate": 0.0006, + "loss": 3.711735486984253, + "step": 2324 + }, + { + "epoch": 32.293577981651374, + "grad_norm": 0.2425498366355896, + "learning_rate": 0.0006, + "loss": 3.7004239559173584, + "step": 2325 + }, + { + "epoch": 32.30755788553954, + "grad_norm": 0.24359773099422455, + "learning_rate": 0.0006, + "loss": 3.733870029449463, + "step": 2326 + }, + { + "epoch": 32.3215377894277, + "grad_norm": 0.22314727306365967, + "learning_rate": 0.0006, + "loss": 3.699841022491455, + "step": 2327 + }, + { + "epoch": 32.33551769331586, + "grad_norm": 0.2047620266675949, + "learning_rate": 0.0006, + "loss": 3.732534170150757, + "step": 2328 + }, + { + "epoch": 32.34949759720402, + "grad_norm": 0.24393224716186523, + "learning_rate": 0.0006, + "loss": 3.7200770378112793, + "step": 2329 + }, + { + "epoch": 32.36347750109218, + "grad_norm": 0.23884256184101105, + "learning_rate": 0.0006, + "loss": 3.722318410873413, + "step": 2330 + }, + { + "epoch": 32.37745740498034, + "grad_norm": 0.23262189328670502, + "learning_rate": 0.0006, + "loss": 3.759033203125, + "step": 2331 + }, + { + "epoch": 32.391437308868504, + "grad_norm": 0.22542893886566162, + "learning_rate": 0.0006, + "loss": 3.729198694229126, + "step": 2332 + }, + { + "epoch": 32.40541721275666, + "grad_norm": 0.22479060292243958, + "learning_rate": 0.0006, + "loss": 3.7298169136047363, + "step": 2333 + }, + { + "epoch": 32.419397116644824, + "grad_norm": 0.21571804583072662, + "learning_rate": 0.0006, + "loss": 3.699937343597412, + "step": 2334 + }, + { + "epoch": 32.43337702053299, + "grad_norm": 0.20804545283317566, + "learning_rate": 0.0006, + "loss": 3.7495696544647217, + "step": 2335 + }, + { + "epoch": 32.44735692442114, + "grad_norm": 0.22751706838607788, + "learning_rate": 0.0006, + "loss": 3.7369821071624756, + "step": 2336 + }, + { + "epoch": 32.46133682830931, + "grad_norm": 0.2326795756816864, + "learning_rate": 0.0006, + "loss": 3.7636334896087646, + "step": 2337 + }, + { + "epoch": 32.47531673219746, + "grad_norm": 0.19971159100532532, + "learning_rate": 0.0006, + "loss": 3.72151517868042, + "step": 2338 + }, + { + "epoch": 32.489296636085626, + "grad_norm": 0.21078036725521088, + "learning_rate": 0.0006, + "loss": 3.7050065994262695, + "step": 2339 + }, + { + "epoch": 32.50327653997379, + "grad_norm": 0.22198088467121124, + "learning_rate": 0.0006, + "loss": 3.7654409408569336, + "step": 2340 + }, + { + "epoch": 32.517256443861946, + "grad_norm": 0.20995207130908966, + "learning_rate": 0.0006, + "loss": 3.7516250610351562, + "step": 2341 + }, + { + "epoch": 32.53123634775011, + "grad_norm": 0.20757141709327698, + "learning_rate": 0.0006, + "loss": 3.7412633895874023, + "step": 2342 + }, + { + "epoch": 32.54521625163827, + "grad_norm": 0.20053881406784058, + "learning_rate": 0.0006, + "loss": 3.7477493286132812, + "step": 2343 + }, + { + "epoch": 32.55919615552643, + "grad_norm": 0.20223091542720795, + "learning_rate": 0.0006, + "loss": 3.7149064540863037, + "step": 2344 + }, + { + "epoch": 32.57317605941459, + "grad_norm": 0.20179468393325806, + "learning_rate": 0.0006, + "loss": 3.70635724067688, + "step": 2345 + }, + { + "epoch": 32.58715596330275, + "grad_norm": 0.19670480489730835, + "learning_rate": 0.0006, + "loss": 3.7276744842529297, + "step": 2346 + }, + { + "epoch": 32.60113586719091, + "grad_norm": 0.1992012858390808, + "learning_rate": 0.0006, + "loss": 3.7659356594085693, + "step": 2347 + }, + { + "epoch": 32.615115771079076, + "grad_norm": 0.20124201476573944, + "learning_rate": 0.0006, + "loss": 3.722212791442871, + "step": 2348 + }, + { + "epoch": 32.62909567496723, + "grad_norm": 0.21972708404064178, + "learning_rate": 0.0006, + "loss": 3.751830577850342, + "step": 2349 + }, + { + "epoch": 32.643075578855395, + "grad_norm": 0.20454947650432587, + "learning_rate": 0.0006, + "loss": 3.7196669578552246, + "step": 2350 + }, + { + "epoch": 32.65705548274356, + "grad_norm": 0.1783330887556076, + "learning_rate": 0.0006, + "loss": 3.721461772918701, + "step": 2351 + }, + { + "epoch": 32.671035386631715, + "grad_norm": 0.2027900367975235, + "learning_rate": 0.0006, + "loss": 3.753718614578247, + "step": 2352 + }, + { + "epoch": 32.68501529051988, + "grad_norm": 0.21232381463050842, + "learning_rate": 0.0006, + "loss": 3.732736349105835, + "step": 2353 + }, + { + "epoch": 32.69899519440804, + "grad_norm": 0.2214568555355072, + "learning_rate": 0.0006, + "loss": 3.7250165939331055, + "step": 2354 + }, + { + "epoch": 32.7129750982962, + "grad_norm": 0.2626485228538513, + "learning_rate": 0.0006, + "loss": 3.72263503074646, + "step": 2355 + }, + { + "epoch": 32.72695500218436, + "grad_norm": 0.30096277594566345, + "learning_rate": 0.0006, + "loss": 3.7599854469299316, + "step": 2356 + }, + { + "epoch": 32.74093490607252, + "grad_norm": 0.3374342620372772, + "learning_rate": 0.0006, + "loss": 3.7493844032287598, + "step": 2357 + }, + { + "epoch": 32.75491480996068, + "grad_norm": 0.3051377534866333, + "learning_rate": 0.0006, + "loss": 3.7515692710876465, + "step": 2358 + }, + { + "epoch": 32.768894713848844, + "grad_norm": 0.2130587249994278, + "learning_rate": 0.0006, + "loss": 3.751307964324951, + "step": 2359 + }, + { + "epoch": 32.782874617737, + "grad_norm": 0.25198230147361755, + "learning_rate": 0.0006, + "loss": 3.7500064373016357, + "step": 2360 + }, + { + "epoch": 32.796854521625164, + "grad_norm": 0.27613863348960876, + "learning_rate": 0.0006, + "loss": 3.7257039546966553, + "step": 2361 + }, + { + "epoch": 32.81083442551333, + "grad_norm": 0.23749367892742157, + "learning_rate": 0.0006, + "loss": 3.778343439102173, + "step": 2362 + }, + { + "epoch": 32.824814329401484, + "grad_norm": 0.2063702642917633, + "learning_rate": 0.0006, + "loss": 3.7493772506713867, + "step": 2363 + }, + { + "epoch": 32.83879423328965, + "grad_norm": 0.21169374883174896, + "learning_rate": 0.0006, + "loss": 3.722567081451416, + "step": 2364 + }, + { + "epoch": 32.8527741371778, + "grad_norm": 0.23291490972042084, + "learning_rate": 0.0006, + "loss": 3.7555532455444336, + "step": 2365 + }, + { + "epoch": 32.86675404106597, + "grad_norm": 0.21486155688762665, + "learning_rate": 0.0006, + "loss": 3.7401528358459473, + "step": 2366 + }, + { + "epoch": 32.88073394495413, + "grad_norm": 0.2296247035264969, + "learning_rate": 0.0006, + "loss": 3.7867965698242188, + "step": 2367 + }, + { + "epoch": 32.89471384884229, + "grad_norm": 0.2335108071565628, + "learning_rate": 0.0006, + "loss": 3.768036365509033, + "step": 2368 + }, + { + "epoch": 32.90869375273045, + "grad_norm": 0.23921863734722137, + "learning_rate": 0.0006, + "loss": 3.725252151489258, + "step": 2369 + }, + { + "epoch": 32.92267365661861, + "grad_norm": 0.20303526520729065, + "learning_rate": 0.0006, + "loss": 3.7806248664855957, + "step": 2370 + }, + { + "epoch": 32.93665356050677, + "grad_norm": 0.19293150305747986, + "learning_rate": 0.0006, + "loss": 3.759281873703003, + "step": 2371 + }, + { + "epoch": 32.95063346439493, + "grad_norm": 0.20609107613563538, + "learning_rate": 0.0006, + "loss": 3.764190196990967, + "step": 2372 + }, + { + "epoch": 32.964613368283096, + "grad_norm": 0.2014189213514328, + "learning_rate": 0.0006, + "loss": 3.7365214824676514, + "step": 2373 + }, + { + "epoch": 32.97859327217125, + "grad_norm": 0.22045451402664185, + "learning_rate": 0.0006, + "loss": 3.7435812950134277, + "step": 2374 + }, + { + "epoch": 32.992573176059416, + "grad_norm": 0.24228639900684357, + "learning_rate": 0.0006, + "loss": 3.751309394836426, + "step": 2375 + }, + { + "epoch": 33.0, + "grad_norm": 0.2645106613636017, + "learning_rate": 0.0006, + "loss": 3.7629928588867188, + "step": 2376 + }, + { + "epoch": 33.0, + "eval_loss": 4.026789665222168, + "eval_runtime": 44.9957, + "eval_samples_per_second": 54.272, + "eval_steps_per_second": 3.4, + "step": 2376 + }, + { + "epoch": 33.01397990388816, + "grad_norm": 0.21402551233768463, + "learning_rate": 0.0006, + "loss": 3.72019100189209, + "step": 2377 + }, + { + "epoch": 33.02795980777632, + "grad_norm": 0.23886585235595703, + "learning_rate": 0.0006, + "loss": 3.687084674835205, + "step": 2378 + }, + { + "epoch": 33.04193971166448, + "grad_norm": 0.29936572909355164, + "learning_rate": 0.0006, + "loss": 3.697310447692871, + "step": 2379 + }, + { + "epoch": 33.05591961555265, + "grad_norm": 0.30007585883140564, + "learning_rate": 0.0006, + "loss": 3.6913352012634277, + "step": 2380 + }, + { + "epoch": 33.0698995194408, + "grad_norm": 0.26594656705856323, + "learning_rate": 0.0006, + "loss": 3.740802526473999, + "step": 2381 + }, + { + "epoch": 33.083879423328966, + "grad_norm": 0.2658730447292328, + "learning_rate": 0.0006, + "loss": 3.692746162414551, + "step": 2382 + }, + { + "epoch": 33.09785932721712, + "grad_norm": 0.26755523681640625, + "learning_rate": 0.0006, + "loss": 3.7534420490264893, + "step": 2383 + }, + { + "epoch": 33.111839231105286, + "grad_norm": 0.23070940375328064, + "learning_rate": 0.0006, + "loss": 3.717876672744751, + "step": 2384 + }, + { + "epoch": 33.12581913499345, + "grad_norm": 0.2476235181093216, + "learning_rate": 0.0006, + "loss": 3.7072248458862305, + "step": 2385 + }, + { + "epoch": 33.139799038881605, + "grad_norm": 0.2454477846622467, + "learning_rate": 0.0006, + "loss": 3.729762077331543, + "step": 2386 + }, + { + "epoch": 33.15377894276977, + "grad_norm": 0.24090935289859772, + "learning_rate": 0.0006, + "loss": 3.721374988555908, + "step": 2387 + }, + { + "epoch": 33.16775884665793, + "grad_norm": 0.2440263032913208, + "learning_rate": 0.0006, + "loss": 3.730433464050293, + "step": 2388 + }, + { + "epoch": 33.18173875054609, + "grad_norm": 0.21699118614196777, + "learning_rate": 0.0006, + "loss": 3.724730968475342, + "step": 2389 + }, + { + "epoch": 33.19571865443425, + "grad_norm": 0.2302001267671585, + "learning_rate": 0.0006, + "loss": 3.69376277923584, + "step": 2390 + }, + { + "epoch": 33.20969855832241, + "grad_norm": 0.24707409739494324, + "learning_rate": 0.0006, + "loss": 3.705653667449951, + "step": 2391 + }, + { + "epoch": 33.22367846221057, + "grad_norm": 0.22896641492843628, + "learning_rate": 0.0006, + "loss": 3.747000217437744, + "step": 2392 + }, + { + "epoch": 33.237658366098735, + "grad_norm": 0.2278730720281601, + "learning_rate": 0.0006, + "loss": 3.733464241027832, + "step": 2393 + }, + { + "epoch": 33.25163826998689, + "grad_norm": 0.23909862339496613, + "learning_rate": 0.0006, + "loss": 3.733661413192749, + "step": 2394 + }, + { + "epoch": 33.265618173875055, + "grad_norm": 0.2349950075149536, + "learning_rate": 0.0006, + "loss": 3.7337965965270996, + "step": 2395 + }, + { + "epoch": 33.27959807776322, + "grad_norm": 0.22655968368053436, + "learning_rate": 0.0006, + "loss": 3.70503306388855, + "step": 2396 + }, + { + "epoch": 33.293577981651374, + "grad_norm": 0.22167043387889862, + "learning_rate": 0.0006, + "loss": 3.738797903060913, + "step": 2397 + }, + { + "epoch": 33.30755788553954, + "grad_norm": 0.2278883010149002, + "learning_rate": 0.0006, + "loss": 3.712550640106201, + "step": 2398 + }, + { + "epoch": 33.3215377894277, + "grad_norm": 0.2220565229654312, + "learning_rate": 0.0006, + "loss": 3.7278006076812744, + "step": 2399 + }, + { + "epoch": 33.33551769331586, + "grad_norm": 0.21888740360736847, + "learning_rate": 0.0006, + "loss": 3.72243595123291, + "step": 2400 + }, + { + "epoch": 33.34949759720402, + "grad_norm": 0.21587581932544708, + "learning_rate": 0.0006, + "loss": 3.7177581787109375, + "step": 2401 + }, + { + "epoch": 33.36347750109218, + "grad_norm": 0.1923578530550003, + "learning_rate": 0.0006, + "loss": 3.711294651031494, + "step": 2402 + }, + { + "epoch": 33.37745740498034, + "grad_norm": 0.1994934380054474, + "learning_rate": 0.0006, + "loss": 3.762061595916748, + "step": 2403 + }, + { + "epoch": 33.391437308868504, + "grad_norm": 0.20074427127838135, + "learning_rate": 0.0006, + "loss": 3.708559036254883, + "step": 2404 + }, + { + "epoch": 33.40541721275666, + "grad_norm": 0.21349482238292694, + "learning_rate": 0.0006, + "loss": 3.7089147567749023, + "step": 2405 + }, + { + "epoch": 33.419397116644824, + "grad_norm": 0.25523608922958374, + "learning_rate": 0.0006, + "loss": 3.7241058349609375, + "step": 2406 + }, + { + "epoch": 33.43337702053299, + "grad_norm": 0.27654796838760376, + "learning_rate": 0.0006, + "loss": 3.723618984222412, + "step": 2407 + }, + { + "epoch": 33.44735692442114, + "grad_norm": 0.2651479244232178, + "learning_rate": 0.0006, + "loss": 3.7367782592773438, + "step": 2408 + }, + { + "epoch": 33.46133682830931, + "grad_norm": 0.23403556644916534, + "learning_rate": 0.0006, + "loss": 3.7198312282562256, + "step": 2409 + }, + { + "epoch": 33.47531673219746, + "grad_norm": 0.20970726013183594, + "learning_rate": 0.0006, + "loss": 3.7088186740875244, + "step": 2410 + }, + { + "epoch": 33.489296636085626, + "grad_norm": 0.18532544374465942, + "learning_rate": 0.0006, + "loss": 3.7162208557128906, + "step": 2411 + }, + { + "epoch": 33.50327653997379, + "grad_norm": 0.19590279459953308, + "learning_rate": 0.0006, + "loss": 3.766357898712158, + "step": 2412 + }, + { + "epoch": 33.517256443861946, + "grad_norm": 0.203349307179451, + "learning_rate": 0.0006, + "loss": 3.732177257537842, + "step": 2413 + }, + { + "epoch": 33.53123634775011, + "grad_norm": 0.2015952616930008, + "learning_rate": 0.0006, + "loss": 3.741609573364258, + "step": 2414 + }, + { + "epoch": 33.54521625163827, + "grad_norm": 0.20024161040782928, + "learning_rate": 0.0006, + "loss": 3.6894431114196777, + "step": 2415 + }, + { + "epoch": 33.55919615552643, + "grad_norm": 0.20932617783546448, + "learning_rate": 0.0006, + "loss": 3.721979856491089, + "step": 2416 + }, + { + "epoch": 33.57317605941459, + "grad_norm": 0.22069773077964783, + "learning_rate": 0.0006, + "loss": 3.712203025817871, + "step": 2417 + }, + { + "epoch": 33.58715596330275, + "grad_norm": 0.22341343760490417, + "learning_rate": 0.0006, + "loss": 3.7469263076782227, + "step": 2418 + }, + { + "epoch": 33.60113586719091, + "grad_norm": 0.21758507192134857, + "learning_rate": 0.0006, + "loss": 3.721778392791748, + "step": 2419 + }, + { + "epoch": 33.615115771079076, + "grad_norm": 0.20480088889598846, + "learning_rate": 0.0006, + "loss": 3.743570327758789, + "step": 2420 + }, + { + "epoch": 33.62909567496723, + "grad_norm": 0.23068399727344513, + "learning_rate": 0.0006, + "loss": 3.7203001976013184, + "step": 2421 + }, + { + "epoch": 33.643075578855395, + "grad_norm": 0.2526263892650604, + "learning_rate": 0.0006, + "loss": 3.7336440086364746, + "step": 2422 + }, + { + "epoch": 33.65705548274356, + "grad_norm": 0.218627467751503, + "learning_rate": 0.0006, + "loss": 3.730762243270874, + "step": 2423 + }, + { + "epoch": 33.671035386631715, + "grad_norm": 0.21883417665958405, + "learning_rate": 0.0006, + "loss": 3.749356508255005, + "step": 2424 + }, + { + "epoch": 33.68501529051988, + "grad_norm": 0.22885626554489136, + "learning_rate": 0.0006, + "loss": 3.7426199913024902, + "step": 2425 + }, + { + "epoch": 33.69899519440804, + "grad_norm": 0.23709580302238464, + "learning_rate": 0.0006, + "loss": 3.691652774810791, + "step": 2426 + }, + { + "epoch": 33.7129750982962, + "grad_norm": 0.2258225381374359, + "learning_rate": 0.0006, + "loss": 3.7368886470794678, + "step": 2427 + }, + { + "epoch": 33.72695500218436, + "grad_norm": 0.1993306577205658, + "learning_rate": 0.0006, + "loss": 3.722733497619629, + "step": 2428 + }, + { + "epoch": 33.74093490607252, + "grad_norm": 0.20307473838329315, + "learning_rate": 0.0006, + "loss": 3.7507500648498535, + "step": 2429 + }, + { + "epoch": 33.75491480996068, + "grad_norm": 0.20076696574687958, + "learning_rate": 0.0006, + "loss": 3.6896910667419434, + "step": 2430 + }, + { + "epoch": 33.768894713848844, + "grad_norm": 0.21118830144405365, + "learning_rate": 0.0006, + "loss": 3.7176647186279297, + "step": 2431 + }, + { + "epoch": 33.782874617737, + "grad_norm": 0.21605782210826874, + "learning_rate": 0.0006, + "loss": 3.7423641681671143, + "step": 2432 + }, + { + "epoch": 33.796854521625164, + "grad_norm": 0.22233152389526367, + "learning_rate": 0.0006, + "loss": 3.7296109199523926, + "step": 2433 + }, + { + "epoch": 33.81083442551333, + "grad_norm": 0.2253616899251938, + "learning_rate": 0.0006, + "loss": 3.7095072269439697, + "step": 2434 + }, + { + "epoch": 33.824814329401484, + "grad_norm": 0.2105807662010193, + "learning_rate": 0.0006, + "loss": 3.760921001434326, + "step": 2435 + }, + { + "epoch": 33.83879423328965, + "grad_norm": 0.20413213968276978, + "learning_rate": 0.0006, + "loss": 3.7356553077697754, + "step": 2436 + }, + { + "epoch": 33.8527741371778, + "grad_norm": 0.19781213998794556, + "learning_rate": 0.0006, + "loss": 3.726787567138672, + "step": 2437 + }, + { + "epoch": 33.86675404106597, + "grad_norm": 0.199616938829422, + "learning_rate": 0.0006, + "loss": 3.7200419902801514, + "step": 2438 + }, + { + "epoch": 33.88073394495413, + "grad_norm": 0.19702564179897308, + "learning_rate": 0.0006, + "loss": 3.714287281036377, + "step": 2439 + }, + { + "epoch": 33.89471384884229, + "grad_norm": 0.19456833600997925, + "learning_rate": 0.0006, + "loss": 3.739231586456299, + "step": 2440 + }, + { + "epoch": 33.90869375273045, + "grad_norm": 0.1890697181224823, + "learning_rate": 0.0006, + "loss": 3.7088429927825928, + "step": 2441 + }, + { + "epoch": 33.92267365661861, + "grad_norm": 0.1845911741256714, + "learning_rate": 0.0006, + "loss": 3.760782241821289, + "step": 2442 + }, + { + "epoch": 33.93665356050677, + "grad_norm": 0.19045902788639069, + "learning_rate": 0.0006, + "loss": 3.736957311630249, + "step": 2443 + }, + { + "epoch": 33.95063346439493, + "grad_norm": 0.1934187412261963, + "learning_rate": 0.0006, + "loss": 3.756351947784424, + "step": 2444 + }, + { + "epoch": 33.964613368283096, + "grad_norm": 0.19774580001831055, + "learning_rate": 0.0006, + "loss": 3.7332229614257812, + "step": 2445 + }, + { + "epoch": 33.97859327217125, + "grad_norm": 0.20653048157691956, + "learning_rate": 0.0006, + "loss": 3.7112321853637695, + "step": 2446 + }, + { + "epoch": 33.992573176059416, + "grad_norm": 0.18618541955947876, + "learning_rate": 0.0006, + "loss": 3.735710620880127, + "step": 2447 + }, + { + "epoch": 34.0, + "grad_norm": 0.22846414148807526, + "learning_rate": 0.0006, + "loss": 3.739706039428711, + "step": 2448 + }, + { + "epoch": 34.0, + "eval_loss": 4.0099663734436035, + "eval_runtime": 45.2096, + "eval_samples_per_second": 54.015, + "eval_steps_per_second": 3.384, + "step": 2448 + }, + { + "epoch": 34.01397990388816, + "grad_norm": 0.20987462997436523, + "learning_rate": 0.0006, + "loss": 3.6798832416534424, + "step": 2449 + }, + { + "epoch": 34.02795980777632, + "grad_norm": 0.2230423390865326, + "learning_rate": 0.0006, + "loss": 3.7157368659973145, + "step": 2450 + }, + { + "epoch": 34.04193971166448, + "grad_norm": 0.24115242063999176, + "learning_rate": 0.0006, + "loss": 3.696037769317627, + "step": 2451 + }, + { + "epoch": 34.05591961555265, + "grad_norm": 0.24499665200710297, + "learning_rate": 0.0006, + "loss": 3.695420742034912, + "step": 2452 + }, + { + "epoch": 34.0698995194408, + "grad_norm": 0.23336757719516754, + "learning_rate": 0.0006, + "loss": 3.7252023220062256, + "step": 2453 + }, + { + "epoch": 34.083879423328966, + "grad_norm": 0.23716159164905548, + "learning_rate": 0.0006, + "loss": 3.714542865753174, + "step": 2454 + }, + { + "epoch": 34.09785932721712, + "grad_norm": 0.2305644154548645, + "learning_rate": 0.0006, + "loss": 3.6989386081695557, + "step": 2455 + }, + { + "epoch": 34.111839231105286, + "grad_norm": 0.2281671017408371, + "learning_rate": 0.0006, + "loss": 3.6952829360961914, + "step": 2456 + }, + { + "epoch": 34.12581913499345, + "grad_norm": 0.21031132340431213, + "learning_rate": 0.0006, + "loss": 3.7337589263916016, + "step": 2457 + }, + { + "epoch": 34.139799038881605, + "grad_norm": 0.2233671098947525, + "learning_rate": 0.0006, + "loss": 3.6923675537109375, + "step": 2458 + }, + { + "epoch": 34.15377894276977, + "grad_norm": 0.22766625881195068, + "learning_rate": 0.0006, + "loss": 3.70849609375, + "step": 2459 + }, + { + "epoch": 34.16775884665793, + "grad_norm": 0.22433766722679138, + "learning_rate": 0.0006, + "loss": 3.718319892883301, + "step": 2460 + }, + { + "epoch": 34.18173875054609, + "grad_norm": 0.20621491968631744, + "learning_rate": 0.0006, + "loss": 3.6874704360961914, + "step": 2461 + }, + { + "epoch": 34.19571865443425, + "grad_norm": 0.21353304386138916, + "learning_rate": 0.0006, + "loss": 3.663358688354492, + "step": 2462 + }, + { + "epoch": 34.20969855832241, + "grad_norm": 0.20652951300144196, + "learning_rate": 0.0006, + "loss": 3.718107223510742, + "step": 2463 + }, + { + "epoch": 34.22367846221057, + "grad_norm": 0.19780176877975464, + "learning_rate": 0.0006, + "loss": 3.7255396842956543, + "step": 2464 + }, + { + "epoch": 34.237658366098735, + "grad_norm": 0.20636138319969177, + "learning_rate": 0.0006, + "loss": 3.696850538253784, + "step": 2465 + }, + { + "epoch": 34.25163826998689, + "grad_norm": 0.23691460490226746, + "learning_rate": 0.0006, + "loss": 3.687997341156006, + "step": 2466 + }, + { + "epoch": 34.265618173875055, + "grad_norm": 0.2380511611700058, + "learning_rate": 0.0006, + "loss": 3.716610908508301, + "step": 2467 + }, + { + "epoch": 34.27959807776322, + "grad_norm": 0.21508945524692535, + "learning_rate": 0.0006, + "loss": 3.6993470191955566, + "step": 2468 + }, + { + "epoch": 34.293577981651374, + "grad_norm": 0.20441125333309174, + "learning_rate": 0.0006, + "loss": 3.7194275856018066, + "step": 2469 + }, + { + "epoch": 34.30755788553954, + "grad_norm": 0.19704242050647736, + "learning_rate": 0.0006, + "loss": 3.675929546356201, + "step": 2470 + }, + { + "epoch": 34.3215377894277, + "grad_norm": 0.1918456256389618, + "learning_rate": 0.0006, + "loss": 3.7189574241638184, + "step": 2471 + }, + { + "epoch": 34.33551769331586, + "grad_norm": 0.19687092304229736, + "learning_rate": 0.0006, + "loss": 3.725809335708618, + "step": 2472 + }, + { + "epoch": 34.34949759720402, + "grad_norm": 0.2048639953136444, + "learning_rate": 0.0006, + "loss": 3.7461748123168945, + "step": 2473 + }, + { + "epoch": 34.36347750109218, + "grad_norm": 0.21086618304252625, + "learning_rate": 0.0006, + "loss": 3.6849746704101562, + "step": 2474 + }, + { + "epoch": 34.37745740498034, + "grad_norm": 0.2172154039144516, + "learning_rate": 0.0006, + "loss": 3.7379322052001953, + "step": 2475 + }, + { + "epoch": 34.391437308868504, + "grad_norm": 0.22725504636764526, + "learning_rate": 0.0006, + "loss": 3.7341527938842773, + "step": 2476 + }, + { + "epoch": 34.40541721275666, + "grad_norm": 0.22309242188930511, + "learning_rate": 0.0006, + "loss": 3.724946975708008, + "step": 2477 + }, + { + "epoch": 34.419397116644824, + "grad_norm": 0.25252285599708557, + "learning_rate": 0.0006, + "loss": 3.710257053375244, + "step": 2478 + }, + { + "epoch": 34.43337702053299, + "grad_norm": 0.2549746334552765, + "learning_rate": 0.0006, + "loss": 3.7105040550231934, + "step": 2479 + }, + { + "epoch": 34.44735692442114, + "grad_norm": 0.22544030845165253, + "learning_rate": 0.0006, + "loss": 3.7340707778930664, + "step": 2480 + }, + { + "epoch": 34.46133682830931, + "grad_norm": 0.22275063395500183, + "learning_rate": 0.0006, + "loss": 3.7141473293304443, + "step": 2481 + }, + { + "epoch": 34.47531673219746, + "grad_norm": 0.25373485684394836, + "learning_rate": 0.0006, + "loss": 3.7014691829681396, + "step": 2482 + }, + { + "epoch": 34.489296636085626, + "grad_norm": 0.2573327124118805, + "learning_rate": 0.0006, + "loss": 3.682562828063965, + "step": 2483 + }, + { + "epoch": 34.50327653997379, + "grad_norm": 0.2452341616153717, + "learning_rate": 0.0006, + "loss": 3.757261276245117, + "step": 2484 + }, + { + "epoch": 34.517256443861946, + "grad_norm": 0.2477131187915802, + "learning_rate": 0.0006, + "loss": 3.7216877937316895, + "step": 2485 + }, + { + "epoch": 34.53123634775011, + "grad_norm": 0.24740098416805267, + "learning_rate": 0.0006, + "loss": 3.705704927444458, + "step": 2486 + }, + { + "epoch": 34.54521625163827, + "grad_norm": 0.27306219935417175, + "learning_rate": 0.0006, + "loss": 3.7014641761779785, + "step": 2487 + }, + { + "epoch": 34.55919615552643, + "grad_norm": 0.26376286149024963, + "learning_rate": 0.0006, + "loss": 3.686056137084961, + "step": 2488 + }, + { + "epoch": 34.57317605941459, + "grad_norm": 0.2796899378299713, + "learning_rate": 0.0006, + "loss": 3.7171077728271484, + "step": 2489 + }, + { + "epoch": 34.58715596330275, + "grad_norm": 0.24279902875423431, + "learning_rate": 0.0006, + "loss": 3.7448348999023438, + "step": 2490 + }, + { + "epoch": 34.60113586719091, + "grad_norm": 0.22772833704948425, + "learning_rate": 0.0006, + "loss": 3.7028117179870605, + "step": 2491 + }, + { + "epoch": 34.615115771079076, + "grad_norm": 0.22157910466194153, + "learning_rate": 0.0006, + "loss": 3.750023603439331, + "step": 2492 + }, + { + "epoch": 34.62909567496723, + "grad_norm": 0.24342703819274902, + "learning_rate": 0.0006, + "loss": 3.7181010246276855, + "step": 2493 + }, + { + "epoch": 34.643075578855395, + "grad_norm": 0.2554340362548828, + "learning_rate": 0.0006, + "loss": 3.6994080543518066, + "step": 2494 + }, + { + "epoch": 34.65705548274356, + "grad_norm": 0.21296930313110352, + "learning_rate": 0.0006, + "loss": 3.7534523010253906, + "step": 2495 + }, + { + "epoch": 34.671035386631715, + "grad_norm": 0.19117674231529236, + "learning_rate": 0.0006, + "loss": 3.7267889976501465, + "step": 2496 + }, + { + "epoch": 34.68501529051988, + "grad_norm": 0.2306399643421173, + "learning_rate": 0.0006, + "loss": 3.723212242126465, + "step": 2497 + }, + { + "epoch": 34.69899519440804, + "grad_norm": 0.23063263297080994, + "learning_rate": 0.0006, + "loss": 3.730070114135742, + "step": 2498 + }, + { + "epoch": 34.7129750982962, + "grad_norm": 0.19422881305217743, + "learning_rate": 0.0006, + "loss": 3.694833755493164, + "step": 2499 + }, + { + "epoch": 34.72695500218436, + "grad_norm": 0.20246362686157227, + "learning_rate": 0.0006, + "loss": 3.71140718460083, + "step": 2500 + }, + { + "epoch": 34.74093490607252, + "grad_norm": 0.1942741572856903, + "learning_rate": 0.0006, + "loss": 3.7530534267425537, + "step": 2501 + }, + { + "epoch": 34.75491480996068, + "grad_norm": 0.19686029851436615, + "learning_rate": 0.0006, + "loss": 3.7059555053710938, + "step": 2502 + }, + { + "epoch": 34.768894713848844, + "grad_norm": 0.20120355486869812, + "learning_rate": 0.0006, + "loss": 3.7271084785461426, + "step": 2503 + }, + { + "epoch": 34.782874617737, + "grad_norm": 0.20880399644374847, + "learning_rate": 0.0006, + "loss": 3.712137460708618, + "step": 2504 + }, + { + "epoch": 34.796854521625164, + "grad_norm": 0.22139988839626312, + "learning_rate": 0.0006, + "loss": 3.731245517730713, + "step": 2505 + }, + { + "epoch": 34.81083442551333, + "grad_norm": 0.22756224870681763, + "learning_rate": 0.0006, + "loss": 3.708987236022949, + "step": 2506 + }, + { + "epoch": 34.824814329401484, + "grad_norm": 0.22332409024238586, + "learning_rate": 0.0006, + "loss": 3.7365565299987793, + "step": 2507 + }, + { + "epoch": 34.83879423328965, + "grad_norm": 0.19599054753780365, + "learning_rate": 0.0006, + "loss": 3.7266454696655273, + "step": 2508 + }, + { + "epoch": 34.8527741371778, + "grad_norm": 0.19843019545078278, + "learning_rate": 0.0006, + "loss": 3.7225422859191895, + "step": 2509 + }, + { + "epoch": 34.86675404106597, + "grad_norm": 0.20147928595542908, + "learning_rate": 0.0006, + "loss": 3.7282514572143555, + "step": 2510 + }, + { + "epoch": 34.88073394495413, + "grad_norm": 0.19489876925945282, + "learning_rate": 0.0006, + "loss": 3.694852113723755, + "step": 2511 + }, + { + "epoch": 34.89471384884229, + "grad_norm": 0.20680078864097595, + "learning_rate": 0.0006, + "loss": 3.74678635597229, + "step": 2512 + }, + { + "epoch": 34.90869375273045, + "grad_norm": 0.2233233004808426, + "learning_rate": 0.0006, + "loss": 3.726475238800049, + "step": 2513 + }, + { + "epoch": 34.92267365661861, + "grad_norm": 0.20702993869781494, + "learning_rate": 0.0006, + "loss": 3.6946351528167725, + "step": 2514 + }, + { + "epoch": 34.93665356050677, + "grad_norm": 0.2081725299358368, + "learning_rate": 0.0006, + "loss": 3.7101621627807617, + "step": 2515 + }, + { + "epoch": 34.95063346439493, + "grad_norm": 0.20551837980747223, + "learning_rate": 0.0006, + "loss": 3.7060177326202393, + "step": 2516 + }, + { + "epoch": 34.964613368283096, + "grad_norm": 0.2106839418411255, + "learning_rate": 0.0006, + "loss": 3.7460474967956543, + "step": 2517 + }, + { + "epoch": 34.97859327217125, + "grad_norm": 0.18512766063213348, + "learning_rate": 0.0006, + "loss": 3.719280242919922, + "step": 2518 + }, + { + "epoch": 34.992573176059416, + "grad_norm": 0.1802142709493637, + "learning_rate": 0.0006, + "loss": 3.698255777359009, + "step": 2519 + }, + { + "epoch": 35.0, + "grad_norm": 0.2028084248304367, + "learning_rate": 0.0006, + "loss": 3.711136817932129, + "step": 2520 + }, + { + "epoch": 35.0, + "eval_loss": 4.006688117980957, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 2520 + }, + { + "epoch": 35.01397990388816, + "grad_norm": 0.1973012387752533, + "learning_rate": 0.0006, + "loss": 3.7108325958251953, + "step": 2521 + }, + { + "epoch": 35.02795980777632, + "grad_norm": 0.23763646185398102, + "learning_rate": 0.0006, + "loss": 3.675785541534424, + "step": 2522 + }, + { + "epoch": 35.04193971166448, + "grad_norm": 0.24403199553489685, + "learning_rate": 0.0006, + "loss": 3.7034249305725098, + "step": 2523 + }, + { + "epoch": 35.05591961555265, + "grad_norm": 0.19050131738185883, + "learning_rate": 0.0006, + "loss": 3.6984221935272217, + "step": 2524 + }, + { + "epoch": 35.0698995194408, + "grad_norm": 0.21389710903167725, + "learning_rate": 0.0006, + "loss": 3.6641085147857666, + "step": 2525 + }, + { + "epoch": 35.083879423328966, + "grad_norm": 0.23103152215480804, + "learning_rate": 0.0006, + "loss": 3.722912311553955, + "step": 2526 + }, + { + "epoch": 35.09785932721712, + "grad_norm": 0.2197326272726059, + "learning_rate": 0.0006, + "loss": 3.696568727493286, + "step": 2527 + }, + { + "epoch": 35.111839231105286, + "grad_norm": 0.20877327024936676, + "learning_rate": 0.0006, + "loss": 3.666700601577759, + "step": 2528 + }, + { + "epoch": 35.12581913499345, + "grad_norm": 0.20904001593589783, + "learning_rate": 0.0006, + "loss": 3.6896979808807373, + "step": 2529 + }, + { + "epoch": 35.139799038881605, + "grad_norm": 0.1947423666715622, + "learning_rate": 0.0006, + "loss": 3.6647095680236816, + "step": 2530 + }, + { + "epoch": 35.15377894276977, + "grad_norm": 0.2134019434452057, + "learning_rate": 0.0006, + "loss": 3.696993589401245, + "step": 2531 + }, + { + "epoch": 35.16775884665793, + "grad_norm": 0.2299254685640335, + "learning_rate": 0.0006, + "loss": 3.7067925930023193, + "step": 2532 + }, + { + "epoch": 35.18173875054609, + "grad_norm": 0.219585582613945, + "learning_rate": 0.0006, + "loss": 3.6680960655212402, + "step": 2533 + }, + { + "epoch": 35.19571865443425, + "grad_norm": 0.2146025449037552, + "learning_rate": 0.0006, + "loss": 3.7185046672821045, + "step": 2534 + }, + { + "epoch": 35.20969855832241, + "grad_norm": 0.22748060524463654, + "learning_rate": 0.0006, + "loss": 3.659202814102173, + "step": 2535 + }, + { + "epoch": 35.22367846221057, + "grad_norm": 0.22272273898124695, + "learning_rate": 0.0006, + "loss": 3.7002370357513428, + "step": 2536 + }, + { + "epoch": 35.237658366098735, + "grad_norm": 0.23827379941940308, + "learning_rate": 0.0006, + "loss": 3.714664936065674, + "step": 2537 + }, + { + "epoch": 35.25163826998689, + "grad_norm": 0.2328156679868698, + "learning_rate": 0.0006, + "loss": 3.665173292160034, + "step": 2538 + }, + { + "epoch": 35.265618173875055, + "grad_norm": 0.2573475241661072, + "learning_rate": 0.0006, + "loss": 3.7073206901550293, + "step": 2539 + }, + { + "epoch": 35.27959807776322, + "grad_norm": 0.2411472052335739, + "learning_rate": 0.0006, + "loss": 3.697751045227051, + "step": 2540 + }, + { + "epoch": 35.293577981651374, + "grad_norm": 0.22836148738861084, + "learning_rate": 0.0006, + "loss": 3.7219419479370117, + "step": 2541 + }, + { + "epoch": 35.30755788553954, + "grad_norm": 0.2225421667098999, + "learning_rate": 0.0006, + "loss": 3.69516658782959, + "step": 2542 + }, + { + "epoch": 35.3215377894277, + "grad_norm": 0.2180362343788147, + "learning_rate": 0.0006, + "loss": 3.714043378829956, + "step": 2543 + }, + { + "epoch": 35.33551769331586, + "grad_norm": 0.23638299107551575, + "learning_rate": 0.0006, + "loss": 3.7449421882629395, + "step": 2544 + }, + { + "epoch": 35.34949759720402, + "grad_norm": 0.21792089939117432, + "learning_rate": 0.0006, + "loss": 3.7029948234558105, + "step": 2545 + }, + { + "epoch": 35.36347750109218, + "grad_norm": 0.23266112804412842, + "learning_rate": 0.0006, + "loss": 3.683509111404419, + "step": 2546 + }, + { + "epoch": 35.37745740498034, + "grad_norm": 0.24203059077262878, + "learning_rate": 0.0006, + "loss": 3.68572998046875, + "step": 2547 + }, + { + "epoch": 35.391437308868504, + "grad_norm": 0.2543564438819885, + "learning_rate": 0.0006, + "loss": 3.6902432441711426, + "step": 2548 + }, + { + "epoch": 35.40541721275666, + "grad_norm": 0.22990189492702484, + "learning_rate": 0.0006, + "loss": 3.708810329437256, + "step": 2549 + }, + { + "epoch": 35.419397116644824, + "grad_norm": 0.2594352662563324, + "learning_rate": 0.0006, + "loss": 3.7312886714935303, + "step": 2550 + }, + { + "epoch": 35.43337702053299, + "grad_norm": 0.27525269985198975, + "learning_rate": 0.0006, + "loss": 3.6963448524475098, + "step": 2551 + }, + { + "epoch": 35.44735692442114, + "grad_norm": 0.2436525970697403, + "learning_rate": 0.0006, + "loss": 3.6733713150024414, + "step": 2552 + }, + { + "epoch": 35.46133682830931, + "grad_norm": 0.25500908493995667, + "learning_rate": 0.0006, + "loss": 3.7104358673095703, + "step": 2553 + }, + { + "epoch": 35.47531673219746, + "grad_norm": 0.23504602909088135, + "learning_rate": 0.0006, + "loss": 3.7052388191223145, + "step": 2554 + }, + { + "epoch": 35.489296636085626, + "grad_norm": 0.2277563363313675, + "learning_rate": 0.0006, + "loss": 3.708714008331299, + "step": 2555 + }, + { + "epoch": 35.50327653997379, + "grad_norm": 0.25224778056144714, + "learning_rate": 0.0006, + "loss": 3.699676990509033, + "step": 2556 + }, + { + "epoch": 35.517256443861946, + "grad_norm": 0.28308045864105225, + "learning_rate": 0.0006, + "loss": 3.7005362510681152, + "step": 2557 + }, + { + "epoch": 35.53123634775011, + "grad_norm": 0.25858840346336365, + "learning_rate": 0.0006, + "loss": 3.689999580383301, + "step": 2558 + }, + { + "epoch": 35.54521625163827, + "grad_norm": 0.23497405648231506, + "learning_rate": 0.0006, + "loss": 3.695793867111206, + "step": 2559 + }, + { + "epoch": 35.55919615552643, + "grad_norm": 0.22375957667827606, + "learning_rate": 0.0006, + "loss": 3.7011494636535645, + "step": 2560 + }, + { + "epoch": 35.57317605941459, + "grad_norm": 0.21056118607521057, + "learning_rate": 0.0006, + "loss": 3.722623586654663, + "step": 2561 + }, + { + "epoch": 35.58715596330275, + "grad_norm": 0.22504374384880066, + "learning_rate": 0.0006, + "loss": 3.7211966514587402, + "step": 2562 + }, + { + "epoch": 35.60113586719091, + "grad_norm": 0.22349773347377777, + "learning_rate": 0.0006, + "loss": 3.6901848316192627, + "step": 2563 + }, + { + "epoch": 35.615115771079076, + "grad_norm": 0.219499409198761, + "learning_rate": 0.0006, + "loss": 3.709026575088501, + "step": 2564 + }, + { + "epoch": 35.62909567496723, + "grad_norm": 0.20461080968379974, + "learning_rate": 0.0006, + "loss": 3.72456693649292, + "step": 2565 + }, + { + "epoch": 35.643075578855395, + "grad_norm": 0.2083883285522461, + "learning_rate": 0.0006, + "loss": 3.6845502853393555, + "step": 2566 + }, + { + "epoch": 35.65705548274356, + "grad_norm": 0.19694562256336212, + "learning_rate": 0.0006, + "loss": 3.668515682220459, + "step": 2567 + }, + { + "epoch": 35.671035386631715, + "grad_norm": 0.2107984870672226, + "learning_rate": 0.0006, + "loss": 3.700723648071289, + "step": 2568 + }, + { + "epoch": 35.68501529051988, + "grad_norm": 0.18878720700740814, + "learning_rate": 0.0006, + "loss": 3.689150333404541, + "step": 2569 + }, + { + "epoch": 35.69899519440804, + "grad_norm": 0.20058824121952057, + "learning_rate": 0.0006, + "loss": 3.7048301696777344, + "step": 2570 + }, + { + "epoch": 35.7129750982962, + "grad_norm": 0.2200566679239273, + "learning_rate": 0.0006, + "loss": 3.6944580078125, + "step": 2571 + }, + { + "epoch": 35.72695500218436, + "grad_norm": 0.22200417518615723, + "learning_rate": 0.0006, + "loss": 3.715193510055542, + "step": 2572 + }, + { + "epoch": 35.74093490607252, + "grad_norm": 0.21011404693126678, + "learning_rate": 0.0006, + "loss": 3.737387180328369, + "step": 2573 + }, + { + "epoch": 35.75491480996068, + "grad_norm": 0.21139226853847504, + "learning_rate": 0.0006, + "loss": 3.695596694946289, + "step": 2574 + }, + { + "epoch": 35.768894713848844, + "grad_norm": 0.2112506479024887, + "learning_rate": 0.0006, + "loss": 3.7264227867126465, + "step": 2575 + }, + { + "epoch": 35.782874617737, + "grad_norm": 0.21528391540050507, + "learning_rate": 0.0006, + "loss": 3.7089385986328125, + "step": 2576 + }, + { + "epoch": 35.796854521625164, + "grad_norm": 0.2127804309129715, + "learning_rate": 0.0006, + "loss": 3.6995301246643066, + "step": 2577 + }, + { + "epoch": 35.81083442551333, + "grad_norm": 0.19839410483837128, + "learning_rate": 0.0006, + "loss": 3.7233223915100098, + "step": 2578 + }, + { + "epoch": 35.824814329401484, + "grad_norm": 0.19098423421382904, + "learning_rate": 0.0006, + "loss": 3.7108311653137207, + "step": 2579 + }, + { + "epoch": 35.83879423328965, + "grad_norm": 0.18697232007980347, + "learning_rate": 0.0006, + "loss": 3.725001811981201, + "step": 2580 + }, + { + "epoch": 35.8527741371778, + "grad_norm": 0.21051937341690063, + "learning_rate": 0.0006, + "loss": 3.7310993671417236, + "step": 2581 + }, + { + "epoch": 35.86675404106597, + "grad_norm": 0.2239079475402832, + "learning_rate": 0.0006, + "loss": 3.739056348800659, + "step": 2582 + }, + { + "epoch": 35.88073394495413, + "grad_norm": 0.2581230700016022, + "learning_rate": 0.0006, + "loss": 3.697061061859131, + "step": 2583 + }, + { + "epoch": 35.89471384884229, + "grad_norm": 0.25388655066490173, + "learning_rate": 0.0006, + "loss": 3.7173471450805664, + "step": 2584 + }, + { + "epoch": 35.90869375273045, + "grad_norm": 0.2557796537876129, + "learning_rate": 0.0006, + "loss": 3.7121596336364746, + "step": 2585 + }, + { + "epoch": 35.92267365661861, + "grad_norm": 0.21846474707126617, + "learning_rate": 0.0006, + "loss": 3.7342100143432617, + "step": 2586 + }, + { + "epoch": 35.93665356050677, + "grad_norm": 0.19810006022453308, + "learning_rate": 0.0006, + "loss": 3.7266340255737305, + "step": 2587 + }, + { + "epoch": 35.95063346439493, + "grad_norm": 0.28599923849105835, + "learning_rate": 0.0006, + "loss": 3.711876392364502, + "step": 2588 + }, + { + "epoch": 35.964613368283096, + "grad_norm": 0.3380447030067444, + "learning_rate": 0.0006, + "loss": 3.7611794471740723, + "step": 2589 + }, + { + "epoch": 35.97859327217125, + "grad_norm": 0.2946915328502655, + "learning_rate": 0.0006, + "loss": 3.7659358978271484, + "step": 2590 + }, + { + "epoch": 35.992573176059416, + "grad_norm": 0.2310202419757843, + "learning_rate": 0.0006, + "loss": 3.7124969959259033, + "step": 2591 + }, + { + "epoch": 36.0, + "grad_norm": 0.22294320166110992, + "learning_rate": 0.0006, + "loss": 3.725590705871582, + "step": 2592 + }, + { + "epoch": 36.0, + "eval_loss": 4.015472412109375, + "eval_runtime": 44.4903, + "eval_samples_per_second": 54.888, + "eval_steps_per_second": 3.439, + "step": 2592 + }, + { + "epoch": 36.01397990388816, + "grad_norm": 0.2442479431629181, + "learning_rate": 0.0006, + "loss": 3.6670360565185547, + "step": 2593 + }, + { + "epoch": 36.02795980777632, + "grad_norm": 0.27702075242996216, + "learning_rate": 0.0006, + "loss": 3.685915946960449, + "step": 2594 + }, + { + "epoch": 36.04193971166448, + "grad_norm": 0.22300852835178375, + "learning_rate": 0.0006, + "loss": 3.6993556022644043, + "step": 2595 + }, + { + "epoch": 36.05591961555265, + "grad_norm": 0.22456000745296478, + "learning_rate": 0.0006, + "loss": 3.6937754154205322, + "step": 2596 + }, + { + "epoch": 36.0698995194408, + "grad_norm": 0.23157717287540436, + "learning_rate": 0.0006, + "loss": 3.6573898792266846, + "step": 2597 + }, + { + "epoch": 36.083879423328966, + "grad_norm": 0.23002618551254272, + "learning_rate": 0.0006, + "loss": 3.6565046310424805, + "step": 2598 + }, + { + "epoch": 36.09785932721712, + "grad_norm": 0.223054900765419, + "learning_rate": 0.0006, + "loss": 3.6964457035064697, + "step": 2599 + }, + { + "epoch": 36.111839231105286, + "grad_norm": 0.21883328258991241, + "learning_rate": 0.0006, + "loss": 3.674757480621338, + "step": 2600 + }, + { + "epoch": 36.12581913499345, + "grad_norm": 0.21729037165641785, + "learning_rate": 0.0006, + "loss": 3.684323310852051, + "step": 2601 + }, + { + "epoch": 36.139799038881605, + "grad_norm": 0.21299415826797485, + "learning_rate": 0.0006, + "loss": 3.6554017066955566, + "step": 2602 + }, + { + "epoch": 36.15377894276977, + "grad_norm": 0.22723016142845154, + "learning_rate": 0.0006, + "loss": 3.666767120361328, + "step": 2603 + }, + { + "epoch": 36.16775884665793, + "grad_norm": 0.23663052916526794, + "learning_rate": 0.0006, + "loss": 3.692861557006836, + "step": 2604 + }, + { + "epoch": 36.18173875054609, + "grad_norm": 0.23544131219387054, + "learning_rate": 0.0006, + "loss": 3.6648998260498047, + "step": 2605 + }, + { + "epoch": 36.19571865443425, + "grad_norm": 0.24303849041461945, + "learning_rate": 0.0006, + "loss": 3.66096568107605, + "step": 2606 + }, + { + "epoch": 36.20969855832241, + "grad_norm": 0.23385047912597656, + "learning_rate": 0.0006, + "loss": 3.6636829376220703, + "step": 2607 + }, + { + "epoch": 36.22367846221057, + "grad_norm": 0.21988974511623383, + "learning_rate": 0.0006, + "loss": 3.685072660446167, + "step": 2608 + }, + { + "epoch": 36.237658366098735, + "grad_norm": 0.2365395724773407, + "learning_rate": 0.0006, + "loss": 3.7292234897613525, + "step": 2609 + }, + { + "epoch": 36.25163826998689, + "grad_norm": 0.23791152238845825, + "learning_rate": 0.0006, + "loss": 3.6870808601379395, + "step": 2610 + }, + { + "epoch": 36.265618173875055, + "grad_norm": 0.22954145073890686, + "learning_rate": 0.0006, + "loss": 3.705406904220581, + "step": 2611 + }, + { + "epoch": 36.27959807776322, + "grad_norm": 0.22748000919818878, + "learning_rate": 0.0006, + "loss": 3.680781841278076, + "step": 2612 + }, + { + "epoch": 36.293577981651374, + "grad_norm": 0.21827450394630432, + "learning_rate": 0.0006, + "loss": 3.6794490814208984, + "step": 2613 + }, + { + "epoch": 36.30755788553954, + "grad_norm": 0.2406153380870819, + "learning_rate": 0.0006, + "loss": 3.690225124359131, + "step": 2614 + }, + { + "epoch": 36.3215377894277, + "grad_norm": 0.2406231164932251, + "learning_rate": 0.0006, + "loss": 3.665867805480957, + "step": 2615 + }, + { + "epoch": 36.33551769331586, + "grad_norm": 0.20494551956653595, + "learning_rate": 0.0006, + "loss": 3.701937198638916, + "step": 2616 + }, + { + "epoch": 36.34949759720402, + "grad_norm": 0.1995103359222412, + "learning_rate": 0.0006, + "loss": 3.702033758163452, + "step": 2617 + }, + { + "epoch": 36.36347750109218, + "grad_norm": 0.1902446299791336, + "learning_rate": 0.0006, + "loss": 3.6809959411621094, + "step": 2618 + }, + { + "epoch": 36.37745740498034, + "grad_norm": 0.1810801923274994, + "learning_rate": 0.0006, + "loss": 3.689852714538574, + "step": 2619 + }, + { + "epoch": 36.391437308868504, + "grad_norm": 0.1882476955652237, + "learning_rate": 0.0006, + "loss": 3.710911273956299, + "step": 2620 + }, + { + "epoch": 36.40541721275666, + "grad_norm": 0.1912514567375183, + "learning_rate": 0.0006, + "loss": 3.7054009437561035, + "step": 2621 + }, + { + "epoch": 36.419397116644824, + "grad_norm": 0.19080901145935059, + "learning_rate": 0.0006, + "loss": 3.681145191192627, + "step": 2622 + }, + { + "epoch": 36.43337702053299, + "grad_norm": 0.193472221493721, + "learning_rate": 0.0006, + "loss": 3.661360740661621, + "step": 2623 + }, + { + "epoch": 36.44735692442114, + "grad_norm": 0.2034357339143753, + "learning_rate": 0.0006, + "loss": 3.706930160522461, + "step": 2624 + }, + { + "epoch": 36.46133682830931, + "grad_norm": 0.19924600422382355, + "learning_rate": 0.0006, + "loss": 3.6903364658355713, + "step": 2625 + }, + { + "epoch": 36.47531673219746, + "grad_norm": 0.20556052029132843, + "learning_rate": 0.0006, + "loss": 3.6974234580993652, + "step": 2626 + }, + { + "epoch": 36.489296636085626, + "grad_norm": 0.19628804922103882, + "learning_rate": 0.0006, + "loss": 3.6947717666625977, + "step": 2627 + }, + { + "epoch": 36.50327653997379, + "grad_norm": 0.18071836233139038, + "learning_rate": 0.0006, + "loss": 3.717582941055298, + "step": 2628 + }, + { + "epoch": 36.517256443861946, + "grad_norm": 0.20531553030014038, + "learning_rate": 0.0006, + "loss": 3.680610179901123, + "step": 2629 + }, + { + "epoch": 36.53123634775011, + "grad_norm": 0.23789429664611816, + "learning_rate": 0.0006, + "loss": 3.711493968963623, + "step": 2630 + }, + { + "epoch": 36.54521625163827, + "grad_norm": 0.23027348518371582, + "learning_rate": 0.0006, + "loss": 3.6827993392944336, + "step": 2631 + }, + { + "epoch": 36.55919615552643, + "grad_norm": 0.21941570937633514, + "learning_rate": 0.0006, + "loss": 3.682286262512207, + "step": 2632 + }, + { + "epoch": 36.57317605941459, + "grad_norm": 0.21213553845882416, + "learning_rate": 0.0006, + "loss": 3.6828765869140625, + "step": 2633 + }, + { + "epoch": 36.58715596330275, + "grad_norm": 0.21929772198200226, + "learning_rate": 0.0006, + "loss": 3.697030544281006, + "step": 2634 + }, + { + "epoch": 36.60113586719091, + "grad_norm": 0.2101750522851944, + "learning_rate": 0.0006, + "loss": 3.723201274871826, + "step": 2635 + }, + { + "epoch": 36.615115771079076, + "grad_norm": 0.19014132022857666, + "learning_rate": 0.0006, + "loss": 3.6989338397979736, + "step": 2636 + }, + { + "epoch": 36.62909567496723, + "grad_norm": 0.21566815674304962, + "learning_rate": 0.0006, + "loss": 3.6968226432800293, + "step": 2637 + }, + { + "epoch": 36.643075578855395, + "grad_norm": 0.20500224828720093, + "learning_rate": 0.0006, + "loss": 3.689640522003174, + "step": 2638 + }, + { + "epoch": 36.65705548274356, + "grad_norm": 0.210358127951622, + "learning_rate": 0.0006, + "loss": 3.6996328830718994, + "step": 2639 + }, + { + "epoch": 36.671035386631715, + "grad_norm": 0.2061213105916977, + "learning_rate": 0.0006, + "loss": 3.7019221782684326, + "step": 2640 + }, + { + "epoch": 36.68501529051988, + "grad_norm": 0.21494871377944946, + "learning_rate": 0.0006, + "loss": 3.6634578704833984, + "step": 2641 + }, + { + "epoch": 36.69899519440804, + "grad_norm": 0.19586549699306488, + "learning_rate": 0.0006, + "loss": 3.708131790161133, + "step": 2642 + }, + { + "epoch": 36.7129750982962, + "grad_norm": 0.22805732488632202, + "learning_rate": 0.0006, + "loss": 3.6977362632751465, + "step": 2643 + }, + { + "epoch": 36.72695500218436, + "grad_norm": 0.28397148847579956, + "learning_rate": 0.0006, + "loss": 3.6847963333129883, + "step": 2644 + }, + { + "epoch": 36.74093490607252, + "grad_norm": 0.28333187103271484, + "learning_rate": 0.0006, + "loss": 3.734257459640503, + "step": 2645 + }, + { + "epoch": 36.75491480996068, + "grad_norm": 0.22314953804016113, + "learning_rate": 0.0006, + "loss": 3.6871445178985596, + "step": 2646 + }, + { + "epoch": 36.768894713848844, + "grad_norm": 0.20580267906188965, + "learning_rate": 0.0006, + "loss": 3.692736864089966, + "step": 2647 + }, + { + "epoch": 36.782874617737, + "grad_norm": 0.22695036232471466, + "learning_rate": 0.0006, + "loss": 3.697096824645996, + "step": 2648 + }, + { + "epoch": 36.796854521625164, + "grad_norm": 0.25916165113449097, + "learning_rate": 0.0006, + "loss": 3.7099573612213135, + "step": 2649 + }, + { + "epoch": 36.81083442551333, + "grad_norm": 0.26024341583251953, + "learning_rate": 0.0006, + "loss": 3.7161359786987305, + "step": 2650 + }, + { + "epoch": 36.824814329401484, + "grad_norm": 0.2340802699327469, + "learning_rate": 0.0006, + "loss": 3.708864688873291, + "step": 2651 + }, + { + "epoch": 36.83879423328965, + "grad_norm": 0.23312288522720337, + "learning_rate": 0.0006, + "loss": 3.7351365089416504, + "step": 2652 + }, + { + "epoch": 36.8527741371778, + "grad_norm": 0.22953253984451294, + "learning_rate": 0.0006, + "loss": 3.735302209854126, + "step": 2653 + }, + { + "epoch": 36.86675404106597, + "grad_norm": 0.21928828954696655, + "learning_rate": 0.0006, + "loss": 3.72445011138916, + "step": 2654 + }, + { + "epoch": 36.88073394495413, + "grad_norm": 0.22865602374076843, + "learning_rate": 0.0006, + "loss": 3.714867115020752, + "step": 2655 + }, + { + "epoch": 36.89471384884229, + "grad_norm": 0.23255643248558044, + "learning_rate": 0.0006, + "loss": 3.695101261138916, + "step": 2656 + }, + { + "epoch": 36.90869375273045, + "grad_norm": 0.2491452544927597, + "learning_rate": 0.0006, + "loss": 3.70692777633667, + "step": 2657 + }, + { + "epoch": 36.92267365661861, + "grad_norm": 0.27367597818374634, + "learning_rate": 0.0006, + "loss": 3.6906654834747314, + "step": 2658 + }, + { + "epoch": 36.93665356050677, + "grad_norm": 0.26728564500808716, + "learning_rate": 0.0006, + "loss": 3.7092056274414062, + "step": 2659 + }, + { + "epoch": 36.95063346439493, + "grad_norm": 0.207070454955101, + "learning_rate": 0.0006, + "loss": 3.7152137756347656, + "step": 2660 + }, + { + "epoch": 36.964613368283096, + "grad_norm": 0.21671561896800995, + "learning_rate": 0.0006, + "loss": 3.7130112648010254, + "step": 2661 + }, + { + "epoch": 36.97859327217125, + "grad_norm": 0.2140914648771286, + "learning_rate": 0.0006, + "loss": 3.7286999225616455, + "step": 2662 + }, + { + "epoch": 36.992573176059416, + "grad_norm": 0.21324342489242554, + "learning_rate": 0.0006, + "loss": 3.6828715801239014, + "step": 2663 + }, + { + "epoch": 37.0, + "grad_norm": 0.22366146743297577, + "learning_rate": 0.0006, + "loss": 3.69199800491333, + "step": 2664 + }, + { + "epoch": 37.0, + "eval_loss": 4.011842727661133, + "eval_runtime": 44.7825, + "eval_samples_per_second": 54.53, + "eval_steps_per_second": 3.417, + "step": 2664 + }, + { + "epoch": 37.01397990388816, + "grad_norm": 0.22093228995800018, + "learning_rate": 0.0006, + "loss": 3.6940979957580566, + "step": 2665 + }, + { + "epoch": 37.02795980777632, + "grad_norm": 0.20821493864059448, + "learning_rate": 0.0006, + "loss": 3.670813798904419, + "step": 2666 + }, + { + "epoch": 37.04193971166448, + "grad_norm": 0.22330114245414734, + "learning_rate": 0.0006, + "loss": 3.6392664909362793, + "step": 2667 + }, + { + "epoch": 37.05591961555265, + "grad_norm": 0.2224634289741516, + "learning_rate": 0.0006, + "loss": 3.660856246948242, + "step": 2668 + }, + { + "epoch": 37.0698995194408, + "grad_norm": 0.2255052626132965, + "learning_rate": 0.0006, + "loss": 3.6393589973449707, + "step": 2669 + }, + { + "epoch": 37.083879423328966, + "grad_norm": 0.23462942242622375, + "learning_rate": 0.0006, + "loss": 3.684429168701172, + "step": 2670 + }, + { + "epoch": 37.09785932721712, + "grad_norm": 0.23743386566638947, + "learning_rate": 0.0006, + "loss": 3.67622709274292, + "step": 2671 + }, + { + "epoch": 37.111839231105286, + "grad_norm": 0.2276267409324646, + "learning_rate": 0.0006, + "loss": 3.6487984657287598, + "step": 2672 + }, + { + "epoch": 37.12581913499345, + "grad_norm": 0.24448423087596893, + "learning_rate": 0.0006, + "loss": 3.67645525932312, + "step": 2673 + }, + { + "epoch": 37.139799038881605, + "grad_norm": 0.2428973764181137, + "learning_rate": 0.0006, + "loss": 3.681497097015381, + "step": 2674 + }, + { + "epoch": 37.15377894276977, + "grad_norm": 0.21918512880802155, + "learning_rate": 0.0006, + "loss": 3.67134428024292, + "step": 2675 + }, + { + "epoch": 37.16775884665793, + "grad_norm": 0.2103680670261383, + "learning_rate": 0.0006, + "loss": 3.6508708000183105, + "step": 2676 + }, + { + "epoch": 37.18173875054609, + "grad_norm": 0.20674929022789001, + "learning_rate": 0.0006, + "loss": 3.6904029846191406, + "step": 2677 + }, + { + "epoch": 37.19571865443425, + "grad_norm": 0.21867282688617706, + "learning_rate": 0.0006, + "loss": 3.697535514831543, + "step": 2678 + }, + { + "epoch": 37.20969855832241, + "grad_norm": 0.22919587790966034, + "learning_rate": 0.0006, + "loss": 3.675565004348755, + "step": 2679 + }, + { + "epoch": 37.22367846221057, + "grad_norm": 0.22255578637123108, + "learning_rate": 0.0006, + "loss": 3.6830129623413086, + "step": 2680 + }, + { + "epoch": 37.237658366098735, + "grad_norm": 0.22460198402404785, + "learning_rate": 0.0006, + "loss": 3.6872951984405518, + "step": 2681 + }, + { + "epoch": 37.25163826998689, + "grad_norm": 0.23677165806293488, + "learning_rate": 0.0006, + "loss": 3.6779165267944336, + "step": 2682 + }, + { + "epoch": 37.265618173875055, + "grad_norm": 0.23231394588947296, + "learning_rate": 0.0006, + "loss": 3.6831178665161133, + "step": 2683 + }, + { + "epoch": 37.27959807776322, + "grad_norm": 0.22131343185901642, + "learning_rate": 0.0006, + "loss": 3.664295196533203, + "step": 2684 + }, + { + "epoch": 37.293577981651374, + "grad_norm": 0.23424340784549713, + "learning_rate": 0.0006, + "loss": 3.696678638458252, + "step": 2685 + }, + { + "epoch": 37.30755788553954, + "grad_norm": 0.22695423662662506, + "learning_rate": 0.0006, + "loss": 3.6697473526000977, + "step": 2686 + }, + { + "epoch": 37.3215377894277, + "grad_norm": 0.2165997475385666, + "learning_rate": 0.0006, + "loss": 3.6801891326904297, + "step": 2687 + }, + { + "epoch": 37.33551769331586, + "grad_norm": 0.2241077572107315, + "learning_rate": 0.0006, + "loss": 3.6957011222839355, + "step": 2688 + }, + { + "epoch": 37.34949759720402, + "grad_norm": 0.21191732585430145, + "learning_rate": 0.0006, + "loss": 3.6812620162963867, + "step": 2689 + }, + { + "epoch": 37.36347750109218, + "grad_norm": 0.1827201396226883, + "learning_rate": 0.0006, + "loss": 3.6797738075256348, + "step": 2690 + }, + { + "epoch": 37.37745740498034, + "grad_norm": 0.20793627202510834, + "learning_rate": 0.0006, + "loss": 3.672819137573242, + "step": 2691 + }, + { + "epoch": 37.391437308868504, + "grad_norm": 0.19737116992473602, + "learning_rate": 0.0006, + "loss": 3.667839527130127, + "step": 2692 + }, + { + "epoch": 37.40541721275666, + "grad_norm": 0.18670497834682465, + "learning_rate": 0.0006, + "loss": 3.651561737060547, + "step": 2693 + }, + { + "epoch": 37.419397116644824, + "grad_norm": 0.21385592222213745, + "learning_rate": 0.0006, + "loss": 3.717456340789795, + "step": 2694 + }, + { + "epoch": 37.43337702053299, + "grad_norm": 0.20590044558048248, + "learning_rate": 0.0006, + "loss": 3.6950271129608154, + "step": 2695 + }, + { + "epoch": 37.44735692442114, + "grad_norm": 0.1992103010416031, + "learning_rate": 0.0006, + "loss": 3.687854290008545, + "step": 2696 + }, + { + "epoch": 37.46133682830931, + "grad_norm": 0.2004154473543167, + "learning_rate": 0.0006, + "loss": 3.695838451385498, + "step": 2697 + }, + { + "epoch": 37.47531673219746, + "grad_norm": 0.2019810527563095, + "learning_rate": 0.0006, + "loss": 3.690431594848633, + "step": 2698 + }, + { + "epoch": 37.489296636085626, + "grad_norm": 0.2192547768354416, + "learning_rate": 0.0006, + "loss": 3.6743836402893066, + "step": 2699 + }, + { + "epoch": 37.50327653997379, + "grad_norm": 0.2568076550960541, + "learning_rate": 0.0006, + "loss": 3.6857337951660156, + "step": 2700 + }, + { + "epoch": 37.517256443861946, + "grad_norm": 0.20050311088562012, + "learning_rate": 0.0006, + "loss": 3.6811180114746094, + "step": 2701 + }, + { + "epoch": 37.53123634775011, + "grad_norm": 0.21008558571338654, + "learning_rate": 0.0006, + "loss": 3.700563907623291, + "step": 2702 + }, + { + "epoch": 37.54521625163827, + "grad_norm": 0.2393747717142105, + "learning_rate": 0.0006, + "loss": 3.679438591003418, + "step": 2703 + }, + { + "epoch": 37.55919615552643, + "grad_norm": 0.2531895041465759, + "learning_rate": 0.0006, + "loss": 3.682903289794922, + "step": 2704 + }, + { + "epoch": 37.57317605941459, + "grad_norm": 0.2372656762599945, + "learning_rate": 0.0006, + "loss": 3.7128796577453613, + "step": 2705 + }, + { + "epoch": 37.58715596330275, + "grad_norm": 0.20020034909248352, + "learning_rate": 0.0006, + "loss": 3.701916217803955, + "step": 2706 + }, + { + "epoch": 37.60113586719091, + "grad_norm": 0.20250852406024933, + "learning_rate": 0.0006, + "loss": 3.6761491298675537, + "step": 2707 + }, + { + "epoch": 37.615115771079076, + "grad_norm": 0.19259589910507202, + "learning_rate": 0.0006, + "loss": 3.715104579925537, + "step": 2708 + }, + { + "epoch": 37.62909567496723, + "grad_norm": 0.19649392366409302, + "learning_rate": 0.0006, + "loss": 3.687556266784668, + "step": 2709 + }, + { + "epoch": 37.643075578855395, + "grad_norm": 0.1909446269273758, + "learning_rate": 0.0006, + "loss": 3.684046745300293, + "step": 2710 + }, + { + "epoch": 37.65705548274356, + "grad_norm": 0.19589872658252716, + "learning_rate": 0.0006, + "loss": 3.707886219024658, + "step": 2711 + }, + { + "epoch": 37.671035386631715, + "grad_norm": 0.19472210109233856, + "learning_rate": 0.0006, + "loss": 3.6837692260742188, + "step": 2712 + }, + { + "epoch": 37.68501529051988, + "grad_norm": 0.22622711956501007, + "learning_rate": 0.0006, + "loss": 3.703619956970215, + "step": 2713 + }, + { + "epoch": 37.69899519440804, + "grad_norm": 0.24314729869365692, + "learning_rate": 0.0006, + "loss": 3.7345223426818848, + "step": 2714 + }, + { + "epoch": 37.7129750982962, + "grad_norm": 0.23934306204319, + "learning_rate": 0.0006, + "loss": 3.687809705734253, + "step": 2715 + }, + { + "epoch": 37.72695500218436, + "grad_norm": 0.24838587641716003, + "learning_rate": 0.0006, + "loss": 3.708613872528076, + "step": 2716 + }, + { + "epoch": 37.74093490607252, + "grad_norm": 0.23191452026367188, + "learning_rate": 0.0006, + "loss": 3.7090163230895996, + "step": 2717 + }, + { + "epoch": 37.75491480996068, + "grad_norm": 0.24574638903141022, + "learning_rate": 0.0006, + "loss": 3.68489146232605, + "step": 2718 + }, + { + "epoch": 37.768894713848844, + "grad_norm": 0.2706749439239502, + "learning_rate": 0.0006, + "loss": 3.687061309814453, + "step": 2719 + }, + { + "epoch": 37.782874617737, + "grad_norm": 0.25955191254615784, + "learning_rate": 0.0006, + "loss": 3.694173812866211, + "step": 2720 + }, + { + "epoch": 37.796854521625164, + "grad_norm": 0.22040610015392303, + "learning_rate": 0.0006, + "loss": 3.701871871948242, + "step": 2721 + }, + { + "epoch": 37.81083442551333, + "grad_norm": 0.22328512370586395, + "learning_rate": 0.0006, + "loss": 3.7082555294036865, + "step": 2722 + }, + { + "epoch": 37.824814329401484, + "grad_norm": 0.2290581911802292, + "learning_rate": 0.0006, + "loss": 3.7023987770080566, + "step": 2723 + }, + { + "epoch": 37.83879423328965, + "grad_norm": 0.23129472136497498, + "learning_rate": 0.0006, + "loss": 3.7101752758026123, + "step": 2724 + }, + { + "epoch": 37.8527741371778, + "grad_norm": 0.21203753352165222, + "learning_rate": 0.0006, + "loss": 3.712129592895508, + "step": 2725 + }, + { + "epoch": 37.86675404106597, + "grad_norm": 0.21938200294971466, + "learning_rate": 0.0006, + "loss": 3.7086095809936523, + "step": 2726 + }, + { + "epoch": 37.88073394495413, + "grad_norm": 0.2203572541475296, + "learning_rate": 0.0006, + "loss": 3.6789026260375977, + "step": 2727 + }, + { + "epoch": 37.89471384884229, + "grad_norm": 0.18146046996116638, + "learning_rate": 0.0006, + "loss": 3.666893243789673, + "step": 2728 + }, + { + "epoch": 37.90869375273045, + "grad_norm": 0.1879623532295227, + "learning_rate": 0.0006, + "loss": 3.69246768951416, + "step": 2729 + }, + { + "epoch": 37.92267365661861, + "grad_norm": 0.18311670422554016, + "learning_rate": 0.0006, + "loss": 3.682036876678467, + "step": 2730 + }, + { + "epoch": 37.93665356050677, + "grad_norm": 0.1898486614227295, + "learning_rate": 0.0006, + "loss": 3.6683125495910645, + "step": 2731 + }, + { + "epoch": 37.95063346439493, + "grad_norm": 0.1858556717634201, + "learning_rate": 0.0006, + "loss": 3.6879611015319824, + "step": 2732 + }, + { + "epoch": 37.964613368283096, + "grad_norm": 0.19914504885673523, + "learning_rate": 0.0006, + "loss": 3.690250873565674, + "step": 2733 + }, + { + "epoch": 37.97859327217125, + "grad_norm": 0.20406974852085114, + "learning_rate": 0.0006, + "loss": 3.6812171936035156, + "step": 2734 + }, + { + "epoch": 37.992573176059416, + "grad_norm": 0.2003912478685379, + "learning_rate": 0.0006, + "loss": 3.6852147579193115, + "step": 2735 + }, + { + "epoch": 38.0, + "grad_norm": 0.22644472122192383, + "learning_rate": 0.0006, + "loss": 3.645207405090332, + "step": 2736 + }, + { + "epoch": 38.0, + "eval_loss": 3.995000123977661, + "eval_runtime": 45.1644, + "eval_samples_per_second": 54.069, + "eval_steps_per_second": 3.388, + "step": 2736 + }, + { + "epoch": 38.01397990388816, + "grad_norm": 0.1989814043045044, + "learning_rate": 0.0006, + "loss": 3.6511387825012207, + "step": 2737 + }, + { + "epoch": 38.02795980777632, + "grad_norm": 0.203324094414711, + "learning_rate": 0.0006, + "loss": 3.6513094902038574, + "step": 2738 + }, + { + "epoch": 38.04193971166448, + "grad_norm": 0.21504290401935577, + "learning_rate": 0.0006, + "loss": 3.647711992263794, + "step": 2739 + }, + { + "epoch": 38.05591961555265, + "grad_norm": 0.23464815318584442, + "learning_rate": 0.0006, + "loss": 3.6418747901916504, + "step": 2740 + }, + { + "epoch": 38.0698995194408, + "grad_norm": 0.242184117436409, + "learning_rate": 0.0006, + "loss": 3.6741859912872314, + "step": 2741 + }, + { + "epoch": 38.083879423328966, + "grad_norm": 0.23488445580005646, + "learning_rate": 0.0006, + "loss": 3.6710941791534424, + "step": 2742 + }, + { + "epoch": 38.09785932721712, + "grad_norm": 0.20800170302391052, + "learning_rate": 0.0006, + "loss": 3.660001754760742, + "step": 2743 + }, + { + "epoch": 38.111839231105286, + "grad_norm": 0.19505052268505096, + "learning_rate": 0.0006, + "loss": 3.684129238128662, + "step": 2744 + }, + { + "epoch": 38.12581913499345, + "grad_norm": 0.2185833901166916, + "learning_rate": 0.0006, + "loss": 3.656033515930176, + "step": 2745 + }, + { + "epoch": 38.139799038881605, + "grad_norm": 0.21850253641605377, + "learning_rate": 0.0006, + "loss": 3.6818184852600098, + "step": 2746 + }, + { + "epoch": 38.15377894276977, + "grad_norm": 0.2109488695859909, + "learning_rate": 0.0006, + "loss": 3.6485435962677, + "step": 2747 + }, + { + "epoch": 38.16775884665793, + "grad_norm": 0.21059907972812653, + "learning_rate": 0.0006, + "loss": 3.6734395027160645, + "step": 2748 + }, + { + "epoch": 38.18173875054609, + "grad_norm": 0.20741555094718933, + "learning_rate": 0.0006, + "loss": 3.6672463417053223, + "step": 2749 + }, + { + "epoch": 38.19571865443425, + "grad_norm": 0.2130175530910492, + "learning_rate": 0.0006, + "loss": 3.692840576171875, + "step": 2750 + }, + { + "epoch": 38.20969855832241, + "grad_norm": 0.1899138242006302, + "learning_rate": 0.0006, + "loss": 3.675316333770752, + "step": 2751 + }, + { + "epoch": 38.22367846221057, + "grad_norm": 0.218918576836586, + "learning_rate": 0.0006, + "loss": 3.634105920791626, + "step": 2752 + }, + { + "epoch": 38.237658366098735, + "grad_norm": 0.23649370670318604, + "learning_rate": 0.0006, + "loss": 3.6526122093200684, + "step": 2753 + }, + { + "epoch": 38.25163826998689, + "grad_norm": 0.22011931240558624, + "learning_rate": 0.0006, + "loss": 3.6859593391418457, + "step": 2754 + }, + { + "epoch": 38.265618173875055, + "grad_norm": 0.2143620252609253, + "learning_rate": 0.0006, + "loss": 3.656838893890381, + "step": 2755 + }, + { + "epoch": 38.27959807776322, + "grad_norm": 0.24068567156791687, + "learning_rate": 0.0006, + "loss": 3.67006254196167, + "step": 2756 + }, + { + "epoch": 38.293577981651374, + "grad_norm": 0.25773152709007263, + "learning_rate": 0.0006, + "loss": 3.6648950576782227, + "step": 2757 + }, + { + "epoch": 38.30755788553954, + "grad_norm": 0.24213455617427826, + "learning_rate": 0.0006, + "loss": 3.6918864250183105, + "step": 2758 + }, + { + "epoch": 38.3215377894277, + "grad_norm": 0.22463668882846832, + "learning_rate": 0.0006, + "loss": 3.6662540435791016, + "step": 2759 + }, + { + "epoch": 38.33551769331586, + "grad_norm": 0.22541455924510956, + "learning_rate": 0.0006, + "loss": 3.6563215255737305, + "step": 2760 + }, + { + "epoch": 38.34949759720402, + "grad_norm": 0.21833783388137817, + "learning_rate": 0.0006, + "loss": 3.650446891784668, + "step": 2761 + }, + { + "epoch": 38.36347750109218, + "grad_norm": 0.22799745202064514, + "learning_rate": 0.0006, + "loss": 3.7007250785827637, + "step": 2762 + }, + { + "epoch": 38.37745740498034, + "grad_norm": 0.23739562928676605, + "learning_rate": 0.0006, + "loss": 3.667130708694458, + "step": 2763 + }, + { + "epoch": 38.391437308868504, + "grad_norm": 0.23744846880435944, + "learning_rate": 0.0006, + "loss": 3.678760528564453, + "step": 2764 + }, + { + "epoch": 38.40541721275666, + "grad_norm": 0.2677105963230133, + "learning_rate": 0.0006, + "loss": 3.6829030513763428, + "step": 2765 + }, + { + "epoch": 38.419397116644824, + "grad_norm": 0.24490566551685333, + "learning_rate": 0.0006, + "loss": 3.707911491394043, + "step": 2766 + }, + { + "epoch": 38.43337702053299, + "grad_norm": 0.23477254807949066, + "learning_rate": 0.0006, + "loss": 3.680157423019409, + "step": 2767 + }, + { + "epoch": 38.44735692442114, + "grad_norm": 0.26611173152923584, + "learning_rate": 0.0006, + "loss": 3.660834550857544, + "step": 2768 + }, + { + "epoch": 38.46133682830931, + "grad_norm": 0.24505069851875305, + "learning_rate": 0.0006, + "loss": 3.696178436279297, + "step": 2769 + }, + { + "epoch": 38.47531673219746, + "grad_norm": 0.22933335602283478, + "learning_rate": 0.0006, + "loss": 3.6506235599517822, + "step": 2770 + }, + { + "epoch": 38.489296636085626, + "grad_norm": 0.23662401735782623, + "learning_rate": 0.0006, + "loss": 3.680819511413574, + "step": 2771 + }, + { + "epoch": 38.50327653997379, + "grad_norm": 0.27774113416671753, + "learning_rate": 0.0006, + "loss": 3.699146270751953, + "step": 2772 + }, + { + "epoch": 38.517256443861946, + "grad_norm": 0.2881671190261841, + "learning_rate": 0.0006, + "loss": 3.6509652137756348, + "step": 2773 + }, + { + "epoch": 38.53123634775011, + "grad_norm": 0.26570361852645874, + "learning_rate": 0.0006, + "loss": 3.6808385848999023, + "step": 2774 + }, + { + "epoch": 38.54521625163827, + "grad_norm": 0.23043136298656464, + "learning_rate": 0.0006, + "loss": 3.7082371711730957, + "step": 2775 + }, + { + "epoch": 38.55919615552643, + "grad_norm": 0.23730400204658508, + "learning_rate": 0.0006, + "loss": 3.653615951538086, + "step": 2776 + }, + { + "epoch": 38.57317605941459, + "grad_norm": 0.2332635223865509, + "learning_rate": 0.0006, + "loss": 3.6869683265686035, + "step": 2777 + }, + { + "epoch": 38.58715596330275, + "grad_norm": 0.22913676500320435, + "learning_rate": 0.0006, + "loss": 3.6998367309570312, + "step": 2778 + }, + { + "epoch": 38.60113586719091, + "grad_norm": 0.226078599691391, + "learning_rate": 0.0006, + "loss": 3.7051444053649902, + "step": 2779 + }, + { + "epoch": 38.615115771079076, + "grad_norm": 0.2336396723985672, + "learning_rate": 0.0006, + "loss": 3.6964943408966064, + "step": 2780 + }, + { + "epoch": 38.62909567496723, + "grad_norm": 0.23270335793495178, + "learning_rate": 0.0006, + "loss": 3.6741909980773926, + "step": 2781 + }, + { + "epoch": 38.643075578855395, + "grad_norm": 0.19324959814548492, + "learning_rate": 0.0006, + "loss": 3.64506196975708, + "step": 2782 + }, + { + "epoch": 38.65705548274356, + "grad_norm": 0.18551453948020935, + "learning_rate": 0.0006, + "loss": 3.6834206581115723, + "step": 2783 + }, + { + "epoch": 38.671035386631715, + "grad_norm": 0.17392469942569733, + "learning_rate": 0.0006, + "loss": 3.67282772064209, + "step": 2784 + }, + { + "epoch": 38.68501529051988, + "grad_norm": 0.19093742966651917, + "learning_rate": 0.0006, + "loss": 3.6648201942443848, + "step": 2785 + }, + { + "epoch": 38.69899519440804, + "grad_norm": 0.2124558985233307, + "learning_rate": 0.0006, + "loss": 3.712191581726074, + "step": 2786 + }, + { + "epoch": 38.7129750982962, + "grad_norm": 0.2220139354467392, + "learning_rate": 0.0006, + "loss": 3.675504207611084, + "step": 2787 + }, + { + "epoch": 38.72695500218436, + "grad_norm": 0.17677755653858185, + "learning_rate": 0.0006, + "loss": 3.6693475246429443, + "step": 2788 + }, + { + "epoch": 38.74093490607252, + "grad_norm": 0.2002430409193039, + "learning_rate": 0.0006, + "loss": 3.6906018257141113, + "step": 2789 + }, + { + "epoch": 38.75491480996068, + "grad_norm": 0.18844179809093475, + "learning_rate": 0.0006, + "loss": 3.660121440887451, + "step": 2790 + }, + { + "epoch": 38.768894713848844, + "grad_norm": 0.19319336116313934, + "learning_rate": 0.0006, + "loss": 3.6592631340026855, + "step": 2791 + }, + { + "epoch": 38.782874617737, + "grad_norm": 0.18624325096607208, + "learning_rate": 0.0006, + "loss": 3.6935300827026367, + "step": 2792 + }, + { + "epoch": 38.796854521625164, + "grad_norm": 0.2049761712551117, + "learning_rate": 0.0006, + "loss": 3.6702702045440674, + "step": 2793 + }, + { + "epoch": 38.81083442551333, + "grad_norm": 0.2030584216117859, + "learning_rate": 0.0006, + "loss": 3.714639663696289, + "step": 2794 + }, + { + "epoch": 38.824814329401484, + "grad_norm": 0.18989548087120056, + "learning_rate": 0.0006, + "loss": 3.678253412246704, + "step": 2795 + }, + { + "epoch": 38.83879423328965, + "grad_norm": 0.19944126904010773, + "learning_rate": 0.0006, + "loss": 3.648367166519165, + "step": 2796 + }, + { + "epoch": 38.8527741371778, + "grad_norm": 0.2062688171863556, + "learning_rate": 0.0006, + "loss": 3.701514720916748, + "step": 2797 + }, + { + "epoch": 38.86675404106597, + "grad_norm": 0.21475110948085785, + "learning_rate": 0.0006, + "loss": 3.6725993156433105, + "step": 2798 + }, + { + "epoch": 38.88073394495413, + "grad_norm": 0.2240881323814392, + "learning_rate": 0.0006, + "loss": 3.6944539546966553, + "step": 2799 + }, + { + "epoch": 38.89471384884229, + "grad_norm": 0.23074312508106232, + "learning_rate": 0.0006, + "loss": 3.747671365737915, + "step": 2800 + }, + { + "epoch": 38.90869375273045, + "grad_norm": 0.2447938323020935, + "learning_rate": 0.0006, + "loss": 3.6856026649475098, + "step": 2801 + }, + { + "epoch": 38.92267365661861, + "grad_norm": 0.2136487364768982, + "learning_rate": 0.0006, + "loss": 3.710397720336914, + "step": 2802 + }, + { + "epoch": 38.93665356050677, + "grad_norm": 0.21676769852638245, + "learning_rate": 0.0006, + "loss": 3.6911189556121826, + "step": 2803 + }, + { + "epoch": 38.95063346439493, + "grad_norm": 0.2226478010416031, + "learning_rate": 0.0006, + "loss": 3.6902880668640137, + "step": 2804 + }, + { + "epoch": 38.964613368283096, + "grad_norm": 0.2071496546268463, + "learning_rate": 0.0006, + "loss": 3.6831371784210205, + "step": 2805 + }, + { + "epoch": 38.97859327217125, + "grad_norm": 0.19568349421024323, + "learning_rate": 0.0006, + "loss": 3.6897640228271484, + "step": 2806 + }, + { + "epoch": 38.992573176059416, + "grad_norm": 0.19067516922950745, + "learning_rate": 0.0006, + "loss": 3.7096242904663086, + "step": 2807 + }, + { + "epoch": 39.0, + "grad_norm": 0.22872281074523926, + "learning_rate": 0.0006, + "loss": 3.689342975616455, + "step": 2808 + }, + { + "epoch": 39.0, + "eval_loss": 4.001968860626221, + "eval_runtime": 44.8452, + "eval_samples_per_second": 54.454, + "eval_steps_per_second": 3.412, + "step": 2808 + }, + { + "epoch": 39.01397990388816, + "grad_norm": 0.21685896813869476, + "learning_rate": 0.0006, + "loss": 3.638145923614502, + "step": 2809 + }, + { + "epoch": 39.02795980777632, + "grad_norm": 0.20085014402866364, + "learning_rate": 0.0006, + "loss": 3.626654624938965, + "step": 2810 + }, + { + "epoch": 39.04193971166448, + "grad_norm": 0.20615799725055695, + "learning_rate": 0.0006, + "loss": 3.6280088424682617, + "step": 2811 + }, + { + "epoch": 39.05591961555265, + "grad_norm": 0.23471905291080475, + "learning_rate": 0.0006, + "loss": 3.6444239616394043, + "step": 2812 + }, + { + "epoch": 39.0698995194408, + "grad_norm": 0.22207780182361603, + "learning_rate": 0.0006, + "loss": 3.6276912689208984, + "step": 2813 + }, + { + "epoch": 39.083879423328966, + "grad_norm": 0.23354043066501617, + "learning_rate": 0.0006, + "loss": 3.7007269859313965, + "step": 2814 + }, + { + "epoch": 39.09785932721712, + "grad_norm": 0.22520557045936584, + "learning_rate": 0.0006, + "loss": 3.6487162113189697, + "step": 2815 + }, + { + "epoch": 39.111839231105286, + "grad_norm": 0.20489682257175446, + "learning_rate": 0.0006, + "loss": 3.6523492336273193, + "step": 2816 + }, + { + "epoch": 39.12581913499345, + "grad_norm": 0.20979270339012146, + "learning_rate": 0.0006, + "loss": 3.6574230194091797, + "step": 2817 + }, + { + "epoch": 39.139799038881605, + "grad_norm": 0.2256486713886261, + "learning_rate": 0.0006, + "loss": 3.6499013900756836, + "step": 2818 + }, + { + "epoch": 39.15377894276977, + "grad_norm": 0.1960437297821045, + "learning_rate": 0.0006, + "loss": 3.6780271530151367, + "step": 2819 + }, + { + "epoch": 39.16775884665793, + "grad_norm": 0.19279663264751434, + "learning_rate": 0.0006, + "loss": 3.623819589614868, + "step": 2820 + }, + { + "epoch": 39.18173875054609, + "grad_norm": 0.19151495397090912, + "learning_rate": 0.0006, + "loss": 3.612868070602417, + "step": 2821 + }, + { + "epoch": 39.19571865443425, + "grad_norm": 0.19399534165859222, + "learning_rate": 0.0006, + "loss": 3.6518092155456543, + "step": 2822 + }, + { + "epoch": 39.20969855832241, + "grad_norm": 0.21723251044750214, + "learning_rate": 0.0006, + "loss": 3.681509494781494, + "step": 2823 + }, + { + "epoch": 39.22367846221057, + "grad_norm": 0.2487006038427353, + "learning_rate": 0.0006, + "loss": 3.6569719314575195, + "step": 2824 + }, + { + "epoch": 39.237658366098735, + "grad_norm": 0.2640652656555176, + "learning_rate": 0.0006, + "loss": 3.680734634399414, + "step": 2825 + }, + { + "epoch": 39.25163826998689, + "grad_norm": 0.21862825751304626, + "learning_rate": 0.0006, + "loss": 3.6741840839385986, + "step": 2826 + }, + { + "epoch": 39.265618173875055, + "grad_norm": 0.19515705108642578, + "learning_rate": 0.0006, + "loss": 3.657750129699707, + "step": 2827 + }, + { + "epoch": 39.27959807776322, + "grad_norm": 0.1971602737903595, + "learning_rate": 0.0006, + "loss": 3.6524124145507812, + "step": 2828 + }, + { + "epoch": 39.293577981651374, + "grad_norm": 0.20822174847126007, + "learning_rate": 0.0006, + "loss": 3.69527006149292, + "step": 2829 + }, + { + "epoch": 39.30755788553954, + "grad_norm": 0.2566370368003845, + "learning_rate": 0.0006, + "loss": 3.6770880222320557, + "step": 2830 + }, + { + "epoch": 39.3215377894277, + "grad_norm": 0.24984225630760193, + "learning_rate": 0.0006, + "loss": 3.6733901500701904, + "step": 2831 + }, + { + "epoch": 39.33551769331586, + "grad_norm": 0.233322873711586, + "learning_rate": 0.0006, + "loss": 3.645519256591797, + "step": 2832 + }, + { + "epoch": 39.34949759720402, + "grad_norm": 0.21584749221801758, + "learning_rate": 0.0006, + "loss": 3.6211934089660645, + "step": 2833 + }, + { + "epoch": 39.36347750109218, + "grad_norm": 0.2188950479030609, + "learning_rate": 0.0006, + "loss": 3.6434195041656494, + "step": 2834 + }, + { + "epoch": 39.37745740498034, + "grad_norm": 0.21998439729213715, + "learning_rate": 0.0006, + "loss": 3.6720595359802246, + "step": 2835 + }, + { + "epoch": 39.391437308868504, + "grad_norm": 0.2459399700164795, + "learning_rate": 0.0006, + "loss": 3.667083740234375, + "step": 2836 + }, + { + "epoch": 39.40541721275666, + "grad_norm": 0.23579223453998566, + "learning_rate": 0.0006, + "loss": 3.665452480316162, + "step": 2837 + }, + { + "epoch": 39.419397116644824, + "grad_norm": 0.19401362538337708, + "learning_rate": 0.0006, + "loss": 3.684218406677246, + "step": 2838 + }, + { + "epoch": 39.43337702053299, + "grad_norm": 0.1894487738609314, + "learning_rate": 0.0006, + "loss": 3.670626163482666, + "step": 2839 + }, + { + "epoch": 39.44735692442114, + "grad_norm": 0.1936904937028885, + "learning_rate": 0.0006, + "loss": 3.6367318630218506, + "step": 2840 + }, + { + "epoch": 39.46133682830931, + "grad_norm": 0.1867629438638687, + "learning_rate": 0.0006, + "loss": 3.670098304748535, + "step": 2841 + }, + { + "epoch": 39.47531673219746, + "grad_norm": 0.18849903345108032, + "learning_rate": 0.0006, + "loss": 3.6877760887145996, + "step": 2842 + }, + { + "epoch": 39.489296636085626, + "grad_norm": 0.18247179687023163, + "learning_rate": 0.0006, + "loss": 3.7132980823516846, + "step": 2843 + }, + { + "epoch": 39.50327653997379, + "grad_norm": 0.19206349551677704, + "learning_rate": 0.0006, + "loss": 3.630319595336914, + "step": 2844 + }, + { + "epoch": 39.517256443861946, + "grad_norm": 0.21730613708496094, + "learning_rate": 0.0006, + "loss": 3.6818761825561523, + "step": 2845 + }, + { + "epoch": 39.53123634775011, + "grad_norm": 0.22482407093048096, + "learning_rate": 0.0006, + "loss": 3.6385269165039062, + "step": 2846 + }, + { + "epoch": 39.54521625163827, + "grad_norm": 0.24560105800628662, + "learning_rate": 0.0006, + "loss": 3.660067558288574, + "step": 2847 + }, + { + "epoch": 39.55919615552643, + "grad_norm": 0.23720617592334747, + "learning_rate": 0.0006, + "loss": 3.6811556816101074, + "step": 2848 + }, + { + "epoch": 39.57317605941459, + "grad_norm": 0.18990741670131683, + "learning_rate": 0.0006, + "loss": 3.6733779907226562, + "step": 2849 + }, + { + "epoch": 39.58715596330275, + "grad_norm": 0.2135438323020935, + "learning_rate": 0.0006, + "loss": 3.662020683288574, + "step": 2850 + }, + { + "epoch": 39.60113586719091, + "grad_norm": 0.24248908460140228, + "learning_rate": 0.0006, + "loss": 3.6794259548187256, + "step": 2851 + }, + { + "epoch": 39.615115771079076, + "grad_norm": 0.23115725815296173, + "learning_rate": 0.0006, + "loss": 3.6732406616210938, + "step": 2852 + }, + { + "epoch": 39.62909567496723, + "grad_norm": 0.23760166764259338, + "learning_rate": 0.0006, + "loss": 3.7062699794769287, + "step": 2853 + }, + { + "epoch": 39.643075578855395, + "grad_norm": 0.24670571088790894, + "learning_rate": 0.0006, + "loss": 3.692385673522949, + "step": 2854 + }, + { + "epoch": 39.65705548274356, + "grad_norm": 0.20983918011188507, + "learning_rate": 0.0006, + "loss": 3.691361427307129, + "step": 2855 + }, + { + "epoch": 39.671035386631715, + "grad_norm": 0.1915138065814972, + "learning_rate": 0.0006, + "loss": 3.6985888481140137, + "step": 2856 + }, + { + "epoch": 39.68501529051988, + "grad_norm": 0.23440803587436676, + "learning_rate": 0.0006, + "loss": 3.6484973430633545, + "step": 2857 + }, + { + "epoch": 39.69899519440804, + "grad_norm": 0.2483232468366623, + "learning_rate": 0.0006, + "loss": 3.6861510276794434, + "step": 2858 + }, + { + "epoch": 39.7129750982962, + "grad_norm": 0.21373426914215088, + "learning_rate": 0.0006, + "loss": 3.6528866291046143, + "step": 2859 + }, + { + "epoch": 39.72695500218436, + "grad_norm": 0.19849136471748352, + "learning_rate": 0.0006, + "loss": 3.6435961723327637, + "step": 2860 + }, + { + "epoch": 39.74093490607252, + "grad_norm": 0.21748292446136475, + "learning_rate": 0.0006, + "loss": 3.678481101989746, + "step": 2861 + }, + { + "epoch": 39.75491480996068, + "grad_norm": 0.22488188743591309, + "learning_rate": 0.0006, + "loss": 3.711717128753662, + "step": 2862 + }, + { + "epoch": 39.768894713848844, + "grad_norm": 0.22251835465431213, + "learning_rate": 0.0006, + "loss": 3.690516471862793, + "step": 2863 + }, + { + "epoch": 39.782874617737, + "grad_norm": 0.22101449966430664, + "learning_rate": 0.0006, + "loss": 3.6679611206054688, + "step": 2864 + }, + { + "epoch": 39.796854521625164, + "grad_norm": 0.20345936715602875, + "learning_rate": 0.0006, + "loss": 3.6935629844665527, + "step": 2865 + }, + { + "epoch": 39.81083442551333, + "grad_norm": 0.23772259056568146, + "learning_rate": 0.0006, + "loss": 3.697561264038086, + "step": 2866 + }, + { + "epoch": 39.824814329401484, + "grad_norm": 0.24446387588977814, + "learning_rate": 0.0006, + "loss": 3.696723461151123, + "step": 2867 + }, + { + "epoch": 39.83879423328965, + "grad_norm": 0.2365843653678894, + "learning_rate": 0.0006, + "loss": 3.6511402130126953, + "step": 2868 + }, + { + "epoch": 39.8527741371778, + "grad_norm": 0.25421974062919617, + "learning_rate": 0.0006, + "loss": 3.68449068069458, + "step": 2869 + }, + { + "epoch": 39.86675404106597, + "grad_norm": 0.2504308819770813, + "learning_rate": 0.0006, + "loss": 3.685884952545166, + "step": 2870 + }, + { + "epoch": 39.88073394495413, + "grad_norm": 0.24695490300655365, + "learning_rate": 0.0006, + "loss": 3.6667490005493164, + "step": 2871 + }, + { + "epoch": 39.89471384884229, + "grad_norm": 0.2633236348628998, + "learning_rate": 0.0006, + "loss": 3.6828866004943848, + "step": 2872 + }, + { + "epoch": 39.90869375273045, + "grad_norm": 0.2421039491891861, + "learning_rate": 0.0006, + "loss": 3.681187391281128, + "step": 2873 + }, + { + "epoch": 39.92267365661861, + "grad_norm": 0.21202950179576874, + "learning_rate": 0.0006, + "loss": 3.679069995880127, + "step": 2874 + }, + { + "epoch": 39.93665356050677, + "grad_norm": 0.2344917505979538, + "learning_rate": 0.0006, + "loss": 3.6810007095336914, + "step": 2875 + }, + { + "epoch": 39.95063346439493, + "grad_norm": 0.2115124762058258, + "learning_rate": 0.0006, + "loss": 3.653219223022461, + "step": 2876 + }, + { + "epoch": 39.964613368283096, + "grad_norm": 0.21588370203971863, + "learning_rate": 0.0006, + "loss": 3.6972861289978027, + "step": 2877 + }, + { + "epoch": 39.97859327217125, + "grad_norm": 0.26215407252311707, + "learning_rate": 0.0006, + "loss": 3.6796963214874268, + "step": 2878 + }, + { + "epoch": 39.992573176059416, + "grad_norm": 0.23645395040512085, + "learning_rate": 0.0006, + "loss": 3.696091413497925, + "step": 2879 + }, + { + "epoch": 40.0, + "grad_norm": 0.21817512810230255, + "learning_rate": 0.0006, + "loss": 3.668196678161621, + "step": 2880 + }, + { + "epoch": 40.0, + "eval_loss": 3.9873862266540527, + "eval_runtime": 44.1149, + "eval_samples_per_second": 55.355, + "eval_steps_per_second": 3.468, + "step": 2880 + }, + { + "epoch": 40.01397990388816, + "grad_norm": 0.2031477391719818, + "learning_rate": 0.0006, + "loss": 3.6494622230529785, + "step": 2881 + }, + { + "epoch": 40.02795980777632, + "grad_norm": 0.2223939746618271, + "learning_rate": 0.0006, + "loss": 3.6587047576904297, + "step": 2882 + }, + { + "epoch": 40.04193971166448, + "grad_norm": 0.21485820412635803, + "learning_rate": 0.0006, + "loss": 3.62253737449646, + "step": 2883 + }, + { + "epoch": 40.05591961555265, + "grad_norm": 0.23364055156707764, + "learning_rate": 0.0006, + "loss": 3.619035005569458, + "step": 2884 + }, + { + "epoch": 40.0698995194408, + "grad_norm": 0.23141583800315857, + "learning_rate": 0.0006, + "loss": 3.6650376319885254, + "step": 2885 + }, + { + "epoch": 40.083879423328966, + "grad_norm": 0.2131720930337906, + "learning_rate": 0.0006, + "loss": 3.646428108215332, + "step": 2886 + }, + { + "epoch": 40.09785932721712, + "grad_norm": 0.2337951511144638, + "learning_rate": 0.0006, + "loss": 3.6284823417663574, + "step": 2887 + }, + { + "epoch": 40.111839231105286, + "grad_norm": 0.2790892720222473, + "learning_rate": 0.0006, + "loss": 3.6558361053466797, + "step": 2888 + }, + { + "epoch": 40.12581913499345, + "grad_norm": 0.28444936871528625, + "learning_rate": 0.0006, + "loss": 3.644402503967285, + "step": 2889 + }, + { + "epoch": 40.139799038881605, + "grad_norm": 0.2550848126411438, + "learning_rate": 0.0006, + "loss": 3.671562671661377, + "step": 2890 + }, + { + "epoch": 40.15377894276977, + "grad_norm": 0.22960248589515686, + "learning_rate": 0.0006, + "loss": 3.6998534202575684, + "step": 2891 + }, + { + "epoch": 40.16775884665793, + "grad_norm": 0.23920369148254395, + "learning_rate": 0.0006, + "loss": 3.653874635696411, + "step": 2892 + }, + { + "epoch": 40.18173875054609, + "grad_norm": 0.24586012959480286, + "learning_rate": 0.0006, + "loss": 3.620765209197998, + "step": 2893 + }, + { + "epoch": 40.19571865443425, + "grad_norm": 0.26394739747047424, + "learning_rate": 0.0006, + "loss": 3.638437509536743, + "step": 2894 + }, + { + "epoch": 40.20969855832241, + "grad_norm": 0.27566927671432495, + "learning_rate": 0.0006, + "loss": 3.6684799194335938, + "step": 2895 + }, + { + "epoch": 40.22367846221057, + "grad_norm": 0.25469011068344116, + "learning_rate": 0.0006, + "loss": 3.6113009452819824, + "step": 2896 + }, + { + "epoch": 40.237658366098735, + "grad_norm": 0.2403056025505066, + "learning_rate": 0.0006, + "loss": 3.650771141052246, + "step": 2897 + }, + { + "epoch": 40.25163826998689, + "grad_norm": 0.262423038482666, + "learning_rate": 0.0006, + "loss": 3.635892391204834, + "step": 2898 + }, + { + "epoch": 40.265618173875055, + "grad_norm": 0.23696045577526093, + "learning_rate": 0.0006, + "loss": 3.6396005153656006, + "step": 2899 + }, + { + "epoch": 40.27959807776322, + "grad_norm": 0.208719402551651, + "learning_rate": 0.0006, + "loss": 3.6681132316589355, + "step": 2900 + }, + { + "epoch": 40.293577981651374, + "grad_norm": 0.21554480493068695, + "learning_rate": 0.0006, + "loss": 3.6417553424835205, + "step": 2901 + }, + { + "epoch": 40.30755788553954, + "grad_norm": 0.2290734499692917, + "learning_rate": 0.0006, + "loss": 3.6659927368164062, + "step": 2902 + }, + { + "epoch": 40.3215377894277, + "grad_norm": 0.20803220570087433, + "learning_rate": 0.0006, + "loss": 3.6443324089050293, + "step": 2903 + }, + { + "epoch": 40.33551769331586, + "grad_norm": 0.20334568619728088, + "learning_rate": 0.0006, + "loss": 3.6824207305908203, + "step": 2904 + }, + { + "epoch": 40.34949759720402, + "grad_norm": 0.2000233381986618, + "learning_rate": 0.0006, + "loss": 3.644399642944336, + "step": 2905 + }, + { + "epoch": 40.36347750109218, + "grad_norm": 0.21990752220153809, + "learning_rate": 0.0006, + "loss": 3.668160915374756, + "step": 2906 + }, + { + "epoch": 40.37745740498034, + "grad_norm": 0.24385249614715576, + "learning_rate": 0.0006, + "loss": 3.634392261505127, + "step": 2907 + }, + { + "epoch": 40.391437308868504, + "grad_norm": 0.21272684633731842, + "learning_rate": 0.0006, + "loss": 3.6504263877868652, + "step": 2908 + }, + { + "epoch": 40.40541721275666, + "grad_norm": 0.2003277838230133, + "learning_rate": 0.0006, + "loss": 3.6707763671875, + "step": 2909 + }, + { + "epoch": 40.419397116644824, + "grad_norm": 0.2086087465286255, + "learning_rate": 0.0006, + "loss": 3.66988468170166, + "step": 2910 + }, + { + "epoch": 40.43337702053299, + "grad_norm": 0.19706451892852783, + "learning_rate": 0.0006, + "loss": 3.662794828414917, + "step": 2911 + }, + { + "epoch": 40.44735692442114, + "grad_norm": 0.18795762956142426, + "learning_rate": 0.0006, + "loss": 3.628016233444214, + "step": 2912 + }, + { + "epoch": 40.46133682830931, + "grad_norm": 0.19931825995445251, + "learning_rate": 0.0006, + "loss": 3.6791915893554688, + "step": 2913 + }, + { + "epoch": 40.47531673219746, + "grad_norm": 0.21295934915542603, + "learning_rate": 0.0006, + "loss": 3.688632011413574, + "step": 2914 + }, + { + "epoch": 40.489296636085626, + "grad_norm": 0.2104834020137787, + "learning_rate": 0.0006, + "loss": 3.6270499229431152, + "step": 2915 + }, + { + "epoch": 40.50327653997379, + "grad_norm": 0.19942966103553772, + "learning_rate": 0.0006, + "loss": 3.651721477508545, + "step": 2916 + }, + { + "epoch": 40.517256443861946, + "grad_norm": 0.18890425562858582, + "learning_rate": 0.0006, + "loss": 3.6778619289398193, + "step": 2917 + }, + { + "epoch": 40.53123634775011, + "grad_norm": 0.19861607253551483, + "learning_rate": 0.0006, + "loss": 3.658832550048828, + "step": 2918 + }, + { + "epoch": 40.54521625163827, + "grad_norm": 0.21553616225719452, + "learning_rate": 0.0006, + "loss": 3.6566901206970215, + "step": 2919 + }, + { + "epoch": 40.55919615552643, + "grad_norm": 0.21698440611362457, + "learning_rate": 0.0006, + "loss": 3.6795129776000977, + "step": 2920 + }, + { + "epoch": 40.57317605941459, + "grad_norm": 0.20310913026332855, + "learning_rate": 0.0006, + "loss": 3.645244598388672, + "step": 2921 + }, + { + "epoch": 40.58715596330275, + "grad_norm": 0.2075812816619873, + "learning_rate": 0.0006, + "loss": 3.678452491760254, + "step": 2922 + }, + { + "epoch": 40.60113586719091, + "grad_norm": 0.20606619119644165, + "learning_rate": 0.0006, + "loss": 3.6150245666503906, + "step": 2923 + }, + { + "epoch": 40.615115771079076, + "grad_norm": 0.21511296927928925, + "learning_rate": 0.0006, + "loss": 3.6682112216949463, + "step": 2924 + }, + { + "epoch": 40.62909567496723, + "grad_norm": 0.19771839678287506, + "learning_rate": 0.0006, + "loss": 3.6639556884765625, + "step": 2925 + }, + { + "epoch": 40.643075578855395, + "grad_norm": 0.20419852435588837, + "learning_rate": 0.0006, + "loss": 3.664982318878174, + "step": 2926 + }, + { + "epoch": 40.65705548274356, + "grad_norm": 0.20119430124759674, + "learning_rate": 0.0006, + "loss": 3.661625385284424, + "step": 2927 + }, + { + "epoch": 40.671035386631715, + "grad_norm": 0.21590501070022583, + "learning_rate": 0.0006, + "loss": 3.673719644546509, + "step": 2928 + }, + { + "epoch": 40.68501529051988, + "grad_norm": 0.19165395200252533, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 2929 + }, + { + "epoch": 40.69899519440804, + "grad_norm": 0.19620473682880402, + "learning_rate": 0.0006, + "loss": 3.7008142471313477, + "step": 2930 + }, + { + "epoch": 40.7129750982962, + "grad_norm": 0.23002777993679047, + "learning_rate": 0.0006, + "loss": 3.654296875, + "step": 2931 + }, + { + "epoch": 40.72695500218436, + "grad_norm": 0.22007468342781067, + "learning_rate": 0.0006, + "loss": 3.688178539276123, + "step": 2932 + }, + { + "epoch": 40.74093490607252, + "grad_norm": 0.2030077874660492, + "learning_rate": 0.0006, + "loss": 3.6514129638671875, + "step": 2933 + }, + { + "epoch": 40.75491480996068, + "grad_norm": 0.20960700511932373, + "learning_rate": 0.0006, + "loss": 3.651864528656006, + "step": 2934 + }, + { + "epoch": 40.768894713848844, + "grad_norm": 0.2132565975189209, + "learning_rate": 0.0006, + "loss": 3.680915355682373, + "step": 2935 + }, + { + "epoch": 40.782874617737, + "grad_norm": 0.2411353588104248, + "learning_rate": 0.0006, + "loss": 3.647167682647705, + "step": 2936 + }, + { + "epoch": 40.796854521625164, + "grad_norm": 0.24621541798114777, + "learning_rate": 0.0006, + "loss": 3.6784768104553223, + "step": 2937 + }, + { + "epoch": 40.81083442551333, + "grad_norm": 0.23324407637119293, + "learning_rate": 0.0006, + "loss": 3.6855263710021973, + "step": 2938 + }, + { + "epoch": 40.824814329401484, + "grad_norm": 0.21749550104141235, + "learning_rate": 0.0006, + "loss": 3.672682285308838, + "step": 2939 + }, + { + "epoch": 40.83879423328965, + "grad_norm": 0.1957911103963852, + "learning_rate": 0.0006, + "loss": 3.635678291320801, + "step": 2940 + }, + { + "epoch": 40.8527741371778, + "grad_norm": 0.21262411773204803, + "learning_rate": 0.0006, + "loss": 3.6829824447631836, + "step": 2941 + }, + { + "epoch": 40.86675404106597, + "grad_norm": 0.19940680265426636, + "learning_rate": 0.0006, + "loss": 3.720932960510254, + "step": 2942 + }, + { + "epoch": 40.88073394495413, + "grad_norm": 0.1964999884366989, + "learning_rate": 0.0006, + "loss": 3.678405284881592, + "step": 2943 + }, + { + "epoch": 40.89471384884229, + "grad_norm": 0.21459022164344788, + "learning_rate": 0.0006, + "loss": 3.6788480281829834, + "step": 2944 + }, + { + "epoch": 40.90869375273045, + "grad_norm": 0.2251381129026413, + "learning_rate": 0.0006, + "loss": 3.679459571838379, + "step": 2945 + }, + { + "epoch": 40.92267365661861, + "grad_norm": 0.19951461255550385, + "learning_rate": 0.0006, + "loss": 3.6610841751098633, + "step": 2946 + }, + { + "epoch": 40.93665356050677, + "grad_norm": 0.2057943493127823, + "learning_rate": 0.0006, + "loss": 3.649491786956787, + "step": 2947 + }, + { + "epoch": 40.95063346439493, + "grad_norm": 0.19601917266845703, + "learning_rate": 0.0006, + "loss": 3.724552631378174, + "step": 2948 + }, + { + "epoch": 40.964613368283096, + "grad_norm": 0.20982769131660461, + "learning_rate": 0.0006, + "loss": 3.648465394973755, + "step": 2949 + }, + { + "epoch": 40.97859327217125, + "grad_norm": 0.21103954315185547, + "learning_rate": 0.0006, + "loss": 3.692239999771118, + "step": 2950 + }, + { + "epoch": 40.992573176059416, + "grad_norm": 0.2007385492324829, + "learning_rate": 0.0006, + "loss": 3.659999132156372, + "step": 2951 + }, + { + "epoch": 41.0, + "grad_norm": 0.22357431054115295, + "learning_rate": 0.0006, + "loss": 3.6461124420166016, + "step": 2952 + }, + { + "epoch": 41.0, + "eval_loss": 3.9891226291656494, + "eval_runtime": 44.65, + "eval_samples_per_second": 54.692, + "eval_steps_per_second": 3.427, + "step": 2952 + }, + { + "epoch": 41.01397990388816, + "grad_norm": 0.20387817919254303, + "learning_rate": 0.0006, + "loss": 3.643923282623291, + "step": 2953 + }, + { + "epoch": 41.02795980777632, + "grad_norm": 0.1988423764705658, + "learning_rate": 0.0006, + "loss": 3.6152570247650146, + "step": 2954 + }, + { + "epoch": 41.04193971166448, + "grad_norm": 0.19998641312122345, + "learning_rate": 0.0006, + "loss": 3.667520523071289, + "step": 2955 + }, + { + "epoch": 41.05591961555265, + "grad_norm": 0.18347714841365814, + "learning_rate": 0.0006, + "loss": 3.6289002895355225, + "step": 2956 + }, + { + "epoch": 41.0698995194408, + "grad_norm": 0.21235640347003937, + "learning_rate": 0.0006, + "loss": 3.6422951221466064, + "step": 2957 + }, + { + "epoch": 41.083879423328966, + "grad_norm": 0.1990172415971756, + "learning_rate": 0.0006, + "loss": 3.625697135925293, + "step": 2958 + }, + { + "epoch": 41.09785932721712, + "grad_norm": 0.18313643336296082, + "learning_rate": 0.0006, + "loss": 3.672356605529785, + "step": 2959 + }, + { + "epoch": 41.111839231105286, + "grad_norm": 0.17956401407718658, + "learning_rate": 0.0006, + "loss": 3.6093602180480957, + "step": 2960 + }, + { + "epoch": 41.12581913499345, + "grad_norm": 0.19487550854682922, + "learning_rate": 0.0006, + "loss": 3.6004128456115723, + "step": 2961 + }, + { + "epoch": 41.139799038881605, + "grad_norm": 0.2117495834827423, + "learning_rate": 0.0006, + "loss": 3.6468565464019775, + "step": 2962 + }, + { + "epoch": 41.15377894276977, + "grad_norm": 0.20602662861347198, + "learning_rate": 0.0006, + "loss": 3.6299140453338623, + "step": 2963 + }, + { + "epoch": 41.16775884665793, + "grad_norm": 0.21859265863895416, + "learning_rate": 0.0006, + "loss": 3.630052328109741, + "step": 2964 + }, + { + "epoch": 41.18173875054609, + "grad_norm": 0.22684140503406525, + "learning_rate": 0.0006, + "loss": 3.5995004177093506, + "step": 2965 + }, + { + "epoch": 41.19571865443425, + "grad_norm": 0.25682681798934937, + "learning_rate": 0.0006, + "loss": 3.613131523132324, + "step": 2966 + }, + { + "epoch": 41.20969855832241, + "grad_norm": 0.2508181631565094, + "learning_rate": 0.0006, + "loss": 3.644259452819824, + "step": 2967 + }, + { + "epoch": 41.22367846221057, + "grad_norm": 0.24200427532196045, + "learning_rate": 0.0006, + "loss": 3.6651816368103027, + "step": 2968 + }, + { + "epoch": 41.237658366098735, + "grad_norm": 0.21753790974617004, + "learning_rate": 0.0006, + "loss": 3.686199188232422, + "step": 2969 + }, + { + "epoch": 41.25163826998689, + "grad_norm": 0.19811955094337463, + "learning_rate": 0.0006, + "loss": 3.63014817237854, + "step": 2970 + }, + { + "epoch": 41.265618173875055, + "grad_norm": 0.19316327571868896, + "learning_rate": 0.0006, + "loss": 3.6532740592956543, + "step": 2971 + }, + { + "epoch": 41.27959807776322, + "grad_norm": 0.21440976858139038, + "learning_rate": 0.0006, + "loss": 3.6546850204467773, + "step": 2972 + }, + { + "epoch": 41.293577981651374, + "grad_norm": 0.2732681334018707, + "learning_rate": 0.0006, + "loss": 3.6135244369506836, + "step": 2973 + }, + { + "epoch": 41.30755788553954, + "grad_norm": 0.2588619589805603, + "learning_rate": 0.0006, + "loss": 3.657963275909424, + "step": 2974 + }, + { + "epoch": 41.3215377894277, + "grad_norm": 0.20054970681667328, + "learning_rate": 0.0006, + "loss": 3.6391024589538574, + "step": 2975 + }, + { + "epoch": 41.33551769331586, + "grad_norm": 0.23703549802303314, + "learning_rate": 0.0006, + "loss": 3.6609978675842285, + "step": 2976 + }, + { + "epoch": 41.34949759720402, + "grad_norm": 0.24222144484519958, + "learning_rate": 0.0006, + "loss": 3.659271478652954, + "step": 2977 + }, + { + "epoch": 41.36347750109218, + "grad_norm": 0.2228497713804245, + "learning_rate": 0.0006, + "loss": 3.607358455657959, + "step": 2978 + }, + { + "epoch": 41.37745740498034, + "grad_norm": 0.22105038166046143, + "learning_rate": 0.0006, + "loss": 3.64198899269104, + "step": 2979 + }, + { + "epoch": 41.391437308868504, + "grad_norm": 0.23753555119037628, + "learning_rate": 0.0006, + "loss": 3.63116455078125, + "step": 2980 + }, + { + "epoch": 41.40541721275666, + "grad_norm": 0.24492689967155457, + "learning_rate": 0.0006, + "loss": 3.636122465133667, + "step": 2981 + }, + { + "epoch": 41.419397116644824, + "grad_norm": 0.20610782504081726, + "learning_rate": 0.0006, + "loss": 3.656487226486206, + "step": 2982 + }, + { + "epoch": 41.43337702053299, + "grad_norm": 0.20781412720680237, + "learning_rate": 0.0006, + "loss": 3.669196605682373, + "step": 2983 + }, + { + "epoch": 41.44735692442114, + "grad_norm": 0.23892036080360413, + "learning_rate": 0.0006, + "loss": 3.6345765590667725, + "step": 2984 + }, + { + "epoch": 41.46133682830931, + "grad_norm": 0.2477712333202362, + "learning_rate": 0.0006, + "loss": 3.6599812507629395, + "step": 2985 + }, + { + "epoch": 41.47531673219746, + "grad_norm": 0.25314703583717346, + "learning_rate": 0.0006, + "loss": 3.6737258434295654, + "step": 2986 + }, + { + "epoch": 41.489296636085626, + "grad_norm": 0.2386070191860199, + "learning_rate": 0.0006, + "loss": 3.666586399078369, + "step": 2987 + }, + { + "epoch": 41.50327653997379, + "grad_norm": 0.27259722352027893, + "learning_rate": 0.0006, + "loss": 3.658761501312256, + "step": 2988 + }, + { + "epoch": 41.517256443861946, + "grad_norm": 0.3312860429286957, + "learning_rate": 0.0006, + "loss": 3.629699230194092, + "step": 2989 + }, + { + "epoch": 41.53123634775011, + "grad_norm": 0.3321581780910492, + "learning_rate": 0.0006, + "loss": 3.66628360748291, + "step": 2990 + }, + { + "epoch": 41.54521625163827, + "grad_norm": 0.2850016951560974, + "learning_rate": 0.0006, + "loss": 3.690005302429199, + "step": 2991 + }, + { + "epoch": 41.55919615552643, + "grad_norm": 0.2544100880622864, + "learning_rate": 0.0006, + "loss": 3.6554486751556396, + "step": 2992 + }, + { + "epoch": 41.57317605941459, + "grad_norm": 0.28541380167007446, + "learning_rate": 0.0006, + "loss": 3.672952175140381, + "step": 2993 + }, + { + "epoch": 41.58715596330275, + "grad_norm": 0.2909766435623169, + "learning_rate": 0.0006, + "loss": 3.6649627685546875, + "step": 2994 + }, + { + "epoch": 41.60113586719091, + "grad_norm": 0.26089969277381897, + "learning_rate": 0.0006, + "loss": 3.6512341499328613, + "step": 2995 + }, + { + "epoch": 41.615115771079076, + "grad_norm": 0.21815894544124603, + "learning_rate": 0.0006, + "loss": 3.612436056137085, + "step": 2996 + }, + { + "epoch": 41.62909567496723, + "grad_norm": 0.20712246000766754, + "learning_rate": 0.0006, + "loss": 3.6482479572296143, + "step": 2997 + }, + { + "epoch": 41.643075578855395, + "grad_norm": 0.23280103504657745, + "learning_rate": 0.0006, + "loss": 3.6648616790771484, + "step": 2998 + }, + { + "epoch": 41.65705548274356, + "grad_norm": 0.21623823046684265, + "learning_rate": 0.0006, + "loss": 3.6714487075805664, + "step": 2999 + }, + { + "epoch": 41.671035386631715, + "grad_norm": 0.2081632912158966, + "learning_rate": 0.0006, + "loss": 3.693014144897461, + "step": 3000 + }, + { + "epoch": 41.68501529051988, + "grad_norm": 0.23109425604343414, + "learning_rate": 0.0006, + "loss": 3.667262554168701, + "step": 3001 + }, + { + "epoch": 41.69899519440804, + "grad_norm": 0.2304934561252594, + "learning_rate": 0.0006, + "loss": 3.666405439376831, + "step": 3002 + }, + { + "epoch": 41.7129750982962, + "grad_norm": 0.23132432997226715, + "learning_rate": 0.0006, + "loss": 3.690964698791504, + "step": 3003 + }, + { + "epoch": 41.72695500218436, + "grad_norm": 0.2085159569978714, + "learning_rate": 0.0006, + "loss": 3.6620168685913086, + "step": 3004 + }, + { + "epoch": 41.74093490607252, + "grad_norm": 0.1919657438993454, + "learning_rate": 0.0006, + "loss": 3.67447566986084, + "step": 3005 + }, + { + "epoch": 41.75491480996068, + "grad_norm": 0.20189036428928375, + "learning_rate": 0.0006, + "loss": 3.6434998512268066, + "step": 3006 + }, + { + "epoch": 41.768894713848844, + "grad_norm": 0.23530980944633484, + "learning_rate": 0.0006, + "loss": 3.644280433654785, + "step": 3007 + }, + { + "epoch": 41.782874617737, + "grad_norm": 0.2550027370452881, + "learning_rate": 0.0006, + "loss": 3.6686060428619385, + "step": 3008 + }, + { + "epoch": 41.796854521625164, + "grad_norm": 0.2285512536764145, + "learning_rate": 0.0006, + "loss": 3.7013134956359863, + "step": 3009 + }, + { + "epoch": 41.81083442551333, + "grad_norm": 0.20538675785064697, + "learning_rate": 0.0006, + "loss": 3.6568830013275146, + "step": 3010 + }, + { + "epoch": 41.824814329401484, + "grad_norm": 0.2007976472377777, + "learning_rate": 0.0006, + "loss": 3.680250883102417, + "step": 3011 + }, + { + "epoch": 41.83879423328965, + "grad_norm": 0.20060500502586365, + "learning_rate": 0.0006, + "loss": 3.6565070152282715, + "step": 3012 + }, + { + "epoch": 41.8527741371778, + "grad_norm": 0.21055014431476593, + "learning_rate": 0.0006, + "loss": 3.661667823791504, + "step": 3013 + }, + { + "epoch": 41.86675404106597, + "grad_norm": 0.2201126217842102, + "learning_rate": 0.0006, + "loss": 3.650052070617676, + "step": 3014 + }, + { + "epoch": 41.88073394495413, + "grad_norm": 0.20397843420505524, + "learning_rate": 0.0006, + "loss": 3.6535415649414062, + "step": 3015 + }, + { + "epoch": 41.89471384884229, + "grad_norm": 0.1993463635444641, + "learning_rate": 0.0006, + "loss": 3.665696144104004, + "step": 3016 + }, + { + "epoch": 41.90869375273045, + "grad_norm": 0.20448797941207886, + "learning_rate": 0.0006, + "loss": 3.6448118686676025, + "step": 3017 + }, + { + "epoch": 41.92267365661861, + "grad_norm": 0.2064918726682663, + "learning_rate": 0.0006, + "loss": 3.6881537437438965, + "step": 3018 + }, + { + "epoch": 41.93665356050677, + "grad_norm": 0.20554372668266296, + "learning_rate": 0.0006, + "loss": 3.688559055328369, + "step": 3019 + }, + { + "epoch": 41.95063346439493, + "grad_norm": 0.1862783133983612, + "learning_rate": 0.0006, + "loss": 3.6713812351226807, + "step": 3020 + }, + { + "epoch": 41.964613368283096, + "grad_norm": 0.18139860033988953, + "learning_rate": 0.0006, + "loss": 3.6612548828125, + "step": 3021 + }, + { + "epoch": 41.97859327217125, + "grad_norm": 0.1844220608472824, + "learning_rate": 0.0006, + "loss": 3.641725540161133, + "step": 3022 + }, + { + "epoch": 41.992573176059416, + "grad_norm": 0.1885213702917099, + "learning_rate": 0.0006, + "loss": 3.663257122039795, + "step": 3023 + }, + { + "epoch": 42.0, + "grad_norm": 0.2250746339559555, + "learning_rate": 0.0006, + "loss": 3.6479320526123047, + "step": 3024 + }, + { + "epoch": 42.0, + "eval_loss": 3.993955135345459, + "eval_runtime": 44.4709, + "eval_samples_per_second": 54.912, + "eval_steps_per_second": 3.44, + "step": 3024 + }, + { + "epoch": 42.01397990388816, + "grad_norm": 0.21096517145633698, + "learning_rate": 0.0006, + "loss": 3.6729278564453125, + "step": 3025 + }, + { + "epoch": 42.02795980777632, + "grad_norm": 0.2106277495622635, + "learning_rate": 0.0006, + "loss": 3.629892349243164, + "step": 3026 + }, + { + "epoch": 42.04193971166448, + "grad_norm": 0.2673060894012451, + "learning_rate": 0.0006, + "loss": 3.643604040145874, + "step": 3027 + }, + { + "epoch": 42.05591961555265, + "grad_norm": 0.28180691599845886, + "learning_rate": 0.0006, + "loss": 3.596560478210449, + "step": 3028 + }, + { + "epoch": 42.0698995194408, + "grad_norm": 0.25607243180274963, + "learning_rate": 0.0006, + "loss": 3.597935199737549, + "step": 3029 + }, + { + "epoch": 42.083879423328966, + "grad_norm": 0.22120746970176697, + "learning_rate": 0.0006, + "loss": 3.6219305992126465, + "step": 3030 + }, + { + "epoch": 42.09785932721712, + "grad_norm": 0.2164907306432724, + "learning_rate": 0.0006, + "loss": 3.6220779418945312, + "step": 3031 + }, + { + "epoch": 42.111839231105286, + "grad_norm": 0.23800921440124512, + "learning_rate": 0.0006, + "loss": 3.63372540473938, + "step": 3032 + }, + { + "epoch": 42.12581913499345, + "grad_norm": 0.21812695264816284, + "learning_rate": 0.0006, + "loss": 3.636105537414551, + "step": 3033 + }, + { + "epoch": 42.139799038881605, + "grad_norm": 0.2027447372674942, + "learning_rate": 0.0006, + "loss": 3.6167502403259277, + "step": 3034 + }, + { + "epoch": 42.15377894276977, + "grad_norm": 0.20157714188098907, + "learning_rate": 0.0006, + "loss": 3.6141409873962402, + "step": 3035 + }, + { + "epoch": 42.16775884665793, + "grad_norm": 0.20780996978282928, + "learning_rate": 0.0006, + "loss": 3.6323471069335938, + "step": 3036 + }, + { + "epoch": 42.18173875054609, + "grad_norm": 0.20025081932544708, + "learning_rate": 0.0006, + "loss": 3.625446081161499, + "step": 3037 + }, + { + "epoch": 42.19571865443425, + "grad_norm": 0.20019082725048065, + "learning_rate": 0.0006, + "loss": 3.631418228149414, + "step": 3038 + }, + { + "epoch": 42.20969855832241, + "grad_norm": 0.21194526553153992, + "learning_rate": 0.0006, + "loss": 3.6180832386016846, + "step": 3039 + }, + { + "epoch": 42.22367846221057, + "grad_norm": 0.2016245573759079, + "learning_rate": 0.0006, + "loss": 3.6388602256774902, + "step": 3040 + }, + { + "epoch": 42.237658366098735, + "grad_norm": 0.1892252415418625, + "learning_rate": 0.0006, + "loss": 3.6086854934692383, + "step": 3041 + }, + { + "epoch": 42.25163826998689, + "grad_norm": 0.1878061145544052, + "learning_rate": 0.0006, + "loss": 3.599428176879883, + "step": 3042 + }, + { + "epoch": 42.265618173875055, + "grad_norm": 0.20258742570877075, + "learning_rate": 0.0006, + "loss": 3.6177172660827637, + "step": 3043 + }, + { + "epoch": 42.27959807776322, + "grad_norm": 0.2114444226026535, + "learning_rate": 0.0006, + "loss": 3.641916275024414, + "step": 3044 + }, + { + "epoch": 42.293577981651374, + "grad_norm": 0.19873645901679993, + "learning_rate": 0.0006, + "loss": 3.6585676670074463, + "step": 3045 + }, + { + "epoch": 42.30755788553954, + "grad_norm": 0.20361217856407166, + "learning_rate": 0.0006, + "loss": 3.648475170135498, + "step": 3046 + }, + { + "epoch": 42.3215377894277, + "grad_norm": 0.20227114856243134, + "learning_rate": 0.0006, + "loss": 3.63625431060791, + "step": 3047 + }, + { + "epoch": 42.33551769331586, + "grad_norm": 0.18246233463287354, + "learning_rate": 0.0006, + "loss": 3.6380200386047363, + "step": 3048 + }, + { + "epoch": 42.34949759720402, + "grad_norm": 0.17944976687431335, + "learning_rate": 0.0006, + "loss": 3.6325912475585938, + "step": 3049 + }, + { + "epoch": 42.36347750109218, + "grad_norm": 0.188584566116333, + "learning_rate": 0.0006, + "loss": 3.6418886184692383, + "step": 3050 + }, + { + "epoch": 42.37745740498034, + "grad_norm": 0.1917790323495865, + "learning_rate": 0.0006, + "loss": 3.664421558380127, + "step": 3051 + }, + { + "epoch": 42.391437308868504, + "grad_norm": 0.175637349486351, + "learning_rate": 0.0006, + "loss": 3.641819953918457, + "step": 3052 + }, + { + "epoch": 42.40541721275666, + "grad_norm": 0.18751518428325653, + "learning_rate": 0.0006, + "loss": 3.646697998046875, + "step": 3053 + }, + { + "epoch": 42.419397116644824, + "grad_norm": 0.1805887520313263, + "learning_rate": 0.0006, + "loss": 3.637866735458374, + "step": 3054 + }, + { + "epoch": 42.43337702053299, + "grad_norm": 0.19680845737457275, + "learning_rate": 0.0006, + "loss": 3.602511405944824, + "step": 3055 + }, + { + "epoch": 42.44735692442114, + "grad_norm": 0.20605766773223877, + "learning_rate": 0.0006, + "loss": 3.6472771167755127, + "step": 3056 + }, + { + "epoch": 42.46133682830931, + "grad_norm": 0.18083851039409637, + "learning_rate": 0.0006, + "loss": 3.6672325134277344, + "step": 3057 + }, + { + "epoch": 42.47531673219746, + "grad_norm": 0.19665084779262543, + "learning_rate": 0.0006, + "loss": 3.625300884246826, + "step": 3058 + }, + { + "epoch": 42.489296636085626, + "grad_norm": 0.22506165504455566, + "learning_rate": 0.0006, + "loss": 3.592872142791748, + "step": 3059 + }, + { + "epoch": 42.50327653997379, + "grad_norm": 0.2051578164100647, + "learning_rate": 0.0006, + "loss": 3.6302249431610107, + "step": 3060 + }, + { + "epoch": 42.517256443861946, + "grad_norm": 0.18957172334194183, + "learning_rate": 0.0006, + "loss": 3.6277074813842773, + "step": 3061 + }, + { + "epoch": 42.53123634775011, + "grad_norm": 0.21467208862304688, + "learning_rate": 0.0006, + "loss": 3.6121392250061035, + "step": 3062 + }, + { + "epoch": 42.54521625163827, + "grad_norm": 0.21618402004241943, + "learning_rate": 0.0006, + "loss": 3.664738655090332, + "step": 3063 + }, + { + "epoch": 42.55919615552643, + "grad_norm": 0.2259770780801773, + "learning_rate": 0.0006, + "loss": 3.652042865753174, + "step": 3064 + }, + { + "epoch": 42.57317605941459, + "grad_norm": 0.22667232155799866, + "learning_rate": 0.0006, + "loss": 3.6552934646606445, + "step": 3065 + }, + { + "epoch": 42.58715596330275, + "grad_norm": 0.21405228972434998, + "learning_rate": 0.0006, + "loss": 3.644043445587158, + "step": 3066 + }, + { + "epoch": 42.60113586719091, + "grad_norm": 0.20855450630187988, + "learning_rate": 0.0006, + "loss": 3.6534876823425293, + "step": 3067 + }, + { + "epoch": 42.615115771079076, + "grad_norm": 0.22474415600299835, + "learning_rate": 0.0006, + "loss": 3.656677484512329, + "step": 3068 + }, + { + "epoch": 42.62909567496723, + "grad_norm": 0.23401428759098053, + "learning_rate": 0.0006, + "loss": 3.6788997650146484, + "step": 3069 + }, + { + "epoch": 42.643075578855395, + "grad_norm": 0.21567967534065247, + "learning_rate": 0.0006, + "loss": 3.675379753112793, + "step": 3070 + }, + { + "epoch": 42.65705548274356, + "grad_norm": 0.21704941987991333, + "learning_rate": 0.0006, + "loss": 3.630707263946533, + "step": 3071 + }, + { + "epoch": 42.671035386631715, + "grad_norm": 0.2718963921070099, + "learning_rate": 0.0006, + "loss": 3.6653294563293457, + "step": 3072 + }, + { + "epoch": 42.68501529051988, + "grad_norm": 0.30198901891708374, + "learning_rate": 0.0006, + "loss": 3.6761326789855957, + "step": 3073 + }, + { + "epoch": 42.69899519440804, + "grad_norm": 0.27593618631362915, + "learning_rate": 0.0006, + "loss": 3.6610732078552246, + "step": 3074 + }, + { + "epoch": 42.7129750982962, + "grad_norm": 0.22495242953300476, + "learning_rate": 0.0006, + "loss": 3.656907320022583, + "step": 3075 + }, + { + "epoch": 42.72695500218436, + "grad_norm": 0.19872353971004486, + "learning_rate": 0.0006, + "loss": 3.6611597537994385, + "step": 3076 + }, + { + "epoch": 42.74093490607252, + "grad_norm": 0.21527111530303955, + "learning_rate": 0.0006, + "loss": 3.676821708679199, + "step": 3077 + }, + { + "epoch": 42.75491480996068, + "grad_norm": 0.22314463555812836, + "learning_rate": 0.0006, + "loss": 3.629460334777832, + "step": 3078 + }, + { + "epoch": 42.768894713848844, + "grad_norm": 0.23461024463176727, + "learning_rate": 0.0006, + "loss": 3.665390968322754, + "step": 3079 + }, + { + "epoch": 42.782874617737, + "grad_norm": 0.2582414448261261, + "learning_rate": 0.0006, + "loss": 3.6420979499816895, + "step": 3080 + }, + { + "epoch": 42.796854521625164, + "grad_norm": 0.2505052983760834, + "learning_rate": 0.0006, + "loss": 3.67236328125, + "step": 3081 + }, + { + "epoch": 42.81083442551333, + "grad_norm": 0.22617632150650024, + "learning_rate": 0.0006, + "loss": 3.654897689819336, + "step": 3082 + }, + { + "epoch": 42.824814329401484, + "grad_norm": 0.2340085208415985, + "learning_rate": 0.0006, + "loss": 3.6423635482788086, + "step": 3083 + }, + { + "epoch": 42.83879423328965, + "grad_norm": 0.26765671372413635, + "learning_rate": 0.0006, + "loss": 3.622769832611084, + "step": 3084 + }, + { + "epoch": 42.8527741371778, + "grad_norm": 0.29490381479263306, + "learning_rate": 0.0006, + "loss": 3.656053066253662, + "step": 3085 + }, + { + "epoch": 42.86675404106597, + "grad_norm": 0.29776132106781006, + "learning_rate": 0.0006, + "loss": 3.6454644203186035, + "step": 3086 + }, + { + "epoch": 42.88073394495413, + "grad_norm": 0.23994849622249603, + "learning_rate": 0.0006, + "loss": 3.674665927886963, + "step": 3087 + }, + { + "epoch": 42.89471384884229, + "grad_norm": 0.21456265449523926, + "learning_rate": 0.0006, + "loss": 3.670175790786743, + "step": 3088 + }, + { + "epoch": 42.90869375273045, + "grad_norm": 0.25727778673171997, + "learning_rate": 0.0006, + "loss": 3.6425390243530273, + "step": 3089 + }, + { + "epoch": 42.92267365661861, + "grad_norm": 0.30310627818107605, + "learning_rate": 0.0006, + "loss": 3.68511962890625, + "step": 3090 + }, + { + "epoch": 42.93665356050677, + "grad_norm": 0.2792291045188904, + "learning_rate": 0.0006, + "loss": 3.681732654571533, + "step": 3091 + }, + { + "epoch": 42.95063346439493, + "grad_norm": 0.23614276945590973, + "learning_rate": 0.0006, + "loss": 3.6417222023010254, + "step": 3092 + }, + { + "epoch": 42.964613368283096, + "grad_norm": 0.23602448403835297, + "learning_rate": 0.0006, + "loss": 3.6602869033813477, + "step": 3093 + }, + { + "epoch": 42.97859327217125, + "grad_norm": 0.21968287229537964, + "learning_rate": 0.0006, + "loss": 3.6618118286132812, + "step": 3094 + }, + { + "epoch": 42.992573176059416, + "grad_norm": 0.2177523374557495, + "learning_rate": 0.0006, + "loss": 3.666904926300049, + "step": 3095 + }, + { + "epoch": 43.0, + "grad_norm": 0.23960894346237183, + "learning_rate": 0.0006, + "loss": 3.710965633392334, + "step": 3096 + }, + { + "epoch": 43.0, + "eval_loss": 3.977475166320801, + "eval_runtime": 44.5209, + "eval_samples_per_second": 54.851, + "eval_steps_per_second": 3.437, + "step": 3096 + }, + { + "epoch": 43.01397990388816, + "grad_norm": 0.24180234968662262, + "learning_rate": 0.0006, + "loss": 3.5949223041534424, + "step": 3097 + }, + { + "epoch": 43.02795980777632, + "grad_norm": 0.3331127166748047, + "learning_rate": 0.0006, + "loss": 3.625802755355835, + "step": 3098 + }, + { + "epoch": 43.04193971166448, + "grad_norm": 0.38338130712509155, + "learning_rate": 0.0006, + "loss": 3.6390271186828613, + "step": 3099 + }, + { + "epoch": 43.05591961555265, + "grad_norm": 0.32292598485946655, + "learning_rate": 0.0006, + "loss": 3.630621910095215, + "step": 3100 + }, + { + "epoch": 43.0698995194408, + "grad_norm": 0.24179677665233612, + "learning_rate": 0.0006, + "loss": 3.6124491691589355, + "step": 3101 + }, + { + "epoch": 43.083879423328966, + "grad_norm": 0.2622842788696289, + "learning_rate": 0.0006, + "loss": 3.6207399368286133, + "step": 3102 + }, + { + "epoch": 43.09785932721712, + "grad_norm": 0.264297217130661, + "learning_rate": 0.0006, + "loss": 3.637218475341797, + "step": 3103 + }, + { + "epoch": 43.111839231105286, + "grad_norm": 0.25815117359161377, + "learning_rate": 0.0006, + "loss": 3.614841938018799, + "step": 3104 + }, + { + "epoch": 43.12581913499345, + "grad_norm": 0.2209406942129135, + "learning_rate": 0.0006, + "loss": 3.604722738265991, + "step": 3105 + }, + { + "epoch": 43.139799038881605, + "grad_norm": 0.22333410382270813, + "learning_rate": 0.0006, + "loss": 3.6388449668884277, + "step": 3106 + }, + { + "epoch": 43.15377894276977, + "grad_norm": 0.2194417119026184, + "learning_rate": 0.0006, + "loss": 3.611644744873047, + "step": 3107 + }, + { + "epoch": 43.16775884665793, + "grad_norm": 0.21270349621772766, + "learning_rate": 0.0006, + "loss": 3.6180214881896973, + "step": 3108 + }, + { + "epoch": 43.18173875054609, + "grad_norm": 0.21358032524585724, + "learning_rate": 0.0006, + "loss": 3.646512985229492, + "step": 3109 + }, + { + "epoch": 43.19571865443425, + "grad_norm": 0.2180788666009903, + "learning_rate": 0.0006, + "loss": 3.641981363296509, + "step": 3110 + }, + { + "epoch": 43.20969855832241, + "grad_norm": 0.21979685127735138, + "learning_rate": 0.0006, + "loss": 3.6251654624938965, + "step": 3111 + }, + { + "epoch": 43.22367846221057, + "grad_norm": 0.2072533220052719, + "learning_rate": 0.0006, + "loss": 3.665372371673584, + "step": 3112 + }, + { + "epoch": 43.237658366098735, + "grad_norm": 0.2085742950439453, + "learning_rate": 0.0006, + "loss": 3.647730827331543, + "step": 3113 + }, + { + "epoch": 43.25163826998689, + "grad_norm": 0.1934993416070938, + "learning_rate": 0.0006, + "loss": 3.6296567916870117, + "step": 3114 + }, + { + "epoch": 43.265618173875055, + "grad_norm": 0.1954783797264099, + "learning_rate": 0.0006, + "loss": 3.6412858963012695, + "step": 3115 + }, + { + "epoch": 43.27959807776322, + "grad_norm": 0.1932750642299652, + "learning_rate": 0.0006, + "loss": 3.6246860027313232, + "step": 3116 + }, + { + "epoch": 43.293577981651374, + "grad_norm": 0.19765302538871765, + "learning_rate": 0.0006, + "loss": 3.618922710418701, + "step": 3117 + }, + { + "epoch": 43.30755788553954, + "grad_norm": 0.1987425684928894, + "learning_rate": 0.0006, + "loss": 3.633185863494873, + "step": 3118 + }, + { + "epoch": 43.3215377894277, + "grad_norm": 0.1894739419221878, + "learning_rate": 0.0006, + "loss": 3.595709800720215, + "step": 3119 + }, + { + "epoch": 43.33551769331586, + "grad_norm": 0.19455872476100922, + "learning_rate": 0.0006, + "loss": 3.6309051513671875, + "step": 3120 + }, + { + "epoch": 43.34949759720402, + "grad_norm": 0.21448275446891785, + "learning_rate": 0.0006, + "loss": 3.6425981521606445, + "step": 3121 + }, + { + "epoch": 43.36347750109218, + "grad_norm": 0.24527893960475922, + "learning_rate": 0.0006, + "loss": 3.6497793197631836, + "step": 3122 + }, + { + "epoch": 43.37745740498034, + "grad_norm": 0.253231942653656, + "learning_rate": 0.0006, + "loss": 3.644453525543213, + "step": 3123 + }, + { + "epoch": 43.391437308868504, + "grad_norm": 0.2048978954553604, + "learning_rate": 0.0006, + "loss": 3.5963876247406006, + "step": 3124 + }, + { + "epoch": 43.40541721275666, + "grad_norm": 0.19951528310775757, + "learning_rate": 0.0006, + "loss": 3.6274406909942627, + "step": 3125 + }, + { + "epoch": 43.419397116644824, + "grad_norm": 0.2293875813484192, + "learning_rate": 0.0006, + "loss": 3.6482725143432617, + "step": 3126 + }, + { + "epoch": 43.43337702053299, + "grad_norm": 0.22379456460475922, + "learning_rate": 0.0006, + "loss": 3.6466073989868164, + "step": 3127 + }, + { + "epoch": 43.44735692442114, + "grad_norm": 0.2275441288948059, + "learning_rate": 0.0006, + "loss": 3.6529078483581543, + "step": 3128 + }, + { + "epoch": 43.46133682830931, + "grad_norm": 0.23014242947101593, + "learning_rate": 0.0006, + "loss": 3.6084837913513184, + "step": 3129 + }, + { + "epoch": 43.47531673219746, + "grad_norm": 0.22280924022197723, + "learning_rate": 0.0006, + "loss": 3.611320734024048, + "step": 3130 + }, + { + "epoch": 43.489296636085626, + "grad_norm": 0.19498756527900696, + "learning_rate": 0.0006, + "loss": 3.630185604095459, + "step": 3131 + }, + { + "epoch": 43.50327653997379, + "grad_norm": 0.21357767283916473, + "learning_rate": 0.0006, + "loss": 3.6509933471679688, + "step": 3132 + }, + { + "epoch": 43.517256443861946, + "grad_norm": 0.21775896847248077, + "learning_rate": 0.0006, + "loss": 3.635112762451172, + "step": 3133 + }, + { + "epoch": 43.53123634775011, + "grad_norm": 0.2035629004240036, + "learning_rate": 0.0006, + "loss": 3.658327102661133, + "step": 3134 + }, + { + "epoch": 43.54521625163827, + "grad_norm": 0.20083840191364288, + "learning_rate": 0.0006, + "loss": 3.632441997528076, + "step": 3135 + }, + { + "epoch": 43.55919615552643, + "grad_norm": 0.1922001987695694, + "learning_rate": 0.0006, + "loss": 3.6417734622955322, + "step": 3136 + }, + { + "epoch": 43.57317605941459, + "grad_norm": 0.21049264073371887, + "learning_rate": 0.0006, + "loss": 3.671274423599243, + "step": 3137 + }, + { + "epoch": 43.58715596330275, + "grad_norm": 0.21432001888751984, + "learning_rate": 0.0006, + "loss": 3.6216118335723877, + "step": 3138 + }, + { + "epoch": 43.60113586719091, + "grad_norm": 0.25448811054229736, + "learning_rate": 0.0006, + "loss": 3.658283233642578, + "step": 3139 + }, + { + "epoch": 43.615115771079076, + "grad_norm": 0.24313904345035553, + "learning_rate": 0.0006, + "loss": 3.6447594165802, + "step": 3140 + }, + { + "epoch": 43.62909567496723, + "grad_norm": 0.2332659363746643, + "learning_rate": 0.0006, + "loss": 3.625528573989868, + "step": 3141 + }, + { + "epoch": 43.643075578855395, + "grad_norm": 0.23222137987613678, + "learning_rate": 0.0006, + "loss": 3.6524429321289062, + "step": 3142 + }, + { + "epoch": 43.65705548274356, + "grad_norm": 0.2147051990032196, + "learning_rate": 0.0006, + "loss": 3.6517302989959717, + "step": 3143 + }, + { + "epoch": 43.671035386631715, + "grad_norm": 0.2464994341135025, + "learning_rate": 0.0006, + "loss": 3.654947519302368, + "step": 3144 + }, + { + "epoch": 43.68501529051988, + "grad_norm": 0.2365981936454773, + "learning_rate": 0.0006, + "loss": 3.638695240020752, + "step": 3145 + }, + { + "epoch": 43.69899519440804, + "grad_norm": 0.2325262874364853, + "learning_rate": 0.0006, + "loss": 3.6496055126190186, + "step": 3146 + }, + { + "epoch": 43.7129750982962, + "grad_norm": 0.2196085900068283, + "learning_rate": 0.0006, + "loss": 3.6323978900909424, + "step": 3147 + }, + { + "epoch": 43.72695500218436, + "grad_norm": 0.20404237508773804, + "learning_rate": 0.0006, + "loss": 3.6572763919830322, + "step": 3148 + }, + { + "epoch": 43.74093490607252, + "grad_norm": 0.2363257110118866, + "learning_rate": 0.0006, + "loss": 3.6347732543945312, + "step": 3149 + }, + { + "epoch": 43.75491480996068, + "grad_norm": 0.23671524226665497, + "learning_rate": 0.0006, + "loss": 3.650017023086548, + "step": 3150 + }, + { + "epoch": 43.768894713848844, + "grad_norm": 0.20892305672168732, + "learning_rate": 0.0006, + "loss": 3.638185977935791, + "step": 3151 + }, + { + "epoch": 43.782874617737, + "grad_norm": 0.18670055270195007, + "learning_rate": 0.0006, + "loss": 3.6647696495056152, + "step": 3152 + }, + { + "epoch": 43.796854521625164, + "grad_norm": 0.21818184852600098, + "learning_rate": 0.0006, + "loss": 3.663623332977295, + "step": 3153 + }, + { + "epoch": 43.81083442551333, + "grad_norm": 0.23472464084625244, + "learning_rate": 0.0006, + "loss": 3.650595188140869, + "step": 3154 + }, + { + "epoch": 43.824814329401484, + "grad_norm": 0.2266419678926468, + "learning_rate": 0.0006, + "loss": 3.6362059116363525, + "step": 3155 + }, + { + "epoch": 43.83879423328965, + "grad_norm": 0.2250787913799286, + "learning_rate": 0.0006, + "loss": 3.647970199584961, + "step": 3156 + }, + { + "epoch": 43.8527741371778, + "grad_norm": 0.21493776142597198, + "learning_rate": 0.0006, + "loss": 3.6510982513427734, + "step": 3157 + }, + { + "epoch": 43.86675404106597, + "grad_norm": 0.20783160626888275, + "learning_rate": 0.0006, + "loss": 3.654845714569092, + "step": 3158 + }, + { + "epoch": 43.88073394495413, + "grad_norm": 0.2222554087638855, + "learning_rate": 0.0006, + "loss": 3.6565685272216797, + "step": 3159 + }, + { + "epoch": 43.89471384884229, + "grad_norm": 0.2148049771785736, + "learning_rate": 0.0006, + "loss": 3.630779266357422, + "step": 3160 + }, + { + "epoch": 43.90869375273045, + "grad_norm": 0.2222086787223816, + "learning_rate": 0.0006, + "loss": 3.6312813758850098, + "step": 3161 + }, + { + "epoch": 43.92267365661861, + "grad_norm": 0.24049264192581177, + "learning_rate": 0.0006, + "loss": 3.6185736656188965, + "step": 3162 + }, + { + "epoch": 43.93665356050677, + "grad_norm": 0.2228843867778778, + "learning_rate": 0.0006, + "loss": 3.595583438873291, + "step": 3163 + }, + { + "epoch": 43.95063346439493, + "grad_norm": 0.20714408159255981, + "learning_rate": 0.0006, + "loss": 3.6649322509765625, + "step": 3164 + }, + { + "epoch": 43.964613368283096, + "grad_norm": 0.2048991471529007, + "learning_rate": 0.0006, + "loss": 3.6513710021972656, + "step": 3165 + }, + { + "epoch": 43.97859327217125, + "grad_norm": 0.21874114871025085, + "learning_rate": 0.0006, + "loss": 3.6471524238586426, + "step": 3166 + }, + { + "epoch": 43.992573176059416, + "grad_norm": 0.21309879422187805, + "learning_rate": 0.0006, + "loss": 3.647021770477295, + "step": 3167 + }, + { + "epoch": 44.0, + "grad_norm": 0.23717166483402252, + "learning_rate": 0.0006, + "loss": 3.6903820037841797, + "step": 3168 + }, + { + "epoch": 44.0, + "eval_loss": 3.9844837188720703, + "eval_runtime": 44.29, + "eval_samples_per_second": 55.137, + "eval_steps_per_second": 3.455, + "step": 3168 + }, + { + "epoch": 44.01397990388816, + "grad_norm": 0.21503832936286926, + "learning_rate": 0.0006, + "loss": 3.6054744720458984, + "step": 3169 + }, + { + "epoch": 44.02795980777632, + "grad_norm": 0.2289554923772812, + "learning_rate": 0.0006, + "loss": 3.6560556888580322, + "step": 3170 + }, + { + "epoch": 44.04193971166448, + "grad_norm": 0.24250416457653046, + "learning_rate": 0.0006, + "loss": 3.611820697784424, + "step": 3171 + }, + { + "epoch": 44.05591961555265, + "grad_norm": 0.2526668310165405, + "learning_rate": 0.0006, + "loss": 3.6273183822631836, + "step": 3172 + }, + { + "epoch": 44.0698995194408, + "grad_norm": 0.26702383160591125, + "learning_rate": 0.0006, + "loss": 3.5856852531433105, + "step": 3173 + }, + { + "epoch": 44.083879423328966, + "grad_norm": 0.2715195417404175, + "learning_rate": 0.0006, + "loss": 3.631045341491699, + "step": 3174 + }, + { + "epoch": 44.09785932721712, + "grad_norm": 0.3505614995956421, + "learning_rate": 0.0006, + "loss": 3.628720760345459, + "step": 3175 + }, + { + "epoch": 44.111839231105286, + "grad_norm": 0.2760702967643738, + "learning_rate": 0.0006, + "loss": 3.6283509731292725, + "step": 3176 + }, + { + "epoch": 44.12581913499345, + "grad_norm": 0.21105222404003143, + "learning_rate": 0.0006, + "loss": 3.6495566368103027, + "step": 3177 + }, + { + "epoch": 44.139799038881605, + "grad_norm": 0.2852860987186432, + "learning_rate": 0.0006, + "loss": 3.640768527984619, + "step": 3178 + }, + { + "epoch": 44.15377894276977, + "grad_norm": 0.2941005825996399, + "learning_rate": 0.0006, + "loss": 3.6303114891052246, + "step": 3179 + }, + { + "epoch": 44.16775884665793, + "grad_norm": 0.2792299687862396, + "learning_rate": 0.0006, + "loss": 3.6053574085235596, + "step": 3180 + }, + { + "epoch": 44.18173875054609, + "grad_norm": 0.23168638348579407, + "learning_rate": 0.0006, + "loss": 3.62430477142334, + "step": 3181 + }, + { + "epoch": 44.19571865443425, + "grad_norm": 0.23713921010494232, + "learning_rate": 0.0006, + "loss": 3.601106643676758, + "step": 3182 + }, + { + "epoch": 44.20969855832241, + "grad_norm": 0.23341049253940582, + "learning_rate": 0.0006, + "loss": 3.631762742996216, + "step": 3183 + }, + { + "epoch": 44.22367846221057, + "grad_norm": 0.23094508051872253, + "learning_rate": 0.0006, + "loss": 3.586683750152588, + "step": 3184 + }, + { + "epoch": 44.237658366098735, + "grad_norm": 0.24085712432861328, + "learning_rate": 0.0006, + "loss": 3.6251423358917236, + "step": 3185 + }, + { + "epoch": 44.25163826998689, + "grad_norm": 0.24999955296516418, + "learning_rate": 0.0006, + "loss": 3.6554198265075684, + "step": 3186 + }, + { + "epoch": 44.265618173875055, + "grad_norm": 0.21759621798992157, + "learning_rate": 0.0006, + "loss": 3.6249518394470215, + "step": 3187 + }, + { + "epoch": 44.27959807776322, + "grad_norm": 0.2490139901638031, + "learning_rate": 0.0006, + "loss": 3.6163341999053955, + "step": 3188 + }, + { + "epoch": 44.293577981651374, + "grad_norm": 0.23420892655849457, + "learning_rate": 0.0006, + "loss": 3.615469455718994, + "step": 3189 + }, + { + "epoch": 44.30755788553954, + "grad_norm": 0.2292138934135437, + "learning_rate": 0.0006, + "loss": 3.6085104942321777, + "step": 3190 + }, + { + "epoch": 44.3215377894277, + "grad_norm": 0.22595474123954773, + "learning_rate": 0.0006, + "loss": 3.6317405700683594, + "step": 3191 + }, + { + "epoch": 44.33551769331586, + "grad_norm": 0.22418338060379028, + "learning_rate": 0.0006, + "loss": 3.6287777423858643, + "step": 3192 + }, + { + "epoch": 44.34949759720402, + "grad_norm": 0.2453135848045349, + "learning_rate": 0.0006, + "loss": 3.6228437423706055, + "step": 3193 + }, + { + "epoch": 44.36347750109218, + "grad_norm": 0.2627771198749542, + "learning_rate": 0.0006, + "loss": 3.6581034660339355, + "step": 3194 + }, + { + "epoch": 44.37745740498034, + "grad_norm": 0.24114494025707245, + "learning_rate": 0.0006, + "loss": 3.653505563735962, + "step": 3195 + }, + { + "epoch": 44.391437308868504, + "grad_norm": 0.2103721648454666, + "learning_rate": 0.0006, + "loss": 3.5698580741882324, + "step": 3196 + }, + { + "epoch": 44.40541721275666, + "grad_norm": 0.21172291040420532, + "learning_rate": 0.0006, + "loss": 3.573453426361084, + "step": 3197 + }, + { + "epoch": 44.419397116644824, + "grad_norm": 0.20298106968402863, + "learning_rate": 0.0006, + "loss": 3.6350207328796387, + "step": 3198 + }, + { + "epoch": 44.43337702053299, + "grad_norm": 0.2029009759426117, + "learning_rate": 0.0006, + "loss": 3.6025917530059814, + "step": 3199 + }, + { + "epoch": 44.44735692442114, + "grad_norm": 0.18960542976856232, + "learning_rate": 0.0006, + "loss": 3.625028133392334, + "step": 3200 + }, + { + "epoch": 44.46133682830931, + "grad_norm": 0.20758579671382904, + "learning_rate": 0.0006, + "loss": 3.647071123123169, + "step": 3201 + }, + { + "epoch": 44.47531673219746, + "grad_norm": 0.21896769106388092, + "learning_rate": 0.0006, + "loss": 3.6481196880340576, + "step": 3202 + }, + { + "epoch": 44.489296636085626, + "grad_norm": 0.20817387104034424, + "learning_rate": 0.0006, + "loss": 3.629366874694824, + "step": 3203 + }, + { + "epoch": 44.50327653997379, + "grad_norm": 0.2099488228559494, + "learning_rate": 0.0006, + "loss": 3.6757798194885254, + "step": 3204 + }, + { + "epoch": 44.517256443861946, + "grad_norm": 0.21376627683639526, + "learning_rate": 0.0006, + "loss": 3.638324737548828, + "step": 3205 + }, + { + "epoch": 44.53123634775011, + "grad_norm": 0.19089072942733765, + "learning_rate": 0.0006, + "loss": 3.6497435569763184, + "step": 3206 + }, + { + "epoch": 44.54521625163827, + "grad_norm": 0.20489120483398438, + "learning_rate": 0.0006, + "loss": 3.634019374847412, + "step": 3207 + }, + { + "epoch": 44.55919615552643, + "grad_norm": 0.21991780400276184, + "learning_rate": 0.0006, + "loss": 3.6255834102630615, + "step": 3208 + }, + { + "epoch": 44.57317605941459, + "grad_norm": 0.23417581617832184, + "learning_rate": 0.0006, + "loss": 3.631927728652954, + "step": 3209 + }, + { + "epoch": 44.58715596330275, + "grad_norm": 0.22819049656391144, + "learning_rate": 0.0006, + "loss": 3.640167713165283, + "step": 3210 + }, + { + "epoch": 44.60113586719091, + "grad_norm": 0.21443316340446472, + "learning_rate": 0.0006, + "loss": 3.645709991455078, + "step": 3211 + }, + { + "epoch": 44.615115771079076, + "grad_norm": 0.19252653419971466, + "learning_rate": 0.0006, + "loss": 3.591294288635254, + "step": 3212 + }, + { + "epoch": 44.62909567496723, + "grad_norm": 0.18925397098064423, + "learning_rate": 0.0006, + "loss": 3.6163625717163086, + "step": 3213 + }, + { + "epoch": 44.643075578855395, + "grad_norm": 0.21605387330055237, + "learning_rate": 0.0006, + "loss": 3.6826887130737305, + "step": 3214 + }, + { + "epoch": 44.65705548274356, + "grad_norm": 0.21301978826522827, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 3215 + }, + { + "epoch": 44.671035386631715, + "grad_norm": 0.20065832138061523, + "learning_rate": 0.0006, + "loss": 3.648879289627075, + "step": 3216 + }, + { + "epoch": 44.68501529051988, + "grad_norm": 0.21413499116897583, + "learning_rate": 0.0006, + "loss": 3.6327264308929443, + "step": 3217 + }, + { + "epoch": 44.69899519440804, + "grad_norm": 0.22769849002361298, + "learning_rate": 0.0006, + "loss": 3.6486430168151855, + "step": 3218 + }, + { + "epoch": 44.7129750982962, + "grad_norm": 0.227064847946167, + "learning_rate": 0.0006, + "loss": 3.633342981338501, + "step": 3219 + }, + { + "epoch": 44.72695500218436, + "grad_norm": 0.21335656940937042, + "learning_rate": 0.0006, + "loss": 3.648621082305908, + "step": 3220 + }, + { + "epoch": 44.74093490607252, + "grad_norm": 0.2085563838481903, + "learning_rate": 0.0006, + "loss": 3.647826671600342, + "step": 3221 + }, + { + "epoch": 44.75491480996068, + "grad_norm": 0.19203904271125793, + "learning_rate": 0.0006, + "loss": 3.6296122074127197, + "step": 3222 + }, + { + "epoch": 44.768894713848844, + "grad_norm": 0.1969112604856491, + "learning_rate": 0.0006, + "loss": 3.6477179527282715, + "step": 3223 + }, + { + "epoch": 44.782874617737, + "grad_norm": 0.21630392968654633, + "learning_rate": 0.0006, + "loss": 3.628805637359619, + "step": 3224 + }, + { + "epoch": 44.796854521625164, + "grad_norm": 0.20641647279262543, + "learning_rate": 0.0006, + "loss": 3.650993824005127, + "step": 3225 + }, + { + "epoch": 44.81083442551333, + "grad_norm": 0.1954173892736435, + "learning_rate": 0.0006, + "loss": 3.6362831592559814, + "step": 3226 + }, + { + "epoch": 44.824814329401484, + "grad_norm": 0.20479747653007507, + "learning_rate": 0.0006, + "loss": 3.6467390060424805, + "step": 3227 + }, + { + "epoch": 44.83879423328965, + "grad_norm": 0.20502690970897675, + "learning_rate": 0.0006, + "loss": 3.6260130405426025, + "step": 3228 + }, + { + "epoch": 44.8527741371778, + "grad_norm": 0.20348094403743744, + "learning_rate": 0.0006, + "loss": 3.6836767196655273, + "step": 3229 + }, + { + "epoch": 44.86675404106597, + "grad_norm": 0.18748269975185394, + "learning_rate": 0.0006, + "loss": 3.610104560852051, + "step": 3230 + }, + { + "epoch": 44.88073394495413, + "grad_norm": 0.18822219967842102, + "learning_rate": 0.0006, + "loss": 3.61354398727417, + "step": 3231 + }, + { + "epoch": 44.89471384884229, + "grad_norm": 0.20972031354904175, + "learning_rate": 0.0006, + "loss": 3.644336700439453, + "step": 3232 + }, + { + "epoch": 44.90869375273045, + "grad_norm": 0.2013155072927475, + "learning_rate": 0.0006, + "loss": 3.659287929534912, + "step": 3233 + }, + { + "epoch": 44.92267365661861, + "grad_norm": 0.2056475579738617, + "learning_rate": 0.0006, + "loss": 3.6545677185058594, + "step": 3234 + }, + { + "epoch": 44.93665356050677, + "grad_norm": 0.2104482203722, + "learning_rate": 0.0006, + "loss": 3.6094017028808594, + "step": 3235 + }, + { + "epoch": 44.95063346439493, + "grad_norm": 0.1993035078048706, + "learning_rate": 0.0006, + "loss": 3.6209053993225098, + "step": 3236 + }, + { + "epoch": 44.964613368283096, + "grad_norm": 0.1883099526166916, + "learning_rate": 0.0006, + "loss": 3.6011457443237305, + "step": 3237 + }, + { + "epoch": 44.97859327217125, + "grad_norm": 0.1927674412727356, + "learning_rate": 0.0006, + "loss": 3.606609344482422, + "step": 3238 + }, + { + "epoch": 44.992573176059416, + "grad_norm": 0.1878899335861206, + "learning_rate": 0.0006, + "loss": 3.6701109409332275, + "step": 3239 + }, + { + "epoch": 45.0, + "grad_norm": 0.2237395942211151, + "learning_rate": 0.0006, + "loss": 3.6617302894592285, + "step": 3240 + }, + { + "epoch": 45.0, + "eval_loss": 3.9812564849853516, + "eval_runtime": 44.8635, + "eval_samples_per_second": 54.432, + "eval_steps_per_second": 3.41, + "step": 3240 + }, + { + "epoch": 45.01397990388816, + "grad_norm": 0.21368487179279327, + "learning_rate": 0.0006, + "loss": 3.599107265472412, + "step": 3241 + }, + { + "epoch": 45.02795980777632, + "grad_norm": 0.2234211564064026, + "learning_rate": 0.0006, + "loss": 3.5943236351013184, + "step": 3242 + }, + { + "epoch": 45.04193971166448, + "grad_norm": 0.2222544252872467, + "learning_rate": 0.0006, + "loss": 3.6152291297912598, + "step": 3243 + }, + { + "epoch": 45.05591961555265, + "grad_norm": 0.24686792492866516, + "learning_rate": 0.0006, + "loss": 3.6006085872650146, + "step": 3244 + }, + { + "epoch": 45.0698995194408, + "grad_norm": 0.24634984135627747, + "learning_rate": 0.0006, + "loss": 3.6023471355438232, + "step": 3245 + }, + { + "epoch": 45.083879423328966, + "grad_norm": 0.2150750756263733, + "learning_rate": 0.0006, + "loss": 3.5690598487854004, + "step": 3246 + }, + { + "epoch": 45.09785932721712, + "grad_norm": 0.196721151471138, + "learning_rate": 0.0006, + "loss": 3.592653751373291, + "step": 3247 + }, + { + "epoch": 45.111839231105286, + "grad_norm": 0.21874476969242096, + "learning_rate": 0.0006, + "loss": 3.586243152618408, + "step": 3248 + }, + { + "epoch": 45.12581913499345, + "grad_norm": 0.21021611988544464, + "learning_rate": 0.0006, + "loss": 3.599384307861328, + "step": 3249 + }, + { + "epoch": 45.139799038881605, + "grad_norm": 0.19754183292388916, + "learning_rate": 0.0006, + "loss": 3.623816967010498, + "step": 3250 + }, + { + "epoch": 45.15377894276977, + "grad_norm": 0.21218672394752502, + "learning_rate": 0.0006, + "loss": 3.5901236534118652, + "step": 3251 + }, + { + "epoch": 45.16775884665793, + "grad_norm": 0.23569360375404358, + "learning_rate": 0.0006, + "loss": 3.600029945373535, + "step": 3252 + }, + { + "epoch": 45.18173875054609, + "grad_norm": 0.25429826974868774, + "learning_rate": 0.0006, + "loss": 3.607773542404175, + "step": 3253 + }, + { + "epoch": 45.19571865443425, + "grad_norm": 0.23416805267333984, + "learning_rate": 0.0006, + "loss": 3.63248348236084, + "step": 3254 + }, + { + "epoch": 45.20969855832241, + "grad_norm": 0.20821864902973175, + "learning_rate": 0.0006, + "loss": 3.641927719116211, + "step": 3255 + }, + { + "epoch": 45.22367846221057, + "grad_norm": 0.21849380433559418, + "learning_rate": 0.0006, + "loss": 3.665098190307617, + "step": 3256 + }, + { + "epoch": 45.237658366098735, + "grad_norm": 0.22939491271972656, + "learning_rate": 0.0006, + "loss": 3.6106104850769043, + "step": 3257 + }, + { + "epoch": 45.25163826998689, + "grad_norm": 0.24144501984119415, + "learning_rate": 0.0006, + "loss": 3.5872416496276855, + "step": 3258 + }, + { + "epoch": 45.265618173875055, + "grad_norm": 0.21790480613708496, + "learning_rate": 0.0006, + "loss": 3.6268889904022217, + "step": 3259 + }, + { + "epoch": 45.27959807776322, + "grad_norm": 0.22702264785766602, + "learning_rate": 0.0006, + "loss": 3.5972542762756348, + "step": 3260 + }, + { + "epoch": 45.293577981651374, + "grad_norm": 0.22465437650680542, + "learning_rate": 0.0006, + "loss": 3.6339592933654785, + "step": 3261 + }, + { + "epoch": 45.30755788553954, + "grad_norm": 0.21804460883140564, + "learning_rate": 0.0006, + "loss": 3.6062779426574707, + "step": 3262 + }, + { + "epoch": 45.3215377894277, + "grad_norm": 0.1985616534948349, + "learning_rate": 0.0006, + "loss": 3.629815101623535, + "step": 3263 + }, + { + "epoch": 45.33551769331586, + "grad_norm": 0.22264975309371948, + "learning_rate": 0.0006, + "loss": 3.631214141845703, + "step": 3264 + }, + { + "epoch": 45.34949759720402, + "grad_norm": 0.22178539633750916, + "learning_rate": 0.0006, + "loss": 3.620854377746582, + "step": 3265 + }, + { + "epoch": 45.36347750109218, + "grad_norm": 0.22392240166664124, + "learning_rate": 0.0006, + "loss": 3.6611738204956055, + "step": 3266 + }, + { + "epoch": 45.37745740498034, + "grad_norm": 0.2178916484117508, + "learning_rate": 0.0006, + "loss": 3.639893054962158, + "step": 3267 + }, + { + "epoch": 45.391437308868504, + "grad_norm": 0.2173885703086853, + "learning_rate": 0.0006, + "loss": 3.611750364303589, + "step": 3268 + }, + { + "epoch": 45.40541721275666, + "grad_norm": 0.2107069045305252, + "learning_rate": 0.0006, + "loss": 3.595181465148926, + "step": 3269 + }, + { + "epoch": 45.419397116644824, + "grad_norm": 0.19623015820980072, + "learning_rate": 0.0006, + "loss": 3.6096351146698, + "step": 3270 + }, + { + "epoch": 45.43337702053299, + "grad_norm": 0.23091304302215576, + "learning_rate": 0.0006, + "loss": 3.603667974472046, + "step": 3271 + }, + { + "epoch": 45.44735692442114, + "grad_norm": 0.22909007966518402, + "learning_rate": 0.0006, + "loss": 3.62846040725708, + "step": 3272 + }, + { + "epoch": 45.46133682830931, + "grad_norm": 0.2104928195476532, + "learning_rate": 0.0006, + "loss": 3.6543164253234863, + "step": 3273 + }, + { + "epoch": 45.47531673219746, + "grad_norm": 0.22994203865528107, + "learning_rate": 0.0006, + "loss": 3.621878147125244, + "step": 3274 + }, + { + "epoch": 45.489296636085626, + "grad_norm": 0.21652749180793762, + "learning_rate": 0.0006, + "loss": 3.6095705032348633, + "step": 3275 + }, + { + "epoch": 45.50327653997379, + "grad_norm": 0.20125073194503784, + "learning_rate": 0.0006, + "loss": 3.6213903427124023, + "step": 3276 + }, + { + "epoch": 45.517256443861946, + "grad_norm": 0.19995734095573425, + "learning_rate": 0.0006, + "loss": 3.6526503562927246, + "step": 3277 + }, + { + "epoch": 45.53123634775011, + "grad_norm": 0.2071387618780136, + "learning_rate": 0.0006, + "loss": 3.626208782196045, + "step": 3278 + }, + { + "epoch": 45.54521625163827, + "grad_norm": 0.222015842795372, + "learning_rate": 0.0006, + "loss": 3.61144757270813, + "step": 3279 + }, + { + "epoch": 45.55919615552643, + "grad_norm": 0.20780639350414276, + "learning_rate": 0.0006, + "loss": 3.64092755317688, + "step": 3280 + }, + { + "epoch": 45.57317605941459, + "grad_norm": 0.19297364354133606, + "learning_rate": 0.0006, + "loss": 3.6308364868164062, + "step": 3281 + }, + { + "epoch": 45.58715596330275, + "grad_norm": 0.1928786337375641, + "learning_rate": 0.0006, + "loss": 3.6258254051208496, + "step": 3282 + }, + { + "epoch": 45.60113586719091, + "grad_norm": 0.1940007209777832, + "learning_rate": 0.0006, + "loss": 3.622849464416504, + "step": 3283 + }, + { + "epoch": 45.615115771079076, + "grad_norm": 0.19643044471740723, + "learning_rate": 0.0006, + "loss": 3.6461117267608643, + "step": 3284 + }, + { + "epoch": 45.62909567496723, + "grad_norm": 0.19996654987335205, + "learning_rate": 0.0006, + "loss": 3.61572265625, + "step": 3285 + }, + { + "epoch": 45.643075578855395, + "grad_norm": 0.20202603936195374, + "learning_rate": 0.0006, + "loss": 3.610734462738037, + "step": 3286 + }, + { + "epoch": 45.65705548274356, + "grad_norm": 0.19249361753463745, + "learning_rate": 0.0006, + "loss": 3.607048511505127, + "step": 3287 + }, + { + "epoch": 45.671035386631715, + "grad_norm": 0.1894780397415161, + "learning_rate": 0.0006, + "loss": 3.6450905799865723, + "step": 3288 + }, + { + "epoch": 45.68501529051988, + "grad_norm": 0.19901636242866516, + "learning_rate": 0.0006, + "loss": 3.6313018798828125, + "step": 3289 + }, + { + "epoch": 45.69899519440804, + "grad_norm": 0.1875065118074417, + "learning_rate": 0.0006, + "loss": 3.641326427459717, + "step": 3290 + }, + { + "epoch": 45.7129750982962, + "grad_norm": 0.19832095503807068, + "learning_rate": 0.0006, + "loss": 3.6612308025360107, + "step": 3291 + }, + { + "epoch": 45.72695500218436, + "grad_norm": 0.20353806018829346, + "learning_rate": 0.0006, + "loss": 3.623152017593384, + "step": 3292 + }, + { + "epoch": 45.74093490607252, + "grad_norm": 0.1984023153781891, + "learning_rate": 0.0006, + "loss": 3.627358913421631, + "step": 3293 + }, + { + "epoch": 45.75491480996068, + "grad_norm": 0.2002221643924713, + "learning_rate": 0.0006, + "loss": 3.6334757804870605, + "step": 3294 + }, + { + "epoch": 45.768894713848844, + "grad_norm": 0.21099092066287994, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3295 + }, + { + "epoch": 45.782874617737, + "grad_norm": 0.19109416007995605, + "learning_rate": 0.0006, + "loss": 3.62795352935791, + "step": 3296 + }, + { + "epoch": 45.796854521625164, + "grad_norm": 0.18424192070960999, + "learning_rate": 0.0006, + "loss": 3.6151700019836426, + "step": 3297 + }, + { + "epoch": 45.81083442551333, + "grad_norm": 0.20823849737644196, + "learning_rate": 0.0006, + "loss": 3.641907215118408, + "step": 3298 + }, + { + "epoch": 45.824814329401484, + "grad_norm": 0.21407285332679749, + "learning_rate": 0.0006, + "loss": 3.6430726051330566, + "step": 3299 + }, + { + "epoch": 45.83879423328965, + "grad_norm": 0.23493780195713043, + "learning_rate": 0.0006, + "loss": 3.610065460205078, + "step": 3300 + }, + { + "epoch": 45.8527741371778, + "grad_norm": 0.21910642087459564, + "learning_rate": 0.0006, + "loss": 3.630603313446045, + "step": 3301 + }, + { + "epoch": 45.86675404106597, + "grad_norm": 0.1838075965642929, + "learning_rate": 0.0006, + "loss": 3.634315013885498, + "step": 3302 + }, + { + "epoch": 45.88073394495413, + "grad_norm": 0.22131477296352386, + "learning_rate": 0.0006, + "loss": 3.6142020225524902, + "step": 3303 + }, + { + "epoch": 45.89471384884229, + "grad_norm": 0.2497209906578064, + "learning_rate": 0.0006, + "loss": 3.689103126525879, + "step": 3304 + }, + { + "epoch": 45.90869375273045, + "grad_norm": 0.24403175711631775, + "learning_rate": 0.0006, + "loss": 3.6321184635162354, + "step": 3305 + }, + { + "epoch": 45.92267365661861, + "grad_norm": 0.22527103126049042, + "learning_rate": 0.0006, + "loss": 3.6486921310424805, + "step": 3306 + }, + { + "epoch": 45.93665356050677, + "grad_norm": 0.20127955079078674, + "learning_rate": 0.0006, + "loss": 3.6109299659729004, + "step": 3307 + }, + { + "epoch": 45.95063346439493, + "grad_norm": 0.18997317552566528, + "learning_rate": 0.0006, + "loss": 3.6157617568969727, + "step": 3308 + }, + { + "epoch": 45.964613368283096, + "grad_norm": 0.19921870529651642, + "learning_rate": 0.0006, + "loss": 3.691776990890503, + "step": 3309 + }, + { + "epoch": 45.97859327217125, + "grad_norm": 0.2124646008014679, + "learning_rate": 0.0006, + "loss": 3.61795711517334, + "step": 3310 + }, + { + "epoch": 45.992573176059416, + "grad_norm": 0.20002500712871552, + "learning_rate": 0.0006, + "loss": 3.6266353130340576, + "step": 3311 + }, + { + "epoch": 46.0, + "grad_norm": 0.22992220520973206, + "learning_rate": 0.0006, + "loss": 3.647242784500122, + "step": 3312 + }, + { + "epoch": 46.0, + "eval_loss": 3.9855220317840576, + "eval_runtime": 44.9108, + "eval_samples_per_second": 54.374, + "eval_steps_per_second": 3.407, + "step": 3312 + }, + { + "epoch": 46.01397990388816, + "grad_norm": 0.1976146101951599, + "learning_rate": 0.0006, + "loss": 3.5675041675567627, + "step": 3313 + }, + { + "epoch": 46.02795980777632, + "grad_norm": 0.2238360494375229, + "learning_rate": 0.0006, + "loss": 3.6077466011047363, + "step": 3314 + }, + { + "epoch": 46.04193971166448, + "grad_norm": 0.288669228553772, + "learning_rate": 0.0006, + "loss": 3.589958667755127, + "step": 3315 + }, + { + "epoch": 46.05591961555265, + "grad_norm": 0.30626827478408813, + "learning_rate": 0.0006, + "loss": 3.604401111602783, + "step": 3316 + }, + { + "epoch": 46.0698995194408, + "grad_norm": 0.2721095681190491, + "learning_rate": 0.0006, + "loss": 3.620197296142578, + "step": 3317 + }, + { + "epoch": 46.083879423328966, + "grad_norm": 0.2152107059955597, + "learning_rate": 0.0006, + "loss": 3.607327938079834, + "step": 3318 + }, + { + "epoch": 46.09785932721712, + "grad_norm": 0.2205267995595932, + "learning_rate": 0.0006, + "loss": 3.6020898818969727, + "step": 3319 + }, + { + "epoch": 46.111839231105286, + "grad_norm": 0.25419551134109497, + "learning_rate": 0.0006, + "loss": 3.59277606010437, + "step": 3320 + }, + { + "epoch": 46.12581913499345, + "grad_norm": 0.2379811704158783, + "learning_rate": 0.0006, + "loss": 3.560422897338867, + "step": 3321 + }, + { + "epoch": 46.139799038881605, + "grad_norm": 0.20928747951984406, + "learning_rate": 0.0006, + "loss": 3.6373965740203857, + "step": 3322 + }, + { + "epoch": 46.15377894276977, + "grad_norm": 0.21654292941093445, + "learning_rate": 0.0006, + "loss": 3.620784282684326, + "step": 3323 + }, + { + "epoch": 46.16775884665793, + "grad_norm": 0.22994576394557953, + "learning_rate": 0.0006, + "loss": 3.589960813522339, + "step": 3324 + }, + { + "epoch": 46.18173875054609, + "grad_norm": 0.24989335238933563, + "learning_rate": 0.0006, + "loss": 3.599091053009033, + "step": 3325 + }, + { + "epoch": 46.19571865443425, + "grad_norm": 0.27068355679512024, + "learning_rate": 0.0006, + "loss": 3.5933146476745605, + "step": 3326 + }, + { + "epoch": 46.20969855832241, + "grad_norm": 0.2581503391265869, + "learning_rate": 0.0006, + "loss": 3.5935447216033936, + "step": 3327 + }, + { + "epoch": 46.22367846221057, + "grad_norm": 0.23368583619594574, + "learning_rate": 0.0006, + "loss": 3.6120412349700928, + "step": 3328 + }, + { + "epoch": 46.237658366098735, + "grad_norm": 0.21808452904224396, + "learning_rate": 0.0006, + "loss": 3.6155190467834473, + "step": 3329 + }, + { + "epoch": 46.25163826998689, + "grad_norm": 0.2152830809354782, + "learning_rate": 0.0006, + "loss": 3.6039974689483643, + "step": 3330 + }, + { + "epoch": 46.265618173875055, + "grad_norm": 0.20902983844280243, + "learning_rate": 0.0006, + "loss": 3.586416721343994, + "step": 3331 + }, + { + "epoch": 46.27959807776322, + "grad_norm": 0.21693682670593262, + "learning_rate": 0.0006, + "loss": 3.601595401763916, + "step": 3332 + }, + { + "epoch": 46.293577981651374, + "grad_norm": 0.21157346665859222, + "learning_rate": 0.0006, + "loss": 3.619825601577759, + "step": 3333 + }, + { + "epoch": 46.30755788553954, + "grad_norm": 0.19628529250621796, + "learning_rate": 0.0006, + "loss": 3.5845298767089844, + "step": 3334 + }, + { + "epoch": 46.3215377894277, + "grad_norm": 0.19599373638629913, + "learning_rate": 0.0006, + "loss": 3.614483594894409, + "step": 3335 + }, + { + "epoch": 46.33551769331586, + "grad_norm": 0.21777382493019104, + "learning_rate": 0.0006, + "loss": 3.5865678787231445, + "step": 3336 + }, + { + "epoch": 46.34949759720402, + "grad_norm": 0.24697323143482208, + "learning_rate": 0.0006, + "loss": 3.6168298721313477, + "step": 3337 + }, + { + "epoch": 46.36347750109218, + "grad_norm": 0.29521632194519043, + "learning_rate": 0.0006, + "loss": 3.627875804901123, + "step": 3338 + }, + { + "epoch": 46.37745740498034, + "grad_norm": 0.2548002004623413, + "learning_rate": 0.0006, + "loss": 3.6286001205444336, + "step": 3339 + }, + { + "epoch": 46.391437308868504, + "grad_norm": 0.20501002669334412, + "learning_rate": 0.0006, + "loss": 3.625035524368286, + "step": 3340 + }, + { + "epoch": 46.40541721275666, + "grad_norm": 0.21849584579467773, + "learning_rate": 0.0006, + "loss": 3.621872901916504, + "step": 3341 + }, + { + "epoch": 46.419397116644824, + "grad_norm": 0.22302033007144928, + "learning_rate": 0.0006, + "loss": 3.6088266372680664, + "step": 3342 + }, + { + "epoch": 46.43337702053299, + "grad_norm": 0.21138787269592285, + "learning_rate": 0.0006, + "loss": 3.6211094856262207, + "step": 3343 + }, + { + "epoch": 46.44735692442114, + "grad_norm": 0.22372713685035706, + "learning_rate": 0.0006, + "loss": 3.5799427032470703, + "step": 3344 + }, + { + "epoch": 46.46133682830931, + "grad_norm": 0.22019316256046295, + "learning_rate": 0.0006, + "loss": 3.616044044494629, + "step": 3345 + }, + { + "epoch": 46.47531673219746, + "grad_norm": 0.21947625279426575, + "learning_rate": 0.0006, + "loss": 3.613643169403076, + "step": 3346 + }, + { + "epoch": 46.489296636085626, + "grad_norm": 0.21935684978961945, + "learning_rate": 0.0006, + "loss": 3.6255440711975098, + "step": 3347 + }, + { + "epoch": 46.50327653997379, + "grad_norm": 0.20366479456424713, + "learning_rate": 0.0006, + "loss": 3.613892078399658, + "step": 3348 + }, + { + "epoch": 46.517256443861946, + "grad_norm": 0.21755267679691315, + "learning_rate": 0.0006, + "loss": 3.617886543273926, + "step": 3349 + }, + { + "epoch": 46.53123634775011, + "grad_norm": 0.20023910701274872, + "learning_rate": 0.0006, + "loss": 3.6172280311584473, + "step": 3350 + }, + { + "epoch": 46.54521625163827, + "grad_norm": 0.20375007390975952, + "learning_rate": 0.0006, + "loss": 3.595829486846924, + "step": 3351 + }, + { + "epoch": 46.55919615552643, + "grad_norm": 0.21125391125679016, + "learning_rate": 0.0006, + "loss": 3.632533550262451, + "step": 3352 + }, + { + "epoch": 46.57317605941459, + "grad_norm": 0.2359670102596283, + "learning_rate": 0.0006, + "loss": 3.597811222076416, + "step": 3353 + }, + { + "epoch": 46.58715596330275, + "grad_norm": 0.21696777641773224, + "learning_rate": 0.0006, + "loss": 3.627127170562744, + "step": 3354 + }, + { + "epoch": 46.60113586719091, + "grad_norm": 0.21501564979553223, + "learning_rate": 0.0006, + "loss": 3.630887985229492, + "step": 3355 + }, + { + "epoch": 46.615115771079076, + "grad_norm": 0.21446822583675385, + "learning_rate": 0.0006, + "loss": 3.6075234413146973, + "step": 3356 + }, + { + "epoch": 46.62909567496723, + "grad_norm": 0.21508967876434326, + "learning_rate": 0.0006, + "loss": 3.626603603363037, + "step": 3357 + }, + { + "epoch": 46.643075578855395, + "grad_norm": 0.19969215989112854, + "learning_rate": 0.0006, + "loss": 3.6160733699798584, + "step": 3358 + }, + { + "epoch": 46.65705548274356, + "grad_norm": 0.19982007145881653, + "learning_rate": 0.0006, + "loss": 3.632960319519043, + "step": 3359 + }, + { + "epoch": 46.671035386631715, + "grad_norm": 0.1981230527162552, + "learning_rate": 0.0006, + "loss": 3.608591079711914, + "step": 3360 + }, + { + "epoch": 46.68501529051988, + "grad_norm": 0.19948643445968628, + "learning_rate": 0.0006, + "loss": 3.6100947856903076, + "step": 3361 + }, + { + "epoch": 46.69899519440804, + "grad_norm": 0.18967196345329285, + "learning_rate": 0.0006, + "loss": 3.6203439235687256, + "step": 3362 + }, + { + "epoch": 46.7129750982962, + "grad_norm": 0.20035311579704285, + "learning_rate": 0.0006, + "loss": 3.64508056640625, + "step": 3363 + }, + { + "epoch": 46.72695500218436, + "grad_norm": 0.21049824357032776, + "learning_rate": 0.0006, + "loss": 3.620095729827881, + "step": 3364 + }, + { + "epoch": 46.74093490607252, + "grad_norm": 0.21411995589733124, + "learning_rate": 0.0006, + "loss": 3.650815963745117, + "step": 3365 + }, + { + "epoch": 46.75491480996068, + "grad_norm": 0.18666061758995056, + "learning_rate": 0.0006, + "loss": 3.625699758529663, + "step": 3366 + }, + { + "epoch": 46.768894713848844, + "grad_norm": 0.1927071362733841, + "learning_rate": 0.0006, + "loss": 3.6165151596069336, + "step": 3367 + }, + { + "epoch": 46.782874617737, + "grad_norm": 0.2063879817724228, + "learning_rate": 0.0006, + "loss": 3.6182332038879395, + "step": 3368 + }, + { + "epoch": 46.796854521625164, + "grad_norm": 0.19215327501296997, + "learning_rate": 0.0006, + "loss": 3.607239246368408, + "step": 3369 + }, + { + "epoch": 46.81083442551333, + "grad_norm": 0.2074592262506485, + "learning_rate": 0.0006, + "loss": 3.624856948852539, + "step": 3370 + }, + { + "epoch": 46.824814329401484, + "grad_norm": 0.2184106856584549, + "learning_rate": 0.0006, + "loss": 3.628757953643799, + "step": 3371 + }, + { + "epoch": 46.83879423328965, + "grad_norm": 0.2203136682510376, + "learning_rate": 0.0006, + "loss": 3.625958204269409, + "step": 3372 + }, + { + "epoch": 46.8527741371778, + "grad_norm": 0.21920061111450195, + "learning_rate": 0.0006, + "loss": 3.6060733795166016, + "step": 3373 + }, + { + "epoch": 46.86675404106597, + "grad_norm": 0.2122412472963333, + "learning_rate": 0.0006, + "loss": 3.6126952171325684, + "step": 3374 + }, + { + "epoch": 46.88073394495413, + "grad_norm": 0.1971784383058548, + "learning_rate": 0.0006, + "loss": 3.637129783630371, + "step": 3375 + }, + { + "epoch": 46.89471384884229, + "grad_norm": 0.20824873447418213, + "learning_rate": 0.0006, + "loss": 3.62868070602417, + "step": 3376 + }, + { + "epoch": 46.90869375273045, + "grad_norm": 0.20157678425312042, + "learning_rate": 0.0006, + "loss": 3.6321873664855957, + "step": 3377 + }, + { + "epoch": 46.92267365661861, + "grad_norm": 0.1958925426006317, + "learning_rate": 0.0006, + "loss": 3.6513354778289795, + "step": 3378 + }, + { + "epoch": 46.93665356050677, + "grad_norm": 0.1969553828239441, + "learning_rate": 0.0006, + "loss": 3.6346323490142822, + "step": 3379 + }, + { + "epoch": 46.95063346439493, + "grad_norm": 0.19311924278736115, + "learning_rate": 0.0006, + "loss": 3.6673245429992676, + "step": 3380 + }, + { + "epoch": 46.964613368283096, + "grad_norm": 0.20341862738132477, + "learning_rate": 0.0006, + "loss": 3.680025339126587, + "step": 3381 + }, + { + "epoch": 46.97859327217125, + "grad_norm": 0.20667442679405212, + "learning_rate": 0.0006, + "loss": 3.632290840148926, + "step": 3382 + }, + { + "epoch": 46.992573176059416, + "grad_norm": 0.19141609966754913, + "learning_rate": 0.0006, + "loss": 3.659360647201538, + "step": 3383 + }, + { + "epoch": 47.0, + "grad_norm": 0.20981188118457794, + "learning_rate": 0.0006, + "loss": 3.653548240661621, + "step": 3384 + }, + { + "epoch": 47.0, + "eval_loss": 3.9833984375, + "eval_runtime": 44.4693, + "eval_samples_per_second": 54.914, + "eval_steps_per_second": 3.441, + "step": 3384 + }, + { + "epoch": 47.01397990388816, + "grad_norm": 0.1958128660917282, + "learning_rate": 0.0006, + "loss": 3.5778727531433105, + "step": 3385 + }, + { + "epoch": 47.02795980777632, + "grad_norm": 0.19728390872478485, + "learning_rate": 0.0006, + "loss": 3.5827393531799316, + "step": 3386 + }, + { + "epoch": 47.04193971166448, + "grad_norm": 0.18564026057720184, + "learning_rate": 0.0006, + "loss": 3.573071002960205, + "step": 3387 + }, + { + "epoch": 47.05591961555265, + "grad_norm": 0.20563258230686188, + "learning_rate": 0.0006, + "loss": 3.564330577850342, + "step": 3388 + }, + { + "epoch": 47.0698995194408, + "grad_norm": 0.21382158994674683, + "learning_rate": 0.0006, + "loss": 3.5976946353912354, + "step": 3389 + }, + { + "epoch": 47.083879423328966, + "grad_norm": 0.2383693903684616, + "learning_rate": 0.0006, + "loss": 3.5970897674560547, + "step": 3390 + }, + { + "epoch": 47.09785932721712, + "grad_norm": 0.24709449708461761, + "learning_rate": 0.0006, + "loss": 3.613409996032715, + "step": 3391 + }, + { + "epoch": 47.111839231105286, + "grad_norm": 0.2329784333705902, + "learning_rate": 0.0006, + "loss": 3.571023464202881, + "step": 3392 + }, + { + "epoch": 47.12581913499345, + "grad_norm": 0.2096954584121704, + "learning_rate": 0.0006, + "loss": 3.573697090148926, + "step": 3393 + }, + { + "epoch": 47.139799038881605, + "grad_norm": 0.21630050241947174, + "learning_rate": 0.0006, + "loss": 3.6085095405578613, + "step": 3394 + }, + { + "epoch": 47.15377894276977, + "grad_norm": 0.22828878462314606, + "learning_rate": 0.0006, + "loss": 3.605466842651367, + "step": 3395 + }, + { + "epoch": 47.16775884665793, + "grad_norm": 0.24957625567913055, + "learning_rate": 0.0006, + "loss": 3.588324546813965, + "step": 3396 + }, + { + "epoch": 47.18173875054609, + "grad_norm": 0.25446194410324097, + "learning_rate": 0.0006, + "loss": 3.6161458492279053, + "step": 3397 + }, + { + "epoch": 47.19571865443425, + "grad_norm": 0.24938438832759857, + "learning_rate": 0.0006, + "loss": 3.6017847061157227, + "step": 3398 + }, + { + "epoch": 47.20969855832241, + "grad_norm": 0.23318032920360565, + "learning_rate": 0.0006, + "loss": 3.6077046394348145, + "step": 3399 + }, + { + "epoch": 47.22367846221057, + "grad_norm": 0.2179042547941208, + "learning_rate": 0.0006, + "loss": 3.598104953765869, + "step": 3400 + }, + { + "epoch": 47.237658366098735, + "grad_norm": 0.213354229927063, + "learning_rate": 0.0006, + "loss": 3.6328814029693604, + "step": 3401 + }, + { + "epoch": 47.25163826998689, + "grad_norm": 0.23104089498519897, + "learning_rate": 0.0006, + "loss": 3.6161890029907227, + "step": 3402 + }, + { + "epoch": 47.265618173875055, + "grad_norm": 0.22219021618366241, + "learning_rate": 0.0006, + "loss": 3.620314121246338, + "step": 3403 + }, + { + "epoch": 47.27959807776322, + "grad_norm": 0.21618683636188507, + "learning_rate": 0.0006, + "loss": 3.5955371856689453, + "step": 3404 + }, + { + "epoch": 47.293577981651374, + "grad_norm": 0.22280243039131165, + "learning_rate": 0.0006, + "loss": 3.618302345275879, + "step": 3405 + }, + { + "epoch": 47.30755788553954, + "grad_norm": 0.2268427014350891, + "learning_rate": 0.0006, + "loss": 3.6035101413726807, + "step": 3406 + }, + { + "epoch": 47.3215377894277, + "grad_norm": 0.20324429869651794, + "learning_rate": 0.0006, + "loss": 3.612598419189453, + "step": 3407 + }, + { + "epoch": 47.33551769331586, + "grad_norm": 0.19353045523166656, + "learning_rate": 0.0006, + "loss": 3.5951499938964844, + "step": 3408 + }, + { + "epoch": 47.34949759720402, + "grad_norm": 0.19008080661296844, + "learning_rate": 0.0006, + "loss": 3.6177732944488525, + "step": 3409 + }, + { + "epoch": 47.36347750109218, + "grad_norm": 0.19530250132083893, + "learning_rate": 0.0006, + "loss": 3.597903251647949, + "step": 3410 + }, + { + "epoch": 47.37745740498034, + "grad_norm": 0.2083505541086197, + "learning_rate": 0.0006, + "loss": 3.6062350273132324, + "step": 3411 + }, + { + "epoch": 47.391437308868504, + "grad_norm": 0.2241518199443817, + "learning_rate": 0.0006, + "loss": 3.6084704399108887, + "step": 3412 + }, + { + "epoch": 47.40541721275666, + "grad_norm": 0.25763124227523804, + "learning_rate": 0.0006, + "loss": 3.600295066833496, + "step": 3413 + }, + { + "epoch": 47.419397116644824, + "grad_norm": 0.2689114212989807, + "learning_rate": 0.0006, + "loss": 3.648848533630371, + "step": 3414 + }, + { + "epoch": 47.43337702053299, + "grad_norm": 0.30106639862060547, + "learning_rate": 0.0006, + "loss": 3.6248483657836914, + "step": 3415 + }, + { + "epoch": 47.44735692442114, + "grad_norm": 0.31840384006500244, + "learning_rate": 0.0006, + "loss": 3.6256890296936035, + "step": 3416 + }, + { + "epoch": 47.46133682830931, + "grad_norm": 0.2603468894958496, + "learning_rate": 0.0006, + "loss": 3.6225175857543945, + "step": 3417 + }, + { + "epoch": 47.47531673219746, + "grad_norm": 0.33408305048942566, + "learning_rate": 0.0006, + "loss": 3.590303897857666, + "step": 3418 + }, + { + "epoch": 47.489296636085626, + "grad_norm": 0.3677918612957001, + "learning_rate": 0.0006, + "loss": 3.6005120277404785, + "step": 3419 + }, + { + "epoch": 47.50327653997379, + "grad_norm": 0.23077215254306793, + "learning_rate": 0.0006, + "loss": 3.6093883514404297, + "step": 3420 + }, + { + "epoch": 47.517256443861946, + "grad_norm": 0.27272120118141174, + "learning_rate": 0.0006, + "loss": 3.580151081085205, + "step": 3421 + }, + { + "epoch": 47.53123634775011, + "grad_norm": 0.22629371285438538, + "learning_rate": 0.0006, + "loss": 3.6375746726989746, + "step": 3422 + }, + { + "epoch": 47.54521625163827, + "grad_norm": 0.2376468926668167, + "learning_rate": 0.0006, + "loss": 3.6492481231689453, + "step": 3423 + }, + { + "epoch": 47.55919615552643, + "grad_norm": 0.21200433373451233, + "learning_rate": 0.0006, + "loss": 3.6258158683776855, + "step": 3424 + }, + { + "epoch": 47.57317605941459, + "grad_norm": 0.2246236652135849, + "learning_rate": 0.0006, + "loss": 3.6199564933776855, + "step": 3425 + }, + { + "epoch": 47.58715596330275, + "grad_norm": 0.21713437139987946, + "learning_rate": 0.0006, + "loss": 3.638197898864746, + "step": 3426 + }, + { + "epoch": 47.60113586719091, + "grad_norm": 0.1964627057313919, + "learning_rate": 0.0006, + "loss": 3.6334147453308105, + "step": 3427 + }, + { + "epoch": 47.615115771079076, + "grad_norm": 0.21705810725688934, + "learning_rate": 0.0006, + "loss": 3.6298668384552, + "step": 3428 + }, + { + "epoch": 47.62909567496723, + "grad_norm": 0.20376256108283997, + "learning_rate": 0.0006, + "loss": 3.6127166748046875, + "step": 3429 + }, + { + "epoch": 47.643075578855395, + "grad_norm": 0.20046672224998474, + "learning_rate": 0.0006, + "loss": 3.633683681488037, + "step": 3430 + }, + { + "epoch": 47.65705548274356, + "grad_norm": 0.21494409441947937, + "learning_rate": 0.0006, + "loss": 3.635828971862793, + "step": 3431 + }, + { + "epoch": 47.671035386631715, + "grad_norm": 0.24550487101078033, + "learning_rate": 0.0006, + "loss": 3.6056854724884033, + "step": 3432 + }, + { + "epoch": 47.68501529051988, + "grad_norm": 0.24416600167751312, + "learning_rate": 0.0006, + "loss": 3.618785858154297, + "step": 3433 + }, + { + "epoch": 47.69899519440804, + "grad_norm": 0.22872993350028992, + "learning_rate": 0.0006, + "loss": 3.6189026832580566, + "step": 3434 + }, + { + "epoch": 47.7129750982962, + "grad_norm": 0.23609530925750732, + "learning_rate": 0.0006, + "loss": 3.623661518096924, + "step": 3435 + }, + { + "epoch": 47.72695500218436, + "grad_norm": 0.22905564308166504, + "learning_rate": 0.0006, + "loss": 3.6155691146850586, + "step": 3436 + }, + { + "epoch": 47.74093490607252, + "grad_norm": 0.25507304072380066, + "learning_rate": 0.0006, + "loss": 3.5848331451416016, + "step": 3437 + }, + { + "epoch": 47.75491480996068, + "grad_norm": 0.24594344198703766, + "learning_rate": 0.0006, + "loss": 3.588374614715576, + "step": 3438 + }, + { + "epoch": 47.768894713848844, + "grad_norm": 0.23131750524044037, + "learning_rate": 0.0006, + "loss": 3.6164474487304688, + "step": 3439 + }, + { + "epoch": 47.782874617737, + "grad_norm": 0.21967829763889313, + "learning_rate": 0.0006, + "loss": 3.619150161743164, + "step": 3440 + }, + { + "epoch": 47.796854521625164, + "grad_norm": 0.226309135556221, + "learning_rate": 0.0006, + "loss": 3.5946340560913086, + "step": 3441 + }, + { + "epoch": 47.81083442551333, + "grad_norm": 0.23141087591648102, + "learning_rate": 0.0006, + "loss": 3.614711046218872, + "step": 3442 + }, + { + "epoch": 47.824814329401484, + "grad_norm": 0.20917707681655884, + "learning_rate": 0.0006, + "loss": 3.610058307647705, + "step": 3443 + }, + { + "epoch": 47.83879423328965, + "grad_norm": 0.22864583134651184, + "learning_rate": 0.0006, + "loss": 3.6396052837371826, + "step": 3444 + }, + { + "epoch": 47.8527741371778, + "grad_norm": 0.22201144695281982, + "learning_rate": 0.0006, + "loss": 3.6462526321411133, + "step": 3445 + }, + { + "epoch": 47.86675404106597, + "grad_norm": 0.21199125051498413, + "learning_rate": 0.0006, + "loss": 3.6090314388275146, + "step": 3446 + }, + { + "epoch": 47.88073394495413, + "grad_norm": 0.2236194908618927, + "learning_rate": 0.0006, + "loss": 3.6308231353759766, + "step": 3447 + }, + { + "epoch": 47.89471384884229, + "grad_norm": 0.21571075916290283, + "learning_rate": 0.0006, + "loss": 3.5899293422698975, + "step": 3448 + }, + { + "epoch": 47.90869375273045, + "grad_norm": 0.2320997267961502, + "learning_rate": 0.0006, + "loss": 3.6360764503479004, + "step": 3449 + }, + { + "epoch": 47.92267365661861, + "grad_norm": 0.2304147630929947, + "learning_rate": 0.0006, + "loss": 3.61220121383667, + "step": 3450 + }, + { + "epoch": 47.93665356050677, + "grad_norm": 0.2321154624223709, + "learning_rate": 0.0006, + "loss": 3.6104419231414795, + "step": 3451 + }, + { + "epoch": 47.95063346439493, + "grad_norm": 0.20895935595035553, + "learning_rate": 0.0006, + "loss": 3.6372952461242676, + "step": 3452 + }, + { + "epoch": 47.964613368283096, + "grad_norm": 0.19926418364048004, + "learning_rate": 0.0006, + "loss": 3.652947425842285, + "step": 3453 + }, + { + "epoch": 47.97859327217125, + "grad_norm": 0.22443149983882904, + "learning_rate": 0.0006, + "loss": 3.6005635261535645, + "step": 3454 + }, + { + "epoch": 47.992573176059416, + "grad_norm": 0.2361244559288025, + "learning_rate": 0.0006, + "loss": 3.626563549041748, + "step": 3455 + }, + { + "epoch": 48.0, + "grad_norm": 0.2542579174041748, + "learning_rate": 0.0006, + "loss": 3.619098663330078, + "step": 3456 + }, + { + "epoch": 48.0, + "eval_loss": 3.9787564277648926, + "eval_runtime": 44.3429, + "eval_samples_per_second": 55.071, + "eval_steps_per_second": 3.45, + "step": 3456 + }, + { + "epoch": 48.01397990388816, + "grad_norm": 0.21771088242530823, + "learning_rate": 0.0006, + "loss": 3.538780927658081, + "step": 3457 + }, + { + "epoch": 48.02795980777632, + "grad_norm": 0.23467740416526794, + "learning_rate": 0.0006, + "loss": 3.5875978469848633, + "step": 3458 + }, + { + "epoch": 48.04193971166448, + "grad_norm": 0.2527692914009094, + "learning_rate": 0.0006, + "loss": 3.5939159393310547, + "step": 3459 + }, + { + "epoch": 48.05591961555265, + "grad_norm": 0.21477685868740082, + "learning_rate": 0.0006, + "loss": 3.600374698638916, + "step": 3460 + }, + { + "epoch": 48.0698995194408, + "grad_norm": 0.22008976340293884, + "learning_rate": 0.0006, + "loss": 3.6058406829833984, + "step": 3461 + }, + { + "epoch": 48.083879423328966, + "grad_norm": 0.23344817757606506, + "learning_rate": 0.0006, + "loss": 3.5864410400390625, + "step": 3462 + }, + { + "epoch": 48.09785932721712, + "grad_norm": 0.24451610445976257, + "learning_rate": 0.0006, + "loss": 3.5827221870422363, + "step": 3463 + }, + { + "epoch": 48.111839231105286, + "grad_norm": 0.24536925554275513, + "learning_rate": 0.0006, + "loss": 3.566275119781494, + "step": 3464 + }, + { + "epoch": 48.12581913499345, + "grad_norm": 0.24060940742492676, + "learning_rate": 0.0006, + "loss": 3.575841188430786, + "step": 3465 + }, + { + "epoch": 48.139799038881605, + "grad_norm": 0.24829573929309845, + "learning_rate": 0.0006, + "loss": 3.6215152740478516, + "step": 3466 + }, + { + "epoch": 48.15377894276977, + "grad_norm": 0.2651045024394989, + "learning_rate": 0.0006, + "loss": 3.604381561279297, + "step": 3467 + }, + { + "epoch": 48.16775884665793, + "grad_norm": 0.2654518187046051, + "learning_rate": 0.0006, + "loss": 3.5989198684692383, + "step": 3468 + }, + { + "epoch": 48.18173875054609, + "grad_norm": 0.25179797410964966, + "learning_rate": 0.0006, + "loss": 3.596402168273926, + "step": 3469 + }, + { + "epoch": 48.19571865443425, + "grad_norm": 0.24018050730228424, + "learning_rate": 0.0006, + "loss": 3.6376051902770996, + "step": 3470 + }, + { + "epoch": 48.20969855832241, + "grad_norm": 0.22079682350158691, + "learning_rate": 0.0006, + "loss": 3.5990993976593018, + "step": 3471 + }, + { + "epoch": 48.22367846221057, + "grad_norm": 0.23267143964767456, + "learning_rate": 0.0006, + "loss": 3.614759683609009, + "step": 3472 + }, + { + "epoch": 48.237658366098735, + "grad_norm": 0.21822260320186615, + "learning_rate": 0.0006, + "loss": 3.6057262420654297, + "step": 3473 + }, + { + "epoch": 48.25163826998689, + "grad_norm": 0.23391997814178467, + "learning_rate": 0.0006, + "loss": 3.581972599029541, + "step": 3474 + }, + { + "epoch": 48.265618173875055, + "grad_norm": 0.22634121775627136, + "learning_rate": 0.0006, + "loss": 3.592149496078491, + "step": 3475 + }, + { + "epoch": 48.27959807776322, + "grad_norm": 0.2142419070005417, + "learning_rate": 0.0006, + "loss": 3.616722583770752, + "step": 3476 + }, + { + "epoch": 48.293577981651374, + "grad_norm": 0.227144256234169, + "learning_rate": 0.0006, + "loss": 3.6018447875976562, + "step": 3477 + }, + { + "epoch": 48.30755788553954, + "grad_norm": 0.25466978549957275, + "learning_rate": 0.0006, + "loss": 3.5795769691467285, + "step": 3478 + }, + { + "epoch": 48.3215377894277, + "grad_norm": 0.2409234344959259, + "learning_rate": 0.0006, + "loss": 3.5845530033111572, + "step": 3479 + }, + { + "epoch": 48.33551769331586, + "grad_norm": 0.22001305222511292, + "learning_rate": 0.0006, + "loss": 3.5861806869506836, + "step": 3480 + }, + { + "epoch": 48.34949759720402, + "grad_norm": 0.24980100989341736, + "learning_rate": 0.0006, + "loss": 3.6032233238220215, + "step": 3481 + }, + { + "epoch": 48.36347750109218, + "grad_norm": 0.28788816928863525, + "learning_rate": 0.0006, + "loss": 3.5876364707946777, + "step": 3482 + }, + { + "epoch": 48.37745740498034, + "grad_norm": 0.26172295212745667, + "learning_rate": 0.0006, + "loss": 3.5711276531219482, + "step": 3483 + }, + { + "epoch": 48.391437308868504, + "grad_norm": 0.23881542682647705, + "learning_rate": 0.0006, + "loss": 3.57108473777771, + "step": 3484 + }, + { + "epoch": 48.40541721275666, + "grad_norm": 0.22385981678962708, + "learning_rate": 0.0006, + "loss": 3.6197509765625, + "step": 3485 + }, + { + "epoch": 48.419397116644824, + "grad_norm": 0.21007859706878662, + "learning_rate": 0.0006, + "loss": 3.609449625015259, + "step": 3486 + }, + { + "epoch": 48.43337702053299, + "grad_norm": 0.21170279383659363, + "learning_rate": 0.0006, + "loss": 3.5981619358062744, + "step": 3487 + }, + { + "epoch": 48.44735692442114, + "grad_norm": 0.2100721150636673, + "learning_rate": 0.0006, + "loss": 3.606505870819092, + "step": 3488 + }, + { + "epoch": 48.46133682830931, + "grad_norm": 0.20408287644386292, + "learning_rate": 0.0006, + "loss": 3.6033859252929688, + "step": 3489 + }, + { + "epoch": 48.47531673219746, + "grad_norm": 0.20343686640262604, + "learning_rate": 0.0006, + "loss": 3.6249616146087646, + "step": 3490 + }, + { + "epoch": 48.489296636085626, + "grad_norm": 0.20570123195648193, + "learning_rate": 0.0006, + "loss": 3.5700693130493164, + "step": 3491 + }, + { + "epoch": 48.50327653997379, + "grad_norm": 0.2511707544326782, + "learning_rate": 0.0006, + "loss": 3.6432406902313232, + "step": 3492 + }, + { + "epoch": 48.517256443861946, + "grad_norm": 0.265960693359375, + "learning_rate": 0.0006, + "loss": 3.6329426765441895, + "step": 3493 + }, + { + "epoch": 48.53123634775011, + "grad_norm": 0.25830161571502686, + "learning_rate": 0.0006, + "loss": 3.593940258026123, + "step": 3494 + }, + { + "epoch": 48.54521625163827, + "grad_norm": 0.2232893705368042, + "learning_rate": 0.0006, + "loss": 3.623812198638916, + "step": 3495 + }, + { + "epoch": 48.55919615552643, + "grad_norm": 0.20818902552127838, + "learning_rate": 0.0006, + "loss": 3.5982813835144043, + "step": 3496 + }, + { + "epoch": 48.57317605941459, + "grad_norm": 0.2756865918636322, + "learning_rate": 0.0006, + "loss": 3.617436170578003, + "step": 3497 + }, + { + "epoch": 48.58715596330275, + "grad_norm": 0.2361520677804947, + "learning_rate": 0.0006, + "loss": 3.598113536834717, + "step": 3498 + }, + { + "epoch": 48.60113586719091, + "grad_norm": 0.1956835240125656, + "learning_rate": 0.0006, + "loss": 3.581003189086914, + "step": 3499 + }, + { + "epoch": 48.615115771079076, + "grad_norm": 0.2863931953907013, + "learning_rate": 0.0006, + "loss": 3.596768379211426, + "step": 3500 + }, + { + "epoch": 48.62909567496723, + "grad_norm": 0.29865020513534546, + "learning_rate": 0.0006, + "loss": 3.576995372772217, + "step": 3501 + }, + { + "epoch": 48.643075578855395, + "grad_norm": 0.23084872961044312, + "learning_rate": 0.0006, + "loss": 3.6431074142456055, + "step": 3502 + }, + { + "epoch": 48.65705548274356, + "grad_norm": 0.2081640362739563, + "learning_rate": 0.0006, + "loss": 3.6002132892608643, + "step": 3503 + }, + { + "epoch": 48.671035386631715, + "grad_norm": 0.20566335320472717, + "learning_rate": 0.0006, + "loss": 3.62365460395813, + "step": 3504 + }, + { + "epoch": 48.68501529051988, + "grad_norm": 0.2066725790500641, + "learning_rate": 0.0006, + "loss": 3.6063363552093506, + "step": 3505 + }, + { + "epoch": 48.69899519440804, + "grad_norm": 0.19830003380775452, + "learning_rate": 0.0006, + "loss": 3.617750883102417, + "step": 3506 + }, + { + "epoch": 48.7129750982962, + "grad_norm": 0.20409031212329865, + "learning_rate": 0.0006, + "loss": 3.6110005378723145, + "step": 3507 + }, + { + "epoch": 48.72695500218436, + "grad_norm": 0.20836064219474792, + "learning_rate": 0.0006, + "loss": 3.6148147583007812, + "step": 3508 + }, + { + "epoch": 48.74093490607252, + "grad_norm": 0.21660791337490082, + "learning_rate": 0.0006, + "loss": 3.641488790512085, + "step": 3509 + }, + { + "epoch": 48.75491480996068, + "grad_norm": 0.21075023710727692, + "learning_rate": 0.0006, + "loss": 3.6327688694000244, + "step": 3510 + }, + { + "epoch": 48.768894713848844, + "grad_norm": 0.19346074759960175, + "learning_rate": 0.0006, + "loss": 3.6025185585021973, + "step": 3511 + }, + { + "epoch": 48.782874617737, + "grad_norm": 0.20215240120887756, + "learning_rate": 0.0006, + "loss": 3.595707416534424, + "step": 3512 + }, + { + "epoch": 48.796854521625164, + "grad_norm": 0.1913122832775116, + "learning_rate": 0.0006, + "loss": 3.618406295776367, + "step": 3513 + }, + { + "epoch": 48.81083442551333, + "grad_norm": 0.18517033755779266, + "learning_rate": 0.0006, + "loss": 3.6212055683135986, + "step": 3514 + }, + { + "epoch": 48.824814329401484, + "grad_norm": 0.20453064143657684, + "learning_rate": 0.0006, + "loss": 3.5941221714019775, + "step": 3515 + }, + { + "epoch": 48.83879423328965, + "grad_norm": 0.20777031779289246, + "learning_rate": 0.0006, + "loss": 3.630701780319214, + "step": 3516 + }, + { + "epoch": 48.8527741371778, + "grad_norm": 0.23713789880275726, + "learning_rate": 0.0006, + "loss": 3.629256248474121, + "step": 3517 + }, + { + "epoch": 48.86675404106597, + "grad_norm": 0.1945258378982544, + "learning_rate": 0.0006, + "loss": 3.607020854949951, + "step": 3518 + }, + { + "epoch": 48.88073394495413, + "grad_norm": 0.19601863622665405, + "learning_rate": 0.0006, + "loss": 3.6200907230377197, + "step": 3519 + }, + { + "epoch": 48.89471384884229, + "grad_norm": 0.20068836212158203, + "learning_rate": 0.0006, + "loss": 3.58575701713562, + "step": 3520 + }, + { + "epoch": 48.90869375273045, + "grad_norm": 0.21790200471878052, + "learning_rate": 0.0006, + "loss": 3.6451416015625, + "step": 3521 + }, + { + "epoch": 48.92267365661861, + "grad_norm": 0.22265756130218506, + "learning_rate": 0.0006, + "loss": 3.621331214904785, + "step": 3522 + }, + { + "epoch": 48.93665356050677, + "grad_norm": 0.20316730439662933, + "learning_rate": 0.0006, + "loss": 3.614537239074707, + "step": 3523 + }, + { + "epoch": 48.95063346439493, + "grad_norm": 0.20275238156318665, + "learning_rate": 0.0006, + "loss": 3.5913281440734863, + "step": 3524 + }, + { + "epoch": 48.964613368283096, + "grad_norm": 0.20239883661270142, + "learning_rate": 0.0006, + "loss": 3.608638286590576, + "step": 3525 + }, + { + "epoch": 48.97859327217125, + "grad_norm": 0.21154041588306427, + "learning_rate": 0.0006, + "loss": 3.6233115196228027, + "step": 3526 + }, + { + "epoch": 48.992573176059416, + "grad_norm": 0.22368352115154266, + "learning_rate": 0.0006, + "loss": 3.599665880203247, + "step": 3527 + }, + { + "epoch": 49.0, + "grad_norm": 0.2675703763961792, + "learning_rate": 0.0006, + "loss": 3.637458086013794, + "step": 3528 + }, + { + "epoch": 49.0, + "eval_loss": 3.985574245452881, + "eval_runtime": 44.55, + "eval_samples_per_second": 54.815, + "eval_steps_per_second": 3.434, + "step": 3528 + }, + { + "epoch": 49.01397990388816, + "grad_norm": 0.2911863625049591, + "learning_rate": 0.0006, + "loss": 3.606170654296875, + "step": 3529 + }, + { + "epoch": 49.02795980777632, + "grad_norm": 0.26640036702156067, + "learning_rate": 0.0006, + "loss": 3.5662899017333984, + "step": 3530 + }, + { + "epoch": 49.04193971166448, + "grad_norm": 0.23250512778759003, + "learning_rate": 0.0006, + "loss": 3.5928688049316406, + "step": 3531 + }, + { + "epoch": 49.05591961555265, + "grad_norm": 0.2603093385696411, + "learning_rate": 0.0006, + "loss": 3.5702433586120605, + "step": 3532 + }, + { + "epoch": 49.0698995194408, + "grad_norm": 0.2711663246154785, + "learning_rate": 0.0006, + "loss": 3.591977596282959, + "step": 3533 + }, + { + "epoch": 49.083879423328966, + "grad_norm": 0.2536148130893707, + "learning_rate": 0.0006, + "loss": 3.5924272537231445, + "step": 3534 + }, + { + "epoch": 49.09785932721712, + "grad_norm": 0.22995208203792572, + "learning_rate": 0.0006, + "loss": 3.5760092735290527, + "step": 3535 + }, + { + "epoch": 49.111839231105286, + "grad_norm": 0.22327162325382233, + "learning_rate": 0.0006, + "loss": 3.6072137355804443, + "step": 3536 + }, + { + "epoch": 49.12581913499345, + "grad_norm": 0.2256365567445755, + "learning_rate": 0.0006, + "loss": 3.6156117916107178, + "step": 3537 + }, + { + "epoch": 49.139799038881605, + "grad_norm": 0.23647814989089966, + "learning_rate": 0.0006, + "loss": 3.5862512588500977, + "step": 3538 + }, + { + "epoch": 49.15377894276977, + "grad_norm": 0.23442648351192474, + "learning_rate": 0.0006, + "loss": 3.606386184692383, + "step": 3539 + }, + { + "epoch": 49.16775884665793, + "grad_norm": 0.22148385643959045, + "learning_rate": 0.0006, + "loss": 3.5564064979553223, + "step": 3540 + }, + { + "epoch": 49.18173875054609, + "grad_norm": 0.24589644372463226, + "learning_rate": 0.0006, + "loss": 3.5625576972961426, + "step": 3541 + }, + { + "epoch": 49.19571865443425, + "grad_norm": 0.23955261707305908, + "learning_rate": 0.0006, + "loss": 3.617833137512207, + "step": 3542 + }, + { + "epoch": 49.20969855832241, + "grad_norm": 0.2781425416469574, + "learning_rate": 0.0006, + "loss": 3.6153502464294434, + "step": 3543 + }, + { + "epoch": 49.22367846221057, + "grad_norm": 0.2622034549713135, + "learning_rate": 0.0006, + "loss": 3.608530044555664, + "step": 3544 + }, + { + "epoch": 49.237658366098735, + "grad_norm": 0.28407761454582214, + "learning_rate": 0.0006, + "loss": 3.572207450866699, + "step": 3545 + }, + { + "epoch": 49.25163826998689, + "grad_norm": 0.2722281217575073, + "learning_rate": 0.0006, + "loss": 3.591392755508423, + "step": 3546 + }, + { + "epoch": 49.265618173875055, + "grad_norm": 0.20608903467655182, + "learning_rate": 0.0006, + "loss": 3.598421573638916, + "step": 3547 + }, + { + "epoch": 49.27959807776322, + "grad_norm": 0.27233049273490906, + "learning_rate": 0.0006, + "loss": 3.5819201469421387, + "step": 3548 + }, + { + "epoch": 49.293577981651374, + "grad_norm": 0.26182129979133606, + "learning_rate": 0.0006, + "loss": 3.5855109691619873, + "step": 3549 + }, + { + "epoch": 49.30755788553954, + "grad_norm": 0.20255911350250244, + "learning_rate": 0.0006, + "loss": 3.569438934326172, + "step": 3550 + }, + { + "epoch": 49.3215377894277, + "grad_norm": 0.20045310258865356, + "learning_rate": 0.0006, + "loss": 3.5888795852661133, + "step": 3551 + }, + { + "epoch": 49.33551769331586, + "grad_norm": 0.18505392968654633, + "learning_rate": 0.0006, + "loss": 3.565467596054077, + "step": 3552 + }, + { + "epoch": 49.34949759720402, + "grad_norm": 0.2057398110628128, + "learning_rate": 0.0006, + "loss": 3.5850436687469482, + "step": 3553 + }, + { + "epoch": 49.36347750109218, + "grad_norm": 0.20007790625095367, + "learning_rate": 0.0006, + "loss": 3.5963945388793945, + "step": 3554 + }, + { + "epoch": 49.37745740498034, + "grad_norm": 0.179341122508049, + "learning_rate": 0.0006, + "loss": 3.5747077465057373, + "step": 3555 + }, + { + "epoch": 49.391437308868504, + "grad_norm": 0.1978122442960739, + "learning_rate": 0.0006, + "loss": 3.605037212371826, + "step": 3556 + }, + { + "epoch": 49.40541721275666, + "grad_norm": 0.1936761885881424, + "learning_rate": 0.0006, + "loss": 3.6293420791625977, + "step": 3557 + }, + { + "epoch": 49.419397116644824, + "grad_norm": 0.20393748581409454, + "learning_rate": 0.0006, + "loss": 3.5616302490234375, + "step": 3558 + }, + { + "epoch": 49.43337702053299, + "grad_norm": 0.19082997739315033, + "learning_rate": 0.0006, + "loss": 3.605088472366333, + "step": 3559 + }, + { + "epoch": 49.44735692442114, + "grad_norm": 0.19642551243305206, + "learning_rate": 0.0006, + "loss": 3.610870361328125, + "step": 3560 + }, + { + "epoch": 49.46133682830931, + "grad_norm": 0.21815423667430878, + "learning_rate": 0.0006, + "loss": 3.60211181640625, + "step": 3561 + }, + { + "epoch": 49.47531673219746, + "grad_norm": 0.20342762768268585, + "learning_rate": 0.0006, + "loss": 3.597529411315918, + "step": 3562 + }, + { + "epoch": 49.489296636085626, + "grad_norm": 0.19032546877861023, + "learning_rate": 0.0006, + "loss": 3.5728795528411865, + "step": 3563 + }, + { + "epoch": 49.50327653997379, + "grad_norm": 0.18237556517124176, + "learning_rate": 0.0006, + "loss": 3.5983595848083496, + "step": 3564 + }, + { + "epoch": 49.517256443861946, + "grad_norm": 0.20585589110851288, + "learning_rate": 0.0006, + "loss": 3.578320264816284, + "step": 3565 + }, + { + "epoch": 49.53123634775011, + "grad_norm": 0.20158857107162476, + "learning_rate": 0.0006, + "loss": 3.5918798446655273, + "step": 3566 + }, + { + "epoch": 49.54521625163827, + "grad_norm": 0.20195038616657257, + "learning_rate": 0.0006, + "loss": 3.605422258377075, + "step": 3567 + }, + { + "epoch": 49.55919615552643, + "grad_norm": 0.19884084165096283, + "learning_rate": 0.0006, + "loss": 3.5964083671569824, + "step": 3568 + }, + { + "epoch": 49.57317605941459, + "grad_norm": 0.21243083477020264, + "learning_rate": 0.0006, + "loss": 3.5885486602783203, + "step": 3569 + }, + { + "epoch": 49.58715596330275, + "grad_norm": 0.21059481799602509, + "learning_rate": 0.0006, + "loss": 3.572526454925537, + "step": 3570 + }, + { + "epoch": 49.60113586719091, + "grad_norm": 0.20644313097000122, + "learning_rate": 0.0006, + "loss": 3.583679676055908, + "step": 3571 + }, + { + "epoch": 49.615115771079076, + "grad_norm": 0.21343673765659332, + "learning_rate": 0.0006, + "loss": 3.6211650371551514, + "step": 3572 + }, + { + "epoch": 49.62909567496723, + "grad_norm": 0.23395343124866486, + "learning_rate": 0.0006, + "loss": 3.6003336906433105, + "step": 3573 + }, + { + "epoch": 49.643075578855395, + "grad_norm": 0.19978424906730652, + "learning_rate": 0.0006, + "loss": 3.6066763401031494, + "step": 3574 + }, + { + "epoch": 49.65705548274356, + "grad_norm": 0.21529823541641235, + "learning_rate": 0.0006, + "loss": 3.601284980773926, + "step": 3575 + }, + { + "epoch": 49.671035386631715, + "grad_norm": 0.21672746539115906, + "learning_rate": 0.0006, + "loss": 3.6084227561950684, + "step": 3576 + }, + { + "epoch": 49.68501529051988, + "grad_norm": 0.20889638364315033, + "learning_rate": 0.0006, + "loss": 3.591568946838379, + "step": 3577 + }, + { + "epoch": 49.69899519440804, + "grad_norm": 0.1960221230983734, + "learning_rate": 0.0006, + "loss": 3.6180830001831055, + "step": 3578 + }, + { + "epoch": 49.7129750982962, + "grad_norm": 0.19712410867214203, + "learning_rate": 0.0006, + "loss": 3.6197333335876465, + "step": 3579 + }, + { + "epoch": 49.72695500218436, + "grad_norm": 0.20665284991264343, + "learning_rate": 0.0006, + "loss": 3.6251301765441895, + "step": 3580 + }, + { + "epoch": 49.74093490607252, + "grad_norm": 0.21018871665000916, + "learning_rate": 0.0006, + "loss": 3.621973991394043, + "step": 3581 + }, + { + "epoch": 49.75491480996068, + "grad_norm": 0.20777495205402374, + "learning_rate": 0.0006, + "loss": 3.5826358795166016, + "step": 3582 + }, + { + "epoch": 49.768894713848844, + "grad_norm": 0.18880195915699005, + "learning_rate": 0.0006, + "loss": 3.5946998596191406, + "step": 3583 + }, + { + "epoch": 49.782874617737, + "grad_norm": 0.19894644618034363, + "learning_rate": 0.0006, + "loss": 3.5912184715270996, + "step": 3584 + }, + { + "epoch": 49.796854521625164, + "grad_norm": 0.20128944516181946, + "learning_rate": 0.0006, + "loss": 3.6370394229888916, + "step": 3585 + }, + { + "epoch": 49.81083442551333, + "grad_norm": 0.19332024455070496, + "learning_rate": 0.0006, + "loss": 3.619018077850342, + "step": 3586 + }, + { + "epoch": 49.824814329401484, + "grad_norm": 0.19303865730762482, + "learning_rate": 0.0006, + "loss": 3.578667163848877, + "step": 3587 + }, + { + "epoch": 49.83879423328965, + "grad_norm": 0.20154757797718048, + "learning_rate": 0.0006, + "loss": 3.61959171295166, + "step": 3588 + }, + { + "epoch": 49.8527741371778, + "grad_norm": 0.19653639197349548, + "learning_rate": 0.0006, + "loss": 3.6437559127807617, + "step": 3589 + }, + { + "epoch": 49.86675404106597, + "grad_norm": 0.21873407065868378, + "learning_rate": 0.0006, + "loss": 3.6131112575531006, + "step": 3590 + }, + { + "epoch": 49.88073394495413, + "grad_norm": 0.20130383968353271, + "learning_rate": 0.0006, + "loss": 3.624028444290161, + "step": 3591 + }, + { + "epoch": 49.89471384884229, + "grad_norm": 0.20206475257873535, + "learning_rate": 0.0006, + "loss": 3.5997328758239746, + "step": 3592 + }, + { + "epoch": 49.90869375273045, + "grad_norm": 0.20393261313438416, + "learning_rate": 0.0006, + "loss": 3.596066474914551, + "step": 3593 + }, + { + "epoch": 49.92267365661861, + "grad_norm": 0.19703544676303864, + "learning_rate": 0.0006, + "loss": 3.624542713165283, + "step": 3594 + }, + { + "epoch": 49.93665356050677, + "grad_norm": 0.2102314680814743, + "learning_rate": 0.0006, + "loss": 3.6082515716552734, + "step": 3595 + }, + { + "epoch": 49.95063346439493, + "grad_norm": 0.23791316151618958, + "learning_rate": 0.0006, + "loss": 3.6185569763183594, + "step": 3596 + }, + { + "epoch": 49.964613368283096, + "grad_norm": 0.24536125361919403, + "learning_rate": 0.0006, + "loss": 3.599207878112793, + "step": 3597 + }, + { + "epoch": 49.97859327217125, + "grad_norm": 0.23160327970981598, + "learning_rate": 0.0006, + "loss": 3.600921869277954, + "step": 3598 + }, + { + "epoch": 49.992573176059416, + "grad_norm": 0.22740362584590912, + "learning_rate": 0.0006, + "loss": 3.6112914085388184, + "step": 3599 + }, + { + "epoch": 50.0, + "grad_norm": 0.24303272366523743, + "learning_rate": 0.0006, + "loss": 3.6385838985443115, + "step": 3600 + }, + { + "epoch": 50.0, + "eval_loss": 3.9811089038848877, + "eval_runtime": 44.9913, + "eval_samples_per_second": 54.277, + "eval_steps_per_second": 3.401, + "step": 3600 + }, + { + "epoch": 50.01397990388816, + "grad_norm": 0.20118683576583862, + "learning_rate": 0.0006, + "loss": 3.561751127243042, + "step": 3601 + }, + { + "epoch": 50.02795980777632, + "grad_norm": 0.18722538650035858, + "learning_rate": 0.0006, + "loss": 3.5742180347442627, + "step": 3602 + }, + { + "epoch": 50.04193971166448, + "grad_norm": 0.21248385310173035, + "learning_rate": 0.0006, + "loss": 3.5759401321411133, + "step": 3603 + }, + { + "epoch": 50.05591961555265, + "grad_norm": 0.21006572246551514, + "learning_rate": 0.0006, + "loss": 3.5737462043762207, + "step": 3604 + }, + { + "epoch": 50.0698995194408, + "grad_norm": 0.20671233534812927, + "learning_rate": 0.0006, + "loss": 3.548205852508545, + "step": 3605 + }, + { + "epoch": 50.083879423328966, + "grad_norm": 0.20704609155654907, + "learning_rate": 0.0006, + "loss": 3.5862209796905518, + "step": 3606 + }, + { + "epoch": 50.09785932721712, + "grad_norm": 0.20611345767974854, + "learning_rate": 0.0006, + "loss": 3.5696640014648438, + "step": 3607 + }, + { + "epoch": 50.111839231105286, + "grad_norm": 0.20986805856227875, + "learning_rate": 0.0006, + "loss": 3.5755579471588135, + "step": 3608 + }, + { + "epoch": 50.12581913499345, + "grad_norm": 0.21727709472179413, + "learning_rate": 0.0006, + "loss": 3.5967745780944824, + "step": 3609 + }, + { + "epoch": 50.139799038881605, + "grad_norm": 0.21854986250400543, + "learning_rate": 0.0006, + "loss": 3.6115779876708984, + "step": 3610 + }, + { + "epoch": 50.15377894276977, + "grad_norm": 0.22904936969280243, + "learning_rate": 0.0006, + "loss": 3.5639889240264893, + "step": 3611 + }, + { + "epoch": 50.16775884665793, + "grad_norm": 0.23774254322052002, + "learning_rate": 0.0006, + "loss": 3.6023900508880615, + "step": 3612 + }, + { + "epoch": 50.18173875054609, + "grad_norm": 0.21548497676849365, + "learning_rate": 0.0006, + "loss": 3.5722856521606445, + "step": 3613 + }, + { + "epoch": 50.19571865443425, + "grad_norm": 0.20503196120262146, + "learning_rate": 0.0006, + "loss": 3.5899252891540527, + "step": 3614 + }, + { + "epoch": 50.20969855832241, + "grad_norm": 0.22084423899650574, + "learning_rate": 0.0006, + "loss": 3.56020450592041, + "step": 3615 + }, + { + "epoch": 50.22367846221057, + "grad_norm": 0.24276728928089142, + "learning_rate": 0.0006, + "loss": 3.585695743560791, + "step": 3616 + }, + { + "epoch": 50.237658366098735, + "grad_norm": 0.23182106018066406, + "learning_rate": 0.0006, + "loss": 3.580676555633545, + "step": 3617 + }, + { + "epoch": 50.25163826998689, + "grad_norm": 0.2341945767402649, + "learning_rate": 0.0006, + "loss": 3.579713821411133, + "step": 3618 + }, + { + "epoch": 50.265618173875055, + "grad_norm": 0.27971863746643066, + "learning_rate": 0.0006, + "loss": 3.568251371383667, + "step": 3619 + }, + { + "epoch": 50.27959807776322, + "grad_norm": 0.24740517139434814, + "learning_rate": 0.0006, + "loss": 3.5798869132995605, + "step": 3620 + }, + { + "epoch": 50.293577981651374, + "grad_norm": 0.20561005175113678, + "learning_rate": 0.0006, + "loss": 3.5610039234161377, + "step": 3621 + }, + { + "epoch": 50.30755788553954, + "grad_norm": 0.2085379660129547, + "learning_rate": 0.0006, + "loss": 3.5620288848876953, + "step": 3622 + }, + { + "epoch": 50.3215377894277, + "grad_norm": 0.20868757367134094, + "learning_rate": 0.0006, + "loss": 3.6090598106384277, + "step": 3623 + }, + { + "epoch": 50.33551769331586, + "grad_norm": 0.18991491198539734, + "learning_rate": 0.0006, + "loss": 3.55255126953125, + "step": 3624 + }, + { + "epoch": 50.34949759720402, + "grad_norm": 0.24742646515369415, + "learning_rate": 0.0006, + "loss": 3.60585880279541, + "step": 3625 + }, + { + "epoch": 50.36347750109218, + "grad_norm": 0.26971301436424255, + "learning_rate": 0.0006, + "loss": 3.5913054943084717, + "step": 3626 + }, + { + "epoch": 50.37745740498034, + "grad_norm": 0.24294881522655487, + "learning_rate": 0.0006, + "loss": 3.5570878982543945, + "step": 3627 + }, + { + "epoch": 50.391437308868504, + "grad_norm": 0.2194664478302002, + "learning_rate": 0.0006, + "loss": 3.5800397396087646, + "step": 3628 + }, + { + "epoch": 50.40541721275666, + "grad_norm": 0.2148507982492447, + "learning_rate": 0.0006, + "loss": 3.6182782649993896, + "step": 3629 + }, + { + "epoch": 50.419397116644824, + "grad_norm": 0.22235016524791718, + "learning_rate": 0.0006, + "loss": 3.5784103870391846, + "step": 3630 + }, + { + "epoch": 50.43337702053299, + "grad_norm": 0.23176309466362, + "learning_rate": 0.0006, + "loss": 3.559011459350586, + "step": 3631 + }, + { + "epoch": 50.44735692442114, + "grad_norm": 0.2267913520336151, + "learning_rate": 0.0006, + "loss": 3.5854780673980713, + "step": 3632 + }, + { + "epoch": 50.46133682830931, + "grad_norm": 0.22565901279449463, + "learning_rate": 0.0006, + "loss": 3.5891294479370117, + "step": 3633 + }, + { + "epoch": 50.47531673219746, + "grad_norm": 0.23724839091300964, + "learning_rate": 0.0006, + "loss": 3.575702428817749, + "step": 3634 + }, + { + "epoch": 50.489296636085626, + "grad_norm": 0.23679722845554352, + "learning_rate": 0.0006, + "loss": 3.588639259338379, + "step": 3635 + }, + { + "epoch": 50.50327653997379, + "grad_norm": 0.23909232020378113, + "learning_rate": 0.0006, + "loss": 3.5828709602355957, + "step": 3636 + }, + { + "epoch": 50.517256443861946, + "grad_norm": 0.24186119437217712, + "learning_rate": 0.0006, + "loss": 3.596708059310913, + "step": 3637 + }, + { + "epoch": 50.53123634775011, + "grad_norm": 0.2325516790151596, + "learning_rate": 0.0006, + "loss": 3.610769510269165, + "step": 3638 + }, + { + "epoch": 50.54521625163827, + "grad_norm": 0.205137237906456, + "learning_rate": 0.0006, + "loss": 3.612844228744507, + "step": 3639 + }, + { + "epoch": 50.55919615552643, + "grad_norm": 0.20860300958156586, + "learning_rate": 0.0006, + "loss": 3.623669147491455, + "step": 3640 + }, + { + "epoch": 50.57317605941459, + "grad_norm": 0.20029069483280182, + "learning_rate": 0.0006, + "loss": 3.6108334064483643, + "step": 3641 + }, + { + "epoch": 50.58715596330275, + "grad_norm": 0.18841931223869324, + "learning_rate": 0.0006, + "loss": 3.6073007583618164, + "step": 3642 + }, + { + "epoch": 50.60113586719091, + "grad_norm": 0.20113889873027802, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3643 + }, + { + "epoch": 50.615115771079076, + "grad_norm": 0.23595206439495087, + "learning_rate": 0.0006, + "loss": 3.634650707244873, + "step": 3644 + }, + { + "epoch": 50.62909567496723, + "grad_norm": 0.24625661969184875, + "learning_rate": 0.0006, + "loss": 3.593716621398926, + "step": 3645 + }, + { + "epoch": 50.643075578855395, + "grad_norm": 0.2182614505290985, + "learning_rate": 0.0006, + "loss": 3.6006946563720703, + "step": 3646 + }, + { + "epoch": 50.65705548274356, + "grad_norm": 0.20867182314395905, + "learning_rate": 0.0006, + "loss": 3.6249008178710938, + "step": 3647 + }, + { + "epoch": 50.671035386631715, + "grad_norm": 0.20451945066452026, + "learning_rate": 0.0006, + "loss": 3.5870985984802246, + "step": 3648 + }, + { + "epoch": 50.68501529051988, + "grad_norm": 0.19160118699073792, + "learning_rate": 0.0006, + "loss": 3.6104488372802734, + "step": 3649 + }, + { + "epoch": 50.69899519440804, + "grad_norm": 0.18884453177452087, + "learning_rate": 0.0006, + "loss": 3.607893943786621, + "step": 3650 + }, + { + "epoch": 50.7129750982962, + "grad_norm": 0.19570060074329376, + "learning_rate": 0.0006, + "loss": 3.5938732624053955, + "step": 3651 + }, + { + "epoch": 50.72695500218436, + "grad_norm": 0.21978189051151276, + "learning_rate": 0.0006, + "loss": 3.5894908905029297, + "step": 3652 + }, + { + "epoch": 50.74093490607252, + "grad_norm": 0.19930903613567352, + "learning_rate": 0.0006, + "loss": 3.6067557334899902, + "step": 3653 + }, + { + "epoch": 50.75491480996068, + "grad_norm": 0.19450204074382782, + "learning_rate": 0.0006, + "loss": 3.5989646911621094, + "step": 3654 + }, + { + "epoch": 50.768894713848844, + "grad_norm": 0.1925407201051712, + "learning_rate": 0.0006, + "loss": 3.604339599609375, + "step": 3655 + }, + { + "epoch": 50.782874617737, + "grad_norm": 0.19232864677906036, + "learning_rate": 0.0006, + "loss": 3.5789241790771484, + "step": 3656 + }, + { + "epoch": 50.796854521625164, + "grad_norm": 0.1937529742717743, + "learning_rate": 0.0006, + "loss": 3.6060590744018555, + "step": 3657 + }, + { + "epoch": 50.81083442551333, + "grad_norm": 0.19863007962703705, + "learning_rate": 0.0006, + "loss": 3.5944440364837646, + "step": 3658 + }, + { + "epoch": 50.824814329401484, + "grad_norm": 0.18879804015159607, + "learning_rate": 0.0006, + "loss": 3.6017069816589355, + "step": 3659 + }, + { + "epoch": 50.83879423328965, + "grad_norm": 0.20111720263957977, + "learning_rate": 0.0006, + "loss": 3.593327522277832, + "step": 3660 + }, + { + "epoch": 50.8527741371778, + "grad_norm": 0.22593358159065247, + "learning_rate": 0.0006, + "loss": 3.5856096744537354, + "step": 3661 + }, + { + "epoch": 50.86675404106597, + "grad_norm": 0.22624441981315613, + "learning_rate": 0.0006, + "loss": 3.6144661903381348, + "step": 3662 + }, + { + "epoch": 50.88073394495413, + "grad_norm": 0.22052904963493347, + "learning_rate": 0.0006, + "loss": 3.5895116329193115, + "step": 3663 + }, + { + "epoch": 50.89471384884229, + "grad_norm": 0.2248559594154358, + "learning_rate": 0.0006, + "loss": 3.6400208473205566, + "step": 3664 + }, + { + "epoch": 50.90869375273045, + "grad_norm": 0.20209142565727234, + "learning_rate": 0.0006, + "loss": 3.6059279441833496, + "step": 3665 + }, + { + "epoch": 50.92267365661861, + "grad_norm": 0.2075854390859604, + "learning_rate": 0.0006, + "loss": 3.590074062347412, + "step": 3666 + }, + { + "epoch": 50.93665356050677, + "grad_norm": 0.20524698495864868, + "learning_rate": 0.0006, + "loss": 3.600741147994995, + "step": 3667 + }, + { + "epoch": 50.95063346439493, + "grad_norm": 0.1922466903924942, + "learning_rate": 0.0006, + "loss": 3.5984225273132324, + "step": 3668 + }, + { + "epoch": 50.964613368283096, + "grad_norm": 0.18852637708187103, + "learning_rate": 0.0006, + "loss": 3.6204333305358887, + "step": 3669 + }, + { + "epoch": 50.97859327217125, + "grad_norm": 0.22050459682941437, + "learning_rate": 0.0006, + "loss": 3.6371538639068604, + "step": 3670 + }, + { + "epoch": 50.992573176059416, + "grad_norm": 0.21477681398391724, + "learning_rate": 0.0006, + "loss": 3.608738899230957, + "step": 3671 + }, + { + "epoch": 51.0, + "grad_norm": 0.22061094641685486, + "learning_rate": 0.0006, + "loss": 3.6209959983825684, + "step": 3672 + }, + { + "epoch": 51.0, + "eval_loss": 3.9762842655181885, + "eval_runtime": 44.8353, + "eval_samples_per_second": 54.466, + "eval_steps_per_second": 3.412, + "step": 3672 + }, + { + "epoch": 51.01397990388816, + "grad_norm": 0.19009192287921906, + "learning_rate": 0.0006, + "loss": 3.5604426860809326, + "step": 3673 + }, + { + "epoch": 51.02795980777632, + "grad_norm": 0.2217264175415039, + "learning_rate": 0.0006, + "loss": 3.5595664978027344, + "step": 3674 + }, + { + "epoch": 51.04193971166448, + "grad_norm": 0.2747595012187958, + "learning_rate": 0.0006, + "loss": 3.5800085067749023, + "step": 3675 + }, + { + "epoch": 51.05591961555265, + "grad_norm": 0.26963043212890625, + "learning_rate": 0.0006, + "loss": 3.5529065132141113, + "step": 3676 + }, + { + "epoch": 51.0698995194408, + "grad_norm": 0.2304207682609558, + "learning_rate": 0.0006, + "loss": 3.585238456726074, + "step": 3677 + }, + { + "epoch": 51.083879423328966, + "grad_norm": 0.22073867917060852, + "learning_rate": 0.0006, + "loss": 3.542267322540283, + "step": 3678 + }, + { + "epoch": 51.09785932721712, + "grad_norm": 0.22550931572914124, + "learning_rate": 0.0006, + "loss": 3.5693743228912354, + "step": 3679 + }, + { + "epoch": 51.111839231105286, + "grad_norm": 0.2347114384174347, + "learning_rate": 0.0006, + "loss": 3.5830154418945312, + "step": 3680 + }, + { + "epoch": 51.12581913499345, + "grad_norm": 0.24889813363552094, + "learning_rate": 0.0006, + "loss": 3.581010341644287, + "step": 3681 + }, + { + "epoch": 51.139799038881605, + "grad_norm": 0.2401021122932434, + "learning_rate": 0.0006, + "loss": 3.619450092315674, + "step": 3682 + }, + { + "epoch": 51.15377894276977, + "grad_norm": 0.22221142053604126, + "learning_rate": 0.0006, + "loss": 3.573624610900879, + "step": 3683 + }, + { + "epoch": 51.16775884665793, + "grad_norm": 0.2429024577140808, + "learning_rate": 0.0006, + "loss": 3.548610210418701, + "step": 3684 + }, + { + "epoch": 51.18173875054609, + "grad_norm": 0.26470765471458435, + "learning_rate": 0.0006, + "loss": 3.5582218170166016, + "step": 3685 + }, + { + "epoch": 51.19571865443425, + "grad_norm": 0.2632715404033661, + "learning_rate": 0.0006, + "loss": 3.5976979732513428, + "step": 3686 + }, + { + "epoch": 51.20969855832241, + "grad_norm": 0.2567448616027832, + "learning_rate": 0.0006, + "loss": 3.592031478881836, + "step": 3687 + }, + { + "epoch": 51.22367846221057, + "grad_norm": 0.25299885869026184, + "learning_rate": 0.0006, + "loss": 3.579765796661377, + "step": 3688 + }, + { + "epoch": 51.237658366098735, + "grad_norm": 0.22765189409255981, + "learning_rate": 0.0006, + "loss": 3.5677521228790283, + "step": 3689 + }, + { + "epoch": 51.25163826998689, + "grad_norm": 0.23369887471199036, + "learning_rate": 0.0006, + "loss": 3.585879325866699, + "step": 3690 + }, + { + "epoch": 51.265618173875055, + "grad_norm": 0.21358822286128998, + "learning_rate": 0.0006, + "loss": 3.568866729736328, + "step": 3691 + }, + { + "epoch": 51.27959807776322, + "grad_norm": 0.2127659171819687, + "learning_rate": 0.0006, + "loss": 3.614520311355591, + "step": 3692 + }, + { + "epoch": 51.293577981651374, + "grad_norm": 0.22829636931419373, + "learning_rate": 0.0006, + "loss": 3.6004438400268555, + "step": 3693 + }, + { + "epoch": 51.30755788553954, + "grad_norm": 0.223104789853096, + "learning_rate": 0.0006, + "loss": 3.5791001319885254, + "step": 3694 + }, + { + "epoch": 51.3215377894277, + "grad_norm": 0.2084331065416336, + "learning_rate": 0.0006, + "loss": 3.572514295578003, + "step": 3695 + }, + { + "epoch": 51.33551769331586, + "grad_norm": 0.21115142107009888, + "learning_rate": 0.0006, + "loss": 3.5736331939697266, + "step": 3696 + }, + { + "epoch": 51.34949759720402, + "grad_norm": 0.2158546894788742, + "learning_rate": 0.0006, + "loss": 3.587161064147949, + "step": 3697 + }, + { + "epoch": 51.36347750109218, + "grad_norm": 0.2478281408548355, + "learning_rate": 0.0006, + "loss": 3.5879693031311035, + "step": 3698 + }, + { + "epoch": 51.37745740498034, + "grad_norm": 0.25137850642204285, + "learning_rate": 0.0006, + "loss": 3.58297061920166, + "step": 3699 + }, + { + "epoch": 51.391437308868504, + "grad_norm": 0.22961364686489105, + "learning_rate": 0.0006, + "loss": 3.5556459426879883, + "step": 3700 + }, + { + "epoch": 51.40541721275666, + "grad_norm": 0.22561277449131012, + "learning_rate": 0.0006, + "loss": 3.60197114944458, + "step": 3701 + }, + { + "epoch": 51.419397116644824, + "grad_norm": 0.20331767201423645, + "learning_rate": 0.0006, + "loss": 3.5815134048461914, + "step": 3702 + }, + { + "epoch": 51.43337702053299, + "grad_norm": 0.1941518634557724, + "learning_rate": 0.0006, + "loss": 3.6055145263671875, + "step": 3703 + }, + { + "epoch": 51.44735692442114, + "grad_norm": 0.19306789338588715, + "learning_rate": 0.0006, + "loss": 3.6101536750793457, + "step": 3704 + }, + { + "epoch": 51.46133682830931, + "grad_norm": 0.1830628365278244, + "learning_rate": 0.0006, + "loss": 3.5978426933288574, + "step": 3705 + }, + { + "epoch": 51.47531673219746, + "grad_norm": 0.19231490790843964, + "learning_rate": 0.0006, + "loss": 3.54502534866333, + "step": 3706 + }, + { + "epoch": 51.489296636085626, + "grad_norm": 0.19109117984771729, + "learning_rate": 0.0006, + "loss": 3.5957441329956055, + "step": 3707 + }, + { + "epoch": 51.50327653997379, + "grad_norm": 0.2032860815525055, + "learning_rate": 0.0006, + "loss": 3.5626730918884277, + "step": 3708 + }, + { + "epoch": 51.517256443861946, + "grad_norm": 0.19685189425945282, + "learning_rate": 0.0006, + "loss": 3.580399990081787, + "step": 3709 + }, + { + "epoch": 51.53123634775011, + "grad_norm": 0.19273017346858978, + "learning_rate": 0.0006, + "loss": 3.5428152084350586, + "step": 3710 + }, + { + "epoch": 51.54521625163827, + "grad_norm": 0.20198430120944977, + "learning_rate": 0.0006, + "loss": 3.607492446899414, + "step": 3711 + }, + { + "epoch": 51.55919615552643, + "grad_norm": 0.2267402559518814, + "learning_rate": 0.0006, + "loss": 3.580479621887207, + "step": 3712 + }, + { + "epoch": 51.57317605941459, + "grad_norm": 0.2247764617204666, + "learning_rate": 0.0006, + "loss": 3.5921316146850586, + "step": 3713 + }, + { + "epoch": 51.58715596330275, + "grad_norm": 0.23907902836799622, + "learning_rate": 0.0006, + "loss": 3.6014928817749023, + "step": 3714 + }, + { + "epoch": 51.60113586719091, + "grad_norm": 0.25907906889915466, + "learning_rate": 0.0006, + "loss": 3.5900192260742188, + "step": 3715 + }, + { + "epoch": 51.615115771079076, + "grad_norm": 0.26282405853271484, + "learning_rate": 0.0006, + "loss": 3.5727553367614746, + "step": 3716 + }, + { + "epoch": 51.62909567496723, + "grad_norm": 0.2541179060935974, + "learning_rate": 0.0006, + "loss": 3.5835776329040527, + "step": 3717 + }, + { + "epoch": 51.643075578855395, + "grad_norm": 0.23372016847133636, + "learning_rate": 0.0006, + "loss": 3.5902652740478516, + "step": 3718 + }, + { + "epoch": 51.65705548274356, + "grad_norm": 0.22827622294425964, + "learning_rate": 0.0006, + "loss": 3.6048200130462646, + "step": 3719 + }, + { + "epoch": 51.671035386631715, + "grad_norm": 0.21026845276355743, + "learning_rate": 0.0006, + "loss": 3.5587573051452637, + "step": 3720 + }, + { + "epoch": 51.68501529051988, + "grad_norm": 0.23485958576202393, + "learning_rate": 0.0006, + "loss": 3.6212477684020996, + "step": 3721 + }, + { + "epoch": 51.69899519440804, + "grad_norm": 0.2676871120929718, + "learning_rate": 0.0006, + "loss": 3.597837448120117, + "step": 3722 + }, + { + "epoch": 51.7129750982962, + "grad_norm": 0.23661476373672485, + "learning_rate": 0.0006, + "loss": 3.616079330444336, + "step": 3723 + }, + { + "epoch": 51.72695500218436, + "grad_norm": 0.2212267816066742, + "learning_rate": 0.0006, + "loss": 3.6103296279907227, + "step": 3724 + }, + { + "epoch": 51.74093490607252, + "grad_norm": 0.22888682782649994, + "learning_rate": 0.0006, + "loss": 3.6099889278411865, + "step": 3725 + }, + { + "epoch": 51.75491480996068, + "grad_norm": 0.21740387380123138, + "learning_rate": 0.0006, + "loss": 3.5859200954437256, + "step": 3726 + }, + { + "epoch": 51.768894713848844, + "grad_norm": 0.20819106698036194, + "learning_rate": 0.0006, + "loss": 3.5875396728515625, + "step": 3727 + }, + { + "epoch": 51.782874617737, + "grad_norm": 0.21574485301971436, + "learning_rate": 0.0006, + "loss": 3.6203761100769043, + "step": 3728 + }, + { + "epoch": 51.796854521625164, + "grad_norm": 0.21275651454925537, + "learning_rate": 0.0006, + "loss": 3.6066012382507324, + "step": 3729 + }, + { + "epoch": 51.81083442551333, + "grad_norm": 0.2043808251619339, + "learning_rate": 0.0006, + "loss": 3.571417808532715, + "step": 3730 + }, + { + "epoch": 51.824814329401484, + "grad_norm": 0.2082396298646927, + "learning_rate": 0.0006, + "loss": 3.6076579093933105, + "step": 3731 + }, + { + "epoch": 51.83879423328965, + "grad_norm": 0.23331953585147858, + "learning_rate": 0.0006, + "loss": 3.621837615966797, + "step": 3732 + }, + { + "epoch": 51.8527741371778, + "grad_norm": 0.25569960474967957, + "learning_rate": 0.0006, + "loss": 3.602004051208496, + "step": 3733 + }, + { + "epoch": 51.86675404106597, + "grad_norm": 0.230540469288826, + "learning_rate": 0.0006, + "loss": 3.5829110145568848, + "step": 3734 + }, + { + "epoch": 51.88073394495413, + "grad_norm": 0.20307230949401855, + "learning_rate": 0.0006, + "loss": 3.5572190284729004, + "step": 3735 + }, + { + "epoch": 51.89471384884229, + "grad_norm": 0.20902153849601746, + "learning_rate": 0.0006, + "loss": 3.5939853191375732, + "step": 3736 + }, + { + "epoch": 51.90869375273045, + "grad_norm": 0.20433510839939117, + "learning_rate": 0.0006, + "loss": 3.6104702949523926, + "step": 3737 + }, + { + "epoch": 51.92267365661861, + "grad_norm": 0.2285638302564621, + "learning_rate": 0.0006, + "loss": 3.5588834285736084, + "step": 3738 + }, + { + "epoch": 51.93665356050677, + "grad_norm": 0.2388262301683426, + "learning_rate": 0.0006, + "loss": 3.6203103065490723, + "step": 3739 + }, + { + "epoch": 51.95063346439493, + "grad_norm": 0.22572419047355652, + "learning_rate": 0.0006, + "loss": 3.6191892623901367, + "step": 3740 + }, + { + "epoch": 51.964613368283096, + "grad_norm": 0.21060727536678314, + "learning_rate": 0.0006, + "loss": 3.620879650115967, + "step": 3741 + }, + { + "epoch": 51.97859327217125, + "grad_norm": 0.2045326828956604, + "learning_rate": 0.0006, + "loss": 3.5959091186523438, + "step": 3742 + }, + { + "epoch": 51.992573176059416, + "grad_norm": 0.21882471442222595, + "learning_rate": 0.0006, + "loss": 3.6504573822021484, + "step": 3743 + }, + { + "epoch": 52.0, + "grad_norm": 0.24379056692123413, + "learning_rate": 0.0006, + "loss": 3.6293625831604004, + "step": 3744 + }, + { + "epoch": 52.0, + "eval_loss": 3.9772427082061768, + "eval_runtime": 44.248, + "eval_samples_per_second": 55.189, + "eval_steps_per_second": 3.458, + "step": 3744 + }, + { + "epoch": 52.01397990388816, + "grad_norm": 0.19682207703590393, + "learning_rate": 0.0006, + "loss": 3.604281425476074, + "step": 3745 + }, + { + "epoch": 52.02795980777632, + "grad_norm": 0.23003028333187103, + "learning_rate": 0.0006, + "loss": 3.588266372680664, + "step": 3746 + }, + { + "epoch": 52.04193971166448, + "grad_norm": 0.2458166778087616, + "learning_rate": 0.0006, + "loss": 3.59077787399292, + "step": 3747 + }, + { + "epoch": 52.05591961555265, + "grad_norm": 0.23873521387577057, + "learning_rate": 0.0006, + "loss": 3.556537628173828, + "step": 3748 + }, + { + "epoch": 52.0698995194408, + "grad_norm": 0.21737053990364075, + "learning_rate": 0.0006, + "loss": 3.5758891105651855, + "step": 3749 + }, + { + "epoch": 52.083879423328966, + "grad_norm": 0.22239601612091064, + "learning_rate": 0.0006, + "loss": 3.552678346633911, + "step": 3750 + }, + { + "epoch": 52.09785932721712, + "grad_norm": 0.21818044781684875, + "learning_rate": 0.0006, + "loss": 3.577249526977539, + "step": 3751 + }, + { + "epoch": 52.111839231105286, + "grad_norm": 0.24513746798038483, + "learning_rate": 0.0006, + "loss": 3.569178581237793, + "step": 3752 + }, + { + "epoch": 52.12581913499345, + "grad_norm": 0.2801238000392914, + "learning_rate": 0.0006, + "loss": 3.556199073791504, + "step": 3753 + }, + { + "epoch": 52.139799038881605, + "grad_norm": 0.2722291648387909, + "learning_rate": 0.0006, + "loss": 3.5571072101593018, + "step": 3754 + }, + { + "epoch": 52.15377894276977, + "grad_norm": 0.2146541327238083, + "learning_rate": 0.0006, + "loss": 3.5831902027130127, + "step": 3755 + }, + { + "epoch": 52.16775884665793, + "grad_norm": 0.21040776371955872, + "learning_rate": 0.0006, + "loss": 3.6021504402160645, + "step": 3756 + }, + { + "epoch": 52.18173875054609, + "grad_norm": 0.24059702455997467, + "learning_rate": 0.0006, + "loss": 3.57401704788208, + "step": 3757 + }, + { + "epoch": 52.19571865443425, + "grad_norm": 0.25043657422065735, + "learning_rate": 0.0006, + "loss": 3.5776405334472656, + "step": 3758 + }, + { + "epoch": 52.20969855832241, + "grad_norm": 0.24292849004268646, + "learning_rate": 0.0006, + "loss": 3.5602574348449707, + "step": 3759 + }, + { + "epoch": 52.22367846221057, + "grad_norm": 0.2159980833530426, + "learning_rate": 0.0006, + "loss": 3.552079200744629, + "step": 3760 + }, + { + "epoch": 52.237658366098735, + "grad_norm": 0.19305892288684845, + "learning_rate": 0.0006, + "loss": 3.581195831298828, + "step": 3761 + }, + { + "epoch": 52.25163826998689, + "grad_norm": 0.2115706503391266, + "learning_rate": 0.0006, + "loss": 3.5689306259155273, + "step": 3762 + }, + { + "epoch": 52.265618173875055, + "grad_norm": 0.21885409951210022, + "learning_rate": 0.0006, + "loss": 3.5549206733703613, + "step": 3763 + }, + { + "epoch": 52.27959807776322, + "grad_norm": 0.2069413661956787, + "learning_rate": 0.0006, + "loss": 3.5743770599365234, + "step": 3764 + }, + { + "epoch": 52.293577981651374, + "grad_norm": 0.21922551095485687, + "learning_rate": 0.0006, + "loss": 3.5780110359191895, + "step": 3765 + }, + { + "epoch": 52.30755788553954, + "grad_norm": 0.21675541996955872, + "learning_rate": 0.0006, + "loss": 3.575730800628662, + "step": 3766 + }, + { + "epoch": 52.3215377894277, + "grad_norm": 0.21250510215759277, + "learning_rate": 0.0006, + "loss": 3.546060085296631, + "step": 3767 + }, + { + "epoch": 52.33551769331586, + "grad_norm": 0.23665618896484375, + "learning_rate": 0.0006, + "loss": 3.5887606143951416, + "step": 3768 + }, + { + "epoch": 52.34949759720402, + "grad_norm": 0.2525961399078369, + "learning_rate": 0.0006, + "loss": 3.5885281562805176, + "step": 3769 + }, + { + "epoch": 52.36347750109218, + "grad_norm": 0.26285895705223083, + "learning_rate": 0.0006, + "loss": 3.5880684852600098, + "step": 3770 + }, + { + "epoch": 52.37745740498034, + "grad_norm": 0.24714398384094238, + "learning_rate": 0.0006, + "loss": 3.548165798187256, + "step": 3771 + }, + { + "epoch": 52.391437308868504, + "grad_norm": 0.2234657257795334, + "learning_rate": 0.0006, + "loss": 3.56547212600708, + "step": 3772 + }, + { + "epoch": 52.40541721275666, + "grad_norm": 0.20636901259422302, + "learning_rate": 0.0006, + "loss": 3.5702133178710938, + "step": 3773 + }, + { + "epoch": 52.419397116644824, + "grad_norm": 0.20656965672969818, + "learning_rate": 0.0006, + "loss": 3.614602565765381, + "step": 3774 + }, + { + "epoch": 52.43337702053299, + "grad_norm": 0.20018167793750763, + "learning_rate": 0.0006, + "loss": 3.6063036918640137, + "step": 3775 + }, + { + "epoch": 52.44735692442114, + "grad_norm": 0.21859782934188843, + "learning_rate": 0.0006, + "loss": 3.5728869438171387, + "step": 3776 + }, + { + "epoch": 52.46133682830931, + "grad_norm": 0.21622174978256226, + "learning_rate": 0.0006, + "loss": 3.5657505989074707, + "step": 3777 + }, + { + "epoch": 52.47531673219746, + "grad_norm": 0.19779632985591888, + "learning_rate": 0.0006, + "loss": 3.5841145515441895, + "step": 3778 + }, + { + "epoch": 52.489296636085626, + "grad_norm": 0.21635952591896057, + "learning_rate": 0.0006, + "loss": 3.582096576690674, + "step": 3779 + }, + { + "epoch": 52.50327653997379, + "grad_norm": 0.21348397433757782, + "learning_rate": 0.0006, + "loss": 3.5654468536376953, + "step": 3780 + }, + { + "epoch": 52.517256443861946, + "grad_norm": 0.19572246074676514, + "learning_rate": 0.0006, + "loss": 3.5806241035461426, + "step": 3781 + }, + { + "epoch": 52.53123634775011, + "grad_norm": 0.1887553185224533, + "learning_rate": 0.0006, + "loss": 3.5752944946289062, + "step": 3782 + }, + { + "epoch": 52.54521625163827, + "grad_norm": 0.2192932814359665, + "learning_rate": 0.0006, + "loss": 3.5846266746520996, + "step": 3783 + }, + { + "epoch": 52.55919615552643, + "grad_norm": 0.23833444714546204, + "learning_rate": 0.0006, + "loss": 3.563093900680542, + "step": 3784 + }, + { + "epoch": 52.57317605941459, + "grad_norm": 0.26471760869026184, + "learning_rate": 0.0006, + "loss": 3.5582051277160645, + "step": 3785 + }, + { + "epoch": 52.58715596330275, + "grad_norm": 0.2767478823661804, + "learning_rate": 0.0006, + "loss": 3.5650997161865234, + "step": 3786 + }, + { + "epoch": 52.60113586719091, + "grad_norm": 0.26556241512298584, + "learning_rate": 0.0006, + "loss": 3.5944058895111084, + "step": 3787 + }, + { + "epoch": 52.615115771079076, + "grad_norm": 0.2733243405818939, + "learning_rate": 0.0006, + "loss": 3.5781195163726807, + "step": 3788 + }, + { + "epoch": 52.62909567496723, + "grad_norm": 0.24836041033267975, + "learning_rate": 0.0006, + "loss": 3.582634687423706, + "step": 3789 + }, + { + "epoch": 52.643075578855395, + "grad_norm": 0.2119593471288681, + "learning_rate": 0.0006, + "loss": 3.5851502418518066, + "step": 3790 + }, + { + "epoch": 52.65705548274356, + "grad_norm": 0.23237599432468414, + "learning_rate": 0.0006, + "loss": 3.5877747535705566, + "step": 3791 + }, + { + "epoch": 52.671035386631715, + "grad_norm": 0.21037372946739197, + "learning_rate": 0.0006, + "loss": 3.579045295715332, + "step": 3792 + }, + { + "epoch": 52.68501529051988, + "grad_norm": 0.19258099794387817, + "learning_rate": 0.0006, + "loss": 3.599151611328125, + "step": 3793 + }, + { + "epoch": 52.69899519440804, + "grad_norm": 0.18808242678642273, + "learning_rate": 0.0006, + "loss": 3.580679416656494, + "step": 3794 + }, + { + "epoch": 52.7129750982962, + "grad_norm": 0.18208397924900055, + "learning_rate": 0.0006, + "loss": 3.5940206050872803, + "step": 3795 + }, + { + "epoch": 52.72695500218436, + "grad_norm": 0.18173424899578094, + "learning_rate": 0.0006, + "loss": 3.5997331142425537, + "step": 3796 + }, + { + "epoch": 52.74093490607252, + "grad_norm": 0.1868390142917633, + "learning_rate": 0.0006, + "loss": 3.60007905960083, + "step": 3797 + }, + { + "epoch": 52.75491480996068, + "grad_norm": 0.1859273761510849, + "learning_rate": 0.0006, + "loss": 3.602668285369873, + "step": 3798 + }, + { + "epoch": 52.768894713848844, + "grad_norm": 0.18063156306743622, + "learning_rate": 0.0006, + "loss": 3.579869270324707, + "step": 3799 + }, + { + "epoch": 52.782874617737, + "grad_norm": 0.18920548260211945, + "learning_rate": 0.0006, + "loss": 3.6056337356567383, + "step": 3800 + }, + { + "epoch": 52.796854521625164, + "grad_norm": 0.20110033452510834, + "learning_rate": 0.0006, + "loss": 3.5694475173950195, + "step": 3801 + }, + { + "epoch": 52.81083442551333, + "grad_norm": 0.20331093668937683, + "learning_rate": 0.0006, + "loss": 3.5940358638763428, + "step": 3802 + }, + { + "epoch": 52.824814329401484, + "grad_norm": 0.2035607248544693, + "learning_rate": 0.0006, + "loss": 3.621305465698242, + "step": 3803 + }, + { + "epoch": 52.83879423328965, + "grad_norm": 0.1974431872367859, + "learning_rate": 0.0006, + "loss": 3.5959153175354004, + "step": 3804 + }, + { + "epoch": 52.8527741371778, + "grad_norm": 0.1832808405160904, + "learning_rate": 0.0006, + "loss": 3.582113265991211, + "step": 3805 + }, + { + "epoch": 52.86675404106597, + "grad_norm": 0.20269927382469177, + "learning_rate": 0.0006, + "loss": 3.5923209190368652, + "step": 3806 + }, + { + "epoch": 52.88073394495413, + "grad_norm": 0.20628313720226288, + "learning_rate": 0.0006, + "loss": 3.599729537963867, + "step": 3807 + }, + { + "epoch": 52.89471384884229, + "grad_norm": 0.2144002914428711, + "learning_rate": 0.0006, + "loss": 3.601041793823242, + "step": 3808 + }, + { + "epoch": 52.90869375273045, + "grad_norm": 0.215015709400177, + "learning_rate": 0.0006, + "loss": 3.5873360633850098, + "step": 3809 + }, + { + "epoch": 52.92267365661861, + "grad_norm": 0.23122714459896088, + "learning_rate": 0.0006, + "loss": 3.5839362144470215, + "step": 3810 + }, + { + "epoch": 52.93665356050677, + "grad_norm": 0.2381119281053543, + "learning_rate": 0.0006, + "loss": 3.564755439758301, + "step": 3811 + }, + { + "epoch": 52.95063346439493, + "grad_norm": 0.22975024580955505, + "learning_rate": 0.0006, + "loss": 3.594020128250122, + "step": 3812 + }, + { + "epoch": 52.964613368283096, + "grad_norm": 0.2419184148311615, + "learning_rate": 0.0006, + "loss": 3.5917205810546875, + "step": 3813 + }, + { + "epoch": 52.97859327217125, + "grad_norm": 0.21143122017383575, + "learning_rate": 0.0006, + "loss": 3.626842975616455, + "step": 3814 + }, + { + "epoch": 52.992573176059416, + "grad_norm": 0.195548415184021, + "learning_rate": 0.0006, + "loss": 3.5798377990722656, + "step": 3815 + }, + { + "epoch": 53.0, + "grad_norm": 0.22441816329956055, + "learning_rate": 0.0006, + "loss": 3.5652856826782227, + "step": 3816 + }, + { + "epoch": 53.0, + "eval_loss": 3.9635632038116455, + "eval_runtime": 44.772, + "eval_samples_per_second": 54.543, + "eval_steps_per_second": 3.417, + "step": 3816 + }, + { + "epoch": 53.01397990388816, + "grad_norm": 0.2547561228275299, + "learning_rate": 0.0006, + "loss": 3.562561511993408, + "step": 3817 + }, + { + "epoch": 53.02795980777632, + "grad_norm": 0.36890196800231934, + "learning_rate": 0.0006, + "loss": 3.534581184387207, + "step": 3818 + }, + { + "epoch": 53.04193971166448, + "grad_norm": 0.42631810903549194, + "learning_rate": 0.0006, + "loss": 3.5438239574432373, + "step": 3819 + }, + { + "epoch": 53.05591961555265, + "grad_norm": 0.29458126425743103, + "learning_rate": 0.0006, + "loss": 3.5594735145568848, + "step": 3820 + }, + { + "epoch": 53.0698995194408, + "grad_norm": 0.24320989847183228, + "learning_rate": 0.0006, + "loss": 3.5715155601501465, + "step": 3821 + }, + { + "epoch": 53.083879423328966, + "grad_norm": 0.3012531101703644, + "learning_rate": 0.0006, + "loss": 3.5324978828430176, + "step": 3822 + }, + { + "epoch": 53.09785932721712, + "grad_norm": 0.2789555788040161, + "learning_rate": 0.0006, + "loss": 3.5848183631896973, + "step": 3823 + }, + { + "epoch": 53.111839231105286, + "grad_norm": 0.2488897293806076, + "learning_rate": 0.0006, + "loss": 3.5853679180145264, + "step": 3824 + }, + { + "epoch": 53.12581913499345, + "grad_norm": 0.3016898036003113, + "learning_rate": 0.0006, + "loss": 3.585637092590332, + "step": 3825 + }, + { + "epoch": 53.139799038881605, + "grad_norm": 0.30293571949005127, + "learning_rate": 0.0006, + "loss": 3.5745015144348145, + "step": 3826 + }, + { + "epoch": 53.15377894276977, + "grad_norm": 0.24611566960811615, + "learning_rate": 0.0006, + "loss": 3.5761728286743164, + "step": 3827 + }, + { + "epoch": 53.16775884665793, + "grad_norm": 0.23852500319480896, + "learning_rate": 0.0006, + "loss": 3.59317946434021, + "step": 3828 + }, + { + "epoch": 53.18173875054609, + "grad_norm": 0.27882838249206543, + "learning_rate": 0.0006, + "loss": 3.589779853820801, + "step": 3829 + }, + { + "epoch": 53.19571865443425, + "grad_norm": 0.3252250552177429, + "learning_rate": 0.0006, + "loss": 3.564526081085205, + "step": 3830 + }, + { + "epoch": 53.20969855832241, + "grad_norm": 0.29635530710220337, + "learning_rate": 0.0006, + "loss": 3.5309946537017822, + "step": 3831 + }, + { + "epoch": 53.22367846221057, + "grad_norm": 0.25211700797080994, + "learning_rate": 0.0006, + "loss": 3.5795631408691406, + "step": 3832 + }, + { + "epoch": 53.237658366098735, + "grad_norm": 0.20772705972194672, + "learning_rate": 0.0006, + "loss": 3.5649163722991943, + "step": 3833 + }, + { + "epoch": 53.25163826998689, + "grad_norm": 0.2460525780916214, + "learning_rate": 0.0006, + "loss": 3.5484111309051514, + "step": 3834 + }, + { + "epoch": 53.265618173875055, + "grad_norm": 0.24652884900569916, + "learning_rate": 0.0006, + "loss": 3.5631136894226074, + "step": 3835 + }, + { + "epoch": 53.27959807776322, + "grad_norm": 0.23740890622138977, + "learning_rate": 0.0006, + "loss": 3.6234607696533203, + "step": 3836 + }, + { + "epoch": 53.293577981651374, + "grad_norm": 0.2463800311088562, + "learning_rate": 0.0006, + "loss": 3.5578083992004395, + "step": 3837 + }, + { + "epoch": 53.30755788553954, + "grad_norm": 0.23402568697929382, + "learning_rate": 0.0006, + "loss": 3.559845209121704, + "step": 3838 + }, + { + "epoch": 53.3215377894277, + "grad_norm": 0.2539580762386322, + "learning_rate": 0.0006, + "loss": 3.5863685607910156, + "step": 3839 + }, + { + "epoch": 53.33551769331586, + "grad_norm": 0.24994857609272003, + "learning_rate": 0.0006, + "loss": 3.5758700370788574, + "step": 3840 + }, + { + "epoch": 53.34949759720402, + "grad_norm": 0.21340647339820862, + "learning_rate": 0.0006, + "loss": 3.588602066040039, + "step": 3841 + }, + { + "epoch": 53.36347750109218, + "grad_norm": 0.2029065042734146, + "learning_rate": 0.0006, + "loss": 3.58594012260437, + "step": 3842 + }, + { + "epoch": 53.37745740498034, + "grad_norm": 0.20266403257846832, + "learning_rate": 0.0006, + "loss": 3.5906057357788086, + "step": 3843 + }, + { + "epoch": 53.391437308868504, + "grad_norm": 0.19940714538097382, + "learning_rate": 0.0006, + "loss": 3.5458335876464844, + "step": 3844 + }, + { + "epoch": 53.40541721275666, + "grad_norm": 0.21295064687728882, + "learning_rate": 0.0006, + "loss": 3.5589025020599365, + "step": 3845 + }, + { + "epoch": 53.419397116644824, + "grad_norm": 0.2150672823190689, + "learning_rate": 0.0006, + "loss": 3.5907669067382812, + "step": 3846 + }, + { + "epoch": 53.43337702053299, + "grad_norm": 0.21469077467918396, + "learning_rate": 0.0006, + "loss": 3.5403499603271484, + "step": 3847 + }, + { + "epoch": 53.44735692442114, + "grad_norm": 0.20485323667526245, + "learning_rate": 0.0006, + "loss": 3.5634326934814453, + "step": 3848 + }, + { + "epoch": 53.46133682830931, + "grad_norm": 0.1981327086687088, + "learning_rate": 0.0006, + "loss": 3.579385280609131, + "step": 3849 + }, + { + "epoch": 53.47531673219746, + "grad_norm": 0.1898331642150879, + "learning_rate": 0.0006, + "loss": 3.5824122428894043, + "step": 3850 + }, + { + "epoch": 53.489296636085626, + "grad_norm": 0.18228355050086975, + "learning_rate": 0.0006, + "loss": 3.533255100250244, + "step": 3851 + }, + { + "epoch": 53.50327653997379, + "grad_norm": 0.1803922951221466, + "learning_rate": 0.0006, + "loss": 3.589881420135498, + "step": 3852 + }, + { + "epoch": 53.517256443861946, + "grad_norm": 0.19590361416339874, + "learning_rate": 0.0006, + "loss": 3.599487066268921, + "step": 3853 + }, + { + "epoch": 53.53123634775011, + "grad_norm": 0.1935775727033615, + "learning_rate": 0.0006, + "loss": 3.5769765377044678, + "step": 3854 + }, + { + "epoch": 53.54521625163827, + "grad_norm": 0.1790810525417328, + "learning_rate": 0.0006, + "loss": 3.594104290008545, + "step": 3855 + }, + { + "epoch": 53.55919615552643, + "grad_norm": 0.17993320524692535, + "learning_rate": 0.0006, + "loss": 3.555650234222412, + "step": 3856 + }, + { + "epoch": 53.57317605941459, + "grad_norm": 0.19114883244037628, + "learning_rate": 0.0006, + "loss": 3.599574089050293, + "step": 3857 + }, + { + "epoch": 53.58715596330275, + "grad_norm": 0.18493886291980743, + "learning_rate": 0.0006, + "loss": 3.555177927017212, + "step": 3858 + }, + { + "epoch": 53.60113586719091, + "grad_norm": 0.19346027076244354, + "learning_rate": 0.0006, + "loss": 3.601219654083252, + "step": 3859 + }, + { + "epoch": 53.615115771079076, + "grad_norm": 0.2002234011888504, + "learning_rate": 0.0006, + "loss": 3.5614418983459473, + "step": 3860 + }, + { + "epoch": 53.62909567496723, + "grad_norm": 0.17705366015434265, + "learning_rate": 0.0006, + "loss": 3.587432384490967, + "step": 3861 + }, + { + "epoch": 53.643075578855395, + "grad_norm": 0.19825726747512817, + "learning_rate": 0.0006, + "loss": 3.570539951324463, + "step": 3862 + }, + { + "epoch": 53.65705548274356, + "grad_norm": 0.2038952112197876, + "learning_rate": 0.0006, + "loss": 3.575758934020996, + "step": 3863 + }, + { + "epoch": 53.671035386631715, + "grad_norm": 0.21109119057655334, + "learning_rate": 0.0006, + "loss": 3.6013951301574707, + "step": 3864 + }, + { + "epoch": 53.68501529051988, + "grad_norm": 0.21738514304161072, + "learning_rate": 0.0006, + "loss": 3.567424774169922, + "step": 3865 + }, + { + "epoch": 53.69899519440804, + "grad_norm": 0.214813694357872, + "learning_rate": 0.0006, + "loss": 3.599733352661133, + "step": 3866 + }, + { + "epoch": 53.7129750982962, + "grad_norm": 0.20838409662246704, + "learning_rate": 0.0006, + "loss": 3.595839738845825, + "step": 3867 + }, + { + "epoch": 53.72695500218436, + "grad_norm": 0.2088911384344101, + "learning_rate": 0.0006, + "loss": 3.6030569076538086, + "step": 3868 + }, + { + "epoch": 53.74093490607252, + "grad_norm": 0.22705569863319397, + "learning_rate": 0.0006, + "loss": 3.5876665115356445, + "step": 3869 + }, + { + "epoch": 53.75491480996068, + "grad_norm": 0.22327932715415955, + "learning_rate": 0.0006, + "loss": 3.5555529594421387, + "step": 3870 + }, + { + "epoch": 53.768894713848844, + "grad_norm": 0.2092375010251999, + "learning_rate": 0.0006, + "loss": 3.599871873855591, + "step": 3871 + }, + { + "epoch": 53.782874617737, + "grad_norm": 0.20672307908535004, + "learning_rate": 0.0006, + "loss": 3.598846435546875, + "step": 3872 + }, + { + "epoch": 53.796854521625164, + "grad_norm": 0.2090507596731186, + "learning_rate": 0.0006, + "loss": 3.564012050628662, + "step": 3873 + }, + { + "epoch": 53.81083442551333, + "grad_norm": 0.2044386863708496, + "learning_rate": 0.0006, + "loss": 3.585221529006958, + "step": 3874 + }, + { + "epoch": 53.824814329401484, + "grad_norm": 0.2065548598766327, + "learning_rate": 0.0006, + "loss": 3.595351457595825, + "step": 3875 + }, + { + "epoch": 53.83879423328965, + "grad_norm": 0.22895927727222443, + "learning_rate": 0.0006, + "loss": 3.5720505714416504, + "step": 3876 + }, + { + "epoch": 53.8527741371778, + "grad_norm": 0.22099260985851288, + "learning_rate": 0.0006, + "loss": 3.572587251663208, + "step": 3877 + }, + { + "epoch": 53.86675404106597, + "grad_norm": 0.19928759336471558, + "learning_rate": 0.0006, + "loss": 3.5641839504241943, + "step": 3878 + }, + { + "epoch": 53.88073394495413, + "grad_norm": 0.2735077440738678, + "learning_rate": 0.0006, + "loss": 3.575535774230957, + "step": 3879 + }, + { + "epoch": 53.89471384884229, + "grad_norm": 0.2642554044723511, + "learning_rate": 0.0006, + "loss": 3.5993123054504395, + "step": 3880 + }, + { + "epoch": 53.90869375273045, + "grad_norm": 0.22406205534934998, + "learning_rate": 0.0006, + "loss": 3.5968177318573, + "step": 3881 + }, + { + "epoch": 53.92267365661861, + "grad_norm": 0.22148431837558746, + "learning_rate": 0.0006, + "loss": 3.5668797492980957, + "step": 3882 + }, + { + "epoch": 53.93665356050677, + "grad_norm": 0.20805056393146515, + "learning_rate": 0.0006, + "loss": 3.60849666595459, + "step": 3883 + }, + { + "epoch": 53.95063346439493, + "grad_norm": 0.18656247854232788, + "learning_rate": 0.0006, + "loss": 3.5883405208587646, + "step": 3884 + }, + { + "epoch": 53.964613368283096, + "grad_norm": 0.19937767088413239, + "learning_rate": 0.0006, + "loss": 3.5897698402404785, + "step": 3885 + }, + { + "epoch": 53.97859327217125, + "grad_norm": 0.19680732488632202, + "learning_rate": 0.0006, + "loss": 3.568530559539795, + "step": 3886 + }, + { + "epoch": 53.992573176059416, + "grad_norm": 0.218981072306633, + "learning_rate": 0.0006, + "loss": 3.6194474697113037, + "step": 3887 + }, + { + "epoch": 54.0, + "grad_norm": 0.26408281922340393, + "learning_rate": 0.0006, + "loss": 3.5224976539611816, + "step": 3888 + }, + { + "epoch": 54.0, + "eval_loss": 3.983997106552124, + "eval_runtime": 44.9507, + "eval_samples_per_second": 54.326, + "eval_steps_per_second": 3.404, + "step": 3888 + }, + { + "epoch": 54.01397990388816, + "grad_norm": 0.2230917066335678, + "learning_rate": 0.0006, + "loss": 3.578058958053589, + "step": 3889 + }, + { + "epoch": 54.02795980777632, + "grad_norm": 0.23055201768875122, + "learning_rate": 0.0006, + "loss": 3.549612283706665, + "step": 3890 + }, + { + "epoch": 54.04193971166448, + "grad_norm": 0.23317518830299377, + "learning_rate": 0.0006, + "loss": 3.5662591457366943, + "step": 3891 + }, + { + "epoch": 54.05591961555265, + "grad_norm": 0.27022141218185425, + "learning_rate": 0.0006, + "loss": 3.547062873840332, + "step": 3892 + }, + { + "epoch": 54.0698995194408, + "grad_norm": 0.2665329873561859, + "learning_rate": 0.0006, + "loss": 3.540881633758545, + "step": 3893 + }, + { + "epoch": 54.083879423328966, + "grad_norm": 0.23968365788459778, + "learning_rate": 0.0006, + "loss": 3.574781894683838, + "step": 3894 + }, + { + "epoch": 54.09785932721712, + "grad_norm": 0.22174887359142303, + "learning_rate": 0.0006, + "loss": 3.514077663421631, + "step": 3895 + }, + { + "epoch": 54.111839231105286, + "grad_norm": 0.24605485796928406, + "learning_rate": 0.0006, + "loss": 3.534174919128418, + "step": 3896 + }, + { + "epoch": 54.12581913499345, + "grad_norm": 0.22874566912651062, + "learning_rate": 0.0006, + "loss": 3.574282169342041, + "step": 3897 + }, + { + "epoch": 54.139799038881605, + "grad_norm": 0.2113833874464035, + "learning_rate": 0.0006, + "loss": 3.548687696456909, + "step": 3898 + }, + { + "epoch": 54.15377894276977, + "grad_norm": 0.20756855607032776, + "learning_rate": 0.0006, + "loss": 3.556060791015625, + "step": 3899 + }, + { + "epoch": 54.16775884665793, + "grad_norm": 0.2070261538028717, + "learning_rate": 0.0006, + "loss": 3.5585689544677734, + "step": 3900 + }, + { + "epoch": 54.18173875054609, + "grad_norm": 0.20014794170856476, + "learning_rate": 0.0006, + "loss": 3.5898427963256836, + "step": 3901 + }, + { + "epoch": 54.19571865443425, + "grad_norm": 0.19851888716220856, + "learning_rate": 0.0006, + "loss": 3.564826011657715, + "step": 3902 + }, + { + "epoch": 54.20969855832241, + "grad_norm": 0.20333127677440643, + "learning_rate": 0.0006, + "loss": 3.540660858154297, + "step": 3903 + }, + { + "epoch": 54.22367846221057, + "grad_norm": 0.20291075110435486, + "learning_rate": 0.0006, + "loss": 3.544628143310547, + "step": 3904 + }, + { + "epoch": 54.237658366098735, + "grad_norm": 0.2055949866771698, + "learning_rate": 0.0006, + "loss": 3.547478675842285, + "step": 3905 + }, + { + "epoch": 54.25163826998689, + "grad_norm": 0.20305688679218292, + "learning_rate": 0.0006, + "loss": 3.5793099403381348, + "step": 3906 + }, + { + "epoch": 54.265618173875055, + "grad_norm": 0.21053043007850647, + "learning_rate": 0.0006, + "loss": 3.529263973236084, + "step": 3907 + }, + { + "epoch": 54.27959807776322, + "grad_norm": 0.2461051046848297, + "learning_rate": 0.0006, + "loss": 3.598266124725342, + "step": 3908 + }, + { + "epoch": 54.293577981651374, + "grad_norm": 0.25074276328086853, + "learning_rate": 0.0006, + "loss": 3.557170867919922, + "step": 3909 + }, + { + "epoch": 54.30755788553954, + "grad_norm": 0.23321498930454254, + "learning_rate": 0.0006, + "loss": 3.5532279014587402, + "step": 3910 + }, + { + "epoch": 54.3215377894277, + "grad_norm": 0.19062374532222748, + "learning_rate": 0.0006, + "loss": 3.5718722343444824, + "step": 3911 + }, + { + "epoch": 54.33551769331586, + "grad_norm": 0.22571852803230286, + "learning_rate": 0.0006, + "loss": 3.539036750793457, + "step": 3912 + }, + { + "epoch": 54.34949759720402, + "grad_norm": 0.23314784467220306, + "learning_rate": 0.0006, + "loss": 3.5444631576538086, + "step": 3913 + }, + { + "epoch": 54.36347750109218, + "grad_norm": 0.22334037721157074, + "learning_rate": 0.0006, + "loss": 3.5567970275878906, + "step": 3914 + }, + { + "epoch": 54.37745740498034, + "grad_norm": 0.21900276839733124, + "learning_rate": 0.0006, + "loss": 3.600113868713379, + "step": 3915 + }, + { + "epoch": 54.391437308868504, + "grad_norm": 0.20166733860969543, + "learning_rate": 0.0006, + "loss": 3.54038667678833, + "step": 3916 + }, + { + "epoch": 54.40541721275666, + "grad_norm": 0.21886761486530304, + "learning_rate": 0.0006, + "loss": 3.5708651542663574, + "step": 3917 + }, + { + "epoch": 54.419397116644824, + "grad_norm": 0.26383060216903687, + "learning_rate": 0.0006, + "loss": 3.5572509765625, + "step": 3918 + }, + { + "epoch": 54.43337702053299, + "grad_norm": 0.26116663217544556, + "learning_rate": 0.0006, + "loss": 3.528968334197998, + "step": 3919 + }, + { + "epoch": 54.44735692442114, + "grad_norm": 0.20640771090984344, + "learning_rate": 0.0006, + "loss": 3.587789535522461, + "step": 3920 + }, + { + "epoch": 54.46133682830931, + "grad_norm": 0.23454350233078003, + "learning_rate": 0.0006, + "loss": 3.586834192276001, + "step": 3921 + }, + { + "epoch": 54.47531673219746, + "grad_norm": 0.24828442931175232, + "learning_rate": 0.0006, + "loss": 3.5884881019592285, + "step": 3922 + }, + { + "epoch": 54.489296636085626, + "grad_norm": 0.23654282093048096, + "learning_rate": 0.0006, + "loss": 3.5754570960998535, + "step": 3923 + }, + { + "epoch": 54.50327653997379, + "grad_norm": 0.22721099853515625, + "learning_rate": 0.0006, + "loss": 3.5575859546661377, + "step": 3924 + }, + { + "epoch": 54.517256443861946, + "grad_norm": 0.2157498002052307, + "learning_rate": 0.0006, + "loss": 3.5929436683654785, + "step": 3925 + }, + { + "epoch": 54.53123634775011, + "grad_norm": 0.21604257822036743, + "learning_rate": 0.0006, + "loss": 3.5788726806640625, + "step": 3926 + }, + { + "epoch": 54.54521625163827, + "grad_norm": 0.22310106456279755, + "learning_rate": 0.0006, + "loss": 3.5873899459838867, + "step": 3927 + }, + { + "epoch": 54.55919615552643, + "grad_norm": 0.2121969312429428, + "learning_rate": 0.0006, + "loss": 3.575186252593994, + "step": 3928 + }, + { + "epoch": 54.57317605941459, + "grad_norm": 0.19073615968227386, + "learning_rate": 0.0006, + "loss": 3.5963356494903564, + "step": 3929 + }, + { + "epoch": 54.58715596330275, + "grad_norm": 0.18745607137680054, + "learning_rate": 0.0006, + "loss": 3.593679428100586, + "step": 3930 + }, + { + "epoch": 54.60113586719091, + "grad_norm": 0.19518259167671204, + "learning_rate": 0.0006, + "loss": 3.5730791091918945, + "step": 3931 + }, + { + "epoch": 54.615115771079076, + "grad_norm": 0.20948481559753418, + "learning_rate": 0.0006, + "loss": 3.5646820068359375, + "step": 3932 + }, + { + "epoch": 54.62909567496723, + "grad_norm": 0.1929631531238556, + "learning_rate": 0.0006, + "loss": 3.5550060272216797, + "step": 3933 + }, + { + "epoch": 54.643075578855395, + "grad_norm": 0.2104327380657196, + "learning_rate": 0.0006, + "loss": 3.5774357318878174, + "step": 3934 + }, + { + "epoch": 54.65705548274356, + "grad_norm": 0.1952148675918579, + "learning_rate": 0.0006, + "loss": 3.58856201171875, + "step": 3935 + }, + { + "epoch": 54.671035386631715, + "grad_norm": 0.17762340605258942, + "learning_rate": 0.0006, + "loss": 3.5324528217315674, + "step": 3936 + }, + { + "epoch": 54.68501529051988, + "grad_norm": 0.18349695205688477, + "learning_rate": 0.0006, + "loss": 3.5663890838623047, + "step": 3937 + }, + { + "epoch": 54.69899519440804, + "grad_norm": 0.2038232684135437, + "learning_rate": 0.0006, + "loss": 3.5811679363250732, + "step": 3938 + }, + { + "epoch": 54.7129750982962, + "grad_norm": 0.2431754469871521, + "learning_rate": 0.0006, + "loss": 3.56833553314209, + "step": 3939 + }, + { + "epoch": 54.72695500218436, + "grad_norm": 0.27498456835746765, + "learning_rate": 0.0006, + "loss": 3.5977981090545654, + "step": 3940 + }, + { + "epoch": 54.74093490607252, + "grad_norm": 0.20809921622276306, + "learning_rate": 0.0006, + "loss": 3.57193922996521, + "step": 3941 + }, + { + "epoch": 54.75491480996068, + "grad_norm": 0.18073450028896332, + "learning_rate": 0.0006, + "loss": 3.5610151290893555, + "step": 3942 + }, + { + "epoch": 54.768894713848844, + "grad_norm": 0.194604754447937, + "learning_rate": 0.0006, + "loss": 3.5716047286987305, + "step": 3943 + }, + { + "epoch": 54.782874617737, + "grad_norm": 0.20566268265247345, + "learning_rate": 0.0006, + "loss": 3.578401565551758, + "step": 3944 + }, + { + "epoch": 54.796854521625164, + "grad_norm": 0.21028153598308563, + "learning_rate": 0.0006, + "loss": 3.610511064529419, + "step": 3945 + }, + { + "epoch": 54.81083442551333, + "grad_norm": 0.21413563191890717, + "learning_rate": 0.0006, + "loss": 3.601574659347534, + "step": 3946 + }, + { + "epoch": 54.824814329401484, + "grad_norm": 0.2137378603219986, + "learning_rate": 0.0006, + "loss": 3.603997230529785, + "step": 3947 + }, + { + "epoch": 54.83879423328965, + "grad_norm": 0.2162058800458908, + "learning_rate": 0.0006, + "loss": 3.5829391479492188, + "step": 3948 + }, + { + "epoch": 54.8527741371778, + "grad_norm": 0.21700997650623322, + "learning_rate": 0.0006, + "loss": 3.595317840576172, + "step": 3949 + }, + { + "epoch": 54.86675404106597, + "grad_norm": 0.20864669978618622, + "learning_rate": 0.0006, + "loss": 3.601891040802002, + "step": 3950 + }, + { + "epoch": 54.88073394495413, + "grad_norm": 0.19780485332012177, + "learning_rate": 0.0006, + "loss": 3.567460775375366, + "step": 3951 + }, + { + "epoch": 54.89471384884229, + "grad_norm": 0.2017168402671814, + "learning_rate": 0.0006, + "loss": 3.5737192630767822, + "step": 3952 + }, + { + "epoch": 54.90869375273045, + "grad_norm": 0.22847825288772583, + "learning_rate": 0.0006, + "loss": 3.60937762260437, + "step": 3953 + }, + { + "epoch": 54.92267365661861, + "grad_norm": 0.23698270320892334, + "learning_rate": 0.0006, + "loss": 3.6013574600219727, + "step": 3954 + }, + { + "epoch": 54.93665356050677, + "grad_norm": 0.238611102104187, + "learning_rate": 0.0006, + "loss": 3.5689988136291504, + "step": 3955 + }, + { + "epoch": 54.95063346439493, + "grad_norm": 0.2680057883262634, + "learning_rate": 0.0006, + "loss": 3.5650172233581543, + "step": 3956 + }, + { + "epoch": 54.964613368283096, + "grad_norm": 0.25712481141090393, + "learning_rate": 0.0006, + "loss": 3.576777935028076, + "step": 3957 + }, + { + "epoch": 54.97859327217125, + "grad_norm": 0.2232409566640854, + "learning_rate": 0.0006, + "loss": 3.583169937133789, + "step": 3958 + }, + { + "epoch": 54.992573176059416, + "grad_norm": 0.21233153343200684, + "learning_rate": 0.0006, + "loss": 3.602219581604004, + "step": 3959 + }, + { + "epoch": 55.0, + "grad_norm": 0.24345774948596954, + "learning_rate": 0.0006, + "loss": 3.5118026733398438, + "step": 3960 + }, + { + "epoch": 55.0, + "eval_loss": 3.9819064140319824, + "eval_runtime": 44.6627, + "eval_samples_per_second": 54.677, + "eval_steps_per_second": 3.426, + "step": 3960 + }, + { + "epoch": 55.01397990388816, + "grad_norm": 0.229562908411026, + "learning_rate": 0.0006, + "loss": 3.5591073036193848, + "step": 3961 + }, + { + "epoch": 55.02795980777632, + "grad_norm": 0.21731624007225037, + "learning_rate": 0.0006, + "loss": 3.5544848442077637, + "step": 3962 + }, + { + "epoch": 55.04193971166448, + "grad_norm": 0.23528429865837097, + "learning_rate": 0.0006, + "loss": 3.5654311180114746, + "step": 3963 + }, + { + "epoch": 55.05591961555265, + "grad_norm": 0.23147839307785034, + "learning_rate": 0.0006, + "loss": 3.537006378173828, + "step": 3964 + }, + { + "epoch": 55.0698995194408, + "grad_norm": 0.22218112647533417, + "learning_rate": 0.0006, + "loss": 3.5218982696533203, + "step": 3965 + }, + { + "epoch": 55.083879423328966, + "grad_norm": 0.20697443187236786, + "learning_rate": 0.0006, + "loss": 3.5623579025268555, + "step": 3966 + }, + { + "epoch": 55.09785932721712, + "grad_norm": 0.2108476608991623, + "learning_rate": 0.0006, + "loss": 3.528214454650879, + "step": 3967 + }, + { + "epoch": 55.111839231105286, + "grad_norm": 0.21664242446422577, + "learning_rate": 0.0006, + "loss": 3.5429646968841553, + "step": 3968 + }, + { + "epoch": 55.12581913499345, + "grad_norm": 0.21359260380268097, + "learning_rate": 0.0006, + "loss": 3.5873513221740723, + "step": 3969 + }, + { + "epoch": 55.139799038881605, + "grad_norm": 0.23289452493190765, + "learning_rate": 0.0006, + "loss": 3.5551905632019043, + "step": 3970 + }, + { + "epoch": 55.15377894276977, + "grad_norm": 0.25835689902305603, + "learning_rate": 0.0006, + "loss": 3.5380427837371826, + "step": 3971 + }, + { + "epoch": 55.16775884665793, + "grad_norm": 0.25449255108833313, + "learning_rate": 0.0006, + "loss": 3.5276808738708496, + "step": 3972 + }, + { + "epoch": 55.18173875054609, + "grad_norm": 0.2472638338804245, + "learning_rate": 0.0006, + "loss": 3.539194107055664, + "step": 3973 + }, + { + "epoch": 55.19571865443425, + "grad_norm": 0.21743768453598022, + "learning_rate": 0.0006, + "loss": 3.557185173034668, + "step": 3974 + }, + { + "epoch": 55.20969855832241, + "grad_norm": 0.22787386178970337, + "learning_rate": 0.0006, + "loss": 3.581993579864502, + "step": 3975 + }, + { + "epoch": 55.22367846221057, + "grad_norm": 0.2332824170589447, + "learning_rate": 0.0006, + "loss": 3.5439846515655518, + "step": 3976 + }, + { + "epoch": 55.237658366098735, + "grad_norm": 0.2054908573627472, + "learning_rate": 0.0006, + "loss": 3.5528793334960938, + "step": 3977 + }, + { + "epoch": 55.25163826998689, + "grad_norm": 0.2087554633617401, + "learning_rate": 0.0006, + "loss": 3.536464214324951, + "step": 3978 + }, + { + "epoch": 55.265618173875055, + "grad_norm": 0.22214409708976746, + "learning_rate": 0.0006, + "loss": 3.56184458732605, + "step": 3979 + }, + { + "epoch": 55.27959807776322, + "grad_norm": 0.23214097321033478, + "learning_rate": 0.0006, + "loss": 3.5560522079467773, + "step": 3980 + }, + { + "epoch": 55.293577981651374, + "grad_norm": 0.23317331075668335, + "learning_rate": 0.0006, + "loss": 3.5433850288391113, + "step": 3981 + }, + { + "epoch": 55.30755788553954, + "grad_norm": 0.2303774058818817, + "learning_rate": 0.0006, + "loss": 3.5505576133728027, + "step": 3982 + }, + { + "epoch": 55.3215377894277, + "grad_norm": 0.2400730401277542, + "learning_rate": 0.0006, + "loss": 3.557952404022217, + "step": 3983 + }, + { + "epoch": 55.33551769331586, + "grad_norm": 0.23933538794517517, + "learning_rate": 0.0006, + "loss": 3.536656141281128, + "step": 3984 + }, + { + "epoch": 55.34949759720402, + "grad_norm": 0.23796266317367554, + "learning_rate": 0.0006, + "loss": 3.5777554512023926, + "step": 3985 + }, + { + "epoch": 55.36347750109218, + "grad_norm": 0.26078858971595764, + "learning_rate": 0.0006, + "loss": 3.549121379852295, + "step": 3986 + }, + { + "epoch": 55.37745740498034, + "grad_norm": 0.22726459801197052, + "learning_rate": 0.0006, + "loss": 3.605684518814087, + "step": 3987 + }, + { + "epoch": 55.391437308868504, + "grad_norm": 0.19872179627418518, + "learning_rate": 0.0006, + "loss": 3.5501739978790283, + "step": 3988 + }, + { + "epoch": 55.40541721275666, + "grad_norm": 0.2027827352285385, + "learning_rate": 0.0006, + "loss": 3.625922441482544, + "step": 3989 + }, + { + "epoch": 55.419397116644824, + "grad_norm": 0.24207144975662231, + "learning_rate": 0.0006, + "loss": 3.595451831817627, + "step": 3990 + }, + { + "epoch": 55.43337702053299, + "grad_norm": 0.23449009656906128, + "learning_rate": 0.0006, + "loss": 3.577167510986328, + "step": 3991 + }, + { + "epoch": 55.44735692442114, + "grad_norm": 0.22529540956020355, + "learning_rate": 0.0006, + "loss": 3.5585317611694336, + "step": 3992 + }, + { + "epoch": 55.46133682830931, + "grad_norm": 0.2354331612586975, + "learning_rate": 0.0006, + "loss": 3.574819564819336, + "step": 3993 + }, + { + "epoch": 55.47531673219746, + "grad_norm": 0.2251061201095581, + "learning_rate": 0.0006, + "loss": 3.580498695373535, + "step": 3994 + }, + { + "epoch": 55.489296636085626, + "grad_norm": 0.22107349336147308, + "learning_rate": 0.0006, + "loss": 3.578591823577881, + "step": 3995 + }, + { + "epoch": 55.50327653997379, + "grad_norm": 0.24686408042907715, + "learning_rate": 0.0006, + "loss": 3.541625499725342, + "step": 3996 + }, + { + "epoch": 55.517256443861946, + "grad_norm": 0.23731260001659393, + "learning_rate": 0.0006, + "loss": 3.5508079528808594, + "step": 3997 + }, + { + "epoch": 55.53123634775011, + "grad_norm": 0.21246901154518127, + "learning_rate": 0.0006, + "loss": 3.569500207901001, + "step": 3998 + }, + { + "epoch": 55.54521625163827, + "grad_norm": 0.21369415521621704, + "learning_rate": 0.0006, + "loss": 3.546938896179199, + "step": 3999 + }, + { + "epoch": 55.55919615552643, + "grad_norm": 0.2102644443511963, + "learning_rate": 0.0006, + "loss": 3.5842084884643555, + "step": 4000 + }, + { + "epoch": 55.57317605941459, + "grad_norm": 0.2355998456478119, + "learning_rate": 0.0006, + "loss": 3.5493381023406982, + "step": 4001 + }, + { + "epoch": 55.58715596330275, + "grad_norm": 0.2670288681983948, + "learning_rate": 0.0006, + "loss": 3.5909032821655273, + "step": 4002 + }, + { + "epoch": 55.60113586719091, + "grad_norm": 0.2958407998085022, + "learning_rate": 0.0006, + "loss": 3.624906063079834, + "step": 4003 + }, + { + "epoch": 55.615115771079076, + "grad_norm": 0.2948441505432129, + "learning_rate": 0.0006, + "loss": 3.553528070449829, + "step": 4004 + }, + { + "epoch": 55.62909567496723, + "grad_norm": 0.24873173236846924, + "learning_rate": 0.0006, + "loss": 3.5851495265960693, + "step": 4005 + }, + { + "epoch": 55.643075578855395, + "grad_norm": 0.22191756963729858, + "learning_rate": 0.0006, + "loss": 3.556459903717041, + "step": 4006 + }, + { + "epoch": 55.65705548274356, + "grad_norm": 0.22677776217460632, + "learning_rate": 0.0006, + "loss": 3.579428195953369, + "step": 4007 + }, + { + "epoch": 55.671035386631715, + "grad_norm": 0.22263763844966888, + "learning_rate": 0.0006, + "loss": 3.5878806114196777, + "step": 4008 + }, + { + "epoch": 55.68501529051988, + "grad_norm": 0.24498602747917175, + "learning_rate": 0.0006, + "loss": 3.5989317893981934, + "step": 4009 + }, + { + "epoch": 55.69899519440804, + "grad_norm": 0.26294007897377014, + "learning_rate": 0.0006, + "loss": 3.5866756439208984, + "step": 4010 + }, + { + "epoch": 55.7129750982962, + "grad_norm": 0.22105370461940765, + "learning_rate": 0.0006, + "loss": 3.594365119934082, + "step": 4011 + }, + { + "epoch": 55.72695500218436, + "grad_norm": 0.20973286032676697, + "learning_rate": 0.0006, + "loss": 3.551156997680664, + "step": 4012 + }, + { + "epoch": 55.74093490607252, + "grad_norm": 0.2123304158449173, + "learning_rate": 0.0006, + "loss": 3.587405204772949, + "step": 4013 + }, + { + "epoch": 55.75491480996068, + "grad_norm": 0.22134795784950256, + "learning_rate": 0.0006, + "loss": 3.59114146232605, + "step": 4014 + }, + { + "epoch": 55.768894713848844, + "grad_norm": 0.20822957158088684, + "learning_rate": 0.0006, + "loss": 3.5910749435424805, + "step": 4015 + }, + { + "epoch": 55.782874617737, + "grad_norm": 0.22392229735851288, + "learning_rate": 0.0006, + "loss": 3.5800669193267822, + "step": 4016 + }, + { + "epoch": 55.796854521625164, + "grad_norm": 0.2214914709329605, + "learning_rate": 0.0006, + "loss": 3.5553741455078125, + "step": 4017 + }, + { + "epoch": 55.81083442551333, + "grad_norm": 0.1993025690317154, + "learning_rate": 0.0006, + "loss": 3.567298412322998, + "step": 4018 + }, + { + "epoch": 55.824814329401484, + "grad_norm": 0.21043774485588074, + "learning_rate": 0.0006, + "loss": 3.537358045578003, + "step": 4019 + }, + { + "epoch": 55.83879423328965, + "grad_norm": 0.18501818180084229, + "learning_rate": 0.0006, + "loss": 3.5971930027008057, + "step": 4020 + }, + { + "epoch": 55.8527741371778, + "grad_norm": 0.19626867771148682, + "learning_rate": 0.0006, + "loss": 3.563570976257324, + "step": 4021 + }, + { + "epoch": 55.86675404106597, + "grad_norm": 0.19328820705413818, + "learning_rate": 0.0006, + "loss": 3.600377082824707, + "step": 4022 + }, + { + "epoch": 55.88073394495413, + "grad_norm": 0.2013237327337265, + "learning_rate": 0.0006, + "loss": 3.5916812419891357, + "step": 4023 + }, + { + "epoch": 55.89471384884229, + "grad_norm": 0.22775673866271973, + "learning_rate": 0.0006, + "loss": 3.5572638511657715, + "step": 4024 + }, + { + "epoch": 55.90869375273045, + "grad_norm": 0.2452211230993271, + "learning_rate": 0.0006, + "loss": 3.54378080368042, + "step": 4025 + }, + { + "epoch": 55.92267365661861, + "grad_norm": 0.23337189853191376, + "learning_rate": 0.0006, + "loss": 3.5853466987609863, + "step": 4026 + }, + { + "epoch": 55.93665356050677, + "grad_norm": 0.20073719322681427, + "learning_rate": 0.0006, + "loss": 3.5793843269348145, + "step": 4027 + }, + { + "epoch": 55.95063346439493, + "grad_norm": 0.1963811218738556, + "learning_rate": 0.0006, + "loss": 3.5783073902130127, + "step": 4028 + }, + { + "epoch": 55.964613368283096, + "grad_norm": 0.19921033084392548, + "learning_rate": 0.0006, + "loss": 3.5455331802368164, + "step": 4029 + }, + { + "epoch": 55.97859327217125, + "grad_norm": 0.22151921689510345, + "learning_rate": 0.0006, + "loss": 3.551476001739502, + "step": 4030 + }, + { + "epoch": 55.992573176059416, + "grad_norm": 0.2636640965938568, + "learning_rate": 0.0006, + "loss": 3.5859174728393555, + "step": 4031 + }, + { + "epoch": 56.0, + "grad_norm": 0.282680869102478, + "learning_rate": 0.0006, + "loss": 3.5818469524383545, + "step": 4032 + }, + { + "epoch": 56.0, + "eval_loss": 3.982189178466797, + "eval_runtime": 44.2577, + "eval_samples_per_second": 55.177, + "eval_steps_per_second": 3.457, + "step": 4032 + }, + { + "epoch": 56.01397990388816, + "grad_norm": 0.23316597938537598, + "learning_rate": 0.0006, + "loss": 3.5500292778015137, + "step": 4033 + }, + { + "epoch": 56.02795980777632, + "grad_norm": 0.22836777567863464, + "learning_rate": 0.0006, + "loss": 3.5661063194274902, + "step": 4034 + }, + { + "epoch": 56.04193971166448, + "grad_norm": 0.2607800364494324, + "learning_rate": 0.0006, + "loss": 3.5496177673339844, + "step": 4035 + }, + { + "epoch": 56.05591961555265, + "grad_norm": 0.2620518207550049, + "learning_rate": 0.0006, + "loss": 3.562621831893921, + "step": 4036 + }, + { + "epoch": 56.0698995194408, + "grad_norm": 0.2344953864812851, + "learning_rate": 0.0006, + "loss": 3.5371389389038086, + "step": 4037 + }, + { + "epoch": 56.083879423328966, + "grad_norm": 0.2523435950279236, + "learning_rate": 0.0006, + "loss": 3.565216541290283, + "step": 4038 + }, + { + "epoch": 56.09785932721712, + "grad_norm": 0.26315048336982727, + "learning_rate": 0.0006, + "loss": 3.5510857105255127, + "step": 4039 + }, + { + "epoch": 56.111839231105286, + "grad_norm": 0.256817102432251, + "learning_rate": 0.0006, + "loss": 3.576132297515869, + "step": 4040 + }, + { + "epoch": 56.12581913499345, + "grad_norm": 0.25146403908729553, + "learning_rate": 0.0006, + "loss": 3.550875663757324, + "step": 4041 + }, + { + "epoch": 56.139799038881605, + "grad_norm": 0.2471698820590973, + "learning_rate": 0.0006, + "loss": 3.5574288368225098, + "step": 4042 + }, + { + "epoch": 56.15377894276977, + "grad_norm": 0.2324669510126114, + "learning_rate": 0.0006, + "loss": 3.524637222290039, + "step": 4043 + }, + { + "epoch": 56.16775884665793, + "grad_norm": 0.21824438869953156, + "learning_rate": 0.0006, + "loss": 3.563664436340332, + "step": 4044 + }, + { + "epoch": 56.18173875054609, + "grad_norm": 0.2381063550710678, + "learning_rate": 0.0006, + "loss": 3.573061943054199, + "step": 4045 + }, + { + "epoch": 56.19571865443425, + "grad_norm": 0.23728328943252563, + "learning_rate": 0.0006, + "loss": 3.5563716888427734, + "step": 4046 + }, + { + "epoch": 56.20969855832241, + "grad_norm": 0.20998933911323547, + "learning_rate": 0.0006, + "loss": 3.540152072906494, + "step": 4047 + }, + { + "epoch": 56.22367846221057, + "grad_norm": 0.2249690741300583, + "learning_rate": 0.0006, + "loss": 3.5699682235717773, + "step": 4048 + }, + { + "epoch": 56.237658366098735, + "grad_norm": 0.22615988552570343, + "learning_rate": 0.0006, + "loss": 3.5604777336120605, + "step": 4049 + }, + { + "epoch": 56.25163826998689, + "grad_norm": 0.20918409526348114, + "learning_rate": 0.0006, + "loss": 3.5612001419067383, + "step": 4050 + }, + { + "epoch": 56.265618173875055, + "grad_norm": 0.22025109827518463, + "learning_rate": 0.0006, + "loss": 3.520402193069458, + "step": 4051 + }, + { + "epoch": 56.27959807776322, + "grad_norm": 0.22722174227237701, + "learning_rate": 0.0006, + "loss": 3.52360200881958, + "step": 4052 + }, + { + "epoch": 56.293577981651374, + "grad_norm": 0.2115592360496521, + "learning_rate": 0.0006, + "loss": 3.562689781188965, + "step": 4053 + }, + { + "epoch": 56.30755788553954, + "grad_norm": 0.19253599643707275, + "learning_rate": 0.0006, + "loss": 3.545013427734375, + "step": 4054 + }, + { + "epoch": 56.3215377894277, + "grad_norm": 0.2534266710281372, + "learning_rate": 0.0006, + "loss": 3.530149459838867, + "step": 4055 + }, + { + "epoch": 56.33551769331586, + "grad_norm": 0.2871302366256714, + "learning_rate": 0.0006, + "loss": 3.5667316913604736, + "step": 4056 + }, + { + "epoch": 56.34949759720402, + "grad_norm": 0.2686561048030853, + "learning_rate": 0.0006, + "loss": 3.5341169834136963, + "step": 4057 + }, + { + "epoch": 56.36347750109218, + "grad_norm": 0.21016116440296173, + "learning_rate": 0.0006, + "loss": 3.5151243209838867, + "step": 4058 + }, + { + "epoch": 56.37745740498034, + "grad_norm": 0.20810428261756897, + "learning_rate": 0.0006, + "loss": 3.5641677379608154, + "step": 4059 + }, + { + "epoch": 56.391437308868504, + "grad_norm": 0.2732172906398773, + "learning_rate": 0.0006, + "loss": 3.546082019805908, + "step": 4060 + }, + { + "epoch": 56.40541721275666, + "grad_norm": 0.26587602496147156, + "learning_rate": 0.0006, + "loss": 3.5465946197509766, + "step": 4061 + }, + { + "epoch": 56.419397116644824, + "grad_norm": 0.20492126047611237, + "learning_rate": 0.0006, + "loss": 3.5686211585998535, + "step": 4062 + }, + { + "epoch": 56.43337702053299, + "grad_norm": 0.2147696167230606, + "learning_rate": 0.0006, + "loss": 3.5808653831481934, + "step": 4063 + }, + { + "epoch": 56.44735692442114, + "grad_norm": 0.21947690844535828, + "learning_rate": 0.0006, + "loss": 3.530872344970703, + "step": 4064 + }, + { + "epoch": 56.46133682830931, + "grad_norm": 0.21305148303508759, + "learning_rate": 0.0006, + "loss": 3.5480992794036865, + "step": 4065 + }, + { + "epoch": 56.47531673219746, + "grad_norm": 0.2066979706287384, + "learning_rate": 0.0006, + "loss": 3.5198287963867188, + "step": 4066 + }, + { + "epoch": 56.489296636085626, + "grad_norm": 0.19393840432167053, + "learning_rate": 0.0006, + "loss": 3.555344581604004, + "step": 4067 + }, + { + "epoch": 56.50327653997379, + "grad_norm": 0.19889849424362183, + "learning_rate": 0.0006, + "loss": 3.56475830078125, + "step": 4068 + }, + { + "epoch": 56.517256443861946, + "grad_norm": 0.19851456582546234, + "learning_rate": 0.0006, + "loss": 3.5790982246398926, + "step": 4069 + }, + { + "epoch": 56.53123634775011, + "grad_norm": 0.19570177793502808, + "learning_rate": 0.0006, + "loss": 3.558379888534546, + "step": 4070 + }, + { + "epoch": 56.54521625163827, + "grad_norm": 0.21364007890224457, + "learning_rate": 0.0006, + "loss": 3.586343288421631, + "step": 4071 + }, + { + "epoch": 56.55919615552643, + "grad_norm": 0.22896543145179749, + "learning_rate": 0.0006, + "loss": 3.5565874576568604, + "step": 4072 + }, + { + "epoch": 56.57317605941459, + "grad_norm": 0.21665218472480774, + "learning_rate": 0.0006, + "loss": 3.5737056732177734, + "step": 4073 + }, + { + "epoch": 56.58715596330275, + "grad_norm": 0.1964256912469864, + "learning_rate": 0.0006, + "loss": 3.555798053741455, + "step": 4074 + }, + { + "epoch": 56.60113586719091, + "grad_norm": 0.2056122124195099, + "learning_rate": 0.0006, + "loss": 3.548685073852539, + "step": 4075 + }, + { + "epoch": 56.615115771079076, + "grad_norm": 0.21677979826927185, + "learning_rate": 0.0006, + "loss": 3.569136619567871, + "step": 4076 + }, + { + "epoch": 56.62909567496723, + "grad_norm": 0.2029557228088379, + "learning_rate": 0.0006, + "loss": 3.5723280906677246, + "step": 4077 + }, + { + "epoch": 56.643075578855395, + "grad_norm": 0.22111767530441284, + "learning_rate": 0.0006, + "loss": 3.5784404277801514, + "step": 4078 + }, + { + "epoch": 56.65705548274356, + "grad_norm": 0.245675191283226, + "learning_rate": 0.0006, + "loss": 3.559330940246582, + "step": 4079 + }, + { + "epoch": 56.671035386631715, + "grad_norm": 0.19715000689029694, + "learning_rate": 0.0006, + "loss": 3.5694894790649414, + "step": 4080 + }, + { + "epoch": 56.68501529051988, + "grad_norm": 0.2112303525209427, + "learning_rate": 0.0006, + "loss": 3.5932059288024902, + "step": 4081 + }, + { + "epoch": 56.69899519440804, + "grad_norm": 0.23710735142230988, + "learning_rate": 0.0006, + "loss": 3.59895658493042, + "step": 4082 + }, + { + "epoch": 56.7129750982962, + "grad_norm": 0.2507518529891968, + "learning_rate": 0.0006, + "loss": 3.58455228805542, + "step": 4083 + }, + { + "epoch": 56.72695500218436, + "grad_norm": 0.24770016968250275, + "learning_rate": 0.0006, + "loss": 3.566256046295166, + "step": 4084 + }, + { + "epoch": 56.74093490607252, + "grad_norm": 0.2407187819480896, + "learning_rate": 0.0006, + "loss": 3.6002347469329834, + "step": 4085 + }, + { + "epoch": 56.75491480996068, + "grad_norm": 0.21417197585105896, + "learning_rate": 0.0006, + "loss": 3.5579819679260254, + "step": 4086 + }, + { + "epoch": 56.768894713848844, + "grad_norm": 0.21014295518398285, + "learning_rate": 0.0006, + "loss": 3.574289321899414, + "step": 4087 + }, + { + "epoch": 56.782874617737, + "grad_norm": 0.2265855073928833, + "learning_rate": 0.0006, + "loss": 3.589186906814575, + "step": 4088 + }, + { + "epoch": 56.796854521625164, + "grad_norm": 0.22685059905052185, + "learning_rate": 0.0006, + "loss": 3.567077159881592, + "step": 4089 + }, + { + "epoch": 56.81083442551333, + "grad_norm": 0.21579493582248688, + "learning_rate": 0.0006, + "loss": 3.5568556785583496, + "step": 4090 + }, + { + "epoch": 56.824814329401484, + "grad_norm": 0.2049565464258194, + "learning_rate": 0.0006, + "loss": 3.5547285079956055, + "step": 4091 + }, + { + "epoch": 56.83879423328965, + "grad_norm": 0.21019354462623596, + "learning_rate": 0.0006, + "loss": 3.606884479522705, + "step": 4092 + }, + { + "epoch": 56.8527741371778, + "grad_norm": 0.26110008358955383, + "learning_rate": 0.0006, + "loss": 3.5626933574676514, + "step": 4093 + }, + { + "epoch": 56.86675404106597, + "grad_norm": 0.22148117423057556, + "learning_rate": 0.0006, + "loss": 3.5739552974700928, + "step": 4094 + }, + { + "epoch": 56.88073394495413, + "grad_norm": 0.20535576343536377, + "learning_rate": 0.0006, + "loss": 3.566840648651123, + "step": 4095 + }, + { + "epoch": 56.89471384884229, + "grad_norm": 0.1928025484085083, + "learning_rate": 0.0006, + "loss": 3.5637013912200928, + "step": 4096 + }, + { + "epoch": 56.90869375273045, + "grad_norm": 0.1989327371120453, + "learning_rate": 0.0006, + "loss": 3.5881259441375732, + "step": 4097 + }, + { + "epoch": 56.92267365661861, + "grad_norm": 0.21137912571430206, + "learning_rate": 0.0006, + "loss": 3.5513358116149902, + "step": 4098 + }, + { + "epoch": 56.93665356050677, + "grad_norm": 0.22471629083156586, + "learning_rate": 0.0006, + "loss": 3.5630130767822266, + "step": 4099 + }, + { + "epoch": 56.95063346439493, + "grad_norm": 0.2323181927204132, + "learning_rate": 0.0006, + "loss": 3.559762477874756, + "step": 4100 + }, + { + "epoch": 56.964613368283096, + "grad_norm": 0.2020239382982254, + "learning_rate": 0.0006, + "loss": 3.596774101257324, + "step": 4101 + }, + { + "epoch": 56.97859327217125, + "grad_norm": 0.21822074055671692, + "learning_rate": 0.0006, + "loss": 3.598115921020508, + "step": 4102 + }, + { + "epoch": 56.992573176059416, + "grad_norm": 0.20600785315036774, + "learning_rate": 0.0006, + "loss": 3.5579686164855957, + "step": 4103 + }, + { + "epoch": 57.0, + "grad_norm": 0.23575574159622192, + "learning_rate": 0.0006, + "loss": 3.57532000541687, + "step": 4104 + }, + { + "epoch": 57.0, + "eval_loss": 3.9726130962371826, + "eval_runtime": 44.7918, + "eval_samples_per_second": 54.519, + "eval_steps_per_second": 3.416, + "step": 4104 + }, + { + "epoch": 57.01397990388816, + "grad_norm": 0.2366827428340912, + "learning_rate": 0.0006, + "loss": 3.552804946899414, + "step": 4105 + }, + { + "epoch": 57.02795980777632, + "grad_norm": 0.2728131115436554, + "learning_rate": 0.0006, + "loss": 3.5407862663269043, + "step": 4106 + }, + { + "epoch": 57.04193971166448, + "grad_norm": 0.2685103416442871, + "learning_rate": 0.0006, + "loss": 3.525047779083252, + "step": 4107 + }, + { + "epoch": 57.05591961555265, + "grad_norm": 0.26493778824806213, + "learning_rate": 0.0006, + "loss": 3.527106523513794, + "step": 4108 + }, + { + "epoch": 57.0698995194408, + "grad_norm": 0.290961354970932, + "learning_rate": 0.0006, + "loss": 3.5482702255249023, + "step": 4109 + }, + { + "epoch": 57.083879423328966, + "grad_norm": 0.33083876967430115, + "learning_rate": 0.0006, + "loss": 3.5123658180236816, + "step": 4110 + }, + { + "epoch": 57.09785932721712, + "grad_norm": 0.28544098138809204, + "learning_rate": 0.0006, + "loss": 3.5563549995422363, + "step": 4111 + }, + { + "epoch": 57.111839231105286, + "grad_norm": 0.2516465187072754, + "learning_rate": 0.0006, + "loss": 3.547360420227051, + "step": 4112 + }, + { + "epoch": 57.12581913499345, + "grad_norm": 0.2485780417919159, + "learning_rate": 0.0006, + "loss": 3.5234861373901367, + "step": 4113 + }, + { + "epoch": 57.139799038881605, + "grad_norm": 0.246695414185524, + "learning_rate": 0.0006, + "loss": 3.573009490966797, + "step": 4114 + }, + { + "epoch": 57.15377894276977, + "grad_norm": 0.24958990514278412, + "learning_rate": 0.0006, + "loss": 3.5322680473327637, + "step": 4115 + }, + { + "epoch": 57.16775884665793, + "grad_norm": 0.20882244408130646, + "learning_rate": 0.0006, + "loss": 3.5463480949401855, + "step": 4116 + }, + { + "epoch": 57.18173875054609, + "grad_norm": 0.2372189313173294, + "learning_rate": 0.0006, + "loss": 3.543396472930908, + "step": 4117 + }, + { + "epoch": 57.19571865443425, + "grad_norm": 0.24817894399166107, + "learning_rate": 0.0006, + "loss": 3.5594849586486816, + "step": 4118 + }, + { + "epoch": 57.20969855832241, + "grad_norm": 0.2231832891702652, + "learning_rate": 0.0006, + "loss": 3.5276806354522705, + "step": 4119 + }, + { + "epoch": 57.22367846221057, + "grad_norm": 0.2211553156375885, + "learning_rate": 0.0006, + "loss": 3.5423057079315186, + "step": 4120 + }, + { + "epoch": 57.237658366098735, + "grad_norm": 0.2495127022266388, + "learning_rate": 0.0006, + "loss": 3.57668399810791, + "step": 4121 + }, + { + "epoch": 57.25163826998689, + "grad_norm": 0.2548885941505432, + "learning_rate": 0.0006, + "loss": 3.5487570762634277, + "step": 4122 + }, + { + "epoch": 57.265618173875055, + "grad_norm": 0.22884942591190338, + "learning_rate": 0.0006, + "loss": 3.560772180557251, + "step": 4123 + }, + { + "epoch": 57.27959807776322, + "grad_norm": 0.20817993581295013, + "learning_rate": 0.0006, + "loss": 3.5540637969970703, + "step": 4124 + }, + { + "epoch": 57.293577981651374, + "grad_norm": 0.2075389176607132, + "learning_rate": 0.0006, + "loss": 3.5382890701293945, + "step": 4125 + }, + { + "epoch": 57.30755788553954, + "grad_norm": 0.2081303596496582, + "learning_rate": 0.0006, + "loss": 3.554612874984741, + "step": 4126 + }, + { + "epoch": 57.3215377894277, + "grad_norm": 0.2108871191740036, + "learning_rate": 0.0006, + "loss": 3.583320379257202, + "step": 4127 + }, + { + "epoch": 57.33551769331586, + "grad_norm": 0.21608266234397888, + "learning_rate": 0.0006, + "loss": 3.5358712673187256, + "step": 4128 + }, + { + "epoch": 57.34949759720402, + "grad_norm": 0.21208034455776215, + "learning_rate": 0.0006, + "loss": 3.561821937561035, + "step": 4129 + }, + { + "epoch": 57.36347750109218, + "grad_norm": 0.2109878957271576, + "learning_rate": 0.0006, + "loss": 3.5592710971832275, + "step": 4130 + }, + { + "epoch": 57.37745740498034, + "grad_norm": 0.2175656110048294, + "learning_rate": 0.0006, + "loss": 3.5616424083709717, + "step": 4131 + }, + { + "epoch": 57.391437308868504, + "grad_norm": 0.2170158475637436, + "learning_rate": 0.0006, + "loss": 3.5580999851226807, + "step": 4132 + }, + { + "epoch": 57.40541721275666, + "grad_norm": 0.22486525774002075, + "learning_rate": 0.0006, + "loss": 3.562096118927002, + "step": 4133 + }, + { + "epoch": 57.419397116644824, + "grad_norm": 0.22458943724632263, + "learning_rate": 0.0006, + "loss": 3.5784192085266113, + "step": 4134 + }, + { + "epoch": 57.43337702053299, + "grad_norm": 0.20545627176761627, + "learning_rate": 0.0006, + "loss": 3.5740323066711426, + "step": 4135 + }, + { + "epoch": 57.44735692442114, + "grad_norm": 0.22105063498020172, + "learning_rate": 0.0006, + "loss": 3.537400245666504, + "step": 4136 + }, + { + "epoch": 57.46133682830931, + "grad_norm": 0.26679784059524536, + "learning_rate": 0.0006, + "loss": 3.5323081016540527, + "step": 4137 + }, + { + "epoch": 57.47531673219746, + "grad_norm": 0.2646673321723938, + "learning_rate": 0.0006, + "loss": 3.54030442237854, + "step": 4138 + }, + { + "epoch": 57.489296636085626, + "grad_norm": 0.22486890852451324, + "learning_rate": 0.0006, + "loss": 3.558323621749878, + "step": 4139 + }, + { + "epoch": 57.50327653997379, + "grad_norm": 0.20868313312530518, + "learning_rate": 0.0006, + "loss": 3.5296707153320312, + "step": 4140 + }, + { + "epoch": 57.517256443861946, + "grad_norm": 0.22973674535751343, + "learning_rate": 0.0006, + "loss": 3.5401687622070312, + "step": 4141 + }, + { + "epoch": 57.53123634775011, + "grad_norm": 0.22321778535842896, + "learning_rate": 0.0006, + "loss": 3.566683530807495, + "step": 4142 + }, + { + "epoch": 57.54521625163827, + "grad_norm": 0.20808766782283783, + "learning_rate": 0.0006, + "loss": 3.5398507118225098, + "step": 4143 + }, + { + "epoch": 57.55919615552643, + "grad_norm": 0.19632819294929504, + "learning_rate": 0.0006, + "loss": 3.5785460472106934, + "step": 4144 + }, + { + "epoch": 57.57317605941459, + "grad_norm": 0.18699012696743011, + "learning_rate": 0.0006, + "loss": 3.5495004653930664, + "step": 4145 + }, + { + "epoch": 57.58715596330275, + "grad_norm": 0.19161473214626312, + "learning_rate": 0.0006, + "loss": 3.550243854522705, + "step": 4146 + }, + { + "epoch": 57.60113586719091, + "grad_norm": 0.21041646599769592, + "learning_rate": 0.0006, + "loss": 3.5801823139190674, + "step": 4147 + }, + { + "epoch": 57.615115771079076, + "grad_norm": 0.2043760120868683, + "learning_rate": 0.0006, + "loss": 3.580418825149536, + "step": 4148 + }, + { + "epoch": 57.62909567496723, + "grad_norm": 0.21515823900699615, + "learning_rate": 0.0006, + "loss": 3.58026385307312, + "step": 4149 + }, + { + "epoch": 57.643075578855395, + "grad_norm": 0.20913724601268768, + "learning_rate": 0.0006, + "loss": 3.5452992916107178, + "step": 4150 + }, + { + "epoch": 57.65705548274356, + "grad_norm": 0.22621729969978333, + "learning_rate": 0.0006, + "loss": 3.5332765579223633, + "step": 4151 + }, + { + "epoch": 57.671035386631715, + "grad_norm": 0.26475241780281067, + "learning_rate": 0.0006, + "loss": 3.5701823234558105, + "step": 4152 + }, + { + "epoch": 57.68501529051988, + "grad_norm": 0.2567952275276184, + "learning_rate": 0.0006, + "loss": 3.597219228744507, + "step": 4153 + }, + { + "epoch": 57.69899519440804, + "grad_norm": 0.19640378654003143, + "learning_rate": 0.0006, + "loss": 3.5865941047668457, + "step": 4154 + }, + { + "epoch": 57.7129750982962, + "grad_norm": 0.21714240312576294, + "learning_rate": 0.0006, + "loss": 3.555518627166748, + "step": 4155 + }, + { + "epoch": 57.72695500218436, + "grad_norm": 0.2604375183582306, + "learning_rate": 0.0006, + "loss": 3.5756402015686035, + "step": 4156 + }, + { + "epoch": 57.74093490607252, + "grad_norm": 0.24627837538719177, + "learning_rate": 0.0006, + "loss": 3.550668239593506, + "step": 4157 + }, + { + "epoch": 57.75491480996068, + "grad_norm": 0.21893182396888733, + "learning_rate": 0.0006, + "loss": 3.5560038089752197, + "step": 4158 + }, + { + "epoch": 57.768894713848844, + "grad_norm": 0.23481261730194092, + "learning_rate": 0.0006, + "loss": 3.543942451477051, + "step": 4159 + }, + { + "epoch": 57.782874617737, + "grad_norm": 0.21777133643627167, + "learning_rate": 0.0006, + "loss": 3.5652658939361572, + "step": 4160 + }, + { + "epoch": 57.796854521625164, + "grad_norm": 0.2158525437116623, + "learning_rate": 0.0006, + "loss": 3.5803327560424805, + "step": 4161 + }, + { + "epoch": 57.81083442551333, + "grad_norm": 0.19519925117492676, + "learning_rate": 0.0006, + "loss": 3.5814499855041504, + "step": 4162 + }, + { + "epoch": 57.824814329401484, + "grad_norm": 0.2017558217048645, + "learning_rate": 0.0006, + "loss": 3.558722972869873, + "step": 4163 + }, + { + "epoch": 57.83879423328965, + "grad_norm": 0.22046449780464172, + "learning_rate": 0.0006, + "loss": 3.559990882873535, + "step": 4164 + }, + { + "epoch": 57.8527741371778, + "grad_norm": 0.22240568697452545, + "learning_rate": 0.0006, + "loss": 3.5427942276000977, + "step": 4165 + }, + { + "epoch": 57.86675404106597, + "grad_norm": 0.20282965898513794, + "learning_rate": 0.0006, + "loss": 3.5449461936950684, + "step": 4166 + }, + { + "epoch": 57.88073394495413, + "grad_norm": 0.20970730483531952, + "learning_rate": 0.0006, + "loss": 3.592543601989746, + "step": 4167 + }, + { + "epoch": 57.89471384884229, + "grad_norm": 0.21963168680667877, + "learning_rate": 0.0006, + "loss": 3.5564393997192383, + "step": 4168 + }, + { + "epoch": 57.90869375273045, + "grad_norm": 0.20854730904102325, + "learning_rate": 0.0006, + "loss": 3.565591335296631, + "step": 4169 + }, + { + "epoch": 57.92267365661861, + "grad_norm": 0.24149510264396667, + "learning_rate": 0.0006, + "loss": 3.574720859527588, + "step": 4170 + }, + { + "epoch": 57.93665356050677, + "grad_norm": 0.26011863350868225, + "learning_rate": 0.0006, + "loss": 3.593156337738037, + "step": 4171 + }, + { + "epoch": 57.95063346439493, + "grad_norm": 0.24111896753311157, + "learning_rate": 0.0006, + "loss": 3.5871872901916504, + "step": 4172 + }, + { + "epoch": 57.964613368283096, + "grad_norm": 0.22362647950649261, + "learning_rate": 0.0006, + "loss": 3.568572998046875, + "step": 4173 + }, + { + "epoch": 57.97859327217125, + "grad_norm": 0.23621505498886108, + "learning_rate": 0.0006, + "loss": 3.5627479553222656, + "step": 4174 + }, + { + "epoch": 57.992573176059416, + "grad_norm": 0.2252524048089981, + "learning_rate": 0.0006, + "loss": 3.594430446624756, + "step": 4175 + }, + { + "epoch": 58.0, + "grad_norm": 0.24568618834018707, + "learning_rate": 0.0006, + "loss": 3.5520875453948975, + "step": 4176 + }, + { + "epoch": 58.0, + "eval_loss": 3.978929042816162, + "eval_runtime": 44.8688, + "eval_samples_per_second": 54.425, + "eval_steps_per_second": 3.41, + "step": 4176 + }, + { + "epoch": 58.01397990388816, + "grad_norm": 0.23220741748809814, + "learning_rate": 0.0006, + "loss": 3.5401225090026855, + "step": 4177 + }, + { + "epoch": 58.02795980777632, + "grad_norm": 0.214580699801445, + "learning_rate": 0.0006, + "loss": 3.507652759552002, + "step": 4178 + }, + { + "epoch": 58.04193971166448, + "grad_norm": 0.20596857368946075, + "learning_rate": 0.0006, + "loss": 3.5591790676116943, + "step": 4179 + }, + { + "epoch": 58.05591961555265, + "grad_norm": 0.23054419457912445, + "learning_rate": 0.0006, + "loss": 3.518101692199707, + "step": 4180 + }, + { + "epoch": 58.0698995194408, + "grad_norm": 0.2410690039396286, + "learning_rate": 0.0006, + "loss": 3.5270299911499023, + "step": 4181 + }, + { + "epoch": 58.083879423328966, + "grad_norm": 0.24333222210407257, + "learning_rate": 0.0006, + "loss": 3.5732290744781494, + "step": 4182 + }, + { + "epoch": 58.09785932721712, + "grad_norm": 0.2547648549079895, + "learning_rate": 0.0006, + "loss": 3.5470314025878906, + "step": 4183 + }, + { + "epoch": 58.111839231105286, + "grad_norm": 0.2366316169500351, + "learning_rate": 0.0006, + "loss": 3.500774621963501, + "step": 4184 + }, + { + "epoch": 58.12581913499345, + "grad_norm": 0.22653642296791077, + "learning_rate": 0.0006, + "loss": 3.5242254734039307, + "step": 4185 + }, + { + "epoch": 58.139799038881605, + "grad_norm": 0.25555330514907837, + "learning_rate": 0.0006, + "loss": 3.5272228717803955, + "step": 4186 + }, + { + "epoch": 58.15377894276977, + "grad_norm": 0.26559844613075256, + "learning_rate": 0.0006, + "loss": 3.5599403381347656, + "step": 4187 + }, + { + "epoch": 58.16775884665793, + "grad_norm": 0.2473350614309311, + "learning_rate": 0.0006, + "loss": 3.5130624771118164, + "step": 4188 + }, + { + "epoch": 58.18173875054609, + "grad_norm": 0.22858835756778717, + "learning_rate": 0.0006, + "loss": 3.508342742919922, + "step": 4189 + }, + { + "epoch": 58.19571865443425, + "grad_norm": 0.2151159793138504, + "learning_rate": 0.0006, + "loss": 3.533581256866455, + "step": 4190 + }, + { + "epoch": 58.20969855832241, + "grad_norm": 0.2042093276977539, + "learning_rate": 0.0006, + "loss": 3.5269458293914795, + "step": 4191 + }, + { + "epoch": 58.22367846221057, + "grad_norm": 0.20638196170330048, + "learning_rate": 0.0006, + "loss": 3.5137884616851807, + "step": 4192 + }, + { + "epoch": 58.237658366098735, + "grad_norm": 0.2018391191959381, + "learning_rate": 0.0006, + "loss": 3.533733367919922, + "step": 4193 + }, + { + "epoch": 58.25163826998689, + "grad_norm": 0.21045200526714325, + "learning_rate": 0.0006, + "loss": 3.5585010051727295, + "step": 4194 + }, + { + "epoch": 58.265618173875055, + "grad_norm": 0.2040393352508545, + "learning_rate": 0.0006, + "loss": 3.547539234161377, + "step": 4195 + }, + { + "epoch": 58.27959807776322, + "grad_norm": 0.2538772523403168, + "learning_rate": 0.0006, + "loss": 3.5487847328186035, + "step": 4196 + }, + { + "epoch": 58.293577981651374, + "grad_norm": 0.30126553773880005, + "learning_rate": 0.0006, + "loss": 3.5717992782592773, + "step": 4197 + }, + { + "epoch": 58.30755788553954, + "grad_norm": 0.2787485718727112, + "learning_rate": 0.0006, + "loss": 3.543076992034912, + "step": 4198 + }, + { + "epoch": 58.3215377894277, + "grad_norm": 0.23167021572589874, + "learning_rate": 0.0006, + "loss": 3.518887519836426, + "step": 4199 + }, + { + "epoch": 58.33551769331586, + "grad_norm": 0.23871110379695892, + "learning_rate": 0.0006, + "loss": 3.536757469177246, + "step": 4200 + }, + { + "epoch": 58.34949759720402, + "grad_norm": 0.2542787492275238, + "learning_rate": 0.0006, + "loss": 3.573086738586426, + "step": 4201 + }, + { + "epoch": 58.36347750109218, + "grad_norm": 0.2967284023761749, + "learning_rate": 0.0006, + "loss": 3.5866525173187256, + "step": 4202 + }, + { + "epoch": 58.37745740498034, + "grad_norm": 0.28304803371429443, + "learning_rate": 0.0006, + "loss": 3.5601437091827393, + "step": 4203 + }, + { + "epoch": 58.391437308868504, + "grad_norm": 0.20651954412460327, + "learning_rate": 0.0006, + "loss": 3.5591554641723633, + "step": 4204 + }, + { + "epoch": 58.40541721275666, + "grad_norm": 0.23101729154586792, + "learning_rate": 0.0006, + "loss": 3.5714032649993896, + "step": 4205 + }, + { + "epoch": 58.419397116644824, + "grad_norm": 0.24556246399879456, + "learning_rate": 0.0006, + "loss": 3.550046443939209, + "step": 4206 + }, + { + "epoch": 58.43337702053299, + "grad_norm": 0.2307356745004654, + "learning_rate": 0.0006, + "loss": 3.571850299835205, + "step": 4207 + }, + { + "epoch": 58.44735692442114, + "grad_norm": 0.23186670243740082, + "learning_rate": 0.0006, + "loss": 3.555757999420166, + "step": 4208 + }, + { + "epoch": 58.46133682830931, + "grad_norm": 0.20662686228752136, + "learning_rate": 0.0006, + "loss": 3.5590686798095703, + "step": 4209 + }, + { + "epoch": 58.47531673219746, + "grad_norm": 0.20381265878677368, + "learning_rate": 0.0006, + "loss": 3.5228846073150635, + "step": 4210 + }, + { + "epoch": 58.489296636085626, + "grad_norm": 0.20927058160305023, + "learning_rate": 0.0006, + "loss": 3.5376980304718018, + "step": 4211 + }, + { + "epoch": 58.50327653997379, + "grad_norm": 0.22782307863235474, + "learning_rate": 0.0006, + "loss": 3.5477585792541504, + "step": 4212 + }, + { + "epoch": 58.517256443861946, + "grad_norm": 0.20143239200115204, + "learning_rate": 0.0006, + "loss": 3.5429391860961914, + "step": 4213 + }, + { + "epoch": 58.53123634775011, + "grad_norm": 0.2120865285396576, + "learning_rate": 0.0006, + "loss": 3.5543365478515625, + "step": 4214 + }, + { + "epoch": 58.54521625163827, + "grad_norm": 0.2032771110534668, + "learning_rate": 0.0006, + "loss": 3.5307888984680176, + "step": 4215 + }, + { + "epoch": 58.55919615552643, + "grad_norm": 0.20994187891483307, + "learning_rate": 0.0006, + "loss": 3.581739664077759, + "step": 4216 + }, + { + "epoch": 58.57317605941459, + "grad_norm": 0.23686161637306213, + "learning_rate": 0.0006, + "loss": 3.5274312496185303, + "step": 4217 + }, + { + "epoch": 58.58715596330275, + "grad_norm": 0.21081998944282532, + "learning_rate": 0.0006, + "loss": 3.547239303588867, + "step": 4218 + }, + { + "epoch": 58.60113586719091, + "grad_norm": 0.20353151857852936, + "learning_rate": 0.0006, + "loss": 3.5522308349609375, + "step": 4219 + }, + { + "epoch": 58.615115771079076, + "grad_norm": 0.20888762176036835, + "learning_rate": 0.0006, + "loss": 3.5535459518432617, + "step": 4220 + }, + { + "epoch": 58.62909567496723, + "grad_norm": 0.2024519443511963, + "learning_rate": 0.0006, + "loss": 3.5320982933044434, + "step": 4221 + }, + { + "epoch": 58.643075578855395, + "grad_norm": 0.19622337818145752, + "learning_rate": 0.0006, + "loss": 3.5581917762756348, + "step": 4222 + }, + { + "epoch": 58.65705548274356, + "grad_norm": 0.1966600865125656, + "learning_rate": 0.0006, + "loss": 3.5412650108337402, + "step": 4223 + }, + { + "epoch": 58.671035386631715, + "grad_norm": 0.19325542449951172, + "learning_rate": 0.0006, + "loss": 3.570521593093872, + "step": 4224 + }, + { + "epoch": 58.68501529051988, + "grad_norm": 0.20674128830432892, + "learning_rate": 0.0006, + "loss": 3.5727484226226807, + "step": 4225 + }, + { + "epoch": 58.69899519440804, + "grad_norm": 0.1959284245967865, + "learning_rate": 0.0006, + "loss": 3.5655486583709717, + "step": 4226 + }, + { + "epoch": 58.7129750982962, + "grad_norm": 0.2044358104467392, + "learning_rate": 0.0006, + "loss": 3.5477449893951416, + "step": 4227 + }, + { + "epoch": 58.72695500218436, + "grad_norm": 0.21381069719791412, + "learning_rate": 0.0006, + "loss": 3.533381462097168, + "step": 4228 + }, + { + "epoch": 58.74093490607252, + "grad_norm": 0.20168009400367737, + "learning_rate": 0.0006, + "loss": 3.5401244163513184, + "step": 4229 + }, + { + "epoch": 58.75491480996068, + "grad_norm": 0.20853811502456665, + "learning_rate": 0.0006, + "loss": 3.5669009685516357, + "step": 4230 + }, + { + "epoch": 58.768894713848844, + "grad_norm": 0.2135785073041916, + "learning_rate": 0.0006, + "loss": 3.5697989463806152, + "step": 4231 + }, + { + "epoch": 58.782874617737, + "grad_norm": 0.20372799038887024, + "learning_rate": 0.0006, + "loss": 3.592245101928711, + "step": 4232 + }, + { + "epoch": 58.796854521625164, + "grad_norm": 0.20562207698822021, + "learning_rate": 0.0006, + "loss": 3.5732932090759277, + "step": 4233 + }, + { + "epoch": 58.81083442551333, + "grad_norm": 0.1932520568370819, + "learning_rate": 0.0006, + "loss": 3.581766128540039, + "step": 4234 + }, + { + "epoch": 58.824814329401484, + "grad_norm": 0.20229186117649078, + "learning_rate": 0.0006, + "loss": 3.5758426189422607, + "step": 4235 + }, + { + "epoch": 58.83879423328965, + "grad_norm": 0.21348924934864044, + "learning_rate": 0.0006, + "loss": 3.573164939880371, + "step": 4236 + }, + { + "epoch": 58.8527741371778, + "grad_norm": 0.2240375131368637, + "learning_rate": 0.0006, + "loss": 3.578442096710205, + "step": 4237 + }, + { + "epoch": 58.86675404106597, + "grad_norm": 0.22859376668930054, + "learning_rate": 0.0006, + "loss": 3.5597116947174072, + "step": 4238 + }, + { + "epoch": 58.88073394495413, + "grad_norm": 0.22347290813922882, + "learning_rate": 0.0006, + "loss": 3.557039260864258, + "step": 4239 + }, + { + "epoch": 58.89471384884229, + "grad_norm": 0.19835364818572998, + "learning_rate": 0.0006, + "loss": 3.5832467079162598, + "step": 4240 + }, + { + "epoch": 58.90869375273045, + "grad_norm": 0.21189740300178528, + "learning_rate": 0.0006, + "loss": 3.5421836376190186, + "step": 4241 + }, + { + "epoch": 58.92267365661861, + "grad_norm": 0.21234451234340668, + "learning_rate": 0.0006, + "loss": 3.6048710346221924, + "step": 4242 + }, + { + "epoch": 58.93665356050677, + "grad_norm": 0.2107880860567093, + "learning_rate": 0.0006, + "loss": 3.58248233795166, + "step": 4243 + }, + { + "epoch": 58.95063346439493, + "grad_norm": 0.21674086153507233, + "learning_rate": 0.0006, + "loss": 3.582352876663208, + "step": 4244 + }, + { + "epoch": 58.964613368283096, + "grad_norm": 0.21057581901550293, + "learning_rate": 0.0006, + "loss": 3.5387773513793945, + "step": 4245 + }, + { + "epoch": 58.97859327217125, + "grad_norm": 0.20203082263469696, + "learning_rate": 0.0006, + "loss": 3.5805740356445312, + "step": 4246 + }, + { + "epoch": 58.992573176059416, + "grad_norm": 0.21071292459964752, + "learning_rate": 0.0006, + "loss": 3.5644760131835938, + "step": 4247 + }, + { + "epoch": 59.0, + "grad_norm": 0.2473233938217163, + "learning_rate": 0.0006, + "loss": 3.56392765045166, + "step": 4248 + }, + { + "epoch": 59.0, + "eval_loss": 3.9670467376708984, + "eval_runtime": 44.7697, + "eval_samples_per_second": 54.546, + "eval_steps_per_second": 3.417, + "step": 4248 + }, + { + "epoch": 59.01397990388816, + "grad_norm": 0.22915491461753845, + "learning_rate": 0.0006, + "loss": 3.5110130310058594, + "step": 4249 + }, + { + "epoch": 59.02795980777632, + "grad_norm": 0.2629511058330536, + "learning_rate": 0.0006, + "loss": 3.5493721961975098, + "step": 4250 + }, + { + "epoch": 59.04193971166448, + "grad_norm": 0.2954505383968353, + "learning_rate": 0.0006, + "loss": 3.555753707885742, + "step": 4251 + }, + { + "epoch": 59.05591961555265, + "grad_norm": 0.2728694677352905, + "learning_rate": 0.0006, + "loss": 3.5089950561523438, + "step": 4252 + }, + { + "epoch": 59.0698995194408, + "grad_norm": 0.25955384969711304, + "learning_rate": 0.0006, + "loss": 3.509044647216797, + "step": 4253 + }, + { + "epoch": 59.083879423328966, + "grad_norm": 0.32285967469215393, + "learning_rate": 0.0006, + "loss": 3.5324721336364746, + "step": 4254 + }, + { + "epoch": 59.09785932721712, + "grad_norm": 0.2913302779197693, + "learning_rate": 0.0006, + "loss": 3.5004022121429443, + "step": 4255 + }, + { + "epoch": 59.111839231105286, + "grad_norm": 0.23795513808727264, + "learning_rate": 0.0006, + "loss": 3.515099048614502, + "step": 4256 + }, + { + "epoch": 59.12581913499345, + "grad_norm": 0.2788177728652954, + "learning_rate": 0.0006, + "loss": 3.524991035461426, + "step": 4257 + }, + { + "epoch": 59.139799038881605, + "grad_norm": 0.32389938831329346, + "learning_rate": 0.0006, + "loss": 3.5330004692077637, + "step": 4258 + }, + { + "epoch": 59.15377894276977, + "grad_norm": 0.2921825647354126, + "learning_rate": 0.0006, + "loss": 3.530616283416748, + "step": 4259 + }, + { + "epoch": 59.16775884665793, + "grad_norm": 0.28415167331695557, + "learning_rate": 0.0006, + "loss": 3.5276989936828613, + "step": 4260 + }, + { + "epoch": 59.18173875054609, + "grad_norm": 0.283626526594162, + "learning_rate": 0.0006, + "loss": 3.564985752105713, + "step": 4261 + }, + { + "epoch": 59.19571865443425, + "grad_norm": 0.2655615210533142, + "learning_rate": 0.0006, + "loss": 3.536499500274658, + "step": 4262 + }, + { + "epoch": 59.20969855832241, + "grad_norm": 0.2794124484062195, + "learning_rate": 0.0006, + "loss": 3.570883274078369, + "step": 4263 + }, + { + "epoch": 59.22367846221057, + "grad_norm": 0.2803778052330017, + "learning_rate": 0.0006, + "loss": 3.5143651962280273, + "step": 4264 + }, + { + "epoch": 59.237658366098735, + "grad_norm": 0.2584295868873596, + "learning_rate": 0.0006, + "loss": 3.548056125640869, + "step": 4265 + }, + { + "epoch": 59.25163826998689, + "grad_norm": 0.26859962940216064, + "learning_rate": 0.0006, + "loss": 3.511655807495117, + "step": 4266 + }, + { + "epoch": 59.265618173875055, + "grad_norm": 0.26620036363601685, + "learning_rate": 0.0006, + "loss": 3.5554311275482178, + "step": 4267 + }, + { + "epoch": 59.27959807776322, + "grad_norm": 0.2325621247291565, + "learning_rate": 0.0006, + "loss": 3.5126709938049316, + "step": 4268 + }, + { + "epoch": 59.293577981651374, + "grad_norm": 0.24758809804916382, + "learning_rate": 0.0006, + "loss": 3.5747783184051514, + "step": 4269 + }, + { + "epoch": 59.30755788553954, + "grad_norm": 0.26378121972084045, + "learning_rate": 0.0006, + "loss": 3.538012742996216, + "step": 4270 + }, + { + "epoch": 59.3215377894277, + "grad_norm": 0.24299141764640808, + "learning_rate": 0.0006, + "loss": 3.533834457397461, + "step": 4271 + }, + { + "epoch": 59.33551769331586, + "grad_norm": 0.20792774856090546, + "learning_rate": 0.0006, + "loss": 3.5645856857299805, + "step": 4272 + }, + { + "epoch": 59.34949759720402, + "grad_norm": 0.21124716103076935, + "learning_rate": 0.0006, + "loss": 3.5616869926452637, + "step": 4273 + }, + { + "epoch": 59.36347750109218, + "grad_norm": 0.2644400894641876, + "learning_rate": 0.0006, + "loss": 3.531334400177002, + "step": 4274 + }, + { + "epoch": 59.37745740498034, + "grad_norm": 0.27659082412719727, + "learning_rate": 0.0006, + "loss": 3.5557894706726074, + "step": 4275 + }, + { + "epoch": 59.391437308868504, + "grad_norm": 0.21931052207946777, + "learning_rate": 0.0006, + "loss": 3.537261486053467, + "step": 4276 + }, + { + "epoch": 59.40541721275666, + "grad_norm": 0.20661118626594543, + "learning_rate": 0.0006, + "loss": 3.568042755126953, + "step": 4277 + }, + { + "epoch": 59.419397116644824, + "grad_norm": 0.2157975435256958, + "learning_rate": 0.0006, + "loss": 3.550891160964966, + "step": 4278 + }, + { + "epoch": 59.43337702053299, + "grad_norm": 0.20762090384960175, + "learning_rate": 0.0006, + "loss": 3.565798282623291, + "step": 4279 + }, + { + "epoch": 59.44735692442114, + "grad_norm": 0.19575528800487518, + "learning_rate": 0.0006, + "loss": 3.5518856048583984, + "step": 4280 + }, + { + "epoch": 59.46133682830931, + "grad_norm": 0.20730678737163544, + "learning_rate": 0.0006, + "loss": 3.5412862300872803, + "step": 4281 + }, + { + "epoch": 59.47531673219746, + "grad_norm": 0.21095411479473114, + "learning_rate": 0.0006, + "loss": 3.5491604804992676, + "step": 4282 + }, + { + "epoch": 59.489296636085626, + "grad_norm": 0.2229546755552292, + "learning_rate": 0.0006, + "loss": 3.534517765045166, + "step": 4283 + }, + { + "epoch": 59.50327653997379, + "grad_norm": 0.22375687956809998, + "learning_rate": 0.0006, + "loss": 3.5696470737457275, + "step": 4284 + }, + { + "epoch": 59.517256443861946, + "grad_norm": 0.2563750743865967, + "learning_rate": 0.0006, + "loss": 3.6050190925598145, + "step": 4285 + }, + { + "epoch": 59.53123634775011, + "grad_norm": 0.3055726885795593, + "learning_rate": 0.0006, + "loss": 3.572263240814209, + "step": 4286 + }, + { + "epoch": 59.54521625163827, + "grad_norm": 0.3095283508300781, + "learning_rate": 0.0006, + "loss": 3.545631170272827, + "step": 4287 + }, + { + "epoch": 59.55919615552643, + "grad_norm": 0.24958640336990356, + "learning_rate": 0.0006, + "loss": 3.549663543701172, + "step": 4288 + }, + { + "epoch": 59.57317605941459, + "grad_norm": 0.22277019917964935, + "learning_rate": 0.0006, + "loss": 3.5721545219421387, + "step": 4289 + }, + { + "epoch": 59.58715596330275, + "grad_norm": 0.22153833508491516, + "learning_rate": 0.0006, + "loss": 3.5103156566619873, + "step": 4290 + }, + { + "epoch": 59.60113586719091, + "grad_norm": 0.25579726696014404, + "learning_rate": 0.0006, + "loss": 3.550353527069092, + "step": 4291 + }, + { + "epoch": 59.615115771079076, + "grad_norm": 0.2242603898048401, + "learning_rate": 0.0006, + "loss": 3.5284783840179443, + "step": 4292 + }, + { + "epoch": 59.62909567496723, + "grad_norm": 0.21665683388710022, + "learning_rate": 0.0006, + "loss": 3.553835868835449, + "step": 4293 + }, + { + "epoch": 59.643075578855395, + "grad_norm": 0.21703463792800903, + "learning_rate": 0.0006, + "loss": 3.5393173694610596, + "step": 4294 + }, + { + "epoch": 59.65705548274356, + "grad_norm": 0.21264998614788055, + "learning_rate": 0.0006, + "loss": 3.566108465194702, + "step": 4295 + }, + { + "epoch": 59.671035386631715, + "grad_norm": 0.1935717612504959, + "learning_rate": 0.0006, + "loss": 3.5934512615203857, + "step": 4296 + }, + { + "epoch": 59.68501529051988, + "grad_norm": 0.20164808630943298, + "learning_rate": 0.0006, + "loss": 3.545046329498291, + "step": 4297 + }, + { + "epoch": 59.69899519440804, + "grad_norm": 0.19589892029762268, + "learning_rate": 0.0006, + "loss": 3.5302319526672363, + "step": 4298 + }, + { + "epoch": 59.7129750982962, + "grad_norm": 0.1893095225095749, + "learning_rate": 0.0006, + "loss": 3.5947837829589844, + "step": 4299 + }, + { + "epoch": 59.72695500218436, + "grad_norm": 0.20218202471733093, + "learning_rate": 0.0006, + "loss": 3.5889904499053955, + "step": 4300 + }, + { + "epoch": 59.74093490607252, + "grad_norm": 0.19681277871131897, + "learning_rate": 0.0006, + "loss": 3.581536293029785, + "step": 4301 + }, + { + "epoch": 59.75491480996068, + "grad_norm": 0.20112384855747223, + "learning_rate": 0.0006, + "loss": 3.5509750843048096, + "step": 4302 + }, + { + "epoch": 59.768894713848844, + "grad_norm": 0.1969940960407257, + "learning_rate": 0.0006, + "loss": 3.5462636947631836, + "step": 4303 + }, + { + "epoch": 59.782874617737, + "grad_norm": 0.20936219394207, + "learning_rate": 0.0006, + "loss": 3.5284390449523926, + "step": 4304 + }, + { + "epoch": 59.796854521625164, + "grad_norm": 0.21717803180217743, + "learning_rate": 0.0006, + "loss": 3.5669212341308594, + "step": 4305 + }, + { + "epoch": 59.81083442551333, + "grad_norm": 0.20210883021354675, + "learning_rate": 0.0006, + "loss": 3.5366921424865723, + "step": 4306 + }, + { + "epoch": 59.824814329401484, + "grad_norm": 0.224124476313591, + "learning_rate": 0.0006, + "loss": 3.5457663536071777, + "step": 4307 + }, + { + "epoch": 59.83879423328965, + "grad_norm": 0.2186291366815567, + "learning_rate": 0.0006, + "loss": 3.5732779502868652, + "step": 4308 + }, + { + "epoch": 59.8527741371778, + "grad_norm": 0.19785884022712708, + "learning_rate": 0.0006, + "loss": 3.5471811294555664, + "step": 4309 + }, + { + "epoch": 59.86675404106597, + "grad_norm": 0.24774281680583954, + "learning_rate": 0.0006, + "loss": 3.5839807987213135, + "step": 4310 + }, + { + "epoch": 59.88073394495413, + "grad_norm": 0.25087007880210876, + "learning_rate": 0.0006, + "loss": 3.56972336769104, + "step": 4311 + }, + { + "epoch": 59.89471384884229, + "grad_norm": 0.21474683284759521, + "learning_rate": 0.0006, + "loss": 3.5199289321899414, + "step": 4312 + }, + { + "epoch": 59.90869375273045, + "grad_norm": 0.2087765336036682, + "learning_rate": 0.0006, + "loss": 3.5777320861816406, + "step": 4313 + }, + { + "epoch": 59.92267365661861, + "grad_norm": 0.2228539139032364, + "learning_rate": 0.0006, + "loss": 3.531118392944336, + "step": 4314 + }, + { + "epoch": 59.93665356050677, + "grad_norm": 0.2456534057855606, + "learning_rate": 0.0006, + "loss": 3.5448033809661865, + "step": 4315 + }, + { + "epoch": 59.95063346439493, + "grad_norm": 0.2699171006679535, + "learning_rate": 0.0006, + "loss": 3.560724973678589, + "step": 4316 + }, + { + "epoch": 59.964613368283096, + "grad_norm": 0.2664966881275177, + "learning_rate": 0.0006, + "loss": 3.5932974815368652, + "step": 4317 + }, + { + "epoch": 59.97859327217125, + "grad_norm": 0.2137683779001236, + "learning_rate": 0.0006, + "loss": 3.5610086917877197, + "step": 4318 + }, + { + "epoch": 59.992573176059416, + "grad_norm": 0.2067531794309616, + "learning_rate": 0.0006, + "loss": 3.5588603019714355, + "step": 4319 + }, + { + "epoch": 60.0, + "grad_norm": 0.2458500862121582, + "learning_rate": 0.0006, + "loss": 3.5636165142059326, + "step": 4320 + }, + { + "epoch": 60.0, + "eval_loss": 3.967288017272949, + "eval_runtime": 44.2225, + "eval_samples_per_second": 55.221, + "eval_steps_per_second": 3.46, + "step": 4320 + }, + { + "epoch": 60.01397990388816, + "grad_norm": 0.25330978631973267, + "learning_rate": 0.0006, + "loss": 3.524343490600586, + "step": 4321 + }, + { + "epoch": 60.02795980777632, + "grad_norm": 0.3005860447883606, + "learning_rate": 0.0006, + "loss": 3.533761501312256, + "step": 4322 + }, + { + "epoch": 60.04193971166448, + "grad_norm": 0.29054996371269226, + "learning_rate": 0.0006, + "loss": 3.536410331726074, + "step": 4323 + }, + { + "epoch": 60.05591961555265, + "grad_norm": 0.23265458643436432, + "learning_rate": 0.0006, + "loss": 3.4965157508850098, + "step": 4324 + }, + { + "epoch": 60.0698995194408, + "grad_norm": 0.2330862134695053, + "learning_rate": 0.0006, + "loss": 3.4899768829345703, + "step": 4325 + }, + { + "epoch": 60.083879423328966, + "grad_norm": 0.23188516497612, + "learning_rate": 0.0006, + "loss": 3.504887580871582, + "step": 4326 + }, + { + "epoch": 60.09785932721712, + "grad_norm": 0.2152940034866333, + "learning_rate": 0.0006, + "loss": 3.5274603366851807, + "step": 4327 + }, + { + "epoch": 60.111839231105286, + "grad_norm": 0.21918490529060364, + "learning_rate": 0.0006, + "loss": 3.5223636627197266, + "step": 4328 + }, + { + "epoch": 60.12581913499345, + "grad_norm": 0.23193582892417908, + "learning_rate": 0.0006, + "loss": 3.5171899795532227, + "step": 4329 + }, + { + "epoch": 60.139799038881605, + "grad_norm": 0.2336687296628952, + "learning_rate": 0.0006, + "loss": 3.5403029918670654, + "step": 4330 + }, + { + "epoch": 60.15377894276977, + "grad_norm": 0.23833593726158142, + "learning_rate": 0.0006, + "loss": 3.5055623054504395, + "step": 4331 + }, + { + "epoch": 60.16775884665793, + "grad_norm": 0.2389385998249054, + "learning_rate": 0.0006, + "loss": 3.5423574447631836, + "step": 4332 + }, + { + "epoch": 60.18173875054609, + "grad_norm": 0.21729786694049835, + "learning_rate": 0.0006, + "loss": 3.508272647857666, + "step": 4333 + }, + { + "epoch": 60.19571865443425, + "grad_norm": 0.2118137627840042, + "learning_rate": 0.0006, + "loss": 3.556934356689453, + "step": 4334 + }, + { + "epoch": 60.20969855832241, + "grad_norm": 0.23217040300369263, + "learning_rate": 0.0006, + "loss": 3.546459674835205, + "step": 4335 + }, + { + "epoch": 60.22367846221057, + "grad_norm": 0.2446565330028534, + "learning_rate": 0.0006, + "loss": 3.5662269592285156, + "step": 4336 + }, + { + "epoch": 60.237658366098735, + "grad_norm": 0.22065940499305725, + "learning_rate": 0.0006, + "loss": 3.550262451171875, + "step": 4337 + }, + { + "epoch": 60.25163826998689, + "grad_norm": 0.22212697565555573, + "learning_rate": 0.0006, + "loss": 3.5495731830596924, + "step": 4338 + }, + { + "epoch": 60.265618173875055, + "grad_norm": 0.21770696341991425, + "learning_rate": 0.0006, + "loss": 3.5345935821533203, + "step": 4339 + }, + { + "epoch": 60.27959807776322, + "grad_norm": 0.2089550793170929, + "learning_rate": 0.0006, + "loss": 3.5704336166381836, + "step": 4340 + }, + { + "epoch": 60.293577981651374, + "grad_norm": 0.20426379144191742, + "learning_rate": 0.0006, + "loss": 3.546909809112549, + "step": 4341 + }, + { + "epoch": 60.30755788553954, + "grad_norm": 0.2038658708333969, + "learning_rate": 0.0006, + "loss": 3.5444231033325195, + "step": 4342 + }, + { + "epoch": 60.3215377894277, + "grad_norm": 0.20485089719295502, + "learning_rate": 0.0006, + "loss": 3.561206817626953, + "step": 4343 + }, + { + "epoch": 60.33551769331586, + "grad_norm": 0.19151435792446136, + "learning_rate": 0.0006, + "loss": 3.5226097106933594, + "step": 4344 + }, + { + "epoch": 60.34949759720402, + "grad_norm": 0.19078181684017181, + "learning_rate": 0.0006, + "loss": 3.5431442260742188, + "step": 4345 + }, + { + "epoch": 60.36347750109218, + "grad_norm": 0.2032487392425537, + "learning_rate": 0.0006, + "loss": 3.5317721366882324, + "step": 4346 + }, + { + "epoch": 60.37745740498034, + "grad_norm": 0.18330955505371094, + "learning_rate": 0.0006, + "loss": 3.521145820617676, + "step": 4347 + }, + { + "epoch": 60.391437308868504, + "grad_norm": 0.18987730145454407, + "learning_rate": 0.0006, + "loss": 3.4980595111846924, + "step": 4348 + }, + { + "epoch": 60.40541721275666, + "grad_norm": 0.19873160123825073, + "learning_rate": 0.0006, + "loss": 3.5639595985412598, + "step": 4349 + }, + { + "epoch": 60.419397116644824, + "grad_norm": 0.20323137938976288, + "learning_rate": 0.0006, + "loss": 3.5364837646484375, + "step": 4350 + }, + { + "epoch": 60.43337702053299, + "grad_norm": 0.20755112171173096, + "learning_rate": 0.0006, + "loss": 3.565398931503296, + "step": 4351 + }, + { + "epoch": 60.44735692442114, + "grad_norm": 0.19222456216812134, + "learning_rate": 0.0006, + "loss": 3.569659948348999, + "step": 4352 + }, + { + "epoch": 60.46133682830931, + "grad_norm": 0.18698982894420624, + "learning_rate": 0.0006, + "loss": 3.5305557250976562, + "step": 4353 + }, + { + "epoch": 60.47531673219746, + "grad_norm": 0.19300664961338043, + "learning_rate": 0.0006, + "loss": 3.5398356914520264, + "step": 4354 + }, + { + "epoch": 60.489296636085626, + "grad_norm": 0.19573862850666046, + "learning_rate": 0.0006, + "loss": 3.5549232959747314, + "step": 4355 + }, + { + "epoch": 60.50327653997379, + "grad_norm": 0.21893447637557983, + "learning_rate": 0.0006, + "loss": 3.5427680015563965, + "step": 4356 + }, + { + "epoch": 60.517256443861946, + "grad_norm": 0.2375156730413437, + "learning_rate": 0.0006, + "loss": 3.5368900299072266, + "step": 4357 + }, + { + "epoch": 60.53123634775011, + "grad_norm": 0.2430058717727661, + "learning_rate": 0.0006, + "loss": 3.5812578201293945, + "step": 4358 + }, + { + "epoch": 60.54521625163827, + "grad_norm": 0.21769747138023376, + "learning_rate": 0.0006, + "loss": 3.563126564025879, + "step": 4359 + }, + { + "epoch": 60.55919615552643, + "grad_norm": 0.19841895997524261, + "learning_rate": 0.0006, + "loss": 3.5683727264404297, + "step": 4360 + }, + { + "epoch": 60.57317605941459, + "grad_norm": 0.22039084136486053, + "learning_rate": 0.0006, + "loss": 3.5417304039001465, + "step": 4361 + }, + { + "epoch": 60.58715596330275, + "grad_norm": 0.22528418898582458, + "learning_rate": 0.0006, + "loss": 3.5606675148010254, + "step": 4362 + }, + { + "epoch": 60.60113586719091, + "grad_norm": 0.19975383579730988, + "learning_rate": 0.0006, + "loss": 3.5345380306243896, + "step": 4363 + }, + { + "epoch": 60.615115771079076, + "grad_norm": 0.18953508138656616, + "learning_rate": 0.0006, + "loss": 3.523921012878418, + "step": 4364 + }, + { + "epoch": 60.62909567496723, + "grad_norm": 0.19997848570346832, + "learning_rate": 0.0006, + "loss": 3.553741931915283, + "step": 4365 + }, + { + "epoch": 60.643075578855395, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.57025408744812, + "step": 4366 + }, + { + "epoch": 60.65705548274356, + "grad_norm": 0.20452328026294708, + "learning_rate": 0.0006, + "loss": 3.5293073654174805, + "step": 4367 + }, + { + "epoch": 60.671035386631715, + "grad_norm": 0.18740518391132355, + "learning_rate": 0.0006, + "loss": 3.520880699157715, + "step": 4368 + }, + { + "epoch": 60.68501529051988, + "grad_norm": 0.19408279657363892, + "learning_rate": 0.0006, + "loss": 3.553086757659912, + "step": 4369 + }, + { + "epoch": 60.69899519440804, + "grad_norm": 0.19472180306911469, + "learning_rate": 0.0006, + "loss": 3.557744026184082, + "step": 4370 + }, + { + "epoch": 60.7129750982962, + "grad_norm": 0.18123279511928558, + "learning_rate": 0.0006, + "loss": 3.547276258468628, + "step": 4371 + }, + { + "epoch": 60.72695500218436, + "grad_norm": 0.21011893451213837, + "learning_rate": 0.0006, + "loss": 3.544990062713623, + "step": 4372 + }, + { + "epoch": 60.74093490607252, + "grad_norm": 0.25020623207092285, + "learning_rate": 0.0006, + "loss": 3.541600227355957, + "step": 4373 + }, + { + "epoch": 60.75491480996068, + "grad_norm": 0.2579628825187683, + "learning_rate": 0.0006, + "loss": 3.547964096069336, + "step": 4374 + }, + { + "epoch": 60.768894713848844, + "grad_norm": 0.23156116902828217, + "learning_rate": 0.0006, + "loss": 3.550957202911377, + "step": 4375 + }, + { + "epoch": 60.782874617737, + "grad_norm": 0.22070197761058807, + "learning_rate": 0.0006, + "loss": 3.4950358867645264, + "step": 4376 + }, + { + "epoch": 60.796854521625164, + "grad_norm": 0.222877636551857, + "learning_rate": 0.0006, + "loss": 3.5622036457061768, + "step": 4377 + }, + { + "epoch": 60.81083442551333, + "grad_norm": 0.21662060916423798, + "learning_rate": 0.0006, + "loss": 3.551515579223633, + "step": 4378 + }, + { + "epoch": 60.824814329401484, + "grad_norm": 0.22380465269088745, + "learning_rate": 0.0006, + "loss": 3.5552866458892822, + "step": 4379 + }, + { + "epoch": 60.83879423328965, + "grad_norm": 0.24023373425006866, + "learning_rate": 0.0006, + "loss": 3.5741777420043945, + "step": 4380 + }, + { + "epoch": 60.8527741371778, + "grad_norm": 0.1921556293964386, + "learning_rate": 0.0006, + "loss": 3.535435199737549, + "step": 4381 + }, + { + "epoch": 60.86675404106597, + "grad_norm": 0.20002295076847076, + "learning_rate": 0.0006, + "loss": 3.5660810470581055, + "step": 4382 + }, + { + "epoch": 60.88073394495413, + "grad_norm": 0.22797644138336182, + "learning_rate": 0.0006, + "loss": 3.5361297130584717, + "step": 4383 + }, + { + "epoch": 60.89471384884229, + "grad_norm": 0.24129843711853027, + "learning_rate": 0.0006, + "loss": 3.578810214996338, + "step": 4384 + }, + { + "epoch": 60.90869375273045, + "grad_norm": 0.2363646924495697, + "learning_rate": 0.0006, + "loss": 3.5245485305786133, + "step": 4385 + }, + { + "epoch": 60.92267365661861, + "grad_norm": 0.22811074554920197, + "learning_rate": 0.0006, + "loss": 3.551769733428955, + "step": 4386 + }, + { + "epoch": 60.93665356050677, + "grad_norm": 0.2204643338918686, + "learning_rate": 0.0006, + "loss": 3.5833442211151123, + "step": 4387 + }, + { + "epoch": 60.95063346439493, + "grad_norm": 0.21389783918857574, + "learning_rate": 0.0006, + "loss": 3.531735897064209, + "step": 4388 + }, + { + "epoch": 60.964613368283096, + "grad_norm": 0.22142091393470764, + "learning_rate": 0.0006, + "loss": 3.5482523441314697, + "step": 4389 + }, + { + "epoch": 60.97859327217125, + "grad_norm": 0.21186122298240662, + "learning_rate": 0.0006, + "loss": 3.540555477142334, + "step": 4390 + }, + { + "epoch": 60.992573176059416, + "grad_norm": 0.19939634203910828, + "learning_rate": 0.0006, + "loss": 3.576408624649048, + "step": 4391 + }, + { + "epoch": 61.0, + "grad_norm": 0.23696118593215942, + "learning_rate": 0.0006, + "loss": 3.5633749961853027, + "step": 4392 + }, + { + "epoch": 61.0, + "eval_loss": 3.9743118286132812, + "eval_runtime": 44.7392, + "eval_samples_per_second": 54.583, + "eval_steps_per_second": 3.42, + "step": 4392 + }, + { + "epoch": 61.01397990388816, + "grad_norm": 0.24024035036563873, + "learning_rate": 0.0006, + "loss": 3.532285690307617, + "step": 4393 + }, + { + "epoch": 61.02795980777632, + "grad_norm": 0.2475728690624237, + "learning_rate": 0.0006, + "loss": 3.543304920196533, + "step": 4394 + }, + { + "epoch": 61.04193971166448, + "grad_norm": 0.23326511681079865, + "learning_rate": 0.0006, + "loss": 3.5022737979888916, + "step": 4395 + }, + { + "epoch": 61.05591961555265, + "grad_norm": 0.21414779126644135, + "learning_rate": 0.0006, + "loss": 3.5337772369384766, + "step": 4396 + }, + { + "epoch": 61.0698995194408, + "grad_norm": 0.2234504371881485, + "learning_rate": 0.0006, + "loss": 3.539985179901123, + "step": 4397 + }, + { + "epoch": 61.083879423328966, + "grad_norm": 0.2199121117591858, + "learning_rate": 0.0006, + "loss": 3.5312232971191406, + "step": 4398 + }, + { + "epoch": 61.09785932721712, + "grad_norm": 0.2444634735584259, + "learning_rate": 0.0006, + "loss": 3.527348518371582, + "step": 4399 + }, + { + "epoch": 61.111839231105286, + "grad_norm": 0.29022055864334106, + "learning_rate": 0.0006, + "loss": 3.4902563095092773, + "step": 4400 + }, + { + "epoch": 61.12581913499345, + "grad_norm": 0.29494911432266235, + "learning_rate": 0.0006, + "loss": 3.498292922973633, + "step": 4401 + }, + { + "epoch": 61.139799038881605, + "grad_norm": 0.22292214632034302, + "learning_rate": 0.0006, + "loss": 3.533914089202881, + "step": 4402 + }, + { + "epoch": 61.15377894276977, + "grad_norm": 0.22136220335960388, + "learning_rate": 0.0006, + "loss": 3.5109519958496094, + "step": 4403 + }, + { + "epoch": 61.16775884665793, + "grad_norm": 0.2325095534324646, + "learning_rate": 0.0006, + "loss": 3.5289368629455566, + "step": 4404 + }, + { + "epoch": 61.18173875054609, + "grad_norm": 0.2413562536239624, + "learning_rate": 0.0006, + "loss": 3.518467903137207, + "step": 4405 + }, + { + "epoch": 61.19571865443425, + "grad_norm": 0.25906774401664734, + "learning_rate": 0.0006, + "loss": 3.525516986846924, + "step": 4406 + }, + { + "epoch": 61.20969855832241, + "grad_norm": 0.27686211466789246, + "learning_rate": 0.0006, + "loss": 3.5516865253448486, + "step": 4407 + }, + { + "epoch": 61.22367846221057, + "grad_norm": 0.2906339764595032, + "learning_rate": 0.0006, + "loss": 3.541128158569336, + "step": 4408 + }, + { + "epoch": 61.237658366098735, + "grad_norm": 0.27868953347206116, + "learning_rate": 0.0006, + "loss": 3.5193347930908203, + "step": 4409 + }, + { + "epoch": 61.25163826998689, + "grad_norm": 0.27658969163894653, + "learning_rate": 0.0006, + "loss": 3.502227783203125, + "step": 4410 + }, + { + "epoch": 61.265618173875055, + "grad_norm": 0.2933507561683655, + "learning_rate": 0.0006, + "loss": 3.530291795730591, + "step": 4411 + }, + { + "epoch": 61.27959807776322, + "grad_norm": 0.2631373405456543, + "learning_rate": 0.0006, + "loss": 3.551851749420166, + "step": 4412 + }, + { + "epoch": 61.293577981651374, + "grad_norm": 0.2546952962875366, + "learning_rate": 0.0006, + "loss": 3.5503034591674805, + "step": 4413 + }, + { + "epoch": 61.30755788553954, + "grad_norm": 0.23794181644916534, + "learning_rate": 0.0006, + "loss": 3.546926498413086, + "step": 4414 + }, + { + "epoch": 61.3215377894277, + "grad_norm": 0.24853180348873138, + "learning_rate": 0.0006, + "loss": 3.514120101928711, + "step": 4415 + }, + { + "epoch": 61.33551769331586, + "grad_norm": 0.22304897010326385, + "learning_rate": 0.0006, + "loss": 3.5430846214294434, + "step": 4416 + }, + { + "epoch": 61.34949759720402, + "grad_norm": 0.2315143197774887, + "learning_rate": 0.0006, + "loss": 3.520509719848633, + "step": 4417 + }, + { + "epoch": 61.36347750109218, + "grad_norm": 0.22943219542503357, + "learning_rate": 0.0006, + "loss": 3.5467031002044678, + "step": 4418 + }, + { + "epoch": 61.37745740498034, + "grad_norm": 0.20610259473323822, + "learning_rate": 0.0006, + "loss": 3.523524761199951, + "step": 4419 + }, + { + "epoch": 61.391437308868504, + "grad_norm": 0.23042091727256775, + "learning_rate": 0.0006, + "loss": 3.5619053840637207, + "step": 4420 + }, + { + "epoch": 61.40541721275666, + "grad_norm": 0.23525655269622803, + "learning_rate": 0.0006, + "loss": 3.5647311210632324, + "step": 4421 + }, + { + "epoch": 61.419397116644824, + "grad_norm": 0.24424530565738678, + "learning_rate": 0.0006, + "loss": 3.5278732776641846, + "step": 4422 + }, + { + "epoch": 61.43337702053299, + "grad_norm": 0.22195497155189514, + "learning_rate": 0.0006, + "loss": 3.500657558441162, + "step": 4423 + }, + { + "epoch": 61.44735692442114, + "grad_norm": 0.20596756041049957, + "learning_rate": 0.0006, + "loss": 3.5107016563415527, + "step": 4424 + }, + { + "epoch": 61.46133682830931, + "grad_norm": 0.21293926239013672, + "learning_rate": 0.0006, + "loss": 3.5248196125030518, + "step": 4425 + }, + { + "epoch": 61.47531673219746, + "grad_norm": 0.21993403136730194, + "learning_rate": 0.0006, + "loss": 3.5247411727905273, + "step": 4426 + }, + { + "epoch": 61.489296636085626, + "grad_norm": 0.19609302282333374, + "learning_rate": 0.0006, + "loss": 3.543978452682495, + "step": 4427 + }, + { + "epoch": 61.50327653997379, + "grad_norm": 0.2064359486103058, + "learning_rate": 0.0006, + "loss": 3.525879144668579, + "step": 4428 + }, + { + "epoch": 61.517256443861946, + "grad_norm": 0.221832275390625, + "learning_rate": 0.0006, + "loss": 3.542086601257324, + "step": 4429 + }, + { + "epoch": 61.53123634775011, + "grad_norm": 0.20173773169517517, + "learning_rate": 0.0006, + "loss": 3.5395596027374268, + "step": 4430 + }, + { + "epoch": 61.54521625163827, + "grad_norm": 0.21064360439777374, + "learning_rate": 0.0006, + "loss": 3.5651049613952637, + "step": 4431 + }, + { + "epoch": 61.55919615552643, + "grad_norm": 0.2079596370458603, + "learning_rate": 0.0006, + "loss": 3.513719081878662, + "step": 4432 + }, + { + "epoch": 61.57317605941459, + "grad_norm": 0.1862022429704666, + "learning_rate": 0.0006, + "loss": 3.5438897609710693, + "step": 4433 + }, + { + "epoch": 61.58715596330275, + "grad_norm": 0.202021524310112, + "learning_rate": 0.0006, + "loss": 3.5497570037841797, + "step": 4434 + }, + { + "epoch": 61.60113586719091, + "grad_norm": 0.2252725064754486, + "learning_rate": 0.0006, + "loss": 3.5361452102661133, + "step": 4435 + }, + { + "epoch": 61.615115771079076, + "grad_norm": 0.22194477915763855, + "learning_rate": 0.0006, + "loss": 3.5436792373657227, + "step": 4436 + }, + { + "epoch": 61.62909567496723, + "grad_norm": 0.20660430192947388, + "learning_rate": 0.0006, + "loss": 3.5347955226898193, + "step": 4437 + }, + { + "epoch": 61.643075578855395, + "grad_norm": 0.19738668203353882, + "learning_rate": 0.0006, + "loss": 3.5478930473327637, + "step": 4438 + }, + { + "epoch": 61.65705548274356, + "grad_norm": 0.19570894539356232, + "learning_rate": 0.0006, + "loss": 3.581364154815674, + "step": 4439 + }, + { + "epoch": 61.671035386631715, + "grad_norm": 0.2311817854642868, + "learning_rate": 0.0006, + "loss": 3.5336194038391113, + "step": 4440 + }, + { + "epoch": 61.68501529051988, + "grad_norm": 0.23114202916622162, + "learning_rate": 0.0006, + "loss": 3.5473289489746094, + "step": 4441 + }, + { + "epoch": 61.69899519440804, + "grad_norm": 0.2412044256925583, + "learning_rate": 0.0006, + "loss": 3.558802604675293, + "step": 4442 + }, + { + "epoch": 61.7129750982962, + "grad_norm": 0.22932057082653046, + "learning_rate": 0.0006, + "loss": 3.553133726119995, + "step": 4443 + }, + { + "epoch": 61.72695500218436, + "grad_norm": 0.23192140460014343, + "learning_rate": 0.0006, + "loss": 3.5247159004211426, + "step": 4444 + }, + { + "epoch": 61.74093490607252, + "grad_norm": 0.23548972606658936, + "learning_rate": 0.0006, + "loss": 3.5654778480529785, + "step": 4445 + }, + { + "epoch": 61.75491480996068, + "grad_norm": 0.20992626249790192, + "learning_rate": 0.0006, + "loss": 3.5568647384643555, + "step": 4446 + }, + { + "epoch": 61.768894713848844, + "grad_norm": 0.20303797721862793, + "learning_rate": 0.0006, + "loss": 3.564765453338623, + "step": 4447 + }, + { + "epoch": 61.782874617737, + "grad_norm": 0.2019573301076889, + "learning_rate": 0.0006, + "loss": 3.523521900177002, + "step": 4448 + }, + { + "epoch": 61.796854521625164, + "grad_norm": 0.20591112971305847, + "learning_rate": 0.0006, + "loss": 3.5361227989196777, + "step": 4449 + }, + { + "epoch": 61.81083442551333, + "grad_norm": 0.21811535954475403, + "learning_rate": 0.0006, + "loss": 3.56982159614563, + "step": 4450 + }, + { + "epoch": 61.824814329401484, + "grad_norm": 0.24934124946594238, + "learning_rate": 0.0006, + "loss": 3.5518784523010254, + "step": 4451 + }, + { + "epoch": 61.83879423328965, + "grad_norm": 0.28142663836479187, + "learning_rate": 0.0006, + "loss": 3.5480635166168213, + "step": 4452 + }, + { + "epoch": 61.8527741371778, + "grad_norm": 0.27585235238075256, + "learning_rate": 0.0006, + "loss": 3.56685733795166, + "step": 4453 + }, + { + "epoch": 61.86675404106597, + "grad_norm": 0.24309827387332916, + "learning_rate": 0.0006, + "loss": 3.551058769226074, + "step": 4454 + }, + { + "epoch": 61.88073394495413, + "grad_norm": 0.22480300068855286, + "learning_rate": 0.0006, + "loss": 3.5644495487213135, + "step": 4455 + }, + { + "epoch": 61.89471384884229, + "grad_norm": 0.19861266016960144, + "learning_rate": 0.0006, + "loss": 3.5529613494873047, + "step": 4456 + }, + { + "epoch": 61.90869375273045, + "grad_norm": 0.20176313817501068, + "learning_rate": 0.0006, + "loss": 3.5173492431640625, + "step": 4457 + }, + { + "epoch": 61.92267365661861, + "grad_norm": 0.1964731365442276, + "learning_rate": 0.0006, + "loss": 3.5555479526519775, + "step": 4458 + }, + { + "epoch": 61.93665356050677, + "grad_norm": 0.20427751541137695, + "learning_rate": 0.0006, + "loss": 3.5312647819519043, + "step": 4459 + }, + { + "epoch": 61.95063346439493, + "grad_norm": 0.21940940618515015, + "learning_rate": 0.0006, + "loss": 3.536012649536133, + "step": 4460 + }, + { + "epoch": 61.964613368283096, + "grad_norm": 0.2100883573293686, + "learning_rate": 0.0006, + "loss": 3.5627548694610596, + "step": 4461 + }, + { + "epoch": 61.97859327217125, + "grad_norm": 0.21980689465999603, + "learning_rate": 0.0006, + "loss": 3.5933351516723633, + "step": 4462 + }, + { + "epoch": 61.992573176059416, + "grad_norm": 0.23822137713432312, + "learning_rate": 0.0006, + "loss": 3.567392349243164, + "step": 4463 + }, + { + "epoch": 62.0, + "grad_norm": 0.293637752532959, + "learning_rate": 0.0006, + "loss": 3.5707521438598633, + "step": 4464 + }, + { + "epoch": 62.0, + "eval_loss": 3.9813005924224854, + "eval_runtime": 44.8261, + "eval_samples_per_second": 54.477, + "eval_steps_per_second": 3.413, + "step": 4464 + }, + { + "epoch": 62.01397990388816, + "grad_norm": 0.2819560766220093, + "learning_rate": 0.0006, + "loss": 3.5146231651306152, + "step": 4465 + }, + { + "epoch": 62.02795980777632, + "grad_norm": 0.2446105033159256, + "learning_rate": 0.0006, + "loss": 3.48366117477417, + "step": 4466 + }, + { + "epoch": 62.04193971166448, + "grad_norm": 0.26826128363609314, + "learning_rate": 0.0006, + "loss": 3.511063814163208, + "step": 4467 + }, + { + "epoch": 62.05591961555265, + "grad_norm": 0.28266897797584534, + "learning_rate": 0.0006, + "loss": 3.560831069946289, + "step": 4468 + }, + { + "epoch": 62.0698995194408, + "grad_norm": 0.262866348028183, + "learning_rate": 0.0006, + "loss": 3.5248615741729736, + "step": 4469 + }, + { + "epoch": 62.083879423328966, + "grad_norm": 0.22957175970077515, + "learning_rate": 0.0006, + "loss": 3.518132209777832, + "step": 4470 + }, + { + "epoch": 62.09785932721712, + "grad_norm": 0.2311105579137802, + "learning_rate": 0.0006, + "loss": 3.520376443862915, + "step": 4471 + }, + { + "epoch": 62.111839231105286, + "grad_norm": 0.2455885261297226, + "learning_rate": 0.0006, + "loss": 3.532329797744751, + "step": 4472 + }, + { + "epoch": 62.12581913499345, + "grad_norm": 0.22050215303897858, + "learning_rate": 0.0006, + "loss": 3.5367608070373535, + "step": 4473 + }, + { + "epoch": 62.139799038881605, + "grad_norm": 0.2187507450580597, + "learning_rate": 0.0006, + "loss": 3.5165085792541504, + "step": 4474 + }, + { + "epoch": 62.15377894276977, + "grad_norm": 0.23510432243347168, + "learning_rate": 0.0006, + "loss": 3.5357909202575684, + "step": 4475 + }, + { + "epoch": 62.16775884665793, + "grad_norm": 0.22336673736572266, + "learning_rate": 0.0006, + "loss": 3.5183372497558594, + "step": 4476 + }, + { + "epoch": 62.18173875054609, + "grad_norm": 0.22019170224666595, + "learning_rate": 0.0006, + "loss": 3.532637596130371, + "step": 4477 + }, + { + "epoch": 62.19571865443425, + "grad_norm": 0.20902299880981445, + "learning_rate": 0.0006, + "loss": 3.5421581268310547, + "step": 4478 + }, + { + "epoch": 62.20969855832241, + "grad_norm": 0.22846505045890808, + "learning_rate": 0.0006, + "loss": 3.5008513927459717, + "step": 4479 + }, + { + "epoch": 62.22367846221057, + "grad_norm": 0.23657570779323578, + "learning_rate": 0.0006, + "loss": 3.5454330444335938, + "step": 4480 + }, + { + "epoch": 62.237658366098735, + "grad_norm": 0.22021226584911346, + "learning_rate": 0.0006, + "loss": 3.535137891769409, + "step": 4481 + }, + { + "epoch": 62.25163826998689, + "grad_norm": 0.21457694470882416, + "learning_rate": 0.0006, + "loss": 3.5051913261413574, + "step": 4482 + }, + { + "epoch": 62.265618173875055, + "grad_norm": 0.20432431995868683, + "learning_rate": 0.0006, + "loss": 3.5237550735473633, + "step": 4483 + }, + { + "epoch": 62.27959807776322, + "grad_norm": 0.20499777793884277, + "learning_rate": 0.0006, + "loss": 3.537209987640381, + "step": 4484 + }, + { + "epoch": 62.293577981651374, + "grad_norm": 0.21323661506175995, + "learning_rate": 0.0006, + "loss": 3.518765687942505, + "step": 4485 + }, + { + "epoch": 62.30755788553954, + "grad_norm": 0.19734761118888855, + "learning_rate": 0.0006, + "loss": 3.5132994651794434, + "step": 4486 + }, + { + "epoch": 62.3215377894277, + "grad_norm": 0.1844230592250824, + "learning_rate": 0.0006, + "loss": 3.5348291397094727, + "step": 4487 + }, + { + "epoch": 62.33551769331586, + "grad_norm": 0.20451737940311432, + "learning_rate": 0.0006, + "loss": 3.5055956840515137, + "step": 4488 + }, + { + "epoch": 62.34949759720402, + "grad_norm": 0.20004220306873322, + "learning_rate": 0.0006, + "loss": 3.558253526687622, + "step": 4489 + }, + { + "epoch": 62.36347750109218, + "grad_norm": 0.20544862747192383, + "learning_rate": 0.0006, + "loss": 3.5031163692474365, + "step": 4490 + }, + { + "epoch": 62.37745740498034, + "grad_norm": 0.23045147955417633, + "learning_rate": 0.0006, + "loss": 3.526170253753662, + "step": 4491 + }, + { + "epoch": 62.391437308868504, + "grad_norm": 0.2580485939979553, + "learning_rate": 0.0006, + "loss": 3.561131238937378, + "step": 4492 + }, + { + "epoch": 62.40541721275666, + "grad_norm": 0.24825656414031982, + "learning_rate": 0.0006, + "loss": 3.5550408363342285, + "step": 4493 + }, + { + "epoch": 62.419397116644824, + "grad_norm": 0.2317914366722107, + "learning_rate": 0.0006, + "loss": 3.543360948562622, + "step": 4494 + }, + { + "epoch": 62.43337702053299, + "grad_norm": 0.2186558097600937, + "learning_rate": 0.0006, + "loss": 3.5293631553649902, + "step": 4495 + }, + { + "epoch": 62.44735692442114, + "grad_norm": 0.22694920003414154, + "learning_rate": 0.0006, + "loss": 3.5315871238708496, + "step": 4496 + }, + { + "epoch": 62.46133682830931, + "grad_norm": 0.24042636156082153, + "learning_rate": 0.0006, + "loss": 3.507556915283203, + "step": 4497 + }, + { + "epoch": 62.47531673219746, + "grad_norm": 0.23853783309459686, + "learning_rate": 0.0006, + "loss": 3.546670913696289, + "step": 4498 + }, + { + "epoch": 62.489296636085626, + "grad_norm": 0.23252007365226746, + "learning_rate": 0.0006, + "loss": 3.522880792617798, + "step": 4499 + }, + { + "epoch": 62.50327653997379, + "grad_norm": 0.20553545653820038, + "learning_rate": 0.0006, + "loss": 3.5367445945739746, + "step": 4500 + }, + { + "epoch": 62.517256443861946, + "grad_norm": 0.19607895612716675, + "learning_rate": 0.0006, + "loss": 3.5319433212280273, + "step": 4501 + }, + { + "epoch": 62.53123634775011, + "grad_norm": 0.21482273936271667, + "learning_rate": 0.0006, + "loss": 3.525094509124756, + "step": 4502 + }, + { + "epoch": 62.54521625163827, + "grad_norm": 0.18248772621154785, + "learning_rate": 0.0006, + "loss": 3.5324039459228516, + "step": 4503 + }, + { + "epoch": 62.55919615552643, + "grad_norm": 0.19388431310653687, + "learning_rate": 0.0006, + "loss": 3.5579934120178223, + "step": 4504 + }, + { + "epoch": 62.57317605941459, + "grad_norm": 0.1987910121679306, + "learning_rate": 0.0006, + "loss": 3.5049524307250977, + "step": 4505 + }, + { + "epoch": 62.58715596330275, + "grad_norm": 0.2176462560892105, + "learning_rate": 0.0006, + "loss": 3.517348051071167, + "step": 4506 + }, + { + "epoch": 62.60113586719091, + "grad_norm": 0.20312298834323883, + "learning_rate": 0.0006, + "loss": 3.589355230331421, + "step": 4507 + }, + { + "epoch": 62.615115771079076, + "grad_norm": 0.20725034177303314, + "learning_rate": 0.0006, + "loss": 3.5353567600250244, + "step": 4508 + }, + { + "epoch": 62.62909567496723, + "grad_norm": 0.1944240778684616, + "learning_rate": 0.0006, + "loss": 3.5435595512390137, + "step": 4509 + }, + { + "epoch": 62.643075578855395, + "grad_norm": 0.1925448626279831, + "learning_rate": 0.0006, + "loss": 3.5406274795532227, + "step": 4510 + }, + { + "epoch": 62.65705548274356, + "grad_norm": 0.1932716965675354, + "learning_rate": 0.0006, + "loss": 3.582890748977661, + "step": 4511 + }, + { + "epoch": 62.671035386631715, + "grad_norm": 0.1993696093559265, + "learning_rate": 0.0006, + "loss": 3.533501148223877, + "step": 4512 + }, + { + "epoch": 62.68501529051988, + "grad_norm": 0.22586803138256073, + "learning_rate": 0.0006, + "loss": 3.5265021324157715, + "step": 4513 + }, + { + "epoch": 62.69899519440804, + "grad_norm": 0.22882722318172455, + "learning_rate": 0.0006, + "loss": 3.5486440658569336, + "step": 4514 + }, + { + "epoch": 62.7129750982962, + "grad_norm": 0.21674324572086334, + "learning_rate": 0.0006, + "loss": 3.5362353324890137, + "step": 4515 + }, + { + "epoch": 62.72695500218436, + "grad_norm": 0.1941487342119217, + "learning_rate": 0.0006, + "loss": 3.5191574096679688, + "step": 4516 + }, + { + "epoch": 62.74093490607252, + "grad_norm": 0.2034437507390976, + "learning_rate": 0.0006, + "loss": 3.5412280559539795, + "step": 4517 + }, + { + "epoch": 62.75491480996068, + "grad_norm": 0.22009888291358948, + "learning_rate": 0.0006, + "loss": 3.589108467102051, + "step": 4518 + }, + { + "epoch": 62.768894713848844, + "grad_norm": 0.21187400817871094, + "learning_rate": 0.0006, + "loss": 3.527048349380493, + "step": 4519 + }, + { + "epoch": 62.782874617737, + "grad_norm": 0.2089816778898239, + "learning_rate": 0.0006, + "loss": 3.551755905151367, + "step": 4520 + }, + { + "epoch": 62.796854521625164, + "grad_norm": 0.2095830738544464, + "learning_rate": 0.0006, + "loss": 3.5302011966705322, + "step": 4521 + }, + { + "epoch": 62.81083442551333, + "grad_norm": 0.20930075645446777, + "learning_rate": 0.0006, + "loss": 3.5276856422424316, + "step": 4522 + }, + { + "epoch": 62.824814329401484, + "grad_norm": 0.1876252442598343, + "learning_rate": 0.0006, + "loss": 3.5467052459716797, + "step": 4523 + }, + { + "epoch": 62.83879423328965, + "grad_norm": 0.21137461066246033, + "learning_rate": 0.0006, + "loss": 3.5446524620056152, + "step": 4524 + }, + { + "epoch": 62.8527741371778, + "grad_norm": 0.21340630948543549, + "learning_rate": 0.0006, + "loss": 3.580069065093994, + "step": 4525 + }, + { + "epoch": 62.86675404106597, + "grad_norm": 0.22623291611671448, + "learning_rate": 0.0006, + "loss": 3.5203771591186523, + "step": 4526 + }, + { + "epoch": 62.88073394495413, + "grad_norm": 0.20891177654266357, + "learning_rate": 0.0006, + "loss": 3.5408263206481934, + "step": 4527 + }, + { + "epoch": 62.89471384884229, + "grad_norm": 0.19802644848823547, + "learning_rate": 0.0006, + "loss": 3.521557569503784, + "step": 4528 + }, + { + "epoch": 62.90869375273045, + "grad_norm": 0.20889638364315033, + "learning_rate": 0.0006, + "loss": 3.535468578338623, + "step": 4529 + }, + { + "epoch": 62.92267365661861, + "grad_norm": 0.20450912415981293, + "learning_rate": 0.0006, + "loss": 3.5473756790161133, + "step": 4530 + }, + { + "epoch": 62.93665356050677, + "grad_norm": 0.24126461148262024, + "learning_rate": 0.0006, + "loss": 3.5418906211853027, + "step": 4531 + }, + { + "epoch": 62.95063346439493, + "grad_norm": 0.2789648473262787, + "learning_rate": 0.0006, + "loss": 3.5500879287719727, + "step": 4532 + }, + { + "epoch": 62.964613368283096, + "grad_norm": 0.2855475842952728, + "learning_rate": 0.0006, + "loss": 3.5589256286621094, + "step": 4533 + }, + { + "epoch": 62.97859327217125, + "grad_norm": 0.2353338748216629, + "learning_rate": 0.0006, + "loss": 3.576944351196289, + "step": 4534 + }, + { + "epoch": 62.992573176059416, + "grad_norm": 0.2360614389181137, + "learning_rate": 0.0006, + "loss": 3.550532341003418, + "step": 4535 + }, + { + "epoch": 63.0, + "grad_norm": 0.28869640827178955, + "learning_rate": 0.0006, + "loss": 3.4976563453674316, + "step": 4536 + }, + { + "epoch": 63.0, + "eval_loss": 3.967819929122925, + "eval_runtime": 44.8611, + "eval_samples_per_second": 54.435, + "eval_steps_per_second": 3.411, + "step": 4536 + }, + { + "epoch": 63.01397990388816, + "grad_norm": 0.2646687626838684, + "learning_rate": 0.0006, + "loss": 3.498749017715454, + "step": 4537 + }, + { + "epoch": 63.02795980777632, + "grad_norm": 0.26432088017463684, + "learning_rate": 0.0006, + "loss": 3.5114989280700684, + "step": 4538 + }, + { + "epoch": 63.04193971166448, + "grad_norm": 0.2657051980495453, + "learning_rate": 0.0006, + "loss": 3.5383224487304688, + "step": 4539 + }, + { + "epoch": 63.05591961555265, + "grad_norm": 0.24790945649147034, + "learning_rate": 0.0006, + "loss": 3.5148894786834717, + "step": 4540 + }, + { + "epoch": 63.0698995194408, + "grad_norm": 0.2703767716884613, + "learning_rate": 0.0006, + "loss": 3.5212574005126953, + "step": 4541 + }, + { + "epoch": 63.083879423328966, + "grad_norm": 0.28064072132110596, + "learning_rate": 0.0006, + "loss": 3.4917726516723633, + "step": 4542 + }, + { + "epoch": 63.09785932721712, + "grad_norm": 0.30201056599617004, + "learning_rate": 0.0006, + "loss": 3.524174213409424, + "step": 4543 + }, + { + "epoch": 63.111839231105286, + "grad_norm": 0.2668539583683014, + "learning_rate": 0.0006, + "loss": 3.5284507274627686, + "step": 4544 + }, + { + "epoch": 63.12581913499345, + "grad_norm": 0.23223146796226501, + "learning_rate": 0.0006, + "loss": 3.500607967376709, + "step": 4545 + }, + { + "epoch": 63.139799038881605, + "grad_norm": 0.22300627827644348, + "learning_rate": 0.0006, + "loss": 3.509087562561035, + "step": 4546 + }, + { + "epoch": 63.15377894276977, + "grad_norm": 0.217527836561203, + "learning_rate": 0.0006, + "loss": 3.518986225128174, + "step": 4547 + }, + { + "epoch": 63.16775884665793, + "grad_norm": 0.2347487509250641, + "learning_rate": 0.0006, + "loss": 3.5288784503936768, + "step": 4548 + }, + { + "epoch": 63.18173875054609, + "grad_norm": 0.21052609384059906, + "learning_rate": 0.0006, + "loss": 3.534576892852783, + "step": 4549 + }, + { + "epoch": 63.19571865443425, + "grad_norm": 0.20836210250854492, + "learning_rate": 0.0006, + "loss": 3.540663242340088, + "step": 4550 + }, + { + "epoch": 63.20969855832241, + "grad_norm": 0.2257382571697235, + "learning_rate": 0.0006, + "loss": 3.5042576789855957, + "step": 4551 + }, + { + "epoch": 63.22367846221057, + "grad_norm": 0.25684455037117004, + "learning_rate": 0.0006, + "loss": 3.546757221221924, + "step": 4552 + }, + { + "epoch": 63.237658366098735, + "grad_norm": 0.25408735871315, + "learning_rate": 0.0006, + "loss": 3.5245237350463867, + "step": 4553 + }, + { + "epoch": 63.25163826998689, + "grad_norm": 0.2105615735054016, + "learning_rate": 0.0006, + "loss": 3.4935879707336426, + "step": 4554 + }, + { + "epoch": 63.265618173875055, + "grad_norm": 0.23599031567573547, + "learning_rate": 0.0006, + "loss": 3.5445284843444824, + "step": 4555 + }, + { + "epoch": 63.27959807776322, + "grad_norm": 0.2786335349082947, + "learning_rate": 0.0006, + "loss": 3.5432677268981934, + "step": 4556 + }, + { + "epoch": 63.293577981651374, + "grad_norm": 0.26032358407974243, + "learning_rate": 0.0006, + "loss": 3.542494297027588, + "step": 4557 + }, + { + "epoch": 63.30755788553954, + "grad_norm": 0.23259027302265167, + "learning_rate": 0.0006, + "loss": 3.5343332290649414, + "step": 4558 + }, + { + "epoch": 63.3215377894277, + "grad_norm": 0.2183394432067871, + "learning_rate": 0.0006, + "loss": 3.552696466445923, + "step": 4559 + }, + { + "epoch": 63.33551769331586, + "grad_norm": 0.23014239966869354, + "learning_rate": 0.0006, + "loss": 3.507399559020996, + "step": 4560 + }, + { + "epoch": 63.34949759720402, + "grad_norm": 0.22618430852890015, + "learning_rate": 0.0006, + "loss": 3.5329864025115967, + "step": 4561 + }, + { + "epoch": 63.36347750109218, + "grad_norm": 0.22740741074085236, + "learning_rate": 0.0006, + "loss": 3.5098977088928223, + "step": 4562 + }, + { + "epoch": 63.37745740498034, + "grad_norm": 0.21428990364074707, + "learning_rate": 0.0006, + "loss": 3.5244359970092773, + "step": 4563 + }, + { + "epoch": 63.391437308868504, + "grad_norm": 0.224009707570076, + "learning_rate": 0.0006, + "loss": 3.491610288619995, + "step": 4564 + }, + { + "epoch": 63.40541721275666, + "grad_norm": 0.24859225749969482, + "learning_rate": 0.0006, + "loss": 3.534926414489746, + "step": 4565 + }, + { + "epoch": 63.419397116644824, + "grad_norm": 0.27701491117477417, + "learning_rate": 0.0006, + "loss": 3.501753091812134, + "step": 4566 + }, + { + "epoch": 63.43337702053299, + "grad_norm": 0.27911627292633057, + "learning_rate": 0.0006, + "loss": 3.5505383014678955, + "step": 4567 + }, + { + "epoch": 63.44735692442114, + "grad_norm": 0.25913184881210327, + "learning_rate": 0.0006, + "loss": 3.5086495876312256, + "step": 4568 + }, + { + "epoch": 63.46133682830931, + "grad_norm": 0.19867996871471405, + "learning_rate": 0.0006, + "loss": 3.497912645339966, + "step": 4569 + }, + { + "epoch": 63.47531673219746, + "grad_norm": 0.21337668597698212, + "learning_rate": 0.0006, + "loss": 3.511085033416748, + "step": 4570 + }, + { + "epoch": 63.489296636085626, + "grad_norm": 0.2221735268831253, + "learning_rate": 0.0006, + "loss": 3.504108190536499, + "step": 4571 + }, + { + "epoch": 63.50327653997379, + "grad_norm": 0.20739667117595673, + "learning_rate": 0.0006, + "loss": 3.50193452835083, + "step": 4572 + }, + { + "epoch": 63.517256443861946, + "grad_norm": 0.20149169862270355, + "learning_rate": 0.0006, + "loss": 3.5508787631988525, + "step": 4573 + }, + { + "epoch": 63.53123634775011, + "grad_norm": 0.19348420202732086, + "learning_rate": 0.0006, + "loss": 3.521906852722168, + "step": 4574 + }, + { + "epoch": 63.54521625163827, + "grad_norm": 0.19946886599063873, + "learning_rate": 0.0006, + "loss": 3.509187698364258, + "step": 4575 + }, + { + "epoch": 63.55919615552643, + "grad_norm": 0.21359245479106903, + "learning_rate": 0.0006, + "loss": 3.5194101333618164, + "step": 4576 + }, + { + "epoch": 63.57317605941459, + "grad_norm": 0.21726977825164795, + "learning_rate": 0.0006, + "loss": 3.553684711456299, + "step": 4577 + }, + { + "epoch": 63.58715596330275, + "grad_norm": 0.21707940101623535, + "learning_rate": 0.0006, + "loss": 3.5474231243133545, + "step": 4578 + }, + { + "epoch": 63.60113586719091, + "grad_norm": 0.2226727306842804, + "learning_rate": 0.0006, + "loss": 3.556403636932373, + "step": 4579 + }, + { + "epoch": 63.615115771079076, + "grad_norm": 0.22008022665977478, + "learning_rate": 0.0006, + "loss": 3.4910531044006348, + "step": 4580 + }, + { + "epoch": 63.62909567496723, + "grad_norm": 0.20050542056560516, + "learning_rate": 0.0006, + "loss": 3.5085577964782715, + "step": 4581 + }, + { + "epoch": 63.643075578855395, + "grad_norm": 0.21937592327594757, + "learning_rate": 0.0006, + "loss": 3.530182361602783, + "step": 4582 + }, + { + "epoch": 63.65705548274356, + "grad_norm": 0.23152779042720795, + "learning_rate": 0.0006, + "loss": 3.551499843597412, + "step": 4583 + }, + { + "epoch": 63.671035386631715, + "grad_norm": 0.22870875895023346, + "learning_rate": 0.0006, + "loss": 3.5576539039611816, + "step": 4584 + }, + { + "epoch": 63.68501529051988, + "grad_norm": 0.23679395020008087, + "learning_rate": 0.0006, + "loss": 3.5392303466796875, + "step": 4585 + }, + { + "epoch": 63.69899519440804, + "grad_norm": 0.2301628291606903, + "learning_rate": 0.0006, + "loss": 3.53672194480896, + "step": 4586 + }, + { + "epoch": 63.7129750982962, + "grad_norm": 0.20859898626804352, + "learning_rate": 0.0006, + "loss": 3.5405986309051514, + "step": 4587 + }, + { + "epoch": 63.72695500218436, + "grad_norm": 0.2263292521238327, + "learning_rate": 0.0006, + "loss": 3.557982921600342, + "step": 4588 + }, + { + "epoch": 63.74093490607252, + "grad_norm": 0.21420416235923767, + "learning_rate": 0.0006, + "loss": 3.531942129135132, + "step": 4589 + }, + { + "epoch": 63.75491480996068, + "grad_norm": 0.21604575216770172, + "learning_rate": 0.0006, + "loss": 3.54978346824646, + "step": 4590 + }, + { + "epoch": 63.768894713848844, + "grad_norm": 0.2530747354030609, + "learning_rate": 0.0006, + "loss": 3.576831817626953, + "step": 4591 + }, + { + "epoch": 63.782874617737, + "grad_norm": 0.26169830560684204, + "learning_rate": 0.0006, + "loss": 3.5594139099121094, + "step": 4592 + }, + { + "epoch": 63.796854521625164, + "grad_norm": 0.23454166948795319, + "learning_rate": 0.0006, + "loss": 3.527966022491455, + "step": 4593 + }, + { + "epoch": 63.81083442551333, + "grad_norm": 0.25329118967056274, + "learning_rate": 0.0006, + "loss": 3.555817127227783, + "step": 4594 + }, + { + "epoch": 63.824814329401484, + "grad_norm": 0.26875534653663635, + "learning_rate": 0.0006, + "loss": 3.5659937858581543, + "step": 4595 + }, + { + "epoch": 63.83879423328965, + "grad_norm": 0.2446713000535965, + "learning_rate": 0.0006, + "loss": 3.520578384399414, + "step": 4596 + }, + { + "epoch": 63.8527741371778, + "grad_norm": 0.24629594385623932, + "learning_rate": 0.0006, + "loss": 3.562185764312744, + "step": 4597 + }, + { + "epoch": 63.86675404106597, + "grad_norm": 0.25355106592178345, + "learning_rate": 0.0006, + "loss": 3.549164295196533, + "step": 4598 + }, + { + "epoch": 63.88073394495413, + "grad_norm": 0.23251968622207642, + "learning_rate": 0.0006, + "loss": 3.529660224914551, + "step": 4599 + }, + { + "epoch": 63.89471384884229, + "grad_norm": 0.21848365664482117, + "learning_rate": 0.0006, + "loss": 3.582645893096924, + "step": 4600 + }, + { + "epoch": 63.90869375273045, + "grad_norm": 0.2525595426559448, + "learning_rate": 0.0006, + "loss": 3.5324134826660156, + "step": 4601 + }, + { + "epoch": 63.92267365661861, + "grad_norm": 0.2766541838645935, + "learning_rate": 0.0006, + "loss": 3.525892734527588, + "step": 4602 + }, + { + "epoch": 63.93665356050677, + "grad_norm": 0.2581831216812134, + "learning_rate": 0.0006, + "loss": 3.568148374557495, + "step": 4603 + }, + { + "epoch": 63.95063346439493, + "grad_norm": 0.2600967288017273, + "learning_rate": 0.0006, + "loss": 3.5735561847686768, + "step": 4604 + }, + { + "epoch": 63.964613368283096, + "grad_norm": 0.3125685155391693, + "learning_rate": 0.0006, + "loss": 3.513974666595459, + "step": 4605 + }, + { + "epoch": 63.97859327217125, + "grad_norm": 0.2686053514480591, + "learning_rate": 0.0006, + "loss": 3.533506155014038, + "step": 4606 + }, + { + "epoch": 63.992573176059416, + "grad_norm": 0.23033086955547333, + "learning_rate": 0.0006, + "loss": 3.5701582431793213, + "step": 4607 + }, + { + "epoch": 64.0, + "grad_norm": 0.2688716948032379, + "learning_rate": 0.0006, + "loss": 3.5370922088623047, + "step": 4608 + }, + { + "epoch": 64.0, + "eval_loss": 3.9788827896118164, + "eval_runtime": 44.2801, + "eval_samples_per_second": 55.149, + "eval_steps_per_second": 3.455, + "step": 4608 + }, + { + "epoch": 64.01397990388816, + "grad_norm": 0.27457329630851746, + "learning_rate": 0.0006, + "loss": 3.4789271354675293, + "step": 4609 + }, + { + "epoch": 64.02795980777633, + "grad_norm": 0.29753434658050537, + "learning_rate": 0.0006, + "loss": 3.5277628898620605, + "step": 4610 + }, + { + "epoch": 64.04193971166448, + "grad_norm": 0.36113694310188293, + "learning_rate": 0.0006, + "loss": 3.5066421031951904, + "step": 4611 + }, + { + "epoch": 64.05591961555264, + "grad_norm": 0.37955453991889954, + "learning_rate": 0.0006, + "loss": 3.532745361328125, + "step": 4612 + }, + { + "epoch": 64.06989951944081, + "grad_norm": 0.3055022060871124, + "learning_rate": 0.0006, + "loss": 3.526583671569824, + "step": 4613 + }, + { + "epoch": 64.08387942332897, + "grad_norm": 0.25849053263664246, + "learning_rate": 0.0006, + "loss": 3.525885581970215, + "step": 4614 + }, + { + "epoch": 64.09785932721712, + "grad_norm": 0.31513285636901855, + "learning_rate": 0.0006, + "loss": 3.5116710662841797, + "step": 4615 + }, + { + "epoch": 64.1118392311053, + "grad_norm": 0.3306029736995697, + "learning_rate": 0.0006, + "loss": 3.52685284614563, + "step": 4616 + }, + { + "epoch": 64.12581913499345, + "grad_norm": 0.3205282688140869, + "learning_rate": 0.0006, + "loss": 3.5442304611206055, + "step": 4617 + }, + { + "epoch": 64.1397990388816, + "grad_norm": 0.30371955037117004, + "learning_rate": 0.0006, + "loss": 3.523794174194336, + "step": 4618 + }, + { + "epoch": 64.15377894276976, + "grad_norm": 0.23337553441524506, + "learning_rate": 0.0006, + "loss": 3.530444860458374, + "step": 4619 + }, + { + "epoch": 64.16775884665793, + "grad_norm": 0.2223677784204483, + "learning_rate": 0.0006, + "loss": 3.5071358680725098, + "step": 4620 + }, + { + "epoch": 64.18173875054609, + "grad_norm": 0.21216993033885956, + "learning_rate": 0.0006, + "loss": 3.504469156265259, + "step": 4621 + }, + { + "epoch": 64.19571865443424, + "grad_norm": 0.21772179007530212, + "learning_rate": 0.0006, + "loss": 3.543393135070801, + "step": 4622 + }, + { + "epoch": 64.20969855832242, + "grad_norm": 0.2010853886604309, + "learning_rate": 0.0006, + "loss": 3.5219016075134277, + "step": 4623 + }, + { + "epoch": 64.22367846221057, + "grad_norm": 0.20491622388362885, + "learning_rate": 0.0006, + "loss": 3.4971656799316406, + "step": 4624 + }, + { + "epoch": 64.23765836609873, + "grad_norm": 0.19605079293251038, + "learning_rate": 0.0006, + "loss": 3.511746883392334, + "step": 4625 + }, + { + "epoch": 64.2516382699869, + "grad_norm": 0.2011575698852539, + "learning_rate": 0.0006, + "loss": 3.4981908798217773, + "step": 4626 + }, + { + "epoch": 64.26561817387505, + "grad_norm": 0.20687544345855713, + "learning_rate": 0.0006, + "loss": 3.5076913833618164, + "step": 4627 + }, + { + "epoch": 64.27959807776321, + "grad_norm": 0.20696480572223663, + "learning_rate": 0.0006, + "loss": 3.536569595336914, + "step": 4628 + }, + { + "epoch": 64.29357798165138, + "grad_norm": 0.200603649020195, + "learning_rate": 0.0006, + "loss": 3.525024175643921, + "step": 4629 + }, + { + "epoch": 64.30755788553954, + "grad_norm": 0.2087119072675705, + "learning_rate": 0.0006, + "loss": 3.508463144302368, + "step": 4630 + }, + { + "epoch": 64.3215377894277, + "grad_norm": 0.20823124051094055, + "learning_rate": 0.0006, + "loss": 3.5153684616088867, + "step": 4631 + }, + { + "epoch": 64.33551769331586, + "grad_norm": 0.19936303794384003, + "learning_rate": 0.0006, + "loss": 3.4908385276794434, + "step": 4632 + }, + { + "epoch": 64.34949759720402, + "grad_norm": 0.20928572118282318, + "learning_rate": 0.0006, + "loss": 3.5094854831695557, + "step": 4633 + }, + { + "epoch": 64.36347750109218, + "grad_norm": 0.22391293942928314, + "learning_rate": 0.0006, + "loss": 3.514522075653076, + "step": 4634 + }, + { + "epoch": 64.37745740498035, + "grad_norm": 0.19804537296295166, + "learning_rate": 0.0006, + "loss": 3.5072293281555176, + "step": 4635 + }, + { + "epoch": 64.3914373088685, + "grad_norm": 0.18472325801849365, + "learning_rate": 0.0006, + "loss": 3.5149683952331543, + "step": 4636 + }, + { + "epoch": 64.40541721275666, + "grad_norm": 0.20187066495418549, + "learning_rate": 0.0006, + "loss": 3.5198612213134766, + "step": 4637 + }, + { + "epoch": 64.41939711664482, + "grad_norm": 0.19778090715408325, + "learning_rate": 0.0006, + "loss": 3.540841817855835, + "step": 4638 + }, + { + "epoch": 64.43337702053299, + "grad_norm": 0.20325049757957458, + "learning_rate": 0.0006, + "loss": 3.522329330444336, + "step": 4639 + }, + { + "epoch": 64.44735692442114, + "grad_norm": 0.21200744807720184, + "learning_rate": 0.0006, + "loss": 3.5492870807647705, + "step": 4640 + }, + { + "epoch": 64.4613368283093, + "grad_norm": 0.21482640504837036, + "learning_rate": 0.0006, + "loss": 3.5450363159179688, + "step": 4641 + }, + { + "epoch": 64.47531673219747, + "grad_norm": 0.2257383018732071, + "learning_rate": 0.0006, + "loss": 3.518486976623535, + "step": 4642 + }, + { + "epoch": 64.48929663608563, + "grad_norm": 0.20710107684135437, + "learning_rate": 0.0006, + "loss": 3.5212514400482178, + "step": 4643 + }, + { + "epoch": 64.50327653997378, + "grad_norm": 0.20518364012241364, + "learning_rate": 0.0006, + "loss": 3.5239462852478027, + "step": 4644 + }, + { + "epoch": 64.51725644386195, + "grad_norm": 0.20311623811721802, + "learning_rate": 0.0006, + "loss": 3.5299072265625, + "step": 4645 + }, + { + "epoch": 64.53123634775011, + "grad_norm": 0.2045847624540329, + "learning_rate": 0.0006, + "loss": 3.5337295532226562, + "step": 4646 + }, + { + "epoch": 64.54521625163827, + "grad_norm": 0.20734596252441406, + "learning_rate": 0.0006, + "loss": 3.5001375675201416, + "step": 4647 + }, + { + "epoch": 64.55919615552644, + "grad_norm": 0.2103254497051239, + "learning_rate": 0.0006, + "loss": 3.50685977935791, + "step": 4648 + }, + { + "epoch": 64.57317605941459, + "grad_norm": 0.19903342425823212, + "learning_rate": 0.0006, + "loss": 3.5295052528381348, + "step": 4649 + }, + { + "epoch": 64.58715596330275, + "grad_norm": 0.21105562150478363, + "learning_rate": 0.0006, + "loss": 3.5062971115112305, + "step": 4650 + }, + { + "epoch": 64.60113586719092, + "grad_norm": 0.2149161994457245, + "learning_rate": 0.0006, + "loss": 3.5040459632873535, + "step": 4651 + }, + { + "epoch": 64.61511577107908, + "grad_norm": 0.19698478281497955, + "learning_rate": 0.0006, + "loss": 3.541640281677246, + "step": 4652 + }, + { + "epoch": 64.62909567496723, + "grad_norm": 0.22909119725227356, + "learning_rate": 0.0006, + "loss": 3.546515941619873, + "step": 4653 + }, + { + "epoch": 64.6430755788554, + "grad_norm": 0.2322760671377182, + "learning_rate": 0.0006, + "loss": 3.5374197959899902, + "step": 4654 + }, + { + "epoch": 64.65705548274356, + "grad_norm": 0.2173723429441452, + "learning_rate": 0.0006, + "loss": 3.543529510498047, + "step": 4655 + }, + { + "epoch": 64.67103538663171, + "grad_norm": 0.21360787749290466, + "learning_rate": 0.0006, + "loss": 3.560333251953125, + "step": 4656 + }, + { + "epoch": 64.68501529051987, + "grad_norm": 0.23260995745658875, + "learning_rate": 0.0006, + "loss": 3.5468926429748535, + "step": 4657 + }, + { + "epoch": 64.69899519440804, + "grad_norm": 0.23099006712436676, + "learning_rate": 0.0006, + "loss": 3.5222787857055664, + "step": 4658 + }, + { + "epoch": 64.7129750982962, + "grad_norm": 0.20590323209762573, + "learning_rate": 0.0006, + "loss": 3.538832426071167, + "step": 4659 + }, + { + "epoch": 64.72695500218435, + "grad_norm": 0.2339620441198349, + "learning_rate": 0.0006, + "loss": 3.5201845169067383, + "step": 4660 + }, + { + "epoch": 64.74093490607252, + "grad_norm": 0.27160516381263733, + "learning_rate": 0.0006, + "loss": 3.5465309619903564, + "step": 4661 + }, + { + "epoch": 64.75491480996068, + "grad_norm": 0.2624864876270294, + "learning_rate": 0.0006, + "loss": 3.5205435752868652, + "step": 4662 + }, + { + "epoch": 64.76889471384884, + "grad_norm": 0.23907902836799622, + "learning_rate": 0.0006, + "loss": 3.553205728530884, + "step": 4663 + }, + { + "epoch": 64.78287461773701, + "grad_norm": 0.2217475026845932, + "learning_rate": 0.0006, + "loss": 3.514068603515625, + "step": 4664 + }, + { + "epoch": 64.79685452162516, + "grad_norm": 0.20445777475833893, + "learning_rate": 0.0006, + "loss": 3.5382182598114014, + "step": 4665 + }, + { + "epoch": 64.81083442551332, + "grad_norm": 0.2027028501033783, + "learning_rate": 0.0006, + "loss": 3.549323081970215, + "step": 4666 + }, + { + "epoch": 64.82481432940149, + "grad_norm": 0.2211705446243286, + "learning_rate": 0.0006, + "loss": 3.5627710819244385, + "step": 4667 + }, + { + "epoch": 64.83879423328965, + "grad_norm": 0.23401948809623718, + "learning_rate": 0.0006, + "loss": 3.5169739723205566, + "step": 4668 + }, + { + "epoch": 64.8527741371778, + "grad_norm": 0.21921628713607788, + "learning_rate": 0.0006, + "loss": 3.5405478477478027, + "step": 4669 + }, + { + "epoch": 64.86675404106597, + "grad_norm": 0.20840027928352356, + "learning_rate": 0.0006, + "loss": 3.528883218765259, + "step": 4670 + }, + { + "epoch": 64.88073394495413, + "grad_norm": 0.21593457460403442, + "learning_rate": 0.0006, + "loss": 3.570455551147461, + "step": 4671 + }, + { + "epoch": 64.89471384884229, + "grad_norm": 0.22351567447185516, + "learning_rate": 0.0006, + "loss": 3.567831516265869, + "step": 4672 + }, + { + "epoch": 64.90869375273044, + "grad_norm": 0.22733932733535767, + "learning_rate": 0.0006, + "loss": 3.55277156829834, + "step": 4673 + }, + { + "epoch": 64.92267365661861, + "grad_norm": 0.19557999074459076, + "learning_rate": 0.0006, + "loss": 3.523028612136841, + "step": 4674 + }, + { + "epoch": 64.93665356050677, + "grad_norm": 0.22674734890460968, + "learning_rate": 0.0006, + "loss": 3.565629720687866, + "step": 4675 + }, + { + "epoch": 64.95063346439493, + "grad_norm": 0.23879630863666534, + "learning_rate": 0.0006, + "loss": 3.5556788444519043, + "step": 4676 + }, + { + "epoch": 64.9646133682831, + "grad_norm": 0.24172860383987427, + "learning_rate": 0.0006, + "loss": 3.580190658569336, + "step": 4677 + }, + { + "epoch": 64.97859327217125, + "grad_norm": 0.24994441866874695, + "learning_rate": 0.0006, + "loss": 3.506659507751465, + "step": 4678 + }, + { + "epoch": 64.99257317605941, + "grad_norm": 0.20717456936836243, + "learning_rate": 0.0006, + "loss": 3.526215076446533, + "step": 4679 + }, + { + "epoch": 65.0, + "grad_norm": 0.23991262912750244, + "learning_rate": 0.0006, + "loss": 3.5615687370300293, + "step": 4680 + }, + { + "epoch": 65.0, + "eval_loss": 3.974820137023926, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 4680 + }, + { + "epoch": 65.01397990388816, + "grad_norm": 0.22059205174446106, + "learning_rate": 0.0006, + "loss": 3.4952855110168457, + "step": 4681 + }, + { + "epoch": 65.02795980777633, + "grad_norm": 0.23085950314998627, + "learning_rate": 0.0006, + "loss": 3.5180296897888184, + "step": 4682 + }, + { + "epoch": 65.04193971166448, + "grad_norm": 0.20950855314731598, + "learning_rate": 0.0006, + "loss": 3.5476295948028564, + "step": 4683 + }, + { + "epoch": 65.05591961555264, + "grad_norm": 0.1958799958229065, + "learning_rate": 0.0006, + "loss": 3.5180916786193848, + "step": 4684 + }, + { + "epoch": 65.06989951944081, + "grad_norm": 0.20676101744174957, + "learning_rate": 0.0006, + "loss": 3.4882211685180664, + "step": 4685 + }, + { + "epoch": 65.08387942332897, + "grad_norm": 0.24798569083213806, + "learning_rate": 0.0006, + "loss": 3.5030102729797363, + "step": 4686 + }, + { + "epoch": 65.09785932721712, + "grad_norm": 0.2997048795223236, + "learning_rate": 0.0006, + "loss": 3.5148534774780273, + "step": 4687 + }, + { + "epoch": 65.1118392311053, + "grad_norm": 0.27347132563591003, + "learning_rate": 0.0006, + "loss": 3.534639358520508, + "step": 4688 + }, + { + "epoch": 65.12581913499345, + "grad_norm": 0.2220011204481125, + "learning_rate": 0.0006, + "loss": 3.50504994392395, + "step": 4689 + }, + { + "epoch": 65.1397990388816, + "grad_norm": 0.2552279829978943, + "learning_rate": 0.0006, + "loss": 3.4893431663513184, + "step": 4690 + }, + { + "epoch": 65.15377894276976, + "grad_norm": 0.32200172543525696, + "learning_rate": 0.0006, + "loss": 3.515808582305908, + "step": 4691 + }, + { + "epoch": 65.16775884665793, + "grad_norm": 0.31339603662490845, + "learning_rate": 0.0006, + "loss": 3.493312358856201, + "step": 4692 + }, + { + "epoch": 65.18173875054609, + "grad_norm": 0.30790913105010986, + "learning_rate": 0.0006, + "loss": 3.5001792907714844, + "step": 4693 + }, + { + "epoch": 65.19571865443424, + "grad_norm": 0.25261157751083374, + "learning_rate": 0.0006, + "loss": 3.491820812225342, + "step": 4694 + }, + { + "epoch": 65.20969855832242, + "grad_norm": 0.20875515043735504, + "learning_rate": 0.0006, + "loss": 3.5120949745178223, + "step": 4695 + }, + { + "epoch": 65.22367846221057, + "grad_norm": 0.22966094315052032, + "learning_rate": 0.0006, + "loss": 3.4509716033935547, + "step": 4696 + }, + { + "epoch": 65.23765836609873, + "grad_norm": 0.22414445877075195, + "learning_rate": 0.0006, + "loss": 3.5032718181610107, + "step": 4697 + }, + { + "epoch": 65.2516382699869, + "grad_norm": 0.21083641052246094, + "learning_rate": 0.0006, + "loss": 3.4912984371185303, + "step": 4698 + }, + { + "epoch": 65.26561817387505, + "grad_norm": 0.21424371004104614, + "learning_rate": 0.0006, + "loss": 3.493704080581665, + "step": 4699 + }, + { + "epoch": 65.27959807776321, + "grad_norm": 0.21155135333538055, + "learning_rate": 0.0006, + "loss": 3.523045063018799, + "step": 4700 + }, + { + "epoch": 65.29357798165138, + "grad_norm": 0.2245800942182541, + "learning_rate": 0.0006, + "loss": 3.5085060596466064, + "step": 4701 + }, + { + "epoch": 65.30755788553954, + "grad_norm": 0.2271309345960617, + "learning_rate": 0.0006, + "loss": 3.51690673828125, + "step": 4702 + }, + { + "epoch": 65.3215377894277, + "grad_norm": 0.23873905837535858, + "learning_rate": 0.0006, + "loss": 3.533975124359131, + "step": 4703 + }, + { + "epoch": 65.33551769331586, + "grad_norm": 0.22801156342029572, + "learning_rate": 0.0006, + "loss": 3.554079532623291, + "step": 4704 + }, + { + "epoch": 65.34949759720402, + "grad_norm": 0.20530614256858826, + "learning_rate": 0.0006, + "loss": 3.5536623001098633, + "step": 4705 + }, + { + "epoch": 65.36347750109218, + "grad_norm": 0.19286230206489563, + "learning_rate": 0.0006, + "loss": 3.5279109477996826, + "step": 4706 + }, + { + "epoch": 65.37745740498035, + "grad_norm": 0.20883116126060486, + "learning_rate": 0.0006, + "loss": 3.526639223098755, + "step": 4707 + }, + { + "epoch": 65.3914373088685, + "grad_norm": 0.20705194771289825, + "learning_rate": 0.0006, + "loss": 3.5389089584350586, + "step": 4708 + }, + { + "epoch": 65.40541721275666, + "grad_norm": 0.1948518604040146, + "learning_rate": 0.0006, + "loss": 3.504940986633301, + "step": 4709 + }, + { + "epoch": 65.41939711664482, + "grad_norm": 0.20147304236888885, + "learning_rate": 0.0006, + "loss": 3.5085673332214355, + "step": 4710 + }, + { + "epoch": 65.43337702053299, + "grad_norm": 0.2229771912097931, + "learning_rate": 0.0006, + "loss": 3.4806604385375977, + "step": 4711 + }, + { + "epoch": 65.44735692442114, + "grad_norm": 0.252258837223053, + "learning_rate": 0.0006, + "loss": 3.5160961151123047, + "step": 4712 + }, + { + "epoch": 65.4613368283093, + "grad_norm": 0.2482563853263855, + "learning_rate": 0.0006, + "loss": 3.522674560546875, + "step": 4713 + }, + { + "epoch": 65.47531673219747, + "grad_norm": 0.22155597805976868, + "learning_rate": 0.0006, + "loss": 3.5124268531799316, + "step": 4714 + }, + { + "epoch": 65.48929663608563, + "grad_norm": 0.223913311958313, + "learning_rate": 0.0006, + "loss": 3.5122427940368652, + "step": 4715 + }, + { + "epoch": 65.50327653997378, + "grad_norm": 0.20946767926216125, + "learning_rate": 0.0006, + "loss": 3.552161693572998, + "step": 4716 + }, + { + "epoch": 65.51725644386195, + "grad_norm": 0.21044479310512543, + "learning_rate": 0.0006, + "loss": 3.5450949668884277, + "step": 4717 + }, + { + "epoch": 65.53123634775011, + "grad_norm": 0.25752949714660645, + "learning_rate": 0.0006, + "loss": 3.5267398357391357, + "step": 4718 + }, + { + "epoch": 65.54521625163827, + "grad_norm": 0.28068798780441284, + "learning_rate": 0.0006, + "loss": 3.537827491760254, + "step": 4719 + }, + { + "epoch": 65.55919615552644, + "grad_norm": 0.2259511947631836, + "learning_rate": 0.0006, + "loss": 3.540821075439453, + "step": 4720 + }, + { + "epoch": 65.57317605941459, + "grad_norm": 0.2032593935728073, + "learning_rate": 0.0006, + "loss": 3.540170669555664, + "step": 4721 + }, + { + "epoch": 65.58715596330275, + "grad_norm": 0.2432602047920227, + "learning_rate": 0.0006, + "loss": 3.5356297492980957, + "step": 4722 + }, + { + "epoch": 65.60113586719092, + "grad_norm": 0.20527289807796478, + "learning_rate": 0.0006, + "loss": 3.4675498008728027, + "step": 4723 + }, + { + "epoch": 65.61511577107908, + "grad_norm": 0.18697771430015564, + "learning_rate": 0.0006, + "loss": 3.5208992958068848, + "step": 4724 + }, + { + "epoch": 65.62909567496723, + "grad_norm": 0.2044762223958969, + "learning_rate": 0.0006, + "loss": 3.5583274364471436, + "step": 4725 + }, + { + "epoch": 65.6430755788554, + "grad_norm": 0.22855281829833984, + "learning_rate": 0.0006, + "loss": 3.5497756004333496, + "step": 4726 + }, + { + "epoch": 65.65705548274356, + "grad_norm": 0.21672320365905762, + "learning_rate": 0.0006, + "loss": 3.530869960784912, + "step": 4727 + }, + { + "epoch": 65.67103538663171, + "grad_norm": 0.20629048347473145, + "learning_rate": 0.0006, + "loss": 3.5381593704223633, + "step": 4728 + }, + { + "epoch": 65.68501529051987, + "grad_norm": 0.21036849915981293, + "learning_rate": 0.0006, + "loss": 3.531111478805542, + "step": 4729 + }, + { + "epoch": 65.69899519440804, + "grad_norm": 0.19463932514190674, + "learning_rate": 0.0006, + "loss": 3.523106098175049, + "step": 4730 + }, + { + "epoch": 65.7129750982962, + "grad_norm": 0.2210976481437683, + "learning_rate": 0.0006, + "loss": 3.5480356216430664, + "step": 4731 + }, + { + "epoch": 65.72695500218435, + "grad_norm": 0.2288331687450409, + "learning_rate": 0.0006, + "loss": 3.5317163467407227, + "step": 4732 + }, + { + "epoch": 65.74093490607252, + "grad_norm": 0.22445930540561676, + "learning_rate": 0.0006, + "loss": 3.5453107357025146, + "step": 4733 + }, + { + "epoch": 65.75491480996068, + "grad_norm": 0.20268939435482025, + "learning_rate": 0.0006, + "loss": 3.5546514987945557, + "step": 4734 + }, + { + "epoch": 65.76889471384884, + "grad_norm": 0.2070288211107254, + "learning_rate": 0.0006, + "loss": 3.5345590114593506, + "step": 4735 + }, + { + "epoch": 65.78287461773701, + "grad_norm": 0.2052922248840332, + "learning_rate": 0.0006, + "loss": 3.538299083709717, + "step": 4736 + }, + { + "epoch": 65.79685452162516, + "grad_norm": 0.2146841138601303, + "learning_rate": 0.0006, + "loss": 3.541652202606201, + "step": 4737 + }, + { + "epoch": 65.81083442551332, + "grad_norm": 0.21826434135437012, + "learning_rate": 0.0006, + "loss": 3.4880056381225586, + "step": 4738 + }, + { + "epoch": 65.82481432940149, + "grad_norm": 0.18492230772972107, + "learning_rate": 0.0006, + "loss": 3.5282340049743652, + "step": 4739 + }, + { + "epoch": 65.83879423328965, + "grad_norm": 0.2422342747449875, + "learning_rate": 0.0006, + "loss": 3.5482215881347656, + "step": 4740 + }, + { + "epoch": 65.8527741371778, + "grad_norm": 0.300968199968338, + "learning_rate": 0.0006, + "loss": 3.545173168182373, + "step": 4741 + }, + { + "epoch": 65.86675404106597, + "grad_norm": 0.23397785425186157, + "learning_rate": 0.0006, + "loss": 3.5014636516571045, + "step": 4742 + }, + { + "epoch": 65.88073394495413, + "grad_norm": 0.20114080607891083, + "learning_rate": 0.0006, + "loss": 3.517125368118286, + "step": 4743 + }, + { + "epoch": 65.89471384884229, + "grad_norm": 0.23073594272136688, + "learning_rate": 0.0006, + "loss": 3.5259623527526855, + "step": 4744 + }, + { + "epoch": 65.90869375273044, + "grad_norm": 0.25975924730300903, + "learning_rate": 0.0006, + "loss": 3.5394439697265625, + "step": 4745 + }, + { + "epoch": 65.92267365661861, + "grad_norm": 0.2565694749355316, + "learning_rate": 0.0006, + "loss": 3.5301175117492676, + "step": 4746 + }, + { + "epoch": 65.93665356050677, + "grad_norm": 0.24380211532115936, + "learning_rate": 0.0006, + "loss": 3.5519638061523438, + "step": 4747 + }, + { + "epoch": 65.95063346439493, + "grad_norm": 0.2337062805891037, + "learning_rate": 0.0006, + "loss": 3.5365114212036133, + "step": 4748 + }, + { + "epoch": 65.9646133682831, + "grad_norm": 0.2107299268245697, + "learning_rate": 0.0006, + "loss": 3.5433106422424316, + "step": 4749 + }, + { + "epoch": 65.97859327217125, + "grad_norm": 0.2159995585680008, + "learning_rate": 0.0006, + "loss": 3.539796829223633, + "step": 4750 + }, + { + "epoch": 65.99257317605941, + "grad_norm": 0.23707467317581177, + "learning_rate": 0.0006, + "loss": 3.5315332412719727, + "step": 4751 + }, + { + "epoch": 66.0, + "grad_norm": 0.27253037691116333, + "learning_rate": 0.0006, + "loss": 3.5477747917175293, + "step": 4752 + }, + { + "epoch": 66.0, + "eval_loss": 3.973580837249756, + "eval_runtime": 44.8472, + "eval_samples_per_second": 54.452, + "eval_steps_per_second": 3.412, + "step": 4752 + }, + { + "epoch": 66.01397990388816, + "grad_norm": 0.22843532264232635, + "learning_rate": 0.0006, + "loss": 3.463778018951416, + "step": 4753 + }, + { + "epoch": 66.02795980777633, + "grad_norm": 0.24956060945987701, + "learning_rate": 0.0006, + "loss": 3.5249979496002197, + "step": 4754 + }, + { + "epoch": 66.04193971166448, + "grad_norm": 0.3091195821762085, + "learning_rate": 0.0006, + "loss": 3.4742040634155273, + "step": 4755 + }, + { + "epoch": 66.05591961555264, + "grad_norm": 0.346617192029953, + "learning_rate": 0.0006, + "loss": 3.4870445728302, + "step": 4756 + }, + { + "epoch": 66.06989951944081, + "grad_norm": 0.2875824570655823, + "learning_rate": 0.0006, + "loss": 3.5412697792053223, + "step": 4757 + }, + { + "epoch": 66.08387942332897, + "grad_norm": 0.2508425712585449, + "learning_rate": 0.0006, + "loss": 3.488759756088257, + "step": 4758 + }, + { + "epoch": 66.09785932721712, + "grad_norm": 0.2538967728614807, + "learning_rate": 0.0006, + "loss": 3.536404609680176, + "step": 4759 + }, + { + "epoch": 66.1118392311053, + "grad_norm": 0.24713276326656342, + "learning_rate": 0.0006, + "loss": 3.502939462661743, + "step": 4760 + }, + { + "epoch": 66.12581913499345, + "grad_norm": 0.2381032407283783, + "learning_rate": 0.0006, + "loss": 3.5297226905822754, + "step": 4761 + }, + { + "epoch": 66.1397990388816, + "grad_norm": 0.23749777674674988, + "learning_rate": 0.0006, + "loss": 3.510740280151367, + "step": 4762 + }, + { + "epoch": 66.15377894276976, + "grad_norm": 0.24993619322776794, + "learning_rate": 0.0006, + "loss": 3.4966745376586914, + "step": 4763 + }, + { + "epoch": 66.16775884665793, + "grad_norm": 0.25855013728141785, + "learning_rate": 0.0006, + "loss": 3.545177936553955, + "step": 4764 + }, + { + "epoch": 66.18173875054609, + "grad_norm": 0.2206948697566986, + "learning_rate": 0.0006, + "loss": 3.5404415130615234, + "step": 4765 + }, + { + "epoch": 66.19571865443424, + "grad_norm": 0.2627105116844177, + "learning_rate": 0.0006, + "loss": 3.5475361347198486, + "step": 4766 + }, + { + "epoch": 66.20969855832242, + "grad_norm": 0.29578864574432373, + "learning_rate": 0.0006, + "loss": 3.510110855102539, + "step": 4767 + }, + { + "epoch": 66.22367846221057, + "grad_norm": 0.257691353559494, + "learning_rate": 0.0006, + "loss": 3.5143630504608154, + "step": 4768 + }, + { + "epoch": 66.23765836609873, + "grad_norm": 0.24346867203712463, + "learning_rate": 0.0006, + "loss": 3.5007784366607666, + "step": 4769 + }, + { + "epoch": 66.2516382699869, + "grad_norm": 0.230575293302536, + "learning_rate": 0.0006, + "loss": 3.5051684379577637, + "step": 4770 + }, + { + "epoch": 66.26561817387505, + "grad_norm": 0.23823921382427216, + "learning_rate": 0.0006, + "loss": 3.4773342609405518, + "step": 4771 + }, + { + "epoch": 66.27959807776321, + "grad_norm": 0.20743288099765778, + "learning_rate": 0.0006, + "loss": 3.496393918991089, + "step": 4772 + }, + { + "epoch": 66.29357798165138, + "grad_norm": 0.21969960629940033, + "learning_rate": 0.0006, + "loss": 3.494748830795288, + "step": 4773 + }, + { + "epoch": 66.30755788553954, + "grad_norm": 0.20902593433856964, + "learning_rate": 0.0006, + "loss": 3.529416561126709, + "step": 4774 + }, + { + "epoch": 66.3215377894277, + "grad_norm": 0.2380436211824417, + "learning_rate": 0.0006, + "loss": 3.508625030517578, + "step": 4775 + }, + { + "epoch": 66.33551769331586, + "grad_norm": 0.26387956738471985, + "learning_rate": 0.0006, + "loss": 3.4886221885681152, + "step": 4776 + }, + { + "epoch": 66.34949759720402, + "grad_norm": 0.24655069410800934, + "learning_rate": 0.0006, + "loss": 3.5089354515075684, + "step": 4777 + }, + { + "epoch": 66.36347750109218, + "grad_norm": 0.2446470856666565, + "learning_rate": 0.0006, + "loss": 3.5295841693878174, + "step": 4778 + }, + { + "epoch": 66.37745740498035, + "grad_norm": 0.23909035325050354, + "learning_rate": 0.0006, + "loss": 3.500223159790039, + "step": 4779 + }, + { + "epoch": 66.3914373088685, + "grad_norm": 0.21958141028881073, + "learning_rate": 0.0006, + "loss": 3.5225610733032227, + "step": 4780 + }, + { + "epoch": 66.40541721275666, + "grad_norm": 0.20134378969669342, + "learning_rate": 0.0006, + "loss": 3.5055198669433594, + "step": 4781 + }, + { + "epoch": 66.41939711664482, + "grad_norm": 0.22621650993824005, + "learning_rate": 0.0006, + "loss": 3.5356178283691406, + "step": 4782 + }, + { + "epoch": 66.43337702053299, + "grad_norm": 0.214684396982193, + "learning_rate": 0.0006, + "loss": 3.5069541931152344, + "step": 4783 + }, + { + "epoch": 66.44735692442114, + "grad_norm": 0.217989981174469, + "learning_rate": 0.0006, + "loss": 3.499561071395874, + "step": 4784 + }, + { + "epoch": 66.4613368283093, + "grad_norm": 0.21457986533641815, + "learning_rate": 0.0006, + "loss": 3.5139474868774414, + "step": 4785 + }, + { + "epoch": 66.47531673219747, + "grad_norm": 0.24017205834388733, + "learning_rate": 0.0006, + "loss": 3.5267739295959473, + "step": 4786 + }, + { + "epoch": 66.48929663608563, + "grad_norm": 0.22864149510860443, + "learning_rate": 0.0006, + "loss": 3.5324792861938477, + "step": 4787 + }, + { + "epoch": 66.50327653997378, + "grad_norm": 0.219966322183609, + "learning_rate": 0.0006, + "loss": 3.491529703140259, + "step": 4788 + }, + { + "epoch": 66.51725644386195, + "grad_norm": 0.23360539972782135, + "learning_rate": 0.0006, + "loss": 3.4962849617004395, + "step": 4789 + }, + { + "epoch": 66.53123634775011, + "grad_norm": 0.24652886390686035, + "learning_rate": 0.0006, + "loss": 3.510777473449707, + "step": 4790 + }, + { + "epoch": 66.54521625163827, + "grad_norm": 0.23419316112995148, + "learning_rate": 0.0006, + "loss": 3.5549509525299072, + "step": 4791 + }, + { + "epoch": 66.55919615552644, + "grad_norm": 0.2514760494232178, + "learning_rate": 0.0006, + "loss": 3.49761962890625, + "step": 4792 + }, + { + "epoch": 66.57317605941459, + "grad_norm": 0.24227535724639893, + "learning_rate": 0.0006, + "loss": 3.5556445121765137, + "step": 4793 + }, + { + "epoch": 66.58715596330275, + "grad_norm": 0.24751204252243042, + "learning_rate": 0.0006, + "loss": 3.5131940841674805, + "step": 4794 + }, + { + "epoch": 66.60113586719092, + "grad_norm": 0.24366872012615204, + "learning_rate": 0.0006, + "loss": 3.5310516357421875, + "step": 4795 + }, + { + "epoch": 66.61511577107908, + "grad_norm": 0.2177760899066925, + "learning_rate": 0.0006, + "loss": 3.5267493724823, + "step": 4796 + }, + { + "epoch": 66.62909567496723, + "grad_norm": 0.19654381275177002, + "learning_rate": 0.0006, + "loss": 3.5158896446228027, + "step": 4797 + }, + { + "epoch": 66.6430755788554, + "grad_norm": 0.2041735202074051, + "learning_rate": 0.0006, + "loss": 3.5645484924316406, + "step": 4798 + }, + { + "epoch": 66.65705548274356, + "grad_norm": 0.21368929743766785, + "learning_rate": 0.0006, + "loss": 3.5481250286102295, + "step": 4799 + }, + { + "epoch": 66.67103538663171, + "grad_norm": 0.2047458291053772, + "learning_rate": 0.0006, + "loss": 3.498279571533203, + "step": 4800 + }, + { + "epoch": 66.68501529051987, + "grad_norm": 0.21750541031360626, + "learning_rate": 0.0006, + "loss": 3.5349860191345215, + "step": 4801 + }, + { + "epoch": 66.69899519440804, + "grad_norm": 0.2415834218263626, + "learning_rate": 0.0006, + "loss": 3.5091004371643066, + "step": 4802 + }, + { + "epoch": 66.7129750982962, + "grad_norm": 0.19963665306568146, + "learning_rate": 0.0006, + "loss": 3.5369873046875, + "step": 4803 + }, + { + "epoch": 66.72695500218435, + "grad_norm": 0.23620283603668213, + "learning_rate": 0.0006, + "loss": 3.5239949226379395, + "step": 4804 + }, + { + "epoch": 66.74093490607252, + "grad_norm": 0.2616693079471588, + "learning_rate": 0.0006, + "loss": 3.545588493347168, + "step": 4805 + }, + { + "epoch": 66.75491480996068, + "grad_norm": 0.23235733807086945, + "learning_rate": 0.0006, + "loss": 3.5250823497772217, + "step": 4806 + }, + { + "epoch": 66.76889471384884, + "grad_norm": 0.20908917486667633, + "learning_rate": 0.0006, + "loss": 3.547023057937622, + "step": 4807 + }, + { + "epoch": 66.78287461773701, + "grad_norm": 0.23014947772026062, + "learning_rate": 0.0006, + "loss": 3.527070999145508, + "step": 4808 + }, + { + "epoch": 66.79685452162516, + "grad_norm": 0.2468312382698059, + "learning_rate": 0.0006, + "loss": 3.5456371307373047, + "step": 4809 + }, + { + "epoch": 66.81083442551332, + "grad_norm": 0.21409334242343903, + "learning_rate": 0.0006, + "loss": 3.5282058715820312, + "step": 4810 + }, + { + "epoch": 66.82481432940149, + "grad_norm": 0.20337609946727753, + "learning_rate": 0.0006, + "loss": 3.5054173469543457, + "step": 4811 + }, + { + "epoch": 66.83879423328965, + "grad_norm": 0.20335888862609863, + "learning_rate": 0.0006, + "loss": 3.5417919158935547, + "step": 4812 + }, + { + "epoch": 66.8527741371778, + "grad_norm": 0.20672455430030823, + "learning_rate": 0.0006, + "loss": 3.549217700958252, + "step": 4813 + }, + { + "epoch": 66.86675404106597, + "grad_norm": 0.19788624346256256, + "learning_rate": 0.0006, + "loss": 3.5244839191436768, + "step": 4814 + }, + { + "epoch": 66.88073394495413, + "grad_norm": 0.19756834208965302, + "learning_rate": 0.0006, + "loss": 3.5210156440734863, + "step": 4815 + }, + { + "epoch": 66.89471384884229, + "grad_norm": 0.18592269718647003, + "learning_rate": 0.0006, + "loss": 3.522824764251709, + "step": 4816 + }, + { + "epoch": 66.90869375273044, + "grad_norm": 0.2011021077632904, + "learning_rate": 0.0006, + "loss": 3.521613597869873, + "step": 4817 + }, + { + "epoch": 66.92267365661861, + "grad_norm": 0.20816446840763092, + "learning_rate": 0.0006, + "loss": 3.562373161315918, + "step": 4818 + }, + { + "epoch": 66.93665356050677, + "grad_norm": 0.1967775523662567, + "learning_rate": 0.0006, + "loss": 3.5357818603515625, + "step": 4819 + }, + { + "epoch": 66.95063346439493, + "grad_norm": 0.20569968223571777, + "learning_rate": 0.0006, + "loss": 3.5232982635498047, + "step": 4820 + }, + { + "epoch": 66.9646133682831, + "grad_norm": 0.2095642238855362, + "learning_rate": 0.0006, + "loss": 3.5395994186401367, + "step": 4821 + }, + { + "epoch": 66.97859327217125, + "grad_norm": 0.22340409457683563, + "learning_rate": 0.0006, + "loss": 3.5163097381591797, + "step": 4822 + }, + { + "epoch": 66.99257317605941, + "grad_norm": 0.2131485939025879, + "learning_rate": 0.0006, + "loss": 3.555629253387451, + "step": 4823 + }, + { + "epoch": 67.0, + "grad_norm": 0.22373832762241364, + "learning_rate": 0.0006, + "loss": 3.5017800331115723, + "step": 4824 + }, + { + "epoch": 67.0, + "eval_loss": 3.9781124591827393, + "eval_runtime": 44.8111, + "eval_samples_per_second": 54.495, + "eval_steps_per_second": 3.414, + "step": 4824 + }, + { + "epoch": 67.01397990388816, + "grad_norm": 0.21282735466957092, + "learning_rate": 0.0006, + "loss": 3.482837677001953, + "step": 4825 + }, + { + "epoch": 67.02795980777633, + "grad_norm": 0.23839101195335388, + "learning_rate": 0.0006, + "loss": 3.5095958709716797, + "step": 4826 + }, + { + "epoch": 67.04193971166448, + "grad_norm": 0.2598385810852051, + "learning_rate": 0.0006, + "loss": 3.463888645172119, + "step": 4827 + }, + { + "epoch": 67.05591961555264, + "grad_norm": 0.24132144451141357, + "learning_rate": 0.0006, + "loss": 3.478180408477783, + "step": 4828 + }, + { + "epoch": 67.06989951944081, + "grad_norm": 0.23276527225971222, + "learning_rate": 0.0006, + "loss": 3.5064096450805664, + "step": 4829 + }, + { + "epoch": 67.08387942332897, + "grad_norm": 0.21749058365821838, + "learning_rate": 0.0006, + "loss": 3.5057930946350098, + "step": 4830 + }, + { + "epoch": 67.09785932721712, + "grad_norm": 0.22310365736484528, + "learning_rate": 0.0006, + "loss": 3.492342233657837, + "step": 4831 + }, + { + "epoch": 67.1118392311053, + "grad_norm": 0.23109206557273865, + "learning_rate": 0.0006, + "loss": 3.4776313304901123, + "step": 4832 + }, + { + "epoch": 67.12581913499345, + "grad_norm": 0.21820154786109924, + "learning_rate": 0.0006, + "loss": 3.4983036518096924, + "step": 4833 + }, + { + "epoch": 67.1397990388816, + "grad_norm": 0.214705228805542, + "learning_rate": 0.0006, + "loss": 3.4997382164001465, + "step": 4834 + }, + { + "epoch": 67.15377894276976, + "grad_norm": 0.230570450425148, + "learning_rate": 0.0006, + "loss": 3.5172224044799805, + "step": 4835 + }, + { + "epoch": 67.16775884665793, + "grad_norm": 0.21726474165916443, + "learning_rate": 0.0006, + "loss": 3.4625420570373535, + "step": 4836 + }, + { + "epoch": 67.18173875054609, + "grad_norm": 0.21541455388069153, + "learning_rate": 0.0006, + "loss": 3.5274102687835693, + "step": 4837 + }, + { + "epoch": 67.19571865443424, + "grad_norm": 0.21431861817836761, + "learning_rate": 0.0006, + "loss": 3.5112781524658203, + "step": 4838 + }, + { + "epoch": 67.20969855832242, + "grad_norm": 0.22660572826862335, + "learning_rate": 0.0006, + "loss": 3.4687018394470215, + "step": 4839 + }, + { + "epoch": 67.22367846221057, + "grad_norm": 0.21821390092372894, + "learning_rate": 0.0006, + "loss": 3.5137336254119873, + "step": 4840 + }, + { + "epoch": 67.23765836609873, + "grad_norm": 0.20666861534118652, + "learning_rate": 0.0006, + "loss": 3.5264923572540283, + "step": 4841 + }, + { + "epoch": 67.2516382699869, + "grad_norm": 0.2266923040151596, + "learning_rate": 0.0006, + "loss": 3.5288591384887695, + "step": 4842 + }, + { + "epoch": 67.26561817387505, + "grad_norm": 0.20246101915836334, + "learning_rate": 0.0006, + "loss": 3.5267882347106934, + "step": 4843 + }, + { + "epoch": 67.27959807776321, + "grad_norm": 0.20115883648395538, + "learning_rate": 0.0006, + "loss": 3.5004916191101074, + "step": 4844 + }, + { + "epoch": 67.29357798165138, + "grad_norm": 0.21547555923461914, + "learning_rate": 0.0006, + "loss": 3.5347824096679688, + "step": 4845 + }, + { + "epoch": 67.30755788553954, + "grad_norm": 0.22675341367721558, + "learning_rate": 0.0006, + "loss": 3.5119810104370117, + "step": 4846 + }, + { + "epoch": 67.3215377894277, + "grad_norm": 0.2440510094165802, + "learning_rate": 0.0006, + "loss": 3.489138126373291, + "step": 4847 + }, + { + "epoch": 67.33551769331586, + "grad_norm": 0.3055892884731293, + "learning_rate": 0.0006, + "loss": 3.5096774101257324, + "step": 4848 + }, + { + "epoch": 67.34949759720402, + "grad_norm": 0.3053153455257416, + "learning_rate": 0.0006, + "loss": 3.4901437759399414, + "step": 4849 + }, + { + "epoch": 67.36347750109218, + "grad_norm": 0.27368026971817017, + "learning_rate": 0.0006, + "loss": 3.5251317024230957, + "step": 4850 + }, + { + "epoch": 67.37745740498035, + "grad_norm": 0.2427835315465927, + "learning_rate": 0.0006, + "loss": 3.5069375038146973, + "step": 4851 + }, + { + "epoch": 67.3914373088685, + "grad_norm": 0.22328020632266998, + "learning_rate": 0.0006, + "loss": 3.5156240463256836, + "step": 4852 + }, + { + "epoch": 67.40541721275666, + "grad_norm": 0.22034069895744324, + "learning_rate": 0.0006, + "loss": 3.527740001678467, + "step": 4853 + }, + { + "epoch": 67.41939711664482, + "grad_norm": 0.23175004124641418, + "learning_rate": 0.0006, + "loss": 3.5049824714660645, + "step": 4854 + }, + { + "epoch": 67.43337702053299, + "grad_norm": 0.251209020614624, + "learning_rate": 0.0006, + "loss": 3.521754503250122, + "step": 4855 + }, + { + "epoch": 67.44735692442114, + "grad_norm": 0.26046663522720337, + "learning_rate": 0.0006, + "loss": 3.507568359375, + "step": 4856 + }, + { + "epoch": 67.4613368283093, + "grad_norm": 0.2206648588180542, + "learning_rate": 0.0006, + "loss": 3.513352870941162, + "step": 4857 + }, + { + "epoch": 67.47531673219747, + "grad_norm": 0.21608634293079376, + "learning_rate": 0.0006, + "loss": 3.4996538162231445, + "step": 4858 + }, + { + "epoch": 67.48929663608563, + "grad_norm": 0.24478112161159515, + "learning_rate": 0.0006, + "loss": 3.5210018157958984, + "step": 4859 + }, + { + "epoch": 67.50327653997378, + "grad_norm": 0.24971047043800354, + "learning_rate": 0.0006, + "loss": 3.5325865745544434, + "step": 4860 + }, + { + "epoch": 67.51725644386195, + "grad_norm": 0.26053082942962646, + "learning_rate": 0.0006, + "loss": 3.546248435974121, + "step": 4861 + }, + { + "epoch": 67.53123634775011, + "grad_norm": 0.2662231922149658, + "learning_rate": 0.0006, + "loss": 3.5073113441467285, + "step": 4862 + }, + { + "epoch": 67.54521625163827, + "grad_norm": 0.24797172844409943, + "learning_rate": 0.0006, + "loss": 3.536888360977173, + "step": 4863 + }, + { + "epoch": 67.55919615552644, + "grad_norm": 0.2383667528629303, + "learning_rate": 0.0006, + "loss": 3.5343832969665527, + "step": 4864 + }, + { + "epoch": 67.57317605941459, + "grad_norm": 0.2696457803249359, + "learning_rate": 0.0006, + "loss": 3.51254940032959, + "step": 4865 + }, + { + "epoch": 67.58715596330275, + "grad_norm": 0.2644849419593811, + "learning_rate": 0.0006, + "loss": 3.5213255882263184, + "step": 4866 + }, + { + "epoch": 67.60113586719092, + "grad_norm": 0.2375287413597107, + "learning_rate": 0.0006, + "loss": 3.5177063941955566, + "step": 4867 + }, + { + "epoch": 67.61511577107908, + "grad_norm": 0.2249385118484497, + "learning_rate": 0.0006, + "loss": 3.541508674621582, + "step": 4868 + }, + { + "epoch": 67.62909567496723, + "grad_norm": 0.2155243158340454, + "learning_rate": 0.0006, + "loss": 3.5091710090637207, + "step": 4869 + }, + { + "epoch": 67.6430755788554, + "grad_norm": 0.20459716022014618, + "learning_rate": 0.0006, + "loss": 3.5284833908081055, + "step": 4870 + }, + { + "epoch": 67.65705548274356, + "grad_norm": 0.22957809269428253, + "learning_rate": 0.0006, + "loss": 3.4831137657165527, + "step": 4871 + }, + { + "epoch": 67.67103538663171, + "grad_norm": 0.2776307165622711, + "learning_rate": 0.0006, + "loss": 3.5084991455078125, + "step": 4872 + }, + { + "epoch": 67.68501529051987, + "grad_norm": 0.2769255042076111, + "learning_rate": 0.0006, + "loss": 3.5352253913879395, + "step": 4873 + }, + { + "epoch": 67.69899519440804, + "grad_norm": 0.2233399897813797, + "learning_rate": 0.0006, + "loss": 3.5451040267944336, + "step": 4874 + }, + { + "epoch": 67.7129750982962, + "grad_norm": 0.20665188133716583, + "learning_rate": 0.0006, + "loss": 3.528292417526245, + "step": 4875 + }, + { + "epoch": 67.72695500218435, + "grad_norm": 0.22606195509433746, + "learning_rate": 0.0006, + "loss": 3.519838571548462, + "step": 4876 + }, + { + "epoch": 67.74093490607252, + "grad_norm": 0.22447355091571808, + "learning_rate": 0.0006, + "loss": 3.562148094177246, + "step": 4877 + }, + { + "epoch": 67.75491480996068, + "grad_norm": 0.2255096584558487, + "learning_rate": 0.0006, + "loss": 3.53926420211792, + "step": 4878 + }, + { + "epoch": 67.76889471384884, + "grad_norm": 0.2142494022846222, + "learning_rate": 0.0006, + "loss": 3.533456563949585, + "step": 4879 + }, + { + "epoch": 67.78287461773701, + "grad_norm": 0.2157258242368698, + "learning_rate": 0.0006, + "loss": 3.534109592437744, + "step": 4880 + }, + { + "epoch": 67.79685452162516, + "grad_norm": 0.20596624910831451, + "learning_rate": 0.0006, + "loss": 3.5252795219421387, + "step": 4881 + }, + { + "epoch": 67.81083442551332, + "grad_norm": 0.24075612425804138, + "learning_rate": 0.0006, + "loss": 3.549905300140381, + "step": 4882 + }, + { + "epoch": 67.82481432940149, + "grad_norm": 0.27206453680992126, + "learning_rate": 0.0006, + "loss": 3.4850993156433105, + "step": 4883 + }, + { + "epoch": 67.83879423328965, + "grad_norm": 0.2525651454925537, + "learning_rate": 0.0006, + "loss": 3.4936270713806152, + "step": 4884 + }, + { + "epoch": 67.8527741371778, + "grad_norm": 0.20669442415237427, + "learning_rate": 0.0006, + "loss": 3.5201377868652344, + "step": 4885 + }, + { + "epoch": 67.86675404106597, + "grad_norm": 0.19694887101650238, + "learning_rate": 0.0006, + "loss": 3.5146493911743164, + "step": 4886 + }, + { + "epoch": 67.88073394495413, + "grad_norm": 0.20657725632190704, + "learning_rate": 0.0006, + "loss": 3.539475917816162, + "step": 4887 + }, + { + "epoch": 67.89471384884229, + "grad_norm": 0.2321559488773346, + "learning_rate": 0.0006, + "loss": 3.541250705718994, + "step": 4888 + }, + { + "epoch": 67.90869375273044, + "grad_norm": 0.22864052653312683, + "learning_rate": 0.0006, + "loss": 3.5151207447052, + "step": 4889 + }, + { + "epoch": 67.92267365661861, + "grad_norm": 0.2121419608592987, + "learning_rate": 0.0006, + "loss": 3.5219309329986572, + "step": 4890 + }, + { + "epoch": 67.93665356050677, + "grad_norm": 0.2194126695394516, + "learning_rate": 0.0006, + "loss": 3.5411415100097656, + "step": 4891 + }, + { + "epoch": 67.95063346439493, + "grad_norm": 0.23670069873332977, + "learning_rate": 0.0006, + "loss": 3.56632137298584, + "step": 4892 + }, + { + "epoch": 67.9646133682831, + "grad_norm": 0.22159531712532043, + "learning_rate": 0.0006, + "loss": 3.5245089530944824, + "step": 4893 + }, + { + "epoch": 67.97859327217125, + "grad_norm": 0.20856274664402008, + "learning_rate": 0.0006, + "loss": 3.5363054275512695, + "step": 4894 + }, + { + "epoch": 67.99257317605941, + "grad_norm": 0.21568304300308228, + "learning_rate": 0.0006, + "loss": 3.5226120948791504, + "step": 4895 + }, + { + "epoch": 68.0, + "grad_norm": 0.22287404537200928, + "learning_rate": 0.0006, + "loss": 3.5020053386688232, + "step": 4896 + }, + { + "epoch": 68.0, + "eval_loss": 3.976909637451172, + "eval_runtime": 44.2603, + "eval_samples_per_second": 55.174, + "eval_steps_per_second": 3.457, + "step": 4896 + }, + { + "epoch": 68.01397990388816, + "grad_norm": 0.20234280824661255, + "learning_rate": 0.0006, + "loss": 3.484044075012207, + "step": 4897 + }, + { + "epoch": 68.02795980777633, + "grad_norm": 0.2183598279953003, + "learning_rate": 0.0006, + "loss": 3.4933700561523438, + "step": 4898 + }, + { + "epoch": 68.04193971166448, + "grad_norm": 0.24236822128295898, + "learning_rate": 0.0006, + "loss": 3.5028629302978516, + "step": 4899 + }, + { + "epoch": 68.05591961555264, + "grad_norm": 0.26641783118247986, + "learning_rate": 0.0006, + "loss": 3.475382089614868, + "step": 4900 + }, + { + "epoch": 68.06989951944081, + "grad_norm": 0.2867112159729004, + "learning_rate": 0.0006, + "loss": 3.5016913414001465, + "step": 4901 + }, + { + "epoch": 68.08387942332897, + "grad_norm": 0.24962085485458374, + "learning_rate": 0.0006, + "loss": 3.484367609024048, + "step": 4902 + }, + { + "epoch": 68.09785932721712, + "grad_norm": 0.2124275118112564, + "learning_rate": 0.0006, + "loss": 3.5119738578796387, + "step": 4903 + }, + { + "epoch": 68.1118392311053, + "grad_norm": 0.24732011556625366, + "learning_rate": 0.0006, + "loss": 3.486185073852539, + "step": 4904 + }, + { + "epoch": 68.12581913499345, + "grad_norm": 0.28683924674987793, + "learning_rate": 0.0006, + "loss": 3.495997905731201, + "step": 4905 + }, + { + "epoch": 68.1397990388816, + "grad_norm": 0.25751420855522156, + "learning_rate": 0.0006, + "loss": 3.4736456871032715, + "step": 4906 + }, + { + "epoch": 68.15377894276976, + "grad_norm": 0.24258914589881897, + "learning_rate": 0.0006, + "loss": 3.4900879859924316, + "step": 4907 + }, + { + "epoch": 68.16775884665793, + "grad_norm": 0.2878887951374054, + "learning_rate": 0.0006, + "loss": 3.4851484298706055, + "step": 4908 + }, + { + "epoch": 68.18173875054609, + "grad_norm": 0.27111393213272095, + "learning_rate": 0.0006, + "loss": 3.4835691452026367, + "step": 4909 + }, + { + "epoch": 68.19571865443424, + "grad_norm": 0.2475033849477768, + "learning_rate": 0.0006, + "loss": 3.4887213706970215, + "step": 4910 + }, + { + "epoch": 68.20969855832242, + "grad_norm": 0.267839252948761, + "learning_rate": 0.0006, + "loss": 3.515256404876709, + "step": 4911 + }, + { + "epoch": 68.22367846221057, + "grad_norm": 0.2135075181722641, + "learning_rate": 0.0006, + "loss": 3.5156445503234863, + "step": 4912 + }, + { + "epoch": 68.23765836609873, + "grad_norm": 0.22425328195095062, + "learning_rate": 0.0006, + "loss": 3.505338668823242, + "step": 4913 + }, + { + "epoch": 68.2516382699869, + "grad_norm": 0.2322927862405777, + "learning_rate": 0.0006, + "loss": 3.519695281982422, + "step": 4914 + }, + { + "epoch": 68.26561817387505, + "grad_norm": 0.2472568154335022, + "learning_rate": 0.0006, + "loss": 3.4845151901245117, + "step": 4915 + }, + { + "epoch": 68.27959807776321, + "grad_norm": 0.2725318968296051, + "learning_rate": 0.0006, + "loss": 3.4981484413146973, + "step": 4916 + }, + { + "epoch": 68.29357798165138, + "grad_norm": 0.2940191626548767, + "learning_rate": 0.0006, + "loss": 3.5088295936584473, + "step": 4917 + }, + { + "epoch": 68.30755788553954, + "grad_norm": 0.24303823709487915, + "learning_rate": 0.0006, + "loss": 3.492511749267578, + "step": 4918 + }, + { + "epoch": 68.3215377894277, + "grad_norm": 0.21951992809772491, + "learning_rate": 0.0006, + "loss": 3.509099006652832, + "step": 4919 + }, + { + "epoch": 68.33551769331586, + "grad_norm": 0.22776944935321808, + "learning_rate": 0.0006, + "loss": 3.501638650894165, + "step": 4920 + }, + { + "epoch": 68.34949759720402, + "grad_norm": 0.21173885464668274, + "learning_rate": 0.0006, + "loss": 3.4885807037353516, + "step": 4921 + }, + { + "epoch": 68.36347750109218, + "grad_norm": 0.2253648191690445, + "learning_rate": 0.0006, + "loss": 3.5350418090820312, + "step": 4922 + }, + { + "epoch": 68.37745740498035, + "grad_norm": 0.24312502145767212, + "learning_rate": 0.0006, + "loss": 3.490877866744995, + "step": 4923 + }, + { + "epoch": 68.3914373088685, + "grad_norm": 0.2103606015443802, + "learning_rate": 0.0006, + "loss": 3.5088863372802734, + "step": 4924 + }, + { + "epoch": 68.40541721275666, + "grad_norm": 0.19921863079071045, + "learning_rate": 0.0006, + "loss": 3.5282039642333984, + "step": 4925 + }, + { + "epoch": 68.41939711664482, + "grad_norm": 0.2041940689086914, + "learning_rate": 0.0006, + "loss": 3.5212771892547607, + "step": 4926 + }, + { + "epoch": 68.43337702053299, + "grad_norm": 0.22238804399967194, + "learning_rate": 0.0006, + "loss": 3.4951324462890625, + "step": 4927 + }, + { + "epoch": 68.44735692442114, + "grad_norm": 0.23161815106868744, + "learning_rate": 0.0006, + "loss": 3.5463013648986816, + "step": 4928 + }, + { + "epoch": 68.4613368283093, + "grad_norm": 0.21717964112758636, + "learning_rate": 0.0006, + "loss": 3.5081775188446045, + "step": 4929 + }, + { + "epoch": 68.47531673219747, + "grad_norm": 0.21505609154701233, + "learning_rate": 0.0006, + "loss": 3.52695631980896, + "step": 4930 + }, + { + "epoch": 68.48929663608563, + "grad_norm": 0.2720189094543457, + "learning_rate": 0.0006, + "loss": 3.497748374938965, + "step": 4931 + }, + { + "epoch": 68.50327653997378, + "grad_norm": 0.2619168758392334, + "learning_rate": 0.0006, + "loss": 3.5015270709991455, + "step": 4932 + }, + { + "epoch": 68.51725644386195, + "grad_norm": 0.21718725562095642, + "learning_rate": 0.0006, + "loss": 3.533599853515625, + "step": 4933 + }, + { + "epoch": 68.53123634775011, + "grad_norm": 0.22977295517921448, + "learning_rate": 0.0006, + "loss": 3.507884979248047, + "step": 4934 + }, + { + "epoch": 68.54521625163827, + "grad_norm": 0.230342298746109, + "learning_rate": 0.0006, + "loss": 3.497065544128418, + "step": 4935 + }, + { + "epoch": 68.55919615552644, + "grad_norm": 0.2253657728433609, + "learning_rate": 0.0006, + "loss": 3.5066728591918945, + "step": 4936 + }, + { + "epoch": 68.57317605941459, + "grad_norm": 0.23173992335796356, + "learning_rate": 0.0006, + "loss": 3.5072999000549316, + "step": 4937 + }, + { + "epoch": 68.58715596330275, + "grad_norm": 0.22984914481639862, + "learning_rate": 0.0006, + "loss": 3.5296144485473633, + "step": 4938 + }, + { + "epoch": 68.60113586719092, + "grad_norm": 0.2349584549665451, + "learning_rate": 0.0006, + "loss": 3.5185141563415527, + "step": 4939 + }, + { + "epoch": 68.61511577107908, + "grad_norm": 0.2469010204076767, + "learning_rate": 0.0006, + "loss": 3.545579433441162, + "step": 4940 + }, + { + "epoch": 68.62909567496723, + "grad_norm": 0.23078389465808868, + "learning_rate": 0.0006, + "loss": 3.5281553268432617, + "step": 4941 + }, + { + "epoch": 68.6430755788554, + "grad_norm": 0.23545116186141968, + "learning_rate": 0.0006, + "loss": 3.5376791954040527, + "step": 4942 + }, + { + "epoch": 68.65705548274356, + "grad_norm": 0.22288277745246887, + "learning_rate": 0.0006, + "loss": 3.490978240966797, + "step": 4943 + }, + { + "epoch": 68.67103538663171, + "grad_norm": 0.21703778207302094, + "learning_rate": 0.0006, + "loss": 3.505856513977051, + "step": 4944 + }, + { + "epoch": 68.68501529051987, + "grad_norm": 0.24922960996627808, + "learning_rate": 0.0006, + "loss": 3.5120937824249268, + "step": 4945 + }, + { + "epoch": 68.69899519440804, + "grad_norm": 0.24075160920619965, + "learning_rate": 0.0006, + "loss": 3.515216588973999, + "step": 4946 + }, + { + "epoch": 68.7129750982962, + "grad_norm": 0.21714574098587036, + "learning_rate": 0.0006, + "loss": 3.5308592319488525, + "step": 4947 + }, + { + "epoch": 68.72695500218435, + "grad_norm": 0.21521902084350586, + "learning_rate": 0.0006, + "loss": 3.5040221214294434, + "step": 4948 + }, + { + "epoch": 68.74093490607252, + "grad_norm": 0.2078350931406021, + "learning_rate": 0.0006, + "loss": 3.5399329662323, + "step": 4949 + }, + { + "epoch": 68.75491480996068, + "grad_norm": 0.23039595782756805, + "learning_rate": 0.0006, + "loss": 3.5079939365386963, + "step": 4950 + }, + { + "epoch": 68.76889471384884, + "grad_norm": 0.23072801530361176, + "learning_rate": 0.0006, + "loss": 3.5254414081573486, + "step": 4951 + }, + { + "epoch": 68.78287461773701, + "grad_norm": 0.204904243350029, + "learning_rate": 0.0006, + "loss": 3.5212371349334717, + "step": 4952 + }, + { + "epoch": 68.79685452162516, + "grad_norm": 0.21405813097953796, + "learning_rate": 0.0006, + "loss": 3.557215690612793, + "step": 4953 + }, + { + "epoch": 68.81083442551332, + "grad_norm": 0.2332632839679718, + "learning_rate": 0.0006, + "loss": 3.522718906402588, + "step": 4954 + }, + { + "epoch": 68.82481432940149, + "grad_norm": 0.2211279273033142, + "learning_rate": 0.0006, + "loss": 3.534191608428955, + "step": 4955 + }, + { + "epoch": 68.83879423328965, + "grad_norm": 0.2153792679309845, + "learning_rate": 0.0006, + "loss": 3.497591018676758, + "step": 4956 + }, + { + "epoch": 68.8527741371778, + "grad_norm": 0.28634506464004517, + "learning_rate": 0.0006, + "loss": 3.5333778858184814, + "step": 4957 + }, + { + "epoch": 68.86675404106597, + "grad_norm": 0.2748981714248657, + "learning_rate": 0.0006, + "loss": 3.533328056335449, + "step": 4958 + }, + { + "epoch": 68.88073394495413, + "grad_norm": 0.22137348353862762, + "learning_rate": 0.0006, + "loss": 3.516744613647461, + "step": 4959 + }, + { + "epoch": 68.89471384884229, + "grad_norm": 0.21476638317108154, + "learning_rate": 0.0006, + "loss": 3.5090954303741455, + "step": 4960 + }, + { + "epoch": 68.90869375273044, + "grad_norm": 0.2204403430223465, + "learning_rate": 0.0006, + "loss": 3.534665107727051, + "step": 4961 + }, + { + "epoch": 68.92267365661861, + "grad_norm": 0.20083564519882202, + "learning_rate": 0.0006, + "loss": 3.5572776794433594, + "step": 4962 + }, + { + "epoch": 68.93665356050677, + "grad_norm": 0.23286207020282745, + "learning_rate": 0.0006, + "loss": 3.5279769897460938, + "step": 4963 + }, + { + "epoch": 68.95063346439493, + "grad_norm": 0.2934340536594391, + "learning_rate": 0.0006, + "loss": 3.5299172401428223, + "step": 4964 + }, + { + "epoch": 68.9646133682831, + "grad_norm": 0.29742664098739624, + "learning_rate": 0.0006, + "loss": 3.5258350372314453, + "step": 4965 + }, + { + "epoch": 68.97859327217125, + "grad_norm": 0.23674239218235016, + "learning_rate": 0.0006, + "loss": 3.511875629425049, + "step": 4966 + }, + { + "epoch": 68.99257317605941, + "grad_norm": 0.1859714239835739, + "learning_rate": 0.0006, + "loss": 3.5111045837402344, + "step": 4967 + }, + { + "epoch": 69.0, + "grad_norm": 0.21548990905284882, + "learning_rate": 0.0006, + "loss": 3.567469358444214, + "step": 4968 + }, + { + "epoch": 69.0, + "eval_loss": 3.987680673599243, + "eval_runtime": 44.8193, + "eval_samples_per_second": 54.485, + "eval_steps_per_second": 3.414, + "step": 4968 + }, + { + "epoch": 69.01397990388816, + "grad_norm": 0.25460419058799744, + "learning_rate": 0.0006, + "loss": 3.513350009918213, + "step": 4969 + }, + { + "epoch": 69.02795980777633, + "grad_norm": 0.2635819613933563, + "learning_rate": 0.0006, + "loss": 3.516538143157959, + "step": 4970 + }, + { + "epoch": 69.04193971166448, + "grad_norm": 0.25024983286857605, + "learning_rate": 0.0006, + "loss": 3.501711845397949, + "step": 4971 + }, + { + "epoch": 69.05591961555264, + "grad_norm": 0.23533429205417633, + "learning_rate": 0.0006, + "loss": 3.4735984802246094, + "step": 4972 + }, + { + "epoch": 69.06989951944081, + "grad_norm": 0.23477932810783386, + "learning_rate": 0.0006, + "loss": 3.532632827758789, + "step": 4973 + }, + { + "epoch": 69.08387942332897, + "grad_norm": 0.23769758641719818, + "learning_rate": 0.0006, + "loss": 3.4775495529174805, + "step": 4974 + }, + { + "epoch": 69.09785932721712, + "grad_norm": 0.24599312245845795, + "learning_rate": 0.0006, + "loss": 3.481222629547119, + "step": 4975 + }, + { + "epoch": 69.1118392311053, + "grad_norm": 0.24212618172168732, + "learning_rate": 0.0006, + "loss": 3.485240936279297, + "step": 4976 + }, + { + "epoch": 69.12581913499345, + "grad_norm": 0.2271437644958496, + "learning_rate": 0.0006, + "loss": 3.476949691772461, + "step": 4977 + }, + { + "epoch": 69.1397990388816, + "grad_norm": 0.2542489469051361, + "learning_rate": 0.0006, + "loss": 3.4601399898529053, + "step": 4978 + }, + { + "epoch": 69.15377894276976, + "grad_norm": 0.24926388263702393, + "learning_rate": 0.0006, + "loss": 3.4832189083099365, + "step": 4979 + }, + { + "epoch": 69.16775884665793, + "grad_norm": 0.22356736660003662, + "learning_rate": 0.0006, + "loss": 3.5187554359436035, + "step": 4980 + }, + { + "epoch": 69.18173875054609, + "grad_norm": 0.21727295219898224, + "learning_rate": 0.0006, + "loss": 3.5310418605804443, + "step": 4981 + }, + { + "epoch": 69.19571865443424, + "grad_norm": 0.22234170138835907, + "learning_rate": 0.0006, + "loss": 3.506479263305664, + "step": 4982 + }, + { + "epoch": 69.20969855832242, + "grad_norm": 0.21620802581310272, + "learning_rate": 0.0006, + "loss": 3.488720655441284, + "step": 4983 + }, + { + "epoch": 69.22367846221057, + "grad_norm": 0.23558273911476135, + "learning_rate": 0.0006, + "loss": 3.4884839057922363, + "step": 4984 + }, + { + "epoch": 69.23765836609873, + "grad_norm": 0.2330513894557953, + "learning_rate": 0.0006, + "loss": 3.4810781478881836, + "step": 4985 + }, + { + "epoch": 69.2516382699869, + "grad_norm": 0.23570097982883453, + "learning_rate": 0.0006, + "loss": 3.4966390132904053, + "step": 4986 + }, + { + "epoch": 69.26561817387505, + "grad_norm": 0.2415456771850586, + "learning_rate": 0.0006, + "loss": 3.499464511871338, + "step": 4987 + }, + { + "epoch": 69.27959807776321, + "grad_norm": 0.22498410940170288, + "learning_rate": 0.0006, + "loss": 3.494260311126709, + "step": 4988 + }, + { + "epoch": 69.29357798165138, + "grad_norm": 0.23802009224891663, + "learning_rate": 0.0006, + "loss": 3.4801578521728516, + "step": 4989 + }, + { + "epoch": 69.30755788553954, + "grad_norm": 0.24189673364162445, + "learning_rate": 0.0006, + "loss": 3.513599395751953, + "step": 4990 + }, + { + "epoch": 69.3215377894277, + "grad_norm": 0.21577486395835876, + "learning_rate": 0.0006, + "loss": 3.493995428085327, + "step": 4991 + }, + { + "epoch": 69.33551769331586, + "grad_norm": 0.21220745146274567, + "learning_rate": 0.0006, + "loss": 3.495041847229004, + "step": 4992 + }, + { + "epoch": 69.34949759720402, + "grad_norm": 0.248879075050354, + "learning_rate": 0.0006, + "loss": 3.5003933906555176, + "step": 4993 + }, + { + "epoch": 69.36347750109218, + "grad_norm": 0.26753994822502136, + "learning_rate": 0.0006, + "loss": 3.491333484649658, + "step": 4994 + }, + { + "epoch": 69.37745740498035, + "grad_norm": 0.24140691757202148, + "learning_rate": 0.0006, + "loss": 3.495715618133545, + "step": 4995 + }, + { + "epoch": 69.3914373088685, + "grad_norm": 0.20997264981269836, + "learning_rate": 0.0006, + "loss": 3.520455837249756, + "step": 4996 + }, + { + "epoch": 69.40541721275666, + "grad_norm": 0.21708904206752777, + "learning_rate": 0.0006, + "loss": 3.4696202278137207, + "step": 4997 + }, + { + "epoch": 69.41939711664482, + "grad_norm": 0.25731977820396423, + "learning_rate": 0.0006, + "loss": 3.4827113151550293, + "step": 4998 + }, + { + "epoch": 69.43337702053299, + "grad_norm": 0.24132139980793, + "learning_rate": 0.0006, + "loss": 3.5224547386169434, + "step": 4999 + }, + { + "epoch": 69.44735692442114, + "grad_norm": 0.21150226891040802, + "learning_rate": 0.0006, + "loss": 3.4872965812683105, + "step": 5000 + }, + { + "epoch": 69.4613368283093, + "grad_norm": 0.20874962210655212, + "learning_rate": 0.0006, + "loss": 3.477656364440918, + "step": 5001 + }, + { + "epoch": 69.47531673219747, + "grad_norm": 0.20523078739643097, + "learning_rate": 0.0006, + "loss": 3.4912261962890625, + "step": 5002 + }, + { + "epoch": 69.48929663608563, + "grad_norm": 0.20590092241764069, + "learning_rate": 0.0006, + "loss": 3.5227253437042236, + "step": 5003 + }, + { + "epoch": 69.50327653997378, + "grad_norm": 0.21837440133094788, + "learning_rate": 0.0006, + "loss": 3.514094591140747, + "step": 5004 + }, + { + "epoch": 69.51725644386195, + "grad_norm": 0.23487630486488342, + "learning_rate": 0.0006, + "loss": 3.517775535583496, + "step": 5005 + }, + { + "epoch": 69.53123634775011, + "grad_norm": 0.23771126568317413, + "learning_rate": 0.0006, + "loss": 3.5164601802825928, + "step": 5006 + }, + { + "epoch": 69.54521625163827, + "grad_norm": 0.23423148691654205, + "learning_rate": 0.0006, + "loss": 3.5120983123779297, + "step": 5007 + }, + { + "epoch": 69.55919615552644, + "grad_norm": 0.2332620471715927, + "learning_rate": 0.0006, + "loss": 3.5184125900268555, + "step": 5008 + }, + { + "epoch": 69.57317605941459, + "grad_norm": 0.24148650467395782, + "learning_rate": 0.0006, + "loss": 3.509979248046875, + "step": 5009 + }, + { + "epoch": 69.58715596330275, + "grad_norm": 0.20881295204162598, + "learning_rate": 0.0006, + "loss": 3.5542125701904297, + "step": 5010 + }, + { + "epoch": 69.60113586719092, + "grad_norm": 0.21871483325958252, + "learning_rate": 0.0006, + "loss": 3.5178754329681396, + "step": 5011 + }, + { + "epoch": 69.61511577107908, + "grad_norm": 0.21630224585533142, + "learning_rate": 0.0006, + "loss": 3.5215046405792236, + "step": 5012 + }, + { + "epoch": 69.62909567496723, + "grad_norm": 0.2211679369211197, + "learning_rate": 0.0006, + "loss": 3.5213570594787598, + "step": 5013 + }, + { + "epoch": 69.6430755788554, + "grad_norm": 0.2206520140171051, + "learning_rate": 0.0006, + "loss": 3.5378212928771973, + "step": 5014 + }, + { + "epoch": 69.65705548274356, + "grad_norm": 0.21500450372695923, + "learning_rate": 0.0006, + "loss": 3.536560535430908, + "step": 5015 + }, + { + "epoch": 69.67103538663171, + "grad_norm": 0.2839236855506897, + "learning_rate": 0.0006, + "loss": 3.4911935329437256, + "step": 5016 + }, + { + "epoch": 69.68501529051987, + "grad_norm": 0.28307443857192993, + "learning_rate": 0.0006, + "loss": 3.5304269790649414, + "step": 5017 + }, + { + "epoch": 69.69899519440804, + "grad_norm": 0.20590558648109436, + "learning_rate": 0.0006, + "loss": 3.505474328994751, + "step": 5018 + }, + { + "epoch": 69.7129750982962, + "grad_norm": 0.24152527749538422, + "learning_rate": 0.0006, + "loss": 3.501438617706299, + "step": 5019 + }, + { + "epoch": 69.72695500218435, + "grad_norm": 0.21834975481033325, + "learning_rate": 0.0006, + "loss": 3.515756130218506, + "step": 5020 + }, + { + "epoch": 69.74093490607252, + "grad_norm": 0.2066304087638855, + "learning_rate": 0.0006, + "loss": 3.507535457611084, + "step": 5021 + }, + { + "epoch": 69.75491480996068, + "grad_norm": 0.2547939419746399, + "learning_rate": 0.0006, + "loss": 3.512665033340454, + "step": 5022 + }, + { + "epoch": 69.76889471384884, + "grad_norm": 0.25813716650009155, + "learning_rate": 0.0006, + "loss": 3.517632484436035, + "step": 5023 + }, + { + "epoch": 69.78287461773701, + "grad_norm": 0.223160520195961, + "learning_rate": 0.0006, + "loss": 3.5371553897857666, + "step": 5024 + }, + { + "epoch": 69.79685452162516, + "grad_norm": 0.2616842985153198, + "learning_rate": 0.0006, + "loss": 3.519502639770508, + "step": 5025 + }, + { + "epoch": 69.81083442551332, + "grad_norm": 0.2976956367492676, + "learning_rate": 0.0006, + "loss": 3.521639108657837, + "step": 5026 + }, + { + "epoch": 69.82481432940149, + "grad_norm": 0.253215491771698, + "learning_rate": 0.0006, + "loss": 3.5242714881896973, + "step": 5027 + }, + { + "epoch": 69.83879423328965, + "grad_norm": 0.2184867113828659, + "learning_rate": 0.0006, + "loss": 3.5430054664611816, + "step": 5028 + }, + { + "epoch": 69.8527741371778, + "grad_norm": 0.2110685110092163, + "learning_rate": 0.0006, + "loss": 3.518589735031128, + "step": 5029 + }, + { + "epoch": 69.86675404106597, + "grad_norm": 0.20499959588050842, + "learning_rate": 0.0006, + "loss": 3.5182108879089355, + "step": 5030 + }, + { + "epoch": 69.88073394495413, + "grad_norm": 0.21809129416942596, + "learning_rate": 0.0006, + "loss": 3.52005672454834, + "step": 5031 + }, + { + "epoch": 69.89471384884229, + "grad_norm": 0.22639480233192444, + "learning_rate": 0.0006, + "loss": 3.5405101776123047, + "step": 5032 + }, + { + "epoch": 69.90869375273044, + "grad_norm": 0.23321937024593353, + "learning_rate": 0.0006, + "loss": 3.5433502197265625, + "step": 5033 + }, + { + "epoch": 69.92267365661861, + "grad_norm": 0.22899670898914337, + "learning_rate": 0.0006, + "loss": 3.5300326347351074, + "step": 5034 + }, + { + "epoch": 69.93665356050677, + "grad_norm": 0.20367449522018433, + "learning_rate": 0.0006, + "loss": 3.5184967517852783, + "step": 5035 + }, + { + "epoch": 69.95063346439493, + "grad_norm": 0.21195004880428314, + "learning_rate": 0.0006, + "loss": 3.518951416015625, + "step": 5036 + }, + { + "epoch": 69.9646133682831, + "grad_norm": 0.23766686022281647, + "learning_rate": 0.0006, + "loss": 3.5148468017578125, + "step": 5037 + }, + { + "epoch": 69.97859327217125, + "grad_norm": 0.2558269500732422, + "learning_rate": 0.0006, + "loss": 3.5006861686706543, + "step": 5038 + }, + { + "epoch": 69.99257317605941, + "grad_norm": 0.23287998139858246, + "learning_rate": 0.0006, + "loss": 3.533900260925293, + "step": 5039 + }, + { + "epoch": 70.0, + "grad_norm": 0.24295051395893097, + "learning_rate": 0.0006, + "loss": 3.539205551147461, + "step": 5040 + }, + { + "epoch": 70.0, + "eval_loss": 3.9832167625427246, + "eval_runtime": 44.8557, + "eval_samples_per_second": 54.441, + "eval_steps_per_second": 3.411, + "step": 5040 + }, + { + "epoch": 70.01397990388816, + "grad_norm": 0.2342662364244461, + "learning_rate": 0.0006, + "loss": 3.4744529724121094, + "step": 5041 + }, + { + "epoch": 70.02795980777633, + "grad_norm": 0.24356921017169952, + "learning_rate": 0.0006, + "loss": 3.4678807258605957, + "step": 5042 + }, + { + "epoch": 70.04193971166448, + "grad_norm": 0.23141354322433472, + "learning_rate": 0.0006, + "loss": 3.4766411781311035, + "step": 5043 + }, + { + "epoch": 70.05591961555264, + "grad_norm": 0.2291923612356186, + "learning_rate": 0.0006, + "loss": 3.520775318145752, + "step": 5044 + }, + { + "epoch": 70.06989951944081, + "grad_norm": 0.24368838965892792, + "learning_rate": 0.0006, + "loss": 3.498244285583496, + "step": 5045 + }, + { + "epoch": 70.08387942332897, + "grad_norm": 0.24241037666797638, + "learning_rate": 0.0006, + "loss": 3.5297322273254395, + "step": 5046 + }, + { + "epoch": 70.09785932721712, + "grad_norm": 0.23169396817684174, + "learning_rate": 0.0006, + "loss": 3.4835686683654785, + "step": 5047 + }, + { + "epoch": 70.1118392311053, + "grad_norm": 0.21968135237693787, + "learning_rate": 0.0006, + "loss": 3.4419684410095215, + "step": 5048 + }, + { + "epoch": 70.12581913499345, + "grad_norm": 0.22738288342952728, + "learning_rate": 0.0006, + "loss": 3.4862613677978516, + "step": 5049 + }, + { + "epoch": 70.1397990388816, + "grad_norm": 0.2366214394569397, + "learning_rate": 0.0006, + "loss": 3.4799740314483643, + "step": 5050 + }, + { + "epoch": 70.15377894276976, + "grad_norm": 0.2310013324022293, + "learning_rate": 0.0006, + "loss": 3.491863250732422, + "step": 5051 + }, + { + "epoch": 70.16775884665793, + "grad_norm": 0.22765891253948212, + "learning_rate": 0.0006, + "loss": 3.4830703735351562, + "step": 5052 + }, + { + "epoch": 70.18173875054609, + "grad_norm": 0.23263567686080933, + "learning_rate": 0.0006, + "loss": 3.4692440032958984, + "step": 5053 + }, + { + "epoch": 70.19571865443424, + "grad_norm": 0.22552041709423065, + "learning_rate": 0.0006, + "loss": 3.4950807094573975, + "step": 5054 + }, + { + "epoch": 70.20969855832242, + "grad_norm": 0.2157282680273056, + "learning_rate": 0.0006, + "loss": 3.501680374145508, + "step": 5055 + }, + { + "epoch": 70.22367846221057, + "grad_norm": 0.2158394753932953, + "learning_rate": 0.0006, + "loss": 3.4894015789031982, + "step": 5056 + }, + { + "epoch": 70.23765836609873, + "grad_norm": 0.22618336975574493, + "learning_rate": 0.0006, + "loss": 3.479133129119873, + "step": 5057 + }, + { + "epoch": 70.2516382699869, + "grad_norm": 0.23803631961345673, + "learning_rate": 0.0006, + "loss": 3.4984683990478516, + "step": 5058 + }, + { + "epoch": 70.26561817387505, + "grad_norm": 0.23439951241016388, + "learning_rate": 0.0006, + "loss": 3.503323554992676, + "step": 5059 + }, + { + "epoch": 70.27959807776321, + "grad_norm": 0.23607788980007172, + "learning_rate": 0.0006, + "loss": 3.5056004524230957, + "step": 5060 + }, + { + "epoch": 70.29357798165138, + "grad_norm": 0.22633908689022064, + "learning_rate": 0.0006, + "loss": 3.5278968811035156, + "step": 5061 + }, + { + "epoch": 70.30755788553954, + "grad_norm": 0.21656733751296997, + "learning_rate": 0.0006, + "loss": 3.5163440704345703, + "step": 5062 + }, + { + "epoch": 70.3215377894277, + "grad_norm": 0.19461899995803833, + "learning_rate": 0.0006, + "loss": 3.506269931793213, + "step": 5063 + }, + { + "epoch": 70.33551769331586, + "grad_norm": 0.22591930627822876, + "learning_rate": 0.0006, + "loss": 3.51469087600708, + "step": 5064 + }, + { + "epoch": 70.34949759720402, + "grad_norm": 0.23841705918312073, + "learning_rate": 0.0006, + "loss": 3.4775524139404297, + "step": 5065 + }, + { + "epoch": 70.36347750109218, + "grad_norm": 0.24957220256328583, + "learning_rate": 0.0006, + "loss": 3.5303030014038086, + "step": 5066 + }, + { + "epoch": 70.37745740498035, + "grad_norm": 0.2574119567871094, + "learning_rate": 0.0006, + "loss": 3.524887800216675, + "step": 5067 + }, + { + "epoch": 70.3914373088685, + "grad_norm": 0.23704029619693756, + "learning_rate": 0.0006, + "loss": 3.5258219242095947, + "step": 5068 + }, + { + "epoch": 70.40541721275666, + "grad_norm": 0.221607968211174, + "learning_rate": 0.0006, + "loss": 3.5022010803222656, + "step": 5069 + }, + { + "epoch": 70.41939711664482, + "grad_norm": 0.2071426510810852, + "learning_rate": 0.0006, + "loss": 3.499718189239502, + "step": 5070 + }, + { + "epoch": 70.43337702053299, + "grad_norm": 0.2146281599998474, + "learning_rate": 0.0006, + "loss": 3.495534896850586, + "step": 5071 + }, + { + "epoch": 70.44735692442114, + "grad_norm": 0.21276946365833282, + "learning_rate": 0.0006, + "loss": 3.5138864517211914, + "step": 5072 + }, + { + "epoch": 70.4613368283093, + "grad_norm": 0.21113698184490204, + "learning_rate": 0.0006, + "loss": 3.531108856201172, + "step": 5073 + }, + { + "epoch": 70.47531673219747, + "grad_norm": 0.233713299036026, + "learning_rate": 0.0006, + "loss": 3.499675750732422, + "step": 5074 + }, + { + "epoch": 70.48929663608563, + "grad_norm": 0.2445792704820633, + "learning_rate": 0.0006, + "loss": 3.489576816558838, + "step": 5075 + }, + { + "epoch": 70.50327653997378, + "grad_norm": 0.22929179668426514, + "learning_rate": 0.0006, + "loss": 3.511636257171631, + "step": 5076 + }, + { + "epoch": 70.51725644386195, + "grad_norm": 0.21347999572753906, + "learning_rate": 0.0006, + "loss": 3.482804536819458, + "step": 5077 + }, + { + "epoch": 70.53123634775011, + "grad_norm": 0.21338650584220886, + "learning_rate": 0.0006, + "loss": 3.4532628059387207, + "step": 5078 + }, + { + "epoch": 70.54521625163827, + "grad_norm": 0.24062009155750275, + "learning_rate": 0.0006, + "loss": 3.5084481239318848, + "step": 5079 + }, + { + "epoch": 70.55919615552644, + "grad_norm": 0.2101839929819107, + "learning_rate": 0.0006, + "loss": 3.5022215843200684, + "step": 5080 + }, + { + "epoch": 70.57317605941459, + "grad_norm": 0.21427087485790253, + "learning_rate": 0.0006, + "loss": 3.468010902404785, + "step": 5081 + }, + { + "epoch": 70.58715596330275, + "grad_norm": 0.21073004603385925, + "learning_rate": 0.0006, + "loss": 3.53702974319458, + "step": 5082 + }, + { + "epoch": 70.60113586719092, + "grad_norm": 0.2176336646080017, + "learning_rate": 0.0006, + "loss": 3.4857382774353027, + "step": 5083 + }, + { + "epoch": 70.61511577107908, + "grad_norm": 0.24387815594673157, + "learning_rate": 0.0006, + "loss": 3.5301153659820557, + "step": 5084 + }, + { + "epoch": 70.62909567496723, + "grad_norm": 0.2560335397720337, + "learning_rate": 0.0006, + "loss": 3.4792633056640625, + "step": 5085 + }, + { + "epoch": 70.6430755788554, + "grad_norm": 0.24951279163360596, + "learning_rate": 0.0006, + "loss": 3.5134525299072266, + "step": 5086 + }, + { + "epoch": 70.65705548274356, + "grad_norm": 0.23483215272426605, + "learning_rate": 0.0006, + "loss": 3.5170576572418213, + "step": 5087 + }, + { + "epoch": 70.67103538663171, + "grad_norm": 0.21526923775672913, + "learning_rate": 0.0006, + "loss": 3.4973630905151367, + "step": 5088 + }, + { + "epoch": 70.68501529051987, + "grad_norm": 0.2129240781068802, + "learning_rate": 0.0006, + "loss": 3.5371346473693848, + "step": 5089 + }, + { + "epoch": 70.69899519440804, + "grad_norm": 0.22548805177211761, + "learning_rate": 0.0006, + "loss": 3.509589195251465, + "step": 5090 + }, + { + "epoch": 70.7129750982962, + "grad_norm": 0.21366626024246216, + "learning_rate": 0.0006, + "loss": 3.5004022121429443, + "step": 5091 + }, + { + "epoch": 70.72695500218435, + "grad_norm": 0.2066943347454071, + "learning_rate": 0.0006, + "loss": 3.5086469650268555, + "step": 5092 + }, + { + "epoch": 70.74093490607252, + "grad_norm": 0.20916718244552612, + "learning_rate": 0.0006, + "loss": 3.508835554122925, + "step": 5093 + }, + { + "epoch": 70.75491480996068, + "grad_norm": 0.21769332885742188, + "learning_rate": 0.0006, + "loss": 3.470569372177124, + "step": 5094 + }, + { + "epoch": 70.76889471384884, + "grad_norm": 0.2393418401479721, + "learning_rate": 0.0006, + "loss": 3.5554609298706055, + "step": 5095 + }, + { + "epoch": 70.78287461773701, + "grad_norm": 0.22856567800045013, + "learning_rate": 0.0006, + "loss": 3.5240354537963867, + "step": 5096 + }, + { + "epoch": 70.79685452162516, + "grad_norm": 0.2168598771095276, + "learning_rate": 0.0006, + "loss": 3.5223824977874756, + "step": 5097 + }, + { + "epoch": 70.81083442551332, + "grad_norm": 0.23636406660079956, + "learning_rate": 0.0006, + "loss": 3.515028953552246, + "step": 5098 + }, + { + "epoch": 70.82481432940149, + "grad_norm": 0.25196272134780884, + "learning_rate": 0.0006, + "loss": 3.5251357555389404, + "step": 5099 + }, + { + "epoch": 70.83879423328965, + "grad_norm": 0.2760903239250183, + "learning_rate": 0.0006, + "loss": 3.5171520709991455, + "step": 5100 + }, + { + "epoch": 70.8527741371778, + "grad_norm": 0.24275866150856018, + "learning_rate": 0.0006, + "loss": 3.515378713607788, + "step": 5101 + }, + { + "epoch": 70.86675404106597, + "grad_norm": 0.20806105434894562, + "learning_rate": 0.0006, + "loss": 3.5539910793304443, + "step": 5102 + }, + { + "epoch": 70.88073394495413, + "grad_norm": 0.22015595436096191, + "learning_rate": 0.0006, + "loss": 3.5204410552978516, + "step": 5103 + }, + { + "epoch": 70.89471384884229, + "grad_norm": 0.2634579837322235, + "learning_rate": 0.0006, + "loss": 3.531816005706787, + "step": 5104 + }, + { + "epoch": 70.90869375273044, + "grad_norm": 0.2532503008842468, + "learning_rate": 0.0006, + "loss": 3.494335174560547, + "step": 5105 + }, + { + "epoch": 70.92267365661861, + "grad_norm": 0.21336589753627777, + "learning_rate": 0.0006, + "loss": 3.527202606201172, + "step": 5106 + }, + { + "epoch": 70.93665356050677, + "grad_norm": 0.20789426565170288, + "learning_rate": 0.0006, + "loss": 3.516286849975586, + "step": 5107 + }, + { + "epoch": 70.95063346439493, + "grad_norm": 0.21855080127716064, + "learning_rate": 0.0006, + "loss": 3.510622978210449, + "step": 5108 + }, + { + "epoch": 70.9646133682831, + "grad_norm": 0.21742936968803406, + "learning_rate": 0.0006, + "loss": 3.5159173011779785, + "step": 5109 + }, + { + "epoch": 70.97859327217125, + "grad_norm": 0.21697010099887848, + "learning_rate": 0.0006, + "loss": 3.5253071784973145, + "step": 5110 + }, + { + "epoch": 70.99257317605941, + "grad_norm": 0.1939983069896698, + "learning_rate": 0.0006, + "loss": 3.5092079639434814, + "step": 5111 + }, + { + "epoch": 71.0, + "grad_norm": 0.21768872439861298, + "learning_rate": 0.0006, + "loss": 3.549747943878174, + "step": 5112 + }, + { + "epoch": 71.0, + "eval_loss": 3.981994867324829, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 5112 + }, + { + "epoch": 71.01397990388816, + "grad_norm": 0.20411916077136993, + "learning_rate": 0.0006, + "loss": 3.4846625328063965, + "step": 5113 + }, + { + "epoch": 71.02795980777633, + "grad_norm": 0.23582075536251068, + "learning_rate": 0.0006, + "loss": 3.5063037872314453, + "step": 5114 + }, + { + "epoch": 71.04193971166448, + "grad_norm": 0.25915080308914185, + "learning_rate": 0.0006, + "loss": 3.487607955932617, + "step": 5115 + }, + { + "epoch": 71.05591961555264, + "grad_norm": 0.279734343290329, + "learning_rate": 0.0006, + "loss": 3.4697108268737793, + "step": 5116 + }, + { + "epoch": 71.06989951944081, + "grad_norm": 0.2628752589225769, + "learning_rate": 0.0006, + "loss": 3.493368625640869, + "step": 5117 + }, + { + "epoch": 71.08387942332897, + "grad_norm": 0.22309084236621857, + "learning_rate": 0.0006, + "loss": 3.484891891479492, + "step": 5118 + }, + { + "epoch": 71.09785932721712, + "grad_norm": 0.302577406167984, + "learning_rate": 0.0006, + "loss": 3.485151767730713, + "step": 5119 + }, + { + "epoch": 71.1118392311053, + "grad_norm": 0.37276333570480347, + "learning_rate": 0.0006, + "loss": 3.4952797889709473, + "step": 5120 + }, + { + "epoch": 71.12581913499345, + "grad_norm": 0.3283502757549286, + "learning_rate": 0.0006, + "loss": 3.4817187786102295, + "step": 5121 + }, + { + "epoch": 71.1397990388816, + "grad_norm": 0.2639681398868561, + "learning_rate": 0.0006, + "loss": 3.488034248352051, + "step": 5122 + }, + { + "epoch": 71.15377894276976, + "grad_norm": 0.23883986473083496, + "learning_rate": 0.0006, + "loss": 3.4839282035827637, + "step": 5123 + }, + { + "epoch": 71.16775884665793, + "grad_norm": 0.25839197635650635, + "learning_rate": 0.0006, + "loss": 3.4969372749328613, + "step": 5124 + }, + { + "epoch": 71.18173875054609, + "grad_norm": 0.2511022090911865, + "learning_rate": 0.0006, + "loss": 3.4977002143859863, + "step": 5125 + }, + { + "epoch": 71.19571865443424, + "grad_norm": 0.23030386865139008, + "learning_rate": 0.0006, + "loss": 3.499420404434204, + "step": 5126 + }, + { + "epoch": 71.20969855832242, + "grad_norm": 0.26834407448768616, + "learning_rate": 0.0006, + "loss": 3.492626190185547, + "step": 5127 + }, + { + "epoch": 71.22367846221057, + "grad_norm": 0.25042101740837097, + "learning_rate": 0.0006, + "loss": 3.50586199760437, + "step": 5128 + }, + { + "epoch": 71.23765836609873, + "grad_norm": 0.23350484669208527, + "learning_rate": 0.0006, + "loss": 3.4870376586914062, + "step": 5129 + }, + { + "epoch": 71.2516382699869, + "grad_norm": 0.26074114441871643, + "learning_rate": 0.0006, + "loss": 3.4873902797698975, + "step": 5130 + }, + { + "epoch": 71.26561817387505, + "grad_norm": 0.23405839502811432, + "learning_rate": 0.0006, + "loss": 3.477447032928467, + "step": 5131 + }, + { + "epoch": 71.27959807776321, + "grad_norm": 0.22196513414382935, + "learning_rate": 0.0006, + "loss": 3.513475179672241, + "step": 5132 + }, + { + "epoch": 71.29357798165138, + "grad_norm": 0.21518723666667938, + "learning_rate": 0.0006, + "loss": 3.4947776794433594, + "step": 5133 + }, + { + "epoch": 71.30755788553954, + "grad_norm": 0.2067832201719284, + "learning_rate": 0.0006, + "loss": 3.4992613792419434, + "step": 5134 + }, + { + "epoch": 71.3215377894277, + "grad_norm": 0.2346884161233902, + "learning_rate": 0.0006, + "loss": 3.510505437850952, + "step": 5135 + }, + { + "epoch": 71.33551769331586, + "grad_norm": 0.21138189733028412, + "learning_rate": 0.0006, + "loss": 3.4731202125549316, + "step": 5136 + }, + { + "epoch": 71.34949759720402, + "grad_norm": 0.21185064315795898, + "learning_rate": 0.0006, + "loss": 3.5232839584350586, + "step": 5137 + }, + { + "epoch": 71.36347750109218, + "grad_norm": 0.25712820887565613, + "learning_rate": 0.0006, + "loss": 3.46025013923645, + "step": 5138 + }, + { + "epoch": 71.37745740498035, + "grad_norm": 0.21276356279850006, + "learning_rate": 0.0006, + "loss": 3.489804983139038, + "step": 5139 + }, + { + "epoch": 71.3914373088685, + "grad_norm": 0.2022353708744049, + "learning_rate": 0.0006, + "loss": 3.504286289215088, + "step": 5140 + }, + { + "epoch": 71.40541721275666, + "grad_norm": 0.21934957802295685, + "learning_rate": 0.0006, + "loss": 3.517760753631592, + "step": 5141 + }, + { + "epoch": 71.41939711664482, + "grad_norm": 0.2196030169725418, + "learning_rate": 0.0006, + "loss": 3.5004754066467285, + "step": 5142 + }, + { + "epoch": 71.43337702053299, + "grad_norm": 0.2015426605939865, + "learning_rate": 0.0006, + "loss": 3.465399980545044, + "step": 5143 + }, + { + "epoch": 71.44735692442114, + "grad_norm": 0.20420803129673004, + "learning_rate": 0.0006, + "loss": 3.4855151176452637, + "step": 5144 + }, + { + "epoch": 71.4613368283093, + "grad_norm": 0.20710550248622894, + "learning_rate": 0.0006, + "loss": 3.479557514190674, + "step": 5145 + }, + { + "epoch": 71.47531673219747, + "grad_norm": 0.21790869534015656, + "learning_rate": 0.0006, + "loss": 3.478614330291748, + "step": 5146 + }, + { + "epoch": 71.48929663608563, + "grad_norm": 0.2018311470746994, + "learning_rate": 0.0006, + "loss": 3.488673448562622, + "step": 5147 + }, + { + "epoch": 71.50327653997378, + "grad_norm": 0.21153512597084045, + "learning_rate": 0.0006, + "loss": 3.5044631958007812, + "step": 5148 + }, + { + "epoch": 71.51725644386195, + "grad_norm": 0.21591797471046448, + "learning_rate": 0.0006, + "loss": 3.522662401199341, + "step": 5149 + }, + { + "epoch": 71.53123634775011, + "grad_norm": 0.20586389303207397, + "learning_rate": 0.0006, + "loss": 3.4791407585144043, + "step": 5150 + }, + { + "epoch": 71.54521625163827, + "grad_norm": 0.2201298475265503, + "learning_rate": 0.0006, + "loss": 3.4494271278381348, + "step": 5151 + }, + { + "epoch": 71.55919615552644, + "grad_norm": 0.22793325781822205, + "learning_rate": 0.0006, + "loss": 3.495795726776123, + "step": 5152 + }, + { + "epoch": 71.57317605941459, + "grad_norm": 0.2414522022008896, + "learning_rate": 0.0006, + "loss": 3.5030856132507324, + "step": 5153 + }, + { + "epoch": 71.58715596330275, + "grad_norm": 0.23775361478328705, + "learning_rate": 0.0006, + "loss": 3.519958972930908, + "step": 5154 + }, + { + "epoch": 71.60113586719092, + "grad_norm": 0.21599332988262177, + "learning_rate": 0.0006, + "loss": 3.518765449523926, + "step": 5155 + }, + { + "epoch": 71.61511577107908, + "grad_norm": 0.19520622491836548, + "learning_rate": 0.0006, + "loss": 3.514953136444092, + "step": 5156 + }, + { + "epoch": 71.62909567496723, + "grad_norm": 0.21063624322414398, + "learning_rate": 0.0006, + "loss": 3.507232189178467, + "step": 5157 + }, + { + "epoch": 71.6430755788554, + "grad_norm": 0.20278486609458923, + "learning_rate": 0.0006, + "loss": 3.5083611011505127, + "step": 5158 + }, + { + "epoch": 71.65705548274356, + "grad_norm": 0.20769764482975006, + "learning_rate": 0.0006, + "loss": 3.5421876907348633, + "step": 5159 + }, + { + "epoch": 71.67103538663171, + "grad_norm": 0.21942169964313507, + "learning_rate": 0.0006, + "loss": 3.511857509613037, + "step": 5160 + }, + { + "epoch": 71.68501529051987, + "grad_norm": 0.21532300114631653, + "learning_rate": 0.0006, + "loss": 3.4975109100341797, + "step": 5161 + }, + { + "epoch": 71.69899519440804, + "grad_norm": 0.20382282137870789, + "learning_rate": 0.0006, + "loss": 3.500424861907959, + "step": 5162 + }, + { + "epoch": 71.7129750982962, + "grad_norm": 0.22072380781173706, + "learning_rate": 0.0006, + "loss": 3.50101900100708, + "step": 5163 + }, + { + "epoch": 71.72695500218435, + "grad_norm": 0.21554681658744812, + "learning_rate": 0.0006, + "loss": 3.528384208679199, + "step": 5164 + }, + { + "epoch": 71.74093490607252, + "grad_norm": 0.22927747666835785, + "learning_rate": 0.0006, + "loss": 3.488309621810913, + "step": 5165 + }, + { + "epoch": 71.75491480996068, + "grad_norm": 0.23190589249134064, + "learning_rate": 0.0006, + "loss": 3.547053337097168, + "step": 5166 + }, + { + "epoch": 71.76889471384884, + "grad_norm": 0.262680321931839, + "learning_rate": 0.0006, + "loss": 3.5154809951782227, + "step": 5167 + }, + { + "epoch": 71.78287461773701, + "grad_norm": 0.29555177688598633, + "learning_rate": 0.0006, + "loss": 3.4969329833984375, + "step": 5168 + }, + { + "epoch": 71.79685452162516, + "grad_norm": 0.26300716400146484, + "learning_rate": 0.0006, + "loss": 3.4716663360595703, + "step": 5169 + }, + { + "epoch": 71.81083442551332, + "grad_norm": 0.21645912528038025, + "learning_rate": 0.0006, + "loss": 3.4847588539123535, + "step": 5170 + }, + { + "epoch": 71.82481432940149, + "grad_norm": 0.21476063132286072, + "learning_rate": 0.0006, + "loss": 3.4949374198913574, + "step": 5171 + }, + { + "epoch": 71.83879423328965, + "grad_norm": 0.26659518480300903, + "learning_rate": 0.0006, + "loss": 3.519371271133423, + "step": 5172 + }, + { + "epoch": 71.8527741371778, + "grad_norm": 0.2567320764064789, + "learning_rate": 0.0006, + "loss": 3.522982120513916, + "step": 5173 + }, + { + "epoch": 71.86675404106597, + "grad_norm": 0.21162307262420654, + "learning_rate": 0.0006, + "loss": 3.489562749862671, + "step": 5174 + }, + { + "epoch": 71.88073394495413, + "grad_norm": 0.22359566390514374, + "learning_rate": 0.0006, + "loss": 3.51139760017395, + "step": 5175 + }, + { + "epoch": 71.89471384884229, + "grad_norm": 0.19192424416542053, + "learning_rate": 0.0006, + "loss": 3.568310260772705, + "step": 5176 + }, + { + "epoch": 71.90869375273044, + "grad_norm": 0.21490535140037537, + "learning_rate": 0.0006, + "loss": 3.52728271484375, + "step": 5177 + }, + { + "epoch": 71.92267365661861, + "grad_norm": 0.21532146632671356, + "learning_rate": 0.0006, + "loss": 3.533647060394287, + "step": 5178 + }, + { + "epoch": 71.93665356050677, + "grad_norm": 0.2047201246023178, + "learning_rate": 0.0006, + "loss": 3.528214931488037, + "step": 5179 + }, + { + "epoch": 71.95063346439493, + "grad_norm": 0.20230898261070251, + "learning_rate": 0.0006, + "loss": 3.530636787414551, + "step": 5180 + }, + { + "epoch": 71.9646133682831, + "grad_norm": 0.1971510648727417, + "learning_rate": 0.0006, + "loss": 3.5658822059631348, + "step": 5181 + }, + { + "epoch": 71.97859327217125, + "grad_norm": 0.21853342652320862, + "learning_rate": 0.0006, + "loss": 3.4901480674743652, + "step": 5182 + }, + { + "epoch": 71.99257317605941, + "grad_norm": 0.2481825053691864, + "learning_rate": 0.0006, + "loss": 3.5149893760681152, + "step": 5183 + }, + { + "epoch": 72.0, + "grad_norm": 0.28394815325737, + "learning_rate": 0.0006, + "loss": 3.5142500400543213, + "step": 5184 + }, + { + "epoch": 72.0, + "eval_loss": 3.9889707565307617, + "eval_runtime": 44.317, + "eval_samples_per_second": 55.103, + "eval_steps_per_second": 3.452, + "step": 5184 + }, + { + "epoch": 72.01397990388816, + "grad_norm": 0.26481005549430847, + "learning_rate": 0.0006, + "loss": 3.46201753616333, + "step": 5185 + }, + { + "epoch": 72.02795980777633, + "grad_norm": 0.25808629393577576, + "learning_rate": 0.0006, + "loss": 3.4581098556518555, + "step": 5186 + }, + { + "epoch": 72.04193971166448, + "grad_norm": 0.25713175535202026, + "learning_rate": 0.0006, + "loss": 3.48715877532959, + "step": 5187 + }, + { + "epoch": 72.05591961555264, + "grad_norm": 0.23583672940731049, + "learning_rate": 0.0006, + "loss": 3.498791217803955, + "step": 5188 + }, + { + "epoch": 72.06989951944081, + "grad_norm": 0.23554176092147827, + "learning_rate": 0.0006, + "loss": 3.4428248405456543, + "step": 5189 + }, + { + "epoch": 72.08387942332897, + "grad_norm": 0.26283830404281616, + "learning_rate": 0.0006, + "loss": 3.4555912017822266, + "step": 5190 + }, + { + "epoch": 72.09785932721712, + "grad_norm": 0.23904164135456085, + "learning_rate": 0.0006, + "loss": 3.447741985321045, + "step": 5191 + }, + { + "epoch": 72.1118392311053, + "grad_norm": 0.2249821275472641, + "learning_rate": 0.0006, + "loss": 3.4523983001708984, + "step": 5192 + }, + { + "epoch": 72.12581913499345, + "grad_norm": 0.22013622522354126, + "learning_rate": 0.0006, + "loss": 3.480325698852539, + "step": 5193 + }, + { + "epoch": 72.1397990388816, + "grad_norm": 0.21792154014110565, + "learning_rate": 0.0006, + "loss": 3.460036277770996, + "step": 5194 + }, + { + "epoch": 72.15377894276976, + "grad_norm": 0.2302364856004715, + "learning_rate": 0.0006, + "loss": 3.4833297729492188, + "step": 5195 + }, + { + "epoch": 72.16775884665793, + "grad_norm": 0.21317389607429504, + "learning_rate": 0.0006, + "loss": 3.5042786598205566, + "step": 5196 + }, + { + "epoch": 72.18173875054609, + "grad_norm": 0.19275978207588196, + "learning_rate": 0.0006, + "loss": 3.5171995162963867, + "step": 5197 + }, + { + "epoch": 72.19571865443424, + "grad_norm": 0.21028508245944977, + "learning_rate": 0.0006, + "loss": 3.457441806793213, + "step": 5198 + }, + { + "epoch": 72.20969855832242, + "grad_norm": 0.1986231505870819, + "learning_rate": 0.0006, + "loss": 3.489072322845459, + "step": 5199 + }, + { + "epoch": 72.22367846221057, + "grad_norm": 0.19699154794216156, + "learning_rate": 0.0006, + "loss": 3.468651533126831, + "step": 5200 + }, + { + "epoch": 72.23765836609873, + "grad_norm": 0.20329497754573822, + "learning_rate": 0.0006, + "loss": 3.4969425201416016, + "step": 5201 + }, + { + "epoch": 72.2516382699869, + "grad_norm": 0.20615696907043457, + "learning_rate": 0.0006, + "loss": 3.4797892570495605, + "step": 5202 + }, + { + "epoch": 72.26561817387505, + "grad_norm": 0.20542259514331818, + "learning_rate": 0.0006, + "loss": 3.530893325805664, + "step": 5203 + }, + { + "epoch": 72.27959807776321, + "grad_norm": 0.21758593618869781, + "learning_rate": 0.0006, + "loss": 3.494999647140503, + "step": 5204 + }, + { + "epoch": 72.29357798165138, + "grad_norm": 0.21938979625701904, + "learning_rate": 0.0006, + "loss": 3.4716687202453613, + "step": 5205 + }, + { + "epoch": 72.30755788553954, + "grad_norm": 0.21116693317890167, + "learning_rate": 0.0006, + "loss": 3.510025978088379, + "step": 5206 + }, + { + "epoch": 72.3215377894277, + "grad_norm": 0.22996407747268677, + "learning_rate": 0.0006, + "loss": 3.515085220336914, + "step": 5207 + }, + { + "epoch": 72.33551769331586, + "grad_norm": 0.23071469366550446, + "learning_rate": 0.0006, + "loss": 3.4844086170196533, + "step": 5208 + }, + { + "epoch": 72.34949759720402, + "grad_norm": 0.25695133209228516, + "learning_rate": 0.0006, + "loss": 3.5199429988861084, + "step": 5209 + }, + { + "epoch": 72.36347750109218, + "grad_norm": 0.2724803388118744, + "learning_rate": 0.0006, + "loss": 3.516205072402954, + "step": 5210 + }, + { + "epoch": 72.37745740498035, + "grad_norm": 0.2681419551372528, + "learning_rate": 0.0006, + "loss": 3.499340295791626, + "step": 5211 + }, + { + "epoch": 72.3914373088685, + "grad_norm": 0.2519148886203766, + "learning_rate": 0.0006, + "loss": 3.508042812347412, + "step": 5212 + }, + { + "epoch": 72.40541721275666, + "grad_norm": 0.2280866652727127, + "learning_rate": 0.0006, + "loss": 3.501939058303833, + "step": 5213 + }, + { + "epoch": 72.41939711664482, + "grad_norm": 0.2323485016822815, + "learning_rate": 0.0006, + "loss": 3.4846863746643066, + "step": 5214 + }, + { + "epoch": 72.43337702053299, + "grad_norm": 0.2441403865814209, + "learning_rate": 0.0006, + "loss": 3.4963583946228027, + "step": 5215 + }, + { + "epoch": 72.44735692442114, + "grad_norm": 0.2406138777732849, + "learning_rate": 0.0006, + "loss": 3.4914402961730957, + "step": 5216 + }, + { + "epoch": 72.4613368283093, + "grad_norm": 0.23548054695129395, + "learning_rate": 0.0006, + "loss": 3.5411581993103027, + "step": 5217 + }, + { + "epoch": 72.47531673219747, + "grad_norm": 0.21609817445278168, + "learning_rate": 0.0006, + "loss": 3.5331366062164307, + "step": 5218 + }, + { + "epoch": 72.48929663608563, + "grad_norm": 0.20667463541030884, + "learning_rate": 0.0006, + "loss": 3.4875259399414062, + "step": 5219 + }, + { + "epoch": 72.50327653997378, + "grad_norm": 0.21997129917144775, + "learning_rate": 0.0006, + "loss": 3.45741868019104, + "step": 5220 + }, + { + "epoch": 72.51725644386195, + "grad_norm": 0.23778799176216125, + "learning_rate": 0.0006, + "loss": 3.5240767002105713, + "step": 5221 + }, + { + "epoch": 72.53123634775011, + "grad_norm": 0.2373982071876526, + "learning_rate": 0.0006, + "loss": 3.4988675117492676, + "step": 5222 + }, + { + "epoch": 72.54521625163827, + "grad_norm": 0.24703051149845123, + "learning_rate": 0.0006, + "loss": 3.512615203857422, + "step": 5223 + }, + { + "epoch": 72.55919615552644, + "grad_norm": 0.2259516716003418, + "learning_rate": 0.0006, + "loss": 3.5054564476013184, + "step": 5224 + }, + { + "epoch": 72.57317605941459, + "grad_norm": 0.20849403738975525, + "learning_rate": 0.0006, + "loss": 3.513225555419922, + "step": 5225 + }, + { + "epoch": 72.58715596330275, + "grad_norm": 0.20204737782478333, + "learning_rate": 0.0006, + "loss": 3.499671220779419, + "step": 5226 + }, + { + "epoch": 72.60113586719092, + "grad_norm": 0.2146504670381546, + "learning_rate": 0.0006, + "loss": 3.479963779449463, + "step": 5227 + }, + { + "epoch": 72.61511577107908, + "grad_norm": 0.2070881426334381, + "learning_rate": 0.0006, + "loss": 3.4819841384887695, + "step": 5228 + }, + { + "epoch": 72.62909567496723, + "grad_norm": 0.21011002361774445, + "learning_rate": 0.0006, + "loss": 3.480698347091675, + "step": 5229 + }, + { + "epoch": 72.6430755788554, + "grad_norm": 0.22228984534740448, + "learning_rate": 0.0006, + "loss": 3.504167318344116, + "step": 5230 + }, + { + "epoch": 72.65705548274356, + "grad_norm": 0.21016335487365723, + "learning_rate": 0.0006, + "loss": 3.4877564907073975, + "step": 5231 + }, + { + "epoch": 72.67103538663171, + "grad_norm": 0.20774874091148376, + "learning_rate": 0.0006, + "loss": 3.5095250606536865, + "step": 5232 + }, + { + "epoch": 72.68501529051987, + "grad_norm": 0.21587499976158142, + "learning_rate": 0.0006, + "loss": 3.481410503387451, + "step": 5233 + }, + { + "epoch": 72.69899519440804, + "grad_norm": 0.21865521371364594, + "learning_rate": 0.0006, + "loss": 3.4801032543182373, + "step": 5234 + }, + { + "epoch": 72.7129750982962, + "grad_norm": 0.20692583918571472, + "learning_rate": 0.0006, + "loss": 3.5247631072998047, + "step": 5235 + }, + { + "epoch": 72.72695500218435, + "grad_norm": 0.21028351783752441, + "learning_rate": 0.0006, + "loss": 3.4889426231384277, + "step": 5236 + }, + { + "epoch": 72.74093490607252, + "grad_norm": 0.20704887807369232, + "learning_rate": 0.0006, + "loss": 3.514674663543701, + "step": 5237 + }, + { + "epoch": 72.75491480996068, + "grad_norm": 0.22431230545043945, + "learning_rate": 0.0006, + "loss": 3.520341396331787, + "step": 5238 + }, + { + "epoch": 72.76889471384884, + "grad_norm": 0.26835498213768005, + "learning_rate": 0.0006, + "loss": 3.515369176864624, + "step": 5239 + }, + { + "epoch": 72.78287461773701, + "grad_norm": 0.2570379376411438, + "learning_rate": 0.0006, + "loss": 3.5058908462524414, + "step": 5240 + }, + { + "epoch": 72.79685452162516, + "grad_norm": 0.22710268199443817, + "learning_rate": 0.0006, + "loss": 3.5321788787841797, + "step": 5241 + }, + { + "epoch": 72.81083442551332, + "grad_norm": 0.21135354042053223, + "learning_rate": 0.0006, + "loss": 3.5038869380950928, + "step": 5242 + }, + { + "epoch": 72.82481432940149, + "grad_norm": 0.20677657425403595, + "learning_rate": 0.0006, + "loss": 3.509671211242676, + "step": 5243 + }, + { + "epoch": 72.83879423328965, + "grad_norm": 0.21803733706474304, + "learning_rate": 0.0006, + "loss": 3.540374755859375, + "step": 5244 + }, + { + "epoch": 72.8527741371778, + "grad_norm": 0.24457798898220062, + "learning_rate": 0.0006, + "loss": 3.5087430477142334, + "step": 5245 + }, + { + "epoch": 72.86675404106597, + "grad_norm": 0.2483559548854828, + "learning_rate": 0.0006, + "loss": 3.5065975189208984, + "step": 5246 + }, + { + "epoch": 72.88073394495413, + "grad_norm": 0.22601056098937988, + "learning_rate": 0.0006, + "loss": 3.533181667327881, + "step": 5247 + }, + { + "epoch": 72.89471384884229, + "grad_norm": 0.1951705366373062, + "learning_rate": 0.0006, + "loss": 3.5082955360412598, + "step": 5248 + }, + { + "epoch": 72.90869375273044, + "grad_norm": 0.2373722940683365, + "learning_rate": 0.0006, + "loss": 3.5175671577453613, + "step": 5249 + }, + { + "epoch": 72.92267365661861, + "grad_norm": 0.2238793820142746, + "learning_rate": 0.0006, + "loss": 3.4822793006896973, + "step": 5250 + }, + { + "epoch": 72.93665356050677, + "grad_norm": 0.19394482672214508, + "learning_rate": 0.0006, + "loss": 3.5329837799072266, + "step": 5251 + }, + { + "epoch": 72.95063346439493, + "grad_norm": 0.19733992218971252, + "learning_rate": 0.0006, + "loss": 3.516442060470581, + "step": 5252 + }, + { + "epoch": 72.9646133682831, + "grad_norm": 0.1991652250289917, + "learning_rate": 0.0006, + "loss": 3.4855995178222656, + "step": 5253 + }, + { + "epoch": 72.97859327217125, + "grad_norm": 0.20192593336105347, + "learning_rate": 0.0006, + "loss": 3.500981330871582, + "step": 5254 + }, + { + "epoch": 72.99257317605941, + "grad_norm": 0.1900099813938141, + "learning_rate": 0.0006, + "loss": 3.516650676727295, + "step": 5255 + }, + { + "epoch": 73.0, + "grad_norm": 0.2279117852449417, + "learning_rate": 0.0006, + "loss": 3.5318033695220947, + "step": 5256 + }, + { + "epoch": 73.0, + "eval_loss": 3.990769147872925, + "eval_runtime": 44.8752, + "eval_samples_per_second": 54.418, + "eval_steps_per_second": 3.409, + "step": 5256 + }, + { + "epoch": 73.01397990388816, + "grad_norm": 0.21681782603263855, + "learning_rate": 0.0006, + "loss": 3.481177806854248, + "step": 5257 + }, + { + "epoch": 73.02795980777633, + "grad_norm": 0.23727980256080627, + "learning_rate": 0.0006, + "loss": 3.4718916416168213, + "step": 5258 + }, + { + "epoch": 73.04193971166448, + "grad_norm": 0.3004179000854492, + "learning_rate": 0.0006, + "loss": 3.4856271743774414, + "step": 5259 + }, + { + "epoch": 73.05591961555264, + "grad_norm": 0.3563845157623291, + "learning_rate": 0.0006, + "loss": 3.5074610710144043, + "step": 5260 + }, + { + "epoch": 73.06989951944081, + "grad_norm": 0.28933605551719666, + "learning_rate": 0.0006, + "loss": 3.4824771881103516, + "step": 5261 + }, + { + "epoch": 73.08387942332897, + "grad_norm": 0.20685118436813354, + "learning_rate": 0.0006, + "loss": 3.4652299880981445, + "step": 5262 + }, + { + "epoch": 73.09785932721712, + "grad_norm": 0.27588045597076416, + "learning_rate": 0.0006, + "loss": 3.5053865909576416, + "step": 5263 + }, + { + "epoch": 73.1118392311053, + "grad_norm": 0.28780898451805115, + "learning_rate": 0.0006, + "loss": 3.4900169372558594, + "step": 5264 + }, + { + "epoch": 73.12581913499345, + "grad_norm": 0.25440889596939087, + "learning_rate": 0.0006, + "loss": 3.473628520965576, + "step": 5265 + }, + { + "epoch": 73.1397990388816, + "grad_norm": 0.23374824225902557, + "learning_rate": 0.0006, + "loss": 3.473111629486084, + "step": 5266 + }, + { + "epoch": 73.15377894276976, + "grad_norm": 0.22421608865261078, + "learning_rate": 0.0006, + "loss": 3.4926185607910156, + "step": 5267 + }, + { + "epoch": 73.16775884665793, + "grad_norm": 0.24340282380580902, + "learning_rate": 0.0006, + "loss": 3.4895753860473633, + "step": 5268 + }, + { + "epoch": 73.18173875054609, + "grad_norm": 0.2423272281885147, + "learning_rate": 0.0006, + "loss": 3.498384952545166, + "step": 5269 + }, + { + "epoch": 73.19571865443424, + "grad_norm": 0.20698750019073486, + "learning_rate": 0.0006, + "loss": 3.4790406227111816, + "step": 5270 + }, + { + "epoch": 73.20969855832242, + "grad_norm": 0.21184271574020386, + "learning_rate": 0.0006, + "loss": 3.4132208824157715, + "step": 5271 + }, + { + "epoch": 73.22367846221057, + "grad_norm": 0.20834460854530334, + "learning_rate": 0.0006, + "loss": 3.4493658542633057, + "step": 5272 + }, + { + "epoch": 73.23765836609873, + "grad_norm": 0.20421066880226135, + "learning_rate": 0.0006, + "loss": 3.486607551574707, + "step": 5273 + }, + { + "epoch": 73.2516382699869, + "grad_norm": 0.2166317254304886, + "learning_rate": 0.0006, + "loss": 3.4880776405334473, + "step": 5274 + }, + { + "epoch": 73.26561817387505, + "grad_norm": 0.2271069586277008, + "learning_rate": 0.0006, + "loss": 3.5396530628204346, + "step": 5275 + }, + { + "epoch": 73.27959807776321, + "grad_norm": 0.2804903984069824, + "learning_rate": 0.0006, + "loss": 3.5006351470947266, + "step": 5276 + }, + { + "epoch": 73.29357798165138, + "grad_norm": 0.2573811113834381, + "learning_rate": 0.0006, + "loss": 3.4821765422821045, + "step": 5277 + }, + { + "epoch": 73.30755788553954, + "grad_norm": 0.23412485420703888, + "learning_rate": 0.0006, + "loss": 3.4935741424560547, + "step": 5278 + }, + { + "epoch": 73.3215377894277, + "grad_norm": 0.28513026237487793, + "learning_rate": 0.0006, + "loss": 3.4645705223083496, + "step": 5279 + }, + { + "epoch": 73.33551769331586, + "grad_norm": 0.29753562808036804, + "learning_rate": 0.0006, + "loss": 3.5176053047180176, + "step": 5280 + }, + { + "epoch": 73.34949759720402, + "grad_norm": 0.27373817563056946, + "learning_rate": 0.0006, + "loss": 3.4775936603546143, + "step": 5281 + }, + { + "epoch": 73.36347750109218, + "grad_norm": 0.2177509367465973, + "learning_rate": 0.0006, + "loss": 3.480635643005371, + "step": 5282 + }, + { + "epoch": 73.37745740498035, + "grad_norm": 0.25387322902679443, + "learning_rate": 0.0006, + "loss": 3.469754695892334, + "step": 5283 + }, + { + "epoch": 73.3914373088685, + "grad_norm": 0.2564674913883209, + "learning_rate": 0.0006, + "loss": 3.5017647743225098, + "step": 5284 + }, + { + "epoch": 73.40541721275666, + "grad_norm": 0.22612597048282623, + "learning_rate": 0.0006, + "loss": 3.4689712524414062, + "step": 5285 + }, + { + "epoch": 73.41939711664482, + "grad_norm": 0.2263033241033554, + "learning_rate": 0.0006, + "loss": 3.4711971282958984, + "step": 5286 + }, + { + "epoch": 73.43337702053299, + "grad_norm": 0.2290525883436203, + "learning_rate": 0.0006, + "loss": 3.4785008430480957, + "step": 5287 + }, + { + "epoch": 73.44735692442114, + "grad_norm": 0.2285647839307785, + "learning_rate": 0.0006, + "loss": 3.47416353225708, + "step": 5288 + }, + { + "epoch": 73.4613368283093, + "grad_norm": 0.2135833501815796, + "learning_rate": 0.0006, + "loss": 3.497528076171875, + "step": 5289 + }, + { + "epoch": 73.47531673219747, + "grad_norm": 0.24894089996814728, + "learning_rate": 0.0006, + "loss": 3.4764437675476074, + "step": 5290 + }, + { + "epoch": 73.48929663608563, + "grad_norm": 0.27769771218299866, + "learning_rate": 0.0006, + "loss": 3.530491828918457, + "step": 5291 + }, + { + "epoch": 73.50327653997378, + "grad_norm": 0.2881193161010742, + "learning_rate": 0.0006, + "loss": 3.480968475341797, + "step": 5292 + }, + { + "epoch": 73.51725644386195, + "grad_norm": 0.26066645979881287, + "learning_rate": 0.0006, + "loss": 3.488679885864258, + "step": 5293 + }, + { + "epoch": 73.53123634775011, + "grad_norm": 0.2325759381055832, + "learning_rate": 0.0006, + "loss": 3.50810170173645, + "step": 5294 + }, + { + "epoch": 73.54521625163827, + "grad_norm": 0.2113630324602127, + "learning_rate": 0.0006, + "loss": 3.516207218170166, + "step": 5295 + }, + { + "epoch": 73.55919615552644, + "grad_norm": 0.22719664871692657, + "learning_rate": 0.0006, + "loss": 3.5046021938323975, + "step": 5296 + }, + { + "epoch": 73.57317605941459, + "grad_norm": 0.20094481110572815, + "learning_rate": 0.0006, + "loss": 3.5129313468933105, + "step": 5297 + }, + { + "epoch": 73.58715596330275, + "grad_norm": 0.18975555896759033, + "learning_rate": 0.0006, + "loss": 3.4832587242126465, + "step": 5298 + }, + { + "epoch": 73.60113586719092, + "grad_norm": 0.2168205976486206, + "learning_rate": 0.0006, + "loss": 3.485678195953369, + "step": 5299 + }, + { + "epoch": 73.61511577107908, + "grad_norm": 0.20437777042388916, + "learning_rate": 0.0006, + "loss": 3.5342376232147217, + "step": 5300 + }, + { + "epoch": 73.62909567496723, + "grad_norm": 0.1951008290052414, + "learning_rate": 0.0006, + "loss": 3.496528148651123, + "step": 5301 + }, + { + "epoch": 73.6430755788554, + "grad_norm": 0.194418802857399, + "learning_rate": 0.0006, + "loss": 3.496985912322998, + "step": 5302 + }, + { + "epoch": 73.65705548274356, + "grad_norm": 0.21475602686405182, + "learning_rate": 0.0006, + "loss": 3.4993209838867188, + "step": 5303 + }, + { + "epoch": 73.67103538663171, + "grad_norm": 0.21515145897865295, + "learning_rate": 0.0006, + "loss": 3.5003676414489746, + "step": 5304 + }, + { + "epoch": 73.68501529051987, + "grad_norm": 0.19101263582706451, + "learning_rate": 0.0006, + "loss": 3.4970169067382812, + "step": 5305 + }, + { + "epoch": 73.69899519440804, + "grad_norm": 0.21630576252937317, + "learning_rate": 0.0006, + "loss": 3.4644386768341064, + "step": 5306 + }, + { + "epoch": 73.7129750982962, + "grad_norm": 0.2233273833990097, + "learning_rate": 0.0006, + "loss": 3.5082266330718994, + "step": 5307 + }, + { + "epoch": 73.72695500218435, + "grad_norm": 0.2207949310541153, + "learning_rate": 0.0006, + "loss": 3.5124080181121826, + "step": 5308 + }, + { + "epoch": 73.74093490607252, + "grad_norm": 0.2216075360774994, + "learning_rate": 0.0006, + "loss": 3.5385897159576416, + "step": 5309 + }, + { + "epoch": 73.75491480996068, + "grad_norm": 0.242542564868927, + "learning_rate": 0.0006, + "loss": 3.4922280311584473, + "step": 5310 + }, + { + "epoch": 73.76889471384884, + "grad_norm": 0.25550341606140137, + "learning_rate": 0.0006, + "loss": 3.5120809078216553, + "step": 5311 + }, + { + "epoch": 73.78287461773701, + "grad_norm": 0.2312568724155426, + "learning_rate": 0.0006, + "loss": 3.5122501850128174, + "step": 5312 + }, + { + "epoch": 73.79685452162516, + "grad_norm": 0.22861020267009735, + "learning_rate": 0.0006, + "loss": 3.5362534523010254, + "step": 5313 + }, + { + "epoch": 73.81083442551332, + "grad_norm": 0.2227325290441513, + "learning_rate": 0.0006, + "loss": 3.509556770324707, + "step": 5314 + }, + { + "epoch": 73.82481432940149, + "grad_norm": 0.20523901283740997, + "learning_rate": 0.0006, + "loss": 3.478180170059204, + "step": 5315 + }, + { + "epoch": 73.83879423328965, + "grad_norm": 0.21429577469825745, + "learning_rate": 0.0006, + "loss": 3.5295538902282715, + "step": 5316 + }, + { + "epoch": 73.8527741371778, + "grad_norm": 0.2419414520263672, + "learning_rate": 0.0006, + "loss": 3.518057346343994, + "step": 5317 + }, + { + "epoch": 73.86675404106597, + "grad_norm": 0.27580955624580383, + "learning_rate": 0.0006, + "loss": 3.5108370780944824, + "step": 5318 + }, + { + "epoch": 73.88073394495413, + "grad_norm": 0.24745431542396545, + "learning_rate": 0.0006, + "loss": 3.5286366939544678, + "step": 5319 + }, + { + "epoch": 73.89471384884229, + "grad_norm": 0.2149314135313034, + "learning_rate": 0.0006, + "loss": 3.485231399536133, + "step": 5320 + }, + { + "epoch": 73.90869375273044, + "grad_norm": 0.2078951895236969, + "learning_rate": 0.0006, + "loss": 3.5262768268585205, + "step": 5321 + }, + { + "epoch": 73.92267365661861, + "grad_norm": 0.2416444718837738, + "learning_rate": 0.0006, + "loss": 3.5233588218688965, + "step": 5322 + }, + { + "epoch": 73.93665356050677, + "grad_norm": 0.22926902770996094, + "learning_rate": 0.0006, + "loss": 3.5189247131347656, + "step": 5323 + }, + { + "epoch": 73.95063346439493, + "grad_norm": 0.21510642766952515, + "learning_rate": 0.0006, + "loss": 3.473496198654175, + "step": 5324 + }, + { + "epoch": 73.9646133682831, + "grad_norm": 0.2103978842496872, + "learning_rate": 0.0006, + "loss": 3.482978343963623, + "step": 5325 + }, + { + "epoch": 73.97859327217125, + "grad_norm": 0.1958087682723999, + "learning_rate": 0.0006, + "loss": 3.5095043182373047, + "step": 5326 + }, + { + "epoch": 73.99257317605941, + "grad_norm": 0.1914149820804596, + "learning_rate": 0.0006, + "loss": 3.5150370597839355, + "step": 5327 + }, + { + "epoch": 74.0, + "grad_norm": 0.23419693112373352, + "learning_rate": 0.0006, + "loss": 3.5106215476989746, + "step": 5328 + }, + { + "epoch": 74.0, + "eval_loss": 3.9748404026031494, + "eval_runtime": 44.8747, + "eval_samples_per_second": 54.418, + "eval_steps_per_second": 3.409, + "step": 5328 + }, + { + "epoch": 74.01397990388816, + "grad_norm": 0.2479415088891983, + "learning_rate": 0.0006, + "loss": 3.4701595306396484, + "step": 5329 + }, + { + "epoch": 74.02795980777633, + "grad_norm": 0.24987533688545227, + "learning_rate": 0.0006, + "loss": 3.4586291313171387, + "step": 5330 + }, + { + "epoch": 74.04193971166448, + "grad_norm": 0.23266810178756714, + "learning_rate": 0.0006, + "loss": 3.4172134399414062, + "step": 5331 + }, + { + "epoch": 74.05591961555264, + "grad_norm": 0.2236100137233734, + "learning_rate": 0.0006, + "loss": 3.4862887859344482, + "step": 5332 + }, + { + "epoch": 74.06989951944081, + "grad_norm": 0.20534487068653107, + "learning_rate": 0.0006, + "loss": 3.45927357673645, + "step": 5333 + }, + { + "epoch": 74.08387942332897, + "grad_norm": 0.2238253802061081, + "learning_rate": 0.0006, + "loss": 3.467851400375366, + "step": 5334 + }, + { + "epoch": 74.09785932721712, + "grad_norm": 0.26896408200263977, + "learning_rate": 0.0006, + "loss": 3.4854512214660645, + "step": 5335 + }, + { + "epoch": 74.1118392311053, + "grad_norm": 0.2958875000476837, + "learning_rate": 0.0006, + "loss": 3.4699835777282715, + "step": 5336 + }, + { + "epoch": 74.12581913499345, + "grad_norm": 0.2670096755027771, + "learning_rate": 0.0006, + "loss": 3.469750165939331, + "step": 5337 + }, + { + "epoch": 74.1397990388816, + "grad_norm": 0.24695175886154175, + "learning_rate": 0.0006, + "loss": 3.4648962020874023, + "step": 5338 + }, + { + "epoch": 74.15377894276976, + "grad_norm": 0.22581245005130768, + "learning_rate": 0.0006, + "loss": 3.4659342765808105, + "step": 5339 + }, + { + "epoch": 74.16775884665793, + "grad_norm": 0.214495450258255, + "learning_rate": 0.0006, + "loss": 3.484555721282959, + "step": 5340 + }, + { + "epoch": 74.18173875054609, + "grad_norm": 0.2219872921705246, + "learning_rate": 0.0006, + "loss": 3.4930648803710938, + "step": 5341 + }, + { + "epoch": 74.19571865443424, + "grad_norm": 0.23231728374958038, + "learning_rate": 0.0006, + "loss": 3.4828286170959473, + "step": 5342 + }, + { + "epoch": 74.20969855832242, + "grad_norm": 0.2273619920015335, + "learning_rate": 0.0006, + "loss": 3.4727272987365723, + "step": 5343 + }, + { + "epoch": 74.22367846221057, + "grad_norm": 0.22086025774478912, + "learning_rate": 0.0006, + "loss": 3.5108399391174316, + "step": 5344 + }, + { + "epoch": 74.23765836609873, + "grad_norm": 0.2132318615913391, + "learning_rate": 0.0006, + "loss": 3.4821221828460693, + "step": 5345 + }, + { + "epoch": 74.2516382699869, + "grad_norm": 0.2375437170267105, + "learning_rate": 0.0006, + "loss": 3.5120530128479004, + "step": 5346 + }, + { + "epoch": 74.26561817387505, + "grad_norm": 0.24744948744773865, + "learning_rate": 0.0006, + "loss": 3.4861230850219727, + "step": 5347 + }, + { + "epoch": 74.27959807776321, + "grad_norm": 0.2221650779247284, + "learning_rate": 0.0006, + "loss": 3.494476556777954, + "step": 5348 + }, + { + "epoch": 74.29357798165138, + "grad_norm": 0.1984807401895523, + "learning_rate": 0.0006, + "loss": 3.492462635040283, + "step": 5349 + }, + { + "epoch": 74.30755788553954, + "grad_norm": 0.2298664003610611, + "learning_rate": 0.0006, + "loss": 3.478318214416504, + "step": 5350 + }, + { + "epoch": 74.3215377894277, + "grad_norm": 0.25947070121765137, + "learning_rate": 0.0006, + "loss": 3.487811326980591, + "step": 5351 + }, + { + "epoch": 74.33551769331586, + "grad_norm": 0.23611490428447723, + "learning_rate": 0.0006, + "loss": 3.500941276550293, + "step": 5352 + }, + { + "epoch": 74.34949759720402, + "grad_norm": 0.2209966480731964, + "learning_rate": 0.0006, + "loss": 3.4910011291503906, + "step": 5353 + }, + { + "epoch": 74.36347750109218, + "grad_norm": 0.2637932300567627, + "learning_rate": 0.0006, + "loss": 3.5082242488861084, + "step": 5354 + }, + { + "epoch": 74.37745740498035, + "grad_norm": 0.27074548602104187, + "learning_rate": 0.0006, + "loss": 3.4829864501953125, + "step": 5355 + }, + { + "epoch": 74.3914373088685, + "grad_norm": 0.24120314419269562, + "learning_rate": 0.0006, + "loss": 3.5099215507507324, + "step": 5356 + }, + { + "epoch": 74.40541721275666, + "grad_norm": 0.22281570732593536, + "learning_rate": 0.0006, + "loss": 3.4863901138305664, + "step": 5357 + }, + { + "epoch": 74.41939711664482, + "grad_norm": 0.24500703811645508, + "learning_rate": 0.0006, + "loss": 3.492774248123169, + "step": 5358 + }, + { + "epoch": 74.43337702053299, + "grad_norm": 0.2938194274902344, + "learning_rate": 0.0006, + "loss": 3.5095953941345215, + "step": 5359 + }, + { + "epoch": 74.44735692442114, + "grad_norm": 0.23553980886936188, + "learning_rate": 0.0006, + "loss": 3.4738357067108154, + "step": 5360 + }, + { + "epoch": 74.4613368283093, + "grad_norm": 0.23400643467903137, + "learning_rate": 0.0006, + "loss": 3.503324508666992, + "step": 5361 + }, + { + "epoch": 74.47531673219747, + "grad_norm": 0.26702186465263367, + "learning_rate": 0.0006, + "loss": 3.5077764987945557, + "step": 5362 + }, + { + "epoch": 74.48929663608563, + "grad_norm": 0.26146429777145386, + "learning_rate": 0.0006, + "loss": 3.4926650524139404, + "step": 5363 + }, + { + "epoch": 74.50327653997378, + "grad_norm": 0.24903273582458496, + "learning_rate": 0.0006, + "loss": 3.4951210021972656, + "step": 5364 + }, + { + "epoch": 74.51725644386195, + "grad_norm": 0.2189243733882904, + "learning_rate": 0.0006, + "loss": 3.50642728805542, + "step": 5365 + }, + { + "epoch": 74.53123634775011, + "grad_norm": 0.2049291431903839, + "learning_rate": 0.0006, + "loss": 3.5034496784210205, + "step": 5366 + }, + { + "epoch": 74.54521625163827, + "grad_norm": 0.20688633620738983, + "learning_rate": 0.0006, + "loss": 3.4878382682800293, + "step": 5367 + }, + { + "epoch": 74.55919615552644, + "grad_norm": 0.201416477560997, + "learning_rate": 0.0006, + "loss": 3.503418445587158, + "step": 5368 + }, + { + "epoch": 74.57317605941459, + "grad_norm": 0.2094922661781311, + "learning_rate": 0.0006, + "loss": 3.4678902626037598, + "step": 5369 + }, + { + "epoch": 74.58715596330275, + "grad_norm": 0.23010285198688507, + "learning_rate": 0.0006, + "loss": 3.4749817848205566, + "step": 5370 + }, + { + "epoch": 74.60113586719092, + "grad_norm": 0.22642597556114197, + "learning_rate": 0.0006, + "loss": 3.4843454360961914, + "step": 5371 + }, + { + "epoch": 74.61511577107908, + "grad_norm": 0.2123269885778427, + "learning_rate": 0.0006, + "loss": 3.4823896884918213, + "step": 5372 + }, + { + "epoch": 74.62909567496723, + "grad_norm": 0.21990132331848145, + "learning_rate": 0.0006, + "loss": 3.4970970153808594, + "step": 5373 + }, + { + "epoch": 74.6430755788554, + "grad_norm": 0.23335176706314087, + "learning_rate": 0.0006, + "loss": 3.481468677520752, + "step": 5374 + }, + { + "epoch": 74.65705548274356, + "grad_norm": 0.22706177830696106, + "learning_rate": 0.0006, + "loss": 3.504356861114502, + "step": 5375 + }, + { + "epoch": 74.67103538663171, + "grad_norm": 0.22790828347206116, + "learning_rate": 0.0006, + "loss": 3.472900867462158, + "step": 5376 + }, + { + "epoch": 74.68501529051987, + "grad_norm": 0.26810064911842346, + "learning_rate": 0.0006, + "loss": 3.4734930992126465, + "step": 5377 + }, + { + "epoch": 74.69899519440804, + "grad_norm": 0.28308895230293274, + "learning_rate": 0.0006, + "loss": 3.5265793800354004, + "step": 5378 + }, + { + "epoch": 74.7129750982962, + "grad_norm": 0.23838670551776886, + "learning_rate": 0.0006, + "loss": 3.4594779014587402, + "step": 5379 + }, + { + "epoch": 74.72695500218435, + "grad_norm": 0.22041939198970795, + "learning_rate": 0.0006, + "loss": 3.5098114013671875, + "step": 5380 + }, + { + "epoch": 74.74093490607252, + "grad_norm": 0.24805180728435516, + "learning_rate": 0.0006, + "loss": 3.5069029331207275, + "step": 5381 + }, + { + "epoch": 74.75491480996068, + "grad_norm": 0.3026084005832672, + "learning_rate": 0.0006, + "loss": 3.4828643798828125, + "step": 5382 + }, + { + "epoch": 74.76889471384884, + "grad_norm": 0.2749265432357788, + "learning_rate": 0.0006, + "loss": 3.536533832550049, + "step": 5383 + }, + { + "epoch": 74.78287461773701, + "grad_norm": 0.23131245374679565, + "learning_rate": 0.0006, + "loss": 3.4843153953552246, + "step": 5384 + }, + { + "epoch": 74.79685452162516, + "grad_norm": 0.28015977144241333, + "learning_rate": 0.0006, + "loss": 3.5087320804595947, + "step": 5385 + }, + { + "epoch": 74.81083442551332, + "grad_norm": 0.28901320695877075, + "learning_rate": 0.0006, + "loss": 3.509774684906006, + "step": 5386 + }, + { + "epoch": 74.82481432940149, + "grad_norm": 0.2902369499206543, + "learning_rate": 0.0006, + "loss": 3.5354912281036377, + "step": 5387 + }, + { + "epoch": 74.83879423328965, + "grad_norm": 0.28103142976760864, + "learning_rate": 0.0006, + "loss": 3.5079479217529297, + "step": 5388 + }, + { + "epoch": 74.8527741371778, + "grad_norm": 0.21874217689037323, + "learning_rate": 0.0006, + "loss": 3.527747631072998, + "step": 5389 + }, + { + "epoch": 74.86675404106597, + "grad_norm": 0.2200363576412201, + "learning_rate": 0.0006, + "loss": 3.4977521896362305, + "step": 5390 + }, + { + "epoch": 74.88073394495413, + "grad_norm": 0.24229851365089417, + "learning_rate": 0.0006, + "loss": 3.535094738006592, + "step": 5391 + }, + { + "epoch": 74.89471384884229, + "grad_norm": 0.25623074173927307, + "learning_rate": 0.0006, + "loss": 3.5501794815063477, + "step": 5392 + }, + { + "epoch": 74.90869375273044, + "grad_norm": 0.25281623005867004, + "learning_rate": 0.0006, + "loss": 3.4836385250091553, + "step": 5393 + }, + { + "epoch": 74.92267365661861, + "grad_norm": 0.2236766219139099, + "learning_rate": 0.0006, + "loss": 3.4966232776641846, + "step": 5394 + }, + { + "epoch": 74.93665356050677, + "grad_norm": 0.20852778851985931, + "learning_rate": 0.0006, + "loss": 3.516902446746826, + "step": 5395 + }, + { + "epoch": 74.95063346439493, + "grad_norm": 0.22248536348342896, + "learning_rate": 0.0006, + "loss": 3.5233588218688965, + "step": 5396 + }, + { + "epoch": 74.9646133682831, + "grad_norm": 0.23792508244514465, + "learning_rate": 0.0006, + "loss": 3.4896931648254395, + "step": 5397 + }, + { + "epoch": 74.97859327217125, + "grad_norm": 0.20838406682014465, + "learning_rate": 0.0006, + "loss": 3.4921011924743652, + "step": 5398 + }, + { + "epoch": 74.99257317605941, + "grad_norm": 0.22375819087028503, + "learning_rate": 0.0006, + "loss": 3.5101675987243652, + "step": 5399 + }, + { + "epoch": 75.0, + "grad_norm": 0.3014359772205353, + "learning_rate": 0.0006, + "loss": 3.5245840549468994, + "step": 5400 + }, + { + "epoch": 75.0, + "eval_loss": 3.9896810054779053, + "eval_runtime": 45.1449, + "eval_samples_per_second": 54.092, + "eval_steps_per_second": 3.389, + "step": 5400 + }, + { + "epoch": 75.01397990388816, + "grad_norm": 0.2802879214286804, + "learning_rate": 0.0006, + "loss": 3.4459807872772217, + "step": 5401 + }, + { + "epoch": 75.02795980777633, + "grad_norm": 0.2268809676170349, + "learning_rate": 0.0006, + "loss": 3.492509365081787, + "step": 5402 + }, + { + "epoch": 75.04193971166448, + "grad_norm": 0.32269951701164246, + "learning_rate": 0.0006, + "loss": 3.4565114974975586, + "step": 5403 + }, + { + "epoch": 75.05591961555264, + "grad_norm": 0.37944868206977844, + "learning_rate": 0.0006, + "loss": 3.4896206855773926, + "step": 5404 + }, + { + "epoch": 75.06989951944081, + "grad_norm": 0.2834550440311432, + "learning_rate": 0.0006, + "loss": 3.4488000869750977, + "step": 5405 + }, + { + "epoch": 75.08387942332897, + "grad_norm": 0.24261713027954102, + "learning_rate": 0.0006, + "loss": 3.4881110191345215, + "step": 5406 + }, + { + "epoch": 75.09785932721712, + "grad_norm": 0.25649914145469666, + "learning_rate": 0.0006, + "loss": 3.4687750339508057, + "step": 5407 + }, + { + "epoch": 75.1118392311053, + "grad_norm": 0.28500616550445557, + "learning_rate": 0.0006, + "loss": 3.5017337799072266, + "step": 5408 + }, + { + "epoch": 75.12581913499345, + "grad_norm": 0.288143128156662, + "learning_rate": 0.0006, + "loss": 3.46737003326416, + "step": 5409 + }, + { + "epoch": 75.1397990388816, + "grad_norm": 0.23640452325344086, + "learning_rate": 0.0006, + "loss": 3.485724925994873, + "step": 5410 + }, + { + "epoch": 75.15377894276976, + "grad_norm": 0.231221541762352, + "learning_rate": 0.0006, + "loss": 3.4711289405822754, + "step": 5411 + }, + { + "epoch": 75.16775884665793, + "grad_norm": 0.22871847450733185, + "learning_rate": 0.0006, + "loss": 3.457324504852295, + "step": 5412 + }, + { + "epoch": 75.18173875054609, + "grad_norm": 0.24795132875442505, + "learning_rate": 0.0006, + "loss": 3.4799628257751465, + "step": 5413 + }, + { + "epoch": 75.19571865443424, + "grad_norm": 0.2337426245212555, + "learning_rate": 0.0006, + "loss": 3.4352688789367676, + "step": 5414 + }, + { + "epoch": 75.20969855832242, + "grad_norm": 0.251052588224411, + "learning_rate": 0.0006, + "loss": 3.4770374298095703, + "step": 5415 + }, + { + "epoch": 75.22367846221057, + "grad_norm": 0.2879040241241455, + "learning_rate": 0.0006, + "loss": 3.495934009552002, + "step": 5416 + }, + { + "epoch": 75.23765836609873, + "grad_norm": 0.273510605096817, + "learning_rate": 0.0006, + "loss": 3.497647762298584, + "step": 5417 + }, + { + "epoch": 75.2516382699869, + "grad_norm": 0.24495841562747955, + "learning_rate": 0.0006, + "loss": 3.455962896347046, + "step": 5418 + }, + { + "epoch": 75.26561817387505, + "grad_norm": 0.2345196157693863, + "learning_rate": 0.0006, + "loss": 3.5110573768615723, + "step": 5419 + }, + { + "epoch": 75.27959807776321, + "grad_norm": 0.22574985027313232, + "learning_rate": 0.0006, + "loss": 3.499999523162842, + "step": 5420 + }, + { + "epoch": 75.29357798165138, + "grad_norm": 0.21367499232292175, + "learning_rate": 0.0006, + "loss": 3.4823455810546875, + "step": 5421 + }, + { + "epoch": 75.30755788553954, + "grad_norm": 0.2120848447084427, + "learning_rate": 0.0006, + "loss": 3.4786484241485596, + "step": 5422 + }, + { + "epoch": 75.3215377894277, + "grad_norm": 0.21794751286506653, + "learning_rate": 0.0006, + "loss": 3.4970765113830566, + "step": 5423 + }, + { + "epoch": 75.33551769331586, + "grad_norm": 0.21963100135326385, + "learning_rate": 0.0006, + "loss": 3.5118799209594727, + "step": 5424 + }, + { + "epoch": 75.34949759720402, + "grad_norm": 0.21615713834762573, + "learning_rate": 0.0006, + "loss": 3.4728214740753174, + "step": 5425 + }, + { + "epoch": 75.36347750109218, + "grad_norm": 0.23004800081253052, + "learning_rate": 0.0006, + "loss": 3.496875762939453, + "step": 5426 + }, + { + "epoch": 75.37745740498035, + "grad_norm": 0.24208541214466095, + "learning_rate": 0.0006, + "loss": 3.4958276748657227, + "step": 5427 + }, + { + "epoch": 75.3914373088685, + "grad_norm": 0.20642924308776855, + "learning_rate": 0.0006, + "loss": 3.500385284423828, + "step": 5428 + }, + { + "epoch": 75.40541721275666, + "grad_norm": 0.2259436547756195, + "learning_rate": 0.0006, + "loss": 3.4697232246398926, + "step": 5429 + }, + { + "epoch": 75.41939711664482, + "grad_norm": 0.25861549377441406, + "learning_rate": 0.0006, + "loss": 3.5008928775787354, + "step": 5430 + }, + { + "epoch": 75.43337702053299, + "grad_norm": 0.24532392621040344, + "learning_rate": 0.0006, + "loss": 3.4718515872955322, + "step": 5431 + }, + { + "epoch": 75.44735692442114, + "grad_norm": 0.23508992791175842, + "learning_rate": 0.0006, + "loss": 3.4947562217712402, + "step": 5432 + }, + { + "epoch": 75.4613368283093, + "grad_norm": 0.25019076466560364, + "learning_rate": 0.0006, + "loss": 3.5137546062469482, + "step": 5433 + }, + { + "epoch": 75.47531673219747, + "grad_norm": 0.23382526636123657, + "learning_rate": 0.0006, + "loss": 3.503502368927002, + "step": 5434 + }, + { + "epoch": 75.48929663608563, + "grad_norm": 0.23226714134216309, + "learning_rate": 0.0006, + "loss": 3.4856209754943848, + "step": 5435 + }, + { + "epoch": 75.50327653997378, + "grad_norm": 0.2705337107181549, + "learning_rate": 0.0006, + "loss": 3.4829044342041016, + "step": 5436 + }, + { + "epoch": 75.51725644386195, + "grad_norm": 0.23903003334999084, + "learning_rate": 0.0006, + "loss": 3.473284959793091, + "step": 5437 + }, + { + "epoch": 75.53123634775011, + "grad_norm": 0.2298477441072464, + "learning_rate": 0.0006, + "loss": 3.4981393814086914, + "step": 5438 + }, + { + "epoch": 75.54521625163827, + "grad_norm": 0.2785218060016632, + "learning_rate": 0.0006, + "loss": 3.491668701171875, + "step": 5439 + }, + { + "epoch": 75.55919615552644, + "grad_norm": 0.30322644114494324, + "learning_rate": 0.0006, + "loss": 3.5061874389648438, + "step": 5440 + }, + { + "epoch": 75.57317605941459, + "grad_norm": 0.26536163687705994, + "learning_rate": 0.0006, + "loss": 3.491297721862793, + "step": 5441 + }, + { + "epoch": 75.58715596330275, + "grad_norm": 0.25591710209846497, + "learning_rate": 0.0006, + "loss": 3.4608688354492188, + "step": 5442 + }, + { + "epoch": 75.60113586719092, + "grad_norm": 0.29031914472579956, + "learning_rate": 0.0006, + "loss": 3.5015907287597656, + "step": 5443 + }, + { + "epoch": 75.61511577107908, + "grad_norm": 0.3028157353401184, + "learning_rate": 0.0006, + "loss": 3.488694190979004, + "step": 5444 + }, + { + "epoch": 75.62909567496723, + "grad_norm": 0.2612902522087097, + "learning_rate": 0.0006, + "loss": 3.5170979499816895, + "step": 5445 + }, + { + "epoch": 75.6430755788554, + "grad_norm": 0.2346487045288086, + "learning_rate": 0.0006, + "loss": 3.501101493835449, + "step": 5446 + }, + { + "epoch": 75.65705548274356, + "grad_norm": 0.24434567987918854, + "learning_rate": 0.0006, + "loss": 3.48040771484375, + "step": 5447 + }, + { + "epoch": 75.67103538663171, + "grad_norm": 0.2538795471191406, + "learning_rate": 0.0006, + "loss": 3.480721950531006, + "step": 5448 + }, + { + "epoch": 75.68501529051987, + "grad_norm": 0.23026305437088013, + "learning_rate": 0.0006, + "loss": 3.501366138458252, + "step": 5449 + }, + { + "epoch": 75.69899519440804, + "grad_norm": 0.21872632205486298, + "learning_rate": 0.0006, + "loss": 3.4855334758758545, + "step": 5450 + }, + { + "epoch": 75.7129750982962, + "grad_norm": 0.23016631603240967, + "learning_rate": 0.0006, + "loss": 3.487691879272461, + "step": 5451 + }, + { + "epoch": 75.72695500218435, + "grad_norm": 0.25731417536735535, + "learning_rate": 0.0006, + "loss": 3.509885787963867, + "step": 5452 + }, + { + "epoch": 75.74093490607252, + "grad_norm": 0.23140797019004822, + "learning_rate": 0.0006, + "loss": 3.4974255561828613, + "step": 5453 + }, + { + "epoch": 75.75491480996068, + "grad_norm": 0.2290206402540207, + "learning_rate": 0.0006, + "loss": 3.497750997543335, + "step": 5454 + }, + { + "epoch": 75.76889471384884, + "grad_norm": 0.22882549464702606, + "learning_rate": 0.0006, + "loss": 3.513742446899414, + "step": 5455 + }, + { + "epoch": 75.78287461773701, + "grad_norm": 0.22749373316764832, + "learning_rate": 0.0006, + "loss": 3.5267224311828613, + "step": 5456 + }, + { + "epoch": 75.79685452162516, + "grad_norm": 0.23185116052627563, + "learning_rate": 0.0006, + "loss": 3.4946181774139404, + "step": 5457 + }, + { + "epoch": 75.81083442551332, + "grad_norm": 0.21161580085754395, + "learning_rate": 0.0006, + "loss": 3.51632022857666, + "step": 5458 + }, + { + "epoch": 75.82481432940149, + "grad_norm": 0.2244153618812561, + "learning_rate": 0.0006, + "loss": 3.5021536350250244, + "step": 5459 + }, + { + "epoch": 75.83879423328965, + "grad_norm": 0.2286757528781891, + "learning_rate": 0.0006, + "loss": 3.5064220428466797, + "step": 5460 + }, + { + "epoch": 75.8527741371778, + "grad_norm": 0.24235443770885468, + "learning_rate": 0.0006, + "loss": 3.47468638420105, + "step": 5461 + }, + { + "epoch": 75.86675404106597, + "grad_norm": 0.21012619137763977, + "learning_rate": 0.0006, + "loss": 3.469088077545166, + "step": 5462 + }, + { + "epoch": 75.88073394495413, + "grad_norm": 0.20562565326690674, + "learning_rate": 0.0006, + "loss": 3.4918551445007324, + "step": 5463 + }, + { + "epoch": 75.89471384884229, + "grad_norm": 0.2122880220413208, + "learning_rate": 0.0006, + "loss": 3.5048160552978516, + "step": 5464 + }, + { + "epoch": 75.90869375273044, + "grad_norm": 0.20818278193473816, + "learning_rate": 0.0006, + "loss": 3.4814553260803223, + "step": 5465 + }, + { + "epoch": 75.92267365661861, + "grad_norm": 0.20316754281520844, + "learning_rate": 0.0006, + "loss": 3.500009775161743, + "step": 5466 + }, + { + "epoch": 75.93665356050677, + "grad_norm": 0.2093973606824875, + "learning_rate": 0.0006, + "loss": 3.4891273975372314, + "step": 5467 + }, + { + "epoch": 75.95063346439493, + "grad_norm": 0.20942363142967224, + "learning_rate": 0.0006, + "loss": 3.5271172523498535, + "step": 5468 + }, + { + "epoch": 75.9646133682831, + "grad_norm": 0.22052891552448273, + "learning_rate": 0.0006, + "loss": 3.508040189743042, + "step": 5469 + }, + { + "epoch": 75.97859327217125, + "grad_norm": 0.2208913266658783, + "learning_rate": 0.0006, + "loss": 3.5075063705444336, + "step": 5470 + }, + { + "epoch": 75.99257317605941, + "grad_norm": 0.20618212223052979, + "learning_rate": 0.0006, + "loss": 3.5018906593322754, + "step": 5471 + }, + { + "epoch": 76.0, + "grad_norm": 0.23915603756904602, + "learning_rate": 0.0006, + "loss": 3.490349054336548, + "step": 5472 + }, + { + "epoch": 76.0, + "eval_loss": 3.9777374267578125, + "eval_runtime": 44.3634, + "eval_samples_per_second": 55.045, + "eval_steps_per_second": 3.449, + "step": 5472 + }, + { + "epoch": 76.01397990388816, + "grad_norm": 0.2418874055147171, + "learning_rate": 0.0006, + "loss": 3.443974018096924, + "step": 5473 + }, + { + "epoch": 76.02795980777633, + "grad_norm": 0.24863727390766144, + "learning_rate": 0.0006, + "loss": 3.4233765602111816, + "step": 5474 + }, + { + "epoch": 76.04193971166448, + "grad_norm": 0.2790309488773346, + "learning_rate": 0.0006, + "loss": 3.441854953765869, + "step": 5475 + }, + { + "epoch": 76.05591961555264, + "grad_norm": 0.26523181796073914, + "learning_rate": 0.0006, + "loss": 3.5107715129852295, + "step": 5476 + }, + { + "epoch": 76.06989951944081, + "grad_norm": 0.22338931262493134, + "learning_rate": 0.0006, + "loss": 3.4805355072021484, + "step": 5477 + }, + { + "epoch": 76.08387942332897, + "grad_norm": 0.2959517240524292, + "learning_rate": 0.0006, + "loss": 3.4402217864990234, + "step": 5478 + }, + { + "epoch": 76.09785932721712, + "grad_norm": 0.29325243830680847, + "learning_rate": 0.0006, + "loss": 3.448124885559082, + "step": 5479 + }, + { + "epoch": 76.1118392311053, + "grad_norm": 0.24323450028896332, + "learning_rate": 0.0006, + "loss": 3.4593453407287598, + "step": 5480 + }, + { + "epoch": 76.12581913499345, + "grad_norm": 0.22358393669128418, + "learning_rate": 0.0006, + "loss": 3.463690757751465, + "step": 5481 + }, + { + "epoch": 76.1397990388816, + "grad_norm": 0.23993486166000366, + "learning_rate": 0.0006, + "loss": 3.468006134033203, + "step": 5482 + }, + { + "epoch": 76.15377894276976, + "grad_norm": 0.2388140857219696, + "learning_rate": 0.0006, + "loss": 3.4615962505340576, + "step": 5483 + }, + { + "epoch": 76.16775884665793, + "grad_norm": 0.21697917580604553, + "learning_rate": 0.0006, + "loss": 3.498293161392212, + "step": 5484 + }, + { + "epoch": 76.18173875054609, + "grad_norm": 0.21932202577590942, + "learning_rate": 0.0006, + "loss": 3.4642910957336426, + "step": 5485 + }, + { + "epoch": 76.19571865443424, + "grad_norm": 0.23881328105926514, + "learning_rate": 0.0006, + "loss": 3.4731202125549316, + "step": 5486 + }, + { + "epoch": 76.20969855832242, + "grad_norm": 0.24131019413471222, + "learning_rate": 0.0006, + "loss": 3.514042854309082, + "step": 5487 + }, + { + "epoch": 76.22367846221057, + "grad_norm": 0.2567158639431, + "learning_rate": 0.0006, + "loss": 3.496260643005371, + "step": 5488 + }, + { + "epoch": 76.23765836609873, + "grad_norm": 0.24889737367630005, + "learning_rate": 0.0006, + "loss": 3.4490113258361816, + "step": 5489 + }, + { + "epoch": 76.2516382699869, + "grad_norm": 0.2594841718673706, + "learning_rate": 0.0006, + "loss": 3.4855408668518066, + "step": 5490 + }, + { + "epoch": 76.26561817387505, + "grad_norm": 0.25379180908203125, + "learning_rate": 0.0006, + "loss": 3.484755277633667, + "step": 5491 + }, + { + "epoch": 76.27959807776321, + "grad_norm": 0.2550116181373596, + "learning_rate": 0.0006, + "loss": 3.472916603088379, + "step": 5492 + }, + { + "epoch": 76.29357798165138, + "grad_norm": 0.22609412670135498, + "learning_rate": 0.0006, + "loss": 3.4655003547668457, + "step": 5493 + }, + { + "epoch": 76.30755788553954, + "grad_norm": 0.2155119925737381, + "learning_rate": 0.0006, + "loss": 3.4827067852020264, + "step": 5494 + }, + { + "epoch": 76.3215377894277, + "grad_norm": 0.23875075578689575, + "learning_rate": 0.0006, + "loss": 3.5023036003112793, + "step": 5495 + }, + { + "epoch": 76.33551769331586, + "grad_norm": 0.20443911850452423, + "learning_rate": 0.0006, + "loss": 3.483880043029785, + "step": 5496 + }, + { + "epoch": 76.34949759720402, + "grad_norm": 0.2072031944990158, + "learning_rate": 0.0006, + "loss": 3.4842820167541504, + "step": 5497 + }, + { + "epoch": 76.36347750109218, + "grad_norm": 0.20795385539531708, + "learning_rate": 0.0006, + "loss": 3.503988265991211, + "step": 5498 + }, + { + "epoch": 76.37745740498035, + "grad_norm": 0.21297147870063782, + "learning_rate": 0.0006, + "loss": 3.4640579223632812, + "step": 5499 + }, + { + "epoch": 76.3914373088685, + "grad_norm": 0.20675528049468994, + "learning_rate": 0.0006, + "loss": 3.462296485900879, + "step": 5500 + }, + { + "epoch": 76.40541721275666, + "grad_norm": 0.20660211145877838, + "learning_rate": 0.0006, + "loss": 3.484466552734375, + "step": 5501 + }, + { + "epoch": 76.41939711664482, + "grad_norm": 0.23562943935394287, + "learning_rate": 0.0006, + "loss": 3.5207087993621826, + "step": 5502 + }, + { + "epoch": 76.43337702053299, + "grad_norm": 0.23841898143291473, + "learning_rate": 0.0006, + "loss": 3.4793286323547363, + "step": 5503 + }, + { + "epoch": 76.44735692442114, + "grad_norm": 0.22068238258361816, + "learning_rate": 0.0006, + "loss": 3.4763593673706055, + "step": 5504 + }, + { + "epoch": 76.4613368283093, + "grad_norm": 0.2076147049665451, + "learning_rate": 0.0006, + "loss": 3.4937491416931152, + "step": 5505 + }, + { + "epoch": 76.47531673219747, + "grad_norm": 0.2138012796640396, + "learning_rate": 0.0006, + "loss": 3.452348232269287, + "step": 5506 + }, + { + "epoch": 76.48929663608563, + "grad_norm": 0.22696714103221893, + "learning_rate": 0.0006, + "loss": 3.4932503700256348, + "step": 5507 + }, + { + "epoch": 76.50327653997378, + "grad_norm": 0.2209995836019516, + "learning_rate": 0.0006, + "loss": 3.4709179401397705, + "step": 5508 + }, + { + "epoch": 76.51725644386195, + "grad_norm": 0.2194036841392517, + "learning_rate": 0.0006, + "loss": 3.5052647590637207, + "step": 5509 + }, + { + "epoch": 76.53123634775011, + "grad_norm": 0.2052760273218155, + "learning_rate": 0.0006, + "loss": 3.4574718475341797, + "step": 5510 + }, + { + "epoch": 76.54521625163827, + "grad_norm": 0.20317119359970093, + "learning_rate": 0.0006, + "loss": 3.502560615539551, + "step": 5511 + }, + { + "epoch": 76.55919615552644, + "grad_norm": 0.19807544350624084, + "learning_rate": 0.0006, + "loss": 3.4829111099243164, + "step": 5512 + }, + { + "epoch": 76.57317605941459, + "grad_norm": 0.23340080678462982, + "learning_rate": 0.0006, + "loss": 3.486851692199707, + "step": 5513 + }, + { + "epoch": 76.58715596330275, + "grad_norm": 0.22508011758327484, + "learning_rate": 0.0006, + "loss": 3.4909684658050537, + "step": 5514 + }, + { + "epoch": 76.60113586719092, + "grad_norm": 0.20285551249980927, + "learning_rate": 0.0006, + "loss": 3.5109267234802246, + "step": 5515 + }, + { + "epoch": 76.61511577107908, + "grad_norm": 0.21424166858196259, + "learning_rate": 0.0006, + "loss": 3.535339832305908, + "step": 5516 + }, + { + "epoch": 76.62909567496723, + "grad_norm": 0.22599352896213531, + "learning_rate": 0.0006, + "loss": 3.513669729232788, + "step": 5517 + }, + { + "epoch": 76.6430755788554, + "grad_norm": 0.23167334496974945, + "learning_rate": 0.0006, + "loss": 3.464939594268799, + "step": 5518 + }, + { + "epoch": 76.65705548274356, + "grad_norm": 0.23066985607147217, + "learning_rate": 0.0006, + "loss": 3.5059399604797363, + "step": 5519 + }, + { + "epoch": 76.67103538663171, + "grad_norm": 0.23994891345500946, + "learning_rate": 0.0006, + "loss": 3.500594139099121, + "step": 5520 + }, + { + "epoch": 76.68501529051987, + "grad_norm": 0.211285799741745, + "learning_rate": 0.0006, + "loss": 3.478522300720215, + "step": 5521 + }, + { + "epoch": 76.69899519440804, + "grad_norm": 0.20075270533561707, + "learning_rate": 0.0006, + "loss": 3.5288326740264893, + "step": 5522 + }, + { + "epoch": 76.7129750982962, + "grad_norm": 0.23529106378555298, + "learning_rate": 0.0006, + "loss": 3.4779129028320312, + "step": 5523 + }, + { + "epoch": 76.72695500218435, + "grad_norm": 0.2311454862356186, + "learning_rate": 0.0006, + "loss": 3.496515989303589, + "step": 5524 + }, + { + "epoch": 76.74093490607252, + "grad_norm": 0.2181762307882309, + "learning_rate": 0.0006, + "loss": 3.5054616928100586, + "step": 5525 + }, + { + "epoch": 76.75491480996068, + "grad_norm": 0.21688713133335114, + "learning_rate": 0.0006, + "loss": 3.486077070236206, + "step": 5526 + }, + { + "epoch": 76.76889471384884, + "grad_norm": 0.208486407995224, + "learning_rate": 0.0006, + "loss": 3.519576072692871, + "step": 5527 + }, + { + "epoch": 76.78287461773701, + "grad_norm": 0.20486991107463837, + "learning_rate": 0.0006, + "loss": 3.521792411804199, + "step": 5528 + }, + { + "epoch": 76.79685452162516, + "grad_norm": 0.19922950863838196, + "learning_rate": 0.0006, + "loss": 3.491504669189453, + "step": 5529 + }, + { + "epoch": 76.81083442551332, + "grad_norm": 0.1996903419494629, + "learning_rate": 0.0006, + "loss": 3.468512535095215, + "step": 5530 + }, + { + "epoch": 76.82481432940149, + "grad_norm": 0.222084179520607, + "learning_rate": 0.0006, + "loss": 3.5042052268981934, + "step": 5531 + }, + { + "epoch": 76.83879423328965, + "grad_norm": 0.20673534274101257, + "learning_rate": 0.0006, + "loss": 3.497204303741455, + "step": 5532 + }, + { + "epoch": 76.8527741371778, + "grad_norm": 0.21386823058128357, + "learning_rate": 0.0006, + "loss": 3.488496780395508, + "step": 5533 + }, + { + "epoch": 76.86675404106597, + "grad_norm": 0.21389922499656677, + "learning_rate": 0.0006, + "loss": 3.4649922847747803, + "step": 5534 + }, + { + "epoch": 76.88073394495413, + "grad_norm": 0.20491436123847961, + "learning_rate": 0.0006, + "loss": 3.5298590660095215, + "step": 5535 + }, + { + "epoch": 76.89471384884229, + "grad_norm": 0.21831119060516357, + "learning_rate": 0.0006, + "loss": 3.4953153133392334, + "step": 5536 + }, + { + "epoch": 76.90869375273044, + "grad_norm": 0.20591680705547333, + "learning_rate": 0.0006, + "loss": 3.4926888942718506, + "step": 5537 + }, + { + "epoch": 76.92267365661861, + "grad_norm": 0.2123914211988449, + "learning_rate": 0.0006, + "loss": 3.4734320640563965, + "step": 5538 + }, + { + "epoch": 76.93665356050677, + "grad_norm": 0.22081080079078674, + "learning_rate": 0.0006, + "loss": 3.500866413116455, + "step": 5539 + }, + { + "epoch": 76.95063346439493, + "grad_norm": 0.20731335878372192, + "learning_rate": 0.0006, + "loss": 3.5050065517425537, + "step": 5540 + }, + { + "epoch": 76.9646133682831, + "grad_norm": 0.21011851727962494, + "learning_rate": 0.0006, + "loss": 3.490650177001953, + "step": 5541 + }, + { + "epoch": 76.97859327217125, + "grad_norm": 0.2390926033258438, + "learning_rate": 0.0006, + "loss": 3.4951090812683105, + "step": 5542 + }, + { + "epoch": 76.99257317605941, + "grad_norm": 0.2596230208873749, + "learning_rate": 0.0006, + "loss": 3.5060253143310547, + "step": 5543 + }, + { + "epoch": 77.0, + "grad_norm": 0.25238990783691406, + "learning_rate": 0.0006, + "loss": 3.4590630531311035, + "step": 5544 + }, + { + "epoch": 77.0, + "eval_loss": 3.9981307983398438, + "eval_runtime": 44.7924, + "eval_samples_per_second": 54.518, + "eval_steps_per_second": 3.416, + "step": 5544 + }, + { + "epoch": 77.01397990388816, + "grad_norm": 0.22038361430168152, + "learning_rate": 0.0006, + "loss": 3.4686741828918457, + "step": 5545 + }, + { + "epoch": 77.02795980777633, + "grad_norm": 0.24023033678531647, + "learning_rate": 0.0006, + "loss": 3.4764277935028076, + "step": 5546 + }, + { + "epoch": 77.04193971166448, + "grad_norm": 0.2292146384716034, + "learning_rate": 0.0006, + "loss": 3.4723358154296875, + "step": 5547 + }, + { + "epoch": 77.05591961555264, + "grad_norm": 0.2493198812007904, + "learning_rate": 0.0006, + "loss": 3.4568331241607666, + "step": 5548 + }, + { + "epoch": 77.06989951944081, + "grad_norm": 0.24256594479084015, + "learning_rate": 0.0006, + "loss": 3.4423820972442627, + "step": 5549 + }, + { + "epoch": 77.08387942332897, + "grad_norm": 0.23987102508544922, + "learning_rate": 0.0006, + "loss": 3.465493679046631, + "step": 5550 + }, + { + "epoch": 77.09785932721712, + "grad_norm": 0.22210195660591125, + "learning_rate": 0.0006, + "loss": 3.4376380443573, + "step": 5551 + }, + { + "epoch": 77.1118392311053, + "grad_norm": 0.24909666180610657, + "learning_rate": 0.0006, + "loss": 3.490691900253296, + "step": 5552 + }, + { + "epoch": 77.12581913499345, + "grad_norm": 0.25187668204307556, + "learning_rate": 0.0006, + "loss": 3.487443447113037, + "step": 5553 + }, + { + "epoch": 77.1397990388816, + "grad_norm": 0.24957744777202606, + "learning_rate": 0.0006, + "loss": 3.4741783142089844, + "step": 5554 + }, + { + "epoch": 77.15377894276976, + "grad_norm": 0.24963968992233276, + "learning_rate": 0.0006, + "loss": 3.442970037460327, + "step": 5555 + }, + { + "epoch": 77.16775884665793, + "grad_norm": 0.2636677026748657, + "learning_rate": 0.0006, + "loss": 3.442943572998047, + "step": 5556 + }, + { + "epoch": 77.18173875054609, + "grad_norm": 0.2390320599079132, + "learning_rate": 0.0006, + "loss": 3.446042537689209, + "step": 5557 + }, + { + "epoch": 77.19571865443424, + "grad_norm": 0.24128425121307373, + "learning_rate": 0.0006, + "loss": 3.4540657997131348, + "step": 5558 + }, + { + "epoch": 77.20969855832242, + "grad_norm": 0.2793026566505432, + "learning_rate": 0.0006, + "loss": 3.475677013397217, + "step": 5559 + }, + { + "epoch": 77.22367846221057, + "grad_norm": 0.2781931459903717, + "learning_rate": 0.0006, + "loss": 3.432591438293457, + "step": 5560 + }, + { + "epoch": 77.23765836609873, + "grad_norm": 0.27104610204696655, + "learning_rate": 0.0006, + "loss": 3.434600353240967, + "step": 5561 + }, + { + "epoch": 77.2516382699869, + "grad_norm": 0.24446748197078705, + "learning_rate": 0.0006, + "loss": 3.4536900520324707, + "step": 5562 + }, + { + "epoch": 77.26561817387505, + "grad_norm": 0.2234327495098114, + "learning_rate": 0.0006, + "loss": 3.472113609313965, + "step": 5563 + }, + { + "epoch": 77.27959807776321, + "grad_norm": 0.22455455362796783, + "learning_rate": 0.0006, + "loss": 3.478461742401123, + "step": 5564 + }, + { + "epoch": 77.29357798165138, + "grad_norm": 0.24232162535190582, + "learning_rate": 0.0006, + "loss": 3.476224899291992, + "step": 5565 + }, + { + "epoch": 77.30755788553954, + "grad_norm": 0.22650426626205444, + "learning_rate": 0.0006, + "loss": 3.4830868244171143, + "step": 5566 + }, + { + "epoch": 77.3215377894277, + "grad_norm": 0.20385561883449554, + "learning_rate": 0.0006, + "loss": 3.4758248329162598, + "step": 5567 + }, + { + "epoch": 77.33551769331586, + "grad_norm": 0.21887609362602234, + "learning_rate": 0.0006, + "loss": 3.444990873336792, + "step": 5568 + }, + { + "epoch": 77.34949759720402, + "grad_norm": 0.2225635051727295, + "learning_rate": 0.0006, + "loss": 3.469752311706543, + "step": 5569 + }, + { + "epoch": 77.36347750109218, + "grad_norm": 0.24805355072021484, + "learning_rate": 0.0006, + "loss": 3.492915153503418, + "step": 5570 + }, + { + "epoch": 77.37745740498035, + "grad_norm": 0.2526283860206604, + "learning_rate": 0.0006, + "loss": 3.465193271636963, + "step": 5571 + }, + { + "epoch": 77.3914373088685, + "grad_norm": 0.24211226403713226, + "learning_rate": 0.0006, + "loss": 3.4413485527038574, + "step": 5572 + }, + { + "epoch": 77.40541721275666, + "grad_norm": 0.2326599657535553, + "learning_rate": 0.0006, + "loss": 3.4961862564086914, + "step": 5573 + }, + { + "epoch": 77.41939711664482, + "grad_norm": 0.20717164874076843, + "learning_rate": 0.0006, + "loss": 3.525745391845703, + "step": 5574 + }, + { + "epoch": 77.43337702053299, + "grad_norm": 0.25477585196495056, + "learning_rate": 0.0006, + "loss": 3.5035266876220703, + "step": 5575 + }, + { + "epoch": 77.44735692442114, + "grad_norm": 0.25919151306152344, + "learning_rate": 0.0006, + "loss": 3.490316867828369, + "step": 5576 + }, + { + "epoch": 77.4613368283093, + "grad_norm": 0.23436813056468964, + "learning_rate": 0.0006, + "loss": 3.4723501205444336, + "step": 5577 + }, + { + "epoch": 77.47531673219747, + "grad_norm": 0.22665677964687347, + "learning_rate": 0.0006, + "loss": 3.478048801422119, + "step": 5578 + }, + { + "epoch": 77.48929663608563, + "grad_norm": 0.2232775241136551, + "learning_rate": 0.0006, + "loss": 3.5051913261413574, + "step": 5579 + }, + { + "epoch": 77.50327653997378, + "grad_norm": 0.22552873194217682, + "learning_rate": 0.0006, + "loss": 3.45631742477417, + "step": 5580 + }, + { + "epoch": 77.51725644386195, + "grad_norm": 0.21110759675502777, + "learning_rate": 0.0006, + "loss": 3.5175533294677734, + "step": 5581 + }, + { + "epoch": 77.53123634775011, + "grad_norm": 0.20691822469234467, + "learning_rate": 0.0006, + "loss": 3.4880058765411377, + "step": 5582 + }, + { + "epoch": 77.54521625163827, + "grad_norm": 0.2127186805009842, + "learning_rate": 0.0006, + "loss": 3.4998388290405273, + "step": 5583 + }, + { + "epoch": 77.55919615552644, + "grad_norm": 0.20933803915977478, + "learning_rate": 0.0006, + "loss": 3.466125249862671, + "step": 5584 + }, + { + "epoch": 77.57317605941459, + "grad_norm": 0.2276456654071808, + "learning_rate": 0.0006, + "loss": 3.459625482559204, + "step": 5585 + }, + { + "epoch": 77.58715596330275, + "grad_norm": 0.22685237228870392, + "learning_rate": 0.0006, + "loss": 3.492049217224121, + "step": 5586 + }, + { + "epoch": 77.60113586719092, + "grad_norm": 0.21664106845855713, + "learning_rate": 0.0006, + "loss": 3.5223960876464844, + "step": 5587 + }, + { + "epoch": 77.61511577107908, + "grad_norm": 0.23587282001972198, + "learning_rate": 0.0006, + "loss": 3.518566370010376, + "step": 5588 + }, + { + "epoch": 77.62909567496723, + "grad_norm": 0.23437966406345367, + "learning_rate": 0.0006, + "loss": 3.491976022720337, + "step": 5589 + }, + { + "epoch": 77.6430755788554, + "grad_norm": 0.23540490865707397, + "learning_rate": 0.0006, + "loss": 3.4611740112304688, + "step": 5590 + }, + { + "epoch": 77.65705548274356, + "grad_norm": 0.25225862860679626, + "learning_rate": 0.0006, + "loss": 3.5131006240844727, + "step": 5591 + }, + { + "epoch": 77.67103538663171, + "grad_norm": 0.24235303699970245, + "learning_rate": 0.0006, + "loss": 3.5291337966918945, + "step": 5592 + }, + { + "epoch": 77.68501529051987, + "grad_norm": 0.20641890168190002, + "learning_rate": 0.0006, + "loss": 3.484412431716919, + "step": 5593 + }, + { + "epoch": 77.69899519440804, + "grad_norm": 0.22332488000392914, + "learning_rate": 0.0006, + "loss": 3.521279811859131, + "step": 5594 + }, + { + "epoch": 77.7129750982962, + "grad_norm": 0.22490297257900238, + "learning_rate": 0.0006, + "loss": 3.493229866027832, + "step": 5595 + }, + { + "epoch": 77.72695500218435, + "grad_norm": 0.19960972666740417, + "learning_rate": 0.0006, + "loss": 3.454841136932373, + "step": 5596 + }, + { + "epoch": 77.74093490607252, + "grad_norm": 0.22220884263515472, + "learning_rate": 0.0006, + "loss": 3.490431547164917, + "step": 5597 + }, + { + "epoch": 77.75491480996068, + "grad_norm": 0.22000782191753387, + "learning_rate": 0.0006, + "loss": 3.52382230758667, + "step": 5598 + }, + { + "epoch": 77.76889471384884, + "grad_norm": 0.2174588292837143, + "learning_rate": 0.0006, + "loss": 3.514397621154785, + "step": 5599 + }, + { + "epoch": 77.78287461773701, + "grad_norm": 0.2279520481824875, + "learning_rate": 0.0006, + "loss": 3.4750583171844482, + "step": 5600 + }, + { + "epoch": 77.79685452162516, + "grad_norm": 0.21765829622745514, + "learning_rate": 0.0006, + "loss": 3.512150526046753, + "step": 5601 + }, + { + "epoch": 77.81083442551332, + "grad_norm": 0.20984821021556854, + "learning_rate": 0.0006, + "loss": 3.4623773097991943, + "step": 5602 + }, + { + "epoch": 77.82481432940149, + "grad_norm": 0.22201800346374512, + "learning_rate": 0.0006, + "loss": 3.4842002391815186, + "step": 5603 + }, + { + "epoch": 77.83879423328965, + "grad_norm": 0.194268599152565, + "learning_rate": 0.0006, + "loss": 3.4671778678894043, + "step": 5604 + }, + { + "epoch": 77.8527741371778, + "grad_norm": 0.26137876510620117, + "learning_rate": 0.0006, + "loss": 3.5220279693603516, + "step": 5605 + }, + { + "epoch": 77.86675404106597, + "grad_norm": 0.34975603222846985, + "learning_rate": 0.0006, + "loss": 3.500293254852295, + "step": 5606 + }, + { + "epoch": 77.88073394495413, + "grad_norm": 0.35652515292167664, + "learning_rate": 0.0006, + "loss": 3.514991521835327, + "step": 5607 + }, + { + "epoch": 77.89471384884229, + "grad_norm": 0.29652512073516846, + "learning_rate": 0.0006, + "loss": 3.4788379669189453, + "step": 5608 + }, + { + "epoch": 77.90869375273044, + "grad_norm": 0.24133038520812988, + "learning_rate": 0.0006, + "loss": 3.5168981552124023, + "step": 5609 + }, + { + "epoch": 77.92267365661861, + "grad_norm": 0.26977378129959106, + "learning_rate": 0.0006, + "loss": 3.479185104370117, + "step": 5610 + }, + { + "epoch": 77.93665356050677, + "grad_norm": 0.3470935523509979, + "learning_rate": 0.0006, + "loss": 3.477111577987671, + "step": 5611 + }, + { + "epoch": 77.95063346439493, + "grad_norm": 0.29587116837501526, + "learning_rate": 0.0006, + "loss": 3.497286319732666, + "step": 5612 + }, + { + "epoch": 77.9646133682831, + "grad_norm": 0.23551815748214722, + "learning_rate": 0.0006, + "loss": 3.521495819091797, + "step": 5613 + }, + { + "epoch": 77.97859327217125, + "grad_norm": 0.23533079028129578, + "learning_rate": 0.0006, + "loss": 3.525179147720337, + "step": 5614 + }, + { + "epoch": 77.99257317605941, + "grad_norm": 0.24980391561985016, + "learning_rate": 0.0006, + "loss": 3.5037364959716797, + "step": 5615 + }, + { + "epoch": 78.0, + "grad_norm": 0.26153600215911865, + "learning_rate": 0.0006, + "loss": 3.515974521636963, + "step": 5616 + }, + { + "epoch": 78.0, + "eval_loss": 3.989530563354492, + "eval_runtime": 44.8691, + "eval_samples_per_second": 54.425, + "eval_steps_per_second": 3.41, + "step": 5616 + }, + { + "epoch": 78.01397990388816, + "grad_norm": 0.2100374549627304, + "learning_rate": 0.0006, + "loss": 3.4879980087280273, + "step": 5617 + }, + { + "epoch": 78.02795980777633, + "grad_norm": 0.23255975544452667, + "learning_rate": 0.0006, + "loss": 3.43629789352417, + "step": 5618 + }, + { + "epoch": 78.04193971166448, + "grad_norm": 0.2895263731479645, + "learning_rate": 0.0006, + "loss": 3.4705724716186523, + "step": 5619 + }, + { + "epoch": 78.05591961555264, + "grad_norm": 0.31454774737358093, + "learning_rate": 0.0006, + "loss": 3.451716661453247, + "step": 5620 + }, + { + "epoch": 78.06989951944081, + "grad_norm": 0.2520895004272461, + "learning_rate": 0.0006, + "loss": 3.4636831283569336, + "step": 5621 + }, + { + "epoch": 78.08387942332897, + "grad_norm": 0.24788936972618103, + "learning_rate": 0.0006, + "loss": 3.4423277378082275, + "step": 5622 + }, + { + "epoch": 78.09785932721712, + "grad_norm": 0.27085408568382263, + "learning_rate": 0.0006, + "loss": 3.4572410583496094, + "step": 5623 + }, + { + "epoch": 78.1118392311053, + "grad_norm": 0.25386592745780945, + "learning_rate": 0.0006, + "loss": 3.4571075439453125, + "step": 5624 + }, + { + "epoch": 78.12581913499345, + "grad_norm": 0.24330876767635345, + "learning_rate": 0.0006, + "loss": 3.4500632286071777, + "step": 5625 + }, + { + "epoch": 78.1397990388816, + "grad_norm": 0.24485483765602112, + "learning_rate": 0.0006, + "loss": 3.475353240966797, + "step": 5626 + }, + { + "epoch": 78.15377894276976, + "grad_norm": 0.25498270988464355, + "learning_rate": 0.0006, + "loss": 3.485459089279175, + "step": 5627 + }, + { + "epoch": 78.16775884665793, + "grad_norm": 0.24147716164588928, + "learning_rate": 0.0006, + "loss": 3.5107951164245605, + "step": 5628 + }, + { + "epoch": 78.18173875054609, + "grad_norm": 0.22279144823551178, + "learning_rate": 0.0006, + "loss": 3.510791778564453, + "step": 5629 + }, + { + "epoch": 78.19571865443424, + "grad_norm": 0.2423589825630188, + "learning_rate": 0.0006, + "loss": 3.4248547554016113, + "step": 5630 + }, + { + "epoch": 78.20969855832242, + "grad_norm": 0.25929296016693115, + "learning_rate": 0.0006, + "loss": 3.4600253105163574, + "step": 5631 + }, + { + "epoch": 78.22367846221057, + "grad_norm": 0.23566672205924988, + "learning_rate": 0.0006, + "loss": 3.4578680992126465, + "step": 5632 + }, + { + "epoch": 78.23765836609873, + "grad_norm": 0.23223716020584106, + "learning_rate": 0.0006, + "loss": 3.4563381671905518, + "step": 5633 + }, + { + "epoch": 78.2516382699869, + "grad_norm": 0.2368844598531723, + "learning_rate": 0.0006, + "loss": 3.4480276107788086, + "step": 5634 + }, + { + "epoch": 78.26561817387505, + "grad_norm": 0.24832561612129211, + "learning_rate": 0.0006, + "loss": 3.496946334838867, + "step": 5635 + }, + { + "epoch": 78.27959807776321, + "grad_norm": 0.24947865307331085, + "learning_rate": 0.0006, + "loss": 3.4892706871032715, + "step": 5636 + }, + { + "epoch": 78.29357798165138, + "grad_norm": 0.23110949993133545, + "learning_rate": 0.0006, + "loss": 3.454031467437744, + "step": 5637 + }, + { + "epoch": 78.30755788553954, + "grad_norm": 0.2529185116291046, + "learning_rate": 0.0006, + "loss": 3.4528121948242188, + "step": 5638 + }, + { + "epoch": 78.3215377894277, + "grad_norm": 0.28784650564193726, + "learning_rate": 0.0006, + "loss": 3.4587960243225098, + "step": 5639 + }, + { + "epoch": 78.33551769331586, + "grad_norm": 0.3063037097454071, + "learning_rate": 0.0006, + "loss": 3.4946982860565186, + "step": 5640 + }, + { + "epoch": 78.34949759720402, + "grad_norm": 0.25911253690719604, + "learning_rate": 0.0006, + "loss": 3.4736804962158203, + "step": 5641 + }, + { + "epoch": 78.36347750109218, + "grad_norm": 0.24036385118961334, + "learning_rate": 0.0006, + "loss": 3.502281665802002, + "step": 5642 + }, + { + "epoch": 78.37745740498035, + "grad_norm": 0.3214871883392334, + "learning_rate": 0.0006, + "loss": 3.462540626525879, + "step": 5643 + }, + { + "epoch": 78.3914373088685, + "grad_norm": 0.2729061245918274, + "learning_rate": 0.0006, + "loss": 3.4772369861602783, + "step": 5644 + }, + { + "epoch": 78.40541721275666, + "grad_norm": 0.19852563738822937, + "learning_rate": 0.0006, + "loss": 3.483013391494751, + "step": 5645 + }, + { + "epoch": 78.41939711664482, + "grad_norm": 0.23686745762825012, + "learning_rate": 0.0006, + "loss": 3.471310615539551, + "step": 5646 + }, + { + "epoch": 78.43337702053299, + "grad_norm": 0.2407468557357788, + "learning_rate": 0.0006, + "loss": 3.468752384185791, + "step": 5647 + }, + { + "epoch": 78.44735692442114, + "grad_norm": 0.21730437874794006, + "learning_rate": 0.0006, + "loss": 3.4616923332214355, + "step": 5648 + }, + { + "epoch": 78.4613368283093, + "grad_norm": 0.22194430232048035, + "learning_rate": 0.0006, + "loss": 3.5024828910827637, + "step": 5649 + }, + { + "epoch": 78.47531673219747, + "grad_norm": 0.20579543709754944, + "learning_rate": 0.0006, + "loss": 3.4653728008270264, + "step": 5650 + }, + { + "epoch": 78.48929663608563, + "grad_norm": 0.21063153445720673, + "learning_rate": 0.0006, + "loss": 3.460247039794922, + "step": 5651 + }, + { + "epoch": 78.50327653997378, + "grad_norm": 0.2112281769514084, + "learning_rate": 0.0006, + "loss": 3.5004734992980957, + "step": 5652 + }, + { + "epoch": 78.51725644386195, + "grad_norm": 0.21281960606575012, + "learning_rate": 0.0006, + "loss": 3.49147367477417, + "step": 5653 + }, + { + "epoch": 78.53123634775011, + "grad_norm": 0.21079784631729126, + "learning_rate": 0.0006, + "loss": 3.4941132068634033, + "step": 5654 + }, + { + "epoch": 78.54521625163827, + "grad_norm": 0.2113049030303955, + "learning_rate": 0.0006, + "loss": 3.4483916759490967, + "step": 5655 + }, + { + "epoch": 78.55919615552644, + "grad_norm": 0.19891786575317383, + "learning_rate": 0.0006, + "loss": 3.477287769317627, + "step": 5656 + }, + { + "epoch": 78.57317605941459, + "grad_norm": 0.24941609799861908, + "learning_rate": 0.0006, + "loss": 3.527385711669922, + "step": 5657 + }, + { + "epoch": 78.58715596330275, + "grad_norm": 0.23287516832351685, + "learning_rate": 0.0006, + "loss": 3.4806594848632812, + "step": 5658 + }, + { + "epoch": 78.60113586719092, + "grad_norm": 0.211700439453125, + "learning_rate": 0.0006, + "loss": 3.455684185028076, + "step": 5659 + }, + { + "epoch": 78.61511577107908, + "grad_norm": 0.20621828734874725, + "learning_rate": 0.0006, + "loss": 3.4775843620300293, + "step": 5660 + }, + { + "epoch": 78.62909567496723, + "grad_norm": 0.2308485507965088, + "learning_rate": 0.0006, + "loss": 3.4990549087524414, + "step": 5661 + }, + { + "epoch": 78.6430755788554, + "grad_norm": 0.22869032621383667, + "learning_rate": 0.0006, + "loss": 3.476654529571533, + "step": 5662 + }, + { + "epoch": 78.65705548274356, + "grad_norm": 0.2244352102279663, + "learning_rate": 0.0006, + "loss": 3.4927053451538086, + "step": 5663 + }, + { + "epoch": 78.67103538663171, + "grad_norm": 0.21660304069519043, + "learning_rate": 0.0006, + "loss": 3.509037494659424, + "step": 5664 + }, + { + "epoch": 78.68501529051987, + "grad_norm": 0.21199069917201996, + "learning_rate": 0.0006, + "loss": 3.5118260383605957, + "step": 5665 + }, + { + "epoch": 78.69899519440804, + "grad_norm": 0.23588138818740845, + "learning_rate": 0.0006, + "loss": 3.497911214828491, + "step": 5666 + }, + { + "epoch": 78.7129750982962, + "grad_norm": 0.24299076199531555, + "learning_rate": 0.0006, + "loss": 3.4978718757629395, + "step": 5667 + }, + { + "epoch": 78.72695500218435, + "grad_norm": 0.22472943365573883, + "learning_rate": 0.0006, + "loss": 3.4873275756835938, + "step": 5668 + }, + { + "epoch": 78.74093490607252, + "grad_norm": 0.24047710001468658, + "learning_rate": 0.0006, + "loss": 3.51192307472229, + "step": 5669 + }, + { + "epoch": 78.75491480996068, + "grad_norm": 0.23834499716758728, + "learning_rate": 0.0006, + "loss": 3.5092411041259766, + "step": 5670 + }, + { + "epoch": 78.76889471384884, + "grad_norm": 0.22663438320159912, + "learning_rate": 0.0006, + "loss": 3.4869158267974854, + "step": 5671 + }, + { + "epoch": 78.78287461773701, + "grad_norm": 0.23967741429805756, + "learning_rate": 0.0006, + "loss": 3.4928178787231445, + "step": 5672 + }, + { + "epoch": 78.79685452162516, + "grad_norm": 0.2554507851600647, + "learning_rate": 0.0006, + "loss": 3.506929636001587, + "step": 5673 + }, + { + "epoch": 78.81083442551332, + "grad_norm": 0.2269635796546936, + "learning_rate": 0.0006, + "loss": 3.491553544998169, + "step": 5674 + }, + { + "epoch": 78.82481432940149, + "grad_norm": 0.22387325763702393, + "learning_rate": 0.0006, + "loss": 3.510486602783203, + "step": 5675 + }, + { + "epoch": 78.83879423328965, + "grad_norm": 0.22415105998516083, + "learning_rate": 0.0006, + "loss": 3.508218765258789, + "step": 5676 + }, + { + "epoch": 78.8527741371778, + "grad_norm": 0.21340659260749817, + "learning_rate": 0.0006, + "loss": 3.4840855598449707, + "step": 5677 + }, + { + "epoch": 78.86675404106597, + "grad_norm": 0.20351317524909973, + "learning_rate": 0.0006, + "loss": 3.485891342163086, + "step": 5678 + }, + { + "epoch": 78.88073394495413, + "grad_norm": 0.21389521658420563, + "learning_rate": 0.0006, + "loss": 3.447760581970215, + "step": 5679 + }, + { + "epoch": 78.89471384884229, + "grad_norm": 0.20613767206668854, + "learning_rate": 0.0006, + "loss": 3.484274387359619, + "step": 5680 + }, + { + "epoch": 78.90869375273044, + "grad_norm": 0.22112590074539185, + "learning_rate": 0.0006, + "loss": 3.4902679920196533, + "step": 5681 + }, + { + "epoch": 78.92267365661861, + "grad_norm": 0.24395327270030975, + "learning_rate": 0.0006, + "loss": 3.5017199516296387, + "step": 5682 + }, + { + "epoch": 78.93665356050677, + "grad_norm": 0.21891266107559204, + "learning_rate": 0.0006, + "loss": 3.4892828464508057, + "step": 5683 + }, + { + "epoch": 78.95063346439493, + "grad_norm": 0.1842963546514511, + "learning_rate": 0.0006, + "loss": 3.4611716270446777, + "step": 5684 + }, + { + "epoch": 78.9646133682831, + "grad_norm": 0.21199378371238708, + "learning_rate": 0.0006, + "loss": 3.487452507019043, + "step": 5685 + }, + { + "epoch": 78.97859327217125, + "grad_norm": 0.2304743379354477, + "learning_rate": 0.0006, + "loss": 3.502875804901123, + "step": 5686 + }, + { + "epoch": 78.99257317605941, + "grad_norm": 0.22459475696086884, + "learning_rate": 0.0006, + "loss": 3.47969388961792, + "step": 5687 + }, + { + "epoch": 79.0, + "grad_norm": 0.22847296297550201, + "learning_rate": 0.0006, + "loss": 3.497244358062744, + "step": 5688 + }, + { + "epoch": 79.0, + "eval_loss": 3.9824025630950928, + "eval_runtime": 45.0842, + "eval_samples_per_second": 54.165, + "eval_steps_per_second": 3.394, + "step": 5688 + }, + { + "epoch": 79.01397990388816, + "grad_norm": 0.2116587609052658, + "learning_rate": 0.0006, + "loss": 3.467320442199707, + "step": 5689 + }, + { + "epoch": 79.02795980777633, + "grad_norm": 0.2433212846517563, + "learning_rate": 0.0006, + "loss": 3.454660415649414, + "step": 5690 + }, + { + "epoch": 79.04193971166448, + "grad_norm": 0.27106034755706787, + "learning_rate": 0.0006, + "loss": 3.4242570400238037, + "step": 5691 + }, + { + "epoch": 79.05591961555264, + "grad_norm": 0.2392120659351349, + "learning_rate": 0.0006, + "loss": 3.461986541748047, + "step": 5692 + }, + { + "epoch": 79.06989951944081, + "grad_norm": 0.2061600536108017, + "learning_rate": 0.0006, + "loss": 3.462704658508301, + "step": 5693 + }, + { + "epoch": 79.08387942332897, + "grad_norm": 0.23523560166358948, + "learning_rate": 0.0006, + "loss": 3.435553789138794, + "step": 5694 + }, + { + "epoch": 79.09785932721712, + "grad_norm": 0.23340672254562378, + "learning_rate": 0.0006, + "loss": 3.4382264614105225, + "step": 5695 + }, + { + "epoch": 79.1118392311053, + "grad_norm": 0.23986691236495972, + "learning_rate": 0.0006, + "loss": 3.465056896209717, + "step": 5696 + }, + { + "epoch": 79.12581913499345, + "grad_norm": 0.3069128394126892, + "learning_rate": 0.0006, + "loss": 3.4774551391601562, + "step": 5697 + }, + { + "epoch": 79.1397990388816, + "grad_norm": 0.3146822154521942, + "learning_rate": 0.0006, + "loss": 3.463569402694702, + "step": 5698 + }, + { + "epoch": 79.15377894276976, + "grad_norm": 0.2516225576400757, + "learning_rate": 0.0006, + "loss": 3.455902576446533, + "step": 5699 + }, + { + "epoch": 79.16775884665793, + "grad_norm": 0.23645997047424316, + "learning_rate": 0.0006, + "loss": 3.4733195304870605, + "step": 5700 + }, + { + "epoch": 79.18173875054609, + "grad_norm": 0.23653559386730194, + "learning_rate": 0.0006, + "loss": 3.4751782417297363, + "step": 5701 + }, + { + "epoch": 79.19571865443424, + "grad_norm": 0.2404588907957077, + "learning_rate": 0.0006, + "loss": 3.43743896484375, + "step": 5702 + }, + { + "epoch": 79.20969855832242, + "grad_norm": 0.2621341049671173, + "learning_rate": 0.0006, + "loss": 3.4895966053009033, + "step": 5703 + }, + { + "epoch": 79.22367846221057, + "grad_norm": 0.28223180770874023, + "learning_rate": 0.0006, + "loss": 3.4525022506713867, + "step": 5704 + }, + { + "epoch": 79.23765836609873, + "grad_norm": 0.25029054284095764, + "learning_rate": 0.0006, + "loss": 3.491457939147949, + "step": 5705 + }, + { + "epoch": 79.2516382699869, + "grad_norm": 0.20627525448799133, + "learning_rate": 0.0006, + "loss": 3.4669456481933594, + "step": 5706 + }, + { + "epoch": 79.26561817387505, + "grad_norm": 0.2029162049293518, + "learning_rate": 0.0006, + "loss": 3.467924118041992, + "step": 5707 + }, + { + "epoch": 79.27959807776321, + "grad_norm": 0.21813155710697174, + "learning_rate": 0.0006, + "loss": 3.4625706672668457, + "step": 5708 + }, + { + "epoch": 79.29357798165138, + "grad_norm": 0.22105057537555695, + "learning_rate": 0.0006, + "loss": 3.475510597229004, + "step": 5709 + }, + { + "epoch": 79.30755788553954, + "grad_norm": 0.22906996309757233, + "learning_rate": 0.0006, + "loss": 3.468635320663452, + "step": 5710 + }, + { + "epoch": 79.3215377894277, + "grad_norm": 0.24189208447933197, + "learning_rate": 0.0006, + "loss": 3.5031652450561523, + "step": 5711 + }, + { + "epoch": 79.33551769331586, + "grad_norm": 0.24393346905708313, + "learning_rate": 0.0006, + "loss": 3.454542636871338, + "step": 5712 + }, + { + "epoch": 79.34949759720402, + "grad_norm": 0.2266826182603836, + "learning_rate": 0.0006, + "loss": 3.4841208457946777, + "step": 5713 + }, + { + "epoch": 79.36347750109218, + "grad_norm": 0.2427995502948761, + "learning_rate": 0.0006, + "loss": 3.4595608711242676, + "step": 5714 + }, + { + "epoch": 79.37745740498035, + "grad_norm": 0.22999171912670135, + "learning_rate": 0.0006, + "loss": 3.485996723175049, + "step": 5715 + }, + { + "epoch": 79.3914373088685, + "grad_norm": 0.20932789146900177, + "learning_rate": 0.0006, + "loss": 3.488872528076172, + "step": 5716 + }, + { + "epoch": 79.40541721275666, + "grad_norm": 0.21802127361297607, + "learning_rate": 0.0006, + "loss": 3.4697980880737305, + "step": 5717 + }, + { + "epoch": 79.41939711664482, + "grad_norm": 0.197403684258461, + "learning_rate": 0.0006, + "loss": 3.486513614654541, + "step": 5718 + }, + { + "epoch": 79.43337702053299, + "grad_norm": 0.23447830975055695, + "learning_rate": 0.0006, + "loss": 3.475939989089966, + "step": 5719 + }, + { + "epoch": 79.44735692442114, + "grad_norm": 0.22854745388031006, + "learning_rate": 0.0006, + "loss": 3.465761661529541, + "step": 5720 + }, + { + "epoch": 79.4613368283093, + "grad_norm": 0.23276479542255402, + "learning_rate": 0.0006, + "loss": 3.4629950523376465, + "step": 5721 + }, + { + "epoch": 79.47531673219747, + "grad_norm": 0.2330375462770462, + "learning_rate": 0.0006, + "loss": 3.4637608528137207, + "step": 5722 + }, + { + "epoch": 79.48929663608563, + "grad_norm": 0.20138737559318542, + "learning_rate": 0.0006, + "loss": 3.481213092803955, + "step": 5723 + }, + { + "epoch": 79.50327653997378, + "grad_norm": 0.21511636674404144, + "learning_rate": 0.0006, + "loss": 3.476829767227173, + "step": 5724 + }, + { + "epoch": 79.51725644386195, + "grad_norm": 0.23398199677467346, + "learning_rate": 0.0006, + "loss": 3.489365577697754, + "step": 5725 + }, + { + "epoch": 79.53123634775011, + "grad_norm": 0.2232203334569931, + "learning_rate": 0.0006, + "loss": 3.4860544204711914, + "step": 5726 + }, + { + "epoch": 79.54521625163827, + "grad_norm": 0.22046223282814026, + "learning_rate": 0.0006, + "loss": 3.474432945251465, + "step": 5727 + }, + { + "epoch": 79.55919615552644, + "grad_norm": 0.21202176809310913, + "learning_rate": 0.0006, + "loss": 3.4932260513305664, + "step": 5728 + }, + { + "epoch": 79.57317605941459, + "grad_norm": 0.20418033003807068, + "learning_rate": 0.0006, + "loss": 3.4956419467926025, + "step": 5729 + }, + { + "epoch": 79.58715596330275, + "grad_norm": 0.2247099131345749, + "learning_rate": 0.0006, + "loss": 3.4714908599853516, + "step": 5730 + }, + { + "epoch": 79.60113586719092, + "grad_norm": 0.22176751494407654, + "learning_rate": 0.0006, + "loss": 3.4729676246643066, + "step": 5731 + }, + { + "epoch": 79.61511577107908, + "grad_norm": 0.3019230365753174, + "learning_rate": 0.0006, + "loss": 3.510695695877075, + "step": 5732 + }, + { + "epoch": 79.62909567496723, + "grad_norm": 0.2699214220046997, + "learning_rate": 0.0006, + "loss": 3.4848737716674805, + "step": 5733 + }, + { + "epoch": 79.6430755788554, + "grad_norm": 0.21180644631385803, + "learning_rate": 0.0006, + "loss": 3.4982075691223145, + "step": 5734 + }, + { + "epoch": 79.65705548274356, + "grad_norm": 0.22198693454265594, + "learning_rate": 0.0006, + "loss": 3.4891958236694336, + "step": 5735 + }, + { + "epoch": 79.67103538663171, + "grad_norm": 0.23550960421562195, + "learning_rate": 0.0006, + "loss": 3.4809060096740723, + "step": 5736 + }, + { + "epoch": 79.68501529051987, + "grad_norm": 0.22033970057964325, + "learning_rate": 0.0006, + "loss": 3.4804179668426514, + "step": 5737 + }, + { + "epoch": 79.69899519440804, + "grad_norm": 0.22671130299568176, + "learning_rate": 0.0006, + "loss": 3.5053179264068604, + "step": 5738 + }, + { + "epoch": 79.7129750982962, + "grad_norm": 0.22178004682064056, + "learning_rate": 0.0006, + "loss": 3.481842279434204, + "step": 5739 + }, + { + "epoch": 79.72695500218435, + "grad_norm": 0.21100834012031555, + "learning_rate": 0.0006, + "loss": 3.4759697914123535, + "step": 5740 + }, + { + "epoch": 79.74093490607252, + "grad_norm": 0.22176271677017212, + "learning_rate": 0.0006, + "loss": 3.475595712661743, + "step": 5741 + }, + { + "epoch": 79.75491480996068, + "grad_norm": 0.24720509350299835, + "learning_rate": 0.0006, + "loss": 3.489837646484375, + "step": 5742 + }, + { + "epoch": 79.76889471384884, + "grad_norm": 0.26469993591308594, + "learning_rate": 0.0006, + "loss": 3.506197452545166, + "step": 5743 + }, + { + "epoch": 79.78287461773701, + "grad_norm": 0.24642309546470642, + "learning_rate": 0.0006, + "loss": 3.470227003097534, + "step": 5744 + }, + { + "epoch": 79.79685452162516, + "grad_norm": 0.2302687019109726, + "learning_rate": 0.0006, + "loss": 3.4808273315429688, + "step": 5745 + }, + { + "epoch": 79.81083442551332, + "grad_norm": 0.21863581240177155, + "learning_rate": 0.0006, + "loss": 3.4925639629364014, + "step": 5746 + }, + { + "epoch": 79.82481432940149, + "grad_norm": 0.22680892050266266, + "learning_rate": 0.0006, + "loss": 3.5036230087280273, + "step": 5747 + }, + { + "epoch": 79.83879423328965, + "grad_norm": 0.2469770610332489, + "learning_rate": 0.0006, + "loss": 3.483344078063965, + "step": 5748 + }, + { + "epoch": 79.8527741371778, + "grad_norm": 0.24359549582004547, + "learning_rate": 0.0006, + "loss": 3.4770007133483887, + "step": 5749 + }, + { + "epoch": 79.86675404106597, + "grad_norm": 0.22829081118106842, + "learning_rate": 0.0006, + "loss": 3.4755868911743164, + "step": 5750 + }, + { + "epoch": 79.88073394495413, + "grad_norm": 0.19276872277259827, + "learning_rate": 0.0006, + "loss": 3.4675350189208984, + "step": 5751 + }, + { + "epoch": 79.89471384884229, + "grad_norm": 0.19389234483242035, + "learning_rate": 0.0006, + "loss": 3.4747910499572754, + "step": 5752 + }, + { + "epoch": 79.90869375273044, + "grad_norm": 0.19570349156856537, + "learning_rate": 0.0006, + "loss": 3.5035524368286133, + "step": 5753 + }, + { + "epoch": 79.92267365661861, + "grad_norm": 0.21111367642879486, + "learning_rate": 0.0006, + "loss": 3.488398551940918, + "step": 5754 + }, + { + "epoch": 79.93665356050677, + "grad_norm": 0.219063401222229, + "learning_rate": 0.0006, + "loss": 3.483445882797241, + "step": 5755 + }, + { + "epoch": 79.95063346439493, + "grad_norm": 0.22253118455410004, + "learning_rate": 0.0006, + "loss": 3.45628023147583, + "step": 5756 + }, + { + "epoch": 79.9646133682831, + "grad_norm": 0.25083762407302856, + "learning_rate": 0.0006, + "loss": 3.5318427085876465, + "step": 5757 + }, + { + "epoch": 79.97859327217125, + "grad_norm": 0.22656984627246857, + "learning_rate": 0.0006, + "loss": 3.48038649559021, + "step": 5758 + }, + { + "epoch": 79.99257317605941, + "grad_norm": 0.20029467344284058, + "learning_rate": 0.0006, + "loss": 3.482250213623047, + "step": 5759 + }, + { + "epoch": 80.0, + "grad_norm": 0.24279549717903137, + "learning_rate": 0.0006, + "loss": 3.5121026039123535, + "step": 5760 + }, + { + "epoch": 80.0, + "eval_loss": 3.978234052658081, + "eval_runtime": 44.1332, + "eval_samples_per_second": 55.333, + "eval_steps_per_second": 3.467, + "step": 5760 + }, + { + "epoch": 80.01397990388816, + "grad_norm": 0.25131338834762573, + "learning_rate": 0.0006, + "loss": 3.4301276206970215, + "step": 5761 + }, + { + "epoch": 80.02795980777633, + "grad_norm": 0.2534768283367157, + "learning_rate": 0.0006, + "loss": 3.451167583465576, + "step": 5762 + }, + { + "epoch": 80.04193971166448, + "grad_norm": 0.25048282742500305, + "learning_rate": 0.0006, + "loss": 3.481504440307617, + "step": 5763 + }, + { + "epoch": 80.05591961555264, + "grad_norm": 0.24254269897937775, + "learning_rate": 0.0006, + "loss": 3.4106149673461914, + "step": 5764 + }, + { + "epoch": 80.06989951944081, + "grad_norm": 0.22116127610206604, + "learning_rate": 0.0006, + "loss": 3.4241909980773926, + "step": 5765 + }, + { + "epoch": 80.08387942332897, + "grad_norm": 0.23056873679161072, + "learning_rate": 0.0006, + "loss": 3.441988468170166, + "step": 5766 + }, + { + "epoch": 80.09785932721712, + "grad_norm": 0.270584374666214, + "learning_rate": 0.0006, + "loss": 3.443169116973877, + "step": 5767 + }, + { + "epoch": 80.1118392311053, + "grad_norm": 0.2976143956184387, + "learning_rate": 0.0006, + "loss": 3.448213815689087, + "step": 5768 + }, + { + "epoch": 80.12581913499345, + "grad_norm": 0.26311707496643066, + "learning_rate": 0.0006, + "loss": 3.4544711112976074, + "step": 5769 + }, + { + "epoch": 80.1397990388816, + "grad_norm": 0.23963525891304016, + "learning_rate": 0.0006, + "loss": 3.470118522644043, + "step": 5770 + }, + { + "epoch": 80.15377894276976, + "grad_norm": 0.22066232562065125, + "learning_rate": 0.0006, + "loss": 3.454728126525879, + "step": 5771 + }, + { + "epoch": 80.16775884665793, + "grad_norm": 0.2365395873785019, + "learning_rate": 0.0006, + "loss": 3.4711155891418457, + "step": 5772 + }, + { + "epoch": 80.18173875054609, + "grad_norm": 0.2447291910648346, + "learning_rate": 0.0006, + "loss": 3.4850234985351562, + "step": 5773 + }, + { + "epoch": 80.19571865443424, + "grad_norm": 0.21378695964813232, + "learning_rate": 0.0006, + "loss": 3.4519004821777344, + "step": 5774 + }, + { + "epoch": 80.20969855832242, + "grad_norm": 0.22056379914283752, + "learning_rate": 0.0006, + "loss": 3.440544366836548, + "step": 5775 + }, + { + "epoch": 80.22367846221057, + "grad_norm": 0.2642355263233185, + "learning_rate": 0.0006, + "loss": 3.474979877471924, + "step": 5776 + }, + { + "epoch": 80.23765836609873, + "grad_norm": 0.2748482823371887, + "learning_rate": 0.0006, + "loss": 3.475363254547119, + "step": 5777 + }, + { + "epoch": 80.2516382699869, + "grad_norm": 0.24379116296768188, + "learning_rate": 0.0006, + "loss": 3.496967315673828, + "step": 5778 + }, + { + "epoch": 80.26561817387505, + "grad_norm": 0.2028840184211731, + "learning_rate": 0.0006, + "loss": 3.431668758392334, + "step": 5779 + }, + { + "epoch": 80.27959807776321, + "grad_norm": 0.21429325640201569, + "learning_rate": 0.0006, + "loss": 3.440277099609375, + "step": 5780 + }, + { + "epoch": 80.29357798165138, + "grad_norm": 0.24563860893249512, + "learning_rate": 0.0006, + "loss": 3.4491970539093018, + "step": 5781 + }, + { + "epoch": 80.30755788553954, + "grad_norm": 0.26240795850753784, + "learning_rate": 0.0006, + "loss": 3.4703845977783203, + "step": 5782 + }, + { + "epoch": 80.3215377894277, + "grad_norm": 0.22902022302150726, + "learning_rate": 0.0006, + "loss": 3.472461700439453, + "step": 5783 + }, + { + "epoch": 80.33551769331586, + "grad_norm": 0.21905358135700226, + "learning_rate": 0.0006, + "loss": 3.4711859226226807, + "step": 5784 + }, + { + "epoch": 80.34949759720402, + "grad_norm": 0.2465618997812271, + "learning_rate": 0.0006, + "loss": 3.4803764820098877, + "step": 5785 + }, + { + "epoch": 80.36347750109218, + "grad_norm": 0.22397007048130035, + "learning_rate": 0.0006, + "loss": 3.5154547691345215, + "step": 5786 + }, + { + "epoch": 80.37745740498035, + "grad_norm": 0.2198820561170578, + "learning_rate": 0.0006, + "loss": 3.47590970993042, + "step": 5787 + }, + { + "epoch": 80.3914373088685, + "grad_norm": 0.20409493148326874, + "learning_rate": 0.0006, + "loss": 3.477367401123047, + "step": 5788 + }, + { + "epoch": 80.40541721275666, + "grad_norm": 0.217926487326622, + "learning_rate": 0.0006, + "loss": 3.490652084350586, + "step": 5789 + }, + { + "epoch": 80.41939711664482, + "grad_norm": 0.21637201309204102, + "learning_rate": 0.0006, + "loss": 3.458226442337036, + "step": 5790 + }, + { + "epoch": 80.43337702053299, + "grad_norm": 0.20321200788021088, + "learning_rate": 0.0006, + "loss": 3.452885866165161, + "step": 5791 + }, + { + "epoch": 80.44735692442114, + "grad_norm": 0.21885623037815094, + "learning_rate": 0.0006, + "loss": 3.4941980838775635, + "step": 5792 + }, + { + "epoch": 80.4613368283093, + "grad_norm": 0.22409287095069885, + "learning_rate": 0.0006, + "loss": 3.4670767784118652, + "step": 5793 + }, + { + "epoch": 80.47531673219747, + "grad_norm": 0.21799036860466003, + "learning_rate": 0.0006, + "loss": 3.4714083671569824, + "step": 5794 + }, + { + "epoch": 80.48929663608563, + "grad_norm": 0.21685674786567688, + "learning_rate": 0.0006, + "loss": 3.4904956817626953, + "step": 5795 + }, + { + "epoch": 80.50327653997378, + "grad_norm": 0.20650283992290497, + "learning_rate": 0.0006, + "loss": 3.4683380126953125, + "step": 5796 + }, + { + "epoch": 80.51725644386195, + "grad_norm": 0.21926143765449524, + "learning_rate": 0.0006, + "loss": 3.4641075134277344, + "step": 5797 + }, + { + "epoch": 80.53123634775011, + "grad_norm": 0.2350672036409378, + "learning_rate": 0.0006, + "loss": 3.44460391998291, + "step": 5798 + }, + { + "epoch": 80.54521625163827, + "grad_norm": 0.2503013610839844, + "learning_rate": 0.0006, + "loss": 3.4592742919921875, + "step": 5799 + }, + { + "epoch": 80.55919615552644, + "grad_norm": 0.24494926631450653, + "learning_rate": 0.0006, + "loss": 3.5099523067474365, + "step": 5800 + }, + { + "epoch": 80.57317605941459, + "grad_norm": 0.23444698750972748, + "learning_rate": 0.0006, + "loss": 3.451995849609375, + "step": 5801 + }, + { + "epoch": 80.58715596330275, + "grad_norm": 0.22345036268234253, + "learning_rate": 0.0006, + "loss": 3.4782915115356445, + "step": 5802 + }, + { + "epoch": 80.60113586719092, + "grad_norm": 0.22532342374324799, + "learning_rate": 0.0006, + "loss": 3.5129644870758057, + "step": 5803 + }, + { + "epoch": 80.61511577107908, + "grad_norm": 0.26806071400642395, + "learning_rate": 0.0006, + "loss": 3.4816815853118896, + "step": 5804 + }, + { + "epoch": 80.62909567496723, + "grad_norm": 0.2529740035533905, + "learning_rate": 0.0006, + "loss": 3.4738473892211914, + "step": 5805 + }, + { + "epoch": 80.6430755788554, + "grad_norm": 0.21056286990642548, + "learning_rate": 0.0006, + "loss": 3.464974880218506, + "step": 5806 + }, + { + "epoch": 80.65705548274356, + "grad_norm": 0.21475818753242493, + "learning_rate": 0.0006, + "loss": 3.4820570945739746, + "step": 5807 + }, + { + "epoch": 80.67103538663171, + "grad_norm": 0.2191086858510971, + "learning_rate": 0.0006, + "loss": 3.502323627471924, + "step": 5808 + }, + { + "epoch": 80.68501529051987, + "grad_norm": 0.2302156239748001, + "learning_rate": 0.0006, + "loss": 3.4993669986724854, + "step": 5809 + }, + { + "epoch": 80.69899519440804, + "grad_norm": 0.22701990604400635, + "learning_rate": 0.0006, + "loss": 3.462667465209961, + "step": 5810 + }, + { + "epoch": 80.7129750982962, + "grad_norm": 0.20839478075504303, + "learning_rate": 0.0006, + "loss": 3.4990062713623047, + "step": 5811 + }, + { + "epoch": 80.72695500218435, + "grad_norm": 0.24495407938957214, + "learning_rate": 0.0006, + "loss": 3.514021396636963, + "step": 5812 + }, + { + "epoch": 80.74093490607252, + "grad_norm": 0.27316489815711975, + "learning_rate": 0.0006, + "loss": 3.463404655456543, + "step": 5813 + }, + { + "epoch": 80.75491480996068, + "grad_norm": 0.22948578000068665, + "learning_rate": 0.0006, + "loss": 3.505904197692871, + "step": 5814 + }, + { + "epoch": 80.76889471384884, + "grad_norm": 0.21909916400909424, + "learning_rate": 0.0006, + "loss": 3.5149335861206055, + "step": 5815 + }, + { + "epoch": 80.78287461773701, + "grad_norm": 0.23310492932796478, + "learning_rate": 0.0006, + "loss": 3.464721202850342, + "step": 5816 + }, + { + "epoch": 80.79685452162516, + "grad_norm": 0.2319480925798416, + "learning_rate": 0.0006, + "loss": 3.4716296195983887, + "step": 5817 + }, + { + "epoch": 80.81083442551332, + "grad_norm": 0.22677654027938843, + "learning_rate": 0.0006, + "loss": 3.4898571968078613, + "step": 5818 + }, + { + "epoch": 80.82481432940149, + "grad_norm": 0.2309885025024414, + "learning_rate": 0.0006, + "loss": 3.5047802925109863, + "step": 5819 + }, + { + "epoch": 80.83879423328965, + "grad_norm": 0.23699891567230225, + "learning_rate": 0.0006, + "loss": 3.4849839210510254, + "step": 5820 + }, + { + "epoch": 80.8527741371778, + "grad_norm": 0.2177085429430008, + "learning_rate": 0.0006, + "loss": 3.5039596557617188, + "step": 5821 + }, + { + "epoch": 80.86675404106597, + "grad_norm": 0.2501188814640045, + "learning_rate": 0.0006, + "loss": 3.476724863052368, + "step": 5822 + }, + { + "epoch": 80.88073394495413, + "grad_norm": 0.24670550227165222, + "learning_rate": 0.0006, + "loss": 3.4802114963531494, + "step": 5823 + }, + { + "epoch": 80.89471384884229, + "grad_norm": 0.2456343024969101, + "learning_rate": 0.0006, + "loss": 3.4718332290649414, + "step": 5824 + }, + { + "epoch": 80.90869375273044, + "grad_norm": 0.23390130698680878, + "learning_rate": 0.0006, + "loss": 3.486870765686035, + "step": 5825 + }, + { + "epoch": 80.92267365661861, + "grad_norm": 0.22055526077747345, + "learning_rate": 0.0006, + "loss": 3.514493227005005, + "step": 5826 + }, + { + "epoch": 80.93665356050677, + "grad_norm": 0.2336755096912384, + "learning_rate": 0.0006, + "loss": 3.470463275909424, + "step": 5827 + }, + { + "epoch": 80.95063346439493, + "grad_norm": 0.23320306837558746, + "learning_rate": 0.0006, + "loss": 3.4858689308166504, + "step": 5828 + }, + { + "epoch": 80.9646133682831, + "grad_norm": 0.23942042887210846, + "learning_rate": 0.0006, + "loss": 3.5128583908081055, + "step": 5829 + }, + { + "epoch": 80.97859327217125, + "grad_norm": 0.26255691051483154, + "learning_rate": 0.0006, + "loss": 3.4763708114624023, + "step": 5830 + }, + { + "epoch": 80.99257317605941, + "grad_norm": 0.2564900517463684, + "learning_rate": 0.0006, + "loss": 3.5013113021850586, + "step": 5831 + }, + { + "epoch": 81.0, + "grad_norm": 0.27842438220977783, + "learning_rate": 0.0006, + "loss": 3.530803680419922, + "step": 5832 + }, + { + "epoch": 81.0, + "eval_loss": 3.994793653488159, + "eval_runtime": 44.7478, + "eval_samples_per_second": 54.573, + "eval_steps_per_second": 3.419, + "step": 5832 + }, + { + "epoch": 81.01397990388816, + "grad_norm": 0.2241310030221939, + "learning_rate": 0.0006, + "loss": 3.4611167907714844, + "step": 5833 + }, + { + "epoch": 81.02795980777633, + "grad_norm": 0.2282719761133194, + "learning_rate": 0.0006, + "loss": 3.4444174766540527, + "step": 5834 + }, + { + "epoch": 81.04193971166448, + "grad_norm": 0.22664876282215118, + "learning_rate": 0.0006, + "loss": 3.4553420543670654, + "step": 5835 + }, + { + "epoch": 81.05591961555264, + "grad_norm": 0.23604267835617065, + "learning_rate": 0.0006, + "loss": 3.446911573410034, + "step": 5836 + }, + { + "epoch": 81.06989951944081, + "grad_norm": 0.24082261323928833, + "learning_rate": 0.0006, + "loss": 3.4441776275634766, + "step": 5837 + }, + { + "epoch": 81.08387942332897, + "grad_norm": 0.22746489942073822, + "learning_rate": 0.0006, + "loss": 3.452177047729492, + "step": 5838 + }, + { + "epoch": 81.09785932721712, + "grad_norm": 0.21123987436294556, + "learning_rate": 0.0006, + "loss": 3.4311065673828125, + "step": 5839 + }, + { + "epoch": 81.1118392311053, + "grad_norm": 0.22218266129493713, + "learning_rate": 0.0006, + "loss": 3.467769145965576, + "step": 5840 + }, + { + "epoch": 81.12581913499345, + "grad_norm": 0.2289019376039505, + "learning_rate": 0.0006, + "loss": 3.4591445922851562, + "step": 5841 + }, + { + "epoch": 81.1397990388816, + "grad_norm": 0.21944275498390198, + "learning_rate": 0.0006, + "loss": 3.471113681793213, + "step": 5842 + }, + { + "epoch": 81.15377894276976, + "grad_norm": 0.22327102720737457, + "learning_rate": 0.0006, + "loss": 3.466477394104004, + "step": 5843 + }, + { + "epoch": 81.16775884665793, + "grad_norm": 0.24516990780830383, + "learning_rate": 0.0006, + "loss": 3.4205875396728516, + "step": 5844 + }, + { + "epoch": 81.18173875054609, + "grad_norm": 0.22093479335308075, + "learning_rate": 0.0006, + "loss": 3.4454703330993652, + "step": 5845 + }, + { + "epoch": 81.19571865443424, + "grad_norm": 0.2028535008430481, + "learning_rate": 0.0006, + "loss": 3.4515299797058105, + "step": 5846 + }, + { + "epoch": 81.20969855832242, + "grad_norm": 0.2238505333662033, + "learning_rate": 0.0006, + "loss": 3.459362506866455, + "step": 5847 + }, + { + "epoch": 81.22367846221057, + "grad_norm": 0.2231738269329071, + "learning_rate": 0.0006, + "loss": 3.4835047721862793, + "step": 5848 + }, + { + "epoch": 81.23765836609873, + "grad_norm": 0.23899082839488983, + "learning_rate": 0.0006, + "loss": 3.471942901611328, + "step": 5849 + }, + { + "epoch": 81.2516382699869, + "grad_norm": 0.2504292130470276, + "learning_rate": 0.0006, + "loss": 3.447814702987671, + "step": 5850 + }, + { + "epoch": 81.26561817387505, + "grad_norm": 0.24690432846546173, + "learning_rate": 0.0006, + "loss": 3.4676897525787354, + "step": 5851 + }, + { + "epoch": 81.27959807776321, + "grad_norm": 0.2241731733083725, + "learning_rate": 0.0006, + "loss": 3.4704437255859375, + "step": 5852 + }, + { + "epoch": 81.29357798165138, + "grad_norm": 0.21579913794994354, + "learning_rate": 0.0006, + "loss": 3.4581332206726074, + "step": 5853 + }, + { + "epoch": 81.30755788553954, + "grad_norm": 0.19946254789829254, + "learning_rate": 0.0006, + "loss": 3.49086856842041, + "step": 5854 + }, + { + "epoch": 81.3215377894277, + "grad_norm": 0.21698544919490814, + "learning_rate": 0.0006, + "loss": 3.47237491607666, + "step": 5855 + }, + { + "epoch": 81.33551769331586, + "grad_norm": 0.23065327107906342, + "learning_rate": 0.0006, + "loss": 3.471611261367798, + "step": 5856 + }, + { + "epoch": 81.34949759720402, + "grad_norm": 0.25529375672340393, + "learning_rate": 0.0006, + "loss": 3.474853038787842, + "step": 5857 + }, + { + "epoch": 81.36347750109218, + "grad_norm": 0.2427460253238678, + "learning_rate": 0.0006, + "loss": 3.47169828414917, + "step": 5858 + }, + { + "epoch": 81.37745740498035, + "grad_norm": 0.21831433475017548, + "learning_rate": 0.0006, + "loss": 3.469316005706787, + "step": 5859 + }, + { + "epoch": 81.3914373088685, + "grad_norm": 0.22414742410182953, + "learning_rate": 0.0006, + "loss": 3.4708399772644043, + "step": 5860 + }, + { + "epoch": 81.40541721275666, + "grad_norm": 0.24430912733078003, + "learning_rate": 0.0006, + "loss": 3.4687514305114746, + "step": 5861 + }, + { + "epoch": 81.41939711664482, + "grad_norm": 0.2250177413225174, + "learning_rate": 0.0006, + "loss": 3.471647024154663, + "step": 5862 + }, + { + "epoch": 81.43337702053299, + "grad_norm": 0.21442367136478424, + "learning_rate": 0.0006, + "loss": 3.5020229816436768, + "step": 5863 + }, + { + "epoch": 81.44735692442114, + "grad_norm": 0.2115623503923416, + "learning_rate": 0.0006, + "loss": 3.4541711807250977, + "step": 5864 + }, + { + "epoch": 81.4613368283093, + "grad_norm": 0.21600203216075897, + "learning_rate": 0.0006, + "loss": 3.444777011871338, + "step": 5865 + }, + { + "epoch": 81.47531673219747, + "grad_norm": 0.2073121964931488, + "learning_rate": 0.0006, + "loss": 3.4678783416748047, + "step": 5866 + }, + { + "epoch": 81.48929663608563, + "grad_norm": 0.21327655017375946, + "learning_rate": 0.0006, + "loss": 3.492672920227051, + "step": 5867 + }, + { + "epoch": 81.50327653997378, + "grad_norm": 0.19428470730781555, + "learning_rate": 0.0006, + "loss": 3.4926891326904297, + "step": 5868 + }, + { + "epoch": 81.51725644386195, + "grad_norm": 0.2175777107477188, + "learning_rate": 0.0006, + "loss": 3.4540810585021973, + "step": 5869 + }, + { + "epoch": 81.53123634775011, + "grad_norm": 0.2322985827922821, + "learning_rate": 0.0006, + "loss": 3.4896368980407715, + "step": 5870 + }, + { + "epoch": 81.54521625163827, + "grad_norm": 0.24916131794452667, + "learning_rate": 0.0006, + "loss": 3.4834001064300537, + "step": 5871 + }, + { + "epoch": 81.55919615552644, + "grad_norm": 0.24375544488430023, + "learning_rate": 0.0006, + "loss": 3.4601101875305176, + "step": 5872 + }, + { + "epoch": 81.57317605941459, + "grad_norm": 0.22558897733688354, + "learning_rate": 0.0006, + "loss": 3.479156970977783, + "step": 5873 + }, + { + "epoch": 81.58715596330275, + "grad_norm": 0.2258717566728592, + "learning_rate": 0.0006, + "loss": 3.4763894081115723, + "step": 5874 + }, + { + "epoch": 81.60113586719092, + "grad_norm": 0.2349073439836502, + "learning_rate": 0.0006, + "loss": 3.4897050857543945, + "step": 5875 + }, + { + "epoch": 81.61511577107908, + "grad_norm": 0.2525520920753479, + "learning_rate": 0.0006, + "loss": 3.462857246398926, + "step": 5876 + }, + { + "epoch": 81.62909567496723, + "grad_norm": 0.21800200641155243, + "learning_rate": 0.0006, + "loss": 3.466336488723755, + "step": 5877 + }, + { + "epoch": 81.6430755788554, + "grad_norm": 0.19487148523330688, + "learning_rate": 0.0006, + "loss": 3.494813919067383, + "step": 5878 + }, + { + "epoch": 81.65705548274356, + "grad_norm": 0.2188173234462738, + "learning_rate": 0.0006, + "loss": 3.498023271560669, + "step": 5879 + }, + { + "epoch": 81.67103538663171, + "grad_norm": 0.22095468640327454, + "learning_rate": 0.0006, + "loss": 3.4900009632110596, + "step": 5880 + }, + { + "epoch": 81.68501529051987, + "grad_norm": 0.22997792065143585, + "learning_rate": 0.0006, + "loss": 3.476071357727051, + "step": 5881 + }, + { + "epoch": 81.69899519440804, + "grad_norm": 0.2245410829782486, + "learning_rate": 0.0006, + "loss": 3.456820249557495, + "step": 5882 + }, + { + "epoch": 81.7129750982962, + "grad_norm": 0.22648558020591736, + "learning_rate": 0.0006, + "loss": 3.487612247467041, + "step": 5883 + }, + { + "epoch": 81.72695500218435, + "grad_norm": 0.2600322961807251, + "learning_rate": 0.0006, + "loss": 3.47613525390625, + "step": 5884 + }, + { + "epoch": 81.74093490607252, + "grad_norm": 0.29320329427719116, + "learning_rate": 0.0006, + "loss": 3.4669876098632812, + "step": 5885 + }, + { + "epoch": 81.75491480996068, + "grad_norm": 0.27352645993232727, + "learning_rate": 0.0006, + "loss": 3.4944510459899902, + "step": 5886 + }, + { + "epoch": 81.76889471384884, + "grad_norm": 0.22296367585659027, + "learning_rate": 0.0006, + "loss": 3.4747262001037598, + "step": 5887 + }, + { + "epoch": 81.78287461773701, + "grad_norm": 0.23558233678340912, + "learning_rate": 0.0006, + "loss": 3.4883317947387695, + "step": 5888 + }, + { + "epoch": 81.79685452162516, + "grad_norm": 0.25436776876449585, + "learning_rate": 0.0006, + "loss": 3.486569881439209, + "step": 5889 + }, + { + "epoch": 81.81083442551332, + "grad_norm": 0.24357469379901886, + "learning_rate": 0.0006, + "loss": 3.5173630714416504, + "step": 5890 + }, + { + "epoch": 81.82481432940149, + "grad_norm": 0.208529993891716, + "learning_rate": 0.0006, + "loss": 3.4895973205566406, + "step": 5891 + }, + { + "epoch": 81.83879423328965, + "grad_norm": 0.2506846785545349, + "learning_rate": 0.0006, + "loss": 3.471381425857544, + "step": 5892 + }, + { + "epoch": 81.8527741371778, + "grad_norm": 0.23839038610458374, + "learning_rate": 0.0006, + "loss": 3.5134239196777344, + "step": 5893 + }, + { + "epoch": 81.86675404106597, + "grad_norm": 0.25112682580947876, + "learning_rate": 0.0006, + "loss": 3.4818389415740967, + "step": 5894 + }, + { + "epoch": 81.88073394495413, + "grad_norm": 0.26375311613082886, + "learning_rate": 0.0006, + "loss": 3.451540946960449, + "step": 5895 + }, + { + "epoch": 81.89471384884229, + "grad_norm": 0.24909956753253937, + "learning_rate": 0.0006, + "loss": 3.4711599349975586, + "step": 5896 + }, + { + "epoch": 81.90869375273044, + "grad_norm": 0.25776103138923645, + "learning_rate": 0.0006, + "loss": 3.4937872886657715, + "step": 5897 + }, + { + "epoch": 81.92267365661861, + "grad_norm": 0.24449801445007324, + "learning_rate": 0.0006, + "loss": 3.4718785285949707, + "step": 5898 + }, + { + "epoch": 81.93665356050677, + "grad_norm": 0.25146451592445374, + "learning_rate": 0.0006, + "loss": 3.468308210372925, + "step": 5899 + }, + { + "epoch": 81.95063346439493, + "grad_norm": 0.2371637523174286, + "learning_rate": 0.0006, + "loss": 3.5168726444244385, + "step": 5900 + }, + { + "epoch": 81.9646133682831, + "grad_norm": 0.2174614518880844, + "learning_rate": 0.0006, + "loss": 3.4614851474761963, + "step": 5901 + }, + { + "epoch": 81.97859327217125, + "grad_norm": 0.2184949368238449, + "learning_rate": 0.0006, + "loss": 3.501692771911621, + "step": 5902 + }, + { + "epoch": 81.99257317605941, + "grad_norm": 0.24104104936122894, + "learning_rate": 0.0006, + "loss": 3.470581293106079, + "step": 5903 + }, + { + "epoch": 82.0, + "grad_norm": 0.255840003490448, + "learning_rate": 0.0006, + "loss": 3.419551372528076, + "step": 5904 + }, + { + "epoch": 82.0, + "eval_loss": 3.9897069931030273, + "eval_runtime": 45.1448, + "eval_samples_per_second": 54.093, + "eval_steps_per_second": 3.389, + "step": 5904 + }, + { + "epoch": 82.01397990388816, + "grad_norm": 0.23519675433635712, + "learning_rate": 0.0006, + "loss": 3.4497785568237305, + "step": 5905 + }, + { + "epoch": 82.02795980777633, + "grad_norm": 0.24893461167812347, + "learning_rate": 0.0006, + "loss": 3.4210000038146973, + "step": 5906 + }, + { + "epoch": 82.04193971166448, + "grad_norm": 0.2475820779800415, + "learning_rate": 0.0006, + "loss": 3.465670585632324, + "step": 5907 + }, + { + "epoch": 82.05591961555264, + "grad_norm": 0.24113906919956207, + "learning_rate": 0.0006, + "loss": 3.454935073852539, + "step": 5908 + }, + { + "epoch": 82.06989951944081, + "grad_norm": 0.22427043318748474, + "learning_rate": 0.0006, + "loss": 3.47190523147583, + "step": 5909 + }, + { + "epoch": 82.08387942332897, + "grad_norm": 0.22878019511699677, + "learning_rate": 0.0006, + "loss": 3.4521985054016113, + "step": 5910 + }, + { + "epoch": 82.09785932721712, + "grad_norm": 0.25299179553985596, + "learning_rate": 0.0006, + "loss": 3.439011335372925, + "step": 5911 + }, + { + "epoch": 82.1118392311053, + "grad_norm": 0.29394835233688354, + "learning_rate": 0.0006, + "loss": 3.4350290298461914, + "step": 5912 + }, + { + "epoch": 82.12581913499345, + "grad_norm": 0.29244497418403625, + "learning_rate": 0.0006, + "loss": 3.452918291091919, + "step": 5913 + }, + { + "epoch": 82.1397990388816, + "grad_norm": 0.2498885989189148, + "learning_rate": 0.0006, + "loss": 3.445600986480713, + "step": 5914 + }, + { + "epoch": 82.15377894276976, + "grad_norm": 0.2340220957994461, + "learning_rate": 0.0006, + "loss": 3.446509838104248, + "step": 5915 + }, + { + "epoch": 82.16775884665793, + "grad_norm": 0.2612140476703644, + "learning_rate": 0.0006, + "loss": 3.4699525833129883, + "step": 5916 + }, + { + "epoch": 82.18173875054609, + "grad_norm": 0.29881903529167175, + "learning_rate": 0.0006, + "loss": 3.4616494178771973, + "step": 5917 + }, + { + "epoch": 82.19571865443424, + "grad_norm": 0.3289170265197754, + "learning_rate": 0.0006, + "loss": 3.459996461868286, + "step": 5918 + }, + { + "epoch": 82.20969855832242, + "grad_norm": 0.33752408623695374, + "learning_rate": 0.0006, + "loss": 3.485208511352539, + "step": 5919 + }, + { + "epoch": 82.22367846221057, + "grad_norm": 0.28907373547554016, + "learning_rate": 0.0006, + "loss": 3.4453067779541016, + "step": 5920 + }, + { + "epoch": 82.23765836609873, + "grad_norm": 0.22920988500118256, + "learning_rate": 0.0006, + "loss": 3.4516754150390625, + "step": 5921 + }, + { + "epoch": 82.2516382699869, + "grad_norm": 0.2918834090232849, + "learning_rate": 0.0006, + "loss": 3.4532060623168945, + "step": 5922 + }, + { + "epoch": 82.26561817387505, + "grad_norm": 0.35092175006866455, + "learning_rate": 0.0006, + "loss": 3.481351852416992, + "step": 5923 + }, + { + "epoch": 82.27959807776321, + "grad_norm": 0.35510894656181335, + "learning_rate": 0.0006, + "loss": 3.4563896656036377, + "step": 5924 + }, + { + "epoch": 82.29357798165138, + "grad_norm": 0.284163236618042, + "learning_rate": 0.0006, + "loss": 3.4800498485565186, + "step": 5925 + }, + { + "epoch": 82.30755788553954, + "grad_norm": 0.22560057044029236, + "learning_rate": 0.0006, + "loss": 3.461622714996338, + "step": 5926 + }, + { + "epoch": 82.3215377894277, + "grad_norm": 0.2595600485801697, + "learning_rate": 0.0006, + "loss": 3.4619455337524414, + "step": 5927 + }, + { + "epoch": 82.33551769331586, + "grad_norm": 0.26929134130477905, + "learning_rate": 0.0006, + "loss": 3.4466819763183594, + "step": 5928 + }, + { + "epoch": 82.34949759720402, + "grad_norm": 0.2876140773296356, + "learning_rate": 0.0006, + "loss": 3.4429526329040527, + "step": 5929 + }, + { + "epoch": 82.36347750109218, + "grad_norm": 0.24692676961421967, + "learning_rate": 0.0006, + "loss": 3.465346336364746, + "step": 5930 + }, + { + "epoch": 82.37745740498035, + "grad_norm": 0.2190248966217041, + "learning_rate": 0.0006, + "loss": 3.4734861850738525, + "step": 5931 + }, + { + "epoch": 82.3914373088685, + "grad_norm": 0.23190239071846008, + "learning_rate": 0.0006, + "loss": 3.4560375213623047, + "step": 5932 + }, + { + "epoch": 82.40541721275666, + "grad_norm": 0.26482656598091125, + "learning_rate": 0.0006, + "loss": 3.4604647159576416, + "step": 5933 + }, + { + "epoch": 82.41939711664482, + "grad_norm": 0.24802184104919434, + "learning_rate": 0.0006, + "loss": 3.414149284362793, + "step": 5934 + }, + { + "epoch": 82.43337702053299, + "grad_norm": 0.22652000188827515, + "learning_rate": 0.0006, + "loss": 3.473421096801758, + "step": 5935 + }, + { + "epoch": 82.44735692442114, + "grad_norm": 0.22467140853405, + "learning_rate": 0.0006, + "loss": 3.451671600341797, + "step": 5936 + }, + { + "epoch": 82.4613368283093, + "grad_norm": 0.244468092918396, + "learning_rate": 0.0006, + "loss": 3.4695382118225098, + "step": 5937 + }, + { + "epoch": 82.47531673219747, + "grad_norm": 0.2423151284456253, + "learning_rate": 0.0006, + "loss": 3.45648193359375, + "step": 5938 + }, + { + "epoch": 82.48929663608563, + "grad_norm": 0.24979142844676971, + "learning_rate": 0.0006, + "loss": 3.4783148765563965, + "step": 5939 + }, + { + "epoch": 82.50327653997378, + "grad_norm": 0.2788648009300232, + "learning_rate": 0.0006, + "loss": 3.457810401916504, + "step": 5940 + }, + { + "epoch": 82.51725644386195, + "grad_norm": 0.2886991500854492, + "learning_rate": 0.0006, + "loss": 3.479522228240967, + "step": 5941 + }, + { + "epoch": 82.53123634775011, + "grad_norm": 0.26907554268836975, + "learning_rate": 0.0006, + "loss": 3.449568510055542, + "step": 5942 + }, + { + "epoch": 82.54521625163827, + "grad_norm": 0.2253459244966507, + "learning_rate": 0.0006, + "loss": 3.4410414695739746, + "step": 5943 + }, + { + "epoch": 82.55919615552644, + "grad_norm": 0.23267745971679688, + "learning_rate": 0.0006, + "loss": 3.4297232627868652, + "step": 5944 + }, + { + "epoch": 82.57317605941459, + "grad_norm": 0.2892511785030365, + "learning_rate": 0.0006, + "loss": 3.4358129501342773, + "step": 5945 + }, + { + "epoch": 82.58715596330275, + "grad_norm": 0.2826172113418579, + "learning_rate": 0.0006, + "loss": 3.46335506439209, + "step": 5946 + }, + { + "epoch": 82.60113586719092, + "grad_norm": 0.2273692488670349, + "learning_rate": 0.0006, + "loss": 3.5010366439819336, + "step": 5947 + }, + { + "epoch": 82.61511577107908, + "grad_norm": 0.21712201833724976, + "learning_rate": 0.0006, + "loss": 3.4793381690979004, + "step": 5948 + }, + { + "epoch": 82.62909567496723, + "grad_norm": 0.22338661551475525, + "learning_rate": 0.0006, + "loss": 3.4844970703125, + "step": 5949 + }, + { + "epoch": 82.6430755788554, + "grad_norm": 0.21227683126926422, + "learning_rate": 0.0006, + "loss": 3.4780616760253906, + "step": 5950 + }, + { + "epoch": 82.65705548274356, + "grad_norm": 0.22288236021995544, + "learning_rate": 0.0006, + "loss": 3.4671804904937744, + "step": 5951 + }, + { + "epoch": 82.67103538663171, + "grad_norm": 0.23190240561962128, + "learning_rate": 0.0006, + "loss": 3.5143930912017822, + "step": 5952 + }, + { + "epoch": 82.68501529051987, + "grad_norm": 0.21063187718391418, + "learning_rate": 0.0006, + "loss": 3.497652530670166, + "step": 5953 + }, + { + "epoch": 82.69899519440804, + "grad_norm": 0.2175041288137436, + "learning_rate": 0.0006, + "loss": 3.4725892543792725, + "step": 5954 + }, + { + "epoch": 82.7129750982962, + "grad_norm": 0.23813064396381378, + "learning_rate": 0.0006, + "loss": 3.480269193649292, + "step": 5955 + }, + { + "epoch": 82.72695500218435, + "grad_norm": 0.1962498128414154, + "learning_rate": 0.0006, + "loss": 3.4666576385498047, + "step": 5956 + }, + { + "epoch": 82.74093490607252, + "grad_norm": 0.20937910676002502, + "learning_rate": 0.0006, + "loss": 3.485138416290283, + "step": 5957 + }, + { + "epoch": 82.75491480996068, + "grad_norm": 0.23929032683372498, + "learning_rate": 0.0006, + "loss": 3.4557695388793945, + "step": 5958 + }, + { + "epoch": 82.76889471384884, + "grad_norm": 0.21904121339321136, + "learning_rate": 0.0006, + "loss": 3.477562427520752, + "step": 5959 + }, + { + "epoch": 82.78287461773701, + "grad_norm": 0.20288591086864471, + "learning_rate": 0.0006, + "loss": 3.4972333908081055, + "step": 5960 + }, + { + "epoch": 82.79685452162516, + "grad_norm": 0.2116696536540985, + "learning_rate": 0.0006, + "loss": 3.48240327835083, + "step": 5961 + }, + { + "epoch": 82.81083442551332, + "grad_norm": 0.22824831306934357, + "learning_rate": 0.0006, + "loss": 3.4596962928771973, + "step": 5962 + }, + { + "epoch": 82.82481432940149, + "grad_norm": 0.2335250973701477, + "learning_rate": 0.0006, + "loss": 3.477674961090088, + "step": 5963 + }, + { + "epoch": 82.83879423328965, + "grad_norm": 0.24267305433750153, + "learning_rate": 0.0006, + "loss": 3.5068936347961426, + "step": 5964 + }, + { + "epoch": 82.8527741371778, + "grad_norm": 0.22586151957511902, + "learning_rate": 0.0006, + "loss": 3.5154266357421875, + "step": 5965 + }, + { + "epoch": 82.86675404106597, + "grad_norm": 0.219172403216362, + "learning_rate": 0.0006, + "loss": 3.4788248538970947, + "step": 5966 + }, + { + "epoch": 82.88073394495413, + "grad_norm": 0.230057954788208, + "learning_rate": 0.0006, + "loss": 3.463099479675293, + "step": 5967 + }, + { + "epoch": 82.89471384884229, + "grad_norm": 0.24492645263671875, + "learning_rate": 0.0006, + "loss": 3.495624542236328, + "step": 5968 + }, + { + "epoch": 82.90869375273044, + "grad_norm": 0.2710586488246918, + "learning_rate": 0.0006, + "loss": 3.4884939193725586, + "step": 5969 + }, + { + "epoch": 82.92267365661861, + "grad_norm": 0.26602303981781006, + "learning_rate": 0.0006, + "loss": 3.5522756576538086, + "step": 5970 + }, + { + "epoch": 82.93665356050677, + "grad_norm": 0.21950770914554596, + "learning_rate": 0.0006, + "loss": 3.506800651550293, + "step": 5971 + }, + { + "epoch": 82.95063346439493, + "grad_norm": 0.2120460718870163, + "learning_rate": 0.0006, + "loss": 3.4889087677001953, + "step": 5972 + }, + { + "epoch": 82.9646133682831, + "grad_norm": 0.23518255352973938, + "learning_rate": 0.0006, + "loss": 3.4935286045074463, + "step": 5973 + }, + { + "epoch": 82.97859327217125, + "grad_norm": 0.2183351367712021, + "learning_rate": 0.0006, + "loss": 3.4557912349700928, + "step": 5974 + }, + { + "epoch": 82.99257317605941, + "grad_norm": 0.21057291328907013, + "learning_rate": 0.0006, + "loss": 3.494884967803955, + "step": 5975 + }, + { + "epoch": 83.0, + "grad_norm": 0.23379701375961304, + "learning_rate": 0.0006, + "loss": 3.537684202194214, + "step": 5976 + }, + { + "epoch": 83.0, + "eval_loss": 3.996980667114258, + "eval_runtime": 44.805, + "eval_samples_per_second": 54.503, + "eval_steps_per_second": 3.415, + "step": 5976 + }, + { + "epoch": 83.01397990388816, + "grad_norm": 0.21832400560379028, + "learning_rate": 0.0006, + "loss": 3.4219069480895996, + "step": 5977 + }, + { + "epoch": 83.02795980777633, + "grad_norm": 0.22840751707553864, + "learning_rate": 0.0006, + "loss": 3.444056987762451, + "step": 5978 + }, + { + "epoch": 83.04193971166448, + "grad_norm": 0.24846753478050232, + "learning_rate": 0.0006, + "loss": 3.433744430541992, + "step": 5979 + }, + { + "epoch": 83.05591961555264, + "grad_norm": 0.2614847421646118, + "learning_rate": 0.0006, + "loss": 3.4292588233947754, + "step": 5980 + }, + { + "epoch": 83.06989951944081, + "grad_norm": 0.2762290835380554, + "learning_rate": 0.0006, + "loss": 3.4379489421844482, + "step": 5981 + }, + { + "epoch": 83.08387942332897, + "grad_norm": 0.2695395052433014, + "learning_rate": 0.0006, + "loss": 3.435392141342163, + "step": 5982 + }, + { + "epoch": 83.09785932721712, + "grad_norm": 0.285564661026001, + "learning_rate": 0.0006, + "loss": 3.4732954502105713, + "step": 5983 + }, + { + "epoch": 83.1118392311053, + "grad_norm": 0.28408879041671753, + "learning_rate": 0.0006, + "loss": 3.460115432739258, + "step": 5984 + }, + { + "epoch": 83.12581913499345, + "grad_norm": 0.2638843357563019, + "learning_rate": 0.0006, + "loss": 3.4600658416748047, + "step": 5985 + }, + { + "epoch": 83.1397990388816, + "grad_norm": 0.276947557926178, + "learning_rate": 0.0006, + "loss": 3.427304744720459, + "step": 5986 + }, + { + "epoch": 83.15377894276976, + "grad_norm": 0.29645398259162903, + "learning_rate": 0.0006, + "loss": 3.49354887008667, + "step": 5987 + }, + { + "epoch": 83.16775884665793, + "grad_norm": 0.24671341478824615, + "learning_rate": 0.0006, + "loss": 3.418001890182495, + "step": 5988 + }, + { + "epoch": 83.18173875054609, + "grad_norm": 0.23004917800426483, + "learning_rate": 0.0006, + "loss": 3.4566028118133545, + "step": 5989 + }, + { + "epoch": 83.19571865443424, + "grad_norm": 0.2323729544878006, + "learning_rate": 0.0006, + "loss": 3.476187229156494, + "step": 5990 + }, + { + "epoch": 83.20969855832242, + "grad_norm": 0.2461102306842804, + "learning_rate": 0.0006, + "loss": 3.4485220909118652, + "step": 5991 + }, + { + "epoch": 83.22367846221057, + "grad_norm": 0.2316771298646927, + "learning_rate": 0.0006, + "loss": 3.4753873348236084, + "step": 5992 + }, + { + "epoch": 83.23765836609873, + "grad_norm": 0.21398794651031494, + "learning_rate": 0.0006, + "loss": 3.4336280822753906, + "step": 5993 + }, + { + "epoch": 83.2516382699869, + "grad_norm": 0.2328646034002304, + "learning_rate": 0.0006, + "loss": 3.4349019527435303, + "step": 5994 + }, + { + "epoch": 83.26561817387505, + "grad_norm": 0.2613484859466553, + "learning_rate": 0.0006, + "loss": 3.4748740196228027, + "step": 5995 + }, + { + "epoch": 83.27959807776321, + "grad_norm": 0.24692191183567047, + "learning_rate": 0.0006, + "loss": 3.469376802444458, + "step": 5996 + }, + { + "epoch": 83.29357798165138, + "grad_norm": 0.21643374860286713, + "learning_rate": 0.0006, + "loss": 3.4703941345214844, + "step": 5997 + }, + { + "epoch": 83.30755788553954, + "grad_norm": 0.2107238620519638, + "learning_rate": 0.0006, + "loss": 3.4441919326782227, + "step": 5998 + }, + { + "epoch": 83.3215377894277, + "grad_norm": 0.2236919403076172, + "learning_rate": 0.0006, + "loss": 3.475111484527588, + "step": 5999 + }, + { + "epoch": 83.33551769331586, + "grad_norm": 0.23031125962734222, + "learning_rate": 0.0006, + "loss": 3.463629961013794, + "step": 6000 + }, + { + "epoch": 83.34949759720402, + "grad_norm": 0.23520728945732117, + "learning_rate": 0.0006, + "loss": 3.4377198219299316, + "step": 6001 + }, + { + "epoch": 83.36347750109218, + "grad_norm": 0.24083353579044342, + "learning_rate": 0.0006, + "loss": 3.4637320041656494, + "step": 6002 + }, + { + "epoch": 83.37745740498035, + "grad_norm": 0.2591738700866699, + "learning_rate": 0.0006, + "loss": 3.4864988327026367, + "step": 6003 + }, + { + "epoch": 83.3914373088685, + "grad_norm": 0.22105777263641357, + "learning_rate": 0.0006, + "loss": 3.425142288208008, + "step": 6004 + }, + { + "epoch": 83.40541721275666, + "grad_norm": 0.22660304605960846, + "learning_rate": 0.0006, + "loss": 3.468355894088745, + "step": 6005 + }, + { + "epoch": 83.41939711664482, + "grad_norm": 0.320535808801651, + "learning_rate": 0.0006, + "loss": 3.448850631713867, + "step": 6006 + }, + { + "epoch": 83.43337702053299, + "grad_norm": 0.3168669044971466, + "learning_rate": 0.0006, + "loss": 3.4643197059631348, + "step": 6007 + }, + { + "epoch": 83.44735692442114, + "grad_norm": 0.2560042440891266, + "learning_rate": 0.0006, + "loss": 3.475637912750244, + "step": 6008 + }, + { + "epoch": 83.4613368283093, + "grad_norm": 0.21204592287540436, + "learning_rate": 0.0006, + "loss": 3.4471921920776367, + "step": 6009 + }, + { + "epoch": 83.47531673219747, + "grad_norm": 0.21767926216125488, + "learning_rate": 0.0006, + "loss": 3.4536280632019043, + "step": 6010 + }, + { + "epoch": 83.48929663608563, + "grad_norm": 0.24681858718395233, + "learning_rate": 0.0006, + "loss": 3.4713847637176514, + "step": 6011 + }, + { + "epoch": 83.50327653997378, + "grad_norm": 0.26184895634651184, + "learning_rate": 0.0006, + "loss": 3.4650652408599854, + "step": 6012 + }, + { + "epoch": 83.51725644386195, + "grad_norm": 0.24959588050842285, + "learning_rate": 0.0006, + "loss": 3.4610469341278076, + "step": 6013 + }, + { + "epoch": 83.53123634775011, + "grad_norm": 0.2062264084815979, + "learning_rate": 0.0006, + "loss": 3.477700710296631, + "step": 6014 + }, + { + "epoch": 83.54521625163827, + "grad_norm": 0.212580144405365, + "learning_rate": 0.0006, + "loss": 3.450294017791748, + "step": 6015 + }, + { + "epoch": 83.55919615552644, + "grad_norm": 0.24017730355262756, + "learning_rate": 0.0006, + "loss": 3.4375219345092773, + "step": 6016 + }, + { + "epoch": 83.57317605941459, + "grad_norm": 0.29706305265426636, + "learning_rate": 0.0006, + "loss": 3.4510207176208496, + "step": 6017 + }, + { + "epoch": 83.58715596330275, + "grad_norm": 0.29583004117012024, + "learning_rate": 0.0006, + "loss": 3.463989734649658, + "step": 6018 + }, + { + "epoch": 83.60113586719092, + "grad_norm": 0.22219108045101166, + "learning_rate": 0.0006, + "loss": 3.4602017402648926, + "step": 6019 + }, + { + "epoch": 83.61511577107908, + "grad_norm": 0.2245914787054062, + "learning_rate": 0.0006, + "loss": 3.4729413986206055, + "step": 6020 + }, + { + "epoch": 83.62909567496723, + "grad_norm": 0.2378871887922287, + "learning_rate": 0.0006, + "loss": 3.493058443069458, + "step": 6021 + }, + { + "epoch": 83.6430755788554, + "grad_norm": 0.2393491417169571, + "learning_rate": 0.0006, + "loss": 3.481888771057129, + "step": 6022 + }, + { + "epoch": 83.65705548274356, + "grad_norm": 0.22587546706199646, + "learning_rate": 0.0006, + "loss": 3.4741945266723633, + "step": 6023 + }, + { + "epoch": 83.67103538663171, + "grad_norm": 0.21970580518245697, + "learning_rate": 0.0006, + "loss": 3.453437089920044, + "step": 6024 + }, + { + "epoch": 83.68501529051987, + "grad_norm": 0.28560149669647217, + "learning_rate": 0.0006, + "loss": 3.4655563831329346, + "step": 6025 + }, + { + "epoch": 83.69899519440804, + "grad_norm": 0.3692651689052582, + "learning_rate": 0.0006, + "loss": 3.466190814971924, + "step": 6026 + }, + { + "epoch": 83.7129750982962, + "grad_norm": 0.2955428659915924, + "learning_rate": 0.0006, + "loss": 3.471492052078247, + "step": 6027 + }, + { + "epoch": 83.72695500218435, + "grad_norm": 0.21010912954807281, + "learning_rate": 0.0006, + "loss": 3.4699859619140625, + "step": 6028 + }, + { + "epoch": 83.74093490607252, + "grad_norm": 0.26358452439308167, + "learning_rate": 0.0006, + "loss": 3.4771690368652344, + "step": 6029 + }, + { + "epoch": 83.75491480996068, + "grad_norm": 0.2645658850669861, + "learning_rate": 0.0006, + "loss": 3.4879064559936523, + "step": 6030 + }, + { + "epoch": 83.76889471384884, + "grad_norm": 0.21529845893383026, + "learning_rate": 0.0006, + "loss": 3.483954429626465, + "step": 6031 + }, + { + "epoch": 83.78287461773701, + "grad_norm": 0.2099343240261078, + "learning_rate": 0.0006, + "loss": 3.4544146060943604, + "step": 6032 + }, + { + "epoch": 83.79685452162516, + "grad_norm": 0.2181747704744339, + "learning_rate": 0.0006, + "loss": 3.491983413696289, + "step": 6033 + }, + { + "epoch": 83.81083442551332, + "grad_norm": 0.23016685247421265, + "learning_rate": 0.0006, + "loss": 3.4659135341644287, + "step": 6034 + }, + { + "epoch": 83.82481432940149, + "grad_norm": 0.2403937429189682, + "learning_rate": 0.0006, + "loss": 3.506269931793213, + "step": 6035 + }, + { + "epoch": 83.83879423328965, + "grad_norm": 0.22122806310653687, + "learning_rate": 0.0006, + "loss": 3.4617505073547363, + "step": 6036 + }, + { + "epoch": 83.8527741371778, + "grad_norm": 0.22495940327644348, + "learning_rate": 0.0006, + "loss": 3.4756948947906494, + "step": 6037 + }, + { + "epoch": 83.86675404106597, + "grad_norm": 0.22538618743419647, + "learning_rate": 0.0006, + "loss": 3.488034725189209, + "step": 6038 + }, + { + "epoch": 83.88073394495413, + "grad_norm": 0.2117580771446228, + "learning_rate": 0.0006, + "loss": 3.4975039958953857, + "step": 6039 + }, + { + "epoch": 83.89471384884229, + "grad_norm": 0.2120361030101776, + "learning_rate": 0.0006, + "loss": 3.4867331981658936, + "step": 6040 + }, + { + "epoch": 83.90869375273044, + "grad_norm": 0.19643139839172363, + "learning_rate": 0.0006, + "loss": 3.488924980163574, + "step": 6041 + }, + { + "epoch": 83.92267365661861, + "grad_norm": 0.19628021121025085, + "learning_rate": 0.0006, + "loss": 3.461667060852051, + "step": 6042 + }, + { + "epoch": 83.93665356050677, + "grad_norm": 0.20119936764240265, + "learning_rate": 0.0006, + "loss": 3.4937024116516113, + "step": 6043 + }, + { + "epoch": 83.95063346439493, + "grad_norm": 0.2125128209590912, + "learning_rate": 0.0006, + "loss": 3.4840517044067383, + "step": 6044 + }, + { + "epoch": 83.9646133682831, + "grad_norm": 0.20223572850227356, + "learning_rate": 0.0006, + "loss": 3.5131449699401855, + "step": 6045 + }, + { + "epoch": 83.97859327217125, + "grad_norm": 0.20483054220676422, + "learning_rate": 0.0006, + "loss": 3.471453905105591, + "step": 6046 + }, + { + "epoch": 83.99257317605941, + "grad_norm": 0.2104625701904297, + "learning_rate": 0.0006, + "loss": 3.4952552318573, + "step": 6047 + }, + { + "epoch": 84.0, + "grad_norm": 0.2537861764431, + "learning_rate": 0.0006, + "loss": 3.536937713623047, + "step": 6048 + }, + { + "epoch": 84.0, + "eval_loss": 3.989513635635376, + "eval_runtime": 44.16, + "eval_samples_per_second": 55.299, + "eval_steps_per_second": 3.465, + "step": 6048 + }, + { + "epoch": 84.01397990388816, + "grad_norm": 0.2248591184616089, + "learning_rate": 0.0006, + "loss": 3.4172749519348145, + "step": 6049 + }, + { + "epoch": 84.02795980777633, + "grad_norm": 0.27182599902153015, + "learning_rate": 0.0006, + "loss": 3.4543704986572266, + "step": 6050 + }, + { + "epoch": 84.04193971166448, + "grad_norm": 0.26215022802352905, + "learning_rate": 0.0006, + "loss": 3.4160256385803223, + "step": 6051 + }, + { + "epoch": 84.05591961555264, + "grad_norm": 0.24477700889110565, + "learning_rate": 0.0006, + "loss": 3.449690580368042, + "step": 6052 + }, + { + "epoch": 84.06989951944081, + "grad_norm": 0.23101462423801422, + "learning_rate": 0.0006, + "loss": 3.4241368770599365, + "step": 6053 + }, + { + "epoch": 84.08387942332897, + "grad_norm": 0.23638324439525604, + "learning_rate": 0.0006, + "loss": 3.444488763809204, + "step": 6054 + }, + { + "epoch": 84.09785932721712, + "grad_norm": 0.24425800144672394, + "learning_rate": 0.0006, + "loss": 3.4568278789520264, + "step": 6055 + }, + { + "epoch": 84.1118392311053, + "grad_norm": 0.23753057420253754, + "learning_rate": 0.0006, + "loss": 3.452538013458252, + "step": 6056 + }, + { + "epoch": 84.12581913499345, + "grad_norm": 0.2202109545469284, + "learning_rate": 0.0006, + "loss": 3.4488167762756348, + "step": 6057 + }, + { + "epoch": 84.1397990388816, + "grad_norm": 0.2211986482143402, + "learning_rate": 0.0006, + "loss": 3.452159881591797, + "step": 6058 + }, + { + "epoch": 84.15377894276976, + "grad_norm": 0.21936428546905518, + "learning_rate": 0.0006, + "loss": 3.4460606575012207, + "step": 6059 + }, + { + "epoch": 84.16775884665793, + "grad_norm": 0.21079182624816895, + "learning_rate": 0.0006, + "loss": 3.4201436042785645, + "step": 6060 + }, + { + "epoch": 84.18173875054609, + "grad_norm": 0.22017350792884827, + "learning_rate": 0.0006, + "loss": 3.4632251262664795, + "step": 6061 + }, + { + "epoch": 84.19571865443424, + "grad_norm": 0.23758259415626526, + "learning_rate": 0.0006, + "loss": 3.453155994415283, + "step": 6062 + }, + { + "epoch": 84.20969855832242, + "grad_norm": 0.21984682977199554, + "learning_rate": 0.0006, + "loss": 3.4506678581237793, + "step": 6063 + }, + { + "epoch": 84.22367846221057, + "grad_norm": 0.22029472887516022, + "learning_rate": 0.0006, + "loss": 3.505845069885254, + "step": 6064 + }, + { + "epoch": 84.23765836609873, + "grad_norm": 0.21249033510684967, + "learning_rate": 0.0006, + "loss": 3.438363552093506, + "step": 6065 + }, + { + "epoch": 84.2516382699869, + "grad_norm": 0.22138963639736176, + "learning_rate": 0.0006, + "loss": 3.452883243560791, + "step": 6066 + }, + { + "epoch": 84.26561817387505, + "grad_norm": 0.23665833473205566, + "learning_rate": 0.0006, + "loss": 3.4265031814575195, + "step": 6067 + }, + { + "epoch": 84.27959807776321, + "grad_norm": 0.20779378712177277, + "learning_rate": 0.0006, + "loss": 3.4495396614074707, + "step": 6068 + }, + { + "epoch": 84.29357798165138, + "grad_norm": 0.2145044356584549, + "learning_rate": 0.0006, + "loss": 3.479349136352539, + "step": 6069 + }, + { + "epoch": 84.30755788553954, + "grad_norm": 0.24075593054294586, + "learning_rate": 0.0006, + "loss": 3.460493564605713, + "step": 6070 + }, + { + "epoch": 84.3215377894277, + "grad_norm": 0.2375558763742447, + "learning_rate": 0.0006, + "loss": 3.507908344268799, + "step": 6071 + }, + { + "epoch": 84.33551769331586, + "grad_norm": 0.2408781200647354, + "learning_rate": 0.0006, + "loss": 3.44984769821167, + "step": 6072 + }, + { + "epoch": 84.34949759720402, + "grad_norm": 0.228886216878891, + "learning_rate": 0.0006, + "loss": 3.4552290439605713, + "step": 6073 + }, + { + "epoch": 84.36347750109218, + "grad_norm": 0.2186277210712433, + "learning_rate": 0.0006, + "loss": 3.455961227416992, + "step": 6074 + }, + { + "epoch": 84.37745740498035, + "grad_norm": 0.24890686571598053, + "learning_rate": 0.0006, + "loss": 3.4671201705932617, + "step": 6075 + }, + { + "epoch": 84.3914373088685, + "grad_norm": 0.302213191986084, + "learning_rate": 0.0006, + "loss": 3.4628589153289795, + "step": 6076 + }, + { + "epoch": 84.40541721275666, + "grad_norm": 0.2934368848800659, + "learning_rate": 0.0006, + "loss": 3.455357313156128, + "step": 6077 + }, + { + "epoch": 84.41939711664482, + "grad_norm": 0.2314663529396057, + "learning_rate": 0.0006, + "loss": 3.4733433723449707, + "step": 6078 + }, + { + "epoch": 84.43337702053299, + "grad_norm": 0.24621376395225525, + "learning_rate": 0.0006, + "loss": 3.413661003112793, + "step": 6079 + }, + { + "epoch": 84.44735692442114, + "grad_norm": 0.2592419683933258, + "learning_rate": 0.0006, + "loss": 3.441049098968506, + "step": 6080 + }, + { + "epoch": 84.4613368283093, + "grad_norm": 0.25599732995033264, + "learning_rate": 0.0006, + "loss": 3.433962106704712, + "step": 6081 + }, + { + "epoch": 84.47531673219747, + "grad_norm": 0.22425663471221924, + "learning_rate": 0.0006, + "loss": 3.456338882446289, + "step": 6082 + }, + { + "epoch": 84.48929663608563, + "grad_norm": 0.20109711587429047, + "learning_rate": 0.0006, + "loss": 3.4308509826660156, + "step": 6083 + }, + { + "epoch": 84.50327653997378, + "grad_norm": 0.23206867277622223, + "learning_rate": 0.0006, + "loss": 3.4620723724365234, + "step": 6084 + }, + { + "epoch": 84.51725644386195, + "grad_norm": 0.2772260010242462, + "learning_rate": 0.0006, + "loss": 3.4994330406188965, + "step": 6085 + }, + { + "epoch": 84.53123634775011, + "grad_norm": 0.22506068646907806, + "learning_rate": 0.0006, + "loss": 3.4822869300842285, + "step": 6086 + }, + { + "epoch": 84.54521625163827, + "grad_norm": 0.2665281295776367, + "learning_rate": 0.0006, + "loss": 3.446537494659424, + "step": 6087 + }, + { + "epoch": 84.55919615552644, + "grad_norm": 0.3100028336048126, + "learning_rate": 0.0006, + "loss": 3.4393982887268066, + "step": 6088 + }, + { + "epoch": 84.57317605941459, + "grad_norm": 0.2912586033344269, + "learning_rate": 0.0006, + "loss": 3.4340028762817383, + "step": 6089 + }, + { + "epoch": 84.58715596330275, + "grad_norm": 0.24330151081085205, + "learning_rate": 0.0006, + "loss": 3.501587152481079, + "step": 6090 + }, + { + "epoch": 84.60113586719092, + "grad_norm": 0.23389802873134613, + "learning_rate": 0.0006, + "loss": 3.4583606719970703, + "step": 6091 + }, + { + "epoch": 84.61511577107908, + "grad_norm": 0.24052485823631287, + "learning_rate": 0.0006, + "loss": 3.4798378944396973, + "step": 6092 + }, + { + "epoch": 84.62909567496723, + "grad_norm": 0.25821569561958313, + "learning_rate": 0.0006, + "loss": 3.4377129077911377, + "step": 6093 + }, + { + "epoch": 84.6430755788554, + "grad_norm": 0.22608289122581482, + "learning_rate": 0.0006, + "loss": 3.468690872192383, + "step": 6094 + }, + { + "epoch": 84.65705548274356, + "grad_norm": 0.22002574801445007, + "learning_rate": 0.0006, + "loss": 3.5027618408203125, + "step": 6095 + }, + { + "epoch": 84.67103538663171, + "grad_norm": 0.2419431507587433, + "learning_rate": 0.0006, + "loss": 3.4669971466064453, + "step": 6096 + }, + { + "epoch": 84.68501529051987, + "grad_norm": 0.2721652090549469, + "learning_rate": 0.0006, + "loss": 3.4732742309570312, + "step": 6097 + }, + { + "epoch": 84.69899519440804, + "grad_norm": 0.27164995670318604, + "learning_rate": 0.0006, + "loss": 3.4675357341766357, + "step": 6098 + }, + { + "epoch": 84.7129750982962, + "grad_norm": 0.19506578147411346, + "learning_rate": 0.0006, + "loss": 3.492837905883789, + "step": 6099 + }, + { + "epoch": 84.72695500218435, + "grad_norm": 0.22092986106872559, + "learning_rate": 0.0006, + "loss": 3.4465227127075195, + "step": 6100 + }, + { + "epoch": 84.74093490607252, + "grad_norm": 0.2180197536945343, + "learning_rate": 0.0006, + "loss": 3.4740982055664062, + "step": 6101 + }, + { + "epoch": 84.75491480996068, + "grad_norm": 0.19666659832000732, + "learning_rate": 0.0006, + "loss": 3.445955276489258, + "step": 6102 + }, + { + "epoch": 84.76889471384884, + "grad_norm": 0.22210383415222168, + "learning_rate": 0.0006, + "loss": 3.4983019828796387, + "step": 6103 + }, + { + "epoch": 84.78287461773701, + "grad_norm": 0.25071144104003906, + "learning_rate": 0.0006, + "loss": 3.4750094413757324, + "step": 6104 + }, + { + "epoch": 84.79685452162516, + "grad_norm": 0.21576249599456787, + "learning_rate": 0.0006, + "loss": 3.4875924587249756, + "step": 6105 + }, + { + "epoch": 84.81083442551332, + "grad_norm": 0.19657064974308014, + "learning_rate": 0.0006, + "loss": 3.491100788116455, + "step": 6106 + }, + { + "epoch": 84.82481432940149, + "grad_norm": 0.21463964879512787, + "learning_rate": 0.0006, + "loss": 3.4915409088134766, + "step": 6107 + }, + { + "epoch": 84.83879423328965, + "grad_norm": 0.22589972615242004, + "learning_rate": 0.0006, + "loss": 3.488877773284912, + "step": 6108 + }, + { + "epoch": 84.8527741371778, + "grad_norm": 0.22119449079036713, + "learning_rate": 0.0006, + "loss": 3.4533658027648926, + "step": 6109 + }, + { + "epoch": 84.86675404106597, + "grad_norm": 0.2318703979253769, + "learning_rate": 0.0006, + "loss": 3.5024518966674805, + "step": 6110 + }, + { + "epoch": 84.88073394495413, + "grad_norm": 0.24036799371242523, + "learning_rate": 0.0006, + "loss": 3.4885616302490234, + "step": 6111 + }, + { + "epoch": 84.89471384884229, + "grad_norm": 0.22559893131256104, + "learning_rate": 0.0006, + "loss": 3.5178074836730957, + "step": 6112 + }, + { + "epoch": 84.90869375273044, + "grad_norm": 0.22396491467952728, + "learning_rate": 0.0006, + "loss": 3.4722352027893066, + "step": 6113 + }, + { + "epoch": 84.92267365661861, + "grad_norm": 0.22184233367443085, + "learning_rate": 0.0006, + "loss": 3.4839789867401123, + "step": 6114 + }, + { + "epoch": 84.93665356050677, + "grad_norm": 0.26118555665016174, + "learning_rate": 0.0006, + "loss": 3.4721474647521973, + "step": 6115 + }, + { + "epoch": 84.95063346439493, + "grad_norm": 0.28956303000450134, + "learning_rate": 0.0006, + "loss": 3.4905753135681152, + "step": 6116 + }, + { + "epoch": 84.9646133682831, + "grad_norm": 0.258308082818985, + "learning_rate": 0.0006, + "loss": 3.473489761352539, + "step": 6117 + }, + { + "epoch": 84.97859327217125, + "grad_norm": 0.21734404563903809, + "learning_rate": 0.0006, + "loss": 3.5029823780059814, + "step": 6118 + }, + { + "epoch": 84.99257317605941, + "grad_norm": 0.21607917547225952, + "learning_rate": 0.0006, + "loss": 3.4702606201171875, + "step": 6119 + }, + { + "epoch": 85.0, + "grad_norm": 0.24650561809539795, + "learning_rate": 0.0006, + "loss": 3.4621410369873047, + "step": 6120 + }, + { + "epoch": 85.0, + "eval_loss": 3.9854979515075684, + "eval_runtime": 44.9547, + "eval_samples_per_second": 54.321, + "eval_steps_per_second": 3.403, + "step": 6120 + }, + { + "epoch": 85.01397990388816, + "grad_norm": 0.25260618329048157, + "learning_rate": 0.0006, + "loss": 3.4214212894439697, + "step": 6121 + }, + { + "epoch": 85.02795980777633, + "grad_norm": 0.2447933405637741, + "learning_rate": 0.0006, + "loss": 3.4772560596466064, + "step": 6122 + }, + { + "epoch": 85.04193971166448, + "grad_norm": 0.26787659525871277, + "learning_rate": 0.0006, + "loss": 3.4550516605377197, + "step": 6123 + }, + { + "epoch": 85.05591961555264, + "grad_norm": 0.31014591455459595, + "learning_rate": 0.0006, + "loss": 3.4330554008483887, + "step": 6124 + }, + { + "epoch": 85.06989951944081, + "grad_norm": 0.2865329682826996, + "learning_rate": 0.0006, + "loss": 3.465020179748535, + "step": 6125 + }, + { + "epoch": 85.08387942332897, + "grad_norm": 0.2665972411632538, + "learning_rate": 0.0006, + "loss": 3.465394973754883, + "step": 6126 + }, + { + "epoch": 85.09785932721712, + "grad_norm": 0.2712230980396271, + "learning_rate": 0.0006, + "loss": 3.4400854110717773, + "step": 6127 + }, + { + "epoch": 85.1118392311053, + "grad_norm": 0.2657718360424042, + "learning_rate": 0.0006, + "loss": 3.4523370265960693, + "step": 6128 + }, + { + "epoch": 85.12581913499345, + "grad_norm": 0.242838516831398, + "learning_rate": 0.0006, + "loss": 3.465041160583496, + "step": 6129 + }, + { + "epoch": 85.1397990388816, + "grad_norm": 0.23150339722633362, + "learning_rate": 0.0006, + "loss": 3.4810791015625, + "step": 6130 + }, + { + "epoch": 85.15377894276976, + "grad_norm": 0.24861405789852142, + "learning_rate": 0.0006, + "loss": 3.4644157886505127, + "step": 6131 + }, + { + "epoch": 85.16775884665793, + "grad_norm": 0.25343751907348633, + "learning_rate": 0.0006, + "loss": 3.4637880325317383, + "step": 6132 + }, + { + "epoch": 85.18173875054609, + "grad_norm": 0.2547624409198761, + "learning_rate": 0.0006, + "loss": 3.464709758758545, + "step": 6133 + }, + { + "epoch": 85.19571865443424, + "grad_norm": 0.2594977021217346, + "learning_rate": 0.0006, + "loss": 3.4151370525360107, + "step": 6134 + }, + { + "epoch": 85.20969855832242, + "grad_norm": 0.27304983139038086, + "learning_rate": 0.0006, + "loss": 3.4454474449157715, + "step": 6135 + }, + { + "epoch": 85.22367846221057, + "grad_norm": 0.23261943459510803, + "learning_rate": 0.0006, + "loss": 3.46285080909729, + "step": 6136 + }, + { + "epoch": 85.23765836609873, + "grad_norm": 0.27577438950538635, + "learning_rate": 0.0006, + "loss": 3.475266218185425, + "step": 6137 + }, + { + "epoch": 85.2516382699869, + "grad_norm": 0.29520928859710693, + "learning_rate": 0.0006, + "loss": 3.426034450531006, + "step": 6138 + }, + { + "epoch": 85.26561817387505, + "grad_norm": 0.25007882714271545, + "learning_rate": 0.0006, + "loss": 3.4391825199127197, + "step": 6139 + }, + { + "epoch": 85.27959807776321, + "grad_norm": 0.24239672720432281, + "learning_rate": 0.0006, + "loss": 3.456017017364502, + "step": 6140 + }, + { + "epoch": 85.29357798165138, + "grad_norm": 0.2818496525287628, + "learning_rate": 0.0006, + "loss": 3.437286853790283, + "step": 6141 + }, + { + "epoch": 85.30755788553954, + "grad_norm": 0.25089263916015625, + "learning_rate": 0.0006, + "loss": 3.4476265907287598, + "step": 6142 + }, + { + "epoch": 85.3215377894277, + "grad_norm": 0.2364535629749298, + "learning_rate": 0.0006, + "loss": 3.4434220790863037, + "step": 6143 + }, + { + "epoch": 85.33551769331586, + "grad_norm": 0.21722905337810516, + "learning_rate": 0.0006, + "loss": 3.4470319747924805, + "step": 6144 + }, + { + "epoch": 85.34949759720402, + "grad_norm": 0.24389301240444183, + "learning_rate": 0.0006, + "loss": 3.458575963973999, + "step": 6145 + }, + { + "epoch": 85.36347750109218, + "grad_norm": 0.2579081356525421, + "learning_rate": 0.0006, + "loss": 3.4424850940704346, + "step": 6146 + }, + { + "epoch": 85.37745740498035, + "grad_norm": 0.25001347064971924, + "learning_rate": 0.0006, + "loss": 3.43218731880188, + "step": 6147 + }, + { + "epoch": 85.3914373088685, + "grad_norm": 0.24379317462444305, + "learning_rate": 0.0006, + "loss": 3.464128017425537, + "step": 6148 + }, + { + "epoch": 85.40541721275666, + "grad_norm": 0.22531644999980927, + "learning_rate": 0.0006, + "loss": 3.451855182647705, + "step": 6149 + }, + { + "epoch": 85.41939711664482, + "grad_norm": 0.266511470079422, + "learning_rate": 0.0006, + "loss": 3.4571762084960938, + "step": 6150 + }, + { + "epoch": 85.43337702053299, + "grad_norm": 0.2715734541416168, + "learning_rate": 0.0006, + "loss": 3.446192979812622, + "step": 6151 + }, + { + "epoch": 85.44735692442114, + "grad_norm": 0.2520029842853546, + "learning_rate": 0.0006, + "loss": 3.4267630577087402, + "step": 6152 + }, + { + "epoch": 85.4613368283093, + "grad_norm": 0.23507703840732574, + "learning_rate": 0.0006, + "loss": 3.455836296081543, + "step": 6153 + }, + { + "epoch": 85.47531673219747, + "grad_norm": 0.22633685171604156, + "learning_rate": 0.0006, + "loss": 3.4890408515930176, + "step": 6154 + }, + { + "epoch": 85.48929663608563, + "grad_norm": 0.23517028987407684, + "learning_rate": 0.0006, + "loss": 3.4446210861206055, + "step": 6155 + }, + { + "epoch": 85.50327653997378, + "grad_norm": 0.22825509309768677, + "learning_rate": 0.0006, + "loss": 3.480895519256592, + "step": 6156 + }, + { + "epoch": 85.51725644386195, + "grad_norm": 0.22553354501724243, + "learning_rate": 0.0006, + "loss": 3.465485095977783, + "step": 6157 + }, + { + "epoch": 85.53123634775011, + "grad_norm": 0.2150234878063202, + "learning_rate": 0.0006, + "loss": 3.4419214725494385, + "step": 6158 + }, + { + "epoch": 85.54521625163827, + "grad_norm": 0.19683769345283508, + "learning_rate": 0.0006, + "loss": 3.4606499671936035, + "step": 6159 + }, + { + "epoch": 85.55919615552644, + "grad_norm": 0.20103512704372406, + "learning_rate": 0.0006, + "loss": 3.4611430168151855, + "step": 6160 + }, + { + "epoch": 85.57317605941459, + "grad_norm": 0.21668195724487305, + "learning_rate": 0.0006, + "loss": 3.464637279510498, + "step": 6161 + }, + { + "epoch": 85.58715596330275, + "grad_norm": 0.2588590681552887, + "learning_rate": 0.0006, + "loss": 3.4581046104431152, + "step": 6162 + }, + { + "epoch": 85.60113586719092, + "grad_norm": 0.2931160032749176, + "learning_rate": 0.0006, + "loss": 3.4767394065856934, + "step": 6163 + }, + { + "epoch": 85.61511577107908, + "grad_norm": 0.2369699478149414, + "learning_rate": 0.0006, + "loss": 3.4526143074035645, + "step": 6164 + }, + { + "epoch": 85.62909567496723, + "grad_norm": 0.21278990805149078, + "learning_rate": 0.0006, + "loss": 3.4439449310302734, + "step": 6165 + }, + { + "epoch": 85.6430755788554, + "grad_norm": 0.22650624811649323, + "learning_rate": 0.0006, + "loss": 3.483211040496826, + "step": 6166 + }, + { + "epoch": 85.65705548274356, + "grad_norm": 0.23739252984523773, + "learning_rate": 0.0006, + "loss": 3.4801344871520996, + "step": 6167 + }, + { + "epoch": 85.67103538663171, + "grad_norm": 0.24526645243167877, + "learning_rate": 0.0006, + "loss": 3.492373466491699, + "step": 6168 + }, + { + "epoch": 85.68501529051987, + "grad_norm": 0.22212277352809906, + "learning_rate": 0.0006, + "loss": 3.4928934574127197, + "step": 6169 + }, + { + "epoch": 85.69899519440804, + "grad_norm": 0.21256189048290253, + "learning_rate": 0.0006, + "loss": 3.4808285236358643, + "step": 6170 + }, + { + "epoch": 85.7129750982962, + "grad_norm": 0.22779646515846252, + "learning_rate": 0.0006, + "loss": 3.497670888900757, + "step": 6171 + }, + { + "epoch": 85.72695500218435, + "grad_norm": 0.24342690408229828, + "learning_rate": 0.0006, + "loss": 3.470566749572754, + "step": 6172 + }, + { + "epoch": 85.74093490607252, + "grad_norm": 0.21688103675842285, + "learning_rate": 0.0006, + "loss": 3.470480442047119, + "step": 6173 + }, + { + "epoch": 85.75491480996068, + "grad_norm": 0.20727773010730743, + "learning_rate": 0.0006, + "loss": 3.465573310852051, + "step": 6174 + }, + { + "epoch": 85.76889471384884, + "grad_norm": 0.2293693721294403, + "learning_rate": 0.0006, + "loss": 3.4770543575286865, + "step": 6175 + }, + { + "epoch": 85.78287461773701, + "grad_norm": 0.22635893523693085, + "learning_rate": 0.0006, + "loss": 3.479179859161377, + "step": 6176 + }, + { + "epoch": 85.79685452162516, + "grad_norm": 0.2183343470096588, + "learning_rate": 0.0006, + "loss": 3.435756206512451, + "step": 6177 + }, + { + "epoch": 85.81083442551332, + "grad_norm": 0.23458422720432281, + "learning_rate": 0.0006, + "loss": 3.449631690979004, + "step": 6178 + }, + { + "epoch": 85.82481432940149, + "grad_norm": 0.22640752792358398, + "learning_rate": 0.0006, + "loss": 3.4607796669006348, + "step": 6179 + }, + { + "epoch": 85.83879423328965, + "grad_norm": 0.1991293728351593, + "learning_rate": 0.0006, + "loss": 3.4433794021606445, + "step": 6180 + }, + { + "epoch": 85.8527741371778, + "grad_norm": 0.19793502986431122, + "learning_rate": 0.0006, + "loss": 3.433073043823242, + "step": 6181 + }, + { + "epoch": 85.86675404106597, + "grad_norm": 0.23256038129329681, + "learning_rate": 0.0006, + "loss": 3.49361515045166, + "step": 6182 + }, + { + "epoch": 85.88073394495413, + "grad_norm": 0.24248147010803223, + "learning_rate": 0.0006, + "loss": 3.4868030548095703, + "step": 6183 + }, + { + "epoch": 85.89471384884229, + "grad_norm": 0.2330281287431717, + "learning_rate": 0.0006, + "loss": 3.4656119346618652, + "step": 6184 + }, + { + "epoch": 85.90869375273044, + "grad_norm": 0.24372607469558716, + "learning_rate": 0.0006, + "loss": 3.4641270637512207, + "step": 6185 + }, + { + "epoch": 85.92267365661861, + "grad_norm": 0.21659110486507416, + "learning_rate": 0.0006, + "loss": 3.477977752685547, + "step": 6186 + }, + { + "epoch": 85.93665356050677, + "grad_norm": 0.21402457356452942, + "learning_rate": 0.0006, + "loss": 3.4676051139831543, + "step": 6187 + }, + { + "epoch": 85.95063346439493, + "grad_norm": 0.2598675787448883, + "learning_rate": 0.0006, + "loss": 3.457876205444336, + "step": 6188 + }, + { + "epoch": 85.9646133682831, + "grad_norm": 0.24304015934467316, + "learning_rate": 0.0006, + "loss": 3.4939284324645996, + "step": 6189 + }, + { + "epoch": 85.97859327217125, + "grad_norm": 0.2519899904727936, + "learning_rate": 0.0006, + "loss": 3.4782049655914307, + "step": 6190 + }, + { + "epoch": 85.99257317605941, + "grad_norm": 0.2699314057826996, + "learning_rate": 0.0006, + "loss": 3.4965529441833496, + "step": 6191 + }, + { + "epoch": 86.0, + "grad_norm": 0.25171566009521484, + "learning_rate": 0.0006, + "loss": 3.5014753341674805, + "step": 6192 + }, + { + "epoch": 86.0, + "eval_loss": 3.994410991668701, + "eval_runtime": 44.7874, + "eval_samples_per_second": 54.524, + "eval_steps_per_second": 3.416, + "step": 6192 + }, + { + "epoch": 86.01397990388816, + "grad_norm": 0.22152172029018402, + "learning_rate": 0.0006, + "loss": 3.4881882667541504, + "step": 6193 + }, + { + "epoch": 86.02795980777633, + "grad_norm": 0.30766162276268005, + "learning_rate": 0.0006, + "loss": 3.4354074001312256, + "step": 6194 + }, + { + "epoch": 86.04193971166448, + "grad_norm": 0.35085615515708923, + "learning_rate": 0.0006, + "loss": 3.492264986038208, + "step": 6195 + }, + { + "epoch": 86.05591961555264, + "grad_norm": 0.3569839298725128, + "learning_rate": 0.0006, + "loss": 3.416243553161621, + "step": 6196 + }, + { + "epoch": 86.06989951944081, + "grad_norm": 0.3160453736782074, + "learning_rate": 0.0006, + "loss": 3.4427218437194824, + "step": 6197 + }, + { + "epoch": 86.08387942332897, + "grad_norm": 0.2886679470539093, + "learning_rate": 0.0006, + "loss": 3.4667863845825195, + "step": 6198 + }, + { + "epoch": 86.09785932721712, + "grad_norm": 0.3893418312072754, + "learning_rate": 0.0006, + "loss": 3.4031922817230225, + "step": 6199 + }, + { + "epoch": 86.1118392311053, + "grad_norm": 0.3220056891441345, + "learning_rate": 0.0006, + "loss": 3.4283533096313477, + "step": 6200 + }, + { + "epoch": 86.12581913499345, + "grad_norm": 0.26434239745140076, + "learning_rate": 0.0006, + "loss": 3.4746451377868652, + "step": 6201 + }, + { + "epoch": 86.1397990388816, + "grad_norm": 0.302300363779068, + "learning_rate": 0.0006, + "loss": 3.4561362266540527, + "step": 6202 + }, + { + "epoch": 86.15377894276976, + "grad_norm": 0.3000868558883667, + "learning_rate": 0.0006, + "loss": 3.450949192047119, + "step": 6203 + }, + { + "epoch": 86.16775884665793, + "grad_norm": 0.2398998737335205, + "learning_rate": 0.0006, + "loss": 3.4239816665649414, + "step": 6204 + }, + { + "epoch": 86.18173875054609, + "grad_norm": 0.2702728807926178, + "learning_rate": 0.0006, + "loss": 3.442440986633301, + "step": 6205 + }, + { + "epoch": 86.19571865443424, + "grad_norm": 0.31766554713249207, + "learning_rate": 0.0006, + "loss": 3.4427683353424072, + "step": 6206 + }, + { + "epoch": 86.20969855832242, + "grad_norm": 0.2819700241088867, + "learning_rate": 0.0006, + "loss": 3.4524660110473633, + "step": 6207 + }, + { + "epoch": 86.22367846221057, + "grad_norm": 0.2258707731962204, + "learning_rate": 0.0006, + "loss": 3.396800994873047, + "step": 6208 + }, + { + "epoch": 86.23765836609873, + "grad_norm": 0.24448935687541962, + "learning_rate": 0.0006, + "loss": 3.4406819343566895, + "step": 6209 + }, + { + "epoch": 86.2516382699869, + "grad_norm": 0.24847345054149628, + "learning_rate": 0.0006, + "loss": 3.461153030395508, + "step": 6210 + }, + { + "epoch": 86.26561817387505, + "grad_norm": 0.2334488183259964, + "learning_rate": 0.0006, + "loss": 3.442270040512085, + "step": 6211 + }, + { + "epoch": 86.27959807776321, + "grad_norm": 0.22500263154506683, + "learning_rate": 0.0006, + "loss": 3.440741539001465, + "step": 6212 + }, + { + "epoch": 86.29357798165138, + "grad_norm": 0.21619853377342224, + "learning_rate": 0.0006, + "loss": 3.4715089797973633, + "step": 6213 + }, + { + "epoch": 86.30755788553954, + "grad_norm": 0.2189490795135498, + "learning_rate": 0.0006, + "loss": 3.4791250228881836, + "step": 6214 + }, + { + "epoch": 86.3215377894277, + "grad_norm": 0.21822725236415863, + "learning_rate": 0.0006, + "loss": 3.461611747741699, + "step": 6215 + }, + { + "epoch": 86.33551769331586, + "grad_norm": 0.21582530438899994, + "learning_rate": 0.0006, + "loss": 3.4455478191375732, + "step": 6216 + }, + { + "epoch": 86.34949759720402, + "grad_norm": 0.22400085628032684, + "learning_rate": 0.0006, + "loss": 3.4567182064056396, + "step": 6217 + }, + { + "epoch": 86.36347750109218, + "grad_norm": 0.21704235672950745, + "learning_rate": 0.0006, + "loss": 3.4674482345581055, + "step": 6218 + }, + { + "epoch": 86.37745740498035, + "grad_norm": 0.20976465940475464, + "learning_rate": 0.0006, + "loss": 3.469402313232422, + "step": 6219 + }, + { + "epoch": 86.3914373088685, + "grad_norm": 0.21312788128852844, + "learning_rate": 0.0006, + "loss": 3.455789566040039, + "step": 6220 + }, + { + "epoch": 86.40541721275666, + "grad_norm": 0.25308772921562195, + "learning_rate": 0.0006, + "loss": 3.4452877044677734, + "step": 6221 + }, + { + "epoch": 86.41939711664482, + "grad_norm": 0.27195847034454346, + "learning_rate": 0.0006, + "loss": 3.463346004486084, + "step": 6222 + }, + { + "epoch": 86.43337702053299, + "grad_norm": 0.21615318953990936, + "learning_rate": 0.0006, + "loss": 3.463381290435791, + "step": 6223 + }, + { + "epoch": 86.44735692442114, + "grad_norm": 0.23535512387752533, + "learning_rate": 0.0006, + "loss": 3.4360179901123047, + "step": 6224 + }, + { + "epoch": 86.4613368283093, + "grad_norm": 0.24485142529010773, + "learning_rate": 0.0006, + "loss": 3.464930534362793, + "step": 6225 + }, + { + "epoch": 86.47531673219747, + "grad_norm": 0.22350724041461945, + "learning_rate": 0.0006, + "loss": 3.437709331512451, + "step": 6226 + }, + { + "epoch": 86.48929663608563, + "grad_norm": 0.21404410898685455, + "learning_rate": 0.0006, + "loss": 3.4748077392578125, + "step": 6227 + }, + { + "epoch": 86.50327653997378, + "grad_norm": 0.22141483426094055, + "learning_rate": 0.0006, + "loss": 3.4643821716308594, + "step": 6228 + }, + { + "epoch": 86.51725644386195, + "grad_norm": 0.21807129681110382, + "learning_rate": 0.0006, + "loss": 3.4499032497406006, + "step": 6229 + }, + { + "epoch": 86.53123634775011, + "grad_norm": 0.24544014036655426, + "learning_rate": 0.0006, + "loss": 3.485358476638794, + "step": 6230 + }, + { + "epoch": 86.54521625163827, + "grad_norm": 0.23897387087345123, + "learning_rate": 0.0006, + "loss": 3.4186513423919678, + "step": 6231 + }, + { + "epoch": 86.55919615552644, + "grad_norm": 0.2169899344444275, + "learning_rate": 0.0006, + "loss": 3.483903408050537, + "step": 6232 + }, + { + "epoch": 86.57317605941459, + "grad_norm": 0.22795552015304565, + "learning_rate": 0.0006, + "loss": 3.4364242553710938, + "step": 6233 + }, + { + "epoch": 86.58715596330275, + "grad_norm": 0.217415452003479, + "learning_rate": 0.0006, + "loss": 3.456679105758667, + "step": 6234 + }, + { + "epoch": 86.60113586719092, + "grad_norm": 0.22456496953964233, + "learning_rate": 0.0006, + "loss": 3.5148768424987793, + "step": 6235 + }, + { + "epoch": 86.61511577107908, + "grad_norm": 0.2365759313106537, + "learning_rate": 0.0006, + "loss": 3.4696755409240723, + "step": 6236 + }, + { + "epoch": 86.62909567496723, + "grad_norm": 0.2177712321281433, + "learning_rate": 0.0006, + "loss": 3.462272882461548, + "step": 6237 + }, + { + "epoch": 86.6430755788554, + "grad_norm": 0.20588000118732452, + "learning_rate": 0.0006, + "loss": 3.4393906593322754, + "step": 6238 + }, + { + "epoch": 86.65705548274356, + "grad_norm": 0.21182921528816223, + "learning_rate": 0.0006, + "loss": 3.443514108657837, + "step": 6239 + }, + { + "epoch": 86.67103538663171, + "grad_norm": 0.18916936218738556, + "learning_rate": 0.0006, + "loss": 3.4392967224121094, + "step": 6240 + }, + { + "epoch": 86.68501529051987, + "grad_norm": 0.22624684870243073, + "learning_rate": 0.0006, + "loss": 3.470064640045166, + "step": 6241 + }, + { + "epoch": 86.69899519440804, + "grad_norm": 0.2332974225282669, + "learning_rate": 0.0006, + "loss": 3.4521493911743164, + "step": 6242 + }, + { + "epoch": 86.7129750982962, + "grad_norm": 0.20085841417312622, + "learning_rate": 0.0006, + "loss": 3.5025033950805664, + "step": 6243 + }, + { + "epoch": 86.72695500218435, + "grad_norm": 0.20764502882957458, + "learning_rate": 0.0006, + "loss": 3.470583915710449, + "step": 6244 + }, + { + "epoch": 86.74093490607252, + "grad_norm": 0.20031316578388214, + "learning_rate": 0.0006, + "loss": 3.478801727294922, + "step": 6245 + }, + { + "epoch": 86.75491480996068, + "grad_norm": 0.20406009256839752, + "learning_rate": 0.0006, + "loss": 3.4478464126586914, + "step": 6246 + }, + { + "epoch": 86.76889471384884, + "grad_norm": 0.2247963547706604, + "learning_rate": 0.0006, + "loss": 3.482908248901367, + "step": 6247 + }, + { + "epoch": 86.78287461773701, + "grad_norm": 0.21603277325630188, + "learning_rate": 0.0006, + "loss": 3.495795726776123, + "step": 6248 + }, + { + "epoch": 86.79685452162516, + "grad_norm": 0.23493970930576324, + "learning_rate": 0.0006, + "loss": 3.494202136993408, + "step": 6249 + }, + { + "epoch": 86.81083442551332, + "grad_norm": 0.23578870296478271, + "learning_rate": 0.0006, + "loss": 3.4449198246002197, + "step": 6250 + }, + { + "epoch": 86.82481432940149, + "grad_norm": 0.2195269763469696, + "learning_rate": 0.0006, + "loss": 3.4688639640808105, + "step": 6251 + }, + { + "epoch": 86.83879423328965, + "grad_norm": 0.2096060961484909, + "learning_rate": 0.0006, + "loss": 3.457277774810791, + "step": 6252 + }, + { + "epoch": 86.8527741371778, + "grad_norm": 0.2281302958726883, + "learning_rate": 0.0006, + "loss": 3.4680356979370117, + "step": 6253 + }, + { + "epoch": 86.86675404106597, + "grad_norm": 0.227342426776886, + "learning_rate": 0.0006, + "loss": 3.4743518829345703, + "step": 6254 + }, + { + "epoch": 86.88073394495413, + "grad_norm": 0.2153044492006302, + "learning_rate": 0.0006, + "loss": 3.46713924407959, + "step": 6255 + }, + { + "epoch": 86.89471384884229, + "grad_norm": 0.2115248739719391, + "learning_rate": 0.0006, + "loss": 3.4528920650482178, + "step": 6256 + }, + { + "epoch": 86.90869375273044, + "grad_norm": 0.20684799551963806, + "learning_rate": 0.0006, + "loss": 3.4480972290039062, + "step": 6257 + }, + { + "epoch": 86.92267365661861, + "grad_norm": 0.20551343262195587, + "learning_rate": 0.0006, + "loss": 3.4358556270599365, + "step": 6258 + }, + { + "epoch": 86.93665356050677, + "grad_norm": 0.20622433722019196, + "learning_rate": 0.0006, + "loss": 3.465932846069336, + "step": 6259 + }, + { + "epoch": 86.95063346439493, + "grad_norm": 0.2272886484861374, + "learning_rate": 0.0006, + "loss": 3.4763259887695312, + "step": 6260 + }, + { + "epoch": 86.9646133682831, + "grad_norm": 0.21281592547893524, + "learning_rate": 0.0006, + "loss": 3.475867509841919, + "step": 6261 + }, + { + "epoch": 86.97859327217125, + "grad_norm": 0.22719821333885193, + "learning_rate": 0.0006, + "loss": 3.486049175262451, + "step": 6262 + }, + { + "epoch": 86.99257317605941, + "grad_norm": 0.22851793467998505, + "learning_rate": 0.0006, + "loss": 3.4797396659851074, + "step": 6263 + }, + { + "epoch": 87.0, + "grad_norm": 0.2525143027305603, + "learning_rate": 0.0006, + "loss": 3.4766845703125, + "step": 6264 + }, + { + "epoch": 87.0, + "eval_loss": 3.987467050552368, + "eval_runtime": 44.9313, + "eval_samples_per_second": 54.35, + "eval_steps_per_second": 3.405, + "step": 6264 + }, + { + "epoch": 87.01397990388816, + "grad_norm": 0.24122004210948944, + "learning_rate": 0.0006, + "loss": 3.4199447631835938, + "step": 6265 + }, + { + "epoch": 87.02795980777633, + "grad_norm": 0.2478175163269043, + "learning_rate": 0.0006, + "loss": 3.4244534969329834, + "step": 6266 + }, + { + "epoch": 87.04193971166448, + "grad_norm": 0.26908397674560547, + "learning_rate": 0.0006, + "loss": 3.4402923583984375, + "step": 6267 + }, + { + "epoch": 87.05591961555264, + "grad_norm": 0.2507370412349701, + "learning_rate": 0.0006, + "loss": 3.462135076522827, + "step": 6268 + }, + { + "epoch": 87.06989951944081, + "grad_norm": 0.24157772958278656, + "learning_rate": 0.0006, + "loss": 3.431356430053711, + "step": 6269 + }, + { + "epoch": 87.08387942332897, + "grad_norm": 0.23670171201229095, + "learning_rate": 0.0006, + "loss": 3.456552028656006, + "step": 6270 + }, + { + "epoch": 87.09785932721712, + "grad_norm": 0.23151060938835144, + "learning_rate": 0.0006, + "loss": 3.4459235668182373, + "step": 6271 + }, + { + "epoch": 87.1118392311053, + "grad_norm": 0.23343981802463531, + "learning_rate": 0.0006, + "loss": 3.4336788654327393, + "step": 6272 + }, + { + "epoch": 87.12581913499345, + "grad_norm": 0.23033443093299866, + "learning_rate": 0.0006, + "loss": 3.430036783218384, + "step": 6273 + }, + { + "epoch": 87.1397990388816, + "grad_norm": 0.2381853312253952, + "learning_rate": 0.0006, + "loss": 3.420903444290161, + "step": 6274 + }, + { + "epoch": 87.15377894276976, + "grad_norm": 0.2190200835466385, + "learning_rate": 0.0006, + "loss": 3.4207403659820557, + "step": 6275 + }, + { + "epoch": 87.16775884665793, + "grad_norm": 0.21260236203670502, + "learning_rate": 0.0006, + "loss": 3.4397506713867188, + "step": 6276 + }, + { + "epoch": 87.18173875054609, + "grad_norm": 0.22214606404304504, + "learning_rate": 0.0006, + "loss": 3.4293227195739746, + "step": 6277 + }, + { + "epoch": 87.19571865443424, + "grad_norm": 0.2242288589477539, + "learning_rate": 0.0006, + "loss": 3.4207372665405273, + "step": 6278 + }, + { + "epoch": 87.20969855832242, + "grad_norm": 0.25283282995224, + "learning_rate": 0.0006, + "loss": 3.419442892074585, + "step": 6279 + }, + { + "epoch": 87.22367846221057, + "grad_norm": 0.24865588545799255, + "learning_rate": 0.0006, + "loss": 3.4260497093200684, + "step": 6280 + }, + { + "epoch": 87.23765836609873, + "grad_norm": 0.2589408755302429, + "learning_rate": 0.0006, + "loss": 3.4209916591644287, + "step": 6281 + }, + { + "epoch": 87.2516382699869, + "grad_norm": 0.318220853805542, + "learning_rate": 0.0006, + "loss": 3.432110548019409, + "step": 6282 + }, + { + "epoch": 87.26561817387505, + "grad_norm": 0.31002911925315857, + "learning_rate": 0.0006, + "loss": 3.4443397521972656, + "step": 6283 + }, + { + "epoch": 87.27959807776321, + "grad_norm": 0.2359798550605774, + "learning_rate": 0.0006, + "loss": 3.4457709789276123, + "step": 6284 + }, + { + "epoch": 87.29357798165138, + "grad_norm": 0.24127471446990967, + "learning_rate": 0.0006, + "loss": 3.430861473083496, + "step": 6285 + }, + { + "epoch": 87.30755788553954, + "grad_norm": 0.2523666322231293, + "learning_rate": 0.0006, + "loss": 3.4266719818115234, + "step": 6286 + }, + { + "epoch": 87.3215377894277, + "grad_norm": 0.25202396512031555, + "learning_rate": 0.0006, + "loss": 3.458160400390625, + "step": 6287 + }, + { + "epoch": 87.33551769331586, + "grad_norm": 0.23457808792591095, + "learning_rate": 0.0006, + "loss": 3.4448394775390625, + "step": 6288 + }, + { + "epoch": 87.34949759720402, + "grad_norm": 0.21893201768398285, + "learning_rate": 0.0006, + "loss": 3.4377269744873047, + "step": 6289 + }, + { + "epoch": 87.36347750109218, + "grad_norm": 0.23681706190109253, + "learning_rate": 0.0006, + "loss": 3.471095561981201, + "step": 6290 + }, + { + "epoch": 87.37745740498035, + "grad_norm": 0.26878809928894043, + "learning_rate": 0.0006, + "loss": 3.4401535987854004, + "step": 6291 + }, + { + "epoch": 87.3914373088685, + "grad_norm": 0.27215614914894104, + "learning_rate": 0.0006, + "loss": 3.4613232612609863, + "step": 6292 + }, + { + "epoch": 87.40541721275666, + "grad_norm": 0.2195551097393036, + "learning_rate": 0.0006, + "loss": 3.4215073585510254, + "step": 6293 + }, + { + "epoch": 87.41939711664482, + "grad_norm": 0.22291679680347443, + "learning_rate": 0.0006, + "loss": 3.4974613189697266, + "step": 6294 + }, + { + "epoch": 87.43337702053299, + "grad_norm": 0.22577513754367828, + "learning_rate": 0.0006, + "loss": 3.4792842864990234, + "step": 6295 + }, + { + "epoch": 87.44735692442114, + "grad_norm": 0.22146420180797577, + "learning_rate": 0.0006, + "loss": 3.457834243774414, + "step": 6296 + }, + { + "epoch": 87.4613368283093, + "grad_norm": 0.2282160073518753, + "learning_rate": 0.0006, + "loss": 3.462193489074707, + "step": 6297 + }, + { + "epoch": 87.47531673219747, + "grad_norm": 0.21486175060272217, + "learning_rate": 0.0006, + "loss": 3.416970729827881, + "step": 6298 + }, + { + "epoch": 87.48929663608563, + "grad_norm": 0.24122320115566254, + "learning_rate": 0.0006, + "loss": 3.4543159008026123, + "step": 6299 + }, + { + "epoch": 87.50327653997378, + "grad_norm": 0.25667425990104675, + "learning_rate": 0.0006, + "loss": 3.457819938659668, + "step": 6300 + }, + { + "epoch": 87.51725644386195, + "grad_norm": 0.22020193934440613, + "learning_rate": 0.0006, + "loss": 3.4597818851470947, + "step": 6301 + }, + { + "epoch": 87.53123634775011, + "grad_norm": 0.21770980954170227, + "learning_rate": 0.0006, + "loss": 3.4787464141845703, + "step": 6302 + }, + { + "epoch": 87.54521625163827, + "grad_norm": 0.20606353878974915, + "learning_rate": 0.0006, + "loss": 3.4781737327575684, + "step": 6303 + }, + { + "epoch": 87.55919615552644, + "grad_norm": 0.20081280171871185, + "learning_rate": 0.0006, + "loss": 3.4789981842041016, + "step": 6304 + }, + { + "epoch": 87.57317605941459, + "grad_norm": 0.2083672136068344, + "learning_rate": 0.0006, + "loss": 3.45949649810791, + "step": 6305 + }, + { + "epoch": 87.58715596330275, + "grad_norm": 0.2144811749458313, + "learning_rate": 0.0006, + "loss": 3.476649761199951, + "step": 6306 + }, + { + "epoch": 87.60113586719092, + "grad_norm": 0.20354680716991425, + "learning_rate": 0.0006, + "loss": 3.4517979621887207, + "step": 6307 + }, + { + "epoch": 87.61511577107908, + "grad_norm": 0.21038398146629333, + "learning_rate": 0.0006, + "loss": 3.4579286575317383, + "step": 6308 + }, + { + "epoch": 87.62909567496723, + "grad_norm": 0.2507987916469574, + "learning_rate": 0.0006, + "loss": 3.444129705429077, + "step": 6309 + }, + { + "epoch": 87.6430755788554, + "grad_norm": 0.2602663040161133, + "learning_rate": 0.0006, + "loss": 3.4628701210021973, + "step": 6310 + }, + { + "epoch": 87.65705548274356, + "grad_norm": 0.22973693907260895, + "learning_rate": 0.0006, + "loss": 3.4374523162841797, + "step": 6311 + }, + { + "epoch": 87.67103538663171, + "grad_norm": 0.20517243444919586, + "learning_rate": 0.0006, + "loss": 3.467461585998535, + "step": 6312 + }, + { + "epoch": 87.68501529051987, + "grad_norm": 0.22034190595149994, + "learning_rate": 0.0006, + "loss": 3.4591064453125, + "step": 6313 + }, + { + "epoch": 87.69899519440804, + "grad_norm": 0.27952659130096436, + "learning_rate": 0.0006, + "loss": 3.4621737003326416, + "step": 6314 + }, + { + "epoch": 87.7129750982962, + "grad_norm": 0.3361925780773163, + "learning_rate": 0.0006, + "loss": 3.4823145866394043, + "step": 6315 + }, + { + "epoch": 87.72695500218435, + "grad_norm": 0.245027557015419, + "learning_rate": 0.0006, + "loss": 3.4999091625213623, + "step": 6316 + }, + { + "epoch": 87.74093490607252, + "grad_norm": 0.24421612918376923, + "learning_rate": 0.0006, + "loss": 3.4381346702575684, + "step": 6317 + }, + { + "epoch": 87.75491480996068, + "grad_norm": 0.2876628041267395, + "learning_rate": 0.0006, + "loss": 3.44991397857666, + "step": 6318 + }, + { + "epoch": 87.76889471384884, + "grad_norm": 0.2695000171661377, + "learning_rate": 0.0006, + "loss": 3.4892220497131348, + "step": 6319 + }, + { + "epoch": 87.78287461773701, + "grad_norm": 0.2427721470594406, + "learning_rate": 0.0006, + "loss": 3.488051176071167, + "step": 6320 + }, + { + "epoch": 87.79685452162516, + "grad_norm": 0.22474367916584015, + "learning_rate": 0.0006, + "loss": 3.4849441051483154, + "step": 6321 + }, + { + "epoch": 87.81083442551332, + "grad_norm": 0.2337673008441925, + "learning_rate": 0.0006, + "loss": 3.478757619857788, + "step": 6322 + }, + { + "epoch": 87.82481432940149, + "grad_norm": 0.22685843706130981, + "learning_rate": 0.0006, + "loss": 3.499335289001465, + "step": 6323 + }, + { + "epoch": 87.83879423328965, + "grad_norm": 0.22728733718395233, + "learning_rate": 0.0006, + "loss": 3.4719929695129395, + "step": 6324 + }, + { + "epoch": 87.8527741371778, + "grad_norm": 0.23600755631923676, + "learning_rate": 0.0006, + "loss": 3.4627575874328613, + "step": 6325 + }, + { + "epoch": 87.86675404106597, + "grad_norm": 0.22861236333847046, + "learning_rate": 0.0006, + "loss": 3.4832100868225098, + "step": 6326 + }, + { + "epoch": 87.88073394495413, + "grad_norm": 0.21025750041007996, + "learning_rate": 0.0006, + "loss": 3.475428819656372, + "step": 6327 + }, + { + "epoch": 87.89471384884229, + "grad_norm": 0.24230243265628815, + "learning_rate": 0.0006, + "loss": 3.4739198684692383, + "step": 6328 + }, + { + "epoch": 87.90869375273044, + "grad_norm": 0.2554577589035034, + "learning_rate": 0.0006, + "loss": 3.4509432315826416, + "step": 6329 + }, + { + "epoch": 87.92267365661861, + "grad_norm": 0.22515688836574554, + "learning_rate": 0.0006, + "loss": 3.4668149948120117, + "step": 6330 + }, + { + "epoch": 87.93665356050677, + "grad_norm": 0.19475685060024261, + "learning_rate": 0.0006, + "loss": 3.4462881088256836, + "step": 6331 + }, + { + "epoch": 87.95063346439493, + "grad_norm": 0.23246119916439056, + "learning_rate": 0.0006, + "loss": 3.4629220962524414, + "step": 6332 + }, + { + "epoch": 87.9646133682831, + "grad_norm": 0.2511215806007385, + "learning_rate": 0.0006, + "loss": 3.464906930923462, + "step": 6333 + }, + { + "epoch": 87.97859327217125, + "grad_norm": 0.20661140978336334, + "learning_rate": 0.0006, + "loss": 3.4904966354370117, + "step": 6334 + }, + { + "epoch": 87.99257317605941, + "grad_norm": 0.2149374783039093, + "learning_rate": 0.0006, + "loss": 3.509500026702881, + "step": 6335 + }, + { + "epoch": 88.0, + "grad_norm": 0.26648908853530884, + "learning_rate": 0.0006, + "loss": 3.495286464691162, + "step": 6336 + }, + { + "epoch": 88.0, + "eval_loss": 3.9910876750946045, + "eval_runtime": 44.2326, + "eval_samples_per_second": 55.208, + "eval_steps_per_second": 3.459, + "step": 6336 + }, + { + "epoch": 88.01397990388816, + "grad_norm": 0.25808829069137573, + "learning_rate": 0.0006, + "loss": 3.411630392074585, + "step": 6337 + }, + { + "epoch": 88.02795980777633, + "grad_norm": 0.2827962636947632, + "learning_rate": 0.0006, + "loss": 3.4475622177124023, + "step": 6338 + }, + { + "epoch": 88.04193971166448, + "grad_norm": 0.2804858684539795, + "learning_rate": 0.0006, + "loss": 3.4195854663848877, + "step": 6339 + }, + { + "epoch": 88.05591961555264, + "grad_norm": 0.2890722155570984, + "learning_rate": 0.0006, + "loss": 3.435227632522583, + "step": 6340 + }, + { + "epoch": 88.06989951944081, + "grad_norm": 0.24709101021289825, + "learning_rate": 0.0006, + "loss": 3.3994932174682617, + "step": 6341 + }, + { + "epoch": 88.08387942332897, + "grad_norm": 0.30079564452171326, + "learning_rate": 0.0006, + "loss": 3.4284887313842773, + "step": 6342 + }, + { + "epoch": 88.09785932721712, + "grad_norm": 0.32843494415283203, + "learning_rate": 0.0006, + "loss": 3.424539566040039, + "step": 6343 + }, + { + "epoch": 88.1118392311053, + "grad_norm": 0.2460806518793106, + "learning_rate": 0.0006, + "loss": 3.421414852142334, + "step": 6344 + }, + { + "epoch": 88.12581913499345, + "grad_norm": 0.2310563027858734, + "learning_rate": 0.0006, + "loss": 3.4710545539855957, + "step": 6345 + }, + { + "epoch": 88.1397990388816, + "grad_norm": 0.2784363627433777, + "learning_rate": 0.0006, + "loss": 3.3813397884368896, + "step": 6346 + }, + { + "epoch": 88.15377894276976, + "grad_norm": 0.2760527729988098, + "learning_rate": 0.0006, + "loss": 3.467643976211548, + "step": 6347 + }, + { + "epoch": 88.16775884665793, + "grad_norm": 0.2341301441192627, + "learning_rate": 0.0006, + "loss": 3.440518856048584, + "step": 6348 + }, + { + "epoch": 88.18173875054609, + "grad_norm": 0.2695406973361969, + "learning_rate": 0.0006, + "loss": 3.406447410583496, + "step": 6349 + }, + { + "epoch": 88.19571865443424, + "grad_norm": 0.23603397607803345, + "learning_rate": 0.0006, + "loss": 3.426060914993286, + "step": 6350 + }, + { + "epoch": 88.20969855832242, + "grad_norm": 0.21914228796958923, + "learning_rate": 0.0006, + "loss": 3.443946599960327, + "step": 6351 + }, + { + "epoch": 88.22367846221057, + "grad_norm": 0.229744091629982, + "learning_rate": 0.0006, + "loss": 3.4850916862487793, + "step": 6352 + }, + { + "epoch": 88.23765836609873, + "grad_norm": 0.22008764743804932, + "learning_rate": 0.0006, + "loss": 3.4286551475524902, + "step": 6353 + }, + { + "epoch": 88.2516382699869, + "grad_norm": 0.2146327942609787, + "learning_rate": 0.0006, + "loss": 3.427851438522339, + "step": 6354 + }, + { + "epoch": 88.26561817387505, + "grad_norm": 0.23602543771266937, + "learning_rate": 0.0006, + "loss": 3.4568803310394287, + "step": 6355 + }, + { + "epoch": 88.27959807776321, + "grad_norm": 0.22665457427501678, + "learning_rate": 0.0006, + "loss": 3.424234390258789, + "step": 6356 + }, + { + "epoch": 88.29357798165138, + "grad_norm": 0.22728821635246277, + "learning_rate": 0.0006, + "loss": 3.478048324584961, + "step": 6357 + }, + { + "epoch": 88.30755788553954, + "grad_norm": 0.23190121352672577, + "learning_rate": 0.0006, + "loss": 3.4372310638427734, + "step": 6358 + }, + { + "epoch": 88.3215377894277, + "grad_norm": 0.23578281700611115, + "learning_rate": 0.0006, + "loss": 3.4195380210876465, + "step": 6359 + }, + { + "epoch": 88.33551769331586, + "grad_norm": 0.23664598166942596, + "learning_rate": 0.0006, + "loss": 3.386569023132324, + "step": 6360 + }, + { + "epoch": 88.34949759720402, + "grad_norm": 0.20773325860500336, + "learning_rate": 0.0006, + "loss": 3.486711025238037, + "step": 6361 + }, + { + "epoch": 88.36347750109218, + "grad_norm": 0.2483605146408081, + "learning_rate": 0.0006, + "loss": 3.4576683044433594, + "step": 6362 + }, + { + "epoch": 88.37745740498035, + "grad_norm": 0.25162816047668457, + "learning_rate": 0.0006, + "loss": 3.4627842903137207, + "step": 6363 + }, + { + "epoch": 88.3914373088685, + "grad_norm": 0.2269856184720993, + "learning_rate": 0.0006, + "loss": 3.45723819732666, + "step": 6364 + }, + { + "epoch": 88.40541721275666, + "grad_norm": 0.1993708610534668, + "learning_rate": 0.0006, + "loss": 3.3956477642059326, + "step": 6365 + }, + { + "epoch": 88.41939711664482, + "grad_norm": 0.24409815669059753, + "learning_rate": 0.0006, + "loss": 3.4643712043762207, + "step": 6366 + }, + { + "epoch": 88.43337702053299, + "grad_norm": 0.23164282739162445, + "learning_rate": 0.0006, + "loss": 3.4849226474761963, + "step": 6367 + }, + { + "epoch": 88.44735692442114, + "grad_norm": 0.20366275310516357, + "learning_rate": 0.0006, + "loss": 3.435481071472168, + "step": 6368 + }, + { + "epoch": 88.4613368283093, + "grad_norm": 0.22154691815376282, + "learning_rate": 0.0006, + "loss": 3.430396556854248, + "step": 6369 + }, + { + "epoch": 88.47531673219747, + "grad_norm": 0.22426174581050873, + "learning_rate": 0.0006, + "loss": 3.4546523094177246, + "step": 6370 + }, + { + "epoch": 88.48929663608563, + "grad_norm": 0.2243862897157669, + "learning_rate": 0.0006, + "loss": 3.4726970195770264, + "step": 6371 + }, + { + "epoch": 88.50327653997378, + "grad_norm": 0.22123505175113678, + "learning_rate": 0.0006, + "loss": 3.4308688640594482, + "step": 6372 + }, + { + "epoch": 88.51725644386195, + "grad_norm": 0.23854194581508636, + "learning_rate": 0.0006, + "loss": 3.4605226516723633, + "step": 6373 + }, + { + "epoch": 88.53123634775011, + "grad_norm": 0.22229605913162231, + "learning_rate": 0.0006, + "loss": 3.4652018547058105, + "step": 6374 + }, + { + "epoch": 88.54521625163827, + "grad_norm": 0.22032393515110016, + "learning_rate": 0.0006, + "loss": 3.465308666229248, + "step": 6375 + }, + { + "epoch": 88.55919615552644, + "grad_norm": 0.24441847205162048, + "learning_rate": 0.0006, + "loss": 3.46439790725708, + "step": 6376 + }, + { + "epoch": 88.57317605941459, + "grad_norm": 0.24422945082187653, + "learning_rate": 0.0006, + "loss": 3.4635725021362305, + "step": 6377 + }, + { + "epoch": 88.58715596330275, + "grad_norm": 0.2304745316505432, + "learning_rate": 0.0006, + "loss": 3.4751172065734863, + "step": 6378 + }, + { + "epoch": 88.60113586719092, + "grad_norm": 0.2433997094631195, + "learning_rate": 0.0006, + "loss": 3.4673709869384766, + "step": 6379 + }, + { + "epoch": 88.61511577107908, + "grad_norm": 0.23464781045913696, + "learning_rate": 0.0006, + "loss": 3.448793888092041, + "step": 6380 + }, + { + "epoch": 88.62909567496723, + "grad_norm": 0.2164311707019806, + "learning_rate": 0.0006, + "loss": 3.4486217498779297, + "step": 6381 + }, + { + "epoch": 88.6430755788554, + "grad_norm": 0.23604193329811096, + "learning_rate": 0.0006, + "loss": 3.459439277648926, + "step": 6382 + }, + { + "epoch": 88.65705548274356, + "grad_norm": 0.21989384293556213, + "learning_rate": 0.0006, + "loss": 3.5129756927490234, + "step": 6383 + }, + { + "epoch": 88.67103538663171, + "grad_norm": 0.25415554642677307, + "learning_rate": 0.0006, + "loss": 3.4335012435913086, + "step": 6384 + }, + { + "epoch": 88.68501529051987, + "grad_norm": 0.2704343795776367, + "learning_rate": 0.0006, + "loss": 3.447831869125366, + "step": 6385 + }, + { + "epoch": 88.69899519440804, + "grad_norm": 0.2723075747489929, + "learning_rate": 0.0006, + "loss": 3.455878734588623, + "step": 6386 + }, + { + "epoch": 88.7129750982962, + "grad_norm": 0.3328200578689575, + "learning_rate": 0.0006, + "loss": 3.4710352420806885, + "step": 6387 + }, + { + "epoch": 88.72695500218435, + "grad_norm": 0.2922036647796631, + "learning_rate": 0.0006, + "loss": 3.4882750511169434, + "step": 6388 + }, + { + "epoch": 88.74093490607252, + "grad_norm": 0.24199096858501434, + "learning_rate": 0.0006, + "loss": 3.478670358657837, + "step": 6389 + }, + { + "epoch": 88.75491480996068, + "grad_norm": 0.23823769390583038, + "learning_rate": 0.0006, + "loss": 3.496589422225952, + "step": 6390 + }, + { + "epoch": 88.76889471384884, + "grad_norm": 0.25458282232284546, + "learning_rate": 0.0006, + "loss": 3.462967872619629, + "step": 6391 + }, + { + "epoch": 88.78287461773701, + "grad_norm": 0.2744201421737671, + "learning_rate": 0.0006, + "loss": 3.4788689613342285, + "step": 6392 + }, + { + "epoch": 88.79685452162516, + "grad_norm": 0.25138887763023376, + "learning_rate": 0.0006, + "loss": 3.4415979385375977, + "step": 6393 + }, + { + "epoch": 88.81083442551332, + "grad_norm": 0.2001047134399414, + "learning_rate": 0.0006, + "loss": 3.4428935050964355, + "step": 6394 + }, + { + "epoch": 88.82481432940149, + "grad_norm": 0.26081711053848267, + "learning_rate": 0.0006, + "loss": 3.483206272125244, + "step": 6395 + }, + { + "epoch": 88.83879423328965, + "grad_norm": 0.30478793382644653, + "learning_rate": 0.0006, + "loss": 3.471090316772461, + "step": 6396 + }, + { + "epoch": 88.8527741371778, + "grad_norm": 0.2885384261608124, + "learning_rate": 0.0006, + "loss": 3.473282814025879, + "step": 6397 + }, + { + "epoch": 88.86675404106597, + "grad_norm": 0.22030530869960785, + "learning_rate": 0.0006, + "loss": 3.4616754055023193, + "step": 6398 + }, + { + "epoch": 88.88073394495413, + "grad_norm": 0.20391277968883514, + "learning_rate": 0.0006, + "loss": 3.491486072540283, + "step": 6399 + }, + { + "epoch": 88.89471384884229, + "grad_norm": 0.2605881690979004, + "learning_rate": 0.0006, + "loss": 3.4590494632720947, + "step": 6400 + }, + { + "epoch": 88.90869375273044, + "grad_norm": 0.2896178662776947, + "learning_rate": 0.0006, + "loss": 3.475888729095459, + "step": 6401 + }, + { + "epoch": 88.92267365661861, + "grad_norm": 0.24813410639762878, + "learning_rate": 0.0006, + "loss": 3.4332098960876465, + "step": 6402 + }, + { + "epoch": 88.93665356050677, + "grad_norm": 0.22145259380340576, + "learning_rate": 0.0006, + "loss": 3.440641403198242, + "step": 6403 + }, + { + "epoch": 88.95063346439493, + "grad_norm": 0.2679630517959595, + "learning_rate": 0.0006, + "loss": 3.4917471408843994, + "step": 6404 + }, + { + "epoch": 88.9646133682831, + "grad_norm": 0.2954908609390259, + "learning_rate": 0.0006, + "loss": 3.4755516052246094, + "step": 6405 + }, + { + "epoch": 88.97859327217125, + "grad_norm": 0.23178689181804657, + "learning_rate": 0.0006, + "loss": 3.469050884246826, + "step": 6406 + }, + { + "epoch": 88.99257317605941, + "grad_norm": 0.26545095443725586, + "learning_rate": 0.0006, + "loss": 3.494682550430298, + "step": 6407 + }, + { + "epoch": 89.0, + "grad_norm": 0.3239239752292633, + "learning_rate": 0.0006, + "loss": 3.5135645866394043, + "step": 6408 + }, + { + "epoch": 89.0, + "eval_loss": 3.992034673690796, + "eval_runtime": 44.6934, + "eval_samples_per_second": 54.639, + "eval_steps_per_second": 3.423, + "step": 6408 + }, + { + "epoch": 89.01397990388816, + "grad_norm": 0.26076626777648926, + "learning_rate": 0.0006, + "loss": 3.4015183448791504, + "step": 6409 + }, + { + "epoch": 89.02795980777633, + "grad_norm": 0.26522189378738403, + "learning_rate": 0.0006, + "loss": 3.4156241416931152, + "step": 6410 + }, + { + "epoch": 89.04193971166448, + "grad_norm": 0.2675033211708069, + "learning_rate": 0.0006, + "loss": 3.4594039916992188, + "step": 6411 + }, + { + "epoch": 89.05591961555264, + "grad_norm": 0.23592065274715424, + "learning_rate": 0.0006, + "loss": 3.429386854171753, + "step": 6412 + }, + { + "epoch": 89.06989951944081, + "grad_norm": 0.21512176096439362, + "learning_rate": 0.0006, + "loss": 3.4295554161071777, + "step": 6413 + }, + { + "epoch": 89.08387942332897, + "grad_norm": 0.23216180503368378, + "learning_rate": 0.0006, + "loss": 3.4333434104919434, + "step": 6414 + }, + { + "epoch": 89.09785932721712, + "grad_norm": 0.22999808192253113, + "learning_rate": 0.0006, + "loss": 3.4306654930114746, + "step": 6415 + }, + { + "epoch": 89.1118392311053, + "grad_norm": 0.22871482372283936, + "learning_rate": 0.0006, + "loss": 3.3907477855682373, + "step": 6416 + }, + { + "epoch": 89.12581913499345, + "grad_norm": 0.20900525152683258, + "learning_rate": 0.0006, + "loss": 3.4095845222473145, + "step": 6417 + }, + { + "epoch": 89.1397990388816, + "grad_norm": 0.2378418743610382, + "learning_rate": 0.0006, + "loss": 3.4298243522644043, + "step": 6418 + }, + { + "epoch": 89.15377894276976, + "grad_norm": 0.2525534927845001, + "learning_rate": 0.0006, + "loss": 3.4198246002197266, + "step": 6419 + }, + { + "epoch": 89.16775884665793, + "grad_norm": 0.2076501101255417, + "learning_rate": 0.0006, + "loss": 3.4508895874023438, + "step": 6420 + }, + { + "epoch": 89.18173875054609, + "grad_norm": 0.20777149498462677, + "learning_rate": 0.0006, + "loss": 3.423689842224121, + "step": 6421 + }, + { + "epoch": 89.19571865443424, + "grad_norm": 0.20875415205955505, + "learning_rate": 0.0006, + "loss": 3.4154067039489746, + "step": 6422 + }, + { + "epoch": 89.20969855832242, + "grad_norm": 0.2042168527841568, + "learning_rate": 0.0006, + "loss": 3.3957953453063965, + "step": 6423 + }, + { + "epoch": 89.22367846221057, + "grad_norm": 0.2043248862028122, + "learning_rate": 0.0006, + "loss": 3.442990779876709, + "step": 6424 + }, + { + "epoch": 89.23765836609873, + "grad_norm": 0.20880229771137238, + "learning_rate": 0.0006, + "loss": 3.434053421020508, + "step": 6425 + }, + { + "epoch": 89.2516382699869, + "grad_norm": 0.22000163793563843, + "learning_rate": 0.0006, + "loss": 3.453723192214966, + "step": 6426 + }, + { + "epoch": 89.26561817387505, + "grad_norm": 0.24656693637371063, + "learning_rate": 0.0006, + "loss": 3.4274513721466064, + "step": 6427 + }, + { + "epoch": 89.27959807776321, + "grad_norm": 0.25207582116127014, + "learning_rate": 0.0006, + "loss": 3.4276046752929688, + "step": 6428 + }, + { + "epoch": 89.29357798165138, + "grad_norm": 0.2345285266637802, + "learning_rate": 0.0006, + "loss": 3.4006080627441406, + "step": 6429 + }, + { + "epoch": 89.30755788553954, + "grad_norm": 0.21787762641906738, + "learning_rate": 0.0006, + "loss": 3.4215078353881836, + "step": 6430 + }, + { + "epoch": 89.3215377894277, + "grad_norm": 0.2894236147403717, + "learning_rate": 0.0006, + "loss": 3.4783596992492676, + "step": 6431 + }, + { + "epoch": 89.33551769331586, + "grad_norm": 0.2847222685813904, + "learning_rate": 0.0006, + "loss": 3.429959297180176, + "step": 6432 + }, + { + "epoch": 89.34949759720402, + "grad_norm": 0.2582961618900299, + "learning_rate": 0.0006, + "loss": 3.452066421508789, + "step": 6433 + }, + { + "epoch": 89.36347750109218, + "grad_norm": 0.24120213091373444, + "learning_rate": 0.0006, + "loss": 3.4637932777404785, + "step": 6434 + }, + { + "epoch": 89.37745740498035, + "grad_norm": 0.2194867879152298, + "learning_rate": 0.0006, + "loss": 3.4527363777160645, + "step": 6435 + }, + { + "epoch": 89.3914373088685, + "grad_norm": 0.21826128661632538, + "learning_rate": 0.0006, + "loss": 3.4796347618103027, + "step": 6436 + }, + { + "epoch": 89.40541721275666, + "grad_norm": 0.2282753586769104, + "learning_rate": 0.0006, + "loss": 3.4368395805358887, + "step": 6437 + }, + { + "epoch": 89.41939711664482, + "grad_norm": 0.23643003404140472, + "learning_rate": 0.0006, + "loss": 3.427896499633789, + "step": 6438 + }, + { + "epoch": 89.43337702053299, + "grad_norm": 0.22480039298534393, + "learning_rate": 0.0006, + "loss": 3.4214162826538086, + "step": 6439 + }, + { + "epoch": 89.44735692442114, + "grad_norm": 0.24800775945186615, + "learning_rate": 0.0006, + "loss": 3.482728958129883, + "step": 6440 + }, + { + "epoch": 89.4613368283093, + "grad_norm": 0.2830938994884491, + "learning_rate": 0.0006, + "loss": 3.460789203643799, + "step": 6441 + }, + { + "epoch": 89.47531673219747, + "grad_norm": 0.24190731346607208, + "learning_rate": 0.0006, + "loss": 3.4165000915527344, + "step": 6442 + }, + { + "epoch": 89.48929663608563, + "grad_norm": 0.22147944569587708, + "learning_rate": 0.0006, + "loss": 3.468981981277466, + "step": 6443 + }, + { + "epoch": 89.50327653997378, + "grad_norm": 0.23627884685993195, + "learning_rate": 0.0006, + "loss": 3.4555022716522217, + "step": 6444 + }, + { + "epoch": 89.51725644386195, + "grad_norm": 0.25639012455940247, + "learning_rate": 0.0006, + "loss": 3.4795055389404297, + "step": 6445 + }, + { + "epoch": 89.53123634775011, + "grad_norm": 0.2540741562843323, + "learning_rate": 0.0006, + "loss": 3.428651809692383, + "step": 6446 + }, + { + "epoch": 89.54521625163827, + "grad_norm": 0.237799733877182, + "learning_rate": 0.0006, + "loss": 3.46543550491333, + "step": 6447 + }, + { + "epoch": 89.55919615552644, + "grad_norm": 0.24322320520877838, + "learning_rate": 0.0006, + "loss": 3.467132091522217, + "step": 6448 + }, + { + "epoch": 89.57317605941459, + "grad_norm": 0.2334299087524414, + "learning_rate": 0.0006, + "loss": 3.469076156616211, + "step": 6449 + }, + { + "epoch": 89.58715596330275, + "grad_norm": 0.25378280878067017, + "learning_rate": 0.0006, + "loss": 3.484861135482788, + "step": 6450 + }, + { + "epoch": 89.60113586719092, + "grad_norm": 0.20370706915855408, + "learning_rate": 0.0006, + "loss": 3.4574594497680664, + "step": 6451 + }, + { + "epoch": 89.61511577107908, + "grad_norm": 0.26076021790504456, + "learning_rate": 0.0006, + "loss": 3.454120635986328, + "step": 6452 + }, + { + "epoch": 89.62909567496723, + "grad_norm": 0.32039397954940796, + "learning_rate": 0.0006, + "loss": 3.4836630821228027, + "step": 6453 + }, + { + "epoch": 89.6430755788554, + "grad_norm": 0.2533518671989441, + "learning_rate": 0.0006, + "loss": 3.4274086952209473, + "step": 6454 + }, + { + "epoch": 89.65705548274356, + "grad_norm": 0.23669421672821045, + "learning_rate": 0.0006, + "loss": 3.481234550476074, + "step": 6455 + }, + { + "epoch": 89.67103538663171, + "grad_norm": 0.24855080246925354, + "learning_rate": 0.0006, + "loss": 3.4526028633117676, + "step": 6456 + }, + { + "epoch": 89.68501529051987, + "grad_norm": 0.26464295387268066, + "learning_rate": 0.0006, + "loss": 3.4849853515625, + "step": 6457 + }, + { + "epoch": 89.69899519440804, + "grad_norm": 0.2327338010072708, + "learning_rate": 0.0006, + "loss": 3.4549481868743896, + "step": 6458 + }, + { + "epoch": 89.7129750982962, + "grad_norm": 0.2237960249185562, + "learning_rate": 0.0006, + "loss": 3.4843358993530273, + "step": 6459 + }, + { + "epoch": 89.72695500218435, + "grad_norm": 0.2624133229255676, + "learning_rate": 0.0006, + "loss": 3.480234384536743, + "step": 6460 + }, + { + "epoch": 89.74093490607252, + "grad_norm": 0.2741307318210602, + "learning_rate": 0.0006, + "loss": 3.486077308654785, + "step": 6461 + }, + { + "epoch": 89.75491480996068, + "grad_norm": 0.26507681608200073, + "learning_rate": 0.0006, + "loss": 3.472601890563965, + "step": 6462 + }, + { + "epoch": 89.76889471384884, + "grad_norm": 0.2763329744338989, + "learning_rate": 0.0006, + "loss": 3.4514942169189453, + "step": 6463 + }, + { + "epoch": 89.78287461773701, + "grad_norm": 0.25115516781806946, + "learning_rate": 0.0006, + "loss": 3.4521241188049316, + "step": 6464 + }, + { + "epoch": 89.79685452162516, + "grad_norm": 0.2608273923397064, + "learning_rate": 0.0006, + "loss": 3.4956421852111816, + "step": 6465 + }, + { + "epoch": 89.81083442551332, + "grad_norm": 0.25732100009918213, + "learning_rate": 0.0006, + "loss": 3.431410789489746, + "step": 6466 + }, + { + "epoch": 89.82481432940149, + "grad_norm": 0.25413885712623596, + "learning_rate": 0.0006, + "loss": 3.4456334114074707, + "step": 6467 + }, + { + "epoch": 89.83879423328965, + "grad_norm": 0.26074308156967163, + "learning_rate": 0.0006, + "loss": 3.4852781295776367, + "step": 6468 + }, + { + "epoch": 89.8527741371778, + "grad_norm": 0.24674317240715027, + "learning_rate": 0.0006, + "loss": 3.492945671081543, + "step": 6469 + }, + { + "epoch": 89.86675404106597, + "grad_norm": 0.2279389649629593, + "learning_rate": 0.0006, + "loss": 3.4742088317871094, + "step": 6470 + }, + { + "epoch": 89.88073394495413, + "grad_norm": 0.2622646689414978, + "learning_rate": 0.0006, + "loss": 3.4317221641540527, + "step": 6471 + }, + { + "epoch": 89.89471384884229, + "grad_norm": 0.2638682425022125, + "learning_rate": 0.0006, + "loss": 3.4556517601013184, + "step": 6472 + }, + { + "epoch": 89.90869375273044, + "grad_norm": 0.23732876777648926, + "learning_rate": 0.0006, + "loss": 3.4607365131378174, + "step": 6473 + }, + { + "epoch": 89.92267365661861, + "grad_norm": 0.24878044426441193, + "learning_rate": 0.0006, + "loss": 3.4899003505706787, + "step": 6474 + }, + { + "epoch": 89.93665356050677, + "grad_norm": 0.28630414605140686, + "learning_rate": 0.0006, + "loss": 3.470259189605713, + "step": 6475 + }, + { + "epoch": 89.95063346439493, + "grad_norm": 0.27317965030670166, + "learning_rate": 0.0006, + "loss": 3.474698066711426, + "step": 6476 + }, + { + "epoch": 89.9646133682831, + "grad_norm": 0.22384391725063324, + "learning_rate": 0.0006, + "loss": 3.485776424407959, + "step": 6477 + }, + { + "epoch": 89.97859327217125, + "grad_norm": 0.21875929832458496, + "learning_rate": 0.0006, + "loss": 3.4453420639038086, + "step": 6478 + }, + { + "epoch": 89.99257317605941, + "grad_norm": 0.25603052973747253, + "learning_rate": 0.0006, + "loss": 3.4507737159729004, + "step": 6479 + }, + { + "epoch": 90.0, + "grad_norm": 0.25681135058403015, + "learning_rate": 0.0006, + "loss": 3.4818739891052246, + "step": 6480 + }, + { + "epoch": 90.0, + "eval_loss": 3.999830484390259, + "eval_runtime": 44.7701, + "eval_samples_per_second": 54.545, + "eval_steps_per_second": 3.417, + "step": 6480 + }, + { + "epoch": 90.01397990388816, + "grad_norm": 0.23689916729927063, + "learning_rate": 0.0006, + "loss": 3.4293808937072754, + "step": 6481 + }, + { + "epoch": 90.02795980777633, + "grad_norm": 0.2913787066936493, + "learning_rate": 0.0006, + "loss": 3.4358348846435547, + "step": 6482 + }, + { + "epoch": 90.04193971166448, + "grad_norm": 0.30623507499694824, + "learning_rate": 0.0006, + "loss": 3.4494967460632324, + "step": 6483 + }, + { + "epoch": 90.05591961555264, + "grad_norm": 0.2518816292285919, + "learning_rate": 0.0006, + "loss": 3.3989272117614746, + "step": 6484 + }, + { + "epoch": 90.06989951944081, + "grad_norm": 0.22332705557346344, + "learning_rate": 0.0006, + "loss": 3.4374301433563232, + "step": 6485 + }, + { + "epoch": 90.08387942332897, + "grad_norm": 0.25442928075790405, + "learning_rate": 0.0006, + "loss": 3.4400265216827393, + "step": 6486 + }, + { + "epoch": 90.09785932721712, + "grad_norm": 0.23519982397556305, + "learning_rate": 0.0006, + "loss": 3.460005283355713, + "step": 6487 + }, + { + "epoch": 90.1118392311053, + "grad_norm": 0.21921132504940033, + "learning_rate": 0.0006, + "loss": 3.4213805198669434, + "step": 6488 + }, + { + "epoch": 90.12581913499345, + "grad_norm": 0.2308962345123291, + "learning_rate": 0.0006, + "loss": 3.40868878364563, + "step": 6489 + }, + { + "epoch": 90.1397990388816, + "grad_norm": 0.25246691703796387, + "learning_rate": 0.0006, + "loss": 3.4305224418640137, + "step": 6490 + }, + { + "epoch": 90.15377894276976, + "grad_norm": 0.2620214521884918, + "learning_rate": 0.0006, + "loss": 3.4540047645568848, + "step": 6491 + }, + { + "epoch": 90.16775884665793, + "grad_norm": 0.26162007451057434, + "learning_rate": 0.0006, + "loss": 3.4242591857910156, + "step": 6492 + }, + { + "epoch": 90.18173875054609, + "grad_norm": 0.2706946134567261, + "learning_rate": 0.0006, + "loss": 3.395965099334717, + "step": 6493 + }, + { + "epoch": 90.19571865443424, + "grad_norm": 0.2841350734233856, + "learning_rate": 0.0006, + "loss": 3.4207353591918945, + "step": 6494 + }, + { + "epoch": 90.20969855832242, + "grad_norm": 0.2355320006608963, + "learning_rate": 0.0006, + "loss": 3.435781240463257, + "step": 6495 + }, + { + "epoch": 90.22367846221057, + "grad_norm": 0.2300831377506256, + "learning_rate": 0.0006, + "loss": 3.484382390975952, + "step": 6496 + }, + { + "epoch": 90.23765836609873, + "grad_norm": 0.23433318734169006, + "learning_rate": 0.0006, + "loss": 3.4701218605041504, + "step": 6497 + }, + { + "epoch": 90.2516382699869, + "grad_norm": 0.22971056401729584, + "learning_rate": 0.0006, + "loss": 3.419468879699707, + "step": 6498 + }, + { + "epoch": 90.26561817387505, + "grad_norm": 0.21990258991718292, + "learning_rate": 0.0006, + "loss": 3.4376916885375977, + "step": 6499 + }, + { + "epoch": 90.27959807776321, + "grad_norm": 0.23238584399223328, + "learning_rate": 0.0006, + "loss": 3.418395519256592, + "step": 6500 + }, + { + "epoch": 90.29357798165138, + "grad_norm": 0.2370229959487915, + "learning_rate": 0.0006, + "loss": 3.434985637664795, + "step": 6501 + }, + { + "epoch": 90.30755788553954, + "grad_norm": 0.24488133192062378, + "learning_rate": 0.0006, + "loss": 3.444256544113159, + "step": 6502 + }, + { + "epoch": 90.3215377894277, + "grad_norm": 0.23631639778614044, + "learning_rate": 0.0006, + "loss": 3.4322943687438965, + "step": 6503 + }, + { + "epoch": 90.33551769331586, + "grad_norm": 0.27867549657821655, + "learning_rate": 0.0006, + "loss": 3.4135818481445312, + "step": 6504 + }, + { + "epoch": 90.34949759720402, + "grad_norm": 0.2811877429485321, + "learning_rate": 0.0006, + "loss": 3.4712491035461426, + "step": 6505 + }, + { + "epoch": 90.36347750109218, + "grad_norm": 0.27869683504104614, + "learning_rate": 0.0006, + "loss": 3.439957618713379, + "step": 6506 + }, + { + "epoch": 90.37745740498035, + "grad_norm": 0.2580752372741699, + "learning_rate": 0.0006, + "loss": 3.4653806686401367, + "step": 6507 + }, + { + "epoch": 90.3914373088685, + "grad_norm": 0.22791235148906708, + "learning_rate": 0.0006, + "loss": 3.473700523376465, + "step": 6508 + }, + { + "epoch": 90.40541721275666, + "grad_norm": 0.24821090698242188, + "learning_rate": 0.0006, + "loss": 3.458252429962158, + "step": 6509 + }, + { + "epoch": 90.41939711664482, + "grad_norm": 0.26579076051712036, + "learning_rate": 0.0006, + "loss": 3.45634126663208, + "step": 6510 + }, + { + "epoch": 90.43337702053299, + "grad_norm": 0.2361977994441986, + "learning_rate": 0.0006, + "loss": 3.4125771522521973, + "step": 6511 + }, + { + "epoch": 90.44735692442114, + "grad_norm": 0.23342299461364746, + "learning_rate": 0.0006, + "loss": 3.45123291015625, + "step": 6512 + }, + { + "epoch": 90.4613368283093, + "grad_norm": 0.2336706519126892, + "learning_rate": 0.0006, + "loss": 3.4376308917999268, + "step": 6513 + }, + { + "epoch": 90.47531673219747, + "grad_norm": 0.23071132600307465, + "learning_rate": 0.0006, + "loss": 3.4657201766967773, + "step": 6514 + }, + { + "epoch": 90.48929663608563, + "grad_norm": 0.2455618977546692, + "learning_rate": 0.0006, + "loss": 3.4548654556274414, + "step": 6515 + }, + { + "epoch": 90.50327653997378, + "grad_norm": 0.2365117371082306, + "learning_rate": 0.0006, + "loss": 3.445751190185547, + "step": 6516 + }, + { + "epoch": 90.51725644386195, + "grad_norm": 0.24233736097812653, + "learning_rate": 0.0006, + "loss": 3.469302177429199, + "step": 6517 + }, + { + "epoch": 90.53123634775011, + "grad_norm": 0.2477443963289261, + "learning_rate": 0.0006, + "loss": 3.454160213470459, + "step": 6518 + }, + { + "epoch": 90.54521625163827, + "grad_norm": 0.22983910143375397, + "learning_rate": 0.0006, + "loss": 3.458289623260498, + "step": 6519 + }, + { + "epoch": 90.55919615552644, + "grad_norm": 0.2191733866930008, + "learning_rate": 0.0006, + "loss": 3.463169813156128, + "step": 6520 + }, + { + "epoch": 90.57317605941459, + "grad_norm": 0.2129858285188675, + "learning_rate": 0.0006, + "loss": 3.4242935180664062, + "step": 6521 + }, + { + "epoch": 90.58715596330275, + "grad_norm": 0.20176434516906738, + "learning_rate": 0.0006, + "loss": 3.47160005569458, + "step": 6522 + }, + { + "epoch": 90.60113586719092, + "grad_norm": 0.20553307235240936, + "learning_rate": 0.0006, + "loss": 3.44893741607666, + "step": 6523 + }, + { + "epoch": 90.61511577107908, + "grad_norm": 0.2038491815328598, + "learning_rate": 0.0006, + "loss": 3.4510388374328613, + "step": 6524 + }, + { + "epoch": 90.62909567496723, + "grad_norm": 0.2051108181476593, + "learning_rate": 0.0006, + "loss": 3.432497978210449, + "step": 6525 + }, + { + "epoch": 90.6430755788554, + "grad_norm": 0.2082308828830719, + "learning_rate": 0.0006, + "loss": 3.4057083129882812, + "step": 6526 + }, + { + "epoch": 90.65705548274356, + "grad_norm": 0.20836716890335083, + "learning_rate": 0.0006, + "loss": 3.4552931785583496, + "step": 6527 + }, + { + "epoch": 90.67103538663171, + "grad_norm": 0.21513152122497559, + "learning_rate": 0.0006, + "loss": 3.4789159297943115, + "step": 6528 + }, + { + "epoch": 90.68501529051987, + "grad_norm": 0.19279007613658905, + "learning_rate": 0.0006, + "loss": 3.4437804222106934, + "step": 6529 + }, + { + "epoch": 90.69899519440804, + "grad_norm": 0.2161160707473755, + "learning_rate": 0.0006, + "loss": 3.4561848640441895, + "step": 6530 + }, + { + "epoch": 90.7129750982962, + "grad_norm": 0.215060755610466, + "learning_rate": 0.0006, + "loss": 3.4479143619537354, + "step": 6531 + }, + { + "epoch": 90.72695500218435, + "grad_norm": 0.22014649212360382, + "learning_rate": 0.0006, + "loss": 3.4805421829223633, + "step": 6532 + }, + { + "epoch": 90.74093490607252, + "grad_norm": 0.21027646958827972, + "learning_rate": 0.0006, + "loss": 3.4582362174987793, + "step": 6533 + }, + { + "epoch": 90.75491480996068, + "grad_norm": 0.20222219824790955, + "learning_rate": 0.0006, + "loss": 3.4903597831726074, + "step": 6534 + }, + { + "epoch": 90.76889471384884, + "grad_norm": 0.20685896277427673, + "learning_rate": 0.0006, + "loss": 3.4575371742248535, + "step": 6535 + }, + { + "epoch": 90.78287461773701, + "grad_norm": 0.21161817014217377, + "learning_rate": 0.0006, + "loss": 3.4690070152282715, + "step": 6536 + }, + { + "epoch": 90.79685452162516, + "grad_norm": 0.21940334141254425, + "learning_rate": 0.0006, + "loss": 3.4706811904907227, + "step": 6537 + }, + { + "epoch": 90.81083442551332, + "grad_norm": 0.26040831208229065, + "learning_rate": 0.0006, + "loss": 3.4382858276367188, + "step": 6538 + }, + { + "epoch": 90.82481432940149, + "grad_norm": 0.2624196708202362, + "learning_rate": 0.0006, + "loss": 3.4288434982299805, + "step": 6539 + }, + { + "epoch": 90.83879423328965, + "grad_norm": 0.21397143602371216, + "learning_rate": 0.0006, + "loss": 3.4233155250549316, + "step": 6540 + }, + { + "epoch": 90.8527741371778, + "grad_norm": 0.21811220049858093, + "learning_rate": 0.0006, + "loss": 3.4677746295928955, + "step": 6541 + }, + { + "epoch": 90.86675404106597, + "grad_norm": 0.2355065494775772, + "learning_rate": 0.0006, + "loss": 3.464076042175293, + "step": 6542 + }, + { + "epoch": 90.88073394495413, + "grad_norm": 0.24195170402526855, + "learning_rate": 0.0006, + "loss": 3.4368276596069336, + "step": 6543 + }, + { + "epoch": 90.89471384884229, + "grad_norm": 0.22805985808372498, + "learning_rate": 0.0006, + "loss": 3.4452972412109375, + "step": 6544 + }, + { + "epoch": 90.90869375273044, + "grad_norm": 0.24331413209438324, + "learning_rate": 0.0006, + "loss": 3.4641945362091064, + "step": 6545 + }, + { + "epoch": 90.92267365661861, + "grad_norm": 0.2548025846481323, + "learning_rate": 0.0006, + "loss": 3.467857837677002, + "step": 6546 + }, + { + "epoch": 90.93665356050677, + "grad_norm": 0.2502395808696747, + "learning_rate": 0.0006, + "loss": 3.4996755123138428, + "step": 6547 + }, + { + "epoch": 90.95063346439493, + "grad_norm": 0.2708912491798401, + "learning_rate": 0.0006, + "loss": 3.4881935119628906, + "step": 6548 + }, + { + "epoch": 90.9646133682831, + "grad_norm": 0.2244291454553604, + "learning_rate": 0.0006, + "loss": 3.4758358001708984, + "step": 6549 + }, + { + "epoch": 90.97859327217125, + "grad_norm": 0.2296932339668274, + "learning_rate": 0.0006, + "loss": 3.4716358184814453, + "step": 6550 + }, + { + "epoch": 90.99257317605941, + "grad_norm": 0.22517654299736023, + "learning_rate": 0.0006, + "loss": 3.4639534950256348, + "step": 6551 + }, + { + "epoch": 91.0, + "grad_norm": 0.2434951514005661, + "learning_rate": 0.0006, + "loss": 3.4479212760925293, + "step": 6552 + }, + { + "epoch": 91.0, + "eval_loss": 3.9979732036590576, + "eval_runtime": 44.7878, + "eval_samples_per_second": 54.524, + "eval_steps_per_second": 3.416, + "step": 6552 + }, + { + "epoch": 91.01397990388816, + "grad_norm": 0.2499505579471588, + "learning_rate": 0.0006, + "loss": 3.4420533180236816, + "step": 6553 + }, + { + "epoch": 91.02795980777633, + "grad_norm": 0.2283775359392166, + "learning_rate": 0.0006, + "loss": 3.397223472595215, + "step": 6554 + }, + { + "epoch": 91.04193971166448, + "grad_norm": 0.24214854836463928, + "learning_rate": 0.0006, + "loss": 3.4300968647003174, + "step": 6555 + }, + { + "epoch": 91.05591961555264, + "grad_norm": 0.24537277221679688, + "learning_rate": 0.0006, + "loss": 3.3899738788604736, + "step": 6556 + }, + { + "epoch": 91.06989951944081, + "grad_norm": 0.22344836592674255, + "learning_rate": 0.0006, + "loss": 3.4111621379852295, + "step": 6557 + }, + { + "epoch": 91.08387942332897, + "grad_norm": 0.25178757309913635, + "learning_rate": 0.0006, + "loss": 3.3929779529571533, + "step": 6558 + }, + { + "epoch": 91.09785932721712, + "grad_norm": 0.24584028124809265, + "learning_rate": 0.0006, + "loss": 3.4258031845092773, + "step": 6559 + }, + { + "epoch": 91.1118392311053, + "grad_norm": 0.21985837817192078, + "learning_rate": 0.0006, + "loss": 3.440598964691162, + "step": 6560 + }, + { + "epoch": 91.12581913499345, + "grad_norm": 0.22723308205604553, + "learning_rate": 0.0006, + "loss": 3.381110668182373, + "step": 6561 + }, + { + "epoch": 91.1397990388816, + "grad_norm": 0.230651393532753, + "learning_rate": 0.0006, + "loss": 3.405940055847168, + "step": 6562 + }, + { + "epoch": 91.15377894276976, + "grad_norm": 0.22571954131126404, + "learning_rate": 0.0006, + "loss": 3.4182586669921875, + "step": 6563 + }, + { + "epoch": 91.16775884665793, + "grad_norm": 0.2315082997083664, + "learning_rate": 0.0006, + "loss": 3.4258971214294434, + "step": 6564 + }, + { + "epoch": 91.18173875054609, + "grad_norm": 0.24481143057346344, + "learning_rate": 0.0006, + "loss": 3.414041042327881, + "step": 6565 + }, + { + "epoch": 91.19571865443424, + "grad_norm": 0.24179089069366455, + "learning_rate": 0.0006, + "loss": 3.446119785308838, + "step": 6566 + }, + { + "epoch": 91.20969855832242, + "grad_norm": 0.2173374891281128, + "learning_rate": 0.0006, + "loss": 3.4450573921203613, + "step": 6567 + }, + { + "epoch": 91.22367846221057, + "grad_norm": 0.22432099282741547, + "learning_rate": 0.0006, + "loss": 3.3917040824890137, + "step": 6568 + }, + { + "epoch": 91.23765836609873, + "grad_norm": 0.24475252628326416, + "learning_rate": 0.0006, + "loss": 3.478754997253418, + "step": 6569 + }, + { + "epoch": 91.2516382699869, + "grad_norm": 0.2670491933822632, + "learning_rate": 0.0006, + "loss": 3.4345972537994385, + "step": 6570 + }, + { + "epoch": 91.26561817387505, + "grad_norm": 0.2913564443588257, + "learning_rate": 0.0006, + "loss": 3.4358811378479004, + "step": 6571 + }, + { + "epoch": 91.27959807776321, + "grad_norm": 0.2748962938785553, + "learning_rate": 0.0006, + "loss": 3.4434967041015625, + "step": 6572 + }, + { + "epoch": 91.29357798165138, + "grad_norm": 0.26680848002433777, + "learning_rate": 0.0006, + "loss": 3.4508543014526367, + "step": 6573 + }, + { + "epoch": 91.30755788553954, + "grad_norm": 0.24651028215885162, + "learning_rate": 0.0006, + "loss": 3.4454240798950195, + "step": 6574 + }, + { + "epoch": 91.3215377894277, + "grad_norm": 0.26599520444869995, + "learning_rate": 0.0006, + "loss": 3.478940963745117, + "step": 6575 + }, + { + "epoch": 91.33551769331586, + "grad_norm": 0.24619929492473602, + "learning_rate": 0.0006, + "loss": 3.4413816928863525, + "step": 6576 + }, + { + "epoch": 91.34949759720402, + "grad_norm": 0.22422556579113007, + "learning_rate": 0.0006, + "loss": 3.442748785018921, + "step": 6577 + }, + { + "epoch": 91.36347750109218, + "grad_norm": 0.2376735806465149, + "learning_rate": 0.0006, + "loss": 3.4344892501831055, + "step": 6578 + }, + { + "epoch": 91.37745740498035, + "grad_norm": 0.24284742772579193, + "learning_rate": 0.0006, + "loss": 3.4585022926330566, + "step": 6579 + }, + { + "epoch": 91.3914373088685, + "grad_norm": 0.22316616773605347, + "learning_rate": 0.0006, + "loss": 3.4509897232055664, + "step": 6580 + }, + { + "epoch": 91.40541721275666, + "grad_norm": 0.2550467848777771, + "learning_rate": 0.0006, + "loss": 3.4034252166748047, + "step": 6581 + }, + { + "epoch": 91.41939711664482, + "grad_norm": 0.256962388753891, + "learning_rate": 0.0006, + "loss": 3.4422130584716797, + "step": 6582 + }, + { + "epoch": 91.43337702053299, + "grad_norm": 0.22875230014324188, + "learning_rate": 0.0006, + "loss": 3.4408864974975586, + "step": 6583 + }, + { + "epoch": 91.44735692442114, + "grad_norm": 0.22402530908584595, + "learning_rate": 0.0006, + "loss": 3.43098783493042, + "step": 6584 + }, + { + "epoch": 91.4613368283093, + "grad_norm": 0.24842505156993866, + "learning_rate": 0.0006, + "loss": 3.4330012798309326, + "step": 6585 + }, + { + "epoch": 91.47531673219747, + "grad_norm": 0.2514190077781677, + "learning_rate": 0.0006, + "loss": 3.4299612045288086, + "step": 6586 + }, + { + "epoch": 91.48929663608563, + "grad_norm": 0.23662923276424408, + "learning_rate": 0.0006, + "loss": 3.419963836669922, + "step": 6587 + }, + { + "epoch": 91.50327653997378, + "grad_norm": 0.23032444715499878, + "learning_rate": 0.0006, + "loss": 3.446972370147705, + "step": 6588 + }, + { + "epoch": 91.51725644386195, + "grad_norm": 0.22281943261623383, + "learning_rate": 0.0006, + "loss": 3.4780263900756836, + "step": 6589 + }, + { + "epoch": 91.53123634775011, + "grad_norm": 0.21819400787353516, + "learning_rate": 0.0006, + "loss": 3.4525628089904785, + "step": 6590 + }, + { + "epoch": 91.54521625163827, + "grad_norm": 0.216011643409729, + "learning_rate": 0.0006, + "loss": 3.4757239818573, + "step": 6591 + }, + { + "epoch": 91.55919615552644, + "grad_norm": 0.21120208501815796, + "learning_rate": 0.0006, + "loss": 3.4310784339904785, + "step": 6592 + }, + { + "epoch": 91.57317605941459, + "grad_norm": 0.23314659297466278, + "learning_rate": 0.0006, + "loss": 3.454822540283203, + "step": 6593 + }, + { + "epoch": 91.58715596330275, + "grad_norm": 0.25187376141548157, + "learning_rate": 0.0006, + "loss": 3.436480760574341, + "step": 6594 + }, + { + "epoch": 91.60113586719092, + "grad_norm": 0.26365742087364197, + "learning_rate": 0.0006, + "loss": 3.474677562713623, + "step": 6595 + }, + { + "epoch": 91.61511577107908, + "grad_norm": 0.2345830202102661, + "learning_rate": 0.0006, + "loss": 3.4740800857543945, + "step": 6596 + }, + { + "epoch": 91.62909567496723, + "grad_norm": 0.21683621406555176, + "learning_rate": 0.0006, + "loss": 3.472069263458252, + "step": 6597 + }, + { + "epoch": 91.6430755788554, + "grad_norm": 0.20824037492275238, + "learning_rate": 0.0006, + "loss": 3.477346897125244, + "step": 6598 + }, + { + "epoch": 91.65705548274356, + "grad_norm": 0.24006229639053345, + "learning_rate": 0.0006, + "loss": 3.4730865955352783, + "step": 6599 + }, + { + "epoch": 91.67103538663171, + "grad_norm": 0.23281389474868774, + "learning_rate": 0.0006, + "loss": 3.460124969482422, + "step": 6600 + }, + { + "epoch": 91.68501529051987, + "grad_norm": 0.2253323197364807, + "learning_rate": 0.0006, + "loss": 3.461782455444336, + "step": 6601 + }, + { + "epoch": 91.69899519440804, + "grad_norm": 0.23947115242481232, + "learning_rate": 0.0006, + "loss": 3.4339637756347656, + "step": 6602 + }, + { + "epoch": 91.7129750982962, + "grad_norm": 0.23497240245342255, + "learning_rate": 0.0006, + "loss": 3.4228572845458984, + "step": 6603 + }, + { + "epoch": 91.72695500218435, + "grad_norm": 0.25088146328926086, + "learning_rate": 0.0006, + "loss": 3.447093963623047, + "step": 6604 + }, + { + "epoch": 91.74093490607252, + "grad_norm": 0.26712968945503235, + "learning_rate": 0.0006, + "loss": 3.4653635025024414, + "step": 6605 + }, + { + "epoch": 91.75491480996068, + "grad_norm": 0.26644182205200195, + "learning_rate": 0.0006, + "loss": 3.443108558654785, + "step": 6606 + }, + { + "epoch": 91.76889471384884, + "grad_norm": 0.2389398217201233, + "learning_rate": 0.0006, + "loss": 3.44514799118042, + "step": 6607 + }, + { + "epoch": 91.78287461773701, + "grad_norm": 0.23223981261253357, + "learning_rate": 0.0006, + "loss": 3.4985134601593018, + "step": 6608 + }, + { + "epoch": 91.79685452162516, + "grad_norm": 0.25977692008018494, + "learning_rate": 0.0006, + "loss": 3.4278247356414795, + "step": 6609 + }, + { + "epoch": 91.81083442551332, + "grad_norm": 0.29857826232910156, + "learning_rate": 0.0006, + "loss": 3.4715912342071533, + "step": 6610 + }, + { + "epoch": 91.82481432940149, + "grad_norm": 0.2577708959579468, + "learning_rate": 0.0006, + "loss": 3.4724321365356445, + "step": 6611 + }, + { + "epoch": 91.83879423328965, + "grad_norm": 0.23246656358242035, + "learning_rate": 0.0006, + "loss": 3.4876670837402344, + "step": 6612 + }, + { + "epoch": 91.8527741371778, + "grad_norm": 0.2779546082019806, + "learning_rate": 0.0006, + "loss": 3.435089111328125, + "step": 6613 + }, + { + "epoch": 91.86675404106597, + "grad_norm": 0.2979820966720581, + "learning_rate": 0.0006, + "loss": 3.4532129764556885, + "step": 6614 + }, + { + "epoch": 91.88073394495413, + "grad_norm": 0.2763381600379944, + "learning_rate": 0.0006, + "loss": 3.4709205627441406, + "step": 6615 + }, + { + "epoch": 91.89471384884229, + "grad_norm": 0.2561747133731842, + "learning_rate": 0.0006, + "loss": 3.4988009929656982, + "step": 6616 + }, + { + "epoch": 91.90869375273044, + "grad_norm": 0.2313738912343979, + "learning_rate": 0.0006, + "loss": 3.4592323303222656, + "step": 6617 + }, + { + "epoch": 91.92267365661861, + "grad_norm": 0.2586052119731903, + "learning_rate": 0.0006, + "loss": 3.4668517112731934, + "step": 6618 + }, + { + "epoch": 91.93665356050677, + "grad_norm": 0.29294443130493164, + "learning_rate": 0.0006, + "loss": 3.4860308170318604, + "step": 6619 + }, + { + "epoch": 91.95063346439493, + "grad_norm": 0.30498480796813965, + "learning_rate": 0.0006, + "loss": 3.4664015769958496, + "step": 6620 + }, + { + "epoch": 91.9646133682831, + "grad_norm": 0.2574566900730133, + "learning_rate": 0.0006, + "loss": 3.4967851638793945, + "step": 6621 + }, + { + "epoch": 91.97859327217125, + "grad_norm": 0.21988359093666077, + "learning_rate": 0.0006, + "loss": 3.4907846450805664, + "step": 6622 + }, + { + "epoch": 91.99257317605941, + "grad_norm": 0.25068747997283936, + "learning_rate": 0.0006, + "loss": 3.4579708576202393, + "step": 6623 + }, + { + "epoch": 92.0, + "grad_norm": 0.2999906837940216, + "learning_rate": 0.0006, + "loss": 3.435760498046875, + "step": 6624 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 2.8228110853110497e+18, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6624/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6912/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6912/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6912/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6912/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..08b28c09a3693667af1cbc4de9ad4969618d73f9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11e91224954faf34a76c5b4d7f5af56f7eb26dc7384d99058d7ef07957a73778 +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6912/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..4e701d4f41154efaee252624ca432544ea9390d5 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80836042668d7d6adb7a0b3f0e690af3638a4d75371bb6dba3171cd4e07383ab +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6912/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..2c701d30faa487e42b3fd65696fc13d918e2c2d3 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:385ae0f3f2d767fe0b52b7b9b098bcd0bea349716af723a005f4c73afe10e46f +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6912/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..c178509162c172d0c3684cb66801446c68338f0c --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:253bedd786ed62198d475c6663663e555cb0fd6313154d26d2c1dbb24c531c91 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6912/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..80771355cefe444a789dc3e83678b2d55d3b8db3 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d0b661f1b18caa6118d27fef199882abc2f72f0aaf9b16c81f9627cbcf08e00 +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6912/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6912/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6912/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..eb71aaf4a5d68f784daca9ead6f8a1d1f3627a65 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/trainer_state.json @@ -0,0 +1,49178 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 96.0, + "eval_steps": 500, + "global_step": 6912, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + }, + { + "epoch": 8.0, + "eval_loss": 5.100707530975342, + "eval_runtime": 44.2493, + "eval_samples_per_second": 55.187, + "eval_steps_per_second": 3.458, + "step": 576 + }, + { + "epoch": 8.013979903888162, + "grad_norm": 0.3658510148525238, + "learning_rate": 0.0006, + "loss": 4.759055137634277, + "step": 577 + }, + { + "epoch": 8.027959807776321, + "grad_norm": 0.41794446110725403, + "learning_rate": 0.0006, + "loss": 4.737661838531494, + "step": 578 + }, + { + "epoch": 8.041939711664483, + "grad_norm": 0.43284085392951965, + "learning_rate": 0.0006, + "loss": 4.775538444519043, + "step": 579 + }, + { + "epoch": 8.055919615552643, + "grad_norm": 0.4716675281524658, + "learning_rate": 0.0006, + "loss": 4.762231826782227, + "step": 580 + }, + { + "epoch": 8.069899519440805, + "grad_norm": 0.3849579393863678, + "learning_rate": 0.0006, + "loss": 4.753598690032959, + "step": 581 + }, + { + "epoch": 8.083879423328964, + "grad_norm": 0.3721151053905487, + "learning_rate": 0.0006, + "loss": 4.728978157043457, + "step": 582 + }, + { + "epoch": 8.097859327217126, + "grad_norm": 0.37009572982788086, + "learning_rate": 0.0006, + "loss": 4.759153366088867, + "step": 583 + }, + { + "epoch": 8.111839231105286, + "grad_norm": 0.37051302194595337, + "learning_rate": 0.0006, + "loss": 4.744197368621826, + "step": 584 + }, + { + "epoch": 8.125819134993447, + "grad_norm": 0.331238329410553, + "learning_rate": 0.0006, + "loss": 4.7338385581970215, + "step": 585 + }, + { + "epoch": 8.139799038881607, + "grad_norm": 0.3737713694572449, + "learning_rate": 0.0006, + "loss": 4.719110488891602, + "step": 586 + }, + { + "epoch": 8.153778942769769, + "grad_norm": 0.3713214695453644, + "learning_rate": 0.0006, + "loss": 4.734012126922607, + "step": 587 + }, + { + "epoch": 8.167758846657929, + "grad_norm": 0.4060780107975006, + "learning_rate": 0.0006, + "loss": 4.746830940246582, + "step": 588 + }, + { + "epoch": 8.18173875054609, + "grad_norm": 0.39814314246177673, + "learning_rate": 0.0006, + "loss": 4.722851753234863, + "step": 589 + }, + { + "epoch": 8.19571865443425, + "grad_norm": 0.3175652325153351, + "learning_rate": 0.0006, + "loss": 4.745110034942627, + "step": 590 + }, + { + "epoch": 8.209698558322412, + "grad_norm": 0.37214916944503784, + "learning_rate": 0.0006, + "loss": 4.7362775802612305, + "step": 591 + }, + { + "epoch": 8.223678462210572, + "grad_norm": 0.3873472809791565, + "learning_rate": 0.0006, + "loss": 4.738964557647705, + "step": 592 + }, + { + "epoch": 8.237658366098733, + "grad_norm": 0.3299207091331482, + "learning_rate": 0.0006, + "loss": 4.713451385498047, + "step": 593 + }, + { + "epoch": 8.251638269986893, + "grad_norm": 0.32445064187049866, + "learning_rate": 0.0006, + "loss": 4.725602149963379, + "step": 594 + }, + { + "epoch": 8.265618173875055, + "grad_norm": 0.32903164625167847, + "learning_rate": 0.0006, + "loss": 4.732064247131348, + "step": 595 + }, + { + "epoch": 8.279598077763215, + "grad_norm": 0.3166804313659668, + "learning_rate": 0.0006, + "loss": 4.678950786590576, + "step": 596 + }, + { + "epoch": 8.293577981651376, + "grad_norm": 0.2750290334224701, + "learning_rate": 0.0006, + "loss": 4.719513416290283, + "step": 597 + }, + { + "epoch": 8.307557885539538, + "grad_norm": 0.291029691696167, + "learning_rate": 0.0006, + "loss": 4.715405464172363, + "step": 598 + }, + { + "epoch": 8.321537789427698, + "grad_norm": 0.34105145931243896, + "learning_rate": 0.0006, + "loss": 4.722611427307129, + "step": 599 + }, + { + "epoch": 8.33551769331586, + "grad_norm": 0.3078882694244385, + "learning_rate": 0.0006, + "loss": 4.668856620788574, + "step": 600 + }, + { + "epoch": 8.349497597204019, + "grad_norm": 0.3218833804130554, + "learning_rate": 0.0006, + "loss": 4.719579696655273, + "step": 601 + }, + { + "epoch": 8.36347750109218, + "grad_norm": 0.35716721415519714, + "learning_rate": 0.0006, + "loss": 4.690774440765381, + "step": 602 + }, + { + "epoch": 8.37745740498034, + "grad_norm": 0.3045452833175659, + "learning_rate": 0.0006, + "loss": 4.696503639221191, + "step": 603 + }, + { + "epoch": 8.391437308868502, + "grad_norm": 0.3127244710922241, + "learning_rate": 0.0006, + "loss": 4.701899528503418, + "step": 604 + }, + { + "epoch": 8.405417212756662, + "grad_norm": 0.34988710284233093, + "learning_rate": 0.0006, + "loss": 4.677641868591309, + "step": 605 + }, + { + "epoch": 8.419397116644824, + "grad_norm": 0.34035569429397583, + "learning_rate": 0.0006, + "loss": 4.707778453826904, + "step": 606 + }, + { + "epoch": 8.433377020532983, + "grad_norm": 0.3341112732887268, + "learning_rate": 0.0006, + "loss": 4.724853038787842, + "step": 607 + }, + { + "epoch": 8.447356924421145, + "grad_norm": 0.41744324564933777, + "learning_rate": 0.0006, + "loss": 4.680908203125, + "step": 608 + }, + { + "epoch": 8.461336828309305, + "grad_norm": 0.40402331948280334, + "learning_rate": 0.0006, + "loss": 4.726455211639404, + "step": 609 + }, + { + "epoch": 8.475316732197467, + "grad_norm": 0.4727570414543152, + "learning_rate": 0.0006, + "loss": 4.6793084144592285, + "step": 610 + }, + { + "epoch": 8.489296636085626, + "grad_norm": 0.43002694845199585, + "learning_rate": 0.0006, + "loss": 4.663918972015381, + "step": 611 + }, + { + "epoch": 8.503276539973788, + "grad_norm": 0.36124858260154724, + "learning_rate": 0.0006, + "loss": 4.657375335693359, + "step": 612 + }, + { + "epoch": 8.517256443861948, + "grad_norm": 0.37644803524017334, + "learning_rate": 0.0006, + "loss": 4.676977157592773, + "step": 613 + }, + { + "epoch": 8.53123634775011, + "grad_norm": 0.32347747683525085, + "learning_rate": 0.0006, + "loss": 4.708547115325928, + "step": 614 + }, + { + "epoch": 8.54521625163827, + "grad_norm": 0.3071717619895935, + "learning_rate": 0.0006, + "loss": 4.650189399719238, + "step": 615 + }, + { + "epoch": 8.55919615552643, + "grad_norm": 0.30222490429878235, + "learning_rate": 0.0006, + "loss": 4.647942543029785, + "step": 616 + }, + { + "epoch": 8.57317605941459, + "grad_norm": 0.31545212864875793, + "learning_rate": 0.0006, + "loss": 4.660242080688477, + "step": 617 + }, + { + "epoch": 8.587155963302752, + "grad_norm": 0.31644752621650696, + "learning_rate": 0.0006, + "loss": 4.666710376739502, + "step": 618 + }, + { + "epoch": 8.601135867190912, + "grad_norm": 0.26057198643684387, + "learning_rate": 0.0006, + "loss": 4.668096542358398, + "step": 619 + }, + { + "epoch": 8.615115771079074, + "grad_norm": 0.25473910570144653, + "learning_rate": 0.0006, + "loss": 4.641562461853027, + "step": 620 + }, + { + "epoch": 8.629095674967235, + "grad_norm": 0.2456732839345932, + "learning_rate": 0.0006, + "loss": 4.6545281410217285, + "step": 621 + }, + { + "epoch": 8.643075578855395, + "grad_norm": 0.25180476903915405, + "learning_rate": 0.0006, + "loss": 4.6506524085998535, + "step": 622 + }, + { + "epoch": 8.657055482743557, + "grad_norm": 0.21761579811573029, + "learning_rate": 0.0006, + "loss": 4.638909339904785, + "step": 623 + }, + { + "epoch": 8.671035386631717, + "grad_norm": 0.23590542376041412, + "learning_rate": 0.0006, + "loss": 4.6572747230529785, + "step": 624 + }, + { + "epoch": 8.685015290519878, + "grad_norm": 0.23870624601840973, + "learning_rate": 0.0006, + "loss": 4.643742084503174, + "step": 625 + }, + { + "epoch": 8.698995194408038, + "grad_norm": 0.2191203385591507, + "learning_rate": 0.0006, + "loss": 4.632617950439453, + "step": 626 + }, + { + "epoch": 8.7129750982962, + "grad_norm": 0.22107063233852386, + "learning_rate": 0.0006, + "loss": 4.625616073608398, + "step": 627 + }, + { + "epoch": 8.72695500218436, + "grad_norm": 0.20833902060985565, + "learning_rate": 0.0006, + "loss": 4.609896659851074, + "step": 628 + }, + { + "epoch": 8.740934906072521, + "grad_norm": 0.254967600107193, + "learning_rate": 0.0006, + "loss": 4.651735782623291, + "step": 629 + }, + { + "epoch": 8.754914809960681, + "grad_norm": 0.31587523221969604, + "learning_rate": 0.0006, + "loss": 4.6404032707214355, + "step": 630 + }, + { + "epoch": 8.768894713848843, + "grad_norm": 0.28598251938819885, + "learning_rate": 0.0006, + "loss": 4.602679252624512, + "step": 631 + }, + { + "epoch": 8.782874617737003, + "grad_norm": 0.23216590285301208, + "learning_rate": 0.0006, + "loss": 4.610319137573242, + "step": 632 + }, + { + "epoch": 8.796854521625164, + "grad_norm": 0.29212239384651184, + "learning_rate": 0.0006, + "loss": 4.600744247436523, + "step": 633 + }, + { + "epoch": 8.810834425513324, + "grad_norm": 0.3375801146030426, + "learning_rate": 0.0006, + "loss": 4.627819061279297, + "step": 634 + }, + { + "epoch": 8.824814329401486, + "grad_norm": 0.4207753837108612, + "learning_rate": 0.0006, + "loss": 4.634505271911621, + "step": 635 + }, + { + "epoch": 8.838794233289645, + "grad_norm": 0.4640173614025116, + "learning_rate": 0.0006, + "loss": 4.636714935302734, + "step": 636 + }, + { + "epoch": 8.852774137177807, + "grad_norm": 0.5255663990974426, + "learning_rate": 0.0006, + "loss": 4.659462928771973, + "step": 637 + }, + { + "epoch": 8.866754041065967, + "grad_norm": 0.5108268857002258, + "learning_rate": 0.0006, + "loss": 4.633192539215088, + "step": 638 + }, + { + "epoch": 8.880733944954128, + "grad_norm": 0.3821936845779419, + "learning_rate": 0.0006, + "loss": 4.621200084686279, + "step": 639 + }, + { + "epoch": 8.89471384884229, + "grad_norm": 0.3918485939502716, + "learning_rate": 0.0006, + "loss": 4.632599830627441, + "step": 640 + }, + { + "epoch": 8.90869375273045, + "grad_norm": 0.3416556119918823, + "learning_rate": 0.0006, + "loss": 4.620438098907471, + "step": 641 + }, + { + "epoch": 8.922673656618612, + "grad_norm": 0.3191553056240082, + "learning_rate": 0.0006, + "loss": 4.617823600769043, + "step": 642 + }, + { + "epoch": 8.936653560506771, + "grad_norm": 0.3368529677391052, + "learning_rate": 0.0006, + "loss": 4.617222785949707, + "step": 643 + }, + { + "epoch": 8.950633464394933, + "grad_norm": 0.3255428969860077, + "learning_rate": 0.0006, + "loss": 4.633878707885742, + "step": 644 + }, + { + "epoch": 8.964613368283093, + "grad_norm": 0.31394779682159424, + "learning_rate": 0.0006, + "loss": 4.642603874206543, + "step": 645 + }, + { + "epoch": 8.978593272171254, + "grad_norm": 0.29999351501464844, + "learning_rate": 0.0006, + "loss": 4.5925211906433105, + "step": 646 + }, + { + "epoch": 8.992573176059414, + "grad_norm": 0.309154748916626, + "learning_rate": 0.0006, + "loss": 4.61745023727417, + "step": 647 + }, + { + "epoch": 9.0, + "grad_norm": 0.2660452425479889, + "learning_rate": 0.0006, + "loss": 4.575107097625732, + "step": 648 + }, + { + "epoch": 9.0, + "eval_loss": 4.8804192543029785, + "eval_runtime": 45.0015, + "eval_samples_per_second": 54.265, + "eval_steps_per_second": 3.4, + "step": 648 + }, + { + "epoch": 9.013979903888162, + "grad_norm": 0.24159297347068787, + "learning_rate": 0.0006, + "loss": 4.571323871612549, + "step": 649 + }, + { + "epoch": 9.027959807776321, + "grad_norm": 0.2835831046104431, + "learning_rate": 0.0006, + "loss": 4.614255905151367, + "step": 650 + }, + { + "epoch": 9.041939711664483, + "grad_norm": 0.2646859288215637, + "learning_rate": 0.0006, + "loss": 4.578947067260742, + "step": 651 + }, + { + "epoch": 9.055919615552643, + "grad_norm": 0.28868553042411804, + "learning_rate": 0.0006, + "loss": 4.575977325439453, + "step": 652 + }, + { + "epoch": 9.069899519440805, + "grad_norm": 0.2899586856365204, + "learning_rate": 0.0006, + "loss": 4.541798114776611, + "step": 653 + }, + { + "epoch": 9.083879423328964, + "grad_norm": 0.32786068320274353, + "learning_rate": 0.0006, + "loss": 4.575140953063965, + "step": 654 + }, + { + "epoch": 9.097859327217126, + "grad_norm": 0.35675594210624695, + "learning_rate": 0.0006, + "loss": 4.58184814453125, + "step": 655 + }, + { + "epoch": 9.111839231105286, + "grad_norm": 0.3380381166934967, + "learning_rate": 0.0006, + "loss": 4.546271324157715, + "step": 656 + }, + { + "epoch": 9.125819134993447, + "grad_norm": 0.3035511374473572, + "learning_rate": 0.0006, + "loss": 4.591629981994629, + "step": 657 + }, + { + "epoch": 9.139799038881607, + "grad_norm": 0.2733091711997986, + "learning_rate": 0.0006, + "loss": 4.559020042419434, + "step": 658 + }, + { + "epoch": 9.153778942769769, + "grad_norm": 0.2870676815509796, + "learning_rate": 0.0006, + "loss": 4.552787780761719, + "step": 659 + }, + { + "epoch": 9.167758846657929, + "grad_norm": 0.37471064925193787, + "learning_rate": 0.0006, + "loss": 4.572757244110107, + "step": 660 + }, + { + "epoch": 9.18173875054609, + "grad_norm": 0.37889063358306885, + "learning_rate": 0.0006, + "loss": 4.573302268981934, + "step": 661 + }, + { + "epoch": 9.19571865443425, + "grad_norm": 0.29983851313591003, + "learning_rate": 0.0006, + "loss": 4.571202754974365, + "step": 662 + }, + { + "epoch": 9.209698558322412, + "grad_norm": 0.27595147490501404, + "learning_rate": 0.0006, + "loss": 4.529508590698242, + "step": 663 + }, + { + "epoch": 9.223678462210572, + "grad_norm": 0.22693437337875366, + "learning_rate": 0.0006, + "loss": 4.572267532348633, + "step": 664 + }, + { + "epoch": 9.237658366098733, + "grad_norm": 0.27147138118743896, + "learning_rate": 0.0006, + "loss": 4.529747009277344, + "step": 665 + }, + { + "epoch": 9.251638269986893, + "grad_norm": 0.24952703714370728, + "learning_rate": 0.0006, + "loss": 4.553647994995117, + "step": 666 + }, + { + "epoch": 9.265618173875055, + "grad_norm": 0.3086707592010498, + "learning_rate": 0.0006, + "loss": 4.494636058807373, + "step": 667 + }, + { + "epoch": 9.279598077763215, + "grad_norm": 0.3265218138694763, + "learning_rate": 0.0006, + "loss": 4.522481918334961, + "step": 668 + }, + { + "epoch": 9.293577981651376, + "grad_norm": 0.2744608223438263, + "learning_rate": 0.0006, + "loss": 4.544595241546631, + "step": 669 + }, + { + "epoch": 9.307557885539538, + "grad_norm": 0.26698485016822815, + "learning_rate": 0.0006, + "loss": 4.506407260894775, + "step": 670 + }, + { + "epoch": 9.321537789427698, + "grad_norm": 0.2775942087173462, + "learning_rate": 0.0006, + "loss": 4.534619331359863, + "step": 671 + }, + { + "epoch": 9.33551769331586, + "grad_norm": 0.2421862781047821, + "learning_rate": 0.0006, + "loss": 4.523318290710449, + "step": 672 + }, + { + "epoch": 9.349497597204019, + "grad_norm": 0.2756497263908386, + "learning_rate": 0.0006, + "loss": 4.517561912536621, + "step": 673 + }, + { + "epoch": 9.36347750109218, + "grad_norm": 0.28845369815826416, + "learning_rate": 0.0006, + "loss": 4.530844688415527, + "step": 674 + }, + { + "epoch": 9.37745740498034, + "grad_norm": 0.32285866141319275, + "learning_rate": 0.0006, + "loss": 4.55369758605957, + "step": 675 + }, + { + "epoch": 9.391437308868502, + "grad_norm": 0.3726065754890442, + "learning_rate": 0.0006, + "loss": 4.524348258972168, + "step": 676 + }, + { + "epoch": 9.405417212756662, + "grad_norm": 0.39524078369140625, + "learning_rate": 0.0006, + "loss": 4.535778045654297, + "step": 677 + }, + { + "epoch": 9.419397116644824, + "grad_norm": 0.3859797716140747, + "learning_rate": 0.0006, + "loss": 4.538474082946777, + "step": 678 + }, + { + "epoch": 9.433377020532983, + "grad_norm": 0.36151406168937683, + "learning_rate": 0.0006, + "loss": 4.54434061050415, + "step": 679 + }, + { + "epoch": 9.447356924421145, + "grad_norm": 0.40345999598503113, + "learning_rate": 0.0006, + "loss": 4.532961845397949, + "step": 680 + }, + { + "epoch": 9.461336828309305, + "grad_norm": 0.38864144682884216, + "learning_rate": 0.0006, + "loss": 4.567630767822266, + "step": 681 + }, + { + "epoch": 9.475316732197467, + "grad_norm": 0.3816355764865875, + "learning_rate": 0.0006, + "loss": 4.535771369934082, + "step": 682 + }, + { + "epoch": 9.489296636085626, + "grad_norm": 0.38756558299064636, + "learning_rate": 0.0006, + "loss": 4.4971089363098145, + "step": 683 + }, + { + "epoch": 9.503276539973788, + "grad_norm": 0.4572933614253998, + "learning_rate": 0.0006, + "loss": 4.534860134124756, + "step": 684 + }, + { + "epoch": 9.517256443861948, + "grad_norm": 0.42368650436401367, + "learning_rate": 0.0006, + "loss": 4.542638301849365, + "step": 685 + }, + { + "epoch": 9.53123634775011, + "grad_norm": 0.36939486861228943, + "learning_rate": 0.0006, + "loss": 4.571430206298828, + "step": 686 + }, + { + "epoch": 9.54521625163827, + "grad_norm": 0.3900398313999176, + "learning_rate": 0.0006, + "loss": 4.544435501098633, + "step": 687 + }, + { + "epoch": 9.55919615552643, + "grad_norm": 0.37829288840293884, + "learning_rate": 0.0006, + "loss": 4.564268112182617, + "step": 688 + }, + { + "epoch": 9.57317605941459, + "grad_norm": 0.3553886115550995, + "learning_rate": 0.0006, + "loss": 4.5373430252075195, + "step": 689 + }, + { + "epoch": 9.587155963302752, + "grad_norm": 0.3613419532775879, + "learning_rate": 0.0006, + "loss": 4.559074401855469, + "step": 690 + }, + { + "epoch": 9.601135867190912, + "grad_norm": 0.32644546031951904, + "learning_rate": 0.0006, + "loss": 4.533667087554932, + "step": 691 + }, + { + "epoch": 9.615115771079074, + "grad_norm": 0.3264399468898773, + "learning_rate": 0.0006, + "loss": 4.508299350738525, + "step": 692 + }, + { + "epoch": 9.629095674967235, + "grad_norm": 0.3534526526927948, + "learning_rate": 0.0006, + "loss": 4.542442798614502, + "step": 693 + }, + { + "epoch": 9.643075578855395, + "grad_norm": 0.3333452343940735, + "learning_rate": 0.0006, + "loss": 4.497692584991455, + "step": 694 + }, + { + "epoch": 9.657055482743557, + "grad_norm": 0.3214292526245117, + "learning_rate": 0.0006, + "loss": 4.512363433837891, + "step": 695 + }, + { + "epoch": 9.671035386631717, + "grad_norm": 0.2805672585964203, + "learning_rate": 0.0006, + "loss": 4.496874809265137, + "step": 696 + }, + { + "epoch": 9.685015290519878, + "grad_norm": 0.2618725895881653, + "learning_rate": 0.0006, + "loss": 4.51375675201416, + "step": 697 + }, + { + "epoch": 9.698995194408038, + "grad_norm": 0.2556597888469696, + "learning_rate": 0.0006, + "loss": 4.512338638305664, + "step": 698 + }, + { + "epoch": 9.7129750982962, + "grad_norm": 0.23784305155277252, + "learning_rate": 0.0006, + "loss": 4.486503601074219, + "step": 699 + }, + { + "epoch": 9.72695500218436, + "grad_norm": 0.2240338921546936, + "learning_rate": 0.0006, + "loss": 4.486850261688232, + "step": 700 + }, + { + "epoch": 9.740934906072521, + "grad_norm": 0.24686725437641144, + "learning_rate": 0.0006, + "loss": 4.501359462738037, + "step": 701 + }, + { + "epoch": 9.754914809960681, + "grad_norm": 0.20819595456123352, + "learning_rate": 0.0006, + "loss": 4.495186805725098, + "step": 702 + }, + { + "epoch": 9.768894713848843, + "grad_norm": 0.21858957409858704, + "learning_rate": 0.0006, + "loss": 4.475093364715576, + "step": 703 + }, + { + "epoch": 9.782874617737003, + "grad_norm": 0.22676466405391693, + "learning_rate": 0.0006, + "loss": 4.4702534675598145, + "step": 704 + }, + { + "epoch": 9.796854521625164, + "grad_norm": 0.18317611515522003, + "learning_rate": 0.0006, + "loss": 4.471231937408447, + "step": 705 + }, + { + "epoch": 9.810834425513324, + "grad_norm": 0.20979148149490356, + "learning_rate": 0.0006, + "loss": 4.454103946685791, + "step": 706 + }, + { + "epoch": 9.824814329401486, + "grad_norm": 0.2146051526069641, + "learning_rate": 0.0006, + "loss": 4.505178928375244, + "step": 707 + }, + { + "epoch": 9.838794233289645, + "grad_norm": 0.2344852089881897, + "learning_rate": 0.0006, + "loss": 4.437984943389893, + "step": 708 + }, + { + "epoch": 9.852774137177807, + "grad_norm": 0.26532089710235596, + "learning_rate": 0.0006, + "loss": 4.477126121520996, + "step": 709 + }, + { + "epoch": 9.866754041065967, + "grad_norm": 0.2737913131713867, + "learning_rate": 0.0006, + "loss": 4.498421669006348, + "step": 710 + }, + { + "epoch": 9.880733944954128, + "grad_norm": 0.26651278138160706, + "learning_rate": 0.0006, + "loss": 4.480839729309082, + "step": 711 + }, + { + "epoch": 9.89471384884229, + "grad_norm": 0.26576584577560425, + "learning_rate": 0.0006, + "loss": 4.490936279296875, + "step": 712 + }, + { + "epoch": 9.90869375273045, + "grad_norm": 0.22483965754508972, + "learning_rate": 0.0006, + "loss": 4.477953910827637, + "step": 713 + }, + { + "epoch": 9.922673656618612, + "grad_norm": 0.23576045036315918, + "learning_rate": 0.0006, + "loss": 4.4731292724609375, + "step": 714 + }, + { + "epoch": 9.936653560506771, + "grad_norm": 0.2731139361858368, + "learning_rate": 0.0006, + "loss": 4.441622734069824, + "step": 715 + }, + { + "epoch": 9.950633464394933, + "grad_norm": 0.2677643597126007, + "learning_rate": 0.0006, + "loss": 4.49604606628418, + "step": 716 + }, + { + "epoch": 9.964613368283093, + "grad_norm": 0.21940895915031433, + "learning_rate": 0.0006, + "loss": 4.485573768615723, + "step": 717 + }, + { + "epoch": 9.978593272171254, + "grad_norm": 0.2060987651348114, + "learning_rate": 0.0006, + "loss": 4.482657432556152, + "step": 718 + }, + { + "epoch": 9.992573176059414, + "grad_norm": 0.22163978219032288, + "learning_rate": 0.0006, + "loss": 4.478459358215332, + "step": 719 + }, + { + "epoch": 10.0, + "grad_norm": 0.2505086064338684, + "learning_rate": 0.0006, + "loss": 4.4393510818481445, + "step": 720 + }, + { + "epoch": 10.0, + "eval_loss": 4.695676803588867, + "eval_runtime": 49.0751, + "eval_samples_per_second": 49.76, + "eval_steps_per_second": 3.118, + "step": 720 + }, + { + "epoch": 10.013979903888162, + "grad_norm": 0.23820190131664276, + "learning_rate": 0.0006, + "loss": 4.437685489654541, + "step": 721 + }, + { + "epoch": 10.027959807776321, + "grad_norm": 0.2220371812582016, + "learning_rate": 0.0006, + "loss": 4.449873924255371, + "step": 722 + }, + { + "epoch": 10.041939711664483, + "grad_norm": 0.20369848608970642, + "learning_rate": 0.0006, + "loss": 4.448882579803467, + "step": 723 + }, + { + "epoch": 10.055919615552643, + "grad_norm": 0.2360001504421234, + "learning_rate": 0.0006, + "loss": 4.399251937866211, + "step": 724 + }, + { + "epoch": 10.069899519440805, + "grad_norm": 0.23537491261959076, + "learning_rate": 0.0006, + "loss": 4.442960739135742, + "step": 725 + }, + { + "epoch": 10.083879423328964, + "grad_norm": 0.24433870613574982, + "learning_rate": 0.0006, + "loss": 4.44808292388916, + "step": 726 + }, + { + "epoch": 10.097859327217126, + "grad_norm": 0.3406696021556854, + "learning_rate": 0.0006, + "loss": 4.443426132202148, + "step": 727 + }, + { + "epoch": 10.111839231105286, + "grad_norm": 0.4102286100387573, + "learning_rate": 0.0006, + "loss": 4.424919605255127, + "step": 728 + }, + { + "epoch": 10.125819134993447, + "grad_norm": 0.36462604999542236, + "learning_rate": 0.0006, + "loss": 4.45366907119751, + "step": 729 + }, + { + "epoch": 10.139799038881607, + "grad_norm": 0.4374827444553375, + "learning_rate": 0.0006, + "loss": 4.415630340576172, + "step": 730 + }, + { + "epoch": 10.153778942769769, + "grad_norm": 0.45248138904571533, + "learning_rate": 0.0006, + "loss": 4.448849678039551, + "step": 731 + }, + { + "epoch": 10.167758846657929, + "grad_norm": 0.3806457221508026, + "learning_rate": 0.0006, + "loss": 4.443390846252441, + "step": 732 + }, + { + "epoch": 10.18173875054609, + "grad_norm": 0.3491523861885071, + "learning_rate": 0.0006, + "loss": 4.4648637771606445, + "step": 733 + }, + { + "epoch": 10.19571865443425, + "grad_norm": 0.3327210247516632, + "learning_rate": 0.0006, + "loss": 4.460919380187988, + "step": 734 + }, + { + "epoch": 10.209698558322412, + "grad_norm": 0.29772236943244934, + "learning_rate": 0.0006, + "loss": 4.45159912109375, + "step": 735 + }, + { + "epoch": 10.223678462210572, + "grad_norm": 0.33083397150039673, + "learning_rate": 0.0006, + "loss": 4.463382720947266, + "step": 736 + }, + { + "epoch": 10.237658366098733, + "grad_norm": 0.3930598795413971, + "learning_rate": 0.0006, + "loss": 4.434510231018066, + "step": 737 + }, + { + "epoch": 10.251638269986893, + "grad_norm": 0.4342896044254303, + "learning_rate": 0.0006, + "loss": 4.451700210571289, + "step": 738 + }, + { + "epoch": 10.265618173875055, + "grad_norm": 0.4544043242931366, + "learning_rate": 0.0006, + "loss": 4.437224388122559, + "step": 739 + }, + { + "epoch": 10.279598077763215, + "grad_norm": 0.4487038254737854, + "learning_rate": 0.0006, + "loss": 4.46157693862915, + "step": 740 + }, + { + "epoch": 10.293577981651376, + "grad_norm": 0.4420500695705414, + "learning_rate": 0.0006, + "loss": 4.399561405181885, + "step": 741 + }, + { + "epoch": 10.307557885539538, + "grad_norm": 0.4167289435863495, + "learning_rate": 0.0006, + "loss": 4.41792106628418, + "step": 742 + }, + { + "epoch": 10.321537789427698, + "grad_norm": 0.3186971843242645, + "learning_rate": 0.0006, + "loss": 4.435683250427246, + "step": 743 + }, + { + "epoch": 10.33551769331586, + "grad_norm": 0.3077184855937958, + "learning_rate": 0.0006, + "loss": 4.481947898864746, + "step": 744 + }, + { + "epoch": 10.349497597204019, + "grad_norm": 0.26811280846595764, + "learning_rate": 0.0006, + "loss": 4.4339447021484375, + "step": 745 + }, + { + "epoch": 10.36347750109218, + "grad_norm": 0.28448057174682617, + "learning_rate": 0.0006, + "loss": 4.441644668579102, + "step": 746 + }, + { + "epoch": 10.37745740498034, + "grad_norm": 0.30731502175331116, + "learning_rate": 0.0006, + "loss": 4.428773880004883, + "step": 747 + }, + { + "epoch": 10.391437308868502, + "grad_norm": 0.28036001324653625, + "learning_rate": 0.0006, + "loss": 4.4433135986328125, + "step": 748 + }, + { + "epoch": 10.405417212756662, + "grad_norm": 0.2882847189903259, + "learning_rate": 0.0006, + "loss": 4.433401107788086, + "step": 749 + }, + { + "epoch": 10.419397116644824, + "grad_norm": 0.23622776567935944, + "learning_rate": 0.0006, + "loss": 4.444611549377441, + "step": 750 + }, + { + "epoch": 10.433377020532983, + "grad_norm": 0.2306167632341385, + "learning_rate": 0.0006, + "loss": 4.397875785827637, + "step": 751 + }, + { + "epoch": 10.447356924421145, + "grad_norm": 0.22725090384483337, + "learning_rate": 0.0006, + "loss": 4.429759502410889, + "step": 752 + }, + { + "epoch": 10.461336828309305, + "grad_norm": 0.250709593296051, + "learning_rate": 0.0006, + "loss": 4.415618896484375, + "step": 753 + }, + { + "epoch": 10.475316732197467, + "grad_norm": 0.22341276705265045, + "learning_rate": 0.0006, + "loss": 4.389362335205078, + "step": 754 + }, + { + "epoch": 10.489296636085626, + "grad_norm": 0.22595296800136566, + "learning_rate": 0.0006, + "loss": 4.383584022521973, + "step": 755 + }, + { + "epoch": 10.503276539973788, + "grad_norm": 0.24277575314044952, + "learning_rate": 0.0006, + "loss": 4.403777599334717, + "step": 756 + }, + { + "epoch": 10.517256443861948, + "grad_norm": 0.2670708894729614, + "learning_rate": 0.0006, + "loss": 4.398499011993408, + "step": 757 + }, + { + "epoch": 10.53123634775011, + "grad_norm": 0.2640696167945862, + "learning_rate": 0.0006, + "loss": 4.426726818084717, + "step": 758 + }, + { + "epoch": 10.54521625163827, + "grad_norm": 0.2248653769493103, + "learning_rate": 0.0006, + "loss": 4.400103569030762, + "step": 759 + }, + { + "epoch": 10.55919615552643, + "grad_norm": 0.21466240286827087, + "learning_rate": 0.0006, + "loss": 4.404158592224121, + "step": 760 + }, + { + "epoch": 10.57317605941459, + "grad_norm": 0.236923947930336, + "learning_rate": 0.0006, + "loss": 4.37059211730957, + "step": 761 + }, + { + "epoch": 10.587155963302752, + "grad_norm": 0.2515387535095215, + "learning_rate": 0.0006, + "loss": 4.415055274963379, + "step": 762 + }, + { + "epoch": 10.601135867190912, + "grad_norm": 0.23461885750293732, + "learning_rate": 0.0006, + "loss": 4.375036239624023, + "step": 763 + }, + { + "epoch": 10.615115771079074, + "grad_norm": 0.20975761115550995, + "learning_rate": 0.0006, + "loss": 4.3903398513793945, + "step": 764 + }, + { + "epoch": 10.629095674967235, + "grad_norm": 0.19859997928142548, + "learning_rate": 0.0006, + "loss": 4.379380226135254, + "step": 765 + }, + { + "epoch": 10.643075578855395, + "grad_norm": 0.22310325503349304, + "learning_rate": 0.0006, + "loss": 4.382110595703125, + "step": 766 + }, + { + "epoch": 10.657055482743557, + "grad_norm": 0.23940646648406982, + "learning_rate": 0.0006, + "loss": 4.393403053283691, + "step": 767 + }, + { + "epoch": 10.671035386631717, + "grad_norm": 0.2230468988418579, + "learning_rate": 0.0006, + "loss": 4.391970634460449, + "step": 768 + }, + { + "epoch": 10.685015290519878, + "grad_norm": 0.18139775097370148, + "learning_rate": 0.0006, + "loss": 4.399993896484375, + "step": 769 + }, + { + "epoch": 10.698995194408038, + "grad_norm": 0.19936902821063995, + "learning_rate": 0.0006, + "loss": 4.373854160308838, + "step": 770 + }, + { + "epoch": 10.7129750982962, + "grad_norm": 0.22132465243339539, + "learning_rate": 0.0006, + "loss": 4.377530097961426, + "step": 771 + }, + { + "epoch": 10.72695500218436, + "grad_norm": 0.24254944920539856, + "learning_rate": 0.0006, + "loss": 4.398683547973633, + "step": 772 + }, + { + "epoch": 10.740934906072521, + "grad_norm": 0.2666397988796234, + "learning_rate": 0.0006, + "loss": 4.3879899978637695, + "step": 773 + }, + { + "epoch": 10.754914809960681, + "grad_norm": 0.24728631973266602, + "learning_rate": 0.0006, + "loss": 4.356976509094238, + "step": 774 + }, + { + "epoch": 10.768894713848843, + "grad_norm": 0.2612453103065491, + "learning_rate": 0.0006, + "loss": 4.391525745391846, + "step": 775 + }, + { + "epoch": 10.782874617737003, + "grad_norm": 0.24060510098934174, + "learning_rate": 0.0006, + "loss": 4.376985549926758, + "step": 776 + }, + { + "epoch": 10.796854521625164, + "grad_norm": 0.22708238661289215, + "learning_rate": 0.0006, + "loss": 4.368545055389404, + "step": 777 + }, + { + "epoch": 10.810834425513324, + "grad_norm": 0.26931291818618774, + "learning_rate": 0.0006, + "loss": 4.369227409362793, + "step": 778 + }, + { + "epoch": 10.824814329401486, + "grad_norm": 0.265288770198822, + "learning_rate": 0.0006, + "loss": 4.378131866455078, + "step": 779 + }, + { + "epoch": 10.838794233289645, + "grad_norm": 0.3015305697917938, + "learning_rate": 0.0006, + "loss": 4.376267910003662, + "step": 780 + }, + { + "epoch": 10.852774137177807, + "grad_norm": 0.3345746099948883, + "learning_rate": 0.0006, + "loss": 4.3751420974731445, + "step": 781 + }, + { + "epoch": 10.866754041065967, + "grad_norm": 0.32446005940437317, + "learning_rate": 0.0006, + "loss": 4.370899200439453, + "step": 782 + }, + { + "epoch": 10.880733944954128, + "grad_norm": 0.27070069313049316, + "learning_rate": 0.0006, + "loss": 4.391958236694336, + "step": 783 + }, + { + "epoch": 10.89471384884229, + "grad_norm": 0.25584667921066284, + "learning_rate": 0.0006, + "loss": 4.407493591308594, + "step": 784 + }, + { + "epoch": 10.90869375273045, + "grad_norm": 0.2710244655609131, + "learning_rate": 0.0006, + "loss": 4.374400615692139, + "step": 785 + }, + { + "epoch": 10.922673656618612, + "grad_norm": 0.32413622736930847, + "learning_rate": 0.0006, + "loss": 4.379607200622559, + "step": 786 + }, + { + "epoch": 10.936653560506771, + "grad_norm": 0.3253782391548157, + "learning_rate": 0.0006, + "loss": 4.376441955566406, + "step": 787 + }, + { + "epoch": 10.950633464394933, + "grad_norm": 0.30534613132476807, + "learning_rate": 0.0006, + "loss": 4.382739067077637, + "step": 788 + }, + { + "epoch": 10.964613368283093, + "grad_norm": 0.35726621747016907, + "learning_rate": 0.0006, + "loss": 4.3765869140625, + "step": 789 + }, + { + "epoch": 10.978593272171254, + "grad_norm": 0.32763028144836426, + "learning_rate": 0.0006, + "loss": 4.391537189483643, + "step": 790 + }, + { + "epoch": 10.992573176059414, + "grad_norm": 0.31811195611953735, + "learning_rate": 0.0006, + "loss": 4.371829032897949, + "step": 791 + }, + { + "epoch": 11.0, + "grad_norm": 0.37317267060279846, + "learning_rate": 0.0006, + "loss": 4.381916522979736, + "step": 792 + }, + { + "epoch": 11.0, + "eval_loss": 4.588687896728516, + "eval_runtime": 44.8041, + "eval_samples_per_second": 54.504, + "eval_steps_per_second": 3.415, + "step": 792 + }, + { + "epoch": 11.013979903888162, + "grad_norm": 0.37882938981056213, + "learning_rate": 0.0006, + "loss": 4.3463640213012695, + "step": 793 + }, + { + "epoch": 11.027959807776321, + "grad_norm": 0.34719496965408325, + "learning_rate": 0.0006, + "loss": 4.329861640930176, + "step": 794 + }, + { + "epoch": 11.041939711664483, + "grad_norm": 0.36161214113235474, + "learning_rate": 0.0006, + "loss": 4.3287835121154785, + "step": 795 + }, + { + "epoch": 11.055919615552643, + "grad_norm": 0.3743649125099182, + "learning_rate": 0.0006, + "loss": 4.334251403808594, + "step": 796 + }, + { + "epoch": 11.069899519440805, + "grad_norm": 0.32266443967819214, + "learning_rate": 0.0006, + "loss": 4.364782810211182, + "step": 797 + }, + { + "epoch": 11.083879423328964, + "grad_norm": 0.27460047602653503, + "learning_rate": 0.0006, + "loss": 4.348380088806152, + "step": 798 + }, + { + "epoch": 11.097859327217126, + "grad_norm": 0.30498892068862915, + "learning_rate": 0.0006, + "loss": 4.347856521606445, + "step": 799 + }, + { + "epoch": 11.111839231105286, + "grad_norm": 0.29740771651268005, + "learning_rate": 0.0006, + "loss": 4.343471050262451, + "step": 800 + }, + { + "epoch": 11.125819134993447, + "grad_norm": 0.3004681169986725, + "learning_rate": 0.0006, + "loss": 4.337590217590332, + "step": 801 + }, + { + "epoch": 11.139799038881607, + "grad_norm": 0.3000192642211914, + "learning_rate": 0.0006, + "loss": 4.349949836730957, + "step": 802 + }, + { + "epoch": 11.153778942769769, + "grad_norm": 0.27461889386177063, + "learning_rate": 0.0006, + "loss": 4.338934898376465, + "step": 803 + }, + { + "epoch": 11.167758846657929, + "grad_norm": 0.2856169641017914, + "learning_rate": 0.0006, + "loss": 4.320754051208496, + "step": 804 + }, + { + "epoch": 11.18173875054609, + "grad_norm": 0.29822713136672974, + "learning_rate": 0.0006, + "loss": 4.357949733734131, + "step": 805 + }, + { + "epoch": 11.19571865443425, + "grad_norm": 0.34061339497566223, + "learning_rate": 0.0006, + "loss": 4.327282905578613, + "step": 806 + }, + { + "epoch": 11.209698558322412, + "grad_norm": 0.3379063010215759, + "learning_rate": 0.0006, + "loss": 4.355471611022949, + "step": 807 + }, + { + "epoch": 11.223678462210572, + "grad_norm": 0.2859216630458832, + "learning_rate": 0.0006, + "loss": 4.352344989776611, + "step": 808 + }, + { + "epoch": 11.237658366098733, + "grad_norm": 0.29522669315338135, + "learning_rate": 0.0006, + "loss": 4.349186897277832, + "step": 809 + }, + { + "epoch": 11.251638269986893, + "grad_norm": 0.273798406124115, + "learning_rate": 0.0006, + "loss": 4.342379570007324, + "step": 810 + }, + { + "epoch": 11.265618173875055, + "grad_norm": 0.25298982858657837, + "learning_rate": 0.0006, + "loss": 4.358835220336914, + "step": 811 + }, + { + "epoch": 11.279598077763215, + "grad_norm": 0.2170463651418686, + "learning_rate": 0.0006, + "loss": 4.3422017097473145, + "step": 812 + }, + { + "epoch": 11.293577981651376, + "grad_norm": 0.24855731427669525, + "learning_rate": 0.0006, + "loss": 4.322849750518799, + "step": 813 + }, + { + "epoch": 11.307557885539538, + "grad_norm": 0.22564345598220825, + "learning_rate": 0.0006, + "loss": 4.316864967346191, + "step": 814 + }, + { + "epoch": 11.321537789427698, + "grad_norm": 0.21532197296619415, + "learning_rate": 0.0006, + "loss": 4.326743125915527, + "step": 815 + }, + { + "epoch": 11.33551769331586, + "grad_norm": 0.20514146983623505, + "learning_rate": 0.0006, + "loss": 4.326531887054443, + "step": 816 + }, + { + "epoch": 11.349497597204019, + "grad_norm": 0.19035090506076813, + "learning_rate": 0.0006, + "loss": 4.318154335021973, + "step": 817 + }, + { + "epoch": 11.36347750109218, + "grad_norm": 0.17889662086963654, + "learning_rate": 0.0006, + "loss": 4.35410213470459, + "step": 818 + }, + { + "epoch": 11.37745740498034, + "grad_norm": 0.20564863085746765, + "learning_rate": 0.0006, + "loss": 4.350226879119873, + "step": 819 + }, + { + "epoch": 11.391437308868502, + "grad_norm": 0.2412603348493576, + "learning_rate": 0.0006, + "loss": 4.325137138366699, + "step": 820 + }, + { + "epoch": 11.405417212756662, + "grad_norm": 0.2603496015071869, + "learning_rate": 0.0006, + "loss": 4.335752487182617, + "step": 821 + }, + { + "epoch": 11.419397116644824, + "grad_norm": 0.2968119978904724, + "learning_rate": 0.0006, + "loss": 4.3317670822143555, + "step": 822 + }, + { + "epoch": 11.433377020532983, + "grad_norm": 0.3280937969684601, + "learning_rate": 0.0006, + "loss": 4.322279453277588, + "step": 823 + }, + { + "epoch": 11.447356924421145, + "grad_norm": 0.3598847985267639, + "learning_rate": 0.0006, + "loss": 4.312255859375, + "step": 824 + }, + { + "epoch": 11.461336828309305, + "grad_norm": 0.3996485471725464, + "learning_rate": 0.0006, + "loss": 4.327103614807129, + "step": 825 + }, + { + "epoch": 11.475316732197467, + "grad_norm": 0.4352041780948639, + "learning_rate": 0.0006, + "loss": 4.368639945983887, + "step": 826 + }, + { + "epoch": 11.489296636085626, + "grad_norm": 0.4451918601989746, + "learning_rate": 0.0006, + "loss": 4.335113048553467, + "step": 827 + }, + { + "epoch": 11.503276539973788, + "grad_norm": 0.4403933584690094, + "learning_rate": 0.0006, + "loss": 4.369889259338379, + "step": 828 + }, + { + "epoch": 11.517256443861948, + "grad_norm": 0.34862443804740906, + "learning_rate": 0.0006, + "loss": 4.316292762756348, + "step": 829 + }, + { + "epoch": 11.53123634775011, + "grad_norm": 0.3240634500980377, + "learning_rate": 0.0006, + "loss": 4.328078746795654, + "step": 830 + }, + { + "epoch": 11.54521625163827, + "grad_norm": 0.2445751428604126, + "learning_rate": 0.0006, + "loss": 4.291940689086914, + "step": 831 + }, + { + "epoch": 11.55919615552643, + "grad_norm": 0.24376554787158966, + "learning_rate": 0.0006, + "loss": 4.339217662811279, + "step": 832 + }, + { + "epoch": 11.57317605941459, + "grad_norm": 0.22419725358486176, + "learning_rate": 0.0006, + "loss": 4.2887468338012695, + "step": 833 + }, + { + "epoch": 11.587155963302752, + "grad_norm": 0.22318261861801147, + "learning_rate": 0.0006, + "loss": 4.298492908477783, + "step": 834 + }, + { + "epoch": 11.601135867190912, + "grad_norm": 0.2357342392206192, + "learning_rate": 0.0006, + "loss": 4.328692436218262, + "step": 835 + }, + { + "epoch": 11.615115771079074, + "grad_norm": 0.25450602173805237, + "learning_rate": 0.0006, + "loss": 4.360058784484863, + "step": 836 + }, + { + "epoch": 11.629095674967235, + "grad_norm": 0.24540965259075165, + "learning_rate": 0.0006, + "loss": 4.311890602111816, + "step": 837 + }, + { + "epoch": 11.643075578855395, + "grad_norm": 0.2535638213157654, + "learning_rate": 0.0006, + "loss": 4.327730178833008, + "step": 838 + }, + { + "epoch": 11.657055482743557, + "grad_norm": 0.23063556849956512, + "learning_rate": 0.0006, + "loss": 4.303299903869629, + "step": 839 + }, + { + "epoch": 11.671035386631717, + "grad_norm": 0.21813632547855377, + "learning_rate": 0.0006, + "loss": 4.315352439880371, + "step": 840 + }, + { + "epoch": 11.685015290519878, + "grad_norm": 0.2170359194278717, + "learning_rate": 0.0006, + "loss": 4.278632164001465, + "step": 841 + }, + { + "epoch": 11.698995194408038, + "grad_norm": 0.21059377491474152, + "learning_rate": 0.0006, + "loss": 4.306049346923828, + "step": 842 + }, + { + "epoch": 11.7129750982962, + "grad_norm": 0.19872888922691345, + "learning_rate": 0.0006, + "loss": 4.3091535568237305, + "step": 843 + }, + { + "epoch": 11.72695500218436, + "grad_norm": 0.20059862732887268, + "learning_rate": 0.0006, + "loss": 4.2884063720703125, + "step": 844 + }, + { + "epoch": 11.740934906072521, + "grad_norm": 0.19952483475208282, + "learning_rate": 0.0006, + "loss": 4.293610572814941, + "step": 845 + }, + { + "epoch": 11.754914809960681, + "grad_norm": 0.19794537127017975, + "learning_rate": 0.0006, + "loss": 4.288822174072266, + "step": 846 + }, + { + "epoch": 11.768894713848843, + "grad_norm": 0.213914692401886, + "learning_rate": 0.0006, + "loss": 4.320849418640137, + "step": 847 + }, + { + "epoch": 11.782874617737003, + "grad_norm": 0.18500955402851105, + "learning_rate": 0.0006, + "loss": 4.29300594329834, + "step": 848 + }, + { + "epoch": 11.796854521625164, + "grad_norm": 0.19446656107902527, + "learning_rate": 0.0006, + "loss": 4.3079352378845215, + "step": 849 + }, + { + "epoch": 11.810834425513324, + "grad_norm": 0.22191768884658813, + "learning_rate": 0.0006, + "loss": 4.295967102050781, + "step": 850 + }, + { + "epoch": 11.824814329401486, + "grad_norm": 0.20748084783554077, + "learning_rate": 0.0006, + "loss": 4.332365989685059, + "step": 851 + }, + { + "epoch": 11.838794233289645, + "grad_norm": 0.20993955433368683, + "learning_rate": 0.0006, + "loss": 4.294618129730225, + "step": 852 + }, + { + "epoch": 11.852774137177807, + "grad_norm": 0.23506952822208405, + "learning_rate": 0.0006, + "loss": 4.313426971435547, + "step": 853 + }, + { + "epoch": 11.866754041065967, + "grad_norm": 0.2379443347454071, + "learning_rate": 0.0006, + "loss": 4.297664642333984, + "step": 854 + }, + { + "epoch": 11.880733944954128, + "grad_norm": 0.2127852737903595, + "learning_rate": 0.0006, + "loss": 4.2807698249816895, + "step": 855 + }, + { + "epoch": 11.89471384884229, + "grad_norm": 0.2125532180070877, + "learning_rate": 0.0006, + "loss": 4.310990333557129, + "step": 856 + }, + { + "epoch": 11.90869375273045, + "grad_norm": 0.1996062994003296, + "learning_rate": 0.0006, + "loss": 4.253237724304199, + "step": 857 + }, + { + "epoch": 11.922673656618612, + "grad_norm": 0.20747603476047516, + "learning_rate": 0.0006, + "loss": 4.294193267822266, + "step": 858 + }, + { + "epoch": 11.936653560506771, + "grad_norm": 0.24082425236701965, + "learning_rate": 0.0006, + "loss": 4.269967079162598, + "step": 859 + }, + { + "epoch": 11.950633464394933, + "grad_norm": 0.28993573784828186, + "learning_rate": 0.0006, + "loss": 4.294550895690918, + "step": 860 + }, + { + "epoch": 11.964613368283093, + "grad_norm": 0.29576948285102844, + "learning_rate": 0.0006, + "loss": 4.3188252449035645, + "step": 861 + }, + { + "epoch": 11.978593272171254, + "grad_norm": 0.2754935026168823, + "learning_rate": 0.0006, + "loss": 4.312817573547363, + "step": 862 + }, + { + "epoch": 11.992573176059414, + "grad_norm": 0.3062523305416107, + "learning_rate": 0.0006, + "loss": 4.288214683532715, + "step": 863 + }, + { + "epoch": 12.0, + "grad_norm": 0.3367644250392914, + "learning_rate": 0.0006, + "loss": 4.314888954162598, + "step": 864 + }, + { + "epoch": 12.0, + "eval_loss": 4.516861438751221, + "eval_runtime": 44.2584, + "eval_samples_per_second": 55.176, + "eval_steps_per_second": 3.457, + "step": 864 + }, + { + "epoch": 12.013979903888162, + "grad_norm": 0.2976512014865875, + "learning_rate": 0.0006, + "loss": 4.278797149658203, + "step": 865 + }, + { + "epoch": 12.027959807776321, + "grad_norm": 0.32217127084732056, + "learning_rate": 0.0006, + "loss": 4.2823615074157715, + "step": 866 + }, + { + "epoch": 12.041939711664483, + "grad_norm": 0.31538400053977966, + "learning_rate": 0.0006, + "loss": 4.252805709838867, + "step": 867 + }, + { + "epoch": 12.055919615552643, + "grad_norm": 0.3501375913619995, + "learning_rate": 0.0006, + "loss": 4.276501655578613, + "step": 868 + }, + { + "epoch": 12.069899519440805, + "grad_norm": 0.3452056646347046, + "learning_rate": 0.0006, + "loss": 4.275739669799805, + "step": 869 + }, + { + "epoch": 12.083879423328964, + "grad_norm": 0.36963316798210144, + "learning_rate": 0.0006, + "loss": 4.3215227127075195, + "step": 870 + }, + { + "epoch": 12.097859327217126, + "grad_norm": 0.41605016589164734, + "learning_rate": 0.0006, + "loss": 4.28739595413208, + "step": 871 + }, + { + "epoch": 12.111839231105286, + "grad_norm": 0.37700653076171875, + "learning_rate": 0.0006, + "loss": 4.291154861450195, + "step": 872 + }, + { + "epoch": 12.125819134993447, + "grad_norm": 0.3194253444671631, + "learning_rate": 0.0006, + "loss": 4.259326934814453, + "step": 873 + }, + { + "epoch": 12.139799038881607, + "grad_norm": 0.31770631670951843, + "learning_rate": 0.0006, + "loss": 4.270082473754883, + "step": 874 + }, + { + "epoch": 12.153778942769769, + "grad_norm": 0.3748120069503784, + "learning_rate": 0.0006, + "loss": 4.2727274894714355, + "step": 875 + }, + { + "epoch": 12.167758846657929, + "grad_norm": 0.3821348547935486, + "learning_rate": 0.0006, + "loss": 4.2848286628723145, + "step": 876 + }, + { + "epoch": 12.18173875054609, + "grad_norm": 0.31894201040267944, + "learning_rate": 0.0006, + "loss": 4.289551258087158, + "step": 877 + }, + { + "epoch": 12.19571865443425, + "grad_norm": 0.2695826292037964, + "learning_rate": 0.0006, + "loss": 4.2797346115112305, + "step": 878 + }, + { + "epoch": 12.209698558322412, + "grad_norm": 0.23966269195079803, + "learning_rate": 0.0006, + "loss": 4.24021577835083, + "step": 879 + }, + { + "epoch": 12.223678462210572, + "grad_norm": 0.24342599511146545, + "learning_rate": 0.0006, + "loss": 4.277721881866455, + "step": 880 + }, + { + "epoch": 12.237658366098733, + "grad_norm": 0.2522958815097809, + "learning_rate": 0.0006, + "loss": 4.263946533203125, + "step": 881 + }, + { + "epoch": 12.251638269986893, + "grad_norm": 0.2708299458026886, + "learning_rate": 0.0006, + "loss": 4.274540901184082, + "step": 882 + }, + { + "epoch": 12.265618173875055, + "grad_norm": 0.2978788912296295, + "learning_rate": 0.0006, + "loss": 4.2674970626831055, + "step": 883 + }, + { + "epoch": 12.279598077763215, + "grad_norm": 0.2898774743080139, + "learning_rate": 0.0006, + "loss": 4.235060691833496, + "step": 884 + }, + { + "epoch": 12.293577981651376, + "grad_norm": 0.27941837906837463, + "learning_rate": 0.0006, + "loss": 4.284140586853027, + "step": 885 + }, + { + "epoch": 12.307557885539538, + "grad_norm": 0.25050559639930725, + "learning_rate": 0.0006, + "loss": 4.270134925842285, + "step": 886 + }, + { + "epoch": 12.321537789427698, + "grad_norm": 0.21867156028747559, + "learning_rate": 0.0006, + "loss": 4.241571426391602, + "step": 887 + }, + { + "epoch": 12.33551769331586, + "grad_norm": 0.24735847115516663, + "learning_rate": 0.0006, + "loss": 4.253087997436523, + "step": 888 + }, + { + "epoch": 12.349497597204019, + "grad_norm": 0.23069104552268982, + "learning_rate": 0.0006, + "loss": 4.258606910705566, + "step": 889 + }, + { + "epoch": 12.36347750109218, + "grad_norm": 0.2594369947910309, + "learning_rate": 0.0006, + "loss": 4.307351112365723, + "step": 890 + }, + { + "epoch": 12.37745740498034, + "grad_norm": 0.25349098443984985, + "learning_rate": 0.0006, + "loss": 4.264268398284912, + "step": 891 + }, + { + "epoch": 12.391437308868502, + "grad_norm": 0.2550840675830841, + "learning_rate": 0.0006, + "loss": 4.247092247009277, + "step": 892 + }, + { + "epoch": 12.405417212756662, + "grad_norm": 0.2107602059841156, + "learning_rate": 0.0006, + "loss": 4.240527153015137, + "step": 893 + }, + { + "epoch": 12.419397116644824, + "grad_norm": 0.2025548368692398, + "learning_rate": 0.0006, + "loss": 4.244686126708984, + "step": 894 + }, + { + "epoch": 12.433377020532983, + "grad_norm": 0.22061701118946075, + "learning_rate": 0.0006, + "loss": 4.233231544494629, + "step": 895 + }, + { + "epoch": 12.447356924421145, + "grad_norm": 0.19503085315227509, + "learning_rate": 0.0006, + "loss": 4.23851203918457, + "step": 896 + }, + { + "epoch": 12.461336828309305, + "grad_norm": 0.19313643872737885, + "learning_rate": 0.0006, + "loss": 4.190886497497559, + "step": 897 + }, + { + "epoch": 12.475316732197467, + "grad_norm": 0.21094176173210144, + "learning_rate": 0.0006, + "loss": 4.277888298034668, + "step": 898 + }, + { + "epoch": 12.489296636085626, + "grad_norm": 0.1980651170015335, + "learning_rate": 0.0006, + "loss": 4.251066207885742, + "step": 899 + }, + { + "epoch": 12.503276539973788, + "grad_norm": 0.179737389087677, + "learning_rate": 0.0006, + "loss": 4.194703102111816, + "step": 900 + }, + { + "epoch": 12.517256443861948, + "grad_norm": 0.19069281220436096, + "learning_rate": 0.0006, + "loss": 4.242412567138672, + "step": 901 + }, + { + "epoch": 12.53123634775011, + "grad_norm": 0.191154345870018, + "learning_rate": 0.0006, + "loss": 4.2432780265808105, + "step": 902 + }, + { + "epoch": 12.54521625163827, + "grad_norm": 0.19760103523731232, + "learning_rate": 0.0006, + "loss": 4.23294734954834, + "step": 903 + }, + { + "epoch": 12.55919615552643, + "grad_norm": 0.19982324540615082, + "learning_rate": 0.0006, + "loss": 4.249764442443848, + "step": 904 + }, + { + "epoch": 12.57317605941459, + "grad_norm": 0.1986108422279358, + "learning_rate": 0.0006, + "loss": 4.213435649871826, + "step": 905 + }, + { + "epoch": 12.587155963302752, + "grad_norm": 0.19727319478988647, + "learning_rate": 0.0006, + "loss": 4.247962951660156, + "step": 906 + }, + { + "epoch": 12.601135867190912, + "grad_norm": 0.23404482007026672, + "learning_rate": 0.0006, + "loss": 4.237396240234375, + "step": 907 + }, + { + "epoch": 12.615115771079074, + "grad_norm": 0.21136441826820374, + "learning_rate": 0.0006, + "loss": 4.236040115356445, + "step": 908 + }, + { + "epoch": 12.629095674967235, + "grad_norm": 0.2209048718214035, + "learning_rate": 0.0006, + "loss": 4.234212875366211, + "step": 909 + }, + { + "epoch": 12.643075578855395, + "grad_norm": 0.22120307385921478, + "learning_rate": 0.0006, + "loss": 4.2711076736450195, + "step": 910 + }, + { + "epoch": 12.657055482743557, + "grad_norm": 0.22733066976070404, + "learning_rate": 0.0006, + "loss": 4.231651306152344, + "step": 911 + }, + { + "epoch": 12.671035386631717, + "grad_norm": 0.2435602843761444, + "learning_rate": 0.0006, + "loss": 4.249372482299805, + "step": 912 + }, + { + "epoch": 12.685015290519878, + "grad_norm": 0.28881654143333435, + "learning_rate": 0.0006, + "loss": 4.2626051902771, + "step": 913 + }, + { + "epoch": 12.698995194408038, + "grad_norm": 0.3211199641227722, + "learning_rate": 0.0006, + "loss": 4.254220485687256, + "step": 914 + }, + { + "epoch": 12.7129750982962, + "grad_norm": 0.3118100166320801, + "learning_rate": 0.0006, + "loss": 4.233747959136963, + "step": 915 + }, + { + "epoch": 12.72695500218436, + "grad_norm": 0.33411866426467896, + "learning_rate": 0.0006, + "loss": 4.270386219024658, + "step": 916 + }, + { + "epoch": 12.740934906072521, + "grad_norm": 0.2968253195285797, + "learning_rate": 0.0006, + "loss": 4.242254257202148, + "step": 917 + }, + { + "epoch": 12.754914809960681, + "grad_norm": 0.2959132194519043, + "learning_rate": 0.0006, + "loss": 4.232100486755371, + "step": 918 + }, + { + "epoch": 12.768894713848843, + "grad_norm": 0.2729283273220062, + "learning_rate": 0.0006, + "loss": 4.233869552612305, + "step": 919 + }, + { + "epoch": 12.782874617737003, + "grad_norm": 0.2669033408164978, + "learning_rate": 0.0006, + "loss": 4.261008262634277, + "step": 920 + }, + { + "epoch": 12.796854521625164, + "grad_norm": 0.2738507091999054, + "learning_rate": 0.0006, + "loss": 4.2286763191223145, + "step": 921 + }, + { + "epoch": 12.810834425513324, + "grad_norm": 0.29105183482170105, + "learning_rate": 0.0006, + "loss": 4.281410217285156, + "step": 922 + }, + { + "epoch": 12.824814329401486, + "grad_norm": 0.31330201029777527, + "learning_rate": 0.0006, + "loss": 4.264181613922119, + "step": 923 + }, + { + "epoch": 12.838794233289645, + "grad_norm": 0.31324025988578796, + "learning_rate": 0.0006, + "loss": 4.250385284423828, + "step": 924 + }, + { + "epoch": 12.852774137177807, + "grad_norm": 0.2727925181388855, + "learning_rate": 0.0006, + "loss": 4.24821138381958, + "step": 925 + }, + { + "epoch": 12.866754041065967, + "grad_norm": 0.27350082993507385, + "learning_rate": 0.0006, + "loss": 4.230215072631836, + "step": 926 + }, + { + "epoch": 12.880733944954128, + "grad_norm": 0.2269950658082962, + "learning_rate": 0.0006, + "loss": 4.210305213928223, + "step": 927 + }, + { + "epoch": 12.89471384884229, + "grad_norm": 0.24667619168758392, + "learning_rate": 0.0006, + "loss": 4.239969253540039, + "step": 928 + }, + { + "epoch": 12.90869375273045, + "grad_norm": 0.22510501742362976, + "learning_rate": 0.0006, + "loss": 4.192750930786133, + "step": 929 + }, + { + "epoch": 12.922673656618612, + "grad_norm": 0.22887611389160156, + "learning_rate": 0.0006, + "loss": 4.264463424682617, + "step": 930 + }, + { + "epoch": 12.936653560506771, + "grad_norm": 0.22195978462696075, + "learning_rate": 0.0006, + "loss": 4.205256938934326, + "step": 931 + }, + { + "epoch": 12.950633464394933, + "grad_norm": 0.23184578120708466, + "learning_rate": 0.0006, + "loss": 4.214578628540039, + "step": 932 + }, + { + "epoch": 12.964613368283093, + "grad_norm": 0.2186676561832428, + "learning_rate": 0.0006, + "loss": 4.227711200714111, + "step": 933 + }, + { + "epoch": 12.978593272171254, + "grad_norm": 0.2160426527261734, + "learning_rate": 0.0006, + "loss": 4.221796989440918, + "step": 934 + }, + { + "epoch": 12.992573176059414, + "grad_norm": 0.21562792360782623, + "learning_rate": 0.0006, + "loss": 4.21957540512085, + "step": 935 + }, + { + "epoch": 13.0, + "grad_norm": 0.22538058459758759, + "learning_rate": 0.0006, + "loss": 4.2353973388671875, + "step": 936 + }, + { + "epoch": 13.0, + "eval_loss": 4.426600933074951, + "eval_runtime": 44.8138, + "eval_samples_per_second": 54.492, + "eval_steps_per_second": 3.414, + "step": 936 + }, + { + "epoch": 13.013979903888162, + "grad_norm": 0.24888049066066742, + "learning_rate": 0.0006, + "loss": 4.18648624420166, + "step": 937 + }, + { + "epoch": 13.027959807776321, + "grad_norm": 0.28330180048942566, + "learning_rate": 0.0006, + "loss": 4.188892364501953, + "step": 938 + }, + { + "epoch": 13.041939711664483, + "grad_norm": 0.31152188777923584, + "learning_rate": 0.0006, + "loss": 4.2053399085998535, + "step": 939 + }, + { + "epoch": 13.055919615552643, + "grad_norm": 0.2842433452606201, + "learning_rate": 0.0006, + "loss": 4.191902160644531, + "step": 940 + }, + { + "epoch": 13.069899519440805, + "grad_norm": 0.23664532601833344, + "learning_rate": 0.0006, + "loss": 4.1831865310668945, + "step": 941 + }, + { + "epoch": 13.083879423328964, + "grad_norm": 0.24204140901565552, + "learning_rate": 0.0006, + "loss": 4.202641487121582, + "step": 942 + }, + { + "epoch": 13.097859327217126, + "grad_norm": 0.235311359167099, + "learning_rate": 0.0006, + "loss": 4.174511909484863, + "step": 943 + }, + { + "epoch": 13.111839231105286, + "grad_norm": 0.27127715945243835, + "learning_rate": 0.0006, + "loss": 4.201844215393066, + "step": 944 + }, + { + "epoch": 13.125819134993447, + "grad_norm": 0.2722373604774475, + "learning_rate": 0.0006, + "loss": 4.157383918762207, + "step": 945 + }, + { + "epoch": 13.139799038881607, + "grad_norm": 0.25446659326553345, + "learning_rate": 0.0006, + "loss": 4.221236228942871, + "step": 946 + }, + { + "epoch": 13.153778942769769, + "grad_norm": 0.273017019033432, + "learning_rate": 0.0006, + "loss": 4.195512771606445, + "step": 947 + }, + { + "epoch": 13.167758846657929, + "grad_norm": 0.24766312539577484, + "learning_rate": 0.0006, + "loss": 4.220959663391113, + "step": 948 + }, + { + "epoch": 13.18173875054609, + "grad_norm": 0.24636317789554596, + "learning_rate": 0.0006, + "loss": 4.214302062988281, + "step": 949 + }, + { + "epoch": 13.19571865443425, + "grad_norm": 0.3177756667137146, + "learning_rate": 0.0006, + "loss": 4.213500022888184, + "step": 950 + }, + { + "epoch": 13.209698558322412, + "grad_norm": 0.44579195976257324, + "learning_rate": 0.0006, + "loss": 4.227644920349121, + "step": 951 + }, + { + "epoch": 13.223678462210572, + "grad_norm": 0.4217414855957031, + "learning_rate": 0.0006, + "loss": 4.180937767028809, + "step": 952 + }, + { + "epoch": 13.237658366098733, + "grad_norm": 0.30148059129714966, + "learning_rate": 0.0006, + "loss": 4.207760810852051, + "step": 953 + }, + { + "epoch": 13.251638269986893, + "grad_norm": 0.3192492127418518, + "learning_rate": 0.0006, + "loss": 4.197999000549316, + "step": 954 + }, + { + "epoch": 13.265618173875055, + "grad_norm": 0.37334588170051575, + "learning_rate": 0.0006, + "loss": 4.208001136779785, + "step": 955 + }, + { + "epoch": 13.279598077763215, + "grad_norm": 0.4059637784957886, + "learning_rate": 0.0006, + "loss": 4.211322784423828, + "step": 956 + }, + { + "epoch": 13.293577981651376, + "grad_norm": 0.3389599323272705, + "learning_rate": 0.0006, + "loss": 4.204404354095459, + "step": 957 + }, + { + "epoch": 13.307557885539538, + "grad_norm": 0.2675766050815582, + "learning_rate": 0.0006, + "loss": 4.245941162109375, + "step": 958 + }, + { + "epoch": 13.321537789427698, + "grad_norm": 0.2730264365673065, + "learning_rate": 0.0006, + "loss": 4.2221221923828125, + "step": 959 + }, + { + "epoch": 13.33551769331586, + "grad_norm": 0.26458224654197693, + "learning_rate": 0.0006, + "loss": 4.205596923828125, + "step": 960 + }, + { + "epoch": 13.349497597204019, + "grad_norm": 0.2872551381587982, + "learning_rate": 0.0006, + "loss": 4.196977615356445, + "step": 961 + }, + { + "epoch": 13.36347750109218, + "grad_norm": 0.2954796850681305, + "learning_rate": 0.0006, + "loss": 4.202796936035156, + "step": 962 + }, + { + "epoch": 13.37745740498034, + "grad_norm": 0.2619425654411316, + "learning_rate": 0.0006, + "loss": 4.196845054626465, + "step": 963 + }, + { + "epoch": 13.391437308868502, + "grad_norm": 0.30088478326797485, + "learning_rate": 0.0006, + "loss": 4.219697952270508, + "step": 964 + }, + { + "epoch": 13.405417212756662, + "grad_norm": 0.30388689041137695, + "learning_rate": 0.0006, + "loss": 4.187566757202148, + "step": 965 + }, + { + "epoch": 13.419397116644824, + "grad_norm": 0.27918127179145813, + "learning_rate": 0.0006, + "loss": 4.223600387573242, + "step": 966 + }, + { + "epoch": 13.433377020532983, + "grad_norm": 0.27634528279304504, + "learning_rate": 0.0006, + "loss": 4.165332317352295, + "step": 967 + }, + { + "epoch": 13.447356924421145, + "grad_norm": 0.28830021619796753, + "learning_rate": 0.0006, + "loss": 4.204029560089111, + "step": 968 + }, + { + "epoch": 13.461336828309305, + "grad_norm": 0.29220864176750183, + "learning_rate": 0.0006, + "loss": 4.218057155609131, + "step": 969 + }, + { + "epoch": 13.475316732197467, + "grad_norm": 0.3089624345302582, + "learning_rate": 0.0006, + "loss": 4.200654983520508, + "step": 970 + }, + { + "epoch": 13.489296636085626, + "grad_norm": 0.36479851603507996, + "learning_rate": 0.0006, + "loss": 4.182811737060547, + "step": 971 + }, + { + "epoch": 13.503276539973788, + "grad_norm": 0.37561097741127014, + "learning_rate": 0.0006, + "loss": 4.190266132354736, + "step": 972 + }, + { + "epoch": 13.517256443861948, + "grad_norm": 0.3263583183288574, + "learning_rate": 0.0006, + "loss": 4.214815616607666, + "step": 973 + }, + { + "epoch": 13.53123634775011, + "grad_norm": 0.21552999317646027, + "learning_rate": 0.0006, + "loss": 4.171380043029785, + "step": 974 + }, + { + "epoch": 13.54521625163827, + "grad_norm": 0.247328519821167, + "learning_rate": 0.0006, + "loss": 4.175377368927002, + "step": 975 + }, + { + "epoch": 13.55919615552643, + "grad_norm": 0.23740540444850922, + "learning_rate": 0.0006, + "loss": 4.212357997894287, + "step": 976 + }, + { + "epoch": 13.57317605941459, + "grad_norm": 0.21533876657485962, + "learning_rate": 0.0006, + "loss": 4.203285217285156, + "step": 977 + }, + { + "epoch": 13.587155963302752, + "grad_norm": 0.21462024748325348, + "learning_rate": 0.0006, + "loss": 4.178012371063232, + "step": 978 + }, + { + "epoch": 13.601135867190912, + "grad_norm": 0.2279169261455536, + "learning_rate": 0.0006, + "loss": 4.193912982940674, + "step": 979 + }, + { + "epoch": 13.615115771079074, + "grad_norm": 0.2202417552471161, + "learning_rate": 0.0006, + "loss": 4.167629718780518, + "step": 980 + }, + { + "epoch": 13.629095674967235, + "grad_norm": 0.20586472749710083, + "learning_rate": 0.0006, + "loss": 4.159290313720703, + "step": 981 + }, + { + "epoch": 13.643075578855395, + "grad_norm": 0.20200690627098083, + "learning_rate": 0.0006, + "loss": 4.210315227508545, + "step": 982 + }, + { + "epoch": 13.657055482743557, + "grad_norm": 0.21710257232189178, + "learning_rate": 0.0006, + "loss": 4.21730375289917, + "step": 983 + }, + { + "epoch": 13.671035386631717, + "grad_norm": 0.22058045864105225, + "learning_rate": 0.0006, + "loss": 4.1996073722839355, + "step": 984 + }, + { + "epoch": 13.685015290519878, + "grad_norm": 0.21549592912197113, + "learning_rate": 0.0006, + "loss": 4.209203720092773, + "step": 985 + }, + { + "epoch": 13.698995194408038, + "grad_norm": 0.22274717688560486, + "learning_rate": 0.0006, + "loss": 4.220660209655762, + "step": 986 + }, + { + "epoch": 13.7129750982962, + "grad_norm": 0.22791637480258942, + "learning_rate": 0.0006, + "loss": 4.158679962158203, + "step": 987 + }, + { + "epoch": 13.72695500218436, + "grad_norm": 0.216218963265419, + "learning_rate": 0.0006, + "loss": 4.188124656677246, + "step": 988 + }, + { + "epoch": 13.740934906072521, + "grad_norm": 0.19149383902549744, + "learning_rate": 0.0006, + "loss": 4.181729316711426, + "step": 989 + }, + { + "epoch": 13.754914809960681, + "grad_norm": 0.18964019417762756, + "learning_rate": 0.0006, + "loss": 4.184767246246338, + "step": 990 + }, + { + "epoch": 13.768894713848843, + "grad_norm": 0.1778000295162201, + "learning_rate": 0.0006, + "loss": 4.1802263259887695, + "step": 991 + }, + { + "epoch": 13.782874617737003, + "grad_norm": 0.18277616798877716, + "learning_rate": 0.0006, + "loss": 4.1657867431640625, + "step": 992 + }, + { + "epoch": 13.796854521625164, + "grad_norm": 0.18610034883022308, + "learning_rate": 0.0006, + "loss": 4.156744956970215, + "step": 993 + }, + { + "epoch": 13.810834425513324, + "grad_norm": 0.19332963228225708, + "learning_rate": 0.0006, + "loss": 4.143558502197266, + "step": 994 + }, + { + "epoch": 13.824814329401486, + "grad_norm": 0.19758112728595734, + "learning_rate": 0.0006, + "loss": 4.195793151855469, + "step": 995 + }, + { + "epoch": 13.838794233289645, + "grad_norm": 0.1933647245168686, + "learning_rate": 0.0006, + "loss": 4.169734954833984, + "step": 996 + }, + { + "epoch": 13.852774137177807, + "grad_norm": 0.2362028956413269, + "learning_rate": 0.0006, + "loss": 4.175025939941406, + "step": 997 + }, + { + "epoch": 13.866754041065967, + "grad_norm": 0.2465490996837616, + "learning_rate": 0.0006, + "loss": 4.173909664154053, + "step": 998 + }, + { + "epoch": 13.880733944954128, + "grad_norm": 0.23449952900409698, + "learning_rate": 0.0006, + "loss": 4.173429489135742, + "step": 999 + }, + { + "epoch": 13.89471384884229, + "grad_norm": 0.2282160222530365, + "learning_rate": 0.0006, + "loss": 4.158538341522217, + "step": 1000 + }, + { + "epoch": 13.90869375273045, + "grad_norm": 0.21066738665103912, + "learning_rate": 0.0006, + "loss": 4.171584129333496, + "step": 1001 + }, + { + "epoch": 13.922673656618612, + "grad_norm": 0.18787573277950287, + "learning_rate": 0.0006, + "loss": 4.1837544441223145, + "step": 1002 + }, + { + "epoch": 13.936653560506771, + "grad_norm": 0.2001059353351593, + "learning_rate": 0.0006, + "loss": 4.160369873046875, + "step": 1003 + }, + { + "epoch": 13.950633464394933, + "grad_norm": 0.21644988656044006, + "learning_rate": 0.0006, + "loss": 4.221372604370117, + "step": 1004 + }, + { + "epoch": 13.964613368283093, + "grad_norm": 0.22083887457847595, + "learning_rate": 0.0006, + "loss": 4.149261474609375, + "step": 1005 + }, + { + "epoch": 13.978593272171254, + "grad_norm": 0.2201409637928009, + "learning_rate": 0.0006, + "loss": 4.192010879516602, + "step": 1006 + }, + { + "epoch": 13.992573176059414, + "grad_norm": 0.18888601660728455, + "learning_rate": 0.0006, + "loss": 4.17539119720459, + "step": 1007 + }, + { + "epoch": 14.0, + "grad_norm": 0.2073872834444046, + "learning_rate": 0.0006, + "loss": 4.145265579223633, + "step": 1008 + }, + { + "epoch": 14.0, + "eval_loss": 4.36876106262207, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 1008 + }, + { + "epoch": 14.013979903888162, + "grad_norm": 0.20773135125637054, + "learning_rate": 0.0006, + "loss": 4.132615089416504, + "step": 1009 + }, + { + "epoch": 14.027959807776321, + "grad_norm": 0.22409620881080627, + "learning_rate": 0.0006, + "loss": 4.172839164733887, + "step": 1010 + }, + { + "epoch": 14.041939711664483, + "grad_norm": 0.24046066403388977, + "learning_rate": 0.0006, + "loss": 4.126678943634033, + "step": 1011 + }, + { + "epoch": 14.055919615552643, + "grad_norm": 0.29185160994529724, + "learning_rate": 0.0006, + "loss": 4.177952766418457, + "step": 1012 + }, + { + "epoch": 14.069899519440805, + "grad_norm": 0.2984033226966858, + "learning_rate": 0.0006, + "loss": 4.155030250549316, + "step": 1013 + }, + { + "epoch": 14.083879423328964, + "grad_norm": 0.30262473225593567, + "learning_rate": 0.0006, + "loss": 4.145394325256348, + "step": 1014 + }, + { + "epoch": 14.097859327217126, + "grad_norm": 0.3278133273124695, + "learning_rate": 0.0006, + "loss": 4.172739028930664, + "step": 1015 + }, + { + "epoch": 14.111839231105286, + "grad_norm": 0.3285452425479889, + "learning_rate": 0.0006, + "loss": 4.153196334838867, + "step": 1016 + }, + { + "epoch": 14.125819134993447, + "grad_norm": 0.33912697434425354, + "learning_rate": 0.0006, + "loss": 4.098162651062012, + "step": 1017 + }, + { + "epoch": 14.139799038881607, + "grad_norm": 0.32080814242362976, + "learning_rate": 0.0006, + "loss": 4.157135009765625, + "step": 1018 + }, + { + "epoch": 14.153778942769769, + "grad_norm": 0.31288477778434753, + "learning_rate": 0.0006, + "loss": 4.142683029174805, + "step": 1019 + }, + { + "epoch": 14.167758846657929, + "grad_norm": 0.350289523601532, + "learning_rate": 0.0006, + "loss": 4.134700775146484, + "step": 1020 + }, + { + "epoch": 14.18173875054609, + "grad_norm": 0.34274575114250183, + "learning_rate": 0.0006, + "loss": 4.1578569412231445, + "step": 1021 + }, + { + "epoch": 14.19571865443425, + "grad_norm": 0.2843035161495209, + "learning_rate": 0.0006, + "loss": 4.13760232925415, + "step": 1022 + }, + { + "epoch": 14.209698558322412, + "grad_norm": 0.28235161304473877, + "learning_rate": 0.0006, + "loss": 4.1492462158203125, + "step": 1023 + }, + { + "epoch": 14.223678462210572, + "grad_norm": 0.24407248198986053, + "learning_rate": 0.0006, + "loss": 4.144372463226318, + "step": 1024 + }, + { + "epoch": 14.237658366098733, + "grad_norm": 0.2489742934703827, + "learning_rate": 0.0006, + "loss": 4.137950897216797, + "step": 1025 + }, + { + "epoch": 14.251638269986893, + "grad_norm": 0.26035651564598083, + "learning_rate": 0.0006, + "loss": 4.144070625305176, + "step": 1026 + }, + { + "epoch": 14.265618173875055, + "grad_norm": 0.2726516127586365, + "learning_rate": 0.0006, + "loss": 4.145204067230225, + "step": 1027 + }, + { + "epoch": 14.279598077763215, + "grad_norm": 0.2723483443260193, + "learning_rate": 0.0006, + "loss": 4.118407249450684, + "step": 1028 + }, + { + "epoch": 14.293577981651376, + "grad_norm": 0.27476269006729126, + "learning_rate": 0.0006, + "loss": 4.111325263977051, + "step": 1029 + }, + { + "epoch": 14.307557885539538, + "grad_norm": 0.26202502846717834, + "learning_rate": 0.0006, + "loss": 4.122248649597168, + "step": 1030 + }, + { + "epoch": 14.321537789427698, + "grad_norm": 0.2472032904624939, + "learning_rate": 0.0006, + "loss": 4.157790184020996, + "step": 1031 + }, + { + "epoch": 14.33551769331586, + "grad_norm": 0.2518343925476074, + "learning_rate": 0.0006, + "loss": 4.109132766723633, + "step": 1032 + }, + { + "epoch": 14.349497597204019, + "grad_norm": 0.2652401924133301, + "learning_rate": 0.0006, + "loss": 4.144079685211182, + "step": 1033 + }, + { + "epoch": 14.36347750109218, + "grad_norm": 0.2356770783662796, + "learning_rate": 0.0006, + "loss": 4.128426551818848, + "step": 1034 + }, + { + "epoch": 14.37745740498034, + "grad_norm": 0.2164214551448822, + "learning_rate": 0.0006, + "loss": 4.1644392013549805, + "step": 1035 + }, + { + "epoch": 14.391437308868502, + "grad_norm": 0.22383111715316772, + "learning_rate": 0.0006, + "loss": 4.165862083435059, + "step": 1036 + }, + { + "epoch": 14.405417212756662, + "grad_norm": 0.23152419924736023, + "learning_rate": 0.0006, + "loss": 4.140036582946777, + "step": 1037 + }, + { + "epoch": 14.419397116644824, + "grad_norm": 0.2387741357088089, + "learning_rate": 0.0006, + "loss": 4.130461692810059, + "step": 1038 + }, + { + "epoch": 14.433377020532983, + "grad_norm": 0.24018129706382751, + "learning_rate": 0.0006, + "loss": 4.148482322692871, + "step": 1039 + }, + { + "epoch": 14.447356924421145, + "grad_norm": 0.25487351417541504, + "learning_rate": 0.0006, + "loss": 4.158121109008789, + "step": 1040 + }, + { + "epoch": 14.461336828309305, + "grad_norm": 0.28220096230506897, + "learning_rate": 0.0006, + "loss": 4.160198211669922, + "step": 1041 + }, + { + "epoch": 14.475316732197467, + "grad_norm": 0.2574434280395508, + "learning_rate": 0.0006, + "loss": 4.168512344360352, + "step": 1042 + }, + { + "epoch": 14.489296636085626, + "grad_norm": 0.22569820284843445, + "learning_rate": 0.0006, + "loss": 4.1595001220703125, + "step": 1043 + }, + { + "epoch": 14.503276539973788, + "grad_norm": 0.2473423182964325, + "learning_rate": 0.0006, + "loss": 4.084580898284912, + "step": 1044 + }, + { + "epoch": 14.517256443861948, + "grad_norm": 0.24281060695648193, + "learning_rate": 0.0006, + "loss": 4.139714241027832, + "step": 1045 + }, + { + "epoch": 14.53123634775011, + "grad_norm": 0.24691344797611237, + "learning_rate": 0.0006, + "loss": 4.115398406982422, + "step": 1046 + }, + { + "epoch": 14.54521625163827, + "grad_norm": 0.2583645284175873, + "learning_rate": 0.0006, + "loss": 4.142148494720459, + "step": 1047 + }, + { + "epoch": 14.55919615552643, + "grad_norm": 0.23258574306964874, + "learning_rate": 0.0006, + "loss": 4.16251277923584, + "step": 1048 + }, + { + "epoch": 14.57317605941459, + "grad_norm": 0.22103039920330048, + "learning_rate": 0.0006, + "loss": 4.1308441162109375, + "step": 1049 + }, + { + "epoch": 14.587155963302752, + "grad_norm": 0.23713579773902893, + "learning_rate": 0.0006, + "loss": 4.1565985679626465, + "step": 1050 + }, + { + "epoch": 14.601135867190912, + "grad_norm": 0.24406634271144867, + "learning_rate": 0.0006, + "loss": 4.14628267288208, + "step": 1051 + }, + { + "epoch": 14.615115771079074, + "grad_norm": 0.26821228861808777, + "learning_rate": 0.0006, + "loss": 4.138063430786133, + "step": 1052 + }, + { + "epoch": 14.629095674967235, + "grad_norm": 0.25483864545822144, + "learning_rate": 0.0006, + "loss": 4.1311163902282715, + "step": 1053 + }, + { + "epoch": 14.643075578855395, + "grad_norm": 0.23937982320785522, + "learning_rate": 0.0006, + "loss": 4.150882244110107, + "step": 1054 + }, + { + "epoch": 14.657055482743557, + "grad_norm": 0.21896475553512573, + "learning_rate": 0.0006, + "loss": 4.114015102386475, + "step": 1055 + }, + { + "epoch": 14.671035386631717, + "grad_norm": 0.20821231603622437, + "learning_rate": 0.0006, + "loss": 4.139034271240234, + "step": 1056 + }, + { + "epoch": 14.685015290519878, + "grad_norm": 0.1978551596403122, + "learning_rate": 0.0006, + "loss": 4.1810503005981445, + "step": 1057 + }, + { + "epoch": 14.698995194408038, + "grad_norm": 0.1945771872997284, + "learning_rate": 0.0006, + "loss": 4.120734214782715, + "step": 1058 + }, + { + "epoch": 14.7129750982962, + "grad_norm": 0.19518673419952393, + "learning_rate": 0.0006, + "loss": 4.14264440536499, + "step": 1059 + }, + { + "epoch": 14.72695500218436, + "grad_norm": 0.202596515417099, + "learning_rate": 0.0006, + "loss": 4.151649475097656, + "step": 1060 + }, + { + "epoch": 14.740934906072521, + "grad_norm": 0.1904762089252472, + "learning_rate": 0.0006, + "loss": 4.127899169921875, + "step": 1061 + }, + { + "epoch": 14.754914809960681, + "grad_norm": 0.20685508847236633, + "learning_rate": 0.0006, + "loss": 4.093445777893066, + "step": 1062 + }, + { + "epoch": 14.768894713848843, + "grad_norm": 0.22678329050540924, + "learning_rate": 0.0006, + "loss": 4.132084369659424, + "step": 1063 + }, + { + "epoch": 14.782874617737003, + "grad_norm": 0.24631841480731964, + "learning_rate": 0.0006, + "loss": 4.154788970947266, + "step": 1064 + }, + { + "epoch": 14.796854521625164, + "grad_norm": 0.24445782601833344, + "learning_rate": 0.0006, + "loss": 4.144735336303711, + "step": 1065 + }, + { + "epoch": 14.810834425513324, + "grad_norm": 0.22330640256404877, + "learning_rate": 0.0006, + "loss": 4.159893989562988, + "step": 1066 + }, + { + "epoch": 14.824814329401486, + "grad_norm": 0.22422967851161957, + "learning_rate": 0.0006, + "loss": 4.104874610900879, + "step": 1067 + }, + { + "epoch": 14.838794233289645, + "grad_norm": 0.24583931267261505, + "learning_rate": 0.0006, + "loss": 4.139403820037842, + "step": 1068 + }, + { + "epoch": 14.852774137177807, + "grad_norm": 0.2917379140853882, + "learning_rate": 0.0006, + "loss": 4.168988227844238, + "step": 1069 + }, + { + "epoch": 14.866754041065967, + "grad_norm": 0.3171777129173279, + "learning_rate": 0.0006, + "loss": 4.131263732910156, + "step": 1070 + }, + { + "epoch": 14.880733944954128, + "grad_norm": 0.3039591312408447, + "learning_rate": 0.0006, + "loss": 4.149853706359863, + "step": 1071 + }, + { + "epoch": 14.89471384884229, + "grad_norm": 0.2690650522708893, + "learning_rate": 0.0006, + "loss": 4.154787540435791, + "step": 1072 + }, + { + "epoch": 14.90869375273045, + "grad_norm": 0.28683212399482727, + "learning_rate": 0.0006, + "loss": 4.12751579284668, + "step": 1073 + }, + { + "epoch": 14.922673656618612, + "grad_norm": 0.30022913217544556, + "learning_rate": 0.0006, + "loss": 4.141940116882324, + "step": 1074 + }, + { + "epoch": 14.936653560506771, + "grad_norm": 0.3312259316444397, + "learning_rate": 0.0006, + "loss": 4.141905784606934, + "step": 1075 + }, + { + "epoch": 14.950633464394933, + "grad_norm": 0.31159237027168274, + "learning_rate": 0.0006, + "loss": 4.160192966461182, + "step": 1076 + }, + { + "epoch": 14.964613368283093, + "grad_norm": 0.30093592405319214, + "learning_rate": 0.0006, + "loss": 4.1085076332092285, + "step": 1077 + }, + { + "epoch": 14.978593272171254, + "grad_norm": 0.2728535830974579, + "learning_rate": 0.0006, + "loss": 4.156959056854248, + "step": 1078 + }, + { + "epoch": 14.992573176059414, + "grad_norm": 0.24766813218593597, + "learning_rate": 0.0006, + "loss": 4.113999843597412, + "step": 1079 + }, + { + "epoch": 15.0, + "grad_norm": 0.2538154721260071, + "learning_rate": 0.0006, + "loss": 4.147134780883789, + "step": 1080 + }, + { + "epoch": 15.0, + "eval_loss": 4.323154926300049, + "eval_runtime": 44.8813, + "eval_samples_per_second": 54.41, + "eval_steps_per_second": 3.409, + "step": 1080 + }, + { + "epoch": 15.013979903888162, + "grad_norm": 0.22535280883312225, + "learning_rate": 0.0006, + "loss": 4.112179756164551, + "step": 1081 + }, + { + "epoch": 15.027959807776321, + "grad_norm": 0.24340929090976715, + "learning_rate": 0.0006, + "loss": 4.080923080444336, + "step": 1082 + }, + { + "epoch": 15.041939711664483, + "grad_norm": 0.23159465193748474, + "learning_rate": 0.0006, + "loss": 4.097067356109619, + "step": 1083 + }, + { + "epoch": 15.055919615552643, + "grad_norm": 0.22674769163131714, + "learning_rate": 0.0006, + "loss": 4.118601322174072, + "step": 1084 + }, + { + "epoch": 15.069899519440805, + "grad_norm": 0.2524292469024658, + "learning_rate": 0.0006, + "loss": 4.101109504699707, + "step": 1085 + }, + { + "epoch": 15.083879423328964, + "grad_norm": 0.2505405843257904, + "learning_rate": 0.0006, + "loss": 4.121405601501465, + "step": 1086 + }, + { + "epoch": 15.097859327217126, + "grad_norm": 0.2557983696460724, + "learning_rate": 0.0006, + "loss": 4.1063947677612305, + "step": 1087 + }, + { + "epoch": 15.111839231105286, + "grad_norm": 0.24452129006385803, + "learning_rate": 0.0006, + "loss": 4.086133003234863, + "step": 1088 + }, + { + "epoch": 15.125819134993447, + "grad_norm": 0.25821781158447266, + "learning_rate": 0.0006, + "loss": 4.076262950897217, + "step": 1089 + }, + { + "epoch": 15.139799038881607, + "grad_norm": 0.23650537431240082, + "learning_rate": 0.0006, + "loss": 4.101842880249023, + "step": 1090 + }, + { + "epoch": 15.153778942769769, + "grad_norm": 0.2206192910671234, + "learning_rate": 0.0006, + "loss": 4.11027193069458, + "step": 1091 + }, + { + "epoch": 15.167758846657929, + "grad_norm": 0.21843163669109344, + "learning_rate": 0.0006, + "loss": 4.098437309265137, + "step": 1092 + }, + { + "epoch": 15.18173875054609, + "grad_norm": 0.2528176009654999, + "learning_rate": 0.0006, + "loss": 4.108713150024414, + "step": 1093 + }, + { + "epoch": 15.19571865443425, + "grad_norm": 0.26697206497192383, + "learning_rate": 0.0006, + "loss": 4.113210201263428, + "step": 1094 + }, + { + "epoch": 15.209698558322412, + "grad_norm": 0.26480963826179504, + "learning_rate": 0.0006, + "loss": 4.1103620529174805, + "step": 1095 + }, + { + "epoch": 15.223678462210572, + "grad_norm": 0.24887347221374512, + "learning_rate": 0.0006, + "loss": 4.103529930114746, + "step": 1096 + }, + { + "epoch": 15.237658366098733, + "grad_norm": 0.2344668060541153, + "learning_rate": 0.0006, + "loss": 4.129784107208252, + "step": 1097 + }, + { + "epoch": 15.251638269986893, + "grad_norm": 0.22639742493629456, + "learning_rate": 0.0006, + "loss": 4.113495349884033, + "step": 1098 + }, + { + "epoch": 15.265618173875055, + "grad_norm": 0.22466333210468292, + "learning_rate": 0.0006, + "loss": 4.102309703826904, + "step": 1099 + }, + { + "epoch": 15.279598077763215, + "grad_norm": 0.25135037302970886, + "learning_rate": 0.0006, + "loss": 4.117668628692627, + "step": 1100 + }, + { + "epoch": 15.293577981651376, + "grad_norm": 0.2347089946269989, + "learning_rate": 0.0006, + "loss": 4.086637496948242, + "step": 1101 + }, + { + "epoch": 15.307557885539538, + "grad_norm": 0.2347242832183838, + "learning_rate": 0.0006, + "loss": 4.098714828491211, + "step": 1102 + }, + { + "epoch": 15.321537789427698, + "grad_norm": 0.23990283906459808, + "learning_rate": 0.0006, + "loss": 4.079837799072266, + "step": 1103 + }, + { + "epoch": 15.33551769331586, + "grad_norm": 0.22366675734519958, + "learning_rate": 0.0006, + "loss": 4.108136177062988, + "step": 1104 + }, + { + "epoch": 15.349497597204019, + "grad_norm": 0.21823780238628387, + "learning_rate": 0.0006, + "loss": 4.10054349899292, + "step": 1105 + }, + { + "epoch": 15.36347750109218, + "grad_norm": 0.23059198260307312, + "learning_rate": 0.0006, + "loss": 4.108620643615723, + "step": 1106 + }, + { + "epoch": 15.37745740498034, + "grad_norm": 0.2313755601644516, + "learning_rate": 0.0006, + "loss": 4.088565826416016, + "step": 1107 + }, + { + "epoch": 15.391437308868502, + "grad_norm": 0.2546829283237457, + "learning_rate": 0.0006, + "loss": 4.104948043823242, + "step": 1108 + }, + { + "epoch": 15.405417212756662, + "grad_norm": 0.23666726052761078, + "learning_rate": 0.0006, + "loss": 4.111965179443359, + "step": 1109 + }, + { + "epoch": 15.419397116644824, + "grad_norm": 0.21971021592617035, + "learning_rate": 0.0006, + "loss": 4.097846984863281, + "step": 1110 + }, + { + "epoch": 15.433377020532983, + "grad_norm": 0.20951911807060242, + "learning_rate": 0.0006, + "loss": 4.110099792480469, + "step": 1111 + }, + { + "epoch": 15.447356924421145, + "grad_norm": 0.19590918719768524, + "learning_rate": 0.0006, + "loss": 4.101154327392578, + "step": 1112 + }, + { + "epoch": 15.461336828309305, + "grad_norm": 0.21048946678638458, + "learning_rate": 0.0006, + "loss": 4.0986127853393555, + "step": 1113 + }, + { + "epoch": 15.475316732197467, + "grad_norm": 0.21423374116420746, + "learning_rate": 0.0006, + "loss": 4.082328796386719, + "step": 1114 + }, + { + "epoch": 15.489296636085626, + "grad_norm": 0.227146714925766, + "learning_rate": 0.0006, + "loss": 4.105281829833984, + "step": 1115 + }, + { + "epoch": 15.503276539973788, + "grad_norm": 0.2079153060913086, + "learning_rate": 0.0006, + "loss": 4.100836753845215, + "step": 1116 + }, + { + "epoch": 15.517256443861948, + "grad_norm": 0.21084675192832947, + "learning_rate": 0.0006, + "loss": 4.0934343338012695, + "step": 1117 + }, + { + "epoch": 15.53123634775011, + "grad_norm": 0.23863616585731506, + "learning_rate": 0.0006, + "loss": 4.101540565490723, + "step": 1118 + }, + { + "epoch": 15.54521625163827, + "grad_norm": 0.2518490254878998, + "learning_rate": 0.0006, + "loss": 4.12303352355957, + "step": 1119 + }, + { + "epoch": 15.55919615552643, + "grad_norm": 0.24282905459403992, + "learning_rate": 0.0006, + "loss": 4.080670356750488, + "step": 1120 + }, + { + "epoch": 15.57317605941459, + "grad_norm": 0.24171605706214905, + "learning_rate": 0.0006, + "loss": 4.117938041687012, + "step": 1121 + }, + { + "epoch": 15.587155963302752, + "grad_norm": 0.28453412652015686, + "learning_rate": 0.0006, + "loss": 4.080114364624023, + "step": 1122 + }, + { + "epoch": 15.601135867190912, + "grad_norm": 0.30322617292404175, + "learning_rate": 0.0006, + "loss": 4.079695701599121, + "step": 1123 + }, + { + "epoch": 15.615115771079074, + "grad_norm": 0.2657633125782013, + "learning_rate": 0.0006, + "loss": 4.0916290283203125, + "step": 1124 + }, + { + "epoch": 15.629095674967235, + "grad_norm": 0.2467080056667328, + "learning_rate": 0.0006, + "loss": 4.095594882965088, + "step": 1125 + }, + { + "epoch": 15.643075578855395, + "grad_norm": 0.21767394244670868, + "learning_rate": 0.0006, + "loss": 4.079174041748047, + "step": 1126 + }, + { + "epoch": 15.657055482743557, + "grad_norm": 0.2088327705860138, + "learning_rate": 0.0006, + "loss": 4.060707092285156, + "step": 1127 + }, + { + "epoch": 15.671035386631717, + "grad_norm": 0.1921205073595047, + "learning_rate": 0.0006, + "loss": 4.073911666870117, + "step": 1128 + }, + { + "epoch": 15.685015290519878, + "grad_norm": 0.209339901804924, + "learning_rate": 0.0006, + "loss": 4.089954376220703, + "step": 1129 + }, + { + "epoch": 15.698995194408038, + "grad_norm": 0.23513881862163544, + "learning_rate": 0.0006, + "loss": 4.084906578063965, + "step": 1130 + }, + { + "epoch": 15.7129750982962, + "grad_norm": 0.26140275597572327, + "learning_rate": 0.0006, + "loss": 4.086570739746094, + "step": 1131 + }, + { + "epoch": 15.72695500218436, + "grad_norm": 0.290431946516037, + "learning_rate": 0.0006, + "loss": 4.071229457855225, + "step": 1132 + }, + { + "epoch": 15.740934906072521, + "grad_norm": 0.3061376214027405, + "learning_rate": 0.0006, + "loss": 4.103148460388184, + "step": 1133 + }, + { + "epoch": 15.754914809960681, + "grad_norm": 0.26312482357025146, + "learning_rate": 0.0006, + "loss": 4.088448524475098, + "step": 1134 + }, + { + "epoch": 15.768894713848843, + "grad_norm": 0.22474883496761322, + "learning_rate": 0.0006, + "loss": 4.091766834259033, + "step": 1135 + }, + { + "epoch": 15.782874617737003, + "grad_norm": 0.2341146171092987, + "learning_rate": 0.0006, + "loss": 4.1222758293151855, + "step": 1136 + }, + { + "epoch": 15.796854521625164, + "grad_norm": 0.23556149005889893, + "learning_rate": 0.0006, + "loss": 4.094954013824463, + "step": 1137 + }, + { + "epoch": 15.810834425513324, + "grad_norm": 0.263315349817276, + "learning_rate": 0.0006, + "loss": 4.1065473556518555, + "step": 1138 + }, + { + "epoch": 15.824814329401486, + "grad_norm": 0.2700869143009186, + "learning_rate": 0.0006, + "loss": 4.0890045166015625, + "step": 1139 + }, + { + "epoch": 15.838794233289645, + "grad_norm": 0.28697484731674194, + "learning_rate": 0.0006, + "loss": 4.092496395111084, + "step": 1140 + }, + { + "epoch": 15.852774137177807, + "grad_norm": 0.2824092507362366, + "learning_rate": 0.0006, + "loss": 4.079615592956543, + "step": 1141 + }, + { + "epoch": 15.866754041065967, + "grad_norm": 0.24547280371189117, + "learning_rate": 0.0006, + "loss": 4.089683532714844, + "step": 1142 + }, + { + "epoch": 15.880733944954128, + "grad_norm": 0.23653888702392578, + "learning_rate": 0.0006, + "loss": 4.067309379577637, + "step": 1143 + }, + { + "epoch": 15.89471384884229, + "grad_norm": 0.23784421384334564, + "learning_rate": 0.0006, + "loss": 4.09156608581543, + "step": 1144 + }, + { + "epoch": 15.90869375273045, + "grad_norm": 0.22753281891345978, + "learning_rate": 0.0006, + "loss": 4.095428466796875, + "step": 1145 + }, + { + "epoch": 15.922673656618612, + "grad_norm": 0.2464212030172348, + "learning_rate": 0.0006, + "loss": 4.1036376953125, + "step": 1146 + }, + { + "epoch": 15.936653560506771, + "grad_norm": 0.25531601905822754, + "learning_rate": 0.0006, + "loss": 4.073996543884277, + "step": 1147 + }, + { + "epoch": 15.950633464394933, + "grad_norm": 0.24145905673503876, + "learning_rate": 0.0006, + "loss": 4.094479560852051, + "step": 1148 + }, + { + "epoch": 15.964613368283093, + "grad_norm": 0.24274317920207977, + "learning_rate": 0.0006, + "loss": 4.101981163024902, + "step": 1149 + }, + { + "epoch": 15.978593272171254, + "grad_norm": 0.2350679188966751, + "learning_rate": 0.0006, + "loss": 4.057965278625488, + "step": 1150 + }, + { + "epoch": 15.992573176059414, + "grad_norm": 0.24072253704071045, + "learning_rate": 0.0006, + "loss": 4.020050048828125, + "step": 1151 + }, + { + "epoch": 16.0, + "grad_norm": 0.253978967666626, + "learning_rate": 0.0006, + "loss": 4.061928749084473, + "step": 1152 + }, + { + "epoch": 16.0, + "eval_loss": 4.270665645599365, + "eval_runtime": 44.5063, + "eval_samples_per_second": 54.869, + "eval_steps_per_second": 3.438, + "step": 1152 + }, + { + "epoch": 16.01397990388816, + "grad_norm": 0.3265204131603241, + "learning_rate": 0.0006, + "loss": 4.059116363525391, + "step": 1153 + }, + { + "epoch": 16.027959807776323, + "grad_norm": 0.34139737486839294, + "learning_rate": 0.0006, + "loss": 4.062219619750977, + "step": 1154 + }, + { + "epoch": 16.041939711664483, + "grad_norm": 0.2849949598312378, + "learning_rate": 0.0006, + "loss": 4.032323837280273, + "step": 1155 + }, + { + "epoch": 16.055919615552643, + "grad_norm": 0.25031402707099915, + "learning_rate": 0.0006, + "loss": 4.075527191162109, + "step": 1156 + }, + { + "epoch": 16.069899519440803, + "grad_norm": 0.25207436084747314, + "learning_rate": 0.0006, + "loss": 4.0883097648620605, + "step": 1157 + }, + { + "epoch": 16.083879423328966, + "grad_norm": 0.28677356243133545, + "learning_rate": 0.0006, + "loss": 4.040797233581543, + "step": 1158 + }, + { + "epoch": 16.097859327217126, + "grad_norm": 0.30778825283050537, + "learning_rate": 0.0006, + "loss": 4.051504135131836, + "step": 1159 + }, + { + "epoch": 16.111839231105286, + "grad_norm": 0.3136911988258362, + "learning_rate": 0.0006, + "loss": 4.045449256896973, + "step": 1160 + }, + { + "epoch": 16.125819134993446, + "grad_norm": 0.34384530782699585, + "learning_rate": 0.0006, + "loss": 4.069897651672363, + "step": 1161 + }, + { + "epoch": 16.13979903888161, + "grad_norm": 0.3074268400669098, + "learning_rate": 0.0006, + "loss": 4.0621137619018555, + "step": 1162 + }, + { + "epoch": 16.15377894276977, + "grad_norm": 0.33090949058532715, + "learning_rate": 0.0006, + "loss": 4.084089279174805, + "step": 1163 + }, + { + "epoch": 16.16775884665793, + "grad_norm": 0.26358580589294434, + "learning_rate": 0.0006, + "loss": 4.066563606262207, + "step": 1164 + }, + { + "epoch": 16.18173875054609, + "grad_norm": 0.25586041808128357, + "learning_rate": 0.0006, + "loss": 4.08109188079834, + "step": 1165 + }, + { + "epoch": 16.195718654434252, + "grad_norm": 0.2966184616088867, + "learning_rate": 0.0006, + "loss": 4.039186477661133, + "step": 1166 + }, + { + "epoch": 16.209698558322412, + "grad_norm": 0.3064924478530884, + "learning_rate": 0.0006, + "loss": 4.08139705657959, + "step": 1167 + }, + { + "epoch": 16.22367846221057, + "grad_norm": 0.28671345114707947, + "learning_rate": 0.0006, + "loss": 4.04637336730957, + "step": 1168 + }, + { + "epoch": 16.23765836609873, + "grad_norm": 0.26209691166877747, + "learning_rate": 0.0006, + "loss": 4.052768707275391, + "step": 1169 + }, + { + "epoch": 16.251638269986895, + "grad_norm": 0.2758907079696655, + "learning_rate": 0.0006, + "loss": 4.064321517944336, + "step": 1170 + }, + { + "epoch": 16.265618173875055, + "grad_norm": 0.25961801409721375, + "learning_rate": 0.0006, + "loss": 4.057299613952637, + "step": 1171 + }, + { + "epoch": 16.279598077763215, + "grad_norm": 0.2513751685619354, + "learning_rate": 0.0006, + "loss": 4.064148902893066, + "step": 1172 + }, + { + "epoch": 16.293577981651374, + "grad_norm": 0.23920276761054993, + "learning_rate": 0.0006, + "loss": 4.101890563964844, + "step": 1173 + }, + { + "epoch": 16.307557885539538, + "grad_norm": 0.22746537625789642, + "learning_rate": 0.0006, + "loss": 4.086627006530762, + "step": 1174 + }, + { + "epoch": 16.321537789427698, + "grad_norm": 0.22633525729179382, + "learning_rate": 0.0006, + "loss": 4.04669189453125, + "step": 1175 + }, + { + "epoch": 16.335517693315857, + "grad_norm": 0.2654891610145569, + "learning_rate": 0.0006, + "loss": 4.086793422698975, + "step": 1176 + }, + { + "epoch": 16.34949759720402, + "grad_norm": 0.2872653007507324, + "learning_rate": 0.0006, + "loss": 4.077983856201172, + "step": 1177 + }, + { + "epoch": 16.36347750109218, + "grad_norm": 0.25726038217544556, + "learning_rate": 0.0006, + "loss": 4.066011428833008, + "step": 1178 + }, + { + "epoch": 16.37745740498034, + "grad_norm": 0.2592027485370636, + "learning_rate": 0.0006, + "loss": 4.0482988357543945, + "step": 1179 + }, + { + "epoch": 16.3914373088685, + "grad_norm": 0.2768886685371399, + "learning_rate": 0.0006, + "loss": 4.065151214599609, + "step": 1180 + }, + { + "epoch": 16.405417212756664, + "grad_norm": 0.2956002652645111, + "learning_rate": 0.0006, + "loss": 4.037791728973389, + "step": 1181 + }, + { + "epoch": 16.419397116644824, + "grad_norm": 0.3092120885848999, + "learning_rate": 0.0006, + "loss": 4.062164306640625, + "step": 1182 + }, + { + "epoch": 16.433377020532983, + "grad_norm": 0.29516810178756714, + "learning_rate": 0.0006, + "loss": 4.025505065917969, + "step": 1183 + }, + { + "epoch": 16.447356924421143, + "grad_norm": 0.2640177607536316, + "learning_rate": 0.0006, + "loss": 4.060182571411133, + "step": 1184 + }, + { + "epoch": 16.461336828309307, + "grad_norm": 0.2444908320903778, + "learning_rate": 0.0006, + "loss": 4.046144962310791, + "step": 1185 + }, + { + "epoch": 16.475316732197467, + "grad_norm": 0.23190705478191376, + "learning_rate": 0.0006, + "loss": 4.075569152832031, + "step": 1186 + }, + { + "epoch": 16.489296636085626, + "grad_norm": 0.2383626103401184, + "learning_rate": 0.0006, + "loss": 4.088897705078125, + "step": 1187 + }, + { + "epoch": 16.503276539973786, + "grad_norm": 0.20688803493976593, + "learning_rate": 0.0006, + "loss": 4.064517974853516, + "step": 1188 + }, + { + "epoch": 16.51725644386195, + "grad_norm": 0.22610054910182953, + "learning_rate": 0.0006, + "loss": 4.04502010345459, + "step": 1189 + }, + { + "epoch": 16.53123634775011, + "grad_norm": 0.2014893889427185, + "learning_rate": 0.0006, + "loss": 4.058279514312744, + "step": 1190 + }, + { + "epoch": 16.54521625163827, + "grad_norm": 0.21459777653217316, + "learning_rate": 0.0006, + "loss": 4.066389083862305, + "step": 1191 + }, + { + "epoch": 16.55919615552643, + "grad_norm": 0.22909940779209137, + "learning_rate": 0.0006, + "loss": 4.0557966232299805, + "step": 1192 + }, + { + "epoch": 16.573176059414592, + "grad_norm": 0.20039083063602448, + "learning_rate": 0.0006, + "loss": 4.092845916748047, + "step": 1193 + }, + { + "epoch": 16.587155963302752, + "grad_norm": 0.22651726007461548, + "learning_rate": 0.0006, + "loss": 4.034615516662598, + "step": 1194 + }, + { + "epoch": 16.601135867190912, + "grad_norm": 0.21901755034923553, + "learning_rate": 0.0006, + "loss": 4.035619735717773, + "step": 1195 + }, + { + "epoch": 16.615115771079076, + "grad_norm": 0.22930841147899628, + "learning_rate": 0.0006, + "loss": 4.080800533294678, + "step": 1196 + }, + { + "epoch": 16.629095674967235, + "grad_norm": 0.212818443775177, + "learning_rate": 0.0006, + "loss": 4.030189514160156, + "step": 1197 + }, + { + "epoch": 16.643075578855395, + "grad_norm": 0.2370826154947281, + "learning_rate": 0.0006, + "loss": 4.062643527984619, + "step": 1198 + }, + { + "epoch": 16.657055482743555, + "grad_norm": 0.24786995351314545, + "learning_rate": 0.0006, + "loss": 4.031761169433594, + "step": 1199 + }, + { + "epoch": 16.67103538663172, + "grad_norm": 0.2305847704410553, + "learning_rate": 0.0006, + "loss": 4.083752155303955, + "step": 1200 + }, + { + "epoch": 16.68501529051988, + "grad_norm": 0.23336584866046906, + "learning_rate": 0.0006, + "loss": 4.079145431518555, + "step": 1201 + }, + { + "epoch": 16.698995194408038, + "grad_norm": 0.23976293206214905, + "learning_rate": 0.0006, + "loss": 4.020473957061768, + "step": 1202 + }, + { + "epoch": 16.712975098296198, + "grad_norm": 0.222761869430542, + "learning_rate": 0.0006, + "loss": 4.065582752227783, + "step": 1203 + }, + { + "epoch": 16.72695500218436, + "grad_norm": 0.23725618422031403, + "learning_rate": 0.0006, + "loss": 4.0263776779174805, + "step": 1204 + }, + { + "epoch": 16.74093490607252, + "grad_norm": 0.23873984813690186, + "learning_rate": 0.0006, + "loss": 4.053092956542969, + "step": 1205 + }, + { + "epoch": 16.75491480996068, + "grad_norm": 0.21043002605438232, + "learning_rate": 0.0006, + "loss": 4.063965797424316, + "step": 1206 + }, + { + "epoch": 16.76889471384884, + "grad_norm": 0.19863522052764893, + "learning_rate": 0.0006, + "loss": 4.061187267303467, + "step": 1207 + }, + { + "epoch": 16.782874617737004, + "grad_norm": 0.1953752487897873, + "learning_rate": 0.0006, + "loss": 4.046016693115234, + "step": 1208 + }, + { + "epoch": 16.796854521625164, + "grad_norm": 0.2130361795425415, + "learning_rate": 0.0006, + "loss": 4.066933631896973, + "step": 1209 + }, + { + "epoch": 16.810834425513324, + "grad_norm": 0.19598130881786346, + "learning_rate": 0.0006, + "loss": 4.071558952331543, + "step": 1210 + }, + { + "epoch": 16.824814329401484, + "grad_norm": 0.20331116020679474, + "learning_rate": 0.0006, + "loss": 4.088632106781006, + "step": 1211 + }, + { + "epoch": 16.838794233289647, + "grad_norm": 0.20423150062561035, + "learning_rate": 0.0006, + "loss": 4.032224655151367, + "step": 1212 + }, + { + "epoch": 16.852774137177807, + "grad_norm": 0.2401197850704193, + "learning_rate": 0.0006, + "loss": 4.037393569946289, + "step": 1213 + }, + { + "epoch": 16.866754041065967, + "grad_norm": 0.26102620363235474, + "learning_rate": 0.0006, + "loss": 4.04738712310791, + "step": 1214 + }, + { + "epoch": 16.88073394495413, + "grad_norm": 0.2438521534204483, + "learning_rate": 0.0006, + "loss": 4.015673637390137, + "step": 1215 + }, + { + "epoch": 16.89471384884229, + "grad_norm": 0.20742061734199524, + "learning_rate": 0.0006, + "loss": 4.049060821533203, + "step": 1216 + }, + { + "epoch": 16.90869375273045, + "grad_norm": 0.22028608620166779, + "learning_rate": 0.0006, + "loss": 4.088971138000488, + "step": 1217 + }, + { + "epoch": 16.92267365661861, + "grad_norm": 0.21746744215488434, + "learning_rate": 0.0006, + "loss": 4.021710395812988, + "step": 1218 + }, + { + "epoch": 16.936653560506773, + "grad_norm": 0.2226102203130722, + "learning_rate": 0.0006, + "loss": 4.050119400024414, + "step": 1219 + }, + { + "epoch": 16.950633464394933, + "grad_norm": 0.23903657495975494, + "learning_rate": 0.0006, + "loss": 4.0570526123046875, + "step": 1220 + }, + { + "epoch": 16.964613368283093, + "grad_norm": 0.2556349039077759, + "learning_rate": 0.0006, + "loss": 4.0448808670043945, + "step": 1221 + }, + { + "epoch": 16.978593272171253, + "grad_norm": 0.28445592522621155, + "learning_rate": 0.0006, + "loss": 4.052034378051758, + "step": 1222 + }, + { + "epoch": 16.992573176059416, + "grad_norm": 0.273973673582077, + "learning_rate": 0.0006, + "loss": 4.02907657623291, + "step": 1223 + }, + { + "epoch": 17.0, + "grad_norm": 0.26125091314315796, + "learning_rate": 0.0006, + "loss": 4.10643196105957, + "step": 1224 + }, + { + "epoch": 17.0, + "eval_loss": 4.2585954666137695, + "eval_runtime": 44.8583, + "eval_samples_per_second": 54.438, + "eval_steps_per_second": 3.411, + "step": 1224 + }, + { + "epoch": 17.01397990388816, + "grad_norm": 0.2786196768283844, + "learning_rate": 0.0006, + "loss": 4.044719219207764, + "step": 1225 + }, + { + "epoch": 17.027959807776323, + "grad_norm": 0.2969571650028229, + "learning_rate": 0.0006, + "loss": 4.022037506103516, + "step": 1226 + }, + { + "epoch": 17.041939711664483, + "grad_norm": 0.32196253538131714, + "learning_rate": 0.0006, + "loss": 4.03636360168457, + "step": 1227 + }, + { + "epoch": 17.055919615552643, + "grad_norm": 0.28617000579833984, + "learning_rate": 0.0006, + "loss": 4.012125492095947, + "step": 1228 + }, + { + "epoch": 17.069899519440803, + "grad_norm": 0.26539644598960876, + "learning_rate": 0.0006, + "loss": 4.020190715789795, + "step": 1229 + }, + { + "epoch": 17.083879423328966, + "grad_norm": 0.24315394461154938, + "learning_rate": 0.0006, + "loss": 4.0553812980651855, + "step": 1230 + }, + { + "epoch": 17.097859327217126, + "grad_norm": 0.23798158764839172, + "learning_rate": 0.0006, + "loss": 4.004805088043213, + "step": 1231 + }, + { + "epoch": 17.111839231105286, + "grad_norm": 0.25723618268966675, + "learning_rate": 0.0006, + "loss": 4.00108003616333, + "step": 1232 + }, + { + "epoch": 17.125819134993446, + "grad_norm": 0.2669757604598999, + "learning_rate": 0.0006, + "loss": 4.00828742980957, + "step": 1233 + }, + { + "epoch": 17.13979903888161, + "grad_norm": 0.26421651244163513, + "learning_rate": 0.0006, + "loss": 3.995478391647339, + "step": 1234 + }, + { + "epoch": 17.15377894276977, + "grad_norm": 0.24745801091194153, + "learning_rate": 0.0006, + "loss": 4.0171027183532715, + "step": 1235 + }, + { + "epoch": 17.16775884665793, + "grad_norm": 0.27028775215148926, + "learning_rate": 0.0006, + "loss": 4.017108917236328, + "step": 1236 + }, + { + "epoch": 17.18173875054609, + "grad_norm": 0.27247968316078186, + "learning_rate": 0.0006, + "loss": 4.032601356506348, + "step": 1237 + }, + { + "epoch": 17.195718654434252, + "grad_norm": 0.24620869755744934, + "learning_rate": 0.0006, + "loss": 4.022171974182129, + "step": 1238 + }, + { + "epoch": 17.209698558322412, + "grad_norm": 0.23407386243343353, + "learning_rate": 0.0006, + "loss": 3.9946959018707275, + "step": 1239 + }, + { + "epoch": 17.22367846221057, + "grad_norm": 0.22559069097042084, + "learning_rate": 0.0006, + "loss": 4.013072490692139, + "step": 1240 + }, + { + "epoch": 17.23765836609873, + "grad_norm": 0.226687952876091, + "learning_rate": 0.0006, + "loss": 4.023543834686279, + "step": 1241 + }, + { + "epoch": 17.251638269986895, + "grad_norm": 0.24436360597610474, + "learning_rate": 0.0006, + "loss": 4.044206619262695, + "step": 1242 + }, + { + "epoch": 17.265618173875055, + "grad_norm": 0.25527626276016235, + "learning_rate": 0.0006, + "loss": 4.016424179077148, + "step": 1243 + }, + { + "epoch": 17.279598077763215, + "grad_norm": 0.26126864552497864, + "learning_rate": 0.0006, + "loss": 4.024394512176514, + "step": 1244 + }, + { + "epoch": 17.293577981651374, + "grad_norm": 0.25746744871139526, + "learning_rate": 0.0006, + "loss": 4.046844482421875, + "step": 1245 + }, + { + "epoch": 17.307557885539538, + "grad_norm": 0.26579564809799194, + "learning_rate": 0.0006, + "loss": 4.021010398864746, + "step": 1246 + }, + { + "epoch": 17.321537789427698, + "grad_norm": 0.2713971734046936, + "learning_rate": 0.0006, + "loss": 4.022331237792969, + "step": 1247 + }, + { + "epoch": 17.335517693315857, + "grad_norm": 0.24217180907726288, + "learning_rate": 0.0006, + "loss": 4.006353855133057, + "step": 1248 + }, + { + "epoch": 17.34949759720402, + "grad_norm": 0.26899752020835876, + "learning_rate": 0.0006, + "loss": 4.068023681640625, + "step": 1249 + }, + { + "epoch": 17.36347750109218, + "grad_norm": 0.26745253801345825, + "learning_rate": 0.0006, + "loss": 4.031207084655762, + "step": 1250 + }, + { + "epoch": 17.37745740498034, + "grad_norm": 0.21533764898777008, + "learning_rate": 0.0006, + "loss": 4.042410850524902, + "step": 1251 + }, + { + "epoch": 17.3914373088685, + "grad_norm": 0.21958027780056, + "learning_rate": 0.0006, + "loss": 4.02597713470459, + "step": 1252 + }, + { + "epoch": 17.405417212756664, + "grad_norm": 0.263068825006485, + "learning_rate": 0.0006, + "loss": 4.0035905838012695, + "step": 1253 + }, + { + "epoch": 17.419397116644824, + "grad_norm": 0.24044716358184814, + "learning_rate": 0.0006, + "loss": 4.005317687988281, + "step": 1254 + }, + { + "epoch": 17.433377020532983, + "grad_norm": 0.19142559170722961, + "learning_rate": 0.0006, + "loss": 3.9976844787597656, + "step": 1255 + }, + { + "epoch": 17.447356924421143, + "grad_norm": 0.18650250136852264, + "learning_rate": 0.0006, + "loss": 4.031353950500488, + "step": 1256 + }, + { + "epoch": 17.461336828309307, + "grad_norm": 0.1984022557735443, + "learning_rate": 0.0006, + "loss": 4.002097129821777, + "step": 1257 + }, + { + "epoch": 17.475316732197467, + "grad_norm": 0.20087844133377075, + "learning_rate": 0.0006, + "loss": 4.031151294708252, + "step": 1258 + }, + { + "epoch": 17.489296636085626, + "grad_norm": 0.20881228148937225, + "learning_rate": 0.0006, + "loss": 4.034793853759766, + "step": 1259 + }, + { + "epoch": 17.503276539973786, + "grad_norm": 0.23958556354045868, + "learning_rate": 0.0006, + "loss": 4.025238990783691, + "step": 1260 + }, + { + "epoch": 17.51725644386195, + "grad_norm": 0.23927845060825348, + "learning_rate": 0.0006, + "loss": 3.999828338623047, + "step": 1261 + }, + { + "epoch": 17.53123634775011, + "grad_norm": 0.20342715084552765, + "learning_rate": 0.0006, + "loss": 4.054262161254883, + "step": 1262 + }, + { + "epoch": 17.54521625163827, + "grad_norm": 0.21370555460453033, + "learning_rate": 0.0006, + "loss": 4.011582374572754, + "step": 1263 + }, + { + "epoch": 17.55919615552643, + "grad_norm": 0.23681946098804474, + "learning_rate": 0.0006, + "loss": 4.029694080352783, + "step": 1264 + }, + { + "epoch": 17.573176059414592, + "grad_norm": 0.24190311133861542, + "learning_rate": 0.0006, + "loss": 4.018783092498779, + "step": 1265 + }, + { + "epoch": 17.587155963302752, + "grad_norm": 0.23215509951114655, + "learning_rate": 0.0006, + "loss": 4.009703159332275, + "step": 1266 + }, + { + "epoch": 17.601135867190912, + "grad_norm": 0.21122977137565613, + "learning_rate": 0.0006, + "loss": 4.0345659255981445, + "step": 1267 + }, + { + "epoch": 17.615115771079076, + "grad_norm": 0.2075948715209961, + "learning_rate": 0.0006, + "loss": 4.070703506469727, + "step": 1268 + }, + { + "epoch": 17.629095674967235, + "grad_norm": 0.21667909622192383, + "learning_rate": 0.0006, + "loss": 4.020771503448486, + "step": 1269 + }, + { + "epoch": 17.643075578855395, + "grad_norm": 0.20960724353790283, + "learning_rate": 0.0006, + "loss": 4.026404857635498, + "step": 1270 + }, + { + "epoch": 17.657055482743555, + "grad_norm": 0.22575686872005463, + "learning_rate": 0.0006, + "loss": 4.01981258392334, + "step": 1271 + }, + { + "epoch": 17.67103538663172, + "grad_norm": 0.2565988302230835, + "learning_rate": 0.0006, + "loss": 4.015827178955078, + "step": 1272 + }, + { + "epoch": 17.68501529051988, + "grad_norm": 0.24831551313400269, + "learning_rate": 0.0006, + "loss": 4.012457847595215, + "step": 1273 + }, + { + "epoch": 17.698995194408038, + "grad_norm": 0.22595494985580444, + "learning_rate": 0.0006, + "loss": 4.031386375427246, + "step": 1274 + }, + { + "epoch": 17.712975098296198, + "grad_norm": 0.20687322318553925, + "learning_rate": 0.0006, + "loss": 4.014216423034668, + "step": 1275 + }, + { + "epoch": 17.72695500218436, + "grad_norm": 0.21916012465953827, + "learning_rate": 0.0006, + "loss": 4.037643909454346, + "step": 1276 + }, + { + "epoch": 17.74093490607252, + "grad_norm": 0.2243107706308365, + "learning_rate": 0.0006, + "loss": 4.033044815063477, + "step": 1277 + }, + { + "epoch": 17.75491480996068, + "grad_norm": 0.2402164787054062, + "learning_rate": 0.0006, + "loss": 4.026636123657227, + "step": 1278 + }, + { + "epoch": 17.76889471384884, + "grad_norm": 0.27957046031951904, + "learning_rate": 0.0006, + "loss": 4.0270867347717285, + "step": 1279 + }, + { + "epoch": 17.782874617737004, + "grad_norm": 0.27447596192359924, + "learning_rate": 0.0006, + "loss": 4.0120134353637695, + "step": 1280 + }, + { + "epoch": 17.796854521625164, + "grad_norm": 0.26926323771476746, + "learning_rate": 0.0006, + "loss": 4.027970314025879, + "step": 1281 + }, + { + "epoch": 17.810834425513324, + "grad_norm": 0.2535291314125061, + "learning_rate": 0.0006, + "loss": 4.002565383911133, + "step": 1282 + }, + { + "epoch": 17.824814329401484, + "grad_norm": 0.22639447450637817, + "learning_rate": 0.0006, + "loss": 4.032750606536865, + "step": 1283 + }, + { + "epoch": 17.838794233289647, + "grad_norm": 0.23384462296962738, + "learning_rate": 0.0006, + "loss": 4.03568172454834, + "step": 1284 + }, + { + "epoch": 17.852774137177807, + "grad_norm": 0.22971470654010773, + "learning_rate": 0.0006, + "loss": 4.031299591064453, + "step": 1285 + }, + { + "epoch": 17.866754041065967, + "grad_norm": 0.24540141224861145, + "learning_rate": 0.0006, + "loss": 4.0142669677734375, + "step": 1286 + }, + { + "epoch": 17.88073394495413, + "grad_norm": 0.2304888367652893, + "learning_rate": 0.0006, + "loss": 3.9964895248413086, + "step": 1287 + }, + { + "epoch": 17.89471384884229, + "grad_norm": 0.22082284092903137, + "learning_rate": 0.0006, + "loss": 4.024693489074707, + "step": 1288 + }, + { + "epoch": 17.90869375273045, + "grad_norm": 0.23677092790603638, + "learning_rate": 0.0006, + "loss": 4.002082347869873, + "step": 1289 + }, + { + "epoch": 17.92267365661861, + "grad_norm": 0.23122332990169525, + "learning_rate": 0.0006, + "loss": 4.025351524353027, + "step": 1290 + }, + { + "epoch": 17.936653560506773, + "grad_norm": 0.2548119127750397, + "learning_rate": 0.0006, + "loss": 3.9955825805664062, + "step": 1291 + }, + { + "epoch": 17.950633464394933, + "grad_norm": 0.26950931549072266, + "learning_rate": 0.0006, + "loss": 4.026151180267334, + "step": 1292 + }, + { + "epoch": 17.964613368283093, + "grad_norm": 0.3023233711719513, + "learning_rate": 0.0006, + "loss": 4.006035804748535, + "step": 1293 + }, + { + "epoch": 17.978593272171253, + "grad_norm": 0.3190958499908447, + "learning_rate": 0.0006, + "loss": 4.023565292358398, + "step": 1294 + }, + { + "epoch": 17.992573176059416, + "grad_norm": 0.28878068923950195, + "learning_rate": 0.0006, + "loss": 4.020973205566406, + "step": 1295 + }, + { + "epoch": 18.0, + "grad_norm": 0.27312418818473816, + "learning_rate": 0.0006, + "loss": 3.99906587600708, + "step": 1296 + }, + { + "epoch": 18.0, + "eval_loss": 4.224447250366211, + "eval_runtime": 52.5728, + "eval_samples_per_second": 46.45, + "eval_steps_per_second": 2.91, + "step": 1296 + }, + { + "epoch": 18.01397990388816, + "grad_norm": 0.2567712664604187, + "learning_rate": 0.0006, + "loss": 3.9755055904388428, + "step": 1297 + }, + { + "epoch": 18.027959807776323, + "grad_norm": 0.25048133730888367, + "learning_rate": 0.0006, + "loss": 4.009254455566406, + "step": 1298 + }, + { + "epoch": 18.041939711664483, + "grad_norm": 0.2556909918785095, + "learning_rate": 0.0006, + "loss": 4.001235008239746, + "step": 1299 + }, + { + "epoch": 18.055919615552643, + "grad_norm": 0.2501400113105774, + "learning_rate": 0.0006, + "loss": 3.980726480484009, + "step": 1300 + }, + { + "epoch": 18.069899519440803, + "grad_norm": 0.23977792263031006, + "learning_rate": 0.0006, + "loss": 3.964195728302002, + "step": 1301 + }, + { + "epoch": 18.083879423328966, + "grad_norm": 0.25650718808174133, + "learning_rate": 0.0006, + "loss": 4.015914440155029, + "step": 1302 + }, + { + "epoch": 18.097859327217126, + "grad_norm": 0.234053835272789, + "learning_rate": 0.0006, + "loss": 4.0159149169921875, + "step": 1303 + }, + { + "epoch": 18.111839231105286, + "grad_norm": 0.21967713534832, + "learning_rate": 0.0006, + "loss": 4.0055694580078125, + "step": 1304 + }, + { + "epoch": 18.125819134993446, + "grad_norm": 0.21790878474712372, + "learning_rate": 0.0006, + "loss": 3.986253261566162, + "step": 1305 + }, + { + "epoch": 18.13979903888161, + "grad_norm": 0.22955302894115448, + "learning_rate": 0.0006, + "loss": 3.959421157836914, + "step": 1306 + }, + { + "epoch": 18.15377894276977, + "grad_norm": 0.2559174597263336, + "learning_rate": 0.0006, + "loss": 4.0069756507873535, + "step": 1307 + }, + { + "epoch": 18.16775884665793, + "grad_norm": 0.26132866740226746, + "learning_rate": 0.0006, + "loss": 3.9874095916748047, + "step": 1308 + }, + { + "epoch": 18.18173875054609, + "grad_norm": 0.23258940875530243, + "learning_rate": 0.0006, + "loss": 3.9762492179870605, + "step": 1309 + }, + { + "epoch": 18.195718654434252, + "grad_norm": 0.22347190976142883, + "learning_rate": 0.0006, + "loss": 3.9923410415649414, + "step": 1310 + }, + { + "epoch": 18.209698558322412, + "grad_norm": 0.23095804452896118, + "learning_rate": 0.0006, + "loss": 4.019245624542236, + "step": 1311 + }, + { + "epoch": 18.22367846221057, + "grad_norm": 0.24817052483558655, + "learning_rate": 0.0006, + "loss": 3.9697511196136475, + "step": 1312 + }, + { + "epoch": 18.23765836609873, + "grad_norm": 0.2566024959087372, + "learning_rate": 0.0006, + "loss": 3.978804111480713, + "step": 1313 + }, + { + "epoch": 18.251638269986895, + "grad_norm": 0.2527952790260315, + "learning_rate": 0.0006, + "loss": 3.972018241882324, + "step": 1314 + }, + { + "epoch": 18.265618173875055, + "grad_norm": 0.2508150637149811, + "learning_rate": 0.0006, + "loss": 3.9971275329589844, + "step": 1315 + }, + { + "epoch": 18.279598077763215, + "grad_norm": 0.23242022097110748, + "learning_rate": 0.0006, + "loss": 3.9712045192718506, + "step": 1316 + }, + { + "epoch": 18.293577981651374, + "grad_norm": 0.23474404215812683, + "learning_rate": 0.0006, + "loss": 3.9926767349243164, + "step": 1317 + }, + { + "epoch": 18.307557885539538, + "grad_norm": 0.2417769432067871, + "learning_rate": 0.0006, + "loss": 3.9920949935913086, + "step": 1318 + }, + { + "epoch": 18.321537789427698, + "grad_norm": 0.23839452862739563, + "learning_rate": 0.0006, + "loss": 4.016645431518555, + "step": 1319 + }, + { + "epoch": 18.335517693315857, + "grad_norm": 0.2512452304363251, + "learning_rate": 0.0006, + "loss": 3.97586727142334, + "step": 1320 + }, + { + "epoch": 18.34949759720402, + "grad_norm": 0.27503693103790283, + "learning_rate": 0.0006, + "loss": 4.000148773193359, + "step": 1321 + }, + { + "epoch": 18.36347750109218, + "grad_norm": 0.27830836176872253, + "learning_rate": 0.0006, + "loss": 3.9972195625305176, + "step": 1322 + }, + { + "epoch": 18.37745740498034, + "grad_norm": 0.2571812570095062, + "learning_rate": 0.0006, + "loss": 3.9900810718536377, + "step": 1323 + }, + { + "epoch": 18.3914373088685, + "grad_norm": 0.2310052365064621, + "learning_rate": 0.0006, + "loss": 4.003000259399414, + "step": 1324 + }, + { + "epoch": 18.405417212756664, + "grad_norm": 0.19615735113620758, + "learning_rate": 0.0006, + "loss": 3.9536571502685547, + "step": 1325 + }, + { + "epoch": 18.419397116644824, + "grad_norm": 0.21323896944522858, + "learning_rate": 0.0006, + "loss": 3.977508068084717, + "step": 1326 + }, + { + "epoch": 18.433377020532983, + "grad_norm": 0.21404202282428741, + "learning_rate": 0.0006, + "loss": 4.015361785888672, + "step": 1327 + }, + { + "epoch": 18.447356924421143, + "grad_norm": 0.1991959661245346, + "learning_rate": 0.0006, + "loss": 4.000286102294922, + "step": 1328 + }, + { + "epoch": 18.461336828309307, + "grad_norm": 0.2073599398136139, + "learning_rate": 0.0006, + "loss": 3.973065137863159, + "step": 1329 + }, + { + "epoch": 18.475316732197467, + "grad_norm": 0.2096073031425476, + "learning_rate": 0.0006, + "loss": 3.987032890319824, + "step": 1330 + }, + { + "epoch": 18.489296636085626, + "grad_norm": 0.2380610853433609, + "learning_rate": 0.0006, + "loss": 4.035274505615234, + "step": 1331 + }, + { + "epoch": 18.503276539973786, + "grad_norm": 0.23570716381072998, + "learning_rate": 0.0006, + "loss": 4.010516166687012, + "step": 1332 + }, + { + "epoch": 18.51725644386195, + "grad_norm": 0.24805466830730438, + "learning_rate": 0.0006, + "loss": 3.9750983715057373, + "step": 1333 + }, + { + "epoch": 18.53123634775011, + "grad_norm": 0.25173231959342957, + "learning_rate": 0.0006, + "loss": 3.9742345809936523, + "step": 1334 + }, + { + "epoch": 18.54521625163827, + "grad_norm": 0.24590367078781128, + "learning_rate": 0.0006, + "loss": 4.0037312507629395, + "step": 1335 + }, + { + "epoch": 18.55919615552643, + "grad_norm": 0.24379394948482513, + "learning_rate": 0.0006, + "loss": 3.993858814239502, + "step": 1336 + }, + { + "epoch": 18.573176059414592, + "grad_norm": 0.21708883345127106, + "learning_rate": 0.0006, + "loss": 3.965670585632324, + "step": 1337 + }, + { + "epoch": 18.587155963302752, + "grad_norm": 0.21024051308631897, + "learning_rate": 0.0006, + "loss": 3.987551689147949, + "step": 1338 + }, + { + "epoch": 18.601135867190912, + "grad_norm": 0.23376783728599548, + "learning_rate": 0.0006, + "loss": 4.002841472625732, + "step": 1339 + }, + { + "epoch": 18.615115771079076, + "grad_norm": 0.25350701808929443, + "learning_rate": 0.0006, + "loss": 3.9881370067596436, + "step": 1340 + }, + { + "epoch": 18.629095674967235, + "grad_norm": 0.2542140483856201, + "learning_rate": 0.0006, + "loss": 4.003695964813232, + "step": 1341 + }, + { + "epoch": 18.643075578855395, + "grad_norm": 0.22932685911655426, + "learning_rate": 0.0006, + "loss": 4.0146002769470215, + "step": 1342 + }, + { + "epoch": 18.657055482743555, + "grad_norm": 0.21099458634853363, + "learning_rate": 0.0006, + "loss": 3.970472812652588, + "step": 1343 + }, + { + "epoch": 18.67103538663172, + "grad_norm": 0.2234615832567215, + "learning_rate": 0.0006, + "loss": 3.9821488857269287, + "step": 1344 + }, + { + "epoch": 18.68501529051988, + "grad_norm": 0.230327770113945, + "learning_rate": 0.0006, + "loss": 3.996274948120117, + "step": 1345 + }, + { + "epoch": 18.698995194408038, + "grad_norm": 0.23596233129501343, + "learning_rate": 0.0006, + "loss": 3.9747462272644043, + "step": 1346 + }, + { + "epoch": 18.712975098296198, + "grad_norm": 0.24173159897327423, + "learning_rate": 0.0006, + "loss": 4.011804103851318, + "step": 1347 + }, + { + "epoch": 18.72695500218436, + "grad_norm": 0.24087604880332947, + "learning_rate": 0.0006, + "loss": 4.008726119995117, + "step": 1348 + }, + { + "epoch": 18.74093490607252, + "grad_norm": 0.2457292526960373, + "learning_rate": 0.0006, + "loss": 3.990793228149414, + "step": 1349 + }, + { + "epoch": 18.75491480996068, + "grad_norm": 0.22946089506149292, + "learning_rate": 0.0006, + "loss": 3.980494260787964, + "step": 1350 + }, + { + "epoch": 18.76889471384884, + "grad_norm": 0.22986692190170288, + "learning_rate": 0.0006, + "loss": 3.97006893157959, + "step": 1351 + }, + { + "epoch": 18.782874617737004, + "grad_norm": 0.23358555138111115, + "learning_rate": 0.0006, + "loss": 4.008172035217285, + "step": 1352 + }, + { + "epoch": 18.796854521625164, + "grad_norm": 0.20183615386486053, + "learning_rate": 0.0006, + "loss": 3.9720888137817383, + "step": 1353 + }, + { + "epoch": 18.810834425513324, + "grad_norm": 0.19975653290748596, + "learning_rate": 0.0006, + "loss": 3.9783310890197754, + "step": 1354 + }, + { + "epoch": 18.824814329401484, + "grad_norm": 0.18911021947860718, + "learning_rate": 0.0006, + "loss": 3.985982894897461, + "step": 1355 + }, + { + "epoch": 18.838794233289647, + "grad_norm": 0.15984168648719788, + "learning_rate": 0.0006, + "loss": 3.9740548133850098, + "step": 1356 + }, + { + "epoch": 18.852774137177807, + "grad_norm": 0.1755436211824417, + "learning_rate": 0.0006, + "loss": 4.013090133666992, + "step": 1357 + }, + { + "epoch": 18.866754041065967, + "grad_norm": 0.1798417866230011, + "learning_rate": 0.0006, + "loss": 3.997880697250366, + "step": 1358 + }, + { + "epoch": 18.88073394495413, + "grad_norm": 0.20206265151500702, + "learning_rate": 0.0006, + "loss": 3.9892373085021973, + "step": 1359 + }, + { + "epoch": 18.89471384884229, + "grad_norm": 0.23685456812381744, + "learning_rate": 0.0006, + "loss": 3.9909186363220215, + "step": 1360 + }, + { + "epoch": 18.90869375273045, + "grad_norm": 0.26053836941719055, + "learning_rate": 0.0006, + "loss": 4.00327205657959, + "step": 1361 + }, + { + "epoch": 18.92267365661861, + "grad_norm": 0.26215845346450806, + "learning_rate": 0.0006, + "loss": 3.9714717864990234, + "step": 1362 + }, + { + "epoch": 18.936653560506773, + "grad_norm": 0.2433871030807495, + "learning_rate": 0.0006, + "loss": 3.949416160583496, + "step": 1363 + }, + { + "epoch": 18.950633464394933, + "grad_norm": 0.23331883549690247, + "learning_rate": 0.0006, + "loss": 3.980501413345337, + "step": 1364 + }, + { + "epoch": 18.964613368283093, + "grad_norm": 0.2346954047679901, + "learning_rate": 0.0006, + "loss": 3.9974493980407715, + "step": 1365 + }, + { + "epoch": 18.978593272171253, + "grad_norm": 0.25101345777511597, + "learning_rate": 0.0006, + "loss": 3.9800148010253906, + "step": 1366 + }, + { + "epoch": 18.992573176059416, + "grad_norm": 0.26811933517456055, + "learning_rate": 0.0006, + "loss": 4.0065741539001465, + "step": 1367 + }, + { + "epoch": 19.0, + "grad_norm": 0.2731736898422241, + "learning_rate": 0.0006, + "loss": 4.014575481414795, + "step": 1368 + }, + { + "epoch": 19.0, + "eval_loss": 4.200716972351074, + "eval_runtime": 44.6962, + "eval_samples_per_second": 54.636, + "eval_steps_per_second": 3.423, + "step": 1368 + }, + { + "epoch": 19.01397990388816, + "grad_norm": 0.2517746686935425, + "learning_rate": 0.0006, + "loss": 3.9486539363861084, + "step": 1369 + }, + { + "epoch": 19.027959807776323, + "grad_norm": 0.2482699453830719, + "learning_rate": 0.0006, + "loss": 3.95015287399292, + "step": 1370 + }, + { + "epoch": 19.041939711664483, + "grad_norm": 0.21693618595600128, + "learning_rate": 0.0006, + "loss": 3.970022201538086, + "step": 1371 + }, + { + "epoch": 19.055919615552643, + "grad_norm": 0.2035159319639206, + "learning_rate": 0.0006, + "loss": 3.941457748413086, + "step": 1372 + }, + { + "epoch": 19.069899519440803, + "grad_norm": 0.2201429009437561, + "learning_rate": 0.0006, + "loss": 3.946794033050537, + "step": 1373 + }, + { + "epoch": 19.083879423328966, + "grad_norm": 0.22910255193710327, + "learning_rate": 0.0006, + "loss": 3.94606876373291, + "step": 1374 + }, + { + "epoch": 19.097859327217126, + "grad_norm": 0.22378197312355042, + "learning_rate": 0.0006, + "loss": 3.957899570465088, + "step": 1375 + }, + { + "epoch": 19.111839231105286, + "grad_norm": 0.21728114783763885, + "learning_rate": 0.0006, + "loss": 3.9565982818603516, + "step": 1376 + }, + { + "epoch": 19.125819134993446, + "grad_norm": 0.21887634694576263, + "learning_rate": 0.0006, + "loss": 3.9649534225463867, + "step": 1377 + }, + { + "epoch": 19.13979903888161, + "grad_norm": 0.21892991662025452, + "learning_rate": 0.0006, + "loss": 3.971388101577759, + "step": 1378 + }, + { + "epoch": 19.15377894276977, + "grad_norm": 0.24582402408123016, + "learning_rate": 0.0006, + "loss": 3.9370944499969482, + "step": 1379 + }, + { + "epoch": 19.16775884665793, + "grad_norm": 0.27547118067741394, + "learning_rate": 0.0006, + "loss": 3.939406156539917, + "step": 1380 + }, + { + "epoch": 19.18173875054609, + "grad_norm": 0.3131563365459442, + "learning_rate": 0.0006, + "loss": 3.942620277404785, + "step": 1381 + }, + { + "epoch": 19.195718654434252, + "grad_norm": 0.3211703598499298, + "learning_rate": 0.0006, + "loss": 3.9388349056243896, + "step": 1382 + }, + { + "epoch": 19.209698558322412, + "grad_norm": 0.2791919410228729, + "learning_rate": 0.0006, + "loss": 3.9827399253845215, + "step": 1383 + }, + { + "epoch": 19.22367846221057, + "grad_norm": 0.2872016727924347, + "learning_rate": 0.0006, + "loss": 3.976715087890625, + "step": 1384 + }, + { + "epoch": 19.23765836609873, + "grad_norm": 0.2790389060974121, + "learning_rate": 0.0006, + "loss": 3.952850818634033, + "step": 1385 + }, + { + "epoch": 19.251638269986895, + "grad_norm": 0.31903740763664246, + "learning_rate": 0.0006, + "loss": 3.964506149291992, + "step": 1386 + }, + { + "epoch": 19.265618173875055, + "grad_norm": 0.31013646721839905, + "learning_rate": 0.0006, + "loss": 3.967219352722168, + "step": 1387 + }, + { + "epoch": 19.279598077763215, + "grad_norm": 0.2574339509010315, + "learning_rate": 0.0006, + "loss": 3.979168176651001, + "step": 1388 + }, + { + "epoch": 19.293577981651374, + "grad_norm": 0.24621108174324036, + "learning_rate": 0.0006, + "loss": 3.981734275817871, + "step": 1389 + }, + { + "epoch": 19.307557885539538, + "grad_norm": 0.25113818049430847, + "learning_rate": 0.0006, + "loss": 3.9787755012512207, + "step": 1390 + }, + { + "epoch": 19.321537789427698, + "grad_norm": 0.259971022605896, + "learning_rate": 0.0006, + "loss": 3.9648823738098145, + "step": 1391 + }, + { + "epoch": 19.335517693315857, + "grad_norm": 0.22580404579639435, + "learning_rate": 0.0006, + "loss": 3.9658002853393555, + "step": 1392 + }, + { + "epoch": 19.34949759720402, + "grad_norm": 0.2133680284023285, + "learning_rate": 0.0006, + "loss": 3.9615914821624756, + "step": 1393 + }, + { + "epoch": 19.36347750109218, + "grad_norm": 0.2387680858373642, + "learning_rate": 0.0006, + "loss": 3.993811845779419, + "step": 1394 + }, + { + "epoch": 19.37745740498034, + "grad_norm": 0.26086220145225525, + "learning_rate": 0.0006, + "loss": 3.932701826095581, + "step": 1395 + }, + { + "epoch": 19.3914373088685, + "grad_norm": 0.23255233466625214, + "learning_rate": 0.0006, + "loss": 3.8969321250915527, + "step": 1396 + }, + { + "epoch": 19.405417212756664, + "grad_norm": 0.22894541919231415, + "learning_rate": 0.0006, + "loss": 3.9569311141967773, + "step": 1397 + }, + { + "epoch": 19.419397116644824, + "grad_norm": 0.2254200130701065, + "learning_rate": 0.0006, + "loss": 3.953199863433838, + "step": 1398 + }, + { + "epoch": 19.433377020532983, + "grad_norm": 0.25802481174468994, + "learning_rate": 0.0006, + "loss": 3.9714815616607666, + "step": 1399 + }, + { + "epoch": 19.447356924421143, + "grad_norm": 0.24725162982940674, + "learning_rate": 0.0006, + "loss": 3.957339286804199, + "step": 1400 + }, + { + "epoch": 19.461336828309307, + "grad_norm": 0.2162018120288849, + "learning_rate": 0.0006, + "loss": 3.986801862716675, + "step": 1401 + }, + { + "epoch": 19.475316732197467, + "grad_norm": 0.21530906856060028, + "learning_rate": 0.0006, + "loss": 3.9766759872436523, + "step": 1402 + }, + { + "epoch": 19.489296636085626, + "grad_norm": 0.20260323584079742, + "learning_rate": 0.0006, + "loss": 3.9576425552368164, + "step": 1403 + }, + { + "epoch": 19.503276539973786, + "grad_norm": 0.188974529504776, + "learning_rate": 0.0006, + "loss": 3.9852395057678223, + "step": 1404 + }, + { + "epoch": 19.51725644386195, + "grad_norm": 0.19727374613285065, + "learning_rate": 0.0006, + "loss": 3.972484588623047, + "step": 1405 + }, + { + "epoch": 19.53123634775011, + "grad_norm": 0.23708008229732513, + "learning_rate": 0.0006, + "loss": 3.992471694946289, + "step": 1406 + }, + { + "epoch": 19.54521625163827, + "grad_norm": 0.23783449828624725, + "learning_rate": 0.0006, + "loss": 3.9788265228271484, + "step": 1407 + }, + { + "epoch": 19.55919615552643, + "grad_norm": 0.24744364619255066, + "learning_rate": 0.0006, + "loss": 3.9559011459350586, + "step": 1408 + }, + { + "epoch": 19.573176059414592, + "grad_norm": 0.24828094244003296, + "learning_rate": 0.0006, + "loss": 3.9663949012756348, + "step": 1409 + }, + { + "epoch": 19.587155963302752, + "grad_norm": 0.2681315541267395, + "learning_rate": 0.0006, + "loss": 3.9581191539764404, + "step": 1410 + }, + { + "epoch": 19.601135867190912, + "grad_norm": 0.2691532373428345, + "learning_rate": 0.0006, + "loss": 3.9832754135131836, + "step": 1411 + }, + { + "epoch": 19.615115771079076, + "grad_norm": 0.2900252640247345, + "learning_rate": 0.0006, + "loss": 3.984365940093994, + "step": 1412 + }, + { + "epoch": 19.629095674967235, + "grad_norm": 0.3194943070411682, + "learning_rate": 0.0006, + "loss": 3.9856505393981934, + "step": 1413 + }, + { + "epoch": 19.643075578855395, + "grad_norm": 0.3029029071331024, + "learning_rate": 0.0006, + "loss": 3.968992233276367, + "step": 1414 + }, + { + "epoch": 19.657055482743555, + "grad_norm": 0.2658176124095917, + "learning_rate": 0.0006, + "loss": 3.995187282562256, + "step": 1415 + }, + { + "epoch": 19.67103538663172, + "grad_norm": 0.26807504892349243, + "learning_rate": 0.0006, + "loss": 3.9756274223327637, + "step": 1416 + }, + { + "epoch": 19.68501529051988, + "grad_norm": 0.27718642354011536, + "learning_rate": 0.0006, + "loss": 3.9510018825531006, + "step": 1417 + }, + { + "epoch": 19.698995194408038, + "grad_norm": 0.26322051882743835, + "learning_rate": 0.0006, + "loss": 3.965155601501465, + "step": 1418 + }, + { + "epoch": 19.712975098296198, + "grad_norm": 0.2566570043563843, + "learning_rate": 0.0006, + "loss": 3.984218120574951, + "step": 1419 + }, + { + "epoch": 19.72695500218436, + "grad_norm": 0.2218743860721588, + "learning_rate": 0.0006, + "loss": 3.9338784217834473, + "step": 1420 + }, + { + "epoch": 19.74093490607252, + "grad_norm": 0.22894173860549927, + "learning_rate": 0.0006, + "loss": 3.9869046211242676, + "step": 1421 + }, + { + "epoch": 19.75491480996068, + "grad_norm": 0.26837027072906494, + "learning_rate": 0.0006, + "loss": 3.96799898147583, + "step": 1422 + }, + { + "epoch": 19.76889471384884, + "grad_norm": 0.2767876982688904, + "learning_rate": 0.0006, + "loss": 3.9431071281433105, + "step": 1423 + }, + { + "epoch": 19.782874617737004, + "grad_norm": 0.24402284622192383, + "learning_rate": 0.0006, + "loss": 3.9631881713867188, + "step": 1424 + }, + { + "epoch": 19.796854521625164, + "grad_norm": 0.23500724136829376, + "learning_rate": 0.0006, + "loss": 3.9943337440490723, + "step": 1425 + }, + { + "epoch": 19.810834425513324, + "grad_norm": 0.22509142756462097, + "learning_rate": 0.0006, + "loss": 3.961226224899292, + "step": 1426 + }, + { + "epoch": 19.824814329401484, + "grad_norm": 0.23524795472621918, + "learning_rate": 0.0006, + "loss": 3.9552102088928223, + "step": 1427 + }, + { + "epoch": 19.838794233289647, + "grad_norm": 0.22307050228118896, + "learning_rate": 0.0006, + "loss": 3.9623494148254395, + "step": 1428 + }, + { + "epoch": 19.852774137177807, + "grad_norm": 0.21144486963748932, + "learning_rate": 0.0006, + "loss": 3.9620237350463867, + "step": 1429 + }, + { + "epoch": 19.866754041065967, + "grad_norm": 0.20249812304973602, + "learning_rate": 0.0006, + "loss": 3.953911066055298, + "step": 1430 + }, + { + "epoch": 19.88073394495413, + "grad_norm": 0.2350354939699173, + "learning_rate": 0.0006, + "loss": 3.9616730213165283, + "step": 1431 + }, + { + "epoch": 19.89471384884229, + "grad_norm": 0.2566683292388916, + "learning_rate": 0.0006, + "loss": 3.9372501373291016, + "step": 1432 + }, + { + "epoch": 19.90869375273045, + "grad_norm": 0.2520846128463745, + "learning_rate": 0.0006, + "loss": 3.9814648628234863, + "step": 1433 + }, + { + "epoch": 19.92267365661861, + "grad_norm": 0.23989640176296234, + "learning_rate": 0.0006, + "loss": 3.9692864418029785, + "step": 1434 + }, + { + "epoch": 19.936653560506773, + "grad_norm": 0.20650425553321838, + "learning_rate": 0.0006, + "loss": 3.960256814956665, + "step": 1435 + }, + { + "epoch": 19.950633464394933, + "grad_norm": 0.20478376746177673, + "learning_rate": 0.0006, + "loss": 3.9585227966308594, + "step": 1436 + }, + { + "epoch": 19.964613368283093, + "grad_norm": 0.234436497092247, + "learning_rate": 0.0006, + "loss": 3.945631742477417, + "step": 1437 + }, + { + "epoch": 19.978593272171253, + "grad_norm": 0.19969749450683594, + "learning_rate": 0.0006, + "loss": 3.9646050930023193, + "step": 1438 + }, + { + "epoch": 19.992573176059416, + "grad_norm": 0.20638690888881683, + "learning_rate": 0.0006, + "loss": 3.9461846351623535, + "step": 1439 + }, + { + "epoch": 20.0, + "grad_norm": 0.2120274156332016, + "learning_rate": 0.0006, + "loss": 3.965153217315674, + "step": 1440 + }, + { + "epoch": 20.0, + "eval_loss": 4.168524742126465, + "eval_runtime": 44.2796, + "eval_samples_per_second": 55.15, + "eval_steps_per_second": 3.455, + "step": 1440 + }, + { + "epoch": 20.01397990388816, + "grad_norm": 0.19704894721508026, + "learning_rate": 0.0006, + "loss": 3.937016248703003, + "step": 1441 + }, + { + "epoch": 20.027959807776323, + "grad_norm": 0.18682368099689484, + "learning_rate": 0.0006, + "loss": 3.895922899246216, + "step": 1442 + }, + { + "epoch": 20.041939711664483, + "grad_norm": 0.18982571363449097, + "learning_rate": 0.0006, + "loss": 3.929841995239258, + "step": 1443 + }, + { + "epoch": 20.055919615552643, + "grad_norm": 0.20811910927295685, + "learning_rate": 0.0006, + "loss": 3.9498324394226074, + "step": 1444 + }, + { + "epoch": 20.069899519440803, + "grad_norm": 0.2149062603712082, + "learning_rate": 0.0006, + "loss": 3.929853916168213, + "step": 1445 + }, + { + "epoch": 20.083879423328966, + "grad_norm": 0.20016685128211975, + "learning_rate": 0.0006, + "loss": 3.9374136924743652, + "step": 1446 + }, + { + "epoch": 20.097859327217126, + "grad_norm": 0.19969616830348969, + "learning_rate": 0.0006, + "loss": 3.932447910308838, + "step": 1447 + }, + { + "epoch": 20.111839231105286, + "grad_norm": 0.2163356989622116, + "learning_rate": 0.0006, + "loss": 3.9325437545776367, + "step": 1448 + }, + { + "epoch": 20.125819134993446, + "grad_norm": 0.22026969492435455, + "learning_rate": 0.0006, + "loss": 3.9118852615356445, + "step": 1449 + }, + { + "epoch": 20.13979903888161, + "grad_norm": 0.23337116837501526, + "learning_rate": 0.0006, + "loss": 3.9416019916534424, + "step": 1450 + }, + { + "epoch": 20.15377894276977, + "grad_norm": 0.23971447348594666, + "learning_rate": 0.0006, + "loss": 3.9416871070861816, + "step": 1451 + }, + { + "epoch": 20.16775884665793, + "grad_norm": 0.25973960757255554, + "learning_rate": 0.0006, + "loss": 3.93826961517334, + "step": 1452 + }, + { + "epoch": 20.18173875054609, + "grad_norm": 0.2303445190191269, + "learning_rate": 0.0006, + "loss": 3.909383535385132, + "step": 1453 + }, + { + "epoch": 20.195718654434252, + "grad_norm": 0.21090206503868103, + "learning_rate": 0.0006, + "loss": 3.935939311981201, + "step": 1454 + }, + { + "epoch": 20.209698558322412, + "grad_norm": 0.2278691977262497, + "learning_rate": 0.0006, + "loss": 3.9623684883117676, + "step": 1455 + }, + { + "epoch": 20.22367846221057, + "grad_norm": 0.22291512787342072, + "learning_rate": 0.0006, + "loss": 3.9386210441589355, + "step": 1456 + }, + { + "epoch": 20.23765836609873, + "grad_norm": 0.2385793924331665, + "learning_rate": 0.0006, + "loss": 3.927365303039551, + "step": 1457 + }, + { + "epoch": 20.251638269986895, + "grad_norm": 0.23949867486953735, + "learning_rate": 0.0006, + "loss": 3.956698179244995, + "step": 1458 + }, + { + "epoch": 20.265618173875055, + "grad_norm": 0.2232269048690796, + "learning_rate": 0.0006, + "loss": 3.9465065002441406, + "step": 1459 + }, + { + "epoch": 20.279598077763215, + "grad_norm": 0.22286680340766907, + "learning_rate": 0.0006, + "loss": 3.9102284908294678, + "step": 1460 + }, + { + "epoch": 20.293577981651374, + "grad_norm": 0.24039050936698914, + "learning_rate": 0.0006, + "loss": 3.928055763244629, + "step": 1461 + }, + { + "epoch": 20.307557885539538, + "grad_norm": 0.2532738447189331, + "learning_rate": 0.0006, + "loss": 3.931753635406494, + "step": 1462 + }, + { + "epoch": 20.321537789427698, + "grad_norm": 0.2206273376941681, + "learning_rate": 0.0006, + "loss": 3.936119556427002, + "step": 1463 + }, + { + "epoch": 20.335517693315857, + "grad_norm": 0.20918945968151093, + "learning_rate": 0.0006, + "loss": 3.9228529930114746, + "step": 1464 + }, + { + "epoch": 20.34949759720402, + "grad_norm": 0.2324502319097519, + "learning_rate": 0.0006, + "loss": 3.9370768070220947, + "step": 1465 + }, + { + "epoch": 20.36347750109218, + "grad_norm": 0.26811033487319946, + "learning_rate": 0.0006, + "loss": 3.968515396118164, + "step": 1466 + }, + { + "epoch": 20.37745740498034, + "grad_norm": 0.2896045744419098, + "learning_rate": 0.0006, + "loss": 3.945124626159668, + "step": 1467 + }, + { + "epoch": 20.3914373088685, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 3.9399516582489014, + "step": 1468 + }, + { + "epoch": 20.405417212756664, + "grad_norm": 0.3076821565628052, + "learning_rate": 0.0006, + "loss": 3.9545583724975586, + "step": 1469 + }, + { + "epoch": 20.419397116644824, + "grad_norm": 0.3019449710845947, + "learning_rate": 0.0006, + "loss": 3.9502270221710205, + "step": 1470 + }, + { + "epoch": 20.433377020532983, + "grad_norm": 0.31832560896873474, + "learning_rate": 0.0006, + "loss": 3.940439224243164, + "step": 1471 + }, + { + "epoch": 20.447356924421143, + "grad_norm": 0.30303657054901123, + "learning_rate": 0.0006, + "loss": 3.9451770782470703, + "step": 1472 + }, + { + "epoch": 20.461336828309307, + "grad_norm": 0.28122979402542114, + "learning_rate": 0.0006, + "loss": 3.934508800506592, + "step": 1473 + }, + { + "epoch": 20.475316732197467, + "grad_norm": 0.27013441920280457, + "learning_rate": 0.0006, + "loss": 3.924323081970215, + "step": 1474 + }, + { + "epoch": 20.489296636085626, + "grad_norm": 0.29052063822746277, + "learning_rate": 0.0006, + "loss": 3.970916748046875, + "step": 1475 + }, + { + "epoch": 20.503276539973786, + "grad_norm": 0.2871626913547516, + "learning_rate": 0.0006, + "loss": 3.945425033569336, + "step": 1476 + }, + { + "epoch": 20.51725644386195, + "grad_norm": 0.2396184206008911, + "learning_rate": 0.0006, + "loss": 3.964290142059326, + "step": 1477 + }, + { + "epoch": 20.53123634775011, + "grad_norm": 0.21942107379436493, + "learning_rate": 0.0006, + "loss": 3.910101890563965, + "step": 1478 + }, + { + "epoch": 20.54521625163827, + "grad_norm": 0.22193685173988342, + "learning_rate": 0.0006, + "loss": 3.914005756378174, + "step": 1479 + }, + { + "epoch": 20.55919615552643, + "grad_norm": 0.20207515358924866, + "learning_rate": 0.0006, + "loss": 3.9575581550598145, + "step": 1480 + }, + { + "epoch": 20.573176059414592, + "grad_norm": 0.17855247855186462, + "learning_rate": 0.0006, + "loss": 3.941490411758423, + "step": 1481 + }, + { + "epoch": 20.587155963302752, + "grad_norm": 0.21268485486507416, + "learning_rate": 0.0006, + "loss": 3.94045352935791, + "step": 1482 + }, + { + "epoch": 20.601135867190912, + "grad_norm": 0.24890053272247314, + "learning_rate": 0.0006, + "loss": 3.932961940765381, + "step": 1483 + }, + { + "epoch": 20.615115771079076, + "grad_norm": 0.23771314322948456, + "learning_rate": 0.0006, + "loss": 3.9067630767822266, + "step": 1484 + }, + { + "epoch": 20.629095674967235, + "grad_norm": 0.20990237593650818, + "learning_rate": 0.0006, + "loss": 3.9476752281188965, + "step": 1485 + }, + { + "epoch": 20.643075578855395, + "grad_norm": 0.20058798789978027, + "learning_rate": 0.0006, + "loss": 3.9350547790527344, + "step": 1486 + }, + { + "epoch": 20.657055482743555, + "grad_norm": 0.1953001767396927, + "learning_rate": 0.0006, + "loss": 3.9437222480773926, + "step": 1487 + }, + { + "epoch": 20.67103538663172, + "grad_norm": 0.18748535215854645, + "learning_rate": 0.0006, + "loss": 3.9336047172546387, + "step": 1488 + }, + { + "epoch": 20.68501529051988, + "grad_norm": 0.18874801695346832, + "learning_rate": 0.0006, + "loss": 3.9042580127716064, + "step": 1489 + }, + { + "epoch": 20.698995194408038, + "grad_norm": 0.1844169795513153, + "learning_rate": 0.0006, + "loss": 3.9302420616149902, + "step": 1490 + }, + { + "epoch": 20.712975098296198, + "grad_norm": 0.18519413471221924, + "learning_rate": 0.0006, + "loss": 3.9527437686920166, + "step": 1491 + }, + { + "epoch": 20.72695500218436, + "grad_norm": 0.20084598660469055, + "learning_rate": 0.0006, + "loss": 3.9161760807037354, + "step": 1492 + }, + { + "epoch": 20.74093490607252, + "grad_norm": 0.2015734612941742, + "learning_rate": 0.0006, + "loss": 3.9466545581817627, + "step": 1493 + }, + { + "epoch": 20.75491480996068, + "grad_norm": 0.2210122048854828, + "learning_rate": 0.0006, + "loss": 3.8994693756103516, + "step": 1494 + }, + { + "epoch": 20.76889471384884, + "grad_norm": 0.23019762337207794, + "learning_rate": 0.0006, + "loss": 3.93685245513916, + "step": 1495 + }, + { + "epoch": 20.782874617737004, + "grad_norm": 0.21246281266212463, + "learning_rate": 0.0006, + "loss": 3.9499399662017822, + "step": 1496 + }, + { + "epoch": 20.796854521625164, + "grad_norm": 0.21142810583114624, + "learning_rate": 0.0006, + "loss": 3.9317150115966797, + "step": 1497 + }, + { + "epoch": 20.810834425513324, + "grad_norm": 0.20230524241924286, + "learning_rate": 0.0006, + "loss": 3.9389750957489014, + "step": 1498 + }, + { + "epoch": 20.824814329401484, + "grad_norm": 0.21096977591514587, + "learning_rate": 0.0006, + "loss": 3.9325194358825684, + "step": 1499 + }, + { + "epoch": 20.838794233289647, + "grad_norm": 0.2309989333152771, + "learning_rate": 0.0006, + "loss": 3.943641185760498, + "step": 1500 + }, + { + "epoch": 20.852774137177807, + "grad_norm": 0.2016306221485138, + "learning_rate": 0.0006, + "loss": 3.986043930053711, + "step": 1501 + }, + { + "epoch": 20.866754041065967, + "grad_norm": 0.2107970118522644, + "learning_rate": 0.0006, + "loss": 3.9219160079956055, + "step": 1502 + }, + { + "epoch": 20.88073394495413, + "grad_norm": 0.21580125391483307, + "learning_rate": 0.0006, + "loss": 3.942014694213867, + "step": 1503 + }, + { + "epoch": 20.89471384884229, + "grad_norm": 0.21348726749420166, + "learning_rate": 0.0006, + "loss": 3.9389920234680176, + "step": 1504 + }, + { + "epoch": 20.90869375273045, + "grad_norm": 0.23094943165779114, + "learning_rate": 0.0006, + "loss": 3.952993392944336, + "step": 1505 + }, + { + "epoch": 20.92267365661861, + "grad_norm": 0.22431740164756775, + "learning_rate": 0.0006, + "loss": 3.897671937942505, + "step": 1506 + }, + { + "epoch": 20.936653560506773, + "grad_norm": 0.20056353509426117, + "learning_rate": 0.0006, + "loss": 3.9100005626678467, + "step": 1507 + }, + { + "epoch": 20.950633464394933, + "grad_norm": 0.20604434609413147, + "learning_rate": 0.0006, + "loss": 3.9486045837402344, + "step": 1508 + }, + { + "epoch": 20.964613368283093, + "grad_norm": 0.22979380190372467, + "learning_rate": 0.0006, + "loss": 3.977163553237915, + "step": 1509 + }, + { + "epoch": 20.978593272171253, + "grad_norm": 0.2421523779630661, + "learning_rate": 0.0006, + "loss": 3.9216256141662598, + "step": 1510 + }, + { + "epoch": 20.992573176059416, + "grad_norm": 0.25776705145835876, + "learning_rate": 0.0006, + "loss": 3.9221739768981934, + "step": 1511 + }, + { + "epoch": 21.0, + "grad_norm": 0.2750694751739502, + "learning_rate": 0.0006, + "loss": 3.938098907470703, + "step": 1512 + }, + { + "epoch": 21.0, + "eval_loss": 4.159763336181641, + "eval_runtime": 44.8663, + "eval_samples_per_second": 54.428, + "eval_steps_per_second": 3.41, + "step": 1512 + }, + { + "epoch": 21.01397990388816, + "grad_norm": 0.24513043463230133, + "learning_rate": 0.0006, + "loss": 3.8939385414123535, + "step": 1513 + }, + { + "epoch": 21.027959807776323, + "grad_norm": 0.22209352254867554, + "learning_rate": 0.0006, + "loss": 3.9044857025146484, + "step": 1514 + }, + { + "epoch": 21.041939711664483, + "grad_norm": 0.22437648475170135, + "learning_rate": 0.0006, + "loss": 3.9325196743011475, + "step": 1515 + }, + { + "epoch": 21.055919615552643, + "grad_norm": 0.21168062090873718, + "learning_rate": 0.0006, + "loss": 3.882176637649536, + "step": 1516 + }, + { + "epoch": 21.069899519440803, + "grad_norm": 0.22334499657154083, + "learning_rate": 0.0006, + "loss": 3.8978934288024902, + "step": 1517 + }, + { + "epoch": 21.083879423328966, + "grad_norm": 0.21038010716438293, + "learning_rate": 0.0006, + "loss": 3.8807029724121094, + "step": 1518 + }, + { + "epoch": 21.097859327217126, + "grad_norm": 0.2243613600730896, + "learning_rate": 0.0006, + "loss": 3.924865961074829, + "step": 1519 + }, + { + "epoch": 21.111839231105286, + "grad_norm": 0.2535616159439087, + "learning_rate": 0.0006, + "loss": 3.9288227558135986, + "step": 1520 + }, + { + "epoch": 21.125819134993446, + "grad_norm": 0.2782756984233856, + "learning_rate": 0.0006, + "loss": 3.908233642578125, + "step": 1521 + }, + { + "epoch": 21.13979903888161, + "grad_norm": 0.2586214542388916, + "learning_rate": 0.0006, + "loss": 3.9151182174682617, + "step": 1522 + }, + { + "epoch": 21.15377894276977, + "grad_norm": 0.22465091943740845, + "learning_rate": 0.0006, + "loss": 3.9209084510803223, + "step": 1523 + }, + { + "epoch": 21.16775884665793, + "grad_norm": 0.2588018774986267, + "learning_rate": 0.0006, + "loss": 3.9295971393585205, + "step": 1524 + }, + { + "epoch": 21.18173875054609, + "grad_norm": 0.2637675702571869, + "learning_rate": 0.0006, + "loss": 3.9353199005126953, + "step": 1525 + }, + { + "epoch": 21.195718654434252, + "grad_norm": 0.2806383967399597, + "learning_rate": 0.0006, + "loss": 3.922337770462036, + "step": 1526 + }, + { + "epoch": 21.209698558322412, + "grad_norm": 0.27103501558303833, + "learning_rate": 0.0006, + "loss": 3.8811073303222656, + "step": 1527 + }, + { + "epoch": 21.22367846221057, + "grad_norm": 0.27203720808029175, + "learning_rate": 0.0006, + "loss": 3.9036178588867188, + "step": 1528 + }, + { + "epoch": 21.23765836609873, + "grad_norm": 0.2783355712890625, + "learning_rate": 0.0006, + "loss": 3.885456085205078, + "step": 1529 + }, + { + "epoch": 21.251638269986895, + "grad_norm": 0.2884930968284607, + "learning_rate": 0.0006, + "loss": 3.8936941623687744, + "step": 1530 + }, + { + "epoch": 21.265618173875055, + "grad_norm": 0.2829558849334717, + "learning_rate": 0.0006, + "loss": 3.927624225616455, + "step": 1531 + }, + { + "epoch": 21.279598077763215, + "grad_norm": 0.2809497117996216, + "learning_rate": 0.0006, + "loss": 3.8896753787994385, + "step": 1532 + }, + { + "epoch": 21.293577981651374, + "grad_norm": 0.27037671208381653, + "learning_rate": 0.0006, + "loss": 3.91316294670105, + "step": 1533 + }, + { + "epoch": 21.307557885539538, + "grad_norm": 0.310051292181015, + "learning_rate": 0.0006, + "loss": 3.9137332439422607, + "step": 1534 + }, + { + "epoch": 21.321537789427698, + "grad_norm": 0.30489876866340637, + "learning_rate": 0.0006, + "loss": 3.9088284969329834, + "step": 1535 + }, + { + "epoch": 21.335517693315857, + "grad_norm": 0.2607756555080414, + "learning_rate": 0.0006, + "loss": 3.9097847938537598, + "step": 1536 + }, + { + "epoch": 21.34949759720402, + "grad_norm": 0.2460775375366211, + "learning_rate": 0.0006, + "loss": 3.941211700439453, + "step": 1537 + }, + { + "epoch": 21.36347750109218, + "grad_norm": 0.24271734058856964, + "learning_rate": 0.0006, + "loss": 3.9140594005584717, + "step": 1538 + }, + { + "epoch": 21.37745740498034, + "grad_norm": 0.20012645423412323, + "learning_rate": 0.0006, + "loss": 3.888446807861328, + "step": 1539 + }, + { + "epoch": 21.3914373088685, + "grad_norm": 0.2196308672428131, + "learning_rate": 0.0006, + "loss": 3.9153785705566406, + "step": 1540 + }, + { + "epoch": 21.405417212756664, + "grad_norm": 0.22184589505195618, + "learning_rate": 0.0006, + "loss": 3.91996431350708, + "step": 1541 + }, + { + "epoch": 21.419397116644824, + "grad_norm": 0.22947315871715546, + "learning_rate": 0.0006, + "loss": 3.9268412590026855, + "step": 1542 + }, + { + "epoch": 21.433377020532983, + "grad_norm": 0.22275054454803467, + "learning_rate": 0.0006, + "loss": 3.909275531768799, + "step": 1543 + }, + { + "epoch": 21.447356924421143, + "grad_norm": 0.23103971779346466, + "learning_rate": 0.0006, + "loss": 3.925635814666748, + "step": 1544 + }, + { + "epoch": 21.461336828309307, + "grad_norm": 0.23379720747470856, + "learning_rate": 0.0006, + "loss": 3.926647186279297, + "step": 1545 + }, + { + "epoch": 21.475316732197467, + "grad_norm": 0.2244282215833664, + "learning_rate": 0.0006, + "loss": 3.9428000450134277, + "step": 1546 + }, + { + "epoch": 21.489296636085626, + "grad_norm": 0.22773298621177673, + "learning_rate": 0.0006, + "loss": 3.9378256797790527, + "step": 1547 + }, + { + "epoch": 21.503276539973786, + "grad_norm": 0.1918657273054123, + "learning_rate": 0.0006, + "loss": 3.904022216796875, + "step": 1548 + }, + { + "epoch": 21.51725644386195, + "grad_norm": 0.18415570259094238, + "learning_rate": 0.0006, + "loss": 3.9105122089385986, + "step": 1549 + }, + { + "epoch": 21.53123634775011, + "grad_norm": 0.22141380608081818, + "learning_rate": 0.0006, + "loss": 3.9153857231140137, + "step": 1550 + }, + { + "epoch": 21.54521625163827, + "grad_norm": 0.22533352673053741, + "learning_rate": 0.0006, + "loss": 3.9148974418640137, + "step": 1551 + }, + { + "epoch": 21.55919615552643, + "grad_norm": 0.2124762088060379, + "learning_rate": 0.0006, + "loss": 3.926311731338501, + "step": 1552 + }, + { + "epoch": 21.573176059414592, + "grad_norm": 0.239680215716362, + "learning_rate": 0.0006, + "loss": 3.9260334968566895, + "step": 1553 + }, + { + "epoch": 21.587155963302752, + "grad_norm": 0.24158740043640137, + "learning_rate": 0.0006, + "loss": 3.933223247528076, + "step": 1554 + }, + { + "epoch": 21.601135867190912, + "grad_norm": 0.2216576784849167, + "learning_rate": 0.0006, + "loss": 3.9065442085266113, + "step": 1555 + }, + { + "epoch": 21.615115771079076, + "grad_norm": 0.20099912583827972, + "learning_rate": 0.0006, + "loss": 3.923278570175171, + "step": 1556 + }, + { + "epoch": 21.629095674967235, + "grad_norm": 0.2337288111448288, + "learning_rate": 0.0006, + "loss": 3.92032527923584, + "step": 1557 + }, + { + "epoch": 21.643075578855395, + "grad_norm": 0.23574814200401306, + "learning_rate": 0.0006, + "loss": 3.896244525909424, + "step": 1558 + }, + { + "epoch": 21.657055482743555, + "grad_norm": 0.21338573098182678, + "learning_rate": 0.0006, + "loss": 3.930345058441162, + "step": 1559 + }, + { + "epoch": 21.67103538663172, + "grad_norm": 0.2375067174434662, + "learning_rate": 0.0006, + "loss": 3.864104986190796, + "step": 1560 + }, + { + "epoch": 21.68501529051988, + "grad_norm": 0.22490349411964417, + "learning_rate": 0.0006, + "loss": 3.883296012878418, + "step": 1561 + }, + { + "epoch": 21.698995194408038, + "grad_norm": 0.23021313548088074, + "learning_rate": 0.0006, + "loss": 3.915200710296631, + "step": 1562 + }, + { + "epoch": 21.712975098296198, + "grad_norm": 0.22590875625610352, + "learning_rate": 0.0006, + "loss": 3.903597354888916, + "step": 1563 + }, + { + "epoch": 21.72695500218436, + "grad_norm": 0.19066260755062103, + "learning_rate": 0.0006, + "loss": 3.9162631034851074, + "step": 1564 + }, + { + "epoch": 21.74093490607252, + "grad_norm": 0.18134327232837677, + "learning_rate": 0.0006, + "loss": 3.9167914390563965, + "step": 1565 + }, + { + "epoch": 21.75491480996068, + "grad_norm": 0.1782190054655075, + "learning_rate": 0.0006, + "loss": 3.900925636291504, + "step": 1566 + }, + { + "epoch": 21.76889471384884, + "grad_norm": 0.19034099578857422, + "learning_rate": 0.0006, + "loss": 3.896559238433838, + "step": 1567 + }, + { + "epoch": 21.782874617737004, + "grad_norm": 0.21509577333927155, + "learning_rate": 0.0006, + "loss": 3.891681671142578, + "step": 1568 + }, + { + "epoch": 21.796854521625164, + "grad_norm": 0.2370351105928421, + "learning_rate": 0.0006, + "loss": 3.886570453643799, + "step": 1569 + }, + { + "epoch": 21.810834425513324, + "grad_norm": 0.25546324253082275, + "learning_rate": 0.0006, + "loss": 3.9247193336486816, + "step": 1570 + }, + { + "epoch": 21.824814329401484, + "grad_norm": 0.2513384222984314, + "learning_rate": 0.0006, + "loss": 3.9120583534240723, + "step": 1571 + }, + { + "epoch": 21.838794233289647, + "grad_norm": 0.24691323935985565, + "learning_rate": 0.0006, + "loss": 3.9144935607910156, + "step": 1572 + }, + { + "epoch": 21.852774137177807, + "grad_norm": 0.2573968172073364, + "learning_rate": 0.0006, + "loss": 3.9517531394958496, + "step": 1573 + }, + { + "epoch": 21.866754041065967, + "grad_norm": 0.25461453199386597, + "learning_rate": 0.0006, + "loss": 3.93508243560791, + "step": 1574 + }, + { + "epoch": 21.88073394495413, + "grad_norm": 0.23756568133831024, + "learning_rate": 0.0006, + "loss": 3.8885269165039062, + "step": 1575 + }, + { + "epoch": 21.89471384884229, + "grad_norm": 0.2193172425031662, + "learning_rate": 0.0006, + "loss": 3.9103426933288574, + "step": 1576 + }, + { + "epoch": 21.90869375273045, + "grad_norm": 0.2350149303674698, + "learning_rate": 0.0006, + "loss": 3.9399590492248535, + "step": 1577 + }, + { + "epoch": 21.92267365661861, + "grad_norm": 0.23759333789348602, + "learning_rate": 0.0006, + "loss": 3.9433584213256836, + "step": 1578 + }, + { + "epoch": 21.936653560506773, + "grad_norm": 0.21108432114124298, + "learning_rate": 0.0006, + "loss": 3.9241819381713867, + "step": 1579 + }, + { + "epoch": 21.950633464394933, + "grad_norm": 0.22088949382305145, + "learning_rate": 0.0006, + "loss": 3.9231910705566406, + "step": 1580 + }, + { + "epoch": 21.964613368283093, + "grad_norm": 0.22125045955181122, + "learning_rate": 0.0006, + "loss": 3.896329164505005, + "step": 1581 + }, + { + "epoch": 21.978593272171253, + "grad_norm": 0.20745202898979187, + "learning_rate": 0.0006, + "loss": 3.8920536041259766, + "step": 1582 + }, + { + "epoch": 21.992573176059416, + "grad_norm": 0.2409721463918686, + "learning_rate": 0.0006, + "loss": 3.9061317443847656, + "step": 1583 + }, + { + "epoch": 22.0, + "grad_norm": 0.2669669985771179, + "learning_rate": 0.0006, + "loss": 3.922062397003174, + "step": 1584 + }, + { + "epoch": 22.0, + "eval_loss": 4.140966415405273, + "eval_runtime": 46.7132, + "eval_samples_per_second": 52.276, + "eval_steps_per_second": 3.275, + "step": 1584 + }, + { + "epoch": 22.01397990388816, + "grad_norm": 0.26155969500541687, + "learning_rate": 0.0006, + "loss": 3.888944625854492, + "step": 1585 + }, + { + "epoch": 22.027959807776323, + "grad_norm": 0.2579149007797241, + "learning_rate": 0.0006, + "loss": 3.8924355506896973, + "step": 1586 + }, + { + "epoch": 22.041939711664483, + "grad_norm": 0.2429896742105484, + "learning_rate": 0.0006, + "loss": 3.8714070320129395, + "step": 1587 + }, + { + "epoch": 22.055919615552643, + "grad_norm": 0.23497673869132996, + "learning_rate": 0.0006, + "loss": 3.905089855194092, + "step": 1588 + }, + { + "epoch": 22.069899519440803, + "grad_norm": 0.24074940383434296, + "learning_rate": 0.0006, + "loss": 3.886845111846924, + "step": 1589 + }, + { + "epoch": 22.083879423328966, + "grad_norm": 0.2226274162530899, + "learning_rate": 0.0006, + "loss": 3.8554329872131348, + "step": 1590 + }, + { + "epoch": 22.097859327217126, + "grad_norm": 0.22924423217773438, + "learning_rate": 0.0006, + "loss": 3.8914356231689453, + "step": 1591 + }, + { + "epoch": 22.111839231105286, + "grad_norm": 0.2459387183189392, + "learning_rate": 0.0006, + "loss": 3.902522087097168, + "step": 1592 + }, + { + "epoch": 22.125819134993446, + "grad_norm": 0.2704590857028961, + "learning_rate": 0.0006, + "loss": 3.896497964859009, + "step": 1593 + }, + { + "epoch": 22.13979903888161, + "grad_norm": 0.2848219871520996, + "learning_rate": 0.0006, + "loss": 3.88423228263855, + "step": 1594 + }, + { + "epoch": 22.15377894276977, + "grad_norm": 0.22996552288532257, + "learning_rate": 0.0006, + "loss": 3.9034953117370605, + "step": 1595 + }, + { + "epoch": 22.16775884665793, + "grad_norm": 0.2117270529270172, + "learning_rate": 0.0006, + "loss": 3.888279914855957, + "step": 1596 + }, + { + "epoch": 22.18173875054609, + "grad_norm": 0.19724160432815552, + "learning_rate": 0.0006, + "loss": 3.860525131225586, + "step": 1597 + }, + { + "epoch": 22.195718654434252, + "grad_norm": 0.2012624740600586, + "learning_rate": 0.0006, + "loss": 3.8930106163024902, + "step": 1598 + }, + { + "epoch": 22.209698558322412, + "grad_norm": 0.20243871212005615, + "learning_rate": 0.0006, + "loss": 3.8727619647979736, + "step": 1599 + }, + { + "epoch": 22.22367846221057, + "grad_norm": 0.21737465262413025, + "learning_rate": 0.0006, + "loss": 3.887969493865967, + "step": 1600 + }, + { + "epoch": 22.23765836609873, + "grad_norm": 0.23969845473766327, + "learning_rate": 0.0006, + "loss": 3.8629722595214844, + "step": 1601 + }, + { + "epoch": 22.251638269986895, + "grad_norm": 0.22874902188777924, + "learning_rate": 0.0006, + "loss": 3.9135584831237793, + "step": 1602 + }, + { + "epoch": 22.265618173875055, + "grad_norm": 0.209506556391716, + "learning_rate": 0.0006, + "loss": 3.8734190464019775, + "step": 1603 + }, + { + "epoch": 22.279598077763215, + "grad_norm": 0.22235789895057678, + "learning_rate": 0.0006, + "loss": 3.884854793548584, + "step": 1604 + }, + { + "epoch": 22.293577981651374, + "grad_norm": 0.21975041925907135, + "learning_rate": 0.0006, + "loss": 3.8860888481140137, + "step": 1605 + }, + { + "epoch": 22.307557885539538, + "grad_norm": 0.21474459767341614, + "learning_rate": 0.0006, + "loss": 3.9052200317382812, + "step": 1606 + }, + { + "epoch": 22.321537789427698, + "grad_norm": 0.2103329747915268, + "learning_rate": 0.0006, + "loss": 3.8516340255737305, + "step": 1607 + }, + { + "epoch": 22.335517693315857, + "grad_norm": 0.1981191635131836, + "learning_rate": 0.0006, + "loss": 3.9017434120178223, + "step": 1608 + }, + { + "epoch": 22.34949759720402, + "grad_norm": 0.20679591596126556, + "learning_rate": 0.0006, + "loss": 3.889885425567627, + "step": 1609 + }, + { + "epoch": 22.36347750109218, + "grad_norm": 0.20809867978096008, + "learning_rate": 0.0006, + "loss": 3.881868362426758, + "step": 1610 + }, + { + "epoch": 22.37745740498034, + "grad_norm": 0.21394680440425873, + "learning_rate": 0.0006, + "loss": 3.89980411529541, + "step": 1611 + }, + { + "epoch": 22.3914373088685, + "grad_norm": 0.2334284782409668, + "learning_rate": 0.0006, + "loss": 3.8672266006469727, + "step": 1612 + }, + { + "epoch": 22.405417212756664, + "grad_norm": 0.26521918177604675, + "learning_rate": 0.0006, + "loss": 3.8918118476867676, + "step": 1613 + }, + { + "epoch": 22.419397116644824, + "grad_norm": 0.2652994394302368, + "learning_rate": 0.0006, + "loss": 3.8683271408081055, + "step": 1614 + }, + { + "epoch": 22.433377020532983, + "grad_norm": 0.2568066716194153, + "learning_rate": 0.0006, + "loss": 3.892523765563965, + "step": 1615 + }, + { + "epoch": 22.447356924421143, + "grad_norm": 0.260052353143692, + "learning_rate": 0.0006, + "loss": 3.897305488586426, + "step": 1616 + }, + { + "epoch": 22.461336828309307, + "grad_norm": 0.2744271457195282, + "learning_rate": 0.0006, + "loss": 3.8962221145629883, + "step": 1617 + }, + { + "epoch": 22.475316732197467, + "grad_norm": 0.23755787312984467, + "learning_rate": 0.0006, + "loss": 3.888184070587158, + "step": 1618 + }, + { + "epoch": 22.489296636085626, + "grad_norm": 0.2515312135219574, + "learning_rate": 0.0006, + "loss": 3.8946003913879395, + "step": 1619 + }, + { + "epoch": 22.503276539973786, + "grad_norm": 0.24835044145584106, + "learning_rate": 0.0006, + "loss": 3.8711423873901367, + "step": 1620 + }, + { + "epoch": 22.51725644386195, + "grad_norm": 0.22615326941013336, + "learning_rate": 0.0006, + "loss": 3.8878846168518066, + "step": 1621 + }, + { + "epoch": 22.53123634775011, + "grad_norm": 0.20482423901557922, + "learning_rate": 0.0006, + "loss": 3.8782598972320557, + "step": 1622 + }, + { + "epoch": 22.54521625163827, + "grad_norm": 0.20436473190784454, + "learning_rate": 0.0006, + "loss": 3.9075279235839844, + "step": 1623 + }, + { + "epoch": 22.55919615552643, + "grad_norm": 0.2066277265548706, + "learning_rate": 0.0006, + "loss": 3.89908766746521, + "step": 1624 + }, + { + "epoch": 22.573176059414592, + "grad_norm": 0.20735307037830353, + "learning_rate": 0.0006, + "loss": 3.865204334259033, + "step": 1625 + }, + { + "epoch": 22.587155963302752, + "grad_norm": 0.20955748856067657, + "learning_rate": 0.0006, + "loss": 3.8835532665252686, + "step": 1626 + }, + { + "epoch": 22.601135867190912, + "grad_norm": 0.21354222297668457, + "learning_rate": 0.0006, + "loss": 3.9012551307678223, + "step": 1627 + }, + { + "epoch": 22.615115771079076, + "grad_norm": 0.2075091004371643, + "learning_rate": 0.0006, + "loss": 3.8733482360839844, + "step": 1628 + }, + { + "epoch": 22.629095674967235, + "grad_norm": 0.20207874476909637, + "learning_rate": 0.0006, + "loss": 3.9193859100341797, + "step": 1629 + }, + { + "epoch": 22.643075578855395, + "grad_norm": 0.21863923966884613, + "learning_rate": 0.0006, + "loss": 3.883518695831299, + "step": 1630 + }, + { + "epoch": 22.657055482743555, + "grad_norm": 0.22117522358894348, + "learning_rate": 0.0006, + "loss": 3.9163284301757812, + "step": 1631 + }, + { + "epoch": 22.67103538663172, + "grad_norm": 0.2078622728586197, + "learning_rate": 0.0006, + "loss": 3.868274688720703, + "step": 1632 + }, + { + "epoch": 22.68501529051988, + "grad_norm": 0.22745893895626068, + "learning_rate": 0.0006, + "loss": 3.9171340465545654, + "step": 1633 + }, + { + "epoch": 22.698995194408038, + "grad_norm": 0.2312736064195633, + "learning_rate": 0.0006, + "loss": 3.9487013816833496, + "step": 1634 + }, + { + "epoch": 22.712975098296198, + "grad_norm": 0.20491497218608856, + "learning_rate": 0.0006, + "loss": 3.91833758354187, + "step": 1635 + }, + { + "epoch": 22.72695500218436, + "grad_norm": 0.1899084597826004, + "learning_rate": 0.0006, + "loss": 3.876225709915161, + "step": 1636 + }, + { + "epoch": 22.74093490607252, + "grad_norm": 0.18581682443618774, + "learning_rate": 0.0006, + "loss": 3.8667988777160645, + "step": 1637 + }, + { + "epoch": 22.75491480996068, + "grad_norm": 0.19855599105358124, + "learning_rate": 0.0006, + "loss": 3.900789260864258, + "step": 1638 + }, + { + "epoch": 22.76889471384884, + "grad_norm": 0.19951458275318146, + "learning_rate": 0.0006, + "loss": 3.8850367069244385, + "step": 1639 + }, + { + "epoch": 22.782874617737004, + "grad_norm": 0.22802744805812836, + "learning_rate": 0.0006, + "loss": 3.9181363582611084, + "step": 1640 + }, + { + "epoch": 22.796854521625164, + "grad_norm": 0.24279919266700745, + "learning_rate": 0.0006, + "loss": 3.8843770027160645, + "step": 1641 + }, + { + "epoch": 22.810834425513324, + "grad_norm": 0.23554913699626923, + "learning_rate": 0.0006, + "loss": 3.8802413940429688, + "step": 1642 + }, + { + "epoch": 22.824814329401484, + "grad_norm": 0.22343270480632782, + "learning_rate": 0.0006, + "loss": 3.8524107933044434, + "step": 1643 + }, + { + "epoch": 22.838794233289647, + "grad_norm": 0.2185724526643753, + "learning_rate": 0.0006, + "loss": 3.9117047786712646, + "step": 1644 + }, + { + "epoch": 22.852774137177807, + "grad_norm": 0.2114841341972351, + "learning_rate": 0.0006, + "loss": 3.90325927734375, + "step": 1645 + }, + { + "epoch": 22.866754041065967, + "grad_norm": 0.21072550117969513, + "learning_rate": 0.0006, + "loss": 3.8988137245178223, + "step": 1646 + }, + { + "epoch": 22.88073394495413, + "grad_norm": 0.2250078171491623, + "learning_rate": 0.0006, + "loss": 3.9201531410217285, + "step": 1647 + }, + { + "epoch": 22.89471384884229, + "grad_norm": 0.20928071439266205, + "learning_rate": 0.0006, + "loss": 3.91666316986084, + "step": 1648 + }, + { + "epoch": 22.90869375273045, + "grad_norm": 0.24096311628818512, + "learning_rate": 0.0006, + "loss": 3.8797364234924316, + "step": 1649 + }, + { + "epoch": 22.92267365661861, + "grad_norm": 0.2591194212436676, + "learning_rate": 0.0006, + "loss": 3.883273124694824, + "step": 1650 + }, + { + "epoch": 22.936653560506773, + "grad_norm": 0.27342668175697327, + "learning_rate": 0.0006, + "loss": 3.8645026683807373, + "step": 1651 + }, + { + "epoch": 22.950633464394933, + "grad_norm": 0.2448573112487793, + "learning_rate": 0.0006, + "loss": 3.9093551635742188, + "step": 1652 + }, + { + "epoch": 22.964613368283093, + "grad_norm": 0.19899503886699677, + "learning_rate": 0.0006, + "loss": 3.9001057147979736, + "step": 1653 + }, + { + "epoch": 22.978593272171253, + "grad_norm": 0.2023746520280838, + "learning_rate": 0.0006, + "loss": 3.886474370956421, + "step": 1654 + }, + { + "epoch": 22.992573176059416, + "grad_norm": 0.19894269108772278, + "learning_rate": 0.0006, + "loss": 3.9004204273223877, + "step": 1655 + }, + { + "epoch": 23.0, + "grad_norm": 0.2401709407567978, + "learning_rate": 0.0006, + "loss": 3.8665566444396973, + "step": 1656 + }, + { + "epoch": 23.0, + "eval_loss": 4.112459659576416, + "eval_runtime": 44.8325, + "eval_samples_per_second": 54.469, + "eval_steps_per_second": 3.413, + "step": 1656 + }, + { + "epoch": 23.01397990388816, + "grad_norm": 0.22662921249866486, + "learning_rate": 0.0006, + "loss": 3.853271961212158, + "step": 1657 + }, + { + "epoch": 23.027959807776323, + "grad_norm": 0.24406856298446655, + "learning_rate": 0.0006, + "loss": 3.8691890239715576, + "step": 1658 + }, + { + "epoch": 23.041939711664483, + "grad_norm": 0.2266651839017868, + "learning_rate": 0.0006, + "loss": 3.838599681854248, + "step": 1659 + }, + { + "epoch": 23.055919615552643, + "grad_norm": 0.22303511202335358, + "learning_rate": 0.0006, + "loss": 3.8678267002105713, + "step": 1660 + }, + { + "epoch": 23.069899519440803, + "grad_norm": 0.2272164225578308, + "learning_rate": 0.0006, + "loss": 3.9045681953430176, + "step": 1661 + }, + { + "epoch": 23.083879423328966, + "grad_norm": 0.25004875659942627, + "learning_rate": 0.0006, + "loss": 3.856503963470459, + "step": 1662 + }, + { + "epoch": 23.097859327217126, + "grad_norm": 0.26016247272491455, + "learning_rate": 0.0006, + "loss": 3.878587007522583, + "step": 1663 + }, + { + "epoch": 23.111839231105286, + "grad_norm": 0.28539901971817017, + "learning_rate": 0.0006, + "loss": 3.864248514175415, + "step": 1664 + }, + { + "epoch": 23.125819134993446, + "grad_norm": 0.27504822611808777, + "learning_rate": 0.0006, + "loss": 3.821448802947998, + "step": 1665 + }, + { + "epoch": 23.13979903888161, + "grad_norm": 0.238910973072052, + "learning_rate": 0.0006, + "loss": 3.8635847568511963, + "step": 1666 + }, + { + "epoch": 23.15377894276977, + "grad_norm": 0.24179652333259583, + "learning_rate": 0.0006, + "loss": 3.8339638710021973, + "step": 1667 + }, + { + "epoch": 23.16775884665793, + "grad_norm": 0.2199544757604599, + "learning_rate": 0.0006, + "loss": 3.868396759033203, + "step": 1668 + }, + { + "epoch": 23.18173875054609, + "grad_norm": 0.1965002566576004, + "learning_rate": 0.0006, + "loss": 3.8761439323425293, + "step": 1669 + }, + { + "epoch": 23.195718654434252, + "grad_norm": 0.20426614582538605, + "learning_rate": 0.0006, + "loss": 3.822899580001831, + "step": 1670 + }, + { + "epoch": 23.209698558322412, + "grad_norm": 0.2197263389825821, + "learning_rate": 0.0006, + "loss": 3.887728452682495, + "step": 1671 + }, + { + "epoch": 23.22367846221057, + "grad_norm": 0.22844573855400085, + "learning_rate": 0.0006, + "loss": 3.8550517559051514, + "step": 1672 + }, + { + "epoch": 23.23765836609873, + "grad_norm": 0.2347746044397354, + "learning_rate": 0.0006, + "loss": 3.903310537338257, + "step": 1673 + }, + { + "epoch": 23.251638269986895, + "grad_norm": 0.24167625606060028, + "learning_rate": 0.0006, + "loss": 3.8397774696350098, + "step": 1674 + }, + { + "epoch": 23.265618173875055, + "grad_norm": 0.2691650688648224, + "learning_rate": 0.0006, + "loss": 3.853254795074463, + "step": 1675 + }, + { + "epoch": 23.279598077763215, + "grad_norm": 0.29421621561050415, + "learning_rate": 0.0006, + "loss": 3.86065411567688, + "step": 1676 + }, + { + "epoch": 23.293577981651374, + "grad_norm": 0.31074345111846924, + "learning_rate": 0.0006, + "loss": 3.8716742992401123, + "step": 1677 + }, + { + "epoch": 23.307557885539538, + "grad_norm": 0.3044569194316864, + "learning_rate": 0.0006, + "loss": 3.8738951683044434, + "step": 1678 + }, + { + "epoch": 23.321537789427698, + "grad_norm": 0.30496764183044434, + "learning_rate": 0.0006, + "loss": 3.884446620941162, + "step": 1679 + }, + { + "epoch": 23.335517693315857, + "grad_norm": 0.31122756004333496, + "learning_rate": 0.0006, + "loss": 3.878495693206787, + "step": 1680 + }, + { + "epoch": 23.34949759720402, + "grad_norm": 0.32268181443214417, + "learning_rate": 0.0006, + "loss": 3.8793649673461914, + "step": 1681 + }, + { + "epoch": 23.36347750109218, + "grad_norm": 0.3297140598297119, + "learning_rate": 0.0006, + "loss": 3.87484073638916, + "step": 1682 + }, + { + "epoch": 23.37745740498034, + "grad_norm": 0.26007479429244995, + "learning_rate": 0.0006, + "loss": 3.8510947227478027, + "step": 1683 + }, + { + "epoch": 23.3914373088685, + "grad_norm": 0.2627335786819458, + "learning_rate": 0.0006, + "loss": 3.8783209323883057, + "step": 1684 + }, + { + "epoch": 23.405417212756664, + "grad_norm": 0.256452739238739, + "learning_rate": 0.0006, + "loss": 3.8594281673431396, + "step": 1685 + }, + { + "epoch": 23.419397116644824, + "grad_norm": 0.23892226815223694, + "learning_rate": 0.0006, + "loss": 3.898951292037964, + "step": 1686 + }, + { + "epoch": 23.433377020532983, + "grad_norm": 0.21625587344169617, + "learning_rate": 0.0006, + "loss": 3.8679966926574707, + "step": 1687 + }, + { + "epoch": 23.447356924421143, + "grad_norm": 0.21924619376659393, + "learning_rate": 0.0006, + "loss": 3.8774075508117676, + "step": 1688 + }, + { + "epoch": 23.461336828309307, + "grad_norm": 0.21500127017498016, + "learning_rate": 0.0006, + "loss": 3.870619297027588, + "step": 1689 + }, + { + "epoch": 23.475316732197467, + "grad_norm": 0.22580556571483612, + "learning_rate": 0.0006, + "loss": 3.887722969055176, + "step": 1690 + }, + { + "epoch": 23.489296636085626, + "grad_norm": 0.2500104308128357, + "learning_rate": 0.0006, + "loss": 3.88789963722229, + "step": 1691 + }, + { + "epoch": 23.503276539973786, + "grad_norm": 0.22462762892246246, + "learning_rate": 0.0006, + "loss": 3.863997459411621, + "step": 1692 + }, + { + "epoch": 23.51725644386195, + "grad_norm": 0.21427781879901886, + "learning_rate": 0.0006, + "loss": 3.8827033042907715, + "step": 1693 + }, + { + "epoch": 23.53123634775011, + "grad_norm": 0.22278577089309692, + "learning_rate": 0.0006, + "loss": 3.8659563064575195, + "step": 1694 + }, + { + "epoch": 23.54521625163827, + "grad_norm": 0.22801144421100616, + "learning_rate": 0.0006, + "loss": 3.9031362533569336, + "step": 1695 + }, + { + "epoch": 23.55919615552643, + "grad_norm": 0.25071898102760315, + "learning_rate": 0.0006, + "loss": 3.887746810913086, + "step": 1696 + }, + { + "epoch": 23.573176059414592, + "grad_norm": 0.2564085125923157, + "learning_rate": 0.0006, + "loss": 3.8918356895446777, + "step": 1697 + }, + { + "epoch": 23.587155963302752, + "grad_norm": 0.24603120982646942, + "learning_rate": 0.0006, + "loss": 3.850416421890259, + "step": 1698 + }, + { + "epoch": 23.601135867190912, + "grad_norm": 0.20539002120494843, + "learning_rate": 0.0006, + "loss": 3.862060070037842, + "step": 1699 + }, + { + "epoch": 23.615115771079076, + "grad_norm": 0.2022249400615692, + "learning_rate": 0.0006, + "loss": 3.899008274078369, + "step": 1700 + }, + { + "epoch": 23.629095674967235, + "grad_norm": 0.2435392290353775, + "learning_rate": 0.0006, + "loss": 3.844388961791992, + "step": 1701 + }, + { + "epoch": 23.643075578855395, + "grad_norm": 0.21146756410598755, + "learning_rate": 0.0006, + "loss": 3.8972439765930176, + "step": 1702 + }, + { + "epoch": 23.657055482743555, + "grad_norm": 0.2025400996208191, + "learning_rate": 0.0006, + "loss": 3.865253448486328, + "step": 1703 + }, + { + "epoch": 23.67103538663172, + "grad_norm": 0.21129970252513885, + "learning_rate": 0.0006, + "loss": 3.8768205642700195, + "step": 1704 + }, + { + "epoch": 23.68501529051988, + "grad_norm": 0.22982284426689148, + "learning_rate": 0.0006, + "loss": 3.8792667388916016, + "step": 1705 + }, + { + "epoch": 23.698995194408038, + "grad_norm": 0.23013733327388763, + "learning_rate": 0.0006, + "loss": 3.880897045135498, + "step": 1706 + }, + { + "epoch": 23.712975098296198, + "grad_norm": 0.2277672290802002, + "learning_rate": 0.0006, + "loss": 3.8738410472869873, + "step": 1707 + }, + { + "epoch": 23.72695500218436, + "grad_norm": 0.2343369573354721, + "learning_rate": 0.0006, + "loss": 3.8587026596069336, + "step": 1708 + }, + { + "epoch": 23.74093490607252, + "grad_norm": 0.23159530758857727, + "learning_rate": 0.0006, + "loss": 3.856306552886963, + "step": 1709 + }, + { + "epoch": 23.75491480996068, + "grad_norm": 0.19541035592556, + "learning_rate": 0.0006, + "loss": 3.8294754028320312, + "step": 1710 + }, + { + "epoch": 23.76889471384884, + "grad_norm": 0.22999322414398193, + "learning_rate": 0.0006, + "loss": 3.882676124572754, + "step": 1711 + }, + { + "epoch": 23.782874617737004, + "grad_norm": 0.23442843556404114, + "learning_rate": 0.0006, + "loss": 3.8887529373168945, + "step": 1712 + }, + { + "epoch": 23.796854521625164, + "grad_norm": 0.22914239764213562, + "learning_rate": 0.0006, + "loss": 3.867673635482788, + "step": 1713 + }, + { + "epoch": 23.810834425513324, + "grad_norm": 0.20683827996253967, + "learning_rate": 0.0006, + "loss": 3.8999581336975098, + "step": 1714 + }, + { + "epoch": 23.824814329401484, + "grad_norm": 0.19281277060508728, + "learning_rate": 0.0006, + "loss": 3.8997726440429688, + "step": 1715 + }, + { + "epoch": 23.838794233289647, + "grad_norm": 0.20058563351631165, + "learning_rate": 0.0006, + "loss": 3.8583860397338867, + "step": 1716 + }, + { + "epoch": 23.852774137177807, + "grad_norm": 0.19856606423854828, + "learning_rate": 0.0006, + "loss": 3.88948392868042, + "step": 1717 + }, + { + "epoch": 23.866754041065967, + "grad_norm": 0.2099323868751526, + "learning_rate": 0.0006, + "loss": 3.878458261489868, + "step": 1718 + }, + { + "epoch": 23.88073394495413, + "grad_norm": 0.22945016622543335, + "learning_rate": 0.0006, + "loss": 3.84116268157959, + "step": 1719 + }, + { + "epoch": 23.89471384884229, + "grad_norm": 0.22646087408065796, + "learning_rate": 0.0006, + "loss": 3.9006617069244385, + "step": 1720 + }, + { + "epoch": 23.90869375273045, + "grad_norm": 0.20282860100269318, + "learning_rate": 0.0006, + "loss": 3.8781144618988037, + "step": 1721 + }, + { + "epoch": 23.92267365661861, + "grad_norm": 0.1918555349111557, + "learning_rate": 0.0006, + "loss": 3.8560891151428223, + "step": 1722 + }, + { + "epoch": 23.936653560506773, + "grad_norm": 0.19286513328552246, + "learning_rate": 0.0006, + "loss": 3.873220920562744, + "step": 1723 + }, + { + "epoch": 23.950633464394933, + "grad_norm": 0.21071338653564453, + "learning_rate": 0.0006, + "loss": 3.9147067070007324, + "step": 1724 + }, + { + "epoch": 23.964613368283093, + "grad_norm": 0.20956715941429138, + "learning_rate": 0.0006, + "loss": 3.8762729167938232, + "step": 1725 + }, + { + "epoch": 23.978593272171253, + "grad_norm": 0.23053105175495148, + "learning_rate": 0.0006, + "loss": 3.873781681060791, + "step": 1726 + }, + { + "epoch": 23.992573176059416, + "grad_norm": 0.2719029486179352, + "learning_rate": 0.0006, + "loss": 3.862342357635498, + "step": 1727 + }, + { + "epoch": 24.0, + "grad_norm": 0.2933610677719116, + "learning_rate": 0.0006, + "loss": 3.8657689094543457, + "step": 1728 + }, + { + "epoch": 24.0, + "eval_loss": 4.0959153175354, + "eval_runtime": 44.3631, + "eval_samples_per_second": 55.046, + "eval_steps_per_second": 3.449, + "step": 1728 + }, + { + "epoch": 24.01397990388816, + "grad_norm": 0.24905365705490112, + "learning_rate": 0.0006, + "loss": 3.838136911392212, + "step": 1729 + }, + { + "epoch": 24.027959807776323, + "grad_norm": 0.25948020815849304, + "learning_rate": 0.0006, + "loss": 3.8581268787384033, + "step": 1730 + }, + { + "epoch": 24.041939711664483, + "grad_norm": 0.24965140223503113, + "learning_rate": 0.0006, + "loss": 3.8628978729248047, + "step": 1731 + }, + { + "epoch": 24.055919615552643, + "grad_norm": 0.23428823053836823, + "learning_rate": 0.0006, + "loss": 3.8188819885253906, + "step": 1732 + }, + { + "epoch": 24.069899519440803, + "grad_norm": 0.22191211581230164, + "learning_rate": 0.0006, + "loss": 3.8616039752960205, + "step": 1733 + }, + { + "epoch": 24.083879423328966, + "grad_norm": 0.20257535576820374, + "learning_rate": 0.0006, + "loss": 3.8632802963256836, + "step": 1734 + }, + { + "epoch": 24.097859327217126, + "grad_norm": 0.20385196805000305, + "learning_rate": 0.0006, + "loss": 3.885817050933838, + "step": 1735 + }, + { + "epoch": 24.111839231105286, + "grad_norm": 0.19921693205833435, + "learning_rate": 0.0006, + "loss": 3.838515043258667, + "step": 1736 + }, + { + "epoch": 24.125819134993446, + "grad_norm": 0.20221556723117828, + "learning_rate": 0.0006, + "loss": 3.8585309982299805, + "step": 1737 + }, + { + "epoch": 24.13979903888161, + "grad_norm": 0.20124691724777222, + "learning_rate": 0.0006, + "loss": 3.81656551361084, + "step": 1738 + }, + { + "epoch": 24.15377894276977, + "grad_norm": 0.1810830533504486, + "learning_rate": 0.0006, + "loss": 3.841783046722412, + "step": 1739 + }, + { + "epoch": 24.16775884665793, + "grad_norm": 0.18414196372032166, + "learning_rate": 0.0006, + "loss": 3.8614797592163086, + "step": 1740 + }, + { + "epoch": 24.18173875054609, + "grad_norm": 0.18930725753307343, + "learning_rate": 0.0006, + "loss": 3.8382534980773926, + "step": 1741 + }, + { + "epoch": 24.195718654434252, + "grad_norm": 0.19658128917217255, + "learning_rate": 0.0006, + "loss": 3.881742477416992, + "step": 1742 + }, + { + "epoch": 24.209698558322412, + "grad_norm": 0.20175589621067047, + "learning_rate": 0.0006, + "loss": 3.8760581016540527, + "step": 1743 + }, + { + "epoch": 24.22367846221057, + "grad_norm": 0.19416265189647675, + "learning_rate": 0.0006, + "loss": 3.8373687267303467, + "step": 1744 + }, + { + "epoch": 24.23765836609873, + "grad_norm": 0.20206521451473236, + "learning_rate": 0.0006, + "loss": 3.8322830200195312, + "step": 1745 + }, + { + "epoch": 24.251638269986895, + "grad_norm": 0.21797429025173187, + "learning_rate": 0.0006, + "loss": 3.849905490875244, + "step": 1746 + }, + { + "epoch": 24.265618173875055, + "grad_norm": 0.21295784413814545, + "learning_rate": 0.0006, + "loss": 3.847714900970459, + "step": 1747 + }, + { + "epoch": 24.279598077763215, + "grad_norm": 0.22023876011371613, + "learning_rate": 0.0006, + "loss": 3.8221592903137207, + "step": 1748 + }, + { + "epoch": 24.293577981651374, + "grad_norm": 0.2125576138496399, + "learning_rate": 0.0006, + "loss": 3.8070976734161377, + "step": 1749 + }, + { + "epoch": 24.307557885539538, + "grad_norm": 0.18673811852931976, + "learning_rate": 0.0006, + "loss": 3.866878032684326, + "step": 1750 + }, + { + "epoch": 24.321537789427698, + "grad_norm": 0.1972627341747284, + "learning_rate": 0.0006, + "loss": 3.846404552459717, + "step": 1751 + }, + { + "epoch": 24.335517693315857, + "grad_norm": 0.21846632659435272, + "learning_rate": 0.0006, + "loss": 3.8528640270233154, + "step": 1752 + }, + { + "epoch": 24.34949759720402, + "grad_norm": 0.22234080731868744, + "learning_rate": 0.0006, + "loss": 3.8268141746520996, + "step": 1753 + }, + { + "epoch": 24.36347750109218, + "grad_norm": 0.23002761602401733, + "learning_rate": 0.0006, + "loss": 3.832444667816162, + "step": 1754 + }, + { + "epoch": 24.37745740498034, + "grad_norm": 0.22526559233665466, + "learning_rate": 0.0006, + "loss": 3.864406108856201, + "step": 1755 + }, + { + "epoch": 24.3914373088685, + "grad_norm": 0.2290039211511612, + "learning_rate": 0.0006, + "loss": 3.8449103832244873, + "step": 1756 + }, + { + "epoch": 24.405417212756664, + "grad_norm": 0.23145617544651031, + "learning_rate": 0.0006, + "loss": 3.8183751106262207, + "step": 1757 + }, + { + "epoch": 24.419397116644824, + "grad_norm": 0.24287554621696472, + "learning_rate": 0.0006, + "loss": 3.809481382369995, + "step": 1758 + }, + { + "epoch": 24.433377020532983, + "grad_norm": 0.2672404646873474, + "learning_rate": 0.0006, + "loss": 3.877800464630127, + "step": 1759 + }, + { + "epoch": 24.447356924421143, + "grad_norm": 0.26292186975479126, + "learning_rate": 0.0006, + "loss": 3.8329367637634277, + "step": 1760 + }, + { + "epoch": 24.461336828309307, + "grad_norm": 0.26235947012901306, + "learning_rate": 0.0006, + "loss": 3.8414158821105957, + "step": 1761 + }, + { + "epoch": 24.475316732197467, + "grad_norm": 0.2638382613658905, + "learning_rate": 0.0006, + "loss": 3.849188804626465, + "step": 1762 + }, + { + "epoch": 24.489296636085626, + "grad_norm": 0.2564602196216583, + "learning_rate": 0.0006, + "loss": 3.865501880645752, + "step": 1763 + }, + { + "epoch": 24.503276539973786, + "grad_norm": 0.21352271735668182, + "learning_rate": 0.0006, + "loss": 3.87910795211792, + "step": 1764 + }, + { + "epoch": 24.51725644386195, + "grad_norm": 0.2470584511756897, + "learning_rate": 0.0006, + "loss": 3.858750343322754, + "step": 1765 + }, + { + "epoch": 24.53123634775011, + "grad_norm": 0.24907536804676056, + "learning_rate": 0.0006, + "loss": 3.8532559871673584, + "step": 1766 + }, + { + "epoch": 24.54521625163827, + "grad_norm": 0.2426205575466156, + "learning_rate": 0.0006, + "loss": 3.8659827709198, + "step": 1767 + }, + { + "epoch": 24.55919615552643, + "grad_norm": 0.23481151461601257, + "learning_rate": 0.0006, + "loss": 3.863948345184326, + "step": 1768 + }, + { + "epoch": 24.573176059414592, + "grad_norm": 0.22717779874801636, + "learning_rate": 0.0006, + "loss": 3.848527193069458, + "step": 1769 + }, + { + "epoch": 24.587155963302752, + "grad_norm": 0.2267129123210907, + "learning_rate": 0.0006, + "loss": 3.8600735664367676, + "step": 1770 + }, + { + "epoch": 24.601135867190912, + "grad_norm": 0.24967710673809052, + "learning_rate": 0.0006, + "loss": 3.84291934967041, + "step": 1771 + }, + { + "epoch": 24.615115771079076, + "grad_norm": 0.25308957695961, + "learning_rate": 0.0006, + "loss": 3.846181631088257, + "step": 1772 + }, + { + "epoch": 24.629095674967235, + "grad_norm": 0.2689298391342163, + "learning_rate": 0.0006, + "loss": 3.8572893142700195, + "step": 1773 + }, + { + "epoch": 24.643075578855395, + "grad_norm": 0.26458555459976196, + "learning_rate": 0.0006, + "loss": 3.8583621978759766, + "step": 1774 + }, + { + "epoch": 24.657055482743555, + "grad_norm": 0.24416811764240265, + "learning_rate": 0.0006, + "loss": 3.8648223876953125, + "step": 1775 + }, + { + "epoch": 24.67103538663172, + "grad_norm": 0.22218526899814606, + "learning_rate": 0.0006, + "loss": 3.839395523071289, + "step": 1776 + }, + { + "epoch": 24.68501529051988, + "grad_norm": 0.2147492915391922, + "learning_rate": 0.0006, + "loss": 3.875734567642212, + "step": 1777 + }, + { + "epoch": 24.698995194408038, + "grad_norm": 0.2346794754266739, + "learning_rate": 0.0006, + "loss": 3.854768991470337, + "step": 1778 + }, + { + "epoch": 24.712975098296198, + "grad_norm": 0.21406520903110504, + "learning_rate": 0.0006, + "loss": 3.8269104957580566, + "step": 1779 + }, + { + "epoch": 24.72695500218436, + "grad_norm": 0.20716224610805511, + "learning_rate": 0.0006, + "loss": 3.8245768547058105, + "step": 1780 + }, + { + "epoch": 24.74093490607252, + "grad_norm": 0.21445901691913605, + "learning_rate": 0.0006, + "loss": 3.8877978324890137, + "step": 1781 + }, + { + "epoch": 24.75491480996068, + "grad_norm": 0.21964985132217407, + "learning_rate": 0.0006, + "loss": 3.8602452278137207, + "step": 1782 + }, + { + "epoch": 24.76889471384884, + "grad_norm": 0.209807351231575, + "learning_rate": 0.0006, + "loss": 3.853428602218628, + "step": 1783 + }, + { + "epoch": 24.782874617737004, + "grad_norm": 0.19564911723136902, + "learning_rate": 0.0006, + "loss": 3.832275867462158, + "step": 1784 + }, + { + "epoch": 24.796854521625164, + "grad_norm": 0.21394333243370056, + "learning_rate": 0.0006, + "loss": 3.8543171882629395, + "step": 1785 + }, + { + "epoch": 24.810834425513324, + "grad_norm": 0.23156948387622833, + "learning_rate": 0.0006, + "loss": 3.8539412021636963, + "step": 1786 + }, + { + "epoch": 24.824814329401484, + "grad_norm": 0.2378678321838379, + "learning_rate": 0.0006, + "loss": 3.8409833908081055, + "step": 1787 + }, + { + "epoch": 24.838794233289647, + "grad_norm": 0.23816189169883728, + "learning_rate": 0.0006, + "loss": 3.855379581451416, + "step": 1788 + }, + { + "epoch": 24.852774137177807, + "grad_norm": 0.23109886050224304, + "learning_rate": 0.0006, + "loss": 3.8689517974853516, + "step": 1789 + }, + { + "epoch": 24.866754041065967, + "grad_norm": 0.2042883038520813, + "learning_rate": 0.0006, + "loss": 3.8730404376983643, + "step": 1790 + }, + { + "epoch": 24.88073394495413, + "grad_norm": 0.2039479911327362, + "learning_rate": 0.0006, + "loss": 3.8474984169006348, + "step": 1791 + }, + { + "epoch": 24.89471384884229, + "grad_norm": 0.213027223944664, + "learning_rate": 0.0006, + "loss": 3.8539695739746094, + "step": 1792 + }, + { + "epoch": 24.90869375273045, + "grad_norm": 0.2280654013156891, + "learning_rate": 0.0006, + "loss": 3.8633079528808594, + "step": 1793 + }, + { + "epoch": 24.92267365661861, + "grad_norm": 0.20864921808242798, + "learning_rate": 0.0006, + "loss": 3.8110368251800537, + "step": 1794 + }, + { + "epoch": 24.936653560506773, + "grad_norm": 0.23002111911773682, + "learning_rate": 0.0006, + "loss": 3.8334741592407227, + "step": 1795 + }, + { + "epoch": 24.950633464394933, + "grad_norm": 0.232331782579422, + "learning_rate": 0.0006, + "loss": 3.871887683868408, + "step": 1796 + }, + { + "epoch": 24.964613368283093, + "grad_norm": 0.24141235649585724, + "learning_rate": 0.0006, + "loss": 3.8614959716796875, + "step": 1797 + }, + { + "epoch": 24.978593272171253, + "grad_norm": 0.2545177638530731, + "learning_rate": 0.0006, + "loss": 3.8563568592071533, + "step": 1798 + }, + { + "epoch": 24.992573176059416, + "grad_norm": 0.25186386704444885, + "learning_rate": 0.0006, + "loss": 3.882166862487793, + "step": 1799 + }, + { + "epoch": 25.0, + "grad_norm": 0.260195791721344, + "learning_rate": 0.0006, + "loss": 3.884554862976074, + "step": 1800 + }, + { + "epoch": 25.0, + "eval_loss": 4.08809757232666, + "eval_runtime": 44.7947, + "eval_samples_per_second": 54.515, + "eval_steps_per_second": 3.416, + "step": 1800 + }, + { + "epoch": 25.01397990388816, + "grad_norm": 0.25396403670310974, + "learning_rate": 0.0006, + "loss": 3.8217287063598633, + "step": 1801 + }, + { + "epoch": 25.027959807776323, + "grad_norm": 0.2773195207118988, + "learning_rate": 0.0006, + "loss": 3.809542417526245, + "step": 1802 + }, + { + "epoch": 25.041939711664483, + "grad_norm": 0.3073263168334961, + "learning_rate": 0.0006, + "loss": 3.825706958770752, + "step": 1803 + }, + { + "epoch": 25.055919615552643, + "grad_norm": 0.30885398387908936, + "learning_rate": 0.0006, + "loss": 3.8081188201904297, + "step": 1804 + }, + { + "epoch": 25.069899519440803, + "grad_norm": 0.27356019616127014, + "learning_rate": 0.0006, + "loss": 3.8538241386413574, + "step": 1805 + }, + { + "epoch": 25.083879423328966, + "grad_norm": 0.22830164432525635, + "learning_rate": 0.0006, + "loss": 3.8246965408325195, + "step": 1806 + }, + { + "epoch": 25.097859327217126, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.8552842140197754, + "step": 1807 + }, + { + "epoch": 25.111839231105286, + "grad_norm": 0.21718722581863403, + "learning_rate": 0.0006, + "loss": 3.8489418029785156, + "step": 1808 + }, + { + "epoch": 25.125819134993446, + "grad_norm": 0.2480861395597458, + "learning_rate": 0.0006, + "loss": 3.821455955505371, + "step": 1809 + }, + { + "epoch": 25.13979903888161, + "grad_norm": 0.2796635627746582, + "learning_rate": 0.0006, + "loss": 3.8202435970306396, + "step": 1810 + }, + { + "epoch": 25.15377894276977, + "grad_norm": 0.2829958200454712, + "learning_rate": 0.0006, + "loss": 3.8293306827545166, + "step": 1811 + }, + { + "epoch": 25.16775884665793, + "grad_norm": 0.2510125935077667, + "learning_rate": 0.0006, + "loss": 3.8342957496643066, + "step": 1812 + }, + { + "epoch": 25.18173875054609, + "grad_norm": 0.22923722863197327, + "learning_rate": 0.0006, + "loss": 3.8448352813720703, + "step": 1813 + }, + { + "epoch": 25.195718654434252, + "grad_norm": 0.21439228951931, + "learning_rate": 0.0006, + "loss": 3.8343517780303955, + "step": 1814 + }, + { + "epoch": 25.209698558322412, + "grad_norm": 0.1965373307466507, + "learning_rate": 0.0006, + "loss": 3.8163528442382812, + "step": 1815 + }, + { + "epoch": 25.22367846221057, + "grad_norm": 0.20121058821678162, + "learning_rate": 0.0006, + "loss": 3.8007280826568604, + "step": 1816 + }, + { + "epoch": 25.23765836609873, + "grad_norm": 0.21383272111415863, + "learning_rate": 0.0006, + "loss": 3.8200385570526123, + "step": 1817 + }, + { + "epoch": 25.251638269986895, + "grad_norm": 0.2066601663827896, + "learning_rate": 0.0006, + "loss": 3.8333921432495117, + "step": 1818 + }, + { + "epoch": 25.265618173875055, + "grad_norm": 0.2104874551296234, + "learning_rate": 0.0006, + "loss": 3.838012218475342, + "step": 1819 + }, + { + "epoch": 25.279598077763215, + "grad_norm": 0.19733119010925293, + "learning_rate": 0.0006, + "loss": 3.835139274597168, + "step": 1820 + }, + { + "epoch": 25.293577981651374, + "grad_norm": 0.2119498997926712, + "learning_rate": 0.0006, + "loss": 3.8099722862243652, + "step": 1821 + }, + { + "epoch": 25.307557885539538, + "grad_norm": 0.21863529086112976, + "learning_rate": 0.0006, + "loss": 3.7801573276519775, + "step": 1822 + }, + { + "epoch": 25.321537789427698, + "grad_norm": 0.2113322764635086, + "learning_rate": 0.0006, + "loss": 3.809903621673584, + "step": 1823 + }, + { + "epoch": 25.335517693315857, + "grad_norm": 0.21594023704528809, + "learning_rate": 0.0006, + "loss": 3.8485071659088135, + "step": 1824 + }, + { + "epoch": 25.34949759720402, + "grad_norm": 0.21475964784622192, + "learning_rate": 0.0006, + "loss": 3.7894768714904785, + "step": 1825 + }, + { + "epoch": 25.36347750109218, + "grad_norm": 0.21174900233745575, + "learning_rate": 0.0006, + "loss": 3.821711540222168, + "step": 1826 + }, + { + "epoch": 25.37745740498034, + "grad_norm": 0.2065584659576416, + "learning_rate": 0.0006, + "loss": 3.8439841270446777, + "step": 1827 + }, + { + "epoch": 25.3914373088685, + "grad_norm": 0.19157007336616516, + "learning_rate": 0.0006, + "loss": 3.864245891571045, + "step": 1828 + }, + { + "epoch": 25.405417212756664, + "grad_norm": 0.19983816146850586, + "learning_rate": 0.0006, + "loss": 3.8317415714263916, + "step": 1829 + }, + { + "epoch": 25.419397116644824, + "grad_norm": 0.20506152510643005, + "learning_rate": 0.0006, + "loss": 3.8009896278381348, + "step": 1830 + }, + { + "epoch": 25.433377020532983, + "grad_norm": 0.19056960940361023, + "learning_rate": 0.0006, + "loss": 3.8383498191833496, + "step": 1831 + }, + { + "epoch": 25.447356924421143, + "grad_norm": 0.19262190163135529, + "learning_rate": 0.0006, + "loss": 3.838902235031128, + "step": 1832 + }, + { + "epoch": 25.461336828309307, + "grad_norm": 0.19859355688095093, + "learning_rate": 0.0006, + "loss": 3.82452392578125, + "step": 1833 + }, + { + "epoch": 25.475316732197467, + "grad_norm": 0.2144225388765335, + "learning_rate": 0.0006, + "loss": 3.8110032081604004, + "step": 1834 + }, + { + "epoch": 25.489296636085626, + "grad_norm": 0.20566298067569733, + "learning_rate": 0.0006, + "loss": 3.8662471771240234, + "step": 1835 + }, + { + "epoch": 25.503276539973786, + "grad_norm": 0.2071852684020996, + "learning_rate": 0.0006, + "loss": 3.821134090423584, + "step": 1836 + }, + { + "epoch": 25.51725644386195, + "grad_norm": 0.2095036506652832, + "learning_rate": 0.0006, + "loss": 3.824092388153076, + "step": 1837 + }, + { + "epoch": 25.53123634775011, + "grad_norm": 0.20136208832263947, + "learning_rate": 0.0006, + "loss": 3.8669862747192383, + "step": 1838 + }, + { + "epoch": 25.54521625163827, + "grad_norm": 0.1983811855316162, + "learning_rate": 0.0006, + "loss": 3.8120107650756836, + "step": 1839 + }, + { + "epoch": 25.55919615552643, + "grad_norm": 0.22859714925289154, + "learning_rate": 0.0006, + "loss": 3.8519299030303955, + "step": 1840 + }, + { + "epoch": 25.573176059414592, + "grad_norm": 0.23672667145729065, + "learning_rate": 0.0006, + "loss": 3.8245458602905273, + "step": 1841 + }, + { + "epoch": 25.587155963302752, + "grad_norm": 0.22698380053043365, + "learning_rate": 0.0006, + "loss": 3.8406805992126465, + "step": 1842 + }, + { + "epoch": 25.601135867190912, + "grad_norm": 0.25684037804603577, + "learning_rate": 0.0006, + "loss": 3.8584351539611816, + "step": 1843 + }, + { + "epoch": 25.615115771079076, + "grad_norm": 0.28180673718452454, + "learning_rate": 0.0006, + "loss": 3.8085098266601562, + "step": 1844 + }, + { + "epoch": 25.629095674967235, + "grad_norm": 0.2814631462097168, + "learning_rate": 0.0006, + "loss": 3.845083236694336, + "step": 1845 + }, + { + "epoch": 25.643075578855395, + "grad_norm": 0.23630981147289276, + "learning_rate": 0.0006, + "loss": 3.847749710083008, + "step": 1846 + }, + { + "epoch": 25.657055482743555, + "grad_norm": 0.22463662922382355, + "learning_rate": 0.0006, + "loss": 3.8172082901000977, + "step": 1847 + }, + { + "epoch": 25.67103538663172, + "grad_norm": 0.26551681756973267, + "learning_rate": 0.0006, + "loss": 3.8205654621124268, + "step": 1848 + }, + { + "epoch": 25.68501529051988, + "grad_norm": 0.27824243903160095, + "learning_rate": 0.0006, + "loss": 3.846076011657715, + "step": 1849 + }, + { + "epoch": 25.698995194408038, + "grad_norm": 0.266998291015625, + "learning_rate": 0.0006, + "loss": 3.8543574810028076, + "step": 1850 + }, + { + "epoch": 25.712975098296198, + "grad_norm": 0.22980351746082306, + "learning_rate": 0.0006, + "loss": 3.855511426925659, + "step": 1851 + }, + { + "epoch": 25.72695500218436, + "grad_norm": 0.23482872545719147, + "learning_rate": 0.0006, + "loss": 3.8687663078308105, + "step": 1852 + }, + { + "epoch": 25.74093490607252, + "grad_norm": 0.21119585633277893, + "learning_rate": 0.0006, + "loss": 3.8147101402282715, + "step": 1853 + }, + { + "epoch": 25.75491480996068, + "grad_norm": 0.21200446784496307, + "learning_rate": 0.0006, + "loss": 3.858473777770996, + "step": 1854 + }, + { + "epoch": 25.76889471384884, + "grad_norm": 0.20497842133045197, + "learning_rate": 0.0006, + "loss": 3.8545501232147217, + "step": 1855 + }, + { + "epoch": 25.782874617737004, + "grad_norm": 0.19328081607818604, + "learning_rate": 0.0006, + "loss": 3.7941341400146484, + "step": 1856 + }, + { + "epoch": 25.796854521625164, + "grad_norm": 0.2191578894853592, + "learning_rate": 0.0006, + "loss": 3.8408665657043457, + "step": 1857 + }, + { + "epoch": 25.810834425513324, + "grad_norm": 0.2548826038837433, + "learning_rate": 0.0006, + "loss": 3.854130744934082, + "step": 1858 + }, + { + "epoch": 25.824814329401484, + "grad_norm": 0.2290351390838623, + "learning_rate": 0.0006, + "loss": 3.8680176734924316, + "step": 1859 + }, + { + "epoch": 25.838794233289647, + "grad_norm": 0.20760944485664368, + "learning_rate": 0.0006, + "loss": 3.83731746673584, + "step": 1860 + }, + { + "epoch": 25.852774137177807, + "grad_norm": 0.19587582349777222, + "learning_rate": 0.0006, + "loss": 3.8173444271087646, + "step": 1861 + }, + { + "epoch": 25.866754041065967, + "grad_norm": 0.20762693881988525, + "learning_rate": 0.0006, + "loss": 3.8479790687561035, + "step": 1862 + }, + { + "epoch": 25.88073394495413, + "grad_norm": 0.20633186399936676, + "learning_rate": 0.0006, + "loss": 3.852285385131836, + "step": 1863 + }, + { + "epoch": 25.89471384884229, + "grad_norm": 0.21484960615634918, + "learning_rate": 0.0006, + "loss": 3.832592725753784, + "step": 1864 + }, + { + "epoch": 25.90869375273045, + "grad_norm": 0.19569595158100128, + "learning_rate": 0.0006, + "loss": 3.838071584701538, + "step": 1865 + }, + { + "epoch": 25.92267365661861, + "grad_norm": 0.19532904028892517, + "learning_rate": 0.0006, + "loss": 3.854252815246582, + "step": 1866 + }, + { + "epoch": 25.936653560506773, + "grad_norm": 0.1909649819135666, + "learning_rate": 0.0006, + "loss": 3.8444578647613525, + "step": 1867 + }, + { + "epoch": 25.950633464394933, + "grad_norm": 0.17476283013820648, + "learning_rate": 0.0006, + "loss": 3.836519241333008, + "step": 1868 + }, + { + "epoch": 25.964613368283093, + "grad_norm": 0.1895206719636917, + "learning_rate": 0.0006, + "loss": 3.8282582759857178, + "step": 1869 + }, + { + "epoch": 25.978593272171253, + "grad_norm": 0.20038437843322754, + "learning_rate": 0.0006, + "loss": 3.80542254447937, + "step": 1870 + }, + { + "epoch": 25.992573176059416, + "grad_norm": 0.20728608965873718, + "learning_rate": 0.0006, + "loss": 3.8584811687469482, + "step": 1871 + }, + { + "epoch": 26.0, + "grad_norm": 0.22110891342163086, + "learning_rate": 0.0006, + "loss": 3.8020238876342773, + "step": 1872 + }, + { + "epoch": 26.0, + "eval_loss": 4.072164058685303, + "eval_runtime": 44.9089, + "eval_samples_per_second": 54.377, + "eval_steps_per_second": 3.407, + "step": 1872 + }, + { + "epoch": 26.01397990388816, + "grad_norm": 0.2222519814968109, + "learning_rate": 0.0006, + "loss": 3.8309168815612793, + "step": 1873 + }, + { + "epoch": 26.027959807776323, + "grad_norm": 0.2637656033039093, + "learning_rate": 0.0006, + "loss": 3.8025143146514893, + "step": 1874 + }, + { + "epoch": 26.041939711664483, + "grad_norm": 0.2665974795818329, + "learning_rate": 0.0006, + "loss": 3.8244004249572754, + "step": 1875 + }, + { + "epoch": 26.055919615552643, + "grad_norm": 0.22475720942020416, + "learning_rate": 0.0006, + "loss": 3.80039119720459, + "step": 1876 + }, + { + "epoch": 26.069899519440803, + "grad_norm": 0.22994336485862732, + "learning_rate": 0.0006, + "loss": 3.7700726985931396, + "step": 1877 + }, + { + "epoch": 26.083879423328966, + "grad_norm": 0.24214622378349304, + "learning_rate": 0.0006, + "loss": 3.818725109100342, + "step": 1878 + }, + { + "epoch": 26.097859327217126, + "grad_norm": 0.22701293230056763, + "learning_rate": 0.0006, + "loss": 3.833803176879883, + "step": 1879 + }, + { + "epoch": 26.111839231105286, + "grad_norm": 0.21452295780181885, + "learning_rate": 0.0006, + "loss": 3.8391427993774414, + "step": 1880 + }, + { + "epoch": 26.125819134993446, + "grad_norm": 0.20179636776447296, + "learning_rate": 0.0006, + "loss": 3.802957057952881, + "step": 1881 + }, + { + "epoch": 26.13979903888161, + "grad_norm": 0.2087477445602417, + "learning_rate": 0.0006, + "loss": 3.8339905738830566, + "step": 1882 + }, + { + "epoch": 26.15377894276977, + "grad_norm": 0.23583556711673737, + "learning_rate": 0.0006, + "loss": 3.802438259124756, + "step": 1883 + }, + { + "epoch": 26.16775884665793, + "grad_norm": 0.2504311501979828, + "learning_rate": 0.0006, + "loss": 3.80244517326355, + "step": 1884 + }, + { + "epoch": 26.18173875054609, + "grad_norm": 0.24903984367847443, + "learning_rate": 0.0006, + "loss": 3.788865566253662, + "step": 1885 + }, + { + "epoch": 26.195718654434252, + "grad_norm": 0.2707931101322174, + "learning_rate": 0.0006, + "loss": 3.800051212310791, + "step": 1886 + }, + { + "epoch": 26.209698558322412, + "grad_norm": 0.24902892112731934, + "learning_rate": 0.0006, + "loss": 3.8068337440490723, + "step": 1887 + }, + { + "epoch": 26.22367846221057, + "grad_norm": 0.22655536234378815, + "learning_rate": 0.0006, + "loss": 3.779439926147461, + "step": 1888 + }, + { + "epoch": 26.23765836609873, + "grad_norm": 0.24797996878623962, + "learning_rate": 0.0006, + "loss": 3.822831153869629, + "step": 1889 + }, + { + "epoch": 26.251638269986895, + "grad_norm": 0.2821420431137085, + "learning_rate": 0.0006, + "loss": 3.807954788208008, + "step": 1890 + }, + { + "epoch": 26.265618173875055, + "grad_norm": 0.30392691493034363, + "learning_rate": 0.0006, + "loss": 3.776951789855957, + "step": 1891 + }, + { + "epoch": 26.279598077763215, + "grad_norm": 0.32641273736953735, + "learning_rate": 0.0006, + "loss": 3.8216311931610107, + "step": 1892 + }, + { + "epoch": 26.293577981651374, + "grad_norm": 0.32674387097358704, + "learning_rate": 0.0006, + "loss": 3.815596580505371, + "step": 1893 + }, + { + "epoch": 26.307557885539538, + "grad_norm": 0.29137250781059265, + "learning_rate": 0.0006, + "loss": 3.8170812129974365, + "step": 1894 + }, + { + "epoch": 26.321537789427698, + "grad_norm": 0.24291734397411346, + "learning_rate": 0.0006, + "loss": 3.810352087020874, + "step": 1895 + }, + { + "epoch": 26.335517693315857, + "grad_norm": 0.24023209512233734, + "learning_rate": 0.0006, + "loss": 3.8075947761535645, + "step": 1896 + }, + { + "epoch": 26.34949759720402, + "grad_norm": 0.24334804713726044, + "learning_rate": 0.0006, + "loss": 3.831556797027588, + "step": 1897 + }, + { + "epoch": 26.36347750109218, + "grad_norm": 0.2109663337469101, + "learning_rate": 0.0006, + "loss": 3.838347911834717, + "step": 1898 + }, + { + "epoch": 26.37745740498034, + "grad_norm": 0.19668002426624298, + "learning_rate": 0.0006, + "loss": 3.774737596511841, + "step": 1899 + }, + { + "epoch": 26.3914373088685, + "grad_norm": 0.21329134702682495, + "learning_rate": 0.0006, + "loss": 3.8237252235412598, + "step": 1900 + }, + { + "epoch": 26.405417212756664, + "grad_norm": 0.20381781458854675, + "learning_rate": 0.0006, + "loss": 3.802569627761841, + "step": 1901 + }, + { + "epoch": 26.419397116644824, + "grad_norm": 0.19083160161972046, + "learning_rate": 0.0006, + "loss": 3.8301358222961426, + "step": 1902 + }, + { + "epoch": 26.433377020532983, + "grad_norm": 0.20012904703617096, + "learning_rate": 0.0006, + "loss": 3.7966408729553223, + "step": 1903 + }, + { + "epoch": 26.447356924421143, + "grad_norm": 0.19483457505702972, + "learning_rate": 0.0006, + "loss": 3.8431968688964844, + "step": 1904 + }, + { + "epoch": 26.461336828309307, + "grad_norm": 0.19946353137493134, + "learning_rate": 0.0006, + "loss": 3.8023815155029297, + "step": 1905 + }, + { + "epoch": 26.475316732197467, + "grad_norm": 0.1984100341796875, + "learning_rate": 0.0006, + "loss": 3.8283071517944336, + "step": 1906 + }, + { + "epoch": 26.489296636085626, + "grad_norm": 0.2148299664258957, + "learning_rate": 0.0006, + "loss": 3.8377504348754883, + "step": 1907 + }, + { + "epoch": 26.503276539973786, + "grad_norm": 0.22139184176921844, + "learning_rate": 0.0006, + "loss": 3.823051691055298, + "step": 1908 + }, + { + "epoch": 26.51725644386195, + "grad_norm": 0.18289034068584442, + "learning_rate": 0.0006, + "loss": 3.8027071952819824, + "step": 1909 + }, + { + "epoch": 26.53123634775011, + "grad_norm": 0.1816026121377945, + "learning_rate": 0.0006, + "loss": 3.823786735534668, + "step": 1910 + }, + { + "epoch": 26.54521625163827, + "grad_norm": 0.19074322283267975, + "learning_rate": 0.0006, + "loss": 3.813331127166748, + "step": 1911 + }, + { + "epoch": 26.55919615552643, + "grad_norm": 0.20301467180252075, + "learning_rate": 0.0006, + "loss": 3.8218350410461426, + "step": 1912 + }, + { + "epoch": 26.573176059414592, + "grad_norm": 0.25266432762145996, + "learning_rate": 0.0006, + "loss": 3.8455142974853516, + "step": 1913 + }, + { + "epoch": 26.587155963302752, + "grad_norm": 0.25804755091667175, + "learning_rate": 0.0006, + "loss": 3.799227476119995, + "step": 1914 + }, + { + "epoch": 26.601135867190912, + "grad_norm": 0.2555372416973114, + "learning_rate": 0.0006, + "loss": 3.8125686645507812, + "step": 1915 + }, + { + "epoch": 26.615115771079076, + "grad_norm": 0.2266194075345993, + "learning_rate": 0.0006, + "loss": 3.858363628387451, + "step": 1916 + }, + { + "epoch": 26.629095674967235, + "grad_norm": 0.1933048665523529, + "learning_rate": 0.0006, + "loss": 3.8078083992004395, + "step": 1917 + }, + { + "epoch": 26.643075578855395, + "grad_norm": 0.19936731457710266, + "learning_rate": 0.0006, + "loss": 3.81748628616333, + "step": 1918 + }, + { + "epoch": 26.657055482743555, + "grad_norm": 0.22041693329811096, + "learning_rate": 0.0006, + "loss": 3.833272933959961, + "step": 1919 + }, + { + "epoch": 26.67103538663172, + "grad_norm": 0.20679150521755219, + "learning_rate": 0.0006, + "loss": 3.8127288818359375, + "step": 1920 + }, + { + "epoch": 26.68501529051988, + "grad_norm": 0.21545100212097168, + "learning_rate": 0.0006, + "loss": 3.816051483154297, + "step": 1921 + }, + { + "epoch": 26.698995194408038, + "grad_norm": 0.23554518818855286, + "learning_rate": 0.0006, + "loss": 3.8180980682373047, + "step": 1922 + }, + { + "epoch": 26.712975098296198, + "grad_norm": 0.21942466497421265, + "learning_rate": 0.0006, + "loss": 3.803107976913452, + "step": 1923 + }, + { + "epoch": 26.72695500218436, + "grad_norm": 0.22335010766983032, + "learning_rate": 0.0006, + "loss": 3.847890853881836, + "step": 1924 + }, + { + "epoch": 26.74093490607252, + "grad_norm": 0.24731314182281494, + "learning_rate": 0.0006, + "loss": 3.7945008277893066, + "step": 1925 + }, + { + "epoch": 26.75491480996068, + "grad_norm": 0.2804568111896515, + "learning_rate": 0.0006, + "loss": 3.8400068283081055, + "step": 1926 + }, + { + "epoch": 26.76889471384884, + "grad_norm": 0.28787222504615784, + "learning_rate": 0.0006, + "loss": 3.839771270751953, + "step": 1927 + }, + { + "epoch": 26.782874617737004, + "grad_norm": 0.2949632406234741, + "learning_rate": 0.0006, + "loss": 3.8225326538085938, + "step": 1928 + }, + { + "epoch": 26.796854521625164, + "grad_norm": 0.31546032428741455, + "learning_rate": 0.0006, + "loss": 3.8182597160339355, + "step": 1929 + }, + { + "epoch": 26.810834425513324, + "grad_norm": 0.2956962585449219, + "learning_rate": 0.0006, + "loss": 3.8315680027008057, + "step": 1930 + }, + { + "epoch": 26.824814329401484, + "grad_norm": 0.26943835616111755, + "learning_rate": 0.0006, + "loss": 3.787720203399658, + "step": 1931 + }, + { + "epoch": 26.838794233289647, + "grad_norm": 0.24272359907627106, + "learning_rate": 0.0006, + "loss": 3.7973692417144775, + "step": 1932 + }, + { + "epoch": 26.852774137177807, + "grad_norm": 0.20553994178771973, + "learning_rate": 0.0006, + "loss": 3.8241593837738037, + "step": 1933 + }, + { + "epoch": 26.866754041065967, + "grad_norm": 0.21927912533283234, + "learning_rate": 0.0006, + "loss": 3.8608899116516113, + "step": 1934 + }, + { + "epoch": 26.88073394495413, + "grad_norm": 0.22878016531467438, + "learning_rate": 0.0006, + "loss": 3.8341972827911377, + "step": 1935 + }, + { + "epoch": 26.89471384884229, + "grad_norm": 0.2085554301738739, + "learning_rate": 0.0006, + "loss": 3.8261351585388184, + "step": 1936 + }, + { + "epoch": 26.90869375273045, + "grad_norm": 0.21259072422981262, + "learning_rate": 0.0006, + "loss": 3.862056255340576, + "step": 1937 + }, + { + "epoch": 26.92267365661861, + "grad_norm": 0.21354122459888458, + "learning_rate": 0.0006, + "loss": 3.80879545211792, + "step": 1938 + }, + { + "epoch": 26.936653560506773, + "grad_norm": 0.2350253462791443, + "learning_rate": 0.0006, + "loss": 3.817826271057129, + "step": 1939 + }, + { + "epoch": 26.950633464394933, + "grad_norm": 0.23833836615085602, + "learning_rate": 0.0006, + "loss": 3.8220884799957275, + "step": 1940 + }, + { + "epoch": 26.964613368283093, + "grad_norm": 0.2368069440126419, + "learning_rate": 0.0006, + "loss": 3.843264579772949, + "step": 1941 + }, + { + "epoch": 26.978593272171253, + "grad_norm": 0.22663559019565582, + "learning_rate": 0.0006, + "loss": 3.81339430809021, + "step": 1942 + }, + { + "epoch": 26.992573176059416, + "grad_norm": 0.2151402235031128, + "learning_rate": 0.0006, + "loss": 3.8262834548950195, + "step": 1943 + }, + { + "epoch": 27.0, + "grad_norm": 0.24320295453071594, + "learning_rate": 0.0006, + "loss": 3.858567237854004, + "step": 1944 + }, + { + "epoch": 27.0, + "eval_loss": 4.0613322257995605, + "eval_runtime": 44.766, + "eval_samples_per_second": 54.55, + "eval_steps_per_second": 3.418, + "step": 1944 + }, + { + "epoch": 27.01397990388816, + "grad_norm": 0.21188032627105713, + "learning_rate": 0.0006, + "loss": 3.7631278038024902, + "step": 1945 + }, + { + "epoch": 27.027959807776323, + "grad_norm": 0.22298137843608856, + "learning_rate": 0.0006, + "loss": 3.784029245376587, + "step": 1946 + }, + { + "epoch": 27.041939711664483, + "grad_norm": 0.26530158519744873, + "learning_rate": 0.0006, + "loss": 3.795860767364502, + "step": 1947 + }, + { + "epoch": 27.055919615552643, + "grad_norm": 0.24476729333400726, + "learning_rate": 0.0006, + "loss": 3.77512264251709, + "step": 1948 + }, + { + "epoch": 27.069899519440803, + "grad_norm": 0.1934421956539154, + "learning_rate": 0.0006, + "loss": 3.7797446250915527, + "step": 1949 + }, + { + "epoch": 27.083879423328966, + "grad_norm": 0.19777092337608337, + "learning_rate": 0.0006, + "loss": 3.798935890197754, + "step": 1950 + }, + { + "epoch": 27.097859327217126, + "grad_norm": 0.2071693390607834, + "learning_rate": 0.0006, + "loss": 3.763094425201416, + "step": 1951 + }, + { + "epoch": 27.111839231105286, + "grad_norm": 0.18394742906093597, + "learning_rate": 0.0006, + "loss": 3.7892322540283203, + "step": 1952 + }, + { + "epoch": 27.125819134993446, + "grad_norm": 0.17878273129463196, + "learning_rate": 0.0006, + "loss": 3.787968158721924, + "step": 1953 + }, + { + "epoch": 27.13979903888161, + "grad_norm": 0.18792171776294708, + "learning_rate": 0.0006, + "loss": 3.7719640731811523, + "step": 1954 + }, + { + "epoch": 27.15377894276977, + "grad_norm": 0.18718759715557098, + "learning_rate": 0.0006, + "loss": 3.791835308074951, + "step": 1955 + }, + { + "epoch": 27.16775884665793, + "grad_norm": 0.18716055154800415, + "learning_rate": 0.0006, + "loss": 3.7490220069885254, + "step": 1956 + }, + { + "epoch": 27.18173875054609, + "grad_norm": 0.18429182469844818, + "learning_rate": 0.0006, + "loss": 3.8020081520080566, + "step": 1957 + }, + { + "epoch": 27.195718654434252, + "grad_norm": 0.18571704626083374, + "learning_rate": 0.0006, + "loss": 3.8152215480804443, + "step": 1958 + }, + { + "epoch": 27.209698558322412, + "grad_norm": 0.1788843423128128, + "learning_rate": 0.0006, + "loss": 3.8173317909240723, + "step": 1959 + }, + { + "epoch": 27.22367846221057, + "grad_norm": 0.20459426939487457, + "learning_rate": 0.0006, + "loss": 3.7760040760040283, + "step": 1960 + }, + { + "epoch": 27.23765836609873, + "grad_norm": 0.22360935807228088, + "learning_rate": 0.0006, + "loss": 3.8140203952789307, + "step": 1961 + }, + { + "epoch": 27.251638269986895, + "grad_norm": 0.2062767595052719, + "learning_rate": 0.0006, + "loss": 3.792001247406006, + "step": 1962 + }, + { + "epoch": 27.265618173875055, + "grad_norm": 0.20628073811531067, + "learning_rate": 0.0006, + "loss": 3.7873167991638184, + "step": 1963 + }, + { + "epoch": 27.279598077763215, + "grad_norm": 0.19888348877429962, + "learning_rate": 0.0006, + "loss": 3.7903614044189453, + "step": 1964 + }, + { + "epoch": 27.293577981651374, + "grad_norm": 0.22033332288265228, + "learning_rate": 0.0006, + "loss": 3.802497148513794, + "step": 1965 + }, + { + "epoch": 27.307557885539538, + "grad_norm": 0.23476941883563995, + "learning_rate": 0.0006, + "loss": 3.794090986251831, + "step": 1966 + }, + { + "epoch": 27.321537789427698, + "grad_norm": 0.19639968872070312, + "learning_rate": 0.0006, + "loss": 3.831794023513794, + "step": 1967 + }, + { + "epoch": 27.335517693315857, + "grad_norm": 0.18169641494750977, + "learning_rate": 0.0006, + "loss": 3.7687768936157227, + "step": 1968 + }, + { + "epoch": 27.34949759720402, + "grad_norm": 0.17781762778759003, + "learning_rate": 0.0006, + "loss": 3.7868471145629883, + "step": 1969 + }, + { + "epoch": 27.36347750109218, + "grad_norm": 0.18990416824817657, + "learning_rate": 0.0006, + "loss": 3.8340392112731934, + "step": 1970 + }, + { + "epoch": 27.37745740498034, + "grad_norm": 0.2031438797712326, + "learning_rate": 0.0006, + "loss": 3.804513454437256, + "step": 1971 + }, + { + "epoch": 27.3914373088685, + "grad_norm": 0.21233421564102173, + "learning_rate": 0.0006, + "loss": 3.7908449172973633, + "step": 1972 + }, + { + "epoch": 27.405417212756664, + "grad_norm": 0.22480927407741547, + "learning_rate": 0.0006, + "loss": 3.7894086837768555, + "step": 1973 + }, + { + "epoch": 27.419397116644824, + "grad_norm": 0.22713422775268555, + "learning_rate": 0.0006, + "loss": 3.826005458831787, + "step": 1974 + }, + { + "epoch": 27.433377020532983, + "grad_norm": 0.21637366712093353, + "learning_rate": 0.0006, + "loss": 3.8232319355010986, + "step": 1975 + }, + { + "epoch": 27.447356924421143, + "grad_norm": 0.24092449247837067, + "learning_rate": 0.0006, + "loss": 3.813279628753662, + "step": 1976 + }, + { + "epoch": 27.461336828309307, + "grad_norm": 0.21143047511577606, + "learning_rate": 0.0006, + "loss": 3.811586856842041, + "step": 1977 + }, + { + "epoch": 27.475316732197467, + "grad_norm": 0.21049432456493378, + "learning_rate": 0.0006, + "loss": 3.8227009773254395, + "step": 1978 + }, + { + "epoch": 27.489296636085626, + "grad_norm": 0.21853850781917572, + "learning_rate": 0.0006, + "loss": 3.7992515563964844, + "step": 1979 + }, + { + "epoch": 27.503276539973786, + "grad_norm": 0.22405001521110535, + "learning_rate": 0.0006, + "loss": 3.8311715126037598, + "step": 1980 + }, + { + "epoch": 27.51725644386195, + "grad_norm": 0.24085809290409088, + "learning_rate": 0.0006, + "loss": 3.801962375640869, + "step": 1981 + }, + { + "epoch": 27.53123634775011, + "grad_norm": 0.2612341642379761, + "learning_rate": 0.0006, + "loss": 3.7867887020111084, + "step": 1982 + }, + { + "epoch": 27.54521625163827, + "grad_norm": 0.25136062502861023, + "learning_rate": 0.0006, + "loss": 3.8302273750305176, + "step": 1983 + }, + { + "epoch": 27.55919615552643, + "grad_norm": 0.2485426515340805, + "learning_rate": 0.0006, + "loss": 3.770616054534912, + "step": 1984 + }, + { + "epoch": 27.573176059414592, + "grad_norm": 0.28883907198905945, + "learning_rate": 0.0006, + "loss": 3.8152146339416504, + "step": 1985 + }, + { + "epoch": 27.587155963302752, + "grad_norm": 0.28177911043167114, + "learning_rate": 0.0006, + "loss": 3.7966861724853516, + "step": 1986 + }, + { + "epoch": 27.601135867190912, + "grad_norm": 0.2573191523551941, + "learning_rate": 0.0006, + "loss": 3.820788621902466, + "step": 1987 + }, + { + "epoch": 27.615115771079076, + "grad_norm": 0.22225657105445862, + "learning_rate": 0.0006, + "loss": 3.778477191925049, + "step": 1988 + }, + { + "epoch": 27.629095674967235, + "grad_norm": 0.20118530094623566, + "learning_rate": 0.0006, + "loss": 3.8416988849639893, + "step": 1989 + }, + { + "epoch": 27.643075578855395, + "grad_norm": 0.21168658137321472, + "learning_rate": 0.0006, + "loss": 3.798020839691162, + "step": 1990 + }, + { + "epoch": 27.657055482743555, + "grad_norm": 0.2460680454969406, + "learning_rate": 0.0006, + "loss": 3.805917263031006, + "step": 1991 + }, + { + "epoch": 27.67103538663172, + "grad_norm": 0.2700909674167633, + "learning_rate": 0.0006, + "loss": 3.8042726516723633, + "step": 1992 + }, + { + "epoch": 27.68501529051988, + "grad_norm": 0.25814294815063477, + "learning_rate": 0.0006, + "loss": 3.799159049987793, + "step": 1993 + }, + { + "epoch": 27.698995194408038, + "grad_norm": 0.2231985628604889, + "learning_rate": 0.0006, + "loss": 3.778750419616699, + "step": 1994 + }, + { + "epoch": 27.712975098296198, + "grad_norm": 0.20807890594005585, + "learning_rate": 0.0006, + "loss": 3.787919044494629, + "step": 1995 + }, + { + "epoch": 27.72695500218436, + "grad_norm": 0.19537150859832764, + "learning_rate": 0.0006, + "loss": 3.7917299270629883, + "step": 1996 + }, + { + "epoch": 27.74093490607252, + "grad_norm": 0.21057647466659546, + "learning_rate": 0.0006, + "loss": 3.8096866607666016, + "step": 1997 + }, + { + "epoch": 27.75491480996068, + "grad_norm": 0.18983247876167297, + "learning_rate": 0.0006, + "loss": 3.7881717681884766, + "step": 1998 + }, + { + "epoch": 27.76889471384884, + "grad_norm": 0.18701069056987762, + "learning_rate": 0.0006, + "loss": 3.810790538787842, + "step": 1999 + }, + { + "epoch": 27.782874617737004, + "grad_norm": 0.1920134723186493, + "learning_rate": 0.0006, + "loss": 3.8161087036132812, + "step": 2000 + }, + { + "epoch": 27.796854521625164, + "grad_norm": 0.20413947105407715, + "learning_rate": 0.0006, + "loss": 3.790499687194824, + "step": 2001 + }, + { + "epoch": 27.810834425513324, + "grad_norm": 0.1920027732849121, + "learning_rate": 0.0006, + "loss": 3.8194262981414795, + "step": 2002 + }, + { + "epoch": 27.824814329401484, + "grad_norm": 0.18630221486091614, + "learning_rate": 0.0006, + "loss": 3.8267152309417725, + "step": 2003 + }, + { + "epoch": 27.838794233289647, + "grad_norm": 0.1787925660610199, + "learning_rate": 0.0006, + "loss": 3.8147521018981934, + "step": 2004 + }, + { + "epoch": 27.852774137177807, + "grad_norm": 0.19187216460704803, + "learning_rate": 0.0006, + "loss": 3.7751095294952393, + "step": 2005 + }, + { + "epoch": 27.866754041065967, + "grad_norm": 0.18825744092464447, + "learning_rate": 0.0006, + "loss": 3.807401657104492, + "step": 2006 + }, + { + "epoch": 27.88073394495413, + "grad_norm": 0.1879836469888687, + "learning_rate": 0.0006, + "loss": 3.8302509784698486, + "step": 2007 + }, + { + "epoch": 27.89471384884229, + "grad_norm": 0.19136391580104828, + "learning_rate": 0.0006, + "loss": 3.7886242866516113, + "step": 2008 + }, + { + "epoch": 27.90869375273045, + "grad_norm": 0.18774119019508362, + "learning_rate": 0.0006, + "loss": 3.8202977180480957, + "step": 2009 + }, + { + "epoch": 27.92267365661861, + "grad_norm": 0.17794452607631683, + "learning_rate": 0.0006, + "loss": 3.813382387161255, + "step": 2010 + }, + { + "epoch": 27.936653560506773, + "grad_norm": 0.1876268833875656, + "learning_rate": 0.0006, + "loss": 3.810610294342041, + "step": 2011 + }, + { + "epoch": 27.950633464394933, + "grad_norm": 0.19262051582336426, + "learning_rate": 0.0006, + "loss": 3.8113245964050293, + "step": 2012 + }, + { + "epoch": 27.964613368283093, + "grad_norm": 0.19371771812438965, + "learning_rate": 0.0006, + "loss": 3.804790496826172, + "step": 2013 + }, + { + "epoch": 27.978593272171253, + "grad_norm": 0.1922861784696579, + "learning_rate": 0.0006, + "loss": 3.8278889656066895, + "step": 2014 + }, + { + "epoch": 27.992573176059416, + "grad_norm": 0.19748565554618835, + "learning_rate": 0.0006, + "loss": 3.8127200603485107, + "step": 2015 + }, + { + "epoch": 28.0, + "grad_norm": 0.25027501583099365, + "learning_rate": 0.0006, + "loss": 3.7899413108825684, + "step": 2016 + }, + { + "epoch": 28.0, + "eval_loss": 4.047704219818115, + "eval_runtime": 44.293, + "eval_samples_per_second": 55.133, + "eval_steps_per_second": 3.454, + "step": 2016 + }, + { + "epoch": 28.01397990388816, + "grad_norm": 0.25172367691993713, + "learning_rate": 0.0006, + "loss": 3.75449538230896, + "step": 2017 + }, + { + "epoch": 28.027959807776323, + "grad_norm": 0.23494598269462585, + "learning_rate": 0.0006, + "loss": 3.7609024047851562, + "step": 2018 + }, + { + "epoch": 28.041939711664483, + "grad_norm": 0.22459708154201508, + "learning_rate": 0.0006, + "loss": 3.7843551635742188, + "step": 2019 + }, + { + "epoch": 28.055919615552643, + "grad_norm": 0.2038632035255432, + "learning_rate": 0.0006, + "loss": 3.7818198204040527, + "step": 2020 + }, + { + "epoch": 28.069899519440803, + "grad_norm": 0.22050008177757263, + "learning_rate": 0.0006, + "loss": 3.787442684173584, + "step": 2021 + }, + { + "epoch": 28.083879423328966, + "grad_norm": 0.24645832180976868, + "learning_rate": 0.0006, + "loss": 3.768704414367676, + "step": 2022 + }, + { + "epoch": 28.097859327217126, + "grad_norm": 0.2440163493156433, + "learning_rate": 0.0006, + "loss": 3.7783756256103516, + "step": 2023 + }, + { + "epoch": 28.111839231105286, + "grad_norm": 0.2482181042432785, + "learning_rate": 0.0006, + "loss": 3.786881923675537, + "step": 2024 + }, + { + "epoch": 28.125819134993446, + "grad_norm": 0.23494760692119598, + "learning_rate": 0.0006, + "loss": 3.790039300918579, + "step": 2025 + }, + { + "epoch": 28.13979903888161, + "grad_norm": 0.2172182947397232, + "learning_rate": 0.0006, + "loss": 3.818756580352783, + "step": 2026 + }, + { + "epoch": 28.15377894276977, + "grad_norm": 0.2103179395198822, + "learning_rate": 0.0006, + "loss": 3.7768917083740234, + "step": 2027 + }, + { + "epoch": 28.16775884665793, + "grad_norm": 0.22322365641593933, + "learning_rate": 0.0006, + "loss": 3.8223648071289062, + "step": 2028 + }, + { + "epoch": 28.18173875054609, + "grad_norm": 0.24199382960796356, + "learning_rate": 0.0006, + "loss": 3.781357765197754, + "step": 2029 + }, + { + "epoch": 28.195718654434252, + "grad_norm": 0.2500663101673126, + "learning_rate": 0.0006, + "loss": 3.8061184883117676, + "step": 2030 + }, + { + "epoch": 28.209698558322412, + "grad_norm": 0.2439824491739273, + "learning_rate": 0.0006, + "loss": 3.7886464595794678, + "step": 2031 + }, + { + "epoch": 28.22367846221057, + "grad_norm": 0.24563106894493103, + "learning_rate": 0.0006, + "loss": 3.7901692390441895, + "step": 2032 + }, + { + "epoch": 28.23765836609873, + "grad_norm": 0.2287624627351761, + "learning_rate": 0.0006, + "loss": 3.789931058883667, + "step": 2033 + }, + { + "epoch": 28.251638269986895, + "grad_norm": 0.2231188714504242, + "learning_rate": 0.0006, + "loss": 3.7879133224487305, + "step": 2034 + }, + { + "epoch": 28.265618173875055, + "grad_norm": 0.23090387880802155, + "learning_rate": 0.0006, + "loss": 3.7826130390167236, + "step": 2035 + }, + { + "epoch": 28.279598077763215, + "grad_norm": 0.216018944978714, + "learning_rate": 0.0006, + "loss": 3.7764949798583984, + "step": 2036 + }, + { + "epoch": 28.293577981651374, + "grad_norm": 0.22649185359477997, + "learning_rate": 0.0006, + "loss": 3.7911291122436523, + "step": 2037 + }, + { + "epoch": 28.307557885539538, + "grad_norm": 0.2350836843252182, + "learning_rate": 0.0006, + "loss": 3.7668724060058594, + "step": 2038 + }, + { + "epoch": 28.321537789427698, + "grad_norm": 0.23206329345703125, + "learning_rate": 0.0006, + "loss": 3.782243251800537, + "step": 2039 + }, + { + "epoch": 28.335517693315857, + "grad_norm": 0.21896308660507202, + "learning_rate": 0.0006, + "loss": 3.7605721950531006, + "step": 2040 + }, + { + "epoch": 28.34949759720402, + "grad_norm": 0.20381200313568115, + "learning_rate": 0.0006, + "loss": 3.743945598602295, + "step": 2041 + }, + { + "epoch": 28.36347750109218, + "grad_norm": 0.19196000695228577, + "learning_rate": 0.0006, + "loss": 3.808107852935791, + "step": 2042 + }, + { + "epoch": 28.37745740498034, + "grad_norm": 0.19517889618873596, + "learning_rate": 0.0006, + "loss": 3.7906723022460938, + "step": 2043 + }, + { + "epoch": 28.3914373088685, + "grad_norm": 0.20455795526504517, + "learning_rate": 0.0006, + "loss": 3.7421011924743652, + "step": 2044 + }, + { + "epoch": 28.405417212756664, + "grad_norm": 0.1867467314004898, + "learning_rate": 0.0006, + "loss": 3.775509834289551, + "step": 2045 + }, + { + "epoch": 28.419397116644824, + "grad_norm": 0.2029324471950531, + "learning_rate": 0.0006, + "loss": 3.771353244781494, + "step": 2046 + }, + { + "epoch": 28.433377020532983, + "grad_norm": 0.19967497885227203, + "learning_rate": 0.0006, + "loss": 3.7821149826049805, + "step": 2047 + }, + { + "epoch": 28.447356924421143, + "grad_norm": 0.19440607726573944, + "learning_rate": 0.0006, + "loss": 3.8114213943481445, + "step": 2048 + }, + { + "epoch": 28.461336828309307, + "grad_norm": 0.19679802656173706, + "learning_rate": 0.0006, + "loss": 3.7699532508850098, + "step": 2049 + }, + { + "epoch": 28.475316732197467, + "grad_norm": 0.1939811110496521, + "learning_rate": 0.0006, + "loss": 3.7673027515411377, + "step": 2050 + }, + { + "epoch": 28.489296636085626, + "grad_norm": 0.18712401390075684, + "learning_rate": 0.0006, + "loss": 3.816699266433716, + "step": 2051 + }, + { + "epoch": 28.503276539973786, + "grad_norm": 0.202956885099411, + "learning_rate": 0.0006, + "loss": 3.7746071815490723, + "step": 2052 + }, + { + "epoch": 28.51725644386195, + "grad_norm": 0.19098156690597534, + "learning_rate": 0.0006, + "loss": 3.8065481185913086, + "step": 2053 + }, + { + "epoch": 28.53123634775011, + "grad_norm": 0.21144428849220276, + "learning_rate": 0.0006, + "loss": 3.7890982627868652, + "step": 2054 + }, + { + "epoch": 28.54521625163827, + "grad_norm": 0.21882614493370056, + "learning_rate": 0.0006, + "loss": 3.8168821334838867, + "step": 2055 + }, + { + "epoch": 28.55919615552643, + "grad_norm": 0.22200101613998413, + "learning_rate": 0.0006, + "loss": 3.804454803466797, + "step": 2056 + }, + { + "epoch": 28.573176059414592, + "grad_norm": 0.22404780983924866, + "learning_rate": 0.0006, + "loss": 3.808764934539795, + "step": 2057 + }, + { + "epoch": 28.587155963302752, + "grad_norm": 0.22770099341869354, + "learning_rate": 0.0006, + "loss": 3.74835467338562, + "step": 2058 + }, + { + "epoch": 28.601135867190912, + "grad_norm": 0.23214420676231384, + "learning_rate": 0.0006, + "loss": 3.7480111122131348, + "step": 2059 + }, + { + "epoch": 28.615115771079076, + "grad_norm": 0.21786348521709442, + "learning_rate": 0.0006, + "loss": 3.8095176219940186, + "step": 2060 + }, + { + "epoch": 28.629095674967235, + "grad_norm": 0.21004106104373932, + "learning_rate": 0.0006, + "loss": 3.792745590209961, + "step": 2061 + }, + { + "epoch": 28.643075578855395, + "grad_norm": 0.21076138317584991, + "learning_rate": 0.0006, + "loss": 3.7878952026367188, + "step": 2062 + }, + { + "epoch": 28.657055482743555, + "grad_norm": 0.2184346616268158, + "learning_rate": 0.0006, + "loss": 3.757188320159912, + "step": 2063 + }, + { + "epoch": 28.67103538663172, + "grad_norm": 0.22100569307804108, + "learning_rate": 0.0006, + "loss": 3.8131773471832275, + "step": 2064 + }, + { + "epoch": 28.68501529051988, + "grad_norm": 0.23257511854171753, + "learning_rate": 0.0006, + "loss": 3.793826103210449, + "step": 2065 + }, + { + "epoch": 28.698995194408038, + "grad_norm": 0.22312869131565094, + "learning_rate": 0.0006, + "loss": 3.782083749771118, + "step": 2066 + }, + { + "epoch": 28.712975098296198, + "grad_norm": 0.2318405956029892, + "learning_rate": 0.0006, + "loss": 3.7814879417419434, + "step": 2067 + }, + { + "epoch": 28.72695500218436, + "grad_norm": 0.23719379305839539, + "learning_rate": 0.0006, + "loss": 3.8320484161376953, + "step": 2068 + }, + { + "epoch": 28.74093490607252, + "grad_norm": 0.23100806772708893, + "learning_rate": 0.0006, + "loss": 3.7921783924102783, + "step": 2069 + }, + { + "epoch": 28.75491480996068, + "grad_norm": 0.21540866792201996, + "learning_rate": 0.0006, + "loss": 3.8325204849243164, + "step": 2070 + }, + { + "epoch": 28.76889471384884, + "grad_norm": 0.2698654532432556, + "learning_rate": 0.0006, + "loss": 3.7965879440307617, + "step": 2071 + }, + { + "epoch": 28.782874617737004, + "grad_norm": 0.3101225793361664, + "learning_rate": 0.0006, + "loss": 3.78842830657959, + "step": 2072 + }, + { + "epoch": 28.796854521625164, + "grad_norm": 0.2607600688934326, + "learning_rate": 0.0006, + "loss": 3.770064115524292, + "step": 2073 + }, + { + "epoch": 28.810834425513324, + "grad_norm": 0.20558302104473114, + "learning_rate": 0.0006, + "loss": 3.7448501586914062, + "step": 2074 + }, + { + "epoch": 28.824814329401484, + "grad_norm": 0.20030120015144348, + "learning_rate": 0.0006, + "loss": 3.7689406871795654, + "step": 2075 + }, + { + "epoch": 28.838794233289647, + "grad_norm": 0.21781118214130402, + "learning_rate": 0.0006, + "loss": 3.7682244777679443, + "step": 2076 + }, + { + "epoch": 28.852774137177807, + "grad_norm": 0.23543044924736023, + "learning_rate": 0.0006, + "loss": 3.8094193935394287, + "step": 2077 + }, + { + "epoch": 28.866754041065967, + "grad_norm": 0.21634669601917267, + "learning_rate": 0.0006, + "loss": 3.792099952697754, + "step": 2078 + }, + { + "epoch": 28.88073394495413, + "grad_norm": 0.2251661866903305, + "learning_rate": 0.0006, + "loss": 3.7849509716033936, + "step": 2079 + }, + { + "epoch": 28.89471384884229, + "grad_norm": 0.23872914910316467, + "learning_rate": 0.0006, + "loss": 3.8391621112823486, + "step": 2080 + }, + { + "epoch": 28.90869375273045, + "grad_norm": 0.22259248793125153, + "learning_rate": 0.0006, + "loss": 3.8272876739501953, + "step": 2081 + }, + { + "epoch": 28.92267365661861, + "grad_norm": 0.22052262723445892, + "learning_rate": 0.0006, + "loss": 3.7986836433410645, + "step": 2082 + }, + { + "epoch": 28.936653560506773, + "grad_norm": 0.24487647414207458, + "learning_rate": 0.0006, + "loss": 3.798004150390625, + "step": 2083 + }, + { + "epoch": 28.950633464394933, + "grad_norm": 0.22992238402366638, + "learning_rate": 0.0006, + "loss": 3.788522720336914, + "step": 2084 + }, + { + "epoch": 28.964613368283093, + "grad_norm": 0.22521597146987915, + "learning_rate": 0.0006, + "loss": 3.767259120941162, + "step": 2085 + }, + { + "epoch": 28.978593272171253, + "grad_norm": 0.2201499044895172, + "learning_rate": 0.0006, + "loss": 3.7850542068481445, + "step": 2086 + }, + { + "epoch": 28.992573176059416, + "grad_norm": 0.22226814925670624, + "learning_rate": 0.0006, + "loss": 3.8013534545898438, + "step": 2087 + }, + { + "epoch": 29.0, + "grad_norm": 0.27624809741973877, + "learning_rate": 0.0006, + "loss": 3.762004852294922, + "step": 2088 + }, + { + "epoch": 29.0, + "eval_loss": 4.034304618835449, + "eval_runtime": 44.6573, + "eval_samples_per_second": 54.683, + "eval_steps_per_second": 3.426, + "step": 2088 + }, + { + "epoch": 29.01397990388816, + "grad_norm": 0.2550967037677765, + "learning_rate": 0.0006, + "loss": 3.7724227905273438, + "step": 2089 + }, + { + "epoch": 29.027959807776323, + "grad_norm": 0.26730602979660034, + "learning_rate": 0.0006, + "loss": 3.7728946208953857, + "step": 2090 + }, + { + "epoch": 29.041939711664483, + "grad_norm": 0.2394205927848816, + "learning_rate": 0.0006, + "loss": 3.7737584114074707, + "step": 2091 + }, + { + "epoch": 29.055919615552643, + "grad_norm": 0.22488200664520264, + "learning_rate": 0.0006, + "loss": 3.761014938354492, + "step": 2092 + }, + { + "epoch": 29.069899519440803, + "grad_norm": 0.2389903962612152, + "learning_rate": 0.0006, + "loss": 3.766557216644287, + "step": 2093 + }, + { + "epoch": 29.083879423328966, + "grad_norm": 0.234152153134346, + "learning_rate": 0.0006, + "loss": 3.7447147369384766, + "step": 2094 + }, + { + "epoch": 29.097859327217126, + "grad_norm": 0.23123252391815186, + "learning_rate": 0.0006, + "loss": 3.77197527885437, + "step": 2095 + }, + { + "epoch": 29.111839231105286, + "grad_norm": 0.23263143002986908, + "learning_rate": 0.0006, + "loss": 3.7390198707580566, + "step": 2096 + }, + { + "epoch": 29.125819134993446, + "grad_norm": 0.23235775530338287, + "learning_rate": 0.0006, + "loss": 3.7675256729125977, + "step": 2097 + }, + { + "epoch": 29.13979903888161, + "grad_norm": 0.2208816260099411, + "learning_rate": 0.0006, + "loss": 3.7588067054748535, + "step": 2098 + }, + { + "epoch": 29.15377894276977, + "grad_norm": 0.21216371655464172, + "learning_rate": 0.0006, + "loss": 3.7370502948760986, + "step": 2099 + }, + { + "epoch": 29.16775884665793, + "grad_norm": 0.2210543155670166, + "learning_rate": 0.0006, + "loss": 3.767308473587036, + "step": 2100 + }, + { + "epoch": 29.18173875054609, + "grad_norm": 0.21628431975841522, + "learning_rate": 0.0006, + "loss": 3.7298972606658936, + "step": 2101 + }, + { + "epoch": 29.195718654434252, + "grad_norm": 0.21493588387966156, + "learning_rate": 0.0006, + "loss": 3.7806448936462402, + "step": 2102 + }, + { + "epoch": 29.209698558322412, + "grad_norm": 0.25978055596351624, + "learning_rate": 0.0006, + "loss": 3.7716293334960938, + "step": 2103 + }, + { + "epoch": 29.22367846221057, + "grad_norm": 0.2744791507720947, + "learning_rate": 0.0006, + "loss": 3.76897931098938, + "step": 2104 + }, + { + "epoch": 29.23765836609873, + "grad_norm": 0.22959400713443756, + "learning_rate": 0.0006, + "loss": 3.7545714378356934, + "step": 2105 + }, + { + "epoch": 29.251638269986895, + "grad_norm": 0.20369231700897217, + "learning_rate": 0.0006, + "loss": 3.7944722175598145, + "step": 2106 + }, + { + "epoch": 29.265618173875055, + "grad_norm": 0.21663758158683777, + "learning_rate": 0.0006, + "loss": 3.7564756870269775, + "step": 2107 + }, + { + "epoch": 29.279598077763215, + "grad_norm": 0.21862861514091492, + "learning_rate": 0.0006, + "loss": 3.7722725868225098, + "step": 2108 + }, + { + "epoch": 29.293577981651374, + "grad_norm": 0.2044878453016281, + "learning_rate": 0.0006, + "loss": 3.7471303939819336, + "step": 2109 + }, + { + "epoch": 29.307557885539538, + "grad_norm": 0.23015929758548737, + "learning_rate": 0.0006, + "loss": 3.7584962844848633, + "step": 2110 + }, + { + "epoch": 29.321537789427698, + "grad_norm": 0.22548329830169678, + "learning_rate": 0.0006, + "loss": 3.795933723449707, + "step": 2111 + }, + { + "epoch": 29.335517693315857, + "grad_norm": 0.2000468522310257, + "learning_rate": 0.0006, + "loss": 3.766310691833496, + "step": 2112 + }, + { + "epoch": 29.34949759720402, + "grad_norm": 0.19711551070213318, + "learning_rate": 0.0006, + "loss": 3.7296276092529297, + "step": 2113 + }, + { + "epoch": 29.36347750109218, + "grad_norm": 0.18838997185230255, + "learning_rate": 0.0006, + "loss": 3.7685282230377197, + "step": 2114 + }, + { + "epoch": 29.37745740498034, + "grad_norm": 0.1897876113653183, + "learning_rate": 0.0006, + "loss": 3.7280936241149902, + "step": 2115 + }, + { + "epoch": 29.3914373088685, + "grad_norm": 0.21697933971881866, + "learning_rate": 0.0006, + "loss": 3.7991929054260254, + "step": 2116 + }, + { + "epoch": 29.405417212756664, + "grad_norm": 0.23445849120616913, + "learning_rate": 0.0006, + "loss": 3.7857418060302734, + "step": 2117 + }, + { + "epoch": 29.419397116644824, + "grad_norm": 0.24155527353286743, + "learning_rate": 0.0006, + "loss": 3.7897872924804688, + "step": 2118 + }, + { + "epoch": 29.433377020532983, + "grad_norm": 0.2610265016555786, + "learning_rate": 0.0006, + "loss": 3.7867324352264404, + "step": 2119 + }, + { + "epoch": 29.447356924421143, + "grad_norm": 0.2809581160545349, + "learning_rate": 0.0006, + "loss": 3.783799648284912, + "step": 2120 + }, + { + "epoch": 29.461336828309307, + "grad_norm": 0.2621572017669678, + "learning_rate": 0.0006, + "loss": 3.7778549194335938, + "step": 2121 + }, + { + "epoch": 29.475316732197467, + "grad_norm": 0.26002970337867737, + "learning_rate": 0.0006, + "loss": 3.787945508956909, + "step": 2122 + }, + { + "epoch": 29.489296636085626, + "grad_norm": 0.24866686761379242, + "learning_rate": 0.0006, + "loss": 3.7406349182128906, + "step": 2123 + }, + { + "epoch": 29.503276539973786, + "grad_norm": 0.25588324666023254, + "learning_rate": 0.0006, + "loss": 3.785625457763672, + "step": 2124 + }, + { + "epoch": 29.51725644386195, + "grad_norm": 0.24724243581295013, + "learning_rate": 0.0006, + "loss": 3.7581701278686523, + "step": 2125 + }, + { + "epoch": 29.53123634775011, + "grad_norm": 0.23544734716415405, + "learning_rate": 0.0006, + "loss": 3.8163957595825195, + "step": 2126 + }, + { + "epoch": 29.54521625163827, + "grad_norm": 0.2108801156282425, + "learning_rate": 0.0006, + "loss": 3.7881739139556885, + "step": 2127 + }, + { + "epoch": 29.55919615552643, + "grad_norm": 0.20459668338298798, + "learning_rate": 0.0006, + "loss": 3.7641284465789795, + "step": 2128 + }, + { + "epoch": 29.573176059414592, + "grad_norm": 0.24020728468894958, + "learning_rate": 0.0006, + "loss": 3.7748730182647705, + "step": 2129 + }, + { + "epoch": 29.587155963302752, + "grad_norm": 0.256273478269577, + "learning_rate": 0.0006, + "loss": 3.8076486587524414, + "step": 2130 + }, + { + "epoch": 29.601135867190912, + "grad_norm": 0.23295973241329193, + "learning_rate": 0.0006, + "loss": 3.7687063217163086, + "step": 2131 + }, + { + "epoch": 29.615115771079076, + "grad_norm": 0.21554847061634064, + "learning_rate": 0.0006, + "loss": 3.781867027282715, + "step": 2132 + }, + { + "epoch": 29.629095674967235, + "grad_norm": 0.20645774900913239, + "learning_rate": 0.0006, + "loss": 3.7813425064086914, + "step": 2133 + }, + { + "epoch": 29.643075578855395, + "grad_norm": 0.2018265724182129, + "learning_rate": 0.0006, + "loss": 3.772895574569702, + "step": 2134 + }, + { + "epoch": 29.657055482743555, + "grad_norm": 0.20170100033283234, + "learning_rate": 0.0006, + "loss": 3.7819175720214844, + "step": 2135 + }, + { + "epoch": 29.67103538663172, + "grad_norm": 0.22640688717365265, + "learning_rate": 0.0006, + "loss": 3.7999017238616943, + "step": 2136 + }, + { + "epoch": 29.68501529051988, + "grad_norm": 0.23747675120830536, + "learning_rate": 0.0006, + "loss": 3.804999828338623, + "step": 2137 + }, + { + "epoch": 29.698995194408038, + "grad_norm": 0.20005857944488525, + "learning_rate": 0.0006, + "loss": 3.7815160751342773, + "step": 2138 + }, + { + "epoch": 29.712975098296198, + "grad_norm": 0.17901667952537537, + "learning_rate": 0.0006, + "loss": 3.7898688316345215, + "step": 2139 + }, + { + "epoch": 29.72695500218436, + "grad_norm": 0.1890905797481537, + "learning_rate": 0.0006, + "loss": 3.8001184463500977, + "step": 2140 + }, + { + "epoch": 29.74093490607252, + "grad_norm": 0.19565847516059875, + "learning_rate": 0.0006, + "loss": 3.7522482872009277, + "step": 2141 + }, + { + "epoch": 29.75491480996068, + "grad_norm": 0.19429196417331696, + "learning_rate": 0.0006, + "loss": 3.768972158432007, + "step": 2142 + }, + { + "epoch": 29.76889471384884, + "grad_norm": 0.23846636712551117, + "learning_rate": 0.0006, + "loss": 3.765216112136841, + "step": 2143 + }, + { + "epoch": 29.782874617737004, + "grad_norm": 0.23820780217647552, + "learning_rate": 0.0006, + "loss": 3.8027703762054443, + "step": 2144 + }, + { + "epoch": 29.796854521625164, + "grad_norm": 0.21104726195335388, + "learning_rate": 0.0006, + "loss": 3.7682833671569824, + "step": 2145 + }, + { + "epoch": 29.810834425513324, + "grad_norm": 0.1911051720380783, + "learning_rate": 0.0006, + "loss": 3.781782627105713, + "step": 2146 + }, + { + "epoch": 29.824814329401484, + "grad_norm": 0.18881288170814514, + "learning_rate": 0.0006, + "loss": 3.7703428268432617, + "step": 2147 + }, + { + "epoch": 29.838794233289647, + "grad_norm": 0.18292994797229767, + "learning_rate": 0.0006, + "loss": 3.769176721572876, + "step": 2148 + }, + { + "epoch": 29.852774137177807, + "grad_norm": 0.1777714639902115, + "learning_rate": 0.0006, + "loss": 3.7488298416137695, + "step": 2149 + }, + { + "epoch": 29.866754041065967, + "grad_norm": 0.2037898749113083, + "learning_rate": 0.0006, + "loss": 3.804396390914917, + "step": 2150 + }, + { + "epoch": 29.88073394495413, + "grad_norm": 0.2121828943490982, + "learning_rate": 0.0006, + "loss": 3.75870943069458, + "step": 2151 + }, + { + "epoch": 29.89471384884229, + "grad_norm": 0.23231184482574463, + "learning_rate": 0.0006, + "loss": 3.80178165435791, + "step": 2152 + }, + { + "epoch": 29.90869375273045, + "grad_norm": 0.24045611917972565, + "learning_rate": 0.0006, + "loss": 3.7690834999084473, + "step": 2153 + }, + { + "epoch": 29.92267365661861, + "grad_norm": 0.19830496609210968, + "learning_rate": 0.0006, + "loss": 3.764401912689209, + "step": 2154 + }, + { + "epoch": 29.936653560506773, + "grad_norm": 0.17704227566719055, + "learning_rate": 0.0006, + "loss": 3.7634594440460205, + "step": 2155 + }, + { + "epoch": 29.950633464394933, + "grad_norm": 0.17783164978027344, + "learning_rate": 0.0006, + "loss": 3.7856998443603516, + "step": 2156 + }, + { + "epoch": 29.964613368283093, + "grad_norm": 0.19684971868991852, + "learning_rate": 0.0006, + "loss": 3.805774211883545, + "step": 2157 + }, + { + "epoch": 29.978593272171253, + "grad_norm": 0.21662312746047974, + "learning_rate": 0.0006, + "loss": 3.757896661758423, + "step": 2158 + }, + { + "epoch": 29.992573176059416, + "grad_norm": 0.22000661492347717, + "learning_rate": 0.0006, + "loss": 3.7747678756713867, + "step": 2159 + }, + { + "epoch": 30.0, + "grad_norm": 0.21501901745796204, + "learning_rate": 0.0006, + "loss": 3.785585880279541, + "step": 2160 + }, + { + "epoch": 30.0, + "eval_loss": 4.034003734588623, + "eval_runtime": 44.9097, + "eval_samples_per_second": 54.376, + "eval_steps_per_second": 3.407, + "step": 2160 + }, + { + "epoch": 30.01397990388816, + "grad_norm": 0.19710904359817505, + "learning_rate": 0.0006, + "loss": 3.756235122680664, + "step": 2161 + }, + { + "epoch": 30.027959807776323, + "grad_norm": 0.19829736649990082, + "learning_rate": 0.0006, + "loss": 3.734067916870117, + "step": 2162 + }, + { + "epoch": 30.041939711664483, + "grad_norm": 0.21622520685195923, + "learning_rate": 0.0006, + "loss": 3.7329437732696533, + "step": 2163 + }, + { + "epoch": 30.055919615552643, + "grad_norm": 0.22544652223587036, + "learning_rate": 0.0006, + "loss": 3.748716354370117, + "step": 2164 + }, + { + "epoch": 30.069899519440803, + "grad_norm": 0.21098364889621735, + "learning_rate": 0.0006, + "loss": 3.779047727584839, + "step": 2165 + }, + { + "epoch": 30.083879423328966, + "grad_norm": 0.21309930086135864, + "learning_rate": 0.0006, + "loss": 3.7690274715423584, + "step": 2166 + }, + { + "epoch": 30.097859327217126, + "grad_norm": 0.23025690019130707, + "learning_rate": 0.0006, + "loss": 3.7500953674316406, + "step": 2167 + }, + { + "epoch": 30.111839231105286, + "grad_norm": 0.25107935070991516, + "learning_rate": 0.0006, + "loss": 3.745492458343506, + "step": 2168 + }, + { + "epoch": 30.125819134993446, + "grad_norm": 0.29873573780059814, + "learning_rate": 0.0006, + "loss": 3.759793758392334, + "step": 2169 + }, + { + "epoch": 30.13979903888161, + "grad_norm": 0.2810286283493042, + "learning_rate": 0.0006, + "loss": 3.772998809814453, + "step": 2170 + }, + { + "epoch": 30.15377894276977, + "grad_norm": 0.2102176398038864, + "learning_rate": 0.0006, + "loss": 3.740170955657959, + "step": 2171 + }, + { + "epoch": 30.16775884665793, + "grad_norm": 0.24143251776695251, + "learning_rate": 0.0006, + "loss": 3.7317001819610596, + "step": 2172 + }, + { + "epoch": 30.18173875054609, + "grad_norm": 0.2643064558506012, + "learning_rate": 0.0006, + "loss": 3.773263692855835, + "step": 2173 + }, + { + "epoch": 30.195718654434252, + "grad_norm": 0.27571243047714233, + "learning_rate": 0.0006, + "loss": 3.7619900703430176, + "step": 2174 + }, + { + "epoch": 30.209698558322412, + "grad_norm": 0.25359588861465454, + "learning_rate": 0.0006, + "loss": 3.7608513832092285, + "step": 2175 + }, + { + "epoch": 30.22367846221057, + "grad_norm": 0.2500684857368469, + "learning_rate": 0.0006, + "loss": 3.75856614112854, + "step": 2176 + }, + { + "epoch": 30.23765836609873, + "grad_norm": 0.23100309073925018, + "learning_rate": 0.0006, + "loss": 3.749786853790283, + "step": 2177 + }, + { + "epoch": 30.251638269986895, + "grad_norm": 0.24384984374046326, + "learning_rate": 0.0006, + "loss": 3.762244701385498, + "step": 2178 + }, + { + "epoch": 30.265618173875055, + "grad_norm": 0.24593998491764069, + "learning_rate": 0.0006, + "loss": 3.754594326019287, + "step": 2179 + }, + { + "epoch": 30.279598077763215, + "grad_norm": 0.2529342770576477, + "learning_rate": 0.0006, + "loss": 3.7641053199768066, + "step": 2180 + }, + { + "epoch": 30.293577981651374, + "grad_norm": 0.25954094529151917, + "learning_rate": 0.0006, + "loss": 3.810336112976074, + "step": 2181 + }, + { + "epoch": 30.307557885539538, + "grad_norm": 0.2249951958656311, + "learning_rate": 0.0006, + "loss": 3.7542617321014404, + "step": 2182 + }, + { + "epoch": 30.321537789427698, + "grad_norm": 0.19795064628124237, + "learning_rate": 0.0006, + "loss": 3.7734434604644775, + "step": 2183 + }, + { + "epoch": 30.335517693315857, + "grad_norm": 0.20744608342647552, + "learning_rate": 0.0006, + "loss": 3.7816128730773926, + "step": 2184 + }, + { + "epoch": 30.34949759720402, + "grad_norm": 0.19988055527210236, + "learning_rate": 0.0006, + "loss": 3.7631936073303223, + "step": 2185 + }, + { + "epoch": 30.36347750109218, + "grad_norm": 0.22226445376873016, + "learning_rate": 0.0006, + "loss": 3.762910842895508, + "step": 2186 + }, + { + "epoch": 30.37745740498034, + "grad_norm": 0.21986067295074463, + "learning_rate": 0.0006, + "loss": 3.733893394470215, + "step": 2187 + }, + { + "epoch": 30.3914373088685, + "grad_norm": 0.2170228660106659, + "learning_rate": 0.0006, + "loss": 3.726433515548706, + "step": 2188 + }, + { + "epoch": 30.405417212756664, + "grad_norm": 0.2179550975561142, + "learning_rate": 0.0006, + "loss": 3.792311668395996, + "step": 2189 + }, + { + "epoch": 30.419397116644824, + "grad_norm": 0.208037331700325, + "learning_rate": 0.0006, + "loss": 3.774639129638672, + "step": 2190 + }, + { + "epoch": 30.433377020532983, + "grad_norm": 0.20745441317558289, + "learning_rate": 0.0006, + "loss": 3.776130199432373, + "step": 2191 + }, + { + "epoch": 30.447356924421143, + "grad_norm": 0.1988024264574051, + "learning_rate": 0.0006, + "loss": 3.7453784942626953, + "step": 2192 + }, + { + "epoch": 30.461336828309307, + "grad_norm": 0.194968581199646, + "learning_rate": 0.0006, + "loss": 3.764653205871582, + "step": 2193 + }, + { + "epoch": 30.475316732197467, + "grad_norm": 0.20658300817012787, + "learning_rate": 0.0006, + "loss": 3.796513080596924, + "step": 2194 + }, + { + "epoch": 30.489296636085626, + "grad_norm": 0.2123410701751709, + "learning_rate": 0.0006, + "loss": 3.7630836963653564, + "step": 2195 + }, + { + "epoch": 30.503276539973786, + "grad_norm": 0.20894059538841248, + "learning_rate": 0.0006, + "loss": 3.7265470027923584, + "step": 2196 + }, + { + "epoch": 30.51725644386195, + "grad_norm": 0.2016828954219818, + "learning_rate": 0.0006, + "loss": 3.8083386421203613, + "step": 2197 + }, + { + "epoch": 30.53123634775011, + "grad_norm": 0.19584205746650696, + "learning_rate": 0.0006, + "loss": 3.7492105960845947, + "step": 2198 + }, + { + "epoch": 30.54521625163827, + "grad_norm": 0.18635272979736328, + "learning_rate": 0.0006, + "loss": 3.711009979248047, + "step": 2199 + }, + { + "epoch": 30.55919615552643, + "grad_norm": 0.1920594871044159, + "learning_rate": 0.0006, + "loss": 3.760801315307617, + "step": 2200 + }, + { + "epoch": 30.573176059414592, + "grad_norm": 0.1978331208229065, + "learning_rate": 0.0006, + "loss": 3.780529022216797, + "step": 2201 + }, + { + "epoch": 30.587155963302752, + "grad_norm": 0.20076943933963776, + "learning_rate": 0.0006, + "loss": 3.7767038345336914, + "step": 2202 + }, + { + "epoch": 30.601135867190912, + "grad_norm": 0.2067444622516632, + "learning_rate": 0.0006, + "loss": 3.7607920169830322, + "step": 2203 + }, + { + "epoch": 30.615115771079076, + "grad_norm": 0.2081940472126007, + "learning_rate": 0.0006, + "loss": 3.741936206817627, + "step": 2204 + }, + { + "epoch": 30.629095674967235, + "grad_norm": 0.21212869882583618, + "learning_rate": 0.0006, + "loss": 3.7597827911376953, + "step": 2205 + }, + { + "epoch": 30.643075578855395, + "grad_norm": 0.21539026498794556, + "learning_rate": 0.0006, + "loss": 3.764646053314209, + "step": 2206 + }, + { + "epoch": 30.657055482743555, + "grad_norm": 0.19788387417793274, + "learning_rate": 0.0006, + "loss": 3.7535128593444824, + "step": 2207 + }, + { + "epoch": 30.67103538663172, + "grad_norm": 0.20757688581943512, + "learning_rate": 0.0006, + "loss": 3.7414169311523438, + "step": 2208 + }, + { + "epoch": 30.68501529051988, + "grad_norm": 0.199361652135849, + "learning_rate": 0.0006, + "loss": 3.7578506469726562, + "step": 2209 + }, + { + "epoch": 30.698995194408038, + "grad_norm": 0.1909894198179245, + "learning_rate": 0.0006, + "loss": 3.736250400543213, + "step": 2210 + }, + { + "epoch": 30.712975098296198, + "grad_norm": 0.19766664505004883, + "learning_rate": 0.0006, + "loss": 3.7435379028320312, + "step": 2211 + }, + { + "epoch": 30.72695500218436, + "grad_norm": 0.21857766807079315, + "learning_rate": 0.0006, + "loss": 3.7478690147399902, + "step": 2212 + }, + { + "epoch": 30.74093490607252, + "grad_norm": 0.22385898232460022, + "learning_rate": 0.0006, + "loss": 3.7522530555725098, + "step": 2213 + }, + { + "epoch": 30.75491480996068, + "grad_norm": 0.2329241931438446, + "learning_rate": 0.0006, + "loss": 3.7568247318267822, + "step": 2214 + }, + { + "epoch": 30.76889471384884, + "grad_norm": 0.2218400090932846, + "learning_rate": 0.0006, + "loss": 3.7662744522094727, + "step": 2215 + }, + { + "epoch": 30.782874617737004, + "grad_norm": 0.21350212395191193, + "learning_rate": 0.0006, + "loss": 3.7683777809143066, + "step": 2216 + }, + { + "epoch": 30.796854521625164, + "grad_norm": 0.22357074916362762, + "learning_rate": 0.0006, + "loss": 3.763437032699585, + "step": 2217 + }, + { + "epoch": 30.810834425513324, + "grad_norm": 0.22268560528755188, + "learning_rate": 0.0006, + "loss": 3.772836685180664, + "step": 2218 + }, + { + "epoch": 30.824814329401484, + "grad_norm": 0.2434026449918747, + "learning_rate": 0.0006, + "loss": 3.752986431121826, + "step": 2219 + }, + { + "epoch": 30.838794233289647, + "grad_norm": 0.2298414409160614, + "learning_rate": 0.0006, + "loss": 3.7837061882019043, + "step": 2220 + }, + { + "epoch": 30.852774137177807, + "grad_norm": 0.227672278881073, + "learning_rate": 0.0006, + "loss": 3.746065378189087, + "step": 2221 + }, + { + "epoch": 30.866754041065967, + "grad_norm": 0.2562827169895172, + "learning_rate": 0.0006, + "loss": 3.7741947174072266, + "step": 2222 + }, + { + "epoch": 30.88073394495413, + "grad_norm": 0.23657815158367157, + "learning_rate": 0.0006, + "loss": 3.746457099914551, + "step": 2223 + }, + { + "epoch": 30.89471384884229, + "grad_norm": 0.2158907800912857, + "learning_rate": 0.0006, + "loss": 3.7821710109710693, + "step": 2224 + }, + { + "epoch": 30.90869375273045, + "grad_norm": 0.22501254081726074, + "learning_rate": 0.0006, + "loss": 3.7528274059295654, + "step": 2225 + }, + { + "epoch": 30.92267365661861, + "grad_norm": 0.20252224802970886, + "learning_rate": 0.0006, + "loss": 3.749418258666992, + "step": 2226 + }, + { + "epoch": 30.936653560506773, + "grad_norm": 0.2067883312702179, + "learning_rate": 0.0006, + "loss": 3.7560606002807617, + "step": 2227 + }, + { + "epoch": 30.950633464394933, + "grad_norm": 0.23104053735733032, + "learning_rate": 0.0006, + "loss": 3.7883846759796143, + "step": 2228 + }, + { + "epoch": 30.964613368283093, + "grad_norm": 0.21476604044437408, + "learning_rate": 0.0006, + "loss": 3.7976977825164795, + "step": 2229 + }, + { + "epoch": 30.978593272171253, + "grad_norm": 0.2130427062511444, + "learning_rate": 0.0006, + "loss": 3.7429304122924805, + "step": 2230 + }, + { + "epoch": 30.992573176059416, + "grad_norm": 0.2047216147184372, + "learning_rate": 0.0006, + "loss": 3.7669787406921387, + "step": 2231 + }, + { + "epoch": 31.0, + "grad_norm": 0.22254081070423126, + "learning_rate": 0.0006, + "loss": 3.7794251441955566, + "step": 2232 + }, + { + "epoch": 31.0, + "eval_loss": 4.039162635803223, + "eval_runtime": 44.9069, + "eval_samples_per_second": 54.379, + "eval_steps_per_second": 3.407, + "step": 2232 + }, + { + "epoch": 31.01397990388816, + "grad_norm": 0.2278132289648056, + "learning_rate": 0.0006, + "loss": 3.7363929748535156, + "step": 2233 + }, + { + "epoch": 31.027959807776323, + "grad_norm": 0.2377072274684906, + "learning_rate": 0.0006, + "loss": 3.72847318649292, + "step": 2234 + }, + { + "epoch": 31.041939711664483, + "grad_norm": 0.23790542781352997, + "learning_rate": 0.0006, + "loss": 3.767193078994751, + "step": 2235 + }, + { + "epoch": 31.055919615552643, + "grad_norm": 0.2587272524833679, + "learning_rate": 0.0006, + "loss": 3.7564640045166016, + "step": 2236 + }, + { + "epoch": 31.069899519440803, + "grad_norm": 0.27550312876701355, + "learning_rate": 0.0006, + "loss": 3.727578639984131, + "step": 2237 + }, + { + "epoch": 31.083879423328966, + "grad_norm": 0.2488662451505661, + "learning_rate": 0.0006, + "loss": 3.7420730590820312, + "step": 2238 + }, + { + "epoch": 31.097859327217126, + "grad_norm": 0.22699029743671417, + "learning_rate": 0.0006, + "loss": 3.7323155403137207, + "step": 2239 + }, + { + "epoch": 31.111839231105286, + "grad_norm": 0.23360148072242737, + "learning_rate": 0.0006, + "loss": 3.719024181365967, + "step": 2240 + }, + { + "epoch": 31.125819134993446, + "grad_norm": 0.24322988092899323, + "learning_rate": 0.0006, + "loss": 3.74485445022583, + "step": 2241 + }, + { + "epoch": 31.13979903888161, + "grad_norm": 0.2474174052476883, + "learning_rate": 0.0006, + "loss": 3.746826171875, + "step": 2242 + }, + { + "epoch": 31.15377894276977, + "grad_norm": 0.2417406439781189, + "learning_rate": 0.0006, + "loss": 3.7285032272338867, + "step": 2243 + }, + { + "epoch": 31.16775884665793, + "grad_norm": 0.2390318512916565, + "learning_rate": 0.0006, + "loss": 3.7464442253112793, + "step": 2244 + }, + { + "epoch": 31.18173875054609, + "grad_norm": 0.21819323301315308, + "learning_rate": 0.0006, + "loss": 3.735110282897949, + "step": 2245 + }, + { + "epoch": 31.195718654434252, + "grad_norm": 0.21953554451465607, + "learning_rate": 0.0006, + "loss": 3.7270030975341797, + "step": 2246 + }, + { + "epoch": 31.209698558322412, + "grad_norm": 0.1930384635925293, + "learning_rate": 0.0006, + "loss": 3.7519941329956055, + "step": 2247 + }, + { + "epoch": 31.22367846221057, + "grad_norm": 0.19799190759658813, + "learning_rate": 0.0006, + "loss": 3.7428221702575684, + "step": 2248 + }, + { + "epoch": 31.23765836609873, + "grad_norm": 0.20948201417922974, + "learning_rate": 0.0006, + "loss": 3.733120918273926, + "step": 2249 + }, + { + "epoch": 31.251638269986895, + "grad_norm": 0.23768769204616547, + "learning_rate": 0.0006, + "loss": 3.7059035301208496, + "step": 2250 + }, + { + "epoch": 31.265618173875055, + "grad_norm": 0.2808842957019806, + "learning_rate": 0.0006, + "loss": 3.7245287895202637, + "step": 2251 + }, + { + "epoch": 31.279598077763215, + "grad_norm": 0.27633124589920044, + "learning_rate": 0.0006, + "loss": 3.7436366081237793, + "step": 2252 + }, + { + "epoch": 31.293577981651374, + "grad_norm": 0.24137185513973236, + "learning_rate": 0.0006, + "loss": 3.7651219367980957, + "step": 2253 + }, + { + "epoch": 31.307557885539538, + "grad_norm": 0.22056810557842255, + "learning_rate": 0.0006, + "loss": 3.7417521476745605, + "step": 2254 + }, + { + "epoch": 31.321537789427698, + "grad_norm": 0.20137323439121246, + "learning_rate": 0.0006, + "loss": 3.750187397003174, + "step": 2255 + }, + { + "epoch": 31.335517693315857, + "grad_norm": 0.2142433375120163, + "learning_rate": 0.0006, + "loss": 3.7292675971984863, + "step": 2256 + }, + { + "epoch": 31.34949759720402, + "grad_norm": 0.21193967759609222, + "learning_rate": 0.0006, + "loss": 3.7459473609924316, + "step": 2257 + }, + { + "epoch": 31.36347750109218, + "grad_norm": 0.21418534219264984, + "learning_rate": 0.0006, + "loss": 3.754359722137451, + "step": 2258 + }, + { + "epoch": 31.37745740498034, + "grad_norm": 0.23507359623908997, + "learning_rate": 0.0006, + "loss": 3.763413906097412, + "step": 2259 + }, + { + "epoch": 31.3914373088685, + "grad_norm": 0.20393887162208557, + "learning_rate": 0.0006, + "loss": 3.73878812789917, + "step": 2260 + }, + { + "epoch": 31.405417212756664, + "grad_norm": 0.21752159297466278, + "learning_rate": 0.0006, + "loss": 3.750549793243408, + "step": 2261 + }, + { + "epoch": 31.419397116644824, + "grad_norm": 0.22629529237747192, + "learning_rate": 0.0006, + "loss": 3.7791430950164795, + "step": 2262 + }, + { + "epoch": 31.433377020532983, + "grad_norm": 0.2114613950252533, + "learning_rate": 0.0006, + "loss": 3.7709264755249023, + "step": 2263 + }, + { + "epoch": 31.447356924421143, + "grad_norm": 0.23241667449474335, + "learning_rate": 0.0006, + "loss": 3.745750665664673, + "step": 2264 + }, + { + "epoch": 31.461336828309307, + "grad_norm": 0.2434246987104416, + "learning_rate": 0.0006, + "loss": 3.769727945327759, + "step": 2265 + }, + { + "epoch": 31.475316732197467, + "grad_norm": 0.247820645570755, + "learning_rate": 0.0006, + "loss": 3.7528204917907715, + "step": 2266 + }, + { + "epoch": 31.489296636085626, + "grad_norm": 0.21287164092063904, + "learning_rate": 0.0006, + "loss": 3.728661060333252, + "step": 2267 + }, + { + "epoch": 31.503276539973786, + "grad_norm": 0.20983846485614777, + "learning_rate": 0.0006, + "loss": 3.7524428367614746, + "step": 2268 + }, + { + "epoch": 31.51725644386195, + "grad_norm": 0.23799288272857666, + "learning_rate": 0.0006, + "loss": 3.7276647090911865, + "step": 2269 + }, + { + "epoch": 31.53123634775011, + "grad_norm": 0.247065007686615, + "learning_rate": 0.0006, + "loss": 3.7506704330444336, + "step": 2270 + }, + { + "epoch": 31.54521625163827, + "grad_norm": 0.20670939981937408, + "learning_rate": 0.0006, + "loss": 3.71852445602417, + "step": 2271 + }, + { + "epoch": 31.55919615552643, + "grad_norm": 0.19463716447353363, + "learning_rate": 0.0006, + "loss": 3.732757568359375, + "step": 2272 + }, + { + "epoch": 31.573176059414592, + "grad_norm": 0.20368841290473938, + "learning_rate": 0.0006, + "loss": 3.746676445007324, + "step": 2273 + }, + { + "epoch": 31.587155963302752, + "grad_norm": 0.19691342115402222, + "learning_rate": 0.0006, + "loss": 3.7535760402679443, + "step": 2274 + }, + { + "epoch": 31.601135867190912, + "grad_norm": 0.2026553899049759, + "learning_rate": 0.0006, + "loss": 3.7406957149505615, + "step": 2275 + }, + { + "epoch": 31.615115771079076, + "grad_norm": 0.21494299173355103, + "learning_rate": 0.0006, + "loss": 3.735888957977295, + "step": 2276 + }, + { + "epoch": 31.629095674967235, + "grad_norm": 0.21644766628742218, + "learning_rate": 0.0006, + "loss": 3.723767042160034, + "step": 2277 + }, + { + "epoch": 31.643075578855395, + "grad_norm": 0.20087581872940063, + "learning_rate": 0.0006, + "loss": 3.7622008323669434, + "step": 2278 + }, + { + "epoch": 31.657055482743555, + "grad_norm": 0.1949695646762848, + "learning_rate": 0.0006, + "loss": 3.7726354598999023, + "step": 2279 + }, + { + "epoch": 31.67103538663172, + "grad_norm": 0.19120797514915466, + "learning_rate": 0.0006, + "loss": 3.7454679012298584, + "step": 2280 + }, + { + "epoch": 31.68501529051988, + "grad_norm": 0.19480115175247192, + "learning_rate": 0.0006, + "loss": 3.743934392929077, + "step": 2281 + }, + { + "epoch": 31.698995194408038, + "grad_norm": 0.1891610324382782, + "learning_rate": 0.0006, + "loss": 3.7724897861480713, + "step": 2282 + }, + { + "epoch": 31.712975098296198, + "grad_norm": 0.18533185124397278, + "learning_rate": 0.0006, + "loss": 3.7556838989257812, + "step": 2283 + }, + { + "epoch": 31.72695500218436, + "grad_norm": 0.20079447329044342, + "learning_rate": 0.0006, + "loss": 3.76758074760437, + "step": 2284 + }, + { + "epoch": 31.74093490607252, + "grad_norm": 0.2103433609008789, + "learning_rate": 0.0006, + "loss": 3.769477367401123, + "step": 2285 + }, + { + "epoch": 31.75491480996068, + "grad_norm": 0.21428923308849335, + "learning_rate": 0.0006, + "loss": 3.7317447662353516, + "step": 2286 + }, + { + "epoch": 31.76889471384884, + "grad_norm": 0.20154133439064026, + "learning_rate": 0.0006, + "loss": 3.749814987182617, + "step": 2287 + }, + { + "epoch": 31.782874617737004, + "grad_norm": 0.18998542428016663, + "learning_rate": 0.0006, + "loss": 3.7655510902404785, + "step": 2288 + }, + { + "epoch": 31.796854521625164, + "grad_norm": 0.2068665474653244, + "learning_rate": 0.0006, + "loss": 3.7375988960266113, + "step": 2289 + }, + { + "epoch": 31.810834425513324, + "grad_norm": 0.22979815304279327, + "learning_rate": 0.0006, + "loss": 3.728095531463623, + "step": 2290 + }, + { + "epoch": 31.824814329401484, + "grad_norm": 0.2378212958574295, + "learning_rate": 0.0006, + "loss": 3.73091459274292, + "step": 2291 + }, + { + "epoch": 31.838794233289647, + "grad_norm": 0.2353672832250595, + "learning_rate": 0.0006, + "loss": 3.7491769790649414, + "step": 2292 + }, + { + "epoch": 31.852774137177807, + "grad_norm": 0.22341586649417877, + "learning_rate": 0.0006, + "loss": 3.777111530303955, + "step": 2293 + }, + { + "epoch": 31.866754041065967, + "grad_norm": 0.20436930656433105, + "learning_rate": 0.0006, + "loss": 3.740997552871704, + "step": 2294 + }, + { + "epoch": 31.88073394495413, + "grad_norm": 0.20836040377616882, + "learning_rate": 0.0006, + "loss": 3.755582571029663, + "step": 2295 + }, + { + "epoch": 31.89471384884229, + "grad_norm": 0.2045193612575531, + "learning_rate": 0.0006, + "loss": 3.7583560943603516, + "step": 2296 + }, + { + "epoch": 31.90869375273045, + "grad_norm": 0.2025591880083084, + "learning_rate": 0.0006, + "loss": 3.773345470428467, + "step": 2297 + }, + { + "epoch": 31.92267365661861, + "grad_norm": 0.20309099555015564, + "learning_rate": 0.0006, + "loss": 3.7392163276672363, + "step": 2298 + }, + { + "epoch": 31.936653560506773, + "grad_norm": 0.2129351645708084, + "learning_rate": 0.0006, + "loss": 3.7801311016082764, + "step": 2299 + }, + { + "epoch": 31.950633464394933, + "grad_norm": 0.19950738549232483, + "learning_rate": 0.0006, + "loss": 3.779261589050293, + "step": 2300 + }, + { + "epoch": 31.964613368283093, + "grad_norm": 0.22837352752685547, + "learning_rate": 0.0006, + "loss": 3.782731294631958, + "step": 2301 + }, + { + "epoch": 31.978593272171253, + "grad_norm": 0.2576889097690582, + "learning_rate": 0.0006, + "loss": 3.7778096199035645, + "step": 2302 + }, + { + "epoch": 31.992573176059416, + "grad_norm": 0.2770138382911682, + "learning_rate": 0.0006, + "loss": 3.735755443572998, + "step": 2303 + }, + { + "epoch": 32.0, + "grad_norm": 0.2632865309715271, + "learning_rate": 0.0006, + "loss": 3.7562808990478516, + "step": 2304 + }, + { + "epoch": 32.0, + "eval_loss": 4.031628608703613, + "eval_runtime": 44.2115, + "eval_samples_per_second": 55.234, + "eval_steps_per_second": 3.461, + "step": 2304 + }, + { + "epoch": 32.01397990388816, + "grad_norm": 0.20234128832817078, + "learning_rate": 0.0006, + "loss": 3.734489917755127, + "step": 2305 + }, + { + "epoch": 32.02795980777632, + "grad_norm": 0.24983637034893036, + "learning_rate": 0.0006, + "loss": 3.7351019382476807, + "step": 2306 + }, + { + "epoch": 32.04193971166448, + "grad_norm": 0.27358478307724, + "learning_rate": 0.0006, + "loss": 3.708712100982666, + "step": 2307 + }, + { + "epoch": 32.05591961555265, + "grad_norm": 0.24693739414215088, + "learning_rate": 0.0006, + "loss": 3.731858491897583, + "step": 2308 + }, + { + "epoch": 32.0698995194408, + "grad_norm": 0.22751131653785706, + "learning_rate": 0.0006, + "loss": 3.7074670791625977, + "step": 2309 + }, + { + "epoch": 32.083879423328966, + "grad_norm": 0.23400720953941345, + "learning_rate": 0.0006, + "loss": 3.714092493057251, + "step": 2310 + }, + { + "epoch": 32.09785932721712, + "grad_norm": 0.20711684226989746, + "learning_rate": 0.0006, + "loss": 3.754727840423584, + "step": 2311 + }, + { + "epoch": 32.111839231105286, + "grad_norm": 0.21589399874210358, + "learning_rate": 0.0006, + "loss": 3.6953847408294678, + "step": 2312 + }, + { + "epoch": 32.12581913499345, + "grad_norm": 0.24575738608837128, + "learning_rate": 0.0006, + "loss": 3.7078802585601807, + "step": 2313 + }, + { + "epoch": 32.139799038881605, + "grad_norm": 0.23152033984661102, + "learning_rate": 0.0006, + "loss": 3.7402305603027344, + "step": 2314 + }, + { + "epoch": 32.15377894276977, + "grad_norm": 0.22639606893062592, + "learning_rate": 0.0006, + "loss": 3.7264223098754883, + "step": 2315 + }, + { + "epoch": 32.16775884665793, + "grad_norm": 0.24701760709285736, + "learning_rate": 0.0006, + "loss": 3.7497639656066895, + "step": 2316 + }, + { + "epoch": 32.18173875054609, + "grad_norm": 0.274832159280777, + "learning_rate": 0.0006, + "loss": 3.7557122707366943, + "step": 2317 + }, + { + "epoch": 32.19571865443425, + "grad_norm": 0.27472418546676636, + "learning_rate": 0.0006, + "loss": 3.6863393783569336, + "step": 2318 + }, + { + "epoch": 32.20969855832241, + "grad_norm": 0.2625530958175659, + "learning_rate": 0.0006, + "loss": 3.7203545570373535, + "step": 2319 + }, + { + "epoch": 32.22367846221057, + "grad_norm": 0.2576068341732025, + "learning_rate": 0.0006, + "loss": 3.734747886657715, + "step": 2320 + }, + { + "epoch": 32.237658366098735, + "grad_norm": 0.25946059823036194, + "learning_rate": 0.0006, + "loss": 3.7501730918884277, + "step": 2321 + }, + { + "epoch": 32.25163826998689, + "grad_norm": 0.2524135410785675, + "learning_rate": 0.0006, + "loss": 3.75177001953125, + "step": 2322 + }, + { + "epoch": 32.265618173875055, + "grad_norm": 0.2568551003932953, + "learning_rate": 0.0006, + "loss": 3.752450704574585, + "step": 2323 + }, + { + "epoch": 32.27959807776322, + "grad_norm": 0.2489749640226364, + "learning_rate": 0.0006, + "loss": 3.711735486984253, + "step": 2324 + }, + { + "epoch": 32.293577981651374, + "grad_norm": 0.2425498366355896, + "learning_rate": 0.0006, + "loss": 3.7004239559173584, + "step": 2325 + }, + { + "epoch": 32.30755788553954, + "grad_norm": 0.24359773099422455, + "learning_rate": 0.0006, + "loss": 3.733870029449463, + "step": 2326 + }, + { + "epoch": 32.3215377894277, + "grad_norm": 0.22314727306365967, + "learning_rate": 0.0006, + "loss": 3.699841022491455, + "step": 2327 + }, + { + "epoch": 32.33551769331586, + "grad_norm": 0.2047620266675949, + "learning_rate": 0.0006, + "loss": 3.732534170150757, + "step": 2328 + }, + { + "epoch": 32.34949759720402, + "grad_norm": 0.24393224716186523, + "learning_rate": 0.0006, + "loss": 3.7200770378112793, + "step": 2329 + }, + { + "epoch": 32.36347750109218, + "grad_norm": 0.23884256184101105, + "learning_rate": 0.0006, + "loss": 3.722318410873413, + "step": 2330 + }, + { + "epoch": 32.37745740498034, + "grad_norm": 0.23262189328670502, + "learning_rate": 0.0006, + "loss": 3.759033203125, + "step": 2331 + }, + { + "epoch": 32.391437308868504, + "grad_norm": 0.22542893886566162, + "learning_rate": 0.0006, + "loss": 3.729198694229126, + "step": 2332 + }, + { + "epoch": 32.40541721275666, + "grad_norm": 0.22479060292243958, + "learning_rate": 0.0006, + "loss": 3.7298169136047363, + "step": 2333 + }, + { + "epoch": 32.419397116644824, + "grad_norm": 0.21571804583072662, + "learning_rate": 0.0006, + "loss": 3.699937343597412, + "step": 2334 + }, + { + "epoch": 32.43337702053299, + "grad_norm": 0.20804545283317566, + "learning_rate": 0.0006, + "loss": 3.7495696544647217, + "step": 2335 + }, + { + "epoch": 32.44735692442114, + "grad_norm": 0.22751706838607788, + "learning_rate": 0.0006, + "loss": 3.7369821071624756, + "step": 2336 + }, + { + "epoch": 32.46133682830931, + "grad_norm": 0.2326795756816864, + "learning_rate": 0.0006, + "loss": 3.7636334896087646, + "step": 2337 + }, + { + "epoch": 32.47531673219746, + "grad_norm": 0.19971159100532532, + "learning_rate": 0.0006, + "loss": 3.72151517868042, + "step": 2338 + }, + { + "epoch": 32.489296636085626, + "grad_norm": 0.21078036725521088, + "learning_rate": 0.0006, + "loss": 3.7050065994262695, + "step": 2339 + }, + { + "epoch": 32.50327653997379, + "grad_norm": 0.22198088467121124, + "learning_rate": 0.0006, + "loss": 3.7654409408569336, + "step": 2340 + }, + { + "epoch": 32.517256443861946, + "grad_norm": 0.20995207130908966, + "learning_rate": 0.0006, + "loss": 3.7516250610351562, + "step": 2341 + }, + { + "epoch": 32.53123634775011, + "grad_norm": 0.20757141709327698, + "learning_rate": 0.0006, + "loss": 3.7412633895874023, + "step": 2342 + }, + { + "epoch": 32.54521625163827, + "grad_norm": 0.20053881406784058, + "learning_rate": 0.0006, + "loss": 3.7477493286132812, + "step": 2343 + }, + { + "epoch": 32.55919615552643, + "grad_norm": 0.20223091542720795, + "learning_rate": 0.0006, + "loss": 3.7149064540863037, + "step": 2344 + }, + { + "epoch": 32.57317605941459, + "grad_norm": 0.20179468393325806, + "learning_rate": 0.0006, + "loss": 3.70635724067688, + "step": 2345 + }, + { + "epoch": 32.58715596330275, + "grad_norm": 0.19670480489730835, + "learning_rate": 0.0006, + "loss": 3.7276744842529297, + "step": 2346 + }, + { + "epoch": 32.60113586719091, + "grad_norm": 0.1992012858390808, + "learning_rate": 0.0006, + "loss": 3.7659356594085693, + "step": 2347 + }, + { + "epoch": 32.615115771079076, + "grad_norm": 0.20124201476573944, + "learning_rate": 0.0006, + "loss": 3.722212791442871, + "step": 2348 + }, + { + "epoch": 32.62909567496723, + "grad_norm": 0.21972708404064178, + "learning_rate": 0.0006, + "loss": 3.751830577850342, + "step": 2349 + }, + { + "epoch": 32.643075578855395, + "grad_norm": 0.20454947650432587, + "learning_rate": 0.0006, + "loss": 3.7196669578552246, + "step": 2350 + }, + { + "epoch": 32.65705548274356, + "grad_norm": 0.1783330887556076, + "learning_rate": 0.0006, + "loss": 3.721461772918701, + "step": 2351 + }, + { + "epoch": 32.671035386631715, + "grad_norm": 0.2027900367975235, + "learning_rate": 0.0006, + "loss": 3.753718614578247, + "step": 2352 + }, + { + "epoch": 32.68501529051988, + "grad_norm": 0.21232381463050842, + "learning_rate": 0.0006, + "loss": 3.732736349105835, + "step": 2353 + }, + { + "epoch": 32.69899519440804, + "grad_norm": 0.2214568555355072, + "learning_rate": 0.0006, + "loss": 3.7250165939331055, + "step": 2354 + }, + { + "epoch": 32.7129750982962, + "grad_norm": 0.2626485228538513, + "learning_rate": 0.0006, + "loss": 3.72263503074646, + "step": 2355 + }, + { + "epoch": 32.72695500218436, + "grad_norm": 0.30096277594566345, + "learning_rate": 0.0006, + "loss": 3.7599854469299316, + "step": 2356 + }, + { + "epoch": 32.74093490607252, + "grad_norm": 0.3374342620372772, + "learning_rate": 0.0006, + "loss": 3.7493844032287598, + "step": 2357 + }, + { + "epoch": 32.75491480996068, + "grad_norm": 0.3051377534866333, + "learning_rate": 0.0006, + "loss": 3.7515692710876465, + "step": 2358 + }, + { + "epoch": 32.768894713848844, + "grad_norm": 0.2130587249994278, + "learning_rate": 0.0006, + "loss": 3.751307964324951, + "step": 2359 + }, + { + "epoch": 32.782874617737, + "grad_norm": 0.25198230147361755, + "learning_rate": 0.0006, + "loss": 3.7500064373016357, + "step": 2360 + }, + { + "epoch": 32.796854521625164, + "grad_norm": 0.27613863348960876, + "learning_rate": 0.0006, + "loss": 3.7257039546966553, + "step": 2361 + }, + { + "epoch": 32.81083442551333, + "grad_norm": 0.23749367892742157, + "learning_rate": 0.0006, + "loss": 3.778343439102173, + "step": 2362 + }, + { + "epoch": 32.824814329401484, + "grad_norm": 0.2063702642917633, + "learning_rate": 0.0006, + "loss": 3.7493772506713867, + "step": 2363 + }, + { + "epoch": 32.83879423328965, + "grad_norm": 0.21169374883174896, + "learning_rate": 0.0006, + "loss": 3.722567081451416, + "step": 2364 + }, + { + "epoch": 32.8527741371778, + "grad_norm": 0.23291490972042084, + "learning_rate": 0.0006, + "loss": 3.7555532455444336, + "step": 2365 + }, + { + "epoch": 32.86675404106597, + "grad_norm": 0.21486155688762665, + "learning_rate": 0.0006, + "loss": 3.7401528358459473, + "step": 2366 + }, + { + "epoch": 32.88073394495413, + "grad_norm": 0.2296247035264969, + "learning_rate": 0.0006, + "loss": 3.7867965698242188, + "step": 2367 + }, + { + "epoch": 32.89471384884229, + "grad_norm": 0.2335108071565628, + "learning_rate": 0.0006, + "loss": 3.768036365509033, + "step": 2368 + }, + { + "epoch": 32.90869375273045, + "grad_norm": 0.23921863734722137, + "learning_rate": 0.0006, + "loss": 3.725252151489258, + "step": 2369 + }, + { + "epoch": 32.92267365661861, + "grad_norm": 0.20303526520729065, + "learning_rate": 0.0006, + "loss": 3.7806248664855957, + "step": 2370 + }, + { + "epoch": 32.93665356050677, + "grad_norm": 0.19293150305747986, + "learning_rate": 0.0006, + "loss": 3.759281873703003, + "step": 2371 + }, + { + "epoch": 32.95063346439493, + "grad_norm": 0.20609107613563538, + "learning_rate": 0.0006, + "loss": 3.764190196990967, + "step": 2372 + }, + { + "epoch": 32.964613368283096, + "grad_norm": 0.2014189213514328, + "learning_rate": 0.0006, + "loss": 3.7365214824676514, + "step": 2373 + }, + { + "epoch": 32.97859327217125, + "grad_norm": 0.22045451402664185, + "learning_rate": 0.0006, + "loss": 3.7435812950134277, + "step": 2374 + }, + { + "epoch": 32.992573176059416, + "grad_norm": 0.24228639900684357, + "learning_rate": 0.0006, + "loss": 3.751309394836426, + "step": 2375 + }, + { + "epoch": 33.0, + "grad_norm": 0.2645106613636017, + "learning_rate": 0.0006, + "loss": 3.7629928588867188, + "step": 2376 + }, + { + "epoch": 33.0, + "eval_loss": 4.026789665222168, + "eval_runtime": 44.9957, + "eval_samples_per_second": 54.272, + "eval_steps_per_second": 3.4, + "step": 2376 + }, + { + "epoch": 33.01397990388816, + "grad_norm": 0.21402551233768463, + "learning_rate": 0.0006, + "loss": 3.72019100189209, + "step": 2377 + }, + { + "epoch": 33.02795980777632, + "grad_norm": 0.23886585235595703, + "learning_rate": 0.0006, + "loss": 3.687084674835205, + "step": 2378 + }, + { + "epoch": 33.04193971166448, + "grad_norm": 0.29936572909355164, + "learning_rate": 0.0006, + "loss": 3.697310447692871, + "step": 2379 + }, + { + "epoch": 33.05591961555265, + "grad_norm": 0.30007585883140564, + "learning_rate": 0.0006, + "loss": 3.6913352012634277, + "step": 2380 + }, + { + "epoch": 33.0698995194408, + "grad_norm": 0.26594656705856323, + "learning_rate": 0.0006, + "loss": 3.740802526473999, + "step": 2381 + }, + { + "epoch": 33.083879423328966, + "grad_norm": 0.2658730447292328, + "learning_rate": 0.0006, + "loss": 3.692746162414551, + "step": 2382 + }, + { + "epoch": 33.09785932721712, + "grad_norm": 0.26755523681640625, + "learning_rate": 0.0006, + "loss": 3.7534420490264893, + "step": 2383 + }, + { + "epoch": 33.111839231105286, + "grad_norm": 0.23070940375328064, + "learning_rate": 0.0006, + "loss": 3.717876672744751, + "step": 2384 + }, + { + "epoch": 33.12581913499345, + "grad_norm": 0.2476235181093216, + "learning_rate": 0.0006, + "loss": 3.7072248458862305, + "step": 2385 + }, + { + "epoch": 33.139799038881605, + "grad_norm": 0.2454477846622467, + "learning_rate": 0.0006, + "loss": 3.729762077331543, + "step": 2386 + }, + { + "epoch": 33.15377894276977, + "grad_norm": 0.24090935289859772, + "learning_rate": 0.0006, + "loss": 3.721374988555908, + "step": 2387 + }, + { + "epoch": 33.16775884665793, + "grad_norm": 0.2440263032913208, + "learning_rate": 0.0006, + "loss": 3.730433464050293, + "step": 2388 + }, + { + "epoch": 33.18173875054609, + "grad_norm": 0.21699118614196777, + "learning_rate": 0.0006, + "loss": 3.724730968475342, + "step": 2389 + }, + { + "epoch": 33.19571865443425, + "grad_norm": 0.2302001267671585, + "learning_rate": 0.0006, + "loss": 3.69376277923584, + "step": 2390 + }, + { + "epoch": 33.20969855832241, + "grad_norm": 0.24707409739494324, + "learning_rate": 0.0006, + "loss": 3.705653667449951, + "step": 2391 + }, + { + "epoch": 33.22367846221057, + "grad_norm": 0.22896641492843628, + "learning_rate": 0.0006, + "loss": 3.747000217437744, + "step": 2392 + }, + { + "epoch": 33.237658366098735, + "grad_norm": 0.2278730720281601, + "learning_rate": 0.0006, + "loss": 3.733464241027832, + "step": 2393 + }, + { + "epoch": 33.25163826998689, + "grad_norm": 0.23909862339496613, + "learning_rate": 0.0006, + "loss": 3.733661413192749, + "step": 2394 + }, + { + "epoch": 33.265618173875055, + "grad_norm": 0.2349950075149536, + "learning_rate": 0.0006, + "loss": 3.7337965965270996, + "step": 2395 + }, + { + "epoch": 33.27959807776322, + "grad_norm": 0.22655968368053436, + "learning_rate": 0.0006, + "loss": 3.70503306388855, + "step": 2396 + }, + { + "epoch": 33.293577981651374, + "grad_norm": 0.22167043387889862, + "learning_rate": 0.0006, + "loss": 3.738797903060913, + "step": 2397 + }, + { + "epoch": 33.30755788553954, + "grad_norm": 0.2278883010149002, + "learning_rate": 0.0006, + "loss": 3.712550640106201, + "step": 2398 + }, + { + "epoch": 33.3215377894277, + "grad_norm": 0.2220565229654312, + "learning_rate": 0.0006, + "loss": 3.7278006076812744, + "step": 2399 + }, + { + "epoch": 33.33551769331586, + "grad_norm": 0.21888740360736847, + "learning_rate": 0.0006, + "loss": 3.72243595123291, + "step": 2400 + }, + { + "epoch": 33.34949759720402, + "grad_norm": 0.21587581932544708, + "learning_rate": 0.0006, + "loss": 3.7177581787109375, + "step": 2401 + }, + { + "epoch": 33.36347750109218, + "grad_norm": 0.1923578530550003, + "learning_rate": 0.0006, + "loss": 3.711294651031494, + "step": 2402 + }, + { + "epoch": 33.37745740498034, + "grad_norm": 0.1994934380054474, + "learning_rate": 0.0006, + "loss": 3.762061595916748, + "step": 2403 + }, + { + "epoch": 33.391437308868504, + "grad_norm": 0.20074427127838135, + "learning_rate": 0.0006, + "loss": 3.708559036254883, + "step": 2404 + }, + { + "epoch": 33.40541721275666, + "grad_norm": 0.21349482238292694, + "learning_rate": 0.0006, + "loss": 3.7089147567749023, + "step": 2405 + }, + { + "epoch": 33.419397116644824, + "grad_norm": 0.25523608922958374, + "learning_rate": 0.0006, + "loss": 3.7241058349609375, + "step": 2406 + }, + { + "epoch": 33.43337702053299, + "grad_norm": 0.27654796838760376, + "learning_rate": 0.0006, + "loss": 3.723618984222412, + "step": 2407 + }, + { + "epoch": 33.44735692442114, + "grad_norm": 0.2651479244232178, + "learning_rate": 0.0006, + "loss": 3.7367782592773438, + "step": 2408 + }, + { + "epoch": 33.46133682830931, + "grad_norm": 0.23403556644916534, + "learning_rate": 0.0006, + "loss": 3.7198312282562256, + "step": 2409 + }, + { + "epoch": 33.47531673219746, + "grad_norm": 0.20970726013183594, + "learning_rate": 0.0006, + "loss": 3.7088186740875244, + "step": 2410 + }, + { + "epoch": 33.489296636085626, + "grad_norm": 0.18532544374465942, + "learning_rate": 0.0006, + "loss": 3.7162208557128906, + "step": 2411 + }, + { + "epoch": 33.50327653997379, + "grad_norm": 0.19590279459953308, + "learning_rate": 0.0006, + "loss": 3.766357898712158, + "step": 2412 + }, + { + "epoch": 33.517256443861946, + "grad_norm": 0.203349307179451, + "learning_rate": 0.0006, + "loss": 3.732177257537842, + "step": 2413 + }, + { + "epoch": 33.53123634775011, + "grad_norm": 0.2015952616930008, + "learning_rate": 0.0006, + "loss": 3.741609573364258, + "step": 2414 + }, + { + "epoch": 33.54521625163827, + "grad_norm": 0.20024161040782928, + "learning_rate": 0.0006, + "loss": 3.6894431114196777, + "step": 2415 + }, + { + "epoch": 33.55919615552643, + "grad_norm": 0.20932617783546448, + "learning_rate": 0.0006, + "loss": 3.721979856491089, + "step": 2416 + }, + { + "epoch": 33.57317605941459, + "grad_norm": 0.22069773077964783, + "learning_rate": 0.0006, + "loss": 3.712203025817871, + "step": 2417 + }, + { + "epoch": 33.58715596330275, + "grad_norm": 0.22341343760490417, + "learning_rate": 0.0006, + "loss": 3.7469263076782227, + "step": 2418 + }, + { + "epoch": 33.60113586719091, + "grad_norm": 0.21758507192134857, + "learning_rate": 0.0006, + "loss": 3.721778392791748, + "step": 2419 + }, + { + "epoch": 33.615115771079076, + "grad_norm": 0.20480088889598846, + "learning_rate": 0.0006, + "loss": 3.743570327758789, + "step": 2420 + }, + { + "epoch": 33.62909567496723, + "grad_norm": 0.23068399727344513, + "learning_rate": 0.0006, + "loss": 3.7203001976013184, + "step": 2421 + }, + { + "epoch": 33.643075578855395, + "grad_norm": 0.2526263892650604, + "learning_rate": 0.0006, + "loss": 3.7336440086364746, + "step": 2422 + }, + { + "epoch": 33.65705548274356, + "grad_norm": 0.218627467751503, + "learning_rate": 0.0006, + "loss": 3.730762243270874, + "step": 2423 + }, + { + "epoch": 33.671035386631715, + "grad_norm": 0.21883417665958405, + "learning_rate": 0.0006, + "loss": 3.749356508255005, + "step": 2424 + }, + { + "epoch": 33.68501529051988, + "grad_norm": 0.22885626554489136, + "learning_rate": 0.0006, + "loss": 3.7426199913024902, + "step": 2425 + }, + { + "epoch": 33.69899519440804, + "grad_norm": 0.23709580302238464, + "learning_rate": 0.0006, + "loss": 3.691652774810791, + "step": 2426 + }, + { + "epoch": 33.7129750982962, + "grad_norm": 0.2258225381374359, + "learning_rate": 0.0006, + "loss": 3.7368886470794678, + "step": 2427 + }, + { + "epoch": 33.72695500218436, + "grad_norm": 0.1993306577205658, + "learning_rate": 0.0006, + "loss": 3.722733497619629, + "step": 2428 + }, + { + "epoch": 33.74093490607252, + "grad_norm": 0.20307473838329315, + "learning_rate": 0.0006, + "loss": 3.7507500648498535, + "step": 2429 + }, + { + "epoch": 33.75491480996068, + "grad_norm": 0.20076696574687958, + "learning_rate": 0.0006, + "loss": 3.6896910667419434, + "step": 2430 + }, + { + "epoch": 33.768894713848844, + "grad_norm": 0.21118830144405365, + "learning_rate": 0.0006, + "loss": 3.7176647186279297, + "step": 2431 + }, + { + "epoch": 33.782874617737, + "grad_norm": 0.21605782210826874, + "learning_rate": 0.0006, + "loss": 3.7423641681671143, + "step": 2432 + }, + { + "epoch": 33.796854521625164, + "grad_norm": 0.22233152389526367, + "learning_rate": 0.0006, + "loss": 3.7296109199523926, + "step": 2433 + }, + { + "epoch": 33.81083442551333, + "grad_norm": 0.2253616899251938, + "learning_rate": 0.0006, + "loss": 3.7095072269439697, + "step": 2434 + }, + { + "epoch": 33.824814329401484, + "grad_norm": 0.2105807662010193, + "learning_rate": 0.0006, + "loss": 3.760921001434326, + "step": 2435 + }, + { + "epoch": 33.83879423328965, + "grad_norm": 0.20413213968276978, + "learning_rate": 0.0006, + "loss": 3.7356553077697754, + "step": 2436 + }, + { + "epoch": 33.8527741371778, + "grad_norm": 0.19781213998794556, + "learning_rate": 0.0006, + "loss": 3.726787567138672, + "step": 2437 + }, + { + "epoch": 33.86675404106597, + "grad_norm": 0.199616938829422, + "learning_rate": 0.0006, + "loss": 3.7200419902801514, + "step": 2438 + }, + { + "epoch": 33.88073394495413, + "grad_norm": 0.19702564179897308, + "learning_rate": 0.0006, + "loss": 3.714287281036377, + "step": 2439 + }, + { + "epoch": 33.89471384884229, + "grad_norm": 0.19456833600997925, + "learning_rate": 0.0006, + "loss": 3.739231586456299, + "step": 2440 + }, + { + "epoch": 33.90869375273045, + "grad_norm": 0.1890697181224823, + "learning_rate": 0.0006, + "loss": 3.7088429927825928, + "step": 2441 + }, + { + "epoch": 33.92267365661861, + "grad_norm": 0.1845911741256714, + "learning_rate": 0.0006, + "loss": 3.760782241821289, + "step": 2442 + }, + { + "epoch": 33.93665356050677, + "grad_norm": 0.19045902788639069, + "learning_rate": 0.0006, + "loss": 3.736957311630249, + "step": 2443 + }, + { + "epoch": 33.95063346439493, + "grad_norm": 0.1934187412261963, + "learning_rate": 0.0006, + "loss": 3.756351947784424, + "step": 2444 + }, + { + "epoch": 33.964613368283096, + "grad_norm": 0.19774580001831055, + "learning_rate": 0.0006, + "loss": 3.7332229614257812, + "step": 2445 + }, + { + "epoch": 33.97859327217125, + "grad_norm": 0.20653048157691956, + "learning_rate": 0.0006, + "loss": 3.7112321853637695, + "step": 2446 + }, + { + "epoch": 33.992573176059416, + "grad_norm": 0.18618541955947876, + "learning_rate": 0.0006, + "loss": 3.735710620880127, + "step": 2447 + }, + { + "epoch": 34.0, + "grad_norm": 0.22846414148807526, + "learning_rate": 0.0006, + "loss": 3.739706039428711, + "step": 2448 + }, + { + "epoch": 34.0, + "eval_loss": 4.0099663734436035, + "eval_runtime": 45.2096, + "eval_samples_per_second": 54.015, + "eval_steps_per_second": 3.384, + "step": 2448 + }, + { + "epoch": 34.01397990388816, + "grad_norm": 0.20987462997436523, + "learning_rate": 0.0006, + "loss": 3.6798832416534424, + "step": 2449 + }, + { + "epoch": 34.02795980777632, + "grad_norm": 0.2230423390865326, + "learning_rate": 0.0006, + "loss": 3.7157368659973145, + "step": 2450 + }, + { + "epoch": 34.04193971166448, + "grad_norm": 0.24115242063999176, + "learning_rate": 0.0006, + "loss": 3.696037769317627, + "step": 2451 + }, + { + "epoch": 34.05591961555265, + "grad_norm": 0.24499665200710297, + "learning_rate": 0.0006, + "loss": 3.695420742034912, + "step": 2452 + }, + { + "epoch": 34.0698995194408, + "grad_norm": 0.23336757719516754, + "learning_rate": 0.0006, + "loss": 3.7252023220062256, + "step": 2453 + }, + { + "epoch": 34.083879423328966, + "grad_norm": 0.23716159164905548, + "learning_rate": 0.0006, + "loss": 3.714542865753174, + "step": 2454 + }, + { + "epoch": 34.09785932721712, + "grad_norm": 0.2305644154548645, + "learning_rate": 0.0006, + "loss": 3.6989386081695557, + "step": 2455 + }, + { + "epoch": 34.111839231105286, + "grad_norm": 0.2281671017408371, + "learning_rate": 0.0006, + "loss": 3.6952829360961914, + "step": 2456 + }, + { + "epoch": 34.12581913499345, + "grad_norm": 0.21031132340431213, + "learning_rate": 0.0006, + "loss": 3.7337589263916016, + "step": 2457 + }, + { + "epoch": 34.139799038881605, + "grad_norm": 0.2233671098947525, + "learning_rate": 0.0006, + "loss": 3.6923675537109375, + "step": 2458 + }, + { + "epoch": 34.15377894276977, + "grad_norm": 0.22766625881195068, + "learning_rate": 0.0006, + "loss": 3.70849609375, + "step": 2459 + }, + { + "epoch": 34.16775884665793, + "grad_norm": 0.22433766722679138, + "learning_rate": 0.0006, + "loss": 3.718319892883301, + "step": 2460 + }, + { + "epoch": 34.18173875054609, + "grad_norm": 0.20621491968631744, + "learning_rate": 0.0006, + "loss": 3.6874704360961914, + "step": 2461 + }, + { + "epoch": 34.19571865443425, + "grad_norm": 0.21353304386138916, + "learning_rate": 0.0006, + "loss": 3.663358688354492, + "step": 2462 + }, + { + "epoch": 34.20969855832241, + "grad_norm": 0.20652951300144196, + "learning_rate": 0.0006, + "loss": 3.718107223510742, + "step": 2463 + }, + { + "epoch": 34.22367846221057, + "grad_norm": 0.19780176877975464, + "learning_rate": 0.0006, + "loss": 3.7255396842956543, + "step": 2464 + }, + { + "epoch": 34.237658366098735, + "grad_norm": 0.20636138319969177, + "learning_rate": 0.0006, + "loss": 3.696850538253784, + "step": 2465 + }, + { + "epoch": 34.25163826998689, + "grad_norm": 0.23691460490226746, + "learning_rate": 0.0006, + "loss": 3.687997341156006, + "step": 2466 + }, + { + "epoch": 34.265618173875055, + "grad_norm": 0.2380511611700058, + "learning_rate": 0.0006, + "loss": 3.716610908508301, + "step": 2467 + }, + { + "epoch": 34.27959807776322, + "grad_norm": 0.21508945524692535, + "learning_rate": 0.0006, + "loss": 3.6993470191955566, + "step": 2468 + }, + { + "epoch": 34.293577981651374, + "grad_norm": 0.20441125333309174, + "learning_rate": 0.0006, + "loss": 3.7194275856018066, + "step": 2469 + }, + { + "epoch": 34.30755788553954, + "grad_norm": 0.19704242050647736, + "learning_rate": 0.0006, + "loss": 3.675929546356201, + "step": 2470 + }, + { + "epoch": 34.3215377894277, + "grad_norm": 0.1918456256389618, + "learning_rate": 0.0006, + "loss": 3.7189574241638184, + "step": 2471 + }, + { + "epoch": 34.33551769331586, + "grad_norm": 0.19687092304229736, + "learning_rate": 0.0006, + "loss": 3.725809335708618, + "step": 2472 + }, + { + "epoch": 34.34949759720402, + "grad_norm": 0.2048639953136444, + "learning_rate": 0.0006, + "loss": 3.7461748123168945, + "step": 2473 + }, + { + "epoch": 34.36347750109218, + "grad_norm": 0.21086618304252625, + "learning_rate": 0.0006, + "loss": 3.6849746704101562, + "step": 2474 + }, + { + "epoch": 34.37745740498034, + "grad_norm": 0.2172154039144516, + "learning_rate": 0.0006, + "loss": 3.7379322052001953, + "step": 2475 + }, + { + "epoch": 34.391437308868504, + "grad_norm": 0.22725504636764526, + "learning_rate": 0.0006, + "loss": 3.7341527938842773, + "step": 2476 + }, + { + "epoch": 34.40541721275666, + "grad_norm": 0.22309242188930511, + "learning_rate": 0.0006, + "loss": 3.724946975708008, + "step": 2477 + }, + { + "epoch": 34.419397116644824, + "grad_norm": 0.25252285599708557, + "learning_rate": 0.0006, + "loss": 3.710257053375244, + "step": 2478 + }, + { + "epoch": 34.43337702053299, + "grad_norm": 0.2549746334552765, + "learning_rate": 0.0006, + "loss": 3.7105040550231934, + "step": 2479 + }, + { + "epoch": 34.44735692442114, + "grad_norm": 0.22544030845165253, + "learning_rate": 0.0006, + "loss": 3.7340707778930664, + "step": 2480 + }, + { + "epoch": 34.46133682830931, + "grad_norm": 0.22275063395500183, + "learning_rate": 0.0006, + "loss": 3.7141473293304443, + "step": 2481 + }, + { + "epoch": 34.47531673219746, + "grad_norm": 0.25373485684394836, + "learning_rate": 0.0006, + "loss": 3.7014691829681396, + "step": 2482 + }, + { + "epoch": 34.489296636085626, + "grad_norm": 0.2573327124118805, + "learning_rate": 0.0006, + "loss": 3.682562828063965, + "step": 2483 + }, + { + "epoch": 34.50327653997379, + "grad_norm": 0.2452341616153717, + "learning_rate": 0.0006, + "loss": 3.757261276245117, + "step": 2484 + }, + { + "epoch": 34.517256443861946, + "grad_norm": 0.2477131187915802, + "learning_rate": 0.0006, + "loss": 3.7216877937316895, + "step": 2485 + }, + { + "epoch": 34.53123634775011, + "grad_norm": 0.24740098416805267, + "learning_rate": 0.0006, + "loss": 3.705704927444458, + "step": 2486 + }, + { + "epoch": 34.54521625163827, + "grad_norm": 0.27306219935417175, + "learning_rate": 0.0006, + "loss": 3.7014641761779785, + "step": 2487 + }, + { + "epoch": 34.55919615552643, + "grad_norm": 0.26376286149024963, + "learning_rate": 0.0006, + "loss": 3.686056137084961, + "step": 2488 + }, + { + "epoch": 34.57317605941459, + "grad_norm": 0.2796899378299713, + "learning_rate": 0.0006, + "loss": 3.7171077728271484, + "step": 2489 + }, + { + "epoch": 34.58715596330275, + "grad_norm": 0.24279902875423431, + "learning_rate": 0.0006, + "loss": 3.7448348999023438, + "step": 2490 + }, + { + "epoch": 34.60113586719091, + "grad_norm": 0.22772833704948425, + "learning_rate": 0.0006, + "loss": 3.7028117179870605, + "step": 2491 + }, + { + "epoch": 34.615115771079076, + "grad_norm": 0.22157910466194153, + "learning_rate": 0.0006, + "loss": 3.750023603439331, + "step": 2492 + }, + { + "epoch": 34.62909567496723, + "grad_norm": 0.24342703819274902, + "learning_rate": 0.0006, + "loss": 3.7181010246276855, + "step": 2493 + }, + { + "epoch": 34.643075578855395, + "grad_norm": 0.2554340362548828, + "learning_rate": 0.0006, + "loss": 3.6994080543518066, + "step": 2494 + }, + { + "epoch": 34.65705548274356, + "grad_norm": 0.21296930313110352, + "learning_rate": 0.0006, + "loss": 3.7534523010253906, + "step": 2495 + }, + { + "epoch": 34.671035386631715, + "grad_norm": 0.19117674231529236, + "learning_rate": 0.0006, + "loss": 3.7267889976501465, + "step": 2496 + }, + { + "epoch": 34.68501529051988, + "grad_norm": 0.2306399643421173, + "learning_rate": 0.0006, + "loss": 3.723212242126465, + "step": 2497 + }, + { + "epoch": 34.69899519440804, + "grad_norm": 0.23063263297080994, + "learning_rate": 0.0006, + "loss": 3.730070114135742, + "step": 2498 + }, + { + "epoch": 34.7129750982962, + "grad_norm": 0.19422881305217743, + "learning_rate": 0.0006, + "loss": 3.694833755493164, + "step": 2499 + }, + { + "epoch": 34.72695500218436, + "grad_norm": 0.20246362686157227, + "learning_rate": 0.0006, + "loss": 3.71140718460083, + "step": 2500 + }, + { + "epoch": 34.74093490607252, + "grad_norm": 0.1942741572856903, + "learning_rate": 0.0006, + "loss": 3.7530534267425537, + "step": 2501 + }, + { + "epoch": 34.75491480996068, + "grad_norm": 0.19686029851436615, + "learning_rate": 0.0006, + "loss": 3.7059555053710938, + "step": 2502 + }, + { + "epoch": 34.768894713848844, + "grad_norm": 0.20120355486869812, + "learning_rate": 0.0006, + "loss": 3.7271084785461426, + "step": 2503 + }, + { + "epoch": 34.782874617737, + "grad_norm": 0.20880399644374847, + "learning_rate": 0.0006, + "loss": 3.712137460708618, + "step": 2504 + }, + { + "epoch": 34.796854521625164, + "grad_norm": 0.22139988839626312, + "learning_rate": 0.0006, + "loss": 3.731245517730713, + "step": 2505 + }, + { + "epoch": 34.81083442551333, + "grad_norm": 0.22756224870681763, + "learning_rate": 0.0006, + "loss": 3.708987236022949, + "step": 2506 + }, + { + "epoch": 34.824814329401484, + "grad_norm": 0.22332409024238586, + "learning_rate": 0.0006, + "loss": 3.7365565299987793, + "step": 2507 + }, + { + "epoch": 34.83879423328965, + "grad_norm": 0.19599054753780365, + "learning_rate": 0.0006, + "loss": 3.7266454696655273, + "step": 2508 + }, + { + "epoch": 34.8527741371778, + "grad_norm": 0.19843019545078278, + "learning_rate": 0.0006, + "loss": 3.7225422859191895, + "step": 2509 + }, + { + "epoch": 34.86675404106597, + "grad_norm": 0.20147928595542908, + "learning_rate": 0.0006, + "loss": 3.7282514572143555, + "step": 2510 + }, + { + "epoch": 34.88073394495413, + "grad_norm": 0.19489876925945282, + "learning_rate": 0.0006, + "loss": 3.694852113723755, + "step": 2511 + }, + { + "epoch": 34.89471384884229, + "grad_norm": 0.20680078864097595, + "learning_rate": 0.0006, + "loss": 3.74678635597229, + "step": 2512 + }, + { + "epoch": 34.90869375273045, + "grad_norm": 0.2233233004808426, + "learning_rate": 0.0006, + "loss": 3.726475238800049, + "step": 2513 + }, + { + "epoch": 34.92267365661861, + "grad_norm": 0.20702993869781494, + "learning_rate": 0.0006, + "loss": 3.6946351528167725, + "step": 2514 + }, + { + "epoch": 34.93665356050677, + "grad_norm": 0.2081725299358368, + "learning_rate": 0.0006, + "loss": 3.7101621627807617, + "step": 2515 + }, + { + "epoch": 34.95063346439493, + "grad_norm": 0.20551837980747223, + "learning_rate": 0.0006, + "loss": 3.7060177326202393, + "step": 2516 + }, + { + "epoch": 34.964613368283096, + "grad_norm": 0.2106839418411255, + "learning_rate": 0.0006, + "loss": 3.7460474967956543, + "step": 2517 + }, + { + "epoch": 34.97859327217125, + "grad_norm": 0.18512766063213348, + "learning_rate": 0.0006, + "loss": 3.719280242919922, + "step": 2518 + }, + { + "epoch": 34.992573176059416, + "grad_norm": 0.1802142709493637, + "learning_rate": 0.0006, + "loss": 3.698255777359009, + "step": 2519 + }, + { + "epoch": 35.0, + "grad_norm": 0.2028084248304367, + "learning_rate": 0.0006, + "loss": 3.711136817932129, + "step": 2520 + }, + { + "epoch": 35.0, + "eval_loss": 4.006688117980957, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 2520 + }, + { + "epoch": 35.01397990388816, + "grad_norm": 0.1973012387752533, + "learning_rate": 0.0006, + "loss": 3.7108325958251953, + "step": 2521 + }, + { + "epoch": 35.02795980777632, + "grad_norm": 0.23763646185398102, + "learning_rate": 0.0006, + "loss": 3.675785541534424, + "step": 2522 + }, + { + "epoch": 35.04193971166448, + "grad_norm": 0.24403199553489685, + "learning_rate": 0.0006, + "loss": 3.7034249305725098, + "step": 2523 + }, + { + "epoch": 35.05591961555265, + "grad_norm": 0.19050131738185883, + "learning_rate": 0.0006, + "loss": 3.6984221935272217, + "step": 2524 + }, + { + "epoch": 35.0698995194408, + "grad_norm": 0.21389710903167725, + "learning_rate": 0.0006, + "loss": 3.6641085147857666, + "step": 2525 + }, + { + "epoch": 35.083879423328966, + "grad_norm": 0.23103152215480804, + "learning_rate": 0.0006, + "loss": 3.722912311553955, + "step": 2526 + }, + { + "epoch": 35.09785932721712, + "grad_norm": 0.2197326272726059, + "learning_rate": 0.0006, + "loss": 3.696568727493286, + "step": 2527 + }, + { + "epoch": 35.111839231105286, + "grad_norm": 0.20877327024936676, + "learning_rate": 0.0006, + "loss": 3.666700601577759, + "step": 2528 + }, + { + "epoch": 35.12581913499345, + "grad_norm": 0.20904001593589783, + "learning_rate": 0.0006, + "loss": 3.6896979808807373, + "step": 2529 + }, + { + "epoch": 35.139799038881605, + "grad_norm": 0.1947423666715622, + "learning_rate": 0.0006, + "loss": 3.6647095680236816, + "step": 2530 + }, + { + "epoch": 35.15377894276977, + "grad_norm": 0.2134019434452057, + "learning_rate": 0.0006, + "loss": 3.696993589401245, + "step": 2531 + }, + { + "epoch": 35.16775884665793, + "grad_norm": 0.2299254685640335, + "learning_rate": 0.0006, + "loss": 3.7067925930023193, + "step": 2532 + }, + { + "epoch": 35.18173875054609, + "grad_norm": 0.219585582613945, + "learning_rate": 0.0006, + "loss": 3.6680960655212402, + "step": 2533 + }, + { + "epoch": 35.19571865443425, + "grad_norm": 0.2146025449037552, + "learning_rate": 0.0006, + "loss": 3.7185046672821045, + "step": 2534 + }, + { + "epoch": 35.20969855832241, + "grad_norm": 0.22748060524463654, + "learning_rate": 0.0006, + "loss": 3.659202814102173, + "step": 2535 + }, + { + "epoch": 35.22367846221057, + "grad_norm": 0.22272273898124695, + "learning_rate": 0.0006, + "loss": 3.7002370357513428, + "step": 2536 + }, + { + "epoch": 35.237658366098735, + "grad_norm": 0.23827379941940308, + "learning_rate": 0.0006, + "loss": 3.714664936065674, + "step": 2537 + }, + { + "epoch": 35.25163826998689, + "grad_norm": 0.2328156679868698, + "learning_rate": 0.0006, + "loss": 3.665173292160034, + "step": 2538 + }, + { + "epoch": 35.265618173875055, + "grad_norm": 0.2573475241661072, + "learning_rate": 0.0006, + "loss": 3.7073206901550293, + "step": 2539 + }, + { + "epoch": 35.27959807776322, + "grad_norm": 0.2411472052335739, + "learning_rate": 0.0006, + "loss": 3.697751045227051, + "step": 2540 + }, + { + "epoch": 35.293577981651374, + "grad_norm": 0.22836148738861084, + "learning_rate": 0.0006, + "loss": 3.7219419479370117, + "step": 2541 + }, + { + "epoch": 35.30755788553954, + "grad_norm": 0.2225421667098999, + "learning_rate": 0.0006, + "loss": 3.69516658782959, + "step": 2542 + }, + { + "epoch": 35.3215377894277, + "grad_norm": 0.2180362343788147, + "learning_rate": 0.0006, + "loss": 3.714043378829956, + "step": 2543 + }, + { + "epoch": 35.33551769331586, + "grad_norm": 0.23638299107551575, + "learning_rate": 0.0006, + "loss": 3.7449421882629395, + "step": 2544 + }, + { + "epoch": 35.34949759720402, + "grad_norm": 0.21792089939117432, + "learning_rate": 0.0006, + "loss": 3.7029948234558105, + "step": 2545 + }, + { + "epoch": 35.36347750109218, + "grad_norm": 0.23266112804412842, + "learning_rate": 0.0006, + "loss": 3.683509111404419, + "step": 2546 + }, + { + "epoch": 35.37745740498034, + "grad_norm": 0.24203059077262878, + "learning_rate": 0.0006, + "loss": 3.68572998046875, + "step": 2547 + }, + { + "epoch": 35.391437308868504, + "grad_norm": 0.2543564438819885, + "learning_rate": 0.0006, + "loss": 3.6902432441711426, + "step": 2548 + }, + { + "epoch": 35.40541721275666, + "grad_norm": 0.22990189492702484, + "learning_rate": 0.0006, + "loss": 3.708810329437256, + "step": 2549 + }, + { + "epoch": 35.419397116644824, + "grad_norm": 0.2594352662563324, + "learning_rate": 0.0006, + "loss": 3.7312886714935303, + "step": 2550 + }, + { + "epoch": 35.43337702053299, + "grad_norm": 0.27525269985198975, + "learning_rate": 0.0006, + "loss": 3.6963448524475098, + "step": 2551 + }, + { + "epoch": 35.44735692442114, + "grad_norm": 0.2436525970697403, + "learning_rate": 0.0006, + "loss": 3.6733713150024414, + "step": 2552 + }, + { + "epoch": 35.46133682830931, + "grad_norm": 0.25500908493995667, + "learning_rate": 0.0006, + "loss": 3.7104358673095703, + "step": 2553 + }, + { + "epoch": 35.47531673219746, + "grad_norm": 0.23504602909088135, + "learning_rate": 0.0006, + "loss": 3.7052388191223145, + "step": 2554 + }, + { + "epoch": 35.489296636085626, + "grad_norm": 0.2277563363313675, + "learning_rate": 0.0006, + "loss": 3.708714008331299, + "step": 2555 + }, + { + "epoch": 35.50327653997379, + "grad_norm": 0.25224778056144714, + "learning_rate": 0.0006, + "loss": 3.699676990509033, + "step": 2556 + }, + { + "epoch": 35.517256443861946, + "grad_norm": 0.28308045864105225, + "learning_rate": 0.0006, + "loss": 3.7005362510681152, + "step": 2557 + }, + { + "epoch": 35.53123634775011, + "grad_norm": 0.25858840346336365, + "learning_rate": 0.0006, + "loss": 3.689999580383301, + "step": 2558 + }, + { + "epoch": 35.54521625163827, + "grad_norm": 0.23497405648231506, + "learning_rate": 0.0006, + "loss": 3.695793867111206, + "step": 2559 + }, + { + "epoch": 35.55919615552643, + "grad_norm": 0.22375957667827606, + "learning_rate": 0.0006, + "loss": 3.7011494636535645, + "step": 2560 + }, + { + "epoch": 35.57317605941459, + "grad_norm": 0.21056118607521057, + "learning_rate": 0.0006, + "loss": 3.722623586654663, + "step": 2561 + }, + { + "epoch": 35.58715596330275, + "grad_norm": 0.22504374384880066, + "learning_rate": 0.0006, + "loss": 3.7211966514587402, + "step": 2562 + }, + { + "epoch": 35.60113586719091, + "grad_norm": 0.22349773347377777, + "learning_rate": 0.0006, + "loss": 3.6901848316192627, + "step": 2563 + }, + { + "epoch": 35.615115771079076, + "grad_norm": 0.219499409198761, + "learning_rate": 0.0006, + "loss": 3.709026575088501, + "step": 2564 + }, + { + "epoch": 35.62909567496723, + "grad_norm": 0.20461080968379974, + "learning_rate": 0.0006, + "loss": 3.72456693649292, + "step": 2565 + }, + { + "epoch": 35.643075578855395, + "grad_norm": 0.2083883285522461, + "learning_rate": 0.0006, + "loss": 3.6845502853393555, + "step": 2566 + }, + { + "epoch": 35.65705548274356, + "grad_norm": 0.19694562256336212, + "learning_rate": 0.0006, + "loss": 3.668515682220459, + "step": 2567 + }, + { + "epoch": 35.671035386631715, + "grad_norm": 0.2107984870672226, + "learning_rate": 0.0006, + "loss": 3.700723648071289, + "step": 2568 + }, + { + "epoch": 35.68501529051988, + "grad_norm": 0.18878720700740814, + "learning_rate": 0.0006, + "loss": 3.689150333404541, + "step": 2569 + }, + { + "epoch": 35.69899519440804, + "grad_norm": 0.20058824121952057, + "learning_rate": 0.0006, + "loss": 3.7048301696777344, + "step": 2570 + }, + { + "epoch": 35.7129750982962, + "grad_norm": 0.2200566679239273, + "learning_rate": 0.0006, + "loss": 3.6944580078125, + "step": 2571 + }, + { + "epoch": 35.72695500218436, + "grad_norm": 0.22200417518615723, + "learning_rate": 0.0006, + "loss": 3.715193510055542, + "step": 2572 + }, + { + "epoch": 35.74093490607252, + "grad_norm": 0.21011404693126678, + "learning_rate": 0.0006, + "loss": 3.737387180328369, + "step": 2573 + }, + { + "epoch": 35.75491480996068, + "grad_norm": 0.21139226853847504, + "learning_rate": 0.0006, + "loss": 3.695596694946289, + "step": 2574 + }, + { + "epoch": 35.768894713848844, + "grad_norm": 0.2112506479024887, + "learning_rate": 0.0006, + "loss": 3.7264227867126465, + "step": 2575 + }, + { + "epoch": 35.782874617737, + "grad_norm": 0.21528391540050507, + "learning_rate": 0.0006, + "loss": 3.7089385986328125, + "step": 2576 + }, + { + "epoch": 35.796854521625164, + "grad_norm": 0.2127804309129715, + "learning_rate": 0.0006, + "loss": 3.6995301246643066, + "step": 2577 + }, + { + "epoch": 35.81083442551333, + "grad_norm": 0.19839410483837128, + "learning_rate": 0.0006, + "loss": 3.7233223915100098, + "step": 2578 + }, + { + "epoch": 35.824814329401484, + "grad_norm": 0.19098423421382904, + "learning_rate": 0.0006, + "loss": 3.7108311653137207, + "step": 2579 + }, + { + "epoch": 35.83879423328965, + "grad_norm": 0.18697232007980347, + "learning_rate": 0.0006, + "loss": 3.725001811981201, + "step": 2580 + }, + { + "epoch": 35.8527741371778, + "grad_norm": 0.21051937341690063, + "learning_rate": 0.0006, + "loss": 3.7310993671417236, + "step": 2581 + }, + { + "epoch": 35.86675404106597, + "grad_norm": 0.2239079475402832, + "learning_rate": 0.0006, + "loss": 3.739056348800659, + "step": 2582 + }, + { + "epoch": 35.88073394495413, + "grad_norm": 0.2581230700016022, + "learning_rate": 0.0006, + "loss": 3.697061061859131, + "step": 2583 + }, + { + "epoch": 35.89471384884229, + "grad_norm": 0.25388655066490173, + "learning_rate": 0.0006, + "loss": 3.7173471450805664, + "step": 2584 + }, + { + "epoch": 35.90869375273045, + "grad_norm": 0.2557796537876129, + "learning_rate": 0.0006, + "loss": 3.7121596336364746, + "step": 2585 + }, + { + "epoch": 35.92267365661861, + "grad_norm": 0.21846474707126617, + "learning_rate": 0.0006, + "loss": 3.7342100143432617, + "step": 2586 + }, + { + "epoch": 35.93665356050677, + "grad_norm": 0.19810006022453308, + "learning_rate": 0.0006, + "loss": 3.7266340255737305, + "step": 2587 + }, + { + "epoch": 35.95063346439493, + "grad_norm": 0.28599923849105835, + "learning_rate": 0.0006, + "loss": 3.711876392364502, + "step": 2588 + }, + { + "epoch": 35.964613368283096, + "grad_norm": 0.3380447030067444, + "learning_rate": 0.0006, + "loss": 3.7611794471740723, + "step": 2589 + }, + { + "epoch": 35.97859327217125, + "grad_norm": 0.2946915328502655, + "learning_rate": 0.0006, + "loss": 3.7659358978271484, + "step": 2590 + }, + { + "epoch": 35.992573176059416, + "grad_norm": 0.2310202419757843, + "learning_rate": 0.0006, + "loss": 3.7124969959259033, + "step": 2591 + }, + { + "epoch": 36.0, + "grad_norm": 0.22294320166110992, + "learning_rate": 0.0006, + "loss": 3.725590705871582, + "step": 2592 + }, + { + "epoch": 36.0, + "eval_loss": 4.015472412109375, + "eval_runtime": 44.4903, + "eval_samples_per_second": 54.888, + "eval_steps_per_second": 3.439, + "step": 2592 + }, + { + "epoch": 36.01397990388816, + "grad_norm": 0.2442479431629181, + "learning_rate": 0.0006, + "loss": 3.6670360565185547, + "step": 2593 + }, + { + "epoch": 36.02795980777632, + "grad_norm": 0.27702075242996216, + "learning_rate": 0.0006, + "loss": 3.685915946960449, + "step": 2594 + }, + { + "epoch": 36.04193971166448, + "grad_norm": 0.22300852835178375, + "learning_rate": 0.0006, + "loss": 3.6993556022644043, + "step": 2595 + }, + { + "epoch": 36.05591961555265, + "grad_norm": 0.22456000745296478, + "learning_rate": 0.0006, + "loss": 3.6937754154205322, + "step": 2596 + }, + { + "epoch": 36.0698995194408, + "grad_norm": 0.23157717287540436, + "learning_rate": 0.0006, + "loss": 3.6573898792266846, + "step": 2597 + }, + { + "epoch": 36.083879423328966, + "grad_norm": 0.23002618551254272, + "learning_rate": 0.0006, + "loss": 3.6565046310424805, + "step": 2598 + }, + { + "epoch": 36.09785932721712, + "grad_norm": 0.223054900765419, + "learning_rate": 0.0006, + "loss": 3.6964457035064697, + "step": 2599 + }, + { + "epoch": 36.111839231105286, + "grad_norm": 0.21883328258991241, + "learning_rate": 0.0006, + "loss": 3.674757480621338, + "step": 2600 + }, + { + "epoch": 36.12581913499345, + "grad_norm": 0.21729037165641785, + "learning_rate": 0.0006, + "loss": 3.684323310852051, + "step": 2601 + }, + { + "epoch": 36.139799038881605, + "grad_norm": 0.21299415826797485, + "learning_rate": 0.0006, + "loss": 3.6554017066955566, + "step": 2602 + }, + { + "epoch": 36.15377894276977, + "grad_norm": 0.22723016142845154, + "learning_rate": 0.0006, + "loss": 3.666767120361328, + "step": 2603 + }, + { + "epoch": 36.16775884665793, + "grad_norm": 0.23663052916526794, + "learning_rate": 0.0006, + "loss": 3.692861557006836, + "step": 2604 + }, + { + "epoch": 36.18173875054609, + "grad_norm": 0.23544131219387054, + "learning_rate": 0.0006, + "loss": 3.6648998260498047, + "step": 2605 + }, + { + "epoch": 36.19571865443425, + "grad_norm": 0.24303849041461945, + "learning_rate": 0.0006, + "loss": 3.66096568107605, + "step": 2606 + }, + { + "epoch": 36.20969855832241, + "grad_norm": 0.23385047912597656, + "learning_rate": 0.0006, + "loss": 3.6636829376220703, + "step": 2607 + }, + { + "epoch": 36.22367846221057, + "grad_norm": 0.21988974511623383, + "learning_rate": 0.0006, + "loss": 3.685072660446167, + "step": 2608 + }, + { + "epoch": 36.237658366098735, + "grad_norm": 0.2365395724773407, + "learning_rate": 0.0006, + "loss": 3.7292234897613525, + "step": 2609 + }, + { + "epoch": 36.25163826998689, + "grad_norm": 0.23791152238845825, + "learning_rate": 0.0006, + "loss": 3.6870808601379395, + "step": 2610 + }, + { + "epoch": 36.265618173875055, + "grad_norm": 0.22954145073890686, + "learning_rate": 0.0006, + "loss": 3.705406904220581, + "step": 2611 + }, + { + "epoch": 36.27959807776322, + "grad_norm": 0.22748000919818878, + "learning_rate": 0.0006, + "loss": 3.680781841278076, + "step": 2612 + }, + { + "epoch": 36.293577981651374, + "grad_norm": 0.21827450394630432, + "learning_rate": 0.0006, + "loss": 3.6794490814208984, + "step": 2613 + }, + { + "epoch": 36.30755788553954, + "grad_norm": 0.2406153380870819, + "learning_rate": 0.0006, + "loss": 3.690225124359131, + "step": 2614 + }, + { + "epoch": 36.3215377894277, + "grad_norm": 0.2406231164932251, + "learning_rate": 0.0006, + "loss": 3.665867805480957, + "step": 2615 + }, + { + "epoch": 36.33551769331586, + "grad_norm": 0.20494551956653595, + "learning_rate": 0.0006, + "loss": 3.701937198638916, + "step": 2616 + }, + { + "epoch": 36.34949759720402, + "grad_norm": 0.1995103359222412, + "learning_rate": 0.0006, + "loss": 3.702033758163452, + "step": 2617 + }, + { + "epoch": 36.36347750109218, + "grad_norm": 0.1902446299791336, + "learning_rate": 0.0006, + "loss": 3.6809959411621094, + "step": 2618 + }, + { + "epoch": 36.37745740498034, + "grad_norm": 0.1810801923274994, + "learning_rate": 0.0006, + "loss": 3.689852714538574, + "step": 2619 + }, + { + "epoch": 36.391437308868504, + "grad_norm": 0.1882476955652237, + "learning_rate": 0.0006, + "loss": 3.710911273956299, + "step": 2620 + }, + { + "epoch": 36.40541721275666, + "grad_norm": 0.1912514567375183, + "learning_rate": 0.0006, + "loss": 3.7054009437561035, + "step": 2621 + }, + { + "epoch": 36.419397116644824, + "grad_norm": 0.19080901145935059, + "learning_rate": 0.0006, + "loss": 3.681145191192627, + "step": 2622 + }, + { + "epoch": 36.43337702053299, + "grad_norm": 0.193472221493721, + "learning_rate": 0.0006, + "loss": 3.661360740661621, + "step": 2623 + }, + { + "epoch": 36.44735692442114, + "grad_norm": 0.2034357339143753, + "learning_rate": 0.0006, + "loss": 3.706930160522461, + "step": 2624 + }, + { + "epoch": 36.46133682830931, + "grad_norm": 0.19924600422382355, + "learning_rate": 0.0006, + "loss": 3.6903364658355713, + "step": 2625 + }, + { + "epoch": 36.47531673219746, + "grad_norm": 0.20556052029132843, + "learning_rate": 0.0006, + "loss": 3.6974234580993652, + "step": 2626 + }, + { + "epoch": 36.489296636085626, + "grad_norm": 0.19628804922103882, + "learning_rate": 0.0006, + "loss": 3.6947717666625977, + "step": 2627 + }, + { + "epoch": 36.50327653997379, + "grad_norm": 0.18071836233139038, + "learning_rate": 0.0006, + "loss": 3.717582941055298, + "step": 2628 + }, + { + "epoch": 36.517256443861946, + "grad_norm": 0.20531553030014038, + "learning_rate": 0.0006, + "loss": 3.680610179901123, + "step": 2629 + }, + { + "epoch": 36.53123634775011, + "grad_norm": 0.23789429664611816, + "learning_rate": 0.0006, + "loss": 3.711493968963623, + "step": 2630 + }, + { + "epoch": 36.54521625163827, + "grad_norm": 0.23027348518371582, + "learning_rate": 0.0006, + "loss": 3.6827993392944336, + "step": 2631 + }, + { + "epoch": 36.55919615552643, + "grad_norm": 0.21941570937633514, + "learning_rate": 0.0006, + "loss": 3.682286262512207, + "step": 2632 + }, + { + "epoch": 36.57317605941459, + "grad_norm": 0.21213553845882416, + "learning_rate": 0.0006, + "loss": 3.6828765869140625, + "step": 2633 + }, + { + "epoch": 36.58715596330275, + "grad_norm": 0.21929772198200226, + "learning_rate": 0.0006, + "loss": 3.697030544281006, + "step": 2634 + }, + { + "epoch": 36.60113586719091, + "grad_norm": 0.2101750522851944, + "learning_rate": 0.0006, + "loss": 3.723201274871826, + "step": 2635 + }, + { + "epoch": 36.615115771079076, + "grad_norm": 0.19014132022857666, + "learning_rate": 0.0006, + "loss": 3.6989338397979736, + "step": 2636 + }, + { + "epoch": 36.62909567496723, + "grad_norm": 0.21566815674304962, + "learning_rate": 0.0006, + "loss": 3.6968226432800293, + "step": 2637 + }, + { + "epoch": 36.643075578855395, + "grad_norm": 0.20500224828720093, + "learning_rate": 0.0006, + "loss": 3.689640522003174, + "step": 2638 + }, + { + "epoch": 36.65705548274356, + "grad_norm": 0.210358127951622, + "learning_rate": 0.0006, + "loss": 3.6996328830718994, + "step": 2639 + }, + { + "epoch": 36.671035386631715, + "grad_norm": 0.2061213105916977, + "learning_rate": 0.0006, + "loss": 3.7019221782684326, + "step": 2640 + }, + { + "epoch": 36.68501529051988, + "grad_norm": 0.21494871377944946, + "learning_rate": 0.0006, + "loss": 3.6634578704833984, + "step": 2641 + }, + { + "epoch": 36.69899519440804, + "grad_norm": 0.19586549699306488, + "learning_rate": 0.0006, + "loss": 3.708131790161133, + "step": 2642 + }, + { + "epoch": 36.7129750982962, + "grad_norm": 0.22805732488632202, + "learning_rate": 0.0006, + "loss": 3.6977362632751465, + "step": 2643 + }, + { + "epoch": 36.72695500218436, + "grad_norm": 0.28397148847579956, + "learning_rate": 0.0006, + "loss": 3.6847963333129883, + "step": 2644 + }, + { + "epoch": 36.74093490607252, + "grad_norm": 0.28333187103271484, + "learning_rate": 0.0006, + "loss": 3.734257459640503, + "step": 2645 + }, + { + "epoch": 36.75491480996068, + "grad_norm": 0.22314953804016113, + "learning_rate": 0.0006, + "loss": 3.6871445178985596, + "step": 2646 + }, + { + "epoch": 36.768894713848844, + "grad_norm": 0.20580267906188965, + "learning_rate": 0.0006, + "loss": 3.692736864089966, + "step": 2647 + }, + { + "epoch": 36.782874617737, + "grad_norm": 0.22695036232471466, + "learning_rate": 0.0006, + "loss": 3.697096824645996, + "step": 2648 + }, + { + "epoch": 36.796854521625164, + "grad_norm": 0.25916165113449097, + "learning_rate": 0.0006, + "loss": 3.7099573612213135, + "step": 2649 + }, + { + "epoch": 36.81083442551333, + "grad_norm": 0.26024341583251953, + "learning_rate": 0.0006, + "loss": 3.7161359786987305, + "step": 2650 + }, + { + "epoch": 36.824814329401484, + "grad_norm": 0.2340802699327469, + "learning_rate": 0.0006, + "loss": 3.708864688873291, + "step": 2651 + }, + { + "epoch": 36.83879423328965, + "grad_norm": 0.23312288522720337, + "learning_rate": 0.0006, + "loss": 3.7351365089416504, + "step": 2652 + }, + { + "epoch": 36.8527741371778, + "grad_norm": 0.22953253984451294, + "learning_rate": 0.0006, + "loss": 3.735302209854126, + "step": 2653 + }, + { + "epoch": 36.86675404106597, + "grad_norm": 0.21928828954696655, + "learning_rate": 0.0006, + "loss": 3.72445011138916, + "step": 2654 + }, + { + "epoch": 36.88073394495413, + "grad_norm": 0.22865602374076843, + "learning_rate": 0.0006, + "loss": 3.714867115020752, + "step": 2655 + }, + { + "epoch": 36.89471384884229, + "grad_norm": 0.23255643248558044, + "learning_rate": 0.0006, + "loss": 3.695101261138916, + "step": 2656 + }, + { + "epoch": 36.90869375273045, + "grad_norm": 0.2491452544927597, + "learning_rate": 0.0006, + "loss": 3.70692777633667, + "step": 2657 + }, + { + "epoch": 36.92267365661861, + "grad_norm": 0.27367597818374634, + "learning_rate": 0.0006, + "loss": 3.6906654834747314, + "step": 2658 + }, + { + "epoch": 36.93665356050677, + "grad_norm": 0.26728564500808716, + "learning_rate": 0.0006, + "loss": 3.7092056274414062, + "step": 2659 + }, + { + "epoch": 36.95063346439493, + "grad_norm": 0.207070454955101, + "learning_rate": 0.0006, + "loss": 3.7152137756347656, + "step": 2660 + }, + { + "epoch": 36.964613368283096, + "grad_norm": 0.21671561896800995, + "learning_rate": 0.0006, + "loss": 3.7130112648010254, + "step": 2661 + }, + { + "epoch": 36.97859327217125, + "grad_norm": 0.2140914648771286, + "learning_rate": 0.0006, + "loss": 3.7286999225616455, + "step": 2662 + }, + { + "epoch": 36.992573176059416, + "grad_norm": 0.21324342489242554, + "learning_rate": 0.0006, + "loss": 3.6828715801239014, + "step": 2663 + }, + { + "epoch": 37.0, + "grad_norm": 0.22366146743297577, + "learning_rate": 0.0006, + "loss": 3.69199800491333, + "step": 2664 + }, + { + "epoch": 37.0, + "eval_loss": 4.011842727661133, + "eval_runtime": 44.7825, + "eval_samples_per_second": 54.53, + "eval_steps_per_second": 3.417, + "step": 2664 + }, + { + "epoch": 37.01397990388816, + "grad_norm": 0.22093228995800018, + "learning_rate": 0.0006, + "loss": 3.6940979957580566, + "step": 2665 + }, + { + "epoch": 37.02795980777632, + "grad_norm": 0.20821493864059448, + "learning_rate": 0.0006, + "loss": 3.670813798904419, + "step": 2666 + }, + { + "epoch": 37.04193971166448, + "grad_norm": 0.22330114245414734, + "learning_rate": 0.0006, + "loss": 3.6392664909362793, + "step": 2667 + }, + { + "epoch": 37.05591961555265, + "grad_norm": 0.2224634289741516, + "learning_rate": 0.0006, + "loss": 3.660856246948242, + "step": 2668 + }, + { + "epoch": 37.0698995194408, + "grad_norm": 0.2255052626132965, + "learning_rate": 0.0006, + "loss": 3.6393589973449707, + "step": 2669 + }, + { + "epoch": 37.083879423328966, + "grad_norm": 0.23462942242622375, + "learning_rate": 0.0006, + "loss": 3.684429168701172, + "step": 2670 + }, + { + "epoch": 37.09785932721712, + "grad_norm": 0.23743386566638947, + "learning_rate": 0.0006, + "loss": 3.67622709274292, + "step": 2671 + }, + { + "epoch": 37.111839231105286, + "grad_norm": 0.2276267409324646, + "learning_rate": 0.0006, + "loss": 3.6487984657287598, + "step": 2672 + }, + { + "epoch": 37.12581913499345, + "grad_norm": 0.24448423087596893, + "learning_rate": 0.0006, + "loss": 3.67645525932312, + "step": 2673 + }, + { + "epoch": 37.139799038881605, + "grad_norm": 0.2428973764181137, + "learning_rate": 0.0006, + "loss": 3.681497097015381, + "step": 2674 + }, + { + "epoch": 37.15377894276977, + "grad_norm": 0.21918512880802155, + "learning_rate": 0.0006, + "loss": 3.67134428024292, + "step": 2675 + }, + { + "epoch": 37.16775884665793, + "grad_norm": 0.2103680670261383, + "learning_rate": 0.0006, + "loss": 3.6508708000183105, + "step": 2676 + }, + { + "epoch": 37.18173875054609, + "grad_norm": 0.20674929022789001, + "learning_rate": 0.0006, + "loss": 3.6904029846191406, + "step": 2677 + }, + { + "epoch": 37.19571865443425, + "grad_norm": 0.21867282688617706, + "learning_rate": 0.0006, + "loss": 3.697535514831543, + "step": 2678 + }, + { + "epoch": 37.20969855832241, + "grad_norm": 0.22919587790966034, + "learning_rate": 0.0006, + "loss": 3.675565004348755, + "step": 2679 + }, + { + "epoch": 37.22367846221057, + "grad_norm": 0.22255578637123108, + "learning_rate": 0.0006, + "loss": 3.6830129623413086, + "step": 2680 + }, + { + "epoch": 37.237658366098735, + "grad_norm": 0.22460198402404785, + "learning_rate": 0.0006, + "loss": 3.6872951984405518, + "step": 2681 + }, + { + "epoch": 37.25163826998689, + "grad_norm": 0.23677165806293488, + "learning_rate": 0.0006, + "loss": 3.6779165267944336, + "step": 2682 + }, + { + "epoch": 37.265618173875055, + "grad_norm": 0.23231394588947296, + "learning_rate": 0.0006, + "loss": 3.6831178665161133, + "step": 2683 + }, + { + "epoch": 37.27959807776322, + "grad_norm": 0.22131343185901642, + "learning_rate": 0.0006, + "loss": 3.664295196533203, + "step": 2684 + }, + { + "epoch": 37.293577981651374, + "grad_norm": 0.23424340784549713, + "learning_rate": 0.0006, + "loss": 3.696678638458252, + "step": 2685 + }, + { + "epoch": 37.30755788553954, + "grad_norm": 0.22695423662662506, + "learning_rate": 0.0006, + "loss": 3.6697473526000977, + "step": 2686 + }, + { + "epoch": 37.3215377894277, + "grad_norm": 0.2165997475385666, + "learning_rate": 0.0006, + "loss": 3.6801891326904297, + "step": 2687 + }, + { + "epoch": 37.33551769331586, + "grad_norm": 0.2241077572107315, + "learning_rate": 0.0006, + "loss": 3.6957011222839355, + "step": 2688 + }, + { + "epoch": 37.34949759720402, + "grad_norm": 0.21191732585430145, + "learning_rate": 0.0006, + "loss": 3.6812620162963867, + "step": 2689 + }, + { + "epoch": 37.36347750109218, + "grad_norm": 0.1827201396226883, + "learning_rate": 0.0006, + "loss": 3.6797738075256348, + "step": 2690 + }, + { + "epoch": 37.37745740498034, + "grad_norm": 0.20793627202510834, + "learning_rate": 0.0006, + "loss": 3.672819137573242, + "step": 2691 + }, + { + "epoch": 37.391437308868504, + "grad_norm": 0.19737116992473602, + "learning_rate": 0.0006, + "loss": 3.667839527130127, + "step": 2692 + }, + { + "epoch": 37.40541721275666, + "grad_norm": 0.18670497834682465, + "learning_rate": 0.0006, + "loss": 3.651561737060547, + "step": 2693 + }, + { + "epoch": 37.419397116644824, + "grad_norm": 0.21385592222213745, + "learning_rate": 0.0006, + "loss": 3.717456340789795, + "step": 2694 + }, + { + "epoch": 37.43337702053299, + "grad_norm": 0.20590044558048248, + "learning_rate": 0.0006, + "loss": 3.6950271129608154, + "step": 2695 + }, + { + "epoch": 37.44735692442114, + "grad_norm": 0.1992103010416031, + "learning_rate": 0.0006, + "loss": 3.687854290008545, + "step": 2696 + }, + { + "epoch": 37.46133682830931, + "grad_norm": 0.2004154473543167, + "learning_rate": 0.0006, + "loss": 3.695838451385498, + "step": 2697 + }, + { + "epoch": 37.47531673219746, + "grad_norm": 0.2019810527563095, + "learning_rate": 0.0006, + "loss": 3.690431594848633, + "step": 2698 + }, + { + "epoch": 37.489296636085626, + "grad_norm": 0.2192547768354416, + "learning_rate": 0.0006, + "loss": 3.6743836402893066, + "step": 2699 + }, + { + "epoch": 37.50327653997379, + "grad_norm": 0.2568076550960541, + "learning_rate": 0.0006, + "loss": 3.6857337951660156, + "step": 2700 + }, + { + "epoch": 37.517256443861946, + "grad_norm": 0.20050311088562012, + "learning_rate": 0.0006, + "loss": 3.6811180114746094, + "step": 2701 + }, + { + "epoch": 37.53123634775011, + "grad_norm": 0.21008558571338654, + "learning_rate": 0.0006, + "loss": 3.700563907623291, + "step": 2702 + }, + { + "epoch": 37.54521625163827, + "grad_norm": 0.2393747717142105, + "learning_rate": 0.0006, + "loss": 3.679438591003418, + "step": 2703 + }, + { + "epoch": 37.55919615552643, + "grad_norm": 0.2531895041465759, + "learning_rate": 0.0006, + "loss": 3.682903289794922, + "step": 2704 + }, + { + "epoch": 37.57317605941459, + "grad_norm": 0.2372656762599945, + "learning_rate": 0.0006, + "loss": 3.7128796577453613, + "step": 2705 + }, + { + "epoch": 37.58715596330275, + "grad_norm": 0.20020034909248352, + "learning_rate": 0.0006, + "loss": 3.701916217803955, + "step": 2706 + }, + { + "epoch": 37.60113586719091, + "grad_norm": 0.20250852406024933, + "learning_rate": 0.0006, + "loss": 3.6761491298675537, + "step": 2707 + }, + { + "epoch": 37.615115771079076, + "grad_norm": 0.19259589910507202, + "learning_rate": 0.0006, + "loss": 3.715104579925537, + "step": 2708 + }, + { + "epoch": 37.62909567496723, + "grad_norm": 0.19649392366409302, + "learning_rate": 0.0006, + "loss": 3.687556266784668, + "step": 2709 + }, + { + "epoch": 37.643075578855395, + "grad_norm": 0.1909446269273758, + "learning_rate": 0.0006, + "loss": 3.684046745300293, + "step": 2710 + }, + { + "epoch": 37.65705548274356, + "grad_norm": 0.19589872658252716, + "learning_rate": 0.0006, + "loss": 3.707886219024658, + "step": 2711 + }, + { + "epoch": 37.671035386631715, + "grad_norm": 0.19472210109233856, + "learning_rate": 0.0006, + "loss": 3.6837692260742188, + "step": 2712 + }, + { + "epoch": 37.68501529051988, + "grad_norm": 0.22622711956501007, + "learning_rate": 0.0006, + "loss": 3.703619956970215, + "step": 2713 + }, + { + "epoch": 37.69899519440804, + "grad_norm": 0.24314729869365692, + "learning_rate": 0.0006, + "loss": 3.7345223426818848, + "step": 2714 + }, + { + "epoch": 37.7129750982962, + "grad_norm": 0.23934306204319, + "learning_rate": 0.0006, + "loss": 3.687809705734253, + "step": 2715 + }, + { + "epoch": 37.72695500218436, + "grad_norm": 0.24838587641716003, + "learning_rate": 0.0006, + "loss": 3.708613872528076, + "step": 2716 + }, + { + "epoch": 37.74093490607252, + "grad_norm": 0.23191452026367188, + "learning_rate": 0.0006, + "loss": 3.7090163230895996, + "step": 2717 + }, + { + "epoch": 37.75491480996068, + "grad_norm": 0.24574638903141022, + "learning_rate": 0.0006, + "loss": 3.68489146232605, + "step": 2718 + }, + { + "epoch": 37.768894713848844, + "grad_norm": 0.2706749439239502, + "learning_rate": 0.0006, + "loss": 3.687061309814453, + "step": 2719 + }, + { + "epoch": 37.782874617737, + "grad_norm": 0.25955191254615784, + "learning_rate": 0.0006, + "loss": 3.694173812866211, + "step": 2720 + }, + { + "epoch": 37.796854521625164, + "grad_norm": 0.22040610015392303, + "learning_rate": 0.0006, + "loss": 3.701871871948242, + "step": 2721 + }, + { + "epoch": 37.81083442551333, + "grad_norm": 0.22328512370586395, + "learning_rate": 0.0006, + "loss": 3.7082555294036865, + "step": 2722 + }, + { + "epoch": 37.824814329401484, + "grad_norm": 0.2290581911802292, + "learning_rate": 0.0006, + "loss": 3.7023987770080566, + "step": 2723 + }, + { + "epoch": 37.83879423328965, + "grad_norm": 0.23129472136497498, + "learning_rate": 0.0006, + "loss": 3.7101752758026123, + "step": 2724 + }, + { + "epoch": 37.8527741371778, + "grad_norm": 0.21203753352165222, + "learning_rate": 0.0006, + "loss": 3.712129592895508, + "step": 2725 + }, + { + "epoch": 37.86675404106597, + "grad_norm": 0.21938200294971466, + "learning_rate": 0.0006, + "loss": 3.7086095809936523, + "step": 2726 + }, + { + "epoch": 37.88073394495413, + "grad_norm": 0.2203572541475296, + "learning_rate": 0.0006, + "loss": 3.6789026260375977, + "step": 2727 + }, + { + "epoch": 37.89471384884229, + "grad_norm": 0.18146046996116638, + "learning_rate": 0.0006, + "loss": 3.666893243789673, + "step": 2728 + }, + { + "epoch": 37.90869375273045, + "grad_norm": 0.1879623532295227, + "learning_rate": 0.0006, + "loss": 3.69246768951416, + "step": 2729 + }, + { + "epoch": 37.92267365661861, + "grad_norm": 0.18311670422554016, + "learning_rate": 0.0006, + "loss": 3.682036876678467, + "step": 2730 + }, + { + "epoch": 37.93665356050677, + "grad_norm": 0.1898486614227295, + "learning_rate": 0.0006, + "loss": 3.6683125495910645, + "step": 2731 + }, + { + "epoch": 37.95063346439493, + "grad_norm": 0.1858556717634201, + "learning_rate": 0.0006, + "loss": 3.6879611015319824, + "step": 2732 + }, + { + "epoch": 37.964613368283096, + "grad_norm": 0.19914504885673523, + "learning_rate": 0.0006, + "loss": 3.690250873565674, + "step": 2733 + }, + { + "epoch": 37.97859327217125, + "grad_norm": 0.20406974852085114, + "learning_rate": 0.0006, + "loss": 3.6812171936035156, + "step": 2734 + }, + { + "epoch": 37.992573176059416, + "grad_norm": 0.2003912478685379, + "learning_rate": 0.0006, + "loss": 3.6852147579193115, + "step": 2735 + }, + { + "epoch": 38.0, + "grad_norm": 0.22644472122192383, + "learning_rate": 0.0006, + "loss": 3.645207405090332, + "step": 2736 + }, + { + "epoch": 38.0, + "eval_loss": 3.995000123977661, + "eval_runtime": 45.1644, + "eval_samples_per_second": 54.069, + "eval_steps_per_second": 3.388, + "step": 2736 + }, + { + "epoch": 38.01397990388816, + "grad_norm": 0.1989814043045044, + "learning_rate": 0.0006, + "loss": 3.6511387825012207, + "step": 2737 + }, + { + "epoch": 38.02795980777632, + "grad_norm": 0.203324094414711, + "learning_rate": 0.0006, + "loss": 3.6513094902038574, + "step": 2738 + }, + { + "epoch": 38.04193971166448, + "grad_norm": 0.21504290401935577, + "learning_rate": 0.0006, + "loss": 3.647711992263794, + "step": 2739 + }, + { + "epoch": 38.05591961555265, + "grad_norm": 0.23464815318584442, + "learning_rate": 0.0006, + "loss": 3.6418747901916504, + "step": 2740 + }, + { + "epoch": 38.0698995194408, + "grad_norm": 0.242184117436409, + "learning_rate": 0.0006, + "loss": 3.6741859912872314, + "step": 2741 + }, + { + "epoch": 38.083879423328966, + "grad_norm": 0.23488445580005646, + "learning_rate": 0.0006, + "loss": 3.6710941791534424, + "step": 2742 + }, + { + "epoch": 38.09785932721712, + "grad_norm": 0.20800170302391052, + "learning_rate": 0.0006, + "loss": 3.660001754760742, + "step": 2743 + }, + { + "epoch": 38.111839231105286, + "grad_norm": 0.19505052268505096, + "learning_rate": 0.0006, + "loss": 3.684129238128662, + "step": 2744 + }, + { + "epoch": 38.12581913499345, + "grad_norm": 0.2185833901166916, + "learning_rate": 0.0006, + "loss": 3.656033515930176, + "step": 2745 + }, + { + "epoch": 38.139799038881605, + "grad_norm": 0.21850253641605377, + "learning_rate": 0.0006, + "loss": 3.6818184852600098, + "step": 2746 + }, + { + "epoch": 38.15377894276977, + "grad_norm": 0.2109488695859909, + "learning_rate": 0.0006, + "loss": 3.6485435962677, + "step": 2747 + }, + { + "epoch": 38.16775884665793, + "grad_norm": 0.21059907972812653, + "learning_rate": 0.0006, + "loss": 3.6734395027160645, + "step": 2748 + }, + { + "epoch": 38.18173875054609, + "grad_norm": 0.20741555094718933, + "learning_rate": 0.0006, + "loss": 3.6672463417053223, + "step": 2749 + }, + { + "epoch": 38.19571865443425, + "grad_norm": 0.2130175530910492, + "learning_rate": 0.0006, + "loss": 3.692840576171875, + "step": 2750 + }, + { + "epoch": 38.20969855832241, + "grad_norm": 0.1899138242006302, + "learning_rate": 0.0006, + "loss": 3.675316333770752, + "step": 2751 + }, + { + "epoch": 38.22367846221057, + "grad_norm": 0.218918576836586, + "learning_rate": 0.0006, + "loss": 3.634105920791626, + "step": 2752 + }, + { + "epoch": 38.237658366098735, + "grad_norm": 0.23649370670318604, + "learning_rate": 0.0006, + "loss": 3.6526122093200684, + "step": 2753 + }, + { + "epoch": 38.25163826998689, + "grad_norm": 0.22011931240558624, + "learning_rate": 0.0006, + "loss": 3.6859593391418457, + "step": 2754 + }, + { + "epoch": 38.265618173875055, + "grad_norm": 0.2143620252609253, + "learning_rate": 0.0006, + "loss": 3.656838893890381, + "step": 2755 + }, + { + "epoch": 38.27959807776322, + "grad_norm": 0.24068567156791687, + "learning_rate": 0.0006, + "loss": 3.67006254196167, + "step": 2756 + }, + { + "epoch": 38.293577981651374, + "grad_norm": 0.25773152709007263, + "learning_rate": 0.0006, + "loss": 3.6648950576782227, + "step": 2757 + }, + { + "epoch": 38.30755788553954, + "grad_norm": 0.24213455617427826, + "learning_rate": 0.0006, + "loss": 3.6918864250183105, + "step": 2758 + }, + { + "epoch": 38.3215377894277, + "grad_norm": 0.22463668882846832, + "learning_rate": 0.0006, + "loss": 3.6662540435791016, + "step": 2759 + }, + { + "epoch": 38.33551769331586, + "grad_norm": 0.22541455924510956, + "learning_rate": 0.0006, + "loss": 3.6563215255737305, + "step": 2760 + }, + { + "epoch": 38.34949759720402, + "grad_norm": 0.21833783388137817, + "learning_rate": 0.0006, + "loss": 3.650446891784668, + "step": 2761 + }, + { + "epoch": 38.36347750109218, + "grad_norm": 0.22799745202064514, + "learning_rate": 0.0006, + "loss": 3.7007250785827637, + "step": 2762 + }, + { + "epoch": 38.37745740498034, + "grad_norm": 0.23739562928676605, + "learning_rate": 0.0006, + "loss": 3.667130708694458, + "step": 2763 + }, + { + "epoch": 38.391437308868504, + "grad_norm": 0.23744846880435944, + "learning_rate": 0.0006, + "loss": 3.678760528564453, + "step": 2764 + }, + { + "epoch": 38.40541721275666, + "grad_norm": 0.2677105963230133, + "learning_rate": 0.0006, + "loss": 3.6829030513763428, + "step": 2765 + }, + { + "epoch": 38.419397116644824, + "grad_norm": 0.24490566551685333, + "learning_rate": 0.0006, + "loss": 3.707911491394043, + "step": 2766 + }, + { + "epoch": 38.43337702053299, + "grad_norm": 0.23477254807949066, + "learning_rate": 0.0006, + "loss": 3.680157423019409, + "step": 2767 + }, + { + "epoch": 38.44735692442114, + "grad_norm": 0.26611173152923584, + "learning_rate": 0.0006, + "loss": 3.660834550857544, + "step": 2768 + }, + { + "epoch": 38.46133682830931, + "grad_norm": 0.24505069851875305, + "learning_rate": 0.0006, + "loss": 3.696178436279297, + "step": 2769 + }, + { + "epoch": 38.47531673219746, + "grad_norm": 0.22933335602283478, + "learning_rate": 0.0006, + "loss": 3.6506235599517822, + "step": 2770 + }, + { + "epoch": 38.489296636085626, + "grad_norm": 0.23662401735782623, + "learning_rate": 0.0006, + "loss": 3.680819511413574, + "step": 2771 + }, + { + "epoch": 38.50327653997379, + "grad_norm": 0.27774113416671753, + "learning_rate": 0.0006, + "loss": 3.699146270751953, + "step": 2772 + }, + { + "epoch": 38.517256443861946, + "grad_norm": 0.2881671190261841, + "learning_rate": 0.0006, + "loss": 3.6509652137756348, + "step": 2773 + }, + { + "epoch": 38.53123634775011, + "grad_norm": 0.26570361852645874, + "learning_rate": 0.0006, + "loss": 3.6808385848999023, + "step": 2774 + }, + { + "epoch": 38.54521625163827, + "grad_norm": 0.23043136298656464, + "learning_rate": 0.0006, + "loss": 3.7082371711730957, + "step": 2775 + }, + { + "epoch": 38.55919615552643, + "grad_norm": 0.23730400204658508, + "learning_rate": 0.0006, + "loss": 3.653615951538086, + "step": 2776 + }, + { + "epoch": 38.57317605941459, + "grad_norm": 0.2332635223865509, + "learning_rate": 0.0006, + "loss": 3.6869683265686035, + "step": 2777 + }, + { + "epoch": 38.58715596330275, + "grad_norm": 0.22913676500320435, + "learning_rate": 0.0006, + "loss": 3.6998367309570312, + "step": 2778 + }, + { + "epoch": 38.60113586719091, + "grad_norm": 0.226078599691391, + "learning_rate": 0.0006, + "loss": 3.7051444053649902, + "step": 2779 + }, + { + "epoch": 38.615115771079076, + "grad_norm": 0.2336396723985672, + "learning_rate": 0.0006, + "loss": 3.6964943408966064, + "step": 2780 + }, + { + "epoch": 38.62909567496723, + "grad_norm": 0.23270335793495178, + "learning_rate": 0.0006, + "loss": 3.6741909980773926, + "step": 2781 + }, + { + "epoch": 38.643075578855395, + "grad_norm": 0.19324959814548492, + "learning_rate": 0.0006, + "loss": 3.64506196975708, + "step": 2782 + }, + { + "epoch": 38.65705548274356, + "grad_norm": 0.18551453948020935, + "learning_rate": 0.0006, + "loss": 3.6834206581115723, + "step": 2783 + }, + { + "epoch": 38.671035386631715, + "grad_norm": 0.17392469942569733, + "learning_rate": 0.0006, + "loss": 3.67282772064209, + "step": 2784 + }, + { + "epoch": 38.68501529051988, + "grad_norm": 0.19093742966651917, + "learning_rate": 0.0006, + "loss": 3.6648201942443848, + "step": 2785 + }, + { + "epoch": 38.69899519440804, + "grad_norm": 0.2124558985233307, + "learning_rate": 0.0006, + "loss": 3.712191581726074, + "step": 2786 + }, + { + "epoch": 38.7129750982962, + "grad_norm": 0.2220139354467392, + "learning_rate": 0.0006, + "loss": 3.675504207611084, + "step": 2787 + }, + { + "epoch": 38.72695500218436, + "grad_norm": 0.17677755653858185, + "learning_rate": 0.0006, + "loss": 3.6693475246429443, + "step": 2788 + }, + { + "epoch": 38.74093490607252, + "grad_norm": 0.2002430409193039, + "learning_rate": 0.0006, + "loss": 3.6906018257141113, + "step": 2789 + }, + { + "epoch": 38.75491480996068, + "grad_norm": 0.18844179809093475, + "learning_rate": 0.0006, + "loss": 3.660121440887451, + "step": 2790 + }, + { + "epoch": 38.768894713848844, + "grad_norm": 0.19319336116313934, + "learning_rate": 0.0006, + "loss": 3.6592631340026855, + "step": 2791 + }, + { + "epoch": 38.782874617737, + "grad_norm": 0.18624325096607208, + "learning_rate": 0.0006, + "loss": 3.6935300827026367, + "step": 2792 + }, + { + "epoch": 38.796854521625164, + "grad_norm": 0.2049761712551117, + "learning_rate": 0.0006, + "loss": 3.6702702045440674, + "step": 2793 + }, + { + "epoch": 38.81083442551333, + "grad_norm": 0.2030584216117859, + "learning_rate": 0.0006, + "loss": 3.714639663696289, + "step": 2794 + }, + { + "epoch": 38.824814329401484, + "grad_norm": 0.18989548087120056, + "learning_rate": 0.0006, + "loss": 3.678253412246704, + "step": 2795 + }, + { + "epoch": 38.83879423328965, + "grad_norm": 0.19944126904010773, + "learning_rate": 0.0006, + "loss": 3.648367166519165, + "step": 2796 + }, + { + "epoch": 38.8527741371778, + "grad_norm": 0.2062688171863556, + "learning_rate": 0.0006, + "loss": 3.701514720916748, + "step": 2797 + }, + { + "epoch": 38.86675404106597, + "grad_norm": 0.21475110948085785, + "learning_rate": 0.0006, + "loss": 3.6725993156433105, + "step": 2798 + }, + { + "epoch": 38.88073394495413, + "grad_norm": 0.2240881323814392, + "learning_rate": 0.0006, + "loss": 3.6944539546966553, + "step": 2799 + }, + { + "epoch": 38.89471384884229, + "grad_norm": 0.23074312508106232, + "learning_rate": 0.0006, + "loss": 3.747671365737915, + "step": 2800 + }, + { + "epoch": 38.90869375273045, + "grad_norm": 0.2447938323020935, + "learning_rate": 0.0006, + "loss": 3.6856026649475098, + "step": 2801 + }, + { + "epoch": 38.92267365661861, + "grad_norm": 0.2136487364768982, + "learning_rate": 0.0006, + "loss": 3.710397720336914, + "step": 2802 + }, + { + "epoch": 38.93665356050677, + "grad_norm": 0.21676769852638245, + "learning_rate": 0.0006, + "loss": 3.6911189556121826, + "step": 2803 + }, + { + "epoch": 38.95063346439493, + "grad_norm": 0.2226478010416031, + "learning_rate": 0.0006, + "loss": 3.6902880668640137, + "step": 2804 + }, + { + "epoch": 38.964613368283096, + "grad_norm": 0.2071496546268463, + "learning_rate": 0.0006, + "loss": 3.6831371784210205, + "step": 2805 + }, + { + "epoch": 38.97859327217125, + "grad_norm": 0.19568349421024323, + "learning_rate": 0.0006, + "loss": 3.6897640228271484, + "step": 2806 + }, + { + "epoch": 38.992573176059416, + "grad_norm": 0.19067516922950745, + "learning_rate": 0.0006, + "loss": 3.7096242904663086, + "step": 2807 + }, + { + "epoch": 39.0, + "grad_norm": 0.22872281074523926, + "learning_rate": 0.0006, + "loss": 3.689342975616455, + "step": 2808 + }, + { + "epoch": 39.0, + "eval_loss": 4.001968860626221, + "eval_runtime": 44.8452, + "eval_samples_per_second": 54.454, + "eval_steps_per_second": 3.412, + "step": 2808 + }, + { + "epoch": 39.01397990388816, + "grad_norm": 0.21685896813869476, + "learning_rate": 0.0006, + "loss": 3.638145923614502, + "step": 2809 + }, + { + "epoch": 39.02795980777632, + "grad_norm": 0.20085014402866364, + "learning_rate": 0.0006, + "loss": 3.626654624938965, + "step": 2810 + }, + { + "epoch": 39.04193971166448, + "grad_norm": 0.20615799725055695, + "learning_rate": 0.0006, + "loss": 3.6280088424682617, + "step": 2811 + }, + { + "epoch": 39.05591961555265, + "grad_norm": 0.23471905291080475, + "learning_rate": 0.0006, + "loss": 3.6444239616394043, + "step": 2812 + }, + { + "epoch": 39.0698995194408, + "grad_norm": 0.22207780182361603, + "learning_rate": 0.0006, + "loss": 3.6276912689208984, + "step": 2813 + }, + { + "epoch": 39.083879423328966, + "grad_norm": 0.23354043066501617, + "learning_rate": 0.0006, + "loss": 3.7007269859313965, + "step": 2814 + }, + { + "epoch": 39.09785932721712, + "grad_norm": 0.22520557045936584, + "learning_rate": 0.0006, + "loss": 3.6487162113189697, + "step": 2815 + }, + { + "epoch": 39.111839231105286, + "grad_norm": 0.20489682257175446, + "learning_rate": 0.0006, + "loss": 3.6523492336273193, + "step": 2816 + }, + { + "epoch": 39.12581913499345, + "grad_norm": 0.20979270339012146, + "learning_rate": 0.0006, + "loss": 3.6574230194091797, + "step": 2817 + }, + { + "epoch": 39.139799038881605, + "grad_norm": 0.2256486713886261, + "learning_rate": 0.0006, + "loss": 3.6499013900756836, + "step": 2818 + }, + { + "epoch": 39.15377894276977, + "grad_norm": 0.1960437297821045, + "learning_rate": 0.0006, + "loss": 3.6780271530151367, + "step": 2819 + }, + { + "epoch": 39.16775884665793, + "grad_norm": 0.19279663264751434, + "learning_rate": 0.0006, + "loss": 3.623819589614868, + "step": 2820 + }, + { + "epoch": 39.18173875054609, + "grad_norm": 0.19151495397090912, + "learning_rate": 0.0006, + "loss": 3.612868070602417, + "step": 2821 + }, + { + "epoch": 39.19571865443425, + "grad_norm": 0.19399534165859222, + "learning_rate": 0.0006, + "loss": 3.6518092155456543, + "step": 2822 + }, + { + "epoch": 39.20969855832241, + "grad_norm": 0.21723251044750214, + "learning_rate": 0.0006, + "loss": 3.681509494781494, + "step": 2823 + }, + { + "epoch": 39.22367846221057, + "grad_norm": 0.2487006038427353, + "learning_rate": 0.0006, + "loss": 3.6569719314575195, + "step": 2824 + }, + { + "epoch": 39.237658366098735, + "grad_norm": 0.2640652656555176, + "learning_rate": 0.0006, + "loss": 3.680734634399414, + "step": 2825 + }, + { + "epoch": 39.25163826998689, + "grad_norm": 0.21862825751304626, + "learning_rate": 0.0006, + "loss": 3.6741840839385986, + "step": 2826 + }, + { + "epoch": 39.265618173875055, + "grad_norm": 0.19515705108642578, + "learning_rate": 0.0006, + "loss": 3.657750129699707, + "step": 2827 + }, + { + "epoch": 39.27959807776322, + "grad_norm": 0.1971602737903595, + "learning_rate": 0.0006, + "loss": 3.6524124145507812, + "step": 2828 + }, + { + "epoch": 39.293577981651374, + "grad_norm": 0.20822174847126007, + "learning_rate": 0.0006, + "loss": 3.69527006149292, + "step": 2829 + }, + { + "epoch": 39.30755788553954, + "grad_norm": 0.2566370368003845, + "learning_rate": 0.0006, + "loss": 3.6770880222320557, + "step": 2830 + }, + { + "epoch": 39.3215377894277, + "grad_norm": 0.24984225630760193, + "learning_rate": 0.0006, + "loss": 3.6733901500701904, + "step": 2831 + }, + { + "epoch": 39.33551769331586, + "grad_norm": 0.233322873711586, + "learning_rate": 0.0006, + "loss": 3.645519256591797, + "step": 2832 + }, + { + "epoch": 39.34949759720402, + "grad_norm": 0.21584749221801758, + "learning_rate": 0.0006, + "loss": 3.6211934089660645, + "step": 2833 + }, + { + "epoch": 39.36347750109218, + "grad_norm": 0.2188950479030609, + "learning_rate": 0.0006, + "loss": 3.6434195041656494, + "step": 2834 + }, + { + "epoch": 39.37745740498034, + "grad_norm": 0.21998439729213715, + "learning_rate": 0.0006, + "loss": 3.6720595359802246, + "step": 2835 + }, + { + "epoch": 39.391437308868504, + "grad_norm": 0.2459399700164795, + "learning_rate": 0.0006, + "loss": 3.667083740234375, + "step": 2836 + }, + { + "epoch": 39.40541721275666, + "grad_norm": 0.23579223453998566, + "learning_rate": 0.0006, + "loss": 3.665452480316162, + "step": 2837 + }, + { + "epoch": 39.419397116644824, + "grad_norm": 0.19401362538337708, + "learning_rate": 0.0006, + "loss": 3.684218406677246, + "step": 2838 + }, + { + "epoch": 39.43337702053299, + "grad_norm": 0.1894487738609314, + "learning_rate": 0.0006, + "loss": 3.670626163482666, + "step": 2839 + }, + { + "epoch": 39.44735692442114, + "grad_norm": 0.1936904937028885, + "learning_rate": 0.0006, + "loss": 3.6367318630218506, + "step": 2840 + }, + { + "epoch": 39.46133682830931, + "grad_norm": 0.1867629438638687, + "learning_rate": 0.0006, + "loss": 3.670098304748535, + "step": 2841 + }, + { + "epoch": 39.47531673219746, + "grad_norm": 0.18849903345108032, + "learning_rate": 0.0006, + "loss": 3.6877760887145996, + "step": 2842 + }, + { + "epoch": 39.489296636085626, + "grad_norm": 0.18247179687023163, + "learning_rate": 0.0006, + "loss": 3.7132980823516846, + "step": 2843 + }, + { + "epoch": 39.50327653997379, + "grad_norm": 0.19206349551677704, + "learning_rate": 0.0006, + "loss": 3.630319595336914, + "step": 2844 + }, + { + "epoch": 39.517256443861946, + "grad_norm": 0.21730613708496094, + "learning_rate": 0.0006, + "loss": 3.6818761825561523, + "step": 2845 + }, + { + "epoch": 39.53123634775011, + "grad_norm": 0.22482407093048096, + "learning_rate": 0.0006, + "loss": 3.6385269165039062, + "step": 2846 + }, + { + "epoch": 39.54521625163827, + "grad_norm": 0.24560105800628662, + "learning_rate": 0.0006, + "loss": 3.660067558288574, + "step": 2847 + }, + { + "epoch": 39.55919615552643, + "grad_norm": 0.23720617592334747, + "learning_rate": 0.0006, + "loss": 3.6811556816101074, + "step": 2848 + }, + { + "epoch": 39.57317605941459, + "grad_norm": 0.18990741670131683, + "learning_rate": 0.0006, + "loss": 3.6733779907226562, + "step": 2849 + }, + { + "epoch": 39.58715596330275, + "grad_norm": 0.2135438323020935, + "learning_rate": 0.0006, + "loss": 3.662020683288574, + "step": 2850 + }, + { + "epoch": 39.60113586719091, + "grad_norm": 0.24248908460140228, + "learning_rate": 0.0006, + "loss": 3.6794259548187256, + "step": 2851 + }, + { + "epoch": 39.615115771079076, + "grad_norm": 0.23115725815296173, + "learning_rate": 0.0006, + "loss": 3.6732406616210938, + "step": 2852 + }, + { + "epoch": 39.62909567496723, + "grad_norm": 0.23760166764259338, + "learning_rate": 0.0006, + "loss": 3.7062699794769287, + "step": 2853 + }, + { + "epoch": 39.643075578855395, + "grad_norm": 0.24670571088790894, + "learning_rate": 0.0006, + "loss": 3.692385673522949, + "step": 2854 + }, + { + "epoch": 39.65705548274356, + "grad_norm": 0.20983918011188507, + "learning_rate": 0.0006, + "loss": 3.691361427307129, + "step": 2855 + }, + { + "epoch": 39.671035386631715, + "grad_norm": 0.1915138065814972, + "learning_rate": 0.0006, + "loss": 3.6985888481140137, + "step": 2856 + }, + { + "epoch": 39.68501529051988, + "grad_norm": 0.23440803587436676, + "learning_rate": 0.0006, + "loss": 3.6484973430633545, + "step": 2857 + }, + { + "epoch": 39.69899519440804, + "grad_norm": 0.2483232468366623, + "learning_rate": 0.0006, + "loss": 3.6861510276794434, + "step": 2858 + }, + { + "epoch": 39.7129750982962, + "grad_norm": 0.21373426914215088, + "learning_rate": 0.0006, + "loss": 3.6528866291046143, + "step": 2859 + }, + { + "epoch": 39.72695500218436, + "grad_norm": 0.19849136471748352, + "learning_rate": 0.0006, + "loss": 3.6435961723327637, + "step": 2860 + }, + { + "epoch": 39.74093490607252, + "grad_norm": 0.21748292446136475, + "learning_rate": 0.0006, + "loss": 3.678481101989746, + "step": 2861 + }, + { + "epoch": 39.75491480996068, + "grad_norm": 0.22488188743591309, + "learning_rate": 0.0006, + "loss": 3.711717128753662, + "step": 2862 + }, + { + "epoch": 39.768894713848844, + "grad_norm": 0.22251835465431213, + "learning_rate": 0.0006, + "loss": 3.690516471862793, + "step": 2863 + }, + { + "epoch": 39.782874617737, + "grad_norm": 0.22101449966430664, + "learning_rate": 0.0006, + "loss": 3.6679611206054688, + "step": 2864 + }, + { + "epoch": 39.796854521625164, + "grad_norm": 0.20345936715602875, + "learning_rate": 0.0006, + "loss": 3.6935629844665527, + "step": 2865 + }, + { + "epoch": 39.81083442551333, + "grad_norm": 0.23772259056568146, + "learning_rate": 0.0006, + "loss": 3.697561264038086, + "step": 2866 + }, + { + "epoch": 39.824814329401484, + "grad_norm": 0.24446387588977814, + "learning_rate": 0.0006, + "loss": 3.696723461151123, + "step": 2867 + }, + { + "epoch": 39.83879423328965, + "grad_norm": 0.2365843653678894, + "learning_rate": 0.0006, + "loss": 3.6511402130126953, + "step": 2868 + }, + { + "epoch": 39.8527741371778, + "grad_norm": 0.25421974062919617, + "learning_rate": 0.0006, + "loss": 3.68449068069458, + "step": 2869 + }, + { + "epoch": 39.86675404106597, + "grad_norm": 0.2504308819770813, + "learning_rate": 0.0006, + "loss": 3.685884952545166, + "step": 2870 + }, + { + "epoch": 39.88073394495413, + "grad_norm": 0.24695490300655365, + "learning_rate": 0.0006, + "loss": 3.6667490005493164, + "step": 2871 + }, + { + "epoch": 39.89471384884229, + "grad_norm": 0.2633236348628998, + "learning_rate": 0.0006, + "loss": 3.6828866004943848, + "step": 2872 + }, + { + "epoch": 39.90869375273045, + "grad_norm": 0.2421039491891861, + "learning_rate": 0.0006, + "loss": 3.681187391281128, + "step": 2873 + }, + { + "epoch": 39.92267365661861, + "grad_norm": 0.21202950179576874, + "learning_rate": 0.0006, + "loss": 3.679069995880127, + "step": 2874 + }, + { + "epoch": 39.93665356050677, + "grad_norm": 0.2344917505979538, + "learning_rate": 0.0006, + "loss": 3.6810007095336914, + "step": 2875 + }, + { + "epoch": 39.95063346439493, + "grad_norm": 0.2115124762058258, + "learning_rate": 0.0006, + "loss": 3.653219223022461, + "step": 2876 + }, + { + "epoch": 39.964613368283096, + "grad_norm": 0.21588370203971863, + "learning_rate": 0.0006, + "loss": 3.6972861289978027, + "step": 2877 + }, + { + "epoch": 39.97859327217125, + "grad_norm": 0.26215407252311707, + "learning_rate": 0.0006, + "loss": 3.6796963214874268, + "step": 2878 + }, + { + "epoch": 39.992573176059416, + "grad_norm": 0.23645395040512085, + "learning_rate": 0.0006, + "loss": 3.696091413497925, + "step": 2879 + }, + { + "epoch": 40.0, + "grad_norm": 0.21817512810230255, + "learning_rate": 0.0006, + "loss": 3.668196678161621, + "step": 2880 + }, + { + "epoch": 40.0, + "eval_loss": 3.9873862266540527, + "eval_runtime": 44.1149, + "eval_samples_per_second": 55.355, + "eval_steps_per_second": 3.468, + "step": 2880 + }, + { + "epoch": 40.01397990388816, + "grad_norm": 0.2031477391719818, + "learning_rate": 0.0006, + "loss": 3.6494622230529785, + "step": 2881 + }, + { + "epoch": 40.02795980777632, + "grad_norm": 0.2223939746618271, + "learning_rate": 0.0006, + "loss": 3.6587047576904297, + "step": 2882 + }, + { + "epoch": 40.04193971166448, + "grad_norm": 0.21485820412635803, + "learning_rate": 0.0006, + "loss": 3.62253737449646, + "step": 2883 + }, + { + "epoch": 40.05591961555265, + "grad_norm": 0.23364055156707764, + "learning_rate": 0.0006, + "loss": 3.619035005569458, + "step": 2884 + }, + { + "epoch": 40.0698995194408, + "grad_norm": 0.23141583800315857, + "learning_rate": 0.0006, + "loss": 3.6650376319885254, + "step": 2885 + }, + { + "epoch": 40.083879423328966, + "grad_norm": 0.2131720930337906, + "learning_rate": 0.0006, + "loss": 3.646428108215332, + "step": 2886 + }, + { + "epoch": 40.09785932721712, + "grad_norm": 0.2337951511144638, + "learning_rate": 0.0006, + "loss": 3.6284823417663574, + "step": 2887 + }, + { + "epoch": 40.111839231105286, + "grad_norm": 0.2790892720222473, + "learning_rate": 0.0006, + "loss": 3.6558361053466797, + "step": 2888 + }, + { + "epoch": 40.12581913499345, + "grad_norm": 0.28444936871528625, + "learning_rate": 0.0006, + "loss": 3.644402503967285, + "step": 2889 + }, + { + "epoch": 40.139799038881605, + "grad_norm": 0.2550848126411438, + "learning_rate": 0.0006, + "loss": 3.671562671661377, + "step": 2890 + }, + { + "epoch": 40.15377894276977, + "grad_norm": 0.22960248589515686, + "learning_rate": 0.0006, + "loss": 3.6998534202575684, + "step": 2891 + }, + { + "epoch": 40.16775884665793, + "grad_norm": 0.23920369148254395, + "learning_rate": 0.0006, + "loss": 3.653874635696411, + "step": 2892 + }, + { + "epoch": 40.18173875054609, + "grad_norm": 0.24586012959480286, + "learning_rate": 0.0006, + "loss": 3.620765209197998, + "step": 2893 + }, + { + "epoch": 40.19571865443425, + "grad_norm": 0.26394739747047424, + "learning_rate": 0.0006, + "loss": 3.638437509536743, + "step": 2894 + }, + { + "epoch": 40.20969855832241, + "grad_norm": 0.27566927671432495, + "learning_rate": 0.0006, + "loss": 3.6684799194335938, + "step": 2895 + }, + { + "epoch": 40.22367846221057, + "grad_norm": 0.25469011068344116, + "learning_rate": 0.0006, + "loss": 3.6113009452819824, + "step": 2896 + }, + { + "epoch": 40.237658366098735, + "grad_norm": 0.2403056025505066, + "learning_rate": 0.0006, + "loss": 3.650771141052246, + "step": 2897 + }, + { + "epoch": 40.25163826998689, + "grad_norm": 0.262423038482666, + "learning_rate": 0.0006, + "loss": 3.635892391204834, + "step": 2898 + }, + { + "epoch": 40.265618173875055, + "grad_norm": 0.23696045577526093, + "learning_rate": 0.0006, + "loss": 3.6396005153656006, + "step": 2899 + }, + { + "epoch": 40.27959807776322, + "grad_norm": 0.208719402551651, + "learning_rate": 0.0006, + "loss": 3.6681132316589355, + "step": 2900 + }, + { + "epoch": 40.293577981651374, + "grad_norm": 0.21554480493068695, + "learning_rate": 0.0006, + "loss": 3.6417553424835205, + "step": 2901 + }, + { + "epoch": 40.30755788553954, + "grad_norm": 0.2290734499692917, + "learning_rate": 0.0006, + "loss": 3.6659927368164062, + "step": 2902 + }, + { + "epoch": 40.3215377894277, + "grad_norm": 0.20803220570087433, + "learning_rate": 0.0006, + "loss": 3.6443324089050293, + "step": 2903 + }, + { + "epoch": 40.33551769331586, + "grad_norm": 0.20334568619728088, + "learning_rate": 0.0006, + "loss": 3.6824207305908203, + "step": 2904 + }, + { + "epoch": 40.34949759720402, + "grad_norm": 0.2000233381986618, + "learning_rate": 0.0006, + "loss": 3.644399642944336, + "step": 2905 + }, + { + "epoch": 40.36347750109218, + "grad_norm": 0.21990752220153809, + "learning_rate": 0.0006, + "loss": 3.668160915374756, + "step": 2906 + }, + { + "epoch": 40.37745740498034, + "grad_norm": 0.24385249614715576, + "learning_rate": 0.0006, + "loss": 3.634392261505127, + "step": 2907 + }, + { + "epoch": 40.391437308868504, + "grad_norm": 0.21272684633731842, + "learning_rate": 0.0006, + "loss": 3.6504263877868652, + "step": 2908 + }, + { + "epoch": 40.40541721275666, + "grad_norm": 0.2003277838230133, + "learning_rate": 0.0006, + "loss": 3.6707763671875, + "step": 2909 + }, + { + "epoch": 40.419397116644824, + "grad_norm": 0.2086087465286255, + "learning_rate": 0.0006, + "loss": 3.66988468170166, + "step": 2910 + }, + { + "epoch": 40.43337702053299, + "grad_norm": 0.19706451892852783, + "learning_rate": 0.0006, + "loss": 3.662794828414917, + "step": 2911 + }, + { + "epoch": 40.44735692442114, + "grad_norm": 0.18795762956142426, + "learning_rate": 0.0006, + "loss": 3.628016233444214, + "step": 2912 + }, + { + "epoch": 40.46133682830931, + "grad_norm": 0.19931825995445251, + "learning_rate": 0.0006, + "loss": 3.6791915893554688, + "step": 2913 + }, + { + "epoch": 40.47531673219746, + "grad_norm": 0.21295934915542603, + "learning_rate": 0.0006, + "loss": 3.688632011413574, + "step": 2914 + }, + { + "epoch": 40.489296636085626, + "grad_norm": 0.2104834020137787, + "learning_rate": 0.0006, + "loss": 3.6270499229431152, + "step": 2915 + }, + { + "epoch": 40.50327653997379, + "grad_norm": 0.19942966103553772, + "learning_rate": 0.0006, + "loss": 3.651721477508545, + "step": 2916 + }, + { + "epoch": 40.517256443861946, + "grad_norm": 0.18890425562858582, + "learning_rate": 0.0006, + "loss": 3.6778619289398193, + "step": 2917 + }, + { + "epoch": 40.53123634775011, + "grad_norm": 0.19861607253551483, + "learning_rate": 0.0006, + "loss": 3.658832550048828, + "step": 2918 + }, + { + "epoch": 40.54521625163827, + "grad_norm": 0.21553616225719452, + "learning_rate": 0.0006, + "loss": 3.6566901206970215, + "step": 2919 + }, + { + "epoch": 40.55919615552643, + "grad_norm": 0.21698440611362457, + "learning_rate": 0.0006, + "loss": 3.6795129776000977, + "step": 2920 + }, + { + "epoch": 40.57317605941459, + "grad_norm": 0.20310913026332855, + "learning_rate": 0.0006, + "loss": 3.645244598388672, + "step": 2921 + }, + { + "epoch": 40.58715596330275, + "grad_norm": 0.2075812816619873, + "learning_rate": 0.0006, + "loss": 3.678452491760254, + "step": 2922 + }, + { + "epoch": 40.60113586719091, + "grad_norm": 0.20606619119644165, + "learning_rate": 0.0006, + "loss": 3.6150245666503906, + "step": 2923 + }, + { + "epoch": 40.615115771079076, + "grad_norm": 0.21511296927928925, + "learning_rate": 0.0006, + "loss": 3.6682112216949463, + "step": 2924 + }, + { + "epoch": 40.62909567496723, + "grad_norm": 0.19771839678287506, + "learning_rate": 0.0006, + "loss": 3.6639556884765625, + "step": 2925 + }, + { + "epoch": 40.643075578855395, + "grad_norm": 0.20419852435588837, + "learning_rate": 0.0006, + "loss": 3.664982318878174, + "step": 2926 + }, + { + "epoch": 40.65705548274356, + "grad_norm": 0.20119430124759674, + "learning_rate": 0.0006, + "loss": 3.661625385284424, + "step": 2927 + }, + { + "epoch": 40.671035386631715, + "grad_norm": 0.21590501070022583, + "learning_rate": 0.0006, + "loss": 3.673719644546509, + "step": 2928 + }, + { + "epoch": 40.68501529051988, + "grad_norm": 0.19165395200252533, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 2929 + }, + { + "epoch": 40.69899519440804, + "grad_norm": 0.19620473682880402, + "learning_rate": 0.0006, + "loss": 3.7008142471313477, + "step": 2930 + }, + { + "epoch": 40.7129750982962, + "grad_norm": 0.23002777993679047, + "learning_rate": 0.0006, + "loss": 3.654296875, + "step": 2931 + }, + { + "epoch": 40.72695500218436, + "grad_norm": 0.22007468342781067, + "learning_rate": 0.0006, + "loss": 3.688178539276123, + "step": 2932 + }, + { + "epoch": 40.74093490607252, + "grad_norm": 0.2030077874660492, + "learning_rate": 0.0006, + "loss": 3.6514129638671875, + "step": 2933 + }, + { + "epoch": 40.75491480996068, + "grad_norm": 0.20960700511932373, + "learning_rate": 0.0006, + "loss": 3.651864528656006, + "step": 2934 + }, + { + "epoch": 40.768894713848844, + "grad_norm": 0.2132565975189209, + "learning_rate": 0.0006, + "loss": 3.680915355682373, + "step": 2935 + }, + { + "epoch": 40.782874617737, + "grad_norm": 0.2411353588104248, + "learning_rate": 0.0006, + "loss": 3.647167682647705, + "step": 2936 + }, + { + "epoch": 40.796854521625164, + "grad_norm": 0.24621541798114777, + "learning_rate": 0.0006, + "loss": 3.6784768104553223, + "step": 2937 + }, + { + "epoch": 40.81083442551333, + "grad_norm": 0.23324407637119293, + "learning_rate": 0.0006, + "loss": 3.6855263710021973, + "step": 2938 + }, + { + "epoch": 40.824814329401484, + "grad_norm": 0.21749550104141235, + "learning_rate": 0.0006, + "loss": 3.672682285308838, + "step": 2939 + }, + { + "epoch": 40.83879423328965, + "grad_norm": 0.1957911103963852, + "learning_rate": 0.0006, + "loss": 3.635678291320801, + "step": 2940 + }, + { + "epoch": 40.8527741371778, + "grad_norm": 0.21262411773204803, + "learning_rate": 0.0006, + "loss": 3.6829824447631836, + "step": 2941 + }, + { + "epoch": 40.86675404106597, + "grad_norm": 0.19940680265426636, + "learning_rate": 0.0006, + "loss": 3.720932960510254, + "step": 2942 + }, + { + "epoch": 40.88073394495413, + "grad_norm": 0.1964999884366989, + "learning_rate": 0.0006, + "loss": 3.678405284881592, + "step": 2943 + }, + { + "epoch": 40.89471384884229, + "grad_norm": 0.21459022164344788, + "learning_rate": 0.0006, + "loss": 3.6788480281829834, + "step": 2944 + }, + { + "epoch": 40.90869375273045, + "grad_norm": 0.2251381129026413, + "learning_rate": 0.0006, + "loss": 3.679459571838379, + "step": 2945 + }, + { + "epoch": 40.92267365661861, + "grad_norm": 0.19951461255550385, + "learning_rate": 0.0006, + "loss": 3.6610841751098633, + "step": 2946 + }, + { + "epoch": 40.93665356050677, + "grad_norm": 0.2057943493127823, + "learning_rate": 0.0006, + "loss": 3.649491786956787, + "step": 2947 + }, + { + "epoch": 40.95063346439493, + "grad_norm": 0.19601917266845703, + "learning_rate": 0.0006, + "loss": 3.724552631378174, + "step": 2948 + }, + { + "epoch": 40.964613368283096, + "grad_norm": 0.20982769131660461, + "learning_rate": 0.0006, + "loss": 3.648465394973755, + "step": 2949 + }, + { + "epoch": 40.97859327217125, + "grad_norm": 0.21103954315185547, + "learning_rate": 0.0006, + "loss": 3.692239999771118, + "step": 2950 + }, + { + "epoch": 40.992573176059416, + "grad_norm": 0.2007385492324829, + "learning_rate": 0.0006, + "loss": 3.659999132156372, + "step": 2951 + }, + { + "epoch": 41.0, + "grad_norm": 0.22357431054115295, + "learning_rate": 0.0006, + "loss": 3.6461124420166016, + "step": 2952 + }, + { + "epoch": 41.0, + "eval_loss": 3.9891226291656494, + "eval_runtime": 44.65, + "eval_samples_per_second": 54.692, + "eval_steps_per_second": 3.427, + "step": 2952 + }, + { + "epoch": 41.01397990388816, + "grad_norm": 0.20387817919254303, + "learning_rate": 0.0006, + "loss": 3.643923282623291, + "step": 2953 + }, + { + "epoch": 41.02795980777632, + "grad_norm": 0.1988423764705658, + "learning_rate": 0.0006, + "loss": 3.6152570247650146, + "step": 2954 + }, + { + "epoch": 41.04193971166448, + "grad_norm": 0.19998641312122345, + "learning_rate": 0.0006, + "loss": 3.667520523071289, + "step": 2955 + }, + { + "epoch": 41.05591961555265, + "grad_norm": 0.18347714841365814, + "learning_rate": 0.0006, + "loss": 3.6289002895355225, + "step": 2956 + }, + { + "epoch": 41.0698995194408, + "grad_norm": 0.21235640347003937, + "learning_rate": 0.0006, + "loss": 3.6422951221466064, + "step": 2957 + }, + { + "epoch": 41.083879423328966, + "grad_norm": 0.1990172415971756, + "learning_rate": 0.0006, + "loss": 3.625697135925293, + "step": 2958 + }, + { + "epoch": 41.09785932721712, + "grad_norm": 0.18313643336296082, + "learning_rate": 0.0006, + "loss": 3.672356605529785, + "step": 2959 + }, + { + "epoch": 41.111839231105286, + "grad_norm": 0.17956401407718658, + "learning_rate": 0.0006, + "loss": 3.6093602180480957, + "step": 2960 + }, + { + "epoch": 41.12581913499345, + "grad_norm": 0.19487550854682922, + "learning_rate": 0.0006, + "loss": 3.6004128456115723, + "step": 2961 + }, + { + "epoch": 41.139799038881605, + "grad_norm": 0.2117495834827423, + "learning_rate": 0.0006, + "loss": 3.6468565464019775, + "step": 2962 + }, + { + "epoch": 41.15377894276977, + "grad_norm": 0.20602662861347198, + "learning_rate": 0.0006, + "loss": 3.6299140453338623, + "step": 2963 + }, + { + "epoch": 41.16775884665793, + "grad_norm": 0.21859265863895416, + "learning_rate": 0.0006, + "loss": 3.630052328109741, + "step": 2964 + }, + { + "epoch": 41.18173875054609, + "grad_norm": 0.22684140503406525, + "learning_rate": 0.0006, + "loss": 3.5995004177093506, + "step": 2965 + }, + { + "epoch": 41.19571865443425, + "grad_norm": 0.25682681798934937, + "learning_rate": 0.0006, + "loss": 3.613131523132324, + "step": 2966 + }, + { + "epoch": 41.20969855832241, + "grad_norm": 0.2508181631565094, + "learning_rate": 0.0006, + "loss": 3.644259452819824, + "step": 2967 + }, + { + "epoch": 41.22367846221057, + "grad_norm": 0.24200427532196045, + "learning_rate": 0.0006, + "loss": 3.6651816368103027, + "step": 2968 + }, + { + "epoch": 41.237658366098735, + "grad_norm": 0.21753790974617004, + "learning_rate": 0.0006, + "loss": 3.686199188232422, + "step": 2969 + }, + { + "epoch": 41.25163826998689, + "grad_norm": 0.19811955094337463, + "learning_rate": 0.0006, + "loss": 3.63014817237854, + "step": 2970 + }, + { + "epoch": 41.265618173875055, + "grad_norm": 0.19316327571868896, + "learning_rate": 0.0006, + "loss": 3.6532740592956543, + "step": 2971 + }, + { + "epoch": 41.27959807776322, + "grad_norm": 0.21440976858139038, + "learning_rate": 0.0006, + "loss": 3.6546850204467773, + "step": 2972 + }, + { + "epoch": 41.293577981651374, + "grad_norm": 0.2732681334018707, + "learning_rate": 0.0006, + "loss": 3.6135244369506836, + "step": 2973 + }, + { + "epoch": 41.30755788553954, + "grad_norm": 0.2588619589805603, + "learning_rate": 0.0006, + "loss": 3.657963275909424, + "step": 2974 + }, + { + "epoch": 41.3215377894277, + "grad_norm": 0.20054970681667328, + "learning_rate": 0.0006, + "loss": 3.6391024589538574, + "step": 2975 + }, + { + "epoch": 41.33551769331586, + "grad_norm": 0.23703549802303314, + "learning_rate": 0.0006, + "loss": 3.6609978675842285, + "step": 2976 + }, + { + "epoch": 41.34949759720402, + "grad_norm": 0.24222144484519958, + "learning_rate": 0.0006, + "loss": 3.659271478652954, + "step": 2977 + }, + { + "epoch": 41.36347750109218, + "grad_norm": 0.2228497713804245, + "learning_rate": 0.0006, + "loss": 3.607358455657959, + "step": 2978 + }, + { + "epoch": 41.37745740498034, + "grad_norm": 0.22105038166046143, + "learning_rate": 0.0006, + "loss": 3.64198899269104, + "step": 2979 + }, + { + "epoch": 41.391437308868504, + "grad_norm": 0.23753555119037628, + "learning_rate": 0.0006, + "loss": 3.63116455078125, + "step": 2980 + }, + { + "epoch": 41.40541721275666, + "grad_norm": 0.24492689967155457, + "learning_rate": 0.0006, + "loss": 3.636122465133667, + "step": 2981 + }, + { + "epoch": 41.419397116644824, + "grad_norm": 0.20610782504081726, + "learning_rate": 0.0006, + "loss": 3.656487226486206, + "step": 2982 + }, + { + "epoch": 41.43337702053299, + "grad_norm": 0.20781412720680237, + "learning_rate": 0.0006, + "loss": 3.669196605682373, + "step": 2983 + }, + { + "epoch": 41.44735692442114, + "grad_norm": 0.23892036080360413, + "learning_rate": 0.0006, + "loss": 3.6345765590667725, + "step": 2984 + }, + { + "epoch": 41.46133682830931, + "grad_norm": 0.2477712333202362, + "learning_rate": 0.0006, + "loss": 3.6599812507629395, + "step": 2985 + }, + { + "epoch": 41.47531673219746, + "grad_norm": 0.25314703583717346, + "learning_rate": 0.0006, + "loss": 3.6737258434295654, + "step": 2986 + }, + { + "epoch": 41.489296636085626, + "grad_norm": 0.2386070191860199, + "learning_rate": 0.0006, + "loss": 3.666586399078369, + "step": 2987 + }, + { + "epoch": 41.50327653997379, + "grad_norm": 0.27259722352027893, + "learning_rate": 0.0006, + "loss": 3.658761501312256, + "step": 2988 + }, + { + "epoch": 41.517256443861946, + "grad_norm": 0.3312860429286957, + "learning_rate": 0.0006, + "loss": 3.629699230194092, + "step": 2989 + }, + { + "epoch": 41.53123634775011, + "grad_norm": 0.3321581780910492, + "learning_rate": 0.0006, + "loss": 3.66628360748291, + "step": 2990 + }, + { + "epoch": 41.54521625163827, + "grad_norm": 0.2850016951560974, + "learning_rate": 0.0006, + "loss": 3.690005302429199, + "step": 2991 + }, + { + "epoch": 41.55919615552643, + "grad_norm": 0.2544100880622864, + "learning_rate": 0.0006, + "loss": 3.6554486751556396, + "step": 2992 + }, + { + "epoch": 41.57317605941459, + "grad_norm": 0.28541380167007446, + "learning_rate": 0.0006, + "loss": 3.672952175140381, + "step": 2993 + }, + { + "epoch": 41.58715596330275, + "grad_norm": 0.2909766435623169, + "learning_rate": 0.0006, + "loss": 3.6649627685546875, + "step": 2994 + }, + { + "epoch": 41.60113586719091, + "grad_norm": 0.26089969277381897, + "learning_rate": 0.0006, + "loss": 3.6512341499328613, + "step": 2995 + }, + { + "epoch": 41.615115771079076, + "grad_norm": 0.21815894544124603, + "learning_rate": 0.0006, + "loss": 3.612436056137085, + "step": 2996 + }, + { + "epoch": 41.62909567496723, + "grad_norm": 0.20712246000766754, + "learning_rate": 0.0006, + "loss": 3.6482479572296143, + "step": 2997 + }, + { + "epoch": 41.643075578855395, + "grad_norm": 0.23280103504657745, + "learning_rate": 0.0006, + "loss": 3.6648616790771484, + "step": 2998 + }, + { + "epoch": 41.65705548274356, + "grad_norm": 0.21623823046684265, + "learning_rate": 0.0006, + "loss": 3.6714487075805664, + "step": 2999 + }, + { + "epoch": 41.671035386631715, + "grad_norm": 0.2081632912158966, + "learning_rate": 0.0006, + "loss": 3.693014144897461, + "step": 3000 + }, + { + "epoch": 41.68501529051988, + "grad_norm": 0.23109425604343414, + "learning_rate": 0.0006, + "loss": 3.667262554168701, + "step": 3001 + }, + { + "epoch": 41.69899519440804, + "grad_norm": 0.2304934561252594, + "learning_rate": 0.0006, + "loss": 3.666405439376831, + "step": 3002 + }, + { + "epoch": 41.7129750982962, + "grad_norm": 0.23132432997226715, + "learning_rate": 0.0006, + "loss": 3.690964698791504, + "step": 3003 + }, + { + "epoch": 41.72695500218436, + "grad_norm": 0.2085159569978714, + "learning_rate": 0.0006, + "loss": 3.6620168685913086, + "step": 3004 + }, + { + "epoch": 41.74093490607252, + "grad_norm": 0.1919657438993454, + "learning_rate": 0.0006, + "loss": 3.67447566986084, + "step": 3005 + }, + { + "epoch": 41.75491480996068, + "grad_norm": 0.20189036428928375, + "learning_rate": 0.0006, + "loss": 3.6434998512268066, + "step": 3006 + }, + { + "epoch": 41.768894713848844, + "grad_norm": 0.23530980944633484, + "learning_rate": 0.0006, + "loss": 3.644280433654785, + "step": 3007 + }, + { + "epoch": 41.782874617737, + "grad_norm": 0.2550027370452881, + "learning_rate": 0.0006, + "loss": 3.6686060428619385, + "step": 3008 + }, + { + "epoch": 41.796854521625164, + "grad_norm": 0.2285512536764145, + "learning_rate": 0.0006, + "loss": 3.7013134956359863, + "step": 3009 + }, + { + "epoch": 41.81083442551333, + "grad_norm": 0.20538675785064697, + "learning_rate": 0.0006, + "loss": 3.6568830013275146, + "step": 3010 + }, + { + "epoch": 41.824814329401484, + "grad_norm": 0.2007976472377777, + "learning_rate": 0.0006, + "loss": 3.680250883102417, + "step": 3011 + }, + { + "epoch": 41.83879423328965, + "grad_norm": 0.20060500502586365, + "learning_rate": 0.0006, + "loss": 3.6565070152282715, + "step": 3012 + }, + { + "epoch": 41.8527741371778, + "grad_norm": 0.21055014431476593, + "learning_rate": 0.0006, + "loss": 3.661667823791504, + "step": 3013 + }, + { + "epoch": 41.86675404106597, + "grad_norm": 0.2201126217842102, + "learning_rate": 0.0006, + "loss": 3.650052070617676, + "step": 3014 + }, + { + "epoch": 41.88073394495413, + "grad_norm": 0.20397843420505524, + "learning_rate": 0.0006, + "loss": 3.6535415649414062, + "step": 3015 + }, + { + "epoch": 41.89471384884229, + "grad_norm": 0.1993463635444641, + "learning_rate": 0.0006, + "loss": 3.665696144104004, + "step": 3016 + }, + { + "epoch": 41.90869375273045, + "grad_norm": 0.20448797941207886, + "learning_rate": 0.0006, + "loss": 3.6448118686676025, + "step": 3017 + }, + { + "epoch": 41.92267365661861, + "grad_norm": 0.2064918726682663, + "learning_rate": 0.0006, + "loss": 3.6881537437438965, + "step": 3018 + }, + { + "epoch": 41.93665356050677, + "grad_norm": 0.20554372668266296, + "learning_rate": 0.0006, + "loss": 3.688559055328369, + "step": 3019 + }, + { + "epoch": 41.95063346439493, + "grad_norm": 0.1862783133983612, + "learning_rate": 0.0006, + "loss": 3.6713812351226807, + "step": 3020 + }, + { + "epoch": 41.964613368283096, + "grad_norm": 0.18139860033988953, + "learning_rate": 0.0006, + "loss": 3.6612548828125, + "step": 3021 + }, + { + "epoch": 41.97859327217125, + "grad_norm": 0.1844220608472824, + "learning_rate": 0.0006, + "loss": 3.641725540161133, + "step": 3022 + }, + { + "epoch": 41.992573176059416, + "grad_norm": 0.1885213702917099, + "learning_rate": 0.0006, + "loss": 3.663257122039795, + "step": 3023 + }, + { + "epoch": 42.0, + "grad_norm": 0.2250746339559555, + "learning_rate": 0.0006, + "loss": 3.6479320526123047, + "step": 3024 + }, + { + "epoch": 42.0, + "eval_loss": 3.993955135345459, + "eval_runtime": 44.4709, + "eval_samples_per_second": 54.912, + "eval_steps_per_second": 3.44, + "step": 3024 + }, + { + "epoch": 42.01397990388816, + "grad_norm": 0.21096517145633698, + "learning_rate": 0.0006, + "loss": 3.6729278564453125, + "step": 3025 + }, + { + "epoch": 42.02795980777632, + "grad_norm": 0.2106277495622635, + "learning_rate": 0.0006, + "loss": 3.629892349243164, + "step": 3026 + }, + { + "epoch": 42.04193971166448, + "grad_norm": 0.2673060894012451, + "learning_rate": 0.0006, + "loss": 3.643604040145874, + "step": 3027 + }, + { + "epoch": 42.05591961555265, + "grad_norm": 0.28180691599845886, + "learning_rate": 0.0006, + "loss": 3.596560478210449, + "step": 3028 + }, + { + "epoch": 42.0698995194408, + "grad_norm": 0.25607243180274963, + "learning_rate": 0.0006, + "loss": 3.597935199737549, + "step": 3029 + }, + { + "epoch": 42.083879423328966, + "grad_norm": 0.22120746970176697, + "learning_rate": 0.0006, + "loss": 3.6219305992126465, + "step": 3030 + }, + { + "epoch": 42.09785932721712, + "grad_norm": 0.2164907306432724, + "learning_rate": 0.0006, + "loss": 3.6220779418945312, + "step": 3031 + }, + { + "epoch": 42.111839231105286, + "grad_norm": 0.23800921440124512, + "learning_rate": 0.0006, + "loss": 3.63372540473938, + "step": 3032 + }, + { + "epoch": 42.12581913499345, + "grad_norm": 0.21812695264816284, + "learning_rate": 0.0006, + "loss": 3.636105537414551, + "step": 3033 + }, + { + "epoch": 42.139799038881605, + "grad_norm": 0.2027447372674942, + "learning_rate": 0.0006, + "loss": 3.6167502403259277, + "step": 3034 + }, + { + "epoch": 42.15377894276977, + "grad_norm": 0.20157714188098907, + "learning_rate": 0.0006, + "loss": 3.6141409873962402, + "step": 3035 + }, + { + "epoch": 42.16775884665793, + "grad_norm": 0.20780996978282928, + "learning_rate": 0.0006, + "loss": 3.6323471069335938, + "step": 3036 + }, + { + "epoch": 42.18173875054609, + "grad_norm": 0.20025081932544708, + "learning_rate": 0.0006, + "loss": 3.625446081161499, + "step": 3037 + }, + { + "epoch": 42.19571865443425, + "grad_norm": 0.20019082725048065, + "learning_rate": 0.0006, + "loss": 3.631418228149414, + "step": 3038 + }, + { + "epoch": 42.20969855832241, + "grad_norm": 0.21194526553153992, + "learning_rate": 0.0006, + "loss": 3.6180832386016846, + "step": 3039 + }, + { + "epoch": 42.22367846221057, + "grad_norm": 0.2016245573759079, + "learning_rate": 0.0006, + "loss": 3.6388602256774902, + "step": 3040 + }, + { + "epoch": 42.237658366098735, + "grad_norm": 0.1892252415418625, + "learning_rate": 0.0006, + "loss": 3.6086854934692383, + "step": 3041 + }, + { + "epoch": 42.25163826998689, + "grad_norm": 0.1878061145544052, + "learning_rate": 0.0006, + "loss": 3.599428176879883, + "step": 3042 + }, + { + "epoch": 42.265618173875055, + "grad_norm": 0.20258742570877075, + "learning_rate": 0.0006, + "loss": 3.6177172660827637, + "step": 3043 + }, + { + "epoch": 42.27959807776322, + "grad_norm": 0.2114444226026535, + "learning_rate": 0.0006, + "loss": 3.641916275024414, + "step": 3044 + }, + { + "epoch": 42.293577981651374, + "grad_norm": 0.19873645901679993, + "learning_rate": 0.0006, + "loss": 3.6585676670074463, + "step": 3045 + }, + { + "epoch": 42.30755788553954, + "grad_norm": 0.20361217856407166, + "learning_rate": 0.0006, + "loss": 3.648475170135498, + "step": 3046 + }, + { + "epoch": 42.3215377894277, + "grad_norm": 0.20227114856243134, + "learning_rate": 0.0006, + "loss": 3.63625431060791, + "step": 3047 + }, + { + "epoch": 42.33551769331586, + "grad_norm": 0.18246233463287354, + "learning_rate": 0.0006, + "loss": 3.6380200386047363, + "step": 3048 + }, + { + "epoch": 42.34949759720402, + "grad_norm": 0.17944976687431335, + "learning_rate": 0.0006, + "loss": 3.6325912475585938, + "step": 3049 + }, + { + "epoch": 42.36347750109218, + "grad_norm": 0.188584566116333, + "learning_rate": 0.0006, + "loss": 3.6418886184692383, + "step": 3050 + }, + { + "epoch": 42.37745740498034, + "grad_norm": 0.1917790323495865, + "learning_rate": 0.0006, + "loss": 3.664421558380127, + "step": 3051 + }, + { + "epoch": 42.391437308868504, + "grad_norm": 0.175637349486351, + "learning_rate": 0.0006, + "loss": 3.641819953918457, + "step": 3052 + }, + { + "epoch": 42.40541721275666, + "grad_norm": 0.18751518428325653, + "learning_rate": 0.0006, + "loss": 3.646697998046875, + "step": 3053 + }, + { + "epoch": 42.419397116644824, + "grad_norm": 0.1805887520313263, + "learning_rate": 0.0006, + "loss": 3.637866735458374, + "step": 3054 + }, + { + "epoch": 42.43337702053299, + "grad_norm": 0.19680845737457275, + "learning_rate": 0.0006, + "loss": 3.602511405944824, + "step": 3055 + }, + { + "epoch": 42.44735692442114, + "grad_norm": 0.20605766773223877, + "learning_rate": 0.0006, + "loss": 3.6472771167755127, + "step": 3056 + }, + { + "epoch": 42.46133682830931, + "grad_norm": 0.18083851039409637, + "learning_rate": 0.0006, + "loss": 3.6672325134277344, + "step": 3057 + }, + { + "epoch": 42.47531673219746, + "grad_norm": 0.19665084779262543, + "learning_rate": 0.0006, + "loss": 3.625300884246826, + "step": 3058 + }, + { + "epoch": 42.489296636085626, + "grad_norm": 0.22506165504455566, + "learning_rate": 0.0006, + "loss": 3.592872142791748, + "step": 3059 + }, + { + "epoch": 42.50327653997379, + "grad_norm": 0.2051578164100647, + "learning_rate": 0.0006, + "loss": 3.6302249431610107, + "step": 3060 + }, + { + "epoch": 42.517256443861946, + "grad_norm": 0.18957172334194183, + "learning_rate": 0.0006, + "loss": 3.6277074813842773, + "step": 3061 + }, + { + "epoch": 42.53123634775011, + "grad_norm": 0.21467208862304688, + "learning_rate": 0.0006, + "loss": 3.6121392250061035, + "step": 3062 + }, + { + "epoch": 42.54521625163827, + "grad_norm": 0.21618402004241943, + "learning_rate": 0.0006, + "loss": 3.664738655090332, + "step": 3063 + }, + { + "epoch": 42.55919615552643, + "grad_norm": 0.2259770780801773, + "learning_rate": 0.0006, + "loss": 3.652042865753174, + "step": 3064 + }, + { + "epoch": 42.57317605941459, + "grad_norm": 0.22667232155799866, + "learning_rate": 0.0006, + "loss": 3.6552934646606445, + "step": 3065 + }, + { + "epoch": 42.58715596330275, + "grad_norm": 0.21405228972434998, + "learning_rate": 0.0006, + "loss": 3.644043445587158, + "step": 3066 + }, + { + "epoch": 42.60113586719091, + "grad_norm": 0.20855450630187988, + "learning_rate": 0.0006, + "loss": 3.6534876823425293, + "step": 3067 + }, + { + "epoch": 42.615115771079076, + "grad_norm": 0.22474415600299835, + "learning_rate": 0.0006, + "loss": 3.656677484512329, + "step": 3068 + }, + { + "epoch": 42.62909567496723, + "grad_norm": 0.23401428759098053, + "learning_rate": 0.0006, + "loss": 3.6788997650146484, + "step": 3069 + }, + { + "epoch": 42.643075578855395, + "grad_norm": 0.21567967534065247, + "learning_rate": 0.0006, + "loss": 3.675379753112793, + "step": 3070 + }, + { + "epoch": 42.65705548274356, + "grad_norm": 0.21704941987991333, + "learning_rate": 0.0006, + "loss": 3.630707263946533, + "step": 3071 + }, + { + "epoch": 42.671035386631715, + "grad_norm": 0.2718963921070099, + "learning_rate": 0.0006, + "loss": 3.6653294563293457, + "step": 3072 + }, + { + "epoch": 42.68501529051988, + "grad_norm": 0.30198901891708374, + "learning_rate": 0.0006, + "loss": 3.6761326789855957, + "step": 3073 + }, + { + "epoch": 42.69899519440804, + "grad_norm": 0.27593618631362915, + "learning_rate": 0.0006, + "loss": 3.6610732078552246, + "step": 3074 + }, + { + "epoch": 42.7129750982962, + "grad_norm": 0.22495242953300476, + "learning_rate": 0.0006, + "loss": 3.656907320022583, + "step": 3075 + }, + { + "epoch": 42.72695500218436, + "grad_norm": 0.19872353971004486, + "learning_rate": 0.0006, + "loss": 3.6611597537994385, + "step": 3076 + }, + { + "epoch": 42.74093490607252, + "grad_norm": 0.21527111530303955, + "learning_rate": 0.0006, + "loss": 3.676821708679199, + "step": 3077 + }, + { + "epoch": 42.75491480996068, + "grad_norm": 0.22314463555812836, + "learning_rate": 0.0006, + "loss": 3.629460334777832, + "step": 3078 + }, + { + "epoch": 42.768894713848844, + "grad_norm": 0.23461024463176727, + "learning_rate": 0.0006, + "loss": 3.665390968322754, + "step": 3079 + }, + { + "epoch": 42.782874617737, + "grad_norm": 0.2582414448261261, + "learning_rate": 0.0006, + "loss": 3.6420979499816895, + "step": 3080 + }, + { + "epoch": 42.796854521625164, + "grad_norm": 0.2505052983760834, + "learning_rate": 0.0006, + "loss": 3.67236328125, + "step": 3081 + }, + { + "epoch": 42.81083442551333, + "grad_norm": 0.22617632150650024, + "learning_rate": 0.0006, + "loss": 3.654897689819336, + "step": 3082 + }, + { + "epoch": 42.824814329401484, + "grad_norm": 0.2340085208415985, + "learning_rate": 0.0006, + "loss": 3.6423635482788086, + "step": 3083 + }, + { + "epoch": 42.83879423328965, + "grad_norm": 0.26765671372413635, + "learning_rate": 0.0006, + "loss": 3.622769832611084, + "step": 3084 + }, + { + "epoch": 42.8527741371778, + "grad_norm": 0.29490381479263306, + "learning_rate": 0.0006, + "loss": 3.656053066253662, + "step": 3085 + }, + { + "epoch": 42.86675404106597, + "grad_norm": 0.29776132106781006, + "learning_rate": 0.0006, + "loss": 3.6454644203186035, + "step": 3086 + }, + { + "epoch": 42.88073394495413, + "grad_norm": 0.23994849622249603, + "learning_rate": 0.0006, + "loss": 3.674665927886963, + "step": 3087 + }, + { + "epoch": 42.89471384884229, + "grad_norm": 0.21456265449523926, + "learning_rate": 0.0006, + "loss": 3.670175790786743, + "step": 3088 + }, + { + "epoch": 42.90869375273045, + "grad_norm": 0.25727778673171997, + "learning_rate": 0.0006, + "loss": 3.6425390243530273, + "step": 3089 + }, + { + "epoch": 42.92267365661861, + "grad_norm": 0.30310627818107605, + "learning_rate": 0.0006, + "loss": 3.68511962890625, + "step": 3090 + }, + { + "epoch": 42.93665356050677, + "grad_norm": 0.2792291045188904, + "learning_rate": 0.0006, + "loss": 3.681732654571533, + "step": 3091 + }, + { + "epoch": 42.95063346439493, + "grad_norm": 0.23614276945590973, + "learning_rate": 0.0006, + "loss": 3.6417222023010254, + "step": 3092 + }, + { + "epoch": 42.964613368283096, + "grad_norm": 0.23602448403835297, + "learning_rate": 0.0006, + "loss": 3.6602869033813477, + "step": 3093 + }, + { + "epoch": 42.97859327217125, + "grad_norm": 0.21968287229537964, + "learning_rate": 0.0006, + "loss": 3.6618118286132812, + "step": 3094 + }, + { + "epoch": 42.992573176059416, + "grad_norm": 0.2177523374557495, + "learning_rate": 0.0006, + "loss": 3.666904926300049, + "step": 3095 + }, + { + "epoch": 43.0, + "grad_norm": 0.23960894346237183, + "learning_rate": 0.0006, + "loss": 3.710965633392334, + "step": 3096 + }, + { + "epoch": 43.0, + "eval_loss": 3.977475166320801, + "eval_runtime": 44.5209, + "eval_samples_per_second": 54.851, + "eval_steps_per_second": 3.437, + "step": 3096 + }, + { + "epoch": 43.01397990388816, + "grad_norm": 0.24180234968662262, + "learning_rate": 0.0006, + "loss": 3.5949223041534424, + "step": 3097 + }, + { + "epoch": 43.02795980777632, + "grad_norm": 0.3331127166748047, + "learning_rate": 0.0006, + "loss": 3.625802755355835, + "step": 3098 + }, + { + "epoch": 43.04193971166448, + "grad_norm": 0.38338130712509155, + "learning_rate": 0.0006, + "loss": 3.6390271186828613, + "step": 3099 + }, + { + "epoch": 43.05591961555265, + "grad_norm": 0.32292598485946655, + "learning_rate": 0.0006, + "loss": 3.630621910095215, + "step": 3100 + }, + { + "epoch": 43.0698995194408, + "grad_norm": 0.24179677665233612, + "learning_rate": 0.0006, + "loss": 3.6124491691589355, + "step": 3101 + }, + { + "epoch": 43.083879423328966, + "grad_norm": 0.2622842788696289, + "learning_rate": 0.0006, + "loss": 3.6207399368286133, + "step": 3102 + }, + { + "epoch": 43.09785932721712, + "grad_norm": 0.264297217130661, + "learning_rate": 0.0006, + "loss": 3.637218475341797, + "step": 3103 + }, + { + "epoch": 43.111839231105286, + "grad_norm": 0.25815117359161377, + "learning_rate": 0.0006, + "loss": 3.614841938018799, + "step": 3104 + }, + { + "epoch": 43.12581913499345, + "grad_norm": 0.2209406942129135, + "learning_rate": 0.0006, + "loss": 3.604722738265991, + "step": 3105 + }, + { + "epoch": 43.139799038881605, + "grad_norm": 0.22333410382270813, + "learning_rate": 0.0006, + "loss": 3.6388449668884277, + "step": 3106 + }, + { + "epoch": 43.15377894276977, + "grad_norm": 0.2194417119026184, + "learning_rate": 0.0006, + "loss": 3.611644744873047, + "step": 3107 + }, + { + "epoch": 43.16775884665793, + "grad_norm": 0.21270349621772766, + "learning_rate": 0.0006, + "loss": 3.6180214881896973, + "step": 3108 + }, + { + "epoch": 43.18173875054609, + "grad_norm": 0.21358032524585724, + "learning_rate": 0.0006, + "loss": 3.646512985229492, + "step": 3109 + }, + { + "epoch": 43.19571865443425, + "grad_norm": 0.2180788666009903, + "learning_rate": 0.0006, + "loss": 3.641981363296509, + "step": 3110 + }, + { + "epoch": 43.20969855832241, + "grad_norm": 0.21979685127735138, + "learning_rate": 0.0006, + "loss": 3.6251654624938965, + "step": 3111 + }, + { + "epoch": 43.22367846221057, + "grad_norm": 0.2072533220052719, + "learning_rate": 0.0006, + "loss": 3.665372371673584, + "step": 3112 + }, + { + "epoch": 43.237658366098735, + "grad_norm": 0.2085742950439453, + "learning_rate": 0.0006, + "loss": 3.647730827331543, + "step": 3113 + }, + { + "epoch": 43.25163826998689, + "grad_norm": 0.1934993416070938, + "learning_rate": 0.0006, + "loss": 3.6296567916870117, + "step": 3114 + }, + { + "epoch": 43.265618173875055, + "grad_norm": 0.1954783797264099, + "learning_rate": 0.0006, + "loss": 3.6412858963012695, + "step": 3115 + }, + { + "epoch": 43.27959807776322, + "grad_norm": 0.1932750642299652, + "learning_rate": 0.0006, + "loss": 3.6246860027313232, + "step": 3116 + }, + { + "epoch": 43.293577981651374, + "grad_norm": 0.19765302538871765, + "learning_rate": 0.0006, + "loss": 3.618922710418701, + "step": 3117 + }, + { + "epoch": 43.30755788553954, + "grad_norm": 0.1987425684928894, + "learning_rate": 0.0006, + "loss": 3.633185863494873, + "step": 3118 + }, + { + "epoch": 43.3215377894277, + "grad_norm": 0.1894739419221878, + "learning_rate": 0.0006, + "loss": 3.595709800720215, + "step": 3119 + }, + { + "epoch": 43.33551769331586, + "grad_norm": 0.19455872476100922, + "learning_rate": 0.0006, + "loss": 3.6309051513671875, + "step": 3120 + }, + { + "epoch": 43.34949759720402, + "grad_norm": 0.21448275446891785, + "learning_rate": 0.0006, + "loss": 3.6425981521606445, + "step": 3121 + }, + { + "epoch": 43.36347750109218, + "grad_norm": 0.24527893960475922, + "learning_rate": 0.0006, + "loss": 3.6497793197631836, + "step": 3122 + }, + { + "epoch": 43.37745740498034, + "grad_norm": 0.253231942653656, + "learning_rate": 0.0006, + "loss": 3.644453525543213, + "step": 3123 + }, + { + "epoch": 43.391437308868504, + "grad_norm": 0.2048978954553604, + "learning_rate": 0.0006, + "loss": 3.5963876247406006, + "step": 3124 + }, + { + "epoch": 43.40541721275666, + "grad_norm": 0.19951528310775757, + "learning_rate": 0.0006, + "loss": 3.6274406909942627, + "step": 3125 + }, + { + "epoch": 43.419397116644824, + "grad_norm": 0.2293875813484192, + "learning_rate": 0.0006, + "loss": 3.6482725143432617, + "step": 3126 + }, + { + "epoch": 43.43337702053299, + "grad_norm": 0.22379456460475922, + "learning_rate": 0.0006, + "loss": 3.6466073989868164, + "step": 3127 + }, + { + "epoch": 43.44735692442114, + "grad_norm": 0.2275441288948059, + "learning_rate": 0.0006, + "loss": 3.6529078483581543, + "step": 3128 + }, + { + "epoch": 43.46133682830931, + "grad_norm": 0.23014242947101593, + "learning_rate": 0.0006, + "loss": 3.6084837913513184, + "step": 3129 + }, + { + "epoch": 43.47531673219746, + "grad_norm": 0.22280924022197723, + "learning_rate": 0.0006, + "loss": 3.611320734024048, + "step": 3130 + }, + { + "epoch": 43.489296636085626, + "grad_norm": 0.19498756527900696, + "learning_rate": 0.0006, + "loss": 3.630185604095459, + "step": 3131 + }, + { + "epoch": 43.50327653997379, + "grad_norm": 0.21357767283916473, + "learning_rate": 0.0006, + "loss": 3.6509933471679688, + "step": 3132 + }, + { + "epoch": 43.517256443861946, + "grad_norm": 0.21775896847248077, + "learning_rate": 0.0006, + "loss": 3.635112762451172, + "step": 3133 + }, + { + "epoch": 43.53123634775011, + "grad_norm": 0.2035629004240036, + "learning_rate": 0.0006, + "loss": 3.658327102661133, + "step": 3134 + }, + { + "epoch": 43.54521625163827, + "grad_norm": 0.20083840191364288, + "learning_rate": 0.0006, + "loss": 3.632441997528076, + "step": 3135 + }, + { + "epoch": 43.55919615552643, + "grad_norm": 0.1922001987695694, + "learning_rate": 0.0006, + "loss": 3.6417734622955322, + "step": 3136 + }, + { + "epoch": 43.57317605941459, + "grad_norm": 0.21049264073371887, + "learning_rate": 0.0006, + "loss": 3.671274423599243, + "step": 3137 + }, + { + "epoch": 43.58715596330275, + "grad_norm": 0.21432001888751984, + "learning_rate": 0.0006, + "loss": 3.6216118335723877, + "step": 3138 + }, + { + "epoch": 43.60113586719091, + "grad_norm": 0.25448811054229736, + "learning_rate": 0.0006, + "loss": 3.658283233642578, + "step": 3139 + }, + { + "epoch": 43.615115771079076, + "grad_norm": 0.24313904345035553, + "learning_rate": 0.0006, + "loss": 3.6447594165802, + "step": 3140 + }, + { + "epoch": 43.62909567496723, + "grad_norm": 0.2332659363746643, + "learning_rate": 0.0006, + "loss": 3.625528573989868, + "step": 3141 + }, + { + "epoch": 43.643075578855395, + "grad_norm": 0.23222137987613678, + "learning_rate": 0.0006, + "loss": 3.6524429321289062, + "step": 3142 + }, + { + "epoch": 43.65705548274356, + "grad_norm": 0.2147051990032196, + "learning_rate": 0.0006, + "loss": 3.6517302989959717, + "step": 3143 + }, + { + "epoch": 43.671035386631715, + "grad_norm": 0.2464994341135025, + "learning_rate": 0.0006, + "loss": 3.654947519302368, + "step": 3144 + }, + { + "epoch": 43.68501529051988, + "grad_norm": 0.2365981936454773, + "learning_rate": 0.0006, + "loss": 3.638695240020752, + "step": 3145 + }, + { + "epoch": 43.69899519440804, + "grad_norm": 0.2325262874364853, + "learning_rate": 0.0006, + "loss": 3.6496055126190186, + "step": 3146 + }, + { + "epoch": 43.7129750982962, + "grad_norm": 0.2196085900068283, + "learning_rate": 0.0006, + "loss": 3.6323978900909424, + "step": 3147 + }, + { + "epoch": 43.72695500218436, + "grad_norm": 0.20404237508773804, + "learning_rate": 0.0006, + "loss": 3.6572763919830322, + "step": 3148 + }, + { + "epoch": 43.74093490607252, + "grad_norm": 0.2363257110118866, + "learning_rate": 0.0006, + "loss": 3.6347732543945312, + "step": 3149 + }, + { + "epoch": 43.75491480996068, + "grad_norm": 0.23671524226665497, + "learning_rate": 0.0006, + "loss": 3.650017023086548, + "step": 3150 + }, + { + "epoch": 43.768894713848844, + "grad_norm": 0.20892305672168732, + "learning_rate": 0.0006, + "loss": 3.638185977935791, + "step": 3151 + }, + { + "epoch": 43.782874617737, + "grad_norm": 0.18670055270195007, + "learning_rate": 0.0006, + "loss": 3.6647696495056152, + "step": 3152 + }, + { + "epoch": 43.796854521625164, + "grad_norm": 0.21818184852600098, + "learning_rate": 0.0006, + "loss": 3.663623332977295, + "step": 3153 + }, + { + "epoch": 43.81083442551333, + "grad_norm": 0.23472464084625244, + "learning_rate": 0.0006, + "loss": 3.650595188140869, + "step": 3154 + }, + { + "epoch": 43.824814329401484, + "grad_norm": 0.2266419678926468, + "learning_rate": 0.0006, + "loss": 3.6362059116363525, + "step": 3155 + }, + { + "epoch": 43.83879423328965, + "grad_norm": 0.2250787913799286, + "learning_rate": 0.0006, + "loss": 3.647970199584961, + "step": 3156 + }, + { + "epoch": 43.8527741371778, + "grad_norm": 0.21493776142597198, + "learning_rate": 0.0006, + "loss": 3.6510982513427734, + "step": 3157 + }, + { + "epoch": 43.86675404106597, + "grad_norm": 0.20783160626888275, + "learning_rate": 0.0006, + "loss": 3.654845714569092, + "step": 3158 + }, + { + "epoch": 43.88073394495413, + "grad_norm": 0.2222554087638855, + "learning_rate": 0.0006, + "loss": 3.6565685272216797, + "step": 3159 + }, + { + "epoch": 43.89471384884229, + "grad_norm": 0.2148049771785736, + "learning_rate": 0.0006, + "loss": 3.630779266357422, + "step": 3160 + }, + { + "epoch": 43.90869375273045, + "grad_norm": 0.2222086787223816, + "learning_rate": 0.0006, + "loss": 3.6312813758850098, + "step": 3161 + }, + { + "epoch": 43.92267365661861, + "grad_norm": 0.24049264192581177, + "learning_rate": 0.0006, + "loss": 3.6185736656188965, + "step": 3162 + }, + { + "epoch": 43.93665356050677, + "grad_norm": 0.2228843867778778, + "learning_rate": 0.0006, + "loss": 3.595583438873291, + "step": 3163 + }, + { + "epoch": 43.95063346439493, + "grad_norm": 0.20714408159255981, + "learning_rate": 0.0006, + "loss": 3.6649322509765625, + "step": 3164 + }, + { + "epoch": 43.964613368283096, + "grad_norm": 0.2048991471529007, + "learning_rate": 0.0006, + "loss": 3.6513710021972656, + "step": 3165 + }, + { + "epoch": 43.97859327217125, + "grad_norm": 0.21874114871025085, + "learning_rate": 0.0006, + "loss": 3.6471524238586426, + "step": 3166 + }, + { + "epoch": 43.992573176059416, + "grad_norm": 0.21309879422187805, + "learning_rate": 0.0006, + "loss": 3.647021770477295, + "step": 3167 + }, + { + "epoch": 44.0, + "grad_norm": 0.23717166483402252, + "learning_rate": 0.0006, + "loss": 3.6903820037841797, + "step": 3168 + }, + { + "epoch": 44.0, + "eval_loss": 3.9844837188720703, + "eval_runtime": 44.29, + "eval_samples_per_second": 55.137, + "eval_steps_per_second": 3.455, + "step": 3168 + }, + { + "epoch": 44.01397990388816, + "grad_norm": 0.21503832936286926, + "learning_rate": 0.0006, + "loss": 3.6054744720458984, + "step": 3169 + }, + { + "epoch": 44.02795980777632, + "grad_norm": 0.2289554923772812, + "learning_rate": 0.0006, + "loss": 3.6560556888580322, + "step": 3170 + }, + { + "epoch": 44.04193971166448, + "grad_norm": 0.24250416457653046, + "learning_rate": 0.0006, + "loss": 3.611820697784424, + "step": 3171 + }, + { + "epoch": 44.05591961555265, + "grad_norm": 0.2526668310165405, + "learning_rate": 0.0006, + "loss": 3.6273183822631836, + "step": 3172 + }, + { + "epoch": 44.0698995194408, + "grad_norm": 0.26702383160591125, + "learning_rate": 0.0006, + "loss": 3.5856852531433105, + "step": 3173 + }, + { + "epoch": 44.083879423328966, + "grad_norm": 0.2715195417404175, + "learning_rate": 0.0006, + "loss": 3.631045341491699, + "step": 3174 + }, + { + "epoch": 44.09785932721712, + "grad_norm": 0.3505614995956421, + "learning_rate": 0.0006, + "loss": 3.628720760345459, + "step": 3175 + }, + { + "epoch": 44.111839231105286, + "grad_norm": 0.2760702967643738, + "learning_rate": 0.0006, + "loss": 3.6283509731292725, + "step": 3176 + }, + { + "epoch": 44.12581913499345, + "grad_norm": 0.21105222404003143, + "learning_rate": 0.0006, + "loss": 3.6495566368103027, + "step": 3177 + }, + { + "epoch": 44.139799038881605, + "grad_norm": 0.2852860987186432, + "learning_rate": 0.0006, + "loss": 3.640768527984619, + "step": 3178 + }, + { + "epoch": 44.15377894276977, + "grad_norm": 0.2941005825996399, + "learning_rate": 0.0006, + "loss": 3.6303114891052246, + "step": 3179 + }, + { + "epoch": 44.16775884665793, + "grad_norm": 0.2792299687862396, + "learning_rate": 0.0006, + "loss": 3.6053574085235596, + "step": 3180 + }, + { + "epoch": 44.18173875054609, + "grad_norm": 0.23168638348579407, + "learning_rate": 0.0006, + "loss": 3.62430477142334, + "step": 3181 + }, + { + "epoch": 44.19571865443425, + "grad_norm": 0.23713921010494232, + "learning_rate": 0.0006, + "loss": 3.601106643676758, + "step": 3182 + }, + { + "epoch": 44.20969855832241, + "grad_norm": 0.23341049253940582, + "learning_rate": 0.0006, + "loss": 3.631762742996216, + "step": 3183 + }, + { + "epoch": 44.22367846221057, + "grad_norm": 0.23094508051872253, + "learning_rate": 0.0006, + "loss": 3.586683750152588, + "step": 3184 + }, + { + "epoch": 44.237658366098735, + "grad_norm": 0.24085712432861328, + "learning_rate": 0.0006, + "loss": 3.6251423358917236, + "step": 3185 + }, + { + "epoch": 44.25163826998689, + "grad_norm": 0.24999955296516418, + "learning_rate": 0.0006, + "loss": 3.6554198265075684, + "step": 3186 + }, + { + "epoch": 44.265618173875055, + "grad_norm": 0.21759621798992157, + "learning_rate": 0.0006, + "loss": 3.6249518394470215, + "step": 3187 + }, + { + "epoch": 44.27959807776322, + "grad_norm": 0.2490139901638031, + "learning_rate": 0.0006, + "loss": 3.6163341999053955, + "step": 3188 + }, + { + "epoch": 44.293577981651374, + "grad_norm": 0.23420892655849457, + "learning_rate": 0.0006, + "loss": 3.615469455718994, + "step": 3189 + }, + { + "epoch": 44.30755788553954, + "grad_norm": 0.2292138934135437, + "learning_rate": 0.0006, + "loss": 3.6085104942321777, + "step": 3190 + }, + { + "epoch": 44.3215377894277, + "grad_norm": 0.22595474123954773, + "learning_rate": 0.0006, + "loss": 3.6317405700683594, + "step": 3191 + }, + { + "epoch": 44.33551769331586, + "grad_norm": 0.22418338060379028, + "learning_rate": 0.0006, + "loss": 3.6287777423858643, + "step": 3192 + }, + { + "epoch": 44.34949759720402, + "grad_norm": 0.2453135848045349, + "learning_rate": 0.0006, + "loss": 3.6228437423706055, + "step": 3193 + }, + { + "epoch": 44.36347750109218, + "grad_norm": 0.2627771198749542, + "learning_rate": 0.0006, + "loss": 3.6581034660339355, + "step": 3194 + }, + { + "epoch": 44.37745740498034, + "grad_norm": 0.24114494025707245, + "learning_rate": 0.0006, + "loss": 3.653505563735962, + "step": 3195 + }, + { + "epoch": 44.391437308868504, + "grad_norm": 0.2103721648454666, + "learning_rate": 0.0006, + "loss": 3.5698580741882324, + "step": 3196 + }, + { + "epoch": 44.40541721275666, + "grad_norm": 0.21172291040420532, + "learning_rate": 0.0006, + "loss": 3.573453426361084, + "step": 3197 + }, + { + "epoch": 44.419397116644824, + "grad_norm": 0.20298106968402863, + "learning_rate": 0.0006, + "loss": 3.6350207328796387, + "step": 3198 + }, + { + "epoch": 44.43337702053299, + "grad_norm": 0.2029009759426117, + "learning_rate": 0.0006, + "loss": 3.6025917530059814, + "step": 3199 + }, + { + "epoch": 44.44735692442114, + "grad_norm": 0.18960542976856232, + "learning_rate": 0.0006, + "loss": 3.625028133392334, + "step": 3200 + }, + { + "epoch": 44.46133682830931, + "grad_norm": 0.20758579671382904, + "learning_rate": 0.0006, + "loss": 3.647071123123169, + "step": 3201 + }, + { + "epoch": 44.47531673219746, + "grad_norm": 0.21896769106388092, + "learning_rate": 0.0006, + "loss": 3.6481196880340576, + "step": 3202 + }, + { + "epoch": 44.489296636085626, + "grad_norm": 0.20817387104034424, + "learning_rate": 0.0006, + "loss": 3.629366874694824, + "step": 3203 + }, + { + "epoch": 44.50327653997379, + "grad_norm": 0.2099488228559494, + "learning_rate": 0.0006, + "loss": 3.6757798194885254, + "step": 3204 + }, + { + "epoch": 44.517256443861946, + "grad_norm": 0.21376627683639526, + "learning_rate": 0.0006, + "loss": 3.638324737548828, + "step": 3205 + }, + { + "epoch": 44.53123634775011, + "grad_norm": 0.19089072942733765, + "learning_rate": 0.0006, + "loss": 3.6497435569763184, + "step": 3206 + }, + { + "epoch": 44.54521625163827, + "grad_norm": 0.20489120483398438, + "learning_rate": 0.0006, + "loss": 3.634019374847412, + "step": 3207 + }, + { + "epoch": 44.55919615552643, + "grad_norm": 0.21991780400276184, + "learning_rate": 0.0006, + "loss": 3.6255834102630615, + "step": 3208 + }, + { + "epoch": 44.57317605941459, + "grad_norm": 0.23417581617832184, + "learning_rate": 0.0006, + "loss": 3.631927728652954, + "step": 3209 + }, + { + "epoch": 44.58715596330275, + "grad_norm": 0.22819049656391144, + "learning_rate": 0.0006, + "loss": 3.640167713165283, + "step": 3210 + }, + { + "epoch": 44.60113586719091, + "grad_norm": 0.21443316340446472, + "learning_rate": 0.0006, + "loss": 3.645709991455078, + "step": 3211 + }, + { + "epoch": 44.615115771079076, + "grad_norm": 0.19252653419971466, + "learning_rate": 0.0006, + "loss": 3.591294288635254, + "step": 3212 + }, + { + "epoch": 44.62909567496723, + "grad_norm": 0.18925397098064423, + "learning_rate": 0.0006, + "loss": 3.6163625717163086, + "step": 3213 + }, + { + "epoch": 44.643075578855395, + "grad_norm": 0.21605387330055237, + "learning_rate": 0.0006, + "loss": 3.6826887130737305, + "step": 3214 + }, + { + "epoch": 44.65705548274356, + "grad_norm": 0.21301978826522827, + "learning_rate": 0.0006, + "loss": 3.651243209838867, + "step": 3215 + }, + { + "epoch": 44.671035386631715, + "grad_norm": 0.20065832138061523, + "learning_rate": 0.0006, + "loss": 3.648879289627075, + "step": 3216 + }, + { + "epoch": 44.68501529051988, + "grad_norm": 0.21413499116897583, + "learning_rate": 0.0006, + "loss": 3.6327264308929443, + "step": 3217 + }, + { + "epoch": 44.69899519440804, + "grad_norm": 0.22769849002361298, + "learning_rate": 0.0006, + "loss": 3.6486430168151855, + "step": 3218 + }, + { + "epoch": 44.7129750982962, + "grad_norm": 0.227064847946167, + "learning_rate": 0.0006, + "loss": 3.633342981338501, + "step": 3219 + }, + { + "epoch": 44.72695500218436, + "grad_norm": 0.21335656940937042, + "learning_rate": 0.0006, + "loss": 3.648621082305908, + "step": 3220 + }, + { + "epoch": 44.74093490607252, + "grad_norm": 0.2085563838481903, + "learning_rate": 0.0006, + "loss": 3.647826671600342, + "step": 3221 + }, + { + "epoch": 44.75491480996068, + "grad_norm": 0.19203904271125793, + "learning_rate": 0.0006, + "loss": 3.6296122074127197, + "step": 3222 + }, + { + "epoch": 44.768894713848844, + "grad_norm": 0.1969112604856491, + "learning_rate": 0.0006, + "loss": 3.6477179527282715, + "step": 3223 + }, + { + "epoch": 44.782874617737, + "grad_norm": 0.21630392968654633, + "learning_rate": 0.0006, + "loss": 3.628805637359619, + "step": 3224 + }, + { + "epoch": 44.796854521625164, + "grad_norm": 0.20641647279262543, + "learning_rate": 0.0006, + "loss": 3.650993824005127, + "step": 3225 + }, + { + "epoch": 44.81083442551333, + "grad_norm": 0.1954173892736435, + "learning_rate": 0.0006, + "loss": 3.6362831592559814, + "step": 3226 + }, + { + "epoch": 44.824814329401484, + "grad_norm": 0.20479747653007507, + "learning_rate": 0.0006, + "loss": 3.6467390060424805, + "step": 3227 + }, + { + "epoch": 44.83879423328965, + "grad_norm": 0.20502690970897675, + "learning_rate": 0.0006, + "loss": 3.6260130405426025, + "step": 3228 + }, + { + "epoch": 44.8527741371778, + "grad_norm": 0.20348094403743744, + "learning_rate": 0.0006, + "loss": 3.6836767196655273, + "step": 3229 + }, + { + "epoch": 44.86675404106597, + "grad_norm": 0.18748269975185394, + "learning_rate": 0.0006, + "loss": 3.610104560852051, + "step": 3230 + }, + { + "epoch": 44.88073394495413, + "grad_norm": 0.18822219967842102, + "learning_rate": 0.0006, + "loss": 3.61354398727417, + "step": 3231 + }, + { + "epoch": 44.89471384884229, + "grad_norm": 0.20972031354904175, + "learning_rate": 0.0006, + "loss": 3.644336700439453, + "step": 3232 + }, + { + "epoch": 44.90869375273045, + "grad_norm": 0.2013155072927475, + "learning_rate": 0.0006, + "loss": 3.659287929534912, + "step": 3233 + }, + { + "epoch": 44.92267365661861, + "grad_norm": 0.2056475579738617, + "learning_rate": 0.0006, + "loss": 3.6545677185058594, + "step": 3234 + }, + { + "epoch": 44.93665356050677, + "grad_norm": 0.2104482203722, + "learning_rate": 0.0006, + "loss": 3.6094017028808594, + "step": 3235 + }, + { + "epoch": 44.95063346439493, + "grad_norm": 0.1993035078048706, + "learning_rate": 0.0006, + "loss": 3.6209053993225098, + "step": 3236 + }, + { + "epoch": 44.964613368283096, + "grad_norm": 0.1883099526166916, + "learning_rate": 0.0006, + "loss": 3.6011457443237305, + "step": 3237 + }, + { + "epoch": 44.97859327217125, + "grad_norm": 0.1927674412727356, + "learning_rate": 0.0006, + "loss": 3.606609344482422, + "step": 3238 + }, + { + "epoch": 44.992573176059416, + "grad_norm": 0.1878899335861206, + "learning_rate": 0.0006, + "loss": 3.6701109409332275, + "step": 3239 + }, + { + "epoch": 45.0, + "grad_norm": 0.2237395942211151, + "learning_rate": 0.0006, + "loss": 3.6617302894592285, + "step": 3240 + }, + { + "epoch": 45.0, + "eval_loss": 3.9812564849853516, + "eval_runtime": 44.8635, + "eval_samples_per_second": 54.432, + "eval_steps_per_second": 3.41, + "step": 3240 + }, + { + "epoch": 45.01397990388816, + "grad_norm": 0.21368487179279327, + "learning_rate": 0.0006, + "loss": 3.599107265472412, + "step": 3241 + }, + { + "epoch": 45.02795980777632, + "grad_norm": 0.2234211564064026, + "learning_rate": 0.0006, + "loss": 3.5943236351013184, + "step": 3242 + }, + { + "epoch": 45.04193971166448, + "grad_norm": 0.2222544252872467, + "learning_rate": 0.0006, + "loss": 3.6152291297912598, + "step": 3243 + }, + { + "epoch": 45.05591961555265, + "grad_norm": 0.24686792492866516, + "learning_rate": 0.0006, + "loss": 3.6006085872650146, + "step": 3244 + }, + { + "epoch": 45.0698995194408, + "grad_norm": 0.24634984135627747, + "learning_rate": 0.0006, + "loss": 3.6023471355438232, + "step": 3245 + }, + { + "epoch": 45.083879423328966, + "grad_norm": 0.2150750756263733, + "learning_rate": 0.0006, + "loss": 3.5690598487854004, + "step": 3246 + }, + { + "epoch": 45.09785932721712, + "grad_norm": 0.196721151471138, + "learning_rate": 0.0006, + "loss": 3.592653751373291, + "step": 3247 + }, + { + "epoch": 45.111839231105286, + "grad_norm": 0.21874476969242096, + "learning_rate": 0.0006, + "loss": 3.586243152618408, + "step": 3248 + }, + { + "epoch": 45.12581913499345, + "grad_norm": 0.21021611988544464, + "learning_rate": 0.0006, + "loss": 3.599384307861328, + "step": 3249 + }, + { + "epoch": 45.139799038881605, + "grad_norm": 0.19754183292388916, + "learning_rate": 0.0006, + "loss": 3.623816967010498, + "step": 3250 + }, + { + "epoch": 45.15377894276977, + "grad_norm": 0.21218672394752502, + "learning_rate": 0.0006, + "loss": 3.5901236534118652, + "step": 3251 + }, + { + "epoch": 45.16775884665793, + "grad_norm": 0.23569360375404358, + "learning_rate": 0.0006, + "loss": 3.600029945373535, + "step": 3252 + }, + { + "epoch": 45.18173875054609, + "grad_norm": 0.25429826974868774, + "learning_rate": 0.0006, + "loss": 3.607773542404175, + "step": 3253 + }, + { + "epoch": 45.19571865443425, + "grad_norm": 0.23416805267333984, + "learning_rate": 0.0006, + "loss": 3.63248348236084, + "step": 3254 + }, + { + "epoch": 45.20969855832241, + "grad_norm": 0.20821864902973175, + "learning_rate": 0.0006, + "loss": 3.641927719116211, + "step": 3255 + }, + { + "epoch": 45.22367846221057, + "grad_norm": 0.21849380433559418, + "learning_rate": 0.0006, + "loss": 3.665098190307617, + "step": 3256 + }, + { + "epoch": 45.237658366098735, + "grad_norm": 0.22939491271972656, + "learning_rate": 0.0006, + "loss": 3.6106104850769043, + "step": 3257 + }, + { + "epoch": 45.25163826998689, + "grad_norm": 0.24144501984119415, + "learning_rate": 0.0006, + "loss": 3.5872416496276855, + "step": 3258 + }, + { + "epoch": 45.265618173875055, + "grad_norm": 0.21790480613708496, + "learning_rate": 0.0006, + "loss": 3.6268889904022217, + "step": 3259 + }, + { + "epoch": 45.27959807776322, + "grad_norm": 0.22702264785766602, + "learning_rate": 0.0006, + "loss": 3.5972542762756348, + "step": 3260 + }, + { + "epoch": 45.293577981651374, + "grad_norm": 0.22465437650680542, + "learning_rate": 0.0006, + "loss": 3.6339592933654785, + "step": 3261 + }, + { + "epoch": 45.30755788553954, + "grad_norm": 0.21804460883140564, + "learning_rate": 0.0006, + "loss": 3.6062779426574707, + "step": 3262 + }, + { + "epoch": 45.3215377894277, + "grad_norm": 0.1985616534948349, + "learning_rate": 0.0006, + "loss": 3.629815101623535, + "step": 3263 + }, + { + "epoch": 45.33551769331586, + "grad_norm": 0.22264975309371948, + "learning_rate": 0.0006, + "loss": 3.631214141845703, + "step": 3264 + }, + { + "epoch": 45.34949759720402, + "grad_norm": 0.22178539633750916, + "learning_rate": 0.0006, + "loss": 3.620854377746582, + "step": 3265 + }, + { + "epoch": 45.36347750109218, + "grad_norm": 0.22392240166664124, + "learning_rate": 0.0006, + "loss": 3.6611738204956055, + "step": 3266 + }, + { + "epoch": 45.37745740498034, + "grad_norm": 0.2178916484117508, + "learning_rate": 0.0006, + "loss": 3.639893054962158, + "step": 3267 + }, + { + "epoch": 45.391437308868504, + "grad_norm": 0.2173885703086853, + "learning_rate": 0.0006, + "loss": 3.611750364303589, + "step": 3268 + }, + { + "epoch": 45.40541721275666, + "grad_norm": 0.2107069045305252, + "learning_rate": 0.0006, + "loss": 3.595181465148926, + "step": 3269 + }, + { + "epoch": 45.419397116644824, + "grad_norm": 0.19623015820980072, + "learning_rate": 0.0006, + "loss": 3.6096351146698, + "step": 3270 + }, + { + "epoch": 45.43337702053299, + "grad_norm": 0.23091304302215576, + "learning_rate": 0.0006, + "loss": 3.603667974472046, + "step": 3271 + }, + { + "epoch": 45.44735692442114, + "grad_norm": 0.22909007966518402, + "learning_rate": 0.0006, + "loss": 3.62846040725708, + "step": 3272 + }, + { + "epoch": 45.46133682830931, + "grad_norm": 0.2104928195476532, + "learning_rate": 0.0006, + "loss": 3.6543164253234863, + "step": 3273 + }, + { + "epoch": 45.47531673219746, + "grad_norm": 0.22994203865528107, + "learning_rate": 0.0006, + "loss": 3.621878147125244, + "step": 3274 + }, + { + "epoch": 45.489296636085626, + "grad_norm": 0.21652749180793762, + "learning_rate": 0.0006, + "loss": 3.6095705032348633, + "step": 3275 + }, + { + "epoch": 45.50327653997379, + "grad_norm": 0.20125073194503784, + "learning_rate": 0.0006, + "loss": 3.6213903427124023, + "step": 3276 + }, + { + "epoch": 45.517256443861946, + "grad_norm": 0.19995734095573425, + "learning_rate": 0.0006, + "loss": 3.6526503562927246, + "step": 3277 + }, + { + "epoch": 45.53123634775011, + "grad_norm": 0.2071387618780136, + "learning_rate": 0.0006, + "loss": 3.626208782196045, + "step": 3278 + }, + { + "epoch": 45.54521625163827, + "grad_norm": 0.222015842795372, + "learning_rate": 0.0006, + "loss": 3.61144757270813, + "step": 3279 + }, + { + "epoch": 45.55919615552643, + "grad_norm": 0.20780639350414276, + "learning_rate": 0.0006, + "loss": 3.64092755317688, + "step": 3280 + }, + { + "epoch": 45.57317605941459, + "grad_norm": 0.19297364354133606, + "learning_rate": 0.0006, + "loss": 3.6308364868164062, + "step": 3281 + }, + { + "epoch": 45.58715596330275, + "grad_norm": 0.1928786337375641, + "learning_rate": 0.0006, + "loss": 3.6258254051208496, + "step": 3282 + }, + { + "epoch": 45.60113586719091, + "grad_norm": 0.1940007209777832, + "learning_rate": 0.0006, + "loss": 3.622849464416504, + "step": 3283 + }, + { + "epoch": 45.615115771079076, + "grad_norm": 0.19643044471740723, + "learning_rate": 0.0006, + "loss": 3.6461117267608643, + "step": 3284 + }, + { + "epoch": 45.62909567496723, + "grad_norm": 0.19996654987335205, + "learning_rate": 0.0006, + "loss": 3.61572265625, + "step": 3285 + }, + { + "epoch": 45.643075578855395, + "grad_norm": 0.20202603936195374, + "learning_rate": 0.0006, + "loss": 3.610734462738037, + "step": 3286 + }, + { + "epoch": 45.65705548274356, + "grad_norm": 0.19249361753463745, + "learning_rate": 0.0006, + "loss": 3.607048511505127, + "step": 3287 + }, + { + "epoch": 45.671035386631715, + "grad_norm": 0.1894780397415161, + "learning_rate": 0.0006, + "loss": 3.6450905799865723, + "step": 3288 + }, + { + "epoch": 45.68501529051988, + "grad_norm": 0.19901636242866516, + "learning_rate": 0.0006, + "loss": 3.6313018798828125, + "step": 3289 + }, + { + "epoch": 45.69899519440804, + "grad_norm": 0.1875065118074417, + "learning_rate": 0.0006, + "loss": 3.641326427459717, + "step": 3290 + }, + { + "epoch": 45.7129750982962, + "grad_norm": 0.19832095503807068, + "learning_rate": 0.0006, + "loss": 3.6612308025360107, + "step": 3291 + }, + { + "epoch": 45.72695500218436, + "grad_norm": 0.20353806018829346, + "learning_rate": 0.0006, + "loss": 3.623152017593384, + "step": 3292 + }, + { + "epoch": 45.74093490607252, + "grad_norm": 0.1984023153781891, + "learning_rate": 0.0006, + "loss": 3.627358913421631, + "step": 3293 + }, + { + "epoch": 45.75491480996068, + "grad_norm": 0.2002221643924713, + "learning_rate": 0.0006, + "loss": 3.6334757804870605, + "step": 3294 + }, + { + "epoch": 45.768894713848844, + "grad_norm": 0.21099092066287994, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3295 + }, + { + "epoch": 45.782874617737, + "grad_norm": 0.19109416007995605, + "learning_rate": 0.0006, + "loss": 3.62795352935791, + "step": 3296 + }, + { + "epoch": 45.796854521625164, + "grad_norm": 0.18424192070960999, + "learning_rate": 0.0006, + "loss": 3.6151700019836426, + "step": 3297 + }, + { + "epoch": 45.81083442551333, + "grad_norm": 0.20823849737644196, + "learning_rate": 0.0006, + "loss": 3.641907215118408, + "step": 3298 + }, + { + "epoch": 45.824814329401484, + "grad_norm": 0.21407285332679749, + "learning_rate": 0.0006, + "loss": 3.6430726051330566, + "step": 3299 + }, + { + "epoch": 45.83879423328965, + "grad_norm": 0.23493780195713043, + "learning_rate": 0.0006, + "loss": 3.610065460205078, + "step": 3300 + }, + { + "epoch": 45.8527741371778, + "grad_norm": 0.21910642087459564, + "learning_rate": 0.0006, + "loss": 3.630603313446045, + "step": 3301 + }, + { + "epoch": 45.86675404106597, + "grad_norm": 0.1838075965642929, + "learning_rate": 0.0006, + "loss": 3.634315013885498, + "step": 3302 + }, + { + "epoch": 45.88073394495413, + "grad_norm": 0.22131477296352386, + "learning_rate": 0.0006, + "loss": 3.6142020225524902, + "step": 3303 + }, + { + "epoch": 45.89471384884229, + "grad_norm": 0.2497209906578064, + "learning_rate": 0.0006, + "loss": 3.689103126525879, + "step": 3304 + }, + { + "epoch": 45.90869375273045, + "grad_norm": 0.24403175711631775, + "learning_rate": 0.0006, + "loss": 3.6321184635162354, + "step": 3305 + }, + { + "epoch": 45.92267365661861, + "grad_norm": 0.22527103126049042, + "learning_rate": 0.0006, + "loss": 3.6486921310424805, + "step": 3306 + }, + { + "epoch": 45.93665356050677, + "grad_norm": 0.20127955079078674, + "learning_rate": 0.0006, + "loss": 3.6109299659729004, + "step": 3307 + }, + { + "epoch": 45.95063346439493, + "grad_norm": 0.18997317552566528, + "learning_rate": 0.0006, + "loss": 3.6157617568969727, + "step": 3308 + }, + { + "epoch": 45.964613368283096, + "grad_norm": 0.19921870529651642, + "learning_rate": 0.0006, + "loss": 3.691776990890503, + "step": 3309 + }, + { + "epoch": 45.97859327217125, + "grad_norm": 0.2124646008014679, + "learning_rate": 0.0006, + "loss": 3.61795711517334, + "step": 3310 + }, + { + "epoch": 45.992573176059416, + "grad_norm": 0.20002500712871552, + "learning_rate": 0.0006, + "loss": 3.6266353130340576, + "step": 3311 + }, + { + "epoch": 46.0, + "grad_norm": 0.22992220520973206, + "learning_rate": 0.0006, + "loss": 3.647242784500122, + "step": 3312 + }, + { + "epoch": 46.0, + "eval_loss": 3.9855220317840576, + "eval_runtime": 44.9108, + "eval_samples_per_second": 54.374, + "eval_steps_per_second": 3.407, + "step": 3312 + }, + { + "epoch": 46.01397990388816, + "grad_norm": 0.1976146101951599, + "learning_rate": 0.0006, + "loss": 3.5675041675567627, + "step": 3313 + }, + { + "epoch": 46.02795980777632, + "grad_norm": 0.2238360494375229, + "learning_rate": 0.0006, + "loss": 3.6077466011047363, + "step": 3314 + }, + { + "epoch": 46.04193971166448, + "grad_norm": 0.288669228553772, + "learning_rate": 0.0006, + "loss": 3.589958667755127, + "step": 3315 + }, + { + "epoch": 46.05591961555265, + "grad_norm": 0.30626827478408813, + "learning_rate": 0.0006, + "loss": 3.604401111602783, + "step": 3316 + }, + { + "epoch": 46.0698995194408, + "grad_norm": 0.2721095681190491, + "learning_rate": 0.0006, + "loss": 3.620197296142578, + "step": 3317 + }, + { + "epoch": 46.083879423328966, + "grad_norm": 0.2152107059955597, + "learning_rate": 0.0006, + "loss": 3.607327938079834, + "step": 3318 + }, + { + "epoch": 46.09785932721712, + "grad_norm": 0.2205267995595932, + "learning_rate": 0.0006, + "loss": 3.6020898818969727, + "step": 3319 + }, + { + "epoch": 46.111839231105286, + "grad_norm": 0.25419551134109497, + "learning_rate": 0.0006, + "loss": 3.59277606010437, + "step": 3320 + }, + { + "epoch": 46.12581913499345, + "grad_norm": 0.2379811704158783, + "learning_rate": 0.0006, + "loss": 3.560422897338867, + "step": 3321 + }, + { + "epoch": 46.139799038881605, + "grad_norm": 0.20928747951984406, + "learning_rate": 0.0006, + "loss": 3.6373965740203857, + "step": 3322 + }, + { + "epoch": 46.15377894276977, + "grad_norm": 0.21654292941093445, + "learning_rate": 0.0006, + "loss": 3.620784282684326, + "step": 3323 + }, + { + "epoch": 46.16775884665793, + "grad_norm": 0.22994576394557953, + "learning_rate": 0.0006, + "loss": 3.589960813522339, + "step": 3324 + }, + { + "epoch": 46.18173875054609, + "grad_norm": 0.24989335238933563, + "learning_rate": 0.0006, + "loss": 3.599091053009033, + "step": 3325 + }, + { + "epoch": 46.19571865443425, + "grad_norm": 0.27068355679512024, + "learning_rate": 0.0006, + "loss": 3.5933146476745605, + "step": 3326 + }, + { + "epoch": 46.20969855832241, + "grad_norm": 0.2581503391265869, + "learning_rate": 0.0006, + "loss": 3.5935447216033936, + "step": 3327 + }, + { + "epoch": 46.22367846221057, + "grad_norm": 0.23368583619594574, + "learning_rate": 0.0006, + "loss": 3.6120412349700928, + "step": 3328 + }, + { + "epoch": 46.237658366098735, + "grad_norm": 0.21808452904224396, + "learning_rate": 0.0006, + "loss": 3.6155190467834473, + "step": 3329 + }, + { + "epoch": 46.25163826998689, + "grad_norm": 0.2152830809354782, + "learning_rate": 0.0006, + "loss": 3.6039974689483643, + "step": 3330 + }, + { + "epoch": 46.265618173875055, + "grad_norm": 0.20902983844280243, + "learning_rate": 0.0006, + "loss": 3.586416721343994, + "step": 3331 + }, + { + "epoch": 46.27959807776322, + "grad_norm": 0.21693682670593262, + "learning_rate": 0.0006, + "loss": 3.601595401763916, + "step": 3332 + }, + { + "epoch": 46.293577981651374, + "grad_norm": 0.21157346665859222, + "learning_rate": 0.0006, + "loss": 3.619825601577759, + "step": 3333 + }, + { + "epoch": 46.30755788553954, + "grad_norm": 0.19628529250621796, + "learning_rate": 0.0006, + "loss": 3.5845298767089844, + "step": 3334 + }, + { + "epoch": 46.3215377894277, + "grad_norm": 0.19599373638629913, + "learning_rate": 0.0006, + "loss": 3.614483594894409, + "step": 3335 + }, + { + "epoch": 46.33551769331586, + "grad_norm": 0.21777382493019104, + "learning_rate": 0.0006, + "loss": 3.5865678787231445, + "step": 3336 + }, + { + "epoch": 46.34949759720402, + "grad_norm": 0.24697323143482208, + "learning_rate": 0.0006, + "loss": 3.6168298721313477, + "step": 3337 + }, + { + "epoch": 46.36347750109218, + "grad_norm": 0.29521632194519043, + "learning_rate": 0.0006, + "loss": 3.627875804901123, + "step": 3338 + }, + { + "epoch": 46.37745740498034, + "grad_norm": 0.2548002004623413, + "learning_rate": 0.0006, + "loss": 3.6286001205444336, + "step": 3339 + }, + { + "epoch": 46.391437308868504, + "grad_norm": 0.20501002669334412, + "learning_rate": 0.0006, + "loss": 3.625035524368286, + "step": 3340 + }, + { + "epoch": 46.40541721275666, + "grad_norm": 0.21849584579467773, + "learning_rate": 0.0006, + "loss": 3.621872901916504, + "step": 3341 + }, + { + "epoch": 46.419397116644824, + "grad_norm": 0.22302033007144928, + "learning_rate": 0.0006, + "loss": 3.6088266372680664, + "step": 3342 + }, + { + "epoch": 46.43337702053299, + "grad_norm": 0.21138787269592285, + "learning_rate": 0.0006, + "loss": 3.6211094856262207, + "step": 3343 + }, + { + "epoch": 46.44735692442114, + "grad_norm": 0.22372713685035706, + "learning_rate": 0.0006, + "loss": 3.5799427032470703, + "step": 3344 + }, + { + "epoch": 46.46133682830931, + "grad_norm": 0.22019316256046295, + "learning_rate": 0.0006, + "loss": 3.616044044494629, + "step": 3345 + }, + { + "epoch": 46.47531673219746, + "grad_norm": 0.21947625279426575, + "learning_rate": 0.0006, + "loss": 3.613643169403076, + "step": 3346 + }, + { + "epoch": 46.489296636085626, + "grad_norm": 0.21935684978961945, + "learning_rate": 0.0006, + "loss": 3.6255440711975098, + "step": 3347 + }, + { + "epoch": 46.50327653997379, + "grad_norm": 0.20366479456424713, + "learning_rate": 0.0006, + "loss": 3.613892078399658, + "step": 3348 + }, + { + "epoch": 46.517256443861946, + "grad_norm": 0.21755267679691315, + "learning_rate": 0.0006, + "loss": 3.617886543273926, + "step": 3349 + }, + { + "epoch": 46.53123634775011, + "grad_norm": 0.20023910701274872, + "learning_rate": 0.0006, + "loss": 3.6172280311584473, + "step": 3350 + }, + { + "epoch": 46.54521625163827, + "grad_norm": 0.20375007390975952, + "learning_rate": 0.0006, + "loss": 3.595829486846924, + "step": 3351 + }, + { + "epoch": 46.55919615552643, + "grad_norm": 0.21125391125679016, + "learning_rate": 0.0006, + "loss": 3.632533550262451, + "step": 3352 + }, + { + "epoch": 46.57317605941459, + "grad_norm": 0.2359670102596283, + "learning_rate": 0.0006, + "loss": 3.597811222076416, + "step": 3353 + }, + { + "epoch": 46.58715596330275, + "grad_norm": 0.21696777641773224, + "learning_rate": 0.0006, + "loss": 3.627127170562744, + "step": 3354 + }, + { + "epoch": 46.60113586719091, + "grad_norm": 0.21501564979553223, + "learning_rate": 0.0006, + "loss": 3.630887985229492, + "step": 3355 + }, + { + "epoch": 46.615115771079076, + "grad_norm": 0.21446822583675385, + "learning_rate": 0.0006, + "loss": 3.6075234413146973, + "step": 3356 + }, + { + "epoch": 46.62909567496723, + "grad_norm": 0.21508967876434326, + "learning_rate": 0.0006, + "loss": 3.626603603363037, + "step": 3357 + }, + { + "epoch": 46.643075578855395, + "grad_norm": 0.19969215989112854, + "learning_rate": 0.0006, + "loss": 3.6160733699798584, + "step": 3358 + }, + { + "epoch": 46.65705548274356, + "grad_norm": 0.19982007145881653, + "learning_rate": 0.0006, + "loss": 3.632960319519043, + "step": 3359 + }, + { + "epoch": 46.671035386631715, + "grad_norm": 0.1981230527162552, + "learning_rate": 0.0006, + "loss": 3.608591079711914, + "step": 3360 + }, + { + "epoch": 46.68501529051988, + "grad_norm": 0.19948643445968628, + "learning_rate": 0.0006, + "loss": 3.6100947856903076, + "step": 3361 + }, + { + "epoch": 46.69899519440804, + "grad_norm": 0.18967196345329285, + "learning_rate": 0.0006, + "loss": 3.6203439235687256, + "step": 3362 + }, + { + "epoch": 46.7129750982962, + "grad_norm": 0.20035311579704285, + "learning_rate": 0.0006, + "loss": 3.64508056640625, + "step": 3363 + }, + { + "epoch": 46.72695500218436, + "grad_norm": 0.21049824357032776, + "learning_rate": 0.0006, + "loss": 3.620095729827881, + "step": 3364 + }, + { + "epoch": 46.74093490607252, + "grad_norm": 0.21411995589733124, + "learning_rate": 0.0006, + "loss": 3.650815963745117, + "step": 3365 + }, + { + "epoch": 46.75491480996068, + "grad_norm": 0.18666061758995056, + "learning_rate": 0.0006, + "loss": 3.625699758529663, + "step": 3366 + }, + { + "epoch": 46.768894713848844, + "grad_norm": 0.1927071362733841, + "learning_rate": 0.0006, + "loss": 3.6165151596069336, + "step": 3367 + }, + { + "epoch": 46.782874617737, + "grad_norm": 0.2063879817724228, + "learning_rate": 0.0006, + "loss": 3.6182332038879395, + "step": 3368 + }, + { + "epoch": 46.796854521625164, + "grad_norm": 0.19215327501296997, + "learning_rate": 0.0006, + "loss": 3.607239246368408, + "step": 3369 + }, + { + "epoch": 46.81083442551333, + "grad_norm": 0.2074592262506485, + "learning_rate": 0.0006, + "loss": 3.624856948852539, + "step": 3370 + }, + { + "epoch": 46.824814329401484, + "grad_norm": 0.2184106856584549, + "learning_rate": 0.0006, + "loss": 3.628757953643799, + "step": 3371 + }, + { + "epoch": 46.83879423328965, + "grad_norm": 0.2203136682510376, + "learning_rate": 0.0006, + "loss": 3.625958204269409, + "step": 3372 + }, + { + "epoch": 46.8527741371778, + "grad_norm": 0.21920061111450195, + "learning_rate": 0.0006, + "loss": 3.6060733795166016, + "step": 3373 + }, + { + "epoch": 46.86675404106597, + "grad_norm": 0.2122412472963333, + "learning_rate": 0.0006, + "loss": 3.6126952171325684, + "step": 3374 + }, + { + "epoch": 46.88073394495413, + "grad_norm": 0.1971784383058548, + "learning_rate": 0.0006, + "loss": 3.637129783630371, + "step": 3375 + }, + { + "epoch": 46.89471384884229, + "grad_norm": 0.20824873447418213, + "learning_rate": 0.0006, + "loss": 3.62868070602417, + "step": 3376 + }, + { + "epoch": 46.90869375273045, + "grad_norm": 0.20157678425312042, + "learning_rate": 0.0006, + "loss": 3.6321873664855957, + "step": 3377 + }, + { + "epoch": 46.92267365661861, + "grad_norm": 0.1958925426006317, + "learning_rate": 0.0006, + "loss": 3.6513354778289795, + "step": 3378 + }, + { + "epoch": 46.93665356050677, + "grad_norm": 0.1969553828239441, + "learning_rate": 0.0006, + "loss": 3.6346323490142822, + "step": 3379 + }, + { + "epoch": 46.95063346439493, + "grad_norm": 0.19311924278736115, + "learning_rate": 0.0006, + "loss": 3.6673245429992676, + "step": 3380 + }, + { + "epoch": 46.964613368283096, + "grad_norm": 0.20341862738132477, + "learning_rate": 0.0006, + "loss": 3.680025339126587, + "step": 3381 + }, + { + "epoch": 46.97859327217125, + "grad_norm": 0.20667442679405212, + "learning_rate": 0.0006, + "loss": 3.632290840148926, + "step": 3382 + }, + { + "epoch": 46.992573176059416, + "grad_norm": 0.19141609966754913, + "learning_rate": 0.0006, + "loss": 3.659360647201538, + "step": 3383 + }, + { + "epoch": 47.0, + "grad_norm": 0.20981188118457794, + "learning_rate": 0.0006, + "loss": 3.653548240661621, + "step": 3384 + }, + { + "epoch": 47.0, + "eval_loss": 3.9833984375, + "eval_runtime": 44.4693, + "eval_samples_per_second": 54.914, + "eval_steps_per_second": 3.441, + "step": 3384 + }, + { + "epoch": 47.01397990388816, + "grad_norm": 0.1958128660917282, + "learning_rate": 0.0006, + "loss": 3.5778727531433105, + "step": 3385 + }, + { + "epoch": 47.02795980777632, + "grad_norm": 0.19728390872478485, + "learning_rate": 0.0006, + "loss": 3.5827393531799316, + "step": 3386 + }, + { + "epoch": 47.04193971166448, + "grad_norm": 0.18564026057720184, + "learning_rate": 0.0006, + "loss": 3.573071002960205, + "step": 3387 + }, + { + "epoch": 47.05591961555265, + "grad_norm": 0.20563258230686188, + "learning_rate": 0.0006, + "loss": 3.564330577850342, + "step": 3388 + }, + { + "epoch": 47.0698995194408, + "grad_norm": 0.21382158994674683, + "learning_rate": 0.0006, + "loss": 3.5976946353912354, + "step": 3389 + }, + { + "epoch": 47.083879423328966, + "grad_norm": 0.2383693903684616, + "learning_rate": 0.0006, + "loss": 3.5970897674560547, + "step": 3390 + }, + { + "epoch": 47.09785932721712, + "grad_norm": 0.24709449708461761, + "learning_rate": 0.0006, + "loss": 3.613409996032715, + "step": 3391 + }, + { + "epoch": 47.111839231105286, + "grad_norm": 0.2329784333705902, + "learning_rate": 0.0006, + "loss": 3.571023464202881, + "step": 3392 + }, + { + "epoch": 47.12581913499345, + "grad_norm": 0.2096954584121704, + "learning_rate": 0.0006, + "loss": 3.573697090148926, + "step": 3393 + }, + { + "epoch": 47.139799038881605, + "grad_norm": 0.21630050241947174, + "learning_rate": 0.0006, + "loss": 3.6085095405578613, + "step": 3394 + }, + { + "epoch": 47.15377894276977, + "grad_norm": 0.22828878462314606, + "learning_rate": 0.0006, + "loss": 3.605466842651367, + "step": 3395 + }, + { + "epoch": 47.16775884665793, + "grad_norm": 0.24957625567913055, + "learning_rate": 0.0006, + "loss": 3.588324546813965, + "step": 3396 + }, + { + "epoch": 47.18173875054609, + "grad_norm": 0.25446194410324097, + "learning_rate": 0.0006, + "loss": 3.6161458492279053, + "step": 3397 + }, + { + "epoch": 47.19571865443425, + "grad_norm": 0.24938438832759857, + "learning_rate": 0.0006, + "loss": 3.6017847061157227, + "step": 3398 + }, + { + "epoch": 47.20969855832241, + "grad_norm": 0.23318032920360565, + "learning_rate": 0.0006, + "loss": 3.6077046394348145, + "step": 3399 + }, + { + "epoch": 47.22367846221057, + "grad_norm": 0.2179042547941208, + "learning_rate": 0.0006, + "loss": 3.598104953765869, + "step": 3400 + }, + { + "epoch": 47.237658366098735, + "grad_norm": 0.213354229927063, + "learning_rate": 0.0006, + "loss": 3.6328814029693604, + "step": 3401 + }, + { + "epoch": 47.25163826998689, + "grad_norm": 0.23104089498519897, + "learning_rate": 0.0006, + "loss": 3.6161890029907227, + "step": 3402 + }, + { + "epoch": 47.265618173875055, + "grad_norm": 0.22219021618366241, + "learning_rate": 0.0006, + "loss": 3.620314121246338, + "step": 3403 + }, + { + "epoch": 47.27959807776322, + "grad_norm": 0.21618683636188507, + "learning_rate": 0.0006, + "loss": 3.5955371856689453, + "step": 3404 + }, + { + "epoch": 47.293577981651374, + "grad_norm": 0.22280243039131165, + "learning_rate": 0.0006, + "loss": 3.618302345275879, + "step": 3405 + }, + { + "epoch": 47.30755788553954, + "grad_norm": 0.2268427014350891, + "learning_rate": 0.0006, + "loss": 3.6035101413726807, + "step": 3406 + }, + { + "epoch": 47.3215377894277, + "grad_norm": 0.20324429869651794, + "learning_rate": 0.0006, + "loss": 3.612598419189453, + "step": 3407 + }, + { + "epoch": 47.33551769331586, + "grad_norm": 0.19353045523166656, + "learning_rate": 0.0006, + "loss": 3.5951499938964844, + "step": 3408 + }, + { + "epoch": 47.34949759720402, + "grad_norm": 0.19008080661296844, + "learning_rate": 0.0006, + "loss": 3.6177732944488525, + "step": 3409 + }, + { + "epoch": 47.36347750109218, + "grad_norm": 0.19530250132083893, + "learning_rate": 0.0006, + "loss": 3.597903251647949, + "step": 3410 + }, + { + "epoch": 47.37745740498034, + "grad_norm": 0.2083505541086197, + "learning_rate": 0.0006, + "loss": 3.6062350273132324, + "step": 3411 + }, + { + "epoch": 47.391437308868504, + "grad_norm": 0.2241518199443817, + "learning_rate": 0.0006, + "loss": 3.6084704399108887, + "step": 3412 + }, + { + "epoch": 47.40541721275666, + "grad_norm": 0.25763124227523804, + "learning_rate": 0.0006, + "loss": 3.600295066833496, + "step": 3413 + }, + { + "epoch": 47.419397116644824, + "grad_norm": 0.2689114212989807, + "learning_rate": 0.0006, + "loss": 3.648848533630371, + "step": 3414 + }, + { + "epoch": 47.43337702053299, + "grad_norm": 0.30106639862060547, + "learning_rate": 0.0006, + "loss": 3.6248483657836914, + "step": 3415 + }, + { + "epoch": 47.44735692442114, + "grad_norm": 0.31840384006500244, + "learning_rate": 0.0006, + "loss": 3.6256890296936035, + "step": 3416 + }, + { + "epoch": 47.46133682830931, + "grad_norm": 0.2603468894958496, + "learning_rate": 0.0006, + "loss": 3.6225175857543945, + "step": 3417 + }, + { + "epoch": 47.47531673219746, + "grad_norm": 0.33408305048942566, + "learning_rate": 0.0006, + "loss": 3.590303897857666, + "step": 3418 + }, + { + "epoch": 47.489296636085626, + "grad_norm": 0.3677918612957001, + "learning_rate": 0.0006, + "loss": 3.6005120277404785, + "step": 3419 + }, + { + "epoch": 47.50327653997379, + "grad_norm": 0.23077215254306793, + "learning_rate": 0.0006, + "loss": 3.6093883514404297, + "step": 3420 + }, + { + "epoch": 47.517256443861946, + "grad_norm": 0.27272120118141174, + "learning_rate": 0.0006, + "loss": 3.580151081085205, + "step": 3421 + }, + { + "epoch": 47.53123634775011, + "grad_norm": 0.22629371285438538, + "learning_rate": 0.0006, + "loss": 3.6375746726989746, + "step": 3422 + }, + { + "epoch": 47.54521625163827, + "grad_norm": 0.2376468926668167, + "learning_rate": 0.0006, + "loss": 3.6492481231689453, + "step": 3423 + }, + { + "epoch": 47.55919615552643, + "grad_norm": 0.21200433373451233, + "learning_rate": 0.0006, + "loss": 3.6258158683776855, + "step": 3424 + }, + { + "epoch": 47.57317605941459, + "grad_norm": 0.2246236652135849, + "learning_rate": 0.0006, + "loss": 3.6199564933776855, + "step": 3425 + }, + { + "epoch": 47.58715596330275, + "grad_norm": 0.21713437139987946, + "learning_rate": 0.0006, + "loss": 3.638197898864746, + "step": 3426 + }, + { + "epoch": 47.60113586719091, + "grad_norm": 0.1964627057313919, + "learning_rate": 0.0006, + "loss": 3.6334147453308105, + "step": 3427 + }, + { + "epoch": 47.615115771079076, + "grad_norm": 0.21705810725688934, + "learning_rate": 0.0006, + "loss": 3.6298668384552, + "step": 3428 + }, + { + "epoch": 47.62909567496723, + "grad_norm": 0.20376256108283997, + "learning_rate": 0.0006, + "loss": 3.6127166748046875, + "step": 3429 + }, + { + "epoch": 47.643075578855395, + "grad_norm": 0.20046672224998474, + "learning_rate": 0.0006, + "loss": 3.633683681488037, + "step": 3430 + }, + { + "epoch": 47.65705548274356, + "grad_norm": 0.21494409441947937, + "learning_rate": 0.0006, + "loss": 3.635828971862793, + "step": 3431 + }, + { + "epoch": 47.671035386631715, + "grad_norm": 0.24550487101078033, + "learning_rate": 0.0006, + "loss": 3.6056854724884033, + "step": 3432 + }, + { + "epoch": 47.68501529051988, + "grad_norm": 0.24416600167751312, + "learning_rate": 0.0006, + "loss": 3.618785858154297, + "step": 3433 + }, + { + "epoch": 47.69899519440804, + "grad_norm": 0.22872993350028992, + "learning_rate": 0.0006, + "loss": 3.6189026832580566, + "step": 3434 + }, + { + "epoch": 47.7129750982962, + "grad_norm": 0.23609530925750732, + "learning_rate": 0.0006, + "loss": 3.623661518096924, + "step": 3435 + }, + { + "epoch": 47.72695500218436, + "grad_norm": 0.22905564308166504, + "learning_rate": 0.0006, + "loss": 3.6155691146850586, + "step": 3436 + }, + { + "epoch": 47.74093490607252, + "grad_norm": 0.25507304072380066, + "learning_rate": 0.0006, + "loss": 3.5848331451416016, + "step": 3437 + }, + { + "epoch": 47.75491480996068, + "grad_norm": 0.24594344198703766, + "learning_rate": 0.0006, + "loss": 3.588374614715576, + "step": 3438 + }, + { + "epoch": 47.768894713848844, + "grad_norm": 0.23131750524044037, + "learning_rate": 0.0006, + "loss": 3.6164474487304688, + "step": 3439 + }, + { + "epoch": 47.782874617737, + "grad_norm": 0.21967829763889313, + "learning_rate": 0.0006, + "loss": 3.619150161743164, + "step": 3440 + }, + { + "epoch": 47.796854521625164, + "grad_norm": 0.226309135556221, + "learning_rate": 0.0006, + "loss": 3.5946340560913086, + "step": 3441 + }, + { + "epoch": 47.81083442551333, + "grad_norm": 0.23141087591648102, + "learning_rate": 0.0006, + "loss": 3.614711046218872, + "step": 3442 + }, + { + "epoch": 47.824814329401484, + "grad_norm": 0.20917707681655884, + "learning_rate": 0.0006, + "loss": 3.610058307647705, + "step": 3443 + }, + { + "epoch": 47.83879423328965, + "grad_norm": 0.22864583134651184, + "learning_rate": 0.0006, + "loss": 3.6396052837371826, + "step": 3444 + }, + { + "epoch": 47.8527741371778, + "grad_norm": 0.22201144695281982, + "learning_rate": 0.0006, + "loss": 3.6462526321411133, + "step": 3445 + }, + { + "epoch": 47.86675404106597, + "grad_norm": 0.21199125051498413, + "learning_rate": 0.0006, + "loss": 3.6090314388275146, + "step": 3446 + }, + { + "epoch": 47.88073394495413, + "grad_norm": 0.2236194908618927, + "learning_rate": 0.0006, + "loss": 3.6308231353759766, + "step": 3447 + }, + { + "epoch": 47.89471384884229, + "grad_norm": 0.21571075916290283, + "learning_rate": 0.0006, + "loss": 3.5899293422698975, + "step": 3448 + }, + { + "epoch": 47.90869375273045, + "grad_norm": 0.2320997267961502, + "learning_rate": 0.0006, + "loss": 3.6360764503479004, + "step": 3449 + }, + { + "epoch": 47.92267365661861, + "grad_norm": 0.2304147630929947, + "learning_rate": 0.0006, + "loss": 3.61220121383667, + "step": 3450 + }, + { + "epoch": 47.93665356050677, + "grad_norm": 0.2321154624223709, + "learning_rate": 0.0006, + "loss": 3.6104419231414795, + "step": 3451 + }, + { + "epoch": 47.95063346439493, + "grad_norm": 0.20895935595035553, + "learning_rate": 0.0006, + "loss": 3.6372952461242676, + "step": 3452 + }, + { + "epoch": 47.964613368283096, + "grad_norm": 0.19926418364048004, + "learning_rate": 0.0006, + "loss": 3.652947425842285, + "step": 3453 + }, + { + "epoch": 47.97859327217125, + "grad_norm": 0.22443149983882904, + "learning_rate": 0.0006, + "loss": 3.6005635261535645, + "step": 3454 + }, + { + "epoch": 47.992573176059416, + "grad_norm": 0.2361244559288025, + "learning_rate": 0.0006, + "loss": 3.626563549041748, + "step": 3455 + }, + { + "epoch": 48.0, + "grad_norm": 0.2542579174041748, + "learning_rate": 0.0006, + "loss": 3.619098663330078, + "step": 3456 + }, + { + "epoch": 48.0, + "eval_loss": 3.9787564277648926, + "eval_runtime": 44.3429, + "eval_samples_per_second": 55.071, + "eval_steps_per_second": 3.45, + "step": 3456 + }, + { + "epoch": 48.01397990388816, + "grad_norm": 0.21771088242530823, + "learning_rate": 0.0006, + "loss": 3.538780927658081, + "step": 3457 + }, + { + "epoch": 48.02795980777632, + "grad_norm": 0.23467740416526794, + "learning_rate": 0.0006, + "loss": 3.5875978469848633, + "step": 3458 + }, + { + "epoch": 48.04193971166448, + "grad_norm": 0.2527692914009094, + "learning_rate": 0.0006, + "loss": 3.5939159393310547, + "step": 3459 + }, + { + "epoch": 48.05591961555265, + "grad_norm": 0.21477685868740082, + "learning_rate": 0.0006, + "loss": 3.600374698638916, + "step": 3460 + }, + { + "epoch": 48.0698995194408, + "grad_norm": 0.22008976340293884, + "learning_rate": 0.0006, + "loss": 3.6058406829833984, + "step": 3461 + }, + { + "epoch": 48.083879423328966, + "grad_norm": 0.23344817757606506, + "learning_rate": 0.0006, + "loss": 3.5864410400390625, + "step": 3462 + }, + { + "epoch": 48.09785932721712, + "grad_norm": 0.24451610445976257, + "learning_rate": 0.0006, + "loss": 3.5827221870422363, + "step": 3463 + }, + { + "epoch": 48.111839231105286, + "grad_norm": 0.24536925554275513, + "learning_rate": 0.0006, + "loss": 3.566275119781494, + "step": 3464 + }, + { + "epoch": 48.12581913499345, + "grad_norm": 0.24060940742492676, + "learning_rate": 0.0006, + "loss": 3.575841188430786, + "step": 3465 + }, + { + "epoch": 48.139799038881605, + "grad_norm": 0.24829573929309845, + "learning_rate": 0.0006, + "loss": 3.6215152740478516, + "step": 3466 + }, + { + "epoch": 48.15377894276977, + "grad_norm": 0.2651045024394989, + "learning_rate": 0.0006, + "loss": 3.604381561279297, + "step": 3467 + }, + { + "epoch": 48.16775884665793, + "grad_norm": 0.2654518187046051, + "learning_rate": 0.0006, + "loss": 3.5989198684692383, + "step": 3468 + }, + { + "epoch": 48.18173875054609, + "grad_norm": 0.25179797410964966, + "learning_rate": 0.0006, + "loss": 3.596402168273926, + "step": 3469 + }, + { + "epoch": 48.19571865443425, + "grad_norm": 0.24018050730228424, + "learning_rate": 0.0006, + "loss": 3.6376051902770996, + "step": 3470 + }, + { + "epoch": 48.20969855832241, + "grad_norm": 0.22079682350158691, + "learning_rate": 0.0006, + "loss": 3.5990993976593018, + "step": 3471 + }, + { + "epoch": 48.22367846221057, + "grad_norm": 0.23267143964767456, + "learning_rate": 0.0006, + "loss": 3.614759683609009, + "step": 3472 + }, + { + "epoch": 48.237658366098735, + "grad_norm": 0.21822260320186615, + "learning_rate": 0.0006, + "loss": 3.6057262420654297, + "step": 3473 + }, + { + "epoch": 48.25163826998689, + "grad_norm": 0.23391997814178467, + "learning_rate": 0.0006, + "loss": 3.581972599029541, + "step": 3474 + }, + { + "epoch": 48.265618173875055, + "grad_norm": 0.22634121775627136, + "learning_rate": 0.0006, + "loss": 3.592149496078491, + "step": 3475 + }, + { + "epoch": 48.27959807776322, + "grad_norm": 0.2142419070005417, + "learning_rate": 0.0006, + "loss": 3.616722583770752, + "step": 3476 + }, + { + "epoch": 48.293577981651374, + "grad_norm": 0.227144256234169, + "learning_rate": 0.0006, + "loss": 3.6018447875976562, + "step": 3477 + }, + { + "epoch": 48.30755788553954, + "grad_norm": 0.25466978549957275, + "learning_rate": 0.0006, + "loss": 3.5795769691467285, + "step": 3478 + }, + { + "epoch": 48.3215377894277, + "grad_norm": 0.2409234344959259, + "learning_rate": 0.0006, + "loss": 3.5845530033111572, + "step": 3479 + }, + { + "epoch": 48.33551769331586, + "grad_norm": 0.22001305222511292, + "learning_rate": 0.0006, + "loss": 3.5861806869506836, + "step": 3480 + }, + { + "epoch": 48.34949759720402, + "grad_norm": 0.24980100989341736, + "learning_rate": 0.0006, + "loss": 3.6032233238220215, + "step": 3481 + }, + { + "epoch": 48.36347750109218, + "grad_norm": 0.28788816928863525, + "learning_rate": 0.0006, + "loss": 3.5876364707946777, + "step": 3482 + }, + { + "epoch": 48.37745740498034, + "grad_norm": 0.26172295212745667, + "learning_rate": 0.0006, + "loss": 3.5711276531219482, + "step": 3483 + }, + { + "epoch": 48.391437308868504, + "grad_norm": 0.23881542682647705, + "learning_rate": 0.0006, + "loss": 3.57108473777771, + "step": 3484 + }, + { + "epoch": 48.40541721275666, + "grad_norm": 0.22385981678962708, + "learning_rate": 0.0006, + "loss": 3.6197509765625, + "step": 3485 + }, + { + "epoch": 48.419397116644824, + "grad_norm": 0.21007859706878662, + "learning_rate": 0.0006, + "loss": 3.609449625015259, + "step": 3486 + }, + { + "epoch": 48.43337702053299, + "grad_norm": 0.21170279383659363, + "learning_rate": 0.0006, + "loss": 3.5981619358062744, + "step": 3487 + }, + { + "epoch": 48.44735692442114, + "grad_norm": 0.2100721150636673, + "learning_rate": 0.0006, + "loss": 3.606505870819092, + "step": 3488 + }, + { + "epoch": 48.46133682830931, + "grad_norm": 0.20408287644386292, + "learning_rate": 0.0006, + "loss": 3.6033859252929688, + "step": 3489 + }, + { + "epoch": 48.47531673219746, + "grad_norm": 0.20343686640262604, + "learning_rate": 0.0006, + "loss": 3.6249616146087646, + "step": 3490 + }, + { + "epoch": 48.489296636085626, + "grad_norm": 0.20570123195648193, + "learning_rate": 0.0006, + "loss": 3.5700693130493164, + "step": 3491 + }, + { + "epoch": 48.50327653997379, + "grad_norm": 0.2511707544326782, + "learning_rate": 0.0006, + "loss": 3.6432406902313232, + "step": 3492 + }, + { + "epoch": 48.517256443861946, + "grad_norm": 0.265960693359375, + "learning_rate": 0.0006, + "loss": 3.6329426765441895, + "step": 3493 + }, + { + "epoch": 48.53123634775011, + "grad_norm": 0.25830161571502686, + "learning_rate": 0.0006, + "loss": 3.593940258026123, + "step": 3494 + }, + { + "epoch": 48.54521625163827, + "grad_norm": 0.2232893705368042, + "learning_rate": 0.0006, + "loss": 3.623812198638916, + "step": 3495 + }, + { + "epoch": 48.55919615552643, + "grad_norm": 0.20818902552127838, + "learning_rate": 0.0006, + "loss": 3.5982813835144043, + "step": 3496 + }, + { + "epoch": 48.57317605941459, + "grad_norm": 0.2756865918636322, + "learning_rate": 0.0006, + "loss": 3.617436170578003, + "step": 3497 + }, + { + "epoch": 48.58715596330275, + "grad_norm": 0.2361520677804947, + "learning_rate": 0.0006, + "loss": 3.598113536834717, + "step": 3498 + }, + { + "epoch": 48.60113586719091, + "grad_norm": 0.1956835240125656, + "learning_rate": 0.0006, + "loss": 3.581003189086914, + "step": 3499 + }, + { + "epoch": 48.615115771079076, + "grad_norm": 0.2863931953907013, + "learning_rate": 0.0006, + "loss": 3.596768379211426, + "step": 3500 + }, + { + "epoch": 48.62909567496723, + "grad_norm": 0.29865020513534546, + "learning_rate": 0.0006, + "loss": 3.576995372772217, + "step": 3501 + }, + { + "epoch": 48.643075578855395, + "grad_norm": 0.23084872961044312, + "learning_rate": 0.0006, + "loss": 3.6431074142456055, + "step": 3502 + }, + { + "epoch": 48.65705548274356, + "grad_norm": 0.2081640362739563, + "learning_rate": 0.0006, + "loss": 3.6002132892608643, + "step": 3503 + }, + { + "epoch": 48.671035386631715, + "grad_norm": 0.20566335320472717, + "learning_rate": 0.0006, + "loss": 3.62365460395813, + "step": 3504 + }, + { + "epoch": 48.68501529051988, + "grad_norm": 0.2066725790500641, + "learning_rate": 0.0006, + "loss": 3.6063363552093506, + "step": 3505 + }, + { + "epoch": 48.69899519440804, + "grad_norm": 0.19830003380775452, + "learning_rate": 0.0006, + "loss": 3.617750883102417, + "step": 3506 + }, + { + "epoch": 48.7129750982962, + "grad_norm": 0.20409031212329865, + "learning_rate": 0.0006, + "loss": 3.6110005378723145, + "step": 3507 + }, + { + "epoch": 48.72695500218436, + "grad_norm": 0.20836064219474792, + "learning_rate": 0.0006, + "loss": 3.6148147583007812, + "step": 3508 + }, + { + "epoch": 48.74093490607252, + "grad_norm": 0.21660791337490082, + "learning_rate": 0.0006, + "loss": 3.641488790512085, + "step": 3509 + }, + { + "epoch": 48.75491480996068, + "grad_norm": 0.21075023710727692, + "learning_rate": 0.0006, + "loss": 3.6327688694000244, + "step": 3510 + }, + { + "epoch": 48.768894713848844, + "grad_norm": 0.19346074759960175, + "learning_rate": 0.0006, + "loss": 3.6025185585021973, + "step": 3511 + }, + { + "epoch": 48.782874617737, + "grad_norm": 0.20215240120887756, + "learning_rate": 0.0006, + "loss": 3.595707416534424, + "step": 3512 + }, + { + "epoch": 48.796854521625164, + "grad_norm": 0.1913122832775116, + "learning_rate": 0.0006, + "loss": 3.618406295776367, + "step": 3513 + }, + { + "epoch": 48.81083442551333, + "grad_norm": 0.18517033755779266, + "learning_rate": 0.0006, + "loss": 3.6212055683135986, + "step": 3514 + }, + { + "epoch": 48.824814329401484, + "grad_norm": 0.20453064143657684, + "learning_rate": 0.0006, + "loss": 3.5941221714019775, + "step": 3515 + }, + { + "epoch": 48.83879423328965, + "grad_norm": 0.20777031779289246, + "learning_rate": 0.0006, + "loss": 3.630701780319214, + "step": 3516 + }, + { + "epoch": 48.8527741371778, + "grad_norm": 0.23713789880275726, + "learning_rate": 0.0006, + "loss": 3.629256248474121, + "step": 3517 + }, + { + "epoch": 48.86675404106597, + "grad_norm": 0.1945258378982544, + "learning_rate": 0.0006, + "loss": 3.607020854949951, + "step": 3518 + }, + { + "epoch": 48.88073394495413, + "grad_norm": 0.19601863622665405, + "learning_rate": 0.0006, + "loss": 3.6200907230377197, + "step": 3519 + }, + { + "epoch": 48.89471384884229, + "grad_norm": 0.20068836212158203, + "learning_rate": 0.0006, + "loss": 3.58575701713562, + "step": 3520 + }, + { + "epoch": 48.90869375273045, + "grad_norm": 0.21790200471878052, + "learning_rate": 0.0006, + "loss": 3.6451416015625, + "step": 3521 + }, + { + "epoch": 48.92267365661861, + "grad_norm": 0.22265756130218506, + "learning_rate": 0.0006, + "loss": 3.621331214904785, + "step": 3522 + }, + { + "epoch": 48.93665356050677, + "grad_norm": 0.20316730439662933, + "learning_rate": 0.0006, + "loss": 3.614537239074707, + "step": 3523 + }, + { + "epoch": 48.95063346439493, + "grad_norm": 0.20275238156318665, + "learning_rate": 0.0006, + "loss": 3.5913281440734863, + "step": 3524 + }, + { + "epoch": 48.964613368283096, + "grad_norm": 0.20239883661270142, + "learning_rate": 0.0006, + "loss": 3.608638286590576, + "step": 3525 + }, + { + "epoch": 48.97859327217125, + "grad_norm": 0.21154041588306427, + "learning_rate": 0.0006, + "loss": 3.6233115196228027, + "step": 3526 + }, + { + "epoch": 48.992573176059416, + "grad_norm": 0.22368352115154266, + "learning_rate": 0.0006, + "loss": 3.599665880203247, + "step": 3527 + }, + { + "epoch": 49.0, + "grad_norm": 0.2675703763961792, + "learning_rate": 0.0006, + "loss": 3.637458086013794, + "step": 3528 + }, + { + "epoch": 49.0, + "eval_loss": 3.985574245452881, + "eval_runtime": 44.55, + "eval_samples_per_second": 54.815, + "eval_steps_per_second": 3.434, + "step": 3528 + }, + { + "epoch": 49.01397990388816, + "grad_norm": 0.2911863625049591, + "learning_rate": 0.0006, + "loss": 3.606170654296875, + "step": 3529 + }, + { + "epoch": 49.02795980777632, + "grad_norm": 0.26640036702156067, + "learning_rate": 0.0006, + "loss": 3.5662899017333984, + "step": 3530 + }, + { + "epoch": 49.04193971166448, + "grad_norm": 0.23250512778759003, + "learning_rate": 0.0006, + "loss": 3.5928688049316406, + "step": 3531 + }, + { + "epoch": 49.05591961555265, + "grad_norm": 0.2603093385696411, + "learning_rate": 0.0006, + "loss": 3.5702433586120605, + "step": 3532 + }, + { + "epoch": 49.0698995194408, + "grad_norm": 0.2711663246154785, + "learning_rate": 0.0006, + "loss": 3.591977596282959, + "step": 3533 + }, + { + "epoch": 49.083879423328966, + "grad_norm": 0.2536148130893707, + "learning_rate": 0.0006, + "loss": 3.5924272537231445, + "step": 3534 + }, + { + "epoch": 49.09785932721712, + "grad_norm": 0.22995208203792572, + "learning_rate": 0.0006, + "loss": 3.5760092735290527, + "step": 3535 + }, + { + "epoch": 49.111839231105286, + "grad_norm": 0.22327162325382233, + "learning_rate": 0.0006, + "loss": 3.6072137355804443, + "step": 3536 + }, + { + "epoch": 49.12581913499345, + "grad_norm": 0.2256365567445755, + "learning_rate": 0.0006, + "loss": 3.6156117916107178, + "step": 3537 + }, + { + "epoch": 49.139799038881605, + "grad_norm": 0.23647814989089966, + "learning_rate": 0.0006, + "loss": 3.5862512588500977, + "step": 3538 + }, + { + "epoch": 49.15377894276977, + "grad_norm": 0.23442648351192474, + "learning_rate": 0.0006, + "loss": 3.606386184692383, + "step": 3539 + }, + { + "epoch": 49.16775884665793, + "grad_norm": 0.22148385643959045, + "learning_rate": 0.0006, + "loss": 3.5564064979553223, + "step": 3540 + }, + { + "epoch": 49.18173875054609, + "grad_norm": 0.24589644372463226, + "learning_rate": 0.0006, + "loss": 3.5625576972961426, + "step": 3541 + }, + { + "epoch": 49.19571865443425, + "grad_norm": 0.23955261707305908, + "learning_rate": 0.0006, + "loss": 3.617833137512207, + "step": 3542 + }, + { + "epoch": 49.20969855832241, + "grad_norm": 0.2781425416469574, + "learning_rate": 0.0006, + "loss": 3.6153502464294434, + "step": 3543 + }, + { + "epoch": 49.22367846221057, + "grad_norm": 0.2622034549713135, + "learning_rate": 0.0006, + "loss": 3.608530044555664, + "step": 3544 + }, + { + "epoch": 49.237658366098735, + "grad_norm": 0.28407761454582214, + "learning_rate": 0.0006, + "loss": 3.572207450866699, + "step": 3545 + }, + { + "epoch": 49.25163826998689, + "grad_norm": 0.2722281217575073, + "learning_rate": 0.0006, + "loss": 3.591392755508423, + "step": 3546 + }, + { + "epoch": 49.265618173875055, + "grad_norm": 0.20608903467655182, + "learning_rate": 0.0006, + "loss": 3.598421573638916, + "step": 3547 + }, + { + "epoch": 49.27959807776322, + "grad_norm": 0.27233049273490906, + "learning_rate": 0.0006, + "loss": 3.5819201469421387, + "step": 3548 + }, + { + "epoch": 49.293577981651374, + "grad_norm": 0.26182129979133606, + "learning_rate": 0.0006, + "loss": 3.5855109691619873, + "step": 3549 + }, + { + "epoch": 49.30755788553954, + "grad_norm": 0.20255911350250244, + "learning_rate": 0.0006, + "loss": 3.569438934326172, + "step": 3550 + }, + { + "epoch": 49.3215377894277, + "grad_norm": 0.20045310258865356, + "learning_rate": 0.0006, + "loss": 3.5888795852661133, + "step": 3551 + }, + { + "epoch": 49.33551769331586, + "grad_norm": 0.18505392968654633, + "learning_rate": 0.0006, + "loss": 3.565467596054077, + "step": 3552 + }, + { + "epoch": 49.34949759720402, + "grad_norm": 0.2057398110628128, + "learning_rate": 0.0006, + "loss": 3.5850436687469482, + "step": 3553 + }, + { + "epoch": 49.36347750109218, + "grad_norm": 0.20007790625095367, + "learning_rate": 0.0006, + "loss": 3.5963945388793945, + "step": 3554 + }, + { + "epoch": 49.37745740498034, + "grad_norm": 0.179341122508049, + "learning_rate": 0.0006, + "loss": 3.5747077465057373, + "step": 3555 + }, + { + "epoch": 49.391437308868504, + "grad_norm": 0.1978122442960739, + "learning_rate": 0.0006, + "loss": 3.605037212371826, + "step": 3556 + }, + { + "epoch": 49.40541721275666, + "grad_norm": 0.1936761885881424, + "learning_rate": 0.0006, + "loss": 3.6293420791625977, + "step": 3557 + }, + { + "epoch": 49.419397116644824, + "grad_norm": 0.20393748581409454, + "learning_rate": 0.0006, + "loss": 3.5616302490234375, + "step": 3558 + }, + { + "epoch": 49.43337702053299, + "grad_norm": 0.19082997739315033, + "learning_rate": 0.0006, + "loss": 3.605088472366333, + "step": 3559 + }, + { + "epoch": 49.44735692442114, + "grad_norm": 0.19642551243305206, + "learning_rate": 0.0006, + "loss": 3.610870361328125, + "step": 3560 + }, + { + "epoch": 49.46133682830931, + "grad_norm": 0.21815423667430878, + "learning_rate": 0.0006, + "loss": 3.60211181640625, + "step": 3561 + }, + { + "epoch": 49.47531673219746, + "grad_norm": 0.20342762768268585, + "learning_rate": 0.0006, + "loss": 3.597529411315918, + "step": 3562 + }, + { + "epoch": 49.489296636085626, + "grad_norm": 0.19032546877861023, + "learning_rate": 0.0006, + "loss": 3.5728795528411865, + "step": 3563 + }, + { + "epoch": 49.50327653997379, + "grad_norm": 0.18237556517124176, + "learning_rate": 0.0006, + "loss": 3.5983595848083496, + "step": 3564 + }, + { + "epoch": 49.517256443861946, + "grad_norm": 0.20585589110851288, + "learning_rate": 0.0006, + "loss": 3.578320264816284, + "step": 3565 + }, + { + "epoch": 49.53123634775011, + "grad_norm": 0.20158857107162476, + "learning_rate": 0.0006, + "loss": 3.5918798446655273, + "step": 3566 + }, + { + "epoch": 49.54521625163827, + "grad_norm": 0.20195038616657257, + "learning_rate": 0.0006, + "loss": 3.605422258377075, + "step": 3567 + }, + { + "epoch": 49.55919615552643, + "grad_norm": 0.19884084165096283, + "learning_rate": 0.0006, + "loss": 3.5964083671569824, + "step": 3568 + }, + { + "epoch": 49.57317605941459, + "grad_norm": 0.21243083477020264, + "learning_rate": 0.0006, + "loss": 3.5885486602783203, + "step": 3569 + }, + { + "epoch": 49.58715596330275, + "grad_norm": 0.21059481799602509, + "learning_rate": 0.0006, + "loss": 3.572526454925537, + "step": 3570 + }, + { + "epoch": 49.60113586719091, + "grad_norm": 0.20644313097000122, + "learning_rate": 0.0006, + "loss": 3.583679676055908, + "step": 3571 + }, + { + "epoch": 49.615115771079076, + "grad_norm": 0.21343673765659332, + "learning_rate": 0.0006, + "loss": 3.6211650371551514, + "step": 3572 + }, + { + "epoch": 49.62909567496723, + "grad_norm": 0.23395343124866486, + "learning_rate": 0.0006, + "loss": 3.6003336906433105, + "step": 3573 + }, + { + "epoch": 49.643075578855395, + "grad_norm": 0.19978424906730652, + "learning_rate": 0.0006, + "loss": 3.6066763401031494, + "step": 3574 + }, + { + "epoch": 49.65705548274356, + "grad_norm": 0.21529823541641235, + "learning_rate": 0.0006, + "loss": 3.601284980773926, + "step": 3575 + }, + { + "epoch": 49.671035386631715, + "grad_norm": 0.21672746539115906, + "learning_rate": 0.0006, + "loss": 3.6084227561950684, + "step": 3576 + }, + { + "epoch": 49.68501529051988, + "grad_norm": 0.20889638364315033, + "learning_rate": 0.0006, + "loss": 3.591568946838379, + "step": 3577 + }, + { + "epoch": 49.69899519440804, + "grad_norm": 0.1960221230983734, + "learning_rate": 0.0006, + "loss": 3.6180830001831055, + "step": 3578 + }, + { + "epoch": 49.7129750982962, + "grad_norm": 0.19712410867214203, + "learning_rate": 0.0006, + "loss": 3.6197333335876465, + "step": 3579 + }, + { + "epoch": 49.72695500218436, + "grad_norm": 0.20665284991264343, + "learning_rate": 0.0006, + "loss": 3.6251301765441895, + "step": 3580 + }, + { + "epoch": 49.74093490607252, + "grad_norm": 0.21018871665000916, + "learning_rate": 0.0006, + "loss": 3.621973991394043, + "step": 3581 + }, + { + "epoch": 49.75491480996068, + "grad_norm": 0.20777495205402374, + "learning_rate": 0.0006, + "loss": 3.5826358795166016, + "step": 3582 + }, + { + "epoch": 49.768894713848844, + "grad_norm": 0.18880195915699005, + "learning_rate": 0.0006, + "loss": 3.5946998596191406, + "step": 3583 + }, + { + "epoch": 49.782874617737, + "grad_norm": 0.19894644618034363, + "learning_rate": 0.0006, + "loss": 3.5912184715270996, + "step": 3584 + }, + { + "epoch": 49.796854521625164, + "grad_norm": 0.20128944516181946, + "learning_rate": 0.0006, + "loss": 3.6370394229888916, + "step": 3585 + }, + { + "epoch": 49.81083442551333, + "grad_norm": 0.19332024455070496, + "learning_rate": 0.0006, + "loss": 3.619018077850342, + "step": 3586 + }, + { + "epoch": 49.824814329401484, + "grad_norm": 0.19303865730762482, + "learning_rate": 0.0006, + "loss": 3.578667163848877, + "step": 3587 + }, + { + "epoch": 49.83879423328965, + "grad_norm": 0.20154757797718048, + "learning_rate": 0.0006, + "loss": 3.61959171295166, + "step": 3588 + }, + { + "epoch": 49.8527741371778, + "grad_norm": 0.19653639197349548, + "learning_rate": 0.0006, + "loss": 3.6437559127807617, + "step": 3589 + }, + { + "epoch": 49.86675404106597, + "grad_norm": 0.21873407065868378, + "learning_rate": 0.0006, + "loss": 3.6131112575531006, + "step": 3590 + }, + { + "epoch": 49.88073394495413, + "grad_norm": 0.20130383968353271, + "learning_rate": 0.0006, + "loss": 3.624028444290161, + "step": 3591 + }, + { + "epoch": 49.89471384884229, + "grad_norm": 0.20206475257873535, + "learning_rate": 0.0006, + "loss": 3.5997328758239746, + "step": 3592 + }, + { + "epoch": 49.90869375273045, + "grad_norm": 0.20393261313438416, + "learning_rate": 0.0006, + "loss": 3.596066474914551, + "step": 3593 + }, + { + "epoch": 49.92267365661861, + "grad_norm": 0.19703544676303864, + "learning_rate": 0.0006, + "loss": 3.624542713165283, + "step": 3594 + }, + { + "epoch": 49.93665356050677, + "grad_norm": 0.2102314680814743, + "learning_rate": 0.0006, + "loss": 3.6082515716552734, + "step": 3595 + }, + { + "epoch": 49.95063346439493, + "grad_norm": 0.23791316151618958, + "learning_rate": 0.0006, + "loss": 3.6185569763183594, + "step": 3596 + }, + { + "epoch": 49.964613368283096, + "grad_norm": 0.24536125361919403, + "learning_rate": 0.0006, + "loss": 3.599207878112793, + "step": 3597 + }, + { + "epoch": 49.97859327217125, + "grad_norm": 0.23160327970981598, + "learning_rate": 0.0006, + "loss": 3.600921869277954, + "step": 3598 + }, + { + "epoch": 49.992573176059416, + "grad_norm": 0.22740362584590912, + "learning_rate": 0.0006, + "loss": 3.6112914085388184, + "step": 3599 + }, + { + "epoch": 50.0, + "grad_norm": 0.24303272366523743, + "learning_rate": 0.0006, + "loss": 3.6385838985443115, + "step": 3600 + }, + { + "epoch": 50.0, + "eval_loss": 3.9811089038848877, + "eval_runtime": 44.9913, + "eval_samples_per_second": 54.277, + "eval_steps_per_second": 3.401, + "step": 3600 + }, + { + "epoch": 50.01397990388816, + "grad_norm": 0.20118683576583862, + "learning_rate": 0.0006, + "loss": 3.561751127243042, + "step": 3601 + }, + { + "epoch": 50.02795980777632, + "grad_norm": 0.18722538650035858, + "learning_rate": 0.0006, + "loss": 3.5742180347442627, + "step": 3602 + }, + { + "epoch": 50.04193971166448, + "grad_norm": 0.21248385310173035, + "learning_rate": 0.0006, + "loss": 3.5759401321411133, + "step": 3603 + }, + { + "epoch": 50.05591961555265, + "grad_norm": 0.21006572246551514, + "learning_rate": 0.0006, + "loss": 3.5737462043762207, + "step": 3604 + }, + { + "epoch": 50.0698995194408, + "grad_norm": 0.20671233534812927, + "learning_rate": 0.0006, + "loss": 3.548205852508545, + "step": 3605 + }, + { + "epoch": 50.083879423328966, + "grad_norm": 0.20704609155654907, + "learning_rate": 0.0006, + "loss": 3.5862209796905518, + "step": 3606 + }, + { + "epoch": 50.09785932721712, + "grad_norm": 0.20611345767974854, + "learning_rate": 0.0006, + "loss": 3.5696640014648438, + "step": 3607 + }, + { + "epoch": 50.111839231105286, + "grad_norm": 0.20986805856227875, + "learning_rate": 0.0006, + "loss": 3.5755579471588135, + "step": 3608 + }, + { + "epoch": 50.12581913499345, + "grad_norm": 0.21727709472179413, + "learning_rate": 0.0006, + "loss": 3.5967745780944824, + "step": 3609 + }, + { + "epoch": 50.139799038881605, + "grad_norm": 0.21854986250400543, + "learning_rate": 0.0006, + "loss": 3.6115779876708984, + "step": 3610 + }, + { + "epoch": 50.15377894276977, + "grad_norm": 0.22904936969280243, + "learning_rate": 0.0006, + "loss": 3.5639889240264893, + "step": 3611 + }, + { + "epoch": 50.16775884665793, + "grad_norm": 0.23774254322052002, + "learning_rate": 0.0006, + "loss": 3.6023900508880615, + "step": 3612 + }, + { + "epoch": 50.18173875054609, + "grad_norm": 0.21548497676849365, + "learning_rate": 0.0006, + "loss": 3.5722856521606445, + "step": 3613 + }, + { + "epoch": 50.19571865443425, + "grad_norm": 0.20503196120262146, + "learning_rate": 0.0006, + "loss": 3.5899252891540527, + "step": 3614 + }, + { + "epoch": 50.20969855832241, + "grad_norm": 0.22084423899650574, + "learning_rate": 0.0006, + "loss": 3.56020450592041, + "step": 3615 + }, + { + "epoch": 50.22367846221057, + "grad_norm": 0.24276728928089142, + "learning_rate": 0.0006, + "loss": 3.585695743560791, + "step": 3616 + }, + { + "epoch": 50.237658366098735, + "grad_norm": 0.23182106018066406, + "learning_rate": 0.0006, + "loss": 3.580676555633545, + "step": 3617 + }, + { + "epoch": 50.25163826998689, + "grad_norm": 0.2341945767402649, + "learning_rate": 0.0006, + "loss": 3.579713821411133, + "step": 3618 + }, + { + "epoch": 50.265618173875055, + "grad_norm": 0.27971863746643066, + "learning_rate": 0.0006, + "loss": 3.568251371383667, + "step": 3619 + }, + { + "epoch": 50.27959807776322, + "grad_norm": 0.24740517139434814, + "learning_rate": 0.0006, + "loss": 3.5798869132995605, + "step": 3620 + }, + { + "epoch": 50.293577981651374, + "grad_norm": 0.20561005175113678, + "learning_rate": 0.0006, + "loss": 3.5610039234161377, + "step": 3621 + }, + { + "epoch": 50.30755788553954, + "grad_norm": 0.2085379660129547, + "learning_rate": 0.0006, + "loss": 3.5620288848876953, + "step": 3622 + }, + { + "epoch": 50.3215377894277, + "grad_norm": 0.20868757367134094, + "learning_rate": 0.0006, + "loss": 3.6090598106384277, + "step": 3623 + }, + { + "epoch": 50.33551769331586, + "grad_norm": 0.18991491198539734, + "learning_rate": 0.0006, + "loss": 3.55255126953125, + "step": 3624 + }, + { + "epoch": 50.34949759720402, + "grad_norm": 0.24742646515369415, + "learning_rate": 0.0006, + "loss": 3.60585880279541, + "step": 3625 + }, + { + "epoch": 50.36347750109218, + "grad_norm": 0.26971301436424255, + "learning_rate": 0.0006, + "loss": 3.5913054943084717, + "step": 3626 + }, + { + "epoch": 50.37745740498034, + "grad_norm": 0.24294881522655487, + "learning_rate": 0.0006, + "loss": 3.5570878982543945, + "step": 3627 + }, + { + "epoch": 50.391437308868504, + "grad_norm": 0.2194664478302002, + "learning_rate": 0.0006, + "loss": 3.5800397396087646, + "step": 3628 + }, + { + "epoch": 50.40541721275666, + "grad_norm": 0.2148507982492447, + "learning_rate": 0.0006, + "loss": 3.6182782649993896, + "step": 3629 + }, + { + "epoch": 50.419397116644824, + "grad_norm": 0.22235016524791718, + "learning_rate": 0.0006, + "loss": 3.5784103870391846, + "step": 3630 + }, + { + "epoch": 50.43337702053299, + "grad_norm": 0.23176309466362, + "learning_rate": 0.0006, + "loss": 3.559011459350586, + "step": 3631 + }, + { + "epoch": 50.44735692442114, + "grad_norm": 0.2267913520336151, + "learning_rate": 0.0006, + "loss": 3.5854780673980713, + "step": 3632 + }, + { + "epoch": 50.46133682830931, + "grad_norm": 0.22565901279449463, + "learning_rate": 0.0006, + "loss": 3.5891294479370117, + "step": 3633 + }, + { + "epoch": 50.47531673219746, + "grad_norm": 0.23724839091300964, + "learning_rate": 0.0006, + "loss": 3.575702428817749, + "step": 3634 + }, + { + "epoch": 50.489296636085626, + "grad_norm": 0.23679722845554352, + "learning_rate": 0.0006, + "loss": 3.588639259338379, + "step": 3635 + }, + { + "epoch": 50.50327653997379, + "grad_norm": 0.23909232020378113, + "learning_rate": 0.0006, + "loss": 3.5828709602355957, + "step": 3636 + }, + { + "epoch": 50.517256443861946, + "grad_norm": 0.24186119437217712, + "learning_rate": 0.0006, + "loss": 3.596708059310913, + "step": 3637 + }, + { + "epoch": 50.53123634775011, + "grad_norm": 0.2325516790151596, + "learning_rate": 0.0006, + "loss": 3.610769510269165, + "step": 3638 + }, + { + "epoch": 50.54521625163827, + "grad_norm": 0.205137237906456, + "learning_rate": 0.0006, + "loss": 3.612844228744507, + "step": 3639 + }, + { + "epoch": 50.55919615552643, + "grad_norm": 0.20860300958156586, + "learning_rate": 0.0006, + "loss": 3.623669147491455, + "step": 3640 + }, + { + "epoch": 50.57317605941459, + "grad_norm": 0.20029069483280182, + "learning_rate": 0.0006, + "loss": 3.6108334064483643, + "step": 3641 + }, + { + "epoch": 50.58715596330275, + "grad_norm": 0.18841931223869324, + "learning_rate": 0.0006, + "loss": 3.6073007583618164, + "step": 3642 + }, + { + "epoch": 50.60113586719091, + "grad_norm": 0.20113889873027802, + "learning_rate": 0.0006, + "loss": 3.5878968238830566, + "step": 3643 + }, + { + "epoch": 50.615115771079076, + "grad_norm": 0.23595206439495087, + "learning_rate": 0.0006, + "loss": 3.634650707244873, + "step": 3644 + }, + { + "epoch": 50.62909567496723, + "grad_norm": 0.24625661969184875, + "learning_rate": 0.0006, + "loss": 3.593716621398926, + "step": 3645 + }, + { + "epoch": 50.643075578855395, + "grad_norm": 0.2182614505290985, + "learning_rate": 0.0006, + "loss": 3.6006946563720703, + "step": 3646 + }, + { + "epoch": 50.65705548274356, + "grad_norm": 0.20867182314395905, + "learning_rate": 0.0006, + "loss": 3.6249008178710938, + "step": 3647 + }, + { + "epoch": 50.671035386631715, + "grad_norm": 0.20451945066452026, + "learning_rate": 0.0006, + "loss": 3.5870985984802246, + "step": 3648 + }, + { + "epoch": 50.68501529051988, + "grad_norm": 0.19160118699073792, + "learning_rate": 0.0006, + "loss": 3.6104488372802734, + "step": 3649 + }, + { + "epoch": 50.69899519440804, + "grad_norm": 0.18884453177452087, + "learning_rate": 0.0006, + "loss": 3.607893943786621, + "step": 3650 + }, + { + "epoch": 50.7129750982962, + "grad_norm": 0.19570060074329376, + "learning_rate": 0.0006, + "loss": 3.5938732624053955, + "step": 3651 + }, + { + "epoch": 50.72695500218436, + "grad_norm": 0.21978189051151276, + "learning_rate": 0.0006, + "loss": 3.5894908905029297, + "step": 3652 + }, + { + "epoch": 50.74093490607252, + "grad_norm": 0.19930903613567352, + "learning_rate": 0.0006, + "loss": 3.6067557334899902, + "step": 3653 + }, + { + "epoch": 50.75491480996068, + "grad_norm": 0.19450204074382782, + "learning_rate": 0.0006, + "loss": 3.5989646911621094, + "step": 3654 + }, + { + "epoch": 50.768894713848844, + "grad_norm": 0.1925407201051712, + "learning_rate": 0.0006, + "loss": 3.604339599609375, + "step": 3655 + }, + { + "epoch": 50.782874617737, + "grad_norm": 0.19232864677906036, + "learning_rate": 0.0006, + "loss": 3.5789241790771484, + "step": 3656 + }, + { + "epoch": 50.796854521625164, + "grad_norm": 0.1937529742717743, + "learning_rate": 0.0006, + "loss": 3.6060590744018555, + "step": 3657 + }, + { + "epoch": 50.81083442551333, + "grad_norm": 0.19863007962703705, + "learning_rate": 0.0006, + "loss": 3.5944440364837646, + "step": 3658 + }, + { + "epoch": 50.824814329401484, + "grad_norm": 0.18879804015159607, + "learning_rate": 0.0006, + "loss": 3.6017069816589355, + "step": 3659 + }, + { + "epoch": 50.83879423328965, + "grad_norm": 0.20111720263957977, + "learning_rate": 0.0006, + "loss": 3.593327522277832, + "step": 3660 + }, + { + "epoch": 50.8527741371778, + "grad_norm": 0.22593358159065247, + "learning_rate": 0.0006, + "loss": 3.5856096744537354, + "step": 3661 + }, + { + "epoch": 50.86675404106597, + "grad_norm": 0.22624441981315613, + "learning_rate": 0.0006, + "loss": 3.6144661903381348, + "step": 3662 + }, + { + "epoch": 50.88073394495413, + "grad_norm": 0.22052904963493347, + "learning_rate": 0.0006, + "loss": 3.5895116329193115, + "step": 3663 + }, + { + "epoch": 50.89471384884229, + "grad_norm": 0.2248559594154358, + "learning_rate": 0.0006, + "loss": 3.6400208473205566, + "step": 3664 + }, + { + "epoch": 50.90869375273045, + "grad_norm": 0.20209142565727234, + "learning_rate": 0.0006, + "loss": 3.6059279441833496, + "step": 3665 + }, + { + "epoch": 50.92267365661861, + "grad_norm": 0.2075854390859604, + "learning_rate": 0.0006, + "loss": 3.590074062347412, + "step": 3666 + }, + { + "epoch": 50.93665356050677, + "grad_norm": 0.20524698495864868, + "learning_rate": 0.0006, + "loss": 3.600741147994995, + "step": 3667 + }, + { + "epoch": 50.95063346439493, + "grad_norm": 0.1922466903924942, + "learning_rate": 0.0006, + "loss": 3.5984225273132324, + "step": 3668 + }, + { + "epoch": 50.964613368283096, + "grad_norm": 0.18852637708187103, + "learning_rate": 0.0006, + "loss": 3.6204333305358887, + "step": 3669 + }, + { + "epoch": 50.97859327217125, + "grad_norm": 0.22050459682941437, + "learning_rate": 0.0006, + "loss": 3.6371538639068604, + "step": 3670 + }, + { + "epoch": 50.992573176059416, + "grad_norm": 0.21477681398391724, + "learning_rate": 0.0006, + "loss": 3.608738899230957, + "step": 3671 + }, + { + "epoch": 51.0, + "grad_norm": 0.22061094641685486, + "learning_rate": 0.0006, + "loss": 3.6209959983825684, + "step": 3672 + }, + { + "epoch": 51.0, + "eval_loss": 3.9762842655181885, + "eval_runtime": 44.8353, + "eval_samples_per_second": 54.466, + "eval_steps_per_second": 3.412, + "step": 3672 + }, + { + "epoch": 51.01397990388816, + "grad_norm": 0.19009192287921906, + "learning_rate": 0.0006, + "loss": 3.5604426860809326, + "step": 3673 + }, + { + "epoch": 51.02795980777632, + "grad_norm": 0.2217264175415039, + "learning_rate": 0.0006, + "loss": 3.5595664978027344, + "step": 3674 + }, + { + "epoch": 51.04193971166448, + "grad_norm": 0.2747595012187958, + "learning_rate": 0.0006, + "loss": 3.5800085067749023, + "step": 3675 + }, + { + "epoch": 51.05591961555265, + "grad_norm": 0.26963043212890625, + "learning_rate": 0.0006, + "loss": 3.5529065132141113, + "step": 3676 + }, + { + "epoch": 51.0698995194408, + "grad_norm": 0.2304207682609558, + "learning_rate": 0.0006, + "loss": 3.585238456726074, + "step": 3677 + }, + { + "epoch": 51.083879423328966, + "grad_norm": 0.22073867917060852, + "learning_rate": 0.0006, + "loss": 3.542267322540283, + "step": 3678 + }, + { + "epoch": 51.09785932721712, + "grad_norm": 0.22550931572914124, + "learning_rate": 0.0006, + "loss": 3.5693743228912354, + "step": 3679 + }, + { + "epoch": 51.111839231105286, + "grad_norm": 0.2347114384174347, + "learning_rate": 0.0006, + "loss": 3.5830154418945312, + "step": 3680 + }, + { + "epoch": 51.12581913499345, + "grad_norm": 0.24889813363552094, + "learning_rate": 0.0006, + "loss": 3.581010341644287, + "step": 3681 + }, + { + "epoch": 51.139799038881605, + "grad_norm": 0.2401021122932434, + "learning_rate": 0.0006, + "loss": 3.619450092315674, + "step": 3682 + }, + { + "epoch": 51.15377894276977, + "grad_norm": 0.22221142053604126, + "learning_rate": 0.0006, + "loss": 3.573624610900879, + "step": 3683 + }, + { + "epoch": 51.16775884665793, + "grad_norm": 0.2429024577140808, + "learning_rate": 0.0006, + "loss": 3.548610210418701, + "step": 3684 + }, + { + "epoch": 51.18173875054609, + "grad_norm": 0.26470765471458435, + "learning_rate": 0.0006, + "loss": 3.5582218170166016, + "step": 3685 + }, + { + "epoch": 51.19571865443425, + "grad_norm": 0.2632715404033661, + "learning_rate": 0.0006, + "loss": 3.5976979732513428, + "step": 3686 + }, + { + "epoch": 51.20969855832241, + "grad_norm": 0.2567448616027832, + "learning_rate": 0.0006, + "loss": 3.592031478881836, + "step": 3687 + }, + { + "epoch": 51.22367846221057, + "grad_norm": 0.25299885869026184, + "learning_rate": 0.0006, + "loss": 3.579765796661377, + "step": 3688 + }, + { + "epoch": 51.237658366098735, + "grad_norm": 0.22765189409255981, + "learning_rate": 0.0006, + "loss": 3.5677521228790283, + "step": 3689 + }, + { + "epoch": 51.25163826998689, + "grad_norm": 0.23369887471199036, + "learning_rate": 0.0006, + "loss": 3.585879325866699, + "step": 3690 + }, + { + "epoch": 51.265618173875055, + "grad_norm": 0.21358822286128998, + "learning_rate": 0.0006, + "loss": 3.568866729736328, + "step": 3691 + }, + { + "epoch": 51.27959807776322, + "grad_norm": 0.2127659171819687, + "learning_rate": 0.0006, + "loss": 3.614520311355591, + "step": 3692 + }, + { + "epoch": 51.293577981651374, + "grad_norm": 0.22829636931419373, + "learning_rate": 0.0006, + "loss": 3.6004438400268555, + "step": 3693 + }, + { + "epoch": 51.30755788553954, + "grad_norm": 0.223104789853096, + "learning_rate": 0.0006, + "loss": 3.5791001319885254, + "step": 3694 + }, + { + "epoch": 51.3215377894277, + "grad_norm": 0.2084331065416336, + "learning_rate": 0.0006, + "loss": 3.572514295578003, + "step": 3695 + }, + { + "epoch": 51.33551769331586, + "grad_norm": 0.21115142107009888, + "learning_rate": 0.0006, + "loss": 3.5736331939697266, + "step": 3696 + }, + { + "epoch": 51.34949759720402, + "grad_norm": 0.2158546894788742, + "learning_rate": 0.0006, + "loss": 3.587161064147949, + "step": 3697 + }, + { + "epoch": 51.36347750109218, + "grad_norm": 0.2478281408548355, + "learning_rate": 0.0006, + "loss": 3.5879693031311035, + "step": 3698 + }, + { + "epoch": 51.37745740498034, + "grad_norm": 0.25137850642204285, + "learning_rate": 0.0006, + "loss": 3.58297061920166, + "step": 3699 + }, + { + "epoch": 51.391437308868504, + "grad_norm": 0.22961364686489105, + "learning_rate": 0.0006, + "loss": 3.5556459426879883, + "step": 3700 + }, + { + "epoch": 51.40541721275666, + "grad_norm": 0.22561277449131012, + "learning_rate": 0.0006, + "loss": 3.60197114944458, + "step": 3701 + }, + { + "epoch": 51.419397116644824, + "grad_norm": 0.20331767201423645, + "learning_rate": 0.0006, + "loss": 3.5815134048461914, + "step": 3702 + }, + { + "epoch": 51.43337702053299, + "grad_norm": 0.1941518634557724, + "learning_rate": 0.0006, + "loss": 3.6055145263671875, + "step": 3703 + }, + { + "epoch": 51.44735692442114, + "grad_norm": 0.19306789338588715, + "learning_rate": 0.0006, + "loss": 3.6101536750793457, + "step": 3704 + }, + { + "epoch": 51.46133682830931, + "grad_norm": 0.1830628365278244, + "learning_rate": 0.0006, + "loss": 3.5978426933288574, + "step": 3705 + }, + { + "epoch": 51.47531673219746, + "grad_norm": 0.19231490790843964, + "learning_rate": 0.0006, + "loss": 3.54502534866333, + "step": 3706 + }, + { + "epoch": 51.489296636085626, + "grad_norm": 0.19109117984771729, + "learning_rate": 0.0006, + "loss": 3.5957441329956055, + "step": 3707 + }, + { + "epoch": 51.50327653997379, + "grad_norm": 0.2032860815525055, + "learning_rate": 0.0006, + "loss": 3.5626730918884277, + "step": 3708 + }, + { + "epoch": 51.517256443861946, + "grad_norm": 0.19685189425945282, + "learning_rate": 0.0006, + "loss": 3.580399990081787, + "step": 3709 + }, + { + "epoch": 51.53123634775011, + "grad_norm": 0.19273017346858978, + "learning_rate": 0.0006, + "loss": 3.5428152084350586, + "step": 3710 + }, + { + "epoch": 51.54521625163827, + "grad_norm": 0.20198430120944977, + "learning_rate": 0.0006, + "loss": 3.607492446899414, + "step": 3711 + }, + { + "epoch": 51.55919615552643, + "grad_norm": 0.2267402559518814, + "learning_rate": 0.0006, + "loss": 3.580479621887207, + "step": 3712 + }, + { + "epoch": 51.57317605941459, + "grad_norm": 0.2247764617204666, + "learning_rate": 0.0006, + "loss": 3.5921316146850586, + "step": 3713 + }, + { + "epoch": 51.58715596330275, + "grad_norm": 0.23907902836799622, + "learning_rate": 0.0006, + "loss": 3.6014928817749023, + "step": 3714 + }, + { + "epoch": 51.60113586719091, + "grad_norm": 0.25907906889915466, + "learning_rate": 0.0006, + "loss": 3.5900192260742188, + "step": 3715 + }, + { + "epoch": 51.615115771079076, + "grad_norm": 0.26282405853271484, + "learning_rate": 0.0006, + "loss": 3.5727553367614746, + "step": 3716 + }, + { + "epoch": 51.62909567496723, + "grad_norm": 0.2541179060935974, + "learning_rate": 0.0006, + "loss": 3.5835776329040527, + "step": 3717 + }, + { + "epoch": 51.643075578855395, + "grad_norm": 0.23372016847133636, + "learning_rate": 0.0006, + "loss": 3.5902652740478516, + "step": 3718 + }, + { + "epoch": 51.65705548274356, + "grad_norm": 0.22827622294425964, + "learning_rate": 0.0006, + "loss": 3.6048200130462646, + "step": 3719 + }, + { + "epoch": 51.671035386631715, + "grad_norm": 0.21026845276355743, + "learning_rate": 0.0006, + "loss": 3.5587573051452637, + "step": 3720 + }, + { + "epoch": 51.68501529051988, + "grad_norm": 0.23485958576202393, + "learning_rate": 0.0006, + "loss": 3.6212477684020996, + "step": 3721 + }, + { + "epoch": 51.69899519440804, + "grad_norm": 0.2676871120929718, + "learning_rate": 0.0006, + "loss": 3.597837448120117, + "step": 3722 + }, + { + "epoch": 51.7129750982962, + "grad_norm": 0.23661476373672485, + "learning_rate": 0.0006, + "loss": 3.616079330444336, + "step": 3723 + }, + { + "epoch": 51.72695500218436, + "grad_norm": 0.2212267816066742, + "learning_rate": 0.0006, + "loss": 3.6103296279907227, + "step": 3724 + }, + { + "epoch": 51.74093490607252, + "grad_norm": 0.22888682782649994, + "learning_rate": 0.0006, + "loss": 3.6099889278411865, + "step": 3725 + }, + { + "epoch": 51.75491480996068, + "grad_norm": 0.21740387380123138, + "learning_rate": 0.0006, + "loss": 3.5859200954437256, + "step": 3726 + }, + { + "epoch": 51.768894713848844, + "grad_norm": 0.20819106698036194, + "learning_rate": 0.0006, + "loss": 3.5875396728515625, + "step": 3727 + }, + { + "epoch": 51.782874617737, + "grad_norm": 0.21574485301971436, + "learning_rate": 0.0006, + "loss": 3.6203761100769043, + "step": 3728 + }, + { + "epoch": 51.796854521625164, + "grad_norm": 0.21275651454925537, + "learning_rate": 0.0006, + "loss": 3.6066012382507324, + "step": 3729 + }, + { + "epoch": 51.81083442551333, + "grad_norm": 0.2043808251619339, + "learning_rate": 0.0006, + "loss": 3.571417808532715, + "step": 3730 + }, + { + "epoch": 51.824814329401484, + "grad_norm": 0.2082396298646927, + "learning_rate": 0.0006, + "loss": 3.6076579093933105, + "step": 3731 + }, + { + "epoch": 51.83879423328965, + "grad_norm": 0.23331953585147858, + "learning_rate": 0.0006, + "loss": 3.621837615966797, + "step": 3732 + }, + { + "epoch": 51.8527741371778, + "grad_norm": 0.25569960474967957, + "learning_rate": 0.0006, + "loss": 3.602004051208496, + "step": 3733 + }, + { + "epoch": 51.86675404106597, + "grad_norm": 0.230540469288826, + "learning_rate": 0.0006, + "loss": 3.5829110145568848, + "step": 3734 + }, + { + "epoch": 51.88073394495413, + "grad_norm": 0.20307230949401855, + "learning_rate": 0.0006, + "loss": 3.5572190284729004, + "step": 3735 + }, + { + "epoch": 51.89471384884229, + "grad_norm": 0.20902153849601746, + "learning_rate": 0.0006, + "loss": 3.5939853191375732, + "step": 3736 + }, + { + "epoch": 51.90869375273045, + "grad_norm": 0.20433510839939117, + "learning_rate": 0.0006, + "loss": 3.6104702949523926, + "step": 3737 + }, + { + "epoch": 51.92267365661861, + "grad_norm": 0.2285638302564621, + "learning_rate": 0.0006, + "loss": 3.5588834285736084, + "step": 3738 + }, + { + "epoch": 51.93665356050677, + "grad_norm": 0.2388262301683426, + "learning_rate": 0.0006, + "loss": 3.6203103065490723, + "step": 3739 + }, + { + "epoch": 51.95063346439493, + "grad_norm": 0.22572419047355652, + "learning_rate": 0.0006, + "loss": 3.6191892623901367, + "step": 3740 + }, + { + "epoch": 51.964613368283096, + "grad_norm": 0.21060727536678314, + "learning_rate": 0.0006, + "loss": 3.620879650115967, + "step": 3741 + }, + { + "epoch": 51.97859327217125, + "grad_norm": 0.2045326828956604, + "learning_rate": 0.0006, + "loss": 3.5959091186523438, + "step": 3742 + }, + { + "epoch": 51.992573176059416, + "grad_norm": 0.21882471442222595, + "learning_rate": 0.0006, + "loss": 3.6504573822021484, + "step": 3743 + }, + { + "epoch": 52.0, + "grad_norm": 0.24379056692123413, + "learning_rate": 0.0006, + "loss": 3.6293625831604004, + "step": 3744 + }, + { + "epoch": 52.0, + "eval_loss": 3.9772427082061768, + "eval_runtime": 44.248, + "eval_samples_per_second": 55.189, + "eval_steps_per_second": 3.458, + "step": 3744 + }, + { + "epoch": 52.01397990388816, + "grad_norm": 0.19682207703590393, + "learning_rate": 0.0006, + "loss": 3.604281425476074, + "step": 3745 + }, + { + "epoch": 52.02795980777632, + "grad_norm": 0.23003028333187103, + "learning_rate": 0.0006, + "loss": 3.588266372680664, + "step": 3746 + }, + { + "epoch": 52.04193971166448, + "grad_norm": 0.2458166778087616, + "learning_rate": 0.0006, + "loss": 3.59077787399292, + "step": 3747 + }, + { + "epoch": 52.05591961555265, + "grad_norm": 0.23873521387577057, + "learning_rate": 0.0006, + "loss": 3.556537628173828, + "step": 3748 + }, + { + "epoch": 52.0698995194408, + "grad_norm": 0.21737053990364075, + "learning_rate": 0.0006, + "loss": 3.5758891105651855, + "step": 3749 + }, + { + "epoch": 52.083879423328966, + "grad_norm": 0.22239601612091064, + "learning_rate": 0.0006, + "loss": 3.552678346633911, + "step": 3750 + }, + { + "epoch": 52.09785932721712, + "grad_norm": 0.21818044781684875, + "learning_rate": 0.0006, + "loss": 3.577249526977539, + "step": 3751 + }, + { + "epoch": 52.111839231105286, + "grad_norm": 0.24513746798038483, + "learning_rate": 0.0006, + "loss": 3.569178581237793, + "step": 3752 + }, + { + "epoch": 52.12581913499345, + "grad_norm": 0.2801238000392914, + "learning_rate": 0.0006, + "loss": 3.556199073791504, + "step": 3753 + }, + { + "epoch": 52.139799038881605, + "grad_norm": 0.2722291648387909, + "learning_rate": 0.0006, + "loss": 3.5571072101593018, + "step": 3754 + }, + { + "epoch": 52.15377894276977, + "grad_norm": 0.2146541327238083, + "learning_rate": 0.0006, + "loss": 3.5831902027130127, + "step": 3755 + }, + { + "epoch": 52.16775884665793, + "grad_norm": 0.21040776371955872, + "learning_rate": 0.0006, + "loss": 3.6021504402160645, + "step": 3756 + }, + { + "epoch": 52.18173875054609, + "grad_norm": 0.24059702455997467, + "learning_rate": 0.0006, + "loss": 3.57401704788208, + "step": 3757 + }, + { + "epoch": 52.19571865443425, + "grad_norm": 0.25043657422065735, + "learning_rate": 0.0006, + "loss": 3.5776405334472656, + "step": 3758 + }, + { + "epoch": 52.20969855832241, + "grad_norm": 0.24292849004268646, + "learning_rate": 0.0006, + "loss": 3.5602574348449707, + "step": 3759 + }, + { + "epoch": 52.22367846221057, + "grad_norm": 0.2159980833530426, + "learning_rate": 0.0006, + "loss": 3.552079200744629, + "step": 3760 + }, + { + "epoch": 52.237658366098735, + "grad_norm": 0.19305892288684845, + "learning_rate": 0.0006, + "loss": 3.581195831298828, + "step": 3761 + }, + { + "epoch": 52.25163826998689, + "grad_norm": 0.2115706503391266, + "learning_rate": 0.0006, + "loss": 3.5689306259155273, + "step": 3762 + }, + { + "epoch": 52.265618173875055, + "grad_norm": 0.21885409951210022, + "learning_rate": 0.0006, + "loss": 3.5549206733703613, + "step": 3763 + }, + { + "epoch": 52.27959807776322, + "grad_norm": 0.2069413661956787, + "learning_rate": 0.0006, + "loss": 3.5743770599365234, + "step": 3764 + }, + { + "epoch": 52.293577981651374, + "grad_norm": 0.21922551095485687, + "learning_rate": 0.0006, + "loss": 3.5780110359191895, + "step": 3765 + }, + { + "epoch": 52.30755788553954, + "grad_norm": 0.21675541996955872, + "learning_rate": 0.0006, + "loss": 3.575730800628662, + "step": 3766 + }, + { + "epoch": 52.3215377894277, + "grad_norm": 0.21250510215759277, + "learning_rate": 0.0006, + "loss": 3.546060085296631, + "step": 3767 + }, + { + "epoch": 52.33551769331586, + "grad_norm": 0.23665618896484375, + "learning_rate": 0.0006, + "loss": 3.5887606143951416, + "step": 3768 + }, + { + "epoch": 52.34949759720402, + "grad_norm": 0.2525961399078369, + "learning_rate": 0.0006, + "loss": 3.5885281562805176, + "step": 3769 + }, + { + "epoch": 52.36347750109218, + "grad_norm": 0.26285895705223083, + "learning_rate": 0.0006, + "loss": 3.5880684852600098, + "step": 3770 + }, + { + "epoch": 52.37745740498034, + "grad_norm": 0.24714398384094238, + "learning_rate": 0.0006, + "loss": 3.548165798187256, + "step": 3771 + }, + { + "epoch": 52.391437308868504, + "grad_norm": 0.2234657257795334, + "learning_rate": 0.0006, + "loss": 3.56547212600708, + "step": 3772 + }, + { + "epoch": 52.40541721275666, + "grad_norm": 0.20636901259422302, + "learning_rate": 0.0006, + "loss": 3.5702133178710938, + "step": 3773 + }, + { + "epoch": 52.419397116644824, + "grad_norm": 0.20656965672969818, + "learning_rate": 0.0006, + "loss": 3.614602565765381, + "step": 3774 + }, + { + "epoch": 52.43337702053299, + "grad_norm": 0.20018167793750763, + "learning_rate": 0.0006, + "loss": 3.6063036918640137, + "step": 3775 + }, + { + "epoch": 52.44735692442114, + "grad_norm": 0.21859782934188843, + "learning_rate": 0.0006, + "loss": 3.5728869438171387, + "step": 3776 + }, + { + "epoch": 52.46133682830931, + "grad_norm": 0.21622174978256226, + "learning_rate": 0.0006, + "loss": 3.5657505989074707, + "step": 3777 + }, + { + "epoch": 52.47531673219746, + "grad_norm": 0.19779632985591888, + "learning_rate": 0.0006, + "loss": 3.5841145515441895, + "step": 3778 + }, + { + "epoch": 52.489296636085626, + "grad_norm": 0.21635952591896057, + "learning_rate": 0.0006, + "loss": 3.582096576690674, + "step": 3779 + }, + { + "epoch": 52.50327653997379, + "grad_norm": 0.21348397433757782, + "learning_rate": 0.0006, + "loss": 3.5654468536376953, + "step": 3780 + }, + { + "epoch": 52.517256443861946, + "grad_norm": 0.19572246074676514, + "learning_rate": 0.0006, + "loss": 3.5806241035461426, + "step": 3781 + }, + { + "epoch": 52.53123634775011, + "grad_norm": 0.1887553185224533, + "learning_rate": 0.0006, + "loss": 3.5752944946289062, + "step": 3782 + }, + { + "epoch": 52.54521625163827, + "grad_norm": 0.2192932814359665, + "learning_rate": 0.0006, + "loss": 3.5846266746520996, + "step": 3783 + }, + { + "epoch": 52.55919615552643, + "grad_norm": 0.23833444714546204, + "learning_rate": 0.0006, + "loss": 3.563093900680542, + "step": 3784 + }, + { + "epoch": 52.57317605941459, + "grad_norm": 0.26471760869026184, + "learning_rate": 0.0006, + "loss": 3.5582051277160645, + "step": 3785 + }, + { + "epoch": 52.58715596330275, + "grad_norm": 0.2767478823661804, + "learning_rate": 0.0006, + "loss": 3.5650997161865234, + "step": 3786 + }, + { + "epoch": 52.60113586719091, + "grad_norm": 0.26556241512298584, + "learning_rate": 0.0006, + "loss": 3.5944058895111084, + "step": 3787 + }, + { + "epoch": 52.615115771079076, + "grad_norm": 0.2733243405818939, + "learning_rate": 0.0006, + "loss": 3.5781195163726807, + "step": 3788 + }, + { + "epoch": 52.62909567496723, + "grad_norm": 0.24836041033267975, + "learning_rate": 0.0006, + "loss": 3.582634687423706, + "step": 3789 + }, + { + "epoch": 52.643075578855395, + "grad_norm": 0.2119593471288681, + "learning_rate": 0.0006, + "loss": 3.5851502418518066, + "step": 3790 + }, + { + "epoch": 52.65705548274356, + "grad_norm": 0.23237599432468414, + "learning_rate": 0.0006, + "loss": 3.5877747535705566, + "step": 3791 + }, + { + "epoch": 52.671035386631715, + "grad_norm": 0.21037372946739197, + "learning_rate": 0.0006, + "loss": 3.579045295715332, + "step": 3792 + }, + { + "epoch": 52.68501529051988, + "grad_norm": 0.19258099794387817, + "learning_rate": 0.0006, + "loss": 3.599151611328125, + "step": 3793 + }, + { + "epoch": 52.69899519440804, + "grad_norm": 0.18808242678642273, + "learning_rate": 0.0006, + "loss": 3.580679416656494, + "step": 3794 + }, + { + "epoch": 52.7129750982962, + "grad_norm": 0.18208397924900055, + "learning_rate": 0.0006, + "loss": 3.5940206050872803, + "step": 3795 + }, + { + "epoch": 52.72695500218436, + "grad_norm": 0.18173424899578094, + "learning_rate": 0.0006, + "loss": 3.5997331142425537, + "step": 3796 + }, + { + "epoch": 52.74093490607252, + "grad_norm": 0.1868390142917633, + "learning_rate": 0.0006, + "loss": 3.60007905960083, + "step": 3797 + }, + { + "epoch": 52.75491480996068, + "grad_norm": 0.1859273761510849, + "learning_rate": 0.0006, + "loss": 3.602668285369873, + "step": 3798 + }, + { + "epoch": 52.768894713848844, + "grad_norm": 0.18063156306743622, + "learning_rate": 0.0006, + "loss": 3.579869270324707, + "step": 3799 + }, + { + "epoch": 52.782874617737, + "grad_norm": 0.18920548260211945, + "learning_rate": 0.0006, + "loss": 3.6056337356567383, + "step": 3800 + }, + { + "epoch": 52.796854521625164, + "grad_norm": 0.20110033452510834, + "learning_rate": 0.0006, + "loss": 3.5694475173950195, + "step": 3801 + }, + { + "epoch": 52.81083442551333, + "grad_norm": 0.20331093668937683, + "learning_rate": 0.0006, + "loss": 3.5940358638763428, + "step": 3802 + }, + { + "epoch": 52.824814329401484, + "grad_norm": 0.2035607248544693, + "learning_rate": 0.0006, + "loss": 3.621305465698242, + "step": 3803 + }, + { + "epoch": 52.83879423328965, + "grad_norm": 0.1974431872367859, + "learning_rate": 0.0006, + "loss": 3.5959153175354004, + "step": 3804 + }, + { + "epoch": 52.8527741371778, + "grad_norm": 0.1832808405160904, + "learning_rate": 0.0006, + "loss": 3.582113265991211, + "step": 3805 + }, + { + "epoch": 52.86675404106597, + "grad_norm": 0.20269927382469177, + "learning_rate": 0.0006, + "loss": 3.5923209190368652, + "step": 3806 + }, + { + "epoch": 52.88073394495413, + "grad_norm": 0.20628313720226288, + "learning_rate": 0.0006, + "loss": 3.599729537963867, + "step": 3807 + }, + { + "epoch": 52.89471384884229, + "grad_norm": 0.2144002914428711, + "learning_rate": 0.0006, + "loss": 3.601041793823242, + "step": 3808 + }, + { + "epoch": 52.90869375273045, + "grad_norm": 0.215015709400177, + "learning_rate": 0.0006, + "loss": 3.5873360633850098, + "step": 3809 + }, + { + "epoch": 52.92267365661861, + "grad_norm": 0.23122714459896088, + "learning_rate": 0.0006, + "loss": 3.5839362144470215, + "step": 3810 + }, + { + "epoch": 52.93665356050677, + "grad_norm": 0.2381119281053543, + "learning_rate": 0.0006, + "loss": 3.564755439758301, + "step": 3811 + }, + { + "epoch": 52.95063346439493, + "grad_norm": 0.22975024580955505, + "learning_rate": 0.0006, + "loss": 3.594020128250122, + "step": 3812 + }, + { + "epoch": 52.964613368283096, + "grad_norm": 0.2419184148311615, + "learning_rate": 0.0006, + "loss": 3.5917205810546875, + "step": 3813 + }, + { + "epoch": 52.97859327217125, + "grad_norm": 0.21143122017383575, + "learning_rate": 0.0006, + "loss": 3.626842975616455, + "step": 3814 + }, + { + "epoch": 52.992573176059416, + "grad_norm": 0.195548415184021, + "learning_rate": 0.0006, + "loss": 3.5798377990722656, + "step": 3815 + }, + { + "epoch": 53.0, + "grad_norm": 0.22441816329956055, + "learning_rate": 0.0006, + "loss": 3.5652856826782227, + "step": 3816 + }, + { + "epoch": 53.0, + "eval_loss": 3.9635632038116455, + "eval_runtime": 44.772, + "eval_samples_per_second": 54.543, + "eval_steps_per_second": 3.417, + "step": 3816 + }, + { + "epoch": 53.01397990388816, + "grad_norm": 0.2547561228275299, + "learning_rate": 0.0006, + "loss": 3.562561511993408, + "step": 3817 + }, + { + "epoch": 53.02795980777632, + "grad_norm": 0.36890196800231934, + "learning_rate": 0.0006, + "loss": 3.534581184387207, + "step": 3818 + }, + { + "epoch": 53.04193971166448, + "grad_norm": 0.42631810903549194, + "learning_rate": 0.0006, + "loss": 3.5438239574432373, + "step": 3819 + }, + { + "epoch": 53.05591961555265, + "grad_norm": 0.29458126425743103, + "learning_rate": 0.0006, + "loss": 3.5594735145568848, + "step": 3820 + }, + { + "epoch": 53.0698995194408, + "grad_norm": 0.24320989847183228, + "learning_rate": 0.0006, + "loss": 3.5715155601501465, + "step": 3821 + }, + { + "epoch": 53.083879423328966, + "grad_norm": 0.3012531101703644, + "learning_rate": 0.0006, + "loss": 3.5324978828430176, + "step": 3822 + }, + { + "epoch": 53.09785932721712, + "grad_norm": 0.2789555788040161, + "learning_rate": 0.0006, + "loss": 3.5848183631896973, + "step": 3823 + }, + { + "epoch": 53.111839231105286, + "grad_norm": 0.2488897293806076, + "learning_rate": 0.0006, + "loss": 3.5853679180145264, + "step": 3824 + }, + { + "epoch": 53.12581913499345, + "grad_norm": 0.3016898036003113, + "learning_rate": 0.0006, + "loss": 3.585637092590332, + "step": 3825 + }, + { + "epoch": 53.139799038881605, + "grad_norm": 0.30293571949005127, + "learning_rate": 0.0006, + "loss": 3.5745015144348145, + "step": 3826 + }, + { + "epoch": 53.15377894276977, + "grad_norm": 0.24611566960811615, + "learning_rate": 0.0006, + "loss": 3.5761728286743164, + "step": 3827 + }, + { + "epoch": 53.16775884665793, + "grad_norm": 0.23852500319480896, + "learning_rate": 0.0006, + "loss": 3.59317946434021, + "step": 3828 + }, + { + "epoch": 53.18173875054609, + "grad_norm": 0.27882838249206543, + "learning_rate": 0.0006, + "loss": 3.589779853820801, + "step": 3829 + }, + { + "epoch": 53.19571865443425, + "grad_norm": 0.3252250552177429, + "learning_rate": 0.0006, + "loss": 3.564526081085205, + "step": 3830 + }, + { + "epoch": 53.20969855832241, + "grad_norm": 0.29635530710220337, + "learning_rate": 0.0006, + "loss": 3.5309946537017822, + "step": 3831 + }, + { + "epoch": 53.22367846221057, + "grad_norm": 0.25211700797080994, + "learning_rate": 0.0006, + "loss": 3.5795631408691406, + "step": 3832 + }, + { + "epoch": 53.237658366098735, + "grad_norm": 0.20772705972194672, + "learning_rate": 0.0006, + "loss": 3.5649163722991943, + "step": 3833 + }, + { + "epoch": 53.25163826998689, + "grad_norm": 0.2460525780916214, + "learning_rate": 0.0006, + "loss": 3.5484111309051514, + "step": 3834 + }, + { + "epoch": 53.265618173875055, + "grad_norm": 0.24652884900569916, + "learning_rate": 0.0006, + "loss": 3.5631136894226074, + "step": 3835 + }, + { + "epoch": 53.27959807776322, + "grad_norm": 0.23740890622138977, + "learning_rate": 0.0006, + "loss": 3.6234607696533203, + "step": 3836 + }, + { + "epoch": 53.293577981651374, + "grad_norm": 0.2463800311088562, + "learning_rate": 0.0006, + "loss": 3.5578083992004395, + "step": 3837 + }, + { + "epoch": 53.30755788553954, + "grad_norm": 0.23402568697929382, + "learning_rate": 0.0006, + "loss": 3.559845209121704, + "step": 3838 + }, + { + "epoch": 53.3215377894277, + "grad_norm": 0.2539580762386322, + "learning_rate": 0.0006, + "loss": 3.5863685607910156, + "step": 3839 + }, + { + "epoch": 53.33551769331586, + "grad_norm": 0.24994857609272003, + "learning_rate": 0.0006, + "loss": 3.5758700370788574, + "step": 3840 + }, + { + "epoch": 53.34949759720402, + "grad_norm": 0.21340647339820862, + "learning_rate": 0.0006, + "loss": 3.588602066040039, + "step": 3841 + }, + { + "epoch": 53.36347750109218, + "grad_norm": 0.2029065042734146, + "learning_rate": 0.0006, + "loss": 3.58594012260437, + "step": 3842 + }, + { + "epoch": 53.37745740498034, + "grad_norm": 0.20266403257846832, + "learning_rate": 0.0006, + "loss": 3.5906057357788086, + "step": 3843 + }, + { + "epoch": 53.391437308868504, + "grad_norm": 0.19940714538097382, + "learning_rate": 0.0006, + "loss": 3.5458335876464844, + "step": 3844 + }, + { + "epoch": 53.40541721275666, + "grad_norm": 0.21295064687728882, + "learning_rate": 0.0006, + "loss": 3.5589025020599365, + "step": 3845 + }, + { + "epoch": 53.419397116644824, + "grad_norm": 0.2150672823190689, + "learning_rate": 0.0006, + "loss": 3.5907669067382812, + "step": 3846 + }, + { + "epoch": 53.43337702053299, + "grad_norm": 0.21469077467918396, + "learning_rate": 0.0006, + "loss": 3.5403499603271484, + "step": 3847 + }, + { + "epoch": 53.44735692442114, + "grad_norm": 0.20485323667526245, + "learning_rate": 0.0006, + "loss": 3.5634326934814453, + "step": 3848 + }, + { + "epoch": 53.46133682830931, + "grad_norm": 0.1981327086687088, + "learning_rate": 0.0006, + "loss": 3.579385280609131, + "step": 3849 + }, + { + "epoch": 53.47531673219746, + "grad_norm": 0.1898331642150879, + "learning_rate": 0.0006, + "loss": 3.5824122428894043, + "step": 3850 + }, + { + "epoch": 53.489296636085626, + "grad_norm": 0.18228355050086975, + "learning_rate": 0.0006, + "loss": 3.533255100250244, + "step": 3851 + }, + { + "epoch": 53.50327653997379, + "grad_norm": 0.1803922951221466, + "learning_rate": 0.0006, + "loss": 3.589881420135498, + "step": 3852 + }, + { + "epoch": 53.517256443861946, + "grad_norm": 0.19590361416339874, + "learning_rate": 0.0006, + "loss": 3.599487066268921, + "step": 3853 + }, + { + "epoch": 53.53123634775011, + "grad_norm": 0.1935775727033615, + "learning_rate": 0.0006, + "loss": 3.5769765377044678, + "step": 3854 + }, + { + "epoch": 53.54521625163827, + "grad_norm": 0.1790810525417328, + "learning_rate": 0.0006, + "loss": 3.594104290008545, + "step": 3855 + }, + { + "epoch": 53.55919615552643, + "grad_norm": 0.17993320524692535, + "learning_rate": 0.0006, + "loss": 3.555650234222412, + "step": 3856 + }, + { + "epoch": 53.57317605941459, + "grad_norm": 0.19114883244037628, + "learning_rate": 0.0006, + "loss": 3.599574089050293, + "step": 3857 + }, + { + "epoch": 53.58715596330275, + "grad_norm": 0.18493886291980743, + "learning_rate": 0.0006, + "loss": 3.555177927017212, + "step": 3858 + }, + { + "epoch": 53.60113586719091, + "grad_norm": 0.19346027076244354, + "learning_rate": 0.0006, + "loss": 3.601219654083252, + "step": 3859 + }, + { + "epoch": 53.615115771079076, + "grad_norm": 0.2002234011888504, + "learning_rate": 0.0006, + "loss": 3.5614418983459473, + "step": 3860 + }, + { + "epoch": 53.62909567496723, + "grad_norm": 0.17705366015434265, + "learning_rate": 0.0006, + "loss": 3.587432384490967, + "step": 3861 + }, + { + "epoch": 53.643075578855395, + "grad_norm": 0.19825726747512817, + "learning_rate": 0.0006, + "loss": 3.570539951324463, + "step": 3862 + }, + { + "epoch": 53.65705548274356, + "grad_norm": 0.2038952112197876, + "learning_rate": 0.0006, + "loss": 3.575758934020996, + "step": 3863 + }, + { + "epoch": 53.671035386631715, + "grad_norm": 0.21109119057655334, + "learning_rate": 0.0006, + "loss": 3.6013951301574707, + "step": 3864 + }, + { + "epoch": 53.68501529051988, + "grad_norm": 0.21738514304161072, + "learning_rate": 0.0006, + "loss": 3.567424774169922, + "step": 3865 + }, + { + "epoch": 53.69899519440804, + "grad_norm": 0.214813694357872, + "learning_rate": 0.0006, + "loss": 3.599733352661133, + "step": 3866 + }, + { + "epoch": 53.7129750982962, + "grad_norm": 0.20838409662246704, + "learning_rate": 0.0006, + "loss": 3.595839738845825, + "step": 3867 + }, + { + "epoch": 53.72695500218436, + "grad_norm": 0.2088911384344101, + "learning_rate": 0.0006, + "loss": 3.6030569076538086, + "step": 3868 + }, + { + "epoch": 53.74093490607252, + "grad_norm": 0.22705569863319397, + "learning_rate": 0.0006, + "loss": 3.5876665115356445, + "step": 3869 + }, + { + "epoch": 53.75491480996068, + "grad_norm": 0.22327932715415955, + "learning_rate": 0.0006, + "loss": 3.5555529594421387, + "step": 3870 + }, + { + "epoch": 53.768894713848844, + "grad_norm": 0.2092375010251999, + "learning_rate": 0.0006, + "loss": 3.599871873855591, + "step": 3871 + }, + { + "epoch": 53.782874617737, + "grad_norm": 0.20672307908535004, + "learning_rate": 0.0006, + "loss": 3.598846435546875, + "step": 3872 + }, + { + "epoch": 53.796854521625164, + "grad_norm": 0.2090507596731186, + "learning_rate": 0.0006, + "loss": 3.564012050628662, + "step": 3873 + }, + { + "epoch": 53.81083442551333, + "grad_norm": 0.2044386863708496, + "learning_rate": 0.0006, + "loss": 3.585221529006958, + "step": 3874 + }, + { + "epoch": 53.824814329401484, + "grad_norm": 0.2065548598766327, + "learning_rate": 0.0006, + "loss": 3.595351457595825, + "step": 3875 + }, + { + "epoch": 53.83879423328965, + "grad_norm": 0.22895927727222443, + "learning_rate": 0.0006, + "loss": 3.5720505714416504, + "step": 3876 + }, + { + "epoch": 53.8527741371778, + "grad_norm": 0.22099260985851288, + "learning_rate": 0.0006, + "loss": 3.572587251663208, + "step": 3877 + }, + { + "epoch": 53.86675404106597, + "grad_norm": 0.19928759336471558, + "learning_rate": 0.0006, + "loss": 3.5641839504241943, + "step": 3878 + }, + { + "epoch": 53.88073394495413, + "grad_norm": 0.2735077440738678, + "learning_rate": 0.0006, + "loss": 3.575535774230957, + "step": 3879 + }, + { + "epoch": 53.89471384884229, + "grad_norm": 0.2642554044723511, + "learning_rate": 0.0006, + "loss": 3.5993123054504395, + "step": 3880 + }, + { + "epoch": 53.90869375273045, + "grad_norm": 0.22406205534934998, + "learning_rate": 0.0006, + "loss": 3.5968177318573, + "step": 3881 + }, + { + "epoch": 53.92267365661861, + "grad_norm": 0.22148431837558746, + "learning_rate": 0.0006, + "loss": 3.5668797492980957, + "step": 3882 + }, + { + "epoch": 53.93665356050677, + "grad_norm": 0.20805056393146515, + "learning_rate": 0.0006, + "loss": 3.60849666595459, + "step": 3883 + }, + { + "epoch": 53.95063346439493, + "grad_norm": 0.18656247854232788, + "learning_rate": 0.0006, + "loss": 3.5883405208587646, + "step": 3884 + }, + { + "epoch": 53.964613368283096, + "grad_norm": 0.19937767088413239, + "learning_rate": 0.0006, + "loss": 3.5897698402404785, + "step": 3885 + }, + { + "epoch": 53.97859327217125, + "grad_norm": 0.19680732488632202, + "learning_rate": 0.0006, + "loss": 3.568530559539795, + "step": 3886 + }, + { + "epoch": 53.992573176059416, + "grad_norm": 0.218981072306633, + "learning_rate": 0.0006, + "loss": 3.6194474697113037, + "step": 3887 + }, + { + "epoch": 54.0, + "grad_norm": 0.26408281922340393, + "learning_rate": 0.0006, + "loss": 3.5224976539611816, + "step": 3888 + }, + { + "epoch": 54.0, + "eval_loss": 3.983997106552124, + "eval_runtime": 44.9507, + "eval_samples_per_second": 54.326, + "eval_steps_per_second": 3.404, + "step": 3888 + }, + { + "epoch": 54.01397990388816, + "grad_norm": 0.2230917066335678, + "learning_rate": 0.0006, + "loss": 3.578058958053589, + "step": 3889 + }, + { + "epoch": 54.02795980777632, + "grad_norm": 0.23055201768875122, + "learning_rate": 0.0006, + "loss": 3.549612283706665, + "step": 3890 + }, + { + "epoch": 54.04193971166448, + "grad_norm": 0.23317518830299377, + "learning_rate": 0.0006, + "loss": 3.5662591457366943, + "step": 3891 + }, + { + "epoch": 54.05591961555265, + "grad_norm": 0.27022141218185425, + "learning_rate": 0.0006, + "loss": 3.547062873840332, + "step": 3892 + }, + { + "epoch": 54.0698995194408, + "grad_norm": 0.2665329873561859, + "learning_rate": 0.0006, + "loss": 3.540881633758545, + "step": 3893 + }, + { + "epoch": 54.083879423328966, + "grad_norm": 0.23968365788459778, + "learning_rate": 0.0006, + "loss": 3.574781894683838, + "step": 3894 + }, + { + "epoch": 54.09785932721712, + "grad_norm": 0.22174887359142303, + "learning_rate": 0.0006, + "loss": 3.514077663421631, + "step": 3895 + }, + { + "epoch": 54.111839231105286, + "grad_norm": 0.24605485796928406, + "learning_rate": 0.0006, + "loss": 3.534174919128418, + "step": 3896 + }, + { + "epoch": 54.12581913499345, + "grad_norm": 0.22874566912651062, + "learning_rate": 0.0006, + "loss": 3.574282169342041, + "step": 3897 + }, + { + "epoch": 54.139799038881605, + "grad_norm": 0.2113833874464035, + "learning_rate": 0.0006, + "loss": 3.548687696456909, + "step": 3898 + }, + { + "epoch": 54.15377894276977, + "grad_norm": 0.20756855607032776, + "learning_rate": 0.0006, + "loss": 3.556060791015625, + "step": 3899 + }, + { + "epoch": 54.16775884665793, + "grad_norm": 0.2070261538028717, + "learning_rate": 0.0006, + "loss": 3.5585689544677734, + "step": 3900 + }, + { + "epoch": 54.18173875054609, + "grad_norm": 0.20014794170856476, + "learning_rate": 0.0006, + "loss": 3.5898427963256836, + "step": 3901 + }, + { + "epoch": 54.19571865443425, + "grad_norm": 0.19851888716220856, + "learning_rate": 0.0006, + "loss": 3.564826011657715, + "step": 3902 + }, + { + "epoch": 54.20969855832241, + "grad_norm": 0.20333127677440643, + "learning_rate": 0.0006, + "loss": 3.540660858154297, + "step": 3903 + }, + { + "epoch": 54.22367846221057, + "grad_norm": 0.20291075110435486, + "learning_rate": 0.0006, + "loss": 3.544628143310547, + "step": 3904 + }, + { + "epoch": 54.237658366098735, + "grad_norm": 0.2055949866771698, + "learning_rate": 0.0006, + "loss": 3.547478675842285, + "step": 3905 + }, + { + "epoch": 54.25163826998689, + "grad_norm": 0.20305688679218292, + "learning_rate": 0.0006, + "loss": 3.5793099403381348, + "step": 3906 + }, + { + "epoch": 54.265618173875055, + "grad_norm": 0.21053043007850647, + "learning_rate": 0.0006, + "loss": 3.529263973236084, + "step": 3907 + }, + { + "epoch": 54.27959807776322, + "grad_norm": 0.2461051046848297, + "learning_rate": 0.0006, + "loss": 3.598266124725342, + "step": 3908 + }, + { + "epoch": 54.293577981651374, + "grad_norm": 0.25074276328086853, + "learning_rate": 0.0006, + "loss": 3.557170867919922, + "step": 3909 + }, + { + "epoch": 54.30755788553954, + "grad_norm": 0.23321498930454254, + "learning_rate": 0.0006, + "loss": 3.5532279014587402, + "step": 3910 + }, + { + "epoch": 54.3215377894277, + "grad_norm": 0.19062374532222748, + "learning_rate": 0.0006, + "loss": 3.5718722343444824, + "step": 3911 + }, + { + "epoch": 54.33551769331586, + "grad_norm": 0.22571852803230286, + "learning_rate": 0.0006, + "loss": 3.539036750793457, + "step": 3912 + }, + { + "epoch": 54.34949759720402, + "grad_norm": 0.23314784467220306, + "learning_rate": 0.0006, + "loss": 3.5444631576538086, + "step": 3913 + }, + { + "epoch": 54.36347750109218, + "grad_norm": 0.22334037721157074, + "learning_rate": 0.0006, + "loss": 3.5567970275878906, + "step": 3914 + }, + { + "epoch": 54.37745740498034, + "grad_norm": 0.21900276839733124, + "learning_rate": 0.0006, + "loss": 3.600113868713379, + "step": 3915 + }, + { + "epoch": 54.391437308868504, + "grad_norm": 0.20166733860969543, + "learning_rate": 0.0006, + "loss": 3.54038667678833, + "step": 3916 + }, + { + "epoch": 54.40541721275666, + "grad_norm": 0.21886761486530304, + "learning_rate": 0.0006, + "loss": 3.5708651542663574, + "step": 3917 + }, + { + "epoch": 54.419397116644824, + "grad_norm": 0.26383060216903687, + "learning_rate": 0.0006, + "loss": 3.5572509765625, + "step": 3918 + }, + { + "epoch": 54.43337702053299, + "grad_norm": 0.26116663217544556, + "learning_rate": 0.0006, + "loss": 3.528968334197998, + "step": 3919 + }, + { + "epoch": 54.44735692442114, + "grad_norm": 0.20640771090984344, + "learning_rate": 0.0006, + "loss": 3.587789535522461, + "step": 3920 + }, + { + "epoch": 54.46133682830931, + "grad_norm": 0.23454350233078003, + "learning_rate": 0.0006, + "loss": 3.586834192276001, + "step": 3921 + }, + { + "epoch": 54.47531673219746, + "grad_norm": 0.24828442931175232, + "learning_rate": 0.0006, + "loss": 3.5884881019592285, + "step": 3922 + }, + { + "epoch": 54.489296636085626, + "grad_norm": 0.23654282093048096, + "learning_rate": 0.0006, + "loss": 3.5754570960998535, + "step": 3923 + }, + { + "epoch": 54.50327653997379, + "grad_norm": 0.22721099853515625, + "learning_rate": 0.0006, + "loss": 3.5575859546661377, + "step": 3924 + }, + { + "epoch": 54.517256443861946, + "grad_norm": 0.2157498002052307, + "learning_rate": 0.0006, + "loss": 3.5929436683654785, + "step": 3925 + }, + { + "epoch": 54.53123634775011, + "grad_norm": 0.21604257822036743, + "learning_rate": 0.0006, + "loss": 3.5788726806640625, + "step": 3926 + }, + { + "epoch": 54.54521625163827, + "grad_norm": 0.22310106456279755, + "learning_rate": 0.0006, + "loss": 3.5873899459838867, + "step": 3927 + }, + { + "epoch": 54.55919615552643, + "grad_norm": 0.2121969312429428, + "learning_rate": 0.0006, + "loss": 3.575186252593994, + "step": 3928 + }, + { + "epoch": 54.57317605941459, + "grad_norm": 0.19073615968227386, + "learning_rate": 0.0006, + "loss": 3.5963356494903564, + "step": 3929 + }, + { + "epoch": 54.58715596330275, + "grad_norm": 0.18745607137680054, + "learning_rate": 0.0006, + "loss": 3.593679428100586, + "step": 3930 + }, + { + "epoch": 54.60113586719091, + "grad_norm": 0.19518259167671204, + "learning_rate": 0.0006, + "loss": 3.5730791091918945, + "step": 3931 + }, + { + "epoch": 54.615115771079076, + "grad_norm": 0.20948481559753418, + "learning_rate": 0.0006, + "loss": 3.5646820068359375, + "step": 3932 + }, + { + "epoch": 54.62909567496723, + "grad_norm": 0.1929631531238556, + "learning_rate": 0.0006, + "loss": 3.5550060272216797, + "step": 3933 + }, + { + "epoch": 54.643075578855395, + "grad_norm": 0.2104327380657196, + "learning_rate": 0.0006, + "loss": 3.5774357318878174, + "step": 3934 + }, + { + "epoch": 54.65705548274356, + "grad_norm": 0.1952148675918579, + "learning_rate": 0.0006, + "loss": 3.58856201171875, + "step": 3935 + }, + { + "epoch": 54.671035386631715, + "grad_norm": 0.17762340605258942, + "learning_rate": 0.0006, + "loss": 3.5324528217315674, + "step": 3936 + }, + { + "epoch": 54.68501529051988, + "grad_norm": 0.18349695205688477, + "learning_rate": 0.0006, + "loss": 3.5663890838623047, + "step": 3937 + }, + { + "epoch": 54.69899519440804, + "grad_norm": 0.2038232684135437, + "learning_rate": 0.0006, + "loss": 3.5811679363250732, + "step": 3938 + }, + { + "epoch": 54.7129750982962, + "grad_norm": 0.2431754469871521, + "learning_rate": 0.0006, + "loss": 3.56833553314209, + "step": 3939 + }, + { + "epoch": 54.72695500218436, + "grad_norm": 0.27498456835746765, + "learning_rate": 0.0006, + "loss": 3.5977981090545654, + "step": 3940 + }, + { + "epoch": 54.74093490607252, + "grad_norm": 0.20809921622276306, + "learning_rate": 0.0006, + "loss": 3.57193922996521, + "step": 3941 + }, + { + "epoch": 54.75491480996068, + "grad_norm": 0.18073450028896332, + "learning_rate": 0.0006, + "loss": 3.5610151290893555, + "step": 3942 + }, + { + "epoch": 54.768894713848844, + "grad_norm": 0.194604754447937, + "learning_rate": 0.0006, + "loss": 3.5716047286987305, + "step": 3943 + }, + { + "epoch": 54.782874617737, + "grad_norm": 0.20566268265247345, + "learning_rate": 0.0006, + "loss": 3.578401565551758, + "step": 3944 + }, + { + "epoch": 54.796854521625164, + "grad_norm": 0.21028153598308563, + "learning_rate": 0.0006, + "loss": 3.610511064529419, + "step": 3945 + }, + { + "epoch": 54.81083442551333, + "grad_norm": 0.21413563191890717, + "learning_rate": 0.0006, + "loss": 3.601574659347534, + "step": 3946 + }, + { + "epoch": 54.824814329401484, + "grad_norm": 0.2137378603219986, + "learning_rate": 0.0006, + "loss": 3.603997230529785, + "step": 3947 + }, + { + "epoch": 54.83879423328965, + "grad_norm": 0.2162058800458908, + "learning_rate": 0.0006, + "loss": 3.5829391479492188, + "step": 3948 + }, + { + "epoch": 54.8527741371778, + "grad_norm": 0.21700997650623322, + "learning_rate": 0.0006, + "loss": 3.595317840576172, + "step": 3949 + }, + { + "epoch": 54.86675404106597, + "grad_norm": 0.20864669978618622, + "learning_rate": 0.0006, + "loss": 3.601891040802002, + "step": 3950 + }, + { + "epoch": 54.88073394495413, + "grad_norm": 0.19780485332012177, + "learning_rate": 0.0006, + "loss": 3.567460775375366, + "step": 3951 + }, + { + "epoch": 54.89471384884229, + "grad_norm": 0.2017168402671814, + "learning_rate": 0.0006, + "loss": 3.5737192630767822, + "step": 3952 + }, + { + "epoch": 54.90869375273045, + "grad_norm": 0.22847825288772583, + "learning_rate": 0.0006, + "loss": 3.60937762260437, + "step": 3953 + }, + { + "epoch": 54.92267365661861, + "grad_norm": 0.23698270320892334, + "learning_rate": 0.0006, + "loss": 3.6013574600219727, + "step": 3954 + }, + { + "epoch": 54.93665356050677, + "grad_norm": 0.238611102104187, + "learning_rate": 0.0006, + "loss": 3.5689988136291504, + "step": 3955 + }, + { + "epoch": 54.95063346439493, + "grad_norm": 0.2680057883262634, + "learning_rate": 0.0006, + "loss": 3.5650172233581543, + "step": 3956 + }, + { + "epoch": 54.964613368283096, + "grad_norm": 0.25712481141090393, + "learning_rate": 0.0006, + "loss": 3.576777935028076, + "step": 3957 + }, + { + "epoch": 54.97859327217125, + "grad_norm": 0.2232409566640854, + "learning_rate": 0.0006, + "loss": 3.583169937133789, + "step": 3958 + }, + { + "epoch": 54.992573176059416, + "grad_norm": 0.21233153343200684, + "learning_rate": 0.0006, + "loss": 3.602219581604004, + "step": 3959 + }, + { + "epoch": 55.0, + "grad_norm": 0.24345774948596954, + "learning_rate": 0.0006, + "loss": 3.5118026733398438, + "step": 3960 + }, + { + "epoch": 55.0, + "eval_loss": 3.9819064140319824, + "eval_runtime": 44.6627, + "eval_samples_per_second": 54.677, + "eval_steps_per_second": 3.426, + "step": 3960 + }, + { + "epoch": 55.01397990388816, + "grad_norm": 0.229562908411026, + "learning_rate": 0.0006, + "loss": 3.5591073036193848, + "step": 3961 + }, + { + "epoch": 55.02795980777632, + "grad_norm": 0.21731624007225037, + "learning_rate": 0.0006, + "loss": 3.5544848442077637, + "step": 3962 + }, + { + "epoch": 55.04193971166448, + "grad_norm": 0.23528429865837097, + "learning_rate": 0.0006, + "loss": 3.5654311180114746, + "step": 3963 + }, + { + "epoch": 55.05591961555265, + "grad_norm": 0.23147839307785034, + "learning_rate": 0.0006, + "loss": 3.537006378173828, + "step": 3964 + }, + { + "epoch": 55.0698995194408, + "grad_norm": 0.22218112647533417, + "learning_rate": 0.0006, + "loss": 3.5218982696533203, + "step": 3965 + }, + { + "epoch": 55.083879423328966, + "grad_norm": 0.20697443187236786, + "learning_rate": 0.0006, + "loss": 3.5623579025268555, + "step": 3966 + }, + { + "epoch": 55.09785932721712, + "grad_norm": 0.2108476608991623, + "learning_rate": 0.0006, + "loss": 3.528214454650879, + "step": 3967 + }, + { + "epoch": 55.111839231105286, + "grad_norm": 0.21664242446422577, + "learning_rate": 0.0006, + "loss": 3.5429646968841553, + "step": 3968 + }, + { + "epoch": 55.12581913499345, + "grad_norm": 0.21359260380268097, + "learning_rate": 0.0006, + "loss": 3.5873513221740723, + "step": 3969 + }, + { + "epoch": 55.139799038881605, + "grad_norm": 0.23289452493190765, + "learning_rate": 0.0006, + "loss": 3.5551905632019043, + "step": 3970 + }, + { + "epoch": 55.15377894276977, + "grad_norm": 0.25835689902305603, + "learning_rate": 0.0006, + "loss": 3.5380427837371826, + "step": 3971 + }, + { + "epoch": 55.16775884665793, + "grad_norm": 0.25449255108833313, + "learning_rate": 0.0006, + "loss": 3.5276808738708496, + "step": 3972 + }, + { + "epoch": 55.18173875054609, + "grad_norm": 0.2472638338804245, + "learning_rate": 0.0006, + "loss": 3.539194107055664, + "step": 3973 + }, + { + "epoch": 55.19571865443425, + "grad_norm": 0.21743768453598022, + "learning_rate": 0.0006, + "loss": 3.557185173034668, + "step": 3974 + }, + { + "epoch": 55.20969855832241, + "grad_norm": 0.22787386178970337, + "learning_rate": 0.0006, + "loss": 3.581993579864502, + "step": 3975 + }, + { + "epoch": 55.22367846221057, + "grad_norm": 0.2332824170589447, + "learning_rate": 0.0006, + "loss": 3.5439846515655518, + "step": 3976 + }, + { + "epoch": 55.237658366098735, + "grad_norm": 0.2054908573627472, + "learning_rate": 0.0006, + "loss": 3.5528793334960938, + "step": 3977 + }, + { + "epoch": 55.25163826998689, + "grad_norm": 0.2087554633617401, + "learning_rate": 0.0006, + "loss": 3.536464214324951, + "step": 3978 + }, + { + "epoch": 55.265618173875055, + "grad_norm": 0.22214409708976746, + "learning_rate": 0.0006, + "loss": 3.56184458732605, + "step": 3979 + }, + { + "epoch": 55.27959807776322, + "grad_norm": 0.23214097321033478, + "learning_rate": 0.0006, + "loss": 3.5560522079467773, + "step": 3980 + }, + { + "epoch": 55.293577981651374, + "grad_norm": 0.23317331075668335, + "learning_rate": 0.0006, + "loss": 3.5433850288391113, + "step": 3981 + }, + { + "epoch": 55.30755788553954, + "grad_norm": 0.2303774058818817, + "learning_rate": 0.0006, + "loss": 3.5505576133728027, + "step": 3982 + }, + { + "epoch": 55.3215377894277, + "grad_norm": 0.2400730401277542, + "learning_rate": 0.0006, + "loss": 3.557952404022217, + "step": 3983 + }, + { + "epoch": 55.33551769331586, + "grad_norm": 0.23933538794517517, + "learning_rate": 0.0006, + "loss": 3.536656141281128, + "step": 3984 + }, + { + "epoch": 55.34949759720402, + "grad_norm": 0.23796266317367554, + "learning_rate": 0.0006, + "loss": 3.5777554512023926, + "step": 3985 + }, + { + "epoch": 55.36347750109218, + "grad_norm": 0.26078858971595764, + "learning_rate": 0.0006, + "loss": 3.549121379852295, + "step": 3986 + }, + { + "epoch": 55.37745740498034, + "grad_norm": 0.22726459801197052, + "learning_rate": 0.0006, + "loss": 3.605684518814087, + "step": 3987 + }, + { + "epoch": 55.391437308868504, + "grad_norm": 0.19872179627418518, + "learning_rate": 0.0006, + "loss": 3.5501739978790283, + "step": 3988 + }, + { + "epoch": 55.40541721275666, + "grad_norm": 0.2027827352285385, + "learning_rate": 0.0006, + "loss": 3.625922441482544, + "step": 3989 + }, + { + "epoch": 55.419397116644824, + "grad_norm": 0.24207144975662231, + "learning_rate": 0.0006, + "loss": 3.595451831817627, + "step": 3990 + }, + { + "epoch": 55.43337702053299, + "grad_norm": 0.23449009656906128, + "learning_rate": 0.0006, + "loss": 3.577167510986328, + "step": 3991 + }, + { + "epoch": 55.44735692442114, + "grad_norm": 0.22529540956020355, + "learning_rate": 0.0006, + "loss": 3.5585317611694336, + "step": 3992 + }, + { + "epoch": 55.46133682830931, + "grad_norm": 0.2354331612586975, + "learning_rate": 0.0006, + "loss": 3.574819564819336, + "step": 3993 + }, + { + "epoch": 55.47531673219746, + "grad_norm": 0.2251061201095581, + "learning_rate": 0.0006, + "loss": 3.580498695373535, + "step": 3994 + }, + { + "epoch": 55.489296636085626, + "grad_norm": 0.22107349336147308, + "learning_rate": 0.0006, + "loss": 3.578591823577881, + "step": 3995 + }, + { + "epoch": 55.50327653997379, + "grad_norm": 0.24686408042907715, + "learning_rate": 0.0006, + "loss": 3.541625499725342, + "step": 3996 + }, + { + "epoch": 55.517256443861946, + "grad_norm": 0.23731260001659393, + "learning_rate": 0.0006, + "loss": 3.5508079528808594, + "step": 3997 + }, + { + "epoch": 55.53123634775011, + "grad_norm": 0.21246901154518127, + "learning_rate": 0.0006, + "loss": 3.569500207901001, + "step": 3998 + }, + { + "epoch": 55.54521625163827, + "grad_norm": 0.21369415521621704, + "learning_rate": 0.0006, + "loss": 3.546938896179199, + "step": 3999 + }, + { + "epoch": 55.55919615552643, + "grad_norm": 0.2102644443511963, + "learning_rate": 0.0006, + "loss": 3.5842084884643555, + "step": 4000 + }, + { + "epoch": 55.57317605941459, + "grad_norm": 0.2355998456478119, + "learning_rate": 0.0006, + "loss": 3.5493381023406982, + "step": 4001 + }, + { + "epoch": 55.58715596330275, + "grad_norm": 0.2670288681983948, + "learning_rate": 0.0006, + "loss": 3.5909032821655273, + "step": 4002 + }, + { + "epoch": 55.60113586719091, + "grad_norm": 0.2958407998085022, + "learning_rate": 0.0006, + "loss": 3.624906063079834, + "step": 4003 + }, + { + "epoch": 55.615115771079076, + "grad_norm": 0.2948441505432129, + "learning_rate": 0.0006, + "loss": 3.553528070449829, + "step": 4004 + }, + { + "epoch": 55.62909567496723, + "grad_norm": 0.24873173236846924, + "learning_rate": 0.0006, + "loss": 3.5851495265960693, + "step": 4005 + }, + { + "epoch": 55.643075578855395, + "grad_norm": 0.22191756963729858, + "learning_rate": 0.0006, + "loss": 3.556459903717041, + "step": 4006 + }, + { + "epoch": 55.65705548274356, + "grad_norm": 0.22677776217460632, + "learning_rate": 0.0006, + "loss": 3.579428195953369, + "step": 4007 + }, + { + "epoch": 55.671035386631715, + "grad_norm": 0.22263763844966888, + "learning_rate": 0.0006, + "loss": 3.5878806114196777, + "step": 4008 + }, + { + "epoch": 55.68501529051988, + "grad_norm": 0.24498602747917175, + "learning_rate": 0.0006, + "loss": 3.5989317893981934, + "step": 4009 + }, + { + "epoch": 55.69899519440804, + "grad_norm": 0.26294007897377014, + "learning_rate": 0.0006, + "loss": 3.5866756439208984, + "step": 4010 + }, + { + "epoch": 55.7129750982962, + "grad_norm": 0.22105370461940765, + "learning_rate": 0.0006, + "loss": 3.594365119934082, + "step": 4011 + }, + { + "epoch": 55.72695500218436, + "grad_norm": 0.20973286032676697, + "learning_rate": 0.0006, + "loss": 3.551156997680664, + "step": 4012 + }, + { + "epoch": 55.74093490607252, + "grad_norm": 0.2123304158449173, + "learning_rate": 0.0006, + "loss": 3.587405204772949, + "step": 4013 + }, + { + "epoch": 55.75491480996068, + "grad_norm": 0.22134795784950256, + "learning_rate": 0.0006, + "loss": 3.59114146232605, + "step": 4014 + }, + { + "epoch": 55.768894713848844, + "grad_norm": 0.20822957158088684, + "learning_rate": 0.0006, + "loss": 3.5910749435424805, + "step": 4015 + }, + { + "epoch": 55.782874617737, + "grad_norm": 0.22392229735851288, + "learning_rate": 0.0006, + "loss": 3.5800669193267822, + "step": 4016 + }, + { + "epoch": 55.796854521625164, + "grad_norm": 0.2214914709329605, + "learning_rate": 0.0006, + "loss": 3.5553741455078125, + "step": 4017 + }, + { + "epoch": 55.81083442551333, + "grad_norm": 0.1993025690317154, + "learning_rate": 0.0006, + "loss": 3.567298412322998, + "step": 4018 + }, + { + "epoch": 55.824814329401484, + "grad_norm": 0.21043774485588074, + "learning_rate": 0.0006, + "loss": 3.537358045578003, + "step": 4019 + }, + { + "epoch": 55.83879423328965, + "grad_norm": 0.18501818180084229, + "learning_rate": 0.0006, + "loss": 3.5971930027008057, + "step": 4020 + }, + { + "epoch": 55.8527741371778, + "grad_norm": 0.19626867771148682, + "learning_rate": 0.0006, + "loss": 3.563570976257324, + "step": 4021 + }, + { + "epoch": 55.86675404106597, + "grad_norm": 0.19328820705413818, + "learning_rate": 0.0006, + "loss": 3.600377082824707, + "step": 4022 + }, + { + "epoch": 55.88073394495413, + "grad_norm": 0.2013237327337265, + "learning_rate": 0.0006, + "loss": 3.5916812419891357, + "step": 4023 + }, + { + "epoch": 55.89471384884229, + "grad_norm": 0.22775673866271973, + "learning_rate": 0.0006, + "loss": 3.5572638511657715, + "step": 4024 + }, + { + "epoch": 55.90869375273045, + "grad_norm": 0.2452211230993271, + "learning_rate": 0.0006, + "loss": 3.54378080368042, + "step": 4025 + }, + { + "epoch": 55.92267365661861, + "grad_norm": 0.23337189853191376, + "learning_rate": 0.0006, + "loss": 3.5853466987609863, + "step": 4026 + }, + { + "epoch": 55.93665356050677, + "grad_norm": 0.20073719322681427, + "learning_rate": 0.0006, + "loss": 3.5793843269348145, + "step": 4027 + }, + { + "epoch": 55.95063346439493, + "grad_norm": 0.1963811218738556, + "learning_rate": 0.0006, + "loss": 3.5783073902130127, + "step": 4028 + }, + { + "epoch": 55.964613368283096, + "grad_norm": 0.19921033084392548, + "learning_rate": 0.0006, + "loss": 3.5455331802368164, + "step": 4029 + }, + { + "epoch": 55.97859327217125, + "grad_norm": 0.22151921689510345, + "learning_rate": 0.0006, + "loss": 3.551476001739502, + "step": 4030 + }, + { + "epoch": 55.992573176059416, + "grad_norm": 0.2636640965938568, + "learning_rate": 0.0006, + "loss": 3.5859174728393555, + "step": 4031 + }, + { + "epoch": 56.0, + "grad_norm": 0.282680869102478, + "learning_rate": 0.0006, + "loss": 3.5818469524383545, + "step": 4032 + }, + { + "epoch": 56.0, + "eval_loss": 3.982189178466797, + "eval_runtime": 44.2577, + "eval_samples_per_second": 55.177, + "eval_steps_per_second": 3.457, + "step": 4032 + }, + { + "epoch": 56.01397990388816, + "grad_norm": 0.23316597938537598, + "learning_rate": 0.0006, + "loss": 3.5500292778015137, + "step": 4033 + }, + { + "epoch": 56.02795980777632, + "grad_norm": 0.22836777567863464, + "learning_rate": 0.0006, + "loss": 3.5661063194274902, + "step": 4034 + }, + { + "epoch": 56.04193971166448, + "grad_norm": 0.2607800364494324, + "learning_rate": 0.0006, + "loss": 3.5496177673339844, + "step": 4035 + }, + { + "epoch": 56.05591961555265, + "grad_norm": 0.2620518207550049, + "learning_rate": 0.0006, + "loss": 3.562621831893921, + "step": 4036 + }, + { + "epoch": 56.0698995194408, + "grad_norm": 0.2344953864812851, + "learning_rate": 0.0006, + "loss": 3.5371389389038086, + "step": 4037 + }, + { + "epoch": 56.083879423328966, + "grad_norm": 0.2523435950279236, + "learning_rate": 0.0006, + "loss": 3.565216541290283, + "step": 4038 + }, + { + "epoch": 56.09785932721712, + "grad_norm": 0.26315048336982727, + "learning_rate": 0.0006, + "loss": 3.5510857105255127, + "step": 4039 + }, + { + "epoch": 56.111839231105286, + "grad_norm": 0.256817102432251, + "learning_rate": 0.0006, + "loss": 3.576132297515869, + "step": 4040 + }, + { + "epoch": 56.12581913499345, + "grad_norm": 0.25146403908729553, + "learning_rate": 0.0006, + "loss": 3.550875663757324, + "step": 4041 + }, + { + "epoch": 56.139799038881605, + "grad_norm": 0.2471698820590973, + "learning_rate": 0.0006, + "loss": 3.5574288368225098, + "step": 4042 + }, + { + "epoch": 56.15377894276977, + "grad_norm": 0.2324669510126114, + "learning_rate": 0.0006, + "loss": 3.524637222290039, + "step": 4043 + }, + { + "epoch": 56.16775884665793, + "grad_norm": 0.21824438869953156, + "learning_rate": 0.0006, + "loss": 3.563664436340332, + "step": 4044 + }, + { + "epoch": 56.18173875054609, + "grad_norm": 0.2381063550710678, + "learning_rate": 0.0006, + "loss": 3.573061943054199, + "step": 4045 + }, + { + "epoch": 56.19571865443425, + "grad_norm": 0.23728328943252563, + "learning_rate": 0.0006, + "loss": 3.5563716888427734, + "step": 4046 + }, + { + "epoch": 56.20969855832241, + "grad_norm": 0.20998933911323547, + "learning_rate": 0.0006, + "loss": 3.540152072906494, + "step": 4047 + }, + { + "epoch": 56.22367846221057, + "grad_norm": 0.2249690741300583, + "learning_rate": 0.0006, + "loss": 3.5699682235717773, + "step": 4048 + }, + { + "epoch": 56.237658366098735, + "grad_norm": 0.22615988552570343, + "learning_rate": 0.0006, + "loss": 3.5604777336120605, + "step": 4049 + }, + { + "epoch": 56.25163826998689, + "grad_norm": 0.20918409526348114, + "learning_rate": 0.0006, + "loss": 3.5612001419067383, + "step": 4050 + }, + { + "epoch": 56.265618173875055, + "grad_norm": 0.22025109827518463, + "learning_rate": 0.0006, + "loss": 3.520402193069458, + "step": 4051 + }, + { + "epoch": 56.27959807776322, + "grad_norm": 0.22722174227237701, + "learning_rate": 0.0006, + "loss": 3.52360200881958, + "step": 4052 + }, + { + "epoch": 56.293577981651374, + "grad_norm": 0.2115592360496521, + "learning_rate": 0.0006, + "loss": 3.562689781188965, + "step": 4053 + }, + { + "epoch": 56.30755788553954, + "grad_norm": 0.19253599643707275, + "learning_rate": 0.0006, + "loss": 3.545013427734375, + "step": 4054 + }, + { + "epoch": 56.3215377894277, + "grad_norm": 0.2534266710281372, + "learning_rate": 0.0006, + "loss": 3.530149459838867, + "step": 4055 + }, + { + "epoch": 56.33551769331586, + "grad_norm": 0.2871302366256714, + "learning_rate": 0.0006, + "loss": 3.5667316913604736, + "step": 4056 + }, + { + "epoch": 56.34949759720402, + "grad_norm": 0.2686561048030853, + "learning_rate": 0.0006, + "loss": 3.5341169834136963, + "step": 4057 + }, + { + "epoch": 56.36347750109218, + "grad_norm": 0.21016116440296173, + "learning_rate": 0.0006, + "loss": 3.5151243209838867, + "step": 4058 + }, + { + "epoch": 56.37745740498034, + "grad_norm": 0.20810428261756897, + "learning_rate": 0.0006, + "loss": 3.5641677379608154, + "step": 4059 + }, + { + "epoch": 56.391437308868504, + "grad_norm": 0.2732172906398773, + "learning_rate": 0.0006, + "loss": 3.546082019805908, + "step": 4060 + }, + { + "epoch": 56.40541721275666, + "grad_norm": 0.26587602496147156, + "learning_rate": 0.0006, + "loss": 3.5465946197509766, + "step": 4061 + }, + { + "epoch": 56.419397116644824, + "grad_norm": 0.20492126047611237, + "learning_rate": 0.0006, + "loss": 3.5686211585998535, + "step": 4062 + }, + { + "epoch": 56.43337702053299, + "grad_norm": 0.2147696167230606, + "learning_rate": 0.0006, + "loss": 3.5808653831481934, + "step": 4063 + }, + { + "epoch": 56.44735692442114, + "grad_norm": 0.21947690844535828, + "learning_rate": 0.0006, + "loss": 3.530872344970703, + "step": 4064 + }, + { + "epoch": 56.46133682830931, + "grad_norm": 0.21305148303508759, + "learning_rate": 0.0006, + "loss": 3.5480992794036865, + "step": 4065 + }, + { + "epoch": 56.47531673219746, + "grad_norm": 0.2066979706287384, + "learning_rate": 0.0006, + "loss": 3.5198287963867188, + "step": 4066 + }, + { + "epoch": 56.489296636085626, + "grad_norm": 0.19393840432167053, + "learning_rate": 0.0006, + "loss": 3.555344581604004, + "step": 4067 + }, + { + "epoch": 56.50327653997379, + "grad_norm": 0.19889849424362183, + "learning_rate": 0.0006, + "loss": 3.56475830078125, + "step": 4068 + }, + { + "epoch": 56.517256443861946, + "grad_norm": 0.19851456582546234, + "learning_rate": 0.0006, + "loss": 3.5790982246398926, + "step": 4069 + }, + { + "epoch": 56.53123634775011, + "grad_norm": 0.19570177793502808, + "learning_rate": 0.0006, + "loss": 3.558379888534546, + "step": 4070 + }, + { + "epoch": 56.54521625163827, + "grad_norm": 0.21364007890224457, + "learning_rate": 0.0006, + "loss": 3.586343288421631, + "step": 4071 + }, + { + "epoch": 56.55919615552643, + "grad_norm": 0.22896543145179749, + "learning_rate": 0.0006, + "loss": 3.5565874576568604, + "step": 4072 + }, + { + "epoch": 56.57317605941459, + "grad_norm": 0.21665218472480774, + "learning_rate": 0.0006, + "loss": 3.5737056732177734, + "step": 4073 + }, + { + "epoch": 56.58715596330275, + "grad_norm": 0.1964256912469864, + "learning_rate": 0.0006, + "loss": 3.555798053741455, + "step": 4074 + }, + { + "epoch": 56.60113586719091, + "grad_norm": 0.2056122124195099, + "learning_rate": 0.0006, + "loss": 3.548685073852539, + "step": 4075 + }, + { + "epoch": 56.615115771079076, + "grad_norm": 0.21677979826927185, + "learning_rate": 0.0006, + "loss": 3.569136619567871, + "step": 4076 + }, + { + "epoch": 56.62909567496723, + "grad_norm": 0.2029557228088379, + "learning_rate": 0.0006, + "loss": 3.5723280906677246, + "step": 4077 + }, + { + "epoch": 56.643075578855395, + "grad_norm": 0.22111767530441284, + "learning_rate": 0.0006, + "loss": 3.5784404277801514, + "step": 4078 + }, + { + "epoch": 56.65705548274356, + "grad_norm": 0.245675191283226, + "learning_rate": 0.0006, + "loss": 3.559330940246582, + "step": 4079 + }, + { + "epoch": 56.671035386631715, + "grad_norm": 0.19715000689029694, + "learning_rate": 0.0006, + "loss": 3.5694894790649414, + "step": 4080 + }, + { + "epoch": 56.68501529051988, + "grad_norm": 0.2112303525209427, + "learning_rate": 0.0006, + "loss": 3.5932059288024902, + "step": 4081 + }, + { + "epoch": 56.69899519440804, + "grad_norm": 0.23710735142230988, + "learning_rate": 0.0006, + "loss": 3.59895658493042, + "step": 4082 + }, + { + "epoch": 56.7129750982962, + "grad_norm": 0.2507518529891968, + "learning_rate": 0.0006, + "loss": 3.58455228805542, + "step": 4083 + }, + { + "epoch": 56.72695500218436, + "grad_norm": 0.24770016968250275, + "learning_rate": 0.0006, + "loss": 3.566256046295166, + "step": 4084 + }, + { + "epoch": 56.74093490607252, + "grad_norm": 0.2407187819480896, + "learning_rate": 0.0006, + "loss": 3.6002347469329834, + "step": 4085 + }, + { + "epoch": 56.75491480996068, + "grad_norm": 0.21417197585105896, + "learning_rate": 0.0006, + "loss": 3.5579819679260254, + "step": 4086 + }, + { + "epoch": 56.768894713848844, + "grad_norm": 0.21014295518398285, + "learning_rate": 0.0006, + "loss": 3.574289321899414, + "step": 4087 + }, + { + "epoch": 56.782874617737, + "grad_norm": 0.2265855073928833, + "learning_rate": 0.0006, + "loss": 3.589186906814575, + "step": 4088 + }, + { + "epoch": 56.796854521625164, + "grad_norm": 0.22685059905052185, + "learning_rate": 0.0006, + "loss": 3.567077159881592, + "step": 4089 + }, + { + "epoch": 56.81083442551333, + "grad_norm": 0.21579493582248688, + "learning_rate": 0.0006, + "loss": 3.5568556785583496, + "step": 4090 + }, + { + "epoch": 56.824814329401484, + "grad_norm": 0.2049565464258194, + "learning_rate": 0.0006, + "loss": 3.5547285079956055, + "step": 4091 + }, + { + "epoch": 56.83879423328965, + "grad_norm": 0.21019354462623596, + "learning_rate": 0.0006, + "loss": 3.606884479522705, + "step": 4092 + }, + { + "epoch": 56.8527741371778, + "grad_norm": 0.26110008358955383, + "learning_rate": 0.0006, + "loss": 3.5626933574676514, + "step": 4093 + }, + { + "epoch": 56.86675404106597, + "grad_norm": 0.22148117423057556, + "learning_rate": 0.0006, + "loss": 3.5739552974700928, + "step": 4094 + }, + { + "epoch": 56.88073394495413, + "grad_norm": 0.20535576343536377, + "learning_rate": 0.0006, + "loss": 3.566840648651123, + "step": 4095 + }, + { + "epoch": 56.89471384884229, + "grad_norm": 0.1928025484085083, + "learning_rate": 0.0006, + "loss": 3.5637013912200928, + "step": 4096 + }, + { + "epoch": 56.90869375273045, + "grad_norm": 0.1989327371120453, + "learning_rate": 0.0006, + "loss": 3.5881259441375732, + "step": 4097 + }, + { + "epoch": 56.92267365661861, + "grad_norm": 0.21137912571430206, + "learning_rate": 0.0006, + "loss": 3.5513358116149902, + "step": 4098 + }, + { + "epoch": 56.93665356050677, + "grad_norm": 0.22471629083156586, + "learning_rate": 0.0006, + "loss": 3.5630130767822266, + "step": 4099 + }, + { + "epoch": 56.95063346439493, + "grad_norm": 0.2323181927204132, + "learning_rate": 0.0006, + "loss": 3.559762477874756, + "step": 4100 + }, + { + "epoch": 56.964613368283096, + "grad_norm": 0.2020239382982254, + "learning_rate": 0.0006, + "loss": 3.596774101257324, + "step": 4101 + }, + { + "epoch": 56.97859327217125, + "grad_norm": 0.21822074055671692, + "learning_rate": 0.0006, + "loss": 3.598115921020508, + "step": 4102 + }, + { + "epoch": 56.992573176059416, + "grad_norm": 0.20600785315036774, + "learning_rate": 0.0006, + "loss": 3.5579686164855957, + "step": 4103 + }, + { + "epoch": 57.0, + "grad_norm": 0.23575574159622192, + "learning_rate": 0.0006, + "loss": 3.57532000541687, + "step": 4104 + }, + { + "epoch": 57.0, + "eval_loss": 3.9726130962371826, + "eval_runtime": 44.7918, + "eval_samples_per_second": 54.519, + "eval_steps_per_second": 3.416, + "step": 4104 + }, + { + "epoch": 57.01397990388816, + "grad_norm": 0.2366827428340912, + "learning_rate": 0.0006, + "loss": 3.552804946899414, + "step": 4105 + }, + { + "epoch": 57.02795980777632, + "grad_norm": 0.2728131115436554, + "learning_rate": 0.0006, + "loss": 3.5407862663269043, + "step": 4106 + }, + { + "epoch": 57.04193971166448, + "grad_norm": 0.2685103416442871, + "learning_rate": 0.0006, + "loss": 3.525047779083252, + "step": 4107 + }, + { + "epoch": 57.05591961555265, + "grad_norm": 0.26493778824806213, + "learning_rate": 0.0006, + "loss": 3.527106523513794, + "step": 4108 + }, + { + "epoch": 57.0698995194408, + "grad_norm": 0.290961354970932, + "learning_rate": 0.0006, + "loss": 3.5482702255249023, + "step": 4109 + }, + { + "epoch": 57.083879423328966, + "grad_norm": 0.33083876967430115, + "learning_rate": 0.0006, + "loss": 3.5123658180236816, + "step": 4110 + }, + { + "epoch": 57.09785932721712, + "grad_norm": 0.28544098138809204, + "learning_rate": 0.0006, + "loss": 3.5563549995422363, + "step": 4111 + }, + { + "epoch": 57.111839231105286, + "grad_norm": 0.2516465187072754, + "learning_rate": 0.0006, + "loss": 3.547360420227051, + "step": 4112 + }, + { + "epoch": 57.12581913499345, + "grad_norm": 0.2485780417919159, + "learning_rate": 0.0006, + "loss": 3.5234861373901367, + "step": 4113 + }, + { + "epoch": 57.139799038881605, + "grad_norm": 0.246695414185524, + "learning_rate": 0.0006, + "loss": 3.573009490966797, + "step": 4114 + }, + { + "epoch": 57.15377894276977, + "grad_norm": 0.24958990514278412, + "learning_rate": 0.0006, + "loss": 3.5322680473327637, + "step": 4115 + }, + { + "epoch": 57.16775884665793, + "grad_norm": 0.20882244408130646, + "learning_rate": 0.0006, + "loss": 3.5463480949401855, + "step": 4116 + }, + { + "epoch": 57.18173875054609, + "grad_norm": 0.2372189313173294, + "learning_rate": 0.0006, + "loss": 3.543396472930908, + "step": 4117 + }, + { + "epoch": 57.19571865443425, + "grad_norm": 0.24817894399166107, + "learning_rate": 0.0006, + "loss": 3.5594849586486816, + "step": 4118 + }, + { + "epoch": 57.20969855832241, + "grad_norm": 0.2231832891702652, + "learning_rate": 0.0006, + "loss": 3.5276806354522705, + "step": 4119 + }, + { + "epoch": 57.22367846221057, + "grad_norm": 0.2211553156375885, + "learning_rate": 0.0006, + "loss": 3.5423057079315186, + "step": 4120 + }, + { + "epoch": 57.237658366098735, + "grad_norm": 0.2495127022266388, + "learning_rate": 0.0006, + "loss": 3.57668399810791, + "step": 4121 + }, + { + "epoch": 57.25163826998689, + "grad_norm": 0.2548885941505432, + "learning_rate": 0.0006, + "loss": 3.5487570762634277, + "step": 4122 + }, + { + "epoch": 57.265618173875055, + "grad_norm": 0.22884942591190338, + "learning_rate": 0.0006, + "loss": 3.560772180557251, + "step": 4123 + }, + { + "epoch": 57.27959807776322, + "grad_norm": 0.20817993581295013, + "learning_rate": 0.0006, + "loss": 3.5540637969970703, + "step": 4124 + }, + { + "epoch": 57.293577981651374, + "grad_norm": 0.2075389176607132, + "learning_rate": 0.0006, + "loss": 3.5382890701293945, + "step": 4125 + }, + { + "epoch": 57.30755788553954, + "grad_norm": 0.2081303596496582, + "learning_rate": 0.0006, + "loss": 3.554612874984741, + "step": 4126 + }, + { + "epoch": 57.3215377894277, + "grad_norm": 0.2108871191740036, + "learning_rate": 0.0006, + "loss": 3.583320379257202, + "step": 4127 + }, + { + "epoch": 57.33551769331586, + "grad_norm": 0.21608266234397888, + "learning_rate": 0.0006, + "loss": 3.5358712673187256, + "step": 4128 + }, + { + "epoch": 57.34949759720402, + "grad_norm": 0.21208034455776215, + "learning_rate": 0.0006, + "loss": 3.561821937561035, + "step": 4129 + }, + { + "epoch": 57.36347750109218, + "grad_norm": 0.2109878957271576, + "learning_rate": 0.0006, + "loss": 3.5592710971832275, + "step": 4130 + }, + { + "epoch": 57.37745740498034, + "grad_norm": 0.2175656110048294, + "learning_rate": 0.0006, + "loss": 3.5616424083709717, + "step": 4131 + }, + { + "epoch": 57.391437308868504, + "grad_norm": 0.2170158475637436, + "learning_rate": 0.0006, + "loss": 3.5580999851226807, + "step": 4132 + }, + { + "epoch": 57.40541721275666, + "grad_norm": 0.22486525774002075, + "learning_rate": 0.0006, + "loss": 3.562096118927002, + "step": 4133 + }, + { + "epoch": 57.419397116644824, + "grad_norm": 0.22458943724632263, + "learning_rate": 0.0006, + "loss": 3.5784192085266113, + "step": 4134 + }, + { + "epoch": 57.43337702053299, + "grad_norm": 0.20545627176761627, + "learning_rate": 0.0006, + "loss": 3.5740323066711426, + "step": 4135 + }, + { + "epoch": 57.44735692442114, + "grad_norm": 0.22105063498020172, + "learning_rate": 0.0006, + "loss": 3.537400245666504, + "step": 4136 + }, + { + "epoch": 57.46133682830931, + "grad_norm": 0.26679784059524536, + "learning_rate": 0.0006, + "loss": 3.5323081016540527, + "step": 4137 + }, + { + "epoch": 57.47531673219746, + "grad_norm": 0.2646673321723938, + "learning_rate": 0.0006, + "loss": 3.54030442237854, + "step": 4138 + }, + { + "epoch": 57.489296636085626, + "grad_norm": 0.22486890852451324, + "learning_rate": 0.0006, + "loss": 3.558323621749878, + "step": 4139 + }, + { + "epoch": 57.50327653997379, + "grad_norm": 0.20868313312530518, + "learning_rate": 0.0006, + "loss": 3.5296707153320312, + "step": 4140 + }, + { + "epoch": 57.517256443861946, + "grad_norm": 0.22973674535751343, + "learning_rate": 0.0006, + "loss": 3.5401687622070312, + "step": 4141 + }, + { + "epoch": 57.53123634775011, + "grad_norm": 0.22321778535842896, + "learning_rate": 0.0006, + "loss": 3.566683530807495, + "step": 4142 + }, + { + "epoch": 57.54521625163827, + "grad_norm": 0.20808766782283783, + "learning_rate": 0.0006, + "loss": 3.5398507118225098, + "step": 4143 + }, + { + "epoch": 57.55919615552643, + "grad_norm": 0.19632819294929504, + "learning_rate": 0.0006, + "loss": 3.5785460472106934, + "step": 4144 + }, + { + "epoch": 57.57317605941459, + "grad_norm": 0.18699012696743011, + "learning_rate": 0.0006, + "loss": 3.5495004653930664, + "step": 4145 + }, + { + "epoch": 57.58715596330275, + "grad_norm": 0.19161473214626312, + "learning_rate": 0.0006, + "loss": 3.550243854522705, + "step": 4146 + }, + { + "epoch": 57.60113586719091, + "grad_norm": 0.21041646599769592, + "learning_rate": 0.0006, + "loss": 3.5801823139190674, + "step": 4147 + }, + { + "epoch": 57.615115771079076, + "grad_norm": 0.2043760120868683, + "learning_rate": 0.0006, + "loss": 3.580418825149536, + "step": 4148 + }, + { + "epoch": 57.62909567496723, + "grad_norm": 0.21515823900699615, + "learning_rate": 0.0006, + "loss": 3.58026385307312, + "step": 4149 + }, + { + "epoch": 57.643075578855395, + "grad_norm": 0.20913724601268768, + "learning_rate": 0.0006, + "loss": 3.5452992916107178, + "step": 4150 + }, + { + "epoch": 57.65705548274356, + "grad_norm": 0.22621729969978333, + "learning_rate": 0.0006, + "loss": 3.5332765579223633, + "step": 4151 + }, + { + "epoch": 57.671035386631715, + "grad_norm": 0.26475241780281067, + "learning_rate": 0.0006, + "loss": 3.5701823234558105, + "step": 4152 + }, + { + "epoch": 57.68501529051988, + "grad_norm": 0.2567952275276184, + "learning_rate": 0.0006, + "loss": 3.597219228744507, + "step": 4153 + }, + { + "epoch": 57.69899519440804, + "grad_norm": 0.19640378654003143, + "learning_rate": 0.0006, + "loss": 3.5865941047668457, + "step": 4154 + }, + { + "epoch": 57.7129750982962, + "grad_norm": 0.21714240312576294, + "learning_rate": 0.0006, + "loss": 3.555518627166748, + "step": 4155 + }, + { + "epoch": 57.72695500218436, + "grad_norm": 0.2604375183582306, + "learning_rate": 0.0006, + "loss": 3.5756402015686035, + "step": 4156 + }, + { + "epoch": 57.74093490607252, + "grad_norm": 0.24627837538719177, + "learning_rate": 0.0006, + "loss": 3.550668239593506, + "step": 4157 + }, + { + "epoch": 57.75491480996068, + "grad_norm": 0.21893182396888733, + "learning_rate": 0.0006, + "loss": 3.5560038089752197, + "step": 4158 + }, + { + "epoch": 57.768894713848844, + "grad_norm": 0.23481261730194092, + "learning_rate": 0.0006, + "loss": 3.543942451477051, + "step": 4159 + }, + { + "epoch": 57.782874617737, + "grad_norm": 0.21777133643627167, + "learning_rate": 0.0006, + "loss": 3.5652658939361572, + "step": 4160 + }, + { + "epoch": 57.796854521625164, + "grad_norm": 0.2158525437116623, + "learning_rate": 0.0006, + "loss": 3.5803327560424805, + "step": 4161 + }, + { + "epoch": 57.81083442551333, + "grad_norm": 0.19519925117492676, + "learning_rate": 0.0006, + "loss": 3.5814499855041504, + "step": 4162 + }, + { + "epoch": 57.824814329401484, + "grad_norm": 0.2017558217048645, + "learning_rate": 0.0006, + "loss": 3.558722972869873, + "step": 4163 + }, + { + "epoch": 57.83879423328965, + "grad_norm": 0.22046449780464172, + "learning_rate": 0.0006, + "loss": 3.559990882873535, + "step": 4164 + }, + { + "epoch": 57.8527741371778, + "grad_norm": 0.22240568697452545, + "learning_rate": 0.0006, + "loss": 3.5427942276000977, + "step": 4165 + }, + { + "epoch": 57.86675404106597, + "grad_norm": 0.20282965898513794, + "learning_rate": 0.0006, + "loss": 3.5449461936950684, + "step": 4166 + }, + { + "epoch": 57.88073394495413, + "grad_norm": 0.20970730483531952, + "learning_rate": 0.0006, + "loss": 3.592543601989746, + "step": 4167 + }, + { + "epoch": 57.89471384884229, + "grad_norm": 0.21963168680667877, + "learning_rate": 0.0006, + "loss": 3.5564393997192383, + "step": 4168 + }, + { + "epoch": 57.90869375273045, + "grad_norm": 0.20854730904102325, + "learning_rate": 0.0006, + "loss": 3.565591335296631, + "step": 4169 + }, + { + "epoch": 57.92267365661861, + "grad_norm": 0.24149510264396667, + "learning_rate": 0.0006, + "loss": 3.574720859527588, + "step": 4170 + }, + { + "epoch": 57.93665356050677, + "grad_norm": 0.26011863350868225, + "learning_rate": 0.0006, + "loss": 3.593156337738037, + "step": 4171 + }, + { + "epoch": 57.95063346439493, + "grad_norm": 0.24111896753311157, + "learning_rate": 0.0006, + "loss": 3.5871872901916504, + "step": 4172 + }, + { + "epoch": 57.964613368283096, + "grad_norm": 0.22362647950649261, + "learning_rate": 0.0006, + "loss": 3.568572998046875, + "step": 4173 + }, + { + "epoch": 57.97859327217125, + "grad_norm": 0.23621505498886108, + "learning_rate": 0.0006, + "loss": 3.5627479553222656, + "step": 4174 + }, + { + "epoch": 57.992573176059416, + "grad_norm": 0.2252524048089981, + "learning_rate": 0.0006, + "loss": 3.594430446624756, + "step": 4175 + }, + { + "epoch": 58.0, + "grad_norm": 0.24568618834018707, + "learning_rate": 0.0006, + "loss": 3.5520875453948975, + "step": 4176 + }, + { + "epoch": 58.0, + "eval_loss": 3.978929042816162, + "eval_runtime": 44.8688, + "eval_samples_per_second": 54.425, + "eval_steps_per_second": 3.41, + "step": 4176 + }, + { + "epoch": 58.01397990388816, + "grad_norm": 0.23220741748809814, + "learning_rate": 0.0006, + "loss": 3.5401225090026855, + "step": 4177 + }, + { + "epoch": 58.02795980777632, + "grad_norm": 0.214580699801445, + "learning_rate": 0.0006, + "loss": 3.507652759552002, + "step": 4178 + }, + { + "epoch": 58.04193971166448, + "grad_norm": 0.20596857368946075, + "learning_rate": 0.0006, + "loss": 3.5591790676116943, + "step": 4179 + }, + { + "epoch": 58.05591961555265, + "grad_norm": 0.23054419457912445, + "learning_rate": 0.0006, + "loss": 3.518101692199707, + "step": 4180 + }, + { + "epoch": 58.0698995194408, + "grad_norm": 0.2410690039396286, + "learning_rate": 0.0006, + "loss": 3.5270299911499023, + "step": 4181 + }, + { + "epoch": 58.083879423328966, + "grad_norm": 0.24333222210407257, + "learning_rate": 0.0006, + "loss": 3.5732290744781494, + "step": 4182 + }, + { + "epoch": 58.09785932721712, + "grad_norm": 0.2547648549079895, + "learning_rate": 0.0006, + "loss": 3.5470314025878906, + "step": 4183 + }, + { + "epoch": 58.111839231105286, + "grad_norm": 0.2366316169500351, + "learning_rate": 0.0006, + "loss": 3.500774621963501, + "step": 4184 + }, + { + "epoch": 58.12581913499345, + "grad_norm": 0.22653642296791077, + "learning_rate": 0.0006, + "loss": 3.5242254734039307, + "step": 4185 + }, + { + "epoch": 58.139799038881605, + "grad_norm": 0.25555330514907837, + "learning_rate": 0.0006, + "loss": 3.5272228717803955, + "step": 4186 + }, + { + "epoch": 58.15377894276977, + "grad_norm": 0.26559844613075256, + "learning_rate": 0.0006, + "loss": 3.5599403381347656, + "step": 4187 + }, + { + "epoch": 58.16775884665793, + "grad_norm": 0.2473350614309311, + "learning_rate": 0.0006, + "loss": 3.5130624771118164, + "step": 4188 + }, + { + "epoch": 58.18173875054609, + "grad_norm": 0.22858835756778717, + "learning_rate": 0.0006, + "loss": 3.508342742919922, + "step": 4189 + }, + { + "epoch": 58.19571865443425, + "grad_norm": 0.2151159793138504, + "learning_rate": 0.0006, + "loss": 3.533581256866455, + "step": 4190 + }, + { + "epoch": 58.20969855832241, + "grad_norm": 0.2042093276977539, + "learning_rate": 0.0006, + "loss": 3.5269458293914795, + "step": 4191 + }, + { + "epoch": 58.22367846221057, + "grad_norm": 0.20638196170330048, + "learning_rate": 0.0006, + "loss": 3.5137884616851807, + "step": 4192 + }, + { + "epoch": 58.237658366098735, + "grad_norm": 0.2018391191959381, + "learning_rate": 0.0006, + "loss": 3.533733367919922, + "step": 4193 + }, + { + "epoch": 58.25163826998689, + "grad_norm": 0.21045200526714325, + "learning_rate": 0.0006, + "loss": 3.5585010051727295, + "step": 4194 + }, + { + "epoch": 58.265618173875055, + "grad_norm": 0.2040393352508545, + "learning_rate": 0.0006, + "loss": 3.547539234161377, + "step": 4195 + }, + { + "epoch": 58.27959807776322, + "grad_norm": 0.2538772523403168, + "learning_rate": 0.0006, + "loss": 3.5487847328186035, + "step": 4196 + }, + { + "epoch": 58.293577981651374, + "grad_norm": 0.30126553773880005, + "learning_rate": 0.0006, + "loss": 3.5717992782592773, + "step": 4197 + }, + { + "epoch": 58.30755788553954, + "grad_norm": 0.2787485718727112, + "learning_rate": 0.0006, + "loss": 3.543076992034912, + "step": 4198 + }, + { + "epoch": 58.3215377894277, + "grad_norm": 0.23167021572589874, + "learning_rate": 0.0006, + "loss": 3.518887519836426, + "step": 4199 + }, + { + "epoch": 58.33551769331586, + "grad_norm": 0.23871110379695892, + "learning_rate": 0.0006, + "loss": 3.536757469177246, + "step": 4200 + }, + { + "epoch": 58.34949759720402, + "grad_norm": 0.2542787492275238, + "learning_rate": 0.0006, + "loss": 3.573086738586426, + "step": 4201 + }, + { + "epoch": 58.36347750109218, + "grad_norm": 0.2967284023761749, + "learning_rate": 0.0006, + "loss": 3.5866525173187256, + "step": 4202 + }, + { + "epoch": 58.37745740498034, + "grad_norm": 0.28304803371429443, + "learning_rate": 0.0006, + "loss": 3.5601437091827393, + "step": 4203 + }, + { + "epoch": 58.391437308868504, + "grad_norm": 0.20651954412460327, + "learning_rate": 0.0006, + "loss": 3.5591554641723633, + "step": 4204 + }, + { + "epoch": 58.40541721275666, + "grad_norm": 0.23101729154586792, + "learning_rate": 0.0006, + "loss": 3.5714032649993896, + "step": 4205 + }, + { + "epoch": 58.419397116644824, + "grad_norm": 0.24556246399879456, + "learning_rate": 0.0006, + "loss": 3.550046443939209, + "step": 4206 + }, + { + "epoch": 58.43337702053299, + "grad_norm": 0.2307356745004654, + "learning_rate": 0.0006, + "loss": 3.571850299835205, + "step": 4207 + }, + { + "epoch": 58.44735692442114, + "grad_norm": 0.23186670243740082, + "learning_rate": 0.0006, + "loss": 3.555757999420166, + "step": 4208 + }, + { + "epoch": 58.46133682830931, + "grad_norm": 0.20662686228752136, + "learning_rate": 0.0006, + "loss": 3.5590686798095703, + "step": 4209 + }, + { + "epoch": 58.47531673219746, + "grad_norm": 0.20381265878677368, + "learning_rate": 0.0006, + "loss": 3.5228846073150635, + "step": 4210 + }, + { + "epoch": 58.489296636085626, + "grad_norm": 0.20927058160305023, + "learning_rate": 0.0006, + "loss": 3.5376980304718018, + "step": 4211 + }, + { + "epoch": 58.50327653997379, + "grad_norm": 0.22782307863235474, + "learning_rate": 0.0006, + "loss": 3.5477585792541504, + "step": 4212 + }, + { + "epoch": 58.517256443861946, + "grad_norm": 0.20143239200115204, + "learning_rate": 0.0006, + "loss": 3.5429391860961914, + "step": 4213 + }, + { + "epoch": 58.53123634775011, + "grad_norm": 0.2120865285396576, + "learning_rate": 0.0006, + "loss": 3.5543365478515625, + "step": 4214 + }, + { + "epoch": 58.54521625163827, + "grad_norm": 0.2032771110534668, + "learning_rate": 0.0006, + "loss": 3.5307888984680176, + "step": 4215 + }, + { + "epoch": 58.55919615552643, + "grad_norm": 0.20994187891483307, + "learning_rate": 0.0006, + "loss": 3.581739664077759, + "step": 4216 + }, + { + "epoch": 58.57317605941459, + "grad_norm": 0.23686161637306213, + "learning_rate": 0.0006, + "loss": 3.5274312496185303, + "step": 4217 + }, + { + "epoch": 58.58715596330275, + "grad_norm": 0.21081998944282532, + "learning_rate": 0.0006, + "loss": 3.547239303588867, + "step": 4218 + }, + { + "epoch": 58.60113586719091, + "grad_norm": 0.20353151857852936, + "learning_rate": 0.0006, + "loss": 3.5522308349609375, + "step": 4219 + }, + { + "epoch": 58.615115771079076, + "grad_norm": 0.20888762176036835, + "learning_rate": 0.0006, + "loss": 3.5535459518432617, + "step": 4220 + }, + { + "epoch": 58.62909567496723, + "grad_norm": 0.2024519443511963, + "learning_rate": 0.0006, + "loss": 3.5320982933044434, + "step": 4221 + }, + { + "epoch": 58.643075578855395, + "grad_norm": 0.19622337818145752, + "learning_rate": 0.0006, + "loss": 3.5581917762756348, + "step": 4222 + }, + { + "epoch": 58.65705548274356, + "grad_norm": 0.1966600865125656, + "learning_rate": 0.0006, + "loss": 3.5412650108337402, + "step": 4223 + }, + { + "epoch": 58.671035386631715, + "grad_norm": 0.19325542449951172, + "learning_rate": 0.0006, + "loss": 3.570521593093872, + "step": 4224 + }, + { + "epoch": 58.68501529051988, + "grad_norm": 0.20674128830432892, + "learning_rate": 0.0006, + "loss": 3.5727484226226807, + "step": 4225 + }, + { + "epoch": 58.69899519440804, + "grad_norm": 0.1959284245967865, + "learning_rate": 0.0006, + "loss": 3.5655486583709717, + "step": 4226 + }, + { + "epoch": 58.7129750982962, + "grad_norm": 0.2044358104467392, + "learning_rate": 0.0006, + "loss": 3.5477449893951416, + "step": 4227 + }, + { + "epoch": 58.72695500218436, + "grad_norm": 0.21381069719791412, + "learning_rate": 0.0006, + "loss": 3.533381462097168, + "step": 4228 + }, + { + "epoch": 58.74093490607252, + "grad_norm": 0.20168009400367737, + "learning_rate": 0.0006, + "loss": 3.5401244163513184, + "step": 4229 + }, + { + "epoch": 58.75491480996068, + "grad_norm": 0.20853811502456665, + "learning_rate": 0.0006, + "loss": 3.5669009685516357, + "step": 4230 + }, + { + "epoch": 58.768894713848844, + "grad_norm": 0.2135785073041916, + "learning_rate": 0.0006, + "loss": 3.5697989463806152, + "step": 4231 + }, + { + "epoch": 58.782874617737, + "grad_norm": 0.20372799038887024, + "learning_rate": 0.0006, + "loss": 3.592245101928711, + "step": 4232 + }, + { + "epoch": 58.796854521625164, + "grad_norm": 0.20562207698822021, + "learning_rate": 0.0006, + "loss": 3.5732932090759277, + "step": 4233 + }, + { + "epoch": 58.81083442551333, + "grad_norm": 0.1932520568370819, + "learning_rate": 0.0006, + "loss": 3.581766128540039, + "step": 4234 + }, + { + "epoch": 58.824814329401484, + "grad_norm": 0.20229186117649078, + "learning_rate": 0.0006, + "loss": 3.5758426189422607, + "step": 4235 + }, + { + "epoch": 58.83879423328965, + "grad_norm": 0.21348924934864044, + "learning_rate": 0.0006, + "loss": 3.573164939880371, + "step": 4236 + }, + { + "epoch": 58.8527741371778, + "grad_norm": 0.2240375131368637, + "learning_rate": 0.0006, + "loss": 3.578442096710205, + "step": 4237 + }, + { + "epoch": 58.86675404106597, + "grad_norm": 0.22859376668930054, + "learning_rate": 0.0006, + "loss": 3.5597116947174072, + "step": 4238 + }, + { + "epoch": 58.88073394495413, + "grad_norm": 0.22347290813922882, + "learning_rate": 0.0006, + "loss": 3.557039260864258, + "step": 4239 + }, + { + "epoch": 58.89471384884229, + "grad_norm": 0.19835364818572998, + "learning_rate": 0.0006, + "loss": 3.5832467079162598, + "step": 4240 + }, + { + "epoch": 58.90869375273045, + "grad_norm": 0.21189740300178528, + "learning_rate": 0.0006, + "loss": 3.5421836376190186, + "step": 4241 + }, + { + "epoch": 58.92267365661861, + "grad_norm": 0.21234451234340668, + "learning_rate": 0.0006, + "loss": 3.6048710346221924, + "step": 4242 + }, + { + "epoch": 58.93665356050677, + "grad_norm": 0.2107880860567093, + "learning_rate": 0.0006, + "loss": 3.58248233795166, + "step": 4243 + }, + { + "epoch": 58.95063346439493, + "grad_norm": 0.21674086153507233, + "learning_rate": 0.0006, + "loss": 3.582352876663208, + "step": 4244 + }, + { + "epoch": 58.964613368283096, + "grad_norm": 0.21057581901550293, + "learning_rate": 0.0006, + "loss": 3.5387773513793945, + "step": 4245 + }, + { + "epoch": 58.97859327217125, + "grad_norm": 0.20203082263469696, + "learning_rate": 0.0006, + "loss": 3.5805740356445312, + "step": 4246 + }, + { + "epoch": 58.992573176059416, + "grad_norm": 0.21071292459964752, + "learning_rate": 0.0006, + "loss": 3.5644760131835938, + "step": 4247 + }, + { + "epoch": 59.0, + "grad_norm": 0.2473233938217163, + "learning_rate": 0.0006, + "loss": 3.56392765045166, + "step": 4248 + }, + { + "epoch": 59.0, + "eval_loss": 3.9670467376708984, + "eval_runtime": 44.7697, + "eval_samples_per_second": 54.546, + "eval_steps_per_second": 3.417, + "step": 4248 + }, + { + "epoch": 59.01397990388816, + "grad_norm": 0.22915491461753845, + "learning_rate": 0.0006, + "loss": 3.5110130310058594, + "step": 4249 + }, + { + "epoch": 59.02795980777632, + "grad_norm": 0.2629511058330536, + "learning_rate": 0.0006, + "loss": 3.5493721961975098, + "step": 4250 + }, + { + "epoch": 59.04193971166448, + "grad_norm": 0.2954505383968353, + "learning_rate": 0.0006, + "loss": 3.555753707885742, + "step": 4251 + }, + { + "epoch": 59.05591961555265, + "grad_norm": 0.2728694677352905, + "learning_rate": 0.0006, + "loss": 3.5089950561523438, + "step": 4252 + }, + { + "epoch": 59.0698995194408, + "grad_norm": 0.25955384969711304, + "learning_rate": 0.0006, + "loss": 3.509044647216797, + "step": 4253 + }, + { + "epoch": 59.083879423328966, + "grad_norm": 0.32285967469215393, + "learning_rate": 0.0006, + "loss": 3.5324721336364746, + "step": 4254 + }, + { + "epoch": 59.09785932721712, + "grad_norm": 0.2913302779197693, + "learning_rate": 0.0006, + "loss": 3.5004022121429443, + "step": 4255 + }, + { + "epoch": 59.111839231105286, + "grad_norm": 0.23795513808727264, + "learning_rate": 0.0006, + "loss": 3.515099048614502, + "step": 4256 + }, + { + "epoch": 59.12581913499345, + "grad_norm": 0.2788177728652954, + "learning_rate": 0.0006, + "loss": 3.524991035461426, + "step": 4257 + }, + { + "epoch": 59.139799038881605, + "grad_norm": 0.32389938831329346, + "learning_rate": 0.0006, + "loss": 3.5330004692077637, + "step": 4258 + }, + { + "epoch": 59.15377894276977, + "grad_norm": 0.2921825647354126, + "learning_rate": 0.0006, + "loss": 3.530616283416748, + "step": 4259 + }, + { + "epoch": 59.16775884665793, + "grad_norm": 0.28415167331695557, + "learning_rate": 0.0006, + "loss": 3.5276989936828613, + "step": 4260 + }, + { + "epoch": 59.18173875054609, + "grad_norm": 0.283626526594162, + "learning_rate": 0.0006, + "loss": 3.564985752105713, + "step": 4261 + }, + { + "epoch": 59.19571865443425, + "grad_norm": 0.2655615210533142, + "learning_rate": 0.0006, + "loss": 3.536499500274658, + "step": 4262 + }, + { + "epoch": 59.20969855832241, + "grad_norm": 0.2794124484062195, + "learning_rate": 0.0006, + "loss": 3.570883274078369, + "step": 4263 + }, + { + "epoch": 59.22367846221057, + "grad_norm": 0.2803778052330017, + "learning_rate": 0.0006, + "loss": 3.5143651962280273, + "step": 4264 + }, + { + "epoch": 59.237658366098735, + "grad_norm": 0.2584295868873596, + "learning_rate": 0.0006, + "loss": 3.548056125640869, + "step": 4265 + }, + { + "epoch": 59.25163826998689, + "grad_norm": 0.26859962940216064, + "learning_rate": 0.0006, + "loss": 3.511655807495117, + "step": 4266 + }, + { + "epoch": 59.265618173875055, + "grad_norm": 0.26620036363601685, + "learning_rate": 0.0006, + "loss": 3.5554311275482178, + "step": 4267 + }, + { + "epoch": 59.27959807776322, + "grad_norm": 0.2325621247291565, + "learning_rate": 0.0006, + "loss": 3.5126709938049316, + "step": 4268 + }, + { + "epoch": 59.293577981651374, + "grad_norm": 0.24758809804916382, + "learning_rate": 0.0006, + "loss": 3.5747783184051514, + "step": 4269 + }, + { + "epoch": 59.30755788553954, + "grad_norm": 0.26378121972084045, + "learning_rate": 0.0006, + "loss": 3.538012742996216, + "step": 4270 + }, + { + "epoch": 59.3215377894277, + "grad_norm": 0.24299141764640808, + "learning_rate": 0.0006, + "loss": 3.533834457397461, + "step": 4271 + }, + { + "epoch": 59.33551769331586, + "grad_norm": 0.20792774856090546, + "learning_rate": 0.0006, + "loss": 3.5645856857299805, + "step": 4272 + }, + { + "epoch": 59.34949759720402, + "grad_norm": 0.21124716103076935, + "learning_rate": 0.0006, + "loss": 3.5616869926452637, + "step": 4273 + }, + { + "epoch": 59.36347750109218, + "grad_norm": 0.2644400894641876, + "learning_rate": 0.0006, + "loss": 3.531334400177002, + "step": 4274 + }, + { + "epoch": 59.37745740498034, + "grad_norm": 0.27659082412719727, + "learning_rate": 0.0006, + "loss": 3.5557894706726074, + "step": 4275 + }, + { + "epoch": 59.391437308868504, + "grad_norm": 0.21931052207946777, + "learning_rate": 0.0006, + "loss": 3.537261486053467, + "step": 4276 + }, + { + "epoch": 59.40541721275666, + "grad_norm": 0.20661118626594543, + "learning_rate": 0.0006, + "loss": 3.568042755126953, + "step": 4277 + }, + { + "epoch": 59.419397116644824, + "grad_norm": 0.2157975435256958, + "learning_rate": 0.0006, + "loss": 3.550891160964966, + "step": 4278 + }, + { + "epoch": 59.43337702053299, + "grad_norm": 0.20762090384960175, + "learning_rate": 0.0006, + "loss": 3.565798282623291, + "step": 4279 + }, + { + "epoch": 59.44735692442114, + "grad_norm": 0.19575528800487518, + "learning_rate": 0.0006, + "loss": 3.5518856048583984, + "step": 4280 + }, + { + "epoch": 59.46133682830931, + "grad_norm": 0.20730678737163544, + "learning_rate": 0.0006, + "loss": 3.5412862300872803, + "step": 4281 + }, + { + "epoch": 59.47531673219746, + "grad_norm": 0.21095411479473114, + "learning_rate": 0.0006, + "loss": 3.5491604804992676, + "step": 4282 + }, + { + "epoch": 59.489296636085626, + "grad_norm": 0.2229546755552292, + "learning_rate": 0.0006, + "loss": 3.534517765045166, + "step": 4283 + }, + { + "epoch": 59.50327653997379, + "grad_norm": 0.22375687956809998, + "learning_rate": 0.0006, + "loss": 3.5696470737457275, + "step": 4284 + }, + { + "epoch": 59.517256443861946, + "grad_norm": 0.2563750743865967, + "learning_rate": 0.0006, + "loss": 3.6050190925598145, + "step": 4285 + }, + { + "epoch": 59.53123634775011, + "grad_norm": 0.3055726885795593, + "learning_rate": 0.0006, + "loss": 3.572263240814209, + "step": 4286 + }, + { + "epoch": 59.54521625163827, + "grad_norm": 0.3095283508300781, + "learning_rate": 0.0006, + "loss": 3.545631170272827, + "step": 4287 + }, + { + "epoch": 59.55919615552643, + "grad_norm": 0.24958640336990356, + "learning_rate": 0.0006, + "loss": 3.549663543701172, + "step": 4288 + }, + { + "epoch": 59.57317605941459, + "grad_norm": 0.22277019917964935, + "learning_rate": 0.0006, + "loss": 3.5721545219421387, + "step": 4289 + }, + { + "epoch": 59.58715596330275, + "grad_norm": 0.22153833508491516, + "learning_rate": 0.0006, + "loss": 3.5103156566619873, + "step": 4290 + }, + { + "epoch": 59.60113586719091, + "grad_norm": 0.25579726696014404, + "learning_rate": 0.0006, + "loss": 3.550353527069092, + "step": 4291 + }, + { + "epoch": 59.615115771079076, + "grad_norm": 0.2242603898048401, + "learning_rate": 0.0006, + "loss": 3.5284783840179443, + "step": 4292 + }, + { + "epoch": 59.62909567496723, + "grad_norm": 0.21665683388710022, + "learning_rate": 0.0006, + "loss": 3.553835868835449, + "step": 4293 + }, + { + "epoch": 59.643075578855395, + "grad_norm": 0.21703463792800903, + "learning_rate": 0.0006, + "loss": 3.5393173694610596, + "step": 4294 + }, + { + "epoch": 59.65705548274356, + "grad_norm": 0.21264998614788055, + "learning_rate": 0.0006, + "loss": 3.566108465194702, + "step": 4295 + }, + { + "epoch": 59.671035386631715, + "grad_norm": 0.1935717612504959, + "learning_rate": 0.0006, + "loss": 3.5934512615203857, + "step": 4296 + }, + { + "epoch": 59.68501529051988, + "grad_norm": 0.20164808630943298, + "learning_rate": 0.0006, + "loss": 3.545046329498291, + "step": 4297 + }, + { + "epoch": 59.69899519440804, + "grad_norm": 0.19589892029762268, + "learning_rate": 0.0006, + "loss": 3.5302319526672363, + "step": 4298 + }, + { + "epoch": 59.7129750982962, + "grad_norm": 0.1893095225095749, + "learning_rate": 0.0006, + "loss": 3.5947837829589844, + "step": 4299 + }, + { + "epoch": 59.72695500218436, + "grad_norm": 0.20218202471733093, + "learning_rate": 0.0006, + "loss": 3.5889904499053955, + "step": 4300 + }, + { + "epoch": 59.74093490607252, + "grad_norm": 0.19681277871131897, + "learning_rate": 0.0006, + "loss": 3.581536293029785, + "step": 4301 + }, + { + "epoch": 59.75491480996068, + "grad_norm": 0.20112384855747223, + "learning_rate": 0.0006, + "loss": 3.5509750843048096, + "step": 4302 + }, + { + "epoch": 59.768894713848844, + "grad_norm": 0.1969940960407257, + "learning_rate": 0.0006, + "loss": 3.5462636947631836, + "step": 4303 + }, + { + "epoch": 59.782874617737, + "grad_norm": 0.20936219394207, + "learning_rate": 0.0006, + "loss": 3.5284390449523926, + "step": 4304 + }, + { + "epoch": 59.796854521625164, + "grad_norm": 0.21717803180217743, + "learning_rate": 0.0006, + "loss": 3.5669212341308594, + "step": 4305 + }, + { + "epoch": 59.81083442551333, + "grad_norm": 0.20210883021354675, + "learning_rate": 0.0006, + "loss": 3.5366921424865723, + "step": 4306 + }, + { + "epoch": 59.824814329401484, + "grad_norm": 0.224124476313591, + "learning_rate": 0.0006, + "loss": 3.5457663536071777, + "step": 4307 + }, + { + "epoch": 59.83879423328965, + "grad_norm": 0.2186291366815567, + "learning_rate": 0.0006, + "loss": 3.5732779502868652, + "step": 4308 + }, + { + "epoch": 59.8527741371778, + "grad_norm": 0.19785884022712708, + "learning_rate": 0.0006, + "loss": 3.5471811294555664, + "step": 4309 + }, + { + "epoch": 59.86675404106597, + "grad_norm": 0.24774281680583954, + "learning_rate": 0.0006, + "loss": 3.5839807987213135, + "step": 4310 + }, + { + "epoch": 59.88073394495413, + "grad_norm": 0.25087007880210876, + "learning_rate": 0.0006, + "loss": 3.56972336769104, + "step": 4311 + }, + { + "epoch": 59.89471384884229, + "grad_norm": 0.21474683284759521, + "learning_rate": 0.0006, + "loss": 3.5199289321899414, + "step": 4312 + }, + { + "epoch": 59.90869375273045, + "grad_norm": 0.2087765336036682, + "learning_rate": 0.0006, + "loss": 3.5777320861816406, + "step": 4313 + }, + { + "epoch": 59.92267365661861, + "grad_norm": 0.2228539139032364, + "learning_rate": 0.0006, + "loss": 3.531118392944336, + "step": 4314 + }, + { + "epoch": 59.93665356050677, + "grad_norm": 0.2456534057855606, + "learning_rate": 0.0006, + "loss": 3.5448033809661865, + "step": 4315 + }, + { + "epoch": 59.95063346439493, + "grad_norm": 0.2699171006679535, + "learning_rate": 0.0006, + "loss": 3.560724973678589, + "step": 4316 + }, + { + "epoch": 59.964613368283096, + "grad_norm": 0.2664966881275177, + "learning_rate": 0.0006, + "loss": 3.5932974815368652, + "step": 4317 + }, + { + "epoch": 59.97859327217125, + "grad_norm": 0.2137683779001236, + "learning_rate": 0.0006, + "loss": 3.5610086917877197, + "step": 4318 + }, + { + "epoch": 59.992573176059416, + "grad_norm": 0.2067531794309616, + "learning_rate": 0.0006, + "loss": 3.5588603019714355, + "step": 4319 + }, + { + "epoch": 60.0, + "grad_norm": 0.2458500862121582, + "learning_rate": 0.0006, + "loss": 3.5636165142059326, + "step": 4320 + }, + { + "epoch": 60.0, + "eval_loss": 3.967288017272949, + "eval_runtime": 44.2225, + "eval_samples_per_second": 55.221, + "eval_steps_per_second": 3.46, + "step": 4320 + }, + { + "epoch": 60.01397990388816, + "grad_norm": 0.25330978631973267, + "learning_rate": 0.0006, + "loss": 3.524343490600586, + "step": 4321 + }, + { + "epoch": 60.02795980777632, + "grad_norm": 0.3005860447883606, + "learning_rate": 0.0006, + "loss": 3.533761501312256, + "step": 4322 + }, + { + "epoch": 60.04193971166448, + "grad_norm": 0.29054996371269226, + "learning_rate": 0.0006, + "loss": 3.536410331726074, + "step": 4323 + }, + { + "epoch": 60.05591961555265, + "grad_norm": 0.23265458643436432, + "learning_rate": 0.0006, + "loss": 3.4965157508850098, + "step": 4324 + }, + { + "epoch": 60.0698995194408, + "grad_norm": 0.2330862134695053, + "learning_rate": 0.0006, + "loss": 3.4899768829345703, + "step": 4325 + }, + { + "epoch": 60.083879423328966, + "grad_norm": 0.23188516497612, + "learning_rate": 0.0006, + "loss": 3.504887580871582, + "step": 4326 + }, + { + "epoch": 60.09785932721712, + "grad_norm": 0.2152940034866333, + "learning_rate": 0.0006, + "loss": 3.5274603366851807, + "step": 4327 + }, + { + "epoch": 60.111839231105286, + "grad_norm": 0.21918490529060364, + "learning_rate": 0.0006, + "loss": 3.5223636627197266, + "step": 4328 + }, + { + "epoch": 60.12581913499345, + "grad_norm": 0.23193582892417908, + "learning_rate": 0.0006, + "loss": 3.5171899795532227, + "step": 4329 + }, + { + "epoch": 60.139799038881605, + "grad_norm": 0.2336687296628952, + "learning_rate": 0.0006, + "loss": 3.5403029918670654, + "step": 4330 + }, + { + "epoch": 60.15377894276977, + "grad_norm": 0.23833593726158142, + "learning_rate": 0.0006, + "loss": 3.5055623054504395, + "step": 4331 + }, + { + "epoch": 60.16775884665793, + "grad_norm": 0.2389385998249054, + "learning_rate": 0.0006, + "loss": 3.5423574447631836, + "step": 4332 + }, + { + "epoch": 60.18173875054609, + "grad_norm": 0.21729786694049835, + "learning_rate": 0.0006, + "loss": 3.508272647857666, + "step": 4333 + }, + { + "epoch": 60.19571865443425, + "grad_norm": 0.2118137627840042, + "learning_rate": 0.0006, + "loss": 3.556934356689453, + "step": 4334 + }, + { + "epoch": 60.20969855832241, + "grad_norm": 0.23217040300369263, + "learning_rate": 0.0006, + "loss": 3.546459674835205, + "step": 4335 + }, + { + "epoch": 60.22367846221057, + "grad_norm": 0.2446565330028534, + "learning_rate": 0.0006, + "loss": 3.5662269592285156, + "step": 4336 + }, + { + "epoch": 60.237658366098735, + "grad_norm": 0.22065940499305725, + "learning_rate": 0.0006, + "loss": 3.550262451171875, + "step": 4337 + }, + { + "epoch": 60.25163826998689, + "grad_norm": 0.22212697565555573, + "learning_rate": 0.0006, + "loss": 3.5495731830596924, + "step": 4338 + }, + { + "epoch": 60.265618173875055, + "grad_norm": 0.21770696341991425, + "learning_rate": 0.0006, + "loss": 3.5345935821533203, + "step": 4339 + }, + { + "epoch": 60.27959807776322, + "grad_norm": 0.2089550793170929, + "learning_rate": 0.0006, + "loss": 3.5704336166381836, + "step": 4340 + }, + { + "epoch": 60.293577981651374, + "grad_norm": 0.20426379144191742, + "learning_rate": 0.0006, + "loss": 3.546909809112549, + "step": 4341 + }, + { + "epoch": 60.30755788553954, + "grad_norm": 0.2038658708333969, + "learning_rate": 0.0006, + "loss": 3.5444231033325195, + "step": 4342 + }, + { + "epoch": 60.3215377894277, + "grad_norm": 0.20485089719295502, + "learning_rate": 0.0006, + "loss": 3.561206817626953, + "step": 4343 + }, + { + "epoch": 60.33551769331586, + "grad_norm": 0.19151435792446136, + "learning_rate": 0.0006, + "loss": 3.5226097106933594, + "step": 4344 + }, + { + "epoch": 60.34949759720402, + "grad_norm": 0.19078181684017181, + "learning_rate": 0.0006, + "loss": 3.5431442260742188, + "step": 4345 + }, + { + "epoch": 60.36347750109218, + "grad_norm": 0.2032487392425537, + "learning_rate": 0.0006, + "loss": 3.5317721366882324, + "step": 4346 + }, + { + "epoch": 60.37745740498034, + "grad_norm": 0.18330955505371094, + "learning_rate": 0.0006, + "loss": 3.521145820617676, + "step": 4347 + }, + { + "epoch": 60.391437308868504, + "grad_norm": 0.18987730145454407, + "learning_rate": 0.0006, + "loss": 3.4980595111846924, + "step": 4348 + }, + { + "epoch": 60.40541721275666, + "grad_norm": 0.19873160123825073, + "learning_rate": 0.0006, + "loss": 3.5639595985412598, + "step": 4349 + }, + { + "epoch": 60.419397116644824, + "grad_norm": 0.20323137938976288, + "learning_rate": 0.0006, + "loss": 3.5364837646484375, + "step": 4350 + }, + { + "epoch": 60.43337702053299, + "grad_norm": 0.20755112171173096, + "learning_rate": 0.0006, + "loss": 3.565398931503296, + "step": 4351 + }, + { + "epoch": 60.44735692442114, + "grad_norm": 0.19222456216812134, + "learning_rate": 0.0006, + "loss": 3.569659948348999, + "step": 4352 + }, + { + "epoch": 60.46133682830931, + "grad_norm": 0.18698982894420624, + "learning_rate": 0.0006, + "loss": 3.5305557250976562, + "step": 4353 + }, + { + "epoch": 60.47531673219746, + "grad_norm": 0.19300664961338043, + "learning_rate": 0.0006, + "loss": 3.5398356914520264, + "step": 4354 + }, + { + "epoch": 60.489296636085626, + "grad_norm": 0.19573862850666046, + "learning_rate": 0.0006, + "loss": 3.5549232959747314, + "step": 4355 + }, + { + "epoch": 60.50327653997379, + "grad_norm": 0.21893447637557983, + "learning_rate": 0.0006, + "loss": 3.5427680015563965, + "step": 4356 + }, + { + "epoch": 60.517256443861946, + "grad_norm": 0.2375156730413437, + "learning_rate": 0.0006, + "loss": 3.5368900299072266, + "step": 4357 + }, + { + "epoch": 60.53123634775011, + "grad_norm": 0.2430058717727661, + "learning_rate": 0.0006, + "loss": 3.5812578201293945, + "step": 4358 + }, + { + "epoch": 60.54521625163827, + "grad_norm": 0.21769747138023376, + "learning_rate": 0.0006, + "loss": 3.563126564025879, + "step": 4359 + }, + { + "epoch": 60.55919615552643, + "grad_norm": 0.19841895997524261, + "learning_rate": 0.0006, + "loss": 3.5683727264404297, + "step": 4360 + }, + { + "epoch": 60.57317605941459, + "grad_norm": 0.22039084136486053, + "learning_rate": 0.0006, + "loss": 3.5417304039001465, + "step": 4361 + }, + { + "epoch": 60.58715596330275, + "grad_norm": 0.22528418898582458, + "learning_rate": 0.0006, + "loss": 3.5606675148010254, + "step": 4362 + }, + { + "epoch": 60.60113586719091, + "grad_norm": 0.19975383579730988, + "learning_rate": 0.0006, + "loss": 3.5345380306243896, + "step": 4363 + }, + { + "epoch": 60.615115771079076, + "grad_norm": 0.18953508138656616, + "learning_rate": 0.0006, + "loss": 3.523921012878418, + "step": 4364 + }, + { + "epoch": 60.62909567496723, + "grad_norm": 0.19997848570346832, + "learning_rate": 0.0006, + "loss": 3.553741931915283, + "step": 4365 + }, + { + "epoch": 60.643075578855395, + "grad_norm": 0.21067652106285095, + "learning_rate": 0.0006, + "loss": 3.57025408744812, + "step": 4366 + }, + { + "epoch": 60.65705548274356, + "grad_norm": 0.20452328026294708, + "learning_rate": 0.0006, + "loss": 3.5293073654174805, + "step": 4367 + }, + { + "epoch": 60.671035386631715, + "grad_norm": 0.18740518391132355, + "learning_rate": 0.0006, + "loss": 3.520880699157715, + "step": 4368 + }, + { + "epoch": 60.68501529051988, + "grad_norm": 0.19408279657363892, + "learning_rate": 0.0006, + "loss": 3.553086757659912, + "step": 4369 + }, + { + "epoch": 60.69899519440804, + "grad_norm": 0.19472180306911469, + "learning_rate": 0.0006, + "loss": 3.557744026184082, + "step": 4370 + }, + { + "epoch": 60.7129750982962, + "grad_norm": 0.18123279511928558, + "learning_rate": 0.0006, + "loss": 3.547276258468628, + "step": 4371 + }, + { + "epoch": 60.72695500218436, + "grad_norm": 0.21011893451213837, + "learning_rate": 0.0006, + "loss": 3.544990062713623, + "step": 4372 + }, + { + "epoch": 60.74093490607252, + "grad_norm": 0.25020623207092285, + "learning_rate": 0.0006, + "loss": 3.541600227355957, + "step": 4373 + }, + { + "epoch": 60.75491480996068, + "grad_norm": 0.2579628825187683, + "learning_rate": 0.0006, + "loss": 3.547964096069336, + "step": 4374 + }, + { + "epoch": 60.768894713848844, + "grad_norm": 0.23156116902828217, + "learning_rate": 0.0006, + "loss": 3.550957202911377, + "step": 4375 + }, + { + "epoch": 60.782874617737, + "grad_norm": 0.22070197761058807, + "learning_rate": 0.0006, + "loss": 3.4950358867645264, + "step": 4376 + }, + { + "epoch": 60.796854521625164, + "grad_norm": 0.222877636551857, + "learning_rate": 0.0006, + "loss": 3.5622036457061768, + "step": 4377 + }, + { + "epoch": 60.81083442551333, + "grad_norm": 0.21662060916423798, + "learning_rate": 0.0006, + "loss": 3.551515579223633, + "step": 4378 + }, + { + "epoch": 60.824814329401484, + "grad_norm": 0.22380465269088745, + "learning_rate": 0.0006, + "loss": 3.5552866458892822, + "step": 4379 + }, + { + "epoch": 60.83879423328965, + "grad_norm": 0.24023373425006866, + "learning_rate": 0.0006, + "loss": 3.5741777420043945, + "step": 4380 + }, + { + "epoch": 60.8527741371778, + "grad_norm": 0.1921556293964386, + "learning_rate": 0.0006, + "loss": 3.535435199737549, + "step": 4381 + }, + { + "epoch": 60.86675404106597, + "grad_norm": 0.20002295076847076, + "learning_rate": 0.0006, + "loss": 3.5660810470581055, + "step": 4382 + }, + { + "epoch": 60.88073394495413, + "grad_norm": 0.22797644138336182, + "learning_rate": 0.0006, + "loss": 3.5361297130584717, + "step": 4383 + }, + { + "epoch": 60.89471384884229, + "grad_norm": 0.24129843711853027, + "learning_rate": 0.0006, + "loss": 3.578810214996338, + "step": 4384 + }, + { + "epoch": 60.90869375273045, + "grad_norm": 0.2363646924495697, + "learning_rate": 0.0006, + "loss": 3.5245485305786133, + "step": 4385 + }, + { + "epoch": 60.92267365661861, + "grad_norm": 0.22811074554920197, + "learning_rate": 0.0006, + "loss": 3.551769733428955, + "step": 4386 + }, + { + "epoch": 60.93665356050677, + "grad_norm": 0.2204643338918686, + "learning_rate": 0.0006, + "loss": 3.5833442211151123, + "step": 4387 + }, + { + "epoch": 60.95063346439493, + "grad_norm": 0.21389783918857574, + "learning_rate": 0.0006, + "loss": 3.531735897064209, + "step": 4388 + }, + { + "epoch": 60.964613368283096, + "grad_norm": 0.22142091393470764, + "learning_rate": 0.0006, + "loss": 3.5482523441314697, + "step": 4389 + }, + { + "epoch": 60.97859327217125, + "grad_norm": 0.21186122298240662, + "learning_rate": 0.0006, + "loss": 3.540555477142334, + "step": 4390 + }, + { + "epoch": 60.992573176059416, + "grad_norm": 0.19939634203910828, + "learning_rate": 0.0006, + "loss": 3.576408624649048, + "step": 4391 + }, + { + "epoch": 61.0, + "grad_norm": 0.23696118593215942, + "learning_rate": 0.0006, + "loss": 3.5633749961853027, + "step": 4392 + }, + { + "epoch": 61.0, + "eval_loss": 3.9743118286132812, + "eval_runtime": 44.7392, + "eval_samples_per_second": 54.583, + "eval_steps_per_second": 3.42, + "step": 4392 + }, + { + "epoch": 61.01397990388816, + "grad_norm": 0.24024035036563873, + "learning_rate": 0.0006, + "loss": 3.532285690307617, + "step": 4393 + }, + { + "epoch": 61.02795980777632, + "grad_norm": 0.2475728690624237, + "learning_rate": 0.0006, + "loss": 3.543304920196533, + "step": 4394 + }, + { + "epoch": 61.04193971166448, + "grad_norm": 0.23326511681079865, + "learning_rate": 0.0006, + "loss": 3.5022737979888916, + "step": 4395 + }, + { + "epoch": 61.05591961555265, + "grad_norm": 0.21414779126644135, + "learning_rate": 0.0006, + "loss": 3.5337772369384766, + "step": 4396 + }, + { + "epoch": 61.0698995194408, + "grad_norm": 0.2234504371881485, + "learning_rate": 0.0006, + "loss": 3.539985179901123, + "step": 4397 + }, + { + "epoch": 61.083879423328966, + "grad_norm": 0.2199121117591858, + "learning_rate": 0.0006, + "loss": 3.5312232971191406, + "step": 4398 + }, + { + "epoch": 61.09785932721712, + "grad_norm": 0.2444634735584259, + "learning_rate": 0.0006, + "loss": 3.527348518371582, + "step": 4399 + }, + { + "epoch": 61.111839231105286, + "grad_norm": 0.29022055864334106, + "learning_rate": 0.0006, + "loss": 3.4902563095092773, + "step": 4400 + }, + { + "epoch": 61.12581913499345, + "grad_norm": 0.29494911432266235, + "learning_rate": 0.0006, + "loss": 3.498292922973633, + "step": 4401 + }, + { + "epoch": 61.139799038881605, + "grad_norm": 0.22292214632034302, + "learning_rate": 0.0006, + "loss": 3.533914089202881, + "step": 4402 + }, + { + "epoch": 61.15377894276977, + "grad_norm": 0.22136220335960388, + "learning_rate": 0.0006, + "loss": 3.5109519958496094, + "step": 4403 + }, + { + "epoch": 61.16775884665793, + "grad_norm": 0.2325095534324646, + "learning_rate": 0.0006, + "loss": 3.5289368629455566, + "step": 4404 + }, + { + "epoch": 61.18173875054609, + "grad_norm": 0.2413562536239624, + "learning_rate": 0.0006, + "loss": 3.518467903137207, + "step": 4405 + }, + { + "epoch": 61.19571865443425, + "grad_norm": 0.25906774401664734, + "learning_rate": 0.0006, + "loss": 3.525516986846924, + "step": 4406 + }, + { + "epoch": 61.20969855832241, + "grad_norm": 0.27686211466789246, + "learning_rate": 0.0006, + "loss": 3.5516865253448486, + "step": 4407 + }, + { + "epoch": 61.22367846221057, + "grad_norm": 0.2906339764595032, + "learning_rate": 0.0006, + "loss": 3.541128158569336, + "step": 4408 + }, + { + "epoch": 61.237658366098735, + "grad_norm": 0.27868953347206116, + "learning_rate": 0.0006, + "loss": 3.5193347930908203, + "step": 4409 + }, + { + "epoch": 61.25163826998689, + "grad_norm": 0.27658969163894653, + "learning_rate": 0.0006, + "loss": 3.502227783203125, + "step": 4410 + }, + { + "epoch": 61.265618173875055, + "grad_norm": 0.2933507561683655, + "learning_rate": 0.0006, + "loss": 3.530291795730591, + "step": 4411 + }, + { + "epoch": 61.27959807776322, + "grad_norm": 0.2631373405456543, + "learning_rate": 0.0006, + "loss": 3.551851749420166, + "step": 4412 + }, + { + "epoch": 61.293577981651374, + "grad_norm": 0.2546952962875366, + "learning_rate": 0.0006, + "loss": 3.5503034591674805, + "step": 4413 + }, + { + "epoch": 61.30755788553954, + "grad_norm": 0.23794181644916534, + "learning_rate": 0.0006, + "loss": 3.546926498413086, + "step": 4414 + }, + { + "epoch": 61.3215377894277, + "grad_norm": 0.24853180348873138, + "learning_rate": 0.0006, + "loss": 3.514120101928711, + "step": 4415 + }, + { + "epoch": 61.33551769331586, + "grad_norm": 0.22304897010326385, + "learning_rate": 0.0006, + "loss": 3.5430846214294434, + "step": 4416 + }, + { + "epoch": 61.34949759720402, + "grad_norm": 0.2315143197774887, + "learning_rate": 0.0006, + "loss": 3.520509719848633, + "step": 4417 + }, + { + "epoch": 61.36347750109218, + "grad_norm": 0.22943219542503357, + "learning_rate": 0.0006, + "loss": 3.5467031002044678, + "step": 4418 + }, + { + "epoch": 61.37745740498034, + "grad_norm": 0.20610259473323822, + "learning_rate": 0.0006, + "loss": 3.523524761199951, + "step": 4419 + }, + { + "epoch": 61.391437308868504, + "grad_norm": 0.23042091727256775, + "learning_rate": 0.0006, + "loss": 3.5619053840637207, + "step": 4420 + }, + { + "epoch": 61.40541721275666, + "grad_norm": 0.23525655269622803, + "learning_rate": 0.0006, + "loss": 3.5647311210632324, + "step": 4421 + }, + { + "epoch": 61.419397116644824, + "grad_norm": 0.24424530565738678, + "learning_rate": 0.0006, + "loss": 3.5278732776641846, + "step": 4422 + }, + { + "epoch": 61.43337702053299, + "grad_norm": 0.22195497155189514, + "learning_rate": 0.0006, + "loss": 3.500657558441162, + "step": 4423 + }, + { + "epoch": 61.44735692442114, + "grad_norm": 0.20596756041049957, + "learning_rate": 0.0006, + "loss": 3.5107016563415527, + "step": 4424 + }, + { + "epoch": 61.46133682830931, + "grad_norm": 0.21293926239013672, + "learning_rate": 0.0006, + "loss": 3.5248196125030518, + "step": 4425 + }, + { + "epoch": 61.47531673219746, + "grad_norm": 0.21993403136730194, + "learning_rate": 0.0006, + "loss": 3.5247411727905273, + "step": 4426 + }, + { + "epoch": 61.489296636085626, + "grad_norm": 0.19609302282333374, + "learning_rate": 0.0006, + "loss": 3.543978452682495, + "step": 4427 + }, + { + "epoch": 61.50327653997379, + "grad_norm": 0.2064359486103058, + "learning_rate": 0.0006, + "loss": 3.525879144668579, + "step": 4428 + }, + { + "epoch": 61.517256443861946, + "grad_norm": 0.221832275390625, + "learning_rate": 0.0006, + "loss": 3.542086601257324, + "step": 4429 + }, + { + "epoch": 61.53123634775011, + "grad_norm": 0.20173773169517517, + "learning_rate": 0.0006, + "loss": 3.5395596027374268, + "step": 4430 + }, + { + "epoch": 61.54521625163827, + "grad_norm": 0.21064360439777374, + "learning_rate": 0.0006, + "loss": 3.5651049613952637, + "step": 4431 + }, + { + "epoch": 61.55919615552643, + "grad_norm": 0.2079596370458603, + "learning_rate": 0.0006, + "loss": 3.513719081878662, + "step": 4432 + }, + { + "epoch": 61.57317605941459, + "grad_norm": 0.1862022429704666, + "learning_rate": 0.0006, + "loss": 3.5438897609710693, + "step": 4433 + }, + { + "epoch": 61.58715596330275, + "grad_norm": 0.202021524310112, + "learning_rate": 0.0006, + "loss": 3.5497570037841797, + "step": 4434 + }, + { + "epoch": 61.60113586719091, + "grad_norm": 0.2252725064754486, + "learning_rate": 0.0006, + "loss": 3.5361452102661133, + "step": 4435 + }, + { + "epoch": 61.615115771079076, + "grad_norm": 0.22194477915763855, + "learning_rate": 0.0006, + "loss": 3.5436792373657227, + "step": 4436 + }, + { + "epoch": 61.62909567496723, + "grad_norm": 0.20660430192947388, + "learning_rate": 0.0006, + "loss": 3.5347955226898193, + "step": 4437 + }, + { + "epoch": 61.643075578855395, + "grad_norm": 0.19738668203353882, + "learning_rate": 0.0006, + "loss": 3.5478930473327637, + "step": 4438 + }, + { + "epoch": 61.65705548274356, + "grad_norm": 0.19570894539356232, + "learning_rate": 0.0006, + "loss": 3.581364154815674, + "step": 4439 + }, + { + "epoch": 61.671035386631715, + "grad_norm": 0.2311817854642868, + "learning_rate": 0.0006, + "loss": 3.5336194038391113, + "step": 4440 + }, + { + "epoch": 61.68501529051988, + "grad_norm": 0.23114202916622162, + "learning_rate": 0.0006, + "loss": 3.5473289489746094, + "step": 4441 + }, + { + "epoch": 61.69899519440804, + "grad_norm": 0.2412044256925583, + "learning_rate": 0.0006, + "loss": 3.558802604675293, + "step": 4442 + }, + { + "epoch": 61.7129750982962, + "grad_norm": 0.22932057082653046, + "learning_rate": 0.0006, + "loss": 3.553133726119995, + "step": 4443 + }, + { + "epoch": 61.72695500218436, + "grad_norm": 0.23192140460014343, + "learning_rate": 0.0006, + "loss": 3.5247159004211426, + "step": 4444 + }, + { + "epoch": 61.74093490607252, + "grad_norm": 0.23548972606658936, + "learning_rate": 0.0006, + "loss": 3.5654778480529785, + "step": 4445 + }, + { + "epoch": 61.75491480996068, + "grad_norm": 0.20992626249790192, + "learning_rate": 0.0006, + "loss": 3.5568647384643555, + "step": 4446 + }, + { + "epoch": 61.768894713848844, + "grad_norm": 0.20303797721862793, + "learning_rate": 0.0006, + "loss": 3.564765453338623, + "step": 4447 + }, + { + "epoch": 61.782874617737, + "grad_norm": 0.2019573301076889, + "learning_rate": 0.0006, + "loss": 3.523521900177002, + "step": 4448 + }, + { + "epoch": 61.796854521625164, + "grad_norm": 0.20591112971305847, + "learning_rate": 0.0006, + "loss": 3.5361227989196777, + "step": 4449 + }, + { + "epoch": 61.81083442551333, + "grad_norm": 0.21811535954475403, + "learning_rate": 0.0006, + "loss": 3.56982159614563, + "step": 4450 + }, + { + "epoch": 61.824814329401484, + "grad_norm": 0.24934124946594238, + "learning_rate": 0.0006, + "loss": 3.5518784523010254, + "step": 4451 + }, + { + "epoch": 61.83879423328965, + "grad_norm": 0.28142663836479187, + "learning_rate": 0.0006, + "loss": 3.5480635166168213, + "step": 4452 + }, + { + "epoch": 61.8527741371778, + "grad_norm": 0.27585235238075256, + "learning_rate": 0.0006, + "loss": 3.56685733795166, + "step": 4453 + }, + { + "epoch": 61.86675404106597, + "grad_norm": 0.24309827387332916, + "learning_rate": 0.0006, + "loss": 3.551058769226074, + "step": 4454 + }, + { + "epoch": 61.88073394495413, + "grad_norm": 0.22480300068855286, + "learning_rate": 0.0006, + "loss": 3.5644495487213135, + "step": 4455 + }, + { + "epoch": 61.89471384884229, + "grad_norm": 0.19861266016960144, + "learning_rate": 0.0006, + "loss": 3.5529613494873047, + "step": 4456 + }, + { + "epoch": 61.90869375273045, + "grad_norm": 0.20176313817501068, + "learning_rate": 0.0006, + "loss": 3.5173492431640625, + "step": 4457 + }, + { + "epoch": 61.92267365661861, + "grad_norm": 0.1964731365442276, + "learning_rate": 0.0006, + "loss": 3.5555479526519775, + "step": 4458 + }, + { + "epoch": 61.93665356050677, + "grad_norm": 0.20427751541137695, + "learning_rate": 0.0006, + "loss": 3.5312647819519043, + "step": 4459 + }, + { + "epoch": 61.95063346439493, + "grad_norm": 0.21940940618515015, + "learning_rate": 0.0006, + "loss": 3.536012649536133, + "step": 4460 + }, + { + "epoch": 61.964613368283096, + "grad_norm": 0.2100883573293686, + "learning_rate": 0.0006, + "loss": 3.5627548694610596, + "step": 4461 + }, + { + "epoch": 61.97859327217125, + "grad_norm": 0.21980689465999603, + "learning_rate": 0.0006, + "loss": 3.5933351516723633, + "step": 4462 + }, + { + "epoch": 61.992573176059416, + "grad_norm": 0.23822137713432312, + "learning_rate": 0.0006, + "loss": 3.567392349243164, + "step": 4463 + }, + { + "epoch": 62.0, + "grad_norm": 0.293637752532959, + "learning_rate": 0.0006, + "loss": 3.5707521438598633, + "step": 4464 + }, + { + "epoch": 62.0, + "eval_loss": 3.9813005924224854, + "eval_runtime": 44.8261, + "eval_samples_per_second": 54.477, + "eval_steps_per_second": 3.413, + "step": 4464 + }, + { + "epoch": 62.01397990388816, + "grad_norm": 0.2819560766220093, + "learning_rate": 0.0006, + "loss": 3.5146231651306152, + "step": 4465 + }, + { + "epoch": 62.02795980777632, + "grad_norm": 0.2446105033159256, + "learning_rate": 0.0006, + "loss": 3.48366117477417, + "step": 4466 + }, + { + "epoch": 62.04193971166448, + "grad_norm": 0.26826128363609314, + "learning_rate": 0.0006, + "loss": 3.511063814163208, + "step": 4467 + }, + { + "epoch": 62.05591961555265, + "grad_norm": 0.28266897797584534, + "learning_rate": 0.0006, + "loss": 3.560831069946289, + "step": 4468 + }, + { + "epoch": 62.0698995194408, + "grad_norm": 0.262866348028183, + "learning_rate": 0.0006, + "loss": 3.5248615741729736, + "step": 4469 + }, + { + "epoch": 62.083879423328966, + "grad_norm": 0.22957175970077515, + "learning_rate": 0.0006, + "loss": 3.518132209777832, + "step": 4470 + }, + { + "epoch": 62.09785932721712, + "grad_norm": 0.2311105579137802, + "learning_rate": 0.0006, + "loss": 3.520376443862915, + "step": 4471 + }, + { + "epoch": 62.111839231105286, + "grad_norm": 0.2455885261297226, + "learning_rate": 0.0006, + "loss": 3.532329797744751, + "step": 4472 + }, + { + "epoch": 62.12581913499345, + "grad_norm": 0.22050215303897858, + "learning_rate": 0.0006, + "loss": 3.5367608070373535, + "step": 4473 + }, + { + "epoch": 62.139799038881605, + "grad_norm": 0.2187507450580597, + "learning_rate": 0.0006, + "loss": 3.5165085792541504, + "step": 4474 + }, + { + "epoch": 62.15377894276977, + "grad_norm": 0.23510432243347168, + "learning_rate": 0.0006, + "loss": 3.5357909202575684, + "step": 4475 + }, + { + "epoch": 62.16775884665793, + "grad_norm": 0.22336673736572266, + "learning_rate": 0.0006, + "loss": 3.5183372497558594, + "step": 4476 + }, + { + "epoch": 62.18173875054609, + "grad_norm": 0.22019170224666595, + "learning_rate": 0.0006, + "loss": 3.532637596130371, + "step": 4477 + }, + { + "epoch": 62.19571865443425, + "grad_norm": 0.20902299880981445, + "learning_rate": 0.0006, + "loss": 3.5421581268310547, + "step": 4478 + }, + { + "epoch": 62.20969855832241, + "grad_norm": 0.22846505045890808, + "learning_rate": 0.0006, + "loss": 3.5008513927459717, + "step": 4479 + }, + { + "epoch": 62.22367846221057, + "grad_norm": 0.23657570779323578, + "learning_rate": 0.0006, + "loss": 3.5454330444335938, + "step": 4480 + }, + { + "epoch": 62.237658366098735, + "grad_norm": 0.22021226584911346, + "learning_rate": 0.0006, + "loss": 3.535137891769409, + "step": 4481 + }, + { + "epoch": 62.25163826998689, + "grad_norm": 0.21457694470882416, + "learning_rate": 0.0006, + "loss": 3.5051913261413574, + "step": 4482 + }, + { + "epoch": 62.265618173875055, + "grad_norm": 0.20432431995868683, + "learning_rate": 0.0006, + "loss": 3.5237550735473633, + "step": 4483 + }, + { + "epoch": 62.27959807776322, + "grad_norm": 0.20499777793884277, + "learning_rate": 0.0006, + "loss": 3.537209987640381, + "step": 4484 + }, + { + "epoch": 62.293577981651374, + "grad_norm": 0.21323661506175995, + "learning_rate": 0.0006, + "loss": 3.518765687942505, + "step": 4485 + }, + { + "epoch": 62.30755788553954, + "grad_norm": 0.19734761118888855, + "learning_rate": 0.0006, + "loss": 3.5132994651794434, + "step": 4486 + }, + { + "epoch": 62.3215377894277, + "grad_norm": 0.1844230592250824, + "learning_rate": 0.0006, + "loss": 3.5348291397094727, + "step": 4487 + }, + { + "epoch": 62.33551769331586, + "grad_norm": 0.20451737940311432, + "learning_rate": 0.0006, + "loss": 3.5055956840515137, + "step": 4488 + }, + { + "epoch": 62.34949759720402, + "grad_norm": 0.20004220306873322, + "learning_rate": 0.0006, + "loss": 3.558253526687622, + "step": 4489 + }, + { + "epoch": 62.36347750109218, + "grad_norm": 0.20544862747192383, + "learning_rate": 0.0006, + "loss": 3.5031163692474365, + "step": 4490 + }, + { + "epoch": 62.37745740498034, + "grad_norm": 0.23045147955417633, + "learning_rate": 0.0006, + "loss": 3.526170253753662, + "step": 4491 + }, + { + "epoch": 62.391437308868504, + "grad_norm": 0.2580485939979553, + "learning_rate": 0.0006, + "loss": 3.561131238937378, + "step": 4492 + }, + { + "epoch": 62.40541721275666, + "grad_norm": 0.24825656414031982, + "learning_rate": 0.0006, + "loss": 3.5550408363342285, + "step": 4493 + }, + { + "epoch": 62.419397116644824, + "grad_norm": 0.2317914366722107, + "learning_rate": 0.0006, + "loss": 3.543360948562622, + "step": 4494 + }, + { + "epoch": 62.43337702053299, + "grad_norm": 0.2186558097600937, + "learning_rate": 0.0006, + "loss": 3.5293631553649902, + "step": 4495 + }, + { + "epoch": 62.44735692442114, + "grad_norm": 0.22694920003414154, + "learning_rate": 0.0006, + "loss": 3.5315871238708496, + "step": 4496 + }, + { + "epoch": 62.46133682830931, + "grad_norm": 0.24042636156082153, + "learning_rate": 0.0006, + "loss": 3.507556915283203, + "step": 4497 + }, + { + "epoch": 62.47531673219746, + "grad_norm": 0.23853783309459686, + "learning_rate": 0.0006, + "loss": 3.546670913696289, + "step": 4498 + }, + { + "epoch": 62.489296636085626, + "grad_norm": 0.23252007365226746, + "learning_rate": 0.0006, + "loss": 3.522880792617798, + "step": 4499 + }, + { + "epoch": 62.50327653997379, + "grad_norm": 0.20553545653820038, + "learning_rate": 0.0006, + "loss": 3.5367445945739746, + "step": 4500 + }, + { + "epoch": 62.517256443861946, + "grad_norm": 0.19607895612716675, + "learning_rate": 0.0006, + "loss": 3.5319433212280273, + "step": 4501 + }, + { + "epoch": 62.53123634775011, + "grad_norm": 0.21482273936271667, + "learning_rate": 0.0006, + "loss": 3.525094509124756, + "step": 4502 + }, + { + "epoch": 62.54521625163827, + "grad_norm": 0.18248772621154785, + "learning_rate": 0.0006, + "loss": 3.5324039459228516, + "step": 4503 + }, + { + "epoch": 62.55919615552643, + "grad_norm": 0.19388431310653687, + "learning_rate": 0.0006, + "loss": 3.5579934120178223, + "step": 4504 + }, + { + "epoch": 62.57317605941459, + "grad_norm": 0.1987910121679306, + "learning_rate": 0.0006, + "loss": 3.5049524307250977, + "step": 4505 + }, + { + "epoch": 62.58715596330275, + "grad_norm": 0.2176462560892105, + "learning_rate": 0.0006, + "loss": 3.517348051071167, + "step": 4506 + }, + { + "epoch": 62.60113586719091, + "grad_norm": 0.20312298834323883, + "learning_rate": 0.0006, + "loss": 3.589355230331421, + "step": 4507 + }, + { + "epoch": 62.615115771079076, + "grad_norm": 0.20725034177303314, + "learning_rate": 0.0006, + "loss": 3.5353567600250244, + "step": 4508 + }, + { + "epoch": 62.62909567496723, + "grad_norm": 0.1944240778684616, + "learning_rate": 0.0006, + "loss": 3.5435595512390137, + "step": 4509 + }, + { + "epoch": 62.643075578855395, + "grad_norm": 0.1925448626279831, + "learning_rate": 0.0006, + "loss": 3.5406274795532227, + "step": 4510 + }, + { + "epoch": 62.65705548274356, + "grad_norm": 0.1932716965675354, + "learning_rate": 0.0006, + "loss": 3.582890748977661, + "step": 4511 + }, + { + "epoch": 62.671035386631715, + "grad_norm": 0.1993696093559265, + "learning_rate": 0.0006, + "loss": 3.533501148223877, + "step": 4512 + }, + { + "epoch": 62.68501529051988, + "grad_norm": 0.22586803138256073, + "learning_rate": 0.0006, + "loss": 3.5265021324157715, + "step": 4513 + }, + { + "epoch": 62.69899519440804, + "grad_norm": 0.22882722318172455, + "learning_rate": 0.0006, + "loss": 3.5486440658569336, + "step": 4514 + }, + { + "epoch": 62.7129750982962, + "grad_norm": 0.21674324572086334, + "learning_rate": 0.0006, + "loss": 3.5362353324890137, + "step": 4515 + }, + { + "epoch": 62.72695500218436, + "grad_norm": 0.1941487342119217, + "learning_rate": 0.0006, + "loss": 3.5191574096679688, + "step": 4516 + }, + { + "epoch": 62.74093490607252, + "grad_norm": 0.2034437507390976, + "learning_rate": 0.0006, + "loss": 3.5412280559539795, + "step": 4517 + }, + { + "epoch": 62.75491480996068, + "grad_norm": 0.22009888291358948, + "learning_rate": 0.0006, + "loss": 3.589108467102051, + "step": 4518 + }, + { + "epoch": 62.768894713848844, + "grad_norm": 0.21187400817871094, + "learning_rate": 0.0006, + "loss": 3.527048349380493, + "step": 4519 + }, + { + "epoch": 62.782874617737, + "grad_norm": 0.2089816778898239, + "learning_rate": 0.0006, + "loss": 3.551755905151367, + "step": 4520 + }, + { + "epoch": 62.796854521625164, + "grad_norm": 0.2095830738544464, + "learning_rate": 0.0006, + "loss": 3.5302011966705322, + "step": 4521 + }, + { + "epoch": 62.81083442551333, + "grad_norm": 0.20930075645446777, + "learning_rate": 0.0006, + "loss": 3.5276856422424316, + "step": 4522 + }, + { + "epoch": 62.824814329401484, + "grad_norm": 0.1876252442598343, + "learning_rate": 0.0006, + "loss": 3.5467052459716797, + "step": 4523 + }, + { + "epoch": 62.83879423328965, + "grad_norm": 0.21137461066246033, + "learning_rate": 0.0006, + "loss": 3.5446524620056152, + "step": 4524 + }, + { + "epoch": 62.8527741371778, + "grad_norm": 0.21340630948543549, + "learning_rate": 0.0006, + "loss": 3.580069065093994, + "step": 4525 + }, + { + "epoch": 62.86675404106597, + "grad_norm": 0.22623291611671448, + "learning_rate": 0.0006, + "loss": 3.5203771591186523, + "step": 4526 + }, + { + "epoch": 62.88073394495413, + "grad_norm": 0.20891177654266357, + "learning_rate": 0.0006, + "loss": 3.5408263206481934, + "step": 4527 + }, + { + "epoch": 62.89471384884229, + "grad_norm": 0.19802644848823547, + "learning_rate": 0.0006, + "loss": 3.521557569503784, + "step": 4528 + }, + { + "epoch": 62.90869375273045, + "grad_norm": 0.20889638364315033, + "learning_rate": 0.0006, + "loss": 3.535468578338623, + "step": 4529 + }, + { + "epoch": 62.92267365661861, + "grad_norm": 0.20450912415981293, + "learning_rate": 0.0006, + "loss": 3.5473756790161133, + "step": 4530 + }, + { + "epoch": 62.93665356050677, + "grad_norm": 0.24126461148262024, + "learning_rate": 0.0006, + "loss": 3.5418906211853027, + "step": 4531 + }, + { + "epoch": 62.95063346439493, + "grad_norm": 0.2789648473262787, + "learning_rate": 0.0006, + "loss": 3.5500879287719727, + "step": 4532 + }, + { + "epoch": 62.964613368283096, + "grad_norm": 0.2855475842952728, + "learning_rate": 0.0006, + "loss": 3.5589256286621094, + "step": 4533 + }, + { + "epoch": 62.97859327217125, + "grad_norm": 0.2353338748216629, + "learning_rate": 0.0006, + "loss": 3.576944351196289, + "step": 4534 + }, + { + "epoch": 62.992573176059416, + "grad_norm": 0.2360614389181137, + "learning_rate": 0.0006, + "loss": 3.550532341003418, + "step": 4535 + }, + { + "epoch": 63.0, + "grad_norm": 0.28869640827178955, + "learning_rate": 0.0006, + "loss": 3.4976563453674316, + "step": 4536 + }, + { + "epoch": 63.0, + "eval_loss": 3.967819929122925, + "eval_runtime": 44.8611, + "eval_samples_per_second": 54.435, + "eval_steps_per_second": 3.411, + "step": 4536 + }, + { + "epoch": 63.01397990388816, + "grad_norm": 0.2646687626838684, + "learning_rate": 0.0006, + "loss": 3.498749017715454, + "step": 4537 + }, + { + "epoch": 63.02795980777632, + "grad_norm": 0.26432088017463684, + "learning_rate": 0.0006, + "loss": 3.5114989280700684, + "step": 4538 + }, + { + "epoch": 63.04193971166448, + "grad_norm": 0.2657051980495453, + "learning_rate": 0.0006, + "loss": 3.5383224487304688, + "step": 4539 + }, + { + "epoch": 63.05591961555265, + "grad_norm": 0.24790945649147034, + "learning_rate": 0.0006, + "loss": 3.5148894786834717, + "step": 4540 + }, + { + "epoch": 63.0698995194408, + "grad_norm": 0.2703767716884613, + "learning_rate": 0.0006, + "loss": 3.5212574005126953, + "step": 4541 + }, + { + "epoch": 63.083879423328966, + "grad_norm": 0.28064072132110596, + "learning_rate": 0.0006, + "loss": 3.4917726516723633, + "step": 4542 + }, + { + "epoch": 63.09785932721712, + "grad_norm": 0.30201056599617004, + "learning_rate": 0.0006, + "loss": 3.524174213409424, + "step": 4543 + }, + { + "epoch": 63.111839231105286, + "grad_norm": 0.2668539583683014, + "learning_rate": 0.0006, + "loss": 3.5284507274627686, + "step": 4544 + }, + { + "epoch": 63.12581913499345, + "grad_norm": 0.23223146796226501, + "learning_rate": 0.0006, + "loss": 3.500607967376709, + "step": 4545 + }, + { + "epoch": 63.139799038881605, + "grad_norm": 0.22300627827644348, + "learning_rate": 0.0006, + "loss": 3.509087562561035, + "step": 4546 + }, + { + "epoch": 63.15377894276977, + "grad_norm": 0.217527836561203, + "learning_rate": 0.0006, + "loss": 3.518986225128174, + "step": 4547 + }, + { + "epoch": 63.16775884665793, + "grad_norm": 0.2347487509250641, + "learning_rate": 0.0006, + "loss": 3.5288784503936768, + "step": 4548 + }, + { + "epoch": 63.18173875054609, + "grad_norm": 0.21052609384059906, + "learning_rate": 0.0006, + "loss": 3.534576892852783, + "step": 4549 + }, + { + "epoch": 63.19571865443425, + "grad_norm": 0.20836210250854492, + "learning_rate": 0.0006, + "loss": 3.540663242340088, + "step": 4550 + }, + { + "epoch": 63.20969855832241, + "grad_norm": 0.2257382571697235, + "learning_rate": 0.0006, + "loss": 3.5042576789855957, + "step": 4551 + }, + { + "epoch": 63.22367846221057, + "grad_norm": 0.25684455037117004, + "learning_rate": 0.0006, + "loss": 3.546757221221924, + "step": 4552 + }, + { + "epoch": 63.237658366098735, + "grad_norm": 0.25408735871315, + "learning_rate": 0.0006, + "loss": 3.5245237350463867, + "step": 4553 + }, + { + "epoch": 63.25163826998689, + "grad_norm": 0.2105615735054016, + "learning_rate": 0.0006, + "loss": 3.4935879707336426, + "step": 4554 + }, + { + "epoch": 63.265618173875055, + "grad_norm": 0.23599031567573547, + "learning_rate": 0.0006, + "loss": 3.5445284843444824, + "step": 4555 + }, + { + "epoch": 63.27959807776322, + "grad_norm": 0.2786335349082947, + "learning_rate": 0.0006, + "loss": 3.5432677268981934, + "step": 4556 + }, + { + "epoch": 63.293577981651374, + "grad_norm": 0.26032358407974243, + "learning_rate": 0.0006, + "loss": 3.542494297027588, + "step": 4557 + }, + { + "epoch": 63.30755788553954, + "grad_norm": 0.23259027302265167, + "learning_rate": 0.0006, + "loss": 3.5343332290649414, + "step": 4558 + }, + { + "epoch": 63.3215377894277, + "grad_norm": 0.2183394432067871, + "learning_rate": 0.0006, + "loss": 3.552696466445923, + "step": 4559 + }, + { + "epoch": 63.33551769331586, + "grad_norm": 0.23014239966869354, + "learning_rate": 0.0006, + "loss": 3.507399559020996, + "step": 4560 + }, + { + "epoch": 63.34949759720402, + "grad_norm": 0.22618430852890015, + "learning_rate": 0.0006, + "loss": 3.5329864025115967, + "step": 4561 + }, + { + "epoch": 63.36347750109218, + "grad_norm": 0.22740741074085236, + "learning_rate": 0.0006, + "loss": 3.5098977088928223, + "step": 4562 + }, + { + "epoch": 63.37745740498034, + "grad_norm": 0.21428990364074707, + "learning_rate": 0.0006, + "loss": 3.5244359970092773, + "step": 4563 + }, + { + "epoch": 63.391437308868504, + "grad_norm": 0.224009707570076, + "learning_rate": 0.0006, + "loss": 3.491610288619995, + "step": 4564 + }, + { + "epoch": 63.40541721275666, + "grad_norm": 0.24859225749969482, + "learning_rate": 0.0006, + "loss": 3.534926414489746, + "step": 4565 + }, + { + "epoch": 63.419397116644824, + "grad_norm": 0.27701491117477417, + "learning_rate": 0.0006, + "loss": 3.501753091812134, + "step": 4566 + }, + { + "epoch": 63.43337702053299, + "grad_norm": 0.27911627292633057, + "learning_rate": 0.0006, + "loss": 3.5505383014678955, + "step": 4567 + }, + { + "epoch": 63.44735692442114, + "grad_norm": 0.25913184881210327, + "learning_rate": 0.0006, + "loss": 3.5086495876312256, + "step": 4568 + }, + { + "epoch": 63.46133682830931, + "grad_norm": 0.19867996871471405, + "learning_rate": 0.0006, + "loss": 3.497912645339966, + "step": 4569 + }, + { + "epoch": 63.47531673219746, + "grad_norm": 0.21337668597698212, + "learning_rate": 0.0006, + "loss": 3.511085033416748, + "step": 4570 + }, + { + "epoch": 63.489296636085626, + "grad_norm": 0.2221735268831253, + "learning_rate": 0.0006, + "loss": 3.504108190536499, + "step": 4571 + }, + { + "epoch": 63.50327653997379, + "grad_norm": 0.20739667117595673, + "learning_rate": 0.0006, + "loss": 3.50193452835083, + "step": 4572 + }, + { + "epoch": 63.517256443861946, + "grad_norm": 0.20149169862270355, + "learning_rate": 0.0006, + "loss": 3.5508787631988525, + "step": 4573 + }, + { + "epoch": 63.53123634775011, + "grad_norm": 0.19348420202732086, + "learning_rate": 0.0006, + "loss": 3.521906852722168, + "step": 4574 + }, + { + "epoch": 63.54521625163827, + "grad_norm": 0.19946886599063873, + "learning_rate": 0.0006, + "loss": 3.509187698364258, + "step": 4575 + }, + { + "epoch": 63.55919615552643, + "grad_norm": 0.21359245479106903, + "learning_rate": 0.0006, + "loss": 3.5194101333618164, + "step": 4576 + }, + { + "epoch": 63.57317605941459, + "grad_norm": 0.21726977825164795, + "learning_rate": 0.0006, + "loss": 3.553684711456299, + "step": 4577 + }, + { + "epoch": 63.58715596330275, + "grad_norm": 0.21707940101623535, + "learning_rate": 0.0006, + "loss": 3.5474231243133545, + "step": 4578 + }, + { + "epoch": 63.60113586719091, + "grad_norm": 0.2226727306842804, + "learning_rate": 0.0006, + "loss": 3.556403636932373, + "step": 4579 + }, + { + "epoch": 63.615115771079076, + "grad_norm": 0.22008022665977478, + "learning_rate": 0.0006, + "loss": 3.4910531044006348, + "step": 4580 + }, + { + "epoch": 63.62909567496723, + "grad_norm": 0.20050542056560516, + "learning_rate": 0.0006, + "loss": 3.5085577964782715, + "step": 4581 + }, + { + "epoch": 63.643075578855395, + "grad_norm": 0.21937592327594757, + "learning_rate": 0.0006, + "loss": 3.530182361602783, + "step": 4582 + }, + { + "epoch": 63.65705548274356, + "grad_norm": 0.23152779042720795, + "learning_rate": 0.0006, + "loss": 3.551499843597412, + "step": 4583 + }, + { + "epoch": 63.671035386631715, + "grad_norm": 0.22870875895023346, + "learning_rate": 0.0006, + "loss": 3.5576539039611816, + "step": 4584 + }, + { + "epoch": 63.68501529051988, + "grad_norm": 0.23679395020008087, + "learning_rate": 0.0006, + "loss": 3.5392303466796875, + "step": 4585 + }, + { + "epoch": 63.69899519440804, + "grad_norm": 0.2301628291606903, + "learning_rate": 0.0006, + "loss": 3.53672194480896, + "step": 4586 + }, + { + "epoch": 63.7129750982962, + "grad_norm": 0.20859898626804352, + "learning_rate": 0.0006, + "loss": 3.5405986309051514, + "step": 4587 + }, + { + "epoch": 63.72695500218436, + "grad_norm": 0.2263292521238327, + "learning_rate": 0.0006, + "loss": 3.557982921600342, + "step": 4588 + }, + { + "epoch": 63.74093490607252, + "grad_norm": 0.21420416235923767, + "learning_rate": 0.0006, + "loss": 3.531942129135132, + "step": 4589 + }, + { + "epoch": 63.75491480996068, + "grad_norm": 0.21604575216770172, + "learning_rate": 0.0006, + "loss": 3.54978346824646, + "step": 4590 + }, + { + "epoch": 63.768894713848844, + "grad_norm": 0.2530747354030609, + "learning_rate": 0.0006, + "loss": 3.576831817626953, + "step": 4591 + }, + { + "epoch": 63.782874617737, + "grad_norm": 0.26169830560684204, + "learning_rate": 0.0006, + "loss": 3.5594139099121094, + "step": 4592 + }, + { + "epoch": 63.796854521625164, + "grad_norm": 0.23454166948795319, + "learning_rate": 0.0006, + "loss": 3.527966022491455, + "step": 4593 + }, + { + "epoch": 63.81083442551333, + "grad_norm": 0.25329118967056274, + "learning_rate": 0.0006, + "loss": 3.555817127227783, + "step": 4594 + }, + { + "epoch": 63.824814329401484, + "grad_norm": 0.26875534653663635, + "learning_rate": 0.0006, + "loss": 3.5659937858581543, + "step": 4595 + }, + { + "epoch": 63.83879423328965, + "grad_norm": 0.2446713000535965, + "learning_rate": 0.0006, + "loss": 3.520578384399414, + "step": 4596 + }, + { + "epoch": 63.8527741371778, + "grad_norm": 0.24629594385623932, + "learning_rate": 0.0006, + "loss": 3.562185764312744, + "step": 4597 + }, + { + "epoch": 63.86675404106597, + "grad_norm": 0.25355106592178345, + "learning_rate": 0.0006, + "loss": 3.549164295196533, + "step": 4598 + }, + { + "epoch": 63.88073394495413, + "grad_norm": 0.23251968622207642, + "learning_rate": 0.0006, + "loss": 3.529660224914551, + "step": 4599 + }, + { + "epoch": 63.89471384884229, + "grad_norm": 0.21848365664482117, + "learning_rate": 0.0006, + "loss": 3.582645893096924, + "step": 4600 + }, + { + "epoch": 63.90869375273045, + "grad_norm": 0.2525595426559448, + "learning_rate": 0.0006, + "loss": 3.5324134826660156, + "step": 4601 + }, + { + "epoch": 63.92267365661861, + "grad_norm": 0.2766541838645935, + "learning_rate": 0.0006, + "loss": 3.525892734527588, + "step": 4602 + }, + { + "epoch": 63.93665356050677, + "grad_norm": 0.2581831216812134, + "learning_rate": 0.0006, + "loss": 3.568148374557495, + "step": 4603 + }, + { + "epoch": 63.95063346439493, + "grad_norm": 0.2600967288017273, + "learning_rate": 0.0006, + "loss": 3.5735561847686768, + "step": 4604 + }, + { + "epoch": 63.964613368283096, + "grad_norm": 0.3125685155391693, + "learning_rate": 0.0006, + "loss": 3.513974666595459, + "step": 4605 + }, + { + "epoch": 63.97859327217125, + "grad_norm": 0.2686053514480591, + "learning_rate": 0.0006, + "loss": 3.533506155014038, + "step": 4606 + }, + { + "epoch": 63.992573176059416, + "grad_norm": 0.23033086955547333, + "learning_rate": 0.0006, + "loss": 3.5701582431793213, + "step": 4607 + }, + { + "epoch": 64.0, + "grad_norm": 0.2688716948032379, + "learning_rate": 0.0006, + "loss": 3.5370922088623047, + "step": 4608 + }, + { + "epoch": 64.0, + "eval_loss": 3.9788827896118164, + "eval_runtime": 44.2801, + "eval_samples_per_second": 55.149, + "eval_steps_per_second": 3.455, + "step": 4608 + }, + { + "epoch": 64.01397990388816, + "grad_norm": 0.27457329630851746, + "learning_rate": 0.0006, + "loss": 3.4789271354675293, + "step": 4609 + }, + { + "epoch": 64.02795980777633, + "grad_norm": 0.29753434658050537, + "learning_rate": 0.0006, + "loss": 3.5277628898620605, + "step": 4610 + }, + { + "epoch": 64.04193971166448, + "grad_norm": 0.36113694310188293, + "learning_rate": 0.0006, + "loss": 3.5066421031951904, + "step": 4611 + }, + { + "epoch": 64.05591961555264, + "grad_norm": 0.37955453991889954, + "learning_rate": 0.0006, + "loss": 3.532745361328125, + "step": 4612 + }, + { + "epoch": 64.06989951944081, + "grad_norm": 0.3055022060871124, + "learning_rate": 0.0006, + "loss": 3.526583671569824, + "step": 4613 + }, + { + "epoch": 64.08387942332897, + "grad_norm": 0.25849053263664246, + "learning_rate": 0.0006, + "loss": 3.525885581970215, + "step": 4614 + }, + { + "epoch": 64.09785932721712, + "grad_norm": 0.31513285636901855, + "learning_rate": 0.0006, + "loss": 3.5116710662841797, + "step": 4615 + }, + { + "epoch": 64.1118392311053, + "grad_norm": 0.3306029736995697, + "learning_rate": 0.0006, + "loss": 3.52685284614563, + "step": 4616 + }, + { + "epoch": 64.12581913499345, + "grad_norm": 0.3205282688140869, + "learning_rate": 0.0006, + "loss": 3.5442304611206055, + "step": 4617 + }, + { + "epoch": 64.1397990388816, + "grad_norm": 0.30371955037117004, + "learning_rate": 0.0006, + "loss": 3.523794174194336, + "step": 4618 + }, + { + "epoch": 64.15377894276976, + "grad_norm": 0.23337553441524506, + "learning_rate": 0.0006, + "loss": 3.530444860458374, + "step": 4619 + }, + { + "epoch": 64.16775884665793, + "grad_norm": 0.2223677784204483, + "learning_rate": 0.0006, + "loss": 3.5071358680725098, + "step": 4620 + }, + { + "epoch": 64.18173875054609, + "grad_norm": 0.21216993033885956, + "learning_rate": 0.0006, + "loss": 3.504469156265259, + "step": 4621 + }, + { + "epoch": 64.19571865443424, + "grad_norm": 0.21772179007530212, + "learning_rate": 0.0006, + "loss": 3.543393135070801, + "step": 4622 + }, + { + "epoch": 64.20969855832242, + "grad_norm": 0.2010853886604309, + "learning_rate": 0.0006, + "loss": 3.5219016075134277, + "step": 4623 + }, + { + "epoch": 64.22367846221057, + "grad_norm": 0.20491622388362885, + "learning_rate": 0.0006, + "loss": 3.4971656799316406, + "step": 4624 + }, + { + "epoch": 64.23765836609873, + "grad_norm": 0.19605079293251038, + "learning_rate": 0.0006, + "loss": 3.511746883392334, + "step": 4625 + }, + { + "epoch": 64.2516382699869, + "grad_norm": 0.2011575698852539, + "learning_rate": 0.0006, + "loss": 3.4981908798217773, + "step": 4626 + }, + { + "epoch": 64.26561817387505, + "grad_norm": 0.20687544345855713, + "learning_rate": 0.0006, + "loss": 3.5076913833618164, + "step": 4627 + }, + { + "epoch": 64.27959807776321, + "grad_norm": 0.20696480572223663, + "learning_rate": 0.0006, + "loss": 3.536569595336914, + "step": 4628 + }, + { + "epoch": 64.29357798165138, + "grad_norm": 0.200603649020195, + "learning_rate": 0.0006, + "loss": 3.525024175643921, + "step": 4629 + }, + { + "epoch": 64.30755788553954, + "grad_norm": 0.2087119072675705, + "learning_rate": 0.0006, + "loss": 3.508463144302368, + "step": 4630 + }, + { + "epoch": 64.3215377894277, + "grad_norm": 0.20823124051094055, + "learning_rate": 0.0006, + "loss": 3.5153684616088867, + "step": 4631 + }, + { + "epoch": 64.33551769331586, + "grad_norm": 0.19936303794384003, + "learning_rate": 0.0006, + "loss": 3.4908385276794434, + "step": 4632 + }, + { + "epoch": 64.34949759720402, + "grad_norm": 0.20928572118282318, + "learning_rate": 0.0006, + "loss": 3.5094854831695557, + "step": 4633 + }, + { + "epoch": 64.36347750109218, + "grad_norm": 0.22391293942928314, + "learning_rate": 0.0006, + "loss": 3.514522075653076, + "step": 4634 + }, + { + "epoch": 64.37745740498035, + "grad_norm": 0.19804537296295166, + "learning_rate": 0.0006, + "loss": 3.5072293281555176, + "step": 4635 + }, + { + "epoch": 64.3914373088685, + "grad_norm": 0.18472325801849365, + "learning_rate": 0.0006, + "loss": 3.5149683952331543, + "step": 4636 + }, + { + "epoch": 64.40541721275666, + "grad_norm": 0.20187066495418549, + "learning_rate": 0.0006, + "loss": 3.5198612213134766, + "step": 4637 + }, + { + "epoch": 64.41939711664482, + "grad_norm": 0.19778090715408325, + "learning_rate": 0.0006, + "loss": 3.540841817855835, + "step": 4638 + }, + { + "epoch": 64.43337702053299, + "grad_norm": 0.20325049757957458, + "learning_rate": 0.0006, + "loss": 3.522329330444336, + "step": 4639 + }, + { + "epoch": 64.44735692442114, + "grad_norm": 0.21200744807720184, + "learning_rate": 0.0006, + "loss": 3.5492870807647705, + "step": 4640 + }, + { + "epoch": 64.4613368283093, + "grad_norm": 0.21482640504837036, + "learning_rate": 0.0006, + "loss": 3.5450363159179688, + "step": 4641 + }, + { + "epoch": 64.47531673219747, + "grad_norm": 0.2257383018732071, + "learning_rate": 0.0006, + "loss": 3.518486976623535, + "step": 4642 + }, + { + "epoch": 64.48929663608563, + "grad_norm": 0.20710107684135437, + "learning_rate": 0.0006, + "loss": 3.5212514400482178, + "step": 4643 + }, + { + "epoch": 64.50327653997378, + "grad_norm": 0.20518364012241364, + "learning_rate": 0.0006, + "loss": 3.5239462852478027, + "step": 4644 + }, + { + "epoch": 64.51725644386195, + "grad_norm": 0.20311623811721802, + "learning_rate": 0.0006, + "loss": 3.5299072265625, + "step": 4645 + }, + { + "epoch": 64.53123634775011, + "grad_norm": 0.2045847624540329, + "learning_rate": 0.0006, + "loss": 3.5337295532226562, + "step": 4646 + }, + { + "epoch": 64.54521625163827, + "grad_norm": 0.20734596252441406, + "learning_rate": 0.0006, + "loss": 3.5001375675201416, + "step": 4647 + }, + { + "epoch": 64.55919615552644, + "grad_norm": 0.2103254497051239, + "learning_rate": 0.0006, + "loss": 3.50685977935791, + "step": 4648 + }, + { + "epoch": 64.57317605941459, + "grad_norm": 0.19903342425823212, + "learning_rate": 0.0006, + "loss": 3.5295052528381348, + "step": 4649 + }, + { + "epoch": 64.58715596330275, + "grad_norm": 0.21105562150478363, + "learning_rate": 0.0006, + "loss": 3.5062971115112305, + "step": 4650 + }, + { + "epoch": 64.60113586719092, + "grad_norm": 0.2149161994457245, + "learning_rate": 0.0006, + "loss": 3.5040459632873535, + "step": 4651 + }, + { + "epoch": 64.61511577107908, + "grad_norm": 0.19698478281497955, + "learning_rate": 0.0006, + "loss": 3.541640281677246, + "step": 4652 + }, + { + "epoch": 64.62909567496723, + "grad_norm": 0.22909119725227356, + "learning_rate": 0.0006, + "loss": 3.546515941619873, + "step": 4653 + }, + { + "epoch": 64.6430755788554, + "grad_norm": 0.2322760671377182, + "learning_rate": 0.0006, + "loss": 3.5374197959899902, + "step": 4654 + }, + { + "epoch": 64.65705548274356, + "grad_norm": 0.2173723429441452, + "learning_rate": 0.0006, + "loss": 3.543529510498047, + "step": 4655 + }, + { + "epoch": 64.67103538663171, + "grad_norm": 0.21360787749290466, + "learning_rate": 0.0006, + "loss": 3.560333251953125, + "step": 4656 + }, + { + "epoch": 64.68501529051987, + "grad_norm": 0.23260995745658875, + "learning_rate": 0.0006, + "loss": 3.5468926429748535, + "step": 4657 + }, + { + "epoch": 64.69899519440804, + "grad_norm": 0.23099006712436676, + "learning_rate": 0.0006, + "loss": 3.5222787857055664, + "step": 4658 + }, + { + "epoch": 64.7129750982962, + "grad_norm": 0.20590323209762573, + "learning_rate": 0.0006, + "loss": 3.538832426071167, + "step": 4659 + }, + { + "epoch": 64.72695500218435, + "grad_norm": 0.2339620441198349, + "learning_rate": 0.0006, + "loss": 3.5201845169067383, + "step": 4660 + }, + { + "epoch": 64.74093490607252, + "grad_norm": 0.27160516381263733, + "learning_rate": 0.0006, + "loss": 3.5465309619903564, + "step": 4661 + }, + { + "epoch": 64.75491480996068, + "grad_norm": 0.2624864876270294, + "learning_rate": 0.0006, + "loss": 3.5205435752868652, + "step": 4662 + }, + { + "epoch": 64.76889471384884, + "grad_norm": 0.23907902836799622, + "learning_rate": 0.0006, + "loss": 3.553205728530884, + "step": 4663 + }, + { + "epoch": 64.78287461773701, + "grad_norm": 0.2217475026845932, + "learning_rate": 0.0006, + "loss": 3.514068603515625, + "step": 4664 + }, + { + "epoch": 64.79685452162516, + "grad_norm": 0.20445777475833893, + "learning_rate": 0.0006, + "loss": 3.5382182598114014, + "step": 4665 + }, + { + "epoch": 64.81083442551332, + "grad_norm": 0.2027028501033783, + "learning_rate": 0.0006, + "loss": 3.549323081970215, + "step": 4666 + }, + { + "epoch": 64.82481432940149, + "grad_norm": 0.2211705446243286, + "learning_rate": 0.0006, + "loss": 3.5627710819244385, + "step": 4667 + }, + { + "epoch": 64.83879423328965, + "grad_norm": 0.23401948809623718, + "learning_rate": 0.0006, + "loss": 3.5169739723205566, + "step": 4668 + }, + { + "epoch": 64.8527741371778, + "grad_norm": 0.21921628713607788, + "learning_rate": 0.0006, + "loss": 3.5405478477478027, + "step": 4669 + }, + { + "epoch": 64.86675404106597, + "grad_norm": 0.20840027928352356, + "learning_rate": 0.0006, + "loss": 3.528883218765259, + "step": 4670 + }, + { + "epoch": 64.88073394495413, + "grad_norm": 0.21593457460403442, + "learning_rate": 0.0006, + "loss": 3.570455551147461, + "step": 4671 + }, + { + "epoch": 64.89471384884229, + "grad_norm": 0.22351567447185516, + "learning_rate": 0.0006, + "loss": 3.567831516265869, + "step": 4672 + }, + { + "epoch": 64.90869375273044, + "grad_norm": 0.22733932733535767, + "learning_rate": 0.0006, + "loss": 3.55277156829834, + "step": 4673 + }, + { + "epoch": 64.92267365661861, + "grad_norm": 0.19557999074459076, + "learning_rate": 0.0006, + "loss": 3.523028612136841, + "step": 4674 + }, + { + "epoch": 64.93665356050677, + "grad_norm": 0.22674734890460968, + "learning_rate": 0.0006, + "loss": 3.565629720687866, + "step": 4675 + }, + { + "epoch": 64.95063346439493, + "grad_norm": 0.23879630863666534, + "learning_rate": 0.0006, + "loss": 3.5556788444519043, + "step": 4676 + }, + { + "epoch": 64.9646133682831, + "grad_norm": 0.24172860383987427, + "learning_rate": 0.0006, + "loss": 3.580190658569336, + "step": 4677 + }, + { + "epoch": 64.97859327217125, + "grad_norm": 0.24994441866874695, + "learning_rate": 0.0006, + "loss": 3.506659507751465, + "step": 4678 + }, + { + "epoch": 64.99257317605941, + "grad_norm": 0.20717456936836243, + "learning_rate": 0.0006, + "loss": 3.526215076446533, + "step": 4679 + }, + { + "epoch": 65.0, + "grad_norm": 0.23991262912750244, + "learning_rate": 0.0006, + "loss": 3.5615687370300293, + "step": 4680 + }, + { + "epoch": 65.0, + "eval_loss": 3.974820137023926, + "eval_runtime": 44.8927, + "eval_samples_per_second": 54.396, + "eval_steps_per_second": 3.408, + "step": 4680 + }, + { + "epoch": 65.01397990388816, + "grad_norm": 0.22059205174446106, + "learning_rate": 0.0006, + "loss": 3.4952855110168457, + "step": 4681 + }, + { + "epoch": 65.02795980777633, + "grad_norm": 0.23085950314998627, + "learning_rate": 0.0006, + "loss": 3.5180296897888184, + "step": 4682 + }, + { + "epoch": 65.04193971166448, + "grad_norm": 0.20950855314731598, + "learning_rate": 0.0006, + "loss": 3.5476295948028564, + "step": 4683 + }, + { + "epoch": 65.05591961555264, + "grad_norm": 0.1958799958229065, + "learning_rate": 0.0006, + "loss": 3.5180916786193848, + "step": 4684 + }, + { + "epoch": 65.06989951944081, + "grad_norm": 0.20676101744174957, + "learning_rate": 0.0006, + "loss": 3.4882211685180664, + "step": 4685 + }, + { + "epoch": 65.08387942332897, + "grad_norm": 0.24798569083213806, + "learning_rate": 0.0006, + "loss": 3.5030102729797363, + "step": 4686 + }, + { + "epoch": 65.09785932721712, + "grad_norm": 0.2997048795223236, + "learning_rate": 0.0006, + "loss": 3.5148534774780273, + "step": 4687 + }, + { + "epoch": 65.1118392311053, + "grad_norm": 0.27347132563591003, + "learning_rate": 0.0006, + "loss": 3.534639358520508, + "step": 4688 + }, + { + "epoch": 65.12581913499345, + "grad_norm": 0.2220011204481125, + "learning_rate": 0.0006, + "loss": 3.50504994392395, + "step": 4689 + }, + { + "epoch": 65.1397990388816, + "grad_norm": 0.2552279829978943, + "learning_rate": 0.0006, + "loss": 3.4893431663513184, + "step": 4690 + }, + { + "epoch": 65.15377894276976, + "grad_norm": 0.32200172543525696, + "learning_rate": 0.0006, + "loss": 3.515808582305908, + "step": 4691 + }, + { + "epoch": 65.16775884665793, + "grad_norm": 0.31339603662490845, + "learning_rate": 0.0006, + "loss": 3.493312358856201, + "step": 4692 + }, + { + "epoch": 65.18173875054609, + "grad_norm": 0.30790913105010986, + "learning_rate": 0.0006, + "loss": 3.5001792907714844, + "step": 4693 + }, + { + "epoch": 65.19571865443424, + "grad_norm": 0.25261157751083374, + "learning_rate": 0.0006, + "loss": 3.491820812225342, + "step": 4694 + }, + { + "epoch": 65.20969855832242, + "grad_norm": 0.20875515043735504, + "learning_rate": 0.0006, + "loss": 3.5120949745178223, + "step": 4695 + }, + { + "epoch": 65.22367846221057, + "grad_norm": 0.22966094315052032, + "learning_rate": 0.0006, + "loss": 3.4509716033935547, + "step": 4696 + }, + { + "epoch": 65.23765836609873, + "grad_norm": 0.22414445877075195, + "learning_rate": 0.0006, + "loss": 3.5032718181610107, + "step": 4697 + }, + { + "epoch": 65.2516382699869, + "grad_norm": 0.21083641052246094, + "learning_rate": 0.0006, + "loss": 3.4912984371185303, + "step": 4698 + }, + { + "epoch": 65.26561817387505, + "grad_norm": 0.21424371004104614, + "learning_rate": 0.0006, + "loss": 3.493704080581665, + "step": 4699 + }, + { + "epoch": 65.27959807776321, + "grad_norm": 0.21155135333538055, + "learning_rate": 0.0006, + "loss": 3.523045063018799, + "step": 4700 + }, + { + "epoch": 65.29357798165138, + "grad_norm": 0.2245800942182541, + "learning_rate": 0.0006, + "loss": 3.5085060596466064, + "step": 4701 + }, + { + "epoch": 65.30755788553954, + "grad_norm": 0.2271309345960617, + "learning_rate": 0.0006, + "loss": 3.51690673828125, + "step": 4702 + }, + { + "epoch": 65.3215377894277, + "grad_norm": 0.23873905837535858, + "learning_rate": 0.0006, + "loss": 3.533975124359131, + "step": 4703 + }, + { + "epoch": 65.33551769331586, + "grad_norm": 0.22801156342029572, + "learning_rate": 0.0006, + "loss": 3.554079532623291, + "step": 4704 + }, + { + "epoch": 65.34949759720402, + "grad_norm": 0.20530614256858826, + "learning_rate": 0.0006, + "loss": 3.5536623001098633, + "step": 4705 + }, + { + "epoch": 65.36347750109218, + "grad_norm": 0.19286230206489563, + "learning_rate": 0.0006, + "loss": 3.5279109477996826, + "step": 4706 + }, + { + "epoch": 65.37745740498035, + "grad_norm": 0.20883116126060486, + "learning_rate": 0.0006, + "loss": 3.526639223098755, + "step": 4707 + }, + { + "epoch": 65.3914373088685, + "grad_norm": 0.20705194771289825, + "learning_rate": 0.0006, + "loss": 3.5389089584350586, + "step": 4708 + }, + { + "epoch": 65.40541721275666, + "grad_norm": 0.1948518604040146, + "learning_rate": 0.0006, + "loss": 3.504940986633301, + "step": 4709 + }, + { + "epoch": 65.41939711664482, + "grad_norm": 0.20147304236888885, + "learning_rate": 0.0006, + "loss": 3.5085673332214355, + "step": 4710 + }, + { + "epoch": 65.43337702053299, + "grad_norm": 0.2229771912097931, + "learning_rate": 0.0006, + "loss": 3.4806604385375977, + "step": 4711 + }, + { + "epoch": 65.44735692442114, + "grad_norm": 0.252258837223053, + "learning_rate": 0.0006, + "loss": 3.5160961151123047, + "step": 4712 + }, + { + "epoch": 65.4613368283093, + "grad_norm": 0.2482563853263855, + "learning_rate": 0.0006, + "loss": 3.522674560546875, + "step": 4713 + }, + { + "epoch": 65.47531673219747, + "grad_norm": 0.22155597805976868, + "learning_rate": 0.0006, + "loss": 3.5124268531799316, + "step": 4714 + }, + { + "epoch": 65.48929663608563, + "grad_norm": 0.223913311958313, + "learning_rate": 0.0006, + "loss": 3.5122427940368652, + "step": 4715 + }, + { + "epoch": 65.50327653997378, + "grad_norm": 0.20946767926216125, + "learning_rate": 0.0006, + "loss": 3.552161693572998, + "step": 4716 + }, + { + "epoch": 65.51725644386195, + "grad_norm": 0.21044479310512543, + "learning_rate": 0.0006, + "loss": 3.5450949668884277, + "step": 4717 + }, + { + "epoch": 65.53123634775011, + "grad_norm": 0.25752949714660645, + "learning_rate": 0.0006, + "loss": 3.5267398357391357, + "step": 4718 + }, + { + "epoch": 65.54521625163827, + "grad_norm": 0.28068798780441284, + "learning_rate": 0.0006, + "loss": 3.537827491760254, + "step": 4719 + }, + { + "epoch": 65.55919615552644, + "grad_norm": 0.2259511947631836, + "learning_rate": 0.0006, + "loss": 3.540821075439453, + "step": 4720 + }, + { + "epoch": 65.57317605941459, + "grad_norm": 0.2032593935728073, + "learning_rate": 0.0006, + "loss": 3.540170669555664, + "step": 4721 + }, + { + "epoch": 65.58715596330275, + "grad_norm": 0.2432602047920227, + "learning_rate": 0.0006, + "loss": 3.5356297492980957, + "step": 4722 + }, + { + "epoch": 65.60113586719092, + "grad_norm": 0.20527289807796478, + "learning_rate": 0.0006, + "loss": 3.4675498008728027, + "step": 4723 + }, + { + "epoch": 65.61511577107908, + "grad_norm": 0.18697771430015564, + "learning_rate": 0.0006, + "loss": 3.5208992958068848, + "step": 4724 + }, + { + "epoch": 65.62909567496723, + "grad_norm": 0.2044762223958969, + "learning_rate": 0.0006, + "loss": 3.5583274364471436, + "step": 4725 + }, + { + "epoch": 65.6430755788554, + "grad_norm": 0.22855281829833984, + "learning_rate": 0.0006, + "loss": 3.5497756004333496, + "step": 4726 + }, + { + "epoch": 65.65705548274356, + "grad_norm": 0.21672320365905762, + "learning_rate": 0.0006, + "loss": 3.530869960784912, + "step": 4727 + }, + { + "epoch": 65.67103538663171, + "grad_norm": 0.20629048347473145, + "learning_rate": 0.0006, + "loss": 3.5381593704223633, + "step": 4728 + }, + { + "epoch": 65.68501529051987, + "grad_norm": 0.21036849915981293, + "learning_rate": 0.0006, + "loss": 3.531111478805542, + "step": 4729 + }, + { + "epoch": 65.69899519440804, + "grad_norm": 0.19463932514190674, + "learning_rate": 0.0006, + "loss": 3.523106098175049, + "step": 4730 + }, + { + "epoch": 65.7129750982962, + "grad_norm": 0.2210976481437683, + "learning_rate": 0.0006, + "loss": 3.5480356216430664, + "step": 4731 + }, + { + "epoch": 65.72695500218435, + "grad_norm": 0.2288331687450409, + "learning_rate": 0.0006, + "loss": 3.5317163467407227, + "step": 4732 + }, + { + "epoch": 65.74093490607252, + "grad_norm": 0.22445930540561676, + "learning_rate": 0.0006, + "loss": 3.5453107357025146, + "step": 4733 + }, + { + "epoch": 65.75491480996068, + "grad_norm": 0.20268939435482025, + "learning_rate": 0.0006, + "loss": 3.5546514987945557, + "step": 4734 + }, + { + "epoch": 65.76889471384884, + "grad_norm": 0.2070288211107254, + "learning_rate": 0.0006, + "loss": 3.5345590114593506, + "step": 4735 + }, + { + "epoch": 65.78287461773701, + "grad_norm": 0.2052922248840332, + "learning_rate": 0.0006, + "loss": 3.538299083709717, + "step": 4736 + }, + { + "epoch": 65.79685452162516, + "grad_norm": 0.2146841138601303, + "learning_rate": 0.0006, + "loss": 3.541652202606201, + "step": 4737 + }, + { + "epoch": 65.81083442551332, + "grad_norm": 0.21826434135437012, + "learning_rate": 0.0006, + "loss": 3.4880056381225586, + "step": 4738 + }, + { + "epoch": 65.82481432940149, + "grad_norm": 0.18492230772972107, + "learning_rate": 0.0006, + "loss": 3.5282340049743652, + "step": 4739 + }, + { + "epoch": 65.83879423328965, + "grad_norm": 0.2422342747449875, + "learning_rate": 0.0006, + "loss": 3.5482215881347656, + "step": 4740 + }, + { + "epoch": 65.8527741371778, + "grad_norm": 0.300968199968338, + "learning_rate": 0.0006, + "loss": 3.545173168182373, + "step": 4741 + }, + { + "epoch": 65.86675404106597, + "grad_norm": 0.23397785425186157, + "learning_rate": 0.0006, + "loss": 3.5014636516571045, + "step": 4742 + }, + { + "epoch": 65.88073394495413, + "grad_norm": 0.20114080607891083, + "learning_rate": 0.0006, + "loss": 3.517125368118286, + "step": 4743 + }, + { + "epoch": 65.89471384884229, + "grad_norm": 0.23073594272136688, + "learning_rate": 0.0006, + "loss": 3.5259623527526855, + "step": 4744 + }, + { + "epoch": 65.90869375273044, + "grad_norm": 0.25975924730300903, + "learning_rate": 0.0006, + "loss": 3.5394439697265625, + "step": 4745 + }, + { + "epoch": 65.92267365661861, + "grad_norm": 0.2565694749355316, + "learning_rate": 0.0006, + "loss": 3.5301175117492676, + "step": 4746 + }, + { + "epoch": 65.93665356050677, + "grad_norm": 0.24380211532115936, + "learning_rate": 0.0006, + "loss": 3.5519638061523438, + "step": 4747 + }, + { + "epoch": 65.95063346439493, + "grad_norm": 0.2337062805891037, + "learning_rate": 0.0006, + "loss": 3.5365114212036133, + "step": 4748 + }, + { + "epoch": 65.9646133682831, + "grad_norm": 0.2107299268245697, + "learning_rate": 0.0006, + "loss": 3.5433106422424316, + "step": 4749 + }, + { + "epoch": 65.97859327217125, + "grad_norm": 0.2159995585680008, + "learning_rate": 0.0006, + "loss": 3.539796829223633, + "step": 4750 + }, + { + "epoch": 65.99257317605941, + "grad_norm": 0.23707467317581177, + "learning_rate": 0.0006, + "loss": 3.5315332412719727, + "step": 4751 + }, + { + "epoch": 66.0, + "grad_norm": 0.27253037691116333, + "learning_rate": 0.0006, + "loss": 3.5477747917175293, + "step": 4752 + }, + { + "epoch": 66.0, + "eval_loss": 3.973580837249756, + "eval_runtime": 44.8472, + "eval_samples_per_second": 54.452, + "eval_steps_per_second": 3.412, + "step": 4752 + }, + { + "epoch": 66.01397990388816, + "grad_norm": 0.22843532264232635, + "learning_rate": 0.0006, + "loss": 3.463778018951416, + "step": 4753 + }, + { + "epoch": 66.02795980777633, + "grad_norm": 0.24956060945987701, + "learning_rate": 0.0006, + "loss": 3.5249979496002197, + "step": 4754 + }, + { + "epoch": 66.04193971166448, + "grad_norm": 0.3091195821762085, + "learning_rate": 0.0006, + "loss": 3.4742040634155273, + "step": 4755 + }, + { + "epoch": 66.05591961555264, + "grad_norm": 0.346617192029953, + "learning_rate": 0.0006, + "loss": 3.4870445728302, + "step": 4756 + }, + { + "epoch": 66.06989951944081, + "grad_norm": 0.2875824570655823, + "learning_rate": 0.0006, + "loss": 3.5412697792053223, + "step": 4757 + }, + { + "epoch": 66.08387942332897, + "grad_norm": 0.2508425712585449, + "learning_rate": 0.0006, + "loss": 3.488759756088257, + "step": 4758 + }, + { + "epoch": 66.09785932721712, + "grad_norm": 0.2538967728614807, + "learning_rate": 0.0006, + "loss": 3.536404609680176, + "step": 4759 + }, + { + "epoch": 66.1118392311053, + "grad_norm": 0.24713276326656342, + "learning_rate": 0.0006, + "loss": 3.502939462661743, + "step": 4760 + }, + { + "epoch": 66.12581913499345, + "grad_norm": 0.2381032407283783, + "learning_rate": 0.0006, + "loss": 3.5297226905822754, + "step": 4761 + }, + { + "epoch": 66.1397990388816, + "grad_norm": 0.23749777674674988, + "learning_rate": 0.0006, + "loss": 3.510740280151367, + "step": 4762 + }, + { + "epoch": 66.15377894276976, + "grad_norm": 0.24993619322776794, + "learning_rate": 0.0006, + "loss": 3.4966745376586914, + "step": 4763 + }, + { + "epoch": 66.16775884665793, + "grad_norm": 0.25855013728141785, + "learning_rate": 0.0006, + "loss": 3.545177936553955, + "step": 4764 + }, + { + "epoch": 66.18173875054609, + "grad_norm": 0.2206948697566986, + "learning_rate": 0.0006, + "loss": 3.5404415130615234, + "step": 4765 + }, + { + "epoch": 66.19571865443424, + "grad_norm": 0.2627105116844177, + "learning_rate": 0.0006, + "loss": 3.5475361347198486, + "step": 4766 + }, + { + "epoch": 66.20969855832242, + "grad_norm": 0.29578864574432373, + "learning_rate": 0.0006, + "loss": 3.510110855102539, + "step": 4767 + }, + { + "epoch": 66.22367846221057, + "grad_norm": 0.257691353559494, + "learning_rate": 0.0006, + "loss": 3.5143630504608154, + "step": 4768 + }, + { + "epoch": 66.23765836609873, + "grad_norm": 0.24346867203712463, + "learning_rate": 0.0006, + "loss": 3.5007784366607666, + "step": 4769 + }, + { + "epoch": 66.2516382699869, + "grad_norm": 0.230575293302536, + "learning_rate": 0.0006, + "loss": 3.5051684379577637, + "step": 4770 + }, + { + "epoch": 66.26561817387505, + "grad_norm": 0.23823921382427216, + "learning_rate": 0.0006, + "loss": 3.4773342609405518, + "step": 4771 + }, + { + "epoch": 66.27959807776321, + "grad_norm": 0.20743288099765778, + "learning_rate": 0.0006, + "loss": 3.496393918991089, + "step": 4772 + }, + { + "epoch": 66.29357798165138, + "grad_norm": 0.21969960629940033, + "learning_rate": 0.0006, + "loss": 3.494748830795288, + "step": 4773 + }, + { + "epoch": 66.30755788553954, + "grad_norm": 0.20902593433856964, + "learning_rate": 0.0006, + "loss": 3.529416561126709, + "step": 4774 + }, + { + "epoch": 66.3215377894277, + "grad_norm": 0.2380436211824417, + "learning_rate": 0.0006, + "loss": 3.508625030517578, + "step": 4775 + }, + { + "epoch": 66.33551769331586, + "grad_norm": 0.26387956738471985, + "learning_rate": 0.0006, + "loss": 3.4886221885681152, + "step": 4776 + }, + { + "epoch": 66.34949759720402, + "grad_norm": 0.24655069410800934, + "learning_rate": 0.0006, + "loss": 3.5089354515075684, + "step": 4777 + }, + { + "epoch": 66.36347750109218, + "grad_norm": 0.2446470856666565, + "learning_rate": 0.0006, + "loss": 3.5295841693878174, + "step": 4778 + }, + { + "epoch": 66.37745740498035, + "grad_norm": 0.23909035325050354, + "learning_rate": 0.0006, + "loss": 3.500223159790039, + "step": 4779 + }, + { + "epoch": 66.3914373088685, + "grad_norm": 0.21958141028881073, + "learning_rate": 0.0006, + "loss": 3.5225610733032227, + "step": 4780 + }, + { + "epoch": 66.40541721275666, + "grad_norm": 0.20134378969669342, + "learning_rate": 0.0006, + "loss": 3.5055198669433594, + "step": 4781 + }, + { + "epoch": 66.41939711664482, + "grad_norm": 0.22621650993824005, + "learning_rate": 0.0006, + "loss": 3.5356178283691406, + "step": 4782 + }, + { + "epoch": 66.43337702053299, + "grad_norm": 0.214684396982193, + "learning_rate": 0.0006, + "loss": 3.5069541931152344, + "step": 4783 + }, + { + "epoch": 66.44735692442114, + "grad_norm": 0.217989981174469, + "learning_rate": 0.0006, + "loss": 3.499561071395874, + "step": 4784 + }, + { + "epoch": 66.4613368283093, + "grad_norm": 0.21457986533641815, + "learning_rate": 0.0006, + "loss": 3.5139474868774414, + "step": 4785 + }, + { + "epoch": 66.47531673219747, + "grad_norm": 0.24017205834388733, + "learning_rate": 0.0006, + "loss": 3.5267739295959473, + "step": 4786 + }, + { + "epoch": 66.48929663608563, + "grad_norm": 0.22864149510860443, + "learning_rate": 0.0006, + "loss": 3.5324792861938477, + "step": 4787 + }, + { + "epoch": 66.50327653997378, + "grad_norm": 0.219966322183609, + "learning_rate": 0.0006, + "loss": 3.491529703140259, + "step": 4788 + }, + { + "epoch": 66.51725644386195, + "grad_norm": 0.23360539972782135, + "learning_rate": 0.0006, + "loss": 3.4962849617004395, + "step": 4789 + }, + { + "epoch": 66.53123634775011, + "grad_norm": 0.24652886390686035, + "learning_rate": 0.0006, + "loss": 3.510777473449707, + "step": 4790 + }, + { + "epoch": 66.54521625163827, + "grad_norm": 0.23419316112995148, + "learning_rate": 0.0006, + "loss": 3.5549509525299072, + "step": 4791 + }, + { + "epoch": 66.55919615552644, + "grad_norm": 0.2514760494232178, + "learning_rate": 0.0006, + "loss": 3.49761962890625, + "step": 4792 + }, + { + "epoch": 66.57317605941459, + "grad_norm": 0.24227535724639893, + "learning_rate": 0.0006, + "loss": 3.5556445121765137, + "step": 4793 + }, + { + "epoch": 66.58715596330275, + "grad_norm": 0.24751204252243042, + "learning_rate": 0.0006, + "loss": 3.5131940841674805, + "step": 4794 + }, + { + "epoch": 66.60113586719092, + "grad_norm": 0.24366872012615204, + "learning_rate": 0.0006, + "loss": 3.5310516357421875, + "step": 4795 + }, + { + "epoch": 66.61511577107908, + "grad_norm": 0.2177760899066925, + "learning_rate": 0.0006, + "loss": 3.5267493724823, + "step": 4796 + }, + { + "epoch": 66.62909567496723, + "grad_norm": 0.19654381275177002, + "learning_rate": 0.0006, + "loss": 3.5158896446228027, + "step": 4797 + }, + { + "epoch": 66.6430755788554, + "grad_norm": 0.2041735202074051, + "learning_rate": 0.0006, + "loss": 3.5645484924316406, + "step": 4798 + }, + { + "epoch": 66.65705548274356, + "grad_norm": 0.21368929743766785, + "learning_rate": 0.0006, + "loss": 3.5481250286102295, + "step": 4799 + }, + { + "epoch": 66.67103538663171, + "grad_norm": 0.2047458291053772, + "learning_rate": 0.0006, + "loss": 3.498279571533203, + "step": 4800 + }, + { + "epoch": 66.68501529051987, + "grad_norm": 0.21750541031360626, + "learning_rate": 0.0006, + "loss": 3.5349860191345215, + "step": 4801 + }, + { + "epoch": 66.69899519440804, + "grad_norm": 0.2415834218263626, + "learning_rate": 0.0006, + "loss": 3.5091004371643066, + "step": 4802 + }, + { + "epoch": 66.7129750982962, + "grad_norm": 0.19963665306568146, + "learning_rate": 0.0006, + "loss": 3.5369873046875, + "step": 4803 + }, + { + "epoch": 66.72695500218435, + "grad_norm": 0.23620283603668213, + "learning_rate": 0.0006, + "loss": 3.5239949226379395, + "step": 4804 + }, + { + "epoch": 66.74093490607252, + "grad_norm": 0.2616693079471588, + "learning_rate": 0.0006, + "loss": 3.545588493347168, + "step": 4805 + }, + { + "epoch": 66.75491480996068, + "grad_norm": 0.23235733807086945, + "learning_rate": 0.0006, + "loss": 3.5250823497772217, + "step": 4806 + }, + { + "epoch": 66.76889471384884, + "grad_norm": 0.20908917486667633, + "learning_rate": 0.0006, + "loss": 3.547023057937622, + "step": 4807 + }, + { + "epoch": 66.78287461773701, + "grad_norm": 0.23014947772026062, + "learning_rate": 0.0006, + "loss": 3.527070999145508, + "step": 4808 + }, + { + "epoch": 66.79685452162516, + "grad_norm": 0.2468312382698059, + "learning_rate": 0.0006, + "loss": 3.5456371307373047, + "step": 4809 + }, + { + "epoch": 66.81083442551332, + "grad_norm": 0.21409334242343903, + "learning_rate": 0.0006, + "loss": 3.5282058715820312, + "step": 4810 + }, + { + "epoch": 66.82481432940149, + "grad_norm": 0.20337609946727753, + "learning_rate": 0.0006, + "loss": 3.5054173469543457, + "step": 4811 + }, + { + "epoch": 66.83879423328965, + "grad_norm": 0.20335888862609863, + "learning_rate": 0.0006, + "loss": 3.5417919158935547, + "step": 4812 + }, + { + "epoch": 66.8527741371778, + "grad_norm": 0.20672455430030823, + "learning_rate": 0.0006, + "loss": 3.549217700958252, + "step": 4813 + }, + { + "epoch": 66.86675404106597, + "grad_norm": 0.19788624346256256, + "learning_rate": 0.0006, + "loss": 3.5244839191436768, + "step": 4814 + }, + { + "epoch": 66.88073394495413, + "grad_norm": 0.19756834208965302, + "learning_rate": 0.0006, + "loss": 3.5210156440734863, + "step": 4815 + }, + { + "epoch": 66.89471384884229, + "grad_norm": 0.18592269718647003, + "learning_rate": 0.0006, + "loss": 3.522824764251709, + "step": 4816 + }, + { + "epoch": 66.90869375273044, + "grad_norm": 0.2011021077632904, + "learning_rate": 0.0006, + "loss": 3.521613597869873, + "step": 4817 + }, + { + "epoch": 66.92267365661861, + "grad_norm": 0.20816446840763092, + "learning_rate": 0.0006, + "loss": 3.562373161315918, + "step": 4818 + }, + { + "epoch": 66.93665356050677, + "grad_norm": 0.1967775523662567, + "learning_rate": 0.0006, + "loss": 3.5357818603515625, + "step": 4819 + }, + { + "epoch": 66.95063346439493, + "grad_norm": 0.20569968223571777, + "learning_rate": 0.0006, + "loss": 3.5232982635498047, + "step": 4820 + }, + { + "epoch": 66.9646133682831, + "grad_norm": 0.2095642238855362, + "learning_rate": 0.0006, + "loss": 3.5395994186401367, + "step": 4821 + }, + { + "epoch": 66.97859327217125, + "grad_norm": 0.22340409457683563, + "learning_rate": 0.0006, + "loss": 3.5163097381591797, + "step": 4822 + }, + { + "epoch": 66.99257317605941, + "grad_norm": 0.2131485939025879, + "learning_rate": 0.0006, + "loss": 3.555629253387451, + "step": 4823 + }, + { + "epoch": 67.0, + "grad_norm": 0.22373832762241364, + "learning_rate": 0.0006, + "loss": 3.5017800331115723, + "step": 4824 + }, + { + "epoch": 67.0, + "eval_loss": 3.9781124591827393, + "eval_runtime": 44.8111, + "eval_samples_per_second": 54.495, + "eval_steps_per_second": 3.414, + "step": 4824 + }, + { + "epoch": 67.01397990388816, + "grad_norm": 0.21282735466957092, + "learning_rate": 0.0006, + "loss": 3.482837677001953, + "step": 4825 + }, + { + "epoch": 67.02795980777633, + "grad_norm": 0.23839101195335388, + "learning_rate": 0.0006, + "loss": 3.5095958709716797, + "step": 4826 + }, + { + "epoch": 67.04193971166448, + "grad_norm": 0.2598385810852051, + "learning_rate": 0.0006, + "loss": 3.463888645172119, + "step": 4827 + }, + { + "epoch": 67.05591961555264, + "grad_norm": 0.24132144451141357, + "learning_rate": 0.0006, + "loss": 3.478180408477783, + "step": 4828 + }, + { + "epoch": 67.06989951944081, + "grad_norm": 0.23276527225971222, + "learning_rate": 0.0006, + "loss": 3.5064096450805664, + "step": 4829 + }, + { + "epoch": 67.08387942332897, + "grad_norm": 0.21749058365821838, + "learning_rate": 0.0006, + "loss": 3.5057930946350098, + "step": 4830 + }, + { + "epoch": 67.09785932721712, + "grad_norm": 0.22310365736484528, + "learning_rate": 0.0006, + "loss": 3.492342233657837, + "step": 4831 + }, + { + "epoch": 67.1118392311053, + "grad_norm": 0.23109206557273865, + "learning_rate": 0.0006, + "loss": 3.4776313304901123, + "step": 4832 + }, + { + "epoch": 67.12581913499345, + "grad_norm": 0.21820154786109924, + "learning_rate": 0.0006, + "loss": 3.4983036518096924, + "step": 4833 + }, + { + "epoch": 67.1397990388816, + "grad_norm": 0.214705228805542, + "learning_rate": 0.0006, + "loss": 3.4997382164001465, + "step": 4834 + }, + { + "epoch": 67.15377894276976, + "grad_norm": 0.230570450425148, + "learning_rate": 0.0006, + "loss": 3.5172224044799805, + "step": 4835 + }, + { + "epoch": 67.16775884665793, + "grad_norm": 0.21726474165916443, + "learning_rate": 0.0006, + "loss": 3.4625420570373535, + "step": 4836 + }, + { + "epoch": 67.18173875054609, + "grad_norm": 0.21541455388069153, + "learning_rate": 0.0006, + "loss": 3.5274102687835693, + "step": 4837 + }, + { + "epoch": 67.19571865443424, + "grad_norm": 0.21431861817836761, + "learning_rate": 0.0006, + "loss": 3.5112781524658203, + "step": 4838 + }, + { + "epoch": 67.20969855832242, + "grad_norm": 0.22660572826862335, + "learning_rate": 0.0006, + "loss": 3.4687018394470215, + "step": 4839 + }, + { + "epoch": 67.22367846221057, + "grad_norm": 0.21821390092372894, + "learning_rate": 0.0006, + "loss": 3.5137336254119873, + "step": 4840 + }, + { + "epoch": 67.23765836609873, + "grad_norm": 0.20666861534118652, + "learning_rate": 0.0006, + "loss": 3.5264923572540283, + "step": 4841 + }, + { + "epoch": 67.2516382699869, + "grad_norm": 0.2266923040151596, + "learning_rate": 0.0006, + "loss": 3.5288591384887695, + "step": 4842 + }, + { + "epoch": 67.26561817387505, + "grad_norm": 0.20246101915836334, + "learning_rate": 0.0006, + "loss": 3.5267882347106934, + "step": 4843 + }, + { + "epoch": 67.27959807776321, + "grad_norm": 0.20115883648395538, + "learning_rate": 0.0006, + "loss": 3.5004916191101074, + "step": 4844 + }, + { + "epoch": 67.29357798165138, + "grad_norm": 0.21547555923461914, + "learning_rate": 0.0006, + "loss": 3.5347824096679688, + "step": 4845 + }, + { + "epoch": 67.30755788553954, + "grad_norm": 0.22675341367721558, + "learning_rate": 0.0006, + "loss": 3.5119810104370117, + "step": 4846 + }, + { + "epoch": 67.3215377894277, + "grad_norm": 0.2440510094165802, + "learning_rate": 0.0006, + "loss": 3.489138126373291, + "step": 4847 + }, + { + "epoch": 67.33551769331586, + "grad_norm": 0.3055892884731293, + "learning_rate": 0.0006, + "loss": 3.5096774101257324, + "step": 4848 + }, + { + "epoch": 67.34949759720402, + "grad_norm": 0.3053153455257416, + "learning_rate": 0.0006, + "loss": 3.4901437759399414, + "step": 4849 + }, + { + "epoch": 67.36347750109218, + "grad_norm": 0.27368026971817017, + "learning_rate": 0.0006, + "loss": 3.5251317024230957, + "step": 4850 + }, + { + "epoch": 67.37745740498035, + "grad_norm": 0.2427835315465927, + "learning_rate": 0.0006, + "loss": 3.5069375038146973, + "step": 4851 + }, + { + "epoch": 67.3914373088685, + "grad_norm": 0.22328020632266998, + "learning_rate": 0.0006, + "loss": 3.5156240463256836, + "step": 4852 + }, + { + "epoch": 67.40541721275666, + "grad_norm": 0.22034069895744324, + "learning_rate": 0.0006, + "loss": 3.527740001678467, + "step": 4853 + }, + { + "epoch": 67.41939711664482, + "grad_norm": 0.23175004124641418, + "learning_rate": 0.0006, + "loss": 3.5049824714660645, + "step": 4854 + }, + { + "epoch": 67.43337702053299, + "grad_norm": 0.251209020614624, + "learning_rate": 0.0006, + "loss": 3.521754503250122, + "step": 4855 + }, + { + "epoch": 67.44735692442114, + "grad_norm": 0.26046663522720337, + "learning_rate": 0.0006, + "loss": 3.507568359375, + "step": 4856 + }, + { + "epoch": 67.4613368283093, + "grad_norm": 0.2206648588180542, + "learning_rate": 0.0006, + "loss": 3.513352870941162, + "step": 4857 + }, + { + "epoch": 67.47531673219747, + "grad_norm": 0.21608634293079376, + "learning_rate": 0.0006, + "loss": 3.4996538162231445, + "step": 4858 + }, + { + "epoch": 67.48929663608563, + "grad_norm": 0.24478112161159515, + "learning_rate": 0.0006, + "loss": 3.5210018157958984, + "step": 4859 + }, + { + "epoch": 67.50327653997378, + "grad_norm": 0.24971047043800354, + "learning_rate": 0.0006, + "loss": 3.5325865745544434, + "step": 4860 + }, + { + "epoch": 67.51725644386195, + "grad_norm": 0.26053082942962646, + "learning_rate": 0.0006, + "loss": 3.546248435974121, + "step": 4861 + }, + { + "epoch": 67.53123634775011, + "grad_norm": 0.2662231922149658, + "learning_rate": 0.0006, + "loss": 3.5073113441467285, + "step": 4862 + }, + { + "epoch": 67.54521625163827, + "grad_norm": 0.24797172844409943, + "learning_rate": 0.0006, + "loss": 3.536888360977173, + "step": 4863 + }, + { + "epoch": 67.55919615552644, + "grad_norm": 0.2383667528629303, + "learning_rate": 0.0006, + "loss": 3.5343832969665527, + "step": 4864 + }, + { + "epoch": 67.57317605941459, + "grad_norm": 0.2696457803249359, + "learning_rate": 0.0006, + "loss": 3.51254940032959, + "step": 4865 + }, + { + "epoch": 67.58715596330275, + "grad_norm": 0.2644849419593811, + "learning_rate": 0.0006, + "loss": 3.5213255882263184, + "step": 4866 + }, + { + "epoch": 67.60113586719092, + "grad_norm": 0.2375287413597107, + "learning_rate": 0.0006, + "loss": 3.5177063941955566, + "step": 4867 + }, + { + "epoch": 67.61511577107908, + "grad_norm": 0.2249385118484497, + "learning_rate": 0.0006, + "loss": 3.541508674621582, + "step": 4868 + }, + { + "epoch": 67.62909567496723, + "grad_norm": 0.2155243158340454, + "learning_rate": 0.0006, + "loss": 3.5091710090637207, + "step": 4869 + }, + { + "epoch": 67.6430755788554, + "grad_norm": 0.20459716022014618, + "learning_rate": 0.0006, + "loss": 3.5284833908081055, + "step": 4870 + }, + { + "epoch": 67.65705548274356, + "grad_norm": 0.22957809269428253, + "learning_rate": 0.0006, + "loss": 3.4831137657165527, + "step": 4871 + }, + { + "epoch": 67.67103538663171, + "grad_norm": 0.2776307165622711, + "learning_rate": 0.0006, + "loss": 3.5084991455078125, + "step": 4872 + }, + { + "epoch": 67.68501529051987, + "grad_norm": 0.2769255042076111, + "learning_rate": 0.0006, + "loss": 3.5352253913879395, + "step": 4873 + }, + { + "epoch": 67.69899519440804, + "grad_norm": 0.2233399897813797, + "learning_rate": 0.0006, + "loss": 3.5451040267944336, + "step": 4874 + }, + { + "epoch": 67.7129750982962, + "grad_norm": 0.20665188133716583, + "learning_rate": 0.0006, + "loss": 3.528292417526245, + "step": 4875 + }, + { + "epoch": 67.72695500218435, + "grad_norm": 0.22606195509433746, + "learning_rate": 0.0006, + "loss": 3.519838571548462, + "step": 4876 + }, + { + "epoch": 67.74093490607252, + "grad_norm": 0.22447355091571808, + "learning_rate": 0.0006, + "loss": 3.562148094177246, + "step": 4877 + }, + { + "epoch": 67.75491480996068, + "grad_norm": 0.2255096584558487, + "learning_rate": 0.0006, + "loss": 3.53926420211792, + "step": 4878 + }, + { + "epoch": 67.76889471384884, + "grad_norm": 0.2142494022846222, + "learning_rate": 0.0006, + "loss": 3.533456563949585, + "step": 4879 + }, + { + "epoch": 67.78287461773701, + "grad_norm": 0.2157258242368698, + "learning_rate": 0.0006, + "loss": 3.534109592437744, + "step": 4880 + }, + { + "epoch": 67.79685452162516, + "grad_norm": 0.20596624910831451, + "learning_rate": 0.0006, + "loss": 3.5252795219421387, + "step": 4881 + }, + { + "epoch": 67.81083442551332, + "grad_norm": 0.24075612425804138, + "learning_rate": 0.0006, + "loss": 3.549905300140381, + "step": 4882 + }, + { + "epoch": 67.82481432940149, + "grad_norm": 0.27206453680992126, + "learning_rate": 0.0006, + "loss": 3.4850993156433105, + "step": 4883 + }, + { + "epoch": 67.83879423328965, + "grad_norm": 0.2525651454925537, + "learning_rate": 0.0006, + "loss": 3.4936270713806152, + "step": 4884 + }, + { + "epoch": 67.8527741371778, + "grad_norm": 0.20669442415237427, + "learning_rate": 0.0006, + "loss": 3.5201377868652344, + "step": 4885 + }, + { + "epoch": 67.86675404106597, + "grad_norm": 0.19694887101650238, + "learning_rate": 0.0006, + "loss": 3.5146493911743164, + "step": 4886 + }, + { + "epoch": 67.88073394495413, + "grad_norm": 0.20657725632190704, + "learning_rate": 0.0006, + "loss": 3.539475917816162, + "step": 4887 + }, + { + "epoch": 67.89471384884229, + "grad_norm": 0.2321559488773346, + "learning_rate": 0.0006, + "loss": 3.541250705718994, + "step": 4888 + }, + { + "epoch": 67.90869375273044, + "grad_norm": 0.22864052653312683, + "learning_rate": 0.0006, + "loss": 3.5151207447052, + "step": 4889 + }, + { + "epoch": 67.92267365661861, + "grad_norm": 0.2121419608592987, + "learning_rate": 0.0006, + "loss": 3.5219309329986572, + "step": 4890 + }, + { + "epoch": 67.93665356050677, + "grad_norm": 0.2194126695394516, + "learning_rate": 0.0006, + "loss": 3.5411415100097656, + "step": 4891 + }, + { + "epoch": 67.95063346439493, + "grad_norm": 0.23670069873332977, + "learning_rate": 0.0006, + "loss": 3.56632137298584, + "step": 4892 + }, + { + "epoch": 67.9646133682831, + "grad_norm": 0.22159531712532043, + "learning_rate": 0.0006, + "loss": 3.5245089530944824, + "step": 4893 + }, + { + "epoch": 67.97859327217125, + "grad_norm": 0.20856274664402008, + "learning_rate": 0.0006, + "loss": 3.5363054275512695, + "step": 4894 + }, + { + "epoch": 67.99257317605941, + "grad_norm": 0.21568304300308228, + "learning_rate": 0.0006, + "loss": 3.5226120948791504, + "step": 4895 + }, + { + "epoch": 68.0, + "grad_norm": 0.22287404537200928, + "learning_rate": 0.0006, + "loss": 3.5020053386688232, + "step": 4896 + }, + { + "epoch": 68.0, + "eval_loss": 3.976909637451172, + "eval_runtime": 44.2603, + "eval_samples_per_second": 55.174, + "eval_steps_per_second": 3.457, + "step": 4896 + }, + { + "epoch": 68.01397990388816, + "grad_norm": 0.20234280824661255, + "learning_rate": 0.0006, + "loss": 3.484044075012207, + "step": 4897 + }, + { + "epoch": 68.02795980777633, + "grad_norm": 0.2183598279953003, + "learning_rate": 0.0006, + "loss": 3.4933700561523438, + "step": 4898 + }, + { + "epoch": 68.04193971166448, + "grad_norm": 0.24236822128295898, + "learning_rate": 0.0006, + "loss": 3.5028629302978516, + "step": 4899 + }, + { + "epoch": 68.05591961555264, + "grad_norm": 0.26641783118247986, + "learning_rate": 0.0006, + "loss": 3.475382089614868, + "step": 4900 + }, + { + "epoch": 68.06989951944081, + "grad_norm": 0.2867112159729004, + "learning_rate": 0.0006, + "loss": 3.5016913414001465, + "step": 4901 + }, + { + "epoch": 68.08387942332897, + "grad_norm": 0.24962085485458374, + "learning_rate": 0.0006, + "loss": 3.484367609024048, + "step": 4902 + }, + { + "epoch": 68.09785932721712, + "grad_norm": 0.2124275118112564, + "learning_rate": 0.0006, + "loss": 3.5119738578796387, + "step": 4903 + }, + { + "epoch": 68.1118392311053, + "grad_norm": 0.24732011556625366, + "learning_rate": 0.0006, + "loss": 3.486185073852539, + "step": 4904 + }, + { + "epoch": 68.12581913499345, + "grad_norm": 0.28683924674987793, + "learning_rate": 0.0006, + "loss": 3.495997905731201, + "step": 4905 + }, + { + "epoch": 68.1397990388816, + "grad_norm": 0.25751420855522156, + "learning_rate": 0.0006, + "loss": 3.4736456871032715, + "step": 4906 + }, + { + "epoch": 68.15377894276976, + "grad_norm": 0.24258914589881897, + "learning_rate": 0.0006, + "loss": 3.4900879859924316, + "step": 4907 + }, + { + "epoch": 68.16775884665793, + "grad_norm": 0.2878887951374054, + "learning_rate": 0.0006, + "loss": 3.4851484298706055, + "step": 4908 + }, + { + "epoch": 68.18173875054609, + "grad_norm": 0.27111393213272095, + "learning_rate": 0.0006, + "loss": 3.4835691452026367, + "step": 4909 + }, + { + "epoch": 68.19571865443424, + "grad_norm": 0.2475033849477768, + "learning_rate": 0.0006, + "loss": 3.4887213706970215, + "step": 4910 + }, + { + "epoch": 68.20969855832242, + "grad_norm": 0.267839252948761, + "learning_rate": 0.0006, + "loss": 3.515256404876709, + "step": 4911 + }, + { + "epoch": 68.22367846221057, + "grad_norm": 0.2135075181722641, + "learning_rate": 0.0006, + "loss": 3.5156445503234863, + "step": 4912 + }, + { + "epoch": 68.23765836609873, + "grad_norm": 0.22425328195095062, + "learning_rate": 0.0006, + "loss": 3.505338668823242, + "step": 4913 + }, + { + "epoch": 68.2516382699869, + "grad_norm": 0.2322927862405777, + "learning_rate": 0.0006, + "loss": 3.519695281982422, + "step": 4914 + }, + { + "epoch": 68.26561817387505, + "grad_norm": 0.2472568154335022, + "learning_rate": 0.0006, + "loss": 3.4845151901245117, + "step": 4915 + }, + { + "epoch": 68.27959807776321, + "grad_norm": 0.2725318968296051, + "learning_rate": 0.0006, + "loss": 3.4981484413146973, + "step": 4916 + }, + { + "epoch": 68.29357798165138, + "grad_norm": 0.2940191626548767, + "learning_rate": 0.0006, + "loss": 3.5088295936584473, + "step": 4917 + }, + { + "epoch": 68.30755788553954, + "grad_norm": 0.24303823709487915, + "learning_rate": 0.0006, + "loss": 3.492511749267578, + "step": 4918 + }, + { + "epoch": 68.3215377894277, + "grad_norm": 0.21951992809772491, + "learning_rate": 0.0006, + "loss": 3.509099006652832, + "step": 4919 + }, + { + "epoch": 68.33551769331586, + "grad_norm": 0.22776944935321808, + "learning_rate": 0.0006, + "loss": 3.501638650894165, + "step": 4920 + }, + { + "epoch": 68.34949759720402, + "grad_norm": 0.21173885464668274, + "learning_rate": 0.0006, + "loss": 3.4885807037353516, + "step": 4921 + }, + { + "epoch": 68.36347750109218, + "grad_norm": 0.2253648191690445, + "learning_rate": 0.0006, + "loss": 3.5350418090820312, + "step": 4922 + }, + { + "epoch": 68.37745740498035, + "grad_norm": 0.24312502145767212, + "learning_rate": 0.0006, + "loss": 3.490877866744995, + "step": 4923 + }, + { + "epoch": 68.3914373088685, + "grad_norm": 0.2103606015443802, + "learning_rate": 0.0006, + "loss": 3.5088863372802734, + "step": 4924 + }, + { + "epoch": 68.40541721275666, + "grad_norm": 0.19921863079071045, + "learning_rate": 0.0006, + "loss": 3.5282039642333984, + "step": 4925 + }, + { + "epoch": 68.41939711664482, + "grad_norm": 0.2041940689086914, + "learning_rate": 0.0006, + "loss": 3.5212771892547607, + "step": 4926 + }, + { + "epoch": 68.43337702053299, + "grad_norm": 0.22238804399967194, + "learning_rate": 0.0006, + "loss": 3.4951324462890625, + "step": 4927 + }, + { + "epoch": 68.44735692442114, + "grad_norm": 0.23161815106868744, + "learning_rate": 0.0006, + "loss": 3.5463013648986816, + "step": 4928 + }, + { + "epoch": 68.4613368283093, + "grad_norm": 0.21717964112758636, + "learning_rate": 0.0006, + "loss": 3.5081775188446045, + "step": 4929 + }, + { + "epoch": 68.47531673219747, + "grad_norm": 0.21505609154701233, + "learning_rate": 0.0006, + "loss": 3.52695631980896, + "step": 4930 + }, + { + "epoch": 68.48929663608563, + "grad_norm": 0.2720189094543457, + "learning_rate": 0.0006, + "loss": 3.497748374938965, + "step": 4931 + }, + { + "epoch": 68.50327653997378, + "grad_norm": 0.2619168758392334, + "learning_rate": 0.0006, + "loss": 3.5015270709991455, + "step": 4932 + }, + { + "epoch": 68.51725644386195, + "grad_norm": 0.21718725562095642, + "learning_rate": 0.0006, + "loss": 3.533599853515625, + "step": 4933 + }, + { + "epoch": 68.53123634775011, + "grad_norm": 0.22977295517921448, + "learning_rate": 0.0006, + "loss": 3.507884979248047, + "step": 4934 + }, + { + "epoch": 68.54521625163827, + "grad_norm": 0.230342298746109, + "learning_rate": 0.0006, + "loss": 3.497065544128418, + "step": 4935 + }, + { + "epoch": 68.55919615552644, + "grad_norm": 0.2253657728433609, + "learning_rate": 0.0006, + "loss": 3.5066728591918945, + "step": 4936 + }, + { + "epoch": 68.57317605941459, + "grad_norm": 0.23173992335796356, + "learning_rate": 0.0006, + "loss": 3.5072999000549316, + "step": 4937 + }, + { + "epoch": 68.58715596330275, + "grad_norm": 0.22984914481639862, + "learning_rate": 0.0006, + "loss": 3.5296144485473633, + "step": 4938 + }, + { + "epoch": 68.60113586719092, + "grad_norm": 0.2349584549665451, + "learning_rate": 0.0006, + "loss": 3.5185141563415527, + "step": 4939 + }, + { + "epoch": 68.61511577107908, + "grad_norm": 0.2469010204076767, + "learning_rate": 0.0006, + "loss": 3.545579433441162, + "step": 4940 + }, + { + "epoch": 68.62909567496723, + "grad_norm": 0.23078389465808868, + "learning_rate": 0.0006, + "loss": 3.5281553268432617, + "step": 4941 + }, + { + "epoch": 68.6430755788554, + "grad_norm": 0.23545116186141968, + "learning_rate": 0.0006, + "loss": 3.5376791954040527, + "step": 4942 + }, + { + "epoch": 68.65705548274356, + "grad_norm": 0.22288277745246887, + "learning_rate": 0.0006, + "loss": 3.490978240966797, + "step": 4943 + }, + { + "epoch": 68.67103538663171, + "grad_norm": 0.21703778207302094, + "learning_rate": 0.0006, + "loss": 3.505856513977051, + "step": 4944 + }, + { + "epoch": 68.68501529051987, + "grad_norm": 0.24922960996627808, + "learning_rate": 0.0006, + "loss": 3.5120937824249268, + "step": 4945 + }, + { + "epoch": 68.69899519440804, + "grad_norm": 0.24075160920619965, + "learning_rate": 0.0006, + "loss": 3.515216588973999, + "step": 4946 + }, + { + "epoch": 68.7129750982962, + "grad_norm": 0.21714574098587036, + "learning_rate": 0.0006, + "loss": 3.5308592319488525, + "step": 4947 + }, + { + "epoch": 68.72695500218435, + "grad_norm": 0.21521902084350586, + "learning_rate": 0.0006, + "loss": 3.5040221214294434, + "step": 4948 + }, + { + "epoch": 68.74093490607252, + "grad_norm": 0.2078350931406021, + "learning_rate": 0.0006, + "loss": 3.5399329662323, + "step": 4949 + }, + { + "epoch": 68.75491480996068, + "grad_norm": 0.23039595782756805, + "learning_rate": 0.0006, + "loss": 3.5079939365386963, + "step": 4950 + }, + { + "epoch": 68.76889471384884, + "grad_norm": 0.23072801530361176, + "learning_rate": 0.0006, + "loss": 3.5254414081573486, + "step": 4951 + }, + { + "epoch": 68.78287461773701, + "grad_norm": 0.204904243350029, + "learning_rate": 0.0006, + "loss": 3.5212371349334717, + "step": 4952 + }, + { + "epoch": 68.79685452162516, + "grad_norm": 0.21405813097953796, + "learning_rate": 0.0006, + "loss": 3.557215690612793, + "step": 4953 + }, + { + "epoch": 68.81083442551332, + "grad_norm": 0.2332632839679718, + "learning_rate": 0.0006, + "loss": 3.522718906402588, + "step": 4954 + }, + { + "epoch": 68.82481432940149, + "grad_norm": 0.2211279273033142, + "learning_rate": 0.0006, + "loss": 3.534191608428955, + "step": 4955 + }, + { + "epoch": 68.83879423328965, + "grad_norm": 0.2153792679309845, + "learning_rate": 0.0006, + "loss": 3.497591018676758, + "step": 4956 + }, + { + "epoch": 68.8527741371778, + "grad_norm": 0.28634506464004517, + "learning_rate": 0.0006, + "loss": 3.5333778858184814, + "step": 4957 + }, + { + "epoch": 68.86675404106597, + "grad_norm": 0.2748981714248657, + "learning_rate": 0.0006, + "loss": 3.533328056335449, + "step": 4958 + }, + { + "epoch": 68.88073394495413, + "grad_norm": 0.22137348353862762, + "learning_rate": 0.0006, + "loss": 3.516744613647461, + "step": 4959 + }, + { + "epoch": 68.89471384884229, + "grad_norm": 0.21476638317108154, + "learning_rate": 0.0006, + "loss": 3.5090954303741455, + "step": 4960 + }, + { + "epoch": 68.90869375273044, + "grad_norm": 0.2204403430223465, + "learning_rate": 0.0006, + "loss": 3.534665107727051, + "step": 4961 + }, + { + "epoch": 68.92267365661861, + "grad_norm": 0.20083564519882202, + "learning_rate": 0.0006, + "loss": 3.5572776794433594, + "step": 4962 + }, + { + "epoch": 68.93665356050677, + "grad_norm": 0.23286207020282745, + "learning_rate": 0.0006, + "loss": 3.5279769897460938, + "step": 4963 + }, + { + "epoch": 68.95063346439493, + "grad_norm": 0.2934340536594391, + "learning_rate": 0.0006, + "loss": 3.5299172401428223, + "step": 4964 + }, + { + "epoch": 68.9646133682831, + "grad_norm": 0.29742664098739624, + "learning_rate": 0.0006, + "loss": 3.5258350372314453, + "step": 4965 + }, + { + "epoch": 68.97859327217125, + "grad_norm": 0.23674239218235016, + "learning_rate": 0.0006, + "loss": 3.511875629425049, + "step": 4966 + }, + { + "epoch": 68.99257317605941, + "grad_norm": 0.1859714239835739, + "learning_rate": 0.0006, + "loss": 3.5111045837402344, + "step": 4967 + }, + { + "epoch": 69.0, + "grad_norm": 0.21548990905284882, + "learning_rate": 0.0006, + "loss": 3.567469358444214, + "step": 4968 + }, + { + "epoch": 69.0, + "eval_loss": 3.987680673599243, + "eval_runtime": 44.8193, + "eval_samples_per_second": 54.485, + "eval_steps_per_second": 3.414, + "step": 4968 + }, + { + "epoch": 69.01397990388816, + "grad_norm": 0.25460419058799744, + "learning_rate": 0.0006, + "loss": 3.513350009918213, + "step": 4969 + }, + { + "epoch": 69.02795980777633, + "grad_norm": 0.2635819613933563, + "learning_rate": 0.0006, + "loss": 3.516538143157959, + "step": 4970 + }, + { + "epoch": 69.04193971166448, + "grad_norm": 0.25024983286857605, + "learning_rate": 0.0006, + "loss": 3.501711845397949, + "step": 4971 + }, + { + "epoch": 69.05591961555264, + "grad_norm": 0.23533429205417633, + "learning_rate": 0.0006, + "loss": 3.4735984802246094, + "step": 4972 + }, + { + "epoch": 69.06989951944081, + "grad_norm": 0.23477932810783386, + "learning_rate": 0.0006, + "loss": 3.532632827758789, + "step": 4973 + }, + { + "epoch": 69.08387942332897, + "grad_norm": 0.23769758641719818, + "learning_rate": 0.0006, + "loss": 3.4775495529174805, + "step": 4974 + }, + { + "epoch": 69.09785932721712, + "grad_norm": 0.24599312245845795, + "learning_rate": 0.0006, + "loss": 3.481222629547119, + "step": 4975 + }, + { + "epoch": 69.1118392311053, + "grad_norm": 0.24212618172168732, + "learning_rate": 0.0006, + "loss": 3.485240936279297, + "step": 4976 + }, + { + "epoch": 69.12581913499345, + "grad_norm": 0.2271437644958496, + "learning_rate": 0.0006, + "loss": 3.476949691772461, + "step": 4977 + }, + { + "epoch": 69.1397990388816, + "grad_norm": 0.2542489469051361, + "learning_rate": 0.0006, + "loss": 3.4601399898529053, + "step": 4978 + }, + { + "epoch": 69.15377894276976, + "grad_norm": 0.24926388263702393, + "learning_rate": 0.0006, + "loss": 3.4832189083099365, + "step": 4979 + }, + { + "epoch": 69.16775884665793, + "grad_norm": 0.22356736660003662, + "learning_rate": 0.0006, + "loss": 3.5187554359436035, + "step": 4980 + }, + { + "epoch": 69.18173875054609, + "grad_norm": 0.21727295219898224, + "learning_rate": 0.0006, + "loss": 3.5310418605804443, + "step": 4981 + }, + { + "epoch": 69.19571865443424, + "grad_norm": 0.22234170138835907, + "learning_rate": 0.0006, + "loss": 3.506479263305664, + "step": 4982 + }, + { + "epoch": 69.20969855832242, + "grad_norm": 0.21620802581310272, + "learning_rate": 0.0006, + "loss": 3.488720655441284, + "step": 4983 + }, + { + "epoch": 69.22367846221057, + "grad_norm": 0.23558273911476135, + "learning_rate": 0.0006, + "loss": 3.4884839057922363, + "step": 4984 + }, + { + "epoch": 69.23765836609873, + "grad_norm": 0.2330513894557953, + "learning_rate": 0.0006, + "loss": 3.4810781478881836, + "step": 4985 + }, + { + "epoch": 69.2516382699869, + "grad_norm": 0.23570097982883453, + "learning_rate": 0.0006, + "loss": 3.4966390132904053, + "step": 4986 + }, + { + "epoch": 69.26561817387505, + "grad_norm": 0.2415456771850586, + "learning_rate": 0.0006, + "loss": 3.499464511871338, + "step": 4987 + }, + { + "epoch": 69.27959807776321, + "grad_norm": 0.22498410940170288, + "learning_rate": 0.0006, + "loss": 3.494260311126709, + "step": 4988 + }, + { + "epoch": 69.29357798165138, + "grad_norm": 0.23802009224891663, + "learning_rate": 0.0006, + "loss": 3.4801578521728516, + "step": 4989 + }, + { + "epoch": 69.30755788553954, + "grad_norm": 0.24189673364162445, + "learning_rate": 0.0006, + "loss": 3.513599395751953, + "step": 4990 + }, + { + "epoch": 69.3215377894277, + "grad_norm": 0.21577486395835876, + "learning_rate": 0.0006, + "loss": 3.493995428085327, + "step": 4991 + }, + { + "epoch": 69.33551769331586, + "grad_norm": 0.21220745146274567, + "learning_rate": 0.0006, + "loss": 3.495041847229004, + "step": 4992 + }, + { + "epoch": 69.34949759720402, + "grad_norm": 0.248879075050354, + "learning_rate": 0.0006, + "loss": 3.5003933906555176, + "step": 4993 + }, + { + "epoch": 69.36347750109218, + "grad_norm": 0.26753994822502136, + "learning_rate": 0.0006, + "loss": 3.491333484649658, + "step": 4994 + }, + { + "epoch": 69.37745740498035, + "grad_norm": 0.24140691757202148, + "learning_rate": 0.0006, + "loss": 3.495715618133545, + "step": 4995 + }, + { + "epoch": 69.3914373088685, + "grad_norm": 0.20997264981269836, + "learning_rate": 0.0006, + "loss": 3.520455837249756, + "step": 4996 + }, + { + "epoch": 69.40541721275666, + "grad_norm": 0.21708904206752777, + "learning_rate": 0.0006, + "loss": 3.4696202278137207, + "step": 4997 + }, + { + "epoch": 69.41939711664482, + "grad_norm": 0.25731977820396423, + "learning_rate": 0.0006, + "loss": 3.4827113151550293, + "step": 4998 + }, + { + "epoch": 69.43337702053299, + "grad_norm": 0.24132139980793, + "learning_rate": 0.0006, + "loss": 3.5224547386169434, + "step": 4999 + }, + { + "epoch": 69.44735692442114, + "grad_norm": 0.21150226891040802, + "learning_rate": 0.0006, + "loss": 3.4872965812683105, + "step": 5000 + }, + { + "epoch": 69.4613368283093, + "grad_norm": 0.20874962210655212, + "learning_rate": 0.0006, + "loss": 3.477656364440918, + "step": 5001 + }, + { + "epoch": 69.47531673219747, + "grad_norm": 0.20523078739643097, + "learning_rate": 0.0006, + "loss": 3.4912261962890625, + "step": 5002 + }, + { + "epoch": 69.48929663608563, + "grad_norm": 0.20590092241764069, + "learning_rate": 0.0006, + "loss": 3.5227253437042236, + "step": 5003 + }, + { + "epoch": 69.50327653997378, + "grad_norm": 0.21837440133094788, + "learning_rate": 0.0006, + "loss": 3.514094591140747, + "step": 5004 + }, + { + "epoch": 69.51725644386195, + "grad_norm": 0.23487630486488342, + "learning_rate": 0.0006, + "loss": 3.517775535583496, + "step": 5005 + }, + { + "epoch": 69.53123634775011, + "grad_norm": 0.23771126568317413, + "learning_rate": 0.0006, + "loss": 3.5164601802825928, + "step": 5006 + }, + { + "epoch": 69.54521625163827, + "grad_norm": 0.23423148691654205, + "learning_rate": 0.0006, + "loss": 3.5120983123779297, + "step": 5007 + }, + { + "epoch": 69.55919615552644, + "grad_norm": 0.2332620471715927, + "learning_rate": 0.0006, + "loss": 3.5184125900268555, + "step": 5008 + }, + { + "epoch": 69.57317605941459, + "grad_norm": 0.24148650467395782, + "learning_rate": 0.0006, + "loss": 3.509979248046875, + "step": 5009 + }, + { + "epoch": 69.58715596330275, + "grad_norm": 0.20881295204162598, + "learning_rate": 0.0006, + "loss": 3.5542125701904297, + "step": 5010 + }, + { + "epoch": 69.60113586719092, + "grad_norm": 0.21871483325958252, + "learning_rate": 0.0006, + "loss": 3.5178754329681396, + "step": 5011 + }, + { + "epoch": 69.61511577107908, + "grad_norm": 0.21630224585533142, + "learning_rate": 0.0006, + "loss": 3.5215046405792236, + "step": 5012 + }, + { + "epoch": 69.62909567496723, + "grad_norm": 0.2211679369211197, + "learning_rate": 0.0006, + "loss": 3.5213570594787598, + "step": 5013 + }, + { + "epoch": 69.6430755788554, + "grad_norm": 0.2206520140171051, + "learning_rate": 0.0006, + "loss": 3.5378212928771973, + "step": 5014 + }, + { + "epoch": 69.65705548274356, + "grad_norm": 0.21500450372695923, + "learning_rate": 0.0006, + "loss": 3.536560535430908, + "step": 5015 + }, + { + "epoch": 69.67103538663171, + "grad_norm": 0.2839236855506897, + "learning_rate": 0.0006, + "loss": 3.4911935329437256, + "step": 5016 + }, + { + "epoch": 69.68501529051987, + "grad_norm": 0.28307443857192993, + "learning_rate": 0.0006, + "loss": 3.5304269790649414, + "step": 5017 + }, + { + "epoch": 69.69899519440804, + "grad_norm": 0.20590558648109436, + "learning_rate": 0.0006, + "loss": 3.505474328994751, + "step": 5018 + }, + { + "epoch": 69.7129750982962, + "grad_norm": 0.24152527749538422, + "learning_rate": 0.0006, + "loss": 3.501438617706299, + "step": 5019 + }, + { + "epoch": 69.72695500218435, + "grad_norm": 0.21834975481033325, + "learning_rate": 0.0006, + "loss": 3.515756130218506, + "step": 5020 + }, + { + "epoch": 69.74093490607252, + "grad_norm": 0.2066304087638855, + "learning_rate": 0.0006, + "loss": 3.507535457611084, + "step": 5021 + }, + { + "epoch": 69.75491480996068, + "grad_norm": 0.2547939419746399, + "learning_rate": 0.0006, + "loss": 3.512665033340454, + "step": 5022 + }, + { + "epoch": 69.76889471384884, + "grad_norm": 0.25813716650009155, + "learning_rate": 0.0006, + "loss": 3.517632484436035, + "step": 5023 + }, + { + "epoch": 69.78287461773701, + "grad_norm": 0.223160520195961, + "learning_rate": 0.0006, + "loss": 3.5371553897857666, + "step": 5024 + }, + { + "epoch": 69.79685452162516, + "grad_norm": 0.2616842985153198, + "learning_rate": 0.0006, + "loss": 3.519502639770508, + "step": 5025 + }, + { + "epoch": 69.81083442551332, + "grad_norm": 0.2976956367492676, + "learning_rate": 0.0006, + "loss": 3.521639108657837, + "step": 5026 + }, + { + "epoch": 69.82481432940149, + "grad_norm": 0.253215491771698, + "learning_rate": 0.0006, + "loss": 3.5242714881896973, + "step": 5027 + }, + { + "epoch": 69.83879423328965, + "grad_norm": 0.2184867113828659, + "learning_rate": 0.0006, + "loss": 3.5430054664611816, + "step": 5028 + }, + { + "epoch": 69.8527741371778, + "grad_norm": 0.2110685110092163, + "learning_rate": 0.0006, + "loss": 3.518589735031128, + "step": 5029 + }, + { + "epoch": 69.86675404106597, + "grad_norm": 0.20499959588050842, + "learning_rate": 0.0006, + "loss": 3.5182108879089355, + "step": 5030 + }, + { + "epoch": 69.88073394495413, + "grad_norm": 0.21809129416942596, + "learning_rate": 0.0006, + "loss": 3.52005672454834, + "step": 5031 + }, + { + "epoch": 69.89471384884229, + "grad_norm": 0.22639480233192444, + "learning_rate": 0.0006, + "loss": 3.5405101776123047, + "step": 5032 + }, + { + "epoch": 69.90869375273044, + "grad_norm": 0.23321937024593353, + "learning_rate": 0.0006, + "loss": 3.5433502197265625, + "step": 5033 + }, + { + "epoch": 69.92267365661861, + "grad_norm": 0.22899670898914337, + "learning_rate": 0.0006, + "loss": 3.5300326347351074, + "step": 5034 + }, + { + "epoch": 69.93665356050677, + "grad_norm": 0.20367449522018433, + "learning_rate": 0.0006, + "loss": 3.5184967517852783, + "step": 5035 + }, + { + "epoch": 69.95063346439493, + "grad_norm": 0.21195004880428314, + "learning_rate": 0.0006, + "loss": 3.518951416015625, + "step": 5036 + }, + { + "epoch": 69.9646133682831, + "grad_norm": 0.23766686022281647, + "learning_rate": 0.0006, + "loss": 3.5148468017578125, + "step": 5037 + }, + { + "epoch": 69.97859327217125, + "grad_norm": 0.2558269500732422, + "learning_rate": 0.0006, + "loss": 3.5006861686706543, + "step": 5038 + }, + { + "epoch": 69.99257317605941, + "grad_norm": 0.23287998139858246, + "learning_rate": 0.0006, + "loss": 3.533900260925293, + "step": 5039 + }, + { + "epoch": 70.0, + "grad_norm": 0.24295051395893097, + "learning_rate": 0.0006, + "loss": 3.539205551147461, + "step": 5040 + }, + { + "epoch": 70.0, + "eval_loss": 3.9832167625427246, + "eval_runtime": 44.8557, + "eval_samples_per_second": 54.441, + "eval_steps_per_second": 3.411, + "step": 5040 + }, + { + "epoch": 70.01397990388816, + "grad_norm": 0.2342662364244461, + "learning_rate": 0.0006, + "loss": 3.4744529724121094, + "step": 5041 + }, + { + "epoch": 70.02795980777633, + "grad_norm": 0.24356921017169952, + "learning_rate": 0.0006, + "loss": 3.4678807258605957, + "step": 5042 + }, + { + "epoch": 70.04193971166448, + "grad_norm": 0.23141354322433472, + "learning_rate": 0.0006, + "loss": 3.4766411781311035, + "step": 5043 + }, + { + "epoch": 70.05591961555264, + "grad_norm": 0.2291923612356186, + "learning_rate": 0.0006, + "loss": 3.520775318145752, + "step": 5044 + }, + { + "epoch": 70.06989951944081, + "grad_norm": 0.24368838965892792, + "learning_rate": 0.0006, + "loss": 3.498244285583496, + "step": 5045 + }, + { + "epoch": 70.08387942332897, + "grad_norm": 0.24241037666797638, + "learning_rate": 0.0006, + "loss": 3.5297322273254395, + "step": 5046 + }, + { + "epoch": 70.09785932721712, + "grad_norm": 0.23169396817684174, + "learning_rate": 0.0006, + "loss": 3.4835686683654785, + "step": 5047 + }, + { + "epoch": 70.1118392311053, + "grad_norm": 0.21968135237693787, + "learning_rate": 0.0006, + "loss": 3.4419684410095215, + "step": 5048 + }, + { + "epoch": 70.12581913499345, + "grad_norm": 0.22738288342952728, + "learning_rate": 0.0006, + "loss": 3.4862613677978516, + "step": 5049 + }, + { + "epoch": 70.1397990388816, + "grad_norm": 0.2366214394569397, + "learning_rate": 0.0006, + "loss": 3.4799740314483643, + "step": 5050 + }, + { + "epoch": 70.15377894276976, + "grad_norm": 0.2310013324022293, + "learning_rate": 0.0006, + "loss": 3.491863250732422, + "step": 5051 + }, + { + "epoch": 70.16775884665793, + "grad_norm": 0.22765891253948212, + "learning_rate": 0.0006, + "loss": 3.4830703735351562, + "step": 5052 + }, + { + "epoch": 70.18173875054609, + "grad_norm": 0.23263567686080933, + "learning_rate": 0.0006, + "loss": 3.4692440032958984, + "step": 5053 + }, + { + "epoch": 70.19571865443424, + "grad_norm": 0.22552041709423065, + "learning_rate": 0.0006, + "loss": 3.4950807094573975, + "step": 5054 + }, + { + "epoch": 70.20969855832242, + "grad_norm": 0.2157282680273056, + "learning_rate": 0.0006, + "loss": 3.501680374145508, + "step": 5055 + }, + { + "epoch": 70.22367846221057, + "grad_norm": 0.2158394753932953, + "learning_rate": 0.0006, + "loss": 3.4894015789031982, + "step": 5056 + }, + { + "epoch": 70.23765836609873, + "grad_norm": 0.22618336975574493, + "learning_rate": 0.0006, + "loss": 3.479133129119873, + "step": 5057 + }, + { + "epoch": 70.2516382699869, + "grad_norm": 0.23803631961345673, + "learning_rate": 0.0006, + "loss": 3.4984683990478516, + "step": 5058 + }, + { + "epoch": 70.26561817387505, + "grad_norm": 0.23439951241016388, + "learning_rate": 0.0006, + "loss": 3.503323554992676, + "step": 5059 + }, + { + "epoch": 70.27959807776321, + "grad_norm": 0.23607788980007172, + "learning_rate": 0.0006, + "loss": 3.5056004524230957, + "step": 5060 + }, + { + "epoch": 70.29357798165138, + "grad_norm": 0.22633908689022064, + "learning_rate": 0.0006, + "loss": 3.5278968811035156, + "step": 5061 + }, + { + "epoch": 70.30755788553954, + "grad_norm": 0.21656733751296997, + "learning_rate": 0.0006, + "loss": 3.5163440704345703, + "step": 5062 + }, + { + "epoch": 70.3215377894277, + "grad_norm": 0.19461899995803833, + "learning_rate": 0.0006, + "loss": 3.506269931793213, + "step": 5063 + }, + { + "epoch": 70.33551769331586, + "grad_norm": 0.22591930627822876, + "learning_rate": 0.0006, + "loss": 3.51469087600708, + "step": 5064 + }, + { + "epoch": 70.34949759720402, + "grad_norm": 0.23841705918312073, + "learning_rate": 0.0006, + "loss": 3.4775524139404297, + "step": 5065 + }, + { + "epoch": 70.36347750109218, + "grad_norm": 0.24957220256328583, + "learning_rate": 0.0006, + "loss": 3.5303030014038086, + "step": 5066 + }, + { + "epoch": 70.37745740498035, + "grad_norm": 0.2574119567871094, + "learning_rate": 0.0006, + "loss": 3.524887800216675, + "step": 5067 + }, + { + "epoch": 70.3914373088685, + "grad_norm": 0.23704029619693756, + "learning_rate": 0.0006, + "loss": 3.5258219242095947, + "step": 5068 + }, + { + "epoch": 70.40541721275666, + "grad_norm": 0.221607968211174, + "learning_rate": 0.0006, + "loss": 3.5022010803222656, + "step": 5069 + }, + { + "epoch": 70.41939711664482, + "grad_norm": 0.2071426510810852, + "learning_rate": 0.0006, + "loss": 3.499718189239502, + "step": 5070 + }, + { + "epoch": 70.43337702053299, + "grad_norm": 0.2146281599998474, + "learning_rate": 0.0006, + "loss": 3.495534896850586, + "step": 5071 + }, + { + "epoch": 70.44735692442114, + "grad_norm": 0.21276946365833282, + "learning_rate": 0.0006, + "loss": 3.5138864517211914, + "step": 5072 + }, + { + "epoch": 70.4613368283093, + "grad_norm": 0.21113698184490204, + "learning_rate": 0.0006, + "loss": 3.531108856201172, + "step": 5073 + }, + { + "epoch": 70.47531673219747, + "grad_norm": 0.233713299036026, + "learning_rate": 0.0006, + "loss": 3.499675750732422, + "step": 5074 + }, + { + "epoch": 70.48929663608563, + "grad_norm": 0.2445792704820633, + "learning_rate": 0.0006, + "loss": 3.489576816558838, + "step": 5075 + }, + { + "epoch": 70.50327653997378, + "grad_norm": 0.22929179668426514, + "learning_rate": 0.0006, + "loss": 3.511636257171631, + "step": 5076 + }, + { + "epoch": 70.51725644386195, + "grad_norm": 0.21347999572753906, + "learning_rate": 0.0006, + "loss": 3.482804536819458, + "step": 5077 + }, + { + "epoch": 70.53123634775011, + "grad_norm": 0.21338650584220886, + "learning_rate": 0.0006, + "loss": 3.4532628059387207, + "step": 5078 + }, + { + "epoch": 70.54521625163827, + "grad_norm": 0.24062009155750275, + "learning_rate": 0.0006, + "loss": 3.5084481239318848, + "step": 5079 + }, + { + "epoch": 70.55919615552644, + "grad_norm": 0.2101839929819107, + "learning_rate": 0.0006, + "loss": 3.5022215843200684, + "step": 5080 + }, + { + "epoch": 70.57317605941459, + "grad_norm": 0.21427087485790253, + "learning_rate": 0.0006, + "loss": 3.468010902404785, + "step": 5081 + }, + { + "epoch": 70.58715596330275, + "grad_norm": 0.21073004603385925, + "learning_rate": 0.0006, + "loss": 3.53702974319458, + "step": 5082 + }, + { + "epoch": 70.60113586719092, + "grad_norm": 0.2176336646080017, + "learning_rate": 0.0006, + "loss": 3.4857382774353027, + "step": 5083 + }, + { + "epoch": 70.61511577107908, + "grad_norm": 0.24387815594673157, + "learning_rate": 0.0006, + "loss": 3.5301153659820557, + "step": 5084 + }, + { + "epoch": 70.62909567496723, + "grad_norm": 0.2560335397720337, + "learning_rate": 0.0006, + "loss": 3.4792633056640625, + "step": 5085 + }, + { + "epoch": 70.6430755788554, + "grad_norm": 0.24951279163360596, + "learning_rate": 0.0006, + "loss": 3.5134525299072266, + "step": 5086 + }, + { + "epoch": 70.65705548274356, + "grad_norm": 0.23483215272426605, + "learning_rate": 0.0006, + "loss": 3.5170576572418213, + "step": 5087 + }, + { + "epoch": 70.67103538663171, + "grad_norm": 0.21526923775672913, + "learning_rate": 0.0006, + "loss": 3.4973630905151367, + "step": 5088 + }, + { + "epoch": 70.68501529051987, + "grad_norm": 0.2129240781068802, + "learning_rate": 0.0006, + "loss": 3.5371346473693848, + "step": 5089 + }, + { + "epoch": 70.69899519440804, + "grad_norm": 0.22548805177211761, + "learning_rate": 0.0006, + "loss": 3.509589195251465, + "step": 5090 + }, + { + "epoch": 70.7129750982962, + "grad_norm": 0.21366626024246216, + "learning_rate": 0.0006, + "loss": 3.5004022121429443, + "step": 5091 + }, + { + "epoch": 70.72695500218435, + "grad_norm": 0.2066943347454071, + "learning_rate": 0.0006, + "loss": 3.5086469650268555, + "step": 5092 + }, + { + "epoch": 70.74093490607252, + "grad_norm": 0.20916718244552612, + "learning_rate": 0.0006, + "loss": 3.508835554122925, + "step": 5093 + }, + { + "epoch": 70.75491480996068, + "grad_norm": 0.21769332885742188, + "learning_rate": 0.0006, + "loss": 3.470569372177124, + "step": 5094 + }, + { + "epoch": 70.76889471384884, + "grad_norm": 0.2393418401479721, + "learning_rate": 0.0006, + "loss": 3.5554609298706055, + "step": 5095 + }, + { + "epoch": 70.78287461773701, + "grad_norm": 0.22856567800045013, + "learning_rate": 0.0006, + "loss": 3.5240354537963867, + "step": 5096 + }, + { + "epoch": 70.79685452162516, + "grad_norm": 0.2168598771095276, + "learning_rate": 0.0006, + "loss": 3.5223824977874756, + "step": 5097 + }, + { + "epoch": 70.81083442551332, + "grad_norm": 0.23636406660079956, + "learning_rate": 0.0006, + "loss": 3.515028953552246, + "step": 5098 + }, + { + "epoch": 70.82481432940149, + "grad_norm": 0.25196272134780884, + "learning_rate": 0.0006, + "loss": 3.5251357555389404, + "step": 5099 + }, + { + "epoch": 70.83879423328965, + "grad_norm": 0.2760903239250183, + "learning_rate": 0.0006, + "loss": 3.5171520709991455, + "step": 5100 + }, + { + "epoch": 70.8527741371778, + "grad_norm": 0.24275866150856018, + "learning_rate": 0.0006, + "loss": 3.515378713607788, + "step": 5101 + }, + { + "epoch": 70.86675404106597, + "grad_norm": 0.20806105434894562, + "learning_rate": 0.0006, + "loss": 3.5539910793304443, + "step": 5102 + }, + { + "epoch": 70.88073394495413, + "grad_norm": 0.22015595436096191, + "learning_rate": 0.0006, + "loss": 3.5204410552978516, + "step": 5103 + }, + { + "epoch": 70.89471384884229, + "grad_norm": 0.2634579837322235, + "learning_rate": 0.0006, + "loss": 3.531816005706787, + "step": 5104 + }, + { + "epoch": 70.90869375273044, + "grad_norm": 0.2532503008842468, + "learning_rate": 0.0006, + "loss": 3.494335174560547, + "step": 5105 + }, + { + "epoch": 70.92267365661861, + "grad_norm": 0.21336589753627777, + "learning_rate": 0.0006, + "loss": 3.527202606201172, + "step": 5106 + }, + { + "epoch": 70.93665356050677, + "grad_norm": 0.20789426565170288, + "learning_rate": 0.0006, + "loss": 3.516286849975586, + "step": 5107 + }, + { + "epoch": 70.95063346439493, + "grad_norm": 0.21855080127716064, + "learning_rate": 0.0006, + "loss": 3.510622978210449, + "step": 5108 + }, + { + "epoch": 70.9646133682831, + "grad_norm": 0.21742936968803406, + "learning_rate": 0.0006, + "loss": 3.5159173011779785, + "step": 5109 + }, + { + "epoch": 70.97859327217125, + "grad_norm": 0.21697010099887848, + "learning_rate": 0.0006, + "loss": 3.5253071784973145, + "step": 5110 + }, + { + "epoch": 70.99257317605941, + "grad_norm": 0.1939983069896698, + "learning_rate": 0.0006, + "loss": 3.5092079639434814, + "step": 5111 + }, + { + "epoch": 71.0, + "grad_norm": 0.21768872439861298, + "learning_rate": 0.0006, + "loss": 3.549747943878174, + "step": 5112 + }, + { + "epoch": 71.0, + "eval_loss": 3.981994867324829, + "eval_runtime": 44.7787, + "eval_samples_per_second": 54.535, + "eval_steps_per_second": 3.417, + "step": 5112 + }, + { + "epoch": 71.01397990388816, + "grad_norm": 0.20411916077136993, + "learning_rate": 0.0006, + "loss": 3.4846625328063965, + "step": 5113 + }, + { + "epoch": 71.02795980777633, + "grad_norm": 0.23582075536251068, + "learning_rate": 0.0006, + "loss": 3.5063037872314453, + "step": 5114 + }, + { + "epoch": 71.04193971166448, + "grad_norm": 0.25915080308914185, + "learning_rate": 0.0006, + "loss": 3.487607955932617, + "step": 5115 + }, + { + "epoch": 71.05591961555264, + "grad_norm": 0.279734343290329, + "learning_rate": 0.0006, + "loss": 3.4697108268737793, + "step": 5116 + }, + { + "epoch": 71.06989951944081, + "grad_norm": 0.2628752589225769, + "learning_rate": 0.0006, + "loss": 3.493368625640869, + "step": 5117 + }, + { + "epoch": 71.08387942332897, + "grad_norm": 0.22309084236621857, + "learning_rate": 0.0006, + "loss": 3.484891891479492, + "step": 5118 + }, + { + "epoch": 71.09785932721712, + "grad_norm": 0.302577406167984, + "learning_rate": 0.0006, + "loss": 3.485151767730713, + "step": 5119 + }, + { + "epoch": 71.1118392311053, + "grad_norm": 0.37276333570480347, + "learning_rate": 0.0006, + "loss": 3.4952797889709473, + "step": 5120 + }, + { + "epoch": 71.12581913499345, + "grad_norm": 0.3283502757549286, + "learning_rate": 0.0006, + "loss": 3.4817187786102295, + "step": 5121 + }, + { + "epoch": 71.1397990388816, + "grad_norm": 0.2639681398868561, + "learning_rate": 0.0006, + "loss": 3.488034248352051, + "step": 5122 + }, + { + "epoch": 71.15377894276976, + "grad_norm": 0.23883986473083496, + "learning_rate": 0.0006, + "loss": 3.4839282035827637, + "step": 5123 + }, + { + "epoch": 71.16775884665793, + "grad_norm": 0.25839197635650635, + "learning_rate": 0.0006, + "loss": 3.4969372749328613, + "step": 5124 + }, + { + "epoch": 71.18173875054609, + "grad_norm": 0.2511022090911865, + "learning_rate": 0.0006, + "loss": 3.4977002143859863, + "step": 5125 + }, + { + "epoch": 71.19571865443424, + "grad_norm": 0.23030386865139008, + "learning_rate": 0.0006, + "loss": 3.499420404434204, + "step": 5126 + }, + { + "epoch": 71.20969855832242, + "grad_norm": 0.26834407448768616, + "learning_rate": 0.0006, + "loss": 3.492626190185547, + "step": 5127 + }, + { + "epoch": 71.22367846221057, + "grad_norm": 0.25042101740837097, + "learning_rate": 0.0006, + "loss": 3.50586199760437, + "step": 5128 + }, + { + "epoch": 71.23765836609873, + "grad_norm": 0.23350484669208527, + "learning_rate": 0.0006, + "loss": 3.4870376586914062, + "step": 5129 + }, + { + "epoch": 71.2516382699869, + "grad_norm": 0.26074114441871643, + "learning_rate": 0.0006, + "loss": 3.4873902797698975, + "step": 5130 + }, + { + "epoch": 71.26561817387505, + "grad_norm": 0.23405839502811432, + "learning_rate": 0.0006, + "loss": 3.477447032928467, + "step": 5131 + }, + { + "epoch": 71.27959807776321, + "grad_norm": 0.22196513414382935, + "learning_rate": 0.0006, + "loss": 3.513475179672241, + "step": 5132 + }, + { + "epoch": 71.29357798165138, + "grad_norm": 0.21518723666667938, + "learning_rate": 0.0006, + "loss": 3.4947776794433594, + "step": 5133 + }, + { + "epoch": 71.30755788553954, + "grad_norm": 0.2067832201719284, + "learning_rate": 0.0006, + "loss": 3.4992613792419434, + "step": 5134 + }, + { + "epoch": 71.3215377894277, + "grad_norm": 0.2346884161233902, + "learning_rate": 0.0006, + "loss": 3.510505437850952, + "step": 5135 + }, + { + "epoch": 71.33551769331586, + "grad_norm": 0.21138189733028412, + "learning_rate": 0.0006, + "loss": 3.4731202125549316, + "step": 5136 + }, + { + "epoch": 71.34949759720402, + "grad_norm": 0.21185064315795898, + "learning_rate": 0.0006, + "loss": 3.5232839584350586, + "step": 5137 + }, + { + "epoch": 71.36347750109218, + "grad_norm": 0.25712820887565613, + "learning_rate": 0.0006, + "loss": 3.46025013923645, + "step": 5138 + }, + { + "epoch": 71.37745740498035, + "grad_norm": 0.21276356279850006, + "learning_rate": 0.0006, + "loss": 3.489804983139038, + "step": 5139 + }, + { + "epoch": 71.3914373088685, + "grad_norm": 0.2022353708744049, + "learning_rate": 0.0006, + "loss": 3.504286289215088, + "step": 5140 + }, + { + "epoch": 71.40541721275666, + "grad_norm": 0.21934957802295685, + "learning_rate": 0.0006, + "loss": 3.517760753631592, + "step": 5141 + }, + { + "epoch": 71.41939711664482, + "grad_norm": 0.2196030169725418, + "learning_rate": 0.0006, + "loss": 3.5004754066467285, + "step": 5142 + }, + { + "epoch": 71.43337702053299, + "grad_norm": 0.2015426605939865, + "learning_rate": 0.0006, + "loss": 3.465399980545044, + "step": 5143 + }, + { + "epoch": 71.44735692442114, + "grad_norm": 0.20420803129673004, + "learning_rate": 0.0006, + "loss": 3.4855151176452637, + "step": 5144 + }, + { + "epoch": 71.4613368283093, + "grad_norm": 0.20710550248622894, + "learning_rate": 0.0006, + "loss": 3.479557514190674, + "step": 5145 + }, + { + "epoch": 71.47531673219747, + "grad_norm": 0.21790869534015656, + "learning_rate": 0.0006, + "loss": 3.478614330291748, + "step": 5146 + }, + { + "epoch": 71.48929663608563, + "grad_norm": 0.2018311470746994, + "learning_rate": 0.0006, + "loss": 3.488673448562622, + "step": 5147 + }, + { + "epoch": 71.50327653997378, + "grad_norm": 0.21153512597084045, + "learning_rate": 0.0006, + "loss": 3.5044631958007812, + "step": 5148 + }, + { + "epoch": 71.51725644386195, + "grad_norm": 0.21591797471046448, + "learning_rate": 0.0006, + "loss": 3.522662401199341, + "step": 5149 + }, + { + "epoch": 71.53123634775011, + "grad_norm": 0.20586389303207397, + "learning_rate": 0.0006, + "loss": 3.4791407585144043, + "step": 5150 + }, + { + "epoch": 71.54521625163827, + "grad_norm": 0.2201298475265503, + "learning_rate": 0.0006, + "loss": 3.4494271278381348, + "step": 5151 + }, + { + "epoch": 71.55919615552644, + "grad_norm": 0.22793325781822205, + "learning_rate": 0.0006, + "loss": 3.495795726776123, + "step": 5152 + }, + { + "epoch": 71.57317605941459, + "grad_norm": 0.2414522022008896, + "learning_rate": 0.0006, + "loss": 3.5030856132507324, + "step": 5153 + }, + { + "epoch": 71.58715596330275, + "grad_norm": 0.23775361478328705, + "learning_rate": 0.0006, + "loss": 3.519958972930908, + "step": 5154 + }, + { + "epoch": 71.60113586719092, + "grad_norm": 0.21599332988262177, + "learning_rate": 0.0006, + "loss": 3.518765449523926, + "step": 5155 + }, + { + "epoch": 71.61511577107908, + "grad_norm": 0.19520622491836548, + "learning_rate": 0.0006, + "loss": 3.514953136444092, + "step": 5156 + }, + { + "epoch": 71.62909567496723, + "grad_norm": 0.21063624322414398, + "learning_rate": 0.0006, + "loss": 3.507232189178467, + "step": 5157 + }, + { + "epoch": 71.6430755788554, + "grad_norm": 0.20278486609458923, + "learning_rate": 0.0006, + "loss": 3.5083611011505127, + "step": 5158 + }, + { + "epoch": 71.65705548274356, + "grad_norm": 0.20769764482975006, + "learning_rate": 0.0006, + "loss": 3.5421876907348633, + "step": 5159 + }, + { + "epoch": 71.67103538663171, + "grad_norm": 0.21942169964313507, + "learning_rate": 0.0006, + "loss": 3.511857509613037, + "step": 5160 + }, + { + "epoch": 71.68501529051987, + "grad_norm": 0.21532300114631653, + "learning_rate": 0.0006, + "loss": 3.4975109100341797, + "step": 5161 + }, + { + "epoch": 71.69899519440804, + "grad_norm": 0.20382282137870789, + "learning_rate": 0.0006, + "loss": 3.500424861907959, + "step": 5162 + }, + { + "epoch": 71.7129750982962, + "grad_norm": 0.22072380781173706, + "learning_rate": 0.0006, + "loss": 3.50101900100708, + "step": 5163 + }, + { + "epoch": 71.72695500218435, + "grad_norm": 0.21554681658744812, + "learning_rate": 0.0006, + "loss": 3.528384208679199, + "step": 5164 + }, + { + "epoch": 71.74093490607252, + "grad_norm": 0.22927747666835785, + "learning_rate": 0.0006, + "loss": 3.488309621810913, + "step": 5165 + }, + { + "epoch": 71.75491480996068, + "grad_norm": 0.23190589249134064, + "learning_rate": 0.0006, + "loss": 3.547053337097168, + "step": 5166 + }, + { + "epoch": 71.76889471384884, + "grad_norm": 0.262680321931839, + "learning_rate": 0.0006, + "loss": 3.5154809951782227, + "step": 5167 + }, + { + "epoch": 71.78287461773701, + "grad_norm": 0.29555177688598633, + "learning_rate": 0.0006, + "loss": 3.4969329833984375, + "step": 5168 + }, + { + "epoch": 71.79685452162516, + "grad_norm": 0.26300716400146484, + "learning_rate": 0.0006, + "loss": 3.4716663360595703, + "step": 5169 + }, + { + "epoch": 71.81083442551332, + "grad_norm": 0.21645912528038025, + "learning_rate": 0.0006, + "loss": 3.4847588539123535, + "step": 5170 + }, + { + "epoch": 71.82481432940149, + "grad_norm": 0.21476063132286072, + "learning_rate": 0.0006, + "loss": 3.4949374198913574, + "step": 5171 + }, + { + "epoch": 71.83879423328965, + "grad_norm": 0.26659518480300903, + "learning_rate": 0.0006, + "loss": 3.519371271133423, + "step": 5172 + }, + { + "epoch": 71.8527741371778, + "grad_norm": 0.2567320764064789, + "learning_rate": 0.0006, + "loss": 3.522982120513916, + "step": 5173 + }, + { + "epoch": 71.86675404106597, + "grad_norm": 0.21162307262420654, + "learning_rate": 0.0006, + "loss": 3.489562749862671, + "step": 5174 + }, + { + "epoch": 71.88073394495413, + "grad_norm": 0.22359566390514374, + "learning_rate": 0.0006, + "loss": 3.51139760017395, + "step": 5175 + }, + { + "epoch": 71.89471384884229, + "grad_norm": 0.19192424416542053, + "learning_rate": 0.0006, + "loss": 3.568310260772705, + "step": 5176 + }, + { + "epoch": 71.90869375273044, + "grad_norm": 0.21490535140037537, + "learning_rate": 0.0006, + "loss": 3.52728271484375, + "step": 5177 + }, + { + "epoch": 71.92267365661861, + "grad_norm": 0.21532146632671356, + "learning_rate": 0.0006, + "loss": 3.533647060394287, + "step": 5178 + }, + { + "epoch": 71.93665356050677, + "grad_norm": 0.2047201246023178, + "learning_rate": 0.0006, + "loss": 3.528214931488037, + "step": 5179 + }, + { + "epoch": 71.95063346439493, + "grad_norm": 0.20230898261070251, + "learning_rate": 0.0006, + "loss": 3.530636787414551, + "step": 5180 + }, + { + "epoch": 71.9646133682831, + "grad_norm": 0.1971510648727417, + "learning_rate": 0.0006, + "loss": 3.5658822059631348, + "step": 5181 + }, + { + "epoch": 71.97859327217125, + "grad_norm": 0.21853342652320862, + "learning_rate": 0.0006, + "loss": 3.4901480674743652, + "step": 5182 + }, + { + "epoch": 71.99257317605941, + "grad_norm": 0.2481825053691864, + "learning_rate": 0.0006, + "loss": 3.5149893760681152, + "step": 5183 + }, + { + "epoch": 72.0, + "grad_norm": 0.28394815325737, + "learning_rate": 0.0006, + "loss": 3.5142500400543213, + "step": 5184 + }, + { + "epoch": 72.0, + "eval_loss": 3.9889707565307617, + "eval_runtime": 44.317, + "eval_samples_per_second": 55.103, + "eval_steps_per_second": 3.452, + "step": 5184 + }, + { + "epoch": 72.01397990388816, + "grad_norm": 0.26481005549430847, + "learning_rate": 0.0006, + "loss": 3.46201753616333, + "step": 5185 + }, + { + "epoch": 72.02795980777633, + "grad_norm": 0.25808629393577576, + "learning_rate": 0.0006, + "loss": 3.4581098556518555, + "step": 5186 + }, + { + "epoch": 72.04193971166448, + "grad_norm": 0.25713175535202026, + "learning_rate": 0.0006, + "loss": 3.48715877532959, + "step": 5187 + }, + { + "epoch": 72.05591961555264, + "grad_norm": 0.23583672940731049, + "learning_rate": 0.0006, + "loss": 3.498791217803955, + "step": 5188 + }, + { + "epoch": 72.06989951944081, + "grad_norm": 0.23554176092147827, + "learning_rate": 0.0006, + "loss": 3.4428248405456543, + "step": 5189 + }, + { + "epoch": 72.08387942332897, + "grad_norm": 0.26283830404281616, + "learning_rate": 0.0006, + "loss": 3.4555912017822266, + "step": 5190 + }, + { + "epoch": 72.09785932721712, + "grad_norm": 0.23904164135456085, + "learning_rate": 0.0006, + "loss": 3.447741985321045, + "step": 5191 + }, + { + "epoch": 72.1118392311053, + "grad_norm": 0.2249821275472641, + "learning_rate": 0.0006, + "loss": 3.4523983001708984, + "step": 5192 + }, + { + "epoch": 72.12581913499345, + "grad_norm": 0.22013622522354126, + "learning_rate": 0.0006, + "loss": 3.480325698852539, + "step": 5193 + }, + { + "epoch": 72.1397990388816, + "grad_norm": 0.21792154014110565, + "learning_rate": 0.0006, + "loss": 3.460036277770996, + "step": 5194 + }, + { + "epoch": 72.15377894276976, + "grad_norm": 0.2302364856004715, + "learning_rate": 0.0006, + "loss": 3.4833297729492188, + "step": 5195 + }, + { + "epoch": 72.16775884665793, + "grad_norm": 0.21317389607429504, + "learning_rate": 0.0006, + "loss": 3.5042786598205566, + "step": 5196 + }, + { + "epoch": 72.18173875054609, + "grad_norm": 0.19275978207588196, + "learning_rate": 0.0006, + "loss": 3.5171995162963867, + "step": 5197 + }, + { + "epoch": 72.19571865443424, + "grad_norm": 0.21028508245944977, + "learning_rate": 0.0006, + "loss": 3.457441806793213, + "step": 5198 + }, + { + "epoch": 72.20969855832242, + "grad_norm": 0.1986231505870819, + "learning_rate": 0.0006, + "loss": 3.489072322845459, + "step": 5199 + }, + { + "epoch": 72.22367846221057, + "grad_norm": 0.19699154794216156, + "learning_rate": 0.0006, + "loss": 3.468651533126831, + "step": 5200 + }, + { + "epoch": 72.23765836609873, + "grad_norm": 0.20329497754573822, + "learning_rate": 0.0006, + "loss": 3.4969425201416016, + "step": 5201 + }, + { + "epoch": 72.2516382699869, + "grad_norm": 0.20615696907043457, + "learning_rate": 0.0006, + "loss": 3.4797892570495605, + "step": 5202 + }, + { + "epoch": 72.26561817387505, + "grad_norm": 0.20542259514331818, + "learning_rate": 0.0006, + "loss": 3.530893325805664, + "step": 5203 + }, + { + "epoch": 72.27959807776321, + "grad_norm": 0.21758593618869781, + "learning_rate": 0.0006, + "loss": 3.494999647140503, + "step": 5204 + }, + { + "epoch": 72.29357798165138, + "grad_norm": 0.21938979625701904, + "learning_rate": 0.0006, + "loss": 3.4716687202453613, + "step": 5205 + }, + { + "epoch": 72.30755788553954, + "grad_norm": 0.21116693317890167, + "learning_rate": 0.0006, + "loss": 3.510025978088379, + "step": 5206 + }, + { + "epoch": 72.3215377894277, + "grad_norm": 0.22996407747268677, + "learning_rate": 0.0006, + "loss": 3.515085220336914, + "step": 5207 + }, + { + "epoch": 72.33551769331586, + "grad_norm": 0.23071469366550446, + "learning_rate": 0.0006, + "loss": 3.4844086170196533, + "step": 5208 + }, + { + "epoch": 72.34949759720402, + "grad_norm": 0.25695133209228516, + "learning_rate": 0.0006, + "loss": 3.5199429988861084, + "step": 5209 + }, + { + "epoch": 72.36347750109218, + "grad_norm": 0.2724803388118744, + "learning_rate": 0.0006, + "loss": 3.516205072402954, + "step": 5210 + }, + { + "epoch": 72.37745740498035, + "grad_norm": 0.2681419551372528, + "learning_rate": 0.0006, + "loss": 3.499340295791626, + "step": 5211 + }, + { + "epoch": 72.3914373088685, + "grad_norm": 0.2519148886203766, + "learning_rate": 0.0006, + "loss": 3.508042812347412, + "step": 5212 + }, + { + "epoch": 72.40541721275666, + "grad_norm": 0.2280866652727127, + "learning_rate": 0.0006, + "loss": 3.501939058303833, + "step": 5213 + }, + { + "epoch": 72.41939711664482, + "grad_norm": 0.2323485016822815, + "learning_rate": 0.0006, + "loss": 3.4846863746643066, + "step": 5214 + }, + { + "epoch": 72.43337702053299, + "grad_norm": 0.2441403865814209, + "learning_rate": 0.0006, + "loss": 3.4963583946228027, + "step": 5215 + }, + { + "epoch": 72.44735692442114, + "grad_norm": 0.2406138777732849, + "learning_rate": 0.0006, + "loss": 3.4914402961730957, + "step": 5216 + }, + { + "epoch": 72.4613368283093, + "grad_norm": 0.23548054695129395, + "learning_rate": 0.0006, + "loss": 3.5411581993103027, + "step": 5217 + }, + { + "epoch": 72.47531673219747, + "grad_norm": 0.21609817445278168, + "learning_rate": 0.0006, + "loss": 3.5331366062164307, + "step": 5218 + }, + { + "epoch": 72.48929663608563, + "grad_norm": 0.20667463541030884, + "learning_rate": 0.0006, + "loss": 3.4875259399414062, + "step": 5219 + }, + { + "epoch": 72.50327653997378, + "grad_norm": 0.21997129917144775, + "learning_rate": 0.0006, + "loss": 3.45741868019104, + "step": 5220 + }, + { + "epoch": 72.51725644386195, + "grad_norm": 0.23778799176216125, + "learning_rate": 0.0006, + "loss": 3.5240767002105713, + "step": 5221 + }, + { + "epoch": 72.53123634775011, + "grad_norm": 0.2373982071876526, + "learning_rate": 0.0006, + "loss": 3.4988675117492676, + "step": 5222 + }, + { + "epoch": 72.54521625163827, + "grad_norm": 0.24703051149845123, + "learning_rate": 0.0006, + "loss": 3.512615203857422, + "step": 5223 + }, + { + "epoch": 72.55919615552644, + "grad_norm": 0.2259516716003418, + "learning_rate": 0.0006, + "loss": 3.5054564476013184, + "step": 5224 + }, + { + "epoch": 72.57317605941459, + "grad_norm": 0.20849403738975525, + "learning_rate": 0.0006, + "loss": 3.513225555419922, + "step": 5225 + }, + { + "epoch": 72.58715596330275, + "grad_norm": 0.20204737782478333, + "learning_rate": 0.0006, + "loss": 3.499671220779419, + "step": 5226 + }, + { + "epoch": 72.60113586719092, + "grad_norm": 0.2146504670381546, + "learning_rate": 0.0006, + "loss": 3.479963779449463, + "step": 5227 + }, + { + "epoch": 72.61511577107908, + "grad_norm": 0.2070881426334381, + "learning_rate": 0.0006, + "loss": 3.4819841384887695, + "step": 5228 + }, + { + "epoch": 72.62909567496723, + "grad_norm": 0.21011002361774445, + "learning_rate": 0.0006, + "loss": 3.480698347091675, + "step": 5229 + }, + { + "epoch": 72.6430755788554, + "grad_norm": 0.22228984534740448, + "learning_rate": 0.0006, + "loss": 3.504167318344116, + "step": 5230 + }, + { + "epoch": 72.65705548274356, + "grad_norm": 0.21016335487365723, + "learning_rate": 0.0006, + "loss": 3.4877564907073975, + "step": 5231 + }, + { + "epoch": 72.67103538663171, + "grad_norm": 0.20774874091148376, + "learning_rate": 0.0006, + "loss": 3.5095250606536865, + "step": 5232 + }, + { + "epoch": 72.68501529051987, + "grad_norm": 0.21587499976158142, + "learning_rate": 0.0006, + "loss": 3.481410503387451, + "step": 5233 + }, + { + "epoch": 72.69899519440804, + "grad_norm": 0.21865521371364594, + "learning_rate": 0.0006, + "loss": 3.4801032543182373, + "step": 5234 + }, + { + "epoch": 72.7129750982962, + "grad_norm": 0.20692583918571472, + "learning_rate": 0.0006, + "loss": 3.5247631072998047, + "step": 5235 + }, + { + "epoch": 72.72695500218435, + "grad_norm": 0.21028351783752441, + "learning_rate": 0.0006, + "loss": 3.4889426231384277, + "step": 5236 + }, + { + "epoch": 72.74093490607252, + "grad_norm": 0.20704887807369232, + "learning_rate": 0.0006, + "loss": 3.514674663543701, + "step": 5237 + }, + { + "epoch": 72.75491480996068, + "grad_norm": 0.22431230545043945, + "learning_rate": 0.0006, + "loss": 3.520341396331787, + "step": 5238 + }, + { + "epoch": 72.76889471384884, + "grad_norm": 0.26835498213768005, + "learning_rate": 0.0006, + "loss": 3.515369176864624, + "step": 5239 + }, + { + "epoch": 72.78287461773701, + "grad_norm": 0.2570379376411438, + "learning_rate": 0.0006, + "loss": 3.5058908462524414, + "step": 5240 + }, + { + "epoch": 72.79685452162516, + "grad_norm": 0.22710268199443817, + "learning_rate": 0.0006, + "loss": 3.5321788787841797, + "step": 5241 + }, + { + "epoch": 72.81083442551332, + "grad_norm": 0.21135354042053223, + "learning_rate": 0.0006, + "loss": 3.5038869380950928, + "step": 5242 + }, + { + "epoch": 72.82481432940149, + "grad_norm": 0.20677657425403595, + "learning_rate": 0.0006, + "loss": 3.509671211242676, + "step": 5243 + }, + { + "epoch": 72.83879423328965, + "grad_norm": 0.21803733706474304, + "learning_rate": 0.0006, + "loss": 3.540374755859375, + "step": 5244 + }, + { + "epoch": 72.8527741371778, + "grad_norm": 0.24457798898220062, + "learning_rate": 0.0006, + "loss": 3.5087430477142334, + "step": 5245 + }, + { + "epoch": 72.86675404106597, + "grad_norm": 0.2483559548854828, + "learning_rate": 0.0006, + "loss": 3.5065975189208984, + "step": 5246 + }, + { + "epoch": 72.88073394495413, + "grad_norm": 0.22601056098937988, + "learning_rate": 0.0006, + "loss": 3.533181667327881, + "step": 5247 + }, + { + "epoch": 72.89471384884229, + "grad_norm": 0.1951705366373062, + "learning_rate": 0.0006, + "loss": 3.5082955360412598, + "step": 5248 + }, + { + "epoch": 72.90869375273044, + "grad_norm": 0.2373722940683365, + "learning_rate": 0.0006, + "loss": 3.5175671577453613, + "step": 5249 + }, + { + "epoch": 72.92267365661861, + "grad_norm": 0.2238793820142746, + "learning_rate": 0.0006, + "loss": 3.4822793006896973, + "step": 5250 + }, + { + "epoch": 72.93665356050677, + "grad_norm": 0.19394482672214508, + "learning_rate": 0.0006, + "loss": 3.5329837799072266, + "step": 5251 + }, + { + "epoch": 72.95063346439493, + "grad_norm": 0.19733992218971252, + "learning_rate": 0.0006, + "loss": 3.516442060470581, + "step": 5252 + }, + { + "epoch": 72.9646133682831, + "grad_norm": 0.1991652250289917, + "learning_rate": 0.0006, + "loss": 3.4855995178222656, + "step": 5253 + }, + { + "epoch": 72.97859327217125, + "grad_norm": 0.20192593336105347, + "learning_rate": 0.0006, + "loss": 3.500981330871582, + "step": 5254 + }, + { + "epoch": 72.99257317605941, + "grad_norm": 0.1900099813938141, + "learning_rate": 0.0006, + "loss": 3.516650676727295, + "step": 5255 + }, + { + "epoch": 73.0, + "grad_norm": 0.2279117852449417, + "learning_rate": 0.0006, + "loss": 3.5318033695220947, + "step": 5256 + }, + { + "epoch": 73.0, + "eval_loss": 3.990769147872925, + "eval_runtime": 44.8752, + "eval_samples_per_second": 54.418, + "eval_steps_per_second": 3.409, + "step": 5256 + }, + { + "epoch": 73.01397990388816, + "grad_norm": 0.21681782603263855, + "learning_rate": 0.0006, + "loss": 3.481177806854248, + "step": 5257 + }, + { + "epoch": 73.02795980777633, + "grad_norm": 0.23727980256080627, + "learning_rate": 0.0006, + "loss": 3.4718916416168213, + "step": 5258 + }, + { + "epoch": 73.04193971166448, + "grad_norm": 0.3004179000854492, + "learning_rate": 0.0006, + "loss": 3.4856271743774414, + "step": 5259 + }, + { + "epoch": 73.05591961555264, + "grad_norm": 0.3563845157623291, + "learning_rate": 0.0006, + "loss": 3.5074610710144043, + "step": 5260 + }, + { + "epoch": 73.06989951944081, + "grad_norm": 0.28933605551719666, + "learning_rate": 0.0006, + "loss": 3.4824771881103516, + "step": 5261 + }, + { + "epoch": 73.08387942332897, + "grad_norm": 0.20685118436813354, + "learning_rate": 0.0006, + "loss": 3.4652299880981445, + "step": 5262 + }, + { + "epoch": 73.09785932721712, + "grad_norm": 0.27588045597076416, + "learning_rate": 0.0006, + "loss": 3.5053865909576416, + "step": 5263 + }, + { + "epoch": 73.1118392311053, + "grad_norm": 0.28780898451805115, + "learning_rate": 0.0006, + "loss": 3.4900169372558594, + "step": 5264 + }, + { + "epoch": 73.12581913499345, + "grad_norm": 0.25440889596939087, + "learning_rate": 0.0006, + "loss": 3.473628520965576, + "step": 5265 + }, + { + "epoch": 73.1397990388816, + "grad_norm": 0.23374824225902557, + "learning_rate": 0.0006, + "loss": 3.473111629486084, + "step": 5266 + }, + { + "epoch": 73.15377894276976, + "grad_norm": 0.22421608865261078, + "learning_rate": 0.0006, + "loss": 3.4926185607910156, + "step": 5267 + }, + { + "epoch": 73.16775884665793, + "grad_norm": 0.24340282380580902, + "learning_rate": 0.0006, + "loss": 3.4895753860473633, + "step": 5268 + }, + { + "epoch": 73.18173875054609, + "grad_norm": 0.2423272281885147, + "learning_rate": 0.0006, + "loss": 3.498384952545166, + "step": 5269 + }, + { + "epoch": 73.19571865443424, + "grad_norm": 0.20698750019073486, + "learning_rate": 0.0006, + "loss": 3.4790406227111816, + "step": 5270 + }, + { + "epoch": 73.20969855832242, + "grad_norm": 0.21184271574020386, + "learning_rate": 0.0006, + "loss": 3.4132208824157715, + "step": 5271 + }, + { + "epoch": 73.22367846221057, + "grad_norm": 0.20834460854530334, + "learning_rate": 0.0006, + "loss": 3.4493658542633057, + "step": 5272 + }, + { + "epoch": 73.23765836609873, + "grad_norm": 0.20421066880226135, + "learning_rate": 0.0006, + "loss": 3.486607551574707, + "step": 5273 + }, + { + "epoch": 73.2516382699869, + "grad_norm": 0.2166317254304886, + "learning_rate": 0.0006, + "loss": 3.4880776405334473, + "step": 5274 + }, + { + "epoch": 73.26561817387505, + "grad_norm": 0.2271069586277008, + "learning_rate": 0.0006, + "loss": 3.5396530628204346, + "step": 5275 + }, + { + "epoch": 73.27959807776321, + "grad_norm": 0.2804903984069824, + "learning_rate": 0.0006, + "loss": 3.5006351470947266, + "step": 5276 + }, + { + "epoch": 73.29357798165138, + "grad_norm": 0.2573811113834381, + "learning_rate": 0.0006, + "loss": 3.4821765422821045, + "step": 5277 + }, + { + "epoch": 73.30755788553954, + "grad_norm": 0.23412485420703888, + "learning_rate": 0.0006, + "loss": 3.4935741424560547, + "step": 5278 + }, + { + "epoch": 73.3215377894277, + "grad_norm": 0.28513026237487793, + "learning_rate": 0.0006, + "loss": 3.4645705223083496, + "step": 5279 + }, + { + "epoch": 73.33551769331586, + "grad_norm": 0.29753562808036804, + "learning_rate": 0.0006, + "loss": 3.5176053047180176, + "step": 5280 + }, + { + "epoch": 73.34949759720402, + "grad_norm": 0.27373817563056946, + "learning_rate": 0.0006, + "loss": 3.4775936603546143, + "step": 5281 + }, + { + "epoch": 73.36347750109218, + "grad_norm": 0.2177509367465973, + "learning_rate": 0.0006, + "loss": 3.480635643005371, + "step": 5282 + }, + { + "epoch": 73.37745740498035, + "grad_norm": 0.25387322902679443, + "learning_rate": 0.0006, + "loss": 3.469754695892334, + "step": 5283 + }, + { + "epoch": 73.3914373088685, + "grad_norm": 0.2564674913883209, + "learning_rate": 0.0006, + "loss": 3.5017647743225098, + "step": 5284 + }, + { + "epoch": 73.40541721275666, + "grad_norm": 0.22612597048282623, + "learning_rate": 0.0006, + "loss": 3.4689712524414062, + "step": 5285 + }, + { + "epoch": 73.41939711664482, + "grad_norm": 0.2263033241033554, + "learning_rate": 0.0006, + "loss": 3.4711971282958984, + "step": 5286 + }, + { + "epoch": 73.43337702053299, + "grad_norm": 0.2290525883436203, + "learning_rate": 0.0006, + "loss": 3.4785008430480957, + "step": 5287 + }, + { + "epoch": 73.44735692442114, + "grad_norm": 0.2285647839307785, + "learning_rate": 0.0006, + "loss": 3.47416353225708, + "step": 5288 + }, + { + "epoch": 73.4613368283093, + "grad_norm": 0.2135833501815796, + "learning_rate": 0.0006, + "loss": 3.497528076171875, + "step": 5289 + }, + { + "epoch": 73.47531673219747, + "grad_norm": 0.24894089996814728, + "learning_rate": 0.0006, + "loss": 3.4764437675476074, + "step": 5290 + }, + { + "epoch": 73.48929663608563, + "grad_norm": 0.27769771218299866, + "learning_rate": 0.0006, + "loss": 3.530491828918457, + "step": 5291 + }, + { + "epoch": 73.50327653997378, + "grad_norm": 0.2881193161010742, + "learning_rate": 0.0006, + "loss": 3.480968475341797, + "step": 5292 + }, + { + "epoch": 73.51725644386195, + "grad_norm": 0.26066645979881287, + "learning_rate": 0.0006, + "loss": 3.488679885864258, + "step": 5293 + }, + { + "epoch": 73.53123634775011, + "grad_norm": 0.2325759381055832, + "learning_rate": 0.0006, + "loss": 3.50810170173645, + "step": 5294 + }, + { + "epoch": 73.54521625163827, + "grad_norm": 0.2113630324602127, + "learning_rate": 0.0006, + "loss": 3.516207218170166, + "step": 5295 + }, + { + "epoch": 73.55919615552644, + "grad_norm": 0.22719664871692657, + "learning_rate": 0.0006, + "loss": 3.5046021938323975, + "step": 5296 + }, + { + "epoch": 73.57317605941459, + "grad_norm": 0.20094481110572815, + "learning_rate": 0.0006, + "loss": 3.5129313468933105, + "step": 5297 + }, + { + "epoch": 73.58715596330275, + "grad_norm": 0.18975555896759033, + "learning_rate": 0.0006, + "loss": 3.4832587242126465, + "step": 5298 + }, + { + "epoch": 73.60113586719092, + "grad_norm": 0.2168205976486206, + "learning_rate": 0.0006, + "loss": 3.485678195953369, + "step": 5299 + }, + { + "epoch": 73.61511577107908, + "grad_norm": 0.20437777042388916, + "learning_rate": 0.0006, + "loss": 3.5342376232147217, + "step": 5300 + }, + { + "epoch": 73.62909567496723, + "grad_norm": 0.1951008290052414, + "learning_rate": 0.0006, + "loss": 3.496528148651123, + "step": 5301 + }, + { + "epoch": 73.6430755788554, + "grad_norm": 0.194418802857399, + "learning_rate": 0.0006, + "loss": 3.496985912322998, + "step": 5302 + }, + { + "epoch": 73.65705548274356, + "grad_norm": 0.21475602686405182, + "learning_rate": 0.0006, + "loss": 3.4993209838867188, + "step": 5303 + }, + { + "epoch": 73.67103538663171, + "grad_norm": 0.21515145897865295, + "learning_rate": 0.0006, + "loss": 3.5003676414489746, + "step": 5304 + }, + { + "epoch": 73.68501529051987, + "grad_norm": 0.19101263582706451, + "learning_rate": 0.0006, + "loss": 3.4970169067382812, + "step": 5305 + }, + { + "epoch": 73.69899519440804, + "grad_norm": 0.21630576252937317, + "learning_rate": 0.0006, + "loss": 3.4644386768341064, + "step": 5306 + }, + { + "epoch": 73.7129750982962, + "grad_norm": 0.2233273833990097, + "learning_rate": 0.0006, + "loss": 3.5082266330718994, + "step": 5307 + }, + { + "epoch": 73.72695500218435, + "grad_norm": 0.2207949310541153, + "learning_rate": 0.0006, + "loss": 3.5124080181121826, + "step": 5308 + }, + { + "epoch": 73.74093490607252, + "grad_norm": 0.2216075360774994, + "learning_rate": 0.0006, + "loss": 3.5385897159576416, + "step": 5309 + }, + { + "epoch": 73.75491480996068, + "grad_norm": 0.242542564868927, + "learning_rate": 0.0006, + "loss": 3.4922280311584473, + "step": 5310 + }, + { + "epoch": 73.76889471384884, + "grad_norm": 0.25550341606140137, + "learning_rate": 0.0006, + "loss": 3.5120809078216553, + "step": 5311 + }, + { + "epoch": 73.78287461773701, + "grad_norm": 0.2312568724155426, + "learning_rate": 0.0006, + "loss": 3.5122501850128174, + "step": 5312 + }, + { + "epoch": 73.79685452162516, + "grad_norm": 0.22861020267009735, + "learning_rate": 0.0006, + "loss": 3.5362534523010254, + "step": 5313 + }, + { + "epoch": 73.81083442551332, + "grad_norm": 0.2227325290441513, + "learning_rate": 0.0006, + "loss": 3.509556770324707, + "step": 5314 + }, + { + "epoch": 73.82481432940149, + "grad_norm": 0.20523901283740997, + "learning_rate": 0.0006, + "loss": 3.478180170059204, + "step": 5315 + }, + { + "epoch": 73.83879423328965, + "grad_norm": 0.21429577469825745, + "learning_rate": 0.0006, + "loss": 3.5295538902282715, + "step": 5316 + }, + { + "epoch": 73.8527741371778, + "grad_norm": 0.2419414520263672, + "learning_rate": 0.0006, + "loss": 3.518057346343994, + "step": 5317 + }, + { + "epoch": 73.86675404106597, + "grad_norm": 0.27580955624580383, + "learning_rate": 0.0006, + "loss": 3.5108370780944824, + "step": 5318 + }, + { + "epoch": 73.88073394495413, + "grad_norm": 0.24745431542396545, + "learning_rate": 0.0006, + "loss": 3.5286366939544678, + "step": 5319 + }, + { + "epoch": 73.89471384884229, + "grad_norm": 0.2149314135313034, + "learning_rate": 0.0006, + "loss": 3.485231399536133, + "step": 5320 + }, + { + "epoch": 73.90869375273044, + "grad_norm": 0.2078951895236969, + "learning_rate": 0.0006, + "loss": 3.5262768268585205, + "step": 5321 + }, + { + "epoch": 73.92267365661861, + "grad_norm": 0.2416444718837738, + "learning_rate": 0.0006, + "loss": 3.5233588218688965, + "step": 5322 + }, + { + "epoch": 73.93665356050677, + "grad_norm": 0.22926902770996094, + "learning_rate": 0.0006, + "loss": 3.5189247131347656, + "step": 5323 + }, + { + "epoch": 73.95063346439493, + "grad_norm": 0.21510642766952515, + "learning_rate": 0.0006, + "loss": 3.473496198654175, + "step": 5324 + }, + { + "epoch": 73.9646133682831, + "grad_norm": 0.2103978842496872, + "learning_rate": 0.0006, + "loss": 3.482978343963623, + "step": 5325 + }, + { + "epoch": 73.97859327217125, + "grad_norm": 0.1958087682723999, + "learning_rate": 0.0006, + "loss": 3.5095043182373047, + "step": 5326 + }, + { + "epoch": 73.99257317605941, + "grad_norm": 0.1914149820804596, + "learning_rate": 0.0006, + "loss": 3.5150370597839355, + "step": 5327 + }, + { + "epoch": 74.0, + "grad_norm": 0.23419693112373352, + "learning_rate": 0.0006, + "loss": 3.5106215476989746, + "step": 5328 + }, + { + "epoch": 74.0, + "eval_loss": 3.9748404026031494, + "eval_runtime": 44.8747, + "eval_samples_per_second": 54.418, + "eval_steps_per_second": 3.409, + "step": 5328 + }, + { + "epoch": 74.01397990388816, + "grad_norm": 0.2479415088891983, + "learning_rate": 0.0006, + "loss": 3.4701595306396484, + "step": 5329 + }, + { + "epoch": 74.02795980777633, + "grad_norm": 0.24987533688545227, + "learning_rate": 0.0006, + "loss": 3.4586291313171387, + "step": 5330 + }, + { + "epoch": 74.04193971166448, + "grad_norm": 0.23266810178756714, + "learning_rate": 0.0006, + "loss": 3.4172134399414062, + "step": 5331 + }, + { + "epoch": 74.05591961555264, + "grad_norm": 0.2236100137233734, + "learning_rate": 0.0006, + "loss": 3.4862887859344482, + "step": 5332 + }, + { + "epoch": 74.06989951944081, + "grad_norm": 0.20534487068653107, + "learning_rate": 0.0006, + "loss": 3.45927357673645, + "step": 5333 + }, + { + "epoch": 74.08387942332897, + "grad_norm": 0.2238253802061081, + "learning_rate": 0.0006, + "loss": 3.467851400375366, + "step": 5334 + }, + { + "epoch": 74.09785932721712, + "grad_norm": 0.26896408200263977, + "learning_rate": 0.0006, + "loss": 3.4854512214660645, + "step": 5335 + }, + { + "epoch": 74.1118392311053, + "grad_norm": 0.2958875000476837, + "learning_rate": 0.0006, + "loss": 3.4699835777282715, + "step": 5336 + }, + { + "epoch": 74.12581913499345, + "grad_norm": 0.2670096755027771, + "learning_rate": 0.0006, + "loss": 3.469750165939331, + "step": 5337 + }, + { + "epoch": 74.1397990388816, + "grad_norm": 0.24695175886154175, + "learning_rate": 0.0006, + "loss": 3.4648962020874023, + "step": 5338 + }, + { + "epoch": 74.15377894276976, + "grad_norm": 0.22581245005130768, + "learning_rate": 0.0006, + "loss": 3.4659342765808105, + "step": 5339 + }, + { + "epoch": 74.16775884665793, + "grad_norm": 0.214495450258255, + "learning_rate": 0.0006, + "loss": 3.484555721282959, + "step": 5340 + }, + { + "epoch": 74.18173875054609, + "grad_norm": 0.2219872921705246, + "learning_rate": 0.0006, + "loss": 3.4930648803710938, + "step": 5341 + }, + { + "epoch": 74.19571865443424, + "grad_norm": 0.23231728374958038, + "learning_rate": 0.0006, + "loss": 3.4828286170959473, + "step": 5342 + }, + { + "epoch": 74.20969855832242, + "grad_norm": 0.2273619920015335, + "learning_rate": 0.0006, + "loss": 3.4727272987365723, + "step": 5343 + }, + { + "epoch": 74.22367846221057, + "grad_norm": 0.22086025774478912, + "learning_rate": 0.0006, + "loss": 3.5108399391174316, + "step": 5344 + }, + { + "epoch": 74.23765836609873, + "grad_norm": 0.2132318615913391, + "learning_rate": 0.0006, + "loss": 3.4821221828460693, + "step": 5345 + }, + { + "epoch": 74.2516382699869, + "grad_norm": 0.2375437170267105, + "learning_rate": 0.0006, + "loss": 3.5120530128479004, + "step": 5346 + }, + { + "epoch": 74.26561817387505, + "grad_norm": 0.24744948744773865, + "learning_rate": 0.0006, + "loss": 3.4861230850219727, + "step": 5347 + }, + { + "epoch": 74.27959807776321, + "grad_norm": 0.2221650779247284, + "learning_rate": 0.0006, + "loss": 3.494476556777954, + "step": 5348 + }, + { + "epoch": 74.29357798165138, + "grad_norm": 0.1984807401895523, + "learning_rate": 0.0006, + "loss": 3.492462635040283, + "step": 5349 + }, + { + "epoch": 74.30755788553954, + "grad_norm": 0.2298664003610611, + "learning_rate": 0.0006, + "loss": 3.478318214416504, + "step": 5350 + }, + { + "epoch": 74.3215377894277, + "grad_norm": 0.25947070121765137, + "learning_rate": 0.0006, + "loss": 3.487811326980591, + "step": 5351 + }, + { + "epoch": 74.33551769331586, + "grad_norm": 0.23611490428447723, + "learning_rate": 0.0006, + "loss": 3.500941276550293, + "step": 5352 + }, + { + "epoch": 74.34949759720402, + "grad_norm": 0.2209966480731964, + "learning_rate": 0.0006, + "loss": 3.4910011291503906, + "step": 5353 + }, + { + "epoch": 74.36347750109218, + "grad_norm": 0.2637932300567627, + "learning_rate": 0.0006, + "loss": 3.5082242488861084, + "step": 5354 + }, + { + "epoch": 74.37745740498035, + "grad_norm": 0.27074548602104187, + "learning_rate": 0.0006, + "loss": 3.4829864501953125, + "step": 5355 + }, + { + "epoch": 74.3914373088685, + "grad_norm": 0.24120314419269562, + "learning_rate": 0.0006, + "loss": 3.5099215507507324, + "step": 5356 + }, + { + "epoch": 74.40541721275666, + "grad_norm": 0.22281570732593536, + "learning_rate": 0.0006, + "loss": 3.4863901138305664, + "step": 5357 + }, + { + "epoch": 74.41939711664482, + "grad_norm": 0.24500703811645508, + "learning_rate": 0.0006, + "loss": 3.492774248123169, + "step": 5358 + }, + { + "epoch": 74.43337702053299, + "grad_norm": 0.2938194274902344, + "learning_rate": 0.0006, + "loss": 3.5095953941345215, + "step": 5359 + }, + { + "epoch": 74.44735692442114, + "grad_norm": 0.23553980886936188, + "learning_rate": 0.0006, + "loss": 3.4738357067108154, + "step": 5360 + }, + { + "epoch": 74.4613368283093, + "grad_norm": 0.23400643467903137, + "learning_rate": 0.0006, + "loss": 3.503324508666992, + "step": 5361 + }, + { + "epoch": 74.47531673219747, + "grad_norm": 0.26702186465263367, + "learning_rate": 0.0006, + "loss": 3.5077764987945557, + "step": 5362 + }, + { + "epoch": 74.48929663608563, + "grad_norm": 0.26146429777145386, + "learning_rate": 0.0006, + "loss": 3.4926650524139404, + "step": 5363 + }, + { + "epoch": 74.50327653997378, + "grad_norm": 0.24903273582458496, + "learning_rate": 0.0006, + "loss": 3.4951210021972656, + "step": 5364 + }, + { + "epoch": 74.51725644386195, + "grad_norm": 0.2189243733882904, + "learning_rate": 0.0006, + "loss": 3.50642728805542, + "step": 5365 + }, + { + "epoch": 74.53123634775011, + "grad_norm": 0.2049291431903839, + "learning_rate": 0.0006, + "loss": 3.5034496784210205, + "step": 5366 + }, + { + "epoch": 74.54521625163827, + "grad_norm": 0.20688633620738983, + "learning_rate": 0.0006, + "loss": 3.4878382682800293, + "step": 5367 + }, + { + "epoch": 74.55919615552644, + "grad_norm": 0.201416477560997, + "learning_rate": 0.0006, + "loss": 3.503418445587158, + "step": 5368 + }, + { + "epoch": 74.57317605941459, + "grad_norm": 0.2094922661781311, + "learning_rate": 0.0006, + "loss": 3.4678902626037598, + "step": 5369 + }, + { + "epoch": 74.58715596330275, + "grad_norm": 0.23010285198688507, + "learning_rate": 0.0006, + "loss": 3.4749817848205566, + "step": 5370 + }, + { + "epoch": 74.60113586719092, + "grad_norm": 0.22642597556114197, + "learning_rate": 0.0006, + "loss": 3.4843454360961914, + "step": 5371 + }, + { + "epoch": 74.61511577107908, + "grad_norm": 0.2123269885778427, + "learning_rate": 0.0006, + "loss": 3.4823896884918213, + "step": 5372 + }, + { + "epoch": 74.62909567496723, + "grad_norm": 0.21990132331848145, + "learning_rate": 0.0006, + "loss": 3.4970970153808594, + "step": 5373 + }, + { + "epoch": 74.6430755788554, + "grad_norm": 0.23335176706314087, + "learning_rate": 0.0006, + "loss": 3.481468677520752, + "step": 5374 + }, + { + "epoch": 74.65705548274356, + "grad_norm": 0.22706177830696106, + "learning_rate": 0.0006, + "loss": 3.504356861114502, + "step": 5375 + }, + { + "epoch": 74.67103538663171, + "grad_norm": 0.22790828347206116, + "learning_rate": 0.0006, + "loss": 3.472900867462158, + "step": 5376 + }, + { + "epoch": 74.68501529051987, + "grad_norm": 0.26810064911842346, + "learning_rate": 0.0006, + "loss": 3.4734930992126465, + "step": 5377 + }, + { + "epoch": 74.69899519440804, + "grad_norm": 0.28308895230293274, + "learning_rate": 0.0006, + "loss": 3.5265793800354004, + "step": 5378 + }, + { + "epoch": 74.7129750982962, + "grad_norm": 0.23838670551776886, + "learning_rate": 0.0006, + "loss": 3.4594779014587402, + "step": 5379 + }, + { + "epoch": 74.72695500218435, + "grad_norm": 0.22041939198970795, + "learning_rate": 0.0006, + "loss": 3.5098114013671875, + "step": 5380 + }, + { + "epoch": 74.74093490607252, + "grad_norm": 0.24805180728435516, + "learning_rate": 0.0006, + "loss": 3.5069029331207275, + "step": 5381 + }, + { + "epoch": 74.75491480996068, + "grad_norm": 0.3026084005832672, + "learning_rate": 0.0006, + "loss": 3.4828643798828125, + "step": 5382 + }, + { + "epoch": 74.76889471384884, + "grad_norm": 0.2749265432357788, + "learning_rate": 0.0006, + "loss": 3.536533832550049, + "step": 5383 + }, + { + "epoch": 74.78287461773701, + "grad_norm": 0.23131245374679565, + "learning_rate": 0.0006, + "loss": 3.4843153953552246, + "step": 5384 + }, + { + "epoch": 74.79685452162516, + "grad_norm": 0.28015977144241333, + "learning_rate": 0.0006, + "loss": 3.5087320804595947, + "step": 5385 + }, + { + "epoch": 74.81083442551332, + "grad_norm": 0.28901320695877075, + "learning_rate": 0.0006, + "loss": 3.509774684906006, + "step": 5386 + }, + { + "epoch": 74.82481432940149, + "grad_norm": 0.2902369499206543, + "learning_rate": 0.0006, + "loss": 3.5354912281036377, + "step": 5387 + }, + { + "epoch": 74.83879423328965, + "grad_norm": 0.28103142976760864, + "learning_rate": 0.0006, + "loss": 3.5079479217529297, + "step": 5388 + }, + { + "epoch": 74.8527741371778, + "grad_norm": 0.21874217689037323, + "learning_rate": 0.0006, + "loss": 3.527747631072998, + "step": 5389 + }, + { + "epoch": 74.86675404106597, + "grad_norm": 0.2200363576412201, + "learning_rate": 0.0006, + "loss": 3.4977521896362305, + "step": 5390 + }, + { + "epoch": 74.88073394495413, + "grad_norm": 0.24229851365089417, + "learning_rate": 0.0006, + "loss": 3.535094738006592, + "step": 5391 + }, + { + "epoch": 74.89471384884229, + "grad_norm": 0.25623074173927307, + "learning_rate": 0.0006, + "loss": 3.5501794815063477, + "step": 5392 + }, + { + "epoch": 74.90869375273044, + "grad_norm": 0.25281623005867004, + "learning_rate": 0.0006, + "loss": 3.4836385250091553, + "step": 5393 + }, + { + "epoch": 74.92267365661861, + "grad_norm": 0.2236766219139099, + "learning_rate": 0.0006, + "loss": 3.4966232776641846, + "step": 5394 + }, + { + "epoch": 74.93665356050677, + "grad_norm": 0.20852778851985931, + "learning_rate": 0.0006, + "loss": 3.516902446746826, + "step": 5395 + }, + { + "epoch": 74.95063346439493, + "grad_norm": 0.22248536348342896, + "learning_rate": 0.0006, + "loss": 3.5233588218688965, + "step": 5396 + }, + { + "epoch": 74.9646133682831, + "grad_norm": 0.23792508244514465, + "learning_rate": 0.0006, + "loss": 3.4896931648254395, + "step": 5397 + }, + { + "epoch": 74.97859327217125, + "grad_norm": 0.20838406682014465, + "learning_rate": 0.0006, + "loss": 3.4921011924743652, + "step": 5398 + }, + { + "epoch": 74.99257317605941, + "grad_norm": 0.22375819087028503, + "learning_rate": 0.0006, + "loss": 3.5101675987243652, + "step": 5399 + }, + { + "epoch": 75.0, + "grad_norm": 0.3014359772205353, + "learning_rate": 0.0006, + "loss": 3.5245840549468994, + "step": 5400 + }, + { + "epoch": 75.0, + "eval_loss": 3.9896810054779053, + "eval_runtime": 45.1449, + "eval_samples_per_second": 54.092, + "eval_steps_per_second": 3.389, + "step": 5400 + }, + { + "epoch": 75.01397990388816, + "grad_norm": 0.2802879214286804, + "learning_rate": 0.0006, + "loss": 3.4459807872772217, + "step": 5401 + }, + { + "epoch": 75.02795980777633, + "grad_norm": 0.2268809676170349, + "learning_rate": 0.0006, + "loss": 3.492509365081787, + "step": 5402 + }, + { + "epoch": 75.04193971166448, + "grad_norm": 0.32269951701164246, + "learning_rate": 0.0006, + "loss": 3.4565114974975586, + "step": 5403 + }, + { + "epoch": 75.05591961555264, + "grad_norm": 0.37944868206977844, + "learning_rate": 0.0006, + "loss": 3.4896206855773926, + "step": 5404 + }, + { + "epoch": 75.06989951944081, + "grad_norm": 0.2834550440311432, + "learning_rate": 0.0006, + "loss": 3.4488000869750977, + "step": 5405 + }, + { + "epoch": 75.08387942332897, + "grad_norm": 0.24261713027954102, + "learning_rate": 0.0006, + "loss": 3.4881110191345215, + "step": 5406 + }, + { + "epoch": 75.09785932721712, + "grad_norm": 0.25649914145469666, + "learning_rate": 0.0006, + "loss": 3.4687750339508057, + "step": 5407 + }, + { + "epoch": 75.1118392311053, + "grad_norm": 0.28500616550445557, + "learning_rate": 0.0006, + "loss": 3.5017337799072266, + "step": 5408 + }, + { + "epoch": 75.12581913499345, + "grad_norm": 0.288143128156662, + "learning_rate": 0.0006, + "loss": 3.46737003326416, + "step": 5409 + }, + { + "epoch": 75.1397990388816, + "grad_norm": 0.23640452325344086, + "learning_rate": 0.0006, + "loss": 3.485724925994873, + "step": 5410 + }, + { + "epoch": 75.15377894276976, + "grad_norm": 0.231221541762352, + "learning_rate": 0.0006, + "loss": 3.4711289405822754, + "step": 5411 + }, + { + "epoch": 75.16775884665793, + "grad_norm": 0.22871847450733185, + "learning_rate": 0.0006, + "loss": 3.457324504852295, + "step": 5412 + }, + { + "epoch": 75.18173875054609, + "grad_norm": 0.24795132875442505, + "learning_rate": 0.0006, + "loss": 3.4799628257751465, + "step": 5413 + }, + { + "epoch": 75.19571865443424, + "grad_norm": 0.2337426245212555, + "learning_rate": 0.0006, + "loss": 3.4352688789367676, + "step": 5414 + }, + { + "epoch": 75.20969855832242, + "grad_norm": 0.251052588224411, + "learning_rate": 0.0006, + "loss": 3.4770374298095703, + "step": 5415 + }, + { + "epoch": 75.22367846221057, + "grad_norm": 0.2879040241241455, + "learning_rate": 0.0006, + "loss": 3.495934009552002, + "step": 5416 + }, + { + "epoch": 75.23765836609873, + "grad_norm": 0.273510605096817, + "learning_rate": 0.0006, + "loss": 3.497647762298584, + "step": 5417 + }, + { + "epoch": 75.2516382699869, + "grad_norm": 0.24495841562747955, + "learning_rate": 0.0006, + "loss": 3.455962896347046, + "step": 5418 + }, + { + "epoch": 75.26561817387505, + "grad_norm": 0.2345196157693863, + "learning_rate": 0.0006, + "loss": 3.5110573768615723, + "step": 5419 + }, + { + "epoch": 75.27959807776321, + "grad_norm": 0.22574985027313232, + "learning_rate": 0.0006, + "loss": 3.499999523162842, + "step": 5420 + }, + { + "epoch": 75.29357798165138, + "grad_norm": 0.21367499232292175, + "learning_rate": 0.0006, + "loss": 3.4823455810546875, + "step": 5421 + }, + { + "epoch": 75.30755788553954, + "grad_norm": 0.2120848447084427, + "learning_rate": 0.0006, + "loss": 3.4786484241485596, + "step": 5422 + }, + { + "epoch": 75.3215377894277, + "grad_norm": 0.21794751286506653, + "learning_rate": 0.0006, + "loss": 3.4970765113830566, + "step": 5423 + }, + { + "epoch": 75.33551769331586, + "grad_norm": 0.21963100135326385, + "learning_rate": 0.0006, + "loss": 3.5118799209594727, + "step": 5424 + }, + { + "epoch": 75.34949759720402, + "grad_norm": 0.21615713834762573, + "learning_rate": 0.0006, + "loss": 3.4728214740753174, + "step": 5425 + }, + { + "epoch": 75.36347750109218, + "grad_norm": 0.23004800081253052, + "learning_rate": 0.0006, + "loss": 3.496875762939453, + "step": 5426 + }, + { + "epoch": 75.37745740498035, + "grad_norm": 0.24208541214466095, + "learning_rate": 0.0006, + "loss": 3.4958276748657227, + "step": 5427 + }, + { + "epoch": 75.3914373088685, + "grad_norm": 0.20642924308776855, + "learning_rate": 0.0006, + "loss": 3.500385284423828, + "step": 5428 + }, + { + "epoch": 75.40541721275666, + "grad_norm": 0.2259436547756195, + "learning_rate": 0.0006, + "loss": 3.4697232246398926, + "step": 5429 + }, + { + "epoch": 75.41939711664482, + "grad_norm": 0.25861549377441406, + "learning_rate": 0.0006, + "loss": 3.5008928775787354, + "step": 5430 + }, + { + "epoch": 75.43337702053299, + "grad_norm": 0.24532392621040344, + "learning_rate": 0.0006, + "loss": 3.4718515872955322, + "step": 5431 + }, + { + "epoch": 75.44735692442114, + "grad_norm": 0.23508992791175842, + "learning_rate": 0.0006, + "loss": 3.4947562217712402, + "step": 5432 + }, + { + "epoch": 75.4613368283093, + "grad_norm": 0.25019076466560364, + "learning_rate": 0.0006, + "loss": 3.5137546062469482, + "step": 5433 + }, + { + "epoch": 75.47531673219747, + "grad_norm": 0.23382526636123657, + "learning_rate": 0.0006, + "loss": 3.503502368927002, + "step": 5434 + }, + { + "epoch": 75.48929663608563, + "grad_norm": 0.23226714134216309, + "learning_rate": 0.0006, + "loss": 3.4856209754943848, + "step": 5435 + }, + { + "epoch": 75.50327653997378, + "grad_norm": 0.2705337107181549, + "learning_rate": 0.0006, + "loss": 3.4829044342041016, + "step": 5436 + }, + { + "epoch": 75.51725644386195, + "grad_norm": 0.23903003334999084, + "learning_rate": 0.0006, + "loss": 3.473284959793091, + "step": 5437 + }, + { + "epoch": 75.53123634775011, + "grad_norm": 0.2298477441072464, + "learning_rate": 0.0006, + "loss": 3.4981393814086914, + "step": 5438 + }, + { + "epoch": 75.54521625163827, + "grad_norm": 0.2785218060016632, + "learning_rate": 0.0006, + "loss": 3.491668701171875, + "step": 5439 + }, + { + "epoch": 75.55919615552644, + "grad_norm": 0.30322644114494324, + "learning_rate": 0.0006, + "loss": 3.5061874389648438, + "step": 5440 + }, + { + "epoch": 75.57317605941459, + "grad_norm": 0.26536163687705994, + "learning_rate": 0.0006, + "loss": 3.491297721862793, + "step": 5441 + }, + { + "epoch": 75.58715596330275, + "grad_norm": 0.25591710209846497, + "learning_rate": 0.0006, + "loss": 3.4608688354492188, + "step": 5442 + }, + { + "epoch": 75.60113586719092, + "grad_norm": 0.29031914472579956, + "learning_rate": 0.0006, + "loss": 3.5015907287597656, + "step": 5443 + }, + { + "epoch": 75.61511577107908, + "grad_norm": 0.3028157353401184, + "learning_rate": 0.0006, + "loss": 3.488694190979004, + "step": 5444 + }, + { + "epoch": 75.62909567496723, + "grad_norm": 0.2612902522087097, + "learning_rate": 0.0006, + "loss": 3.5170979499816895, + "step": 5445 + }, + { + "epoch": 75.6430755788554, + "grad_norm": 0.2346487045288086, + "learning_rate": 0.0006, + "loss": 3.501101493835449, + "step": 5446 + }, + { + "epoch": 75.65705548274356, + "grad_norm": 0.24434567987918854, + "learning_rate": 0.0006, + "loss": 3.48040771484375, + "step": 5447 + }, + { + "epoch": 75.67103538663171, + "grad_norm": 0.2538795471191406, + "learning_rate": 0.0006, + "loss": 3.480721950531006, + "step": 5448 + }, + { + "epoch": 75.68501529051987, + "grad_norm": 0.23026305437088013, + "learning_rate": 0.0006, + "loss": 3.501366138458252, + "step": 5449 + }, + { + "epoch": 75.69899519440804, + "grad_norm": 0.21872632205486298, + "learning_rate": 0.0006, + "loss": 3.4855334758758545, + "step": 5450 + }, + { + "epoch": 75.7129750982962, + "grad_norm": 0.23016631603240967, + "learning_rate": 0.0006, + "loss": 3.487691879272461, + "step": 5451 + }, + { + "epoch": 75.72695500218435, + "grad_norm": 0.25731417536735535, + "learning_rate": 0.0006, + "loss": 3.509885787963867, + "step": 5452 + }, + { + "epoch": 75.74093490607252, + "grad_norm": 0.23140797019004822, + "learning_rate": 0.0006, + "loss": 3.4974255561828613, + "step": 5453 + }, + { + "epoch": 75.75491480996068, + "grad_norm": 0.2290206402540207, + "learning_rate": 0.0006, + "loss": 3.497750997543335, + "step": 5454 + }, + { + "epoch": 75.76889471384884, + "grad_norm": 0.22882549464702606, + "learning_rate": 0.0006, + "loss": 3.513742446899414, + "step": 5455 + }, + { + "epoch": 75.78287461773701, + "grad_norm": 0.22749373316764832, + "learning_rate": 0.0006, + "loss": 3.5267224311828613, + "step": 5456 + }, + { + "epoch": 75.79685452162516, + "grad_norm": 0.23185116052627563, + "learning_rate": 0.0006, + "loss": 3.4946181774139404, + "step": 5457 + }, + { + "epoch": 75.81083442551332, + "grad_norm": 0.21161580085754395, + "learning_rate": 0.0006, + "loss": 3.51632022857666, + "step": 5458 + }, + { + "epoch": 75.82481432940149, + "grad_norm": 0.2244153618812561, + "learning_rate": 0.0006, + "loss": 3.5021536350250244, + "step": 5459 + }, + { + "epoch": 75.83879423328965, + "grad_norm": 0.2286757528781891, + "learning_rate": 0.0006, + "loss": 3.5064220428466797, + "step": 5460 + }, + { + "epoch": 75.8527741371778, + "grad_norm": 0.24235443770885468, + "learning_rate": 0.0006, + "loss": 3.47468638420105, + "step": 5461 + }, + { + "epoch": 75.86675404106597, + "grad_norm": 0.21012619137763977, + "learning_rate": 0.0006, + "loss": 3.469088077545166, + "step": 5462 + }, + { + "epoch": 75.88073394495413, + "grad_norm": 0.20562565326690674, + "learning_rate": 0.0006, + "loss": 3.4918551445007324, + "step": 5463 + }, + { + "epoch": 75.89471384884229, + "grad_norm": 0.2122880220413208, + "learning_rate": 0.0006, + "loss": 3.5048160552978516, + "step": 5464 + }, + { + "epoch": 75.90869375273044, + "grad_norm": 0.20818278193473816, + "learning_rate": 0.0006, + "loss": 3.4814553260803223, + "step": 5465 + }, + { + "epoch": 75.92267365661861, + "grad_norm": 0.20316754281520844, + "learning_rate": 0.0006, + "loss": 3.500009775161743, + "step": 5466 + }, + { + "epoch": 75.93665356050677, + "grad_norm": 0.2093973606824875, + "learning_rate": 0.0006, + "loss": 3.4891273975372314, + "step": 5467 + }, + { + "epoch": 75.95063346439493, + "grad_norm": 0.20942363142967224, + "learning_rate": 0.0006, + "loss": 3.5271172523498535, + "step": 5468 + }, + { + "epoch": 75.9646133682831, + "grad_norm": 0.22052891552448273, + "learning_rate": 0.0006, + "loss": 3.508040189743042, + "step": 5469 + }, + { + "epoch": 75.97859327217125, + "grad_norm": 0.2208913266658783, + "learning_rate": 0.0006, + "loss": 3.5075063705444336, + "step": 5470 + }, + { + "epoch": 75.99257317605941, + "grad_norm": 0.20618212223052979, + "learning_rate": 0.0006, + "loss": 3.5018906593322754, + "step": 5471 + }, + { + "epoch": 76.0, + "grad_norm": 0.23915603756904602, + "learning_rate": 0.0006, + "loss": 3.490349054336548, + "step": 5472 + }, + { + "epoch": 76.0, + "eval_loss": 3.9777374267578125, + "eval_runtime": 44.3634, + "eval_samples_per_second": 55.045, + "eval_steps_per_second": 3.449, + "step": 5472 + }, + { + "epoch": 76.01397990388816, + "grad_norm": 0.2418874055147171, + "learning_rate": 0.0006, + "loss": 3.443974018096924, + "step": 5473 + }, + { + "epoch": 76.02795980777633, + "grad_norm": 0.24863727390766144, + "learning_rate": 0.0006, + "loss": 3.4233765602111816, + "step": 5474 + }, + { + "epoch": 76.04193971166448, + "grad_norm": 0.2790309488773346, + "learning_rate": 0.0006, + "loss": 3.441854953765869, + "step": 5475 + }, + { + "epoch": 76.05591961555264, + "grad_norm": 0.26523181796073914, + "learning_rate": 0.0006, + "loss": 3.5107715129852295, + "step": 5476 + }, + { + "epoch": 76.06989951944081, + "grad_norm": 0.22338931262493134, + "learning_rate": 0.0006, + "loss": 3.4805355072021484, + "step": 5477 + }, + { + "epoch": 76.08387942332897, + "grad_norm": 0.2959517240524292, + "learning_rate": 0.0006, + "loss": 3.4402217864990234, + "step": 5478 + }, + { + "epoch": 76.09785932721712, + "grad_norm": 0.29325243830680847, + "learning_rate": 0.0006, + "loss": 3.448124885559082, + "step": 5479 + }, + { + "epoch": 76.1118392311053, + "grad_norm": 0.24323450028896332, + "learning_rate": 0.0006, + "loss": 3.4593453407287598, + "step": 5480 + }, + { + "epoch": 76.12581913499345, + "grad_norm": 0.22358393669128418, + "learning_rate": 0.0006, + "loss": 3.463690757751465, + "step": 5481 + }, + { + "epoch": 76.1397990388816, + "grad_norm": 0.23993486166000366, + "learning_rate": 0.0006, + "loss": 3.468006134033203, + "step": 5482 + }, + { + "epoch": 76.15377894276976, + "grad_norm": 0.2388140857219696, + "learning_rate": 0.0006, + "loss": 3.4615962505340576, + "step": 5483 + }, + { + "epoch": 76.16775884665793, + "grad_norm": 0.21697917580604553, + "learning_rate": 0.0006, + "loss": 3.498293161392212, + "step": 5484 + }, + { + "epoch": 76.18173875054609, + "grad_norm": 0.21932202577590942, + "learning_rate": 0.0006, + "loss": 3.4642910957336426, + "step": 5485 + }, + { + "epoch": 76.19571865443424, + "grad_norm": 0.23881328105926514, + "learning_rate": 0.0006, + "loss": 3.4731202125549316, + "step": 5486 + }, + { + "epoch": 76.20969855832242, + "grad_norm": 0.24131019413471222, + "learning_rate": 0.0006, + "loss": 3.514042854309082, + "step": 5487 + }, + { + "epoch": 76.22367846221057, + "grad_norm": 0.2567158639431, + "learning_rate": 0.0006, + "loss": 3.496260643005371, + "step": 5488 + }, + { + "epoch": 76.23765836609873, + "grad_norm": 0.24889737367630005, + "learning_rate": 0.0006, + "loss": 3.4490113258361816, + "step": 5489 + }, + { + "epoch": 76.2516382699869, + "grad_norm": 0.2594841718673706, + "learning_rate": 0.0006, + "loss": 3.4855408668518066, + "step": 5490 + }, + { + "epoch": 76.26561817387505, + "grad_norm": 0.25379180908203125, + "learning_rate": 0.0006, + "loss": 3.484755277633667, + "step": 5491 + }, + { + "epoch": 76.27959807776321, + "grad_norm": 0.2550116181373596, + "learning_rate": 0.0006, + "loss": 3.472916603088379, + "step": 5492 + }, + { + "epoch": 76.29357798165138, + "grad_norm": 0.22609412670135498, + "learning_rate": 0.0006, + "loss": 3.4655003547668457, + "step": 5493 + }, + { + "epoch": 76.30755788553954, + "grad_norm": 0.2155119925737381, + "learning_rate": 0.0006, + "loss": 3.4827067852020264, + "step": 5494 + }, + { + "epoch": 76.3215377894277, + "grad_norm": 0.23875075578689575, + "learning_rate": 0.0006, + "loss": 3.5023036003112793, + "step": 5495 + }, + { + "epoch": 76.33551769331586, + "grad_norm": 0.20443911850452423, + "learning_rate": 0.0006, + "loss": 3.483880043029785, + "step": 5496 + }, + { + "epoch": 76.34949759720402, + "grad_norm": 0.2072031944990158, + "learning_rate": 0.0006, + "loss": 3.4842820167541504, + "step": 5497 + }, + { + "epoch": 76.36347750109218, + "grad_norm": 0.20795385539531708, + "learning_rate": 0.0006, + "loss": 3.503988265991211, + "step": 5498 + }, + { + "epoch": 76.37745740498035, + "grad_norm": 0.21297147870063782, + "learning_rate": 0.0006, + "loss": 3.4640579223632812, + "step": 5499 + }, + { + "epoch": 76.3914373088685, + "grad_norm": 0.20675528049468994, + "learning_rate": 0.0006, + "loss": 3.462296485900879, + "step": 5500 + }, + { + "epoch": 76.40541721275666, + "grad_norm": 0.20660211145877838, + "learning_rate": 0.0006, + "loss": 3.484466552734375, + "step": 5501 + }, + { + "epoch": 76.41939711664482, + "grad_norm": 0.23562943935394287, + "learning_rate": 0.0006, + "loss": 3.5207087993621826, + "step": 5502 + }, + { + "epoch": 76.43337702053299, + "grad_norm": 0.23841898143291473, + "learning_rate": 0.0006, + "loss": 3.4793286323547363, + "step": 5503 + }, + { + "epoch": 76.44735692442114, + "grad_norm": 0.22068238258361816, + "learning_rate": 0.0006, + "loss": 3.4763593673706055, + "step": 5504 + }, + { + "epoch": 76.4613368283093, + "grad_norm": 0.2076147049665451, + "learning_rate": 0.0006, + "loss": 3.4937491416931152, + "step": 5505 + }, + { + "epoch": 76.47531673219747, + "grad_norm": 0.2138012796640396, + "learning_rate": 0.0006, + "loss": 3.452348232269287, + "step": 5506 + }, + { + "epoch": 76.48929663608563, + "grad_norm": 0.22696714103221893, + "learning_rate": 0.0006, + "loss": 3.4932503700256348, + "step": 5507 + }, + { + "epoch": 76.50327653997378, + "grad_norm": 0.2209995836019516, + "learning_rate": 0.0006, + "loss": 3.4709179401397705, + "step": 5508 + }, + { + "epoch": 76.51725644386195, + "grad_norm": 0.2194036841392517, + "learning_rate": 0.0006, + "loss": 3.5052647590637207, + "step": 5509 + }, + { + "epoch": 76.53123634775011, + "grad_norm": 0.2052760273218155, + "learning_rate": 0.0006, + "loss": 3.4574718475341797, + "step": 5510 + }, + { + "epoch": 76.54521625163827, + "grad_norm": 0.20317119359970093, + "learning_rate": 0.0006, + "loss": 3.502560615539551, + "step": 5511 + }, + { + "epoch": 76.55919615552644, + "grad_norm": 0.19807544350624084, + "learning_rate": 0.0006, + "loss": 3.4829111099243164, + "step": 5512 + }, + { + "epoch": 76.57317605941459, + "grad_norm": 0.23340080678462982, + "learning_rate": 0.0006, + "loss": 3.486851692199707, + "step": 5513 + }, + { + "epoch": 76.58715596330275, + "grad_norm": 0.22508011758327484, + "learning_rate": 0.0006, + "loss": 3.4909684658050537, + "step": 5514 + }, + { + "epoch": 76.60113586719092, + "grad_norm": 0.20285551249980927, + "learning_rate": 0.0006, + "loss": 3.5109267234802246, + "step": 5515 + }, + { + "epoch": 76.61511577107908, + "grad_norm": 0.21424166858196259, + "learning_rate": 0.0006, + "loss": 3.535339832305908, + "step": 5516 + }, + { + "epoch": 76.62909567496723, + "grad_norm": 0.22599352896213531, + "learning_rate": 0.0006, + "loss": 3.513669729232788, + "step": 5517 + }, + { + "epoch": 76.6430755788554, + "grad_norm": 0.23167334496974945, + "learning_rate": 0.0006, + "loss": 3.464939594268799, + "step": 5518 + }, + { + "epoch": 76.65705548274356, + "grad_norm": 0.23066985607147217, + "learning_rate": 0.0006, + "loss": 3.5059399604797363, + "step": 5519 + }, + { + "epoch": 76.67103538663171, + "grad_norm": 0.23994891345500946, + "learning_rate": 0.0006, + "loss": 3.500594139099121, + "step": 5520 + }, + { + "epoch": 76.68501529051987, + "grad_norm": 0.211285799741745, + "learning_rate": 0.0006, + "loss": 3.478522300720215, + "step": 5521 + }, + { + "epoch": 76.69899519440804, + "grad_norm": 0.20075270533561707, + "learning_rate": 0.0006, + "loss": 3.5288326740264893, + "step": 5522 + }, + { + "epoch": 76.7129750982962, + "grad_norm": 0.23529106378555298, + "learning_rate": 0.0006, + "loss": 3.4779129028320312, + "step": 5523 + }, + { + "epoch": 76.72695500218435, + "grad_norm": 0.2311454862356186, + "learning_rate": 0.0006, + "loss": 3.496515989303589, + "step": 5524 + }, + { + "epoch": 76.74093490607252, + "grad_norm": 0.2181762307882309, + "learning_rate": 0.0006, + "loss": 3.5054616928100586, + "step": 5525 + }, + { + "epoch": 76.75491480996068, + "grad_norm": 0.21688713133335114, + "learning_rate": 0.0006, + "loss": 3.486077070236206, + "step": 5526 + }, + { + "epoch": 76.76889471384884, + "grad_norm": 0.208486407995224, + "learning_rate": 0.0006, + "loss": 3.519576072692871, + "step": 5527 + }, + { + "epoch": 76.78287461773701, + "grad_norm": 0.20486991107463837, + "learning_rate": 0.0006, + "loss": 3.521792411804199, + "step": 5528 + }, + { + "epoch": 76.79685452162516, + "grad_norm": 0.19922950863838196, + "learning_rate": 0.0006, + "loss": 3.491504669189453, + "step": 5529 + }, + { + "epoch": 76.81083442551332, + "grad_norm": 0.1996903419494629, + "learning_rate": 0.0006, + "loss": 3.468512535095215, + "step": 5530 + }, + { + "epoch": 76.82481432940149, + "grad_norm": 0.222084179520607, + "learning_rate": 0.0006, + "loss": 3.5042052268981934, + "step": 5531 + }, + { + "epoch": 76.83879423328965, + "grad_norm": 0.20673534274101257, + "learning_rate": 0.0006, + "loss": 3.497204303741455, + "step": 5532 + }, + { + "epoch": 76.8527741371778, + "grad_norm": 0.21386823058128357, + "learning_rate": 0.0006, + "loss": 3.488496780395508, + "step": 5533 + }, + { + "epoch": 76.86675404106597, + "grad_norm": 0.21389922499656677, + "learning_rate": 0.0006, + "loss": 3.4649922847747803, + "step": 5534 + }, + { + "epoch": 76.88073394495413, + "grad_norm": 0.20491436123847961, + "learning_rate": 0.0006, + "loss": 3.5298590660095215, + "step": 5535 + }, + { + "epoch": 76.89471384884229, + "grad_norm": 0.21831119060516357, + "learning_rate": 0.0006, + "loss": 3.4953153133392334, + "step": 5536 + }, + { + "epoch": 76.90869375273044, + "grad_norm": 0.20591680705547333, + "learning_rate": 0.0006, + "loss": 3.4926888942718506, + "step": 5537 + }, + { + "epoch": 76.92267365661861, + "grad_norm": 0.2123914211988449, + "learning_rate": 0.0006, + "loss": 3.4734320640563965, + "step": 5538 + }, + { + "epoch": 76.93665356050677, + "grad_norm": 0.22081080079078674, + "learning_rate": 0.0006, + "loss": 3.500866413116455, + "step": 5539 + }, + { + "epoch": 76.95063346439493, + "grad_norm": 0.20731335878372192, + "learning_rate": 0.0006, + "loss": 3.5050065517425537, + "step": 5540 + }, + { + "epoch": 76.9646133682831, + "grad_norm": 0.21011851727962494, + "learning_rate": 0.0006, + "loss": 3.490650177001953, + "step": 5541 + }, + { + "epoch": 76.97859327217125, + "grad_norm": 0.2390926033258438, + "learning_rate": 0.0006, + "loss": 3.4951090812683105, + "step": 5542 + }, + { + "epoch": 76.99257317605941, + "grad_norm": 0.2596230208873749, + "learning_rate": 0.0006, + "loss": 3.5060253143310547, + "step": 5543 + }, + { + "epoch": 77.0, + "grad_norm": 0.25238990783691406, + "learning_rate": 0.0006, + "loss": 3.4590630531311035, + "step": 5544 + }, + { + "epoch": 77.0, + "eval_loss": 3.9981307983398438, + "eval_runtime": 44.7924, + "eval_samples_per_second": 54.518, + "eval_steps_per_second": 3.416, + "step": 5544 + }, + { + "epoch": 77.01397990388816, + "grad_norm": 0.22038361430168152, + "learning_rate": 0.0006, + "loss": 3.4686741828918457, + "step": 5545 + }, + { + "epoch": 77.02795980777633, + "grad_norm": 0.24023033678531647, + "learning_rate": 0.0006, + "loss": 3.4764277935028076, + "step": 5546 + }, + { + "epoch": 77.04193971166448, + "grad_norm": 0.2292146384716034, + "learning_rate": 0.0006, + "loss": 3.4723358154296875, + "step": 5547 + }, + { + "epoch": 77.05591961555264, + "grad_norm": 0.2493198812007904, + "learning_rate": 0.0006, + "loss": 3.4568331241607666, + "step": 5548 + }, + { + "epoch": 77.06989951944081, + "grad_norm": 0.24256594479084015, + "learning_rate": 0.0006, + "loss": 3.4423820972442627, + "step": 5549 + }, + { + "epoch": 77.08387942332897, + "grad_norm": 0.23987102508544922, + "learning_rate": 0.0006, + "loss": 3.465493679046631, + "step": 5550 + }, + { + "epoch": 77.09785932721712, + "grad_norm": 0.22210195660591125, + "learning_rate": 0.0006, + "loss": 3.4376380443573, + "step": 5551 + }, + { + "epoch": 77.1118392311053, + "grad_norm": 0.24909666180610657, + "learning_rate": 0.0006, + "loss": 3.490691900253296, + "step": 5552 + }, + { + "epoch": 77.12581913499345, + "grad_norm": 0.25187668204307556, + "learning_rate": 0.0006, + "loss": 3.487443447113037, + "step": 5553 + }, + { + "epoch": 77.1397990388816, + "grad_norm": 0.24957744777202606, + "learning_rate": 0.0006, + "loss": 3.4741783142089844, + "step": 5554 + }, + { + "epoch": 77.15377894276976, + "grad_norm": 0.24963968992233276, + "learning_rate": 0.0006, + "loss": 3.442970037460327, + "step": 5555 + }, + { + "epoch": 77.16775884665793, + "grad_norm": 0.2636677026748657, + "learning_rate": 0.0006, + "loss": 3.442943572998047, + "step": 5556 + }, + { + "epoch": 77.18173875054609, + "grad_norm": 0.2390320599079132, + "learning_rate": 0.0006, + "loss": 3.446042537689209, + "step": 5557 + }, + { + "epoch": 77.19571865443424, + "grad_norm": 0.24128425121307373, + "learning_rate": 0.0006, + "loss": 3.4540657997131348, + "step": 5558 + }, + { + "epoch": 77.20969855832242, + "grad_norm": 0.2793026566505432, + "learning_rate": 0.0006, + "loss": 3.475677013397217, + "step": 5559 + }, + { + "epoch": 77.22367846221057, + "grad_norm": 0.2781931459903717, + "learning_rate": 0.0006, + "loss": 3.432591438293457, + "step": 5560 + }, + { + "epoch": 77.23765836609873, + "grad_norm": 0.27104610204696655, + "learning_rate": 0.0006, + "loss": 3.434600353240967, + "step": 5561 + }, + { + "epoch": 77.2516382699869, + "grad_norm": 0.24446748197078705, + "learning_rate": 0.0006, + "loss": 3.4536900520324707, + "step": 5562 + }, + { + "epoch": 77.26561817387505, + "grad_norm": 0.2234327495098114, + "learning_rate": 0.0006, + "loss": 3.472113609313965, + "step": 5563 + }, + { + "epoch": 77.27959807776321, + "grad_norm": 0.22455455362796783, + "learning_rate": 0.0006, + "loss": 3.478461742401123, + "step": 5564 + }, + { + "epoch": 77.29357798165138, + "grad_norm": 0.24232162535190582, + "learning_rate": 0.0006, + "loss": 3.476224899291992, + "step": 5565 + }, + { + "epoch": 77.30755788553954, + "grad_norm": 0.22650426626205444, + "learning_rate": 0.0006, + "loss": 3.4830868244171143, + "step": 5566 + }, + { + "epoch": 77.3215377894277, + "grad_norm": 0.20385561883449554, + "learning_rate": 0.0006, + "loss": 3.4758248329162598, + "step": 5567 + }, + { + "epoch": 77.33551769331586, + "grad_norm": 0.21887609362602234, + "learning_rate": 0.0006, + "loss": 3.444990873336792, + "step": 5568 + }, + { + "epoch": 77.34949759720402, + "grad_norm": 0.2225635051727295, + "learning_rate": 0.0006, + "loss": 3.469752311706543, + "step": 5569 + }, + { + "epoch": 77.36347750109218, + "grad_norm": 0.24805355072021484, + "learning_rate": 0.0006, + "loss": 3.492915153503418, + "step": 5570 + }, + { + "epoch": 77.37745740498035, + "grad_norm": 0.2526283860206604, + "learning_rate": 0.0006, + "loss": 3.465193271636963, + "step": 5571 + }, + { + "epoch": 77.3914373088685, + "grad_norm": 0.24211226403713226, + "learning_rate": 0.0006, + "loss": 3.4413485527038574, + "step": 5572 + }, + { + "epoch": 77.40541721275666, + "grad_norm": 0.2326599657535553, + "learning_rate": 0.0006, + "loss": 3.4961862564086914, + "step": 5573 + }, + { + "epoch": 77.41939711664482, + "grad_norm": 0.20717164874076843, + "learning_rate": 0.0006, + "loss": 3.525745391845703, + "step": 5574 + }, + { + "epoch": 77.43337702053299, + "grad_norm": 0.25477585196495056, + "learning_rate": 0.0006, + "loss": 3.5035266876220703, + "step": 5575 + }, + { + "epoch": 77.44735692442114, + "grad_norm": 0.25919151306152344, + "learning_rate": 0.0006, + "loss": 3.490316867828369, + "step": 5576 + }, + { + "epoch": 77.4613368283093, + "grad_norm": 0.23436813056468964, + "learning_rate": 0.0006, + "loss": 3.4723501205444336, + "step": 5577 + }, + { + "epoch": 77.47531673219747, + "grad_norm": 0.22665677964687347, + "learning_rate": 0.0006, + "loss": 3.478048801422119, + "step": 5578 + }, + { + "epoch": 77.48929663608563, + "grad_norm": 0.2232775241136551, + "learning_rate": 0.0006, + "loss": 3.5051913261413574, + "step": 5579 + }, + { + "epoch": 77.50327653997378, + "grad_norm": 0.22552873194217682, + "learning_rate": 0.0006, + "loss": 3.45631742477417, + "step": 5580 + }, + { + "epoch": 77.51725644386195, + "grad_norm": 0.21110759675502777, + "learning_rate": 0.0006, + "loss": 3.5175533294677734, + "step": 5581 + }, + { + "epoch": 77.53123634775011, + "grad_norm": 0.20691822469234467, + "learning_rate": 0.0006, + "loss": 3.4880058765411377, + "step": 5582 + }, + { + "epoch": 77.54521625163827, + "grad_norm": 0.2127186805009842, + "learning_rate": 0.0006, + "loss": 3.4998388290405273, + "step": 5583 + }, + { + "epoch": 77.55919615552644, + "grad_norm": 0.20933803915977478, + "learning_rate": 0.0006, + "loss": 3.466125249862671, + "step": 5584 + }, + { + "epoch": 77.57317605941459, + "grad_norm": 0.2276456654071808, + "learning_rate": 0.0006, + "loss": 3.459625482559204, + "step": 5585 + }, + { + "epoch": 77.58715596330275, + "grad_norm": 0.22685237228870392, + "learning_rate": 0.0006, + "loss": 3.492049217224121, + "step": 5586 + }, + { + "epoch": 77.60113586719092, + "grad_norm": 0.21664106845855713, + "learning_rate": 0.0006, + "loss": 3.5223960876464844, + "step": 5587 + }, + { + "epoch": 77.61511577107908, + "grad_norm": 0.23587282001972198, + "learning_rate": 0.0006, + "loss": 3.518566370010376, + "step": 5588 + }, + { + "epoch": 77.62909567496723, + "grad_norm": 0.23437966406345367, + "learning_rate": 0.0006, + "loss": 3.491976022720337, + "step": 5589 + }, + { + "epoch": 77.6430755788554, + "grad_norm": 0.23540490865707397, + "learning_rate": 0.0006, + "loss": 3.4611740112304688, + "step": 5590 + }, + { + "epoch": 77.65705548274356, + "grad_norm": 0.25225862860679626, + "learning_rate": 0.0006, + "loss": 3.5131006240844727, + "step": 5591 + }, + { + "epoch": 77.67103538663171, + "grad_norm": 0.24235303699970245, + "learning_rate": 0.0006, + "loss": 3.5291337966918945, + "step": 5592 + }, + { + "epoch": 77.68501529051987, + "grad_norm": 0.20641890168190002, + "learning_rate": 0.0006, + "loss": 3.484412431716919, + "step": 5593 + }, + { + "epoch": 77.69899519440804, + "grad_norm": 0.22332488000392914, + "learning_rate": 0.0006, + "loss": 3.521279811859131, + "step": 5594 + }, + { + "epoch": 77.7129750982962, + "grad_norm": 0.22490297257900238, + "learning_rate": 0.0006, + "loss": 3.493229866027832, + "step": 5595 + }, + { + "epoch": 77.72695500218435, + "grad_norm": 0.19960972666740417, + "learning_rate": 0.0006, + "loss": 3.454841136932373, + "step": 5596 + }, + { + "epoch": 77.74093490607252, + "grad_norm": 0.22220884263515472, + "learning_rate": 0.0006, + "loss": 3.490431547164917, + "step": 5597 + }, + { + "epoch": 77.75491480996068, + "grad_norm": 0.22000782191753387, + "learning_rate": 0.0006, + "loss": 3.52382230758667, + "step": 5598 + }, + { + "epoch": 77.76889471384884, + "grad_norm": 0.2174588292837143, + "learning_rate": 0.0006, + "loss": 3.514397621154785, + "step": 5599 + }, + { + "epoch": 77.78287461773701, + "grad_norm": 0.2279520481824875, + "learning_rate": 0.0006, + "loss": 3.4750583171844482, + "step": 5600 + }, + { + "epoch": 77.79685452162516, + "grad_norm": 0.21765829622745514, + "learning_rate": 0.0006, + "loss": 3.512150526046753, + "step": 5601 + }, + { + "epoch": 77.81083442551332, + "grad_norm": 0.20984821021556854, + "learning_rate": 0.0006, + "loss": 3.4623773097991943, + "step": 5602 + }, + { + "epoch": 77.82481432940149, + "grad_norm": 0.22201800346374512, + "learning_rate": 0.0006, + "loss": 3.4842002391815186, + "step": 5603 + }, + { + "epoch": 77.83879423328965, + "grad_norm": 0.194268599152565, + "learning_rate": 0.0006, + "loss": 3.4671778678894043, + "step": 5604 + }, + { + "epoch": 77.8527741371778, + "grad_norm": 0.26137876510620117, + "learning_rate": 0.0006, + "loss": 3.5220279693603516, + "step": 5605 + }, + { + "epoch": 77.86675404106597, + "grad_norm": 0.34975603222846985, + "learning_rate": 0.0006, + "loss": 3.500293254852295, + "step": 5606 + }, + { + "epoch": 77.88073394495413, + "grad_norm": 0.35652515292167664, + "learning_rate": 0.0006, + "loss": 3.514991521835327, + "step": 5607 + }, + { + "epoch": 77.89471384884229, + "grad_norm": 0.29652512073516846, + "learning_rate": 0.0006, + "loss": 3.4788379669189453, + "step": 5608 + }, + { + "epoch": 77.90869375273044, + "grad_norm": 0.24133038520812988, + "learning_rate": 0.0006, + "loss": 3.5168981552124023, + "step": 5609 + }, + { + "epoch": 77.92267365661861, + "grad_norm": 0.26977378129959106, + "learning_rate": 0.0006, + "loss": 3.479185104370117, + "step": 5610 + }, + { + "epoch": 77.93665356050677, + "grad_norm": 0.3470935523509979, + "learning_rate": 0.0006, + "loss": 3.477111577987671, + "step": 5611 + }, + { + "epoch": 77.95063346439493, + "grad_norm": 0.29587116837501526, + "learning_rate": 0.0006, + "loss": 3.497286319732666, + "step": 5612 + }, + { + "epoch": 77.9646133682831, + "grad_norm": 0.23551815748214722, + "learning_rate": 0.0006, + "loss": 3.521495819091797, + "step": 5613 + }, + { + "epoch": 77.97859327217125, + "grad_norm": 0.23533079028129578, + "learning_rate": 0.0006, + "loss": 3.525179147720337, + "step": 5614 + }, + { + "epoch": 77.99257317605941, + "grad_norm": 0.24980391561985016, + "learning_rate": 0.0006, + "loss": 3.5037364959716797, + "step": 5615 + }, + { + "epoch": 78.0, + "grad_norm": 0.26153600215911865, + "learning_rate": 0.0006, + "loss": 3.515974521636963, + "step": 5616 + }, + { + "epoch": 78.0, + "eval_loss": 3.989530563354492, + "eval_runtime": 44.8691, + "eval_samples_per_second": 54.425, + "eval_steps_per_second": 3.41, + "step": 5616 + }, + { + "epoch": 78.01397990388816, + "grad_norm": 0.2100374549627304, + "learning_rate": 0.0006, + "loss": 3.4879980087280273, + "step": 5617 + }, + { + "epoch": 78.02795980777633, + "grad_norm": 0.23255975544452667, + "learning_rate": 0.0006, + "loss": 3.43629789352417, + "step": 5618 + }, + { + "epoch": 78.04193971166448, + "grad_norm": 0.2895263731479645, + "learning_rate": 0.0006, + "loss": 3.4705724716186523, + "step": 5619 + }, + { + "epoch": 78.05591961555264, + "grad_norm": 0.31454774737358093, + "learning_rate": 0.0006, + "loss": 3.451716661453247, + "step": 5620 + }, + { + "epoch": 78.06989951944081, + "grad_norm": 0.2520895004272461, + "learning_rate": 0.0006, + "loss": 3.4636831283569336, + "step": 5621 + }, + { + "epoch": 78.08387942332897, + "grad_norm": 0.24788936972618103, + "learning_rate": 0.0006, + "loss": 3.4423277378082275, + "step": 5622 + }, + { + "epoch": 78.09785932721712, + "grad_norm": 0.27085408568382263, + "learning_rate": 0.0006, + "loss": 3.4572410583496094, + "step": 5623 + }, + { + "epoch": 78.1118392311053, + "grad_norm": 0.25386592745780945, + "learning_rate": 0.0006, + "loss": 3.4571075439453125, + "step": 5624 + }, + { + "epoch": 78.12581913499345, + "grad_norm": 0.24330876767635345, + "learning_rate": 0.0006, + "loss": 3.4500632286071777, + "step": 5625 + }, + { + "epoch": 78.1397990388816, + "grad_norm": 0.24485483765602112, + "learning_rate": 0.0006, + "loss": 3.475353240966797, + "step": 5626 + }, + { + "epoch": 78.15377894276976, + "grad_norm": 0.25498270988464355, + "learning_rate": 0.0006, + "loss": 3.485459089279175, + "step": 5627 + }, + { + "epoch": 78.16775884665793, + "grad_norm": 0.24147716164588928, + "learning_rate": 0.0006, + "loss": 3.5107951164245605, + "step": 5628 + }, + { + "epoch": 78.18173875054609, + "grad_norm": 0.22279144823551178, + "learning_rate": 0.0006, + "loss": 3.510791778564453, + "step": 5629 + }, + { + "epoch": 78.19571865443424, + "grad_norm": 0.2423589825630188, + "learning_rate": 0.0006, + "loss": 3.4248547554016113, + "step": 5630 + }, + { + "epoch": 78.20969855832242, + "grad_norm": 0.25929296016693115, + "learning_rate": 0.0006, + "loss": 3.4600253105163574, + "step": 5631 + }, + { + "epoch": 78.22367846221057, + "grad_norm": 0.23566672205924988, + "learning_rate": 0.0006, + "loss": 3.4578680992126465, + "step": 5632 + }, + { + "epoch": 78.23765836609873, + "grad_norm": 0.23223716020584106, + "learning_rate": 0.0006, + "loss": 3.4563381671905518, + "step": 5633 + }, + { + "epoch": 78.2516382699869, + "grad_norm": 0.2368844598531723, + "learning_rate": 0.0006, + "loss": 3.4480276107788086, + "step": 5634 + }, + { + "epoch": 78.26561817387505, + "grad_norm": 0.24832561612129211, + "learning_rate": 0.0006, + "loss": 3.496946334838867, + "step": 5635 + }, + { + "epoch": 78.27959807776321, + "grad_norm": 0.24947865307331085, + "learning_rate": 0.0006, + "loss": 3.4892706871032715, + "step": 5636 + }, + { + "epoch": 78.29357798165138, + "grad_norm": 0.23110949993133545, + "learning_rate": 0.0006, + "loss": 3.454031467437744, + "step": 5637 + }, + { + "epoch": 78.30755788553954, + "grad_norm": 0.2529185116291046, + "learning_rate": 0.0006, + "loss": 3.4528121948242188, + "step": 5638 + }, + { + "epoch": 78.3215377894277, + "grad_norm": 0.28784650564193726, + "learning_rate": 0.0006, + "loss": 3.4587960243225098, + "step": 5639 + }, + { + "epoch": 78.33551769331586, + "grad_norm": 0.3063037097454071, + "learning_rate": 0.0006, + "loss": 3.4946982860565186, + "step": 5640 + }, + { + "epoch": 78.34949759720402, + "grad_norm": 0.25911253690719604, + "learning_rate": 0.0006, + "loss": 3.4736804962158203, + "step": 5641 + }, + { + "epoch": 78.36347750109218, + "grad_norm": 0.24036385118961334, + "learning_rate": 0.0006, + "loss": 3.502281665802002, + "step": 5642 + }, + { + "epoch": 78.37745740498035, + "grad_norm": 0.3214871883392334, + "learning_rate": 0.0006, + "loss": 3.462540626525879, + "step": 5643 + }, + { + "epoch": 78.3914373088685, + "grad_norm": 0.2729061245918274, + "learning_rate": 0.0006, + "loss": 3.4772369861602783, + "step": 5644 + }, + { + "epoch": 78.40541721275666, + "grad_norm": 0.19852563738822937, + "learning_rate": 0.0006, + "loss": 3.483013391494751, + "step": 5645 + }, + { + "epoch": 78.41939711664482, + "grad_norm": 0.23686745762825012, + "learning_rate": 0.0006, + "loss": 3.471310615539551, + "step": 5646 + }, + { + "epoch": 78.43337702053299, + "grad_norm": 0.2407468557357788, + "learning_rate": 0.0006, + "loss": 3.468752384185791, + "step": 5647 + }, + { + "epoch": 78.44735692442114, + "grad_norm": 0.21730437874794006, + "learning_rate": 0.0006, + "loss": 3.4616923332214355, + "step": 5648 + }, + { + "epoch": 78.4613368283093, + "grad_norm": 0.22194430232048035, + "learning_rate": 0.0006, + "loss": 3.5024828910827637, + "step": 5649 + }, + { + "epoch": 78.47531673219747, + "grad_norm": 0.20579543709754944, + "learning_rate": 0.0006, + "loss": 3.4653728008270264, + "step": 5650 + }, + { + "epoch": 78.48929663608563, + "grad_norm": 0.21063153445720673, + "learning_rate": 0.0006, + "loss": 3.460247039794922, + "step": 5651 + }, + { + "epoch": 78.50327653997378, + "grad_norm": 0.2112281769514084, + "learning_rate": 0.0006, + "loss": 3.5004734992980957, + "step": 5652 + }, + { + "epoch": 78.51725644386195, + "grad_norm": 0.21281960606575012, + "learning_rate": 0.0006, + "loss": 3.49147367477417, + "step": 5653 + }, + { + "epoch": 78.53123634775011, + "grad_norm": 0.21079784631729126, + "learning_rate": 0.0006, + "loss": 3.4941132068634033, + "step": 5654 + }, + { + "epoch": 78.54521625163827, + "grad_norm": 0.2113049030303955, + "learning_rate": 0.0006, + "loss": 3.4483916759490967, + "step": 5655 + }, + { + "epoch": 78.55919615552644, + "grad_norm": 0.19891786575317383, + "learning_rate": 0.0006, + "loss": 3.477287769317627, + "step": 5656 + }, + { + "epoch": 78.57317605941459, + "grad_norm": 0.24941609799861908, + "learning_rate": 0.0006, + "loss": 3.527385711669922, + "step": 5657 + }, + { + "epoch": 78.58715596330275, + "grad_norm": 0.23287516832351685, + "learning_rate": 0.0006, + "loss": 3.4806594848632812, + "step": 5658 + }, + { + "epoch": 78.60113586719092, + "grad_norm": 0.211700439453125, + "learning_rate": 0.0006, + "loss": 3.455684185028076, + "step": 5659 + }, + { + "epoch": 78.61511577107908, + "grad_norm": 0.20621828734874725, + "learning_rate": 0.0006, + "loss": 3.4775843620300293, + "step": 5660 + }, + { + "epoch": 78.62909567496723, + "grad_norm": 0.2308485507965088, + "learning_rate": 0.0006, + "loss": 3.4990549087524414, + "step": 5661 + }, + { + "epoch": 78.6430755788554, + "grad_norm": 0.22869032621383667, + "learning_rate": 0.0006, + "loss": 3.476654529571533, + "step": 5662 + }, + { + "epoch": 78.65705548274356, + "grad_norm": 0.2244352102279663, + "learning_rate": 0.0006, + "loss": 3.4927053451538086, + "step": 5663 + }, + { + "epoch": 78.67103538663171, + "grad_norm": 0.21660304069519043, + "learning_rate": 0.0006, + "loss": 3.509037494659424, + "step": 5664 + }, + { + "epoch": 78.68501529051987, + "grad_norm": 0.21199069917201996, + "learning_rate": 0.0006, + "loss": 3.5118260383605957, + "step": 5665 + }, + { + "epoch": 78.69899519440804, + "grad_norm": 0.23588138818740845, + "learning_rate": 0.0006, + "loss": 3.497911214828491, + "step": 5666 + }, + { + "epoch": 78.7129750982962, + "grad_norm": 0.24299076199531555, + "learning_rate": 0.0006, + "loss": 3.4978718757629395, + "step": 5667 + }, + { + "epoch": 78.72695500218435, + "grad_norm": 0.22472943365573883, + "learning_rate": 0.0006, + "loss": 3.4873275756835938, + "step": 5668 + }, + { + "epoch": 78.74093490607252, + "grad_norm": 0.24047710001468658, + "learning_rate": 0.0006, + "loss": 3.51192307472229, + "step": 5669 + }, + { + "epoch": 78.75491480996068, + "grad_norm": 0.23834499716758728, + "learning_rate": 0.0006, + "loss": 3.5092411041259766, + "step": 5670 + }, + { + "epoch": 78.76889471384884, + "grad_norm": 0.22663438320159912, + "learning_rate": 0.0006, + "loss": 3.4869158267974854, + "step": 5671 + }, + { + "epoch": 78.78287461773701, + "grad_norm": 0.23967741429805756, + "learning_rate": 0.0006, + "loss": 3.4928178787231445, + "step": 5672 + }, + { + "epoch": 78.79685452162516, + "grad_norm": 0.2554507851600647, + "learning_rate": 0.0006, + "loss": 3.506929636001587, + "step": 5673 + }, + { + "epoch": 78.81083442551332, + "grad_norm": 0.2269635796546936, + "learning_rate": 0.0006, + "loss": 3.491553544998169, + "step": 5674 + }, + { + "epoch": 78.82481432940149, + "grad_norm": 0.22387325763702393, + "learning_rate": 0.0006, + "loss": 3.510486602783203, + "step": 5675 + }, + { + "epoch": 78.83879423328965, + "grad_norm": 0.22415105998516083, + "learning_rate": 0.0006, + "loss": 3.508218765258789, + "step": 5676 + }, + { + "epoch": 78.8527741371778, + "grad_norm": 0.21340659260749817, + "learning_rate": 0.0006, + "loss": 3.4840855598449707, + "step": 5677 + }, + { + "epoch": 78.86675404106597, + "grad_norm": 0.20351317524909973, + "learning_rate": 0.0006, + "loss": 3.485891342163086, + "step": 5678 + }, + { + "epoch": 78.88073394495413, + "grad_norm": 0.21389521658420563, + "learning_rate": 0.0006, + "loss": 3.447760581970215, + "step": 5679 + }, + { + "epoch": 78.89471384884229, + "grad_norm": 0.20613767206668854, + "learning_rate": 0.0006, + "loss": 3.484274387359619, + "step": 5680 + }, + { + "epoch": 78.90869375273044, + "grad_norm": 0.22112590074539185, + "learning_rate": 0.0006, + "loss": 3.4902679920196533, + "step": 5681 + }, + { + "epoch": 78.92267365661861, + "grad_norm": 0.24395327270030975, + "learning_rate": 0.0006, + "loss": 3.5017199516296387, + "step": 5682 + }, + { + "epoch": 78.93665356050677, + "grad_norm": 0.21891266107559204, + "learning_rate": 0.0006, + "loss": 3.4892828464508057, + "step": 5683 + }, + { + "epoch": 78.95063346439493, + "grad_norm": 0.1842963546514511, + "learning_rate": 0.0006, + "loss": 3.4611716270446777, + "step": 5684 + }, + { + "epoch": 78.9646133682831, + "grad_norm": 0.21199378371238708, + "learning_rate": 0.0006, + "loss": 3.487452507019043, + "step": 5685 + }, + { + "epoch": 78.97859327217125, + "grad_norm": 0.2304743379354477, + "learning_rate": 0.0006, + "loss": 3.502875804901123, + "step": 5686 + }, + { + "epoch": 78.99257317605941, + "grad_norm": 0.22459475696086884, + "learning_rate": 0.0006, + "loss": 3.47969388961792, + "step": 5687 + }, + { + "epoch": 79.0, + "grad_norm": 0.22847296297550201, + "learning_rate": 0.0006, + "loss": 3.497244358062744, + "step": 5688 + }, + { + "epoch": 79.0, + "eval_loss": 3.9824025630950928, + "eval_runtime": 45.0842, + "eval_samples_per_second": 54.165, + "eval_steps_per_second": 3.394, + "step": 5688 + }, + { + "epoch": 79.01397990388816, + "grad_norm": 0.2116587609052658, + "learning_rate": 0.0006, + "loss": 3.467320442199707, + "step": 5689 + }, + { + "epoch": 79.02795980777633, + "grad_norm": 0.2433212846517563, + "learning_rate": 0.0006, + "loss": 3.454660415649414, + "step": 5690 + }, + { + "epoch": 79.04193971166448, + "grad_norm": 0.27106034755706787, + "learning_rate": 0.0006, + "loss": 3.4242570400238037, + "step": 5691 + }, + { + "epoch": 79.05591961555264, + "grad_norm": 0.2392120659351349, + "learning_rate": 0.0006, + "loss": 3.461986541748047, + "step": 5692 + }, + { + "epoch": 79.06989951944081, + "grad_norm": 0.2061600536108017, + "learning_rate": 0.0006, + "loss": 3.462704658508301, + "step": 5693 + }, + { + "epoch": 79.08387942332897, + "grad_norm": 0.23523560166358948, + "learning_rate": 0.0006, + "loss": 3.435553789138794, + "step": 5694 + }, + { + "epoch": 79.09785932721712, + "grad_norm": 0.23340672254562378, + "learning_rate": 0.0006, + "loss": 3.4382264614105225, + "step": 5695 + }, + { + "epoch": 79.1118392311053, + "grad_norm": 0.23986691236495972, + "learning_rate": 0.0006, + "loss": 3.465056896209717, + "step": 5696 + }, + { + "epoch": 79.12581913499345, + "grad_norm": 0.3069128394126892, + "learning_rate": 0.0006, + "loss": 3.4774551391601562, + "step": 5697 + }, + { + "epoch": 79.1397990388816, + "grad_norm": 0.3146822154521942, + "learning_rate": 0.0006, + "loss": 3.463569402694702, + "step": 5698 + }, + { + "epoch": 79.15377894276976, + "grad_norm": 0.2516225576400757, + "learning_rate": 0.0006, + "loss": 3.455902576446533, + "step": 5699 + }, + { + "epoch": 79.16775884665793, + "grad_norm": 0.23645997047424316, + "learning_rate": 0.0006, + "loss": 3.4733195304870605, + "step": 5700 + }, + { + "epoch": 79.18173875054609, + "grad_norm": 0.23653559386730194, + "learning_rate": 0.0006, + "loss": 3.4751782417297363, + "step": 5701 + }, + { + "epoch": 79.19571865443424, + "grad_norm": 0.2404588907957077, + "learning_rate": 0.0006, + "loss": 3.43743896484375, + "step": 5702 + }, + { + "epoch": 79.20969855832242, + "grad_norm": 0.2621341049671173, + "learning_rate": 0.0006, + "loss": 3.4895966053009033, + "step": 5703 + }, + { + "epoch": 79.22367846221057, + "grad_norm": 0.28223180770874023, + "learning_rate": 0.0006, + "loss": 3.4525022506713867, + "step": 5704 + }, + { + "epoch": 79.23765836609873, + "grad_norm": 0.25029054284095764, + "learning_rate": 0.0006, + "loss": 3.491457939147949, + "step": 5705 + }, + { + "epoch": 79.2516382699869, + "grad_norm": 0.20627525448799133, + "learning_rate": 0.0006, + "loss": 3.4669456481933594, + "step": 5706 + }, + { + "epoch": 79.26561817387505, + "grad_norm": 0.2029162049293518, + "learning_rate": 0.0006, + "loss": 3.467924118041992, + "step": 5707 + }, + { + "epoch": 79.27959807776321, + "grad_norm": 0.21813155710697174, + "learning_rate": 0.0006, + "loss": 3.4625706672668457, + "step": 5708 + }, + { + "epoch": 79.29357798165138, + "grad_norm": 0.22105057537555695, + "learning_rate": 0.0006, + "loss": 3.475510597229004, + "step": 5709 + }, + { + "epoch": 79.30755788553954, + "grad_norm": 0.22906996309757233, + "learning_rate": 0.0006, + "loss": 3.468635320663452, + "step": 5710 + }, + { + "epoch": 79.3215377894277, + "grad_norm": 0.24189208447933197, + "learning_rate": 0.0006, + "loss": 3.5031652450561523, + "step": 5711 + }, + { + "epoch": 79.33551769331586, + "grad_norm": 0.24393346905708313, + "learning_rate": 0.0006, + "loss": 3.454542636871338, + "step": 5712 + }, + { + "epoch": 79.34949759720402, + "grad_norm": 0.2266826182603836, + "learning_rate": 0.0006, + "loss": 3.4841208457946777, + "step": 5713 + }, + { + "epoch": 79.36347750109218, + "grad_norm": 0.2427995502948761, + "learning_rate": 0.0006, + "loss": 3.4595608711242676, + "step": 5714 + }, + { + "epoch": 79.37745740498035, + "grad_norm": 0.22999171912670135, + "learning_rate": 0.0006, + "loss": 3.485996723175049, + "step": 5715 + }, + { + "epoch": 79.3914373088685, + "grad_norm": 0.20932789146900177, + "learning_rate": 0.0006, + "loss": 3.488872528076172, + "step": 5716 + }, + { + "epoch": 79.40541721275666, + "grad_norm": 0.21802127361297607, + "learning_rate": 0.0006, + "loss": 3.4697980880737305, + "step": 5717 + }, + { + "epoch": 79.41939711664482, + "grad_norm": 0.197403684258461, + "learning_rate": 0.0006, + "loss": 3.486513614654541, + "step": 5718 + }, + { + "epoch": 79.43337702053299, + "grad_norm": 0.23447830975055695, + "learning_rate": 0.0006, + "loss": 3.475939989089966, + "step": 5719 + }, + { + "epoch": 79.44735692442114, + "grad_norm": 0.22854745388031006, + "learning_rate": 0.0006, + "loss": 3.465761661529541, + "step": 5720 + }, + { + "epoch": 79.4613368283093, + "grad_norm": 0.23276479542255402, + "learning_rate": 0.0006, + "loss": 3.4629950523376465, + "step": 5721 + }, + { + "epoch": 79.47531673219747, + "grad_norm": 0.2330375462770462, + "learning_rate": 0.0006, + "loss": 3.4637608528137207, + "step": 5722 + }, + { + "epoch": 79.48929663608563, + "grad_norm": 0.20138737559318542, + "learning_rate": 0.0006, + "loss": 3.481213092803955, + "step": 5723 + }, + { + "epoch": 79.50327653997378, + "grad_norm": 0.21511636674404144, + "learning_rate": 0.0006, + "loss": 3.476829767227173, + "step": 5724 + }, + { + "epoch": 79.51725644386195, + "grad_norm": 0.23398199677467346, + "learning_rate": 0.0006, + "loss": 3.489365577697754, + "step": 5725 + }, + { + "epoch": 79.53123634775011, + "grad_norm": 0.2232203334569931, + "learning_rate": 0.0006, + "loss": 3.4860544204711914, + "step": 5726 + }, + { + "epoch": 79.54521625163827, + "grad_norm": 0.22046223282814026, + "learning_rate": 0.0006, + "loss": 3.474432945251465, + "step": 5727 + }, + { + "epoch": 79.55919615552644, + "grad_norm": 0.21202176809310913, + "learning_rate": 0.0006, + "loss": 3.4932260513305664, + "step": 5728 + }, + { + "epoch": 79.57317605941459, + "grad_norm": 0.20418033003807068, + "learning_rate": 0.0006, + "loss": 3.4956419467926025, + "step": 5729 + }, + { + "epoch": 79.58715596330275, + "grad_norm": 0.2247099131345749, + "learning_rate": 0.0006, + "loss": 3.4714908599853516, + "step": 5730 + }, + { + "epoch": 79.60113586719092, + "grad_norm": 0.22176751494407654, + "learning_rate": 0.0006, + "loss": 3.4729676246643066, + "step": 5731 + }, + { + "epoch": 79.61511577107908, + "grad_norm": 0.3019230365753174, + "learning_rate": 0.0006, + "loss": 3.510695695877075, + "step": 5732 + }, + { + "epoch": 79.62909567496723, + "grad_norm": 0.2699214220046997, + "learning_rate": 0.0006, + "loss": 3.4848737716674805, + "step": 5733 + }, + { + "epoch": 79.6430755788554, + "grad_norm": 0.21180644631385803, + "learning_rate": 0.0006, + "loss": 3.4982075691223145, + "step": 5734 + }, + { + "epoch": 79.65705548274356, + "grad_norm": 0.22198693454265594, + "learning_rate": 0.0006, + "loss": 3.4891958236694336, + "step": 5735 + }, + { + "epoch": 79.67103538663171, + "grad_norm": 0.23550960421562195, + "learning_rate": 0.0006, + "loss": 3.4809060096740723, + "step": 5736 + }, + { + "epoch": 79.68501529051987, + "grad_norm": 0.22033970057964325, + "learning_rate": 0.0006, + "loss": 3.4804179668426514, + "step": 5737 + }, + { + "epoch": 79.69899519440804, + "grad_norm": 0.22671130299568176, + "learning_rate": 0.0006, + "loss": 3.5053179264068604, + "step": 5738 + }, + { + "epoch": 79.7129750982962, + "grad_norm": 0.22178004682064056, + "learning_rate": 0.0006, + "loss": 3.481842279434204, + "step": 5739 + }, + { + "epoch": 79.72695500218435, + "grad_norm": 0.21100834012031555, + "learning_rate": 0.0006, + "loss": 3.4759697914123535, + "step": 5740 + }, + { + "epoch": 79.74093490607252, + "grad_norm": 0.22176271677017212, + "learning_rate": 0.0006, + "loss": 3.475595712661743, + "step": 5741 + }, + { + "epoch": 79.75491480996068, + "grad_norm": 0.24720509350299835, + "learning_rate": 0.0006, + "loss": 3.489837646484375, + "step": 5742 + }, + { + "epoch": 79.76889471384884, + "grad_norm": 0.26469993591308594, + "learning_rate": 0.0006, + "loss": 3.506197452545166, + "step": 5743 + }, + { + "epoch": 79.78287461773701, + "grad_norm": 0.24642309546470642, + "learning_rate": 0.0006, + "loss": 3.470227003097534, + "step": 5744 + }, + { + "epoch": 79.79685452162516, + "grad_norm": 0.2302687019109726, + "learning_rate": 0.0006, + "loss": 3.4808273315429688, + "step": 5745 + }, + { + "epoch": 79.81083442551332, + "grad_norm": 0.21863581240177155, + "learning_rate": 0.0006, + "loss": 3.4925639629364014, + "step": 5746 + }, + { + "epoch": 79.82481432940149, + "grad_norm": 0.22680892050266266, + "learning_rate": 0.0006, + "loss": 3.5036230087280273, + "step": 5747 + }, + { + "epoch": 79.83879423328965, + "grad_norm": 0.2469770610332489, + "learning_rate": 0.0006, + "loss": 3.483344078063965, + "step": 5748 + }, + { + "epoch": 79.8527741371778, + "grad_norm": 0.24359549582004547, + "learning_rate": 0.0006, + "loss": 3.4770007133483887, + "step": 5749 + }, + { + "epoch": 79.86675404106597, + "grad_norm": 0.22829081118106842, + "learning_rate": 0.0006, + "loss": 3.4755868911743164, + "step": 5750 + }, + { + "epoch": 79.88073394495413, + "grad_norm": 0.19276872277259827, + "learning_rate": 0.0006, + "loss": 3.4675350189208984, + "step": 5751 + }, + { + "epoch": 79.89471384884229, + "grad_norm": 0.19389234483242035, + "learning_rate": 0.0006, + "loss": 3.4747910499572754, + "step": 5752 + }, + { + "epoch": 79.90869375273044, + "grad_norm": 0.19570349156856537, + "learning_rate": 0.0006, + "loss": 3.5035524368286133, + "step": 5753 + }, + { + "epoch": 79.92267365661861, + "grad_norm": 0.21111367642879486, + "learning_rate": 0.0006, + "loss": 3.488398551940918, + "step": 5754 + }, + { + "epoch": 79.93665356050677, + "grad_norm": 0.219063401222229, + "learning_rate": 0.0006, + "loss": 3.483445882797241, + "step": 5755 + }, + { + "epoch": 79.95063346439493, + "grad_norm": 0.22253118455410004, + "learning_rate": 0.0006, + "loss": 3.45628023147583, + "step": 5756 + }, + { + "epoch": 79.9646133682831, + "grad_norm": 0.25083762407302856, + "learning_rate": 0.0006, + "loss": 3.5318427085876465, + "step": 5757 + }, + { + "epoch": 79.97859327217125, + "grad_norm": 0.22656984627246857, + "learning_rate": 0.0006, + "loss": 3.48038649559021, + "step": 5758 + }, + { + "epoch": 79.99257317605941, + "grad_norm": 0.20029467344284058, + "learning_rate": 0.0006, + "loss": 3.482250213623047, + "step": 5759 + }, + { + "epoch": 80.0, + "grad_norm": 0.24279549717903137, + "learning_rate": 0.0006, + "loss": 3.5121026039123535, + "step": 5760 + }, + { + "epoch": 80.0, + "eval_loss": 3.978234052658081, + "eval_runtime": 44.1332, + "eval_samples_per_second": 55.333, + "eval_steps_per_second": 3.467, + "step": 5760 + }, + { + "epoch": 80.01397990388816, + "grad_norm": 0.25131338834762573, + "learning_rate": 0.0006, + "loss": 3.4301276206970215, + "step": 5761 + }, + { + "epoch": 80.02795980777633, + "grad_norm": 0.2534768283367157, + "learning_rate": 0.0006, + "loss": 3.451167583465576, + "step": 5762 + }, + { + "epoch": 80.04193971166448, + "grad_norm": 0.25048282742500305, + "learning_rate": 0.0006, + "loss": 3.481504440307617, + "step": 5763 + }, + { + "epoch": 80.05591961555264, + "grad_norm": 0.24254269897937775, + "learning_rate": 0.0006, + "loss": 3.4106149673461914, + "step": 5764 + }, + { + "epoch": 80.06989951944081, + "grad_norm": 0.22116127610206604, + "learning_rate": 0.0006, + "loss": 3.4241909980773926, + "step": 5765 + }, + { + "epoch": 80.08387942332897, + "grad_norm": 0.23056873679161072, + "learning_rate": 0.0006, + "loss": 3.441988468170166, + "step": 5766 + }, + { + "epoch": 80.09785932721712, + "grad_norm": 0.270584374666214, + "learning_rate": 0.0006, + "loss": 3.443169116973877, + "step": 5767 + }, + { + "epoch": 80.1118392311053, + "grad_norm": 0.2976143956184387, + "learning_rate": 0.0006, + "loss": 3.448213815689087, + "step": 5768 + }, + { + "epoch": 80.12581913499345, + "grad_norm": 0.26311707496643066, + "learning_rate": 0.0006, + "loss": 3.4544711112976074, + "step": 5769 + }, + { + "epoch": 80.1397990388816, + "grad_norm": 0.23963525891304016, + "learning_rate": 0.0006, + "loss": 3.470118522644043, + "step": 5770 + }, + { + "epoch": 80.15377894276976, + "grad_norm": 0.22066232562065125, + "learning_rate": 0.0006, + "loss": 3.454728126525879, + "step": 5771 + }, + { + "epoch": 80.16775884665793, + "grad_norm": 0.2365395873785019, + "learning_rate": 0.0006, + "loss": 3.4711155891418457, + "step": 5772 + }, + { + "epoch": 80.18173875054609, + "grad_norm": 0.2447291910648346, + "learning_rate": 0.0006, + "loss": 3.4850234985351562, + "step": 5773 + }, + { + "epoch": 80.19571865443424, + "grad_norm": 0.21378695964813232, + "learning_rate": 0.0006, + "loss": 3.4519004821777344, + "step": 5774 + }, + { + "epoch": 80.20969855832242, + "grad_norm": 0.22056379914283752, + "learning_rate": 0.0006, + "loss": 3.440544366836548, + "step": 5775 + }, + { + "epoch": 80.22367846221057, + "grad_norm": 0.2642355263233185, + "learning_rate": 0.0006, + "loss": 3.474979877471924, + "step": 5776 + }, + { + "epoch": 80.23765836609873, + "grad_norm": 0.2748482823371887, + "learning_rate": 0.0006, + "loss": 3.475363254547119, + "step": 5777 + }, + { + "epoch": 80.2516382699869, + "grad_norm": 0.24379116296768188, + "learning_rate": 0.0006, + "loss": 3.496967315673828, + "step": 5778 + }, + { + "epoch": 80.26561817387505, + "grad_norm": 0.2028840184211731, + "learning_rate": 0.0006, + "loss": 3.431668758392334, + "step": 5779 + }, + { + "epoch": 80.27959807776321, + "grad_norm": 0.21429325640201569, + "learning_rate": 0.0006, + "loss": 3.440277099609375, + "step": 5780 + }, + { + "epoch": 80.29357798165138, + "grad_norm": 0.24563860893249512, + "learning_rate": 0.0006, + "loss": 3.4491970539093018, + "step": 5781 + }, + { + "epoch": 80.30755788553954, + "grad_norm": 0.26240795850753784, + "learning_rate": 0.0006, + "loss": 3.4703845977783203, + "step": 5782 + }, + { + "epoch": 80.3215377894277, + "grad_norm": 0.22902022302150726, + "learning_rate": 0.0006, + "loss": 3.472461700439453, + "step": 5783 + }, + { + "epoch": 80.33551769331586, + "grad_norm": 0.21905358135700226, + "learning_rate": 0.0006, + "loss": 3.4711859226226807, + "step": 5784 + }, + { + "epoch": 80.34949759720402, + "grad_norm": 0.2465618997812271, + "learning_rate": 0.0006, + "loss": 3.4803764820098877, + "step": 5785 + }, + { + "epoch": 80.36347750109218, + "grad_norm": 0.22397007048130035, + "learning_rate": 0.0006, + "loss": 3.5154547691345215, + "step": 5786 + }, + { + "epoch": 80.37745740498035, + "grad_norm": 0.2198820561170578, + "learning_rate": 0.0006, + "loss": 3.47590970993042, + "step": 5787 + }, + { + "epoch": 80.3914373088685, + "grad_norm": 0.20409493148326874, + "learning_rate": 0.0006, + "loss": 3.477367401123047, + "step": 5788 + }, + { + "epoch": 80.40541721275666, + "grad_norm": 0.217926487326622, + "learning_rate": 0.0006, + "loss": 3.490652084350586, + "step": 5789 + }, + { + "epoch": 80.41939711664482, + "grad_norm": 0.21637201309204102, + "learning_rate": 0.0006, + "loss": 3.458226442337036, + "step": 5790 + }, + { + "epoch": 80.43337702053299, + "grad_norm": 0.20321200788021088, + "learning_rate": 0.0006, + "loss": 3.452885866165161, + "step": 5791 + }, + { + "epoch": 80.44735692442114, + "grad_norm": 0.21885623037815094, + "learning_rate": 0.0006, + "loss": 3.4941980838775635, + "step": 5792 + }, + { + "epoch": 80.4613368283093, + "grad_norm": 0.22409287095069885, + "learning_rate": 0.0006, + "loss": 3.4670767784118652, + "step": 5793 + }, + { + "epoch": 80.47531673219747, + "grad_norm": 0.21799036860466003, + "learning_rate": 0.0006, + "loss": 3.4714083671569824, + "step": 5794 + }, + { + "epoch": 80.48929663608563, + "grad_norm": 0.21685674786567688, + "learning_rate": 0.0006, + "loss": 3.4904956817626953, + "step": 5795 + }, + { + "epoch": 80.50327653997378, + "grad_norm": 0.20650283992290497, + "learning_rate": 0.0006, + "loss": 3.4683380126953125, + "step": 5796 + }, + { + "epoch": 80.51725644386195, + "grad_norm": 0.21926143765449524, + "learning_rate": 0.0006, + "loss": 3.4641075134277344, + "step": 5797 + }, + { + "epoch": 80.53123634775011, + "grad_norm": 0.2350672036409378, + "learning_rate": 0.0006, + "loss": 3.44460391998291, + "step": 5798 + }, + { + "epoch": 80.54521625163827, + "grad_norm": 0.2503013610839844, + "learning_rate": 0.0006, + "loss": 3.4592742919921875, + "step": 5799 + }, + { + "epoch": 80.55919615552644, + "grad_norm": 0.24494926631450653, + "learning_rate": 0.0006, + "loss": 3.5099523067474365, + "step": 5800 + }, + { + "epoch": 80.57317605941459, + "grad_norm": 0.23444698750972748, + "learning_rate": 0.0006, + "loss": 3.451995849609375, + "step": 5801 + }, + { + "epoch": 80.58715596330275, + "grad_norm": 0.22345036268234253, + "learning_rate": 0.0006, + "loss": 3.4782915115356445, + "step": 5802 + }, + { + "epoch": 80.60113586719092, + "grad_norm": 0.22532342374324799, + "learning_rate": 0.0006, + "loss": 3.5129644870758057, + "step": 5803 + }, + { + "epoch": 80.61511577107908, + "grad_norm": 0.26806071400642395, + "learning_rate": 0.0006, + "loss": 3.4816815853118896, + "step": 5804 + }, + { + "epoch": 80.62909567496723, + "grad_norm": 0.2529740035533905, + "learning_rate": 0.0006, + "loss": 3.4738473892211914, + "step": 5805 + }, + { + "epoch": 80.6430755788554, + "grad_norm": 0.21056286990642548, + "learning_rate": 0.0006, + "loss": 3.464974880218506, + "step": 5806 + }, + { + "epoch": 80.65705548274356, + "grad_norm": 0.21475818753242493, + "learning_rate": 0.0006, + "loss": 3.4820570945739746, + "step": 5807 + }, + { + "epoch": 80.67103538663171, + "grad_norm": 0.2191086858510971, + "learning_rate": 0.0006, + "loss": 3.502323627471924, + "step": 5808 + }, + { + "epoch": 80.68501529051987, + "grad_norm": 0.2302156239748001, + "learning_rate": 0.0006, + "loss": 3.4993669986724854, + "step": 5809 + }, + { + "epoch": 80.69899519440804, + "grad_norm": 0.22701990604400635, + "learning_rate": 0.0006, + "loss": 3.462667465209961, + "step": 5810 + }, + { + "epoch": 80.7129750982962, + "grad_norm": 0.20839478075504303, + "learning_rate": 0.0006, + "loss": 3.4990062713623047, + "step": 5811 + }, + { + "epoch": 80.72695500218435, + "grad_norm": 0.24495407938957214, + "learning_rate": 0.0006, + "loss": 3.514021396636963, + "step": 5812 + }, + { + "epoch": 80.74093490607252, + "grad_norm": 0.27316489815711975, + "learning_rate": 0.0006, + "loss": 3.463404655456543, + "step": 5813 + }, + { + "epoch": 80.75491480996068, + "grad_norm": 0.22948578000068665, + "learning_rate": 0.0006, + "loss": 3.505904197692871, + "step": 5814 + }, + { + "epoch": 80.76889471384884, + "grad_norm": 0.21909916400909424, + "learning_rate": 0.0006, + "loss": 3.5149335861206055, + "step": 5815 + }, + { + "epoch": 80.78287461773701, + "grad_norm": 0.23310492932796478, + "learning_rate": 0.0006, + "loss": 3.464721202850342, + "step": 5816 + }, + { + "epoch": 80.79685452162516, + "grad_norm": 0.2319480925798416, + "learning_rate": 0.0006, + "loss": 3.4716296195983887, + "step": 5817 + }, + { + "epoch": 80.81083442551332, + "grad_norm": 0.22677654027938843, + "learning_rate": 0.0006, + "loss": 3.4898571968078613, + "step": 5818 + }, + { + "epoch": 80.82481432940149, + "grad_norm": 0.2309885025024414, + "learning_rate": 0.0006, + "loss": 3.5047802925109863, + "step": 5819 + }, + { + "epoch": 80.83879423328965, + "grad_norm": 0.23699891567230225, + "learning_rate": 0.0006, + "loss": 3.4849839210510254, + "step": 5820 + }, + { + "epoch": 80.8527741371778, + "grad_norm": 0.2177085429430008, + "learning_rate": 0.0006, + "loss": 3.5039596557617188, + "step": 5821 + }, + { + "epoch": 80.86675404106597, + "grad_norm": 0.2501188814640045, + "learning_rate": 0.0006, + "loss": 3.476724863052368, + "step": 5822 + }, + { + "epoch": 80.88073394495413, + "grad_norm": 0.24670550227165222, + "learning_rate": 0.0006, + "loss": 3.4802114963531494, + "step": 5823 + }, + { + "epoch": 80.89471384884229, + "grad_norm": 0.2456343024969101, + "learning_rate": 0.0006, + "loss": 3.4718332290649414, + "step": 5824 + }, + { + "epoch": 80.90869375273044, + "grad_norm": 0.23390130698680878, + "learning_rate": 0.0006, + "loss": 3.486870765686035, + "step": 5825 + }, + { + "epoch": 80.92267365661861, + "grad_norm": 0.22055526077747345, + "learning_rate": 0.0006, + "loss": 3.514493227005005, + "step": 5826 + }, + { + "epoch": 80.93665356050677, + "grad_norm": 0.2336755096912384, + "learning_rate": 0.0006, + "loss": 3.470463275909424, + "step": 5827 + }, + { + "epoch": 80.95063346439493, + "grad_norm": 0.23320306837558746, + "learning_rate": 0.0006, + "loss": 3.4858689308166504, + "step": 5828 + }, + { + "epoch": 80.9646133682831, + "grad_norm": 0.23942042887210846, + "learning_rate": 0.0006, + "loss": 3.5128583908081055, + "step": 5829 + }, + { + "epoch": 80.97859327217125, + "grad_norm": 0.26255691051483154, + "learning_rate": 0.0006, + "loss": 3.4763708114624023, + "step": 5830 + }, + { + "epoch": 80.99257317605941, + "grad_norm": 0.2564900517463684, + "learning_rate": 0.0006, + "loss": 3.5013113021850586, + "step": 5831 + }, + { + "epoch": 81.0, + "grad_norm": 0.27842438220977783, + "learning_rate": 0.0006, + "loss": 3.530803680419922, + "step": 5832 + }, + { + "epoch": 81.0, + "eval_loss": 3.994793653488159, + "eval_runtime": 44.7478, + "eval_samples_per_second": 54.573, + "eval_steps_per_second": 3.419, + "step": 5832 + }, + { + "epoch": 81.01397990388816, + "grad_norm": 0.2241310030221939, + "learning_rate": 0.0006, + "loss": 3.4611167907714844, + "step": 5833 + }, + { + "epoch": 81.02795980777633, + "grad_norm": 0.2282719761133194, + "learning_rate": 0.0006, + "loss": 3.4444174766540527, + "step": 5834 + }, + { + "epoch": 81.04193971166448, + "grad_norm": 0.22664876282215118, + "learning_rate": 0.0006, + "loss": 3.4553420543670654, + "step": 5835 + }, + { + "epoch": 81.05591961555264, + "grad_norm": 0.23604267835617065, + "learning_rate": 0.0006, + "loss": 3.446911573410034, + "step": 5836 + }, + { + "epoch": 81.06989951944081, + "grad_norm": 0.24082261323928833, + "learning_rate": 0.0006, + "loss": 3.4441776275634766, + "step": 5837 + }, + { + "epoch": 81.08387942332897, + "grad_norm": 0.22746489942073822, + "learning_rate": 0.0006, + "loss": 3.452177047729492, + "step": 5838 + }, + { + "epoch": 81.09785932721712, + "grad_norm": 0.21123987436294556, + "learning_rate": 0.0006, + "loss": 3.4311065673828125, + "step": 5839 + }, + { + "epoch": 81.1118392311053, + "grad_norm": 0.22218266129493713, + "learning_rate": 0.0006, + "loss": 3.467769145965576, + "step": 5840 + }, + { + "epoch": 81.12581913499345, + "grad_norm": 0.2289019376039505, + "learning_rate": 0.0006, + "loss": 3.4591445922851562, + "step": 5841 + }, + { + "epoch": 81.1397990388816, + "grad_norm": 0.21944275498390198, + "learning_rate": 0.0006, + "loss": 3.471113681793213, + "step": 5842 + }, + { + "epoch": 81.15377894276976, + "grad_norm": 0.22327102720737457, + "learning_rate": 0.0006, + "loss": 3.466477394104004, + "step": 5843 + }, + { + "epoch": 81.16775884665793, + "grad_norm": 0.24516990780830383, + "learning_rate": 0.0006, + "loss": 3.4205875396728516, + "step": 5844 + }, + { + "epoch": 81.18173875054609, + "grad_norm": 0.22093479335308075, + "learning_rate": 0.0006, + "loss": 3.4454703330993652, + "step": 5845 + }, + { + "epoch": 81.19571865443424, + "grad_norm": 0.2028535008430481, + "learning_rate": 0.0006, + "loss": 3.4515299797058105, + "step": 5846 + }, + { + "epoch": 81.20969855832242, + "grad_norm": 0.2238505333662033, + "learning_rate": 0.0006, + "loss": 3.459362506866455, + "step": 5847 + }, + { + "epoch": 81.22367846221057, + "grad_norm": 0.2231738269329071, + "learning_rate": 0.0006, + "loss": 3.4835047721862793, + "step": 5848 + }, + { + "epoch": 81.23765836609873, + "grad_norm": 0.23899082839488983, + "learning_rate": 0.0006, + "loss": 3.471942901611328, + "step": 5849 + }, + { + "epoch": 81.2516382699869, + "grad_norm": 0.2504292130470276, + "learning_rate": 0.0006, + "loss": 3.447814702987671, + "step": 5850 + }, + { + "epoch": 81.26561817387505, + "grad_norm": 0.24690432846546173, + "learning_rate": 0.0006, + "loss": 3.4676897525787354, + "step": 5851 + }, + { + "epoch": 81.27959807776321, + "grad_norm": 0.2241731733083725, + "learning_rate": 0.0006, + "loss": 3.4704437255859375, + "step": 5852 + }, + { + "epoch": 81.29357798165138, + "grad_norm": 0.21579913794994354, + "learning_rate": 0.0006, + "loss": 3.4581332206726074, + "step": 5853 + }, + { + "epoch": 81.30755788553954, + "grad_norm": 0.19946254789829254, + "learning_rate": 0.0006, + "loss": 3.49086856842041, + "step": 5854 + }, + { + "epoch": 81.3215377894277, + "grad_norm": 0.21698544919490814, + "learning_rate": 0.0006, + "loss": 3.47237491607666, + "step": 5855 + }, + { + "epoch": 81.33551769331586, + "grad_norm": 0.23065327107906342, + "learning_rate": 0.0006, + "loss": 3.471611261367798, + "step": 5856 + }, + { + "epoch": 81.34949759720402, + "grad_norm": 0.25529375672340393, + "learning_rate": 0.0006, + "loss": 3.474853038787842, + "step": 5857 + }, + { + "epoch": 81.36347750109218, + "grad_norm": 0.2427460253238678, + "learning_rate": 0.0006, + "loss": 3.47169828414917, + "step": 5858 + }, + { + "epoch": 81.37745740498035, + "grad_norm": 0.21831433475017548, + "learning_rate": 0.0006, + "loss": 3.469316005706787, + "step": 5859 + }, + { + "epoch": 81.3914373088685, + "grad_norm": 0.22414742410182953, + "learning_rate": 0.0006, + "loss": 3.4708399772644043, + "step": 5860 + }, + { + "epoch": 81.40541721275666, + "grad_norm": 0.24430912733078003, + "learning_rate": 0.0006, + "loss": 3.4687514305114746, + "step": 5861 + }, + { + "epoch": 81.41939711664482, + "grad_norm": 0.2250177413225174, + "learning_rate": 0.0006, + "loss": 3.471647024154663, + "step": 5862 + }, + { + "epoch": 81.43337702053299, + "grad_norm": 0.21442367136478424, + "learning_rate": 0.0006, + "loss": 3.5020229816436768, + "step": 5863 + }, + { + "epoch": 81.44735692442114, + "grad_norm": 0.2115623503923416, + "learning_rate": 0.0006, + "loss": 3.4541711807250977, + "step": 5864 + }, + { + "epoch": 81.4613368283093, + "grad_norm": 0.21600203216075897, + "learning_rate": 0.0006, + "loss": 3.444777011871338, + "step": 5865 + }, + { + "epoch": 81.47531673219747, + "grad_norm": 0.2073121964931488, + "learning_rate": 0.0006, + "loss": 3.4678783416748047, + "step": 5866 + }, + { + "epoch": 81.48929663608563, + "grad_norm": 0.21327655017375946, + "learning_rate": 0.0006, + "loss": 3.492672920227051, + "step": 5867 + }, + { + "epoch": 81.50327653997378, + "grad_norm": 0.19428470730781555, + "learning_rate": 0.0006, + "loss": 3.4926891326904297, + "step": 5868 + }, + { + "epoch": 81.51725644386195, + "grad_norm": 0.2175777107477188, + "learning_rate": 0.0006, + "loss": 3.4540810585021973, + "step": 5869 + }, + { + "epoch": 81.53123634775011, + "grad_norm": 0.2322985827922821, + "learning_rate": 0.0006, + "loss": 3.4896368980407715, + "step": 5870 + }, + { + "epoch": 81.54521625163827, + "grad_norm": 0.24916131794452667, + "learning_rate": 0.0006, + "loss": 3.4834001064300537, + "step": 5871 + }, + { + "epoch": 81.55919615552644, + "grad_norm": 0.24375544488430023, + "learning_rate": 0.0006, + "loss": 3.4601101875305176, + "step": 5872 + }, + { + "epoch": 81.57317605941459, + "grad_norm": 0.22558897733688354, + "learning_rate": 0.0006, + "loss": 3.479156970977783, + "step": 5873 + }, + { + "epoch": 81.58715596330275, + "grad_norm": 0.2258717566728592, + "learning_rate": 0.0006, + "loss": 3.4763894081115723, + "step": 5874 + }, + { + "epoch": 81.60113586719092, + "grad_norm": 0.2349073439836502, + "learning_rate": 0.0006, + "loss": 3.4897050857543945, + "step": 5875 + }, + { + "epoch": 81.61511577107908, + "grad_norm": 0.2525520920753479, + "learning_rate": 0.0006, + "loss": 3.462857246398926, + "step": 5876 + }, + { + "epoch": 81.62909567496723, + "grad_norm": 0.21800200641155243, + "learning_rate": 0.0006, + "loss": 3.466336488723755, + "step": 5877 + }, + { + "epoch": 81.6430755788554, + "grad_norm": 0.19487148523330688, + "learning_rate": 0.0006, + "loss": 3.494813919067383, + "step": 5878 + }, + { + "epoch": 81.65705548274356, + "grad_norm": 0.2188173234462738, + "learning_rate": 0.0006, + "loss": 3.498023271560669, + "step": 5879 + }, + { + "epoch": 81.67103538663171, + "grad_norm": 0.22095468640327454, + "learning_rate": 0.0006, + "loss": 3.4900009632110596, + "step": 5880 + }, + { + "epoch": 81.68501529051987, + "grad_norm": 0.22997792065143585, + "learning_rate": 0.0006, + "loss": 3.476071357727051, + "step": 5881 + }, + { + "epoch": 81.69899519440804, + "grad_norm": 0.2245410829782486, + "learning_rate": 0.0006, + "loss": 3.456820249557495, + "step": 5882 + }, + { + "epoch": 81.7129750982962, + "grad_norm": 0.22648558020591736, + "learning_rate": 0.0006, + "loss": 3.487612247467041, + "step": 5883 + }, + { + "epoch": 81.72695500218435, + "grad_norm": 0.2600322961807251, + "learning_rate": 0.0006, + "loss": 3.47613525390625, + "step": 5884 + }, + { + "epoch": 81.74093490607252, + "grad_norm": 0.29320329427719116, + "learning_rate": 0.0006, + "loss": 3.4669876098632812, + "step": 5885 + }, + { + "epoch": 81.75491480996068, + "grad_norm": 0.27352645993232727, + "learning_rate": 0.0006, + "loss": 3.4944510459899902, + "step": 5886 + }, + { + "epoch": 81.76889471384884, + "grad_norm": 0.22296367585659027, + "learning_rate": 0.0006, + "loss": 3.4747262001037598, + "step": 5887 + }, + { + "epoch": 81.78287461773701, + "grad_norm": 0.23558233678340912, + "learning_rate": 0.0006, + "loss": 3.4883317947387695, + "step": 5888 + }, + { + "epoch": 81.79685452162516, + "grad_norm": 0.25436776876449585, + "learning_rate": 0.0006, + "loss": 3.486569881439209, + "step": 5889 + }, + { + "epoch": 81.81083442551332, + "grad_norm": 0.24357469379901886, + "learning_rate": 0.0006, + "loss": 3.5173630714416504, + "step": 5890 + }, + { + "epoch": 81.82481432940149, + "grad_norm": 0.208529993891716, + "learning_rate": 0.0006, + "loss": 3.4895973205566406, + "step": 5891 + }, + { + "epoch": 81.83879423328965, + "grad_norm": 0.2506846785545349, + "learning_rate": 0.0006, + "loss": 3.471381425857544, + "step": 5892 + }, + { + "epoch": 81.8527741371778, + "grad_norm": 0.23839038610458374, + "learning_rate": 0.0006, + "loss": 3.5134239196777344, + "step": 5893 + }, + { + "epoch": 81.86675404106597, + "grad_norm": 0.25112682580947876, + "learning_rate": 0.0006, + "loss": 3.4818389415740967, + "step": 5894 + }, + { + "epoch": 81.88073394495413, + "grad_norm": 0.26375311613082886, + "learning_rate": 0.0006, + "loss": 3.451540946960449, + "step": 5895 + }, + { + "epoch": 81.89471384884229, + "grad_norm": 0.24909956753253937, + "learning_rate": 0.0006, + "loss": 3.4711599349975586, + "step": 5896 + }, + { + "epoch": 81.90869375273044, + "grad_norm": 0.25776103138923645, + "learning_rate": 0.0006, + "loss": 3.4937872886657715, + "step": 5897 + }, + { + "epoch": 81.92267365661861, + "grad_norm": 0.24449801445007324, + "learning_rate": 0.0006, + "loss": 3.4718785285949707, + "step": 5898 + }, + { + "epoch": 81.93665356050677, + "grad_norm": 0.25146451592445374, + "learning_rate": 0.0006, + "loss": 3.468308210372925, + "step": 5899 + }, + { + "epoch": 81.95063346439493, + "grad_norm": 0.2371637523174286, + "learning_rate": 0.0006, + "loss": 3.5168726444244385, + "step": 5900 + }, + { + "epoch": 81.9646133682831, + "grad_norm": 0.2174614518880844, + "learning_rate": 0.0006, + "loss": 3.4614851474761963, + "step": 5901 + }, + { + "epoch": 81.97859327217125, + "grad_norm": 0.2184949368238449, + "learning_rate": 0.0006, + "loss": 3.501692771911621, + "step": 5902 + }, + { + "epoch": 81.99257317605941, + "grad_norm": 0.24104104936122894, + "learning_rate": 0.0006, + "loss": 3.470581293106079, + "step": 5903 + }, + { + "epoch": 82.0, + "grad_norm": 0.255840003490448, + "learning_rate": 0.0006, + "loss": 3.419551372528076, + "step": 5904 + }, + { + "epoch": 82.0, + "eval_loss": 3.9897069931030273, + "eval_runtime": 45.1448, + "eval_samples_per_second": 54.093, + "eval_steps_per_second": 3.389, + "step": 5904 + }, + { + "epoch": 82.01397990388816, + "grad_norm": 0.23519675433635712, + "learning_rate": 0.0006, + "loss": 3.4497785568237305, + "step": 5905 + }, + { + "epoch": 82.02795980777633, + "grad_norm": 0.24893461167812347, + "learning_rate": 0.0006, + "loss": 3.4210000038146973, + "step": 5906 + }, + { + "epoch": 82.04193971166448, + "grad_norm": 0.2475820779800415, + "learning_rate": 0.0006, + "loss": 3.465670585632324, + "step": 5907 + }, + { + "epoch": 82.05591961555264, + "grad_norm": 0.24113906919956207, + "learning_rate": 0.0006, + "loss": 3.454935073852539, + "step": 5908 + }, + { + "epoch": 82.06989951944081, + "grad_norm": 0.22427043318748474, + "learning_rate": 0.0006, + "loss": 3.47190523147583, + "step": 5909 + }, + { + "epoch": 82.08387942332897, + "grad_norm": 0.22878019511699677, + "learning_rate": 0.0006, + "loss": 3.4521985054016113, + "step": 5910 + }, + { + "epoch": 82.09785932721712, + "grad_norm": 0.25299179553985596, + "learning_rate": 0.0006, + "loss": 3.439011335372925, + "step": 5911 + }, + { + "epoch": 82.1118392311053, + "grad_norm": 0.29394835233688354, + "learning_rate": 0.0006, + "loss": 3.4350290298461914, + "step": 5912 + }, + { + "epoch": 82.12581913499345, + "grad_norm": 0.29244497418403625, + "learning_rate": 0.0006, + "loss": 3.452918291091919, + "step": 5913 + }, + { + "epoch": 82.1397990388816, + "grad_norm": 0.2498885989189148, + "learning_rate": 0.0006, + "loss": 3.445600986480713, + "step": 5914 + }, + { + "epoch": 82.15377894276976, + "grad_norm": 0.2340220957994461, + "learning_rate": 0.0006, + "loss": 3.446509838104248, + "step": 5915 + }, + { + "epoch": 82.16775884665793, + "grad_norm": 0.2612140476703644, + "learning_rate": 0.0006, + "loss": 3.4699525833129883, + "step": 5916 + }, + { + "epoch": 82.18173875054609, + "grad_norm": 0.29881903529167175, + "learning_rate": 0.0006, + "loss": 3.4616494178771973, + "step": 5917 + }, + { + "epoch": 82.19571865443424, + "grad_norm": 0.3289170265197754, + "learning_rate": 0.0006, + "loss": 3.459996461868286, + "step": 5918 + }, + { + "epoch": 82.20969855832242, + "grad_norm": 0.33752408623695374, + "learning_rate": 0.0006, + "loss": 3.485208511352539, + "step": 5919 + }, + { + "epoch": 82.22367846221057, + "grad_norm": 0.28907373547554016, + "learning_rate": 0.0006, + "loss": 3.4453067779541016, + "step": 5920 + }, + { + "epoch": 82.23765836609873, + "grad_norm": 0.22920988500118256, + "learning_rate": 0.0006, + "loss": 3.4516754150390625, + "step": 5921 + }, + { + "epoch": 82.2516382699869, + "grad_norm": 0.2918834090232849, + "learning_rate": 0.0006, + "loss": 3.4532060623168945, + "step": 5922 + }, + { + "epoch": 82.26561817387505, + "grad_norm": 0.35092175006866455, + "learning_rate": 0.0006, + "loss": 3.481351852416992, + "step": 5923 + }, + { + "epoch": 82.27959807776321, + "grad_norm": 0.35510894656181335, + "learning_rate": 0.0006, + "loss": 3.4563896656036377, + "step": 5924 + }, + { + "epoch": 82.29357798165138, + "grad_norm": 0.284163236618042, + "learning_rate": 0.0006, + "loss": 3.4800498485565186, + "step": 5925 + }, + { + "epoch": 82.30755788553954, + "grad_norm": 0.22560057044029236, + "learning_rate": 0.0006, + "loss": 3.461622714996338, + "step": 5926 + }, + { + "epoch": 82.3215377894277, + "grad_norm": 0.2595600485801697, + "learning_rate": 0.0006, + "loss": 3.4619455337524414, + "step": 5927 + }, + { + "epoch": 82.33551769331586, + "grad_norm": 0.26929134130477905, + "learning_rate": 0.0006, + "loss": 3.4466819763183594, + "step": 5928 + }, + { + "epoch": 82.34949759720402, + "grad_norm": 0.2876140773296356, + "learning_rate": 0.0006, + "loss": 3.4429526329040527, + "step": 5929 + }, + { + "epoch": 82.36347750109218, + "grad_norm": 0.24692676961421967, + "learning_rate": 0.0006, + "loss": 3.465346336364746, + "step": 5930 + }, + { + "epoch": 82.37745740498035, + "grad_norm": 0.2190248966217041, + "learning_rate": 0.0006, + "loss": 3.4734861850738525, + "step": 5931 + }, + { + "epoch": 82.3914373088685, + "grad_norm": 0.23190239071846008, + "learning_rate": 0.0006, + "loss": 3.4560375213623047, + "step": 5932 + }, + { + "epoch": 82.40541721275666, + "grad_norm": 0.26482656598091125, + "learning_rate": 0.0006, + "loss": 3.4604647159576416, + "step": 5933 + }, + { + "epoch": 82.41939711664482, + "grad_norm": 0.24802184104919434, + "learning_rate": 0.0006, + "loss": 3.414149284362793, + "step": 5934 + }, + { + "epoch": 82.43337702053299, + "grad_norm": 0.22652000188827515, + "learning_rate": 0.0006, + "loss": 3.473421096801758, + "step": 5935 + }, + { + "epoch": 82.44735692442114, + "grad_norm": 0.22467140853405, + "learning_rate": 0.0006, + "loss": 3.451671600341797, + "step": 5936 + }, + { + "epoch": 82.4613368283093, + "grad_norm": 0.244468092918396, + "learning_rate": 0.0006, + "loss": 3.4695382118225098, + "step": 5937 + }, + { + "epoch": 82.47531673219747, + "grad_norm": 0.2423151284456253, + "learning_rate": 0.0006, + "loss": 3.45648193359375, + "step": 5938 + }, + { + "epoch": 82.48929663608563, + "grad_norm": 0.24979142844676971, + "learning_rate": 0.0006, + "loss": 3.4783148765563965, + "step": 5939 + }, + { + "epoch": 82.50327653997378, + "grad_norm": 0.2788648009300232, + "learning_rate": 0.0006, + "loss": 3.457810401916504, + "step": 5940 + }, + { + "epoch": 82.51725644386195, + "grad_norm": 0.2886991500854492, + "learning_rate": 0.0006, + "loss": 3.479522228240967, + "step": 5941 + }, + { + "epoch": 82.53123634775011, + "grad_norm": 0.26907554268836975, + "learning_rate": 0.0006, + "loss": 3.449568510055542, + "step": 5942 + }, + { + "epoch": 82.54521625163827, + "grad_norm": 0.2253459244966507, + "learning_rate": 0.0006, + "loss": 3.4410414695739746, + "step": 5943 + }, + { + "epoch": 82.55919615552644, + "grad_norm": 0.23267745971679688, + "learning_rate": 0.0006, + "loss": 3.4297232627868652, + "step": 5944 + }, + { + "epoch": 82.57317605941459, + "grad_norm": 0.2892511785030365, + "learning_rate": 0.0006, + "loss": 3.4358129501342773, + "step": 5945 + }, + { + "epoch": 82.58715596330275, + "grad_norm": 0.2826172113418579, + "learning_rate": 0.0006, + "loss": 3.46335506439209, + "step": 5946 + }, + { + "epoch": 82.60113586719092, + "grad_norm": 0.2273692488670349, + "learning_rate": 0.0006, + "loss": 3.5010366439819336, + "step": 5947 + }, + { + "epoch": 82.61511577107908, + "grad_norm": 0.21712201833724976, + "learning_rate": 0.0006, + "loss": 3.4793381690979004, + "step": 5948 + }, + { + "epoch": 82.62909567496723, + "grad_norm": 0.22338661551475525, + "learning_rate": 0.0006, + "loss": 3.4844970703125, + "step": 5949 + }, + { + "epoch": 82.6430755788554, + "grad_norm": 0.21227683126926422, + "learning_rate": 0.0006, + "loss": 3.4780616760253906, + "step": 5950 + }, + { + "epoch": 82.65705548274356, + "grad_norm": 0.22288236021995544, + "learning_rate": 0.0006, + "loss": 3.4671804904937744, + "step": 5951 + }, + { + "epoch": 82.67103538663171, + "grad_norm": 0.23190240561962128, + "learning_rate": 0.0006, + "loss": 3.5143930912017822, + "step": 5952 + }, + { + "epoch": 82.68501529051987, + "grad_norm": 0.21063187718391418, + "learning_rate": 0.0006, + "loss": 3.497652530670166, + "step": 5953 + }, + { + "epoch": 82.69899519440804, + "grad_norm": 0.2175041288137436, + "learning_rate": 0.0006, + "loss": 3.4725892543792725, + "step": 5954 + }, + { + "epoch": 82.7129750982962, + "grad_norm": 0.23813064396381378, + "learning_rate": 0.0006, + "loss": 3.480269193649292, + "step": 5955 + }, + { + "epoch": 82.72695500218435, + "grad_norm": 0.1962498128414154, + "learning_rate": 0.0006, + "loss": 3.4666576385498047, + "step": 5956 + }, + { + "epoch": 82.74093490607252, + "grad_norm": 0.20937910676002502, + "learning_rate": 0.0006, + "loss": 3.485138416290283, + "step": 5957 + }, + { + "epoch": 82.75491480996068, + "grad_norm": 0.23929032683372498, + "learning_rate": 0.0006, + "loss": 3.4557695388793945, + "step": 5958 + }, + { + "epoch": 82.76889471384884, + "grad_norm": 0.21904121339321136, + "learning_rate": 0.0006, + "loss": 3.477562427520752, + "step": 5959 + }, + { + "epoch": 82.78287461773701, + "grad_norm": 0.20288591086864471, + "learning_rate": 0.0006, + "loss": 3.4972333908081055, + "step": 5960 + }, + { + "epoch": 82.79685452162516, + "grad_norm": 0.2116696536540985, + "learning_rate": 0.0006, + "loss": 3.48240327835083, + "step": 5961 + }, + { + "epoch": 82.81083442551332, + "grad_norm": 0.22824831306934357, + "learning_rate": 0.0006, + "loss": 3.4596962928771973, + "step": 5962 + }, + { + "epoch": 82.82481432940149, + "grad_norm": 0.2335250973701477, + "learning_rate": 0.0006, + "loss": 3.477674961090088, + "step": 5963 + }, + { + "epoch": 82.83879423328965, + "grad_norm": 0.24267305433750153, + "learning_rate": 0.0006, + "loss": 3.5068936347961426, + "step": 5964 + }, + { + "epoch": 82.8527741371778, + "grad_norm": 0.22586151957511902, + "learning_rate": 0.0006, + "loss": 3.5154266357421875, + "step": 5965 + }, + { + "epoch": 82.86675404106597, + "grad_norm": 0.219172403216362, + "learning_rate": 0.0006, + "loss": 3.4788248538970947, + "step": 5966 + }, + { + "epoch": 82.88073394495413, + "grad_norm": 0.230057954788208, + "learning_rate": 0.0006, + "loss": 3.463099479675293, + "step": 5967 + }, + { + "epoch": 82.89471384884229, + "grad_norm": 0.24492645263671875, + "learning_rate": 0.0006, + "loss": 3.495624542236328, + "step": 5968 + }, + { + "epoch": 82.90869375273044, + "grad_norm": 0.2710586488246918, + "learning_rate": 0.0006, + "loss": 3.4884939193725586, + "step": 5969 + }, + { + "epoch": 82.92267365661861, + "grad_norm": 0.26602303981781006, + "learning_rate": 0.0006, + "loss": 3.5522756576538086, + "step": 5970 + }, + { + "epoch": 82.93665356050677, + "grad_norm": 0.21950770914554596, + "learning_rate": 0.0006, + "loss": 3.506800651550293, + "step": 5971 + }, + { + "epoch": 82.95063346439493, + "grad_norm": 0.2120460718870163, + "learning_rate": 0.0006, + "loss": 3.4889087677001953, + "step": 5972 + }, + { + "epoch": 82.9646133682831, + "grad_norm": 0.23518255352973938, + "learning_rate": 0.0006, + "loss": 3.4935286045074463, + "step": 5973 + }, + { + "epoch": 82.97859327217125, + "grad_norm": 0.2183351367712021, + "learning_rate": 0.0006, + "loss": 3.4557912349700928, + "step": 5974 + }, + { + "epoch": 82.99257317605941, + "grad_norm": 0.21057291328907013, + "learning_rate": 0.0006, + "loss": 3.494884967803955, + "step": 5975 + }, + { + "epoch": 83.0, + "grad_norm": 0.23379701375961304, + "learning_rate": 0.0006, + "loss": 3.537684202194214, + "step": 5976 + }, + { + "epoch": 83.0, + "eval_loss": 3.996980667114258, + "eval_runtime": 44.805, + "eval_samples_per_second": 54.503, + "eval_steps_per_second": 3.415, + "step": 5976 + }, + { + "epoch": 83.01397990388816, + "grad_norm": 0.21832400560379028, + "learning_rate": 0.0006, + "loss": 3.4219069480895996, + "step": 5977 + }, + { + "epoch": 83.02795980777633, + "grad_norm": 0.22840751707553864, + "learning_rate": 0.0006, + "loss": 3.444056987762451, + "step": 5978 + }, + { + "epoch": 83.04193971166448, + "grad_norm": 0.24846753478050232, + "learning_rate": 0.0006, + "loss": 3.433744430541992, + "step": 5979 + }, + { + "epoch": 83.05591961555264, + "grad_norm": 0.2614847421646118, + "learning_rate": 0.0006, + "loss": 3.4292588233947754, + "step": 5980 + }, + { + "epoch": 83.06989951944081, + "grad_norm": 0.2762290835380554, + "learning_rate": 0.0006, + "loss": 3.4379489421844482, + "step": 5981 + }, + { + "epoch": 83.08387942332897, + "grad_norm": 0.2695395052433014, + "learning_rate": 0.0006, + "loss": 3.435392141342163, + "step": 5982 + }, + { + "epoch": 83.09785932721712, + "grad_norm": 0.285564661026001, + "learning_rate": 0.0006, + "loss": 3.4732954502105713, + "step": 5983 + }, + { + "epoch": 83.1118392311053, + "grad_norm": 0.28408879041671753, + "learning_rate": 0.0006, + "loss": 3.460115432739258, + "step": 5984 + }, + { + "epoch": 83.12581913499345, + "grad_norm": 0.2638843357563019, + "learning_rate": 0.0006, + "loss": 3.4600658416748047, + "step": 5985 + }, + { + "epoch": 83.1397990388816, + "grad_norm": 0.276947557926178, + "learning_rate": 0.0006, + "loss": 3.427304744720459, + "step": 5986 + }, + { + "epoch": 83.15377894276976, + "grad_norm": 0.29645398259162903, + "learning_rate": 0.0006, + "loss": 3.49354887008667, + "step": 5987 + }, + { + "epoch": 83.16775884665793, + "grad_norm": 0.24671341478824615, + "learning_rate": 0.0006, + "loss": 3.418001890182495, + "step": 5988 + }, + { + "epoch": 83.18173875054609, + "grad_norm": 0.23004917800426483, + "learning_rate": 0.0006, + "loss": 3.4566028118133545, + "step": 5989 + }, + { + "epoch": 83.19571865443424, + "grad_norm": 0.2323729544878006, + "learning_rate": 0.0006, + "loss": 3.476187229156494, + "step": 5990 + }, + { + "epoch": 83.20969855832242, + "grad_norm": 0.2461102306842804, + "learning_rate": 0.0006, + "loss": 3.4485220909118652, + "step": 5991 + }, + { + "epoch": 83.22367846221057, + "grad_norm": 0.2316771298646927, + "learning_rate": 0.0006, + "loss": 3.4753873348236084, + "step": 5992 + }, + { + "epoch": 83.23765836609873, + "grad_norm": 0.21398794651031494, + "learning_rate": 0.0006, + "loss": 3.4336280822753906, + "step": 5993 + }, + { + "epoch": 83.2516382699869, + "grad_norm": 0.2328646034002304, + "learning_rate": 0.0006, + "loss": 3.4349019527435303, + "step": 5994 + }, + { + "epoch": 83.26561817387505, + "grad_norm": 0.2613484859466553, + "learning_rate": 0.0006, + "loss": 3.4748740196228027, + "step": 5995 + }, + { + "epoch": 83.27959807776321, + "grad_norm": 0.24692191183567047, + "learning_rate": 0.0006, + "loss": 3.469376802444458, + "step": 5996 + }, + { + "epoch": 83.29357798165138, + "grad_norm": 0.21643374860286713, + "learning_rate": 0.0006, + "loss": 3.4703941345214844, + "step": 5997 + }, + { + "epoch": 83.30755788553954, + "grad_norm": 0.2107238620519638, + "learning_rate": 0.0006, + "loss": 3.4441919326782227, + "step": 5998 + }, + { + "epoch": 83.3215377894277, + "grad_norm": 0.2236919403076172, + "learning_rate": 0.0006, + "loss": 3.475111484527588, + "step": 5999 + }, + { + "epoch": 83.33551769331586, + "grad_norm": 0.23031125962734222, + "learning_rate": 0.0006, + "loss": 3.463629961013794, + "step": 6000 + }, + { + "epoch": 83.34949759720402, + "grad_norm": 0.23520728945732117, + "learning_rate": 0.0006, + "loss": 3.4377198219299316, + "step": 6001 + }, + { + "epoch": 83.36347750109218, + "grad_norm": 0.24083353579044342, + "learning_rate": 0.0006, + "loss": 3.4637320041656494, + "step": 6002 + }, + { + "epoch": 83.37745740498035, + "grad_norm": 0.2591738700866699, + "learning_rate": 0.0006, + "loss": 3.4864988327026367, + "step": 6003 + }, + { + "epoch": 83.3914373088685, + "grad_norm": 0.22105777263641357, + "learning_rate": 0.0006, + "loss": 3.425142288208008, + "step": 6004 + }, + { + "epoch": 83.40541721275666, + "grad_norm": 0.22660304605960846, + "learning_rate": 0.0006, + "loss": 3.468355894088745, + "step": 6005 + }, + { + "epoch": 83.41939711664482, + "grad_norm": 0.320535808801651, + "learning_rate": 0.0006, + "loss": 3.448850631713867, + "step": 6006 + }, + { + "epoch": 83.43337702053299, + "grad_norm": 0.3168669044971466, + "learning_rate": 0.0006, + "loss": 3.4643197059631348, + "step": 6007 + }, + { + "epoch": 83.44735692442114, + "grad_norm": 0.2560042440891266, + "learning_rate": 0.0006, + "loss": 3.475637912750244, + "step": 6008 + }, + { + "epoch": 83.4613368283093, + "grad_norm": 0.21204592287540436, + "learning_rate": 0.0006, + "loss": 3.4471921920776367, + "step": 6009 + }, + { + "epoch": 83.47531673219747, + "grad_norm": 0.21767926216125488, + "learning_rate": 0.0006, + "loss": 3.4536280632019043, + "step": 6010 + }, + { + "epoch": 83.48929663608563, + "grad_norm": 0.24681858718395233, + "learning_rate": 0.0006, + "loss": 3.4713847637176514, + "step": 6011 + }, + { + "epoch": 83.50327653997378, + "grad_norm": 0.26184895634651184, + "learning_rate": 0.0006, + "loss": 3.4650652408599854, + "step": 6012 + }, + { + "epoch": 83.51725644386195, + "grad_norm": 0.24959588050842285, + "learning_rate": 0.0006, + "loss": 3.4610469341278076, + "step": 6013 + }, + { + "epoch": 83.53123634775011, + "grad_norm": 0.2062264084815979, + "learning_rate": 0.0006, + "loss": 3.477700710296631, + "step": 6014 + }, + { + "epoch": 83.54521625163827, + "grad_norm": 0.212580144405365, + "learning_rate": 0.0006, + "loss": 3.450294017791748, + "step": 6015 + }, + { + "epoch": 83.55919615552644, + "grad_norm": 0.24017730355262756, + "learning_rate": 0.0006, + "loss": 3.4375219345092773, + "step": 6016 + }, + { + "epoch": 83.57317605941459, + "grad_norm": 0.29706305265426636, + "learning_rate": 0.0006, + "loss": 3.4510207176208496, + "step": 6017 + }, + { + "epoch": 83.58715596330275, + "grad_norm": 0.29583004117012024, + "learning_rate": 0.0006, + "loss": 3.463989734649658, + "step": 6018 + }, + { + "epoch": 83.60113586719092, + "grad_norm": 0.22219108045101166, + "learning_rate": 0.0006, + "loss": 3.4602017402648926, + "step": 6019 + }, + { + "epoch": 83.61511577107908, + "grad_norm": 0.2245914787054062, + "learning_rate": 0.0006, + "loss": 3.4729413986206055, + "step": 6020 + }, + { + "epoch": 83.62909567496723, + "grad_norm": 0.2378871887922287, + "learning_rate": 0.0006, + "loss": 3.493058443069458, + "step": 6021 + }, + { + "epoch": 83.6430755788554, + "grad_norm": 0.2393491417169571, + "learning_rate": 0.0006, + "loss": 3.481888771057129, + "step": 6022 + }, + { + "epoch": 83.65705548274356, + "grad_norm": 0.22587546706199646, + "learning_rate": 0.0006, + "loss": 3.4741945266723633, + "step": 6023 + }, + { + "epoch": 83.67103538663171, + "grad_norm": 0.21970580518245697, + "learning_rate": 0.0006, + "loss": 3.453437089920044, + "step": 6024 + }, + { + "epoch": 83.68501529051987, + "grad_norm": 0.28560149669647217, + "learning_rate": 0.0006, + "loss": 3.4655563831329346, + "step": 6025 + }, + { + "epoch": 83.69899519440804, + "grad_norm": 0.3692651689052582, + "learning_rate": 0.0006, + "loss": 3.466190814971924, + "step": 6026 + }, + { + "epoch": 83.7129750982962, + "grad_norm": 0.2955428659915924, + "learning_rate": 0.0006, + "loss": 3.471492052078247, + "step": 6027 + }, + { + "epoch": 83.72695500218435, + "grad_norm": 0.21010912954807281, + "learning_rate": 0.0006, + "loss": 3.4699859619140625, + "step": 6028 + }, + { + "epoch": 83.74093490607252, + "grad_norm": 0.26358452439308167, + "learning_rate": 0.0006, + "loss": 3.4771690368652344, + "step": 6029 + }, + { + "epoch": 83.75491480996068, + "grad_norm": 0.2645658850669861, + "learning_rate": 0.0006, + "loss": 3.4879064559936523, + "step": 6030 + }, + { + "epoch": 83.76889471384884, + "grad_norm": 0.21529845893383026, + "learning_rate": 0.0006, + "loss": 3.483954429626465, + "step": 6031 + }, + { + "epoch": 83.78287461773701, + "grad_norm": 0.2099343240261078, + "learning_rate": 0.0006, + "loss": 3.4544146060943604, + "step": 6032 + }, + { + "epoch": 83.79685452162516, + "grad_norm": 0.2181747704744339, + "learning_rate": 0.0006, + "loss": 3.491983413696289, + "step": 6033 + }, + { + "epoch": 83.81083442551332, + "grad_norm": 0.23016685247421265, + "learning_rate": 0.0006, + "loss": 3.4659135341644287, + "step": 6034 + }, + { + "epoch": 83.82481432940149, + "grad_norm": 0.2403937429189682, + "learning_rate": 0.0006, + "loss": 3.506269931793213, + "step": 6035 + }, + { + "epoch": 83.83879423328965, + "grad_norm": 0.22122806310653687, + "learning_rate": 0.0006, + "loss": 3.4617505073547363, + "step": 6036 + }, + { + "epoch": 83.8527741371778, + "grad_norm": 0.22495940327644348, + "learning_rate": 0.0006, + "loss": 3.4756948947906494, + "step": 6037 + }, + { + "epoch": 83.86675404106597, + "grad_norm": 0.22538618743419647, + "learning_rate": 0.0006, + "loss": 3.488034725189209, + "step": 6038 + }, + { + "epoch": 83.88073394495413, + "grad_norm": 0.2117580771446228, + "learning_rate": 0.0006, + "loss": 3.4975039958953857, + "step": 6039 + }, + { + "epoch": 83.89471384884229, + "grad_norm": 0.2120361030101776, + "learning_rate": 0.0006, + "loss": 3.4867331981658936, + "step": 6040 + }, + { + "epoch": 83.90869375273044, + "grad_norm": 0.19643139839172363, + "learning_rate": 0.0006, + "loss": 3.488924980163574, + "step": 6041 + }, + { + "epoch": 83.92267365661861, + "grad_norm": 0.19628021121025085, + "learning_rate": 0.0006, + "loss": 3.461667060852051, + "step": 6042 + }, + { + "epoch": 83.93665356050677, + "grad_norm": 0.20119936764240265, + "learning_rate": 0.0006, + "loss": 3.4937024116516113, + "step": 6043 + }, + { + "epoch": 83.95063346439493, + "grad_norm": 0.2125128209590912, + "learning_rate": 0.0006, + "loss": 3.4840517044067383, + "step": 6044 + }, + { + "epoch": 83.9646133682831, + "grad_norm": 0.20223572850227356, + "learning_rate": 0.0006, + "loss": 3.5131449699401855, + "step": 6045 + }, + { + "epoch": 83.97859327217125, + "grad_norm": 0.20483054220676422, + "learning_rate": 0.0006, + "loss": 3.471453905105591, + "step": 6046 + }, + { + "epoch": 83.99257317605941, + "grad_norm": 0.2104625701904297, + "learning_rate": 0.0006, + "loss": 3.4952552318573, + "step": 6047 + }, + { + "epoch": 84.0, + "grad_norm": 0.2537861764431, + "learning_rate": 0.0006, + "loss": 3.536937713623047, + "step": 6048 + }, + { + "epoch": 84.0, + "eval_loss": 3.989513635635376, + "eval_runtime": 44.16, + "eval_samples_per_second": 55.299, + "eval_steps_per_second": 3.465, + "step": 6048 + }, + { + "epoch": 84.01397990388816, + "grad_norm": 0.2248591184616089, + "learning_rate": 0.0006, + "loss": 3.4172749519348145, + "step": 6049 + }, + { + "epoch": 84.02795980777633, + "grad_norm": 0.27182599902153015, + "learning_rate": 0.0006, + "loss": 3.4543704986572266, + "step": 6050 + }, + { + "epoch": 84.04193971166448, + "grad_norm": 0.26215022802352905, + "learning_rate": 0.0006, + "loss": 3.4160256385803223, + "step": 6051 + }, + { + "epoch": 84.05591961555264, + "grad_norm": 0.24477700889110565, + "learning_rate": 0.0006, + "loss": 3.449690580368042, + "step": 6052 + }, + { + "epoch": 84.06989951944081, + "grad_norm": 0.23101462423801422, + "learning_rate": 0.0006, + "loss": 3.4241368770599365, + "step": 6053 + }, + { + "epoch": 84.08387942332897, + "grad_norm": 0.23638324439525604, + "learning_rate": 0.0006, + "loss": 3.444488763809204, + "step": 6054 + }, + { + "epoch": 84.09785932721712, + "grad_norm": 0.24425800144672394, + "learning_rate": 0.0006, + "loss": 3.4568278789520264, + "step": 6055 + }, + { + "epoch": 84.1118392311053, + "grad_norm": 0.23753057420253754, + "learning_rate": 0.0006, + "loss": 3.452538013458252, + "step": 6056 + }, + { + "epoch": 84.12581913499345, + "grad_norm": 0.2202109545469284, + "learning_rate": 0.0006, + "loss": 3.4488167762756348, + "step": 6057 + }, + { + "epoch": 84.1397990388816, + "grad_norm": 0.2211986482143402, + "learning_rate": 0.0006, + "loss": 3.452159881591797, + "step": 6058 + }, + { + "epoch": 84.15377894276976, + "grad_norm": 0.21936428546905518, + "learning_rate": 0.0006, + "loss": 3.4460606575012207, + "step": 6059 + }, + { + "epoch": 84.16775884665793, + "grad_norm": 0.21079182624816895, + "learning_rate": 0.0006, + "loss": 3.4201436042785645, + "step": 6060 + }, + { + "epoch": 84.18173875054609, + "grad_norm": 0.22017350792884827, + "learning_rate": 0.0006, + "loss": 3.4632251262664795, + "step": 6061 + }, + { + "epoch": 84.19571865443424, + "grad_norm": 0.23758259415626526, + "learning_rate": 0.0006, + "loss": 3.453155994415283, + "step": 6062 + }, + { + "epoch": 84.20969855832242, + "grad_norm": 0.21984682977199554, + "learning_rate": 0.0006, + "loss": 3.4506678581237793, + "step": 6063 + }, + { + "epoch": 84.22367846221057, + "grad_norm": 0.22029472887516022, + "learning_rate": 0.0006, + "loss": 3.505845069885254, + "step": 6064 + }, + { + "epoch": 84.23765836609873, + "grad_norm": 0.21249033510684967, + "learning_rate": 0.0006, + "loss": 3.438363552093506, + "step": 6065 + }, + { + "epoch": 84.2516382699869, + "grad_norm": 0.22138963639736176, + "learning_rate": 0.0006, + "loss": 3.452883243560791, + "step": 6066 + }, + { + "epoch": 84.26561817387505, + "grad_norm": 0.23665833473205566, + "learning_rate": 0.0006, + "loss": 3.4265031814575195, + "step": 6067 + }, + { + "epoch": 84.27959807776321, + "grad_norm": 0.20779378712177277, + "learning_rate": 0.0006, + "loss": 3.4495396614074707, + "step": 6068 + }, + { + "epoch": 84.29357798165138, + "grad_norm": 0.2145044356584549, + "learning_rate": 0.0006, + "loss": 3.479349136352539, + "step": 6069 + }, + { + "epoch": 84.30755788553954, + "grad_norm": 0.24075593054294586, + "learning_rate": 0.0006, + "loss": 3.460493564605713, + "step": 6070 + }, + { + "epoch": 84.3215377894277, + "grad_norm": 0.2375558763742447, + "learning_rate": 0.0006, + "loss": 3.507908344268799, + "step": 6071 + }, + { + "epoch": 84.33551769331586, + "grad_norm": 0.2408781200647354, + "learning_rate": 0.0006, + "loss": 3.44984769821167, + "step": 6072 + }, + { + "epoch": 84.34949759720402, + "grad_norm": 0.228886216878891, + "learning_rate": 0.0006, + "loss": 3.4552290439605713, + "step": 6073 + }, + { + "epoch": 84.36347750109218, + "grad_norm": 0.2186277210712433, + "learning_rate": 0.0006, + "loss": 3.455961227416992, + "step": 6074 + }, + { + "epoch": 84.37745740498035, + "grad_norm": 0.24890686571598053, + "learning_rate": 0.0006, + "loss": 3.4671201705932617, + "step": 6075 + }, + { + "epoch": 84.3914373088685, + "grad_norm": 0.302213191986084, + "learning_rate": 0.0006, + "loss": 3.4628589153289795, + "step": 6076 + }, + { + "epoch": 84.40541721275666, + "grad_norm": 0.2934368848800659, + "learning_rate": 0.0006, + "loss": 3.455357313156128, + "step": 6077 + }, + { + "epoch": 84.41939711664482, + "grad_norm": 0.2314663529396057, + "learning_rate": 0.0006, + "loss": 3.4733433723449707, + "step": 6078 + }, + { + "epoch": 84.43337702053299, + "grad_norm": 0.24621376395225525, + "learning_rate": 0.0006, + "loss": 3.413661003112793, + "step": 6079 + }, + { + "epoch": 84.44735692442114, + "grad_norm": 0.2592419683933258, + "learning_rate": 0.0006, + "loss": 3.441049098968506, + "step": 6080 + }, + { + "epoch": 84.4613368283093, + "grad_norm": 0.25599732995033264, + "learning_rate": 0.0006, + "loss": 3.433962106704712, + "step": 6081 + }, + { + "epoch": 84.47531673219747, + "grad_norm": 0.22425663471221924, + "learning_rate": 0.0006, + "loss": 3.456338882446289, + "step": 6082 + }, + { + "epoch": 84.48929663608563, + "grad_norm": 0.20109711587429047, + "learning_rate": 0.0006, + "loss": 3.4308509826660156, + "step": 6083 + }, + { + "epoch": 84.50327653997378, + "grad_norm": 0.23206867277622223, + "learning_rate": 0.0006, + "loss": 3.4620723724365234, + "step": 6084 + }, + { + "epoch": 84.51725644386195, + "grad_norm": 0.2772260010242462, + "learning_rate": 0.0006, + "loss": 3.4994330406188965, + "step": 6085 + }, + { + "epoch": 84.53123634775011, + "grad_norm": 0.22506068646907806, + "learning_rate": 0.0006, + "loss": 3.4822869300842285, + "step": 6086 + }, + { + "epoch": 84.54521625163827, + "grad_norm": 0.2665281295776367, + "learning_rate": 0.0006, + "loss": 3.446537494659424, + "step": 6087 + }, + { + "epoch": 84.55919615552644, + "grad_norm": 0.3100028336048126, + "learning_rate": 0.0006, + "loss": 3.4393982887268066, + "step": 6088 + }, + { + "epoch": 84.57317605941459, + "grad_norm": 0.2912586033344269, + "learning_rate": 0.0006, + "loss": 3.4340028762817383, + "step": 6089 + }, + { + "epoch": 84.58715596330275, + "grad_norm": 0.24330151081085205, + "learning_rate": 0.0006, + "loss": 3.501587152481079, + "step": 6090 + }, + { + "epoch": 84.60113586719092, + "grad_norm": 0.23389802873134613, + "learning_rate": 0.0006, + "loss": 3.4583606719970703, + "step": 6091 + }, + { + "epoch": 84.61511577107908, + "grad_norm": 0.24052485823631287, + "learning_rate": 0.0006, + "loss": 3.4798378944396973, + "step": 6092 + }, + { + "epoch": 84.62909567496723, + "grad_norm": 0.25821569561958313, + "learning_rate": 0.0006, + "loss": 3.4377129077911377, + "step": 6093 + }, + { + "epoch": 84.6430755788554, + "grad_norm": 0.22608289122581482, + "learning_rate": 0.0006, + "loss": 3.468690872192383, + "step": 6094 + }, + { + "epoch": 84.65705548274356, + "grad_norm": 0.22002574801445007, + "learning_rate": 0.0006, + "loss": 3.5027618408203125, + "step": 6095 + }, + { + "epoch": 84.67103538663171, + "grad_norm": 0.2419431507587433, + "learning_rate": 0.0006, + "loss": 3.4669971466064453, + "step": 6096 + }, + { + "epoch": 84.68501529051987, + "grad_norm": 0.2721652090549469, + "learning_rate": 0.0006, + "loss": 3.4732742309570312, + "step": 6097 + }, + { + "epoch": 84.69899519440804, + "grad_norm": 0.27164995670318604, + "learning_rate": 0.0006, + "loss": 3.4675357341766357, + "step": 6098 + }, + { + "epoch": 84.7129750982962, + "grad_norm": 0.19506578147411346, + "learning_rate": 0.0006, + "loss": 3.492837905883789, + "step": 6099 + }, + { + "epoch": 84.72695500218435, + "grad_norm": 0.22092986106872559, + "learning_rate": 0.0006, + "loss": 3.4465227127075195, + "step": 6100 + }, + { + "epoch": 84.74093490607252, + "grad_norm": 0.2180197536945343, + "learning_rate": 0.0006, + "loss": 3.4740982055664062, + "step": 6101 + }, + { + "epoch": 84.75491480996068, + "grad_norm": 0.19666659832000732, + "learning_rate": 0.0006, + "loss": 3.445955276489258, + "step": 6102 + }, + { + "epoch": 84.76889471384884, + "grad_norm": 0.22210383415222168, + "learning_rate": 0.0006, + "loss": 3.4983019828796387, + "step": 6103 + }, + { + "epoch": 84.78287461773701, + "grad_norm": 0.25071144104003906, + "learning_rate": 0.0006, + "loss": 3.4750094413757324, + "step": 6104 + }, + { + "epoch": 84.79685452162516, + "grad_norm": 0.21576249599456787, + "learning_rate": 0.0006, + "loss": 3.4875924587249756, + "step": 6105 + }, + { + "epoch": 84.81083442551332, + "grad_norm": 0.19657064974308014, + "learning_rate": 0.0006, + "loss": 3.491100788116455, + "step": 6106 + }, + { + "epoch": 84.82481432940149, + "grad_norm": 0.21463964879512787, + "learning_rate": 0.0006, + "loss": 3.4915409088134766, + "step": 6107 + }, + { + "epoch": 84.83879423328965, + "grad_norm": 0.22589972615242004, + "learning_rate": 0.0006, + "loss": 3.488877773284912, + "step": 6108 + }, + { + "epoch": 84.8527741371778, + "grad_norm": 0.22119449079036713, + "learning_rate": 0.0006, + "loss": 3.4533658027648926, + "step": 6109 + }, + { + "epoch": 84.86675404106597, + "grad_norm": 0.2318703979253769, + "learning_rate": 0.0006, + "loss": 3.5024518966674805, + "step": 6110 + }, + { + "epoch": 84.88073394495413, + "grad_norm": 0.24036799371242523, + "learning_rate": 0.0006, + "loss": 3.4885616302490234, + "step": 6111 + }, + { + "epoch": 84.89471384884229, + "grad_norm": 0.22559893131256104, + "learning_rate": 0.0006, + "loss": 3.5178074836730957, + "step": 6112 + }, + { + "epoch": 84.90869375273044, + "grad_norm": 0.22396491467952728, + "learning_rate": 0.0006, + "loss": 3.4722352027893066, + "step": 6113 + }, + { + "epoch": 84.92267365661861, + "grad_norm": 0.22184233367443085, + "learning_rate": 0.0006, + "loss": 3.4839789867401123, + "step": 6114 + }, + { + "epoch": 84.93665356050677, + "grad_norm": 0.26118555665016174, + "learning_rate": 0.0006, + "loss": 3.4721474647521973, + "step": 6115 + }, + { + "epoch": 84.95063346439493, + "grad_norm": 0.28956303000450134, + "learning_rate": 0.0006, + "loss": 3.4905753135681152, + "step": 6116 + }, + { + "epoch": 84.9646133682831, + "grad_norm": 0.258308082818985, + "learning_rate": 0.0006, + "loss": 3.473489761352539, + "step": 6117 + }, + { + "epoch": 84.97859327217125, + "grad_norm": 0.21734404563903809, + "learning_rate": 0.0006, + "loss": 3.5029823780059814, + "step": 6118 + }, + { + "epoch": 84.99257317605941, + "grad_norm": 0.21607917547225952, + "learning_rate": 0.0006, + "loss": 3.4702606201171875, + "step": 6119 + }, + { + "epoch": 85.0, + "grad_norm": 0.24650561809539795, + "learning_rate": 0.0006, + "loss": 3.4621410369873047, + "step": 6120 + }, + { + "epoch": 85.0, + "eval_loss": 3.9854979515075684, + "eval_runtime": 44.9547, + "eval_samples_per_second": 54.321, + "eval_steps_per_second": 3.403, + "step": 6120 + }, + { + "epoch": 85.01397990388816, + "grad_norm": 0.25260618329048157, + "learning_rate": 0.0006, + "loss": 3.4214212894439697, + "step": 6121 + }, + { + "epoch": 85.02795980777633, + "grad_norm": 0.2447933405637741, + "learning_rate": 0.0006, + "loss": 3.4772560596466064, + "step": 6122 + }, + { + "epoch": 85.04193971166448, + "grad_norm": 0.26787659525871277, + "learning_rate": 0.0006, + "loss": 3.4550516605377197, + "step": 6123 + }, + { + "epoch": 85.05591961555264, + "grad_norm": 0.31014591455459595, + "learning_rate": 0.0006, + "loss": 3.4330554008483887, + "step": 6124 + }, + { + "epoch": 85.06989951944081, + "grad_norm": 0.2865329682826996, + "learning_rate": 0.0006, + "loss": 3.465020179748535, + "step": 6125 + }, + { + "epoch": 85.08387942332897, + "grad_norm": 0.2665972411632538, + "learning_rate": 0.0006, + "loss": 3.465394973754883, + "step": 6126 + }, + { + "epoch": 85.09785932721712, + "grad_norm": 0.2712230980396271, + "learning_rate": 0.0006, + "loss": 3.4400854110717773, + "step": 6127 + }, + { + "epoch": 85.1118392311053, + "grad_norm": 0.2657718360424042, + "learning_rate": 0.0006, + "loss": 3.4523370265960693, + "step": 6128 + }, + { + "epoch": 85.12581913499345, + "grad_norm": 0.242838516831398, + "learning_rate": 0.0006, + "loss": 3.465041160583496, + "step": 6129 + }, + { + "epoch": 85.1397990388816, + "grad_norm": 0.23150339722633362, + "learning_rate": 0.0006, + "loss": 3.4810791015625, + "step": 6130 + }, + { + "epoch": 85.15377894276976, + "grad_norm": 0.24861405789852142, + "learning_rate": 0.0006, + "loss": 3.4644157886505127, + "step": 6131 + }, + { + "epoch": 85.16775884665793, + "grad_norm": 0.25343751907348633, + "learning_rate": 0.0006, + "loss": 3.4637880325317383, + "step": 6132 + }, + { + "epoch": 85.18173875054609, + "grad_norm": 0.2547624409198761, + "learning_rate": 0.0006, + "loss": 3.464709758758545, + "step": 6133 + }, + { + "epoch": 85.19571865443424, + "grad_norm": 0.2594977021217346, + "learning_rate": 0.0006, + "loss": 3.4151370525360107, + "step": 6134 + }, + { + "epoch": 85.20969855832242, + "grad_norm": 0.27304983139038086, + "learning_rate": 0.0006, + "loss": 3.4454474449157715, + "step": 6135 + }, + { + "epoch": 85.22367846221057, + "grad_norm": 0.23261943459510803, + "learning_rate": 0.0006, + "loss": 3.46285080909729, + "step": 6136 + }, + { + "epoch": 85.23765836609873, + "grad_norm": 0.27577438950538635, + "learning_rate": 0.0006, + "loss": 3.475266218185425, + "step": 6137 + }, + { + "epoch": 85.2516382699869, + "grad_norm": 0.29520928859710693, + "learning_rate": 0.0006, + "loss": 3.426034450531006, + "step": 6138 + }, + { + "epoch": 85.26561817387505, + "grad_norm": 0.25007882714271545, + "learning_rate": 0.0006, + "loss": 3.4391825199127197, + "step": 6139 + }, + { + "epoch": 85.27959807776321, + "grad_norm": 0.24239672720432281, + "learning_rate": 0.0006, + "loss": 3.456017017364502, + "step": 6140 + }, + { + "epoch": 85.29357798165138, + "grad_norm": 0.2818496525287628, + "learning_rate": 0.0006, + "loss": 3.437286853790283, + "step": 6141 + }, + { + "epoch": 85.30755788553954, + "grad_norm": 0.25089263916015625, + "learning_rate": 0.0006, + "loss": 3.4476265907287598, + "step": 6142 + }, + { + "epoch": 85.3215377894277, + "grad_norm": 0.2364535629749298, + "learning_rate": 0.0006, + "loss": 3.4434220790863037, + "step": 6143 + }, + { + "epoch": 85.33551769331586, + "grad_norm": 0.21722905337810516, + "learning_rate": 0.0006, + "loss": 3.4470319747924805, + "step": 6144 + }, + { + "epoch": 85.34949759720402, + "grad_norm": 0.24389301240444183, + "learning_rate": 0.0006, + "loss": 3.458575963973999, + "step": 6145 + }, + { + "epoch": 85.36347750109218, + "grad_norm": 0.2579081356525421, + "learning_rate": 0.0006, + "loss": 3.4424850940704346, + "step": 6146 + }, + { + "epoch": 85.37745740498035, + "grad_norm": 0.25001347064971924, + "learning_rate": 0.0006, + "loss": 3.43218731880188, + "step": 6147 + }, + { + "epoch": 85.3914373088685, + "grad_norm": 0.24379317462444305, + "learning_rate": 0.0006, + "loss": 3.464128017425537, + "step": 6148 + }, + { + "epoch": 85.40541721275666, + "grad_norm": 0.22531644999980927, + "learning_rate": 0.0006, + "loss": 3.451855182647705, + "step": 6149 + }, + { + "epoch": 85.41939711664482, + "grad_norm": 0.266511470079422, + "learning_rate": 0.0006, + "loss": 3.4571762084960938, + "step": 6150 + }, + { + "epoch": 85.43337702053299, + "grad_norm": 0.2715734541416168, + "learning_rate": 0.0006, + "loss": 3.446192979812622, + "step": 6151 + }, + { + "epoch": 85.44735692442114, + "grad_norm": 0.2520029842853546, + "learning_rate": 0.0006, + "loss": 3.4267630577087402, + "step": 6152 + }, + { + "epoch": 85.4613368283093, + "grad_norm": 0.23507703840732574, + "learning_rate": 0.0006, + "loss": 3.455836296081543, + "step": 6153 + }, + { + "epoch": 85.47531673219747, + "grad_norm": 0.22633685171604156, + "learning_rate": 0.0006, + "loss": 3.4890408515930176, + "step": 6154 + }, + { + "epoch": 85.48929663608563, + "grad_norm": 0.23517028987407684, + "learning_rate": 0.0006, + "loss": 3.4446210861206055, + "step": 6155 + }, + { + "epoch": 85.50327653997378, + "grad_norm": 0.22825509309768677, + "learning_rate": 0.0006, + "loss": 3.480895519256592, + "step": 6156 + }, + { + "epoch": 85.51725644386195, + "grad_norm": 0.22553354501724243, + "learning_rate": 0.0006, + "loss": 3.465485095977783, + "step": 6157 + }, + { + "epoch": 85.53123634775011, + "grad_norm": 0.2150234878063202, + "learning_rate": 0.0006, + "loss": 3.4419214725494385, + "step": 6158 + }, + { + "epoch": 85.54521625163827, + "grad_norm": 0.19683769345283508, + "learning_rate": 0.0006, + "loss": 3.4606499671936035, + "step": 6159 + }, + { + "epoch": 85.55919615552644, + "grad_norm": 0.20103512704372406, + "learning_rate": 0.0006, + "loss": 3.4611430168151855, + "step": 6160 + }, + { + "epoch": 85.57317605941459, + "grad_norm": 0.21668195724487305, + "learning_rate": 0.0006, + "loss": 3.464637279510498, + "step": 6161 + }, + { + "epoch": 85.58715596330275, + "grad_norm": 0.2588590681552887, + "learning_rate": 0.0006, + "loss": 3.4581046104431152, + "step": 6162 + }, + { + "epoch": 85.60113586719092, + "grad_norm": 0.2931160032749176, + "learning_rate": 0.0006, + "loss": 3.4767394065856934, + "step": 6163 + }, + { + "epoch": 85.61511577107908, + "grad_norm": 0.2369699478149414, + "learning_rate": 0.0006, + "loss": 3.4526143074035645, + "step": 6164 + }, + { + "epoch": 85.62909567496723, + "grad_norm": 0.21278990805149078, + "learning_rate": 0.0006, + "loss": 3.4439449310302734, + "step": 6165 + }, + { + "epoch": 85.6430755788554, + "grad_norm": 0.22650624811649323, + "learning_rate": 0.0006, + "loss": 3.483211040496826, + "step": 6166 + }, + { + "epoch": 85.65705548274356, + "grad_norm": 0.23739252984523773, + "learning_rate": 0.0006, + "loss": 3.4801344871520996, + "step": 6167 + }, + { + "epoch": 85.67103538663171, + "grad_norm": 0.24526645243167877, + "learning_rate": 0.0006, + "loss": 3.492373466491699, + "step": 6168 + }, + { + "epoch": 85.68501529051987, + "grad_norm": 0.22212277352809906, + "learning_rate": 0.0006, + "loss": 3.4928934574127197, + "step": 6169 + }, + { + "epoch": 85.69899519440804, + "grad_norm": 0.21256189048290253, + "learning_rate": 0.0006, + "loss": 3.4808285236358643, + "step": 6170 + }, + { + "epoch": 85.7129750982962, + "grad_norm": 0.22779646515846252, + "learning_rate": 0.0006, + "loss": 3.497670888900757, + "step": 6171 + }, + { + "epoch": 85.72695500218435, + "grad_norm": 0.24342690408229828, + "learning_rate": 0.0006, + "loss": 3.470566749572754, + "step": 6172 + }, + { + "epoch": 85.74093490607252, + "grad_norm": 0.21688103675842285, + "learning_rate": 0.0006, + "loss": 3.470480442047119, + "step": 6173 + }, + { + "epoch": 85.75491480996068, + "grad_norm": 0.20727773010730743, + "learning_rate": 0.0006, + "loss": 3.465573310852051, + "step": 6174 + }, + { + "epoch": 85.76889471384884, + "grad_norm": 0.2293693721294403, + "learning_rate": 0.0006, + "loss": 3.4770543575286865, + "step": 6175 + }, + { + "epoch": 85.78287461773701, + "grad_norm": 0.22635893523693085, + "learning_rate": 0.0006, + "loss": 3.479179859161377, + "step": 6176 + }, + { + "epoch": 85.79685452162516, + "grad_norm": 0.2183343470096588, + "learning_rate": 0.0006, + "loss": 3.435756206512451, + "step": 6177 + }, + { + "epoch": 85.81083442551332, + "grad_norm": 0.23458422720432281, + "learning_rate": 0.0006, + "loss": 3.449631690979004, + "step": 6178 + }, + { + "epoch": 85.82481432940149, + "grad_norm": 0.22640752792358398, + "learning_rate": 0.0006, + "loss": 3.4607796669006348, + "step": 6179 + }, + { + "epoch": 85.83879423328965, + "grad_norm": 0.1991293728351593, + "learning_rate": 0.0006, + "loss": 3.4433794021606445, + "step": 6180 + }, + { + "epoch": 85.8527741371778, + "grad_norm": 0.19793502986431122, + "learning_rate": 0.0006, + "loss": 3.433073043823242, + "step": 6181 + }, + { + "epoch": 85.86675404106597, + "grad_norm": 0.23256038129329681, + "learning_rate": 0.0006, + "loss": 3.49361515045166, + "step": 6182 + }, + { + "epoch": 85.88073394495413, + "grad_norm": 0.24248147010803223, + "learning_rate": 0.0006, + "loss": 3.4868030548095703, + "step": 6183 + }, + { + "epoch": 85.89471384884229, + "grad_norm": 0.2330281287431717, + "learning_rate": 0.0006, + "loss": 3.4656119346618652, + "step": 6184 + }, + { + "epoch": 85.90869375273044, + "grad_norm": 0.24372607469558716, + "learning_rate": 0.0006, + "loss": 3.4641270637512207, + "step": 6185 + }, + { + "epoch": 85.92267365661861, + "grad_norm": 0.21659110486507416, + "learning_rate": 0.0006, + "loss": 3.477977752685547, + "step": 6186 + }, + { + "epoch": 85.93665356050677, + "grad_norm": 0.21402457356452942, + "learning_rate": 0.0006, + "loss": 3.4676051139831543, + "step": 6187 + }, + { + "epoch": 85.95063346439493, + "grad_norm": 0.2598675787448883, + "learning_rate": 0.0006, + "loss": 3.457876205444336, + "step": 6188 + }, + { + "epoch": 85.9646133682831, + "grad_norm": 0.24304015934467316, + "learning_rate": 0.0006, + "loss": 3.4939284324645996, + "step": 6189 + }, + { + "epoch": 85.97859327217125, + "grad_norm": 0.2519899904727936, + "learning_rate": 0.0006, + "loss": 3.4782049655914307, + "step": 6190 + }, + { + "epoch": 85.99257317605941, + "grad_norm": 0.2699314057826996, + "learning_rate": 0.0006, + "loss": 3.4965529441833496, + "step": 6191 + }, + { + "epoch": 86.0, + "grad_norm": 0.25171566009521484, + "learning_rate": 0.0006, + "loss": 3.5014753341674805, + "step": 6192 + }, + { + "epoch": 86.0, + "eval_loss": 3.994410991668701, + "eval_runtime": 44.7874, + "eval_samples_per_second": 54.524, + "eval_steps_per_second": 3.416, + "step": 6192 + }, + { + "epoch": 86.01397990388816, + "grad_norm": 0.22152172029018402, + "learning_rate": 0.0006, + "loss": 3.4881882667541504, + "step": 6193 + }, + { + "epoch": 86.02795980777633, + "grad_norm": 0.30766162276268005, + "learning_rate": 0.0006, + "loss": 3.4354074001312256, + "step": 6194 + }, + { + "epoch": 86.04193971166448, + "grad_norm": 0.35085615515708923, + "learning_rate": 0.0006, + "loss": 3.492264986038208, + "step": 6195 + }, + { + "epoch": 86.05591961555264, + "grad_norm": 0.3569839298725128, + "learning_rate": 0.0006, + "loss": 3.416243553161621, + "step": 6196 + }, + { + "epoch": 86.06989951944081, + "grad_norm": 0.3160453736782074, + "learning_rate": 0.0006, + "loss": 3.4427218437194824, + "step": 6197 + }, + { + "epoch": 86.08387942332897, + "grad_norm": 0.2886679470539093, + "learning_rate": 0.0006, + "loss": 3.4667863845825195, + "step": 6198 + }, + { + "epoch": 86.09785932721712, + "grad_norm": 0.3893418312072754, + "learning_rate": 0.0006, + "loss": 3.4031922817230225, + "step": 6199 + }, + { + "epoch": 86.1118392311053, + "grad_norm": 0.3220056891441345, + "learning_rate": 0.0006, + "loss": 3.4283533096313477, + "step": 6200 + }, + { + "epoch": 86.12581913499345, + "grad_norm": 0.26434239745140076, + "learning_rate": 0.0006, + "loss": 3.4746451377868652, + "step": 6201 + }, + { + "epoch": 86.1397990388816, + "grad_norm": 0.302300363779068, + "learning_rate": 0.0006, + "loss": 3.4561362266540527, + "step": 6202 + }, + { + "epoch": 86.15377894276976, + "grad_norm": 0.3000868558883667, + "learning_rate": 0.0006, + "loss": 3.450949192047119, + "step": 6203 + }, + { + "epoch": 86.16775884665793, + "grad_norm": 0.2398998737335205, + "learning_rate": 0.0006, + "loss": 3.4239816665649414, + "step": 6204 + }, + { + "epoch": 86.18173875054609, + "grad_norm": 0.2702728807926178, + "learning_rate": 0.0006, + "loss": 3.442440986633301, + "step": 6205 + }, + { + "epoch": 86.19571865443424, + "grad_norm": 0.31766554713249207, + "learning_rate": 0.0006, + "loss": 3.4427683353424072, + "step": 6206 + }, + { + "epoch": 86.20969855832242, + "grad_norm": 0.2819700241088867, + "learning_rate": 0.0006, + "loss": 3.4524660110473633, + "step": 6207 + }, + { + "epoch": 86.22367846221057, + "grad_norm": 0.2258707731962204, + "learning_rate": 0.0006, + "loss": 3.396800994873047, + "step": 6208 + }, + { + "epoch": 86.23765836609873, + "grad_norm": 0.24448935687541962, + "learning_rate": 0.0006, + "loss": 3.4406819343566895, + "step": 6209 + }, + { + "epoch": 86.2516382699869, + "grad_norm": 0.24847345054149628, + "learning_rate": 0.0006, + "loss": 3.461153030395508, + "step": 6210 + }, + { + "epoch": 86.26561817387505, + "grad_norm": 0.2334488183259964, + "learning_rate": 0.0006, + "loss": 3.442270040512085, + "step": 6211 + }, + { + "epoch": 86.27959807776321, + "grad_norm": 0.22500263154506683, + "learning_rate": 0.0006, + "loss": 3.440741539001465, + "step": 6212 + }, + { + "epoch": 86.29357798165138, + "grad_norm": 0.21619853377342224, + "learning_rate": 0.0006, + "loss": 3.4715089797973633, + "step": 6213 + }, + { + "epoch": 86.30755788553954, + "grad_norm": 0.2189490795135498, + "learning_rate": 0.0006, + "loss": 3.4791250228881836, + "step": 6214 + }, + { + "epoch": 86.3215377894277, + "grad_norm": 0.21822725236415863, + "learning_rate": 0.0006, + "loss": 3.461611747741699, + "step": 6215 + }, + { + "epoch": 86.33551769331586, + "grad_norm": 0.21582530438899994, + "learning_rate": 0.0006, + "loss": 3.4455478191375732, + "step": 6216 + }, + { + "epoch": 86.34949759720402, + "grad_norm": 0.22400085628032684, + "learning_rate": 0.0006, + "loss": 3.4567182064056396, + "step": 6217 + }, + { + "epoch": 86.36347750109218, + "grad_norm": 0.21704235672950745, + "learning_rate": 0.0006, + "loss": 3.4674482345581055, + "step": 6218 + }, + { + "epoch": 86.37745740498035, + "grad_norm": 0.20976465940475464, + "learning_rate": 0.0006, + "loss": 3.469402313232422, + "step": 6219 + }, + { + "epoch": 86.3914373088685, + "grad_norm": 0.21312788128852844, + "learning_rate": 0.0006, + "loss": 3.455789566040039, + "step": 6220 + }, + { + "epoch": 86.40541721275666, + "grad_norm": 0.25308772921562195, + "learning_rate": 0.0006, + "loss": 3.4452877044677734, + "step": 6221 + }, + { + "epoch": 86.41939711664482, + "grad_norm": 0.27195847034454346, + "learning_rate": 0.0006, + "loss": 3.463346004486084, + "step": 6222 + }, + { + "epoch": 86.43337702053299, + "grad_norm": 0.21615318953990936, + "learning_rate": 0.0006, + "loss": 3.463381290435791, + "step": 6223 + }, + { + "epoch": 86.44735692442114, + "grad_norm": 0.23535512387752533, + "learning_rate": 0.0006, + "loss": 3.4360179901123047, + "step": 6224 + }, + { + "epoch": 86.4613368283093, + "grad_norm": 0.24485142529010773, + "learning_rate": 0.0006, + "loss": 3.464930534362793, + "step": 6225 + }, + { + "epoch": 86.47531673219747, + "grad_norm": 0.22350724041461945, + "learning_rate": 0.0006, + "loss": 3.437709331512451, + "step": 6226 + }, + { + "epoch": 86.48929663608563, + "grad_norm": 0.21404410898685455, + "learning_rate": 0.0006, + "loss": 3.4748077392578125, + "step": 6227 + }, + { + "epoch": 86.50327653997378, + "grad_norm": 0.22141483426094055, + "learning_rate": 0.0006, + "loss": 3.4643821716308594, + "step": 6228 + }, + { + "epoch": 86.51725644386195, + "grad_norm": 0.21807129681110382, + "learning_rate": 0.0006, + "loss": 3.4499032497406006, + "step": 6229 + }, + { + "epoch": 86.53123634775011, + "grad_norm": 0.24544014036655426, + "learning_rate": 0.0006, + "loss": 3.485358476638794, + "step": 6230 + }, + { + "epoch": 86.54521625163827, + "grad_norm": 0.23897387087345123, + "learning_rate": 0.0006, + "loss": 3.4186513423919678, + "step": 6231 + }, + { + "epoch": 86.55919615552644, + "grad_norm": 0.2169899344444275, + "learning_rate": 0.0006, + "loss": 3.483903408050537, + "step": 6232 + }, + { + "epoch": 86.57317605941459, + "grad_norm": 0.22795552015304565, + "learning_rate": 0.0006, + "loss": 3.4364242553710938, + "step": 6233 + }, + { + "epoch": 86.58715596330275, + "grad_norm": 0.217415452003479, + "learning_rate": 0.0006, + "loss": 3.456679105758667, + "step": 6234 + }, + { + "epoch": 86.60113586719092, + "grad_norm": 0.22456496953964233, + "learning_rate": 0.0006, + "loss": 3.5148768424987793, + "step": 6235 + }, + { + "epoch": 86.61511577107908, + "grad_norm": 0.2365759313106537, + "learning_rate": 0.0006, + "loss": 3.4696755409240723, + "step": 6236 + }, + { + "epoch": 86.62909567496723, + "grad_norm": 0.2177712321281433, + "learning_rate": 0.0006, + "loss": 3.462272882461548, + "step": 6237 + }, + { + "epoch": 86.6430755788554, + "grad_norm": 0.20588000118732452, + "learning_rate": 0.0006, + "loss": 3.4393906593322754, + "step": 6238 + }, + { + "epoch": 86.65705548274356, + "grad_norm": 0.21182921528816223, + "learning_rate": 0.0006, + "loss": 3.443514108657837, + "step": 6239 + }, + { + "epoch": 86.67103538663171, + "grad_norm": 0.18916936218738556, + "learning_rate": 0.0006, + "loss": 3.4392967224121094, + "step": 6240 + }, + { + "epoch": 86.68501529051987, + "grad_norm": 0.22624684870243073, + "learning_rate": 0.0006, + "loss": 3.470064640045166, + "step": 6241 + }, + { + "epoch": 86.69899519440804, + "grad_norm": 0.2332974225282669, + "learning_rate": 0.0006, + "loss": 3.4521493911743164, + "step": 6242 + }, + { + "epoch": 86.7129750982962, + "grad_norm": 0.20085841417312622, + "learning_rate": 0.0006, + "loss": 3.5025033950805664, + "step": 6243 + }, + { + "epoch": 86.72695500218435, + "grad_norm": 0.20764502882957458, + "learning_rate": 0.0006, + "loss": 3.470583915710449, + "step": 6244 + }, + { + "epoch": 86.74093490607252, + "grad_norm": 0.20031316578388214, + "learning_rate": 0.0006, + "loss": 3.478801727294922, + "step": 6245 + }, + { + "epoch": 86.75491480996068, + "grad_norm": 0.20406009256839752, + "learning_rate": 0.0006, + "loss": 3.4478464126586914, + "step": 6246 + }, + { + "epoch": 86.76889471384884, + "grad_norm": 0.2247963547706604, + "learning_rate": 0.0006, + "loss": 3.482908248901367, + "step": 6247 + }, + { + "epoch": 86.78287461773701, + "grad_norm": 0.21603277325630188, + "learning_rate": 0.0006, + "loss": 3.495795726776123, + "step": 6248 + }, + { + "epoch": 86.79685452162516, + "grad_norm": 0.23493970930576324, + "learning_rate": 0.0006, + "loss": 3.494202136993408, + "step": 6249 + }, + { + "epoch": 86.81083442551332, + "grad_norm": 0.23578870296478271, + "learning_rate": 0.0006, + "loss": 3.4449198246002197, + "step": 6250 + }, + { + "epoch": 86.82481432940149, + "grad_norm": 0.2195269763469696, + "learning_rate": 0.0006, + "loss": 3.4688639640808105, + "step": 6251 + }, + { + "epoch": 86.83879423328965, + "grad_norm": 0.2096060961484909, + "learning_rate": 0.0006, + "loss": 3.457277774810791, + "step": 6252 + }, + { + "epoch": 86.8527741371778, + "grad_norm": 0.2281302958726883, + "learning_rate": 0.0006, + "loss": 3.4680356979370117, + "step": 6253 + }, + { + "epoch": 86.86675404106597, + "grad_norm": 0.227342426776886, + "learning_rate": 0.0006, + "loss": 3.4743518829345703, + "step": 6254 + }, + { + "epoch": 86.88073394495413, + "grad_norm": 0.2153044492006302, + "learning_rate": 0.0006, + "loss": 3.46713924407959, + "step": 6255 + }, + { + "epoch": 86.89471384884229, + "grad_norm": 0.2115248739719391, + "learning_rate": 0.0006, + "loss": 3.4528920650482178, + "step": 6256 + }, + { + "epoch": 86.90869375273044, + "grad_norm": 0.20684799551963806, + "learning_rate": 0.0006, + "loss": 3.4480972290039062, + "step": 6257 + }, + { + "epoch": 86.92267365661861, + "grad_norm": 0.20551343262195587, + "learning_rate": 0.0006, + "loss": 3.4358556270599365, + "step": 6258 + }, + { + "epoch": 86.93665356050677, + "grad_norm": 0.20622433722019196, + "learning_rate": 0.0006, + "loss": 3.465932846069336, + "step": 6259 + }, + { + "epoch": 86.95063346439493, + "grad_norm": 0.2272886484861374, + "learning_rate": 0.0006, + "loss": 3.4763259887695312, + "step": 6260 + }, + { + "epoch": 86.9646133682831, + "grad_norm": 0.21281592547893524, + "learning_rate": 0.0006, + "loss": 3.475867509841919, + "step": 6261 + }, + { + "epoch": 86.97859327217125, + "grad_norm": 0.22719821333885193, + "learning_rate": 0.0006, + "loss": 3.486049175262451, + "step": 6262 + }, + { + "epoch": 86.99257317605941, + "grad_norm": 0.22851793467998505, + "learning_rate": 0.0006, + "loss": 3.4797396659851074, + "step": 6263 + }, + { + "epoch": 87.0, + "grad_norm": 0.2525143027305603, + "learning_rate": 0.0006, + "loss": 3.4766845703125, + "step": 6264 + }, + { + "epoch": 87.0, + "eval_loss": 3.987467050552368, + "eval_runtime": 44.9313, + "eval_samples_per_second": 54.35, + "eval_steps_per_second": 3.405, + "step": 6264 + }, + { + "epoch": 87.01397990388816, + "grad_norm": 0.24122004210948944, + "learning_rate": 0.0006, + "loss": 3.4199447631835938, + "step": 6265 + }, + { + "epoch": 87.02795980777633, + "grad_norm": 0.2478175163269043, + "learning_rate": 0.0006, + "loss": 3.4244534969329834, + "step": 6266 + }, + { + "epoch": 87.04193971166448, + "grad_norm": 0.26908397674560547, + "learning_rate": 0.0006, + "loss": 3.4402923583984375, + "step": 6267 + }, + { + "epoch": 87.05591961555264, + "grad_norm": 0.2507370412349701, + "learning_rate": 0.0006, + "loss": 3.462135076522827, + "step": 6268 + }, + { + "epoch": 87.06989951944081, + "grad_norm": 0.24157772958278656, + "learning_rate": 0.0006, + "loss": 3.431356430053711, + "step": 6269 + }, + { + "epoch": 87.08387942332897, + "grad_norm": 0.23670171201229095, + "learning_rate": 0.0006, + "loss": 3.456552028656006, + "step": 6270 + }, + { + "epoch": 87.09785932721712, + "grad_norm": 0.23151060938835144, + "learning_rate": 0.0006, + "loss": 3.4459235668182373, + "step": 6271 + }, + { + "epoch": 87.1118392311053, + "grad_norm": 0.23343981802463531, + "learning_rate": 0.0006, + "loss": 3.4336788654327393, + "step": 6272 + }, + { + "epoch": 87.12581913499345, + "grad_norm": 0.23033443093299866, + "learning_rate": 0.0006, + "loss": 3.430036783218384, + "step": 6273 + }, + { + "epoch": 87.1397990388816, + "grad_norm": 0.2381853312253952, + "learning_rate": 0.0006, + "loss": 3.420903444290161, + "step": 6274 + }, + { + "epoch": 87.15377894276976, + "grad_norm": 0.2190200835466385, + "learning_rate": 0.0006, + "loss": 3.4207403659820557, + "step": 6275 + }, + { + "epoch": 87.16775884665793, + "grad_norm": 0.21260236203670502, + "learning_rate": 0.0006, + "loss": 3.4397506713867188, + "step": 6276 + }, + { + "epoch": 87.18173875054609, + "grad_norm": 0.22214606404304504, + "learning_rate": 0.0006, + "loss": 3.4293227195739746, + "step": 6277 + }, + { + "epoch": 87.19571865443424, + "grad_norm": 0.2242288589477539, + "learning_rate": 0.0006, + "loss": 3.4207372665405273, + "step": 6278 + }, + { + "epoch": 87.20969855832242, + "grad_norm": 0.25283282995224, + "learning_rate": 0.0006, + "loss": 3.419442892074585, + "step": 6279 + }, + { + "epoch": 87.22367846221057, + "grad_norm": 0.24865588545799255, + "learning_rate": 0.0006, + "loss": 3.4260497093200684, + "step": 6280 + }, + { + "epoch": 87.23765836609873, + "grad_norm": 0.2589408755302429, + "learning_rate": 0.0006, + "loss": 3.4209916591644287, + "step": 6281 + }, + { + "epoch": 87.2516382699869, + "grad_norm": 0.318220853805542, + "learning_rate": 0.0006, + "loss": 3.432110548019409, + "step": 6282 + }, + { + "epoch": 87.26561817387505, + "grad_norm": 0.31002911925315857, + "learning_rate": 0.0006, + "loss": 3.4443397521972656, + "step": 6283 + }, + { + "epoch": 87.27959807776321, + "grad_norm": 0.2359798550605774, + "learning_rate": 0.0006, + "loss": 3.4457709789276123, + "step": 6284 + }, + { + "epoch": 87.29357798165138, + "grad_norm": 0.24127471446990967, + "learning_rate": 0.0006, + "loss": 3.430861473083496, + "step": 6285 + }, + { + "epoch": 87.30755788553954, + "grad_norm": 0.2523666322231293, + "learning_rate": 0.0006, + "loss": 3.4266719818115234, + "step": 6286 + }, + { + "epoch": 87.3215377894277, + "grad_norm": 0.25202396512031555, + "learning_rate": 0.0006, + "loss": 3.458160400390625, + "step": 6287 + }, + { + "epoch": 87.33551769331586, + "grad_norm": 0.23457808792591095, + "learning_rate": 0.0006, + "loss": 3.4448394775390625, + "step": 6288 + }, + { + "epoch": 87.34949759720402, + "grad_norm": 0.21893201768398285, + "learning_rate": 0.0006, + "loss": 3.4377269744873047, + "step": 6289 + }, + { + "epoch": 87.36347750109218, + "grad_norm": 0.23681706190109253, + "learning_rate": 0.0006, + "loss": 3.471095561981201, + "step": 6290 + }, + { + "epoch": 87.37745740498035, + "grad_norm": 0.26878809928894043, + "learning_rate": 0.0006, + "loss": 3.4401535987854004, + "step": 6291 + }, + { + "epoch": 87.3914373088685, + "grad_norm": 0.27215614914894104, + "learning_rate": 0.0006, + "loss": 3.4613232612609863, + "step": 6292 + }, + { + "epoch": 87.40541721275666, + "grad_norm": 0.2195551097393036, + "learning_rate": 0.0006, + "loss": 3.4215073585510254, + "step": 6293 + }, + { + "epoch": 87.41939711664482, + "grad_norm": 0.22291679680347443, + "learning_rate": 0.0006, + "loss": 3.4974613189697266, + "step": 6294 + }, + { + "epoch": 87.43337702053299, + "grad_norm": 0.22577513754367828, + "learning_rate": 0.0006, + "loss": 3.4792842864990234, + "step": 6295 + }, + { + "epoch": 87.44735692442114, + "grad_norm": 0.22146420180797577, + "learning_rate": 0.0006, + "loss": 3.457834243774414, + "step": 6296 + }, + { + "epoch": 87.4613368283093, + "grad_norm": 0.2282160073518753, + "learning_rate": 0.0006, + "loss": 3.462193489074707, + "step": 6297 + }, + { + "epoch": 87.47531673219747, + "grad_norm": 0.21486175060272217, + "learning_rate": 0.0006, + "loss": 3.416970729827881, + "step": 6298 + }, + { + "epoch": 87.48929663608563, + "grad_norm": 0.24122320115566254, + "learning_rate": 0.0006, + "loss": 3.4543159008026123, + "step": 6299 + }, + { + "epoch": 87.50327653997378, + "grad_norm": 0.25667425990104675, + "learning_rate": 0.0006, + "loss": 3.457819938659668, + "step": 6300 + }, + { + "epoch": 87.51725644386195, + "grad_norm": 0.22020193934440613, + "learning_rate": 0.0006, + "loss": 3.4597818851470947, + "step": 6301 + }, + { + "epoch": 87.53123634775011, + "grad_norm": 0.21770980954170227, + "learning_rate": 0.0006, + "loss": 3.4787464141845703, + "step": 6302 + }, + { + "epoch": 87.54521625163827, + "grad_norm": 0.20606353878974915, + "learning_rate": 0.0006, + "loss": 3.4781737327575684, + "step": 6303 + }, + { + "epoch": 87.55919615552644, + "grad_norm": 0.20081280171871185, + "learning_rate": 0.0006, + "loss": 3.4789981842041016, + "step": 6304 + }, + { + "epoch": 87.57317605941459, + "grad_norm": 0.2083672136068344, + "learning_rate": 0.0006, + "loss": 3.45949649810791, + "step": 6305 + }, + { + "epoch": 87.58715596330275, + "grad_norm": 0.2144811749458313, + "learning_rate": 0.0006, + "loss": 3.476649761199951, + "step": 6306 + }, + { + "epoch": 87.60113586719092, + "grad_norm": 0.20354680716991425, + "learning_rate": 0.0006, + "loss": 3.4517979621887207, + "step": 6307 + }, + { + "epoch": 87.61511577107908, + "grad_norm": 0.21038398146629333, + "learning_rate": 0.0006, + "loss": 3.4579286575317383, + "step": 6308 + }, + { + "epoch": 87.62909567496723, + "grad_norm": 0.2507987916469574, + "learning_rate": 0.0006, + "loss": 3.444129705429077, + "step": 6309 + }, + { + "epoch": 87.6430755788554, + "grad_norm": 0.2602663040161133, + "learning_rate": 0.0006, + "loss": 3.4628701210021973, + "step": 6310 + }, + { + "epoch": 87.65705548274356, + "grad_norm": 0.22973693907260895, + "learning_rate": 0.0006, + "loss": 3.4374523162841797, + "step": 6311 + }, + { + "epoch": 87.67103538663171, + "grad_norm": 0.20517243444919586, + "learning_rate": 0.0006, + "loss": 3.467461585998535, + "step": 6312 + }, + { + "epoch": 87.68501529051987, + "grad_norm": 0.22034190595149994, + "learning_rate": 0.0006, + "loss": 3.4591064453125, + "step": 6313 + }, + { + "epoch": 87.69899519440804, + "grad_norm": 0.27952659130096436, + "learning_rate": 0.0006, + "loss": 3.4621737003326416, + "step": 6314 + }, + { + "epoch": 87.7129750982962, + "grad_norm": 0.3361925780773163, + "learning_rate": 0.0006, + "loss": 3.4823145866394043, + "step": 6315 + }, + { + "epoch": 87.72695500218435, + "grad_norm": 0.245027557015419, + "learning_rate": 0.0006, + "loss": 3.4999091625213623, + "step": 6316 + }, + { + "epoch": 87.74093490607252, + "grad_norm": 0.24421612918376923, + "learning_rate": 0.0006, + "loss": 3.4381346702575684, + "step": 6317 + }, + { + "epoch": 87.75491480996068, + "grad_norm": 0.2876628041267395, + "learning_rate": 0.0006, + "loss": 3.44991397857666, + "step": 6318 + }, + { + "epoch": 87.76889471384884, + "grad_norm": 0.2695000171661377, + "learning_rate": 0.0006, + "loss": 3.4892220497131348, + "step": 6319 + }, + { + "epoch": 87.78287461773701, + "grad_norm": 0.2427721470594406, + "learning_rate": 0.0006, + "loss": 3.488051176071167, + "step": 6320 + }, + { + "epoch": 87.79685452162516, + "grad_norm": 0.22474367916584015, + "learning_rate": 0.0006, + "loss": 3.4849441051483154, + "step": 6321 + }, + { + "epoch": 87.81083442551332, + "grad_norm": 0.2337673008441925, + "learning_rate": 0.0006, + "loss": 3.478757619857788, + "step": 6322 + }, + { + "epoch": 87.82481432940149, + "grad_norm": 0.22685843706130981, + "learning_rate": 0.0006, + "loss": 3.499335289001465, + "step": 6323 + }, + { + "epoch": 87.83879423328965, + "grad_norm": 0.22728733718395233, + "learning_rate": 0.0006, + "loss": 3.4719929695129395, + "step": 6324 + }, + { + "epoch": 87.8527741371778, + "grad_norm": 0.23600755631923676, + "learning_rate": 0.0006, + "loss": 3.4627575874328613, + "step": 6325 + }, + { + "epoch": 87.86675404106597, + "grad_norm": 0.22861236333847046, + "learning_rate": 0.0006, + "loss": 3.4832100868225098, + "step": 6326 + }, + { + "epoch": 87.88073394495413, + "grad_norm": 0.21025750041007996, + "learning_rate": 0.0006, + "loss": 3.475428819656372, + "step": 6327 + }, + { + "epoch": 87.89471384884229, + "grad_norm": 0.24230243265628815, + "learning_rate": 0.0006, + "loss": 3.4739198684692383, + "step": 6328 + }, + { + "epoch": 87.90869375273044, + "grad_norm": 0.2554577589035034, + "learning_rate": 0.0006, + "loss": 3.4509432315826416, + "step": 6329 + }, + { + "epoch": 87.92267365661861, + "grad_norm": 0.22515688836574554, + "learning_rate": 0.0006, + "loss": 3.4668149948120117, + "step": 6330 + }, + { + "epoch": 87.93665356050677, + "grad_norm": 0.19475685060024261, + "learning_rate": 0.0006, + "loss": 3.4462881088256836, + "step": 6331 + }, + { + "epoch": 87.95063346439493, + "grad_norm": 0.23246119916439056, + "learning_rate": 0.0006, + "loss": 3.4629220962524414, + "step": 6332 + }, + { + "epoch": 87.9646133682831, + "grad_norm": 0.2511215806007385, + "learning_rate": 0.0006, + "loss": 3.464906930923462, + "step": 6333 + }, + { + "epoch": 87.97859327217125, + "grad_norm": 0.20661140978336334, + "learning_rate": 0.0006, + "loss": 3.4904966354370117, + "step": 6334 + }, + { + "epoch": 87.99257317605941, + "grad_norm": 0.2149374783039093, + "learning_rate": 0.0006, + "loss": 3.509500026702881, + "step": 6335 + }, + { + "epoch": 88.0, + "grad_norm": 0.26648908853530884, + "learning_rate": 0.0006, + "loss": 3.495286464691162, + "step": 6336 + }, + { + "epoch": 88.0, + "eval_loss": 3.9910876750946045, + "eval_runtime": 44.2326, + "eval_samples_per_second": 55.208, + "eval_steps_per_second": 3.459, + "step": 6336 + }, + { + "epoch": 88.01397990388816, + "grad_norm": 0.25808829069137573, + "learning_rate": 0.0006, + "loss": 3.411630392074585, + "step": 6337 + }, + { + "epoch": 88.02795980777633, + "grad_norm": 0.2827962636947632, + "learning_rate": 0.0006, + "loss": 3.4475622177124023, + "step": 6338 + }, + { + "epoch": 88.04193971166448, + "grad_norm": 0.2804858684539795, + "learning_rate": 0.0006, + "loss": 3.4195854663848877, + "step": 6339 + }, + { + "epoch": 88.05591961555264, + "grad_norm": 0.2890722155570984, + "learning_rate": 0.0006, + "loss": 3.435227632522583, + "step": 6340 + }, + { + "epoch": 88.06989951944081, + "grad_norm": 0.24709101021289825, + "learning_rate": 0.0006, + "loss": 3.3994932174682617, + "step": 6341 + }, + { + "epoch": 88.08387942332897, + "grad_norm": 0.30079564452171326, + "learning_rate": 0.0006, + "loss": 3.4284887313842773, + "step": 6342 + }, + { + "epoch": 88.09785932721712, + "grad_norm": 0.32843494415283203, + "learning_rate": 0.0006, + "loss": 3.424539566040039, + "step": 6343 + }, + { + "epoch": 88.1118392311053, + "grad_norm": 0.2460806518793106, + "learning_rate": 0.0006, + "loss": 3.421414852142334, + "step": 6344 + }, + { + "epoch": 88.12581913499345, + "grad_norm": 0.2310563027858734, + "learning_rate": 0.0006, + "loss": 3.4710545539855957, + "step": 6345 + }, + { + "epoch": 88.1397990388816, + "grad_norm": 0.2784363627433777, + "learning_rate": 0.0006, + "loss": 3.3813397884368896, + "step": 6346 + }, + { + "epoch": 88.15377894276976, + "grad_norm": 0.2760527729988098, + "learning_rate": 0.0006, + "loss": 3.467643976211548, + "step": 6347 + }, + { + "epoch": 88.16775884665793, + "grad_norm": 0.2341301441192627, + "learning_rate": 0.0006, + "loss": 3.440518856048584, + "step": 6348 + }, + { + "epoch": 88.18173875054609, + "grad_norm": 0.2695406973361969, + "learning_rate": 0.0006, + "loss": 3.406447410583496, + "step": 6349 + }, + { + "epoch": 88.19571865443424, + "grad_norm": 0.23603397607803345, + "learning_rate": 0.0006, + "loss": 3.426060914993286, + "step": 6350 + }, + { + "epoch": 88.20969855832242, + "grad_norm": 0.21914228796958923, + "learning_rate": 0.0006, + "loss": 3.443946599960327, + "step": 6351 + }, + { + "epoch": 88.22367846221057, + "grad_norm": 0.229744091629982, + "learning_rate": 0.0006, + "loss": 3.4850916862487793, + "step": 6352 + }, + { + "epoch": 88.23765836609873, + "grad_norm": 0.22008764743804932, + "learning_rate": 0.0006, + "loss": 3.4286551475524902, + "step": 6353 + }, + { + "epoch": 88.2516382699869, + "grad_norm": 0.2146327942609787, + "learning_rate": 0.0006, + "loss": 3.427851438522339, + "step": 6354 + }, + { + "epoch": 88.26561817387505, + "grad_norm": 0.23602543771266937, + "learning_rate": 0.0006, + "loss": 3.4568803310394287, + "step": 6355 + }, + { + "epoch": 88.27959807776321, + "grad_norm": 0.22665457427501678, + "learning_rate": 0.0006, + "loss": 3.424234390258789, + "step": 6356 + }, + { + "epoch": 88.29357798165138, + "grad_norm": 0.22728821635246277, + "learning_rate": 0.0006, + "loss": 3.478048324584961, + "step": 6357 + }, + { + "epoch": 88.30755788553954, + "grad_norm": 0.23190121352672577, + "learning_rate": 0.0006, + "loss": 3.4372310638427734, + "step": 6358 + }, + { + "epoch": 88.3215377894277, + "grad_norm": 0.23578281700611115, + "learning_rate": 0.0006, + "loss": 3.4195380210876465, + "step": 6359 + }, + { + "epoch": 88.33551769331586, + "grad_norm": 0.23664598166942596, + "learning_rate": 0.0006, + "loss": 3.386569023132324, + "step": 6360 + }, + { + "epoch": 88.34949759720402, + "grad_norm": 0.20773325860500336, + "learning_rate": 0.0006, + "loss": 3.486711025238037, + "step": 6361 + }, + { + "epoch": 88.36347750109218, + "grad_norm": 0.2483605146408081, + "learning_rate": 0.0006, + "loss": 3.4576683044433594, + "step": 6362 + }, + { + "epoch": 88.37745740498035, + "grad_norm": 0.25162816047668457, + "learning_rate": 0.0006, + "loss": 3.4627842903137207, + "step": 6363 + }, + { + "epoch": 88.3914373088685, + "grad_norm": 0.2269856184720993, + "learning_rate": 0.0006, + "loss": 3.45723819732666, + "step": 6364 + }, + { + "epoch": 88.40541721275666, + "grad_norm": 0.1993708610534668, + "learning_rate": 0.0006, + "loss": 3.3956477642059326, + "step": 6365 + }, + { + "epoch": 88.41939711664482, + "grad_norm": 0.24409815669059753, + "learning_rate": 0.0006, + "loss": 3.4643712043762207, + "step": 6366 + }, + { + "epoch": 88.43337702053299, + "grad_norm": 0.23164282739162445, + "learning_rate": 0.0006, + "loss": 3.4849226474761963, + "step": 6367 + }, + { + "epoch": 88.44735692442114, + "grad_norm": 0.20366275310516357, + "learning_rate": 0.0006, + "loss": 3.435481071472168, + "step": 6368 + }, + { + "epoch": 88.4613368283093, + "grad_norm": 0.22154691815376282, + "learning_rate": 0.0006, + "loss": 3.430396556854248, + "step": 6369 + }, + { + "epoch": 88.47531673219747, + "grad_norm": 0.22426174581050873, + "learning_rate": 0.0006, + "loss": 3.4546523094177246, + "step": 6370 + }, + { + "epoch": 88.48929663608563, + "grad_norm": 0.2243862897157669, + "learning_rate": 0.0006, + "loss": 3.4726970195770264, + "step": 6371 + }, + { + "epoch": 88.50327653997378, + "grad_norm": 0.22123505175113678, + "learning_rate": 0.0006, + "loss": 3.4308688640594482, + "step": 6372 + }, + { + "epoch": 88.51725644386195, + "grad_norm": 0.23854194581508636, + "learning_rate": 0.0006, + "loss": 3.4605226516723633, + "step": 6373 + }, + { + "epoch": 88.53123634775011, + "grad_norm": 0.22229605913162231, + "learning_rate": 0.0006, + "loss": 3.4652018547058105, + "step": 6374 + }, + { + "epoch": 88.54521625163827, + "grad_norm": 0.22032393515110016, + "learning_rate": 0.0006, + "loss": 3.465308666229248, + "step": 6375 + }, + { + "epoch": 88.55919615552644, + "grad_norm": 0.24441847205162048, + "learning_rate": 0.0006, + "loss": 3.46439790725708, + "step": 6376 + }, + { + "epoch": 88.57317605941459, + "grad_norm": 0.24422945082187653, + "learning_rate": 0.0006, + "loss": 3.4635725021362305, + "step": 6377 + }, + { + "epoch": 88.58715596330275, + "grad_norm": 0.2304745316505432, + "learning_rate": 0.0006, + "loss": 3.4751172065734863, + "step": 6378 + }, + { + "epoch": 88.60113586719092, + "grad_norm": 0.2433997094631195, + "learning_rate": 0.0006, + "loss": 3.4673709869384766, + "step": 6379 + }, + { + "epoch": 88.61511577107908, + "grad_norm": 0.23464781045913696, + "learning_rate": 0.0006, + "loss": 3.448793888092041, + "step": 6380 + }, + { + "epoch": 88.62909567496723, + "grad_norm": 0.2164311707019806, + "learning_rate": 0.0006, + "loss": 3.4486217498779297, + "step": 6381 + }, + { + "epoch": 88.6430755788554, + "grad_norm": 0.23604193329811096, + "learning_rate": 0.0006, + "loss": 3.459439277648926, + "step": 6382 + }, + { + "epoch": 88.65705548274356, + "grad_norm": 0.21989384293556213, + "learning_rate": 0.0006, + "loss": 3.5129756927490234, + "step": 6383 + }, + { + "epoch": 88.67103538663171, + "grad_norm": 0.25415554642677307, + "learning_rate": 0.0006, + "loss": 3.4335012435913086, + "step": 6384 + }, + { + "epoch": 88.68501529051987, + "grad_norm": 0.2704343795776367, + "learning_rate": 0.0006, + "loss": 3.447831869125366, + "step": 6385 + }, + { + "epoch": 88.69899519440804, + "grad_norm": 0.2723075747489929, + "learning_rate": 0.0006, + "loss": 3.455878734588623, + "step": 6386 + }, + { + "epoch": 88.7129750982962, + "grad_norm": 0.3328200578689575, + "learning_rate": 0.0006, + "loss": 3.4710352420806885, + "step": 6387 + }, + { + "epoch": 88.72695500218435, + "grad_norm": 0.2922036647796631, + "learning_rate": 0.0006, + "loss": 3.4882750511169434, + "step": 6388 + }, + { + "epoch": 88.74093490607252, + "grad_norm": 0.24199096858501434, + "learning_rate": 0.0006, + "loss": 3.478670358657837, + "step": 6389 + }, + { + "epoch": 88.75491480996068, + "grad_norm": 0.23823769390583038, + "learning_rate": 0.0006, + "loss": 3.496589422225952, + "step": 6390 + }, + { + "epoch": 88.76889471384884, + "grad_norm": 0.25458282232284546, + "learning_rate": 0.0006, + "loss": 3.462967872619629, + "step": 6391 + }, + { + "epoch": 88.78287461773701, + "grad_norm": 0.2744201421737671, + "learning_rate": 0.0006, + "loss": 3.4788689613342285, + "step": 6392 + }, + { + "epoch": 88.79685452162516, + "grad_norm": 0.25138887763023376, + "learning_rate": 0.0006, + "loss": 3.4415979385375977, + "step": 6393 + }, + { + "epoch": 88.81083442551332, + "grad_norm": 0.2001047134399414, + "learning_rate": 0.0006, + "loss": 3.4428935050964355, + "step": 6394 + }, + { + "epoch": 88.82481432940149, + "grad_norm": 0.26081711053848267, + "learning_rate": 0.0006, + "loss": 3.483206272125244, + "step": 6395 + }, + { + "epoch": 88.83879423328965, + "grad_norm": 0.30478793382644653, + "learning_rate": 0.0006, + "loss": 3.471090316772461, + "step": 6396 + }, + { + "epoch": 88.8527741371778, + "grad_norm": 0.2885384261608124, + "learning_rate": 0.0006, + "loss": 3.473282814025879, + "step": 6397 + }, + { + "epoch": 88.86675404106597, + "grad_norm": 0.22030530869960785, + "learning_rate": 0.0006, + "loss": 3.4616754055023193, + "step": 6398 + }, + { + "epoch": 88.88073394495413, + "grad_norm": 0.20391277968883514, + "learning_rate": 0.0006, + "loss": 3.491486072540283, + "step": 6399 + }, + { + "epoch": 88.89471384884229, + "grad_norm": 0.2605881690979004, + "learning_rate": 0.0006, + "loss": 3.4590494632720947, + "step": 6400 + }, + { + "epoch": 88.90869375273044, + "grad_norm": 0.2896178662776947, + "learning_rate": 0.0006, + "loss": 3.475888729095459, + "step": 6401 + }, + { + "epoch": 88.92267365661861, + "grad_norm": 0.24813410639762878, + "learning_rate": 0.0006, + "loss": 3.4332098960876465, + "step": 6402 + }, + { + "epoch": 88.93665356050677, + "grad_norm": 0.22145259380340576, + "learning_rate": 0.0006, + "loss": 3.440641403198242, + "step": 6403 + }, + { + "epoch": 88.95063346439493, + "grad_norm": 0.2679630517959595, + "learning_rate": 0.0006, + "loss": 3.4917471408843994, + "step": 6404 + }, + { + "epoch": 88.9646133682831, + "grad_norm": 0.2954908609390259, + "learning_rate": 0.0006, + "loss": 3.4755516052246094, + "step": 6405 + }, + { + "epoch": 88.97859327217125, + "grad_norm": 0.23178689181804657, + "learning_rate": 0.0006, + "loss": 3.469050884246826, + "step": 6406 + }, + { + "epoch": 88.99257317605941, + "grad_norm": 0.26545095443725586, + "learning_rate": 0.0006, + "loss": 3.494682550430298, + "step": 6407 + }, + { + "epoch": 89.0, + "grad_norm": 0.3239239752292633, + "learning_rate": 0.0006, + "loss": 3.5135645866394043, + "step": 6408 + }, + { + "epoch": 89.0, + "eval_loss": 3.992034673690796, + "eval_runtime": 44.6934, + "eval_samples_per_second": 54.639, + "eval_steps_per_second": 3.423, + "step": 6408 + }, + { + "epoch": 89.01397990388816, + "grad_norm": 0.26076626777648926, + "learning_rate": 0.0006, + "loss": 3.4015183448791504, + "step": 6409 + }, + { + "epoch": 89.02795980777633, + "grad_norm": 0.26522189378738403, + "learning_rate": 0.0006, + "loss": 3.4156241416931152, + "step": 6410 + }, + { + "epoch": 89.04193971166448, + "grad_norm": 0.2675033211708069, + "learning_rate": 0.0006, + "loss": 3.4594039916992188, + "step": 6411 + }, + { + "epoch": 89.05591961555264, + "grad_norm": 0.23592065274715424, + "learning_rate": 0.0006, + "loss": 3.429386854171753, + "step": 6412 + }, + { + "epoch": 89.06989951944081, + "grad_norm": 0.21512176096439362, + "learning_rate": 0.0006, + "loss": 3.4295554161071777, + "step": 6413 + }, + { + "epoch": 89.08387942332897, + "grad_norm": 0.23216180503368378, + "learning_rate": 0.0006, + "loss": 3.4333434104919434, + "step": 6414 + }, + { + "epoch": 89.09785932721712, + "grad_norm": 0.22999808192253113, + "learning_rate": 0.0006, + "loss": 3.4306654930114746, + "step": 6415 + }, + { + "epoch": 89.1118392311053, + "grad_norm": 0.22871482372283936, + "learning_rate": 0.0006, + "loss": 3.3907477855682373, + "step": 6416 + }, + { + "epoch": 89.12581913499345, + "grad_norm": 0.20900525152683258, + "learning_rate": 0.0006, + "loss": 3.4095845222473145, + "step": 6417 + }, + { + "epoch": 89.1397990388816, + "grad_norm": 0.2378418743610382, + "learning_rate": 0.0006, + "loss": 3.4298243522644043, + "step": 6418 + }, + { + "epoch": 89.15377894276976, + "grad_norm": 0.2525534927845001, + "learning_rate": 0.0006, + "loss": 3.4198246002197266, + "step": 6419 + }, + { + "epoch": 89.16775884665793, + "grad_norm": 0.2076501101255417, + "learning_rate": 0.0006, + "loss": 3.4508895874023438, + "step": 6420 + }, + { + "epoch": 89.18173875054609, + "grad_norm": 0.20777149498462677, + "learning_rate": 0.0006, + "loss": 3.423689842224121, + "step": 6421 + }, + { + "epoch": 89.19571865443424, + "grad_norm": 0.20875415205955505, + "learning_rate": 0.0006, + "loss": 3.4154067039489746, + "step": 6422 + }, + { + "epoch": 89.20969855832242, + "grad_norm": 0.2042168527841568, + "learning_rate": 0.0006, + "loss": 3.3957953453063965, + "step": 6423 + }, + { + "epoch": 89.22367846221057, + "grad_norm": 0.2043248862028122, + "learning_rate": 0.0006, + "loss": 3.442990779876709, + "step": 6424 + }, + { + "epoch": 89.23765836609873, + "grad_norm": 0.20880229771137238, + "learning_rate": 0.0006, + "loss": 3.434053421020508, + "step": 6425 + }, + { + "epoch": 89.2516382699869, + "grad_norm": 0.22000163793563843, + "learning_rate": 0.0006, + "loss": 3.453723192214966, + "step": 6426 + }, + { + "epoch": 89.26561817387505, + "grad_norm": 0.24656693637371063, + "learning_rate": 0.0006, + "loss": 3.4274513721466064, + "step": 6427 + }, + { + "epoch": 89.27959807776321, + "grad_norm": 0.25207582116127014, + "learning_rate": 0.0006, + "loss": 3.4276046752929688, + "step": 6428 + }, + { + "epoch": 89.29357798165138, + "grad_norm": 0.2345285266637802, + "learning_rate": 0.0006, + "loss": 3.4006080627441406, + "step": 6429 + }, + { + "epoch": 89.30755788553954, + "grad_norm": 0.21787762641906738, + "learning_rate": 0.0006, + "loss": 3.4215078353881836, + "step": 6430 + }, + { + "epoch": 89.3215377894277, + "grad_norm": 0.2894236147403717, + "learning_rate": 0.0006, + "loss": 3.4783596992492676, + "step": 6431 + }, + { + "epoch": 89.33551769331586, + "grad_norm": 0.2847222685813904, + "learning_rate": 0.0006, + "loss": 3.429959297180176, + "step": 6432 + }, + { + "epoch": 89.34949759720402, + "grad_norm": 0.2582961618900299, + "learning_rate": 0.0006, + "loss": 3.452066421508789, + "step": 6433 + }, + { + "epoch": 89.36347750109218, + "grad_norm": 0.24120213091373444, + "learning_rate": 0.0006, + "loss": 3.4637932777404785, + "step": 6434 + }, + { + "epoch": 89.37745740498035, + "grad_norm": 0.2194867879152298, + "learning_rate": 0.0006, + "loss": 3.4527363777160645, + "step": 6435 + }, + { + "epoch": 89.3914373088685, + "grad_norm": 0.21826128661632538, + "learning_rate": 0.0006, + "loss": 3.4796347618103027, + "step": 6436 + }, + { + "epoch": 89.40541721275666, + "grad_norm": 0.2282753586769104, + "learning_rate": 0.0006, + "loss": 3.4368395805358887, + "step": 6437 + }, + { + "epoch": 89.41939711664482, + "grad_norm": 0.23643003404140472, + "learning_rate": 0.0006, + "loss": 3.427896499633789, + "step": 6438 + }, + { + "epoch": 89.43337702053299, + "grad_norm": 0.22480039298534393, + "learning_rate": 0.0006, + "loss": 3.4214162826538086, + "step": 6439 + }, + { + "epoch": 89.44735692442114, + "grad_norm": 0.24800775945186615, + "learning_rate": 0.0006, + "loss": 3.482728958129883, + "step": 6440 + }, + { + "epoch": 89.4613368283093, + "grad_norm": 0.2830938994884491, + "learning_rate": 0.0006, + "loss": 3.460789203643799, + "step": 6441 + }, + { + "epoch": 89.47531673219747, + "grad_norm": 0.24190731346607208, + "learning_rate": 0.0006, + "loss": 3.4165000915527344, + "step": 6442 + }, + { + "epoch": 89.48929663608563, + "grad_norm": 0.22147944569587708, + "learning_rate": 0.0006, + "loss": 3.468981981277466, + "step": 6443 + }, + { + "epoch": 89.50327653997378, + "grad_norm": 0.23627884685993195, + "learning_rate": 0.0006, + "loss": 3.4555022716522217, + "step": 6444 + }, + { + "epoch": 89.51725644386195, + "grad_norm": 0.25639012455940247, + "learning_rate": 0.0006, + "loss": 3.4795055389404297, + "step": 6445 + }, + { + "epoch": 89.53123634775011, + "grad_norm": 0.2540741562843323, + "learning_rate": 0.0006, + "loss": 3.428651809692383, + "step": 6446 + }, + { + "epoch": 89.54521625163827, + "grad_norm": 0.237799733877182, + "learning_rate": 0.0006, + "loss": 3.46543550491333, + "step": 6447 + }, + { + "epoch": 89.55919615552644, + "grad_norm": 0.24322320520877838, + "learning_rate": 0.0006, + "loss": 3.467132091522217, + "step": 6448 + }, + { + "epoch": 89.57317605941459, + "grad_norm": 0.2334299087524414, + "learning_rate": 0.0006, + "loss": 3.469076156616211, + "step": 6449 + }, + { + "epoch": 89.58715596330275, + "grad_norm": 0.25378280878067017, + "learning_rate": 0.0006, + "loss": 3.484861135482788, + "step": 6450 + }, + { + "epoch": 89.60113586719092, + "grad_norm": 0.20370706915855408, + "learning_rate": 0.0006, + "loss": 3.4574594497680664, + "step": 6451 + }, + { + "epoch": 89.61511577107908, + "grad_norm": 0.26076021790504456, + "learning_rate": 0.0006, + "loss": 3.454120635986328, + "step": 6452 + }, + { + "epoch": 89.62909567496723, + "grad_norm": 0.32039397954940796, + "learning_rate": 0.0006, + "loss": 3.4836630821228027, + "step": 6453 + }, + { + "epoch": 89.6430755788554, + "grad_norm": 0.2533518671989441, + "learning_rate": 0.0006, + "loss": 3.4274086952209473, + "step": 6454 + }, + { + "epoch": 89.65705548274356, + "grad_norm": 0.23669421672821045, + "learning_rate": 0.0006, + "loss": 3.481234550476074, + "step": 6455 + }, + { + "epoch": 89.67103538663171, + "grad_norm": 0.24855080246925354, + "learning_rate": 0.0006, + "loss": 3.4526028633117676, + "step": 6456 + }, + { + "epoch": 89.68501529051987, + "grad_norm": 0.26464295387268066, + "learning_rate": 0.0006, + "loss": 3.4849853515625, + "step": 6457 + }, + { + "epoch": 89.69899519440804, + "grad_norm": 0.2327338010072708, + "learning_rate": 0.0006, + "loss": 3.4549481868743896, + "step": 6458 + }, + { + "epoch": 89.7129750982962, + "grad_norm": 0.2237960249185562, + "learning_rate": 0.0006, + "loss": 3.4843358993530273, + "step": 6459 + }, + { + "epoch": 89.72695500218435, + "grad_norm": 0.2624133229255676, + "learning_rate": 0.0006, + "loss": 3.480234384536743, + "step": 6460 + }, + { + "epoch": 89.74093490607252, + "grad_norm": 0.2741307318210602, + "learning_rate": 0.0006, + "loss": 3.486077308654785, + "step": 6461 + }, + { + "epoch": 89.75491480996068, + "grad_norm": 0.26507681608200073, + "learning_rate": 0.0006, + "loss": 3.472601890563965, + "step": 6462 + }, + { + "epoch": 89.76889471384884, + "grad_norm": 0.2763329744338989, + "learning_rate": 0.0006, + "loss": 3.4514942169189453, + "step": 6463 + }, + { + "epoch": 89.78287461773701, + "grad_norm": 0.25115516781806946, + "learning_rate": 0.0006, + "loss": 3.4521241188049316, + "step": 6464 + }, + { + "epoch": 89.79685452162516, + "grad_norm": 0.2608273923397064, + "learning_rate": 0.0006, + "loss": 3.4956421852111816, + "step": 6465 + }, + { + "epoch": 89.81083442551332, + "grad_norm": 0.25732100009918213, + "learning_rate": 0.0006, + "loss": 3.431410789489746, + "step": 6466 + }, + { + "epoch": 89.82481432940149, + "grad_norm": 0.25413885712623596, + "learning_rate": 0.0006, + "loss": 3.4456334114074707, + "step": 6467 + }, + { + "epoch": 89.83879423328965, + "grad_norm": 0.26074308156967163, + "learning_rate": 0.0006, + "loss": 3.4852781295776367, + "step": 6468 + }, + { + "epoch": 89.8527741371778, + "grad_norm": 0.24674317240715027, + "learning_rate": 0.0006, + "loss": 3.492945671081543, + "step": 6469 + }, + { + "epoch": 89.86675404106597, + "grad_norm": 0.2279389649629593, + "learning_rate": 0.0006, + "loss": 3.4742088317871094, + "step": 6470 + }, + { + "epoch": 89.88073394495413, + "grad_norm": 0.2622646689414978, + "learning_rate": 0.0006, + "loss": 3.4317221641540527, + "step": 6471 + }, + { + "epoch": 89.89471384884229, + "grad_norm": 0.2638682425022125, + "learning_rate": 0.0006, + "loss": 3.4556517601013184, + "step": 6472 + }, + { + "epoch": 89.90869375273044, + "grad_norm": 0.23732876777648926, + "learning_rate": 0.0006, + "loss": 3.4607365131378174, + "step": 6473 + }, + { + "epoch": 89.92267365661861, + "grad_norm": 0.24878044426441193, + "learning_rate": 0.0006, + "loss": 3.4899003505706787, + "step": 6474 + }, + { + "epoch": 89.93665356050677, + "grad_norm": 0.28630414605140686, + "learning_rate": 0.0006, + "loss": 3.470259189605713, + "step": 6475 + }, + { + "epoch": 89.95063346439493, + "grad_norm": 0.27317965030670166, + "learning_rate": 0.0006, + "loss": 3.474698066711426, + "step": 6476 + }, + { + "epoch": 89.9646133682831, + "grad_norm": 0.22384391725063324, + "learning_rate": 0.0006, + "loss": 3.485776424407959, + "step": 6477 + }, + { + "epoch": 89.97859327217125, + "grad_norm": 0.21875929832458496, + "learning_rate": 0.0006, + "loss": 3.4453420639038086, + "step": 6478 + }, + { + "epoch": 89.99257317605941, + "grad_norm": 0.25603052973747253, + "learning_rate": 0.0006, + "loss": 3.4507737159729004, + "step": 6479 + }, + { + "epoch": 90.0, + "grad_norm": 0.25681135058403015, + "learning_rate": 0.0006, + "loss": 3.4818739891052246, + "step": 6480 + }, + { + "epoch": 90.0, + "eval_loss": 3.999830484390259, + "eval_runtime": 44.7701, + "eval_samples_per_second": 54.545, + "eval_steps_per_second": 3.417, + "step": 6480 + }, + { + "epoch": 90.01397990388816, + "grad_norm": 0.23689916729927063, + "learning_rate": 0.0006, + "loss": 3.4293808937072754, + "step": 6481 + }, + { + "epoch": 90.02795980777633, + "grad_norm": 0.2913787066936493, + "learning_rate": 0.0006, + "loss": 3.4358348846435547, + "step": 6482 + }, + { + "epoch": 90.04193971166448, + "grad_norm": 0.30623507499694824, + "learning_rate": 0.0006, + "loss": 3.4494967460632324, + "step": 6483 + }, + { + "epoch": 90.05591961555264, + "grad_norm": 0.2518816292285919, + "learning_rate": 0.0006, + "loss": 3.3989272117614746, + "step": 6484 + }, + { + "epoch": 90.06989951944081, + "grad_norm": 0.22332705557346344, + "learning_rate": 0.0006, + "loss": 3.4374301433563232, + "step": 6485 + }, + { + "epoch": 90.08387942332897, + "grad_norm": 0.25442928075790405, + "learning_rate": 0.0006, + "loss": 3.4400265216827393, + "step": 6486 + }, + { + "epoch": 90.09785932721712, + "grad_norm": 0.23519982397556305, + "learning_rate": 0.0006, + "loss": 3.460005283355713, + "step": 6487 + }, + { + "epoch": 90.1118392311053, + "grad_norm": 0.21921132504940033, + "learning_rate": 0.0006, + "loss": 3.4213805198669434, + "step": 6488 + }, + { + "epoch": 90.12581913499345, + "grad_norm": 0.2308962345123291, + "learning_rate": 0.0006, + "loss": 3.40868878364563, + "step": 6489 + }, + { + "epoch": 90.1397990388816, + "grad_norm": 0.25246691703796387, + "learning_rate": 0.0006, + "loss": 3.4305224418640137, + "step": 6490 + }, + { + "epoch": 90.15377894276976, + "grad_norm": 0.2620214521884918, + "learning_rate": 0.0006, + "loss": 3.4540047645568848, + "step": 6491 + }, + { + "epoch": 90.16775884665793, + "grad_norm": 0.26162007451057434, + "learning_rate": 0.0006, + "loss": 3.4242591857910156, + "step": 6492 + }, + { + "epoch": 90.18173875054609, + "grad_norm": 0.2706946134567261, + "learning_rate": 0.0006, + "loss": 3.395965099334717, + "step": 6493 + }, + { + "epoch": 90.19571865443424, + "grad_norm": 0.2841350734233856, + "learning_rate": 0.0006, + "loss": 3.4207353591918945, + "step": 6494 + }, + { + "epoch": 90.20969855832242, + "grad_norm": 0.2355320006608963, + "learning_rate": 0.0006, + "loss": 3.435781240463257, + "step": 6495 + }, + { + "epoch": 90.22367846221057, + "grad_norm": 0.2300831377506256, + "learning_rate": 0.0006, + "loss": 3.484382390975952, + "step": 6496 + }, + { + "epoch": 90.23765836609873, + "grad_norm": 0.23433318734169006, + "learning_rate": 0.0006, + "loss": 3.4701218605041504, + "step": 6497 + }, + { + "epoch": 90.2516382699869, + "grad_norm": 0.22971056401729584, + "learning_rate": 0.0006, + "loss": 3.419468879699707, + "step": 6498 + }, + { + "epoch": 90.26561817387505, + "grad_norm": 0.21990258991718292, + "learning_rate": 0.0006, + "loss": 3.4376916885375977, + "step": 6499 + }, + { + "epoch": 90.27959807776321, + "grad_norm": 0.23238584399223328, + "learning_rate": 0.0006, + "loss": 3.418395519256592, + "step": 6500 + }, + { + "epoch": 90.29357798165138, + "grad_norm": 0.2370229959487915, + "learning_rate": 0.0006, + "loss": 3.434985637664795, + "step": 6501 + }, + { + "epoch": 90.30755788553954, + "grad_norm": 0.24488133192062378, + "learning_rate": 0.0006, + "loss": 3.444256544113159, + "step": 6502 + }, + { + "epoch": 90.3215377894277, + "grad_norm": 0.23631639778614044, + "learning_rate": 0.0006, + "loss": 3.4322943687438965, + "step": 6503 + }, + { + "epoch": 90.33551769331586, + "grad_norm": 0.27867549657821655, + "learning_rate": 0.0006, + "loss": 3.4135818481445312, + "step": 6504 + }, + { + "epoch": 90.34949759720402, + "grad_norm": 0.2811877429485321, + "learning_rate": 0.0006, + "loss": 3.4712491035461426, + "step": 6505 + }, + { + "epoch": 90.36347750109218, + "grad_norm": 0.27869683504104614, + "learning_rate": 0.0006, + "loss": 3.439957618713379, + "step": 6506 + }, + { + "epoch": 90.37745740498035, + "grad_norm": 0.2580752372741699, + "learning_rate": 0.0006, + "loss": 3.4653806686401367, + "step": 6507 + }, + { + "epoch": 90.3914373088685, + "grad_norm": 0.22791235148906708, + "learning_rate": 0.0006, + "loss": 3.473700523376465, + "step": 6508 + }, + { + "epoch": 90.40541721275666, + "grad_norm": 0.24821090698242188, + "learning_rate": 0.0006, + "loss": 3.458252429962158, + "step": 6509 + }, + { + "epoch": 90.41939711664482, + "grad_norm": 0.26579076051712036, + "learning_rate": 0.0006, + "loss": 3.45634126663208, + "step": 6510 + }, + { + "epoch": 90.43337702053299, + "grad_norm": 0.2361977994441986, + "learning_rate": 0.0006, + "loss": 3.4125771522521973, + "step": 6511 + }, + { + "epoch": 90.44735692442114, + "grad_norm": 0.23342299461364746, + "learning_rate": 0.0006, + "loss": 3.45123291015625, + "step": 6512 + }, + { + "epoch": 90.4613368283093, + "grad_norm": 0.2336706519126892, + "learning_rate": 0.0006, + "loss": 3.4376308917999268, + "step": 6513 + }, + { + "epoch": 90.47531673219747, + "grad_norm": 0.23071132600307465, + "learning_rate": 0.0006, + "loss": 3.4657201766967773, + "step": 6514 + }, + { + "epoch": 90.48929663608563, + "grad_norm": 0.2455618977546692, + "learning_rate": 0.0006, + "loss": 3.4548654556274414, + "step": 6515 + }, + { + "epoch": 90.50327653997378, + "grad_norm": 0.2365117371082306, + "learning_rate": 0.0006, + "loss": 3.445751190185547, + "step": 6516 + }, + { + "epoch": 90.51725644386195, + "grad_norm": 0.24233736097812653, + "learning_rate": 0.0006, + "loss": 3.469302177429199, + "step": 6517 + }, + { + "epoch": 90.53123634775011, + "grad_norm": 0.2477443963289261, + "learning_rate": 0.0006, + "loss": 3.454160213470459, + "step": 6518 + }, + { + "epoch": 90.54521625163827, + "grad_norm": 0.22983910143375397, + "learning_rate": 0.0006, + "loss": 3.458289623260498, + "step": 6519 + }, + { + "epoch": 90.55919615552644, + "grad_norm": 0.2191733866930008, + "learning_rate": 0.0006, + "loss": 3.463169813156128, + "step": 6520 + }, + { + "epoch": 90.57317605941459, + "grad_norm": 0.2129858285188675, + "learning_rate": 0.0006, + "loss": 3.4242935180664062, + "step": 6521 + }, + { + "epoch": 90.58715596330275, + "grad_norm": 0.20176434516906738, + "learning_rate": 0.0006, + "loss": 3.47160005569458, + "step": 6522 + }, + { + "epoch": 90.60113586719092, + "grad_norm": 0.20553307235240936, + "learning_rate": 0.0006, + "loss": 3.44893741607666, + "step": 6523 + }, + { + "epoch": 90.61511577107908, + "grad_norm": 0.2038491815328598, + "learning_rate": 0.0006, + "loss": 3.4510388374328613, + "step": 6524 + }, + { + "epoch": 90.62909567496723, + "grad_norm": 0.2051108181476593, + "learning_rate": 0.0006, + "loss": 3.432497978210449, + "step": 6525 + }, + { + "epoch": 90.6430755788554, + "grad_norm": 0.2082308828830719, + "learning_rate": 0.0006, + "loss": 3.4057083129882812, + "step": 6526 + }, + { + "epoch": 90.65705548274356, + "grad_norm": 0.20836716890335083, + "learning_rate": 0.0006, + "loss": 3.4552931785583496, + "step": 6527 + }, + { + "epoch": 90.67103538663171, + "grad_norm": 0.21513152122497559, + "learning_rate": 0.0006, + "loss": 3.4789159297943115, + "step": 6528 + }, + { + "epoch": 90.68501529051987, + "grad_norm": 0.19279007613658905, + "learning_rate": 0.0006, + "loss": 3.4437804222106934, + "step": 6529 + }, + { + "epoch": 90.69899519440804, + "grad_norm": 0.2161160707473755, + "learning_rate": 0.0006, + "loss": 3.4561848640441895, + "step": 6530 + }, + { + "epoch": 90.7129750982962, + "grad_norm": 0.215060755610466, + "learning_rate": 0.0006, + "loss": 3.4479143619537354, + "step": 6531 + }, + { + "epoch": 90.72695500218435, + "grad_norm": 0.22014649212360382, + "learning_rate": 0.0006, + "loss": 3.4805421829223633, + "step": 6532 + }, + { + "epoch": 90.74093490607252, + "grad_norm": 0.21027646958827972, + "learning_rate": 0.0006, + "loss": 3.4582362174987793, + "step": 6533 + }, + { + "epoch": 90.75491480996068, + "grad_norm": 0.20222219824790955, + "learning_rate": 0.0006, + "loss": 3.4903597831726074, + "step": 6534 + }, + { + "epoch": 90.76889471384884, + "grad_norm": 0.20685896277427673, + "learning_rate": 0.0006, + "loss": 3.4575371742248535, + "step": 6535 + }, + { + "epoch": 90.78287461773701, + "grad_norm": 0.21161817014217377, + "learning_rate": 0.0006, + "loss": 3.4690070152282715, + "step": 6536 + }, + { + "epoch": 90.79685452162516, + "grad_norm": 0.21940334141254425, + "learning_rate": 0.0006, + "loss": 3.4706811904907227, + "step": 6537 + }, + { + "epoch": 90.81083442551332, + "grad_norm": 0.26040831208229065, + "learning_rate": 0.0006, + "loss": 3.4382858276367188, + "step": 6538 + }, + { + "epoch": 90.82481432940149, + "grad_norm": 0.2624196708202362, + "learning_rate": 0.0006, + "loss": 3.4288434982299805, + "step": 6539 + }, + { + "epoch": 90.83879423328965, + "grad_norm": 0.21397143602371216, + "learning_rate": 0.0006, + "loss": 3.4233155250549316, + "step": 6540 + }, + { + "epoch": 90.8527741371778, + "grad_norm": 0.21811220049858093, + "learning_rate": 0.0006, + "loss": 3.4677746295928955, + "step": 6541 + }, + { + "epoch": 90.86675404106597, + "grad_norm": 0.2355065494775772, + "learning_rate": 0.0006, + "loss": 3.464076042175293, + "step": 6542 + }, + { + "epoch": 90.88073394495413, + "grad_norm": 0.24195170402526855, + "learning_rate": 0.0006, + "loss": 3.4368276596069336, + "step": 6543 + }, + { + "epoch": 90.89471384884229, + "grad_norm": 0.22805985808372498, + "learning_rate": 0.0006, + "loss": 3.4452972412109375, + "step": 6544 + }, + { + "epoch": 90.90869375273044, + "grad_norm": 0.24331413209438324, + "learning_rate": 0.0006, + "loss": 3.4641945362091064, + "step": 6545 + }, + { + "epoch": 90.92267365661861, + "grad_norm": 0.2548025846481323, + "learning_rate": 0.0006, + "loss": 3.467857837677002, + "step": 6546 + }, + { + "epoch": 90.93665356050677, + "grad_norm": 0.2502395808696747, + "learning_rate": 0.0006, + "loss": 3.4996755123138428, + "step": 6547 + }, + { + "epoch": 90.95063346439493, + "grad_norm": 0.2708912491798401, + "learning_rate": 0.0006, + "loss": 3.4881935119628906, + "step": 6548 + }, + { + "epoch": 90.9646133682831, + "grad_norm": 0.2244291454553604, + "learning_rate": 0.0006, + "loss": 3.4758358001708984, + "step": 6549 + }, + { + "epoch": 90.97859327217125, + "grad_norm": 0.2296932339668274, + "learning_rate": 0.0006, + "loss": 3.4716358184814453, + "step": 6550 + }, + { + "epoch": 90.99257317605941, + "grad_norm": 0.22517654299736023, + "learning_rate": 0.0006, + "loss": 3.4639534950256348, + "step": 6551 + }, + { + "epoch": 91.0, + "grad_norm": 0.2434951514005661, + "learning_rate": 0.0006, + "loss": 3.4479212760925293, + "step": 6552 + }, + { + "epoch": 91.0, + "eval_loss": 3.9979732036590576, + "eval_runtime": 44.7878, + "eval_samples_per_second": 54.524, + "eval_steps_per_second": 3.416, + "step": 6552 + }, + { + "epoch": 91.01397990388816, + "grad_norm": 0.2499505579471588, + "learning_rate": 0.0006, + "loss": 3.4420533180236816, + "step": 6553 + }, + { + "epoch": 91.02795980777633, + "grad_norm": 0.2283775359392166, + "learning_rate": 0.0006, + "loss": 3.397223472595215, + "step": 6554 + }, + { + "epoch": 91.04193971166448, + "grad_norm": 0.24214854836463928, + "learning_rate": 0.0006, + "loss": 3.4300968647003174, + "step": 6555 + }, + { + "epoch": 91.05591961555264, + "grad_norm": 0.24537277221679688, + "learning_rate": 0.0006, + "loss": 3.3899738788604736, + "step": 6556 + }, + { + "epoch": 91.06989951944081, + "grad_norm": 0.22344836592674255, + "learning_rate": 0.0006, + "loss": 3.4111621379852295, + "step": 6557 + }, + { + "epoch": 91.08387942332897, + "grad_norm": 0.25178757309913635, + "learning_rate": 0.0006, + "loss": 3.3929779529571533, + "step": 6558 + }, + { + "epoch": 91.09785932721712, + "grad_norm": 0.24584028124809265, + "learning_rate": 0.0006, + "loss": 3.4258031845092773, + "step": 6559 + }, + { + "epoch": 91.1118392311053, + "grad_norm": 0.21985837817192078, + "learning_rate": 0.0006, + "loss": 3.440598964691162, + "step": 6560 + }, + { + "epoch": 91.12581913499345, + "grad_norm": 0.22723308205604553, + "learning_rate": 0.0006, + "loss": 3.381110668182373, + "step": 6561 + }, + { + "epoch": 91.1397990388816, + "grad_norm": 0.230651393532753, + "learning_rate": 0.0006, + "loss": 3.405940055847168, + "step": 6562 + }, + { + "epoch": 91.15377894276976, + "grad_norm": 0.22571954131126404, + "learning_rate": 0.0006, + "loss": 3.4182586669921875, + "step": 6563 + }, + { + "epoch": 91.16775884665793, + "grad_norm": 0.2315082997083664, + "learning_rate": 0.0006, + "loss": 3.4258971214294434, + "step": 6564 + }, + { + "epoch": 91.18173875054609, + "grad_norm": 0.24481143057346344, + "learning_rate": 0.0006, + "loss": 3.414041042327881, + "step": 6565 + }, + { + "epoch": 91.19571865443424, + "grad_norm": 0.24179089069366455, + "learning_rate": 0.0006, + "loss": 3.446119785308838, + "step": 6566 + }, + { + "epoch": 91.20969855832242, + "grad_norm": 0.2173374891281128, + "learning_rate": 0.0006, + "loss": 3.4450573921203613, + "step": 6567 + }, + { + "epoch": 91.22367846221057, + "grad_norm": 0.22432099282741547, + "learning_rate": 0.0006, + "loss": 3.3917040824890137, + "step": 6568 + }, + { + "epoch": 91.23765836609873, + "grad_norm": 0.24475252628326416, + "learning_rate": 0.0006, + "loss": 3.478754997253418, + "step": 6569 + }, + { + "epoch": 91.2516382699869, + "grad_norm": 0.2670491933822632, + "learning_rate": 0.0006, + "loss": 3.4345972537994385, + "step": 6570 + }, + { + "epoch": 91.26561817387505, + "grad_norm": 0.2913564443588257, + "learning_rate": 0.0006, + "loss": 3.4358811378479004, + "step": 6571 + }, + { + "epoch": 91.27959807776321, + "grad_norm": 0.2748962938785553, + "learning_rate": 0.0006, + "loss": 3.4434967041015625, + "step": 6572 + }, + { + "epoch": 91.29357798165138, + "grad_norm": 0.26680848002433777, + "learning_rate": 0.0006, + "loss": 3.4508543014526367, + "step": 6573 + }, + { + "epoch": 91.30755788553954, + "grad_norm": 0.24651028215885162, + "learning_rate": 0.0006, + "loss": 3.4454240798950195, + "step": 6574 + }, + { + "epoch": 91.3215377894277, + "grad_norm": 0.26599520444869995, + "learning_rate": 0.0006, + "loss": 3.478940963745117, + "step": 6575 + }, + { + "epoch": 91.33551769331586, + "grad_norm": 0.24619929492473602, + "learning_rate": 0.0006, + "loss": 3.4413816928863525, + "step": 6576 + }, + { + "epoch": 91.34949759720402, + "grad_norm": 0.22422556579113007, + "learning_rate": 0.0006, + "loss": 3.442748785018921, + "step": 6577 + }, + { + "epoch": 91.36347750109218, + "grad_norm": 0.2376735806465149, + "learning_rate": 0.0006, + "loss": 3.4344892501831055, + "step": 6578 + }, + { + "epoch": 91.37745740498035, + "grad_norm": 0.24284742772579193, + "learning_rate": 0.0006, + "loss": 3.4585022926330566, + "step": 6579 + }, + { + "epoch": 91.3914373088685, + "grad_norm": 0.22316616773605347, + "learning_rate": 0.0006, + "loss": 3.4509897232055664, + "step": 6580 + }, + { + "epoch": 91.40541721275666, + "grad_norm": 0.2550467848777771, + "learning_rate": 0.0006, + "loss": 3.4034252166748047, + "step": 6581 + }, + { + "epoch": 91.41939711664482, + "grad_norm": 0.256962388753891, + "learning_rate": 0.0006, + "loss": 3.4422130584716797, + "step": 6582 + }, + { + "epoch": 91.43337702053299, + "grad_norm": 0.22875230014324188, + "learning_rate": 0.0006, + "loss": 3.4408864974975586, + "step": 6583 + }, + { + "epoch": 91.44735692442114, + "grad_norm": 0.22402530908584595, + "learning_rate": 0.0006, + "loss": 3.43098783493042, + "step": 6584 + }, + { + "epoch": 91.4613368283093, + "grad_norm": 0.24842505156993866, + "learning_rate": 0.0006, + "loss": 3.4330012798309326, + "step": 6585 + }, + { + "epoch": 91.47531673219747, + "grad_norm": 0.2514190077781677, + "learning_rate": 0.0006, + "loss": 3.4299612045288086, + "step": 6586 + }, + { + "epoch": 91.48929663608563, + "grad_norm": 0.23662923276424408, + "learning_rate": 0.0006, + "loss": 3.419963836669922, + "step": 6587 + }, + { + "epoch": 91.50327653997378, + "grad_norm": 0.23032444715499878, + "learning_rate": 0.0006, + "loss": 3.446972370147705, + "step": 6588 + }, + { + "epoch": 91.51725644386195, + "grad_norm": 0.22281943261623383, + "learning_rate": 0.0006, + "loss": 3.4780263900756836, + "step": 6589 + }, + { + "epoch": 91.53123634775011, + "grad_norm": 0.21819400787353516, + "learning_rate": 0.0006, + "loss": 3.4525628089904785, + "step": 6590 + }, + { + "epoch": 91.54521625163827, + "grad_norm": 0.216011643409729, + "learning_rate": 0.0006, + "loss": 3.4757239818573, + "step": 6591 + }, + { + "epoch": 91.55919615552644, + "grad_norm": 0.21120208501815796, + "learning_rate": 0.0006, + "loss": 3.4310784339904785, + "step": 6592 + }, + { + "epoch": 91.57317605941459, + "grad_norm": 0.23314659297466278, + "learning_rate": 0.0006, + "loss": 3.454822540283203, + "step": 6593 + }, + { + "epoch": 91.58715596330275, + "grad_norm": 0.25187376141548157, + "learning_rate": 0.0006, + "loss": 3.436480760574341, + "step": 6594 + }, + { + "epoch": 91.60113586719092, + "grad_norm": 0.26365742087364197, + "learning_rate": 0.0006, + "loss": 3.474677562713623, + "step": 6595 + }, + { + "epoch": 91.61511577107908, + "grad_norm": 0.2345830202102661, + "learning_rate": 0.0006, + "loss": 3.4740800857543945, + "step": 6596 + }, + { + "epoch": 91.62909567496723, + "grad_norm": 0.21683621406555176, + "learning_rate": 0.0006, + "loss": 3.472069263458252, + "step": 6597 + }, + { + "epoch": 91.6430755788554, + "grad_norm": 0.20824037492275238, + "learning_rate": 0.0006, + "loss": 3.477346897125244, + "step": 6598 + }, + { + "epoch": 91.65705548274356, + "grad_norm": 0.24006229639053345, + "learning_rate": 0.0006, + "loss": 3.4730865955352783, + "step": 6599 + }, + { + "epoch": 91.67103538663171, + "grad_norm": 0.23281389474868774, + "learning_rate": 0.0006, + "loss": 3.460124969482422, + "step": 6600 + }, + { + "epoch": 91.68501529051987, + "grad_norm": 0.2253323197364807, + "learning_rate": 0.0006, + "loss": 3.461782455444336, + "step": 6601 + }, + { + "epoch": 91.69899519440804, + "grad_norm": 0.23947115242481232, + "learning_rate": 0.0006, + "loss": 3.4339637756347656, + "step": 6602 + }, + { + "epoch": 91.7129750982962, + "grad_norm": 0.23497240245342255, + "learning_rate": 0.0006, + "loss": 3.4228572845458984, + "step": 6603 + }, + { + "epoch": 91.72695500218435, + "grad_norm": 0.25088146328926086, + "learning_rate": 0.0006, + "loss": 3.447093963623047, + "step": 6604 + }, + { + "epoch": 91.74093490607252, + "grad_norm": 0.26712968945503235, + "learning_rate": 0.0006, + "loss": 3.4653635025024414, + "step": 6605 + }, + { + "epoch": 91.75491480996068, + "grad_norm": 0.26644182205200195, + "learning_rate": 0.0006, + "loss": 3.443108558654785, + "step": 6606 + }, + { + "epoch": 91.76889471384884, + "grad_norm": 0.2389398217201233, + "learning_rate": 0.0006, + "loss": 3.44514799118042, + "step": 6607 + }, + { + "epoch": 91.78287461773701, + "grad_norm": 0.23223981261253357, + "learning_rate": 0.0006, + "loss": 3.4985134601593018, + "step": 6608 + }, + { + "epoch": 91.79685452162516, + "grad_norm": 0.25977692008018494, + "learning_rate": 0.0006, + "loss": 3.4278247356414795, + "step": 6609 + }, + { + "epoch": 91.81083442551332, + "grad_norm": 0.29857826232910156, + "learning_rate": 0.0006, + "loss": 3.4715912342071533, + "step": 6610 + }, + { + "epoch": 91.82481432940149, + "grad_norm": 0.2577708959579468, + "learning_rate": 0.0006, + "loss": 3.4724321365356445, + "step": 6611 + }, + { + "epoch": 91.83879423328965, + "grad_norm": 0.23246656358242035, + "learning_rate": 0.0006, + "loss": 3.4876670837402344, + "step": 6612 + }, + { + "epoch": 91.8527741371778, + "grad_norm": 0.2779546082019806, + "learning_rate": 0.0006, + "loss": 3.435089111328125, + "step": 6613 + }, + { + "epoch": 91.86675404106597, + "grad_norm": 0.2979820966720581, + "learning_rate": 0.0006, + "loss": 3.4532129764556885, + "step": 6614 + }, + { + "epoch": 91.88073394495413, + "grad_norm": 0.2763381600379944, + "learning_rate": 0.0006, + "loss": 3.4709205627441406, + "step": 6615 + }, + { + "epoch": 91.89471384884229, + "grad_norm": 0.2561747133731842, + "learning_rate": 0.0006, + "loss": 3.4988009929656982, + "step": 6616 + }, + { + "epoch": 91.90869375273044, + "grad_norm": 0.2313738912343979, + "learning_rate": 0.0006, + "loss": 3.4592323303222656, + "step": 6617 + }, + { + "epoch": 91.92267365661861, + "grad_norm": 0.2586052119731903, + "learning_rate": 0.0006, + "loss": 3.4668517112731934, + "step": 6618 + }, + { + "epoch": 91.93665356050677, + "grad_norm": 0.29294443130493164, + "learning_rate": 0.0006, + "loss": 3.4860308170318604, + "step": 6619 + }, + { + "epoch": 91.95063346439493, + "grad_norm": 0.30498480796813965, + "learning_rate": 0.0006, + "loss": 3.4664015769958496, + "step": 6620 + }, + { + "epoch": 91.9646133682831, + "grad_norm": 0.2574566900730133, + "learning_rate": 0.0006, + "loss": 3.4967851638793945, + "step": 6621 + }, + { + "epoch": 91.97859327217125, + "grad_norm": 0.21988359093666077, + "learning_rate": 0.0006, + "loss": 3.4907846450805664, + "step": 6622 + }, + { + "epoch": 91.99257317605941, + "grad_norm": 0.25068747997283936, + "learning_rate": 0.0006, + "loss": 3.4579708576202393, + "step": 6623 + }, + { + "epoch": 92.0, + "grad_norm": 0.2999906837940216, + "learning_rate": 0.0006, + "loss": 3.435760498046875, + "step": 6624 + }, + { + "epoch": 92.0, + "eval_loss": 3.9856619834899902, + "eval_runtime": 44.3847, + "eval_samples_per_second": 55.019, + "eval_steps_per_second": 3.447, + "step": 6624 + }, + { + "epoch": 92.01397990388816, + "grad_norm": 0.3153732419013977, + "learning_rate": 0.0006, + "loss": 3.4157867431640625, + "step": 6625 + }, + { + "epoch": 92.02795980777633, + "grad_norm": 0.3576356768608093, + "learning_rate": 0.0006, + "loss": 3.4299721717834473, + "step": 6626 + }, + { + "epoch": 92.04193971166448, + "grad_norm": 0.3663281798362732, + "learning_rate": 0.0006, + "loss": 3.4183125495910645, + "step": 6627 + }, + { + "epoch": 92.05591961555264, + "grad_norm": 0.2841946482658386, + "learning_rate": 0.0006, + "loss": 3.3857765197753906, + "step": 6628 + }, + { + "epoch": 92.06989951944081, + "grad_norm": 0.24772407114505768, + "learning_rate": 0.0006, + "loss": 3.446263313293457, + "step": 6629 + }, + { + "epoch": 92.08387942332897, + "grad_norm": 0.26021626591682434, + "learning_rate": 0.0006, + "loss": 3.4116170406341553, + "step": 6630 + }, + { + "epoch": 92.09785932721712, + "grad_norm": 0.2392570674419403, + "learning_rate": 0.0006, + "loss": 3.4496164321899414, + "step": 6631 + }, + { + "epoch": 92.1118392311053, + "grad_norm": 0.2228620946407318, + "learning_rate": 0.0006, + "loss": 3.410637378692627, + "step": 6632 + }, + { + "epoch": 92.12581913499345, + "grad_norm": 0.22376728057861328, + "learning_rate": 0.0006, + "loss": 3.432478904724121, + "step": 6633 + }, + { + "epoch": 92.1397990388816, + "grad_norm": 0.21790462732315063, + "learning_rate": 0.0006, + "loss": 3.443100929260254, + "step": 6634 + }, + { + "epoch": 92.15377894276976, + "grad_norm": 0.2422790229320526, + "learning_rate": 0.0006, + "loss": 3.415926456451416, + "step": 6635 + }, + { + "epoch": 92.16775884665793, + "grad_norm": 0.21808286011219025, + "learning_rate": 0.0006, + "loss": 3.416090965270996, + "step": 6636 + }, + { + "epoch": 92.18173875054609, + "grad_norm": 0.23403625190258026, + "learning_rate": 0.0006, + "loss": 3.4278922080993652, + "step": 6637 + }, + { + "epoch": 92.19571865443424, + "grad_norm": 0.2297821044921875, + "learning_rate": 0.0006, + "loss": 3.4167540073394775, + "step": 6638 + }, + { + "epoch": 92.20969855832242, + "grad_norm": 0.22554026544094086, + "learning_rate": 0.0006, + "loss": 3.4406192302703857, + "step": 6639 + }, + { + "epoch": 92.22367846221057, + "grad_norm": 0.22153037786483765, + "learning_rate": 0.0006, + "loss": 3.442227602005005, + "step": 6640 + }, + { + "epoch": 92.23765836609873, + "grad_norm": 0.24794647097587585, + "learning_rate": 0.0006, + "loss": 3.4147939682006836, + "step": 6641 + }, + { + "epoch": 92.2516382699869, + "grad_norm": 0.24947752058506012, + "learning_rate": 0.0006, + "loss": 3.445126533508301, + "step": 6642 + }, + { + "epoch": 92.26561817387505, + "grad_norm": 0.21080224215984344, + "learning_rate": 0.0006, + "loss": 3.421919345855713, + "step": 6643 + }, + { + "epoch": 92.27959807776321, + "grad_norm": 0.19785569608211517, + "learning_rate": 0.0006, + "loss": 3.4167985916137695, + "step": 6644 + }, + { + "epoch": 92.29357798165138, + "grad_norm": 0.22060135006904602, + "learning_rate": 0.0006, + "loss": 3.4526445865631104, + "step": 6645 + }, + { + "epoch": 92.30755788553954, + "grad_norm": 0.239033043384552, + "learning_rate": 0.0006, + "loss": 3.4446206092834473, + "step": 6646 + }, + { + "epoch": 92.3215377894277, + "grad_norm": 0.23578831553459167, + "learning_rate": 0.0006, + "loss": 3.4368350505828857, + "step": 6647 + }, + { + "epoch": 92.33551769331586, + "grad_norm": 0.2333911955356598, + "learning_rate": 0.0006, + "loss": 3.406132936477661, + "step": 6648 + }, + { + "epoch": 92.34949759720402, + "grad_norm": 0.22739359736442566, + "learning_rate": 0.0006, + "loss": 3.448565721511841, + "step": 6649 + }, + { + "epoch": 92.36347750109218, + "grad_norm": 0.2423466145992279, + "learning_rate": 0.0006, + "loss": 3.4608492851257324, + "step": 6650 + }, + { + "epoch": 92.37745740498035, + "grad_norm": 0.22698628902435303, + "learning_rate": 0.0006, + "loss": 3.4520320892333984, + "step": 6651 + }, + { + "epoch": 92.3914373088685, + "grad_norm": 0.20917297899723053, + "learning_rate": 0.0006, + "loss": 3.4503417015075684, + "step": 6652 + }, + { + "epoch": 92.40541721275666, + "grad_norm": 0.23257283866405487, + "learning_rate": 0.0006, + "loss": 3.4591174125671387, + "step": 6653 + }, + { + "epoch": 92.41939711664482, + "grad_norm": 0.22684673964977264, + "learning_rate": 0.0006, + "loss": 3.4343578815460205, + "step": 6654 + }, + { + "epoch": 92.43337702053299, + "grad_norm": 0.20745167136192322, + "learning_rate": 0.0006, + "loss": 3.4220428466796875, + "step": 6655 + }, + { + "epoch": 92.44735692442114, + "grad_norm": 0.22209793329238892, + "learning_rate": 0.0006, + "loss": 3.4252638816833496, + "step": 6656 + }, + { + "epoch": 92.4613368283093, + "grad_norm": 0.22442497313022614, + "learning_rate": 0.0006, + "loss": 3.412283420562744, + "step": 6657 + }, + { + "epoch": 92.47531673219747, + "grad_norm": 0.21392811834812164, + "learning_rate": 0.0006, + "loss": 3.44350528717041, + "step": 6658 + }, + { + "epoch": 92.48929663608563, + "grad_norm": 0.21788619458675385, + "learning_rate": 0.0006, + "loss": 3.436985969543457, + "step": 6659 + }, + { + "epoch": 92.50327653997378, + "grad_norm": 0.2314283400774002, + "learning_rate": 0.0006, + "loss": 3.4272823333740234, + "step": 6660 + }, + { + "epoch": 92.51725644386195, + "grad_norm": 0.2175053507089615, + "learning_rate": 0.0006, + "loss": 3.4342989921569824, + "step": 6661 + }, + { + "epoch": 92.53123634775011, + "grad_norm": 0.21074539422988892, + "learning_rate": 0.0006, + "loss": 3.423938274383545, + "step": 6662 + }, + { + "epoch": 92.54521625163827, + "grad_norm": 0.21664051711559296, + "learning_rate": 0.0006, + "loss": 3.433232307434082, + "step": 6663 + }, + { + "epoch": 92.55919615552644, + "grad_norm": 0.2067994475364685, + "learning_rate": 0.0006, + "loss": 3.458864688873291, + "step": 6664 + }, + { + "epoch": 92.57317605941459, + "grad_norm": 0.22351814806461334, + "learning_rate": 0.0006, + "loss": 3.4339041709899902, + "step": 6665 + }, + { + "epoch": 92.58715596330275, + "grad_norm": 0.2068524956703186, + "learning_rate": 0.0006, + "loss": 3.4768764972686768, + "step": 6666 + }, + { + "epoch": 92.60113586719092, + "grad_norm": 0.2153957337141037, + "learning_rate": 0.0006, + "loss": 3.4437358379364014, + "step": 6667 + }, + { + "epoch": 92.61511577107908, + "grad_norm": 0.24937763810157776, + "learning_rate": 0.0006, + "loss": 3.46527099609375, + "step": 6668 + }, + { + "epoch": 92.62909567496723, + "grad_norm": 0.23638282716274261, + "learning_rate": 0.0006, + "loss": 3.467313289642334, + "step": 6669 + }, + { + "epoch": 92.6430755788554, + "grad_norm": 0.2468758374452591, + "learning_rate": 0.0006, + "loss": 3.4407901763916016, + "step": 6670 + }, + { + "epoch": 92.65705548274356, + "grad_norm": 0.2153283655643463, + "learning_rate": 0.0006, + "loss": 3.4918384552001953, + "step": 6671 + }, + { + "epoch": 92.67103538663171, + "grad_norm": 0.2036890685558319, + "learning_rate": 0.0006, + "loss": 3.4410653114318848, + "step": 6672 + }, + { + "epoch": 92.68501529051987, + "grad_norm": 0.23359332978725433, + "learning_rate": 0.0006, + "loss": 3.4719948768615723, + "step": 6673 + }, + { + "epoch": 92.69899519440804, + "grad_norm": 0.26494932174682617, + "learning_rate": 0.0006, + "loss": 3.4619522094726562, + "step": 6674 + }, + { + "epoch": 92.7129750982962, + "grad_norm": 0.2657744884490967, + "learning_rate": 0.0006, + "loss": 3.4584197998046875, + "step": 6675 + }, + { + "epoch": 92.72695500218435, + "grad_norm": 0.24367277324199677, + "learning_rate": 0.0006, + "loss": 3.4507896900177, + "step": 6676 + }, + { + "epoch": 92.74093490607252, + "grad_norm": 0.2566877603530884, + "learning_rate": 0.0006, + "loss": 3.428636074066162, + "step": 6677 + }, + { + "epoch": 92.75491480996068, + "grad_norm": 0.26750895380973816, + "learning_rate": 0.0006, + "loss": 3.464900493621826, + "step": 6678 + }, + { + "epoch": 92.76889471384884, + "grad_norm": 0.2435741126537323, + "learning_rate": 0.0006, + "loss": 3.4626357555389404, + "step": 6679 + }, + { + "epoch": 92.78287461773701, + "grad_norm": 0.20604440569877625, + "learning_rate": 0.0006, + "loss": 3.4473047256469727, + "step": 6680 + }, + { + "epoch": 92.79685452162516, + "grad_norm": 0.22901427745819092, + "learning_rate": 0.0006, + "loss": 3.4646074771881104, + "step": 6681 + }, + { + "epoch": 92.81083442551332, + "grad_norm": 0.2504003643989563, + "learning_rate": 0.0006, + "loss": 3.4665451049804688, + "step": 6682 + }, + { + "epoch": 92.82481432940149, + "grad_norm": 0.22581051290035248, + "learning_rate": 0.0006, + "loss": 3.434614658355713, + "step": 6683 + }, + { + "epoch": 92.83879423328965, + "grad_norm": 0.21091435849666595, + "learning_rate": 0.0006, + "loss": 3.4624040126800537, + "step": 6684 + }, + { + "epoch": 92.8527741371778, + "grad_norm": 0.2129877507686615, + "learning_rate": 0.0006, + "loss": 3.4412031173706055, + "step": 6685 + }, + { + "epoch": 92.86675404106597, + "grad_norm": 0.2676267921924591, + "learning_rate": 0.0006, + "loss": 3.473470687866211, + "step": 6686 + }, + { + "epoch": 92.88073394495413, + "grad_norm": 0.25978222489356995, + "learning_rate": 0.0006, + "loss": 3.4972145557403564, + "step": 6687 + }, + { + "epoch": 92.89471384884229, + "grad_norm": 0.21330228447914124, + "learning_rate": 0.0006, + "loss": 3.4725351333618164, + "step": 6688 + }, + { + "epoch": 92.90869375273044, + "grad_norm": 0.22299514710903168, + "learning_rate": 0.0006, + "loss": 3.438880443572998, + "step": 6689 + }, + { + "epoch": 92.92267365661861, + "grad_norm": 0.20994001626968384, + "learning_rate": 0.0006, + "loss": 3.4581685066223145, + "step": 6690 + }, + { + "epoch": 92.93665356050677, + "grad_norm": 0.19344475865364075, + "learning_rate": 0.0006, + "loss": 3.4679698944091797, + "step": 6691 + }, + { + "epoch": 92.95063346439493, + "grad_norm": 0.22050167620182037, + "learning_rate": 0.0006, + "loss": 3.4760360717773438, + "step": 6692 + }, + { + "epoch": 92.9646133682831, + "grad_norm": 0.21666835248470306, + "learning_rate": 0.0006, + "loss": 3.4553470611572266, + "step": 6693 + }, + { + "epoch": 92.97859327217125, + "grad_norm": 0.20280757546424866, + "learning_rate": 0.0006, + "loss": 3.479062080383301, + "step": 6694 + }, + { + "epoch": 92.99257317605941, + "grad_norm": 0.21059700846672058, + "learning_rate": 0.0006, + "loss": 3.4354779720306396, + "step": 6695 + }, + { + "epoch": 93.0, + "grad_norm": 0.25236400961875916, + "learning_rate": 0.0006, + "loss": 3.4414899349212646, + "step": 6696 + }, + { + "epoch": 93.0, + "eval_loss": 4.004831790924072, + "eval_runtime": 44.8009, + "eval_samples_per_second": 54.508, + "eval_steps_per_second": 3.415, + "step": 6696 + }, + { + "epoch": 93.01397990388816, + "grad_norm": 0.22597931325435638, + "learning_rate": 0.0006, + "loss": 3.4079031944274902, + "step": 6697 + }, + { + "epoch": 93.02795980777633, + "grad_norm": 0.24543768167495728, + "learning_rate": 0.0006, + "loss": 3.447246551513672, + "step": 6698 + }, + { + "epoch": 93.04193971166448, + "grad_norm": 0.24288368225097656, + "learning_rate": 0.0006, + "loss": 3.376004695892334, + "step": 6699 + }, + { + "epoch": 93.05591961555264, + "grad_norm": 0.24427293241024017, + "learning_rate": 0.0006, + "loss": 3.4153971672058105, + "step": 6700 + }, + { + "epoch": 93.06989951944081, + "grad_norm": 0.2539684772491455, + "learning_rate": 0.0006, + "loss": 3.4005022048950195, + "step": 6701 + }, + { + "epoch": 93.08387942332897, + "grad_norm": 0.26322034001350403, + "learning_rate": 0.0006, + "loss": 3.439746618270874, + "step": 6702 + }, + { + "epoch": 93.09785932721712, + "grad_norm": 0.283550500869751, + "learning_rate": 0.0006, + "loss": 3.4317073822021484, + "step": 6703 + }, + { + "epoch": 93.1118392311053, + "grad_norm": 0.25964391231536865, + "learning_rate": 0.0006, + "loss": 3.4370059967041016, + "step": 6704 + }, + { + "epoch": 93.12581913499345, + "grad_norm": 0.21643488109111786, + "learning_rate": 0.0006, + "loss": 3.41683292388916, + "step": 6705 + }, + { + "epoch": 93.1397990388816, + "grad_norm": 0.24469764530658722, + "learning_rate": 0.0006, + "loss": 3.479844331741333, + "step": 6706 + }, + { + "epoch": 93.15377894276976, + "grad_norm": 0.236956387758255, + "learning_rate": 0.0006, + "loss": 3.4353575706481934, + "step": 6707 + }, + { + "epoch": 93.16775884665793, + "grad_norm": 0.23576004803180695, + "learning_rate": 0.0006, + "loss": 3.4422645568847656, + "step": 6708 + }, + { + "epoch": 93.18173875054609, + "grad_norm": 0.2422591894865036, + "learning_rate": 0.0006, + "loss": 3.408160924911499, + "step": 6709 + }, + { + "epoch": 93.19571865443424, + "grad_norm": 0.22342795133590698, + "learning_rate": 0.0006, + "loss": 3.406503915786743, + "step": 6710 + }, + { + "epoch": 93.20969855832242, + "grad_norm": 0.2498881071805954, + "learning_rate": 0.0006, + "loss": 3.4328837394714355, + "step": 6711 + }, + { + "epoch": 93.22367846221057, + "grad_norm": 0.2367776483297348, + "learning_rate": 0.0006, + "loss": 3.4501399993896484, + "step": 6712 + }, + { + "epoch": 93.23765836609873, + "grad_norm": 0.21786601841449738, + "learning_rate": 0.0006, + "loss": 3.43435001373291, + "step": 6713 + }, + { + "epoch": 93.2516382699869, + "grad_norm": 0.21571758389472961, + "learning_rate": 0.0006, + "loss": 3.422776699066162, + "step": 6714 + }, + { + "epoch": 93.26561817387505, + "grad_norm": 0.22387026250362396, + "learning_rate": 0.0006, + "loss": 3.4202141761779785, + "step": 6715 + }, + { + "epoch": 93.27959807776321, + "grad_norm": 0.2293049842119217, + "learning_rate": 0.0006, + "loss": 3.454341411590576, + "step": 6716 + }, + { + "epoch": 93.29357798165138, + "grad_norm": 0.21746981143951416, + "learning_rate": 0.0006, + "loss": 3.426490306854248, + "step": 6717 + }, + { + "epoch": 93.30755788553954, + "grad_norm": 0.22155457735061646, + "learning_rate": 0.0006, + "loss": 3.4431185722351074, + "step": 6718 + }, + { + "epoch": 93.3215377894277, + "grad_norm": 0.2267865538597107, + "learning_rate": 0.0006, + "loss": 3.42803955078125, + "step": 6719 + }, + { + "epoch": 93.33551769331586, + "grad_norm": 0.21202315390110016, + "learning_rate": 0.0006, + "loss": 3.4535093307495117, + "step": 6720 + }, + { + "epoch": 93.34949759720402, + "grad_norm": 0.21513479948043823, + "learning_rate": 0.0006, + "loss": 3.3853487968444824, + "step": 6721 + }, + { + "epoch": 93.36347750109218, + "grad_norm": 0.214696004986763, + "learning_rate": 0.0006, + "loss": 3.4497976303100586, + "step": 6722 + }, + { + "epoch": 93.37745740498035, + "grad_norm": 0.20022529363632202, + "learning_rate": 0.0006, + "loss": 3.4432644844055176, + "step": 6723 + }, + { + "epoch": 93.3914373088685, + "grad_norm": 0.23037387430667877, + "learning_rate": 0.0006, + "loss": 3.420938730239868, + "step": 6724 + }, + { + "epoch": 93.40541721275666, + "grad_norm": 0.24799959361553192, + "learning_rate": 0.0006, + "loss": 3.3939318656921387, + "step": 6725 + }, + { + "epoch": 93.41939711664482, + "grad_norm": 0.24643097817897797, + "learning_rate": 0.0006, + "loss": 3.478787422180176, + "step": 6726 + }, + { + "epoch": 93.43337702053299, + "grad_norm": 0.2157031148672104, + "learning_rate": 0.0006, + "loss": 3.415043592453003, + "step": 6727 + }, + { + "epoch": 93.44735692442114, + "grad_norm": 0.21190743148326874, + "learning_rate": 0.0006, + "loss": 3.44537353515625, + "step": 6728 + }, + { + "epoch": 93.4613368283093, + "grad_norm": 0.23436789214611053, + "learning_rate": 0.0006, + "loss": 3.436828851699829, + "step": 6729 + }, + { + "epoch": 93.47531673219747, + "grad_norm": 0.2135651558637619, + "learning_rate": 0.0006, + "loss": 3.4499053955078125, + "step": 6730 + }, + { + "epoch": 93.48929663608563, + "grad_norm": 0.2088623046875, + "learning_rate": 0.0006, + "loss": 3.4543604850769043, + "step": 6731 + }, + { + "epoch": 93.50327653997378, + "grad_norm": 0.21831542253494263, + "learning_rate": 0.0006, + "loss": 3.4196949005126953, + "step": 6732 + }, + { + "epoch": 93.51725644386195, + "grad_norm": 0.21928726136684418, + "learning_rate": 0.0006, + "loss": 3.4432106018066406, + "step": 6733 + }, + { + "epoch": 93.53123634775011, + "grad_norm": 0.23684796690940857, + "learning_rate": 0.0006, + "loss": 3.4249978065490723, + "step": 6734 + }, + { + "epoch": 93.54521625163827, + "grad_norm": 0.23532384634017944, + "learning_rate": 0.0006, + "loss": 3.4338464736938477, + "step": 6735 + }, + { + "epoch": 93.55919615552644, + "grad_norm": 0.2209099382162094, + "learning_rate": 0.0006, + "loss": 3.4495368003845215, + "step": 6736 + }, + { + "epoch": 93.57317605941459, + "grad_norm": 0.23205412924289703, + "learning_rate": 0.0006, + "loss": 3.4501476287841797, + "step": 6737 + }, + { + "epoch": 93.58715596330275, + "grad_norm": 0.2337087094783783, + "learning_rate": 0.0006, + "loss": 3.455874443054199, + "step": 6738 + }, + { + "epoch": 93.60113586719092, + "grad_norm": 0.21738505363464355, + "learning_rate": 0.0006, + "loss": 3.472088098526001, + "step": 6739 + }, + { + "epoch": 93.61511577107908, + "grad_norm": 0.2238764762878418, + "learning_rate": 0.0006, + "loss": 3.4411730766296387, + "step": 6740 + }, + { + "epoch": 93.62909567496723, + "grad_norm": 0.23846447467803955, + "learning_rate": 0.0006, + "loss": 3.475579261779785, + "step": 6741 + }, + { + "epoch": 93.6430755788554, + "grad_norm": 0.24704889953136444, + "learning_rate": 0.0006, + "loss": 3.457390785217285, + "step": 6742 + }, + { + "epoch": 93.65705548274356, + "grad_norm": 0.242207869887352, + "learning_rate": 0.0006, + "loss": 3.4392058849334717, + "step": 6743 + }, + { + "epoch": 93.67103538663171, + "grad_norm": 0.2123318761587143, + "learning_rate": 0.0006, + "loss": 3.4483866691589355, + "step": 6744 + }, + { + "epoch": 93.68501529051987, + "grad_norm": 0.18896985054016113, + "learning_rate": 0.0006, + "loss": 3.4384002685546875, + "step": 6745 + }, + { + "epoch": 93.69899519440804, + "grad_norm": 0.19502417743206024, + "learning_rate": 0.0006, + "loss": 3.4208426475524902, + "step": 6746 + }, + { + "epoch": 93.7129750982962, + "grad_norm": 0.20973816514015198, + "learning_rate": 0.0006, + "loss": 3.4437758922576904, + "step": 6747 + }, + { + "epoch": 93.72695500218435, + "grad_norm": 0.21238547563552856, + "learning_rate": 0.0006, + "loss": 3.43009090423584, + "step": 6748 + }, + { + "epoch": 93.74093490607252, + "grad_norm": 0.22336895763874054, + "learning_rate": 0.0006, + "loss": 3.4501752853393555, + "step": 6749 + }, + { + "epoch": 93.75491480996068, + "grad_norm": 0.2508683204650879, + "learning_rate": 0.0006, + "loss": 3.4647908210754395, + "step": 6750 + }, + { + "epoch": 93.76889471384884, + "grad_norm": 0.2629362642765045, + "learning_rate": 0.0006, + "loss": 3.4748029708862305, + "step": 6751 + }, + { + "epoch": 93.78287461773701, + "grad_norm": 0.2077840268611908, + "learning_rate": 0.0006, + "loss": 3.4846348762512207, + "step": 6752 + }, + { + "epoch": 93.79685452162516, + "grad_norm": 0.2145945429801941, + "learning_rate": 0.0006, + "loss": 3.458089590072632, + "step": 6753 + }, + { + "epoch": 93.81083442551332, + "grad_norm": 0.24662081897258759, + "learning_rate": 0.0006, + "loss": 3.4455339908599854, + "step": 6754 + }, + { + "epoch": 93.82481432940149, + "grad_norm": 0.24214428663253784, + "learning_rate": 0.0006, + "loss": 3.432769536972046, + "step": 6755 + }, + { + "epoch": 93.83879423328965, + "grad_norm": 0.22612135112285614, + "learning_rate": 0.0006, + "loss": 3.438549757003784, + "step": 6756 + }, + { + "epoch": 93.8527741371778, + "grad_norm": 0.21295292675495148, + "learning_rate": 0.0006, + "loss": 3.4478225708007812, + "step": 6757 + }, + { + "epoch": 93.86675404106597, + "grad_norm": 0.20192411541938782, + "learning_rate": 0.0006, + "loss": 3.4615752696990967, + "step": 6758 + }, + { + "epoch": 93.88073394495413, + "grad_norm": 0.22054287791252136, + "learning_rate": 0.0006, + "loss": 3.4612648487091064, + "step": 6759 + }, + { + "epoch": 93.89471384884229, + "grad_norm": 0.2632969915866852, + "learning_rate": 0.0006, + "loss": 3.4455385208129883, + "step": 6760 + }, + { + "epoch": 93.90869375273044, + "grad_norm": 0.2913251519203186, + "learning_rate": 0.0006, + "loss": 3.4655799865722656, + "step": 6761 + }, + { + "epoch": 93.92267365661861, + "grad_norm": 0.2639273405075073, + "learning_rate": 0.0006, + "loss": 3.4449424743652344, + "step": 6762 + }, + { + "epoch": 93.93665356050677, + "grad_norm": 0.2250145971775055, + "learning_rate": 0.0006, + "loss": 3.4698119163513184, + "step": 6763 + }, + { + "epoch": 93.95063346439493, + "grad_norm": 0.23168422281742096, + "learning_rate": 0.0006, + "loss": 3.4715447425842285, + "step": 6764 + }, + { + "epoch": 93.9646133682831, + "grad_norm": 0.2259438931941986, + "learning_rate": 0.0006, + "loss": 3.467629909515381, + "step": 6765 + }, + { + "epoch": 93.97859327217125, + "grad_norm": 0.22911472618579865, + "learning_rate": 0.0006, + "loss": 3.478315591812134, + "step": 6766 + }, + { + "epoch": 93.99257317605941, + "grad_norm": 0.21591100096702576, + "learning_rate": 0.0006, + "loss": 3.4314064979553223, + "step": 6767 + }, + { + "epoch": 94.0, + "grad_norm": 0.24715526401996613, + "learning_rate": 0.0006, + "loss": 3.481881618499756, + "step": 6768 + }, + { + "epoch": 94.0, + "eval_loss": 3.995022773742676, + "eval_runtime": 44.8155, + "eval_samples_per_second": 54.49, + "eval_steps_per_second": 3.414, + "step": 6768 + }, + { + "epoch": 94.01397990388816, + "grad_norm": 0.24249890446662903, + "learning_rate": 0.0006, + "loss": 3.394853115081787, + "step": 6769 + }, + { + "epoch": 94.02795980777633, + "grad_norm": 0.25997328758239746, + "learning_rate": 0.0006, + "loss": 3.401756763458252, + "step": 6770 + }, + { + "epoch": 94.04193971166448, + "grad_norm": 0.2563496530056, + "learning_rate": 0.0006, + "loss": 3.434088706970215, + "step": 6771 + }, + { + "epoch": 94.05591961555264, + "grad_norm": 0.24782906472682953, + "learning_rate": 0.0006, + "loss": 3.426934242248535, + "step": 6772 + }, + { + "epoch": 94.06989951944081, + "grad_norm": 0.23168064653873444, + "learning_rate": 0.0006, + "loss": 3.392430543899536, + "step": 6773 + }, + { + "epoch": 94.08387942332897, + "grad_norm": 0.28999707102775574, + "learning_rate": 0.0006, + "loss": 3.426656723022461, + "step": 6774 + }, + { + "epoch": 94.09785932721712, + "grad_norm": 0.25640997290611267, + "learning_rate": 0.0006, + "loss": 3.3862709999084473, + "step": 6775 + }, + { + "epoch": 94.1118392311053, + "grad_norm": 0.23411214351654053, + "learning_rate": 0.0006, + "loss": 3.3883986473083496, + "step": 6776 + }, + { + "epoch": 94.12581913499345, + "grad_norm": 0.26325657963752747, + "learning_rate": 0.0006, + "loss": 3.4201836585998535, + "step": 6777 + }, + { + "epoch": 94.1397990388816, + "grad_norm": 0.2762664258480072, + "learning_rate": 0.0006, + "loss": 3.407759189605713, + "step": 6778 + }, + { + "epoch": 94.15377894276976, + "grad_norm": 0.25930145382881165, + "learning_rate": 0.0006, + "loss": 3.4462730884552, + "step": 6779 + }, + { + "epoch": 94.16775884665793, + "grad_norm": 0.2258373498916626, + "learning_rate": 0.0006, + "loss": 3.4086990356445312, + "step": 6780 + }, + { + "epoch": 94.18173875054609, + "grad_norm": 0.2489982694387436, + "learning_rate": 0.0006, + "loss": 3.4240379333496094, + "step": 6781 + }, + { + "epoch": 94.19571865443424, + "grad_norm": 0.25638875365257263, + "learning_rate": 0.0006, + "loss": 3.412440538406372, + "step": 6782 + }, + { + "epoch": 94.20969855832242, + "grad_norm": 0.2584938108921051, + "learning_rate": 0.0006, + "loss": 3.392582416534424, + "step": 6783 + }, + { + "epoch": 94.22367846221057, + "grad_norm": 0.24733741581439972, + "learning_rate": 0.0006, + "loss": 3.434919834136963, + "step": 6784 + }, + { + "epoch": 94.23765836609873, + "grad_norm": 0.25493380427360535, + "learning_rate": 0.0006, + "loss": 3.450941801071167, + "step": 6785 + }, + { + "epoch": 94.2516382699869, + "grad_norm": 0.24007193744182587, + "learning_rate": 0.0006, + "loss": 3.4221696853637695, + "step": 6786 + }, + { + "epoch": 94.26561817387505, + "grad_norm": 0.22761639952659607, + "learning_rate": 0.0006, + "loss": 3.411731243133545, + "step": 6787 + }, + { + "epoch": 94.27959807776321, + "grad_norm": 0.24194897711277008, + "learning_rate": 0.0006, + "loss": 3.4340877532958984, + "step": 6788 + }, + { + "epoch": 94.29357798165138, + "grad_norm": 0.270518034696579, + "learning_rate": 0.0006, + "loss": 3.438483953475952, + "step": 6789 + }, + { + "epoch": 94.30755788553954, + "grad_norm": 0.24090059101581573, + "learning_rate": 0.0006, + "loss": 3.4565012454986572, + "step": 6790 + }, + { + "epoch": 94.3215377894277, + "grad_norm": 0.21994833648204803, + "learning_rate": 0.0006, + "loss": 3.4501748085021973, + "step": 6791 + }, + { + "epoch": 94.33551769331586, + "grad_norm": 0.23668941855430603, + "learning_rate": 0.0006, + "loss": 3.424715757369995, + "step": 6792 + }, + { + "epoch": 94.34949759720402, + "grad_norm": 0.24342761933803558, + "learning_rate": 0.0006, + "loss": 3.4282920360565186, + "step": 6793 + }, + { + "epoch": 94.36347750109218, + "grad_norm": 0.2294810265302658, + "learning_rate": 0.0006, + "loss": 3.423875331878662, + "step": 6794 + }, + { + "epoch": 94.37745740498035, + "grad_norm": 0.21244589984416962, + "learning_rate": 0.0006, + "loss": 3.43577241897583, + "step": 6795 + }, + { + "epoch": 94.3914373088685, + "grad_norm": 0.22705736756324768, + "learning_rate": 0.0006, + "loss": 3.4294707775115967, + "step": 6796 + }, + { + "epoch": 94.40541721275666, + "grad_norm": 0.26263725757598877, + "learning_rate": 0.0006, + "loss": 3.438307046890259, + "step": 6797 + }, + { + "epoch": 94.41939711664482, + "grad_norm": 0.26762905716896057, + "learning_rate": 0.0006, + "loss": 3.4412546157836914, + "step": 6798 + }, + { + "epoch": 94.43337702053299, + "grad_norm": 0.23215578496456146, + "learning_rate": 0.0006, + "loss": 3.4369826316833496, + "step": 6799 + }, + { + "epoch": 94.44735692442114, + "grad_norm": 0.21246181428432465, + "learning_rate": 0.0006, + "loss": 3.438708782196045, + "step": 6800 + }, + { + "epoch": 94.4613368283093, + "grad_norm": 0.23899772763252258, + "learning_rate": 0.0006, + "loss": 3.4270033836364746, + "step": 6801 + }, + { + "epoch": 94.47531673219747, + "grad_norm": 0.2923329174518585, + "learning_rate": 0.0006, + "loss": 3.4470770359039307, + "step": 6802 + }, + { + "epoch": 94.48929663608563, + "grad_norm": 0.2839435935020447, + "learning_rate": 0.0006, + "loss": 3.4478299617767334, + "step": 6803 + }, + { + "epoch": 94.50327653997378, + "grad_norm": 0.23261243104934692, + "learning_rate": 0.0006, + "loss": 3.4273622035980225, + "step": 6804 + }, + { + "epoch": 94.51725644386195, + "grad_norm": 0.23596061766147614, + "learning_rate": 0.0006, + "loss": 3.468569755554199, + "step": 6805 + }, + { + "epoch": 94.53123634775011, + "grad_norm": 0.2571583688259125, + "learning_rate": 0.0006, + "loss": 3.4668288230895996, + "step": 6806 + }, + { + "epoch": 94.54521625163827, + "grad_norm": 0.22406324744224548, + "learning_rate": 0.0006, + "loss": 3.4517579078674316, + "step": 6807 + }, + { + "epoch": 94.55919615552644, + "grad_norm": 0.22280098497867584, + "learning_rate": 0.0006, + "loss": 3.4356350898742676, + "step": 6808 + }, + { + "epoch": 94.57317605941459, + "grad_norm": 0.2515872120857239, + "learning_rate": 0.0006, + "loss": 3.4322896003723145, + "step": 6809 + }, + { + "epoch": 94.58715596330275, + "grad_norm": 0.2527849078178406, + "learning_rate": 0.0006, + "loss": 3.4953513145446777, + "step": 6810 + }, + { + "epoch": 94.60113586719092, + "grad_norm": 0.23877786099910736, + "learning_rate": 0.0006, + "loss": 3.4492383003234863, + "step": 6811 + }, + { + "epoch": 94.61511577107908, + "grad_norm": 0.20916412770748138, + "learning_rate": 0.0006, + "loss": 3.435488700866699, + "step": 6812 + }, + { + "epoch": 94.62909567496723, + "grad_norm": 0.22704528272151947, + "learning_rate": 0.0006, + "loss": 3.4710569381713867, + "step": 6813 + }, + { + "epoch": 94.6430755788554, + "grad_norm": 0.2196781039237976, + "learning_rate": 0.0006, + "loss": 3.442366600036621, + "step": 6814 + }, + { + "epoch": 94.65705548274356, + "grad_norm": 0.2270589917898178, + "learning_rate": 0.0006, + "loss": 3.423523426055908, + "step": 6815 + }, + { + "epoch": 94.67103538663171, + "grad_norm": 0.21481648087501526, + "learning_rate": 0.0006, + "loss": 3.4470648765563965, + "step": 6816 + }, + { + "epoch": 94.68501529051987, + "grad_norm": 0.21333952248096466, + "learning_rate": 0.0006, + "loss": 3.422736167907715, + "step": 6817 + }, + { + "epoch": 94.69899519440804, + "grad_norm": 0.22013215720653534, + "learning_rate": 0.0006, + "loss": 3.4402315616607666, + "step": 6818 + }, + { + "epoch": 94.7129750982962, + "grad_norm": 0.2169152945280075, + "learning_rate": 0.0006, + "loss": 3.4150960445404053, + "step": 6819 + }, + { + "epoch": 94.72695500218435, + "grad_norm": 0.25441625714302063, + "learning_rate": 0.0006, + "loss": 3.470761775970459, + "step": 6820 + }, + { + "epoch": 94.74093490607252, + "grad_norm": 0.29675254225730896, + "learning_rate": 0.0006, + "loss": 3.4662249088287354, + "step": 6821 + }, + { + "epoch": 94.75491480996068, + "grad_norm": 0.24874208867549896, + "learning_rate": 0.0006, + "loss": 3.4145667552948, + "step": 6822 + }, + { + "epoch": 94.76889471384884, + "grad_norm": 0.21604013442993164, + "learning_rate": 0.0006, + "loss": 3.473489284515381, + "step": 6823 + }, + { + "epoch": 94.78287461773701, + "grad_norm": 0.2528764605522156, + "learning_rate": 0.0006, + "loss": 3.4873616695404053, + "step": 6824 + }, + { + "epoch": 94.79685452162516, + "grad_norm": 0.2399022877216339, + "learning_rate": 0.0006, + "loss": 3.4411816596984863, + "step": 6825 + }, + { + "epoch": 94.81083442551332, + "grad_norm": 0.23281097412109375, + "learning_rate": 0.0006, + "loss": 3.447221040725708, + "step": 6826 + }, + { + "epoch": 94.82481432940149, + "grad_norm": 0.25630468130111694, + "learning_rate": 0.0006, + "loss": 3.4520230293273926, + "step": 6827 + }, + { + "epoch": 94.83879423328965, + "grad_norm": 0.25266802310943604, + "learning_rate": 0.0006, + "loss": 3.4207348823547363, + "step": 6828 + }, + { + "epoch": 94.8527741371778, + "grad_norm": 0.25408345460891724, + "learning_rate": 0.0006, + "loss": 3.454580307006836, + "step": 6829 + }, + { + "epoch": 94.86675404106597, + "grad_norm": 0.26194220781326294, + "learning_rate": 0.0006, + "loss": 3.479529619216919, + "step": 6830 + }, + { + "epoch": 94.88073394495413, + "grad_norm": 0.2507404386997223, + "learning_rate": 0.0006, + "loss": 3.422874927520752, + "step": 6831 + }, + { + "epoch": 94.89471384884229, + "grad_norm": 0.24397826194763184, + "learning_rate": 0.0006, + "loss": 3.468596935272217, + "step": 6832 + }, + { + "epoch": 94.90869375273044, + "grad_norm": 0.2822072505950928, + "learning_rate": 0.0006, + "loss": 3.447711229324341, + "step": 6833 + }, + { + "epoch": 94.92267365661861, + "grad_norm": 0.2509315311908722, + "learning_rate": 0.0006, + "loss": 3.4529895782470703, + "step": 6834 + }, + { + "epoch": 94.93665356050677, + "grad_norm": 0.1999109983444214, + "learning_rate": 0.0006, + "loss": 3.490654945373535, + "step": 6835 + }, + { + "epoch": 94.95063346439493, + "grad_norm": 0.23626835644245148, + "learning_rate": 0.0006, + "loss": 3.4752988815307617, + "step": 6836 + }, + { + "epoch": 94.9646133682831, + "grad_norm": 0.24870041012763977, + "learning_rate": 0.0006, + "loss": 3.46254301071167, + "step": 6837 + }, + { + "epoch": 94.97859327217125, + "grad_norm": 0.2528380751609802, + "learning_rate": 0.0006, + "loss": 3.4637045860290527, + "step": 6838 + }, + { + "epoch": 94.99257317605941, + "grad_norm": 0.24237893521785736, + "learning_rate": 0.0006, + "loss": 3.4859509468078613, + "step": 6839 + }, + { + "epoch": 95.0, + "grad_norm": 0.2649165689945221, + "learning_rate": 0.0006, + "loss": 3.4776415824890137, + "step": 6840 + }, + { + "epoch": 95.0, + "eval_loss": 4.002719402313232, + "eval_runtime": 44.7561, + "eval_samples_per_second": 54.562, + "eval_steps_per_second": 3.419, + "step": 6840 + }, + { + "epoch": 95.01397990388816, + "grad_norm": 0.2542131245136261, + "learning_rate": 0.0006, + "loss": 3.4390883445739746, + "step": 6841 + }, + { + "epoch": 95.02795980777633, + "grad_norm": 0.26623067259788513, + "learning_rate": 0.0006, + "loss": 3.390061378479004, + "step": 6842 + }, + { + "epoch": 95.04193971166448, + "grad_norm": 0.27030110359191895, + "learning_rate": 0.0006, + "loss": 3.3904013633728027, + "step": 6843 + }, + { + "epoch": 95.05591961555264, + "grad_norm": 0.25258931517601013, + "learning_rate": 0.0006, + "loss": 3.439305543899536, + "step": 6844 + }, + { + "epoch": 95.06989951944081, + "grad_norm": 0.2373015582561493, + "learning_rate": 0.0006, + "loss": 3.4286201000213623, + "step": 6845 + }, + { + "epoch": 95.08387942332897, + "grad_norm": 0.21533747017383575, + "learning_rate": 0.0006, + "loss": 3.4094643592834473, + "step": 6846 + }, + { + "epoch": 95.09785932721712, + "grad_norm": 0.22140726447105408, + "learning_rate": 0.0006, + "loss": 3.421844482421875, + "step": 6847 + }, + { + "epoch": 95.1118392311053, + "grad_norm": 0.26493898034095764, + "learning_rate": 0.0006, + "loss": 3.4377145767211914, + "step": 6848 + }, + { + "epoch": 95.12581913499345, + "grad_norm": 0.26412254571914673, + "learning_rate": 0.0006, + "loss": 3.419650077819824, + "step": 6849 + }, + { + "epoch": 95.1397990388816, + "grad_norm": 0.23236773908138275, + "learning_rate": 0.0006, + "loss": 3.4251294136047363, + "step": 6850 + }, + { + "epoch": 95.15377894276976, + "grad_norm": 0.24149323999881744, + "learning_rate": 0.0006, + "loss": 3.4133963584899902, + "step": 6851 + }, + { + "epoch": 95.16775884665793, + "grad_norm": 0.23924332857131958, + "learning_rate": 0.0006, + "loss": 3.4115023612976074, + "step": 6852 + }, + { + "epoch": 95.18173875054609, + "grad_norm": 0.2239304631948471, + "learning_rate": 0.0006, + "loss": 3.429975986480713, + "step": 6853 + }, + { + "epoch": 95.19571865443424, + "grad_norm": 0.234395369887352, + "learning_rate": 0.0006, + "loss": 3.4652369022369385, + "step": 6854 + }, + { + "epoch": 95.20969855832242, + "grad_norm": 0.2599051892757416, + "learning_rate": 0.0006, + "loss": 3.429433822631836, + "step": 6855 + }, + { + "epoch": 95.22367846221057, + "grad_norm": 0.2665601968765259, + "learning_rate": 0.0006, + "loss": 3.3869242668151855, + "step": 6856 + }, + { + "epoch": 95.23765836609873, + "grad_norm": 0.2728651463985443, + "learning_rate": 0.0006, + "loss": 3.4018068313598633, + "step": 6857 + }, + { + "epoch": 95.2516382699869, + "grad_norm": 0.2750146687030792, + "learning_rate": 0.0006, + "loss": 3.434549331665039, + "step": 6858 + }, + { + "epoch": 95.26561817387505, + "grad_norm": 0.24482055008411407, + "learning_rate": 0.0006, + "loss": 3.4371228218078613, + "step": 6859 + }, + { + "epoch": 95.27959807776321, + "grad_norm": 0.25842830538749695, + "learning_rate": 0.0006, + "loss": 3.3936924934387207, + "step": 6860 + }, + { + "epoch": 95.29357798165138, + "grad_norm": 0.2753172516822815, + "learning_rate": 0.0006, + "loss": 3.4394311904907227, + "step": 6861 + }, + { + "epoch": 95.30755788553954, + "grad_norm": 0.2804177403450012, + "learning_rate": 0.0006, + "loss": 3.4294753074645996, + "step": 6862 + }, + { + "epoch": 95.3215377894277, + "grad_norm": 0.2727959454059601, + "learning_rate": 0.0006, + "loss": 3.394139289855957, + "step": 6863 + }, + { + "epoch": 95.33551769331586, + "grad_norm": 0.26897692680358887, + "learning_rate": 0.0006, + "loss": 3.455275058746338, + "step": 6864 + }, + { + "epoch": 95.34949759720402, + "grad_norm": 0.2544659376144409, + "learning_rate": 0.0006, + "loss": 3.427739143371582, + "step": 6865 + }, + { + "epoch": 95.36347750109218, + "grad_norm": 0.22665376961231232, + "learning_rate": 0.0006, + "loss": 3.419269561767578, + "step": 6866 + }, + { + "epoch": 95.37745740498035, + "grad_norm": 0.22795099020004272, + "learning_rate": 0.0006, + "loss": 3.431612968444824, + "step": 6867 + }, + { + "epoch": 95.3914373088685, + "grad_norm": 0.22713066637516022, + "learning_rate": 0.0006, + "loss": 3.413924217224121, + "step": 6868 + }, + { + "epoch": 95.40541721275666, + "grad_norm": 0.2317618876695633, + "learning_rate": 0.0006, + "loss": 3.426044225692749, + "step": 6869 + }, + { + "epoch": 95.41939711664482, + "grad_norm": 0.265601247549057, + "learning_rate": 0.0006, + "loss": 3.4490909576416016, + "step": 6870 + }, + { + "epoch": 95.43337702053299, + "grad_norm": 0.255937397480011, + "learning_rate": 0.0006, + "loss": 3.415287494659424, + "step": 6871 + }, + { + "epoch": 95.44735692442114, + "grad_norm": 0.21873140335083008, + "learning_rate": 0.0006, + "loss": 3.44368314743042, + "step": 6872 + }, + { + "epoch": 95.4613368283093, + "grad_norm": 0.2737891376018524, + "learning_rate": 0.0006, + "loss": 3.462151527404785, + "step": 6873 + }, + { + "epoch": 95.47531673219747, + "grad_norm": 0.2737436592578888, + "learning_rate": 0.0006, + "loss": 3.423898220062256, + "step": 6874 + }, + { + "epoch": 95.48929663608563, + "grad_norm": 0.26949119567871094, + "learning_rate": 0.0006, + "loss": 3.4597156047821045, + "step": 6875 + }, + { + "epoch": 95.50327653997378, + "grad_norm": 0.26008275151252747, + "learning_rate": 0.0006, + "loss": 3.408592700958252, + "step": 6876 + }, + { + "epoch": 95.51725644386195, + "grad_norm": 0.23765115439891815, + "learning_rate": 0.0006, + "loss": 3.4431536197662354, + "step": 6877 + }, + { + "epoch": 95.53123634775011, + "grad_norm": 0.3081985116004944, + "learning_rate": 0.0006, + "loss": 3.454355001449585, + "step": 6878 + }, + { + "epoch": 95.54521625163827, + "grad_norm": 0.29880478978157043, + "learning_rate": 0.0006, + "loss": 3.4612278938293457, + "step": 6879 + }, + { + "epoch": 95.55919615552644, + "grad_norm": 0.23533454537391663, + "learning_rate": 0.0006, + "loss": 3.4468045234680176, + "step": 6880 + }, + { + "epoch": 95.57317605941459, + "grad_norm": 0.2129814475774765, + "learning_rate": 0.0006, + "loss": 3.4023277759552, + "step": 6881 + }, + { + "epoch": 95.58715596330275, + "grad_norm": 0.23701100051403046, + "learning_rate": 0.0006, + "loss": 3.4742445945739746, + "step": 6882 + }, + { + "epoch": 95.60113586719092, + "grad_norm": 0.22453446686267853, + "learning_rate": 0.0006, + "loss": 3.450507164001465, + "step": 6883 + }, + { + "epoch": 95.61511577107908, + "grad_norm": 0.21984705328941345, + "learning_rate": 0.0006, + "loss": 3.4397292137145996, + "step": 6884 + }, + { + "epoch": 95.62909567496723, + "grad_norm": 0.20791582763195038, + "learning_rate": 0.0006, + "loss": 3.4593405723571777, + "step": 6885 + }, + { + "epoch": 95.6430755788554, + "grad_norm": 0.19774940609931946, + "learning_rate": 0.0006, + "loss": 3.4427008628845215, + "step": 6886 + }, + { + "epoch": 95.65705548274356, + "grad_norm": 0.1963866800069809, + "learning_rate": 0.0006, + "loss": 3.4181859493255615, + "step": 6887 + }, + { + "epoch": 95.67103538663171, + "grad_norm": 0.20824368298053741, + "learning_rate": 0.0006, + "loss": 3.4640750885009766, + "step": 6888 + }, + { + "epoch": 95.68501529051987, + "grad_norm": 0.19971990585327148, + "learning_rate": 0.0006, + "loss": 3.443490505218506, + "step": 6889 + }, + { + "epoch": 95.69899519440804, + "grad_norm": 0.2122509628534317, + "learning_rate": 0.0006, + "loss": 3.4568378925323486, + "step": 6890 + }, + { + "epoch": 95.7129750982962, + "grad_norm": 0.20256192982196808, + "learning_rate": 0.0006, + "loss": 3.4444825649261475, + "step": 6891 + }, + { + "epoch": 95.72695500218435, + "grad_norm": 0.20638440549373627, + "learning_rate": 0.0006, + "loss": 3.4456825256347656, + "step": 6892 + }, + { + "epoch": 95.74093490607252, + "grad_norm": 0.20284873247146606, + "learning_rate": 0.0006, + "loss": 3.469326972961426, + "step": 6893 + }, + { + "epoch": 95.75491480996068, + "grad_norm": 0.20362260937690735, + "learning_rate": 0.0006, + "loss": 3.436215400695801, + "step": 6894 + }, + { + "epoch": 95.76889471384884, + "grad_norm": 0.20827017724514008, + "learning_rate": 0.0006, + "loss": 3.4468860626220703, + "step": 6895 + }, + { + "epoch": 95.78287461773701, + "grad_norm": 0.21188569068908691, + "learning_rate": 0.0006, + "loss": 3.44252347946167, + "step": 6896 + }, + { + "epoch": 95.79685452162516, + "grad_norm": 0.21115528047084808, + "learning_rate": 0.0006, + "loss": 3.4317703247070312, + "step": 6897 + }, + { + "epoch": 95.81083442551332, + "grad_norm": 0.21110230684280396, + "learning_rate": 0.0006, + "loss": 3.4307355880737305, + "step": 6898 + }, + { + "epoch": 95.82481432940149, + "grad_norm": 0.22839422523975372, + "learning_rate": 0.0006, + "loss": 3.459024429321289, + "step": 6899 + }, + { + "epoch": 95.83879423328965, + "grad_norm": 0.2203502058982849, + "learning_rate": 0.0006, + "loss": 3.4800968170166016, + "step": 6900 + }, + { + "epoch": 95.8527741371778, + "grad_norm": 0.22360272705554962, + "learning_rate": 0.0006, + "loss": 3.470094680786133, + "step": 6901 + }, + { + "epoch": 95.86675404106597, + "grad_norm": 0.24300487339496613, + "learning_rate": 0.0006, + "loss": 3.486844539642334, + "step": 6902 + }, + { + "epoch": 95.88073394495413, + "grad_norm": 0.23933784663677216, + "learning_rate": 0.0006, + "loss": 3.4351067543029785, + "step": 6903 + }, + { + "epoch": 95.89471384884229, + "grad_norm": 0.2271152138710022, + "learning_rate": 0.0006, + "loss": 3.453866958618164, + "step": 6904 + }, + { + "epoch": 95.90869375273044, + "grad_norm": 0.22271683812141418, + "learning_rate": 0.0006, + "loss": 3.472708225250244, + "step": 6905 + }, + { + "epoch": 95.92267365661861, + "grad_norm": 0.24736922979354858, + "learning_rate": 0.0006, + "loss": 3.414543628692627, + "step": 6906 + }, + { + "epoch": 95.93665356050677, + "grad_norm": 0.2710126042366028, + "learning_rate": 0.0006, + "loss": 3.4346370697021484, + "step": 6907 + }, + { + "epoch": 95.95063346439493, + "grad_norm": 0.27347332239151, + "learning_rate": 0.0006, + "loss": 3.4474329948425293, + "step": 6908 + }, + { + "epoch": 95.9646133682831, + "grad_norm": 0.22932253777980804, + "learning_rate": 0.0006, + "loss": 3.446959972381592, + "step": 6909 + }, + { + "epoch": 95.97859327217125, + "grad_norm": 0.2140354961156845, + "learning_rate": 0.0006, + "loss": 3.466360569000244, + "step": 6910 + }, + { + "epoch": 95.99257317605941, + "grad_norm": 0.2479848861694336, + "learning_rate": 0.0006, + "loss": 3.4654128551483154, + "step": 6911 + }, + { + "epoch": 96.0, + "grad_norm": 0.2978051006793976, + "learning_rate": 0.0006, + "loss": 3.4385714530944824, + "step": 6912 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 2.945542002063704e+18, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6912/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-72/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-72/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-72/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-72/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..0e5470ab9ab8aacefd3976baf48ce017dcc56abb --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0f199491738266fe178848ace9078c4c72325bfa0f1229c6d300f3fef0fc1f5 +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-72/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..400540997dd800a617f09c3e6d51d3aa00b9ea7e --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c8d8ed602f54d456219905a63c3a04017fbeaa6424b18c3e41f8457c3e3cdeb +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-72/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..c9997ba5dfb3dad85ce07d3d01f5dd0c21b73e04 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c177cdec7b32ca9c62c848a01589c743e5214cb60d768cdf7657ed3772aa0e8 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-72/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..54a1eb69db406a52562ce734a2e03b904e6e9ef8 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f49974f0f5e39592c25e854d2c190d99d3bca940e1e70877631ebc7daedb120 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-72/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..43cf114590f1088fd438450226c42885d843da41 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:878ec53f5c2a524fc37af578b94a9025923faefea55f621be8e5643a79915d0f +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-72/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-72/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-72/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..0df18882d360ca1d74f9bf40459bc62eda07a16f --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/trainer_state.json @@ -0,0 +1,538 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 1.0, + "eval_steps": 500, + "global_step": 72, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 3.0682729188163584e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-72/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-864/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-864/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-864/chat_template.jinja @@ -0,0 +1,85 @@ +{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- messages[0].content + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson }} + {%- endfor %} + {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- set content = message.content %} + {%- set reasoning_content = '' %} + {%- if message.reasoning_content is defined and message.reasoning_content is not none %} + {%- set reasoning_content = message.reasoning_content %} + {%- else %} + {%- if '' in message.content %} + {%- set content = message.content.split('')[-1].lstrip('\n') %} + {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {%- if loop.last or (not loop.last and reasoning_content) %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if (loop.first and content) or (not loop.first) %} + {{- '\n' }} + {%- endif %} + {%- if tool_call.function %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n{"name": "' }} + {{- tool_call.name }} + {{- '", "arguments": ' }} + {%- if tool_call.arguments is string %} + {{- tool_call.arguments }} + {%- else %} + {{- tool_call.arguments | tojson }} + {%- endif %} + {{- '}\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>user' }} + {%- endif %} + {{- '\n\n' }} + {{- message.content }} + {{- '\n' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n' }} + {%- if enable_thinking is defined and enable_thinking is false %} + {{- '\n\n\n\n' }} + {%- endif %} +{%- endif %} \ No newline at end of file diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-864/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-864/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-864/config.json @@ -0,0 +1,32 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "float32", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1536, + "max_position_embeddings": 2048, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 4, + "num_hidden_layers": 20, + "num_key_value_heads": 4, + "pad_token_id": 151645, + "pretraining_tp": 1, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 10000.0, + "rope_type": "default" + }, + "tie_word_embeddings": true, + "transformers_version": "5.6.2", + "use_cache": false, + "vocab_size": 151672 +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-864/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-864/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-864/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 151645 + ], + "output_attentions": false, + "output_hidden_states": false, + "pad_token_id": 151645, + "transformers_version": "5.6.2", + "use_cache": true +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-864/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-864/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a824de786eee7a1400b834e2be76a83c2ad03d5c --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-864/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14fde23670a1c1e9fed327b6f0fbd1f0f0337336bc53c9e621c791d8c30ab2e3 +size 583358280 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-864/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-864/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..867ca2b67da9d959af66187fa939f8d0900e3d4a --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-864/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49c129e12f645a61eddae79eb6be0458964c06889162964bd2efb949fca6e0c1 +size 1166829434 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-864/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-864/rng_state_0.pth new file mode 100644 index 0000000000000000000000000000000000000000..ac633027ca20f52290b4d984828c92450ccbc9fa --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-864/rng_state_0.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef6e4847db69d11208219e8fe01505704b6dc9a8bc841cf832d92299311cb547 +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-864/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-864/rng_state_1.pth new file mode 100644 index 0000000000000000000000000000000000000000..fee52e99f453aa81f4158a02a9810880f288a242 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-864/rng_state_1.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:425543452ad34b5e7dc8f9b22d17138c38b1b176b31c400c199566cea3623e6f +size 14512 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-864/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-864/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..f21fc027a37dccb66b77a4752de227c557d8ff04 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-864/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1a1dda88112968a1342ac518f362b4f5e138437f0b670c818ad8493b91ca49d +size 1064 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-864/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-864/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-864/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560 +size 11424264 diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-864/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-864/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-864/tokenizer_config.json @@ -0,0 +1,20 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|l2r_pred|>", + "<|r2l_pred|>", + "<|mask|>" + ], + "is_local": false, + "local_files_only": false, + "model_max_length": 32768, + "pad_token": "<|im_end|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-864/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-864/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..84e0911da3f64f9d08fe244a4ef8488aafb25233 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-864/trainer_state.json @@ -0,0 +1,6170 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 12.0, + "eval_steps": 500, + "global_step": 864, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013979903888160769, + "grad_norm": 10.591909408569336, + "learning_rate": 0.0, + "loss": 12.011922836303711, + "step": 1 + }, + { + "epoch": 0.027959807776321538, + "grad_norm": 10.692695617675781, + "learning_rate": 5.999999999999999e-06, + "loss": 12.013164520263672, + "step": 2 + }, + { + "epoch": 0.04193971166448231, + "grad_norm": 10.408782005310059, + "learning_rate": 1.1999999999999999e-05, + "loss": 11.854898452758789, + "step": 3 + }, + { + "epoch": 0.055919615552643076, + "grad_norm": 8.285417556762695, + "learning_rate": 1.7999999999999997e-05, + "loss": 11.586884498596191, + "step": 4 + }, + { + "epoch": 0.06989951944080385, + "grad_norm": 6.567348003387451, + "learning_rate": 2.3999999999999997e-05, + "loss": 11.297714233398438, + "step": 5 + }, + { + "epoch": 0.08387942332896461, + "grad_norm": 5.5925469398498535, + "learning_rate": 2.9999999999999997e-05, + "loss": 11.050232887268066, + "step": 6 + }, + { + "epoch": 0.09785932721712538, + "grad_norm": 4.609838962554932, + "learning_rate": 3.5999999999999994e-05, + "loss": 10.825279235839844, + "step": 7 + }, + { + "epoch": 0.11183923110528615, + "grad_norm": 3.896848440170288, + "learning_rate": 4.2e-05, + "loss": 10.644033432006836, + "step": 8 + }, + { + "epoch": 0.1258191349934469, + "grad_norm": 3.4079291820526123, + "learning_rate": 4.7999999999999994e-05, + "loss": 10.51910400390625, + "step": 9 + }, + { + "epoch": 0.1397990388816077, + "grad_norm": 2.9951388835906982, + "learning_rate": 5.399999999999999e-05, + "loss": 10.419382095336914, + "step": 10 + }, + { + "epoch": 0.15377894276976845, + "grad_norm": 2.7522220611572266, + "learning_rate": 5.9999999999999995e-05, + "loss": 10.354562759399414, + "step": 11 + }, + { + "epoch": 0.16775884665792923, + "grad_norm": 2.7551214694976807, + "learning_rate": 6.599999999999999e-05, + "loss": 10.293634414672852, + "step": 12 + }, + { + "epoch": 0.18173875054608998, + "grad_norm": 2.799210786819458, + "learning_rate": 7.199999999999999e-05, + "loss": 10.246780395507812, + "step": 13 + }, + { + "epoch": 0.19571865443425077, + "grad_norm": 2.813185453414917, + "learning_rate": 7.8e-05, + "loss": 10.204095840454102, + "step": 14 + }, + { + "epoch": 0.20969855832241152, + "grad_norm": 2.7741029262542725, + "learning_rate": 8.4e-05, + "loss": 10.161199569702148, + "step": 15 + }, + { + "epoch": 0.2236784622105723, + "grad_norm": 2.7346158027648926, + "learning_rate": 8.999999999999999e-05, + "loss": 10.098832130432129, + "step": 16 + }, + { + "epoch": 0.23765836609873306, + "grad_norm": 2.6468536853790283, + "learning_rate": 9.599999999999999e-05, + "loss": 10.046382904052734, + "step": 17 + }, + { + "epoch": 0.2516382699868938, + "grad_norm": 2.5606770515441895, + "learning_rate": 0.000102, + "loss": 9.985441207885742, + "step": 18 + }, + { + "epoch": 0.2656181738750546, + "grad_norm": 2.4889299869537354, + "learning_rate": 0.00010799999999999998, + "loss": 9.917933464050293, + "step": 19 + }, + { + "epoch": 0.2795980777632154, + "grad_norm": 2.4544293880462646, + "learning_rate": 0.00011399999999999999, + "loss": 9.836748123168945, + "step": 20 + }, + { + "epoch": 0.29357798165137616, + "grad_norm": 2.391813278198242, + "learning_rate": 0.00011999999999999999, + "loss": 9.766464233398438, + "step": 21 + }, + { + "epoch": 0.3075578855395369, + "grad_norm": 2.3527894020080566, + "learning_rate": 0.00012599999999999997, + "loss": 9.68218994140625, + "step": 22 + }, + { + "epoch": 0.3215377894276977, + "grad_norm": 2.3108675479888916, + "learning_rate": 0.00013199999999999998, + "loss": 9.601486206054688, + "step": 23 + }, + { + "epoch": 0.33551769331585846, + "grad_norm": 2.2633824348449707, + "learning_rate": 0.000138, + "loss": 9.51499080657959, + "step": 24 + }, + { + "epoch": 0.34949759720401924, + "grad_norm": 2.2170515060424805, + "learning_rate": 0.00014399999999999998, + "loss": 9.423871994018555, + "step": 25 + }, + { + "epoch": 0.36347750109217997, + "grad_norm": 2.1651451587677, + "learning_rate": 0.00015, + "loss": 9.32917594909668, + "step": 26 + }, + { + "epoch": 0.37745740498034075, + "grad_norm": 2.1052634716033936, + "learning_rate": 0.000156, + "loss": 9.235221862792969, + "step": 27 + }, + { + "epoch": 0.39143730886850153, + "grad_norm": 2.0639142990112305, + "learning_rate": 0.000162, + "loss": 9.127592086791992, + "step": 28 + }, + { + "epoch": 0.4054172127566623, + "grad_norm": 1.9956083297729492, + "learning_rate": 0.000168, + "loss": 9.025339126586914, + "step": 29 + }, + { + "epoch": 0.41939711664482304, + "grad_norm": 1.9224092960357666, + "learning_rate": 0.00017399999999999997, + "loss": 8.918651580810547, + "step": 30 + }, + { + "epoch": 0.4333770205329838, + "grad_norm": 1.8581444025039673, + "learning_rate": 0.00017999999999999998, + "loss": 8.824186325073242, + "step": 31 + }, + { + "epoch": 0.4473569244211446, + "grad_norm": 1.8152154684066772, + "learning_rate": 0.000186, + "loss": 8.718423843383789, + "step": 32 + }, + { + "epoch": 0.4613368283093054, + "grad_norm": 1.7813141345977783, + "learning_rate": 0.00019199999999999998, + "loss": 8.599150657653809, + "step": 33 + }, + { + "epoch": 0.4753167321974661, + "grad_norm": 1.733436107635498, + "learning_rate": 0.000198, + "loss": 8.495014190673828, + "step": 34 + }, + { + "epoch": 0.4892966360856269, + "grad_norm": 1.6337416172027588, + "learning_rate": 0.000204, + "loss": 8.407886505126953, + "step": 35 + }, + { + "epoch": 0.5032765399737876, + "grad_norm": 1.5752718448638916, + "learning_rate": 0.00020999999999999998, + "loss": 8.293485641479492, + "step": 36 + }, + { + "epoch": 0.5172564438619485, + "grad_norm": 1.5537796020507812, + "learning_rate": 0.00021599999999999996, + "loss": 8.17078971862793, + "step": 37 + }, + { + "epoch": 0.5312363477501092, + "grad_norm": 1.5052119493484497, + "learning_rate": 0.00022199999999999998, + "loss": 8.071243286132812, + "step": 38 + }, + { + "epoch": 0.54521625163827, + "grad_norm": 1.4848309755325317, + "learning_rate": 0.00022799999999999999, + "loss": 7.966564178466797, + "step": 39 + }, + { + "epoch": 0.5591961555264308, + "grad_norm": 1.4383294582366943, + "learning_rate": 0.000234, + "loss": 7.879108428955078, + "step": 40 + }, + { + "epoch": 0.5731760594145915, + "grad_norm": 1.3795652389526367, + "learning_rate": 0.00023999999999999998, + "loss": 7.795331001281738, + "step": 41 + }, + { + "epoch": 0.5871559633027523, + "grad_norm": 1.3444561958312988, + "learning_rate": 0.00024599999999999996, + "loss": 7.690537452697754, + "step": 42 + }, + { + "epoch": 0.601135867190913, + "grad_norm": 1.3023115396499634, + "learning_rate": 0.00025199999999999995, + "loss": 7.585762023925781, + "step": 43 + }, + { + "epoch": 0.6151157710790738, + "grad_norm": 1.2207974195480347, + "learning_rate": 0.000258, + "loss": 7.53497838973999, + "step": 44 + }, + { + "epoch": 0.6290956749672346, + "grad_norm": 1.1588374376296997, + "learning_rate": 0.00026399999999999997, + "loss": 7.452790260314941, + "step": 45 + }, + { + "epoch": 0.6430755788553953, + "grad_norm": 1.1067900657653809, + "learning_rate": 0.00027, + "loss": 7.37636661529541, + "step": 46 + }, + { + "epoch": 0.6570554827435562, + "grad_norm": 1.0290533304214478, + "learning_rate": 0.000276, + "loss": 7.286853790283203, + "step": 47 + }, + { + "epoch": 0.6710353866317169, + "grad_norm": 0.9404554963111877, + "learning_rate": 0.00028199999999999997, + "loss": 7.209945201873779, + "step": 48 + }, + { + "epoch": 0.6850152905198776, + "grad_norm": 0.8449259996414185, + "learning_rate": 0.00028799999999999995, + "loss": 7.162676811218262, + "step": 49 + }, + { + "epoch": 0.6989951944080385, + "grad_norm": 0.7071793675422668, + "learning_rate": 0.000294, + "loss": 7.116473197937012, + "step": 50 + }, + { + "epoch": 0.7129750982961992, + "grad_norm": 0.5839859843254089, + "learning_rate": 0.0003, + "loss": 7.091650009155273, + "step": 51 + }, + { + "epoch": 0.7269550021843599, + "grad_norm": 0.4595501720905304, + "learning_rate": 0.00030599999999999996, + "loss": 7.064325332641602, + "step": 52 + }, + { + "epoch": 0.7409349060725208, + "grad_norm": 0.36915236711502075, + "learning_rate": 0.000312, + "loss": 7.019744873046875, + "step": 53 + }, + { + "epoch": 0.7549148099606815, + "grad_norm": 0.4770200848579407, + "learning_rate": 0.000318, + "loss": 7.024835109710693, + "step": 54 + }, + { + "epoch": 0.7688947138488423, + "grad_norm": 0.5361229181289673, + "learning_rate": 0.000324, + "loss": 7.02587890625, + "step": 55 + }, + { + "epoch": 0.7828746177370031, + "grad_norm": 0.5825862884521484, + "learning_rate": 0.00033, + "loss": 7.00753927230835, + "step": 56 + }, + { + "epoch": 0.7968545216251638, + "grad_norm": 0.38014769554138184, + "learning_rate": 0.000336, + "loss": 7.0166778564453125, + "step": 57 + }, + { + "epoch": 0.8108344255133246, + "grad_norm": 0.27107861638069153, + "learning_rate": 0.00034199999999999996, + "loss": 7.016570091247559, + "step": 58 + }, + { + "epoch": 0.8248143294014854, + "grad_norm": 0.34291672706604004, + "learning_rate": 0.00034799999999999995, + "loss": 7.001842975616455, + "step": 59 + }, + { + "epoch": 0.8387942332896461, + "grad_norm": 0.30003291368484497, + "learning_rate": 0.00035399999999999993, + "loss": 7.001930236816406, + "step": 60 + }, + { + "epoch": 0.8527741371778069, + "grad_norm": 0.5193871855735779, + "learning_rate": 0.00035999999999999997, + "loss": 6.962319374084473, + "step": 61 + }, + { + "epoch": 0.8667540410659677, + "grad_norm": 0.27375268936157227, + "learning_rate": 0.00036599999999999995, + "loss": 6.9815497398376465, + "step": 62 + }, + { + "epoch": 0.8807339449541285, + "grad_norm": 0.33649834990501404, + "learning_rate": 0.000372, + "loss": 6.95693302154541, + "step": 63 + }, + { + "epoch": 0.8947138488422892, + "grad_norm": 0.639032781124115, + "learning_rate": 0.00037799999999999997, + "loss": 6.949765682220459, + "step": 64 + }, + { + "epoch": 0.9086937527304499, + "grad_norm": 0.7468839287757874, + "learning_rate": 0.00038399999999999996, + "loss": 6.974970817565918, + "step": 65 + }, + { + "epoch": 0.9226736566186108, + "grad_norm": 2.4953665733337402, + "learning_rate": 0.00039, + "loss": 6.988725662231445, + "step": 66 + }, + { + "epoch": 0.9366535605067715, + "grad_norm": 0.5396495461463928, + "learning_rate": 0.000396, + "loss": 6.9464850425720215, + "step": 67 + }, + { + "epoch": 0.9506334643949322, + "grad_norm": 1.8087925910949707, + "learning_rate": 0.000402, + "loss": 6.950775146484375, + "step": 68 + }, + { + "epoch": 0.9646133682830931, + "grad_norm": 1.6588852405548096, + "learning_rate": 0.000408, + "loss": 6.938251495361328, + "step": 69 + }, + { + "epoch": 0.9785932721712538, + "grad_norm": 0.21594378352165222, + "learning_rate": 0.0004139999999999999, + "loss": 6.895160675048828, + "step": 70 + }, + { + "epoch": 0.9925731760594146, + "grad_norm": 1.4667754173278809, + "learning_rate": 0.00041999999999999996, + "loss": 6.900981426239014, + "step": 71 + }, + { + "epoch": 1.0, + "grad_norm": 0.7885643839836121, + "learning_rate": 0.00042599999999999995, + "loss": 6.899971008300781, + "step": 72 + }, + { + "epoch": 1.0, + "eval_loss": 7.718225955963135, + "eval_runtime": 44.3326, + "eval_samples_per_second": 55.084, + "eval_steps_per_second": 3.451, + "step": 72 + }, + { + "epoch": 1.0139799038881607, + "grad_norm": 0.9231326580047607, + "learning_rate": 0.00043199999999999993, + "loss": 6.894645690917969, + "step": 73 + }, + { + "epoch": 1.0279598077763215, + "grad_norm": 0.6840353608131409, + "learning_rate": 0.00043799999999999997, + "loss": 6.900739669799805, + "step": 74 + }, + { + "epoch": 1.0419397116644824, + "grad_norm": 0.45894327759742737, + "learning_rate": 0.00044399999999999995, + "loss": 6.8677568435668945, + "step": 75 + }, + { + "epoch": 1.0559196155526431, + "grad_norm": 0.7958329916000366, + "learning_rate": 0.00045, + "loss": 6.876115798950195, + "step": 76 + }, + { + "epoch": 1.0698995194408039, + "grad_norm": 0.2676476240158081, + "learning_rate": 0.00045599999999999997, + "loss": 6.851519584655762, + "step": 77 + }, + { + "epoch": 1.0838794233289646, + "grad_norm": 0.6740448474884033, + "learning_rate": 0.00046199999999999995, + "loss": 6.834138870239258, + "step": 78 + }, + { + "epoch": 1.0978593272171253, + "grad_norm": 0.7295040488243103, + "learning_rate": 0.000468, + "loss": 6.872689247131348, + "step": 79 + }, + { + "epoch": 1.1118392311052863, + "grad_norm": 0.2785162925720215, + "learning_rate": 0.000474, + "loss": 6.846569061279297, + "step": 80 + }, + { + "epoch": 1.125819134993447, + "grad_norm": 0.5213140249252319, + "learning_rate": 0.00047999999999999996, + "loss": 6.859136581420898, + "step": 81 + }, + { + "epoch": 1.1397990388816077, + "grad_norm": 0.5769570469856262, + "learning_rate": 0.000486, + "loss": 6.839279651641846, + "step": 82 + }, + { + "epoch": 1.1537789427697684, + "grad_norm": 0.17320021986961365, + "learning_rate": 0.0004919999999999999, + "loss": 6.8178019523620605, + "step": 83 + }, + { + "epoch": 1.1677588466579292, + "grad_norm": 0.513035774230957, + "learning_rate": 0.000498, + "loss": 6.790952682495117, + "step": 84 + }, + { + "epoch": 1.18173875054609, + "grad_norm": 0.42848527431488037, + "learning_rate": 0.0005039999999999999, + "loss": 6.788033485412598, + "step": 85 + }, + { + "epoch": 1.1957186544342508, + "grad_norm": 0.16010858118534088, + "learning_rate": 0.0005099999999999999, + "loss": 6.796238899230957, + "step": 86 + }, + { + "epoch": 1.2096985583224116, + "grad_norm": 0.4174756407737732, + "learning_rate": 0.000516, + "loss": 6.791215419769287, + "step": 87 + }, + { + "epoch": 1.2236784622105723, + "grad_norm": 0.28068313002586365, + "learning_rate": 0.000522, + "loss": 6.809627056121826, + "step": 88 + }, + { + "epoch": 1.237658366098733, + "grad_norm": 0.28651660680770874, + "learning_rate": 0.0005279999999999999, + "loss": 6.774496078491211, + "step": 89 + }, + { + "epoch": 1.2516382699868938, + "grad_norm": 0.3186425566673279, + "learning_rate": 0.000534, + "loss": 6.78394889831543, + "step": 90 + }, + { + "epoch": 1.2656181738750547, + "grad_norm": 0.22945986688137054, + "learning_rate": 0.00054, + "loss": 6.77313232421875, + "step": 91 + }, + { + "epoch": 1.2795980777632154, + "grad_norm": 0.3342653214931488, + "learning_rate": 0.0005459999999999999, + "loss": 6.762660980224609, + "step": 92 + }, + { + "epoch": 1.2935779816513762, + "grad_norm": 0.9930925369262695, + "learning_rate": 0.000552, + "loss": 6.782233238220215, + "step": 93 + }, + { + "epoch": 1.307557885539537, + "grad_norm": 1.1173368692398071, + "learning_rate": 0.000558, + "loss": 6.815613746643066, + "step": 94 + }, + { + "epoch": 1.3215377894276976, + "grad_norm": 0.6970269083976746, + "learning_rate": 0.0005639999999999999, + "loss": 6.777551651000977, + "step": 95 + }, + { + "epoch": 1.3355176933158583, + "grad_norm": 0.6753292679786682, + "learning_rate": 0.00057, + "loss": 6.799198627471924, + "step": 96 + }, + { + "epoch": 1.3494975972040193, + "grad_norm": 0.7291314005851746, + "learning_rate": 0.0005759999999999999, + "loss": 6.769599914550781, + "step": 97 + }, + { + "epoch": 1.36347750109218, + "grad_norm": 0.48033297061920166, + "learning_rate": 0.0005819999999999999, + "loss": 6.774375915527344, + "step": 98 + }, + { + "epoch": 1.3774574049803407, + "grad_norm": 0.5515617728233337, + "learning_rate": 0.000588, + "loss": 6.777171611785889, + "step": 99 + }, + { + "epoch": 1.3914373088685015, + "grad_norm": 0.32403573393821716, + "learning_rate": 0.0005939999999999999, + "loss": 6.736748695373535, + "step": 100 + }, + { + "epoch": 1.4054172127566624, + "grad_norm": 0.41380468010902405, + "learning_rate": 0.0006, + "loss": 6.755064964294434, + "step": 101 + }, + { + "epoch": 1.4193971166448232, + "grad_norm": 0.4800058603286743, + "learning_rate": 0.0006, + "loss": 6.747755527496338, + "step": 102 + }, + { + "epoch": 1.4333770205329839, + "grad_norm": 0.196942538022995, + "learning_rate": 0.0006, + "loss": 6.7205352783203125, + "step": 103 + }, + { + "epoch": 1.4473569244211446, + "grad_norm": 0.33384695649147034, + "learning_rate": 0.0006, + "loss": 6.720529556274414, + "step": 104 + }, + { + "epoch": 1.4613368283093053, + "grad_norm": 0.4022873640060425, + "learning_rate": 0.0006, + "loss": 6.715851783752441, + "step": 105 + }, + { + "epoch": 1.475316732197466, + "grad_norm": 0.2191673070192337, + "learning_rate": 0.0006, + "loss": 6.686887741088867, + "step": 106 + }, + { + "epoch": 1.4892966360856268, + "grad_norm": 0.27630871534347534, + "learning_rate": 0.0006, + "loss": 6.709061145782471, + "step": 107 + }, + { + "epoch": 1.5032765399737875, + "grad_norm": 0.3492956757545471, + "learning_rate": 0.0006, + "loss": 6.696638107299805, + "step": 108 + }, + { + "epoch": 1.5172564438619485, + "grad_norm": 0.3313223719596863, + "learning_rate": 0.0006, + "loss": 6.674862861633301, + "step": 109 + }, + { + "epoch": 1.5312363477501092, + "grad_norm": 0.25727134943008423, + "learning_rate": 0.0006, + "loss": 6.680997848510742, + "step": 110 + }, + { + "epoch": 1.5452162516382701, + "grad_norm": 0.25394201278686523, + "learning_rate": 0.0006, + "loss": 6.689805030822754, + "step": 111 + }, + { + "epoch": 1.5591961555264309, + "grad_norm": 0.30875569581985474, + "learning_rate": 0.0006, + "loss": 6.677407264709473, + "step": 112 + }, + { + "epoch": 1.5731760594145916, + "grad_norm": 0.22320811450481415, + "learning_rate": 0.0006, + "loss": 6.659435272216797, + "step": 113 + }, + { + "epoch": 1.5871559633027523, + "grad_norm": 0.26147234439849854, + "learning_rate": 0.0006, + "loss": 6.671529769897461, + "step": 114 + }, + { + "epoch": 1.601135867190913, + "grad_norm": 0.2878958284854889, + "learning_rate": 0.0006, + "loss": 6.648924827575684, + "step": 115 + }, + { + "epoch": 1.6151157710790738, + "grad_norm": 0.19234156608581543, + "learning_rate": 0.0006, + "loss": 6.674341678619385, + "step": 116 + }, + { + "epoch": 1.6290956749672345, + "grad_norm": 0.26581546664237976, + "learning_rate": 0.0006, + "loss": 6.645483016967773, + "step": 117 + }, + { + "epoch": 1.6430755788553952, + "grad_norm": 0.1660737842321396, + "learning_rate": 0.0006, + "loss": 6.641602516174316, + "step": 118 + }, + { + "epoch": 1.6570554827435562, + "grad_norm": 0.27856680750846863, + "learning_rate": 0.0006, + "loss": 6.63268518447876, + "step": 119 + }, + { + "epoch": 1.671035386631717, + "grad_norm": 0.30503156781196594, + "learning_rate": 0.0006, + "loss": 6.607695579528809, + "step": 120 + }, + { + "epoch": 1.6850152905198776, + "grad_norm": 0.3804837763309479, + "learning_rate": 0.0006, + "loss": 6.623030662536621, + "step": 121 + }, + { + "epoch": 1.6989951944080386, + "grad_norm": 0.4593399465084076, + "learning_rate": 0.0006, + "loss": 6.647975921630859, + "step": 122 + }, + { + "epoch": 1.7129750982961993, + "grad_norm": 0.4179280400276184, + "learning_rate": 0.0006, + "loss": 6.624089241027832, + "step": 123 + }, + { + "epoch": 1.72695500218436, + "grad_norm": 0.15804696083068848, + "learning_rate": 0.0006, + "loss": 6.61716890335083, + "step": 124 + }, + { + "epoch": 1.7409349060725208, + "grad_norm": 0.32277166843414307, + "learning_rate": 0.0006, + "loss": 6.615987777709961, + "step": 125 + }, + { + "epoch": 1.7549148099606815, + "grad_norm": 0.1774280071258545, + "learning_rate": 0.0006, + "loss": 6.6227874755859375, + "step": 126 + }, + { + "epoch": 1.7688947138488422, + "grad_norm": 0.2564181983470917, + "learning_rate": 0.0006, + "loss": 6.641263484954834, + "step": 127 + }, + { + "epoch": 1.782874617737003, + "grad_norm": 0.2158060520887375, + "learning_rate": 0.0006, + "loss": 6.619530200958252, + "step": 128 + }, + { + "epoch": 1.7968545216251637, + "grad_norm": 0.2464667707681656, + "learning_rate": 0.0006, + "loss": 6.609698295593262, + "step": 129 + }, + { + "epoch": 1.8108344255133246, + "grad_norm": 0.2044326215982437, + "learning_rate": 0.0006, + "loss": 6.608428001403809, + "step": 130 + }, + { + "epoch": 1.8248143294014854, + "grad_norm": 0.20848500728607178, + "learning_rate": 0.0006, + "loss": 6.605798721313477, + "step": 131 + }, + { + "epoch": 1.838794233289646, + "grad_norm": 0.227013498544693, + "learning_rate": 0.0006, + "loss": 6.576244354248047, + "step": 132 + }, + { + "epoch": 1.852774137177807, + "grad_norm": 0.21010449528694153, + "learning_rate": 0.0006, + "loss": 6.584798812866211, + "step": 133 + }, + { + "epoch": 1.8667540410659678, + "grad_norm": 0.2522294223308563, + "learning_rate": 0.0006, + "loss": 6.579030513763428, + "step": 134 + }, + { + "epoch": 1.8807339449541285, + "grad_norm": 0.3967496156692505, + "learning_rate": 0.0006, + "loss": 6.569903373718262, + "step": 135 + }, + { + "epoch": 1.8947138488422892, + "grad_norm": 0.424213171005249, + "learning_rate": 0.0006, + "loss": 6.579647541046143, + "step": 136 + }, + { + "epoch": 1.90869375273045, + "grad_norm": 0.31862005591392517, + "learning_rate": 0.0006, + "loss": 6.565474510192871, + "step": 137 + }, + { + "epoch": 1.9226736566186107, + "grad_norm": 0.33344918489456177, + "learning_rate": 0.0006, + "loss": 6.569933891296387, + "step": 138 + }, + { + "epoch": 1.9366535605067714, + "grad_norm": 0.34622880816459656, + "learning_rate": 0.0006, + "loss": 6.561877250671387, + "step": 139 + }, + { + "epoch": 1.9506334643949321, + "grad_norm": 0.22326210141181946, + "learning_rate": 0.0006, + "loss": 6.555678844451904, + "step": 140 + }, + { + "epoch": 1.964613368283093, + "grad_norm": 0.11855565011501312, + "learning_rate": 0.0006, + "loss": 6.54149866104126, + "step": 141 + }, + { + "epoch": 1.9785932721712538, + "grad_norm": 0.23379798233509064, + "learning_rate": 0.0006, + "loss": 6.518186569213867, + "step": 142 + }, + { + "epoch": 1.9925731760594148, + "grad_norm": 0.40770119428634644, + "learning_rate": 0.0006, + "loss": 6.519908428192139, + "step": 143 + }, + { + "epoch": 2.0, + "grad_norm": 0.49609023332595825, + "learning_rate": 0.0006, + "loss": 6.522210121154785, + "step": 144 + }, + { + "epoch": 2.0, + "eval_loss": 7.4160332679748535, + "eval_runtime": 44.897, + "eval_samples_per_second": 54.391, + "eval_steps_per_second": 3.408, + "step": 144 + }, + { + "epoch": 2.0139799038881607, + "grad_norm": 0.5901461839675903, + "learning_rate": 0.0006, + "loss": 6.544684410095215, + "step": 145 + }, + { + "epoch": 2.0279598077763215, + "grad_norm": 0.8254945278167725, + "learning_rate": 0.0006, + "loss": 6.525827407836914, + "step": 146 + }, + { + "epoch": 2.041939711664482, + "grad_norm": 1.0169293880462646, + "learning_rate": 0.0006, + "loss": 6.563714504241943, + "step": 147 + }, + { + "epoch": 2.055919615552643, + "grad_norm": 0.3687298893928528, + "learning_rate": 0.0006, + "loss": 6.5046916007995605, + "step": 148 + }, + { + "epoch": 2.0698995194408036, + "grad_norm": 1.0100821256637573, + "learning_rate": 0.0006, + "loss": 6.562137126922607, + "step": 149 + }, + { + "epoch": 2.083879423328965, + "grad_norm": 0.5127629637718201, + "learning_rate": 0.0006, + "loss": 6.5264177322387695, + "step": 150 + }, + { + "epoch": 2.0978593272171255, + "grad_norm": 0.700425386428833, + "learning_rate": 0.0006, + "loss": 6.512963771820068, + "step": 151 + }, + { + "epoch": 2.1118392311052863, + "grad_norm": 0.5499169230461121, + "learning_rate": 0.0006, + "loss": 6.49979829788208, + "step": 152 + }, + { + "epoch": 2.125819134993447, + "grad_norm": 0.7200376391410828, + "learning_rate": 0.0006, + "loss": 6.495151519775391, + "step": 153 + }, + { + "epoch": 2.1397990388816077, + "grad_norm": 0.391381174325943, + "learning_rate": 0.0006, + "loss": 6.4765167236328125, + "step": 154 + }, + { + "epoch": 2.1537789427697684, + "grad_norm": 0.8096334338188171, + "learning_rate": 0.0006, + "loss": 6.499251365661621, + "step": 155 + }, + { + "epoch": 2.167758846657929, + "grad_norm": 0.30959758162498474, + "learning_rate": 0.0006, + "loss": 6.480124473571777, + "step": 156 + }, + { + "epoch": 2.18173875054609, + "grad_norm": 0.7091583013534546, + "learning_rate": 0.0006, + "loss": 6.478215217590332, + "step": 157 + }, + { + "epoch": 2.1957186544342506, + "grad_norm": 0.3326440751552582, + "learning_rate": 0.0006, + "loss": 6.451985836029053, + "step": 158 + }, + { + "epoch": 2.2096985583224114, + "grad_norm": 0.4922856390476227, + "learning_rate": 0.0006, + "loss": 6.4561662673950195, + "step": 159 + }, + { + "epoch": 2.2236784622105725, + "grad_norm": 0.39278435707092285, + "learning_rate": 0.0006, + "loss": 6.456035614013672, + "step": 160 + }, + { + "epoch": 2.2376583660987333, + "grad_norm": 0.4282865524291992, + "learning_rate": 0.0006, + "loss": 6.448979377746582, + "step": 161 + }, + { + "epoch": 2.251638269986894, + "grad_norm": 0.5714741945266724, + "learning_rate": 0.0006, + "loss": 6.47852897644043, + "step": 162 + }, + { + "epoch": 2.2656181738750547, + "grad_norm": 0.583672285079956, + "learning_rate": 0.0006, + "loss": 6.464170455932617, + "step": 163 + }, + { + "epoch": 2.2795980777632154, + "grad_norm": 0.4712837040424347, + "learning_rate": 0.0006, + "loss": 6.451757907867432, + "step": 164 + }, + { + "epoch": 2.293577981651376, + "grad_norm": 0.3056035339832306, + "learning_rate": 0.0006, + "loss": 6.447561740875244, + "step": 165 + }, + { + "epoch": 2.307557885539537, + "grad_norm": 0.4404738247394562, + "learning_rate": 0.0006, + "loss": 6.423078536987305, + "step": 166 + }, + { + "epoch": 2.3215377894276976, + "grad_norm": 0.2543250322341919, + "learning_rate": 0.0006, + "loss": 6.431145668029785, + "step": 167 + }, + { + "epoch": 2.3355176933158583, + "grad_norm": 0.2856603264808655, + "learning_rate": 0.0006, + "loss": 6.429790496826172, + "step": 168 + }, + { + "epoch": 2.349497597204019, + "grad_norm": 0.32252055406570435, + "learning_rate": 0.0006, + "loss": 6.442570686340332, + "step": 169 + }, + { + "epoch": 2.36347750109218, + "grad_norm": 0.4185130298137665, + "learning_rate": 0.0006, + "loss": 6.390125274658203, + "step": 170 + }, + { + "epoch": 2.3774574049803405, + "grad_norm": 0.5555936098098755, + "learning_rate": 0.0006, + "loss": 6.426321983337402, + "step": 171 + }, + { + "epoch": 2.3914373088685017, + "grad_norm": 0.8094755411148071, + "learning_rate": 0.0006, + "loss": 6.408479690551758, + "step": 172 + }, + { + "epoch": 2.4054172127566624, + "grad_norm": 0.6327159404754639, + "learning_rate": 0.0006, + "loss": 6.425005912780762, + "step": 173 + }, + { + "epoch": 2.419397116644823, + "grad_norm": 0.34392789006233215, + "learning_rate": 0.0006, + "loss": 6.401592254638672, + "step": 174 + }, + { + "epoch": 2.433377020532984, + "grad_norm": 0.4345092177391052, + "learning_rate": 0.0006, + "loss": 6.3974199295043945, + "step": 175 + }, + { + "epoch": 2.4473569244211446, + "grad_norm": 0.41068950295448303, + "learning_rate": 0.0006, + "loss": 6.406329154968262, + "step": 176 + }, + { + "epoch": 2.4613368283093053, + "grad_norm": 0.34383997321128845, + "learning_rate": 0.0006, + "loss": 6.379266738891602, + "step": 177 + }, + { + "epoch": 2.475316732197466, + "grad_norm": 0.4516221284866333, + "learning_rate": 0.0006, + "loss": 6.358936309814453, + "step": 178 + }, + { + "epoch": 2.489296636085627, + "grad_norm": 0.2767126262187958, + "learning_rate": 0.0006, + "loss": 6.358980178833008, + "step": 179 + }, + { + "epoch": 2.5032765399737875, + "grad_norm": 0.4476946294307709, + "learning_rate": 0.0006, + "loss": 6.360415458679199, + "step": 180 + }, + { + "epoch": 2.5172564438619487, + "grad_norm": 0.20723868906497955, + "learning_rate": 0.0006, + "loss": 6.348758220672607, + "step": 181 + }, + { + "epoch": 2.5312363477501094, + "grad_norm": 0.2715505361557007, + "learning_rate": 0.0006, + "loss": 6.361812591552734, + "step": 182 + }, + { + "epoch": 2.54521625163827, + "grad_norm": 0.2736680209636688, + "learning_rate": 0.0006, + "loss": 6.360396385192871, + "step": 183 + }, + { + "epoch": 2.559196155526431, + "grad_norm": 0.2887931764125824, + "learning_rate": 0.0006, + "loss": 6.34066104888916, + "step": 184 + }, + { + "epoch": 2.5731760594145916, + "grad_norm": 0.34694477915763855, + "learning_rate": 0.0006, + "loss": 6.339291095733643, + "step": 185 + }, + { + "epoch": 2.5871559633027523, + "grad_norm": 0.3288010358810425, + "learning_rate": 0.0006, + "loss": 6.301711082458496, + "step": 186 + }, + { + "epoch": 2.601135867190913, + "grad_norm": 0.36526742577552795, + "learning_rate": 0.0006, + "loss": 6.288026809692383, + "step": 187 + }, + { + "epoch": 2.615115771079074, + "grad_norm": 0.47473862767219543, + "learning_rate": 0.0006, + "loss": 6.313539505004883, + "step": 188 + }, + { + "epoch": 2.6290956749672345, + "grad_norm": 0.8512309193611145, + "learning_rate": 0.0006, + "loss": 6.321949481964111, + "step": 189 + }, + { + "epoch": 2.6430755788553952, + "grad_norm": 1.013196349143982, + "learning_rate": 0.0006, + "loss": 6.364706993103027, + "step": 190 + }, + { + "epoch": 2.657055482743556, + "grad_norm": 0.7776914834976196, + "learning_rate": 0.0006, + "loss": 6.3026123046875, + "step": 191 + }, + { + "epoch": 2.6710353866317167, + "grad_norm": 1.0281262397766113, + "learning_rate": 0.0006, + "loss": 6.324755668640137, + "step": 192 + }, + { + "epoch": 2.6850152905198774, + "grad_norm": 0.5249123573303223, + "learning_rate": 0.0006, + "loss": 6.298570156097412, + "step": 193 + }, + { + "epoch": 2.6989951944080386, + "grad_norm": 0.6210645437240601, + "learning_rate": 0.0006, + "loss": 6.312189102172852, + "step": 194 + }, + { + "epoch": 2.7129750982961993, + "grad_norm": 0.4720016419887543, + "learning_rate": 0.0006, + "loss": 6.285938739776611, + "step": 195 + }, + { + "epoch": 2.72695500218436, + "grad_norm": 0.4564707577228546, + "learning_rate": 0.0006, + "loss": 6.264621734619141, + "step": 196 + }, + { + "epoch": 2.7409349060725208, + "grad_norm": 0.4302920997142792, + "learning_rate": 0.0006, + "loss": 6.244819164276123, + "step": 197 + }, + { + "epoch": 2.7549148099606815, + "grad_norm": 0.33371591567993164, + "learning_rate": 0.0006, + "loss": 6.199107646942139, + "step": 198 + }, + { + "epoch": 2.7688947138488422, + "grad_norm": 0.47418349981307983, + "learning_rate": 0.0006, + "loss": 6.2410359382629395, + "step": 199 + }, + { + "epoch": 2.782874617737003, + "grad_norm": 0.39323604106903076, + "learning_rate": 0.0006, + "loss": 6.223790645599365, + "step": 200 + }, + { + "epoch": 2.7968545216251637, + "grad_norm": 0.3853401243686676, + "learning_rate": 0.0006, + "loss": 6.208094596862793, + "step": 201 + }, + { + "epoch": 2.810834425513325, + "grad_norm": 0.30614909529685974, + "learning_rate": 0.0006, + "loss": 6.203510284423828, + "step": 202 + }, + { + "epoch": 2.8248143294014856, + "grad_norm": 0.31473425030708313, + "learning_rate": 0.0006, + "loss": 6.188679218292236, + "step": 203 + }, + { + "epoch": 2.8387942332896463, + "grad_norm": 0.26767879724502563, + "learning_rate": 0.0006, + "loss": 6.173279762268066, + "step": 204 + }, + { + "epoch": 2.852774137177807, + "grad_norm": 0.23031102120876312, + "learning_rate": 0.0006, + "loss": 6.176788330078125, + "step": 205 + }, + { + "epoch": 2.8667540410659678, + "grad_norm": 0.30087950825691223, + "learning_rate": 0.0006, + "loss": 6.180145740509033, + "step": 206 + }, + { + "epoch": 2.8807339449541285, + "grad_norm": 0.24765901267528534, + "learning_rate": 0.0006, + "loss": 6.141201019287109, + "step": 207 + }, + { + "epoch": 2.894713848842289, + "grad_norm": 0.23001061379909515, + "learning_rate": 0.0006, + "loss": 6.120377063751221, + "step": 208 + }, + { + "epoch": 2.90869375273045, + "grad_norm": 0.3099670708179474, + "learning_rate": 0.0006, + "loss": 6.1279191970825195, + "step": 209 + }, + { + "epoch": 2.9226736566186107, + "grad_norm": 0.44206786155700684, + "learning_rate": 0.0006, + "loss": 6.134393692016602, + "step": 210 + }, + { + "epoch": 2.9366535605067714, + "grad_norm": 0.9451929926872253, + "learning_rate": 0.0006, + "loss": 6.172202110290527, + "step": 211 + }, + { + "epoch": 2.950633464394932, + "grad_norm": 1.21107017993927, + "learning_rate": 0.0006, + "loss": 6.193306922912598, + "step": 212 + }, + { + "epoch": 2.964613368283093, + "grad_norm": 0.35277995467185974, + "learning_rate": 0.0006, + "loss": 6.122222900390625, + "step": 213 + }, + { + "epoch": 2.9785932721712536, + "grad_norm": 0.683441698551178, + "learning_rate": 0.0006, + "loss": 6.148354530334473, + "step": 214 + }, + { + "epoch": 2.9925731760594148, + "grad_norm": 0.45575034618377686, + "learning_rate": 0.0006, + "loss": 6.131977081298828, + "step": 215 + }, + { + "epoch": 3.0, + "grad_norm": 0.44304850697517395, + "learning_rate": 0.0006, + "loss": 6.1364641189575195, + "step": 216 + }, + { + "epoch": 3.0, + "eval_loss": 6.980695724487305, + "eval_runtime": 44.8402, + "eval_samples_per_second": 54.46, + "eval_steps_per_second": 3.412, + "step": 216 + }, + { + "epoch": 3.0139799038881607, + "grad_norm": 0.41036292910575867, + "learning_rate": 0.0006, + "loss": 6.102398872375488, + "step": 217 + }, + { + "epoch": 3.0279598077763215, + "grad_norm": 0.3578951954841614, + "learning_rate": 0.0006, + "loss": 6.0861711502075195, + "step": 218 + }, + { + "epoch": 3.041939711664482, + "grad_norm": 0.3539979159832001, + "learning_rate": 0.0006, + "loss": 6.0933332443237305, + "step": 219 + }, + { + "epoch": 3.055919615552643, + "grad_norm": 0.3421717882156372, + "learning_rate": 0.0006, + "loss": 6.086531639099121, + "step": 220 + }, + { + "epoch": 3.0698995194408036, + "grad_norm": 0.260500431060791, + "learning_rate": 0.0006, + "loss": 6.035819053649902, + "step": 221 + }, + { + "epoch": 3.083879423328965, + "grad_norm": 0.25814977288246155, + "learning_rate": 0.0006, + "loss": 6.04498291015625, + "step": 222 + }, + { + "epoch": 3.0978593272171255, + "grad_norm": 0.2501702904701233, + "learning_rate": 0.0006, + "loss": 6.049278259277344, + "step": 223 + }, + { + "epoch": 3.1118392311052863, + "grad_norm": 0.2865384817123413, + "learning_rate": 0.0006, + "loss": 6.036736488342285, + "step": 224 + }, + { + "epoch": 3.125819134993447, + "grad_norm": 0.22606638073921204, + "learning_rate": 0.0006, + "loss": 6.048478126525879, + "step": 225 + }, + { + "epoch": 3.1397990388816077, + "grad_norm": 0.2254074513912201, + "learning_rate": 0.0006, + "loss": 6.010383605957031, + "step": 226 + }, + { + "epoch": 3.1537789427697684, + "grad_norm": 0.22576801478862762, + "learning_rate": 0.0006, + "loss": 5.997007369995117, + "step": 227 + }, + { + "epoch": 3.167758846657929, + "grad_norm": 0.20537018775939941, + "learning_rate": 0.0006, + "loss": 6.00102424621582, + "step": 228 + }, + { + "epoch": 3.18173875054609, + "grad_norm": 0.22475507855415344, + "learning_rate": 0.0006, + "loss": 5.989653587341309, + "step": 229 + }, + { + "epoch": 3.1957186544342506, + "grad_norm": 0.22519715130329132, + "learning_rate": 0.0006, + "loss": 5.99420166015625, + "step": 230 + }, + { + "epoch": 3.2096985583224114, + "grad_norm": 0.3361336290836334, + "learning_rate": 0.0006, + "loss": 5.964653015136719, + "step": 231 + }, + { + "epoch": 3.2236784622105725, + "grad_norm": 0.31344181299209595, + "learning_rate": 0.0006, + "loss": 5.985935688018799, + "step": 232 + }, + { + "epoch": 3.2376583660987333, + "grad_norm": 0.4480644762516022, + "learning_rate": 0.0006, + "loss": 5.9639387130737305, + "step": 233 + }, + { + "epoch": 3.251638269986894, + "grad_norm": 0.7153075337409973, + "learning_rate": 0.0006, + "loss": 5.992982387542725, + "step": 234 + }, + { + "epoch": 3.2656181738750547, + "grad_norm": 0.7866749167442322, + "learning_rate": 0.0006, + "loss": 5.9964799880981445, + "step": 235 + }, + { + "epoch": 3.2795980777632154, + "grad_norm": 0.5784558057785034, + "learning_rate": 0.0006, + "loss": 5.930974006652832, + "step": 236 + }, + { + "epoch": 3.293577981651376, + "grad_norm": 0.7608065605163574, + "learning_rate": 0.0006, + "loss": 5.994507789611816, + "step": 237 + }, + { + "epoch": 3.307557885539537, + "grad_norm": 0.811129093170166, + "learning_rate": 0.0006, + "loss": 5.9684858322143555, + "step": 238 + }, + { + "epoch": 3.3215377894276976, + "grad_norm": 0.6381509900093079, + "learning_rate": 0.0006, + "loss": 5.991626262664795, + "step": 239 + }, + { + "epoch": 3.3355176933158583, + "grad_norm": 0.6033780574798584, + "learning_rate": 0.0006, + "loss": 5.974659442901611, + "step": 240 + }, + { + "epoch": 3.349497597204019, + "grad_norm": 0.565090537071228, + "learning_rate": 0.0006, + "loss": 5.944318771362305, + "step": 241 + }, + { + "epoch": 3.36347750109218, + "grad_norm": 0.3260819911956787, + "learning_rate": 0.0006, + "loss": 5.93076229095459, + "step": 242 + }, + { + "epoch": 3.3774574049803405, + "grad_norm": 0.37386056780815125, + "learning_rate": 0.0006, + "loss": 5.917619705200195, + "step": 243 + }, + { + "epoch": 3.3914373088685017, + "grad_norm": 0.4518016278743744, + "learning_rate": 0.0006, + "loss": 5.906590938568115, + "step": 244 + }, + { + "epoch": 3.4054172127566624, + "grad_norm": 0.2505854368209839, + "learning_rate": 0.0006, + "loss": 5.920642852783203, + "step": 245 + }, + { + "epoch": 3.419397116644823, + "grad_norm": 0.3540247678756714, + "learning_rate": 0.0006, + "loss": 5.895604133605957, + "step": 246 + }, + { + "epoch": 3.433377020532984, + "grad_norm": 0.29462260007858276, + "learning_rate": 0.0006, + "loss": 5.920681476593018, + "step": 247 + }, + { + "epoch": 3.4473569244211446, + "grad_norm": 0.2801721394062042, + "learning_rate": 0.0006, + "loss": 5.907489776611328, + "step": 248 + }, + { + "epoch": 3.4613368283093053, + "grad_norm": 0.22790676355361938, + "learning_rate": 0.0006, + "loss": 5.903781890869141, + "step": 249 + }, + { + "epoch": 3.475316732197466, + "grad_norm": 0.2691625654697418, + "learning_rate": 0.0006, + "loss": 5.893274307250977, + "step": 250 + }, + { + "epoch": 3.489296636085627, + "grad_norm": 0.21786756813526154, + "learning_rate": 0.0006, + "loss": 5.905666828155518, + "step": 251 + }, + { + "epoch": 3.5032765399737875, + "grad_norm": 0.25495457649230957, + "learning_rate": 0.0006, + "loss": 5.83848237991333, + "step": 252 + }, + { + "epoch": 3.5172564438619487, + "grad_norm": 0.3953498303890228, + "learning_rate": 0.0006, + "loss": 5.826082229614258, + "step": 253 + }, + { + "epoch": 3.5312363477501094, + "grad_norm": 0.6691432595252991, + "learning_rate": 0.0006, + "loss": 5.850897789001465, + "step": 254 + }, + { + "epoch": 3.54521625163827, + "grad_norm": 0.9416468143463135, + "learning_rate": 0.0006, + "loss": 5.900627136230469, + "step": 255 + }, + { + "epoch": 3.559196155526431, + "grad_norm": 0.4891276955604553, + "learning_rate": 0.0006, + "loss": 5.877275466918945, + "step": 256 + }, + { + "epoch": 3.5731760594145916, + "grad_norm": 0.4100848138332367, + "learning_rate": 0.0006, + "loss": 5.852982044219971, + "step": 257 + }, + { + "epoch": 3.5871559633027523, + "grad_norm": 0.360091894865036, + "learning_rate": 0.0006, + "loss": 5.839970588684082, + "step": 258 + }, + { + "epoch": 3.601135867190913, + "grad_norm": 0.3694969415664673, + "learning_rate": 0.0006, + "loss": 5.831018447875977, + "step": 259 + }, + { + "epoch": 3.615115771079074, + "grad_norm": 0.3076588213443756, + "learning_rate": 0.0006, + "loss": 5.821706295013428, + "step": 260 + }, + { + "epoch": 3.6290956749672345, + "grad_norm": 0.3436596393585205, + "learning_rate": 0.0006, + "loss": 5.82346773147583, + "step": 261 + }, + { + "epoch": 3.6430755788553952, + "grad_norm": 0.4933178424835205, + "learning_rate": 0.0006, + "loss": 5.815703868865967, + "step": 262 + }, + { + "epoch": 3.657055482743556, + "grad_norm": 0.5906373262405396, + "learning_rate": 0.0006, + "loss": 5.832910537719727, + "step": 263 + }, + { + "epoch": 3.6710353866317167, + "grad_norm": 0.5759168267250061, + "learning_rate": 0.0006, + "loss": 5.831812858581543, + "step": 264 + }, + { + "epoch": 3.6850152905198774, + "grad_norm": 0.4046004116535187, + "learning_rate": 0.0006, + "loss": 5.807713508605957, + "step": 265 + }, + { + "epoch": 3.6989951944080386, + "grad_norm": 0.3920064866542816, + "learning_rate": 0.0006, + "loss": 5.7866411209106445, + "step": 266 + }, + { + "epoch": 3.7129750982961993, + "grad_norm": 0.2829243242740631, + "learning_rate": 0.0006, + "loss": 5.7932634353637695, + "step": 267 + }, + { + "epoch": 3.72695500218436, + "grad_norm": 0.32804539799690247, + "learning_rate": 0.0006, + "loss": 5.81331205368042, + "step": 268 + }, + { + "epoch": 3.7409349060725208, + "grad_norm": 0.2649964690208435, + "learning_rate": 0.0006, + "loss": 5.791234970092773, + "step": 269 + }, + { + "epoch": 3.7549148099606815, + "grad_norm": 0.28498753905296326, + "learning_rate": 0.0006, + "loss": 5.789358615875244, + "step": 270 + }, + { + "epoch": 3.7688947138488422, + "grad_norm": 0.2781229019165039, + "learning_rate": 0.0006, + "loss": 5.790818214416504, + "step": 271 + }, + { + "epoch": 3.782874617737003, + "grad_norm": 0.2846848964691162, + "learning_rate": 0.0006, + "loss": 5.769326210021973, + "step": 272 + }, + { + "epoch": 3.7968545216251637, + "grad_norm": 0.33371755480766296, + "learning_rate": 0.0006, + "loss": 5.7583417892456055, + "step": 273 + }, + { + "epoch": 3.810834425513325, + "grad_norm": 0.35597777366638184, + "learning_rate": 0.0006, + "loss": 5.749451637268066, + "step": 274 + }, + { + "epoch": 3.8248143294014856, + "grad_norm": 0.48385193943977356, + "learning_rate": 0.0006, + "loss": 5.727680683135986, + "step": 275 + }, + { + "epoch": 3.8387942332896463, + "grad_norm": 0.5425019264221191, + "learning_rate": 0.0006, + "loss": 5.74599552154541, + "step": 276 + }, + { + "epoch": 3.852774137177807, + "grad_norm": 0.35190537571907043, + "learning_rate": 0.0006, + "loss": 5.738711833953857, + "step": 277 + }, + { + "epoch": 3.8667540410659678, + "grad_norm": 0.35089945793151855, + "learning_rate": 0.0006, + "loss": 5.730939865112305, + "step": 278 + }, + { + "epoch": 3.8807339449541285, + "grad_norm": 0.40920424461364746, + "learning_rate": 0.0006, + "loss": 5.72913932800293, + "step": 279 + }, + { + "epoch": 3.894713848842289, + "grad_norm": 0.3587217330932617, + "learning_rate": 0.0006, + "loss": 5.707686424255371, + "step": 280 + }, + { + "epoch": 3.90869375273045, + "grad_norm": 0.5660607814788818, + "learning_rate": 0.0006, + "loss": 5.712931156158447, + "step": 281 + }, + { + "epoch": 3.9226736566186107, + "grad_norm": 0.9077513813972473, + "learning_rate": 0.0006, + "loss": 5.785223960876465, + "step": 282 + }, + { + "epoch": 3.9366535605067714, + "grad_norm": 0.7399788498878479, + "learning_rate": 0.0006, + "loss": 5.781078338623047, + "step": 283 + }, + { + "epoch": 3.950633464394932, + "grad_norm": 0.5495012998580933, + "learning_rate": 0.0006, + "loss": 5.746405124664307, + "step": 284 + }, + { + "epoch": 3.964613368283093, + "grad_norm": 0.9147505760192871, + "learning_rate": 0.0006, + "loss": 5.749270439147949, + "step": 285 + }, + { + "epoch": 3.9785932721712536, + "grad_norm": 1.1202995777130127, + "learning_rate": 0.0006, + "loss": 5.807714462280273, + "step": 286 + }, + { + "epoch": 3.9925731760594148, + "grad_norm": 0.5831988453865051, + "learning_rate": 0.0006, + "loss": 5.732274532318115, + "step": 287 + }, + { + "epoch": 4.0, + "grad_norm": 0.7488527894020081, + "learning_rate": 0.0006, + "loss": 5.750489234924316, + "step": 288 + }, + { + "epoch": 4.0, + "eval_loss": 6.561756610870361, + "eval_runtime": 44.1812, + "eval_samples_per_second": 55.272, + "eval_steps_per_second": 3.463, + "step": 288 + }, + { + "epoch": 4.013979903888161, + "grad_norm": 0.6826450824737549, + "learning_rate": 0.0006, + "loss": 5.74069881439209, + "step": 289 + }, + { + "epoch": 4.0279598077763215, + "grad_norm": 0.5448930263519287, + "learning_rate": 0.0006, + "loss": 5.736886978149414, + "step": 290 + }, + { + "epoch": 4.041939711664482, + "grad_norm": 0.526520848274231, + "learning_rate": 0.0006, + "loss": 5.702367782592773, + "step": 291 + }, + { + "epoch": 4.055919615552643, + "grad_norm": 0.41113802790641785, + "learning_rate": 0.0006, + "loss": 5.733778953552246, + "step": 292 + }, + { + "epoch": 4.069899519440804, + "grad_norm": 0.3495802581310272, + "learning_rate": 0.0006, + "loss": 5.677141189575195, + "step": 293 + }, + { + "epoch": 4.083879423328964, + "grad_norm": 0.36310794949531555, + "learning_rate": 0.0006, + "loss": 5.683384895324707, + "step": 294 + }, + { + "epoch": 4.097859327217125, + "grad_norm": 0.3208438456058502, + "learning_rate": 0.0006, + "loss": 5.686001777648926, + "step": 295 + }, + { + "epoch": 4.111839231105286, + "grad_norm": 0.2983277440071106, + "learning_rate": 0.0006, + "loss": 5.685153007507324, + "step": 296 + }, + { + "epoch": 4.1258191349934465, + "grad_norm": 0.2907504141330719, + "learning_rate": 0.0006, + "loss": 5.657618522644043, + "step": 297 + }, + { + "epoch": 4.139799038881607, + "grad_norm": 0.30938196182250977, + "learning_rate": 0.0006, + "loss": 5.667300224304199, + "step": 298 + }, + { + "epoch": 4.153778942769769, + "grad_norm": 0.2573760151863098, + "learning_rate": 0.0006, + "loss": 5.647497177124023, + "step": 299 + }, + { + "epoch": 4.16775884665793, + "grad_norm": 0.21433979272842407, + "learning_rate": 0.0006, + "loss": 5.644374847412109, + "step": 300 + }, + { + "epoch": 4.18173875054609, + "grad_norm": 0.28481540083885193, + "learning_rate": 0.0006, + "loss": 5.651360988616943, + "step": 301 + }, + { + "epoch": 4.195718654434251, + "grad_norm": 0.25219210982322693, + "learning_rate": 0.0006, + "loss": 5.659634590148926, + "step": 302 + }, + { + "epoch": 4.209698558322412, + "grad_norm": 0.24239923059940338, + "learning_rate": 0.0006, + "loss": 5.639556407928467, + "step": 303 + }, + { + "epoch": 4.2236784622105725, + "grad_norm": 0.2699589431285858, + "learning_rate": 0.0006, + "loss": 5.628335952758789, + "step": 304 + }, + { + "epoch": 4.237658366098733, + "grad_norm": 0.23032374680042267, + "learning_rate": 0.0006, + "loss": 5.603282451629639, + "step": 305 + }, + { + "epoch": 4.251638269986894, + "grad_norm": 0.19008542597293854, + "learning_rate": 0.0006, + "loss": 5.609981536865234, + "step": 306 + }, + { + "epoch": 4.265618173875055, + "grad_norm": 0.2789307236671448, + "learning_rate": 0.0006, + "loss": 5.631487846374512, + "step": 307 + }, + { + "epoch": 4.279598077763215, + "grad_norm": 0.29369330406188965, + "learning_rate": 0.0006, + "loss": 5.585389137268066, + "step": 308 + }, + { + "epoch": 4.293577981651376, + "grad_norm": 0.4895668923854828, + "learning_rate": 0.0006, + "loss": 5.601845741271973, + "step": 309 + }, + { + "epoch": 4.307557885539537, + "grad_norm": 0.868036687374115, + "learning_rate": 0.0006, + "loss": 5.606074333190918, + "step": 310 + }, + { + "epoch": 4.321537789427698, + "grad_norm": 0.6099964380264282, + "learning_rate": 0.0006, + "loss": 5.620998382568359, + "step": 311 + }, + { + "epoch": 4.335517693315858, + "grad_norm": 0.4924717843532562, + "learning_rate": 0.0006, + "loss": 5.589061737060547, + "step": 312 + }, + { + "epoch": 4.349497597204019, + "grad_norm": 0.4618937373161316, + "learning_rate": 0.0006, + "loss": 5.627256393432617, + "step": 313 + }, + { + "epoch": 4.36347750109218, + "grad_norm": 0.44004616141319275, + "learning_rate": 0.0006, + "loss": 5.621898651123047, + "step": 314 + }, + { + "epoch": 4.3774574049803405, + "grad_norm": 0.3546202778816223, + "learning_rate": 0.0006, + "loss": 5.596368789672852, + "step": 315 + }, + { + "epoch": 4.391437308868501, + "grad_norm": 0.3290061354637146, + "learning_rate": 0.0006, + "loss": 5.6153106689453125, + "step": 316 + }, + { + "epoch": 4.405417212756662, + "grad_norm": 0.26222506165504456, + "learning_rate": 0.0006, + "loss": 5.587573051452637, + "step": 317 + }, + { + "epoch": 4.419397116644823, + "grad_norm": 0.4072180986404419, + "learning_rate": 0.0006, + "loss": 5.563338756561279, + "step": 318 + }, + { + "epoch": 4.433377020532983, + "grad_norm": 0.2126948982477188, + "learning_rate": 0.0006, + "loss": 5.580317497253418, + "step": 319 + }, + { + "epoch": 4.447356924421145, + "grad_norm": 0.25799527764320374, + "learning_rate": 0.0006, + "loss": 5.563149452209473, + "step": 320 + }, + { + "epoch": 4.461336828309306, + "grad_norm": 0.2714312970638275, + "learning_rate": 0.0006, + "loss": 5.553180694580078, + "step": 321 + }, + { + "epoch": 4.4753167321974665, + "grad_norm": 0.3054043650627136, + "learning_rate": 0.0006, + "loss": 5.546743392944336, + "step": 322 + }, + { + "epoch": 4.489296636085627, + "grad_norm": 0.2878747284412384, + "learning_rate": 0.0006, + "loss": 5.577169418334961, + "step": 323 + }, + { + "epoch": 4.503276539973788, + "grad_norm": 0.2593158483505249, + "learning_rate": 0.0006, + "loss": 5.548208236694336, + "step": 324 + }, + { + "epoch": 4.517256443861949, + "grad_norm": 0.22981201112270355, + "learning_rate": 0.0006, + "loss": 5.5368452072143555, + "step": 325 + }, + { + "epoch": 4.531236347750109, + "grad_norm": 0.2709479033946991, + "learning_rate": 0.0006, + "loss": 5.538181304931641, + "step": 326 + }, + { + "epoch": 4.54521625163827, + "grad_norm": 0.2539595067501068, + "learning_rate": 0.0006, + "loss": 5.507145404815674, + "step": 327 + }, + { + "epoch": 4.559196155526431, + "grad_norm": 0.2945457696914673, + "learning_rate": 0.0006, + "loss": 5.532477855682373, + "step": 328 + }, + { + "epoch": 4.573176059414592, + "grad_norm": 0.3303641378879547, + "learning_rate": 0.0006, + "loss": 5.523201942443848, + "step": 329 + }, + { + "epoch": 4.587155963302752, + "grad_norm": 0.29704076051712036, + "learning_rate": 0.0006, + "loss": 5.511192321777344, + "step": 330 + }, + { + "epoch": 4.601135867190913, + "grad_norm": 0.3357895612716675, + "learning_rate": 0.0006, + "loss": 5.527683258056641, + "step": 331 + }, + { + "epoch": 4.615115771079074, + "grad_norm": 0.4776851534843445, + "learning_rate": 0.0006, + "loss": 5.513580322265625, + "step": 332 + }, + { + "epoch": 4.6290956749672345, + "grad_norm": 0.513299822807312, + "learning_rate": 0.0006, + "loss": 5.519002914428711, + "step": 333 + }, + { + "epoch": 4.643075578855395, + "grad_norm": 0.3210803270339966, + "learning_rate": 0.0006, + "loss": 5.498527526855469, + "step": 334 + }, + { + "epoch": 4.657055482743556, + "grad_norm": 0.40268877148628235, + "learning_rate": 0.0006, + "loss": 5.491479873657227, + "step": 335 + }, + { + "epoch": 4.671035386631717, + "grad_norm": 0.561032772064209, + "learning_rate": 0.0006, + "loss": 5.514814376831055, + "step": 336 + }, + { + "epoch": 4.685015290519877, + "grad_norm": 0.911053478717804, + "learning_rate": 0.0006, + "loss": 5.532987594604492, + "step": 337 + }, + { + "epoch": 4.698995194408038, + "grad_norm": 0.9347571134567261, + "learning_rate": 0.0006, + "loss": 5.541049003601074, + "step": 338 + }, + { + "epoch": 4.712975098296199, + "grad_norm": 0.5409726500511169, + "learning_rate": 0.0006, + "loss": 5.532445907592773, + "step": 339 + }, + { + "epoch": 4.72695500218436, + "grad_norm": 0.4845522344112396, + "learning_rate": 0.0006, + "loss": 5.5361223220825195, + "step": 340 + }, + { + "epoch": 4.740934906072521, + "grad_norm": 0.41235798597335815, + "learning_rate": 0.0006, + "loss": 5.491490364074707, + "step": 341 + }, + { + "epoch": 4.754914809960681, + "grad_norm": 0.40793052315711975, + "learning_rate": 0.0006, + "loss": 5.524474143981934, + "step": 342 + }, + { + "epoch": 4.768894713848843, + "grad_norm": 0.5246962904930115, + "learning_rate": 0.0006, + "loss": 5.515807151794434, + "step": 343 + }, + { + "epoch": 4.782874617737003, + "grad_norm": 0.8380767107009888, + "learning_rate": 0.0006, + "loss": 5.544720649719238, + "step": 344 + }, + { + "epoch": 4.796854521625164, + "grad_norm": 0.7295961380004883, + "learning_rate": 0.0006, + "loss": 5.524983882904053, + "step": 345 + }, + { + "epoch": 4.810834425513325, + "grad_norm": 0.4555388391017914, + "learning_rate": 0.0006, + "loss": 5.504810333251953, + "step": 346 + }, + { + "epoch": 4.824814329401486, + "grad_norm": 0.5148264765739441, + "learning_rate": 0.0006, + "loss": 5.520061492919922, + "step": 347 + }, + { + "epoch": 4.838794233289646, + "grad_norm": 0.46022602915763855, + "learning_rate": 0.0006, + "loss": 5.478581428527832, + "step": 348 + }, + { + "epoch": 4.852774137177807, + "grad_norm": 0.3436850309371948, + "learning_rate": 0.0006, + "loss": 5.492883205413818, + "step": 349 + }, + { + "epoch": 4.866754041065968, + "grad_norm": 0.309434175491333, + "learning_rate": 0.0006, + "loss": 5.476047992706299, + "step": 350 + }, + { + "epoch": 4.8807339449541285, + "grad_norm": 0.3647385239601135, + "learning_rate": 0.0006, + "loss": 5.496616363525391, + "step": 351 + }, + { + "epoch": 4.894713848842289, + "grad_norm": 0.25695034861564636, + "learning_rate": 0.0006, + "loss": 5.460618019104004, + "step": 352 + }, + { + "epoch": 4.90869375273045, + "grad_norm": 0.22458060085773468, + "learning_rate": 0.0006, + "loss": 5.44956636428833, + "step": 353 + }, + { + "epoch": 4.922673656618611, + "grad_norm": 0.27840760350227356, + "learning_rate": 0.0006, + "loss": 5.455303192138672, + "step": 354 + }, + { + "epoch": 4.936653560506771, + "grad_norm": 0.2567618787288666, + "learning_rate": 0.0006, + "loss": 5.420350074768066, + "step": 355 + }, + { + "epoch": 4.950633464394932, + "grad_norm": 0.21048326790332794, + "learning_rate": 0.0006, + "loss": 5.436779022216797, + "step": 356 + }, + { + "epoch": 4.964613368283093, + "grad_norm": 0.23877522349357605, + "learning_rate": 0.0006, + "loss": 5.436613082885742, + "step": 357 + }, + { + "epoch": 4.978593272171254, + "grad_norm": 0.23737239837646484, + "learning_rate": 0.0006, + "loss": 5.436419486999512, + "step": 358 + }, + { + "epoch": 4.992573176059414, + "grad_norm": 0.2672627568244934, + "learning_rate": 0.0006, + "loss": 5.400324821472168, + "step": 359 + }, + { + "epoch": 5.0, + "grad_norm": 0.30432379245758057, + "learning_rate": 0.0006, + "loss": 5.432574272155762, + "step": 360 + }, + { + "epoch": 5.0, + "eval_loss": 6.070156574249268, + "eval_runtime": 44.7327, + "eval_samples_per_second": 54.591, + "eval_steps_per_second": 3.42, + "step": 360 + }, + { + "epoch": 5.013979903888161, + "grad_norm": 0.33242350816726685, + "learning_rate": 0.0006, + "loss": 5.393435001373291, + "step": 361 + }, + { + "epoch": 5.0279598077763215, + "grad_norm": 0.34505656361579895, + "learning_rate": 0.0006, + "loss": 5.400908470153809, + "step": 362 + }, + { + "epoch": 5.041939711664482, + "grad_norm": 0.3376632630825043, + "learning_rate": 0.0006, + "loss": 5.399024486541748, + "step": 363 + }, + { + "epoch": 5.055919615552643, + "grad_norm": 0.2792842388153076, + "learning_rate": 0.0006, + "loss": 5.3921613693237305, + "step": 364 + }, + { + "epoch": 5.069899519440804, + "grad_norm": 0.2580874562263489, + "learning_rate": 0.0006, + "loss": 5.395462989807129, + "step": 365 + }, + { + "epoch": 5.083879423328964, + "grad_norm": 0.24473565816879272, + "learning_rate": 0.0006, + "loss": 5.402674674987793, + "step": 366 + }, + { + "epoch": 5.097859327217125, + "grad_norm": 0.2645021080970764, + "learning_rate": 0.0006, + "loss": 5.373383045196533, + "step": 367 + }, + { + "epoch": 5.111839231105286, + "grad_norm": 0.21186921000480652, + "learning_rate": 0.0006, + "loss": 5.363481044769287, + "step": 368 + }, + { + "epoch": 5.1258191349934465, + "grad_norm": 0.22037583589553833, + "learning_rate": 0.0006, + "loss": 5.362544059753418, + "step": 369 + }, + { + "epoch": 5.139799038881607, + "grad_norm": 0.24913407862186432, + "learning_rate": 0.0006, + "loss": 5.358965873718262, + "step": 370 + }, + { + "epoch": 5.153778942769769, + "grad_norm": 0.2420608401298523, + "learning_rate": 0.0006, + "loss": 5.369074821472168, + "step": 371 + }, + { + "epoch": 5.16775884665793, + "grad_norm": 0.2851957082748413, + "learning_rate": 0.0006, + "loss": 5.334169387817383, + "step": 372 + }, + { + "epoch": 5.18173875054609, + "grad_norm": 0.25417277216911316, + "learning_rate": 0.0006, + "loss": 5.359625816345215, + "step": 373 + }, + { + "epoch": 5.195718654434251, + "grad_norm": 0.25826653838157654, + "learning_rate": 0.0006, + "loss": 5.358868598937988, + "step": 374 + }, + { + "epoch": 5.209698558322412, + "grad_norm": 0.253579705953598, + "learning_rate": 0.0006, + "loss": 5.346739292144775, + "step": 375 + }, + { + "epoch": 5.2236784622105725, + "grad_norm": 0.2865685224533081, + "learning_rate": 0.0006, + "loss": 5.3510942459106445, + "step": 376 + }, + { + "epoch": 5.237658366098733, + "grad_norm": 0.36913734674453735, + "learning_rate": 0.0006, + "loss": 5.33046817779541, + "step": 377 + }, + { + "epoch": 5.251638269986894, + "grad_norm": 0.4855092465877533, + "learning_rate": 0.0006, + "loss": 5.338862419128418, + "step": 378 + }, + { + "epoch": 5.265618173875055, + "grad_norm": 0.5620965361595154, + "learning_rate": 0.0006, + "loss": 5.372352123260498, + "step": 379 + }, + { + "epoch": 5.279598077763215, + "grad_norm": 0.6268555521965027, + "learning_rate": 0.0006, + "loss": 5.365481376647949, + "step": 380 + }, + { + "epoch": 5.293577981651376, + "grad_norm": 0.6431483626365662, + "learning_rate": 0.0006, + "loss": 5.383652687072754, + "step": 381 + }, + { + "epoch": 5.307557885539537, + "grad_norm": 0.6405434608459473, + "learning_rate": 0.0006, + "loss": 5.354667663574219, + "step": 382 + }, + { + "epoch": 5.321537789427698, + "grad_norm": 0.8138700127601624, + "learning_rate": 0.0006, + "loss": 5.390957832336426, + "step": 383 + }, + { + "epoch": 5.335517693315858, + "grad_norm": 0.8374986052513123, + "learning_rate": 0.0006, + "loss": 5.4002485275268555, + "step": 384 + }, + { + "epoch": 5.349497597204019, + "grad_norm": 0.839690089225769, + "learning_rate": 0.0006, + "loss": 5.423776626586914, + "step": 385 + }, + { + "epoch": 5.36347750109218, + "grad_norm": 0.8077089190483093, + "learning_rate": 0.0006, + "loss": 5.4428300857543945, + "step": 386 + }, + { + "epoch": 5.3774574049803405, + "grad_norm": 0.6408830285072327, + "learning_rate": 0.0006, + "loss": 5.367593765258789, + "step": 387 + }, + { + "epoch": 5.391437308868501, + "grad_norm": 0.6881740093231201, + "learning_rate": 0.0006, + "loss": 5.373578071594238, + "step": 388 + }, + { + "epoch": 5.405417212756662, + "grad_norm": 0.7173642516136169, + "learning_rate": 0.0006, + "loss": 5.394767761230469, + "step": 389 + }, + { + "epoch": 5.419397116644823, + "grad_norm": 0.6479586362838745, + "learning_rate": 0.0006, + "loss": 5.380290985107422, + "step": 390 + }, + { + "epoch": 5.433377020532983, + "grad_norm": 0.5203922390937805, + "learning_rate": 0.0006, + "loss": 5.372265815734863, + "step": 391 + }, + { + "epoch": 5.447356924421145, + "grad_norm": 0.3768288195133209, + "learning_rate": 0.0006, + "loss": 5.360098838806152, + "step": 392 + }, + { + "epoch": 5.461336828309306, + "grad_norm": 0.4351063370704651, + "learning_rate": 0.0006, + "loss": 5.335975646972656, + "step": 393 + }, + { + "epoch": 5.4753167321974665, + "grad_norm": 0.2896139919757843, + "learning_rate": 0.0006, + "loss": 5.346682071685791, + "step": 394 + }, + { + "epoch": 5.489296636085627, + "grad_norm": 0.2662566602230072, + "learning_rate": 0.0006, + "loss": 5.333251953125, + "step": 395 + }, + { + "epoch": 5.503276539973788, + "grad_norm": 0.280273973941803, + "learning_rate": 0.0006, + "loss": 5.312076568603516, + "step": 396 + }, + { + "epoch": 5.517256443861949, + "grad_norm": 0.21964983642101288, + "learning_rate": 0.0006, + "loss": 5.263635635375977, + "step": 397 + }, + { + "epoch": 5.531236347750109, + "grad_norm": 0.29651233553886414, + "learning_rate": 0.0006, + "loss": 5.318051338195801, + "step": 398 + }, + { + "epoch": 5.54521625163827, + "grad_norm": 0.21481768786907196, + "learning_rate": 0.0006, + "loss": 5.341637134552002, + "step": 399 + }, + { + "epoch": 5.559196155526431, + "grad_norm": 0.22161990404129028, + "learning_rate": 0.0006, + "loss": 5.318016052246094, + "step": 400 + }, + { + "epoch": 5.573176059414592, + "grad_norm": 0.19657786190509796, + "learning_rate": 0.0006, + "loss": 5.276092529296875, + "step": 401 + }, + { + "epoch": 5.587155963302752, + "grad_norm": 0.1873786449432373, + "learning_rate": 0.0006, + "loss": 5.254619598388672, + "step": 402 + }, + { + "epoch": 5.601135867190913, + "grad_norm": 0.17125310003757477, + "learning_rate": 0.0006, + "loss": 5.273725509643555, + "step": 403 + }, + { + "epoch": 5.615115771079074, + "grad_norm": 0.17360703647136688, + "learning_rate": 0.0006, + "loss": 5.270143985748291, + "step": 404 + }, + { + "epoch": 5.6290956749672345, + "grad_norm": 0.1767716407775879, + "learning_rate": 0.0006, + "loss": 5.2658514976501465, + "step": 405 + }, + { + "epoch": 5.643075578855395, + "grad_norm": 0.1641116738319397, + "learning_rate": 0.0006, + "loss": 5.268341064453125, + "step": 406 + }, + { + "epoch": 5.657055482743556, + "grad_norm": 0.1899251490831375, + "learning_rate": 0.0006, + "loss": 5.240801811218262, + "step": 407 + }, + { + "epoch": 5.671035386631717, + "grad_norm": 0.16789951920509338, + "learning_rate": 0.0006, + "loss": 5.268322944641113, + "step": 408 + }, + { + "epoch": 5.685015290519877, + "grad_norm": 0.19181910157203674, + "learning_rate": 0.0006, + "loss": 5.27138614654541, + "step": 409 + }, + { + "epoch": 5.698995194408038, + "grad_norm": 0.2463648021221161, + "learning_rate": 0.0006, + "loss": 5.2421112060546875, + "step": 410 + }, + { + "epoch": 5.712975098296199, + "grad_norm": 0.3164342939853668, + "learning_rate": 0.0006, + "loss": 5.242852687835693, + "step": 411 + }, + { + "epoch": 5.72695500218436, + "grad_norm": 0.44036227464675903, + "learning_rate": 0.0006, + "loss": 5.266933917999268, + "step": 412 + }, + { + "epoch": 5.740934906072521, + "grad_norm": 0.4030512869358063, + "learning_rate": 0.0006, + "loss": 5.237067222595215, + "step": 413 + }, + { + "epoch": 5.754914809960681, + "grad_norm": 0.2521255910396576, + "learning_rate": 0.0006, + "loss": 5.247879981994629, + "step": 414 + }, + { + "epoch": 5.768894713848843, + "grad_norm": 0.40962857007980347, + "learning_rate": 0.0006, + "loss": 5.249476909637451, + "step": 415 + }, + { + "epoch": 5.782874617737003, + "grad_norm": 0.45092275738716125, + "learning_rate": 0.0006, + "loss": 5.266834259033203, + "step": 416 + }, + { + "epoch": 5.796854521625164, + "grad_norm": 0.5284949541091919, + "learning_rate": 0.0006, + "loss": 5.22920036315918, + "step": 417 + }, + { + "epoch": 5.810834425513325, + "grad_norm": 0.5134056806564331, + "learning_rate": 0.0006, + "loss": 5.22990608215332, + "step": 418 + }, + { + "epoch": 5.824814329401486, + "grad_norm": 0.47271236777305603, + "learning_rate": 0.0006, + "loss": 5.25111198425293, + "step": 419 + }, + { + "epoch": 5.838794233289646, + "grad_norm": 0.35121920704841614, + "learning_rate": 0.0006, + "loss": 5.219430446624756, + "step": 420 + }, + { + "epoch": 5.852774137177807, + "grad_norm": 0.39061152935028076, + "learning_rate": 0.0006, + "loss": 5.270054817199707, + "step": 421 + }, + { + "epoch": 5.866754041065968, + "grad_norm": 0.33715614676475525, + "learning_rate": 0.0006, + "loss": 5.23402214050293, + "step": 422 + }, + { + "epoch": 5.8807339449541285, + "grad_norm": 0.2697547376155853, + "learning_rate": 0.0006, + "loss": 5.21314811706543, + "step": 423 + }, + { + "epoch": 5.894713848842289, + "grad_norm": 0.2797115743160248, + "learning_rate": 0.0006, + "loss": 5.204050540924072, + "step": 424 + }, + { + "epoch": 5.90869375273045, + "grad_norm": 0.2348587065935135, + "learning_rate": 0.0006, + "loss": 5.189853668212891, + "step": 425 + }, + { + "epoch": 5.922673656618611, + "grad_norm": 0.21098920702934265, + "learning_rate": 0.0006, + "loss": 5.167665481567383, + "step": 426 + }, + { + "epoch": 5.936653560506771, + "grad_norm": 0.2540168762207031, + "learning_rate": 0.0006, + "loss": 5.216606140136719, + "step": 427 + }, + { + "epoch": 5.950633464394932, + "grad_norm": 0.4111934006214142, + "learning_rate": 0.0006, + "loss": 5.211727619171143, + "step": 428 + }, + { + "epoch": 5.964613368283093, + "grad_norm": 0.5577383637428284, + "learning_rate": 0.0006, + "loss": 5.193538665771484, + "step": 429 + }, + { + "epoch": 5.978593272171254, + "grad_norm": 0.45584216713905334, + "learning_rate": 0.0006, + "loss": 5.201819896697998, + "step": 430 + }, + { + "epoch": 5.992573176059414, + "grad_norm": 0.3684179186820984, + "learning_rate": 0.0006, + "loss": 5.187817573547363, + "step": 431 + }, + { + "epoch": 6.0, + "grad_norm": 0.33832648396492004, + "learning_rate": 0.0006, + "loss": 5.159699440002441, + "step": 432 + }, + { + "epoch": 6.0, + "eval_loss": 5.65656042098999, + "eval_runtime": 44.8827, + "eval_samples_per_second": 54.408, + "eval_steps_per_second": 3.409, + "step": 432 + }, + { + "epoch": 6.013979903888161, + "grad_norm": 0.28319334983825684, + "learning_rate": 0.0006, + "loss": 5.169412136077881, + "step": 433 + }, + { + "epoch": 6.0279598077763215, + "grad_norm": 0.27274447679519653, + "learning_rate": 0.0006, + "loss": 5.1652984619140625, + "step": 434 + }, + { + "epoch": 6.041939711664482, + "grad_norm": 0.23810626566410065, + "learning_rate": 0.0006, + "loss": 5.164660453796387, + "step": 435 + }, + { + "epoch": 6.055919615552643, + "grad_norm": 0.2690078318119049, + "learning_rate": 0.0006, + "loss": 5.167169570922852, + "step": 436 + }, + { + "epoch": 6.069899519440804, + "grad_norm": 0.26710227131843567, + "learning_rate": 0.0006, + "loss": 5.142658233642578, + "step": 437 + }, + { + "epoch": 6.083879423328964, + "grad_norm": 0.27560192346572876, + "learning_rate": 0.0006, + "loss": 5.147872447967529, + "step": 438 + }, + { + "epoch": 6.097859327217125, + "grad_norm": 0.2350013107061386, + "learning_rate": 0.0006, + "loss": 5.117029666900635, + "step": 439 + }, + { + "epoch": 6.111839231105286, + "grad_norm": 0.24270233511924744, + "learning_rate": 0.0006, + "loss": 5.123678207397461, + "step": 440 + }, + { + "epoch": 6.1258191349934465, + "grad_norm": 0.28088366985321045, + "learning_rate": 0.0006, + "loss": 5.140979766845703, + "step": 441 + }, + { + "epoch": 6.139799038881607, + "grad_norm": 0.39833953976631165, + "learning_rate": 0.0006, + "loss": 5.134669303894043, + "step": 442 + }, + { + "epoch": 6.153778942769769, + "grad_norm": 0.512737512588501, + "learning_rate": 0.0006, + "loss": 5.137036323547363, + "step": 443 + }, + { + "epoch": 6.16775884665793, + "grad_norm": 0.5143146514892578, + "learning_rate": 0.0006, + "loss": 5.153923511505127, + "step": 444 + }, + { + "epoch": 6.18173875054609, + "grad_norm": 0.5098822712898254, + "learning_rate": 0.0006, + "loss": 5.147340774536133, + "step": 445 + }, + { + "epoch": 6.195718654434251, + "grad_norm": 0.5363528728485107, + "learning_rate": 0.0006, + "loss": 5.140152931213379, + "step": 446 + }, + { + "epoch": 6.209698558322412, + "grad_norm": 0.4591251611709595, + "learning_rate": 0.0006, + "loss": 5.137154579162598, + "step": 447 + }, + { + "epoch": 6.2236784622105725, + "grad_norm": 0.4227644205093384, + "learning_rate": 0.0006, + "loss": 5.149158477783203, + "step": 448 + }, + { + "epoch": 6.237658366098733, + "grad_norm": 0.3289780914783478, + "learning_rate": 0.0006, + "loss": 5.149476051330566, + "step": 449 + }, + { + "epoch": 6.251638269986894, + "grad_norm": 0.31414932012557983, + "learning_rate": 0.0006, + "loss": 5.120594501495361, + "step": 450 + }, + { + "epoch": 6.265618173875055, + "grad_norm": 0.38076063990592957, + "learning_rate": 0.0006, + "loss": 5.106667518615723, + "step": 451 + }, + { + "epoch": 6.279598077763215, + "grad_norm": 0.4009772539138794, + "learning_rate": 0.0006, + "loss": 5.154749870300293, + "step": 452 + }, + { + "epoch": 6.293577981651376, + "grad_norm": 0.4306659698486328, + "learning_rate": 0.0006, + "loss": 5.110680103302002, + "step": 453 + }, + { + "epoch": 6.307557885539537, + "grad_norm": 0.51460200548172, + "learning_rate": 0.0006, + "loss": 5.114797592163086, + "step": 454 + }, + { + "epoch": 6.321537789427698, + "grad_norm": 0.5426585078239441, + "learning_rate": 0.0006, + "loss": 5.149298667907715, + "step": 455 + }, + { + "epoch": 6.335517693315858, + "grad_norm": 0.38208484649658203, + "learning_rate": 0.0006, + "loss": 5.103266716003418, + "step": 456 + }, + { + "epoch": 6.349497597204019, + "grad_norm": 0.40724101662635803, + "learning_rate": 0.0006, + "loss": 5.096540451049805, + "step": 457 + }, + { + "epoch": 6.36347750109218, + "grad_norm": 0.4366343915462494, + "learning_rate": 0.0006, + "loss": 5.1345672607421875, + "step": 458 + }, + { + "epoch": 6.3774574049803405, + "grad_norm": 0.40988048911094666, + "learning_rate": 0.0006, + "loss": 5.099727630615234, + "step": 459 + }, + { + "epoch": 6.391437308868501, + "grad_norm": 0.3361259698867798, + "learning_rate": 0.0006, + "loss": 5.110654830932617, + "step": 460 + }, + { + "epoch": 6.405417212756662, + "grad_norm": 0.35969865322113037, + "learning_rate": 0.0006, + "loss": 5.086739540100098, + "step": 461 + }, + { + "epoch": 6.419397116644823, + "grad_norm": 0.31869885325431824, + "learning_rate": 0.0006, + "loss": 5.06304931640625, + "step": 462 + }, + { + "epoch": 6.433377020532983, + "grad_norm": 0.28050491213798523, + "learning_rate": 0.0006, + "loss": 5.083067417144775, + "step": 463 + }, + { + "epoch": 6.447356924421145, + "grad_norm": 0.2742737829685211, + "learning_rate": 0.0006, + "loss": 5.055249214172363, + "step": 464 + }, + { + "epoch": 6.461336828309306, + "grad_norm": 0.3259721100330353, + "learning_rate": 0.0006, + "loss": 5.060327053070068, + "step": 465 + }, + { + "epoch": 6.4753167321974665, + "grad_norm": 0.34445321559906006, + "learning_rate": 0.0006, + "loss": 5.058578968048096, + "step": 466 + }, + { + "epoch": 6.489296636085627, + "grad_norm": 0.36496517062187195, + "learning_rate": 0.0006, + "loss": 5.072618007659912, + "step": 467 + }, + { + "epoch": 6.503276539973788, + "grad_norm": 0.39951857924461365, + "learning_rate": 0.0006, + "loss": 5.061452388763428, + "step": 468 + }, + { + "epoch": 6.517256443861949, + "grad_norm": 0.3279382288455963, + "learning_rate": 0.0006, + "loss": 5.0442986488342285, + "step": 469 + }, + { + "epoch": 6.531236347750109, + "grad_norm": 0.26856809854507446, + "learning_rate": 0.0006, + "loss": 5.0767130851745605, + "step": 470 + }, + { + "epoch": 6.54521625163827, + "grad_norm": 0.2772379517555237, + "learning_rate": 0.0006, + "loss": 5.058677673339844, + "step": 471 + }, + { + "epoch": 6.559196155526431, + "grad_norm": 0.2842617332935333, + "learning_rate": 0.0006, + "loss": 5.060102462768555, + "step": 472 + }, + { + "epoch": 6.573176059414592, + "grad_norm": 0.2925136685371399, + "learning_rate": 0.0006, + "loss": 5.032697677612305, + "step": 473 + }, + { + "epoch": 6.587155963302752, + "grad_norm": 0.311104953289032, + "learning_rate": 0.0006, + "loss": 5.070380210876465, + "step": 474 + }, + { + "epoch": 6.601135867190913, + "grad_norm": 0.2868396043777466, + "learning_rate": 0.0006, + "loss": 5.04965877532959, + "step": 475 + }, + { + "epoch": 6.615115771079074, + "grad_norm": 0.3308505117893219, + "learning_rate": 0.0006, + "loss": 5.028569221496582, + "step": 476 + }, + { + "epoch": 6.6290956749672345, + "grad_norm": 0.33194515109062195, + "learning_rate": 0.0006, + "loss": 5.041112899780273, + "step": 477 + }, + { + "epoch": 6.643075578855395, + "grad_norm": 0.2416166216135025, + "learning_rate": 0.0006, + "loss": 5.032440662384033, + "step": 478 + }, + { + "epoch": 6.657055482743556, + "grad_norm": 0.3121211528778076, + "learning_rate": 0.0006, + "loss": 5.035650730133057, + "step": 479 + }, + { + "epoch": 6.671035386631717, + "grad_norm": 0.24396735429763794, + "learning_rate": 0.0006, + "loss": 4.998696804046631, + "step": 480 + }, + { + "epoch": 6.685015290519877, + "grad_norm": 0.243404358625412, + "learning_rate": 0.0006, + "loss": 5.0138654708862305, + "step": 481 + }, + { + "epoch": 6.698995194408038, + "grad_norm": 0.2625369727611542, + "learning_rate": 0.0006, + "loss": 5.033901214599609, + "step": 482 + }, + { + "epoch": 6.712975098296199, + "grad_norm": 0.25441524386405945, + "learning_rate": 0.0006, + "loss": 5.016387939453125, + "step": 483 + }, + { + "epoch": 6.72695500218436, + "grad_norm": 0.23259177803993225, + "learning_rate": 0.0006, + "loss": 5.005940914154053, + "step": 484 + }, + { + "epoch": 6.740934906072521, + "grad_norm": 0.2813487946987152, + "learning_rate": 0.0006, + "loss": 5.027700424194336, + "step": 485 + }, + { + "epoch": 6.754914809960681, + "grad_norm": 0.3429144620895386, + "learning_rate": 0.0006, + "loss": 5.0253705978393555, + "step": 486 + }, + { + "epoch": 6.768894713848843, + "grad_norm": 0.35462746024131775, + "learning_rate": 0.0006, + "loss": 5.00959587097168, + "step": 487 + }, + { + "epoch": 6.782874617737003, + "grad_norm": 0.3147154450416565, + "learning_rate": 0.0006, + "loss": 4.998355865478516, + "step": 488 + }, + { + "epoch": 6.796854521625164, + "grad_norm": 0.32631629705429077, + "learning_rate": 0.0006, + "loss": 4.9726667404174805, + "step": 489 + }, + { + "epoch": 6.810834425513325, + "grad_norm": 0.4537436068058014, + "learning_rate": 0.0006, + "loss": 5.0143890380859375, + "step": 490 + }, + { + "epoch": 6.824814329401486, + "grad_norm": 0.49248629808425903, + "learning_rate": 0.0006, + "loss": 5.043474197387695, + "step": 491 + }, + { + "epoch": 6.838794233289646, + "grad_norm": 0.5253593325614929, + "learning_rate": 0.0006, + "loss": 5.019016265869141, + "step": 492 + }, + { + "epoch": 6.852774137177807, + "grad_norm": 0.6146247386932373, + "learning_rate": 0.0006, + "loss": 5.032824516296387, + "step": 493 + }, + { + "epoch": 6.866754041065968, + "grad_norm": 0.6873838901519775, + "learning_rate": 0.0006, + "loss": 5.047938823699951, + "step": 494 + }, + { + "epoch": 6.8807339449541285, + "grad_norm": 0.5881273150444031, + "learning_rate": 0.0006, + "loss": 5.025626182556152, + "step": 495 + }, + { + "epoch": 6.894713848842289, + "grad_norm": 0.580244779586792, + "learning_rate": 0.0006, + "loss": 5.040672779083252, + "step": 496 + }, + { + "epoch": 6.90869375273045, + "grad_norm": 0.6916189193725586, + "learning_rate": 0.0006, + "loss": 5.043692588806152, + "step": 497 + }, + { + "epoch": 6.922673656618611, + "grad_norm": 0.6489223837852478, + "learning_rate": 0.0006, + "loss": 5.0410356521606445, + "step": 498 + }, + { + "epoch": 6.936653560506771, + "grad_norm": 0.4765934944152832, + "learning_rate": 0.0006, + "loss": 5.002742767333984, + "step": 499 + }, + { + "epoch": 6.950633464394932, + "grad_norm": 0.4530962109565735, + "learning_rate": 0.0006, + "loss": 5.0266242027282715, + "step": 500 + }, + { + "epoch": 6.964613368283093, + "grad_norm": 0.46301135420799255, + "learning_rate": 0.0006, + "loss": 5.022403240203857, + "step": 501 + }, + { + "epoch": 6.978593272171254, + "grad_norm": 0.4984952211380005, + "learning_rate": 0.0006, + "loss": 5.052414894104004, + "step": 502 + }, + { + "epoch": 6.992573176059414, + "grad_norm": 0.520504891872406, + "learning_rate": 0.0006, + "loss": 4.985504150390625, + "step": 503 + }, + { + "epoch": 7.0, + "grad_norm": 0.4834364652633667, + "learning_rate": 0.0006, + "loss": 5.0318379402160645, + "step": 504 + }, + { + "epoch": 7.0, + "eval_loss": 5.407356262207031, + "eval_runtime": 44.8211, + "eval_samples_per_second": 54.483, + "eval_steps_per_second": 3.414, + "step": 504 + }, + { + "epoch": 7.013979903888161, + "grad_norm": 0.4238545298576355, + "learning_rate": 0.0006, + "loss": 4.970654487609863, + "step": 505 + }, + { + "epoch": 7.0279598077763215, + "grad_norm": 0.35939696431159973, + "learning_rate": 0.0006, + "loss": 4.986080169677734, + "step": 506 + }, + { + "epoch": 7.041939711664482, + "grad_norm": 0.31826189160346985, + "learning_rate": 0.0006, + "loss": 4.979839324951172, + "step": 507 + }, + { + "epoch": 7.055919615552643, + "grad_norm": 0.2516906261444092, + "learning_rate": 0.0006, + "loss": 4.980587959289551, + "step": 508 + }, + { + "epoch": 7.069899519440804, + "grad_norm": 0.22754812240600586, + "learning_rate": 0.0006, + "loss": 4.9552483558654785, + "step": 509 + }, + { + "epoch": 7.083879423328964, + "grad_norm": 0.2411656379699707, + "learning_rate": 0.0006, + "loss": 4.910289764404297, + "step": 510 + }, + { + "epoch": 7.097859327217125, + "grad_norm": 0.23447147011756897, + "learning_rate": 0.0006, + "loss": 4.994990348815918, + "step": 511 + }, + { + "epoch": 7.111839231105286, + "grad_norm": 0.24969954788684845, + "learning_rate": 0.0006, + "loss": 4.946930885314941, + "step": 512 + }, + { + "epoch": 7.1258191349934465, + "grad_norm": 0.25156694650650024, + "learning_rate": 0.0006, + "loss": 4.970363140106201, + "step": 513 + }, + { + "epoch": 7.139799038881607, + "grad_norm": 0.21003784239292145, + "learning_rate": 0.0006, + "loss": 4.942216396331787, + "step": 514 + }, + { + "epoch": 7.153778942769769, + "grad_norm": 0.18240898847579956, + "learning_rate": 0.0006, + "loss": 4.956629276275635, + "step": 515 + }, + { + "epoch": 7.16775884665793, + "grad_norm": 0.1866394728422165, + "learning_rate": 0.0006, + "loss": 4.907327651977539, + "step": 516 + }, + { + "epoch": 7.18173875054609, + "grad_norm": 0.17902705073356628, + "learning_rate": 0.0006, + "loss": 4.924283027648926, + "step": 517 + }, + { + "epoch": 7.195718654434251, + "grad_norm": 0.14950136840343475, + "learning_rate": 0.0006, + "loss": 4.913711071014404, + "step": 518 + }, + { + "epoch": 7.209698558322412, + "grad_norm": 0.16488994657993317, + "learning_rate": 0.0006, + "loss": 4.9244794845581055, + "step": 519 + }, + { + "epoch": 7.2236784622105725, + "grad_norm": 0.16512517631053925, + "learning_rate": 0.0006, + "loss": 4.923005104064941, + "step": 520 + }, + { + "epoch": 7.237658366098733, + "grad_norm": 0.1667879968881607, + "learning_rate": 0.0006, + "loss": 4.919625282287598, + "step": 521 + }, + { + "epoch": 7.251638269986894, + "grad_norm": 0.16088274121284485, + "learning_rate": 0.0006, + "loss": 4.89670467376709, + "step": 522 + }, + { + "epoch": 7.265618173875055, + "grad_norm": 0.19934238493442535, + "learning_rate": 0.0006, + "loss": 4.917089462280273, + "step": 523 + }, + { + "epoch": 7.279598077763215, + "grad_norm": 0.1852923035621643, + "learning_rate": 0.0006, + "loss": 4.880041122436523, + "step": 524 + }, + { + "epoch": 7.293577981651376, + "grad_norm": 0.20981548726558685, + "learning_rate": 0.0006, + "loss": 4.874484539031982, + "step": 525 + }, + { + "epoch": 7.307557885539537, + "grad_norm": 0.24377070367336273, + "learning_rate": 0.0006, + "loss": 4.905120849609375, + "step": 526 + }, + { + "epoch": 7.321537789427698, + "grad_norm": 0.3011840879917145, + "learning_rate": 0.0006, + "loss": 4.902167797088623, + "step": 527 + }, + { + "epoch": 7.335517693315858, + "grad_norm": 0.3169498145580292, + "learning_rate": 0.0006, + "loss": 4.896087646484375, + "step": 528 + }, + { + "epoch": 7.349497597204019, + "grad_norm": 0.32574084401130676, + "learning_rate": 0.0006, + "loss": 4.896472930908203, + "step": 529 + }, + { + "epoch": 7.36347750109218, + "grad_norm": 0.36804062128067017, + "learning_rate": 0.0006, + "loss": 4.8834638595581055, + "step": 530 + }, + { + "epoch": 7.3774574049803405, + "grad_norm": 0.37534013390541077, + "learning_rate": 0.0006, + "loss": 4.868513107299805, + "step": 531 + }, + { + "epoch": 7.391437308868501, + "grad_norm": 0.38654762506484985, + "learning_rate": 0.0006, + "loss": 4.875488758087158, + "step": 532 + }, + { + "epoch": 7.405417212756662, + "grad_norm": 0.437599241733551, + "learning_rate": 0.0006, + "loss": 4.893705368041992, + "step": 533 + }, + { + "epoch": 7.419397116644823, + "grad_norm": 0.4524136185646057, + "learning_rate": 0.0006, + "loss": 4.884510040283203, + "step": 534 + }, + { + "epoch": 7.433377020532983, + "grad_norm": 0.38379549980163574, + "learning_rate": 0.0006, + "loss": 4.900652885437012, + "step": 535 + }, + { + "epoch": 7.447356924421145, + "grad_norm": 0.4193646311759949, + "learning_rate": 0.0006, + "loss": 4.855362892150879, + "step": 536 + }, + { + "epoch": 7.461336828309306, + "grad_norm": 0.46895357966423035, + "learning_rate": 0.0006, + "loss": 4.8988447189331055, + "step": 537 + }, + { + "epoch": 7.4753167321974665, + "grad_norm": 0.50804203748703, + "learning_rate": 0.0006, + "loss": 4.886910438537598, + "step": 538 + }, + { + "epoch": 7.489296636085627, + "grad_norm": 0.4749142527580261, + "learning_rate": 0.0006, + "loss": 4.905720233917236, + "step": 539 + }, + { + "epoch": 7.503276539973788, + "grad_norm": 0.48084911704063416, + "learning_rate": 0.0006, + "loss": 4.8723955154418945, + "step": 540 + }, + { + "epoch": 7.517256443861949, + "grad_norm": 0.4447539448738098, + "learning_rate": 0.0006, + "loss": 4.872392654418945, + "step": 541 + }, + { + "epoch": 7.531236347750109, + "grad_norm": 0.49662983417510986, + "learning_rate": 0.0006, + "loss": 4.875853538513184, + "step": 542 + }, + { + "epoch": 7.54521625163827, + "grad_norm": 0.5019535422325134, + "learning_rate": 0.0006, + "loss": 4.868612766265869, + "step": 543 + }, + { + "epoch": 7.559196155526431, + "grad_norm": 0.5525497198104858, + "learning_rate": 0.0006, + "loss": 4.898090362548828, + "step": 544 + }, + { + "epoch": 7.573176059414592, + "grad_norm": 0.47351905703544617, + "learning_rate": 0.0006, + "loss": 4.868975639343262, + "step": 545 + }, + { + "epoch": 7.587155963302752, + "grad_norm": 0.3922392427921295, + "learning_rate": 0.0006, + "loss": 4.8706560134887695, + "step": 546 + }, + { + "epoch": 7.601135867190913, + "grad_norm": 0.43398618698120117, + "learning_rate": 0.0006, + "loss": 4.875341415405273, + "step": 547 + }, + { + "epoch": 7.615115771079074, + "grad_norm": 0.4257465600967407, + "learning_rate": 0.0006, + "loss": 4.863061904907227, + "step": 548 + }, + { + "epoch": 7.6290956749672345, + "grad_norm": 0.4469149708747864, + "learning_rate": 0.0006, + "loss": 4.88160514831543, + "step": 549 + }, + { + "epoch": 7.643075578855395, + "grad_norm": 0.4502435028553009, + "learning_rate": 0.0006, + "loss": 4.875290393829346, + "step": 550 + }, + { + "epoch": 7.657055482743556, + "grad_norm": 0.32791194319725037, + "learning_rate": 0.0006, + "loss": 4.865719318389893, + "step": 551 + }, + { + "epoch": 7.671035386631717, + "grad_norm": 0.32651466131210327, + "learning_rate": 0.0006, + "loss": 4.845975399017334, + "step": 552 + }, + { + "epoch": 7.685015290519877, + "grad_norm": 0.26353001594543457, + "learning_rate": 0.0006, + "loss": 4.860365867614746, + "step": 553 + }, + { + "epoch": 7.698995194408038, + "grad_norm": 0.3177102208137512, + "learning_rate": 0.0006, + "loss": 4.821722030639648, + "step": 554 + }, + { + "epoch": 7.712975098296199, + "grad_norm": 0.3329813480377197, + "learning_rate": 0.0006, + "loss": 4.843935966491699, + "step": 555 + }, + { + "epoch": 7.72695500218436, + "grad_norm": 0.2309340089559555, + "learning_rate": 0.0006, + "loss": 4.8115081787109375, + "step": 556 + }, + { + "epoch": 7.740934906072521, + "grad_norm": 0.26614755392074585, + "learning_rate": 0.0006, + "loss": 4.817134857177734, + "step": 557 + }, + { + "epoch": 7.754914809960681, + "grad_norm": 0.2658933997154236, + "learning_rate": 0.0006, + "loss": 4.805020809173584, + "step": 558 + }, + { + "epoch": 7.768894713848843, + "grad_norm": 0.24122639000415802, + "learning_rate": 0.0006, + "loss": 4.799045562744141, + "step": 559 + }, + { + "epoch": 7.782874617737003, + "grad_norm": 0.2042415589094162, + "learning_rate": 0.0006, + "loss": 4.84511661529541, + "step": 560 + }, + { + "epoch": 7.796854521625164, + "grad_norm": 0.21411670744419098, + "learning_rate": 0.0006, + "loss": 4.786057472229004, + "step": 561 + }, + { + "epoch": 7.810834425513325, + "grad_norm": 0.21434316039085388, + "learning_rate": 0.0006, + "loss": 4.79664421081543, + "step": 562 + }, + { + "epoch": 7.824814329401486, + "grad_norm": 0.2112381011247635, + "learning_rate": 0.0006, + "loss": 4.794294357299805, + "step": 563 + }, + { + "epoch": 7.838794233289646, + "grad_norm": 0.1973763257265091, + "learning_rate": 0.0006, + "loss": 4.815515518188477, + "step": 564 + }, + { + "epoch": 7.852774137177807, + "grad_norm": 0.1998385339975357, + "learning_rate": 0.0006, + "loss": 4.776802062988281, + "step": 565 + }, + { + "epoch": 7.866754041065968, + "grad_norm": 0.23285631835460663, + "learning_rate": 0.0006, + "loss": 4.801111221313477, + "step": 566 + }, + { + "epoch": 7.8807339449541285, + "grad_norm": 0.26676565408706665, + "learning_rate": 0.0006, + "loss": 4.816926002502441, + "step": 567 + }, + { + "epoch": 7.894713848842289, + "grad_norm": 0.25903627276420593, + "learning_rate": 0.0006, + "loss": 4.776778697967529, + "step": 568 + }, + { + "epoch": 7.90869375273045, + "grad_norm": 0.24624629318714142, + "learning_rate": 0.0006, + "loss": 4.7751970291137695, + "step": 569 + }, + { + "epoch": 7.922673656618611, + "grad_norm": 0.22167319059371948, + "learning_rate": 0.0006, + "loss": 4.7803850173950195, + "step": 570 + }, + { + "epoch": 7.936653560506771, + "grad_norm": 0.23212431371212006, + "learning_rate": 0.0006, + "loss": 4.756355285644531, + "step": 571 + }, + { + "epoch": 7.950633464394932, + "grad_norm": 0.2650107741355896, + "learning_rate": 0.0006, + "loss": 4.7806878089904785, + "step": 572 + }, + { + "epoch": 7.964613368283093, + "grad_norm": 0.33602288365364075, + "learning_rate": 0.0006, + "loss": 4.778675079345703, + "step": 573 + }, + { + "epoch": 7.978593272171254, + "grad_norm": 0.31257855892181396, + "learning_rate": 0.0006, + "loss": 4.7780656814575195, + "step": 574 + }, + { + "epoch": 7.992573176059414, + "grad_norm": 0.31817707419395447, + "learning_rate": 0.0006, + "loss": 4.7830657958984375, + "step": 575 + }, + { + "epoch": 8.0, + "grad_norm": 0.36116358637809753, + "learning_rate": 0.0006, + "loss": 4.759934425354004, + "step": 576 + }, + { + "epoch": 8.0, + "eval_loss": 5.100707530975342, + "eval_runtime": 44.2493, + "eval_samples_per_second": 55.187, + "eval_steps_per_second": 3.458, + "step": 576 + }, + { + "epoch": 8.013979903888162, + "grad_norm": 0.3658510148525238, + "learning_rate": 0.0006, + "loss": 4.759055137634277, + "step": 577 + }, + { + "epoch": 8.027959807776321, + "grad_norm": 0.41794446110725403, + "learning_rate": 0.0006, + "loss": 4.737661838531494, + "step": 578 + }, + { + "epoch": 8.041939711664483, + "grad_norm": 0.43284085392951965, + "learning_rate": 0.0006, + "loss": 4.775538444519043, + "step": 579 + }, + { + "epoch": 8.055919615552643, + "grad_norm": 0.4716675281524658, + "learning_rate": 0.0006, + "loss": 4.762231826782227, + "step": 580 + }, + { + "epoch": 8.069899519440805, + "grad_norm": 0.3849579393863678, + "learning_rate": 0.0006, + "loss": 4.753598690032959, + "step": 581 + }, + { + "epoch": 8.083879423328964, + "grad_norm": 0.3721151053905487, + "learning_rate": 0.0006, + "loss": 4.728978157043457, + "step": 582 + }, + { + "epoch": 8.097859327217126, + "grad_norm": 0.37009572982788086, + "learning_rate": 0.0006, + "loss": 4.759153366088867, + "step": 583 + }, + { + "epoch": 8.111839231105286, + "grad_norm": 0.37051302194595337, + "learning_rate": 0.0006, + "loss": 4.744197368621826, + "step": 584 + }, + { + "epoch": 8.125819134993447, + "grad_norm": 0.331238329410553, + "learning_rate": 0.0006, + "loss": 4.7338385581970215, + "step": 585 + }, + { + "epoch": 8.139799038881607, + "grad_norm": 0.3737713694572449, + "learning_rate": 0.0006, + "loss": 4.719110488891602, + "step": 586 + }, + { + "epoch": 8.153778942769769, + "grad_norm": 0.3713214695453644, + "learning_rate": 0.0006, + "loss": 4.734012126922607, + "step": 587 + }, + { + "epoch": 8.167758846657929, + "grad_norm": 0.4060780107975006, + "learning_rate": 0.0006, + "loss": 4.746830940246582, + "step": 588 + }, + { + "epoch": 8.18173875054609, + "grad_norm": 0.39814314246177673, + "learning_rate": 0.0006, + "loss": 4.722851753234863, + "step": 589 + }, + { + "epoch": 8.19571865443425, + "grad_norm": 0.3175652325153351, + "learning_rate": 0.0006, + "loss": 4.745110034942627, + "step": 590 + }, + { + "epoch": 8.209698558322412, + "grad_norm": 0.37214916944503784, + "learning_rate": 0.0006, + "loss": 4.7362775802612305, + "step": 591 + }, + { + "epoch": 8.223678462210572, + "grad_norm": 0.3873472809791565, + "learning_rate": 0.0006, + "loss": 4.738964557647705, + "step": 592 + }, + { + "epoch": 8.237658366098733, + "grad_norm": 0.3299207091331482, + "learning_rate": 0.0006, + "loss": 4.713451385498047, + "step": 593 + }, + { + "epoch": 8.251638269986893, + "grad_norm": 0.32445064187049866, + "learning_rate": 0.0006, + "loss": 4.725602149963379, + "step": 594 + }, + { + "epoch": 8.265618173875055, + "grad_norm": 0.32903164625167847, + "learning_rate": 0.0006, + "loss": 4.732064247131348, + "step": 595 + }, + { + "epoch": 8.279598077763215, + "grad_norm": 0.3166804313659668, + "learning_rate": 0.0006, + "loss": 4.678950786590576, + "step": 596 + }, + { + "epoch": 8.293577981651376, + "grad_norm": 0.2750290334224701, + "learning_rate": 0.0006, + "loss": 4.719513416290283, + "step": 597 + }, + { + "epoch": 8.307557885539538, + "grad_norm": 0.291029691696167, + "learning_rate": 0.0006, + "loss": 4.715405464172363, + "step": 598 + }, + { + "epoch": 8.321537789427698, + "grad_norm": 0.34105145931243896, + "learning_rate": 0.0006, + "loss": 4.722611427307129, + "step": 599 + }, + { + "epoch": 8.33551769331586, + "grad_norm": 0.3078882694244385, + "learning_rate": 0.0006, + "loss": 4.668856620788574, + "step": 600 + }, + { + "epoch": 8.349497597204019, + "grad_norm": 0.3218833804130554, + "learning_rate": 0.0006, + "loss": 4.719579696655273, + "step": 601 + }, + { + "epoch": 8.36347750109218, + "grad_norm": 0.35716721415519714, + "learning_rate": 0.0006, + "loss": 4.690774440765381, + "step": 602 + }, + { + "epoch": 8.37745740498034, + "grad_norm": 0.3045452833175659, + "learning_rate": 0.0006, + "loss": 4.696503639221191, + "step": 603 + }, + { + "epoch": 8.391437308868502, + "grad_norm": 0.3127244710922241, + "learning_rate": 0.0006, + "loss": 4.701899528503418, + "step": 604 + }, + { + "epoch": 8.405417212756662, + "grad_norm": 0.34988710284233093, + "learning_rate": 0.0006, + "loss": 4.677641868591309, + "step": 605 + }, + { + "epoch": 8.419397116644824, + "grad_norm": 0.34035569429397583, + "learning_rate": 0.0006, + "loss": 4.707778453826904, + "step": 606 + }, + { + "epoch": 8.433377020532983, + "grad_norm": 0.3341112732887268, + "learning_rate": 0.0006, + "loss": 4.724853038787842, + "step": 607 + }, + { + "epoch": 8.447356924421145, + "grad_norm": 0.41744324564933777, + "learning_rate": 0.0006, + "loss": 4.680908203125, + "step": 608 + }, + { + "epoch": 8.461336828309305, + "grad_norm": 0.40402331948280334, + "learning_rate": 0.0006, + "loss": 4.726455211639404, + "step": 609 + }, + { + "epoch": 8.475316732197467, + "grad_norm": 0.4727570414543152, + "learning_rate": 0.0006, + "loss": 4.6793084144592285, + "step": 610 + }, + { + "epoch": 8.489296636085626, + "grad_norm": 0.43002694845199585, + "learning_rate": 0.0006, + "loss": 4.663918972015381, + "step": 611 + }, + { + "epoch": 8.503276539973788, + "grad_norm": 0.36124858260154724, + "learning_rate": 0.0006, + "loss": 4.657375335693359, + "step": 612 + }, + { + "epoch": 8.517256443861948, + "grad_norm": 0.37644803524017334, + "learning_rate": 0.0006, + "loss": 4.676977157592773, + "step": 613 + }, + { + "epoch": 8.53123634775011, + "grad_norm": 0.32347747683525085, + "learning_rate": 0.0006, + "loss": 4.708547115325928, + "step": 614 + }, + { + "epoch": 8.54521625163827, + "grad_norm": 0.3071717619895935, + "learning_rate": 0.0006, + "loss": 4.650189399719238, + "step": 615 + }, + { + "epoch": 8.55919615552643, + "grad_norm": 0.30222490429878235, + "learning_rate": 0.0006, + "loss": 4.647942543029785, + "step": 616 + }, + { + "epoch": 8.57317605941459, + "grad_norm": 0.31545212864875793, + "learning_rate": 0.0006, + "loss": 4.660242080688477, + "step": 617 + }, + { + "epoch": 8.587155963302752, + "grad_norm": 0.31644752621650696, + "learning_rate": 0.0006, + "loss": 4.666710376739502, + "step": 618 + }, + { + "epoch": 8.601135867190912, + "grad_norm": 0.26057198643684387, + "learning_rate": 0.0006, + "loss": 4.668096542358398, + "step": 619 + }, + { + "epoch": 8.615115771079074, + "grad_norm": 0.25473910570144653, + "learning_rate": 0.0006, + "loss": 4.641562461853027, + "step": 620 + }, + { + "epoch": 8.629095674967235, + "grad_norm": 0.2456732839345932, + "learning_rate": 0.0006, + "loss": 4.6545281410217285, + "step": 621 + }, + { + "epoch": 8.643075578855395, + "grad_norm": 0.25180476903915405, + "learning_rate": 0.0006, + "loss": 4.6506524085998535, + "step": 622 + }, + { + "epoch": 8.657055482743557, + "grad_norm": 0.21761579811573029, + "learning_rate": 0.0006, + "loss": 4.638909339904785, + "step": 623 + }, + { + "epoch": 8.671035386631717, + "grad_norm": 0.23590542376041412, + "learning_rate": 0.0006, + "loss": 4.6572747230529785, + "step": 624 + }, + { + "epoch": 8.685015290519878, + "grad_norm": 0.23870624601840973, + "learning_rate": 0.0006, + "loss": 4.643742084503174, + "step": 625 + }, + { + "epoch": 8.698995194408038, + "grad_norm": 0.2191203385591507, + "learning_rate": 0.0006, + "loss": 4.632617950439453, + "step": 626 + }, + { + "epoch": 8.7129750982962, + "grad_norm": 0.22107063233852386, + "learning_rate": 0.0006, + "loss": 4.625616073608398, + "step": 627 + }, + { + "epoch": 8.72695500218436, + "grad_norm": 0.20833902060985565, + "learning_rate": 0.0006, + "loss": 4.609896659851074, + "step": 628 + }, + { + "epoch": 8.740934906072521, + "grad_norm": 0.254967600107193, + "learning_rate": 0.0006, + "loss": 4.651735782623291, + "step": 629 + }, + { + "epoch": 8.754914809960681, + "grad_norm": 0.31587523221969604, + "learning_rate": 0.0006, + "loss": 4.6404032707214355, + "step": 630 + }, + { + "epoch": 8.768894713848843, + "grad_norm": 0.28598251938819885, + "learning_rate": 0.0006, + "loss": 4.602679252624512, + "step": 631 + }, + { + "epoch": 8.782874617737003, + "grad_norm": 0.23216590285301208, + "learning_rate": 0.0006, + "loss": 4.610319137573242, + "step": 632 + }, + { + "epoch": 8.796854521625164, + "grad_norm": 0.29212239384651184, + "learning_rate": 0.0006, + "loss": 4.600744247436523, + "step": 633 + }, + { + "epoch": 8.810834425513324, + "grad_norm": 0.3375801146030426, + "learning_rate": 0.0006, + "loss": 4.627819061279297, + "step": 634 + }, + { + "epoch": 8.824814329401486, + "grad_norm": 0.4207753837108612, + "learning_rate": 0.0006, + "loss": 4.634505271911621, + "step": 635 + }, + { + "epoch": 8.838794233289645, + "grad_norm": 0.4640173614025116, + "learning_rate": 0.0006, + "loss": 4.636714935302734, + "step": 636 + }, + { + "epoch": 8.852774137177807, + "grad_norm": 0.5255663990974426, + "learning_rate": 0.0006, + "loss": 4.659462928771973, + "step": 637 + }, + { + "epoch": 8.866754041065967, + "grad_norm": 0.5108268857002258, + "learning_rate": 0.0006, + "loss": 4.633192539215088, + "step": 638 + }, + { + "epoch": 8.880733944954128, + "grad_norm": 0.3821936845779419, + "learning_rate": 0.0006, + "loss": 4.621200084686279, + "step": 639 + }, + { + "epoch": 8.89471384884229, + "grad_norm": 0.3918485939502716, + "learning_rate": 0.0006, + "loss": 4.632599830627441, + "step": 640 + }, + { + "epoch": 8.90869375273045, + "grad_norm": 0.3416556119918823, + "learning_rate": 0.0006, + "loss": 4.620438098907471, + "step": 641 + }, + { + "epoch": 8.922673656618612, + "grad_norm": 0.3191553056240082, + "learning_rate": 0.0006, + "loss": 4.617823600769043, + "step": 642 + }, + { + "epoch": 8.936653560506771, + "grad_norm": 0.3368529677391052, + "learning_rate": 0.0006, + "loss": 4.617222785949707, + "step": 643 + }, + { + "epoch": 8.950633464394933, + "grad_norm": 0.3255428969860077, + "learning_rate": 0.0006, + "loss": 4.633878707885742, + "step": 644 + }, + { + "epoch": 8.964613368283093, + "grad_norm": 0.31394779682159424, + "learning_rate": 0.0006, + "loss": 4.642603874206543, + "step": 645 + }, + { + "epoch": 8.978593272171254, + "grad_norm": 0.29999351501464844, + "learning_rate": 0.0006, + "loss": 4.5925211906433105, + "step": 646 + }, + { + "epoch": 8.992573176059414, + "grad_norm": 0.309154748916626, + "learning_rate": 0.0006, + "loss": 4.61745023727417, + "step": 647 + }, + { + "epoch": 9.0, + "grad_norm": 0.2660452425479889, + "learning_rate": 0.0006, + "loss": 4.575107097625732, + "step": 648 + }, + { + "epoch": 9.0, + "eval_loss": 4.8804192543029785, + "eval_runtime": 45.0015, + "eval_samples_per_second": 54.265, + "eval_steps_per_second": 3.4, + "step": 648 + }, + { + "epoch": 9.013979903888162, + "grad_norm": 0.24159297347068787, + "learning_rate": 0.0006, + "loss": 4.571323871612549, + "step": 649 + }, + { + "epoch": 9.027959807776321, + "grad_norm": 0.2835831046104431, + "learning_rate": 0.0006, + "loss": 4.614255905151367, + "step": 650 + }, + { + "epoch": 9.041939711664483, + "grad_norm": 0.2646859288215637, + "learning_rate": 0.0006, + "loss": 4.578947067260742, + "step": 651 + }, + { + "epoch": 9.055919615552643, + "grad_norm": 0.28868553042411804, + "learning_rate": 0.0006, + "loss": 4.575977325439453, + "step": 652 + }, + { + "epoch": 9.069899519440805, + "grad_norm": 0.2899586856365204, + "learning_rate": 0.0006, + "loss": 4.541798114776611, + "step": 653 + }, + { + "epoch": 9.083879423328964, + "grad_norm": 0.32786068320274353, + "learning_rate": 0.0006, + "loss": 4.575140953063965, + "step": 654 + }, + { + "epoch": 9.097859327217126, + "grad_norm": 0.35675594210624695, + "learning_rate": 0.0006, + "loss": 4.58184814453125, + "step": 655 + }, + { + "epoch": 9.111839231105286, + "grad_norm": 0.3380381166934967, + "learning_rate": 0.0006, + "loss": 4.546271324157715, + "step": 656 + }, + { + "epoch": 9.125819134993447, + "grad_norm": 0.3035511374473572, + "learning_rate": 0.0006, + "loss": 4.591629981994629, + "step": 657 + }, + { + "epoch": 9.139799038881607, + "grad_norm": 0.2733091711997986, + "learning_rate": 0.0006, + "loss": 4.559020042419434, + "step": 658 + }, + { + "epoch": 9.153778942769769, + "grad_norm": 0.2870676815509796, + "learning_rate": 0.0006, + "loss": 4.552787780761719, + "step": 659 + }, + { + "epoch": 9.167758846657929, + "grad_norm": 0.37471064925193787, + "learning_rate": 0.0006, + "loss": 4.572757244110107, + "step": 660 + }, + { + "epoch": 9.18173875054609, + "grad_norm": 0.37889063358306885, + "learning_rate": 0.0006, + "loss": 4.573302268981934, + "step": 661 + }, + { + "epoch": 9.19571865443425, + "grad_norm": 0.29983851313591003, + "learning_rate": 0.0006, + "loss": 4.571202754974365, + "step": 662 + }, + { + "epoch": 9.209698558322412, + "grad_norm": 0.27595147490501404, + "learning_rate": 0.0006, + "loss": 4.529508590698242, + "step": 663 + }, + { + "epoch": 9.223678462210572, + "grad_norm": 0.22693437337875366, + "learning_rate": 0.0006, + "loss": 4.572267532348633, + "step": 664 + }, + { + "epoch": 9.237658366098733, + "grad_norm": 0.27147138118743896, + "learning_rate": 0.0006, + "loss": 4.529747009277344, + "step": 665 + }, + { + "epoch": 9.251638269986893, + "grad_norm": 0.24952703714370728, + "learning_rate": 0.0006, + "loss": 4.553647994995117, + "step": 666 + }, + { + "epoch": 9.265618173875055, + "grad_norm": 0.3086707592010498, + "learning_rate": 0.0006, + "loss": 4.494636058807373, + "step": 667 + }, + { + "epoch": 9.279598077763215, + "grad_norm": 0.3265218138694763, + "learning_rate": 0.0006, + "loss": 4.522481918334961, + "step": 668 + }, + { + "epoch": 9.293577981651376, + "grad_norm": 0.2744608223438263, + "learning_rate": 0.0006, + "loss": 4.544595241546631, + "step": 669 + }, + { + "epoch": 9.307557885539538, + "grad_norm": 0.26698485016822815, + "learning_rate": 0.0006, + "loss": 4.506407260894775, + "step": 670 + }, + { + "epoch": 9.321537789427698, + "grad_norm": 0.2775942087173462, + "learning_rate": 0.0006, + "loss": 4.534619331359863, + "step": 671 + }, + { + "epoch": 9.33551769331586, + "grad_norm": 0.2421862781047821, + "learning_rate": 0.0006, + "loss": 4.523318290710449, + "step": 672 + }, + { + "epoch": 9.349497597204019, + "grad_norm": 0.2756497263908386, + "learning_rate": 0.0006, + "loss": 4.517561912536621, + "step": 673 + }, + { + "epoch": 9.36347750109218, + "grad_norm": 0.28845369815826416, + "learning_rate": 0.0006, + "loss": 4.530844688415527, + "step": 674 + }, + { + "epoch": 9.37745740498034, + "grad_norm": 0.32285866141319275, + "learning_rate": 0.0006, + "loss": 4.55369758605957, + "step": 675 + }, + { + "epoch": 9.391437308868502, + "grad_norm": 0.3726065754890442, + "learning_rate": 0.0006, + "loss": 4.524348258972168, + "step": 676 + }, + { + "epoch": 9.405417212756662, + "grad_norm": 0.39524078369140625, + "learning_rate": 0.0006, + "loss": 4.535778045654297, + "step": 677 + }, + { + "epoch": 9.419397116644824, + "grad_norm": 0.3859797716140747, + "learning_rate": 0.0006, + "loss": 4.538474082946777, + "step": 678 + }, + { + "epoch": 9.433377020532983, + "grad_norm": 0.36151406168937683, + "learning_rate": 0.0006, + "loss": 4.54434061050415, + "step": 679 + }, + { + "epoch": 9.447356924421145, + "grad_norm": 0.40345999598503113, + "learning_rate": 0.0006, + "loss": 4.532961845397949, + "step": 680 + }, + { + "epoch": 9.461336828309305, + "grad_norm": 0.38864144682884216, + "learning_rate": 0.0006, + "loss": 4.567630767822266, + "step": 681 + }, + { + "epoch": 9.475316732197467, + "grad_norm": 0.3816355764865875, + "learning_rate": 0.0006, + "loss": 4.535771369934082, + "step": 682 + }, + { + "epoch": 9.489296636085626, + "grad_norm": 0.38756558299064636, + "learning_rate": 0.0006, + "loss": 4.4971089363098145, + "step": 683 + }, + { + "epoch": 9.503276539973788, + "grad_norm": 0.4572933614253998, + "learning_rate": 0.0006, + "loss": 4.534860134124756, + "step": 684 + }, + { + "epoch": 9.517256443861948, + "grad_norm": 0.42368650436401367, + "learning_rate": 0.0006, + "loss": 4.542638301849365, + "step": 685 + }, + { + "epoch": 9.53123634775011, + "grad_norm": 0.36939486861228943, + "learning_rate": 0.0006, + "loss": 4.571430206298828, + "step": 686 + }, + { + "epoch": 9.54521625163827, + "grad_norm": 0.3900398313999176, + "learning_rate": 0.0006, + "loss": 4.544435501098633, + "step": 687 + }, + { + "epoch": 9.55919615552643, + "grad_norm": 0.37829288840293884, + "learning_rate": 0.0006, + "loss": 4.564268112182617, + "step": 688 + }, + { + "epoch": 9.57317605941459, + "grad_norm": 0.3553886115550995, + "learning_rate": 0.0006, + "loss": 4.5373430252075195, + "step": 689 + }, + { + "epoch": 9.587155963302752, + "grad_norm": 0.3613419532775879, + "learning_rate": 0.0006, + "loss": 4.559074401855469, + "step": 690 + }, + { + "epoch": 9.601135867190912, + "grad_norm": 0.32644546031951904, + "learning_rate": 0.0006, + "loss": 4.533667087554932, + "step": 691 + }, + { + "epoch": 9.615115771079074, + "grad_norm": 0.3264399468898773, + "learning_rate": 0.0006, + "loss": 4.508299350738525, + "step": 692 + }, + { + "epoch": 9.629095674967235, + "grad_norm": 0.3534526526927948, + "learning_rate": 0.0006, + "loss": 4.542442798614502, + "step": 693 + }, + { + "epoch": 9.643075578855395, + "grad_norm": 0.3333452343940735, + "learning_rate": 0.0006, + "loss": 4.497692584991455, + "step": 694 + }, + { + "epoch": 9.657055482743557, + "grad_norm": 0.3214292526245117, + "learning_rate": 0.0006, + "loss": 4.512363433837891, + "step": 695 + }, + { + "epoch": 9.671035386631717, + "grad_norm": 0.2805672585964203, + "learning_rate": 0.0006, + "loss": 4.496874809265137, + "step": 696 + }, + { + "epoch": 9.685015290519878, + "grad_norm": 0.2618725895881653, + "learning_rate": 0.0006, + "loss": 4.51375675201416, + "step": 697 + }, + { + "epoch": 9.698995194408038, + "grad_norm": 0.2556597888469696, + "learning_rate": 0.0006, + "loss": 4.512338638305664, + "step": 698 + }, + { + "epoch": 9.7129750982962, + "grad_norm": 0.23784305155277252, + "learning_rate": 0.0006, + "loss": 4.486503601074219, + "step": 699 + }, + { + "epoch": 9.72695500218436, + "grad_norm": 0.2240338921546936, + "learning_rate": 0.0006, + "loss": 4.486850261688232, + "step": 700 + }, + { + "epoch": 9.740934906072521, + "grad_norm": 0.24686725437641144, + "learning_rate": 0.0006, + "loss": 4.501359462738037, + "step": 701 + }, + { + "epoch": 9.754914809960681, + "grad_norm": 0.20819595456123352, + "learning_rate": 0.0006, + "loss": 4.495186805725098, + "step": 702 + }, + { + "epoch": 9.768894713848843, + "grad_norm": 0.21858957409858704, + "learning_rate": 0.0006, + "loss": 4.475093364715576, + "step": 703 + }, + { + "epoch": 9.782874617737003, + "grad_norm": 0.22676466405391693, + "learning_rate": 0.0006, + "loss": 4.4702534675598145, + "step": 704 + }, + { + "epoch": 9.796854521625164, + "grad_norm": 0.18317611515522003, + "learning_rate": 0.0006, + "loss": 4.471231937408447, + "step": 705 + }, + { + "epoch": 9.810834425513324, + "grad_norm": 0.20979148149490356, + "learning_rate": 0.0006, + "loss": 4.454103946685791, + "step": 706 + }, + { + "epoch": 9.824814329401486, + "grad_norm": 0.2146051526069641, + "learning_rate": 0.0006, + "loss": 4.505178928375244, + "step": 707 + }, + { + "epoch": 9.838794233289645, + "grad_norm": 0.2344852089881897, + "learning_rate": 0.0006, + "loss": 4.437984943389893, + "step": 708 + }, + { + "epoch": 9.852774137177807, + "grad_norm": 0.26532089710235596, + "learning_rate": 0.0006, + "loss": 4.477126121520996, + "step": 709 + }, + { + "epoch": 9.866754041065967, + "grad_norm": 0.2737913131713867, + "learning_rate": 0.0006, + "loss": 4.498421669006348, + "step": 710 + }, + { + "epoch": 9.880733944954128, + "grad_norm": 0.26651278138160706, + "learning_rate": 0.0006, + "loss": 4.480839729309082, + "step": 711 + }, + { + "epoch": 9.89471384884229, + "grad_norm": 0.26576584577560425, + "learning_rate": 0.0006, + "loss": 4.490936279296875, + "step": 712 + }, + { + "epoch": 9.90869375273045, + "grad_norm": 0.22483965754508972, + "learning_rate": 0.0006, + "loss": 4.477953910827637, + "step": 713 + }, + { + "epoch": 9.922673656618612, + "grad_norm": 0.23576045036315918, + "learning_rate": 0.0006, + "loss": 4.4731292724609375, + "step": 714 + }, + { + "epoch": 9.936653560506771, + "grad_norm": 0.2731139361858368, + "learning_rate": 0.0006, + "loss": 4.441622734069824, + "step": 715 + }, + { + "epoch": 9.950633464394933, + "grad_norm": 0.2677643597126007, + "learning_rate": 0.0006, + "loss": 4.49604606628418, + "step": 716 + }, + { + "epoch": 9.964613368283093, + "grad_norm": 0.21940895915031433, + "learning_rate": 0.0006, + "loss": 4.485573768615723, + "step": 717 + }, + { + "epoch": 9.978593272171254, + "grad_norm": 0.2060987651348114, + "learning_rate": 0.0006, + "loss": 4.482657432556152, + "step": 718 + }, + { + "epoch": 9.992573176059414, + "grad_norm": 0.22163978219032288, + "learning_rate": 0.0006, + "loss": 4.478459358215332, + "step": 719 + }, + { + "epoch": 10.0, + "grad_norm": 0.2505086064338684, + "learning_rate": 0.0006, + "loss": 4.4393510818481445, + "step": 720 + }, + { + "epoch": 10.0, + "eval_loss": 4.695676803588867, + "eval_runtime": 49.0751, + "eval_samples_per_second": 49.76, + "eval_steps_per_second": 3.118, + "step": 720 + }, + { + "epoch": 10.013979903888162, + "grad_norm": 0.23820190131664276, + "learning_rate": 0.0006, + "loss": 4.437685489654541, + "step": 721 + }, + { + "epoch": 10.027959807776321, + "grad_norm": 0.2220371812582016, + "learning_rate": 0.0006, + "loss": 4.449873924255371, + "step": 722 + }, + { + "epoch": 10.041939711664483, + "grad_norm": 0.20369848608970642, + "learning_rate": 0.0006, + "loss": 4.448882579803467, + "step": 723 + }, + { + "epoch": 10.055919615552643, + "grad_norm": 0.2360001504421234, + "learning_rate": 0.0006, + "loss": 4.399251937866211, + "step": 724 + }, + { + "epoch": 10.069899519440805, + "grad_norm": 0.23537491261959076, + "learning_rate": 0.0006, + "loss": 4.442960739135742, + "step": 725 + }, + { + "epoch": 10.083879423328964, + "grad_norm": 0.24433870613574982, + "learning_rate": 0.0006, + "loss": 4.44808292388916, + "step": 726 + }, + { + "epoch": 10.097859327217126, + "grad_norm": 0.3406696021556854, + "learning_rate": 0.0006, + "loss": 4.443426132202148, + "step": 727 + }, + { + "epoch": 10.111839231105286, + "grad_norm": 0.4102286100387573, + "learning_rate": 0.0006, + "loss": 4.424919605255127, + "step": 728 + }, + { + "epoch": 10.125819134993447, + "grad_norm": 0.36462604999542236, + "learning_rate": 0.0006, + "loss": 4.45366907119751, + "step": 729 + }, + { + "epoch": 10.139799038881607, + "grad_norm": 0.4374827444553375, + "learning_rate": 0.0006, + "loss": 4.415630340576172, + "step": 730 + }, + { + "epoch": 10.153778942769769, + "grad_norm": 0.45248138904571533, + "learning_rate": 0.0006, + "loss": 4.448849678039551, + "step": 731 + }, + { + "epoch": 10.167758846657929, + "grad_norm": 0.3806457221508026, + "learning_rate": 0.0006, + "loss": 4.443390846252441, + "step": 732 + }, + { + "epoch": 10.18173875054609, + "grad_norm": 0.3491523861885071, + "learning_rate": 0.0006, + "loss": 4.4648637771606445, + "step": 733 + }, + { + "epoch": 10.19571865443425, + "grad_norm": 0.3327210247516632, + "learning_rate": 0.0006, + "loss": 4.460919380187988, + "step": 734 + }, + { + "epoch": 10.209698558322412, + "grad_norm": 0.29772236943244934, + "learning_rate": 0.0006, + "loss": 4.45159912109375, + "step": 735 + }, + { + "epoch": 10.223678462210572, + "grad_norm": 0.33083397150039673, + "learning_rate": 0.0006, + "loss": 4.463382720947266, + "step": 736 + }, + { + "epoch": 10.237658366098733, + "grad_norm": 0.3930598795413971, + "learning_rate": 0.0006, + "loss": 4.434510231018066, + "step": 737 + }, + { + "epoch": 10.251638269986893, + "grad_norm": 0.4342896044254303, + "learning_rate": 0.0006, + "loss": 4.451700210571289, + "step": 738 + }, + { + "epoch": 10.265618173875055, + "grad_norm": 0.4544043242931366, + "learning_rate": 0.0006, + "loss": 4.437224388122559, + "step": 739 + }, + { + "epoch": 10.279598077763215, + "grad_norm": 0.4487038254737854, + "learning_rate": 0.0006, + "loss": 4.46157693862915, + "step": 740 + }, + { + "epoch": 10.293577981651376, + "grad_norm": 0.4420500695705414, + "learning_rate": 0.0006, + "loss": 4.399561405181885, + "step": 741 + }, + { + "epoch": 10.307557885539538, + "grad_norm": 0.4167289435863495, + "learning_rate": 0.0006, + "loss": 4.41792106628418, + "step": 742 + }, + { + "epoch": 10.321537789427698, + "grad_norm": 0.3186971843242645, + "learning_rate": 0.0006, + "loss": 4.435683250427246, + "step": 743 + }, + { + "epoch": 10.33551769331586, + "grad_norm": 0.3077184855937958, + "learning_rate": 0.0006, + "loss": 4.481947898864746, + "step": 744 + }, + { + "epoch": 10.349497597204019, + "grad_norm": 0.26811280846595764, + "learning_rate": 0.0006, + "loss": 4.4339447021484375, + "step": 745 + }, + { + "epoch": 10.36347750109218, + "grad_norm": 0.28448057174682617, + "learning_rate": 0.0006, + "loss": 4.441644668579102, + "step": 746 + }, + { + "epoch": 10.37745740498034, + "grad_norm": 0.30731502175331116, + "learning_rate": 0.0006, + "loss": 4.428773880004883, + "step": 747 + }, + { + "epoch": 10.391437308868502, + "grad_norm": 0.28036001324653625, + "learning_rate": 0.0006, + "loss": 4.4433135986328125, + "step": 748 + }, + { + "epoch": 10.405417212756662, + "grad_norm": 0.2882847189903259, + "learning_rate": 0.0006, + "loss": 4.433401107788086, + "step": 749 + }, + { + "epoch": 10.419397116644824, + "grad_norm": 0.23622776567935944, + "learning_rate": 0.0006, + "loss": 4.444611549377441, + "step": 750 + }, + { + "epoch": 10.433377020532983, + "grad_norm": 0.2306167632341385, + "learning_rate": 0.0006, + "loss": 4.397875785827637, + "step": 751 + }, + { + "epoch": 10.447356924421145, + "grad_norm": 0.22725090384483337, + "learning_rate": 0.0006, + "loss": 4.429759502410889, + "step": 752 + }, + { + "epoch": 10.461336828309305, + "grad_norm": 0.250709593296051, + "learning_rate": 0.0006, + "loss": 4.415618896484375, + "step": 753 + }, + { + "epoch": 10.475316732197467, + "grad_norm": 0.22341276705265045, + "learning_rate": 0.0006, + "loss": 4.389362335205078, + "step": 754 + }, + { + "epoch": 10.489296636085626, + "grad_norm": 0.22595296800136566, + "learning_rate": 0.0006, + "loss": 4.383584022521973, + "step": 755 + }, + { + "epoch": 10.503276539973788, + "grad_norm": 0.24277575314044952, + "learning_rate": 0.0006, + "loss": 4.403777599334717, + "step": 756 + }, + { + "epoch": 10.517256443861948, + "grad_norm": 0.2670708894729614, + "learning_rate": 0.0006, + "loss": 4.398499011993408, + "step": 757 + }, + { + "epoch": 10.53123634775011, + "grad_norm": 0.2640696167945862, + "learning_rate": 0.0006, + "loss": 4.426726818084717, + "step": 758 + }, + { + "epoch": 10.54521625163827, + "grad_norm": 0.2248653769493103, + "learning_rate": 0.0006, + "loss": 4.400103569030762, + "step": 759 + }, + { + "epoch": 10.55919615552643, + "grad_norm": 0.21466240286827087, + "learning_rate": 0.0006, + "loss": 4.404158592224121, + "step": 760 + }, + { + "epoch": 10.57317605941459, + "grad_norm": 0.236923947930336, + "learning_rate": 0.0006, + "loss": 4.37059211730957, + "step": 761 + }, + { + "epoch": 10.587155963302752, + "grad_norm": 0.2515387535095215, + "learning_rate": 0.0006, + "loss": 4.415055274963379, + "step": 762 + }, + { + "epoch": 10.601135867190912, + "grad_norm": 0.23461885750293732, + "learning_rate": 0.0006, + "loss": 4.375036239624023, + "step": 763 + }, + { + "epoch": 10.615115771079074, + "grad_norm": 0.20975761115550995, + "learning_rate": 0.0006, + "loss": 4.3903398513793945, + "step": 764 + }, + { + "epoch": 10.629095674967235, + "grad_norm": 0.19859997928142548, + "learning_rate": 0.0006, + "loss": 4.379380226135254, + "step": 765 + }, + { + "epoch": 10.643075578855395, + "grad_norm": 0.22310325503349304, + "learning_rate": 0.0006, + "loss": 4.382110595703125, + "step": 766 + }, + { + "epoch": 10.657055482743557, + "grad_norm": 0.23940646648406982, + "learning_rate": 0.0006, + "loss": 4.393403053283691, + "step": 767 + }, + { + "epoch": 10.671035386631717, + "grad_norm": 0.2230468988418579, + "learning_rate": 0.0006, + "loss": 4.391970634460449, + "step": 768 + }, + { + "epoch": 10.685015290519878, + "grad_norm": 0.18139775097370148, + "learning_rate": 0.0006, + "loss": 4.399993896484375, + "step": 769 + }, + { + "epoch": 10.698995194408038, + "grad_norm": 0.19936902821063995, + "learning_rate": 0.0006, + "loss": 4.373854160308838, + "step": 770 + }, + { + "epoch": 10.7129750982962, + "grad_norm": 0.22132465243339539, + "learning_rate": 0.0006, + "loss": 4.377530097961426, + "step": 771 + }, + { + "epoch": 10.72695500218436, + "grad_norm": 0.24254944920539856, + "learning_rate": 0.0006, + "loss": 4.398683547973633, + "step": 772 + }, + { + "epoch": 10.740934906072521, + "grad_norm": 0.2666397988796234, + "learning_rate": 0.0006, + "loss": 4.3879899978637695, + "step": 773 + }, + { + "epoch": 10.754914809960681, + "grad_norm": 0.24728631973266602, + "learning_rate": 0.0006, + "loss": 4.356976509094238, + "step": 774 + }, + { + "epoch": 10.768894713848843, + "grad_norm": 0.2612453103065491, + "learning_rate": 0.0006, + "loss": 4.391525745391846, + "step": 775 + }, + { + "epoch": 10.782874617737003, + "grad_norm": 0.24060510098934174, + "learning_rate": 0.0006, + "loss": 4.376985549926758, + "step": 776 + }, + { + "epoch": 10.796854521625164, + "grad_norm": 0.22708238661289215, + "learning_rate": 0.0006, + "loss": 4.368545055389404, + "step": 777 + }, + { + "epoch": 10.810834425513324, + "grad_norm": 0.26931291818618774, + "learning_rate": 0.0006, + "loss": 4.369227409362793, + "step": 778 + }, + { + "epoch": 10.824814329401486, + "grad_norm": 0.265288770198822, + "learning_rate": 0.0006, + "loss": 4.378131866455078, + "step": 779 + }, + { + "epoch": 10.838794233289645, + "grad_norm": 0.3015305697917938, + "learning_rate": 0.0006, + "loss": 4.376267910003662, + "step": 780 + }, + { + "epoch": 10.852774137177807, + "grad_norm": 0.3345746099948883, + "learning_rate": 0.0006, + "loss": 4.3751420974731445, + "step": 781 + }, + { + "epoch": 10.866754041065967, + "grad_norm": 0.32446005940437317, + "learning_rate": 0.0006, + "loss": 4.370899200439453, + "step": 782 + }, + { + "epoch": 10.880733944954128, + "grad_norm": 0.27070069313049316, + "learning_rate": 0.0006, + "loss": 4.391958236694336, + "step": 783 + }, + { + "epoch": 10.89471384884229, + "grad_norm": 0.25584667921066284, + "learning_rate": 0.0006, + "loss": 4.407493591308594, + "step": 784 + }, + { + "epoch": 10.90869375273045, + "grad_norm": 0.2710244655609131, + "learning_rate": 0.0006, + "loss": 4.374400615692139, + "step": 785 + }, + { + "epoch": 10.922673656618612, + "grad_norm": 0.32413622736930847, + "learning_rate": 0.0006, + "loss": 4.379607200622559, + "step": 786 + }, + { + "epoch": 10.936653560506771, + "grad_norm": 0.3253782391548157, + "learning_rate": 0.0006, + "loss": 4.376441955566406, + "step": 787 + }, + { + "epoch": 10.950633464394933, + "grad_norm": 0.30534613132476807, + "learning_rate": 0.0006, + "loss": 4.382739067077637, + "step": 788 + }, + { + "epoch": 10.964613368283093, + "grad_norm": 0.35726621747016907, + "learning_rate": 0.0006, + "loss": 4.3765869140625, + "step": 789 + }, + { + "epoch": 10.978593272171254, + "grad_norm": 0.32763028144836426, + "learning_rate": 0.0006, + "loss": 4.391537189483643, + "step": 790 + }, + { + "epoch": 10.992573176059414, + "grad_norm": 0.31811195611953735, + "learning_rate": 0.0006, + "loss": 4.371829032897949, + "step": 791 + }, + { + "epoch": 11.0, + "grad_norm": 0.37317267060279846, + "learning_rate": 0.0006, + "loss": 4.381916522979736, + "step": 792 + }, + { + "epoch": 11.0, + "eval_loss": 4.588687896728516, + "eval_runtime": 44.8041, + "eval_samples_per_second": 54.504, + "eval_steps_per_second": 3.415, + "step": 792 + }, + { + "epoch": 11.013979903888162, + "grad_norm": 0.37882938981056213, + "learning_rate": 0.0006, + "loss": 4.3463640213012695, + "step": 793 + }, + { + "epoch": 11.027959807776321, + "grad_norm": 0.34719496965408325, + "learning_rate": 0.0006, + "loss": 4.329861640930176, + "step": 794 + }, + { + "epoch": 11.041939711664483, + "grad_norm": 0.36161214113235474, + "learning_rate": 0.0006, + "loss": 4.3287835121154785, + "step": 795 + }, + { + "epoch": 11.055919615552643, + "grad_norm": 0.3743649125099182, + "learning_rate": 0.0006, + "loss": 4.334251403808594, + "step": 796 + }, + { + "epoch": 11.069899519440805, + "grad_norm": 0.32266443967819214, + "learning_rate": 0.0006, + "loss": 4.364782810211182, + "step": 797 + }, + { + "epoch": 11.083879423328964, + "grad_norm": 0.27460047602653503, + "learning_rate": 0.0006, + "loss": 4.348380088806152, + "step": 798 + }, + { + "epoch": 11.097859327217126, + "grad_norm": 0.30498892068862915, + "learning_rate": 0.0006, + "loss": 4.347856521606445, + "step": 799 + }, + { + "epoch": 11.111839231105286, + "grad_norm": 0.29740771651268005, + "learning_rate": 0.0006, + "loss": 4.343471050262451, + "step": 800 + }, + { + "epoch": 11.125819134993447, + "grad_norm": 0.3004681169986725, + "learning_rate": 0.0006, + "loss": 4.337590217590332, + "step": 801 + }, + { + "epoch": 11.139799038881607, + "grad_norm": 0.3000192642211914, + "learning_rate": 0.0006, + "loss": 4.349949836730957, + "step": 802 + }, + { + "epoch": 11.153778942769769, + "grad_norm": 0.27461889386177063, + "learning_rate": 0.0006, + "loss": 4.338934898376465, + "step": 803 + }, + { + "epoch": 11.167758846657929, + "grad_norm": 0.2856169641017914, + "learning_rate": 0.0006, + "loss": 4.320754051208496, + "step": 804 + }, + { + "epoch": 11.18173875054609, + "grad_norm": 0.29822713136672974, + "learning_rate": 0.0006, + "loss": 4.357949733734131, + "step": 805 + }, + { + "epoch": 11.19571865443425, + "grad_norm": 0.34061339497566223, + "learning_rate": 0.0006, + "loss": 4.327282905578613, + "step": 806 + }, + { + "epoch": 11.209698558322412, + "grad_norm": 0.3379063010215759, + "learning_rate": 0.0006, + "loss": 4.355471611022949, + "step": 807 + }, + { + "epoch": 11.223678462210572, + "grad_norm": 0.2859216630458832, + "learning_rate": 0.0006, + "loss": 4.352344989776611, + "step": 808 + }, + { + "epoch": 11.237658366098733, + "grad_norm": 0.29522669315338135, + "learning_rate": 0.0006, + "loss": 4.349186897277832, + "step": 809 + }, + { + "epoch": 11.251638269986893, + "grad_norm": 0.273798406124115, + "learning_rate": 0.0006, + "loss": 4.342379570007324, + "step": 810 + }, + { + "epoch": 11.265618173875055, + "grad_norm": 0.25298982858657837, + "learning_rate": 0.0006, + "loss": 4.358835220336914, + "step": 811 + }, + { + "epoch": 11.279598077763215, + "grad_norm": 0.2170463651418686, + "learning_rate": 0.0006, + "loss": 4.3422017097473145, + "step": 812 + }, + { + "epoch": 11.293577981651376, + "grad_norm": 0.24855731427669525, + "learning_rate": 0.0006, + "loss": 4.322849750518799, + "step": 813 + }, + { + "epoch": 11.307557885539538, + "grad_norm": 0.22564345598220825, + "learning_rate": 0.0006, + "loss": 4.316864967346191, + "step": 814 + }, + { + "epoch": 11.321537789427698, + "grad_norm": 0.21532197296619415, + "learning_rate": 0.0006, + "loss": 4.326743125915527, + "step": 815 + }, + { + "epoch": 11.33551769331586, + "grad_norm": 0.20514146983623505, + "learning_rate": 0.0006, + "loss": 4.326531887054443, + "step": 816 + }, + { + "epoch": 11.349497597204019, + "grad_norm": 0.19035090506076813, + "learning_rate": 0.0006, + "loss": 4.318154335021973, + "step": 817 + }, + { + "epoch": 11.36347750109218, + "grad_norm": 0.17889662086963654, + "learning_rate": 0.0006, + "loss": 4.35410213470459, + "step": 818 + }, + { + "epoch": 11.37745740498034, + "grad_norm": 0.20564863085746765, + "learning_rate": 0.0006, + "loss": 4.350226879119873, + "step": 819 + }, + { + "epoch": 11.391437308868502, + "grad_norm": 0.2412603348493576, + "learning_rate": 0.0006, + "loss": 4.325137138366699, + "step": 820 + }, + { + "epoch": 11.405417212756662, + "grad_norm": 0.2603496015071869, + "learning_rate": 0.0006, + "loss": 4.335752487182617, + "step": 821 + }, + { + "epoch": 11.419397116644824, + "grad_norm": 0.2968119978904724, + "learning_rate": 0.0006, + "loss": 4.3317670822143555, + "step": 822 + }, + { + "epoch": 11.433377020532983, + "grad_norm": 0.3280937969684601, + "learning_rate": 0.0006, + "loss": 4.322279453277588, + "step": 823 + }, + { + "epoch": 11.447356924421145, + "grad_norm": 0.3598847985267639, + "learning_rate": 0.0006, + "loss": 4.312255859375, + "step": 824 + }, + { + "epoch": 11.461336828309305, + "grad_norm": 0.3996485471725464, + "learning_rate": 0.0006, + "loss": 4.327103614807129, + "step": 825 + }, + { + "epoch": 11.475316732197467, + "grad_norm": 0.4352041780948639, + "learning_rate": 0.0006, + "loss": 4.368639945983887, + "step": 826 + }, + { + "epoch": 11.489296636085626, + "grad_norm": 0.4451918601989746, + "learning_rate": 0.0006, + "loss": 4.335113048553467, + "step": 827 + }, + { + "epoch": 11.503276539973788, + "grad_norm": 0.4403933584690094, + "learning_rate": 0.0006, + "loss": 4.369889259338379, + "step": 828 + }, + { + "epoch": 11.517256443861948, + "grad_norm": 0.34862443804740906, + "learning_rate": 0.0006, + "loss": 4.316292762756348, + "step": 829 + }, + { + "epoch": 11.53123634775011, + "grad_norm": 0.3240634500980377, + "learning_rate": 0.0006, + "loss": 4.328078746795654, + "step": 830 + }, + { + "epoch": 11.54521625163827, + "grad_norm": 0.2445751428604126, + "learning_rate": 0.0006, + "loss": 4.291940689086914, + "step": 831 + }, + { + "epoch": 11.55919615552643, + "grad_norm": 0.24376554787158966, + "learning_rate": 0.0006, + "loss": 4.339217662811279, + "step": 832 + }, + { + "epoch": 11.57317605941459, + "grad_norm": 0.22419725358486176, + "learning_rate": 0.0006, + "loss": 4.2887468338012695, + "step": 833 + }, + { + "epoch": 11.587155963302752, + "grad_norm": 0.22318261861801147, + "learning_rate": 0.0006, + "loss": 4.298492908477783, + "step": 834 + }, + { + "epoch": 11.601135867190912, + "grad_norm": 0.2357342392206192, + "learning_rate": 0.0006, + "loss": 4.328692436218262, + "step": 835 + }, + { + "epoch": 11.615115771079074, + "grad_norm": 0.25450602173805237, + "learning_rate": 0.0006, + "loss": 4.360058784484863, + "step": 836 + }, + { + "epoch": 11.629095674967235, + "grad_norm": 0.24540965259075165, + "learning_rate": 0.0006, + "loss": 4.311890602111816, + "step": 837 + }, + { + "epoch": 11.643075578855395, + "grad_norm": 0.2535638213157654, + "learning_rate": 0.0006, + "loss": 4.327730178833008, + "step": 838 + }, + { + "epoch": 11.657055482743557, + "grad_norm": 0.23063556849956512, + "learning_rate": 0.0006, + "loss": 4.303299903869629, + "step": 839 + }, + { + "epoch": 11.671035386631717, + "grad_norm": 0.21813632547855377, + "learning_rate": 0.0006, + "loss": 4.315352439880371, + "step": 840 + }, + { + "epoch": 11.685015290519878, + "grad_norm": 0.2170359194278717, + "learning_rate": 0.0006, + "loss": 4.278632164001465, + "step": 841 + }, + { + "epoch": 11.698995194408038, + "grad_norm": 0.21059377491474152, + "learning_rate": 0.0006, + "loss": 4.306049346923828, + "step": 842 + }, + { + "epoch": 11.7129750982962, + "grad_norm": 0.19872888922691345, + "learning_rate": 0.0006, + "loss": 4.3091535568237305, + "step": 843 + }, + { + "epoch": 11.72695500218436, + "grad_norm": 0.20059862732887268, + "learning_rate": 0.0006, + "loss": 4.2884063720703125, + "step": 844 + }, + { + "epoch": 11.740934906072521, + "grad_norm": 0.19952483475208282, + "learning_rate": 0.0006, + "loss": 4.293610572814941, + "step": 845 + }, + { + "epoch": 11.754914809960681, + "grad_norm": 0.19794537127017975, + "learning_rate": 0.0006, + "loss": 4.288822174072266, + "step": 846 + }, + { + "epoch": 11.768894713848843, + "grad_norm": 0.213914692401886, + "learning_rate": 0.0006, + "loss": 4.320849418640137, + "step": 847 + }, + { + "epoch": 11.782874617737003, + "grad_norm": 0.18500955402851105, + "learning_rate": 0.0006, + "loss": 4.29300594329834, + "step": 848 + }, + { + "epoch": 11.796854521625164, + "grad_norm": 0.19446656107902527, + "learning_rate": 0.0006, + "loss": 4.3079352378845215, + "step": 849 + }, + { + "epoch": 11.810834425513324, + "grad_norm": 0.22191768884658813, + "learning_rate": 0.0006, + "loss": 4.295967102050781, + "step": 850 + }, + { + "epoch": 11.824814329401486, + "grad_norm": 0.20748084783554077, + "learning_rate": 0.0006, + "loss": 4.332365989685059, + "step": 851 + }, + { + "epoch": 11.838794233289645, + "grad_norm": 0.20993955433368683, + "learning_rate": 0.0006, + "loss": 4.294618129730225, + "step": 852 + }, + { + "epoch": 11.852774137177807, + "grad_norm": 0.23506952822208405, + "learning_rate": 0.0006, + "loss": 4.313426971435547, + "step": 853 + }, + { + "epoch": 11.866754041065967, + "grad_norm": 0.2379443347454071, + "learning_rate": 0.0006, + "loss": 4.297664642333984, + "step": 854 + }, + { + "epoch": 11.880733944954128, + "grad_norm": 0.2127852737903595, + "learning_rate": 0.0006, + "loss": 4.2807698249816895, + "step": 855 + }, + { + "epoch": 11.89471384884229, + "grad_norm": 0.2125532180070877, + "learning_rate": 0.0006, + "loss": 4.310990333557129, + "step": 856 + }, + { + "epoch": 11.90869375273045, + "grad_norm": 0.1996062994003296, + "learning_rate": 0.0006, + "loss": 4.253237724304199, + "step": 857 + }, + { + "epoch": 11.922673656618612, + "grad_norm": 0.20747603476047516, + "learning_rate": 0.0006, + "loss": 4.294193267822266, + "step": 858 + }, + { + "epoch": 11.936653560506771, + "grad_norm": 0.24082425236701965, + "learning_rate": 0.0006, + "loss": 4.269967079162598, + "step": 859 + }, + { + "epoch": 11.950633464394933, + "grad_norm": 0.28993573784828186, + "learning_rate": 0.0006, + "loss": 4.294550895690918, + "step": 860 + }, + { + "epoch": 11.964613368283093, + "grad_norm": 0.29576948285102844, + "learning_rate": 0.0006, + "loss": 4.3188252449035645, + "step": 861 + }, + { + "epoch": 11.978593272171254, + "grad_norm": 0.2754935026168823, + "learning_rate": 0.0006, + "loss": 4.312817573547363, + "step": 862 + }, + { + "epoch": 11.992573176059414, + "grad_norm": 0.3062523305416107, + "learning_rate": 0.0006, + "loss": 4.288214683532715, + "step": 863 + }, + { + "epoch": 12.0, + "grad_norm": 0.3367644250392914, + "learning_rate": 0.0006, + "loss": 4.314888954162598, + "step": 864 + } + ], + "logging_steps": 1, + "max_steps": 28800, + "num_input_tokens_seen": 0, + "num_train_epochs": 400, + "save_steps": 500, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": true, + "should_log": false, + "should_save": false, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 3.68192750257963e+17, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-864/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-864/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38 --- /dev/null +++ b/runs/mask15-l2r50-fulle-lm/checkpoint-864/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9 +size 4856